diff --git a/.docker/symfony.conf b/.docker/symfony.conf
index 33287e32..02d83622 100644
--- a/.docker/symfony.conf
+++ b/.docker/symfony.conf
@@ -25,16 +25,16 @@
CustomLog ${APACHE_LOG_DIR}/access.log combined
# Pass the configuration from the docker env to the PHP environment (here you should list all .env options)
- PassEnv APP_ENV APP_DEBUG APP_SECRET
+ PassEnv APP_ENV APP_DEBUG APP_SECRET REDIRECT_TO_HTTPS
PassEnv TRUSTED_PROXIES TRUSTED_HOSTS LOCK_DSN
- PassEnv DATABASE_URL ENFORCE_CHANGE_COMMENTS_FOR
- PassEnv DEFAULT_LANG DEFAULT_TIMEZONE BASE_CURRENCY INSTANCE_NAME ALLOW_ATTACHMENT_DOWNLOADS USE_GRAVATAR MAX_ATTACHMENT_FILE_SIZE DEFAULT_URI CHECK_FOR_UPDATES
+ PassEnv DATABASE_URL ENFORCE_CHANGE_COMMENTS_FOR DATABASE_MYSQL_USE_SSL_CA DATABASE_MYSQL_SSL_VERIFY_CERT
+ PassEnv DEFAULT_LANG DEFAULT_TIMEZONE BASE_CURRENCY INSTANCE_NAME ALLOW_ATTACHMENT_DOWNLOADS USE_GRAVATAR MAX_ATTACHMENT_FILE_SIZE DEFAULT_URI CHECK_FOR_UPDATES ATTACHMENT_DOWNLOAD_BY_DEFAULT
PassEnv MAILER_DSN ALLOW_EMAIL_PW_RESET EMAIL_SENDER_EMAIL EMAIL_SENDER_NAME
PassEnv HISTORY_SAVE_CHANGED_FIELDS HISTORY_SAVE_CHANGED_DATA HISTORY_SAVE_REMOVED_DATA HISTORY_SAVE_NEW_DATA
PassEnv ERROR_PAGE_ADMIN_EMAIL ERROR_PAGE_SHOW_HELP
PassEnv DEMO_MODE NO_URL_REWRITE_AVAILABLE FIXER_API_KEY BANNER
# In old version the SAML sp private key env, was wrongly named SAMLP_SP_PRIVATE_KEY, keep it for backward compatibility
- PassEnv SAML_ENABLED SAML_ROLE_MAPPING SAML_UPDATE_GROUP_ON_LOGIN SAML_IDP_ENTITY_ID SAML_IDP_SINGLE_SIGN_ON_SERVICE SAML_IDP_SINGLE_LOGOUT_SERVICE SAML_IDP_X509_CERT SAML_SP_ENTITY_ID SAML_SP_X509_CERT SAML_SP_PRIVATE_KEY SAMLP_SP_PRIVATE_KEY
+ PassEnv SAML_ENABLED SAML_BEHIND_PROXY SAML_ROLE_MAPPING SAML_UPDATE_GROUP_ON_LOGIN SAML_IDP_ENTITY_ID SAML_IDP_SINGLE_SIGN_ON_SERVICE SAML_IDP_SINGLE_LOGOUT_SERVICE SAML_IDP_X509_CERT SAML_SP_ENTITY_ID SAML_SP_X509_CERT SAML_SP_PRIVATE_KEY SAMLP_SP_PRIVATE_KEY
PassEnv TABLE_DEFAULT_PAGE_SIZE TABLE_PARTS_DEFAULT_COLUMNS
PassEnv PROVIDER_DIGIKEY_CLIENT_ID PROVIDER_DIGIKEY_SECRET PROVIDER_DIGIKEY_CURRENCY PROVIDER_DIGIKEY_LANGUAGE PROVIDER_DIGIKEY_COUNTRY
@@ -42,6 +42,7 @@
PassEnv PROVIDER_TME_KEY PROVIDER_TME_SECRET PROVIDER_TME_CURRENCY PROVIDER_TME_LANGUAGE PROVIDER_TME_COUNTRY PROVIDER_TME_GET_GROSS_PRICES
PassEnv PROVIDER_OCTOPART_CLIENT_ID PROVIDER_OCTOPART_SECRET PROVIDER_OCTOPART_CURRENCY PROVIDER_OCTOPART_COUNTRY PROVIDER_OCTOPART_SEARCH_LIMIT PROVIDER_OCTOPART_ONLY_AUTHORIZED_SELLERS
PassEnv PROVIDER_MOUSER_KEY PROVIDER_MOUSER_SEARCH_OPTION PROVIDER_MOUSER_SEARCH_LIMIT PROVIDER_MOUSER_SEARCH_WITH_SIGNUP_LANGUAGE
+ PassEnv EDA_KICAD_CATEGORY_DEPTH
# For most configuration files from conf-available/, which are
# enabled or disabled at a global level, it is possible to
diff --git a/.env b/.env
index 991640e4..85f25ae8 100644
--- a/.env
+++ b/.env
@@ -14,6 +14,15 @@ DATABASE_URL="sqlite:///%kernel.project_dir%/var/app.db"
# Uncomment this line (and comment the line above to use a MySQL database
#DATABASE_URL=mysql://root:@127.0.0.1:3306/part-db?serverVersion=5.7
+# Set this value to 1, if you want to use SSL to connect to the MySQL server. It will be tried to use the CA certificate
+# otherwise a CA bundle shipped with PHP will be used.
+# Leave it at 0, if you do not want to use SSL or if your server does not support it
+DATABASE_MYSQL_USE_SSL_CA=0
+
+# Set this value to 0, if you don't want to verify the CA certificate of the MySQL server
+# Only do this, if you know what you are doing!
+DATABASE_MYSQL_SSL_VERIFY_CERT=1
+
###################################################################################
# General settings
###################################################################################
@@ -29,13 +38,15 @@ INSTANCE_NAME="Part-DB"
# Allow users to download attachments to the server by providing an URL
# This could be a potential security issue, as the user can retrieve any file the server has access to (via internet)
ALLOW_ATTACHMENT_DOWNLOADS=0
+# Set this to 1, if the "download external files" checkbox should be checked by default for new attachments
+ATTACHMENT_DOWNLOAD_BY_DEFAULT=0
# Use gravatars for user avatars, when user has no own avatar defined
USE_GRAVATAR=0
# The maximum allowed size for attachment files in bytes (you can use M for megabytes and G for gigabytes)
# Please note that the php.ini setting upload_max_filesize also limits the maximum size of uploaded files
MAX_ATTACHMENT_FILE_SIZE="100M"
-# The public reachable URL of this Part-DB installation. This is used for generating links to the website in emails and so on
+# The public reachable URL of this Part-DB installation. This is used for generating links in SAML and email templates
# This must end with a slash!
DEFAULT_URI="https://partdb.changeme.invalid/"
@@ -157,12 +168,25 @@ PROVIDER_MOUSER_SEARCH_LIMIT=50
# Used when searching for keywords in the language specified when you signed up for Search API.
PROVIDER_MOUSER_SEARCH_WITH_SIGNUP_LANGUAGE='true'
+##################################################################################
+# EDA integration related settings
+##################################################################################
+
+# This value determines the depth of the category tree, that is visible inside KiCad
+# 0 means that only the top level categories are visible. Set to a value > 0 to show more levels.
+# Set to -1, to show all parts of Part-DB inside a single category in KiCad
+EDA_KICAD_CATEGORY_DEPTH=0
+
###################################################################################
# SAML Single sign on-settings
###################################################################################
# Set this to 1 to enable SAML single sign on
+# Be also sure to set the correct values for DEFAULT_URI
SAML_ENABLED=0
+# Set to 1, if your Part-DB installation is behind a reverse proxy and you want to use SAML
+SAML_BEHIND_PROXY=0
+
# A JSON encoded array of role mappings in the form { "saml_role": PARTDB_GROUP_ID, "*": PARTDB_GROUP_ID }
# The first match is used, so the order is important! Put the group mapping with the most privileges first.
# Please not to only use single quotes to enclose the JSON string
@@ -202,6 +226,9 @@ DEMO_MODE=0
# In that case all URL contains the index.php front controller in URL
NO_URL_REWRITE_AVAILABLE=0
+# Set to 1, if Part-DB should redirect all HTTP requests to HTTPS. You dont need to configure this, if your webserver already does this.
+REDIRECT_TO_HTTPS=0
+
# If you want to use fixer.io for currency conversion, you have to set this to your API key
FIXER_API_KEY=CHANGEME
diff --git a/.env.test b/.env.test
index a9b0cccf..3dbece81 100644
--- a/.env.test
+++ b/.env.test
@@ -5,5 +5,9 @@ SYMFONY_DEPRECATIONS_HELPER=999999
PANTHER_APP_ENV=panther
PANTHER_ERROR_SCREENSHOT_DIR=./var/error-screenshots
+DATABASE_URL="sqlite:///%kernel.project_dir%/var/app_test.db"
# Doctrine automatically adds an _test suffix to database name in test env
-DATABASE_URL=mysql://root:@127.0.0.1:3306/part-db
\ No newline at end of file
+#DATABASE_URL=mysql://root:@127.0.0.1:3306/part-db
+
+# Disable update checks, as tests would fail, when github is not reachable
+CHECK_FOR_UPDATES=0
\ No newline at end of file
diff --git a/.github/workflows/assets_artifact_build.yml b/.github/workflows/assets_artifact_build.yml
index 80ce11e6..0bbfe432 100644
--- a/.github/workflows/assets_artifact_build.yml
+++ b/.github/workflows/assets_artifact_build.yml
@@ -27,14 +27,14 @@ jobs:
php-version: '8.2'
coverage: none
ini-values: xdebug.max_nesting_level=1000
- extensions: mbstring, intl, gd, xsl, gmp, bcmath
+ extensions: mbstring, intl, gd, xsl, gmp, bcmath, :php-psr
- name: Get Composer Cache Directory
id: composer-cache
run: |
echo "::set-output name=dir::$(composer config cache-files-dir)"
- - uses: actions/cache@v3
+ - uses: actions/cache@v4
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
@@ -48,7 +48,7 @@ jobs:
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
- - uses: actions/cache@v3
+ - uses: actions/cache@v4
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
@@ -77,13 +77,13 @@ jobs:
run: zip -r /tmp/partdb_assets.zip public/build/ vendor/
- name: Upload assets artifact
- uses: actions/upload-artifact@v3
+ uses: actions/upload-artifact@v4
with:
name: Only dependencies and built assets
path: /tmp/partdb_assets.zip
- name: Upload full artifact
- uses: actions/upload-artifact@v3
+ uses: actions/upload-artifact@v4
with:
name: Full Part-DB including dependencies and built assets
path: /tmp/partdb_with_assets.zip
diff --git a/.github/workflows/static_analysis.yml b/.github/workflows/static_analysis.yml
index 0a027e3c..20150b28 100644
--- a/.github/workflows/static_analysis.yml
+++ b/.github/workflows/static_analysis.yml
@@ -24,14 +24,14 @@ jobs:
php-version: '8.2'
coverage: none
ini-values: xdebug.max_nesting_level=1000
- extensions: mbstring, intl, gd, xsl, gmp, bcmath
+ extensions: mbstring, intl, gd, xsl, gmp, bcmath, :php-psr
- name: Get Composer Cache Directory
id: composer-cache
run: |
echo "::set-output name=dir::$(composer config cache-files-dir)"
- - uses: actions/cache@v3
+ - uses: actions/cache@v4
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml
index a22d07a6..2b901dd2 100644
--- a/.github/workflows/tests.yml
+++ b/.github/workflows/tests.yml
@@ -13,12 +13,11 @@ on:
jobs:
phpunit:
name: PHPUnit and coverage Test (PHP ${{ matrix.php-versions }}, ${{ matrix.db-type }})
- # Ubuntu 20.04 ships MySQL 8.0 which causes problems with login, so we just use ubuntu 18.04 for now...
runs-on: ubuntu-22.04
strategy:
matrix:
- php-versions: [ '8.1', '8.2' ]
+ php-versions: [ '8.1', '8.2', '8.3' ]
db-type: [ 'mysql', 'sqlite' ]
env:
@@ -27,6 +26,7 @@ jobs:
SYMFONY_DEPRECATIONS_HELPER: disabled
PHP_VERSION: ${{ matrix.php-versions }}
DB_TYPE: ${{ matrix.db-type }}
+ CHECK_FOR_UPDATES: false # Disable update checks for tests
steps:
- name: Set Database env for MySQL
@@ -46,7 +46,7 @@ jobs:
php-version: ${{ matrix.php-versions }}
coverage: pcov
ini-values: xdebug.max_nesting_level=1000
- extensions: mbstring, intl, gd, xsl, gmp, bcmath
+ extensions: mbstring, intl, gd, xsl, gmp, bcmath, :php-psr
- name: Start MySQL
run: sudo systemctl start mysql.service
@@ -64,7 +64,7 @@ jobs:
id: composer-cache
run: |
echo "::set-output name=dir::$(composer config cache-files-dir)"
- - uses: actions/cache@v3
+ - uses: actions/cache@v4
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
@@ -75,7 +75,7 @@ jobs:
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
- - uses: actions/cache@v3
+ - uses: actions/cache@v4
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
@@ -108,9 +108,10 @@ jobs:
- name: Do migrations
run: php bin/console --env test doctrine:migrations:migrate -n
-
+
+ # Use our own custom fixtures loading command to circumvent some problems with reset the autoincrement values
- name: Load fixtures
- run: php bin/console --env test doctrine:fixtures:load -n
+ run: php bin/console --env test partdb:fixtures:load -n
- name: Run PHPunit and generate coverage
run: ./bin/phpunit --coverage-clover=coverage.xml
diff --git a/Dockerfile b/Dockerfile
index 4a9048ba..85536666 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -5,7 +5,7 @@ FROM debian:bullseye-slim
# libpng-dev libjpeg-dev libfreetype6-dev gnupg zip libzip-dev libjpeg62-turbo-dev libonig-dev libxslt-dev libwebp-dev vim \
# && apt-get -y autoremove && apt-get clean autoclean && rm -rf /var/lib/apt/lists/*
-RUN apt-get update && apt-get -y install apt-transport-https lsb-release ca-certificates curl zip \
+RUN apt-get update && apt-get -y install apt-transport-https lsb-release ca-certificates curl zip mariadb-client \
&& curl -sSLo /usr/share/keyrings/deb.sury.org-php.gpg https://packages.sury.org/php/apt.gpg \
&& sh -c 'echo "deb [signed-by=/usr/share/keyrings/deb.sury.org-php.gpg] https://packages.sury.org/php/ $(lsb_release -sc) main" > /etc/apt/sources.list.d/php.list' \
&& apt-get update && apt-get upgrade -y \
diff --git a/README.md b/README.md
index 4edcdddc..94aad970 100644
--- a/README.md
+++ b/README.md
@@ -63,6 +63,8 @@ for the first time.
* Use cloud providers (like Octopart, Digikey, farnell or TME) to automatically get part information, datasheets and
prices for parts
* API to access Part-DB from other applications/scripts
+* [Integration with KiCad](https://docs.part-db.de/usage/eda_integration.html): Use Part-DB as central datasource for your
+ KiCad and see available parts from Part-DB directly inside KiCad.
With these features Part-DB is useful to hobbyists, who want to keep track of their private electronic parts inventory,
or makerspaces, where many users have should have (controlled) access to the shared inventory.
diff --git a/VERSION b/VERSION
index b57588e5..7b4d9a4f 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-1.9.0-dev
+1.10.6
diff --git a/assets/controllers/common/markdown_controller.js b/assets/controllers/common/markdown_controller.js
index 91aaef66..b6ef0034 100644
--- a/assets/controllers/common/markdown_controller.js
+++ b/assets/controllers/common/markdown_controller.js
@@ -20,18 +20,26 @@
'use strict';
import { Controller } from '@hotwired/stimulus';
-import { marked } from "marked";
+import { Marked } from "marked";
import { mangle } from "marked-mangle";
import { gfmHeadingId } from "marked-gfm-heading-id";
import DOMPurify from 'dompurify';
import "../../css/app/markdown.css";
-export default class extends Controller {
+export default class MarkdownController extends Controller {
+
+ static _marked = new Marked([
+ {
+ gfm: true,
+ },
+ gfmHeadingId(),
+ mangle(),
+ ])
+ ;
connect()
{
- this.configureMarked();
this.render();
//Dispatch an event that we are now finished
@@ -45,7 +53,7 @@ export default class extends Controller {
let raw = this.element.dataset['markdown'];
//Apply purified parsed markdown
- this.element.innerHTML = DOMPurify.sanitize(marked(this.unescapeHTML(raw)));
+ this.element.innerHTML = DOMPurify.sanitize(MarkdownController._marked.parse(this.unescapeHTML(raw)));
for(let a of this.element.querySelectorAll('a')) {
//Mark all links as external
@@ -81,8 +89,17 @@ export default class extends Controller {
/**
* Configure the marked parser
*/
- configureMarked()
+ /*static newMarked()
{
+ const marked = new Marked([
+ {
+ gfm: true,
+ },
+ gfmHeadingId(),
+ mangle(),
+ ])
+ ;
+
marked.use(mangle());
marked.use(gfmHeadingId({
}));
@@ -90,5 +107,5 @@ export default class extends Controller {
marked.setOptions({
gfm: true,
});
- }
+ }*/
}
\ No newline at end of file
diff --git a/assets/controllers/elements/ckeditor_controller.js b/assets/controllers/elements/ckeditor_controller.js
index 4de536fe..f368324f 100644
--- a/assets/controllers/elements/ckeditor_controller.js
+++ b/assets/controllers/elements/ckeditor_controller.js
@@ -70,7 +70,9 @@ export default class extends Controller {
editor_div.classList.add(...new_classes.split(","));
}
- console.log(editor);
+ //This return is important! Otherwise we get mysterious errors in the console
+ //See: https://github.com/ckeditor/ckeditor5/issues/5897#issuecomment-628471302
+ return editor;
})
.catch(error => {
console.error(error);
diff --git a/assets/controllers/elements/delete_btn_controller.js b/assets/controllers/elements/delete_btn_controller.js
index 1b28de13..9ab15f7d 100644
--- a/assets/controllers/elements/delete_btn_controller.js
+++ b/assets/controllers/elements/delete_btn_controller.js
@@ -43,7 +43,8 @@ export default class extends Controller
const message = this.element.dataset.deleteMessage;
const title = this.element.dataset.deleteTitle;
- const form = this.element;
+ //Use event target, to find the form, where the submit button was clicked
+ const form = event.target;
const submitter = event.submitter;
const that = this;
diff --git a/assets/controllers/elements/localStorage_checkbox_controller.js b/assets/controllers/elements/localStorage_checkbox_controller.js
new file mode 100644
index 00000000..70ef877d
--- /dev/null
+++ b/assets/controllers/elements/localStorage_checkbox_controller.js
@@ -0,0 +1,67 @@
+/*
+ * This file is part of Part-DB (https://github.com/Part-DB/Part-DB-symfony).
+ *
+ * Copyright (C) 2019 - 2023 Jan Böhmer (https://github.com/jbtronics)
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as published
+ * by the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program. If not, see .
+ */
+
+import {Controller} from "@hotwired/stimulus";
+
+export default class extends Controller
+{
+ static values = {
+ id: String
+ }
+
+ connect() {
+ this.loadState()
+ this.element.addEventListener('change', () => {
+ this.saveState()
+ });
+ }
+
+ loadState() {
+ let storageKey = this.getStorageKey();
+ let value = localStorage.getItem(storageKey);
+ if (value === null) {
+ return;
+ }
+
+ if (value === 'true') {
+ this.element.checked = true
+ }
+ if (value === 'false') {
+ this.element.checked = false
+ }
+ }
+
+ saveState() {
+ let storageKey = this.getStorageKey();
+
+ if (this.element.checked) {
+ localStorage.setItem(storageKey, 'true');
+ } else {
+ localStorage.setItem(storageKey, 'false');
+ }
+ }
+
+ getStorageKey() {
+ if (this.hasIdValue) {
+ return 'persistent_checkbox_' + this.idValue
+ }
+
+ return 'persistent_checkbox_' + this.element.id;
+ }
+}
diff --git a/assets/controllers/elements/part_select_controller.js b/assets/controllers/elements/part_select_controller.js
index c7507636..5abd5ba3 100644
--- a/assets/controllers/elements/part_select_controller.js
+++ b/assets/controllers/elements/part_select_controller.js
@@ -27,7 +27,7 @@ export default class extends Controller {
}
let tmp = '
+ {% trans %}api.api_endpoints.partdb{% endtrans %}:
+
+
+
+
+
+ {{ url('api_entrypoint') }}
+
+
+
+
+ {% trans %}api.api_endpoints.kicad_root_url{% endtrans %}:
+
+
+
+
+
+ {{ absolute_url('/en/kicad-api/') }}
+
+
+
+
\ No newline at end of file
diff --git a/tests/API/APIDocsAvailabilityTest.php b/tests/API/APIDocsAvailabilityTest.php
index 0b38a9b9..18ce714a 100644
--- a/tests/API/APIDocsAvailabilityTest.php
+++ b/tests/API/APIDocsAvailabilityTest.php
@@ -44,10 +44,7 @@ class APIDocsAvailabilityTest extends WebTestCase
self::assertResponseIsSuccessful();
}
- /**
- * @dataProvider urlProvider
- */
- public function testDocForbidden(string $url): void
+ public function testDocForbidden(): void
{
self::ensureKernelShutdown();
$client = static::createClient();
@@ -55,7 +52,7 @@ class APIDocsAvailabilityTest extends WebTestCase
->getRepository(User::class)->findOneBy(['name' => 'noread']);
$client->loginUser($user);
- $client->request('GET',$url);
+ $client->request('GET','/api/docs.json');
self::assertResponseStatusCodeSame(403);
}
diff --git a/tests/API/APITokenAuthenticationTest.php b/tests/API/APITokenAuthenticationTest.php
index 3e1ca599..dad2645f 100644
--- a/tests/API/APITokenAuthenticationTest.php
+++ b/tests/API/APITokenAuthenticationTest.php
@@ -96,6 +96,24 @@ class APITokenAuthenticationTest extends ApiTestCase
self::assertResponseIsSuccessful();
}
+ public function testWithAuthorizationToken(): void
+ {
+ //For the KICAD API it should also work with Authorization: Token header instead of Bearer
+ self::ensureKernelShutdown();
+ $client = static::createClient([], ['headers' => ['authorization' => 'Token '.APITokenFixtures::TOKEN_ADMIN]]);;
+
+ //Read should be possible
+ $client->request('GET', '/api/parts');
+ self::assertResponseIsSuccessful();
+
+ //Trying to list all users
+ $client->request('GET', '/api/users');
+ self::assertResponseIsSuccessful();
+
+ $client->request('POST', '/api/footprints', ['json' => ['name' => 'post test']]);
+ self::assertResponseIsSuccessful();
+ }
+
protected function createClientWithCredentials(string $token): Client
{
return static::createClient([], ['headers' => ['authorization' => 'Bearer '.$token]]);
diff --git a/tests/ApplicationAvailabilityFunctionalTest.php b/tests/ApplicationAvailabilityFunctionalTest.php
index b6103a24..519f0cd5 100644
--- a/tests/ApplicationAvailabilityFunctionalTest.php
+++ b/tests/ApplicationAvailabilityFunctionalTest.php
@@ -91,6 +91,8 @@ class ApplicationAvailabilityFunctionalTest extends WebTestCase
yield ['/part/3/clone'];
+ yield ['/part/1/merge/2'];
+
yield ['/part/new'];
yield ['/part/new?category=1&footprint=1&manufacturer=1&storelocation=1&supplier=1'];
@@ -144,6 +146,8 @@ class ApplicationAvailabilityFunctionalTest extends WebTestCase
//Test info provider system
yield ['/tools/info_providers/providers']; //List all providers
yield ['/tools/info_providers/search']; //Search page
+ yield['/tools/info_providers/update/1']; //Update search for part from info provider
yield ['/part/from_info_provider/test/element1/create']; //Create part from info provider
+ yield ['/part/1/from_info_provider/test/element1/update']; //Update part from info provider
}
}
diff --git a/tests/Controller/KiCadApiControllerTest.php b/tests/Controller/KiCadApiControllerTest.php
new file mode 100644
index 00000000..a66cb8a4
--- /dev/null
+++ b/tests/Controller/KiCadApiControllerTest.php
@@ -0,0 +1,250 @@
+.
+ */
+
+declare(strict_types=1);
+
+
+namespace App\Tests\Controller;
+
+use App\DataFixtures\APITokenFixtures;
+use Symfony\Bundle\FrameworkBundle\KernelBrowser;
+use Symfony\Bundle\FrameworkBundle\Test\WebTestCase;
+
+class KiCadApiControllerTest extends WebTestCase
+{
+ private const BASE_URL = '/en/kicad-api/v1';
+
+ protected function createClientWithCredentials(string $token = APITokenFixtures::TOKEN_READONLY): KernelBrowser
+ {
+ return static::createClient([], ['headers' => ['authorization' => 'Bearer '.$token]]);
+ }
+
+ public function testRoot(): void
+ {
+ $client = $this->createClientWithCredentials();
+ $client->request('GET', self::BASE_URL.'/');
+
+ self::assertResponseIsSuccessful();
+ $content = $client->getResponse()->getContent();
+ self::assertJson($content);
+
+ //Check if the response contains the expected keys
+ $array = json_decode($content, true);
+ self::assertArrayHasKey('categories', $array);
+ self::assertArrayHasKey('parts', $array);
+ }
+
+ public function testCategories(): void
+ {
+ $client = $this->createClientWithCredentials();
+ $client->request('GET', self::BASE_URL.'/categories.json');
+
+ self::assertResponseIsSuccessful();
+ $content = $client->getResponse()->getContent();
+ self::assertJson($content);
+
+ $data = json_decode($content, true);
+ //There should be only one category, as the other ones contain no parts
+ self::assertCount(1, $data);
+
+ //Check if the response contains the expected keys
+ $category = $data[0];
+ self::assertArrayHasKey('name', $category);
+ self::assertArrayHasKey('id', $category);
+ }
+
+ public function testCategoryParts(): void
+ {
+ $client = $this->createClientWithCredentials();
+ $client->request('GET', self::BASE_URL.'/parts/category/1.json');
+
+ self::assertResponseIsSuccessful();
+ $content = $client->getResponse()->getContent();
+ self::assertJson($content);
+
+ $data = json_decode($content, true);
+ //There should be 3 parts in the category
+ self::assertCount(3, $data);
+
+ //Check if the response contains the expected keys
+ $part = $data[0];
+ self::assertArrayHasKey('name', $part);
+ self::assertArrayHasKey('id', $part);
+ self::assertArrayHasKey('description', $part);
+ }
+
+ public function testCategoryPartsForEmptyCategory(): void
+ {
+ $client = $this->createClientWithCredentials();
+ $client->request('GET', self::BASE_URL.'/parts/category/2.json');
+
+ //Response should still be successful, but the result should be empty
+ self::assertResponseIsSuccessful();
+ $content = $client->getResponse()->getContent();
+ self::assertJson($content);
+ self::assertEmpty(json_decode($content, true));
+ }
+
+ public function testPartDetailsPart1(): void
+ {
+ $client = $this->createClientWithCredentials();
+ $client->request('GET', self::BASE_URL.'/parts/1.json');
+
+ //Response should still be successful, but the result should be empty
+ self::assertResponseIsSuccessful();
+ $content = $client->getResponse()->getContent();
+ self::assertJson($content);
+
+ $data = json_decode($content, true);
+
+ $expected = array(
+ 'id' => '1',
+ 'name' => 'Part 1',
+ 'symbolIdStr' => 'Part:1',
+ 'exclude_from_bom' => 'False',
+ 'exclude_from_board' => 'True',
+ 'exclude_from_sim' => 'False',
+ 'fields' =>
+ array(
+ 'footprint' =>
+ array(
+ 'value' => 'Part:1',
+ 'visible' => 'False',
+ ),
+ 'reference' =>
+ array(
+ 'value' => 'P',
+ 'visible' => 'True',
+ ),
+ 'value' =>
+ array(
+ 'value' => 'Part 1',
+ 'visible' => 'True',
+ ),
+ 'keywords' =>
+ array(
+ 'value' => '',
+ 'visible' => 'False',
+ ),
+ 'datasheet' =>
+ array(
+ 'value' => 'http://localhost/en/part/1/info',
+ 'visible' => 'False',
+ ),
+ 'description' =>
+ array(
+ 'value' => '',
+ 'visible' => 'False',
+ ),
+ 'Category' =>
+ array(
+ 'value' => 'Node 1',
+ 'visible' => 'False',
+ ),
+ 'Manufacturing Status' =>
+ array(
+ 'value' => '',
+ 'visible' => 'False',
+ ),
+ 'Part-DB ID' =>
+ array(
+ 'value' => '1',
+ 'visible' => 'False',
+ ),
+ ),
+ );
+
+ self::assertEquals($expected, $data);
+ }
+
+ public function testPartDetailsPart2(): void
+ {
+ $client = $this->createClientWithCredentials();
+ $client->request('GET', self::BASE_URL.'/parts/1.json');
+
+ //Response should still be successful, but the result should be empty
+ self::assertResponseIsSuccessful();
+ $content = $client->getResponse()->getContent();
+ self::assertJson($content);
+
+ $data = json_decode($content, true);
+
+ //For part 2 things info should be taken from the category and footprint
+ $expected = array (
+ 'id' => '1',
+ 'name' => 'Part 1',
+ 'symbolIdStr' => 'Part:1',
+ 'exclude_from_bom' => 'False',
+ 'exclude_from_board' => 'True',
+ 'exclude_from_sim' => 'False',
+ 'fields' =>
+ array (
+ 'footprint' =>
+ array (
+ 'value' => 'Part:1',
+ 'visible' => 'False',
+ ),
+ 'reference' =>
+ array (
+ 'value' => 'P',
+ 'visible' => 'True',
+ ),
+ 'value' =>
+ array (
+ 'value' => 'Part 1',
+ 'visible' => 'True',
+ ),
+ 'keywords' =>
+ array (
+ 'value' => '',
+ 'visible' => 'False',
+ ),
+ 'datasheet' =>
+ array (
+ 'value' => 'http://localhost/en/part/1/info',
+ 'visible' => 'False',
+ ),
+ 'description' =>
+ array (
+ 'value' => '',
+ 'visible' => 'False',
+ ),
+ 'Category' =>
+ array (
+ 'value' => 'Node 1',
+ 'visible' => 'False',
+ ),
+ 'Manufacturing Status' =>
+ array (
+ 'value' => '',
+ 'visible' => 'False',
+ ),
+ 'Part-DB ID' =>
+ array (
+ 'value' => '1',
+ 'visible' => 'False',
+ ),
+ ),
+ );
+
+ self::assertEquals($expected, $data);
+ }
+
+}
\ No newline at end of file
diff --git a/tests/Doctrine/SQLiteRegexExtensionTest.php b/tests/Doctrine/SQLiteRegexMiddlewareTest.php
similarity index 85%
rename from tests/Doctrine/SQLiteRegexExtensionTest.php
rename to tests/Doctrine/SQLiteRegexMiddlewareTest.php
index ba9f9411..25358705 100644
--- a/tests/Doctrine/SQLiteRegexExtensionTest.php
+++ b/tests/Doctrine/SQLiteRegexMiddlewareTest.php
@@ -20,10 +20,10 @@
namespace App\Tests\Doctrine;
-use App\Doctrine\SQLiteRegexExtension;
+use App\Doctrine\Middleware\SQLiteRegexExtensionMiddlewareDriver;
use PHPUnit\Framework\TestCase;
-class SQLiteRegexExtensionTest extends TestCase
+class SQLiteRegexMiddlewareTest extends TestCase
{
public function regexpDataProvider(): \Generator
@@ -44,7 +44,7 @@ class SQLiteRegexExtensionTest extends TestCase
*/
public function testRegexp(int $expected, string $pattern, string $value): void
{
- $this->assertSame($expected, SQLiteRegexExtension::regexp($pattern, $value));
+ $this->assertSame($expected, SQLiteRegexExtensionMiddlewareDriver::regexp($pattern, $value));
}
public function fieldDataProvider(): \Generator
@@ -76,7 +76,7 @@ class SQLiteRegexExtensionTest extends TestCase
*/
public function testField(int $expected, string|int|null $value, array $array): void
{
- $this->assertSame($expected, SQLiteRegexExtension::field($value, ...$array));
+ $this->assertSame($expected, SQLiteRegexExtensionMiddlewareDriver::field($value, ...$array));
}
/**
@@ -86,6 +86,6 @@ class SQLiteRegexExtensionTest extends TestCase
{
//Should be the same as field, but with the array comma imploded
$string = implode(',', $array);
- $this->assertSame($expected, SQLiteRegexExtension::field2($value, $string));
+ $this->assertSame($expected, SQLiteRegexExtensionMiddlewareDriver::field2($value, $string));
}
}
diff --git a/tests/Entity/Parts/PartAssociationTest.php b/tests/Entity/Parts/PartAssociationTest.php
new file mode 100644
index 00000000..d541c468
--- /dev/null
+++ b/tests/Entity/Parts/PartAssociationTest.php
@@ -0,0 +1,43 @@
+.
+ */
+
+namespace App\Tests\Entity\Parts;
+
+use App\Entity\Parts\AssociationType;
+use App\Entity\Parts\PartAssociation;
+use PHPUnit\Framework\TestCase;
+
+class PartAssociationTest extends TestCase
+{
+
+ public function testGetTypeTranslationKey(): void
+ {
+ $assoc = new PartAssociation();
+ $assoc->setType(AssociationType::COMPATIBLE);
+ $assoc->setOtherType('Custom Type');
+
+ //If the type is not OTHER the translation key should be the same as the type
+ $this->assertEquals($assoc->getType()->getTranslationKey(), $assoc->getTypeTranslationKey());
+
+ //If the type is OTHER the translation key should be the other type
+ $assoc->setType(AssociationType::OTHER);
+ $this->assertEquals($assoc->getOtherType(), $assoc->getTypeTranslationKey());
+ }
+}
diff --git a/tests/Serializer/PartNormalizerTest.php b/tests/Serializer/PartNormalizerTest.php
index 979254d8..39295a86 100644
--- a/tests/Serializer/PartNormalizerTest.php
+++ b/tests/Serializer/PartNormalizerTest.php
@@ -45,7 +45,9 @@ class PartNormalizerTest extends WebTestCase
{
//Normalizer must only support Part objects (and child classes)
$this->assertFalse($this->service->supportsNormalization(new \stdClass()));
- $this->assertTrue($this->service->supportsNormalization(new Part()));
+ //Part serialization should only work with csv
+ $this->assertFalse($this->service->supportsNormalization(new Part()));
+ $this->assertTrue($this->service->supportsNormalization(new Part(), 'csv'));
}
public function testNormalize(): void
@@ -59,11 +61,6 @@ class PartNormalizerTest extends WebTestCase
$part->addPartLot($partLot1);
$part->addPartLot($partLot2);
- $data = $this->service->normalize($part, 'json', ['groups' => ['simple']]);
- $this->assertSame('Test Part', $data['name']);
- $this->assertSame(6.0, $data['total_instock']);
- $this->assertSame('part', $data['type']);
-
//Check that type field is not present in CSV export
$data = $this->service->normalize($part, 'csv', ['groups' => ['simple']]);
$this->assertSame('Test Part', $data['name']);
diff --git a/tests/Services/EntityMergers/Mergers/EntityMergerHelperTraitTest.php b/tests/Services/EntityMergers/Mergers/EntityMergerHelperTraitTest.php
new file mode 100644
index 00000000..7daedef2
--- /dev/null
+++ b/tests/Services/EntityMergers/Mergers/EntityMergerHelperTraitTest.php
@@ -0,0 +1,244 @@
+.
+ */
+
+namespace App\Tests\Services\EntityMergers\Mergers;
+
+use App\Entity\Parts\Part;
+use App\Services\EntityMergers\Mergers\EntityMergerHelperTrait;
+use PHPUnit\Framework\TestCase;
+use Symfony\Bundle\FrameworkBundle\Test\KernelTestCase;
+use Symfony\Component\PropertyAccess\PropertyAccessorInterface;
+
+class EntityMergerHelperTraitTest extends KernelTestCase
+{
+ use EntityMergerHelperTrait;
+
+ public function setUp(): void
+ {
+ self::bootKernel();
+ $this->property_accessor = self::getContainer()->get(PropertyAccessorInterface::class);
+ }
+
+ public function testUseCallback(): void
+ {
+ $obj1 = new MergeTestClass();
+ $obj1->non_nullable_string = 'obj1';
+ $obj2 = new MergeTestClass();
+ $obj2->non_nullable_string = 'obj2';
+
+ $tmp = $this->useCallback(function ($target_value, $other_value, $target, $other, $field) use ($obj1, $obj2) {
+ $this->assertSame($obj1, $target);
+ $this->assertSame($obj2, $other);
+ $this->assertSame('non_nullable_string', $field);
+ $this->assertSame('obj1', $target_value);
+ $this->assertSame('obj2', $other_value);
+
+ return 'callback';
+
+ }, $obj1, $obj2, 'non_nullable_string');
+
+ //merge should return the target object
+ $this->assertSame($obj1, $tmp);
+ //And it should have the value from the callback set
+ $this->assertSame('callback', $obj1->non_nullable_string);
+ }
+
+ public function testOtherFunctionIfNotNull(): void
+ {
+ $obj1 = new MergeTestClass();
+ $obj1->string_property = null;
+ $obj2 = new MergeTestClass();
+ $obj2->string_property = 'obj2';
+
+ $tmp = $this->useOtherValueIfNotNull($obj1, $obj2, 'string_property');
+ $this->assertSame($obj1, $tmp);
+ $this->assertSame('obj2', $obj1->string_property);
+
+ $obj1->string_property = 'obj1';
+ $tmp = $this->useOtherValueIfNotNull($obj1, $obj2, 'string_property');
+ $this->assertSame($obj1, $tmp);
+ $this->assertSame('obj1', $tmp->string_property);
+
+ $obj1->string_property = null;
+ $obj2->string_property = null;
+ $this->assertSame($obj1, $this->useOtherValueIfNotNull($obj1, $obj2, 'string_property'));
+ $this->assertNull($obj1->string_property);
+ }
+
+ public function testOtherFunctionIfNotEmpty(): void
+ {
+ $obj1 = new MergeTestClass();
+ $obj1->string_property = null;
+ $obj2 = new MergeTestClass();
+ $obj2->string_property = 'obj2';
+
+ $tmp = $this->useOtherValueIfNotEmtpy($obj1, $obj2, 'string_property');
+ $this->assertSame($obj1, $tmp);
+ $this->assertSame('obj2', $obj1->string_property);
+
+ $obj1->string_property = 'obj1';
+ $tmp = $this->useOtherValueIfNotEmtpy($obj1, $obj2, 'string_property');
+ $this->assertSame($obj1, $tmp);
+ $this->assertSame('obj1', $tmp->string_property);
+
+ $obj1->string_property = null;
+ $obj2->string_property = null;
+ $this->assertSame($obj1, $this->useOtherValueIfNotEmtpy($obj1, $obj2, 'string_property'));
+ $this->assertNull($obj1->string_property);
+
+ $obj1->string_property = '';
+ $obj2->string_property = 'test';
+ $this->assertSame($obj1, $this->useOtherValueIfNotEmtpy($obj1, $obj2, 'string_property'));
+ $this->assertSame('test', $obj1->string_property);
+ }
+
+ public function testUseLargerValue(): void
+ {
+ $obj1 = new MergeTestClass();
+ $obj1->int_property = 1;
+ $obj2 = new MergeTestClass();
+ $obj2->int_property = 2;
+
+ $tmp = $this->useLargerValue($obj1, $obj2, 'int_property');
+ $this->assertSame($obj1, $tmp);
+ $this->assertSame(2, $obj1->int_property);
+
+ $obj1->int_property = 3;
+ $obj2->int_property = 2;
+
+ $tmp = $this->useLargerValue($obj1, $obj2, 'int_property');
+ $this->assertSame($obj1, $tmp);
+ $this->assertSame(3, $obj1->int_property);
+ }
+
+ public function testUseSmallerValue(): void
+ {
+ $obj1 = new MergeTestClass();
+ $obj1->int_property = 1;
+ $obj2 = new MergeTestClass();
+ $obj2->int_property = 2;
+
+ $tmp = $this->useSmallerValue($obj1, $obj2, 'int_property');
+ $this->assertSame($obj1, $tmp);
+ $this->assertSame(1, $obj1->int_property);
+
+ $obj1->int_property = 3;
+ $obj2->int_property = 2;
+
+ $tmp = $this->useSmallerValue($obj1, $obj2, 'int_property');
+ $this->assertSame($obj1, $tmp);
+ $this->assertSame(2, $obj1->int_property);
+ }
+
+ public function testUseTrueValue(): void
+ {
+ $obj1 = new MergeTestClass();
+ $obj1->bool_property = false;
+ $obj2 = new MergeTestClass();
+ $obj2->bool_property = true;
+
+ $tmp = $this->useTrueValue($obj1, $obj2, 'bool_property');
+ $this->assertSame($obj1, $tmp);
+ $this->assertTrue($obj1->bool_property);
+
+ $obj1->bool_property = true;
+ $obj2->bool_property = false;
+ $this->assertTrue($this->useTrueValue($obj1, $obj2, 'bool_property')->bool_property);
+
+ $obj1->bool_property = false;
+ $obj2->bool_property = false;
+ $this->assertFalse($this->useTrueValue($obj1, $obj2, 'bool_property')->bool_property);
+ }
+
+ public function testMergeTags(): void
+ {
+ $obj1 = new MergeTestClass();
+ $obj1->string_property = 'tag1,tag2,tag3';
+ $obj2 = new MergeTestClass();
+ $obj2->string_property = 'tag2,tag3,tag4';
+
+ $tmp = $this->mergeTags($obj1, $obj2, 'string_property');
+ $this->assertSame($obj1, $tmp);
+ $this->assertSame('tag1,tag2,tag3,tag4', $obj1->string_property);
+ }
+
+ public function testAreStringsEqual(): void
+ {
+ $this->assertTrue($this->areStringsEqual('test', 'test'));
+ $this->assertTrue($this->areStringsEqual('test', 'TEST'));
+ $this->assertTrue($this->areStringsEqual('test', 'Test'));
+ $this->assertTrue($this->areStringsEqual('test', ' Test '));
+ $this->assertTrue($this->areStringsEqual('Test ', 'test'));
+
+ $this->assertFalse($this->areStringsEqual('test', 'test2'));
+ $this->assertFalse($this->areStringsEqual('test', 'test 1'));
+ }
+
+ public function testMergeTextWithSeparator(): void
+ {
+ $obj1 = new MergeTestClass();
+ $obj1->string_property = 'Test1';
+ $obj2 = new MergeTestClass();
+ $obj2->string_property = 'Test2';
+
+ $tmp = $this->mergeTextWithSeparator($obj1, $obj2, 'string_property', ' # ');
+ $this->assertSame($obj1, $tmp);
+ $this->assertSame('Test1 # Test2', $obj1->string_property);
+
+ //If thee text is the same, it should not be duplicated
+ $obj1->string_property = 'Test1';
+ $obj2->string_property = 'Test1';
+ $this->assertSame($obj1, $this->mergeTextWithSeparator($obj1, $obj2, 'string_property', ' # '));
+ $this->assertSame('Test1', $obj1->string_property);
+
+ //Test what happens if the second text is empty
+ $obj1->string_property = 'Test1';
+ $obj2->string_property = '';
+ $this->assertSame($obj1, $this->mergeTextWithSeparator($obj1, $obj2, 'string_property', ' # '));
+ $this->assertSame('Test1', $obj1->string_property);
+
+ }
+
+ public function testMergeComment(): void
+ {
+ $obj1 = new Part();
+ $obj1->setName('Test1');
+ $obj1->setComment('Comment1');
+ $obj2 = new Part();
+ $obj2->setName('Test2');
+ $obj2->setComment('Comment2');
+
+ $tmp = $this->mergeComment($obj1, $obj2);
+ $this->assertSame($obj1, $tmp);
+ $this->assertSame("Comment1\n\nTest2:\nComment2", $obj1->getComment());
+
+ //If the comment is the same, it should not be duplicated
+ $obj1->setComment('Comment1');
+ $obj2->setComment('Comment1');
+ $this->assertSame($obj1, $this->mergeComment($obj1, $obj2));
+ $this->assertSame('Comment1', $obj1->getComment());
+
+ //Test what happens if the second comment is empty
+ $obj1->setComment('Comment1');
+ $obj2->setComment('');
+ $this->assertSame($obj1, $this->mergeComment($obj1, $obj2));
+ $this->assertSame('Comment1', $obj1->getComment());
+ }
+}
diff --git a/tests/Services/EntityMergers/Mergers/MergeTestClass.php b/tests/Services/EntityMergers/Mergers/MergeTestClass.php
new file mode 100644
index 00000000..da7ad67c
--- /dev/null
+++ b/tests/Services/EntityMergers/Mergers/MergeTestClass.php
@@ -0,0 +1,46 @@
+.
+ */
+
+declare(strict_types=1);
+
+
+namespace App\Tests\Services\EntityMergers\Mergers;
+
+use App\Entity\Parts\Category;
+use Doctrine\Common\Collections\ArrayCollection;
+use Doctrine\Common\Collections\Collection;
+
+class MergeTestClass
+{
+ public int $int_property = 0;
+ public ?float $float_property = null;
+ public ?string $string_property = null;
+ public string $non_nullable_string = '';
+ public bool $bool_property = false;
+
+ public Collection $collection;
+
+ public ?Category $category;
+
+ public function __construct()
+ {
+ $this->collection = new ArrayCollection();
+ }
+}
\ No newline at end of file
diff --git a/tests/Services/EntityMergers/Mergers/PartMergerTest.php b/tests/Services/EntityMergers/Mergers/PartMergerTest.php
new file mode 100644
index 00000000..d607ee72
--- /dev/null
+++ b/tests/Services/EntityMergers/Mergers/PartMergerTest.php
@@ -0,0 +1,190 @@
+.
+ */
+
+namespace App\Tests\Services\EntityMergers\Mergers;
+
+use App\Entity\Parts\AssociationType;
+use App\Entity\Parts\Category;
+use App\Entity\Parts\Footprint;
+use App\Entity\Parts\Manufacturer;
+use App\Entity\Parts\MeasurementUnit;
+use App\Entity\Parts\Part;
+use App\Entity\Parts\PartAssociation;
+use App\Entity\Parts\PartLot;
+use App\Entity\PriceInformations\Orderdetail;
+use App\Services\EntityMergers\Mergers\PartMerger;
+use PHPUnit\Framework\TestCase;
+use Symfony\Bundle\FrameworkBundle\Test\KernelTestCase;
+
+class PartMergerTest extends KernelTestCase
+{
+
+ /** @var PartMerger|null */
+ protected ?PartMerger $merger = null;
+
+ protected function setUp(): void
+ {
+ self::bootKernel();
+ $this->merger = self::getContainer()->get(PartMerger::class);
+ }
+
+ public function testMergeOfEntityRelations(): void
+ {
+ $category = new Category();
+ $footprint = new Footprint();
+ $manufacturer1 = new Manufacturer();
+ $manufacturer2 = new Manufacturer();
+ $unit = new MeasurementUnit();
+
+ $part1 = (new Part())
+ ->setCategory($category)
+ ->setManufacturer($manufacturer1);
+
+ $part2 = (new Part())
+ ->setFootprint($footprint)
+ ->setManufacturer($manufacturer2)
+ ->setPartUnit($unit);
+
+ $merged = $this->merger->merge($part1, $part2);
+ $this->assertSame($merged, $part1);
+ $this->assertSame($category, $merged->getCategory());
+ $this->assertSame($footprint, $merged->getFootprint());
+ $this->assertSame($manufacturer1, $merged->getManufacturer());
+ $this->assertSame($unit, $merged->getPartUnit());
+ }
+
+ public function testMergeOfTags(): void
+ {
+ $part1 = (new Part())
+ ->setTags('tag1,tag2,tag3');
+
+ $part2 = (new Part())
+ ->setTags('tag2,tag3,tag4');
+
+ $merged = $this->merger->merge($part1, $part2);
+ $this->assertSame($merged, $part1);
+ $this->assertSame('tag1,tag2,tag3,tag4', $merged->getTags());
+ }
+
+ public function testMergeOfBoolFields(): void
+ {
+ $part1 = (new Part())
+ ->setFavorite(false)
+ ->setNeedsReview(true);
+
+ $part2 = (new Part())
+ ->setFavorite(true)
+ ->setNeedsReview(false);
+
+ $merged = $this->merger->merge($part1, $part2);
+ //Favorite and needs review should be true, as it is true in one of the parts
+ $this->assertTrue($merged->isFavorite());
+ $this->assertTrue($merged->isNeedsReview());
+ }
+
+ public function testMergeOfAssociatedPartsAsOther(): void
+ {
+ //Part1 is associated with part2 and part3:
+ $part1 = (new Part())
+ ->setName('part1');
+ $part2 = (new Part())
+ ->setName('part2');
+ $part3 = (new Part())
+ ->setName('part3');
+
+ $association1 = (new PartAssociation())
+ ->setOther($part2)
+ ->setType(AssociationType::COMPATIBLE);
+
+ $association2 = (new PartAssociation())
+ ->setOther($part2)
+ ->setType(AssociationType::SUPERSEDES);
+
+ $association3 = (new PartAssociation())
+ ->setOther($part3)
+ ->setType(AssociationType::SUPERSEDES);
+
+ $part1->addAssociatedPartsAsOwner($association1);
+ $part1->addAssociatedPartsAsOwner($association2);
+ $part1->addAssociatedPartsAsOwner($association3);
+ //Fill the other side of the association manually, as we have no entity manager
+ $part2->getAssociatedPartsAsOther()->add($association1);
+ $part2->getAssociatedPartsAsOther()->add($association2);
+ $part3->getAssociatedPartsAsOther()->add($association3);
+
+ //Now we merge part2 into part3:
+ $merged = $this->merger->merge($part3, $part2);
+ $this->assertSame($merged, $part3);
+
+ //Now part1 should have 4 associations, 2 with part2 and 2 with part3
+ $this->assertCount(4, $part1->getAssociatedPartsAsOwner());
+ $this->assertCount(2, $part1->getAssociatedPartsAsOwner()->filter(fn(PartAssociation $a) => $a->getOther() === $part2));
+ $this->assertCount(2, $part1->getAssociatedPartsAsOwner()->filter(fn(PartAssociation $a) => $a->getOther() === $part3));
+ }
+
+ /**
+ * This test also functions as test for EntityMergerHelperTrait::mergeCollections() so its pretty long.
+ * @return void
+ */
+ public function testMergeOfPartLots(): void
+ {
+ $lot1 = (new PartLot())->setAmount(2)->setNeedsRefill(true);
+ $lot2 = (new PartLot())->setInstockUnknown(true)->setVendorBarcode('test');
+ $lot3 = (new PartLot())->setDescription('lot3')->setAmount(3);
+ $lot4 = (new PartLot())->setDescription('lot4')->setComment('comment');
+
+ $part1 = (new Part())
+ ->setName('Part 1')
+ ->addPartLot($lot1)
+ ->addPartLot($lot2);
+
+ $part2 = (new Part())
+ ->setName('Part 2')
+ ->addPartLot($lot3)
+ ->addPartLot($lot4);
+
+ $merged = $this->merger->merge($part1, $part2);
+
+ $this->assertInstanceOf(Part::class, $merged);
+ //We should now have all 4 lots
+ $this->assertCount(4, $merged->getPartLots());
+
+ //The existing lots should be the same instance as before
+ $this->assertSame($lot1, $merged->getPartLots()->get(0));
+ $this->assertSame($lot2, $merged->getPartLots()->get(1));
+ //While the new lots should be new instances
+ $this->assertNotSame($lot3, $merged->getPartLots()->get(2));
+ $this->assertNotSame($lot4, $merged->getPartLots()->get(3));
+
+ //But the new lots, should be assigned to the target part and contain the same info
+ $clone3 = $merged->getPartLots()->get(2);
+ $clone4 = $merged->getPartLots()->get(3);
+ $this->assertSame($merged, $clone3->getPart());
+ $this->assertSame($merged, $clone4->getPart());
+
+ }
+
+ public function testSupports()
+ {
+ $this->assertFalse($this->merger->supports(new \stdClass(), new \stdClass()));
+ $this->assertFalse($this->merger->supports(new \stdClass(), new Part()));
+ $this->assertTrue($this->merger->supports(new Part(), new Part()));
+ }
+}
diff --git a/tests/Services/InfoProviderSystem/DTOtoEntityConverterTest.php b/tests/Services/InfoProviderSystem/DTOtoEntityConverterTest.php
index 5a9002c3..658f5135 100644
--- a/tests/Services/InfoProviderSystem/DTOtoEntityConverterTest.php
+++ b/tests/Services/InfoProviderSystem/DTOtoEntityConverterTest.php
@@ -146,11 +146,11 @@ class DTOtoEntityConverterTest extends WebTestCase
$this->assertEquals($type, $entity->getAttachmentType());
}
- public function testConvertPart()
+ public function testConvertPart(): void
{
$parameters = [new ParameterDTO('Test', 'Test')];
- $datasheets = [new FileDTO('https://invalid.invalid/file.pdf')];
- $images = [new FileDTO('https://invalid.invalid/image.png')];
+ $datasheets = [new FileDTO('https://invalid.invalid/file.pdf'), new FileDTO('https://invalid.invalid/file.pdf', name: 'TestFile')];
+ $images = [new FileDTO('https://invalid.invalid/image.png'), new FileDTO('https://invalid.invalid/image2.png', name: 'TestImage2'), new FileDTO('https://invalid.invalid/image2.png')];
$shopping_infos = [new PurchaseInfoDTO('TestDistributor', 'TestOrderNumber', [new PriceDTO(1, "10.0", 'EUR')])];
$dto = new PartDetailDTO(
@@ -179,5 +179,16 @@ class DTOtoEntityConverterTest extends WebTestCase
//The actual content is tested in the corresponding tests
$this->assertCount(count($parameters), $entity->getParameters());
$this->assertCount(count($shopping_infos), $entity->getOrderdetails());
+
+ //Datasheets and images are stored as attachments and the duplicates, should be filtered out
+ $this->assertCount(3, $entity->getAttachments());
+ //The attachments should have the name of the named duplicate file
+ $image1 = $entity->getAttachments()[0];
+ $this->assertEquals('Main image', $image1->getName());
+
+ $image1 = $entity->getAttachments()[1];
+
+ $datasheet = $entity->getAttachments()[2];
+ $this->assertEquals('TestFile', $datasheet->getName());
}
}
diff --git a/tests/Services/LabelSystem/Barcodes/BarcodeScanHelperTest.php b/tests/Services/LabelSystem/Barcodes/BarcodeScanHelperTest.php
index 4080896c..60a0a3f1 100644
--- a/tests/Services/LabelSystem/Barcodes/BarcodeScanHelperTest.php
+++ b/tests/Services/LabelSystem/Barcodes/BarcodeScanHelperTest.php
@@ -107,6 +107,10 @@ class BarcodeScanHelperTest extends WebTestCase
//Test IPN barcode
yield [new BarcodeScanResult(LabelSupportedElement::PART, 2, BarcodeSourceType::IPN),
'IPN123'];
+
+ //Test vendor barcode
+ yield [new BarcodeScanResult(LabelSupportedElement::PART_LOT, 2,BarcodeSourceType::VENDOR),
+ 'lot2_vendor_barcode'];
}
public static function invalidDataProvider(): array
diff --git a/tests/Services/Parameters/ParameterExtractorTest.php b/tests/Services/Parameters/ParameterExtractorTest.php
index e82d99af..842f8b80 100644
--- a/tests/Services/Parameters/ParameterExtractorTest.php
+++ b/tests/Services/Parameters/ParameterExtractorTest.php
@@ -67,6 +67,7 @@ class ParameterExtractorTest extends WebTestCase
['=BC547 rewr'],
['For good, [b]bad[/b], evil'],
['Param:; Test'],
+ ['A [link](https://demo.part-db.de) should not be matched']
];
}
diff --git a/translations/messages.cs.xlf b/translations/messages.cs.xlf
new file mode 100644
index 00000000..d4f89c82
--- /dev/null
+++ b/translations/messages.cs.xlf
@@ -0,0 +1,12201 @@
+
+
+
+
+
+ Part-DB1\templates\AdminPages\AttachmentTypeAdmin.html.twig:4
+ Part-DB1\templates\AdminPages\AttachmentTypeAdmin.html.twig:4
+ templates\AdminPages\AttachmentTypeAdmin.html.twig:4
+
+
+ attachment_type.caption
+ Typy souborů pro přílohy
+
+
+
+
+ Part-DB1\templates\AdminPages\AttachmentTypeAdmin.html.twig:12
+ new
+
+
+ attachment_type.edit
+ Upravit typ souboru
+
+
+
+
+ Part-DB1\templates\AdminPages\AttachmentTypeAdmin.html.twig:16
+ new
+
+
+ attachment_type.new
+ Nový typ souboru
+
+
+
+
+ Part-DB1\templates\AdminPages\CategoryAdmin.html.twig:4
+ Part-DB1\templates\_sidebar.html.twig:22
+ Part-DB1\templates\_sidebar.html.twig:7
+ Part-DB1\templates\AdminPages\CategoryAdmin.html.twig:4
+ Part-DB1\templates\_sidebar.html.twig:22
+ Part-DB1\templates\_sidebar.html.twig:7
+ templates\AdminPages\CategoryAdmin.html.twig:4
+ templates\base.html.twig:163
+ templates\base.html.twig:170
+ templates\base.html.twig:197
+ templates\base.html.twig:225
+
+
+ category.labelp
+ Kategorie
+
+
+
+
+ Part-DB1\templates\AdminPages\CategoryAdmin.html.twig:8
+ Part-DB1\templates\AdminPages\StorelocationAdmin.html.twig:19
+ Part-DB1\templates\AdminPages\CategoryAdmin.html.twig:8
+ Part-DB1\templates\AdminPages\StorelocationAdmin.html.twig:11
+ templates\AdminPages\CategoryAdmin.html.twig:8
+
+
+ admin.options
+ Možnosti
+
+
+
+
+ Part-DB1\templates\AdminPages\CategoryAdmin.html.twig:9
+ Part-DB1\templates\AdminPages\CompanyAdminBase.html.twig:15
+ Part-DB1\templates\AdminPages\CategoryAdmin.html.twig:9
+ Part-DB1\templates\AdminPages\CompanyAdminBase.html.twig:15
+ templates\AdminPages\CategoryAdmin.html.twig:9
+
+
+ admin.advanced
+ Pokročilé
+
+
+
+
+ Part-DB1\templates\AdminPages\CategoryAdmin.html.twig:13
+ new
+
+
+ category.edit
+ Upravit kategorii
+
+
+
+
+ Part-DB1\templates\AdminPages\CategoryAdmin.html.twig:17
+ new
+
+
+ category.new
+ Nová kategorie
+
+
+
+
+ Part-DB1\templates\AdminPages\CurrencyAdmin.html.twig:4
+ Part-DB1\templates\AdminPages\CurrencyAdmin.html.twig:4
+
+
+ currency.caption
+ Měna
+
+
+
+
+ Part-DB1\templates\AdminPages\CurrencyAdmin.html.twig:12
+ Part-DB1\templates\AdminPages\CurrencyAdmin.html.twig:12
+
+
+ currency.iso_code.caption
+ Kód ISO
+
+
+
+
+ Part-DB1\templates\AdminPages\CurrencyAdmin.html.twig:15
+ Part-DB1\templates\AdminPages\CurrencyAdmin.html.twig:15
+
+
+ currency.symbol.caption
+ Symbol měny
+
+
+
+
+ Part-DB1\templates\AdminPages\CurrencyAdmin.html.twig:29
+ new
+
+
+ currency.edit
+ Upravit měnu
+
+
+
+
+ Part-DB1\templates\AdminPages\CurrencyAdmin.html.twig:33
+ new
+
+
+ currency.new
+ Nová měna
+
+
+
+
+ Part-DB1\templates\AdminPages\DeviceAdmin.html.twig:4
+ Part-DB1\templates\AdminPages\DeviceAdmin.html.twig:4
+ templates\AdminPages\DeviceAdmin.html.twig:4
+
+
+ project.caption
+ Projekt
+
+
+
+
+ Part-DB1\templates\AdminPages\DeviceAdmin.html.twig:8
+ new
+
+
+ project.edit
+ Upravit projekt
+
+
+
+
+ Part-DB1\templates\AdminPages\DeviceAdmin.html.twig:12
+ new
+
+
+ project.new
+ Nový projekt
+
+
+
+
+ Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:19
+ Part-DB1\templates\_navbar_search.html.twig:67
+ Part-DB1\templates\_sidebar.html.twig:27
+ Part-DB1\templates\_sidebar.html.twig:43
+ Part-DB1\templates\_sidebar.html.twig:63
+ Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:19
+ Part-DB1\templates\_navbar_search.html.twig:61
+ Part-DB1\templates\_sidebar.html.twig:27
+ Part-DB1\templates\_sidebar.html.twig:43
+ Part-DB1\templates\_sidebar.html.twig:63
+ templates\AdminPages\EntityAdminBase.html.twig:9
+ templates\base.html.twig:80
+ templates\base.html.twig:179
+ templates\base.html.twig:206
+ templates\base.html.twig:237
+
+
+ search.placeholder
+ Hledat
+
+
+
+
+ Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:23
+ Part-DB1\templates\_sidebar.html.twig:3
+ Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:23
+ Part-DB1\templates\_sidebar.html.twig:3
+ templates\AdminPages\EntityAdminBase.html.twig:13
+ templates\base.html.twig:166
+ templates\base.html.twig:193
+ templates\base.html.twig:221
+
+
+ expandAll
+ Rozbalit vše
+
+
+
+
+ Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:27
+ Part-DB1\templates\_sidebar.html.twig:4
+ Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:27
+ Part-DB1\templates\_sidebar.html.twig:4
+ templates\AdminPages\EntityAdminBase.html.twig:17
+ templates\base.html.twig:167
+ templates\base.html.twig:194
+ templates\base.html.twig:222
+
+
+ reduceAll
+ Sbalit vše
+
+
+
+
+ Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:54
+ Part-DB1\templates\Parts\info\_sidebar.html.twig:4
+ Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:54
+ Part-DB1\templates\Parts\info\_sidebar.html.twig:4
+
+
+ part.info.timetravel_hint
+ Takto vypadal díl před %timestamp%. <i>Upozorňujeme, že tato funkce je experimentální, takže informace nemusí být správné.</i>
+
+
+
+
+ Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:60
+ Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:60
+ templates\AdminPages\EntityAdminBase.html.twig:42
+
+
+ standard.label
+ Vlastnosti
+
+
+
+
+ Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:61
+ Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:61
+ templates\AdminPages\EntityAdminBase.html.twig:43
+
+
+ infos.label
+ Informace
+
+
+
+
+ Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:63
+ Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:63
+ new
+
+
+ history.label
+ Historie
+
+
+
+
+ Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:66
+ Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:66
+ templates\AdminPages\EntityAdminBase.html.twig:45
+
+
+ export.label
+ Export
+
+
+
+
+ Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:68
+ Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:68
+ templates\AdminPages\EntityAdminBase.html.twig:47
+
+
+ import_export.label
+ Import / Export
+
+
+
+
+ Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:69
+ Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:69
+
+
+ mass_creation.label
+ Hromadné vytváření
+
+
+
+
+ Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:82
+ Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:82
+ templates\AdminPages\EntityAdminBase.html.twig:59
+
+
+ admin.common
+ Obecné
+
+
+
+
+ Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:86
+ Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:86
+
+
+ admin.attachments
+ Přílohy
+
+
+
+
+ Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:90
+
+
+ admin.parameters
+ Parametr
+
+
+
+
+ Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:179
+ Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:167
+ templates\AdminPages\EntityAdminBase.html.twig:142
+
+
+ export_all.label
+ Exportovat všechny prvky
+
+
+
+
+ Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:185
+ Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:173
+
+
+ mass_creation.help
+ Každý řádek bude interpretován jako název prvku, který bude vytvořen. Vnořené struktury můžete vytvářet pomocí odsazení.
+
+
+
+
+ Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:45
+ Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:45
+ templates\AdminPages\EntityAdminBase.html.twig:35
+
+
+ edit.caption
+ Upravit prvek "%name"
+
+
+
+
+ Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:50
+ Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:50
+ templates\AdminPages\EntityAdminBase.html.twig:37
+
+
+ new.caption
+ Nový prvek
+
+
+
+
+ Part-DB1\templates\AdminPages\FootprintAdmin.html.twig:4
+ Part-DB1\templates\_sidebar.html.twig:9
+ Part-DB1\templates\AdminPages\FootprintAdmin.html.twig:4
+ Part-DB1\templates\_sidebar.html.twig:9
+ templates\base.html.twig:172
+ templates\base.html.twig:199
+ templates\base.html.twig:227
+
+
+ footprint.labelp
+ Otisky
+
+
+
+
+ Part-DB1\templates\AdminPages\FootprintAdmin.html.twig:13
+ new
+
+
+ footprint.edit
+ Upravit otisk
+
+
+
+
+ Part-DB1\templates\AdminPages\FootprintAdmin.html.twig:17
+ new
+
+
+ footprint.new
+ Nový otisk
+
+
+
+
+ Part-DB1\templates\AdminPages\GroupAdmin.html.twig:4
+ Part-DB1\templates\AdminPages\GroupAdmin.html.twig:4
+
+
+ group.edit.caption
+ Skupiny
+
+
+
+
+ Part-DB1\templates\AdminPages\GroupAdmin.html.twig:9
+ Part-DB1\templates\AdminPages\UserAdmin.html.twig:16
+ Part-DB1\templates\AdminPages\GroupAdmin.html.twig:9
+ Part-DB1\templates\AdminPages\UserAdmin.html.twig:16
+
+
+ user.edit.permissions
+ Oprávnění
+
+
+
+
+ Part-DB1\templates\AdminPages\GroupAdmin.html.twig:24
+ new
+
+
+ group.edit
+ Upravit skupinu
+
+
+
+
+ Part-DB1\templates\AdminPages\GroupAdmin.html.twig:28
+ new
+
+
+ group.new
+ Nová skupina
+
+
+
+
+ Part-DB1\templates\AdminPages\LabelProfileAdmin.html.twig:4
+
+
+ label_profile.caption
+ Profily štítků
+
+
+
+
+ Part-DB1\templates\AdminPages\LabelProfileAdmin.html.twig:8
+
+
+ label_profile.advanced
+ Pokročilé
+
+
+
+
+ Part-DB1\templates\AdminPages\LabelProfileAdmin.html.twig:9
+
+
+ label_profile.comment
+ Poznámky
+
+
+
+
+ Part-DB1\templates\AdminPages\LabelProfileAdmin.html.twig:55
+ new
+
+
+ label_profile.edit
+ Upravit profil štítku
+
+
+
+
+ Part-DB1\templates\AdminPages\LabelProfileAdmin.html.twig:59
+ new
+
+
+ label_profile.new
+ Nový profil štítku
+
+
+
+
+ Part-DB1\templates\AdminPages\ManufacturerAdmin.html.twig:4
+ Part-DB1\templates\AdminPages\ManufacturerAdmin.html.twig:4
+ templates\AdminPages\ManufacturerAdmin.html.twig:4
+
+
+ manufacturer.caption
+ Výrobci
+
+
+
+
+ Part-DB1\templates\AdminPages\ManufacturerAdmin.html.twig:8
+ new
+
+
+ manufacturer.edit
+ Upravit výrobce
+
+
+
+
+ Part-DB1\templates\AdminPages\ManufacturerAdmin.html.twig:12
+ new
+
+
+ manufacturer.new
+ Nový výrobce
+
+
+
+
+ Part-DB1\templates\AdminPages\MeasurementUnitAdmin.html.twig:4
+ Part-DB1\templates\AdminPages\MeasurementUnitAdmin.html.twig:4
+
+
+ measurement_unit.caption
+ Měrné jednotky
+
+
+
+
+ Part-DB1\templates\AdminPages\StorelocationAdmin.html.twig:5
+ Part-DB1\templates\_sidebar.html.twig:8
+ Part-DB1\templates\AdminPages\StorelocationAdmin.html.twig:4
+ Part-DB1\templates\_sidebar.html.twig:8
+ templates\base.html.twig:171
+ templates\base.html.twig:198
+ templates\base.html.twig:226
+
+
+ storelocation.labelp
+ Umístění
+
+
+
+
+ Part-DB1\templates\AdminPages\StorelocationAdmin.html.twig:32
+ new
+
+
+ storelocation.edit
+ Upravit umístění
+
+
+
+
+ Part-DB1\templates\AdminPages\StorelocationAdmin.html.twig:36
+ new
+
+
+ storelocation.new
+ Nové místo skladování
+
+
+
+
+ Part-DB1\templates\AdminPages\SupplierAdmin.html.twig:4
+ Part-DB1\templates\AdminPages\SupplierAdmin.html.twig:4
+ templates\AdminPages\SupplierAdmin.html.twig:4
+
+
+ supplier.caption
+ Dodavatelé
+
+
+
+
+ Part-DB1\templates\AdminPages\SupplierAdmin.html.twig:16
+ new
+
+
+ supplier.edit
+ Upravit dodavatele
+
+
+
+
+ Part-DB1\templates\AdminPages\SupplierAdmin.html.twig:20
+ new
+
+
+ supplier.new
+ Nový dodavatel
+
+
+
+
+ Part-DB1\templates\AdminPages\UserAdmin.html.twig:8
+ Part-DB1\templates\AdminPages\UserAdmin.html.twig:8
+
+
+ user.edit.caption
+ Uživatelé
+
+
+
+
+ Part-DB1\templates\AdminPages\UserAdmin.html.twig:14
+ Part-DB1\templates\AdminPages\UserAdmin.html.twig:14
+
+
+ user.edit.configuration
+ Konfigurace
+
+
+
+
+ Part-DB1\templates\AdminPages\UserAdmin.html.twig:15
+ Part-DB1\templates\AdminPages\UserAdmin.html.twig:15
+
+
+ user.edit.password
+ Heslo
+
+
+
+
+ Part-DB1\templates\AdminPages\UserAdmin.html.twig:45
+ Part-DB1\templates\AdminPages\UserAdmin.html.twig:45
+
+
+ user.edit.tfa.caption
+ Dvoufaktorové ověřování
+
+
+
+
+ Part-DB1\templates\AdminPages\UserAdmin.html.twig:47
+ Part-DB1\templates\AdminPages\UserAdmin.html.twig:47
+
+
+ user.edit.tfa.google_active
+ Aplikace Authenticator aktivní
+
+
+
+
+ Part-DB1\templates\AdminPages\UserAdmin.html.twig:48
+ Part-DB1\templates\Users\backup_codes.html.twig:15
+ Part-DB1\templates\Users\_2fa_settings.html.twig:95
+ Part-DB1\templates\AdminPages\UserAdmin.html.twig:48
+ Part-DB1\templates\Users\backup_codes.html.twig:15
+ Part-DB1\templates\Users\_2fa_settings.html.twig:95
+
+
+ tfa_backup.remaining_tokens
+ Počet zbývajících záložních kódů
+
+
+
+
+ Part-DB1\templates\AdminPages\UserAdmin.html.twig:49
+ Part-DB1\templates\Users\backup_codes.html.twig:17
+ Part-DB1\templates\Users\_2fa_settings.html.twig:96
+ Part-DB1\templates\AdminPages\UserAdmin.html.twig:49
+ Part-DB1\templates\Users\backup_codes.html.twig:17
+ Part-DB1\templates\Users\_2fa_settings.html.twig:96
+
+
+ tfa_backup.generation_date
+ Datum generování záložních kódů
+
+
+
+
+ Part-DB1\templates\AdminPages\UserAdmin.html.twig:53
+ Part-DB1\templates\AdminPages\UserAdmin.html.twig:60
+ Part-DB1\templates\AdminPages\UserAdmin.html.twig:53
+ Part-DB1\templates\AdminPages\UserAdmin.html.twig:60
+
+
+ user.edit.tfa.disabled
+ Metoda není povolena
+
+
+
+
+ Part-DB1\templates\AdminPages\UserAdmin.html.twig:56
+ Part-DB1\templates\AdminPages\UserAdmin.html.twig:56
+
+
+ user.edit.tfa.u2f_keys_count
+ Aktivní bezpečnostní klíče
+
+
+
+
+ Part-DB1\templates\AdminPages\UserAdmin.html.twig:72
+ Part-DB1\templates\AdminPages\UserAdmin.html.twig:72
+
+
+ user.edit.tfa.disable_tfa_title
+ Opravdu chcete pokračovat?
+
+
+
+
+ Part-DB1\templates\AdminPages\UserAdmin.html.twig:72
+ Part-DB1\templates\AdminPages\UserAdmin.html.twig:72
+
+
+ user.edit.tfa.disable_tfa_message
+ Tím deaktivujete <b>všechny aktivní dvoufaktorové metody ověřování uživatele</b> a odstraníte <b>záložní kódy</b>!
+<br>
+Uživatel bude muset znovu nastavit všechny metody dvoufaktorového ověřování a vytisknout nové záložní kódy! <br><br>
+<b>Toto proveďte pouze v případě, že jste si naprosto jisti identitou uživatele (hledajícího pomoc), jinak by mohl být účet kompromitován útočníkem!</b>
+
+
+
+
+ Part-DB1\templates\AdminPages\UserAdmin.html.twig:73
+ Part-DB1\templates\AdminPages\UserAdmin.html.twig:73
+
+
+ user.edit.tfa.disable_tfa.btn
+ Zakázat všechny metody dvoufaktorového ověřování
+
+
+
+
+ Part-DB1\templates\AdminPages\UserAdmin.html.twig:85
+ new
+
+
+ user.edit
+ Upravit uživatele
+
+
+
+
+ Part-DB1\templates\AdminPages\UserAdmin.html.twig:89
+ new
+
+
+ user.new
+ Nový uživatel
+
+
+
+
+ Part-DB1\templates\AdminPages\_attachments.html.twig:4
+ Part-DB1\templates\Parts\edit\_attachments.html.twig:4
+ Part-DB1\templates\AdminPages\_attachments.html.twig:4
+ Part-DB1\templates\Parts\edit\_attachments.html.twig:4
+ Part-DB1\templates\Parts\info\_attachments_info.html.twig:63
+
+
+ attachment.delete
+ Smazat
+
+
+
+
+ Part-DB1\templates\AdminPages\_attachments.html.twig:41
+ Part-DB1\templates\Parts\edit\_attachments.html.twig:38
+ Part-DB1\templates\Parts\info\_attachments_info.html.twig:35
+ Part-DB1\src\DataTables\AttachmentDataTable.php:159
+ Part-DB1\templates\Parts\edit\_attachments.html.twig:38
+ Part-DB1\src\DataTables\AttachmentDataTable.php:159
+
+
+ attachment.external
+ Externí
+
+
+
+
+ Part-DB1\templates\AdminPages\_attachments.html.twig:49
+ Part-DB1\templates\Parts\edit\_attachments.html.twig:47
+ Part-DB1\templates\AdminPages\_attachments.html.twig:47
+ Part-DB1\templates\Parts\edit\_attachments.html.twig:45
+
+
+ attachment.preview.alt
+ Náhled přílohy
+
+
+
+
+ Part-DB1\templates\AdminPages\_attachments.html.twig:52
+ Part-DB1\templates\Parts\edit\_attachments.html.twig:50
+ Part-DB1\templates\Parts\info\_attachments_info.html.twig:62
+ Part-DB1\templates\AdminPages\_attachments.html.twig:50
+ Part-DB1\templates\Parts\edit\_attachments.html.twig:48
+ Part-DB1\templates\Parts\info\_attachments_info.html.twig:45
+
+
+ attachment.view
+ Zobrazit
+
+
+
+
+ Part-DB1\templates\AdminPages\_attachments.html.twig:58
+ Part-DB1\templates\Parts\edit\_attachments.html.twig:56
+ Part-DB1\templates\Parts\info\_attachments_info.html.twig:43
+ Part-DB1\src\DataTables\AttachmentDataTable.php:166
+ Part-DB1\templates\AdminPages\_attachments.html.twig:56
+ Part-DB1\templates\Parts\edit\_attachments.html.twig:54
+ Part-DB1\templates\Parts\info\_attachments_info.html.twig:38
+ Part-DB1\src\DataTables\AttachmentDataTable.php:166
+
+
+ attachment.file_not_found
+ Soubor nebyl nalezen
+
+
+
+
+ Part-DB1\templates\AdminPages\_attachments.html.twig:66
+ Part-DB1\templates\Parts\edit\_attachments.html.twig:64
+ Part-DB1\templates\Parts\info\_attachments_info.html.twig:48
+ Part-DB1\templates\Parts\edit\_attachments.html.twig:62
+
+
+ attachment.secure
+ Soukromá příloha
+
+
+
+
+ Part-DB1\templates\AdminPages\_attachments.html.twig:79
+ Part-DB1\templates\Parts\edit\_attachments.html.twig:77
+ Part-DB1\templates\AdminPages\_attachments.html.twig:77
+ Part-DB1\templates\Parts\edit\_attachments.html.twig:75
+
+
+ attachment.create
+ Přidat přílohu
+
+
+
+
+ Part-DB1\templates\AdminPages\_attachments.html.twig:84
+ Part-DB1\templates\Parts\edit\_attachments.html.twig:82
+ Part-DB1\templates\Parts\edit\_lots.html.twig:33
+ Part-DB1\templates\AdminPages\_attachments.html.twig:82
+ Part-DB1\templates\Parts\edit\_attachments.html.twig:80
+ Part-DB1\templates\Parts\edit\_lots.html.twig:33
+
+
+ part_lot.edit.delete.confirm
+ Opravdu chcete tuto zásobu smazat? To nelze vzít zpět!
+
+
+
+
+ Part-DB1\templates\AdminPages\_delete_form.html.twig:2
+ Part-DB1\templates\AdminPages\_delete_form.html.twig:2
+ templates\AdminPages\_delete_form.html.twig:2
+
+
+ entity.delete.confirm_title
+ Opravdu chcete smazat %name%?
+
+
+
+
+ Part-DB1\templates\AdminPages\_delete_form.html.twig:3
+ Part-DB1\templates\AdminPages\_delete_form.html.twig:3
+ templates\AdminPages\_delete_form.html.twig:3
+
+
+ entity.delete.message
+ To nelze vrátit zpět!
+<br>
+Související prvky budou přesunuty nahoru.
+
+
+
+
+ Part-DB1\templates\AdminPages\_delete_form.html.twig:11
+ Part-DB1\templates\AdminPages\_delete_form.html.twig:11
+ templates\AdminPages\_delete_form.html.twig:9
+
+
+ entity.delete
+ Odstranit prvek
+
+
+
+
+ Part-DB1\templates\AdminPages\_delete_form.html.twig:16
+ Part-DB1\templates\Parts\info\_tools.html.twig:45
+ Part-DB1\src\Form\Part\PartBaseType.php:286
+ Part-DB1\templates\AdminPages\_delete_form.html.twig:16
+ Part-DB1\templates\Parts\info\_tools.html.twig:43
+ Part-DB1\src\Form\Part\PartBaseType.php:267
+ new
+
+
+ edit.log_comment
+ Změnit komentář
+
+
+
+
+ Part-DB1\templates\AdminPages\_delete_form.html.twig:24
+ Part-DB1\templates\AdminPages\_delete_form.html.twig:24
+ templates\AdminPages\_delete_form.html.twig:12
+
+
+ entity.delete.recursive
+ Odstranit rekurzivně (všechny související prvky)
+
+
+
+
+ Part-DB1\templates\AdminPages\_duplicate.html.twig:3
+
+
+ entity.duplicate
+ Duplikovat prvek
+
+
+
+
+ Part-DB1\templates\AdminPages\_export_form.html.twig:4
+ Part-DB1\src\Form\AdminPages\ImportType.php:76
+ Part-DB1\templates\AdminPages\_export_form.html.twig:4
+ Part-DB1\src\Form\AdminPages\ImportType.php:76
+ templates\AdminPages\_export_form.html.twig:4
+ src\Form\ImportType.php:67
+
+
+ export.format
+ Formát souboru
+
+
+
+
+ Part-DB1\templates\AdminPages\_export_form.html.twig:16
+ Part-DB1\templates\AdminPages\_export_form.html.twig:16
+ templates\AdminPages\_export_form.html.twig:16
+
+
+ export.level
+ Úroveň podrobností
+
+
+
+
+ Part-DB1\templates\AdminPages\_export_form.html.twig:19
+ Part-DB1\templates\AdminPages\_export_form.html.twig:19
+ templates\AdminPages\_export_form.html.twig:19
+
+
+ export.level.simple
+ Jednoduchý
+
+
+
+
+ Part-DB1\templates\AdminPages\_export_form.html.twig:20
+ Part-DB1\templates\AdminPages\_export_form.html.twig:20
+ templates\AdminPages\_export_form.html.twig:20
+
+
+ export.level.extended
+ Rozšířený
+
+
+
+
+ Part-DB1\templates\AdminPages\_export_form.html.twig:21
+ Part-DB1\templates\AdminPages\_export_form.html.twig:21
+ templates\AdminPages\_export_form.html.twig:21
+
+
+ export.level.full
+ Úplný
+
+
+
+
+ Part-DB1\templates\AdminPages\_export_form.html.twig:31
+ Part-DB1\templates\AdminPages\_export_form.html.twig:31
+ templates\AdminPages\_export_form.html.twig:31
+
+
+ export.include_children
+ Zahrnutí podřízených prvků do exportu
+
+
+
+
+ Part-DB1\templates\AdminPages\_export_form.html.twig:39
+ Part-DB1\templates\AdminPages\_export_form.html.twig:39
+ templates\AdminPages\_export_form.html.twig:39
+
+
+ export.btn
+ Export
+
+
+
+
+ Part-DB1\templates\AdminPages\_info.html.twig:4
+ Part-DB1\templates\Parts\edit\edit_part_info.html.twig:12
+ Part-DB1\templates\Parts\info\show_part_info.html.twig:24
+ Part-DB1\templates\Parts\info\_extended_infos.html.twig:36
+ Part-DB1\templates\AdminPages\_info.html.twig:4
+ Part-DB1\templates\Parts\edit\edit_part_info.html.twig:12
+ Part-DB1\templates\Parts\info\show_part_info.html.twig:24
+ Part-DB1\templates\Parts\info\_extended_infos.html.twig:36
+ templates\AdminPages\EntityAdminBase.html.twig:94
+ templates\Parts\edit_part_info.html.twig:12
+ templates\Parts\show_part_info.html.twig:11
+
+
+ id.label
+ ID
+
+
+
+
+ Part-DB1\templates\AdminPages\_info.html.twig:11
+ Part-DB1\templates\Parts\info\_attachments_info.html.twig:76
+ Part-DB1\templates\Parts\info\_attachments_info.html.twig:77
+ Part-DB1\templates\Parts\info\_extended_infos.html.twig:6
+ Part-DB1\templates\Parts\info\_order_infos.html.twig:69
+ Part-DB1\templates\Parts\info\_sidebar.html.twig:12
+ Part-DB1\templates\Parts\lists\_info_card.html.twig:77
+ Part-DB1\templates\AdminPages\_info.html.twig:11
+ Part-DB1\templates\Parts\info\_attachments_info.html.twig:59
+ Part-DB1\templates\Parts\info\_attachments_info.html.twig:60
+ Part-DB1\templates\Parts\info\_extended_infos.html.twig:6
+ Part-DB1\templates\Parts\info\_order_infos.html.twig:69
+ Part-DB1\templates\Parts\info\_sidebar.html.twig:12
+ Part-DB1\templates\Parts\lists\_info_card.html.twig:53
+ templates\AdminPages\EntityAdminBase.html.twig:101
+ templates\Parts\show_part_info.html.twig:248
+
+
+ createdAt
+ Vytvořeno
+
+
+
+
+ Part-DB1\templates\AdminPages\_info.html.twig:25
+ Part-DB1\templates\Parts\info\_extended_infos.html.twig:21
+ Part-DB1\templates\Parts\info\_sidebar.html.twig:8
+ Part-DB1\templates\Parts\lists\_info_card.html.twig:73
+ Part-DB1\templates\AdminPages\_info.html.twig:25
+ Part-DB1\templates\Parts\info\_extended_infos.html.twig:21
+ Part-DB1\templates\Parts\info\_sidebar.html.twig:8
+ Part-DB1\templates\Parts\lists\_info_card.html.twig:49
+ templates\AdminPages\EntityAdminBase.html.twig:114
+ templates\Parts\show_part_info.html.twig:263
+
+
+ lastModified
+ Naposledy upraveno
+
+
+
+
+ Part-DB1\templates\AdminPages\_info.html.twig:38
+ Part-DB1\templates\AdminPages\_info.html.twig:38
+
+
+ entity.info.parts_count
+ Počet dílů s tímto prvkem
+
+
+
+
+ Part-DB1\templates\AdminPages\_parameters.html.twig:6
+ Part-DB1\templates\helper.twig:125
+ Part-DB1\templates\Parts\edit\_specifications.html.twig:6
+
+
+ specifications.property
+ Parametr
+
+
+
+
+ Part-DB1\templates\AdminPages\_parameters.html.twig:7
+ Part-DB1\templates\Parts\edit\_specifications.html.twig:7
+
+
+ specifications.symbol
+ Symbol
+
+
+
+
+ Part-DB1\templates\AdminPages\_parameters.html.twig:8
+ Part-DB1\templates\Parts\edit\_specifications.html.twig:8
+
+
+ specifications.value_min
+ Min.
+
+
+
+
+ Part-DB1\templates\AdminPages\_parameters.html.twig:9
+ Part-DB1\templates\Parts\edit\_specifications.html.twig:9
+
+
+ specifications.value_typ
+ Typ.
+
+
+
+
+ Part-DB1\templates\AdminPages\_parameters.html.twig:10
+ Part-DB1\templates\Parts\edit\_specifications.html.twig:10
+
+
+ specifications.value_max
+ Max.
+
+
+
+
+ Part-DB1\templates\AdminPages\_parameters.html.twig:11
+ Part-DB1\templates\Parts\edit\_specifications.html.twig:11
+
+
+ specifications.unit
+ Jednotka
+
+
+
+
+ Part-DB1\templates\AdminPages\_parameters.html.twig:12
+ Part-DB1\templates\Parts\edit\_specifications.html.twig:12
+
+
+ specifications.text
+ Text
+
+
+
+
+ Part-DB1\templates\AdminPages\_parameters.html.twig:13
+ Part-DB1\templates\Parts\edit\_specifications.html.twig:13
+
+
+ specifications.group
+ Skupina
+
+
+
+
+ Part-DB1\templates\AdminPages\_parameters.html.twig:26
+ Part-DB1\templates\Parts\edit\_specifications.html.twig:26
+
+
+ specification.create
+ Nový parametr
+
+
+
+
+ Part-DB1\templates\AdminPages\_parameters.html.twig:31
+ Part-DB1\templates\Parts\edit\_specifications.html.twig:31
+
+
+ parameter.delete.confirm
+ Opravdu chcete tento parametr odstranit?
+
+
+
+
+ Part-DB1\templates\attachment_list.html.twig:3
+ Part-DB1\templates\attachment_list.html.twig:3
+
+
+ attachment.list.title
+ Seznam příloh
+
+
+
+
+ Part-DB1\templates\attachment_list.html.twig:10
+ Part-DB1\templates\LogSystem\_log_table.html.twig:8
+ Part-DB1\templates\Parts\lists\_parts_list.html.twig:6
+ Part-DB1\templates\attachment_list.html.twig:10
+ Part-DB1\templates\LogSystem\_log_table.html.twig:8
+ Part-DB1\templates\Parts\lists\_parts_list.html.twig:6
+
+
+ part_list.loading.caption
+ Načítání
+
+
+
+
+ Part-DB1\templates\attachment_list.html.twig:11
+ Part-DB1\templates\LogSystem\_log_table.html.twig:9
+ Part-DB1\templates\Parts\lists\_parts_list.html.twig:7
+ Part-DB1\templates\attachment_list.html.twig:11
+ Part-DB1\templates\LogSystem\_log_table.html.twig:9
+ Part-DB1\templates\Parts\lists\_parts_list.html.twig:7
+
+
+ part_list.loading.message
+ To může chvíli trvat. Pokud tato zpráva nezmizí, zkuste stránku načíst znovu.
+
+
+
+
+ Part-DB1\templates\base.html.twig:68
+ Part-DB1\templates\base.html.twig:68
+ templates\base.html.twig:246
+
+
+ vendor.base.javascript_hint
+ Chcete-li používat všechny funkce, aktivujte prosím JavaScript!
+
+
+
+
+ Part-DB1\templates\base.html.twig:73
+ Part-DB1\templates\base.html.twig:73
+
+
+ sidebar.big.toggle
+ Zobrazit/skrýt postranní panel
+
+
+
+
+ Part-DB1\templates\base.html.twig:95
+ Part-DB1\templates\base.html.twig:95
+ templates\base.html.twig:271
+
+
+ loading.caption
+ Načítání:
+
+
+
+
+ Part-DB1\templates\base.html.twig:96
+ Part-DB1\templates\base.html.twig:96
+ templates\base.html.twig:272
+
+
+ loading.message
+ To může chvíli trvat. Pokud tato zpráva zůstává dlouho, zkuste stránku znovu načíst.
+
+
+
+
+ Part-DB1\templates\base.html.twig:101
+ Part-DB1\templates\base.html.twig:101
+ templates\base.html.twig:277
+
+
+ loading.bar
+ Načítání...
+
+
+
+
+ Part-DB1\templates\base.html.twig:112
+ Part-DB1\templates\base.html.twig:112
+ templates\base.html.twig:288
+
+
+ back_to_top
+ Zpět na začátek stránky
+
+
+
+
+ Part-DB1\templates\Form\permissionLayout.html.twig:35
+ Part-DB1\templates\Form\permissionLayout.html.twig:35
+
+
+ permission.edit.permission
+ Oprávnění
+
+
+
+
+ Part-DB1\templates\Form\permissionLayout.html.twig:36
+ Part-DB1\templates\Form\permissionLayout.html.twig:36
+
+
+ permission.edit.value
+ Hodnota
+
+
+
+
+ Part-DB1\templates\Form\permissionLayout.html.twig:53
+ Part-DB1\templates\Form\permissionLayout.html.twig:53
+
+
+ permission.legend.title
+ Vysvětlení režimů
+
+
+
+
+ Part-DB1\templates\Form\permissionLayout.html.twig:57
+ Part-DB1\templates\Form\permissionLayout.html.twig:57
+
+
+ permission.legend.disallow
+ Zakázáno
+
+
+
+
+ Part-DB1\templates\Form\permissionLayout.html.twig:61
+ Part-DB1\templates\Form\permissionLayout.html.twig:61
+
+
+ permission.legend.allow
+ Povoleno
+
+
+
+
+ Part-DB1\templates\Form\permissionLayout.html.twig:65
+ Part-DB1\templates\Form\permissionLayout.html.twig:65
+
+
+ permission.legend.inherit
+ Převzít z (nadřazené) skupiny
+
+
+
+
+ Part-DB1\templates\helper.twig:3
+ Part-DB1\templates\helper.twig:3
+
+
+ bool.true
+ Ano
+
+
+
+
+ Part-DB1\templates\helper.twig:5
+ Part-DB1\templates\helper.twig:5
+
+
+ bool.false
+ Ne
+
+
+
+
+ Part-DB1\templates\helper.twig:92
+ Part-DB1\templates\helper.twig:87
+
+
+ Yes
+ Ano
+
+
+
+
+ Part-DB1\templates\helper.twig:94
+ Part-DB1\templates\helper.twig:89
+
+
+ No
+ Ne
+
+
+
+
+ Part-DB1\templates\helper.twig:126
+
+
+ specifications.value
+ Hodnota
+
+
+
+
+ Part-DB1\templates\homepage.html.twig:7
+ Part-DB1\templates\homepage.html.twig:7
+ templates\homepage.html.twig:7
+
+
+ version.caption
+ Verze
+
+
+
+
+ Part-DB1\templates\homepage.html.twig:22
+ Part-DB1\templates\homepage.html.twig:22
+ templates\homepage.html.twig:19
+
+
+ homepage.license
+ Informace o licenci
+
+
+
+
+ Part-DB1\templates\homepage.html.twig:31
+ Part-DB1\templates\homepage.html.twig:31
+ templates\homepage.html.twig:28
+
+
+ homepage.github.caption
+ Stránka projektu
+
+
+
+
+ Part-DB1\templates\homepage.html.twig:31
+ Part-DB1\templates\homepage.html.twig:31
+ templates\homepage.html.twig:28
+
+
+ homepage.github.text
+ Zdrojové kódy, soubory ke stažení, hlášení chyb, seznam úkolů atd. najdete na <a href="%href%" class="link-external" target="_blank">stránce projektu GitHub</a>
+
+
+
+
+ Part-DB1\templates\homepage.html.twig:32
+ Part-DB1\templates\homepage.html.twig:32
+ templates\homepage.html.twig:29
+
+
+ homepage.help.caption
+ Nápověda
+
+
+
+
+ Part-DB1\templates\homepage.html.twig:32
+ Part-DB1\templates\homepage.html.twig:32
+ templates\homepage.html.twig:29
+
+
+ homepage.help.text
+ Nápovědu a tipy najdete na Wiki na <a href="%href%" class="link-external" target="_blank">stránce GitHub</a>
+
+
+
+
+ Part-DB1\templates\homepage.html.twig:33
+ Part-DB1\templates\homepage.html.twig:33
+ templates\homepage.html.twig:30
+
+
+ homepage.forum.caption
+ Fórum
+
+
+
+
+ Part-DB1\templates\homepage.html.twig:45
+ Part-DB1\templates\homepage.html.twig:45
+ new
+
+
+ homepage.last_activity
+ Poslední aktivita
+
+
+
+
+ Part-DB1\templates\LabelSystem\dialog.html.twig:3
+ Part-DB1\templates\LabelSystem\dialog.html.twig:6
+
+
+ label_generator.title
+ Generátor štítků
+
+
+
+
+ Part-DB1\templates\LabelSystem\dialog.html.twig:16
+
+
+ label_generator.common
+ Obecné
+
+
+
+
+ Part-DB1\templates\LabelSystem\dialog.html.twig:20
+
+
+ label_generator.advanced
+ Pokročilé
+
+
+
+
+ Part-DB1\templates\LabelSystem\dialog.html.twig:24
+
+
+ label_generator.profiles
+ Profily
+
+
+
+
+ Part-DB1\templates\LabelSystem\dialog.html.twig:58
+
+
+ label_generator.selected_profile
+ Aktuálně vybraný profil
+
+
+
+
+ Part-DB1\templates\LabelSystem\dialog.html.twig:62
+
+
+ label_generator.edit_profile
+ Upravit profil
+
+
+
+
+ Part-DB1\templates\LabelSystem\dialog.html.twig:75
+
+
+ label_generator.load_profile
+ Načíst profil
+
+
+
+
+ Part-DB1\templates\LabelSystem\dialog.html.twig:102
+
+
+ label_generator.download
+ Stáhnout
+
+
+
+
+ Part-DB1\templates\LabelSystem\dropdown_macro.html.twig:3
+ Part-DB1\templates\LabelSystem\dropdown_macro.html.twig:5
+
+
+ label_generator.label_btn
+ Vytvořit štítek
+
+
+
+
+ Part-DB1\templates\LabelSystem\dropdown_macro.html.twig:20
+
+
+ label_generator.label_empty
+ Nový prázdný štítek
+
+
+
+
+ Part-DB1\templates\LabelSystem\Scanner\dialog.html.twig:3
+
+
+ label_scanner.title
+ Čtečka štítků
+
+
+
+
+ Part-DB1\templates\LabelSystem\Scanner\dialog.html.twig:7
+
+
+ label_scanner.no_cam_found.title
+ Nebyla nalezena žádná webová kamera
+
+
+
+
+ Part-DB1\templates\LabelSystem\Scanner\dialog.html.twig:7
+
+
+ label_scanner.no_cam_found.text
+ Potřebujete webovou kameru a povolení k použití funkce čtečky. Kód čárového kódu můžete zadat ručně níže.
+
+
+
+
+ Part-DB1\templates\LabelSystem\Scanner\dialog.html.twig:27
+
+
+ label_scanner.source_select
+ Vybrat zdroj
+
+
+
+
+ Part-DB1\templates\LogSystem\log_list.html.twig:3
+ Part-DB1\templates\LogSystem\log_list.html.twig:3
+
+
+ log.list.title
+ Systémový protokol
+
+
+
+
+ Part-DB1\templates\LogSystem\_log_table.html.twig:1
+ Part-DB1\templates\LogSystem\_log_table.html.twig:1
+ new
+
+
+ log.undo.confirm_title
+ Opravdu vrátit změnu / vrátit se k časovému razítku?
+
+
+
+
+ Part-DB1\templates\LogSystem\_log_table.html.twig:2
+ Part-DB1\templates\LogSystem\_log_table.html.twig:2
+ new
+
+
+ log.undo.confirm_message
+ Opravdu chcete vrátit danou změnu / resetovat prvek na dané časové razítko?
+
+
+
+
+ Part-DB1\templates\mail\base.html.twig:24
+ Part-DB1\templates\mail\base.html.twig:24
+
+
+ mail.footer.email_sent_by
+ Tento e-mail byl automaticky odeslán
+
+
+
+
+ Part-DB1\templates\mail\base.html.twig:24
+ Part-DB1\templates\mail\base.html.twig:24
+
+
+ mail.footer.dont_reply
+ Na tento e-mail neodpovídejte.
+
+
+
+
+ Part-DB1\templates\mail\pw_reset.html.twig:6
+ Part-DB1\templates\mail\pw_reset.html.twig:6
+
+
+ email.hi %name%
+ Ahoj %name%
+
+
+
+
+ Part-DB1\templates\mail\pw_reset.html.twig:7
+ Part-DB1\templates\mail\pw_reset.html.twig:7
+
+
+ email.pw_reset.message
+ někdo (doufejme, že vy) požádal o obnovení vašeho hesla. Pokud jste tuto žádost nepodali vy, ignorujte tento e-mail.
+
+
+
+
+ Part-DB1\templates\mail\pw_reset.html.twig:9
+ Part-DB1\templates\mail\pw_reset.html.twig:9
+
+
+ email.pw_reset.button
+ Klikněte zde pro obnovení hesla
+
+
+
+
+ Part-DB1\templates\mail\pw_reset.html.twig:11
+ Part-DB1\templates\mail\pw_reset.html.twig:11
+
+
+ email.pw_reset.fallback
+ Pokud vám to nefunguje, přejděte na <a href="%url%">%url%</a> a zadejte následující informace.
+
+
+
+
+ Part-DB1\templates\mail\pw_reset.html.twig:16
+ Part-DB1\templates\mail\pw_reset.html.twig:16
+
+
+ email.pw_reset.username
+ Uživatelské jméno
+
+
+
+
+ Part-DB1\templates\mail\pw_reset.html.twig:19
+ Part-DB1\templates\mail\pw_reset.html.twig:19
+
+
+ email.pw_reset.token
+ Token
+
+
+
+
+ Part-DB1\templates\mail\pw_reset.html.twig:24
+ Part-DB1\templates\mail\pw_reset.html.twig:24
+
+
+ email.pw_reset.valid_unit %date%
+ Token obnovení bude platný do <i>%date%</i>.
+
+
+
+
+ Part-DB1\templates\Parts\edit\edit_form_styles.html.twig:18
+ Part-DB1\templates\Parts\edit\edit_form_styles.html.twig:58
+ Part-DB1\templates\Parts\edit\edit_form_styles.html.twig:78
+ Part-DB1\templates\Parts\edit\edit_form_styles.html.twig:58
+
+
+ orderdetail.delete
+ Odstranit
+
+
+
+
+ Part-DB1\templates\Parts\edit\edit_form_styles.html.twig:39
+ Part-DB1\templates\Parts\edit\edit_form_styles.html.twig:39
+
+
+ pricedetails.edit.min_qty
+ Minimální množství slevy
+
+
+
+
+ Part-DB1\templates\Parts\edit\edit_form_styles.html.twig:40
+ Part-DB1\templates\Parts\edit\edit_form_styles.html.twig:40
+
+
+ pricedetails.edit.price
+ Cena
+
+
+
+
+ Part-DB1\templates\Parts\edit\edit_form_styles.html.twig:41
+ Part-DB1\templates\Parts\edit\edit_form_styles.html.twig:41
+
+
+ pricedetails.edit.price_qty
+ za množství
+
+
+
+
+ Part-DB1\templates\Parts\edit\edit_form_styles.html.twig:54
+ Part-DB1\templates\Parts\edit\edit_form_styles.html.twig:54
+
+
+ pricedetail.create
+ Přidat cenu
+
+
+
+
+ Part-DB1\templates\Parts\edit\edit_part_info.html.twig:4
+ Part-DB1\templates\Parts\edit\edit_part_info.html.twig:4
+ templates\Parts\edit_part_info.html.twig:4
+
+
+ part.edit.title
+ Upravit díl
+
+
+
+
+ Part-DB1\templates\Parts\edit\edit_part_info.html.twig:9
+ Part-DB1\templates\Parts\edit\edit_part_info.html.twig:9
+ templates\Parts\edit_part_info.html.twig:9
+
+
+ part.edit.card_title
+ Upravit díl
+
+
+
+
+ Part-DB1\templates\Parts\edit\edit_part_info.html.twig:22
+ Part-DB1\templates\Parts\edit\edit_part_info.html.twig:22
+
+
+ part.edit.tab.common
+ Obecné
+
+
+
+
+ Part-DB1\templates\Parts\edit\edit_part_info.html.twig:28
+ Part-DB1\templates\Parts\edit\edit_part_info.html.twig:28
+
+
+ part.edit.tab.manufacturer
+ Výrobce
+
+
+
+
+ Part-DB1\templates\Parts\edit\edit_part_info.html.twig:34
+ Part-DB1\templates\Parts\edit\edit_part_info.html.twig:34
+
+
+ part.edit.tab.advanced
+ Pokročilé
+
+
+
+
+ Part-DB1\templates\Parts\edit\edit_part_info.html.twig:40
+ Part-DB1\templates\Parts\edit\edit_part_info.html.twig:40
+
+
+ part.edit.tab.part_lots
+ Zásoby
+
+
+
+
+ Part-DB1\templates\Parts\edit\edit_part_info.html.twig:46
+ Part-DB1\templates\Parts\edit\edit_part_info.html.twig:46
+
+
+ part.edit.tab.attachments
+ Přílohy
+
+
+
+
+ Part-DB1\templates\Parts\edit\edit_part_info.html.twig:52
+ Part-DB1\templates\Parts\edit\edit_part_info.html.twig:52
+
+
+ part.edit.tab.orderdetails
+ Informace o nákupu
+
+
+
+
+ Part-DB1\templates\Parts\edit\edit_part_info.html.twig:58
+
+
+ part.edit.tab.specifications
+ Parametry
+
+
+
+
+ Part-DB1\templates\Parts\edit\edit_part_info.html.twig:64
+ Part-DB1\templates\Parts\edit\edit_part_info.html.twig:58
+
+
+ part.edit.tab.comment
+ Poznámky
+
+
+
+
+ Part-DB1\templates\Parts\edit\new_part.html.twig:8
+ Part-DB1\templates\Parts\edit\new_part.html.twig:8
+ templates\Parts\new_part.html.twig:8
+
+
+ part.new.card_title
+ Přidat nový díl
+
+
+
+
+ Part-DB1\templates\Parts\edit\_lots.html.twig:5
+ Part-DB1\templates\Parts\edit\_lots.html.twig:5
+
+
+ part_lot.delete
+ Odstranit
+
+
+
+
+ Part-DB1\templates\Parts\edit\_lots.html.twig:28
+ Part-DB1\templates\Parts\edit\_lots.html.twig:28
+
+
+ part_lot.create
+ Přidat zásoby
+
+
+
+
+ Part-DB1\templates\Parts\edit\_orderdetails.html.twig:13
+ Part-DB1\templates\Parts\edit\_orderdetails.html.twig:13
+
+
+ orderdetail.create
+ Přidat distributora
+
+
+
+
+ Part-DB1\templates\Parts\edit\_orderdetails.html.twig:18
+ Part-DB1\templates\Parts\edit\_orderdetails.html.twig:18
+
+
+ pricedetails.edit.delete.confirm
+ Opravdu chcete tuto cenu smazat? To nelze vzít zpět.
+
+
+
+
+ Part-DB1\templates\Parts\edit\_orderdetails.html.twig:62
+ Part-DB1\templates\Parts\edit\_orderdetails.html.twig:61
+
+
+ orderdetails.edit.delete.confirm
+ Opravdu chcete smazat informace o distributorovi? To nelze vzít zpět!
+
+
+
+
+ Part-DB1\templates\Parts\info\show_part_info.html.twig:4
+ Part-DB1\templates\Parts\info\show_part_info.html.twig:19
+ Part-DB1\templates\Parts\info\show_part_info.html.twig:4
+ Part-DB1\templates\Parts\info\show_part_info.html.twig:19
+ templates\Parts\show_part_info.html.twig:4
+ templates\Parts\show_part_info.html.twig:9
+
+
+ part.info.title
+ Detailní informace o dílu
+
+
+
+
+ Part-DB1\templates\Parts\info\show_part_info.html.twig:47
+ Part-DB1\templates\Parts\info\show_part_info.html.twig:47
+
+
+ part.part_lots.label
+ Zásoby
+
+
+
+
+ Part-DB1\templates\Parts\info\show_part_info.html.twig:56
+ Part-DB1\templates\Parts\lists\_info_card.html.twig:43
+ Part-DB1\templates\_navbar_search.html.twig:31
+ Part-DB1\templates\_navbar_search.html.twig:26
+ templates\base.html.twig:62
+ templates\Parts\show_part_info.html.twig:74
+ src\Form\PartType.php:86
+
+
+ comment.label
+ Poznámky
+
+
+
+
+ Part-DB1\templates\Parts\info\show_part_info.html.twig:64
+
+
+ part.info.specifications
+ Parametry
+
+
+
+
+ Part-DB1\templates\Parts\info\show_part_info.html.twig:74
+ Part-DB1\templates\Parts\info\show_part_info.html.twig:64
+ templates\Parts\show_part_info.html.twig:82
+
+
+ attachment.labelp
+ Přílohy
+
+
+
+
+ Part-DB1\templates\Parts\info\show_part_info.html.twig:83
+ Part-DB1\templates\Parts\info\show_part_info.html.twig:71
+ templates\Parts\show_part_info.html.twig:88
+
+
+ vendor.partinfo.shopping_infos
+ Informace o nákupu
+
+
+
+
+ Part-DB1\templates\Parts\info\show_part_info.html.twig:91
+ Part-DB1\templates\Parts\info\show_part_info.html.twig:78
+ templates\Parts\show_part_info.html.twig:94
+
+
+ vendor.partinfo.history
+ Historie
+
+
+
+
+ Part-DB1\templates\Parts\info\show_part_info.html.twig:97
+ Part-DB1\templates\_sidebar.html.twig:54
+ Part-DB1\templates\_sidebar.html.twig:13
+ Part-DB1\templates\Parts\info\show_part_info.html.twig:84
+ Part-DB1\templates\_sidebar.html.twig:54
+ Part-DB1\templates\_sidebar.html.twig:13
+ templates\base.html.twig:176
+ templates\base.html.twig:203
+ templates\base.html.twig:217
+ templates\base.html.twig:231
+ templates\Parts\show_part_info.html.twig:100
+
+
+ tools.label
+ Nástroje
+
+
+
+
+ Part-DB1\templates\Parts\info\show_part_info.html.twig:103
+ Part-DB1\templates\Parts\info\show_part_info.html.twig:90
+
+
+ extended_info.label
+ Rozšířené informace
+
+
+
+
+ Part-DB1\templates\Parts\info\_attachments_info.html.twig:7
+ Part-DB1\templates\Parts\info\_attachments_info.html.twig:7
+
+
+ attachment.name
+ Jméno
+
+
+
+
+ Part-DB1\templates\Parts\info\_attachments_info.html.twig:8
+ Part-DB1\templates\Parts\info\_attachments_info.html.twig:8
+
+
+ attachment.attachment_type
+ Typ přílohy
+
+
+
+
+ Part-DB1\templates\Parts\info\_attachments_info.html.twig:9
+ Part-DB1\templates\Parts\info\_attachments_info.html.twig:9
+
+
+ attachment.file_name
+ Název souboru
+
+
+
+
+ Part-DB1\templates\Parts\info\_attachments_info.html.twig:10
+ Part-DB1\templates\Parts\info\_attachments_info.html.twig:10
+
+
+ attachment.file_size
+ Velikost souboru
+
+
+
+
+ Part-DB1\templates\Parts\info\_attachments_info.html.twig:54
+
+
+ attachment.preview
+ Náhled
+
+
+
+
+ Part-DB1\templates\Parts\info\_attachments_info.html.twig:67
+ Part-DB1\templates\Parts\info\_attachments_info.html.twig:50
+
+
+ attachment.download
+ Stáhnout
+
+
+
+
+ Part-DB1\templates\Parts\info\_extended_infos.html.twig:11
+ Part-DB1\templates\Parts\info\_extended_infos.html.twig:11
+ new
+
+
+ user.creating_user
+ Uživatel, který vytvořil tento díl
+
+
+
+
+ Part-DB1\templates\Parts\info\_extended_infos.html.twig:13
+ Part-DB1\templates\Parts\info\_extended_infos.html.twig:28
+ Part-DB1\templates\Parts\info\_extended_infos.html.twig:50
+ Part-DB1\templates\Parts\info\_extended_infos.html.twig:13
+ Part-DB1\templates\Parts\info\_extended_infos.html.twig:28
+ Part-DB1\templates\Parts\info\_extended_infos.html.twig:50
+
+
+ Unknown
+ Neznámý
+
+
+
+
+ Part-DB1\templates\Parts\info\_extended_infos.html.twig:15
+ Part-DB1\templates\Parts\info\_extended_infos.html.twig:30
+ Part-DB1\templates\Parts\info\_extended_infos.html.twig:15
+ Part-DB1\templates\Parts\info\_extended_infos.html.twig:30
+ new
+
+
+ accessDenied
+ Přístup odepřen
+
+
+
+
+ Part-DB1\templates\Parts\info\_extended_infos.html.twig:26
+ Part-DB1\templates\Parts\info\_extended_infos.html.twig:26
+ new
+
+
+ user.last_editing_user
+ Uživatel, který tento díl upravil jako poslední
+
+
+
+
+ Part-DB1\templates\Parts\info\_extended_infos.html.twig:41
+ Part-DB1\templates\Parts\info\_extended_infos.html.twig:41
+
+
+ part.isFavorite
+ Oblíbené
+
+
+
+
+ Part-DB1\templates\Parts\info\_extended_infos.html.twig:46
+ Part-DB1\templates\Parts\info\_extended_infos.html.twig:46
+
+
+ part.minOrderAmount
+ Minimální množství
+
+
+
+
+ Part-DB1\templates\Parts\info\_main_infos.html.twig:8
+ Part-DB1\templates\_navbar_search.html.twig:46
+ Part-DB1\src\Services\ElementTypeNameGenerator.php:84
+ Part-DB1\templates\Parts\info\_main_infos.html.twig:8
+ Part-DB1\templates\_navbar_search.html.twig:41
+ Part-DB1\src\Services\ElementTypeNameGenerator.php:84
+ templates\base.html.twig:70
+ templates\Parts\show_part_info.html.twig:24
+ src\Form\PartType.php:80
+
+
+ manufacturer.label
+ Výrobce
+
+
+
+
+ Part-DB1\templates\Parts\info\_main_infos.html.twig:24
+ Part-DB1\templates\_navbar_search.html.twig:11
+ templates\base.html.twig:54
+ src\Form\PartType.php:62
+
+
+ name.label
+ Jméno
+
+
+
+
+ Part-DB1\templates\Parts\info\_main_infos.html.twig:27
+ Part-DB1\templates\Parts\info\_main_infos.html.twig:27
+ new
+
+
+ part.back_to_info
+ Zpět na aktuální verzi
+
+
+
+
+ Part-DB1\templates\Parts\info\_main_infos.html.twig:32
+ Part-DB1\templates\_navbar_search.html.twig:19
+ Part-DB1\templates\Parts\info\_main_infos.html.twig:32
+ Part-DB1\templates\_navbar_search.html.twig:18
+ templates\base.html.twig:58
+ templates\Parts\show_part_info.html.twig:31
+ src\Form\PartType.php:65
+
+
+ description.label
+ Popis
+
+
+
+
+ Part-DB1\templates\Parts\info\_main_infos.html.twig:34
+ Part-DB1\templates\_navbar_search.html.twig:15
+ Part-DB1\src\Services\ElementTypeNameGenerator.php:80
+ Part-DB1\templates\Parts\info\_main_infos.html.twig:34
+ Part-DB1\templates\_navbar_search.html.twig:14
+ Part-DB1\src\Services\ElementTypeNameGenerator.php:80
+ templates\base.html.twig:56
+ templates\Parts\show_part_info.html.twig:32
+ src\Form\PartType.php:74
+
+
+ category.label
+ Kategorie
+
+
+
+
+ Part-DB1\templates\Parts\info\_main_infos.html.twig:39
+ Part-DB1\templates\Parts\info\_main_infos.html.twig:39
+ templates\Parts\show_part_info.html.twig:42
+ src\Form\PartType.php:69
+
+
+ instock.label
+ Skladem
+
+
+
+
+ Part-DB1\templates\Parts\info\_main_infos.html.twig:41
+ Part-DB1\templates\Parts\info\_main_infos.html.twig:41
+ templates\Parts\show_part_info.html.twig:44
+ src\Form\PartType.php:72
+
+
+ mininstock.label
+ Minimální skladová zásoba
+
+
+
+
+ Part-DB1\templates\Parts\info\_main_infos.html.twig:45
+ Part-DB1\templates\_navbar_search.html.twig:52
+ Part-DB1\src\Services\ElementTypeNameGenerator.php:83
+ Part-DB1\templates\Parts\info\_main_infos.html.twig:45
+ Part-DB1\templates\_navbar_search.html.twig:47
+ Part-DB1\src\Services\ElementTypeNameGenerator.php:83
+ templates\base.html.twig:73
+ templates\Parts\show_part_info.html.twig:47
+
+
+ footprint.label
+ Otisk
+
+
+
+
+ Part-DB1\templates\Parts\info\_main_infos.html.twig:56
+ Part-DB1\templates\Parts\info\_main_infos.html.twig:59
+ Part-DB1\templates\Parts\info\_main_infos.html.twig:57
+ Part-DB1\templates\Parts\info\_main_infos.html.twig:60
+ templates\Parts\show_part_info.html.twig:51
+
+
+ part.avg_price.label
+ Průměrná cena
+
+
+
+
+ Part-DB1\templates\Parts\info\_order_infos.html.twig:5
+ Part-DB1\templates\Parts\info\_order_infos.html.twig:5
+
+
+ part.supplier.name
+ Jméno
+
+
+
+
+ Part-DB1\templates\Parts\info\_order_infos.html.twig:6
+ Part-DB1\templates\Parts\info\_order_infos.html.twig:6
+
+
+ part.supplier.partnr
+ Objednací číslo
+
+
+
+
+ Part-DB1\templates\Parts\info\_order_infos.html.twig:28
+ Part-DB1\templates\Parts\info\_order_infos.html.twig:28
+
+
+ part.order.minamount
+ Minimální množství
+
+
+
+
+ Part-DB1\templates\Parts\info\_order_infos.html.twig:29
+ Part-DB1\templates\Parts\info\_order_infos.html.twig:29
+
+
+ part.order.price
+ Cena
+
+
+
+
+ Part-DB1\templates\Parts\info\_order_infos.html.twig:31
+ Part-DB1\templates\Parts\info\_order_infos.html.twig:31
+
+
+ part.order.single_price
+ Jednotková cena
+
+
+
+
+ Part-DB1\templates\Parts\info\_order_infos.html.twig:71
+ Part-DB1\templates\Parts\info\_order_infos.html.twig:71
+
+
+ edit.caption_short
+ Upravit
+
+
+
+
+ Part-DB1\templates\Parts\info\_order_infos.html.twig:72
+ Part-DB1\templates\Parts\info\_order_infos.html.twig:72
+
+
+ delete.caption
+ Smazat
+
+
+
+
+ Part-DB1\templates\Parts\info\_part_lots.html.twig:7
+ Part-DB1\templates\Parts\info\_part_lots.html.twig:6
+
+
+ part_lots.description
+ Popis
+
+
+
+
+ Part-DB1\templates\Parts\info\_part_lots.html.twig:8
+ Part-DB1\templates\Parts\info\_part_lots.html.twig:7
+
+
+ part_lots.storage_location
+ Umístění
+
+
+
+
+ Part-DB1\templates\Parts\info\_part_lots.html.twig:9
+ Part-DB1\templates\Parts\info\_part_lots.html.twig:8
+
+
+ part_lots.amount
+ Množství
+
+
+
+
+ Part-DB1\templates\Parts\info\_part_lots.html.twig:24
+ Part-DB1\templates\Parts\info\_part_lots.html.twig:22
+
+
+ part_lots.location_unknown
+ Umístění neznámé
+
+
+
+
+ Part-DB1\templates\Parts\info\_part_lots.html.twig:31
+ Part-DB1\templates\Parts\info\_part_lots.html.twig:29
+
+
+ part_lots.instock_unknown
+ Množství neznámé
+
+
+
+
+ Part-DB1\templates\Parts\info\_part_lots.html.twig:40
+ Part-DB1\templates\Parts\info\_part_lots.html.twig:38
+
+
+ part_lots.expiration_date
+ Datum vypršení platnosti
+
+
+
+
+ Part-DB1\templates\Parts\info\_part_lots.html.twig:48
+ Part-DB1\templates\Parts\info\_part_lots.html.twig:46
+
+
+ part_lots.is_expired
+ Platnost vypršela
+
+
+
+
+ Part-DB1\templates\Parts\info\_part_lots.html.twig:55
+ Part-DB1\templates\Parts\info\_part_lots.html.twig:53
+
+
+ part_lots.need_refill
+ Potřebuje doplnit
+
+
+
+
+ Part-DB1\templates\Parts\info\_picture.html.twig:15
+ Part-DB1\templates\Parts\info\_picture.html.twig:15
+
+
+ part.info.prev_picture
+ Předchozí obrázek
+
+
+
+
+ Part-DB1\templates\Parts\info\_picture.html.twig:19
+ Part-DB1\templates\Parts\info\_picture.html.twig:19
+
+
+ part.info.next_picture
+ Další obrázek
+
+
+
+
+ Part-DB1\templates\Parts\info\_sidebar.html.twig:21
+ Part-DB1\templates\Parts\info\_sidebar.html.twig:21
+
+
+ part.mass.tooltip
+ Hromadné
+
+
+
+
+ Part-DB1\templates\Parts\info\_sidebar.html.twig:30
+ Part-DB1\templates\Parts\info\_sidebar.html.twig:30
+
+
+ part.needs_review.badge
+ Potřeba revize
+
+
+
+
+ Part-DB1\templates\Parts\info\_sidebar.html.twig:39
+ Part-DB1\templates\Parts\info\_sidebar.html.twig:39
+
+
+ part.favorite.badge
+ Oblíbené
+
+
+
+
+ Part-DB1\templates\Parts\info\_sidebar.html.twig:47
+ Part-DB1\templates\Parts\info\_sidebar.html.twig:47
+
+
+ part.obsolete.badge
+ Již není k dispozici
+
+
+
+
+ Part-DB1\templates\Parts\info\_specifications.html.twig:10
+
+
+ parameters.extracted_from_description
+ Automaticky extrahováno z popisu
+
+
+
+
+ Part-DB1\templates\Parts\info\_specifications.html.twig:15
+
+
+ parameters.auto_extracted_from_comment
+ Automaticky extrahované z poznámek
+
+
+
+
+ Part-DB1\templates\Parts\info\_tools.html.twig:6
+ Part-DB1\templates\Parts\info\_tools.html.twig:4
+ templates\Parts\show_part_info.html.twig:125
+
+
+ part.edit.btn
+ Upravit díl
+
+
+
+
+ Part-DB1\templates\Parts\info\_tools.html.twig:16
+ Part-DB1\templates\Parts\info\_tools.html.twig:14
+ templates\Parts\show_part_info.html.twig:135
+
+
+ part.clone.btn
+ Duplikovat díl
+
+
+
+
+ Part-DB1\templates\Parts\info\_tools.html.twig:24
+ Part-DB1\templates\Parts\lists\_action_bar.html.twig:4
+ templates\Parts\show_part_info.html.twig:143
+
+
+ part.create.btn
+ Přidat nový díl
+
+
+
+
+ Part-DB1\templates\Parts\info\_tools.html.twig:31
+ Part-DB1\templates\Parts\info\_tools.html.twig:29
+
+
+ part.delete.confirm_title
+ Opravdu chcete tento díl odstranit?
+
+
+
+
+ Part-DB1\templates\Parts\info\_tools.html.twig:32
+ Part-DB1\templates\Parts\info\_tools.html.twig:30
+
+
+ part.delete.message
+ Tento díl a všechny související informace (např. přílohy, informace o ceně atd.) budou odstraněny. Toto nelze vrátit zpět!
+
+
+
+
+ Part-DB1\templates\Parts\info\_tools.html.twig:39
+ Part-DB1\templates\Parts\info\_tools.html.twig:37
+
+
+ part.delete
+ Odstranit díl
+
+
+
+
+ Part-DB1\templates\Parts\lists\all_list.html.twig:4
+ Part-DB1\templates\Parts\lists\all_list.html.twig:4
+
+
+ parts_list.all.title
+ Všechny díly
+
+
+
+
+ Part-DB1\templates\Parts\lists\category_list.html.twig:4
+ Part-DB1\templates\Parts\lists\category_list.html.twig:4
+
+
+ parts_list.category.title
+ Díly s kategorií
+
+
+
+
+ Part-DB1\templates\Parts\lists\footprint_list.html.twig:4
+ Part-DB1\templates\Parts\lists\footprint_list.html.twig:4
+
+
+ parts_list.footprint.title
+ Díly s otiskem
+
+
+
+
+ Part-DB1\templates\Parts\lists\manufacturer_list.html.twig:4
+ Part-DB1\templates\Parts\lists\manufacturer_list.html.twig:4
+
+
+ parts_list.manufacturer.title
+ Díly s výrobcem
+
+
+
+
+ Part-DB1\templates\Parts\lists\search_list.html.twig:4
+ Part-DB1\templates\Parts\lists\search_list.html.twig:4
+
+
+ parts_list.search.title
+ Vyhledat díly
+
+
+
+
+ Part-DB1\templates\Parts\lists\store_location_list.html.twig:4
+ Part-DB1\templates\Parts\lists\store_location_list.html.twig:4
+
+
+ parts_list.storelocation.title
+ Díly s místy uložení
+
+
+
+
+ Part-DB1\templates\Parts\lists\supplier_list.html.twig:4
+ Part-DB1\templates\Parts\lists\supplier_list.html.twig:4
+
+
+ parts_list.supplier.title
+ Díly s dodavatelem
+
+
+
+
+ Part-DB1\templates\Parts\lists\tags_list.html.twig:4
+ Part-DB1\templates\Parts\lists\tags_list.html.twig:4
+
+
+ parts_list.tags.title
+ Díly se štítkem
+
+
+
+
+ Part-DB1\templates\Parts\lists\_info_card.html.twig:22
+ Part-DB1\templates\Parts\lists\_info_card.html.twig:17
+
+
+ entity.info.common.tab
+ Obecné
+
+
+
+
+ Part-DB1\templates\Parts\lists\_info_card.html.twig:26
+ Part-DB1\templates\Parts\lists\_info_card.html.twig:20
+
+
+ entity.info.statistics.tab
+ Statistika
+
+
+
+
+ Part-DB1\templates\Parts\lists\_info_card.html.twig:31
+
+
+ entity.info.attachments.tab
+ Attachments
+
+
+
+
+ Part-DB1\templates\Parts\lists\_info_card.html.twig:37
+
+
+ entity.info.parameters.tab
+ Parametry
+
+
+
+
+ Part-DB1\templates\Parts\lists\_info_card.html.twig:54
+ Part-DB1\templates\Parts\lists\_info_card.html.twig:30
+
+
+ entity.info.name
+ Jméno
+
+
+
+
+ Part-DB1\templates\Parts\lists\_info_card.html.twig:58
+ Part-DB1\templates\Parts\lists\_info_card.html.twig:96
+ Part-DB1\templates\Parts\lists\_info_card.html.twig:34
+ Part-DB1\templates\Parts\lists\_info_card.html.twig:67
+
+
+ entity.info.parent
+ Nadřazený
+
+
+
+
+ Part-DB1\templates\Parts\lists\_info_card.html.twig:70
+ Part-DB1\templates\Parts\lists\_info_card.html.twig:46
+
+
+ entity.edit.btn
+ Upravit
+
+
+
+
+ Part-DB1\templates\Parts\lists\_info_card.html.twig:92
+ Part-DB1\templates\Parts\lists\_info_card.html.twig:63
+
+
+ entity.info.children_count
+ Počet podřízených prvků
+
+
+
+
+ Part-DB1\templates\security\2fa_base_form.html.twig:3
+ Part-DB1\templates\security\2fa_base_form.html.twig:5
+ Part-DB1\templates\security\2fa_base_form.html.twig:3
+ Part-DB1\templates\security\2fa_base_form.html.twig:5
+
+
+ tfa.check.title
+ Potřeba dvoufaktorového ověřování
+
+
+
+
+ Part-DB1\templates\security\2fa_base_form.html.twig:39
+ Part-DB1\templates\security\2fa_base_form.html.twig:39
+
+
+ tfa.code.trusted_pc
+ Jedná se o důvěryhodný počítač (pokud je tato možnost povolena, neprovádějí se na tomto počítači žádné další dvoufaktorové dotazy).
+
+
+
+
+ Part-DB1\templates\security\2fa_base_form.html.twig:52
+ Part-DB1\templates\security\login.html.twig:58
+ Part-DB1\templates\security\2fa_base_form.html.twig:52
+ Part-DB1\templates\security\login.html.twig:58
+
+
+ login.btn
+ Přihlášení
+
+
+
+
+ Part-DB1\templates\security\2fa_base_form.html.twig:53
+ Part-DB1\templates\security\U2F\u2f_login.html.twig:13
+ Part-DB1\templates\_navbar.html.twig:42
+ Part-DB1\templates\security\2fa_base_form.html.twig:53
+ Part-DB1\templates\security\U2F\u2f_login.html.twig:13
+ Part-DB1\templates\_navbar.html.twig:40
+
+
+ user.logout
+ Odhlásit se
+
+
+
+
+ Part-DB1\templates\security\2fa_form.html.twig:6
+ Part-DB1\templates\security\2fa_form.html.twig:6
+
+
+ tfa.check.code.label
+ Kód aplikace Authenticator
+
+
+
+
+ Part-DB1\templates\security\2fa_form.html.twig:10
+ Part-DB1\templates\security\2fa_form.html.twig:10
+
+
+ tfa.check.code.help
+ Zde zadejte šestimístný kód z ověřovací aplikace nebo jeden ze záložních kódů, pokud ověřovací aplikace není k dispozici.
+
+
+
+
+ Part-DB1\templates\security\login.html.twig:3
+ Part-DB1\templates\security\login.html.twig:3
+ templates\security\login.html.twig:3
+
+
+ login.title
+ Přihlášení
+
+
+
+
+ Part-DB1\templates\security\login.html.twig:7
+ Part-DB1\templates\security\login.html.twig:7
+ templates\security\login.html.twig:7
+
+
+ login.card_title
+ Přihlášení
+
+
+
+
+ Part-DB1\templates\security\login.html.twig:31
+ Part-DB1\templates\security\login.html.twig:31
+ templates\security\login.html.twig:31
+
+
+ login.username.label
+ Uživatelské jméno
+
+
+
+
+ Part-DB1\templates\security\login.html.twig:34
+ Part-DB1\templates\security\login.html.twig:34
+ templates\security\login.html.twig:34
+
+
+ login.username.placeholder
+ Uživatelské jméno
+
+
+
+
+ Part-DB1\templates\security\login.html.twig:38
+ Part-DB1\templates\security\login.html.twig:38
+ templates\security\login.html.twig:38
+
+
+ login.password.label
+ Heslo
+
+
+
+
+ Part-DB1\templates\security\login.html.twig:40
+ Part-DB1\templates\security\login.html.twig:40
+ templates\security\login.html.twig:40
+
+
+ login.password.placeholder
+ Heslo
+
+
+
+
+ Part-DB1\templates\security\login.html.twig:50
+ Part-DB1\templates\security\login.html.twig:50
+ templates\security\login.html.twig:50
+
+
+ login.rememberme
+ Zapamatovat si (nemělo by se používat na sdílených počítačích)
+
+
+
+
+ Part-DB1\templates\security\login.html.twig:64
+ Part-DB1\templates\security\login.html.twig:64
+
+
+ pw_reset.password_forget
+ Zapomněli jste uživatelské jméno/heslo?
+
+
+
+
+ Part-DB1\templates\security\pw_reset_new_pw.html.twig:5
+ Part-DB1\templates\security\pw_reset_new_pw.html.twig:5
+
+
+ pw_reset.new_pw.header.title
+ Nastavit nové heslo
+
+
+
+
+ Part-DB1\templates\security\pw_reset_request.html.twig:5
+ Part-DB1\templates\security\pw_reset_request.html.twig:5
+
+
+ pw_reset.request.header.title
+ Požádat o nové heslo
+
+
+
+
+ Part-DB1\templates\security\U2F\u2f_login.html.twig:7
+ Part-DB1\templates\security\U2F\u2f_register.html.twig:10
+ Part-DB1\templates\security\U2F\u2f_login.html.twig:7
+ Part-DB1\templates\security\U2F\u2f_register.html.twig:10
+
+
+ tfa_u2f.http_warning
+ Na tuto stránku přistupujete pomocí nezabezpečené metody HTTP, takže U2F pravděpodobně nebude fungovat (chybová zpráva Bad Request). Pokud chcete používat bezpečnostní klíče, požádejte správce o nastavení zabezpečené metody HTTPS.
+
+
+
+
+ Part-DB1\templates\security\U2F\u2f_login.html.twig:10
+ Part-DB1\templates\security\U2F\u2f_register.html.twig:22
+ Part-DB1\templates\security\U2F\u2f_login.html.twig:10
+ Part-DB1\templates\security\U2F\u2f_register.html.twig:22
+
+
+ r_u2f_two_factor.pressbutton
+ Připojte bezpečnostní klíč a stiskněte jeho tlačítko!
+
+
+
+
+ Part-DB1\templates\security\U2F\u2f_register.html.twig:3
+ Part-DB1\templates\security\U2F\u2f_register.html.twig:3
+
+
+ tfa_u2f.add_key.title
+ Přidání bezpečnostního klíče
+
+
+
+
+ Part-DB1\templates\security\U2F\u2f_register.html.twig:6
+ Part-DB1\templates\Users\_2fa_settings.html.twig:111
+ Part-DB1\templates\security\U2F\u2f_register.html.twig:6
+ Part-DB1\templates\Users\_2fa_settings.html.twig:111
+
+
+ tfa_u2f.explanation
+ Pomocí bezpečnostního klíče kompatibilního s U2F/FIDO (např. YubiKey nebo NitroKey) lze dosáhnout uživatelsky přívětivého a bezpečného dvoufaktorového ověřování. Bezpečnostní klíče lze zde zaregistrovat a pokud je vyžadováno dvoufaktorové ověření, stačí vložit klíč do USB, nebo zadat přes zařízení prostřednictvím NFC.
+
+
+
+
+ Part-DB1\templates\security\U2F\u2f_register.html.twig:7
+ Part-DB1\templates\security\U2F\u2f_register.html.twig:7
+
+
+ tfa_u2f.add_key.backup_hint
+ Pro zajištění přístupu i v případě ztráty klíče doporučujeme zaregistrovat druhý klíč jako zálohu a uložit jej na bezpečném místě!
+
+
+
+
+ Part-DB1\templates\security\U2F\u2f_register.html.twig:16
+ Part-DB1\templates\security\U2F\u2f_register.html.twig:16
+
+
+ r_u2f_two_factor.name
+ Zobrazený název klíče (např. Záloha)
+
+
+
+
+ Part-DB1\templates\security\U2F\u2f_register.html.twig:19
+ Part-DB1\templates\security\U2F\u2f_register.html.twig:19
+
+
+ tfa_u2f.add_key.add_button
+ Přidat bezpečnostní klíč
+
+
+
+
+ Part-DB1\templates\security\U2F\u2f_register.html.twig:27
+ Part-DB1\templates\security\U2F\u2f_register.html.twig:27
+
+
+ tfa_u2f.add_key.back_to_settings
+ Zpět do nastavení
+
+
+
+
+ Part-DB1\templates\Statistics\statistics.html.twig:5
+ Part-DB1\templates\Statistics\statistics.html.twig:8
+ Part-DB1\templates\Statistics\statistics.html.twig:5
+ Part-DB1\templates\Statistics\statistics.html.twig:8
+ new
+
+
+ statistics.title
+ Statistiky
+
+
+
+
+ Part-DB1\templates\Statistics\statistics.html.twig:14
+ Part-DB1\templates\Statistics\statistics.html.twig:14
+ new
+
+
+ statistics.parts
+ Díly
+
+
+
+
+ Part-DB1\templates\Statistics\statistics.html.twig:19
+ Part-DB1\templates\Statistics\statistics.html.twig:19
+ new
+
+
+ statistics.data_structures
+ Datové struktury
+
+
+
+
+ Part-DB1\templates\Statistics\statistics.html.twig:24
+ Part-DB1\templates\Statistics\statistics.html.twig:24
+ new
+
+
+ statistics.attachments
+ Přílohy
+
+
+
+
+ Part-DB1\templates\Statistics\statistics.html.twig:34
+ Part-DB1\templates\Statistics\statistics.html.twig:59
+ Part-DB1\templates\Statistics\statistics.html.twig:104
+ Part-DB1\templates\Statistics\statistics.html.twig:34
+ Part-DB1\templates\Statistics\statistics.html.twig:59
+ Part-DB1\templates\Statistics\statistics.html.twig:104
+ new
+
+
+ statistics.property
+ Vlastnictví
+
+
+
+
+ Part-DB1\templates\Statistics\statistics.html.twig:35
+ Part-DB1\templates\Statistics\statistics.html.twig:60
+ Part-DB1\templates\Statistics\statistics.html.twig:105
+ Part-DB1\templates\Statistics\statistics.html.twig:35
+ Part-DB1\templates\Statistics\statistics.html.twig:60
+ Part-DB1\templates\Statistics\statistics.html.twig:105
+ new
+
+
+ statistics.value
+ Hodnota
+
+
+
+
+ Part-DB1\templates\Statistics\statistics.html.twig:40
+ Part-DB1\templates\Statistics\statistics.html.twig:40
+ new
+
+
+ statistics.distinct_parts_count
+ Počet jednotlivých dílů
+
+
+
+
+ Part-DB1\templates\Statistics\statistics.html.twig:44
+ Part-DB1\templates\Statistics\statistics.html.twig:44
+ new
+
+
+ statistics.parts_instock_sum
+ Součet všech zásob dílů
+
+
+
+
+ Part-DB1\templates\Statistics\statistics.html.twig:48
+ Part-DB1\templates\Statistics\statistics.html.twig:48
+ new
+
+
+ statistics.parts_with_price
+ Počet dílů s informacemi o ceně
+
+
+
+
+ Part-DB1\templates\Statistics\statistics.html.twig:65
+ Part-DB1\templates\Statistics\statistics.html.twig:65
+ new
+
+
+ statistics.categories_count
+ Počet kategorií
+
+
+
+
+ Part-DB1\templates\Statistics\statistics.html.twig:69
+ Part-DB1\templates\Statistics\statistics.html.twig:69
+ new
+
+
+ statistics.footprints_count
+ Počet otisků
+
+
+
+
+ Part-DB1\templates\Statistics\statistics.html.twig:73
+ Part-DB1\templates\Statistics\statistics.html.twig:73
+ new
+
+
+ statistics.manufacturers_count
+ Počet výrobců
+
+
+
+
+ Part-DB1\templates\Statistics\statistics.html.twig:77
+ Part-DB1\templates\Statistics\statistics.html.twig:77
+ new
+
+
+ statistics.storelocations_count
+ Počet umístění
+
+
+
+
+ Part-DB1\templates\Statistics\statistics.html.twig:81
+ Part-DB1\templates\Statistics\statistics.html.twig:81
+ new
+
+
+ statistics.suppliers_count
+ Počet dodavatelů
+
+
+
+
+ Part-DB1\templates\Statistics\statistics.html.twig:85
+ Part-DB1\templates\Statistics\statistics.html.twig:85
+ new
+
+
+ statistics.currencies_count
+ Počet měn
+
+
+
+
+ Part-DB1\templates\Statistics\statistics.html.twig:89
+ Part-DB1\templates\Statistics\statistics.html.twig:89
+ new
+
+
+ statistics.measurement_units_count
+ Počet měrných jednotek
+
+
+
+
+ Part-DB1\templates\Statistics\statistics.html.twig:93
+ Part-DB1\templates\Statistics\statistics.html.twig:93
+ new
+
+
+ statistics.devices_count
+ Počet projektů
+
+
+
+
+ Part-DB1\templates\Statistics\statistics.html.twig:110
+ Part-DB1\templates\Statistics\statistics.html.twig:110
+ new
+
+
+ statistics.attachment_types_count
+ Počet typů příloh
+
+
+
+
+ Part-DB1\templates\Statistics\statistics.html.twig:114
+ Part-DB1\templates\Statistics\statistics.html.twig:114
+ new
+
+
+ statistics.all_attachments_count
+ Počet všech příloh
+
+
+
+
+ Part-DB1\templates\Statistics\statistics.html.twig:118
+ Part-DB1\templates\Statistics\statistics.html.twig:118
+ new
+
+
+ statistics.user_uploaded_attachments_count
+ Počet příloh nahraných uživatelem
+
+
+
+
+ Part-DB1\templates\Statistics\statistics.html.twig:122
+ Part-DB1\templates\Statistics\statistics.html.twig:122
+ new
+
+
+ statistics.private_attachments_count
+ Počet soukromých příloh
+
+
+
+
+ Part-DB1\templates\Statistics\statistics.html.twig:126
+ Part-DB1\templates\Statistics\statistics.html.twig:126
+ new
+
+
+ statistics.external_attachments_count
+ Počet externích příloh (URL)
+
+
+
+
+ Part-DB1\templates\Users\backup_codes.html.twig:3
+ Part-DB1\templates\Users\backup_codes.html.twig:9
+ Part-DB1\templates\Users\backup_codes.html.twig:3
+ Part-DB1\templates\Users\backup_codes.html.twig:9
+
+
+ tfa_backup.codes.title
+ Záložní kódy
+
+
+
+
+ Part-DB1\templates\Users\backup_codes.html.twig:12
+ Part-DB1\templates\Users\backup_codes.html.twig:12
+
+
+ tfa_backup.codes.explanation
+ Vytiskněte si tyto kódy a uschovejte je na bezpečném místě!
+
+
+
+
+ Part-DB1\templates\Users\backup_codes.html.twig:13
+ Part-DB1\templates\Users\backup_codes.html.twig:13
+
+
+ tfa_backup.codes.help
+ Pokud již nemáte přístup ke svému zařízení s aplikací Authenticator (ztráta smartphonu, ztráta dat atd.), můžete použít jeden z těchto kódů pro přístup ke svému účtu a případně nastavit novou aplikaci Authenticator. Každý z těchto kódů lze použít jednou, použité kódy se doporučuje odstranit. Kdokoli s přístupem k těmto kódům může potenciálně získat přístup k vašemu účtu, proto je uchovávejte na bezpečném místě.
+
+
+
+
+ Part-DB1\templates\Users\backup_codes.html.twig:16
+ Part-DB1\templates\Users\backup_codes.html.twig:16
+
+
+ tfa_backup.username
+ Uživatelské jméno
+
+
+
+
+ Part-DB1\templates\Users\backup_codes.html.twig:29
+ Part-DB1\templates\Users\backup_codes.html.twig:29
+
+
+ tfa_backup.codes.page_generated_on
+ Stránka vygenerovaná dne %date%
+
+
+
+
+ Part-DB1\templates\Users\backup_codes.html.twig:32
+ Part-DB1\templates\Users\backup_codes.html.twig:32
+
+
+ tfa_backup.codes.print
+ Tisk
+
+
+
+
+ Part-DB1\templates\Users\backup_codes.html.twig:35
+ Part-DB1\templates\Users\backup_codes.html.twig:35
+
+
+ tfa_backup.codes.copy_clipboard
+ Zkopírovat do schránky
+
+
+
+
+ Part-DB1\templates\Users\user_info.html.twig:3
+ Part-DB1\templates\Users\user_info.html.twig:6
+ Part-DB1\templates\_navbar.html.twig:40
+ Part-DB1\templates\Users\user_info.html.twig:3
+ Part-DB1\templates\Users\user_info.html.twig:6
+ Part-DB1\templates\_navbar.html.twig:38
+ templates\base.html.twig:99
+ templates\Users\user_info.html.twig:3
+ templates\Users\user_info.html.twig:6
+
+
+ user.info.label
+ Informace o uživateli
+
+
+
+
+ Part-DB1\templates\Users\user_info.html.twig:18
+ Part-DB1\src\Form\UserSettingsType.php:77
+ Part-DB1\templates\Users\user_info.html.twig:18
+ Part-DB1\src\Form\UserSettingsType.php:77
+ templates\Users\user_info.html.twig:18
+ src\Form\UserSettingsType.php:32
+
+
+ user.firstName.label
+ Jméno
+
+
+
+
+ Part-DB1\templates\Users\user_info.html.twig:24
+ Part-DB1\src\Form\UserSettingsType.php:82
+ Part-DB1\templates\Users\user_info.html.twig:24
+ Part-DB1\src\Form\UserSettingsType.php:82
+ templates\Users\user_info.html.twig:24
+ src\Form\UserSettingsType.php:35
+
+
+ user.lastName.label
+ Příjmení
+
+
+
+
+ Part-DB1\templates\Users\user_info.html.twig:30
+ Part-DB1\src\Form\UserSettingsType.php:92
+ Part-DB1\templates\Users\user_info.html.twig:30
+ Part-DB1\src\Form\UserSettingsType.php:92
+ templates\Users\user_info.html.twig:30
+ src\Form\UserSettingsType.php:41
+
+
+ user.email.label
+ e-mail
+
+
+
+
+ Part-DB1\templates\Users\user_info.html.twig:37
+ Part-DB1\src\Form\UserSettingsType.php:87
+ Part-DB1\templates\Users\user_info.html.twig:37
+ Part-DB1\src\Form\UserSettingsType.php:87
+ templates\Users\user_info.html.twig:37
+ src\Form\UserSettingsType.php:38
+
+
+ user.department.label
+ Oddělení
+
+
+
+
+ Part-DB1\templates\Users\user_info.html.twig:47
+ Part-DB1\src\Form\UserSettingsType.php:73
+ Part-DB1\templates\Users\user_info.html.twig:47
+ Part-DB1\src\Form\UserSettingsType.php:73
+ templates\Users\user_info.html.twig:47
+ src\Form\UserSettingsType.php:30
+
+
+ user.username.label
+ Uživatelské jméno
+
+
+
+
+ Part-DB1\templates\Users\user_info.html.twig:53
+ Part-DB1\src\Services\ElementTypeNameGenerator.php:93
+ Part-DB1\templates\Users\user_info.html.twig:53
+ Part-DB1\src\Services\ElementTypeNameGenerator.php:93
+ templates\Users\user_info.html.twig:53
+
+
+ group.label
+ Skupina
+
+
+
+
+ Part-DB1\templates\Users\user_info.html.twig:67
+ Part-DB1\templates\Users\user_info.html.twig:67
+
+
+ user.permissions
+ Oprávnění
+
+
+
+
+ Part-DB1\templates\Users\user_settings.html.twig:3
+ Part-DB1\templates\Users\user_settings.html.twig:6
+ Part-DB1\templates\_navbar.html.twig:39
+ Part-DB1\templates\Users\user_settings.html.twig:3
+ Part-DB1\templates\Users\user_settings.html.twig:6
+ Part-DB1\templates\_navbar.html.twig:37
+ templates\base.html.twig:98
+ templates\Users\user_settings.html.twig:3
+ templates\Users\user_settings.html.twig:6
+
+
+ user.settings.label
+ Uživatelské nastavení
+
+
+
+
+ Part-DB1\templates\Users\user_settings.html.twig:18
+ Part-DB1\templates\Users\user_settings.html.twig:18
+ templates\Users\user_settings.html.twig:14
+
+
+ user_settings.data.label
+ Osobní údaje
+
+
+
+
+ Part-DB1\templates\Users\user_settings.html.twig:22
+ Part-DB1\templates\Users\user_settings.html.twig:22
+ templates\Users\user_settings.html.twig:18
+
+
+ user_settings.configuration.label
+ Konfigurace
+
+
+
+
+ Part-DB1\templates\Users\user_settings.html.twig:55
+ Part-DB1\templates\Users\user_settings.html.twig:55
+ templates\Users\user_settings.html.twig:48
+
+
+ user.settings.change_pw
+ Změnit heslo
+
+
+
+
+ Part-DB1\templates\Users\_2fa_settings.html.twig:6
+ Part-DB1\templates\Users\_2fa_settings.html.twig:6
+
+
+ user.settings.2fa_settings
+ Dvoufaktorové ověřování
+
+
+
+
+ Part-DB1\templates\Users\_2fa_settings.html.twig:13
+ Part-DB1\templates\Users\_2fa_settings.html.twig:13
+
+
+ tfa.settings.google.tab
+ Authenticator app
+
+
+
+
+ Part-DB1\templates\Users\_2fa_settings.html.twig:17
+ Part-DB1\templates\Users\_2fa_settings.html.twig:17
+
+
+ tfa.settings.bakup.tab
+ Záložní kódy
+
+
+
+
+ Part-DB1\templates\Users\_2fa_settings.html.twig:21
+ Part-DB1\templates\Users\_2fa_settings.html.twig:21
+
+
+ tfa.settings.u2f.tab
+ Bezpečnostní klíče (U2F)
+
+
+
+
+ Part-DB1\templates\Users\_2fa_settings.html.twig:25
+ Part-DB1\templates\Users\_2fa_settings.html.twig:25
+
+
+ tfa.settings.trustedDevices.tab
+ Důvěryhodná zařízení
+
+
+
+
+ Part-DB1\templates\Users\_2fa_settings.html.twig:33
+ Part-DB1\templates\Users\_2fa_settings.html.twig:33
+
+
+ tfa_google.disable.confirm_title
+ Opravdu chcete aplikaci Authenticator zakázat?
+
+
+
+
+ Part-DB1\templates\Users\_2fa_settings.html.twig:33
+ Part-DB1\templates\Users\_2fa_settings.html.twig:33
+
+
+ tfa_google.disable.confirm_message
+ Pokud aplikaci Authenticator deaktivujete, všechny záložní kódy budou smazány, takže je možná budete muset vytisknout znovu.<br>
+Upozorňujeme také, že bez dvoufaktorového ověřování není váš účet tak dobře chráněn před útočníky!
+
+
+
+
+ Part-DB1\templates\Users\_2fa_settings.html.twig:39
+ Part-DB1\templates\Users\_2fa_settings.html.twig:39
+
+
+ tfa_google.disabled_message
+ Aplikace Authenticator deaktivována!
+
+
+
+
+ Part-DB1\templates\Users\_2fa_settings.html.twig:48
+ Part-DB1\templates\Users\_2fa_settings.html.twig:48
+
+
+ tfa_google.step.download
+ Stáhněte si aplikaci Authenticator (např. <a class="link-external" target="_blank" href="https://play.google.com/store/apps/details?id=com.google.android.apps.authenticator2">Google Authenticator</a> nebo <a class="link-external" target="_blank" href="https://play.google.com/store/apps/details?id=org.fedorahosted.freeotp">FreeOTP Authenticator</a>).
+
+
+
+
+ Part-DB1\templates\Users\_2fa_settings.html.twig:49
+ Part-DB1\templates\Users\_2fa_settings.html.twig:49
+
+
+ tfa_google.step.scan
+ Naskenujte přiložený QR kód pomocí aplikace nebo zadejte údaje ručně.
+
+
+
+
+ Part-DB1\templates\Users\_2fa_settings.html.twig:50
+ Part-DB1\templates\Users\_2fa_settings.html.twig:50
+
+
+ tfa_google.step.input_code
+ Vygenerovaný kód zadejte do níže uvedeného pole a potvrďte.
+
+
+
+
+ Part-DB1\templates\Users\_2fa_settings.html.twig:51
+ Part-DB1\templates\Users\_2fa_settings.html.twig:51
+
+
+ tfa_google.step.download_backup
+ Vytiskněte si záložní kódy a uložte je na bezpečném místě.
+
+
+
+
+ Part-DB1\templates\Users\_2fa_settings.html.twig:58
+ Part-DB1\templates\Users\_2fa_settings.html.twig:58
+
+
+ tfa_google.manual_setup
+ Ruční nastavení
+
+
+
+
+ Part-DB1\templates\Users\_2fa_settings.html.twig:62
+ Part-DB1\templates\Users\_2fa_settings.html.twig:62
+
+
+ tfa_google.manual_setup.type
+ Typ
+
+
+
+
+ Part-DB1\templates\Users\_2fa_settings.html.twig:63
+ Part-DB1\templates\Users\_2fa_settings.html.twig:63
+
+
+ tfa_google.manual_setup.username
+ Uživatelské jméno
+
+
+
+
+ Part-DB1\templates\Users\_2fa_settings.html.twig:64
+ Part-DB1\templates\Users\_2fa_settings.html.twig:64
+
+
+ tfa_google.manual_setup.secret
+ Tajné
+
+
+
+
+ Part-DB1\templates\Users\_2fa_settings.html.twig:65
+ Part-DB1\templates\Users\_2fa_settings.html.twig:65
+
+
+ tfa_google.manual_setup.digit_count
+ Počet číslic
+
+
+
+
+ Part-DB1\templates\Users\_2fa_settings.html.twig:74
+ Part-DB1\templates\Users\_2fa_settings.html.twig:74
+
+
+ tfa_google.enabled_message
+ Aplikace Authenticator povolena
+
+
+
+
+ Part-DB1\templates\Users\_2fa_settings.html.twig:83
+ Part-DB1\templates\Users\_2fa_settings.html.twig:83
+
+
+ tfa_backup.disabled
+ Záložní kódy jsou zakázány. Nastavte aplikaci Authenticator pro povolení záložních kódů.
+
+
+
+
+ Part-DB1\templates\Users\_2fa_settings.html.twig:84
+ Part-DB1\templates\Users\_2fa_settings.html.twig:92
+ Part-DB1\templates\Users\_2fa_settings.html.twig:84
+ Part-DB1\templates\Users\_2fa_settings.html.twig:92
+
+
+ tfa_backup.explanation
+ Tyto záložní kódy můžete použít k přístupu k účtu i v případě ztráty zařízení s aplikací Authenticator. Kódy si vytiskněte a uschovejte na bezpečném místě.
+
+
+
+
+ Part-DB1\templates\Users\_2fa_settings.html.twig:88
+ Part-DB1\templates\Users\_2fa_settings.html.twig:88
+
+
+ tfa_backup.reset_codes.confirm_title
+ Opravdu resetovat kódy?
+
+
+
+
+ Part-DB1\templates\Users\_2fa_settings.html.twig:88
+ Part-DB1\templates\Users\_2fa_settings.html.twig:88
+
+
+ tfa_backup.reset_codes.confirm_message
+ Tím se odstraní všechny předchozí kódy a vygeneruje se sada nových kódů. Tuto akci nelze vrátit zpět. Nezapomeňte si nové kódy vytisknout a uložit na bezpečném místě!
+
+
+
+
+ Part-DB1\templates\Users\_2fa_settings.html.twig:91
+ Part-DB1\templates\Users\_2fa_settings.html.twig:91
+
+
+ tfa_backup.enabled
+ Záložní kódy povoleny
+
+
+
+
+ Part-DB1\templates\Users\_2fa_settings.html.twig:99
+ Part-DB1\templates\Users\_2fa_settings.html.twig:99
+
+
+ tfa_backup.show_codes
+ Zobrazit záložní kódy
+
+
+
+
+ Part-DB1\templates\Users\_2fa_settings.html.twig:114
+ Part-DB1\templates\Users\_2fa_settings.html.twig:114
+
+
+ tfa_u2f.table_caption
+ Registrované bezpečnostní klíče
+
+
+
+
+ Part-DB1\templates\Users\_2fa_settings.html.twig:115
+ Part-DB1\templates\Users\_2fa_settings.html.twig:115
+
+
+ tfa_u2f.delete_u2f.confirm_title
+ Opravdu odstranit tento bezpečnostní klíč?
+
+
+
+
+ Part-DB1\templates\Users\_2fa_settings.html.twig:116
+ Part-DB1\templates\Users\_2fa_settings.html.twig:116
+
+
+ tfa_u2f.delete_u2f.confirm_message
+ Pokud tento klíč odstraníte, nebude již možné se pomocí tohoto klíče přihlásit. Pokud nezůstanou žádné bezpečnostní klíče, dvoufaktorové ověřování bude zakázáno.
+
+
+
+
+ Part-DB1\templates\Users\_2fa_settings.html.twig:123
+ Part-DB1\templates\Users\_2fa_settings.html.twig:123
+
+
+ tfa_u2f.keys.name
+ Název klíče
+
+
+
+
+ Part-DB1\templates\Users\_2fa_settings.html.twig:124
+ Part-DB1\templates\Users\_2fa_settings.html.twig:124
+
+
+ tfa_u2f.keys.added_date
+ Datum registrace
+
+
+
+
+ Part-DB1\templates\Users\_2fa_settings.html.twig:134
+ Part-DB1\templates\Users\_2fa_settings.html.twig:134
+
+
+ tfa_u2f.key_delete
+ Smazat klíč
+
+
+
+
+ Part-DB1\templates\Users\_2fa_settings.html.twig:141
+ Part-DB1\templates\Users\_2fa_settings.html.twig:141
+
+
+ tfa_u2f.no_keys_registered
+ Zatím nebyly zaregistrovány žádné klíče.
+
+
+
+
+ Part-DB1\templates\Users\_2fa_settings.html.twig:144
+ Part-DB1\templates\Users\_2fa_settings.html.twig:144
+
+
+ tfa_u2f.add_new_key
+ Registrace nového bezpečnostního klíče
+
+
+
+
+ Part-DB1\templates\Users\_2fa_settings.html.twig:148
+ Part-DB1\templates\Users\_2fa_settings.html.twig:148
+
+
+ tfa_trustedDevices.explanation
+ Při kontrole druhého faktoru lze aktuální počítač označit jako důvěryhodný, takže na tomto počítači již není třeba provádět žádné další dvoufaktorové kontroly.
+Pokud jste to provedli nesprávně nebo pokud počítač již není důvěryhodný, můžete zde obnovit stav <i>všech </i>počítačů.
+
+
+
+
+ Part-DB1\templates\Users\_2fa_settings.html.twig:149
+ Part-DB1\templates\Users\_2fa_settings.html.twig:149
+
+
+ tfa_trustedDevices.invalidate.confirm_title
+ Opravdu odebrat všechny důvěryhodné počítače?
+
+
+
+
+ Part-DB1\templates\Users\_2fa_settings.html.twig:150
+ Part-DB1\templates\Users\_2fa_settings.html.twig:150
+
+
+ tfa_trustedDevices.invalidate.confirm_message
+ Ve všech počítačích bude nutné znovu provést dvoufaktorové ověřování. Ujistěte se, že máte po ruce dvoufaktorové zařízení.
+
+
+
+
+ Part-DB1\templates\Users\_2fa_settings.html.twig:154
+ Part-DB1\templates\Users\_2fa_settings.html.twig:154
+
+
+ tfa_trustedDevices.invalidate.btn
+ Reset důvěryhodných zařízení
+
+
+
+
+ Part-DB1\templates\_navbar.html.twig:4
+ Part-DB1\templates\_navbar.html.twig:4
+ templates\base.html.twig:29
+
+
+ sidebar.toggle
+ Přepnutí postranního panelu
+
+
+
+
+ Part-DB1\templates\_navbar.html.twig:22
+
+
+ navbar.scanner.link
+ Čtečka štítků
+
+
+
+
+ Part-DB1\templates\_navbar.html.twig:38
+ Part-DB1\templates\_navbar.html.twig:36
+ templates\base.html.twig:97
+
+
+ user.loggedin.label
+ Přihlášen jako
+
+
+
+
+ Part-DB1\templates\_navbar.html.twig:44
+ Part-DB1\templates\_navbar.html.twig:42
+ templates\base.html.twig:103
+
+
+ user.login
+ Příhlásit
+
+
+
+
+ Part-DB1\templates\_navbar.html.twig:50
+ Part-DB1\templates\_navbar.html.twig:48
+
+
+ ui.toggle_darkmode
+ Tmavý režim
+
+
+
+
+ Part-DB1\templates\_navbar.html.twig:54
+ Part-DB1\src\Form\UserSettingsType.php:97
+ Part-DB1\templates\_navbar.html.twig:52
+ Part-DB1\src\Form\UserSettingsType.php:97
+ templates\base.html.twig:106
+ src\Form\UserSettingsType.php:44
+
+
+ user.language_select
+ Jazyk
+
+
+
+
+ Part-DB1\templates\_navbar_search.html.twig:4
+ Part-DB1\templates\_navbar_search.html.twig:4
+ templates\base.html.twig:49
+
+
+ search.options.label
+ Možnosti hledání
+
+
+
+
+ Part-DB1\templates\_navbar_search.html.twig:23
+
+
+ tags.label
+ Štítky
+
+
+
+
+ Part-DB1\templates\_navbar_search.html.twig:27
+ Part-DB1\src\Form\LabelOptionsType.php:68
+ Part-DB1\src\Services\ElementTypeNameGenerator.php:88
+ Part-DB1\src\Services\ElementTypeNameGenerator.php:88
+ templates\base.html.twig:60
+ templates\Parts\show_part_info.html.twig:36
+ src\Form\PartType.php:77
+
+
+ storelocation.label
+ Umístění
+
+
+
+
+ Part-DB1\templates\_navbar_search.html.twig:36
+ Part-DB1\templates\_navbar_search.html.twig:31
+ templates\base.html.twig:65
+
+
+ ordernumber.label.short
+ Číslo dílu dodavatele
+
+
+
+
+ Part-DB1\templates\_navbar_search.html.twig:40
+ Part-DB1\src\Services\ElementTypeNameGenerator.php:89
+ Part-DB1\templates\_navbar_search.html.twig:35
+ Part-DB1\src\Services\ElementTypeNameGenerator.php:89
+ templates\base.html.twig:67
+
+
+ supplier.label
+ Dodavatel
+
+
+
+
+ Part-DB1\templates\_navbar_search.html.twig:57
+ Part-DB1\templates\_navbar_search.html.twig:52
+ templates\base.html.twig:75
+
+
+ search.deactivateBarcode
+ Deaktivovat čárový kód
+
+
+
+
+ Part-DB1\templates\_navbar_search.html.twig:61
+ Part-DB1\templates\_navbar_search.html.twig:56
+ templates\base.html.twig:77
+
+
+ search.regexmatching
+ RegEx. shoda
+
+
+
+
+ Part-DB1\templates\_navbar_search.html.twig:68
+ Part-DB1\templates\_navbar_search.html.twig:62
+
+
+ search.submit
+ Jdi!
+
+
+
+
+ Part-DB1\templates\_sidebar.html.twig:37
+ Part-DB1\templates\_sidebar.html.twig:12
+ Part-DB1\templates\_sidebar.html.twig:37
+ Part-DB1\templates\_sidebar.html.twig:12
+ templates\base.html.twig:175
+ templates\base.html.twig:189
+ templates\base.html.twig:202
+ templates\base.html.twig:230
+
+
+ project.labelp
+ Projekty
+
+
+
+
+ Part-DB1\templates\_sidebar.html.twig:2
+ Part-DB1\templates\_sidebar.html.twig:2
+ templates\base.html.twig:165
+ templates\base.html.twig:192
+ templates\base.html.twig:220
+
+
+ actions
+ Akce
+
+
+
+
+ Part-DB1\templates\_sidebar.html.twig:6
+ Part-DB1\templates\_sidebar.html.twig:6
+ templates\base.html.twig:169
+ templates\base.html.twig:196
+ templates\base.html.twig:224
+
+
+ datasource
+ Zdroj dat
+
+
+
+
+ Part-DB1\templates\_sidebar.html.twig:10
+ Part-DB1\templates\_sidebar.html.twig:10
+ templates\base.html.twig:173
+ templates\base.html.twig:200
+ templates\base.html.twig:228
+
+
+ manufacturer.labelp
+ Výrobce
+
+
+
+
+ Part-DB1\templates\_sidebar.html.twig:11
+ Part-DB1\templates\_sidebar.html.twig:11
+ templates\base.html.twig:174
+ templates\base.html.twig:201
+ templates\base.html.twig:229
+
+
+ supplier.labelp
+ Dodavatelé
+
+
+
+
+ Part-DB1\src\Controller\AdminPages\BaseAdminController.php:213
+ Part-DB1\src\Controller\AdminPages\BaseAdminController.php:293
+ Part-DB1\src\Controller\PartController.php:173
+ Part-DB1\src\Controller\PartController.php:293
+ Part-DB1\src\Controller\AdminPages\BaseAdminController.php:181
+ Part-DB1\src\Controller\AdminPages\BaseAdminController.php:243
+ Part-DB1\src\Controller\PartController.php:173
+ Part-DB1\src\Controller\PartController.php:268
+
+
+ attachment.download_failed
+ Stažení externí přílohy se nezdařilo.
+
+
+
+
+ Part-DB1\src\Controller\AdminPages\BaseAdminController.php:222
+ Part-DB1\src\Controller\AdminPages\BaseAdminController.php:190
+
+
+ entity.edit_flash
+ Změny byly úspěšně uloženy.
+
+
+
+
+ Part-DB1\src\Controller\AdminPages\BaseAdminController.php:231
+ Part-DB1\src\Controller\AdminPages\BaseAdminController.php:196
+
+
+ entity.edit_flash.invalid
+ Nelze uložit změnit. Zkontrolujte prosím své zadání!
+
+
+
+
+ Part-DB1\src\Controller\AdminPages\BaseAdminController.php:302
+ Part-DB1\src\Controller\AdminPages\BaseAdminController.php:252
+
+
+ entity.created_flash
+ Vytvořený prvek.
+
+
+
+
+ Part-DB1\src\Controller\AdminPages\BaseAdminController.php:308
+ Part-DB1\src\Controller\AdminPages\BaseAdminController.php:258
+
+
+ entity.created_flash.invalid
+ Nepodařilo se vytvořit prvek. Zkontrolujte prosím zadání!
+
+
+
+
+ Part-DB1\src\Controller\AdminPages\BaseAdminController.php:399
+ Part-DB1\src\Controller\AdminPages\BaseAdminController.php:352
+ src\Controller\BaseAdminController.php:154
+
+
+ attachment_type.deleted
+ Prvek smazán!
+
+
+
+
+ Part-DB1\src\Controller\AdminPages\BaseAdminController.php:401
+ Part-DB1\src\Controller\UserController.php:109
+ Part-DB1\src\Controller\UserSettingsController.php:159
+ Part-DB1\src\Controller\UserSettingsController.php:193
+ Part-DB1\src\Controller\AdminPages\BaseAdminController.php:354
+ Part-DB1\src\Controller\UserController.php:101
+ Part-DB1\src\Controller\UserSettingsController.php:150
+ Part-DB1\src\Controller\UserSettingsController.php:182
+
+
+ csfr_invalid
+ Token CSFR je neplatný. Pokud tato zpráva přetrvává, načtěte prosím tuto stránku znovu nebo kontaktujte správce.
+
+
+
+
+ Part-DB1\src\Controller\LabelController.php:125
+
+
+ label_generator.no_entities_found
+ Nebyly nalezeny žádné entity odpovídající zadání.
+
+
+
+
+ Part-DB1\src\Controller\LogController.php:149
+ Part-DB1\src\Controller\LogController.php:154
+ new
+
+
+ log.undo.target_not_found
+ Cílový prvek nebyl v DB nalezen!
+
+
+
+
+ Part-DB1\src\Controller\LogController.php:156
+ Part-DB1\src\Controller\LogController.php:160
+ new
+
+
+ log.undo.revert_success
+ Úspěšně vráceno na časové razítko.
+
+
+
+
+ Part-DB1\src\Controller\LogController.php:176
+ Part-DB1\src\Controller\LogController.php:180
+ new
+
+
+ log.undo.element_undelete_success
+ Prvek byl úspěšně odstraněn.
+
+
+
+
+ Part-DB1\src\Controller\LogController.php:178
+ Part-DB1\src\Controller\LogController.php:182
+ new
+
+
+ log.undo.element_element_already_undeleted
+ Prvek byl již smazán!
+
+
+
+
+ Part-DB1\src\Controller\LogController.php:185
+ Part-DB1\src\Controller\LogController.php:189
+ new
+
+
+ log.undo.element_delete_success
+ Prvek byl úspěšně odstraněn.
+
+
+
+
+ Part-DB1\src\Controller\LogController.php:187
+ Part-DB1\src\Controller\LogController.php:191
+ new
+
+
+ log.undo.element.element_already_delted
+ Prvek byl již smazán!
+
+
+
+
+ Part-DB1\src\Controller\LogController.php:194
+ Part-DB1\src\Controller\LogController.php:198
+ new
+
+
+ log.undo.element_change_undone
+ Změna úspěšně vrácena!
+
+
+
+
+ Part-DB1\src\Controller\LogController.php:196
+ Part-DB1\src\Controller\LogController.php:200
+ new
+
+
+ log.undo.do_undelete_before
+ Před zrušením této změny musíte prvek smazat!
+
+
+
+
+ Part-DB1\src\Controller\LogController.php:199
+ Part-DB1\src\Controller\LogController.php:203
+ new
+
+
+ log.undo.log_type_invalid
+ Tento záznam v protokolu nelze vrátit zpět!
+
+
+
+
+ Part-DB1\src\Controller\PartController.php:182
+ Part-DB1\src\Controller\PartController.php:182
+ src\Controller\PartController.php:80
+
+
+ part.edited_flash
+ Uložené změny!
+
+
+
+
+ Part-DB1\src\Controller\PartController.php:186
+ Part-DB1\src\Controller\PartController.php:186
+
+
+ part.edited_flash.invalid
+ Chyba při ukládání: Zkontrolujte prosím své zadání!
+
+
+
+
+ Part-DB1\src\Controller\PartController.php:216
+ Part-DB1\src\Controller\PartController.php:219
+
+
+ part.deleted
+ Díl úspěšně vymazán.
+
+
+
+
+ Part-DB1\src\Controller\PartController.php:302
+ Part-DB1\src\Controller\PartController.php:277
+ Part-DB1\src\Controller\PartController.php:317
+ src\Controller\PartController.php:113
+ src\Controller\PartController.php:142
+
+
+ part.created_flash
+ Díl vytvořen!
+
+
+
+
+ Part-DB1\src\Controller\PartController.php:308
+ Part-DB1\src\Controller\PartController.php:283
+
+
+ part.created_flash.invalid
+ Chyba při vytváření: Zkontrolujte prosím své zadání!
+
+
+
+
+ Part-DB1\src\Controller\ScanController.php:68
+ Part-DB1\src\Controller\ScanController.php:90
+
+
+ scan.qr_not_found
+ Pro daný čárový kód nebyl nalezen žádný prvek.
+
+
+
+
+ Part-DB1\src\Controller\ScanController.php:71
+
+
+ scan.format_unknown
+ Neznámý formát!
+
+
+
+
+ Part-DB1\src\Controller\ScanController.php:86
+
+
+ scan.qr_success
+ Nalezený prvek.
+
+
+
+
+ Part-DB1\src\Controller\SecurityController.php:114
+ Part-DB1\src\Controller\SecurityController.php:109
+
+
+ pw_reset.user_or_email
+ Uživatelské jméno / e-mail
+
+
+
+
+ Part-DB1\src\Controller\SecurityController.php:131
+ Part-DB1\src\Controller\SecurityController.php:126
+
+
+ pw_reset.request.success
+ Žádost o obnovení byla úspěšná! Zkontrolujte prosím své e-maily, kde najdete další pokyny.
+
+
+
+
+ Part-DB1\src\Controller\SecurityController.php:162
+ Part-DB1\src\Controller\SecurityController.php:160
+
+
+ pw_reset.username
+ Uživatelské jméno
+
+
+
+
+ Part-DB1\src\Controller\SecurityController.php:165
+ Part-DB1\src\Controller\SecurityController.php:163
+
+
+ pw_reset.token
+ Token
+
+
+
+
+ Part-DB1\src\Controller\SecurityController.php:194
+ Part-DB1\src\Controller\SecurityController.php:192
+
+
+ pw_reset.new_pw.error
+ Uživatelské jméno nebo token je neplatný! Zkontrolujte prosím své zadání.
+
+
+
+
+ Part-DB1\src\Controller\SecurityController.php:196
+ Part-DB1\src\Controller\SecurityController.php:194
+
+
+ pw_reset.new_pw.success
+ Heslo bylo úspěšně obnoveno. Nyní se můžete přihlásit pomocí nového hesla.
+
+
+
+
+ Part-DB1\src\Controller\UserController.php:107
+ Part-DB1\src\Controller\UserController.php:99
+
+
+ user.edit.reset_success
+ Všechny metody dvoufaktorového ověřování byly úspěšně zakázány.
+
+
+
+
+ Part-DB1\src\Controller\UserSettingsController.php:101
+ Part-DB1\src\Controller\UserSettingsController.php:92
+
+
+ tfa_backup.no_codes_enabled
+ Nejsou povoleny žádné zálohovací kódy!
+
+
+
+
+ Part-DB1\src\Controller\UserSettingsController.php:138
+ Part-DB1\src\Controller\UserSettingsController.php:132
+
+
+ tfa_u2f.u2f_delete.not_existing
+ Žádný bezpečnostní klíč s tímto ID neexistuje.
+
+
+
+
+ Part-DB1\src\Controller\UserSettingsController.php:145
+ Part-DB1\src\Controller\UserSettingsController.php:139
+
+
+ tfa_u2f.u2f_delete.access_denied
+ Bezpečnostní klíče jiných uživatelů nelze odstranit!
+
+
+
+
+ Part-DB1\src\Controller\UserSettingsController.php:153
+ Part-DB1\src\Controller\UserSettingsController.php:147
+
+
+ tfa.u2f.u2f_delete.success
+ Bezpečnostní klíč byl úspěšně odstraněn.
+
+
+
+
+ Part-DB1\src\Controller\UserSettingsController.php:188
+ Part-DB1\src\Controller\UserSettingsController.php:180
+
+
+ tfa_trustedDevice.invalidate.success
+ Důvěryhodná zařízení byla úspěšně resetována.
+
+
+
+
+ Part-DB1\src\Controller\UserSettingsController.php:235
+ Part-DB1\src\Controller\UserSettingsController.php:226
+ src\Controller\UserController.php:98
+
+
+ user.settings.saved_flash
+ Nastavení uloženo!
+
+
+
+
+ Part-DB1\src\Controller\UserSettingsController.php:297
+ Part-DB1\src\Controller\UserSettingsController.php:288
+ src\Controller\UserController.php:130
+
+
+ user.settings.pw_changed_flash
+ Heslo změněno!
+
+
+
+
+ Part-DB1\src\Controller\UserSettingsController.php:317
+ Part-DB1\src\Controller\UserSettingsController.php:306
+
+
+ user.settings.2fa.google.activated
+ Aplikace Authenticator byla úspěšně aktivována.
+
+
+
+
+ Part-DB1\src\Controller\UserSettingsController.php:328
+ Part-DB1\src\Controller\UserSettingsController.php:315
+
+
+ user.settings.2fa.google.disabled
+ Aplikace Authenticator byla úspěšně deaktivována.
+
+
+
+
+ Part-DB1\src\Controller\UserSettingsController.php:346
+ Part-DB1\src\Controller\UserSettingsController.php:332
+
+
+ user.settings.2fa.backup_codes.regenerated
+ Nové záložní kódy byly úspěšně vygenerovány.
+
+
+
+
+ Part-DB1\src\DataTables\AttachmentDataTable.php:148
+ Part-DB1\src\DataTables\AttachmentDataTable.php:148
+
+
+ attachment.table.filename
+ Název souboru
+
+
+
+
+ Part-DB1\src\DataTables\AttachmentDataTable.php:153
+ Part-DB1\src\DataTables\AttachmentDataTable.php:153
+
+
+ attachment.table.filesize
+ Velikost souboru
+
+
+
+
+ Part-DB1\src\DataTables\AttachmentDataTable.php:183
+ Part-DB1\src\DataTables\AttachmentDataTable.php:191
+ Part-DB1\src\DataTables\AttachmentDataTable.php:200
+ Part-DB1\src\DataTables\AttachmentDataTable.php:209
+ Part-DB1\src\DataTables\PartsDataTable.php:245
+ Part-DB1\src\DataTables\PartsDataTable.php:252
+ Part-DB1\src\DataTables\AttachmentDataTable.php:183
+ Part-DB1\src\DataTables\AttachmentDataTable.php:191
+ Part-DB1\src\DataTables\AttachmentDataTable.php:200
+ Part-DB1\src\DataTables\AttachmentDataTable.php:209
+ Part-DB1\src\DataTables\PartsDataTable.php:193
+ Part-DB1\src\DataTables\PartsDataTable.php:200
+
+
+ true
+ pravda
+
+
+
+
+ Part-DB1\src\DataTables\AttachmentDataTable.php:184
+ Part-DB1\src\DataTables\AttachmentDataTable.php:192
+ Part-DB1\src\DataTables\AttachmentDataTable.php:201
+ Part-DB1\src\DataTables\AttachmentDataTable.php:210
+ Part-DB1\src\DataTables\PartsDataTable.php:246
+ Part-DB1\src\DataTables\PartsDataTable.php:253
+ Part-DB1\src\Form\Type\SIUnitType.php:139
+ Part-DB1\src\DataTables\AttachmentDataTable.php:184
+ Part-DB1\src\DataTables\AttachmentDataTable.php:192
+ Part-DB1\src\DataTables\AttachmentDataTable.php:201
+ Part-DB1\src\DataTables\AttachmentDataTable.php:210
+ Part-DB1\src\DataTables\PartsDataTable.php:194
+ Part-DB1\src\DataTables\PartsDataTable.php:201
+ Part-DB1\src\Form\Type\SIUnitType.php:139
+
+
+ false
+ nepravda
+
+
+
+
+ Part-DB1\src\DataTables\Column\LogEntryTargetColumn.php:128
+ Part-DB1\src\DataTables\Column\LogEntryTargetColumn.php:119
+
+
+ log.target_deleted
+ smazáno
+
+
+
+
+ Part-DB1\src\DataTables\Column\RevertLogColumn.php:57
+ Part-DB1\src\DataTables\Column\RevertLogColumn.php:60
+ new
+
+
+ log.undo.undelete
+ Odstranit prvek
+
+
+
+
+ Part-DB1\src\DataTables\Column\RevertLogColumn.php:63
+ Part-DB1\src\DataTables\Column\RevertLogColumn.php:66
+ new
+
+
+ log.undo.undo
+ Vrátit změnu
+
+
+
+
+ Part-DB1\src\DataTables\Column\RevertLogColumn.php:83
+ Part-DB1\src\DataTables\Column\RevertLogColumn.php:86
+ new
+
+
+ log.undo.revert
+ Vrátit prvek na toto časové razítko
+
+
+
+
+ Part-DB1\src\DataTables\LogDataTable.php:173
+ Part-DB1\src\DataTables\LogDataTable.php:161
+
+
+ log.id
+ ID
+
+
+
+
+ Part-DB1\src\DataTables\LogDataTable.php:178
+ Part-DB1\src\DataTables\LogDataTable.php:166
+
+
+ log.timestamp
+ Časové razítko
+
+
+
+
+ Part-DB1\src\DataTables\LogDataTable.php:183
+ Part-DB1\src\DataTables\LogDataTable.php:171
+
+
+ log.type
+ Událost
+
+
+
+
+ Part-DB1\src\DataTables\LogDataTable.php:191
+ Part-DB1\src\DataTables\LogDataTable.php:179
+
+
+ log.level
+ Úroveň
+
+
+
+
+ Part-DB1\src\DataTables\LogDataTable.php:200
+ Part-DB1\src\DataTables\LogDataTable.php:188
+
+
+ log.user
+ Uživatel
+
+
+
+
+ Part-DB1\src\DataTables\LogDataTable.php:213
+ Part-DB1\src\DataTables\LogDataTable.php:201
+
+
+ log.target_type
+ Typ cíle
+
+
+
+
+ Part-DB1\src\DataTables\LogDataTable.php:226
+ Part-DB1\src\DataTables\LogDataTable.php:214
+
+
+ log.target
+ Cíl
+
+
+
+
+ Part-DB1\src\DataTables\LogDataTable.php:231
+ Part-DB1\src\DataTables\LogDataTable.php:218
+ new
+
+
+ log.extra
+ Extra
+
+
+
+
+ Part-DB1\src\DataTables\PartsDataTable.php:168
+ Part-DB1\src\DataTables\PartsDataTable.php:116
+
+
+ part.table.name
+ Název
+
+
+
+
+ Part-DB1\src\DataTables\PartsDataTable.php:178
+ Part-DB1\src\DataTables\PartsDataTable.php:126
+
+
+ part.table.id
+ ID
+
+
+
+
+ Part-DB1\src\DataTables\PartsDataTable.php:182
+ Part-DB1\src\DataTables\PartsDataTable.php:130
+
+
+ part.table.description
+ Popis
+
+
+
+
+ Part-DB1\src\DataTables\PartsDataTable.php:185
+ Part-DB1\src\DataTables\PartsDataTable.php:133
+
+
+ part.table.category
+ Kategorie
+
+
+
+
+ Part-DB1\src\DataTables\PartsDataTable.php:190
+ Part-DB1\src\DataTables\PartsDataTable.php:138
+
+
+ part.table.footprint
+ Otisk
+
+
+
+
+ Part-DB1\src\DataTables\PartsDataTable.php:194
+ Part-DB1\src\DataTables\PartsDataTable.php:142
+
+
+ part.table.manufacturer
+ Výrobce
+
+
+
+
+ Part-DB1\src\DataTables\PartsDataTable.php:197
+ Part-DB1\src\DataTables\PartsDataTable.php:145
+
+
+ part.table.storeLocations
+ Umístění
+
+
+
+
+ Part-DB1\src\DataTables\PartsDataTable.php:216
+ Part-DB1\src\DataTables\PartsDataTable.php:164
+
+
+ part.table.amount
+ Množství
+
+
+
+
+ Part-DB1\src\DataTables\PartsDataTable.php:224
+ Part-DB1\src\DataTables\PartsDataTable.php:172
+
+
+ part.table.minamount
+ Min. množství
+
+
+
+
+ Part-DB1\src\DataTables\PartsDataTable.php:232
+ Part-DB1\src\DataTables\PartsDataTable.php:180
+
+
+ part.table.partUnit
+ Měrné jednotky
+
+
+
+
+ Part-DB1\src\DataTables\PartsDataTable.php:236
+ Part-DB1\src\DataTables\PartsDataTable.php:184
+
+
+ part.table.addedDate
+ Vytvořeno
+
+
+
+
+ Part-DB1\src\DataTables\PartsDataTable.php:240
+ Part-DB1\src\DataTables\PartsDataTable.php:188
+
+
+ part.table.lastModified
+ Naposledy upraveno
+
+
+
+
+ Part-DB1\src\DataTables\PartsDataTable.php:244
+ Part-DB1\src\DataTables\PartsDataTable.php:192
+
+
+ part.table.needsReview
+ Potřeba revize
+
+
+
+
+ Part-DB1\src\DataTables\PartsDataTable.php:251
+ Part-DB1\src\DataTables\PartsDataTable.php:199
+
+
+ part.table.favorite
+ Oblíbené
+
+
+
+
+ Part-DB1\src\DataTables\PartsDataTable.php:258
+ Part-DB1\src\DataTables\PartsDataTable.php:206
+
+
+ part.table.manufacturingStatus
+ Stav
+
+
+
+
+ Part-DB1\src\DataTables\PartsDataTable.php:260
+ Part-DB1\src\DataTables\PartsDataTable.php:262
+ Part-DB1\src\Form\Part\PartBaseType.php:90
+ Part-DB1\src\DataTables\PartsDataTable.php:208
+ Part-DB1\src\DataTables\PartsDataTable.php:210
+ Part-DB1\src\Form\Part\PartBaseType.php:88
+
+
+ m_status.unknown
+ Neznámý
+
+
+
+
+ Part-DB1\src\DataTables\PartsDataTable.php:263
+ Part-DB1\src\Form\Part\PartBaseType.php:90
+ Part-DB1\src\DataTables\PartsDataTable.php:211
+ Part-DB1\src\Form\Part\PartBaseType.php:88
+
+
+ m_status.announced
+ Oznámeno
+
+
+
+
+ Part-DB1\src\DataTables\PartsDataTable.php:264
+ Part-DB1\src\Form\Part\PartBaseType.php:90
+ Part-DB1\src\DataTables\PartsDataTable.php:212
+ Part-DB1\src\Form\Part\PartBaseType.php:88
+
+
+ m_status.active
+ Aktivní
+
+
+
+
+ Part-DB1\src\DataTables\PartsDataTable.php:265
+ Part-DB1\src\Form\Part\PartBaseType.php:90
+ Part-DB1\src\DataTables\PartsDataTable.php:213
+ Part-DB1\src\Form\Part\PartBaseType.php:88
+
+
+ m_status.nrfnd
+ Nedoporučuje se pro nové návrhy
+
+
+
+
+ Part-DB1\src\DataTables\PartsDataTable.php:266
+ Part-DB1\src\Form\Part\PartBaseType.php:90
+ Part-DB1\src\DataTables\PartsDataTable.php:214
+ Part-DB1\src\Form\Part\PartBaseType.php:88
+
+
+ m_status.eol
+ Ukončeno
+
+
+
+
+ Part-DB1\src\DataTables\PartsDataTable.php:267
+ Part-DB1\src\Form\Part\PartBaseType.php:90
+ Part-DB1\src\DataTables\PartsDataTable.php:215
+ Part-DB1\src\Form\Part\PartBaseType.php:88
+
+
+ m_status.discontinued
+ Přerušeno
+
+
+
+
+ Part-DB1\src\DataTables\PartsDataTable.php:271
+ Part-DB1\src\DataTables\PartsDataTable.php:219
+
+
+ part.table.mpn
+ MPN
+
+
+
+
+ Part-DB1\src\DataTables\PartsDataTable.php:275
+ Part-DB1\src\DataTables\PartsDataTable.php:223
+
+
+ part.table.mass
+ Hmotnost
+
+
+
+
+ Part-DB1\src\DataTables\PartsDataTable.php:279
+ Part-DB1\src\DataTables\PartsDataTable.php:227
+
+
+ part.table.tags
+ Štítky
+
+
+
+
+ Part-DB1\src\DataTables\PartsDataTable.php:283
+ Part-DB1\src\DataTables\PartsDataTable.php:231
+
+
+ part.table.attachments
+ Přílohy
+
+
+
+
+ Part-DB1\src\EventSubscriber\UserSystem\LoginSuccessSubscriber.php:82
+ Part-DB1\src\EventSubscriber\LoginSuccessListener.php:82
+
+
+ flash.login_successful
+ Přihlášení bylo úspěšné
+
+
+
+
+ Part-DB1\src\Form\AdminPages\ImportType.php:77
+ Part-DB1\src\Form\AdminPages\ImportType.php:77
+ src\Form\ImportType.php:68
+
+
+ JSON
+ JSON
+
+
+
+
+ Part-DB1\src\Form\AdminPages\ImportType.php:77
+ Part-DB1\src\Form\AdminPages\ImportType.php:77
+ src\Form\ImportType.php:68
+
+
+ XML
+ XML
+
+
+
+
+ Part-DB1\src\Form\AdminPages\ImportType.php:77
+ Part-DB1\src\Form\AdminPages\ImportType.php:77
+ src\Form\ImportType.php:68
+
+
+ CSV
+ CSV
+
+
+
+
+ Part-DB1\src\Form\AdminPages\ImportType.php:77
+ Part-DB1\src\Form\AdminPages\ImportType.php:77
+ src\Form\ImportType.php:68
+
+
+ YAML
+ YAML
+
+
+
+
+ Part-DB1\src\Form\AdminPages\ImportType.php:124
+ Part-DB1\src\Form\AdminPages\ImportType.php:124
+
+
+ import.abort_on_validation.help
+ Pokud je tato možnost aktivována, celý proces importu se přeruší, pokud jsou zjištěna neplatná data. Není-li tato možnost vybrána, neplatná data jsou ignorována a importér se pokusí importovat ostatní prvky.
+
+
+
+
+ Part-DB1\src\Form\AdminPages\ImportType.php:86
+ Part-DB1\src\Form\AdminPages\ImportType.php:86
+ src\Form\ImportType.php:70
+
+
+ import.csv_separator
+ CSV oddělovač
+
+
+
+
+ Part-DB1\src\Form\AdminPages\ImportType.php:93
+ Part-DB1\src\Form\AdminPages\ImportType.php:93
+ src\Form\ImportType.php:72
+
+
+ parent.label
+ Nadřazený prvek
+
+
+
+
+ Part-DB1\src\Form\AdminPages\ImportType.php:101
+ Part-DB1\src\Form\AdminPages\ImportType.php:101
+ src\Form\ImportType.php:75
+
+
+ import.file
+ Soubor
+
+
+
+
+ Part-DB1\src\Form\AdminPages\ImportType.php:111
+ Part-DB1\src\Form\AdminPages\ImportType.php:111
+ src\Form\ImportType.php:78
+
+
+ import.preserve_children
+ Zachování podřízených prvků při importu
+
+
+
+
+ Part-DB1\src\Form\AdminPages\ImportType.php:120
+ Part-DB1\src\Form\AdminPages\ImportType.php:120
+ src\Form\ImportType.php:80
+
+
+ import.abort_on_validation
+ Přerušit při neplatných datech
+
+
+
+
+ Part-DB1\src\Form\AdminPages\ImportType.php:132
+ Part-DB1\src\Form\AdminPages\ImportType.php:132
+ src\Form\ImportType.php:85
+
+
+ import.btn
+ Import
+
+
+
+
+ Part-DB1\src\Form\AttachmentFormType.php:113
+ Part-DB1\src\Form\AttachmentFormType.php:109
+
+
+ attachment.edit.secure_file.help
+ K příloze označené jako soukromá mají přístup pouze ověření uživatelé s příslušným oprávněním. Pokud je tato funkce aktivována, negenerují se náhledy a přístup k souboru je méně výkonný.
+
+
+
+
+ Part-DB1\src\Form\AttachmentFormType.php:127
+ Part-DB1\src\Form\AttachmentFormType.php:123
+
+
+ attachment.edit.url.help
+ Zde můžete zadat adresu URL externího souboru nebo zadat klíčové slovo, které se používá k hledání ve vestavěných zdrojích (např. otisky).
+
+
+
+
+ Part-DB1\src\Form\AttachmentFormType.php:82
+ Part-DB1\src\Form\AttachmentFormType.php:79
+
+
+ attachment.edit.name
+ Název
+
+
+
+
+ Part-DB1\src\Form\AttachmentFormType.php:85
+ Part-DB1\src\Form\AttachmentFormType.php:82
+
+
+ attachment.edit.attachment_type
+ Typ přílohy
+
+
+
+
+ Part-DB1\src\Form\AttachmentFormType.php:94
+ Part-DB1\src\Form\AttachmentFormType.php:91
+
+
+ attachment.edit.show_in_table
+ Zobrazit v tabulce
+
+
+
+
+ Part-DB1\src\Form\AttachmentFormType.php:105
+ Part-DB1\src\Form\AttachmentFormType.php:102
+
+
+ attachment.edit.secure_file
+ Soukromá příloha
+
+
+
+
+ Part-DB1\src\Form\AttachmentFormType.php:119
+ Part-DB1\src\Form\AttachmentFormType.php:115
+
+
+ attachment.edit.url
+ URL
+
+
+
+
+ Part-DB1\src\Form\AttachmentFormType.php:133
+ Part-DB1\src\Form\AttachmentFormType.php:129
+
+
+ attachment.edit.download_url
+ Stáhnout externí soubor
+
+
+
+
+ Part-DB1\src\Form\AttachmentFormType.php:146
+ Part-DB1\src\Form\AttachmentFormType.php:142
+
+
+ attachment.edit.file
+ Nahrát soubor
+
+
+
+
+ Part-DB1\src\Form\LabelOptionsType.php:68
+ Part-DB1\src\Services\ElementTypeNameGenerator.php:86
+
+
+ part.label
+ Díl
+
+
+
+
+ Part-DB1\src\Form\LabelOptionsType.php:68
+ Part-DB1\src\Services\ElementTypeNameGenerator.php:87
+
+
+ part_lot.label
+ Inventář
+
+
+
+
+ Part-DB1\src\Form\LabelOptionsType.php:78
+
+
+ label_options.barcode_type.none
+ Žádné
+
+
+
+
+ Part-DB1\src\Form\LabelOptionsType.php:78
+
+
+ label_options.barcode_type.qr
+ QR kód (doporučeno)
+
+
+
+
+ Part-DB1\src\Form\LabelOptionsType.php:78
+
+
+ label_options.barcode_type.code128
+ Kód 128 (doporučeno)
+
+
+
+
+ Part-DB1\src\Form\LabelOptionsType.php:78
+
+
+ label_options.barcode_type.code39
+ Kód 39 (doporučeno)
+
+
+
+
+ Part-DB1\src\Form\LabelOptionsType.php:78
+
+
+ label_options.barcode_type.code93
+ Kód 39
+
+
+
+
+ Part-DB1\src\Form\LabelOptionsType.php:78
+
+
+ label_options.barcode_type.datamatrix
+ Datamatrix
+
+
+
+
+ Part-DB1\src\Form\LabelOptionsType.php:122
+
+
+ label_options.lines_mode.html
+ Zástupné symboly
+
+
+
+
+ Part-DB1\src\Form\LabelOptionsType.php:122
+
+
+ label.options.lines_mode.twig
+ Twig
+
+
+
+
+ Part-DB1\src\Form\LabelOptionsType.php:126
+
+
+ label_options.lines_mode.help
+ Pokud zde vyberete Twig, bude pole obsahu interpretováno jako Twig šablona. Viz <a href="https://twig.symfony.com/doc/3.x/templates.html">dokumentace Twig</a> a <a href="https://docs.part-db.de/usage/labels.html#twig-mode">Wiki</a>, kde najdete další informace.
+
+
+
+
+ Part-DB1\src\Form\LabelOptionsType.php:47
+
+
+ label_options.page_size.label
+ Velikost štítku
+
+
+
+
+ Part-DB1\src\Form\LabelOptionsType.php:66
+
+
+ label_options.supported_elements.label
+ Typ cíle
+
+
+
+
+ Part-DB1\src\Form\LabelOptionsType.php:75
+
+
+ label_options.barcode_type.label
+ Čárový kód
+
+
+
+
+ Part-DB1\src\Form\LabelOptionsType.php:102
+
+
+ label_profile.lines.label
+ Obsah
+
+
+
+
+ Part-DB1\src\Form\LabelOptionsType.php:111
+
+
+ label_options.additional_css.label
+ Další styly (CSS)
+
+
+
+
+ Part-DB1\src\Form\LabelOptionsType.php:120
+
+
+ label_options.lines_mode.label
+ Režim parseru
+
+
+
+
+ Part-DB1\src\Form\LabelOptionsType.php:51
+
+
+ label_options.width.placeholder
+ Šířka
+
+
+
+
+ Part-DB1\src\Form\LabelOptionsType.php:60
+
+
+ label_options.height.placeholder
+ Výška
+
+
+
+
+ Part-DB1\src\Form\LabelSystem\LabelDialogType.php:49
+
+
+ label_generator.target_id.range_hint
+ Zde můžete zadat více ID (např. 1,2,3) a/nebo rozsah (1-3), abyste mohli generovat štítky pro více prvků najednou.
+
+
+
+
+ Part-DB1\src\Form\LabelSystem\LabelDialogType.php:46
+
+
+ label_generator.target_id.label
+ Cílové ID
+
+
+
+
+ Part-DB1\src\Form\LabelSystem\LabelDialogType.php:59
+
+
+ label_generator.update
+ Aktualizovat
+
+
+
+
+ Part-DB1\src\Form\LabelSystem\ScanDialogType.php:36
+
+
+ scan_dialog.input
+ Zadání
+
+
+
+
+ Part-DB1\src\Form\LabelSystem\ScanDialogType.php:44
+
+
+ scan_dialog.submit
+ Odeslat
+
+
+
+
+ Part-DB1\src\Form\ParameterType.php:41
+
+
+ parameters.name.placeholder
+ např. Stejnosměrný proudový zisk
+
+
+
+
+ Part-DB1\src\Form\ParameterType.php:50
+
+
+ parameters.symbol.placeholder
+ např. h_{FE}
+
+
+
+
+ Part-DB1\src\Form\ParameterType.php:60
+
+
+ parameters.text.placeholder
+ např. Testovací podmínky
+
+
+
+
+ Part-DB1\src\Form\ParameterType.php:71
+
+
+ parameters.max.placeholder
+ např. 350
+
+
+
+
+ Part-DB1\src\Form\ParameterType.php:82
+
+
+ parameters.min.placeholder
+ např. 100
+
+
+
+
+ Part-DB1\src\Form\ParameterType.php:93
+
+
+ parameters.typical.placeholder
+ např. 200
+
+
+
+
+ Part-DB1\src\Form\ParameterType.php:103
+
+
+ parameters.unit.placeholder
+ např. V
+
+
+
+
+ Part-DB1\src\Form\ParameterType.php:114
+
+
+ parameter.group.placeholder
+ např. Technické specifikace
+
+
+
+
+ Part-DB1\src\Form\Part\OrderdetailType.php:72
+ Part-DB1\src\Form\Part\OrderdetailType.php:75
+
+
+ orderdetails.edit.supplierpartnr
+ Číslo dílu dodavatele
+
+
+
+
+ Part-DB1\src\Form\Part\OrderdetailType.php:81
+ Part-DB1\src\Form\Part\OrderdetailType.php:84
+
+
+ orderdetails.edit.supplier
+ Dodavatel
+
+
+
+
+ Part-DB1\src\Form\Part\OrderdetailType.php:87
+ Part-DB1\src\Form\Part\OrderdetailType.php:90
+
+
+ orderdetails.edit.url
+ Odkaz na nabídku
+
+
+
+
+ Part-DB1\src\Form\Part\OrderdetailType.php:93
+ Part-DB1\src\Form\Part\OrderdetailType.php:96
+
+
+ orderdetails.edit.obsolete
+ Již není k dispozici
+
+
+
+
+ Part-DB1\src\Form\Part\OrderdetailType.php:75
+ Part-DB1\src\Form\Part\OrderdetailType.php:78
+
+
+ orderdetails.edit.supplierpartnr.placeholder
+ např. BC 547
+
+
+
+
+ Part-DB1\src\Form\Part\PartBaseType.php:101
+ Part-DB1\src\Form\Part\PartBaseType.php:99
+
+
+ part.edit.name
+ Název
+
+
+
+
+ Part-DB1\src\Form\Part\PartBaseType.php:109
+ Part-DB1\src\Form\Part\PartBaseType.php:107
+
+
+ part.edit.description
+ Popis
+
+
+
+
+ Part-DB1\src\Form\Part\PartBaseType.php:120
+ Part-DB1\src\Form\Part\PartBaseType.php:118
+
+
+ part.edit.mininstock
+ Minimální zásoba
+
+
+
+
+ Part-DB1\src\Form\Part\PartBaseType.php:129
+ Part-DB1\src\Form\Part\PartBaseType.php:127
+
+
+ part.edit.category
+ Kategorie
+
+
+
+
+ Part-DB1\src\Form\Part\PartBaseType.php:135
+ Part-DB1\src\Form\Part\PartBaseType.php:133
+
+
+ part.edit.footprint
+ Otisk
+
+
+
+
+ Part-DB1\src\Form\Part\PartBaseType.php:142
+ Part-DB1\src\Form\Part\PartBaseType.php:140
+
+
+ part.edit.tags
+ Štítky
+
+
+
+
+ Part-DB1\src\Form\Part\PartBaseType.php:154
+ Part-DB1\src\Form\Part\PartBaseType.php:152
+
+
+ part.edit.manufacturer.label
+ Výrobce
+
+
+
+
+ Part-DB1\src\Form\Part\PartBaseType.php:161
+ Part-DB1\src\Form\Part\PartBaseType.php:159
+
+
+ part.edit.manufacturer_url.label
+ Odkaz na stránku produktu
+
+
+
+
+ Part-DB1\src\Form\Part\PartBaseType.php:167
+ Part-DB1\src\Form\Part\PartBaseType.php:165
+
+
+ part.edit.mpn
+ Číslo dílu výrobce
+
+
+
+
+ Part-DB1\src\Form\Part\PartBaseType.php:173
+ Part-DB1\src\Form\Part\PartBaseType.php:171
+
+
+ part.edit.manufacturing_status
+ Stav výroby
+
+
+
+
+ Part-DB1\src\Form\Part\PartBaseType.php:181
+ Part-DB1\src\Form\Part\PartBaseType.php:179
+
+
+ part.edit.needs_review
+ Potřeba revize
+
+
+
+
+ Part-DB1\src\Form\Part\PartBaseType.php:189
+ Part-DB1\src\Form\Part\PartBaseType.php:187
+
+
+ part.edit.is_favorite
+ Oblíbené
+
+
+
+
+ Part-DB1\src\Form\Part\PartBaseType.php:197
+ Part-DB1\src\Form\Part\PartBaseType.php:195
+
+
+ part.edit.mass
+ Hmotnost
+
+
+
+
+ Part-DB1\src\Form\Part\PartBaseType.php:203
+ Part-DB1\src\Form\Part\PartBaseType.php:201
+
+
+ part.edit.partUnit
+ Měrná jednotka
+
+
+
+
+ Part-DB1\src\Form\Part\PartBaseType.php:212
+ Part-DB1\src\Form\Part\PartBaseType.php:210
+
+
+ part.edit.comment
+ Poznámky
+
+
+
+
+ Part-DB1\src\Form\Part\PartBaseType.php:250
+ Part-DB1\src\Form\Part\PartBaseType.php:246
+
+
+ part.edit.master_attachment
+ Náhled
+
+
+
+
+ Part-DB1\src\Form\Part\PartBaseType.php:295
+ Part-DB1\src\Form\Part\PartBaseType.php:276
+ src\Form\PartType.php:91
+
+
+ part.edit.save
+ Uložit změny
+
+
+
+
+ Part-DB1\src\Form\Part\PartBaseType.php:296
+ Part-DB1\src\Form\Part\PartBaseType.php:277
+ src\Form\PartType.php:92
+
+
+ part.edit.reset
+ Zrušit změny
+
+
+
+
+ Part-DB1\src\Form\Part\PartBaseType.php:105
+ Part-DB1\src\Form\Part\PartBaseType.php:103
+
+
+ part.edit.name.placeholder
+ např. BC547
+
+
+
+
+ Part-DB1\src\Form\Part\PartBaseType.php:115
+ Part-DB1\src\Form\Part\PartBaseType.php:113
+
+
+ part.edit.description.placeholder
+ např. NPN 45V, 0,1A, 0,5W
+
+
+
+
+ Part-DB1\src\Form\Part\PartBaseType.php:123
+ Part-DB1\src\Form\Part\PartBaseType.php:121
+
+
+ part.editmininstock.placeholder
+ např. 1
+
+
+
+
+ Part-DB1\src\Form\Part\PartLotType.php:69
+ Part-DB1\src\Form\Part\PartLotType.php:69
+
+
+ part_lot.edit.description
+ Popis
+
+
+
+
+ Part-DB1\src\Form\Part\PartLotType.php:78
+ Part-DB1\src\Form\Part\PartLotType.php:78
+
+
+ part_lot.edit.location
+ Umístění
+
+
+
+
+ Part-DB1\src\Form\Part\PartLotType.php:89
+ Part-DB1\src\Form\Part\PartLotType.php:89
+
+
+ part_lot.edit.amount
+ Množství
+
+
+
+
+ Part-DB1\src\Form\Part\PartLotType.php:98
+ Part-DB1\src\Form\Part\PartLotType.php:97
+
+
+ part_lot.edit.instock_unknown
+ Množství neznámé
+
+
+
+
+ Part-DB1\src\Form\Part\PartLotType.php:109
+ Part-DB1\src\Form\Part\PartLotType.php:108
+
+
+ part_lot.edit.needs_refill
+ Potřebuje doplnit
+
+
+
+
+ Part-DB1\src\Form\Part\PartLotType.php:120
+ Part-DB1\src\Form\Part\PartLotType.php:119
+
+
+ part_lot.edit.expiration_date
+ Datum vypršení platnosti
+
+
+
+
+ Part-DB1\src\Form\Part\PartLotType.php:128
+ Part-DB1\src\Form\Part\PartLotType.php:125
+
+
+ part_lot.edit.comment
+ Poznámky
+
+
+
+
+ Part-DB1\src\Form\Permissions\PermissionsType.php:99
+ Part-DB1\src\Form\Permissions\PermissionsType.php:99
+
+
+ perm.group.other
+ Různé
+
+
+
+
+ Part-DB1\src\Form\TFAGoogleSettingsType.php:97
+ Part-DB1\src\Form\TFAGoogleSettingsType.php:97
+
+
+ tfa_google.enable
+ Povolit aplikaci Authenticator
+
+
+
+
+ Part-DB1\src\Form\TFAGoogleSettingsType.php:101
+ Part-DB1\src\Form\TFAGoogleSettingsType.php:101
+
+
+ tfa_google.disable
+ Deaktivovat aplikaci Authenticator
+
+
+
+
+ Part-DB1\src\Form\TFAGoogleSettingsType.php:74
+ Part-DB1\src\Form\TFAGoogleSettingsType.php:74
+
+
+ google_confirmation
+ Potvrzovací kód
+
+
+
+
+ Part-DB1\src\Form\UserSettingsType.php:108
+ Part-DB1\src\Form\UserSettingsType.php:108
+ src\Form\UserSettingsType.php:46
+
+
+ user.timezone.label
+ Časové pásmo
+
+
+
+
+ Part-DB1\src\Form\UserSettingsType.php:133
+ Part-DB1\src\Form\UserSettingsType.php:132
+
+
+ user.currency.label
+ Preferovaná měna
+
+
+
+
+ Part-DB1\src\Form\UserSettingsType.php:140
+ Part-DB1\src\Form\UserSettingsType.php:139
+ src\Form\UserSettingsType.php:53
+
+
+ save
+ Použít změny
+
+
+
+
+ Part-DB1\src\Form\UserSettingsType.php:141
+ Part-DB1\src\Form\UserSettingsType.php:140
+ src\Form\UserSettingsType.php:54
+
+
+ reset
+ Zrušit změny
+
+
+
+
+ Part-DB1\src\Form\UserSettingsType.php:104
+ Part-DB1\src\Form\UserSettingsType.php:104
+ src\Form\UserSettingsType.php:45
+
+
+ user_settings.language.placeholder
+ Jazyk serveru
+
+
+
+
+ Part-DB1\src\Form\UserSettingsType.php:115
+ Part-DB1\src\Form\UserSettingsType.php:115
+ src\Form\UserSettingsType.php:48
+
+
+ user_settings.timezone.placeholder
+ Časové pásmo serveru
+
+
+
+
+ Part-DB1\src\Services\ElementTypeNameGenerator.php:79
+ Part-DB1\src\Services\ElementTypeNameGenerator.php:79
+
+
+ attachment.label
+ Příloha
+
+
+
+
+ Part-DB1\src\Services\ElementTypeNameGenerator.php:81
+ Part-DB1\src\Services\ElementTypeNameGenerator.php:81
+
+
+ attachment_type.label
+ Typ přílohy
+
+
+
+
+ Part-DB1\src\Services\ElementTypeNameGenerator.php:82
+ Part-DB1\src\Services\ElementTypeNameGenerator.php:82
+
+
+ project.label
+ Projekt
+
+
+
+
+ Part-DB1\src\Services\ElementTypeNameGenerator.php:85
+ Part-DB1\src\Services\ElementTypeNameGenerator.php:85
+
+
+ measurement_unit.label
+ Měrná jednotka
+
+
+
+
+ Part-DB1\src\Services\ElementTypeNameGenerator.php:90
+ Part-DB1\src\Services\ElementTypeNameGenerator.php:90
+
+
+ currency.label
+ Měna
+
+
+
+
+ Part-DB1\src\Services\ElementTypeNameGenerator.php:91
+ Part-DB1\src\Services\ElementTypeNameGenerator.php:91
+
+
+ orderdetail.label
+ Detail objednávky
+
+
+
+
+ Part-DB1\src\Services\ElementTypeNameGenerator.php:92
+ Part-DB1\src\Services\ElementTypeNameGenerator.php:92
+
+
+ pricedetail.label
+ Detail ceny
+
+
+
+
+ Part-DB1\src\Services\ElementTypeNameGenerator.php:94
+ Part-DB1\src\Services\ElementTypeNameGenerator.php:94
+
+
+ user.label
+ Uživatel
+
+
+
+
+ Part-DB1\src\Services\ElementTypeNameGenerator.php:95
+
+
+ parameter.label
+ Parametr
+
+
+
+
+ Part-DB1\src\Services\ElementTypeNameGenerator.php:96
+
+
+ label_profile.label
+ Profil štítku
+
+
+
+
+ Part-DB1\src\Services\LogSystem\LogEntryExtraFormatter.php:176
+ Part-DB1\src\Services\LogSystem\LogEntryExtraFormatter.php:161
+ new
+
+
+ log.element_deleted.old_name.unknown
+ Neznámý
+
+
+
+
+ Part-DB1\src\Services\MarkdownParser.php:73
+ Part-DB1\src\Services\MarkdownParser.php:73
+
+
+ markdown.loading
+ Načítání markdown. Pokud tato zpráva nezmizí, zkuste stránku načíst znovu.
+
+
+
+
+ Part-DB1\src\Services\PasswordResetManager.php:98
+ Part-DB1\src\Services\PasswordResetManager.php:98
+
+
+ pw_reset.email.subject
+ Obnovení hesla k účtu Part-DB
+
+
+
+
+ Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:108
+
+
+ tree.tools.tools
+ Nástroje
+
+
+
+
+ Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:109
+ Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:107
+ src\Services\ToolsTreeBuilder.php:74
+
+
+ tree.tools.edit
+ Upravit
+
+
+
+
+ Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:110
+ Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:108
+ src\Services\ToolsTreeBuilder.php:81
+
+
+ tree.tools.show
+ Zobrazit
+
+
+
+
+ Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:111
+ Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:109
+
+
+ tree.tools.system
+ Systém
+
+
+
+
+ Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:123
+
+
+ tree.tools.tools.label_dialog
+ Generátor štítků
+
+
+
+
+ Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:130
+
+
+ tree.tools.tools.label_scanner
+ Čtečka štítků
+
+
+
+
+ Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:149
+ Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:126
+ src\Services\ToolsTreeBuilder.php:62
+
+
+ tree.tools.edit.attachment_types
+ Typy příloh
+
+
+
+
+ Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:155
+ Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:132
+ src\Services\ToolsTreeBuilder.php:64
+
+
+ tree.tools.edit.categories
+ Kategorie
+
+
+
+
+ Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:161
+ Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:138
+ src\Services\ToolsTreeBuilder.php:66
+
+
+ tree.tools.edit.projects
+ Projekty
+
+
+
+
+ Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:167
+ Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:144
+ src\Services\ToolsTreeBuilder.php:68
+
+
+ tree.tools.edit.suppliers
+ Dodavatelé
+
+
+
+
+ Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:173
+ Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:150
+ src\Services\ToolsTreeBuilder.php:70
+
+
+ tree.tools.edit.manufacturer
+ Výrobce
+
+
+
+
+ Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:179
+ Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:156
+
+
+ tree.tools.edit.storelocation
+ Umístění
+
+
+
+
+ Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:185
+ Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:162
+
+
+ tree.tools.edit.footprint
+ Otisky
+
+
+
+
+ Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:191
+ Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:168
+
+
+ tree.tools.edit.currency
+ Měny
+
+
+
+
+ Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:197
+ Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:174
+
+
+ tree.tools.edit.measurement_unit
+ Měrné jednotky
+
+
+
+
+ Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:203
+
+
+ tree.tools.edit.label_profile
+ Profily štítků
+
+
+
+
+ Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:209
+ Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:180
+
+
+ tree.tools.edit.part
+ Nový díl
+
+
+
+
+ Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:226
+ Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:197
+ src\Services\ToolsTreeBuilder.php:77
+
+
+ tree.tools.show.all_parts
+ Zobrazit všechny díly
+
+
+
+
+ Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:232
+ Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:203
+
+
+ tree.tools.show.all_attachments
+ Přílohy
+
+
+
+
+ Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:239
+ Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:210
+ new
+
+
+ tree.tools.show.statistics
+ Statistiky
+
+
+
+
+ Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:258
+ Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:229
+
+
+ tree.tools.system.users
+ Uživatelé
+
+
+
+
+ Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:264
+ Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:235
+
+
+ tree.tools.system.groups
+ Skupiny
+
+
+
+
+ Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:271
+ Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:242
+ new
+
+
+ tree.tools.system.event_log
+ Protokol událostí
+
+
+
+
+ Part-DB1\src\Services\Trees\TreeViewGenerator.php:95
+ Part-DB1\src\Services\Trees\TreeViewGenerator.php:95
+ src\Services\TreeBuilder.php:124
+
+
+ entity.tree.new
+ Nový prvek
+
+
+
+
+ Part-DB1\templates\Parts\info\_attachments_info.html.twig:34
+ obsolete
+
+
+ attachment.external_file
+ Externí soubor
+
+
+
+
+ Part-DB1\templates\Parts\info\_attachments_info.html.twig:62
+ obsolete
+
+
+ attachment.edit
+ Upravit
+
+
+
+
+ Part-DB1\templates\_navbar.html.twig:27
+ templates\base.html.twig:88
+ obsolete
+
+
+ barcode.scan
+ Skenovat čárový kód
+
+
+
+
+ Part-DB1\src\Form\UserSettingsType.php:119
+ src\Form\UserSettingsType.php:49
+ obsolete
+
+
+ user.theme.label
+ Téma
+
+
+
+
+ Part-DB1\src\Form\UserSettingsType.php:129
+ src\Form\UserSettingsType.php:50
+ obsolete
+
+
+ user_settings.theme.placeholder
+ Serverové téma
+
+
+
+
+ Part-DB1\src\Services\LogSystem\LogEntryExtraFormatter.php:100
+ new
+ obsolete
+
+
+ log.user_login.ip
+ IP
+
+
+
+
+ Part-DB1\src\Services\LogSystem\LogEntryExtraFormatter.php:128
+ Part-DB1\src\Services\LogSystem\LogEntryExtraFormatter.php:150
+ Part-DB1\src\Services\LogSystem\LogEntryExtraFormatter.php:169
+ Part-DB1\src\Services\LogSystem\LogEntryExtraFormatter.php:207
+ new
+ obsolete
+
+
+ log.undo_mode.undo
+ Změna zrušena
+
+
+
+
+ Part-DB1\src\Services\LogSystem\LogEntryExtraFormatter.php:130
+ Part-DB1\src\Services\LogSystem\LogEntryExtraFormatter.php:152
+ Part-DB1\src\Services\LogSystem\LogEntryExtraFormatter.php:171
+ Part-DB1\src\Services\LogSystem\LogEntryExtraFormatter.php:209
+ new
+ obsolete
+
+
+ log.undo_mode.revert
+ Prvek vrácen
+
+
+
+
+ Part-DB1\src\Services\LogSystem\LogEntryExtraFormatter.php:139
+ new
+ obsolete
+
+
+ log.element_created.original_instock
+ Staré zásoby
+
+
+
+
+ Part-DB1\src\Services\LogSystem\LogEntryExtraFormatter.php:160
+ new
+ obsolete
+
+
+ log.element_deleted.old_name
+ Starý název
+
+
+
+
+ Part-DB1\src\Services\LogSystem\LogEntryExtraFormatter.php:184
+ new
+ obsolete
+
+
+ log.element_edited.changed_fields
+ Změněná pole
+
+
+
+
+ Part-DB1\src\Services\LogSystem\LogEntryExtraFormatter.php:198
+ new
+ obsolete
+
+
+ log.instock_changed.comment
+ Komentář
+
+
+
+
+ Part-DB1\src\Services\LogSystem\LogEntryExtraFormatter.php:214
+ new
+ obsolete
+
+
+ log.collection_deleted.deleted
+ Odstraněný prvek:
+
+
+
+
+ templates\base.html.twig:81
+ obsolete
+ obsolete
+
+
+ go.exclamation
+ Jdi!
+
+
+
+
+ templates\base.html.twig:109
+ obsolete
+ obsolete
+
+
+ language.english
+ English
+
+
+
+
+ templates\base.html.twig:112
+ obsolete
+ obsolete
+
+
+ language.german
+ German
+
+
+
+
+ obsolete
+ obsolete
+
+
+ flash.password_change_needed
+ Nutná změna hesla!
+
+
+
+
+ obsolete
+ obsolete
+
+
+ attachment.table.type
+ Typ přílohy
+
+
+
+
+ obsolete
+ obsolete
+
+
+ attachment.table.element
+ Související prvek
+
+
+
+
+ obsolete
+ obsolete
+
+
+ attachment.edit.isPicture
+ Obrázek?
+
+
+
+
+ obsolete
+ obsolete
+
+
+ attachment.edit.is3DModel
+ 3D model?
+
+
+
+
+ obsolete
+ obsolete
+
+
+ attachment.edit.isBuiltin
+ Vestavěný?
+
+
+
+
+ obsolete
+ obsolete
+
+
+ category.edit.default_comment.placeholder
+ např. užitečné pro přepínání
+
+
+
+
+ obsolete
+ obsolete
+
+
+ tfa_backup.regenerate_codes
+ Generování nových záložních kódů
+
+
+
+
+ obsolete
+ obsolete
+
+
+ validator.noneofitschild.self
+ Prvek nemůže být svým vlastním rodičem.
+
+
+
+
+ obsolete
+ obsolete
+
+
+ validator.noneofitschild.children
+ Rodič nemůže být jedním ze svých potomků.
+
+
+
+
+ obsolete
+ obsolete
+
+
+ validator.part_lot.location_full.no_increasment
+ Místo je obsazeno. Množství nelze navýšit (nová hodnota musí být menší než {{ old_amount }}).
+
+
+
+
+ obsolete
+ obsolete
+
+
+ validator.part_lot.location_full
+ Úložiště bylo označeno jako plné, takže do něj nelze přidat nový díl.
+
+
+
+
+ obsolete
+ obsolete
+
+
+ validator.part_lot.only_existing
+ Úložiště bylo označeno jako "pouze existující", takže do něj nelze přidat novou část.
+
+
+
+
+ obsolete
+ obsolete
+
+
+ validator.part_lot.single_part
+ Úložiště bylo označeno jako "jeden díl", takže do něj nelze přidat nový díl.
+
+
+
+
+ obsolete
+ obsolete
+
+
+ m_status.active.help
+ Tento díl je v současné době a v dohledné budoucnosti ve výrobě.
+
+
+
+
+ obsolete
+ obsolete
+
+
+ m_status.announced.help
+ Díl byl oznámen, ale zatím není k dispozici.
+
+
+
+
+ obsolete
+ obsolete
+
+
+ m_status.discontinued.help
+ Tento díl se přestal vyrábět a již se nevyrábí.
+
+
+
+
+ obsolete
+ obsolete
+
+
+ m_status.eol.help
+ Výrobek dosáhl konce své životnosti a jeho výroba bude brzy ukončena.
+
+
+
+
+ obsolete
+ obsolete
+
+
+ m_status.nrfnd.help
+ Tento díl se v současné době vyrábí, ale pro nové konstrukce se nedoporučuje.
+
+
+
+
+ obsolete
+ obsolete
+
+
+ m_status.unknown.help
+ Stav výroby dílu není znám.
+
+
+
+
+ obsolete
+ obsolete
+
+
+ flash.success
+ Úspěšné
+
+
+
+
+ obsolete
+ obsolete
+
+
+ flash.error
+ Chyba
+
+
+
+
+ obsolete
+ obsolete
+
+
+ flash.warning
+ Upozornění
+
+
+
+
+ obsolete
+ obsolete
+
+
+ flash.notice
+ Oznámení
+
+
+
+
+ obsolete
+ obsolete
+
+
+ flash.info
+ Info
+
+
+
+
+ obsolete
+ obsolete
+
+
+ validator.noLockout
+ Oprávnění "změnit oprávnění" nemůžete sami odebrat, abyste se náhodou nezablokovali.
+
+
+
+
+ obsolete
+ obsolete
+
+
+ attachment_type.edit.filetype_filter
+ Povolené přípony souborů
+
+
+
+
+ obsolete
+ obsolete
+
+
+ attachment_type.edit.filetype_filter.help
+ Můžete zadat čárkou oddělený seznam přípon souborů nebo typů mime, které musí mít nahraný soubor přiřazený k tomuto typu přílohy. Chcete-li povolit všechny podporované obrazové soubory, můžete použít příkaz image/*.
+
+
+
+
+ obsolete
+ obsolete
+
+
+ attachment_type.edit.filetype_filter.placeholder
+ např. .txt, application/pdf, image/*
+
+
+
+
+ src\Form\PartType.php:63
+ obsolete
+ obsolete
+
+
+ part.name.placeholder
+ např. BC547
+
+
+
+
+ obsolete
+ obsolete
+
+
+ entity.edit.not_selectable
+ Nelze vybrat
+
+
+
+
+ obsolete
+ obsolete
+
+
+ entity.edit.not_selectable.help
+ Pokud je tato možnost aktivována, nelze tento prvek přiřadit k vlastnosti dílu. Užitečné, pokud se tento prvek používá pouze pro seskupování.
+
+
+
+
+ obsolete
+ obsolete
+
+
+ bbcode.hint
+ Zde můžete použít kód BBC (např. [b]Bold[/b]).
+
+
+
+
+ obsolete
+ obsolete
+
+
+ entity.create
+ Vytvořit prvek
+
+
+
+
+ obsolete
+ obsolete
+
+
+ entity.edit.save
+ Uložit
+
+
+
+
+ obsolete
+ obsolete
+
+
+ category.edit.disable_footprints
+ Zakázat otisky
+
+
+
+
+ obsolete
+ obsolete
+
+
+ category.edit.disable_footprints.help
+ Pokud je tato možnost aktivována, je vlastnost otisku zakázána pro všechny díly s touto kategorií.
+
+
+
+
+ obsolete
+ obsolete
+
+
+ category.edit.disable_manufacturers
+ Zakázat výrobce
+
+
+
+
+ obsolete
+ obsolete
+
+
+ category.edit.disable_manufacturers.help
+ Pokud je tato možnost aktivována, je vlastnost výrobce zakázána pro všechny díly s touto kategorií.
+
+
+
+
+ obsolete
+ obsolete
+
+
+ category.edit.disable_autodatasheets
+ Zakázat automatické odkazy na katalogové listy
+
+
+
+
+ obsolete
+ obsolete
+
+
+ category.edit.disable_autodatasheets.help
+ Pokud je tato možnost aktivována, nevytvářejí se pro díly s touto kategorií žádné automatické odkazy na datové listy.
+
+
+
+
+ obsolete
+ obsolete
+
+
+ category.edit.disable_properties
+ Zakázat vlastnosti
+
+
+
+
+ obsolete
+ obsolete
+
+
+ category.edit.disable_properties.help
+ Pokud je tato možnost aktivována, vlastnosti dílu jsou pro díly s touto kategorií zakázány.
+
+
+
+
+ obsolete
+ obsolete
+
+
+ category.edit.partname_hint
+ Nápověda k názvu dílu
+
+
+
+
+ obsolete
+ obsolete
+
+
+ category.edit.partname_hint.placeholder
+ např. 100nF
+
+
+
+
+ obsolete
+ obsolete
+
+
+ category.edit.partname_regex
+ Filtr názvů
+
+
+
+
+ obsolete
+ obsolete
+
+
+ category.edit.default_description
+ Výchozí popis
+
+
+
+
+ obsolete
+ obsolete
+
+
+ category.edit.default_description.placeholder
+ Např. kondenzátor, 10 mm x 10 mm, SMD
+
+
+
+
+ obsolete
+ obsolete
+
+
+ category.edit.default_comment
+ Výchozí poznámky
+
+
+
+
+ obsolete
+ obsolete
+
+
+ company.edit.address
+ Addresa
+
+
+
+
+ obsolete
+ obsolete
+
+
+ company.edit.address.placeholder
+ např. Ulice 314
+Město
+
+
+
+
+ obsolete
+ obsolete
+
+
+ company.edit.phone_number
+ Telefonní číslo
+
+
+
+
+ obsolete
+ obsolete
+
+
+ company.edit.phone_number.placeholder
+ +420 123 456 789
+
+
+
+
+ obsolete
+ obsolete
+
+
+ company.edit.fax_number
+ Číslo faxu
+
+
+
+
+ obsolete
+ obsolete
+
+
+ company.edit.email
+ e-mail
+
+
+
+
+ obsolete
+ obsolete
+
+
+ company.edit.email.placeholder
+ např. contact@foo.bar
+
+
+
+
+ obsolete
+ obsolete
+
+
+ company.edit.website
+ Webové stránky
+
+
+
+
+ obsolete
+ obsolete
+
+
+ company.edit.website.placeholder
+ https://www.foo.bar
+
+
+
+
+ obsolete
+ obsolete
+
+
+ company.edit.auto_product_url
+ Produkt URL
+
+
+
+
+ obsolete
+ obsolete
+
+
+ company.edit.auto_product_url.help
+ Toto pole slouží k určení odkazu na díl na stránce společnosti. %PARTNUMBER% bude nahrazeno číslem objednávky.
+
+
+
+
+ obsolete
+ obsolete
+
+
+ company.edit.auto_product_url.placeholder
+ https://foo.bar/product/%PARTNUMBER%
+
+
+
+
+ obsolete
+ obsolete
+
+
+ currency.edit.iso_code
+ Kód ISO
+
+
+
+
+ obsolete
+ obsolete
+
+
+ currency.edit.exchange_rate
+ Směnný kurz
+
+
+
+
+ obsolete
+ obsolete
+
+
+ footprint.edit.3d_model
+ 3D model
+
+
+
+
+ obsolete
+ obsolete
+
+
+ mass_creation.lines
+ Zadání
+
+
+
+
+ obsolete
+ obsolete
+
+
+ mass_creation.lines.placeholder
+ Element 1
+ Element 1.1
+ Element 1.1.1
+ Element 1.2
+Element 2
+Element 3
+
+
+
+
+ obsolete
+ obsolete
+
+
+ entity.mass_creation.btn
+ Vytvořit
+
+
+
+
+ obsolete
+ obsolete
+
+
+ measurement_unit.edit.is_integer
+ Je celé číslo
+
+
+
+
+ obsolete
+ obsolete
+
+
+ measurement_unit.edit.is_integer.help
+ Pokud je tato možnost aktivována, budou všechny hodnoty s touto jednotkou zaokrouhleny na celá čísla.
+
+
+
+
+ obsolete
+ obsolete
+
+
+ measurement_unit.edit.use_si_prefix
+ Použití předpony SI
+
+
+
+
+ obsolete
+ obsolete
+
+
+ measurement_unit.edit.use_si_prefix.help
+ Pokud je tato možnost aktivována, hodnoty se zobrazují s předponami SI (např. 1,2 kg místo 1200 g).
+
+
+
+
+ obsolete
+ obsolete
+
+
+ measurement_unit.edit.unit_symbol
+ Symbol jednotky
+
+
+
+
+ obsolete
+ obsolete
+
+
+ measurement_unit.edit.unit_symbol.placeholder
+ např. m
+
+
+
+
+ obsolete
+ obsolete
+
+
+ storelocation.edit.is_full.label
+ Úložiště plné
+
+
+
+
+ obsolete
+ obsolete
+
+
+ storelocation.edit.is_full.help
+ Pokud je tato možnost vybrána, není možné přidávat nové díly do tohoto umístění skladu ani zvyšovat množství stávajících dílů.
+
+
+
+
+ obsolete
+ obsolete
+
+
+ storelocation.limit_to_existing.label
+ Omezení na stávající díly
+
+
+
+
+ obsolete
+ obsolete
+
+
+ storelocation.limit_to_existing.help
+ Pokud je tato možnost aktivována, není možné přidávat nové díly do tohoto umístění, ale množství stávajících dílů lze navýšit.
+
+
+
+
+ obsolete
+ obsolete
+
+
+ storelocation.only_single_part.label
+ Pouze jeden díl
+
+
+
+
+ obsolete
+ obsolete
+
+
+ storelocation.only_single_part.help
+ Pokud je tato možnost aktivována, lze k tomuto úložišti přiřadit pouze jeden díl (s každým množstvím). Užitečné pro malé krabičky SMD nebo podavače.
+
+
+
+
+ obsolete
+ obsolete
+
+
+ storelocation.storage_type.label
+ Typ úložiště
+
+
+
+
+ obsolete
+ obsolete
+
+
+ storelocation.storage_type.help
+ Zde můžete vybrat měrnou jednotku, kterou musí díl mít, aby mohl být přiřazen k tomuto úložišti.
+
+
+
+
+ obsolete
+ obsolete
+
+
+ supplier.edit.default_currency
+ Výchozí měna
+
+
+
+
+ obsolete
+ obsolete
+
+
+ supplier.shipping_costs.label
+ Náklady na dopravu
+
+
+
+
+ obsolete
+ obsolete
+
+
+ user.username.placeholder
+ např. j.doe
+
+
+
+
+ obsolete
+ obsolete
+
+
+ user.firstName.placeholder
+ např. John
+
+
+
+
+ obsolete
+ obsolete
+
+
+ user.lastName.placeholder
+ např. Doe
+
+
+
+
+ obsolete
+ obsolete
+
+
+ user.email.placeholder
+ j.doe@ecorp.com
+
+
+
+
+ obsolete
+ obsolete
+
+
+ user.department.placeholder
+ např. Vývoj
+
+
+
+
+ obsolete
+ obsolete
+
+
+ user.settings.pw_new.label
+ Nové heslo
+
+
+
+
+ obsolete
+ obsolete
+
+
+ user.settings.pw_confirm.label
+ Potvrdit nové heslo
+
+
+
+
+ obsolete
+ obsolete
+
+
+ user.edit.needs_pw_change
+ Uživatel musí změnit heslo
+
+
+
+
+ obsolete
+ obsolete
+
+
+ user.edit.user_disabled
+ Uživatel zakázán (přihlášení není možné)
+
+
+
+
+ obsolete
+ obsolete
+
+
+ user.create
+ Vytvořit uživatele
+
+
+
+
+ obsolete
+ obsolete
+
+
+ user.edit.save
+ Uložit
+
+
+
+
+ obsolete
+ obsolete
+
+
+ entity.edit.reset
+ Zrušit změny
+
+
+
+
+ templates\Parts\show_part_info.html.twig:166
+ obsolete
+ obsolete
+
+
+ part.withdraw.btn
+ Stáhnout
+
+
+
+
+ templates\Parts\show_part_info.html.twig:171
+ obsolete
+ obsolete
+
+
+ part.withdraw.comment:
+ Komentář/účel
+
+
+
+
+ templates\Parts\show_part_info.html.twig:189
+ obsolete
+ obsolete
+
+
+ part.add.caption
+ Přidání dílů
+
+
+
+
+ templates\Parts\show_part_info.html.twig:194
+ obsolete
+ obsolete
+
+
+ part.add.btn
+ Přidat
+
+
+
+
+ templates\Parts\show_part_info.html.twig:199
+ obsolete
+ obsolete
+
+
+ part.add.comment
+ Komentář/účel
+
+
+
+
+ templates\AdminPages\CompanyAdminBase.html.twig:15
+ obsolete
+ obsolete
+
+
+ admin.comment
+ Poznámky
+
+
+
+
+ src\Form\PartType.php:83
+ obsolete
+ obsolete
+
+
+ manufacturer_url.label
+ Odkaz na výrobce
+
+
+
+
+ src\Form\PartType.php:66
+ obsolete
+ obsolete
+
+
+ part.description.placeholder
+ např. NPN 45V 0,1A 0,5W
+
+
+
+
+ src\Form\PartType.php:69
+ obsolete
+ obsolete
+
+
+ part.instock.placeholder
+ např. 10
+
+
+
+
+ src\Form\PartType.php:72
+ obsolete
+ obsolete
+
+
+ part.mininstock.placeholder
+ např. 5
+
+
+
+
+ obsolete
+ obsolete
+
+
+ part.order.price_per
+ Cena za
+
+
+
+
+ obsolete
+ obsolete
+
+
+ part.withdraw.caption
+ Odebrání dílů
+
+
+
+
+ obsolete
+ obsolete
+
+
+ datatable.datatable.lengthMenu
+ _MENU_
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.group.parts
+ Díly
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.group.structures
+ Datové struktury
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.group.system
+ Systém
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.parts
+ Díly
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.read
+ Zobrazit
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.edit
+ Upravit
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.create
+ Vytvořit
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.part.move
+ Změnit kategorii
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.delete
+ Smazat
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.part.search
+ Hledat
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.part.all_parts
+ Seznam všech dílů
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.part.no_price_parts
+ Seznam dílů bez informací o ceně
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.part.obsolete_parts
+ Seznam zastaralých dílů
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.part.unknown_instock_parts
+ Zobrazit díly s neznámým skladem
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.part.change_favorite
+ Změna stavu oblíbených položek
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.part.show_favorite
+ Seznam oblíbených dílů
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.part.show_last_edit_parts
+ Zobrazit naposledy upravené/přidané díly
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.part.show_users
+ Zobrazit posledního upravujícího uživatele
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.part.show_history
+ Zobrazit historii
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.part.name
+ Název
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.part.description
+ Popis
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.part.instock
+ Skladem
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.part.mininstock
+ Minimální stav zásob
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.part.comment
+ Poznámky
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.part.storelocation
+ Místo skladování
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.part.manufacturer
+ Výrobce
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.part.orderdetails
+ Informace o objednávce
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.part.prices
+ Ceny
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.part.attachments
+ Přílohy souborů
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.part.order
+ Objednávky
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.storelocations
+ Umístění
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.move
+ Přesun
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.list_parts
+ Seznam dílů
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.part.footprints
+ Otisky
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.part.categories
+ Kategorie
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.part.supplier
+ Dodavatelé
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.part.manufacturers
+ Výrobce
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.projects
+ Projekty
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.part.attachment_types
+ Typy příloh
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.tools.import
+ Import
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.tools.labels
+ Štítky
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.tools.calculator
+ Kalkulačka odporu
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.tools.footprints
+ Otisky
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.tools.ic_logos
+ Loga IC
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.tools.statistics
+ Statistiky
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.edit_permissions
+ Oprávnění k úpravám
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.users.edit_user_name
+ Upravit uživatelské jméno
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.users.edit_change_group
+ Změna skupiny
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.users.edit_infos
+ Upravit informace
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.users.edit_permissions
+ Upravit oprávnění
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.users.set_password
+ Nastavit heslo
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.users.change_user_settings
+ Změna uživatelských nastavení
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.database.see_status
+ Zobrazit stav
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.database.update_db
+ Aktualizace databáze
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.database.read_db_settings
+ Čtení parametrů databáze
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.database.write_db_settings
+ Úprava parametrů databáze
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.config.read_config
+ Čtení konfigurace
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.config.edit_config
+ Úprava konfigurace
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.config.server_info
+ Informace o serveru
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.config.use_debug
+ Použití ladicích nástrojů
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.show_logs
+ Zobrazit protokoly
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.delete_logs
+ Odstranit protokoly
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.self.edit_infos
+ Upravit informace
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.self.edit_username
+ Upravit uživatelské jméno
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.self.show_permissions
+ Zobrazit oprávnění
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.self.show_logs
+ Zobrazit vlastní záznamy v protokolu
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.self.create_labels
+ Vytvořit štítky
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.self.edit_options
+ Upravit možnosti
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.self.delete_profiles
+ Odstranit profily
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.self.edit_profiles
+ Upravit profily
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.part.tools
+ Nástroje
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.groups
+ Skupiny
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.users
+ Uživatelé
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.database
+ Databáze
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.config
+ Konfigurace
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.system
+ Systém
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.self
+ Vlastní uživatel
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.labels
+ Štítky
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.part.category
+ Kategorie
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.part.minamount
+ Min. množství
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.part.footprint
+ Otisk
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.part.mpn
+ MPN
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.part.status
+ Stav výroby
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.part.tags
+ Štítky
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.part.unit
+ Jednotka dílu
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.part.mass
+ Hmotnost
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.part.lots
+ Množství dílů
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.show_users
+ Zobrazit posledního upravujícího uživatele
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.currencies
+ Měny
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.measurement_units
+ Měrná jednotka
+
+
+
+
+ obsolete
+ obsolete
+
+
+ user.settings.pw_old.label
+ Původní heslo
+
+
+
+
+ obsolete
+ obsolete
+
+
+ pw_reset.submit
+ Obnovit heslo
+
+
+
+
+ obsolete
+ obsolete
+
+
+ u2f_two_factor
+ Bezpečnostní klíč (U2F)
+
+
+
+
+ obsolete
+ obsolete
+
+
+ google
+ Google
+
+
+
+
+ tfa.provider.webauthn_two_factor_provider
+ Bezpečnostní klíč
+
+
+
+
+ obsolete
+ obsolete
+
+
+ tfa.provider.google
+ Authenticator app
+
+
+
+
+ obsolete
+ obsolete
+
+
+ Login successful
+ Přihlášení bylo úspěšné
+
+
+
+
+ obsolete
+ obsolete
+
+
+ log.type.exception
+ Neošetřená výjimka (zastaralé)
+
+
+
+
+ obsolete
+ obsolete
+
+
+ log.type.user_login
+ Přihlášení uživatele
+
+
+
+
+ obsolete
+ obsolete
+
+
+ log.type.user_logout
+ Odhlášení uživatele
+
+
+
+
+ obsolete
+ obsolete
+
+
+ log.type.unknown
+ Neznámý
+
+
+
+
+ obsolete
+ obsolete
+
+
+ log.type.element_created
+ Prvek vytvořen
+
+
+
+
+ obsolete
+ obsolete
+
+
+ log.type.element_edited
+ Prvek upraven
+
+
+
+
+ obsolete
+ obsolete
+
+
+ log.type.element_deleted
+ Prvek smazán
+
+
+
+
+ obsolete
+ obsolete
+
+
+ log.type.database_updated
+ Databáze aktualizována
+
+
+
+
+ obsolete
+
+
+ perm.revert_elements
+ Vrátit prvek
+
+
+
+
+ obsolete
+
+
+ perm.show_history
+ Zobrazit historii
+
+
+
+
+ obsolete
+
+
+ perm.tools.lastActivity
+ Zobrazit poslední aktivitu
+
+
+
+
+ obsolete
+
+
+ perm.tools.timeTravel
+ Zobrazit staré verze prvků (cestování v čase)
+
+
+
+
+ obsolete
+
+
+ tfa_u2f.key_added_successful
+ Bezpečnostní klíč byl úspěšně přidán.
+
+
+
+
+ obsolete
+
+
+ Username
+ Uživatelské jméno
+
+
+
+
+ obsolete
+
+
+ log.type.security.google_disabled
+ Aplikace Authenticator je vypnutá
+
+
+
+
+ obsolete
+
+
+ log.type.security.u2f_removed
+ Bezpečnostní klíč odstraněn
+
+
+
+
+ obsolete
+
+
+ log.type.security.u2f_added
+ Bezpečnostní klíč přidán
+
+
+
+
+ obsolete
+
+
+ log.type.security.backup_keys_reset
+ Přegenerování záložních klíčů
+
+
+
+
+ obsolete
+
+
+ log.type.security.google_enabled
+ Aplikace Authenticator je zapnutá
+
+
+
+
+ obsolete
+
+
+ log.type.security.password_changed
+ Heslo bylo změněno
+
+
+
+
+ obsolete
+
+
+ log.type.security.trusted_device_reset
+ Důvěryhodná zařízení resetována
+
+
+
+
+ obsolete
+
+
+ log.type.collection_element_deleted
+ Vymazaný prvek sbírky
+
+
+
+
+ obsolete
+
+
+ log.type.security.password_reset
+ Obnovení hesla
+
+
+
+
+ obsolete
+
+
+ log.type.security.2fa_admin_reset
+ Obnovení dvoufaktorového nastavení správcem
+
+
+
+
+ obsolete
+
+
+ log.type.user_not_allowed
+ Neoprávněný pokus o přístup
+
+
+
+
+ obsolete
+
+
+ log.database_updated.success
+ Úspěšné
+
+
+
+
+ obsolete
+
+
+ label_options.barcode_type.2D
+ 2D
+
+
+
+
+ obsolete
+
+
+ label_options.barcode_type.1D
+ 1D
+
+
+
+
+ obsolete
+
+
+ perm.part.parameters
+ Parametry
+
+
+
+
+ obsolete
+
+
+ perm.attachment_show_private
+ Zobrazit soukromé přílohy
+
+
+
+
+ obsolete
+
+
+ perm.tools.label_scanner
+ Čtečka štítků
+
+
+
+
+ obsolete
+
+
+ perm.self.read_profiles
+ Přečíst profily
+
+
+
+
+ obsolete
+
+
+ perm.self.create_profiles
+ Vytvořit profily
+
+
+
+
+ obsolete
+
+
+ perm.labels.use_twig
+ Použití režimu Twig
+
+
+
+
+ label_profile.showInDropdown
+ Zobrazit v rychlém výběru
+
+
+
+
+ group.edit.enforce_2fa
+ Vynucení dvoufaktorového ověřování (2FA)
+
+
+
+
+ group.edit.enforce_2fa.help
+ Pokud je tato možnost povolena, musí každý přímý člen této skupiny nakonfigurovat alespoň jeden druhý faktor pro ověření. Doporučeno pro skupiny správců s velkým počtem oprávnění.
+
+
+
+
+ selectpicker.empty
+ Nic není vybráno
+
+
+
+
+ selectpicker.nothing_selected
+ Nic není vybráno
+
+
+
+
+ entity.delete.must_not_contain_parts
+ Element "%PATH%" stále obsahuje díly! Abyste mohli tento prvek odstranit, musíte díly přesunout.
+
+
+
+
+ entity.delete.must_not_contain_attachments
+ Typ přílohy stále obsahuje přílohy. Změňte jejich typ, abyste mohli tento typ přílohy odstranit.
+
+
+
+
+ entity.delete.must_not_contain_prices
+ Měna stále obsahuje údaje o ceně. Abyste mohli tento prvek odstranit, musíte změnit jejich měnu.
+
+
+
+
+ entity.delete.must_not_contain_users
+ Uživatelé stále používají tuto skupinu! Změňte jejich skupinu, abyste ji mohli smazat.
+
+
+
+
+ part.table.edit
+ Upravit
+
+
+
+
+ part.table.edit.title
+ Upravit díl
+
+
+
+
+ part_list.action.action.title
+ Zvolte akci
+
+
+
+
+ part_list.action.action.group.favorite
+ Oblíbený stav
+
+
+
+
+ part_list.action.action.favorite
+ Oblíbený
+
+
+
+
+ part_list.action.action.unfavorite
+ Neoblíbený
+
+
+
+
+ part_list.action.action.group.change_field
+ Změnit pole
+
+
+
+
+ part_list.action.action.change_category
+ Změnit kategorii
+
+
+
+
+ part_list.action.action.change_footprint
+ Změnit otisk
+
+
+
+
+ part_list.action.action.change_manufacturer
+ Změnit výrobce
+
+
+
+
+ part_list.action.action.change_unit
+ Změna jednotky dílu
+
+
+
+
+ part_list.action.action.delete
+ Smazat
+
+
+
+
+ part_list.action.submit
+ Odeslat
+
+
+
+
+ part_list.action.part_count
+ %count% dílů vybráno!
+
+
+
+
+ company.edit.quick.website
+ Otevřít webové stránky
+
+
+
+
+ company.edit.quick.email
+ Odeslat e-mail
+
+
+
+
+ company.edit.quick.phone
+ Telefonní hovor
+
+
+
+
+ company.edit.quick.fax
+ Odeslat fax
+
+
+
+
+ company.fax_number.placeholder
+ např. +420 123 456 789
+
+
+
+
+ part.edit.save_and_clone
+ Uložit a duplikovat
+
+
+
+
+ validator.file_ext_not_allowed
+ Přípona souboru není pro tento typ přílohy povolena.
+
+
+
+
+ tools.reel_calc.title
+ Kalkulačka SMD kotoučů
+
+
+
+
+ tools.reel_calc.inner_dia
+ Vnitřní průměr
+
+
+
+
+ tools.reel_calc.outer_dia
+ Vnější průměr
+
+
+
+
+ tools.reel_calc.tape_thick
+ Tloušťka pásky
+
+
+
+
+ tools.reel_calc.part_distance
+ Vzdálenost mezi díly
+
+
+
+
+ tools.reel_calc.update
+ Aktualizace
+
+
+
+
+ tools.reel_calc.parts_per_meter
+ Díly na metr
+
+
+
+
+ tools.reel_calc.result_length
+ Délka pásky
+
+
+
+
+ tools.reel_calc.result_amount
+ Přibližný počet dílů
+
+
+
+
+ tools.reel_calc.outer_greater_inner_error
+ Chyba: Vnější průměr musí být větší než vnitřní průměr!
+
+
+
+
+ tools.reel_calc.missing_values.error
+ Vyplňte všechny hodnoty!
+
+
+
+
+ tools.reel_calc.load_preset
+ Načíst předvolbu
+
+
+
+
+ tools.reel_calc.explanation
+ Tato kalkulačka vám umožní odhadnout, kolik dílů zbývá na kotouči SMD. Změřte zaznamenané rozměry na cívce (nebo použijte některou z přednastavených hodnot) a kliknutím na tlačítko "Aktualizovat" získáte výsledek.
+
+
+
+
+ perm.tools.reel_calculator
+ Kalkulačka SMD kotoučů
+
+
+
+
+ tree.tools.tools.reel_calculator
+ Kalkulačka SMD kotoučů
+
+
+
+
+ user.pw_change_needed.flash
+ Vaše heslo je třeba změnit! Nastavte prosím nové heslo.
+
+
+
+
+ tree.root_node.text
+ Kořenový uzel
+
+
+
+
+ part_list.action.select_null
+ Prázdný prvek
+
+
+
+
+ part_list.action.delete-title
+ Opravdu chcete tyto díly odstranit?
+
+
+
+
+ part_list.action.delete-message
+ Tyto díly a všechny související informace (např. přílohy, informace o ceně atd.) budou odstraněny. Toto nelze vrátit zpět!
+
+
+
+
+ part.table.actions.success
+ Akce byly úspěšně dokončeny.
+
+
+
+
+ attachment.edit.delete.confirm
+ Opravdu chcete tuto přílohu smazat?
+
+
+
+
+ filter.text_constraint.value.operator.EQ
+ Is
+
+
+
+
+ filter.text_constraint.value.operator.NEQ
+ Není
+
+
+
+
+ filter.text_constraint.value.operator.STARTS
+ Začíná na
+
+
+
+
+ filter.text_constraint.value.operator.CONTAINS
+ Obsahuje
+
+
+
+
+ filter.text_constraint.value.operator.ENDS
+ Končí
+
+
+
+
+ filter.text_constraint.value.operator.LIKE
+ LIKE vzor
+
+
+
+
+ filter.text_constraint.value.operator.REGEX
+ Regulární výraz
+
+
+
+
+ filter.number_constraint.value.operator.BETWEEN
+ Mezi
+
+
+
+
+ filter.number_constraint.AND
+ a
+
+
+
+
+ filter.entity_constraint.operator.EQ
+ Je (kromě podřízených)
+
+
+
+
+ filter.entity_constraint.operator.NEQ
+ Není (s výjimkou podřízených)
+
+
+
+
+ filter.entity_constraint.operator.INCLUDING_CHILDREN
+ Je (včetně podřízených)
+
+
+
+
+ filter.entity_constraint.operator.EXCLUDING_CHILDREN
+ Není (s výjimkou podřízených)
+
+
+
+
+ part.filter.dbId
+ Databáze ID
+
+
+
+
+ filter.tags_constraint.operator.ANY
+ Kterákoli ze značek
+
+
+
+
+ filter.tags_constraint.operator.ALL
+ Všechny značky
+
+
+
+
+ filter.tags_constraint.operator.NONE
+ Žádná ze značek
+
+
+
+
+ part.filter.lot_count
+ Počet inventářů
+
+
+
+
+ part.filter.attachments_count
+ Počet příloh
+
+
+
+
+ part.filter.orderdetails_count
+ Počet údajů k objednávce
+
+
+
+
+ part.filter.lotExpirationDate
+ Datum ukončení platnosti inventáře
+
+
+
+
+ part.filter.lotNeedsRefill
+ Jakýkoliv inventář potřebuje doplnit
+
+
+
+
+ part.filter.lotUnknwonAmount
+ Jakýkoliv inventář má neznámé množství
+
+
+
+
+ part.filter.attachmentName
+ Název přílohy
+
+
+
+
+ filter.choice_constraint.operator.ANY
+ Kterýkoli z
+
+
+
+
+ filter.choice_constraint.operator.NONE
+ Žádný z
+
+
+
+
+ part.filter.amount_sum
+ Celkové množství
+
+
+
+
+ filter.submit
+ Aktualizovat
+
+
+
+
+ filter.discard
+ Zrušit změny
+
+
+
+
+ filter.clear_filters
+ Vymazat všechny filtry
+
+
+
+
+ filter.title
+ Filtr
+
+
+
+
+ filter.parameter_value_constraint.operator.=
+ Typ. Hodnota =
+
+
+
+
+ filter.parameter_value_constraint.operator.!=
+ Typ. Hodnota !=
+
+
+
+
+ filter.parameter_value_constraint.operator.<
+ Typ. Hodnota <
+
+
+
+
+ filter.parameter_value_constraint.operator.>
+ Typ. Hodnota >
+
+
+
+
+ filter.parameter_value_constraint.operator.<=
+ Typ. Hodnota <=
+
+
+
+
+ filter.parameter_value_constraint.operator.>=
+ Typ. Hodnota >=
+
+
+
+
+ filter.parameter_value_constraint.operator.BETWEEN
+ Typ. Hodnota je mezi
+
+
+
+
+ filter.parameter_value_constraint.operator.IN_RANGE
+ V rozsahu hodnot
+
+
+
+
+ filter.parameter_value_constraint.operator.NOT_IN_RANGE
+ Není v rozsahu hodnot
+
+
+
+
+ filter.parameter_value_constraint.operator.GREATER_THAN_RANGE
+ Větší než rozsah hodnot
+
+
+
+
+ filter.parameter_value_constraint.operator.GREATER_EQUAL_RANGE
+ Větší rovná se než rozsah hodnot
+
+
+
+
+ filter.parameter_value_constraint.operator.LESS_THAN_RANGE
+ Méně než rozsah hodnot
+
+
+
+
+ filter.parameter_value_constraint.operator.LESS_EQUAL_RANGE
+ Méně rovné než rozsah hodnot
+
+
+
+
+ filter.parameter_value_constraint.operator.RANGE_IN_RANGE
+ Rozsah je zcela v rozsahu hodnot
+
+
+
+
+ filter.parameter_value_constraint.operator.RANGE_INTERSECT_RANGE
+ Rozsah protíná rozsah hodnot
+
+
+
+
+ filter.text_constraint.value
+ Žádná nastavená hodnota
+
+
+
+
+ filter.number_constraint.value1
+ Žádná nastavená hodnota
+
+
+
+
+ filter.number_constraint.value2
+ Maximální hodnota
+
+
+
+
+ filter.datetime_constraint.value1
+ Není nastaven žádný datum
+
+
+
+
+ filter.datetime_constraint.value2
+ Maximální datum
+
+
+
+
+ filter.constraint.add
+ Přidat filtr
+
+
+
+
+ part.filter.parameters_count
+ Počet parametrů
+
+
+
+
+ part.filter.lotDescription
+ Popis inventáře
+
+
+
+
+ parts_list.search.searching_for
+ Hledání dílů pomocí klíčového slova <b>%keyword%</b>
+
+
+
+
+ parts_list.search_options.caption
+ Povolené možnosti hledání
+
+
+
+
+ attachment.table.element_type
+ Přidružený typ prvku
+
+
+
+
+ log.level.debug
+ Ladění
+
+
+
+
+ log.level.info
+ Info
+
+
+
+
+ log.level.notice
+ Oznámení
+
+
+
+
+ log.level.warning
+ Varování
+
+
+
+
+ log.level.error
+ Chyba
+
+
+
+
+ log.level.critical
+ Kritické
+
+
+
+
+ log.level.alert
+ Upozornění
+
+
+
+
+ log.level.emergency
+ Nouzové
+
+
+
+
+ log.type.security
+ Událost související s bezpečností
+
+
+
+
+ log.type.instock_changed
+ [LEGACY] Instock changed
+
+
+
+
+ log.target_id
+ ID cílového prvku
+
+
+
+
+ entity.info.parts_count_recursive
+ Počet dílů s tímto prvkem nebo jeho souvisejícími prvky
+
+
+
+
+ tools.server_infos.title
+ Informace o serveru
+
+
+
+
+ permission.preset.read_only
+ Pouze pro čtení
+
+
+
+
+ permission.preset.read_only.desc
+ Povolit pouze operace čtení dat
+
+
+
+
+ permission.preset.all_inherit
+ Převzít vše
+
+
+
+
+ permission.preset.all_inherit.desc
+ Nastavení všech oprávnění na Převzít
+
+
+
+
+ permission.preset.all_forbid
+ Zakázat všechny
+
+
+
+
+ permission.preset.all_forbid.desc
+ Nastavit všechna oprávnění na hodnotu Zakázat
+
+
+
+
+ permission.preset.all_allow
+ Povolit všechny
+
+
+
+
+ permission.preset.all_allow.desc
+ Nastavit všechny oprávnění na možnost povolit
+
+
+
+
+ perm.server_infos
+ Informace o serveru
+
+
+
+
+ permission.preset.editor
+ Editor
+
+
+
+
+ permission.preset.editor.desc
+ Umožňuje měnit díly a datové struktury
+
+
+
+
+ permission.preset.admin
+ Admin
+
+
+
+
+ permission.preset.admin.desc
+ Povolení administrativních úkonů
+
+
+
+
+ permission.preset.button
+ Použít předvolbu
+
+
+
+
+ perm.attachments.show_private
+ Zobrazit soukromé přílohy
+
+
+
+
+ perm.attachments.list_attachments
+ Zobrazit seznam všech příloh
+
+
+
+
+ user.edit.permission_success
+ Předvolba oprávnění byla úspěšně použita. Zkontrolujte, zda nová oprávnění vyhovují vašim potřebám.
+
+
+
+
+ perm.group.data
+ Data
+
+
+
+
+ part_list.action.action.group.needs_review
+ Potřeba revize
+
+
+
+
+ part_list.action.action.set_needs_review
+ Nastavit stav "Potřebuje kontrolu"
+
+
+
+
+ part_list.action.action.unset_needs_review
+ Zrušit stav "Potřebuje kontrolu"
+
+
+
+
+ part.edit.ipn
+ Interní číslo dílu (IPN)
+
+
+
+
+ part.ipn.not_defined
+ Není definováno
+
+
+
+
+ part.table.ipn
+ IPN
+
+
+
+
+ currency.edit.update_rate
+ Získat směnný kurz
+
+
+
+
+ currency.edit.exchange_rate_update.unsupported_currency
+ Měna není podporována zdrojem směnných kurzů. Zkontrolujte konfiguraci zdroje směnných kurzů.
+
+
+
+
+ currency.edit.exchange_rate_update.generic_error
+ Nelze načíst směnný kurz. Zkontrolujte konfiguraci zdroje směnných kurzů.
+
+
+
+
+ currency.edit.exchange_rate_updated.success
+ Úspěšně načtený směnný kurz.
+
+
+
+
+ project.bom.quantity
+ Množství BOM.
+
+
+
+
+ project.bom.mountnames
+ Názvy sestav
+
+
+
+
+ project.bom.name
+ Název
+
+
+
+
+ project.bom.comment
+ Poznámky
+
+
+
+
+ project.bom.part
+ Díl
+
+
+
+
+ project.bom.add_entry
+ Přidat položku
+
+
+
+
+ part_list.action.group.projects
+ Projekty
+
+
+
+
+ part_list.action.projects.add_to_project
+ Přidat díl do projektu
+
+
+
+
+ project.bom.delete.confirm
+ Opravdu chcete tuto položku BOM odstranit?
+
+
+
+
+ project.add_parts_to_project
+ Přidání dílů do BOM projektu
+
+
+
+
+ part.info.add_part_to_project
+ Přidat tento díl do projektu
+
+
+
+
+ project_bom_entry.label
+ Položka BOM
+
+
+
+
+ project.edit.status
+ Stav projektu
+
+
+
+
+ project.status.draft
+ Návrh
+
+
+
+
+ project.status.planning
+ Plánování
+
+
+
+
+ project.status.in_production
+ Ve výrobě
+
+
+
+
+ project.status.finished
+ Dokončeno
+
+
+
+
+ project.status.archived
+ Archivováno
+
+
+
+
+ part.new_build_part.error.build_part_already_exists
+ Projekt již má stavební díl!
+
+
+
+
+ project.edit.associated_build_part
+ Přidružené sestavy dílu
+
+
+
+
+ project.edit.associated_build_part.add
+ Přidat díl sestavy
+
+
+
+
+ project.edit.associated_build.hint
+ Tento díl představuje sestavu tohoto projektu, která jsou někde uložena.
+
+
+
+
+ part.info.projectBuildPart.hint
+ Tento díl představuje sestavy následujícího projektu a je s ním spojena.
+
+
+
+
+ part.is_build_part
+ Je součástí projektu
+
+
+
+
+ project.info.title
+ Informace o projektu
+
+
+
+
+ project.info.bom_entries_count
+ Položky BOM
+
+
+
+
+ project.info.sub_projects_count
+ Podprojekty
+
+
+
+
+ project.info.bom_add_parts
+ Přidat položku BOM
+
+
+
+
+ project.info.info.label
+ Info
+
+
+
+
+ project.info.sub_projects.label
+ Podprojekty
+
+
+
+
+ project.bom.price
+ Cena
+
+
+
+
+ part.info.withdraw_modal.title.withdraw
+ Odebrání dílů z inventáře
+
+
+
+
+ part.info.withdraw_modal.title.add
+ Přidání dílů do inventáře
+
+
+
+
+ part.info.withdraw_modal.title.move
+ Přesun dílů z inventáře do jiného
+
+
+
+
+ part.info.withdraw_modal.amount
+ Množství
+
+
+
+
+ part.info.withdraw_modal.move_to
+ Přesun do
+
+
+
+
+ part.info.withdraw_modal.comment
+ Komentář
+
+
+
+
+ part.info.withdraw_modal.comment.hint
+ Zde můžete zadat komentář, ve kterém popíšete, proč tuto operaci provádíte (např. k čemu díly potřebujete). Tato informace se uloží do protokolu.
+
+
+
+
+ modal.close
+ Zavřít
+
+
+
+
+ modal.submit
+ Odeslat
+
+
+
+
+ part.withdraw.success
+ Úspěšně přidané/přesunuté/odebrané díly.
+
+
+
+
+ perm.parts_stock
+ Zásoba dílů
+
+
+
+
+ perm.parts_stock.withdraw
+ Vyskladnění dílů ze skladu
+
+
+
+
+ perm.parts_stock.add
+ Přidání dílů na sklad
+
+
+
+
+ perm.parts_stock.move
+ Přesun dílů mezi inventáři
+
+
+
+
+ user.permissions_schema_updated
+ Schéma oprávnění vašeho uživatele bylo aktualizováno na nejnovější verzi.
+
+
+
+
+ log.type.part_stock_changed
+ Změna skladové zásoby dílu
+
+
+
+
+ log.part_stock_changed.withdraw
+ Odebrání zásob
+
+
+
+
+ log.part_stock_changed.add
+ Přidání zásob
+
+
+
+
+ log.part_stock_changed.move
+ Přesun zásob
+
+
+
+
+ log.part_stock_changed.comment
+ Komentář
+
+
+
+
+ log.part_stock_changed.change
+ Změna
+
+
+
+
+ log.part_stock_changed.move_target
+ Přesun cíle
+
+
+
+
+ tools.builtin_footprints_viewer.title
+ Vestavěná galerie obrázků
+
+
+
+
+ tools.builtin_footprints_viewer.hint
+ V této galerii jsou uvedeny všechny dostupné vestavěné obrázky otisků. Pokud je chcete použít v příloze, zadejte název (nebo klíčové slovo) do pole cesta k příloze a vyberte obrázek z rozbalovacího seznamu.
+
+
+
+
+ tools.ic_logos.title
+ Loga IC
+
+
+
+
+ part_list.action.group.labels
+ Štítky
+
+
+
+
+ part_list.action.projects.generate_label
+ Generování štítků (pro díly)
+
+
+
+
+ part_list.action.projects.generate_label_lot
+ Generování štítků (pro inventáře dílů)
+
+
+
+
+ part_list.action.generate_label.empty
+ Prázdný štítek
+
+
+
+
+ project.info.builds.label
+ Sestavit
+
+
+
+
+ project.builds.build_not_possible
+ Sestavení není možné: Díly nejsou skladem
+
+
+
+
+ project.builds.following_bom_entries_miss_instock
+ Následující díly nejsou dostatečně skladem, aby bylo možné tento projekt alespoň jednou sestavit:
+
+
+
+
+ project.builds.stocked
+ k dispozici
+
+
+
+
+ project.builds.needed
+ potřebné
+
+
+
+
+ project.builds.build_possible
+ Sestavení možné
+
+
+
+
+ project.builds.number_of_builds_possible
+ Máte dostatek zásob na sestavení <b>%max_builds%</b> sestavení tohoto projektu.
+
+
+
+
+ project.builds.check_project_status
+ Aktuální stav projektu je <b>"%project_status%"</b>. Měli byste zkontrolovat, zda chcete projekt s tímto stavem skutečně sestavit!
+
+
+
+
+ project.builds.following_bom_entries_miss_instock_n
+ Nemáte na skladě dostatek dílů pro sestavení tohoto projektu %number_of_builds% times. Následující díly chybí na skladě:
+
+
+
+
+ project.build.flash.invalid_input
+ Nelze sestavit projekt. Zkontrolujte zadání!
+
+
+
+
+ project.build.required_qty
+ Požadované množství
+
+
+
+
+ project.build.btn_build
+ Sestavit
+
+
+
+
+ project.build.help
+ Zvolte, z jakých zásob (a v jakém množství) mají být odebrány komponenty potřebné pro sestavení. Zaškrtněte políčko u každé položky BOM, když jste komponenty odebrali, nebo pomocí horního zaškrtávacího políčka zaškrtněte všechna políčka najednou.
+
+
+
+
+ project.build.buildsPartLot.new_lot
+ Vytvořit nový inventář
+
+
+
+
+ project.build.add_builds_to_builds_part
+ Přidání sestavení do části sestavení projektu
+
+
+
+
+ project.build.builds_part_lot
+ Cílový inventář
+
+
+
+
+ project.builds.number_of_builds
+ Množství sestavy
+
+
+
+
+ project.builds.no_stocked_builds
+ Počet skladovaných sestav
+
+
+
+
+ user.change_avatar.label
+ Změna profilového obrázku
+
+
+
+
+ user_settings.change_avatar.label
+ Změna profilového obrázku
+
+
+
+
+ user_settings.remove_avatar.label
+ Odstranit profilový obrázek
+
+
+
+
+ part.edit.name.category_hint
+ Nápověda z kategorie
+
+
+
+
+ category.edit.partname_regex.placeholder
+ např. "/Kondenzátor \d+ nF/i"
+
+
+
+
+ category.edit.partname_regex.help
+ Regulární výraz kompatibilní s PCRE, kterému musí název dílu odpovídat.
+
+
+
+
+ entity.select.add_hint
+ Použijte -> pro vytvoření vnořených struktur, např. "Node 1->Node 1.1".
+
+
+
+
+ entity.select.group.new_not_added_to_DB
+ Nový (zatím nebyl přidán do DB)
+
+
+
+
+ part.edit.save_and_new
+ Uložit a přidat nový prázdný díl
+
+
+
+
+ homepage.first_steps.title
+ První kroky
+
+
+
+
+ homepage.first_steps.introduction
+ Vaše databáze je stále prázdná. Možná byste si měli přečíst <a href="%url%">dokumentaci</a> nebo začít vytvářet následující datové struktury:
+
+
+
+
+ homepage.first_steps.create_part
+ Nebo můžete přímo <a href="%url%">přidat nový díl</a>.
+
+
+
+
+ homepage.first_steps.hide_hint
+ Toto pole se skryje, jakmile vytvoříte první díl.
+
+
+
+
+ homepage.forum.text
+ Pro dotazy týkající se Part-DB použijte <a href="%href%" class="link-external" target="_blank">diskusní fórum</a>
+
+
+
+
+ log.element_edited.changed_fields.category
+ Kategorie
+
+
+
+
+ log.element_edited.changed_fields.footprint
+ Otisk
+
+
+
+
+ log.element_edited.changed_fields.manufacturer
+ Výrobce
+
+
+
+
+ log.element_edited.changed_fields.value_typical
+ typ. hodnota
+
+
+
+
+ log.element_edited.changed_fields.pw_reset_expires
+ Obnovení hesla
+
+
+
+
+ log.element_edited.changed_fields.comment
+ Poznámky
+
+
+
+
+ log.element_edited.changed_fields.supplierpartnr
+ Číslo dílu dodavatele
+
+
+
+
+ log.element_edited.changed_fields.supplier_product_url
+ Odkaz na nabídku
+
+
+
+
+ log.element_edited.changed_fields.price
+ Cena
+
+
+
+
+ log.element_edited.changed_fields.min_discount_quantity
+ Minimální výše slevy
+
+
+
+
+ log.element_edited.changed_fields.original_filename
+ Původní název souboru
+
+
+
+
+ log.element_edited.changed_fields.path
+ Cesta k souboru
+
+
+
+
+ log.element_edited.changed_fields.description
+ Popis
+
+
+
+
+ log.element_edited.changed_fields.manufacturing_status
+ Stav výroby
+
+
+
+
+ log.element_edited.changed_fields.options.barcode_type
+ Typ čárového kódu
+
+
+
+
+ log.element_edited.changed_fields.status
+ Stav
+
+
+
+
+ log.element_edited.changed_fields.quantity
+ Množství BOM
+
+
+
+
+ log.element_edited.changed_fields.mountnames
+ Názvy sestav
+
+
+
+
+ log.element_edited.changed_fields.name
+ Název
+
+
+
+
+ log.element_edited.changed_fields.part
+ Díl
+
+
+
+
+ log.element_edited.changed_fields.price_currency
+ Měna ceny
+
+
+
+
+ log.element_edited.changed_fields.partname_hint
+ Nápověda k názvu dílu
+
+
+
+
+ log.element_edited.changed_fields.partname_regex
+ Filtr názvu
+
+
+
+
+ log.element_edited.changed_fields.disable_footprints
+ Zakázat otisky
+
+
+
+
+ log.element_edited.changed_fields.disable_manufacturers
+ Zakázat výrobce
+
+
+
+
+ log.element_edited.changed_fields.disable_autodatasheets
+ Zakázat automatické odkazy na katalogové listy
+
+
+
+
+ log.element_edited.changed_fields.disable_properties
+ Zakázat vlastnosti
+
+
+
+
+ log.element_edited.changed_fields.default_description
+ Výchozí popis
+
+
+
+
+ log.element_edited.changed_fields.default_comment
+ Výchozí poznámky
+
+
+
+
+ log.element_edited.changed_fields.filetype_filter
+ Povolené přípony souborů
+
+
+
+
+ log.element_edited.changed_fields.not_selectable
+ Nevybráno
+
+
+
+
+ log.element_edited.changed_fields.parent
+ Nadřazený prvek
+
+
+
+
+ log.element_edited.changed_fields.shipping_costs
+ Náklady na dopravu
+
+
+
+
+ log.element_edited.changed_fields.default_currency
+ Výchozí měna
+
+
+
+
+ log.element_edited.changed_fields.address
+ Adresa
+
+
+
+
+ log.element_edited.changed_fields.phone_number
+ Telefonní číslo
+
+
+
+
+ log.element_edited.changed_fields.fax_number
+ Číslo faxu
+
+
+
+
+ log.element_edited.changed_fields.email_address
+ e-mail
+
+
+
+
+ log.element_edited.changed_fields.website
+ Webové stránky
+
+
+
+
+ log.element_edited.changed_fields.auto_product_url
+ Produkt URL
+
+
+
+
+ log.element_edited.changed_fields.is_full
+ Umístění plné
+
+
+
+
+ log.element_edited.changed_fields.limit_to_existing_parts
+ Omezení na stávající díly
+
+
+
+
+ log.element_edited.changed_fields.only_single_part
+ Pouze jeden díl
+
+
+
+
+ log.element_edited.changed_fields.storage_type
+ Typ úložiště
+
+
+
+
+ log.element_edited.changed_fields.footprint_3d
+ 3D model
+
+
+
+
+ log.element_edited.changed_fields.master_picture_attachment
+ Náhled
+
+
+
+
+ log.element_edited.changed_fields.exchange_rate
+ Směnný kurz
+
+
+
+
+ log.element_edited.changed_fields.iso_code
+ Směnný kurz
+
+
+
+
+ log.element_edited.changed_fields.unit
+ Symbol jednotky
+
+
+
+
+ log.element_edited.changed_fields.is_integer
+ Je celé číslo
+
+
+
+
+ log.element_edited.changed_fields.use_si_prefix
+ Použít předponu SI
+
+
+
+
+ log.element_edited.changed_fields.options.width
+ Šířka
+
+
+
+
+ log.element_edited.changed_fields.options.height
+ Výška
+
+
+
+
+ log.element_edited.changed_fields.options.supported_element
+ Typ cíle
+
+
+
+
+ log.element_edited.changed_fields.options.additional_css
+ Další styly (CSS)
+
+
+
+
+ log.element_edited.changed_fields.options.lines
+ Obsah
+
+
+
+
+ log.element_edited.changed_fields.permissions.data
+ Oprávnění
+
+
+
+
+ log.element_edited.changed_fields.disabled
+ Zakázano
+
+
+
+
+ log.element_edited.changed_fields.theme
+ Téma
+
+
+
+
+ log.element_edited.changed_fields.timezone
+ Časové pásmo
+
+
+
+
+ log.element_edited.changed_fields.language
+ Jazyk
+
+
+
+
+ log.element_edited.changed_fields.email
+ e-mail
+
+
+
+
+ log.element_edited.changed_fields.department
+ Oddělení
+
+
+
+
+ log.element_edited.changed_fields.last_name
+ Příjmení
+
+
+
+
+ log.element_edited.changed_fields.first_name
+ Jméno
+
+
+
+
+ log.element_edited.changed_fields.group
+ Skupina
+
+
+
+
+ log.element_edited.changed_fields.currency
+ Preferovaná měna
+
+
+
+
+ log.element_edited.changed_fields.enforce2FA
+ Vynucení 2FA
+
+
+
+
+ log.element_edited.changed_fields.symbol
+ Symbol
+
+
+
+
+ log.element_edited.changed_fields.value_min
+ Min. hodnota
+
+
+
+
+ log.element_edited.changed_fields.value_max
+ Max. hodnota
+
+
+
+
+ log.element_edited.changed_fields.value_text
+ Hodnota textu
+
+
+
+
+ log.element_edited.changed_fields.show_in_table
+ Zobrazit v tabulce
+
+
+
+
+ log.element_edited.changed_fields.attachment_type
+ Zobrazit v tabulce
+
+
+
+
+ log.element_edited.changed_fields.needs_review
+ Potřeba revize
+
+
+
+
+ log.element_edited.changed_fields.tags
+ Štítky
+
+
+
+
+ log.element_edited.changed_fields.mass
+ Hmotnost
+
+
+
+
+ log.element_edited.changed_fields.ipn
+ IPN
+
+
+
+
+ log.element_edited.changed_fields.favorite
+ Oblíbené
+
+
+
+
+ log.element_edited.changed_fields.minamount
+ Minimální zásoba
+
+
+
+
+ log.element_edited.changed_fields.manufacturer_product_url
+ Odkaz na stránku produktu
+
+
+
+
+ log.element_edited.changed_fields.manufacturer_product_number
+ MPN
+
+
+
+
+ log.element_edited.changed_fields.partUnit
+ Měrná jednotka
+
+
+
+
+ log.element_edited.changed_fields.expiration_date
+ Datum vypršení platnosti
+
+
+
+
+ log.element_edited.changed_fields.amount
+ Množství
+
+
+
+
+ log.element_edited.changed_fields.storage_location
+ Umístění
+
+
+
+
+ attachment.max_file_size
+ Maximální velikost souboru
+
+
+
+
+ user.saml_user
+ SSO / SAML uživatel
+
+
+
+
+ user.saml_user.pw_change_hint
+ Uživatel používá jednotné přihlášení (SSO). Heslo a nastavení 2FA zde nelze změnit. Nakonfigurujte je raději u svého centrálního zdroje SSO!
+
+
+
+
+ login.sso_saml_login
+ Jednotné přihlášení (SSO)
+
+
+
+
+ login.local_login_hint
+ Níže uvedený formulář je určen pouze pro přihlášení pomocí místního uživatele. Pokud se chcete přihlásit prostřednictvím jednotného přihlášení, stiskněte tlačítko výše.
+
+
+
+
+ part_list.action.action.export
+ Export dílů
+
+
+
+
+ part_list.action.export_json
+ Export jako JSON
+
+
+
+
+ part_list.action.export_csv
+ Export jako CSV
+
+
+
+
+ part_list.action.export_yaml
+ Export jako YAML
+
+
+
+
+ part_list.action.export_xml
+ Export jako XML
+
+
+
+
+ parts.import.title
+ Import dílů
+
+
+
+
+ parts.import.errors.title
+ Porušení při dovozu
+
+
+
+
+ parts.import.flash.error
+ Chyby při importu. Příčinou jsou pravděpodobně některá neplatná data.
+
+
+
+
+ parts.import.format.auto
+ Automaticky (na základě přípony souboru)
+
+
+
+
+ parts.import.flash.error.unknown_format
+ Z daného souboru se nepodařilo určit formát!
+
+
+
+
+ parts.import.flash.error.invalid_file
+ Soubor je neplatný. Zkontrolujte, zda jste vybrali správný formát!
+
+
+
+
+ parts.import.part_category.label
+ Přepsání kategorie
+
+
+
+
+ parts.import.part_category.help
+ Pokud zde vyberete hodnotu, budou do této kategorie přiřazeny všechny importované díly. Bez ohledu na to, co bylo nastaveno v datech.
+
+
+
+
+ import.create_unknown_datastructures
+ Vytvořit neznámé datové struktury
+
+
+
+
+ import.create_unknown_datastructures.help
+ Pokud je tato možnost vybrána, budou automaticky vytvořeny datové struktury (jako jsou kategorie, otisky atd.), které v databázi ještě neexistují. Není-li tato možnost vybrána, budou použity pouze existující datové struktury, a pokud nebude nalezena žádná odpovídající datová struktura, nebude dílu přiřazeno nic.
+
+
+
+
+ import.path_delimiter
+ Oddělovač cesty
+
+
+
+
+ import.path_delimiter.help
+ Oddělovač používaný k označení různých úrovní v datových strukturách, jako je kategorie, otisk atd.
+
+
+
+
+ parts.import.help_documentation
+ Další informace o formátu souboru najdete v <a href="%link%">dokumentaci</a>.
+
+
+
+
+ parts.import.help
+ Pomocí tohoto nástroje můžete importovat díly z existujících souborů. Díly budou zapsány přímo do databáze, proto před nahráním souboru sem zkontrolujte, zda je jeho obsah správný.
+
+
+
+
+ parts.import.flash.success
+ Import dílu úspěšný!
+
+
+
+
+ parts.import.errors.imported_entities
+ Dovážené díly
+
+
+
+
+ perm.import
+ Import dat
+
+
+
+
+ parts.import.part_needs_review.label
+ Označit všechny importované díly jako "Potřeba zkontrolovat".
+
+
+
+
+ parts.import.part_needs_review.help
+ Pokud je tato možnost vybrána, budou všechny díly označeny jako "Potřeba revize" bez ohledu na to, co bylo nastaveno v údajích.
+
+
+
+
+ project.bom_import.flash.success
+ Import %count% položek BOM proběhl úspěšně.
+
+
+
+
+ project.bom_import.type
+ Typ
+
+
+
+
+ project.bom_import.type.kicad_pcbnew
+ KiCAD Pcbnew BOM (CSV soubor)
+
+
+
+
+ project.bom_import.clear_existing_bom
+ Vymazání stávajících položek BOM před importem
+
+
+
+
+ project.bom_import.clear_existing_bom.help
+ Výběrem této možnosti odstraníte všechny existující položky BOM v projektu a přepíšete je importovaným souborem BOM!
+
+
+
+
+ project.bom_import.flash.invalid_file
+ Soubor se nepodařilo importovat. Zkontrolujte, zda jste vybrali správný typ souboru. Chybové hlášení: Zprávy: %zprávy%
+
+
+
+
+ project.bom_import.flash.invalid_entries
+ Chyba ověření! Zkontrolujte prosím svá data!
+
+
+
+
+ project.import_bom
+ Import BOM do projektu
+
+
+
+
+ project.edit.bom.import_bom
+ Import BOM
+
+
+
+
+ measurement_unit.new
+ Nová měrná jednotka
+
+
+
+
+ measurement_unit.edit
+ Upravit měrnou jednotku
+
+
+
+
+ user.aboutMe.label
+ O mně
+
+
+
+
+ storelocation.owner.label
+ Majitel
+
+
+
+
+ storelocation.part_owner_must_match.label
+ Vlastník se musí shodovat s vlastníkem umístění
+
+
+
+
+ part_lot.owner
+ Majitel
+
+
+
+
+ part_lot.owner.help
+ Pouze vlastník může z tohoto skladu odebírat nebo přidávat díly.
+
+
+
+
+ log.element_edited.changed_fields.owner
+ Majitel
+
+
+
+
+ log.element_edited.changed_fields.instock_unknown
+ Množství neznámé
+
+
+
+
+ log.element_edited.changed_fields.needs_refill
+ Potřebné doplnění
+
+
+
+
+ part.withdraw.access_denied
+ Není povoleno provést požadovanou akci. Zkontrolujte prosím svá oprávnění a vlastníka souvisejících prvků.
+
+
+
+
+ part.info.amount.less_than_desired
+ Méně než je požadováno
+
+
+
+
+ log.cli_user
+ Uživatel CLI
+
+
+
+
+ log.element_edited.changed_fields.part_owner_must_match
+ Vlastník dílu se musí shodovat s vlastníkem umístění
+
+
+
+
+ part.filter.lessThanDesired
+ Méně než požadované množství (celkové množství < min. množství)
+
+
+
+
+ part.filter.lotOwner
+ Vlastník
+
+
+
+
+ user.show_email_on_profile.label
+ Zobrazit e-mail na veřejné stránce profilu
+
+
+
+
+ log.details.title
+ Podrobnosti záznamu
+
+
+
+
+ log.user_login.login_from_ip
+ Přihlášení z IP adresy
+
+
+
+
+ log.user_login.ip_anonymize_hint
+ Pokud poslední číslice IP adresy chybí, je povolen režim GPDR, ve kterém jsou IP adresy anynomizovány.
+
+
+
+
+ log.user_not_allowed.unauthorized_access_attempt_to
+ Neoprávněný pokus o přístup na stránku
+
+
+
+
+ log.user_not_allowed.hint
+ Žádost byla zablokována. Neměla by být vyžadována žádná akce.
+
+
+
+
+ log.no_comment
+ Bez komentáře
+
+
+
+
+ log.element_changed.field
+ Pole
+
+
+
+
+ log.element_changed.data_before
+ Údaje před změnou
+
+
+
+
+ error_table.error
+ Během vašeho požadavku došlo k chybě.
+
+
+
+
+ part.table.invalid_regex
+ Nesprávný regulární výraz (regex)
+
+
+
+
+ log.element_changed.data_after
+ Údaje po změně
+
+
+
+
+ log.element_changed.diff
+ Rozdíl
+
+
+
+
+ log.undo.undo.short
+ Zrušit
+
+
+
+
+ log.undo.revert.short
+ Návrat k tomuto časovému razítku
+
+
+
+
+ log.view_version
+ Zobrazit verzi
+
+
+
+
+ log.undo.undelete.short
+ Odstranit
+
+
+
+
+ log.element_edited.changed_fields.id
+ ID
+
+
+
+
+ log.element_edited.changed_fields.id_owner
+ Majitel
+
+
+
+
+ log.element_edited.changed_fields.parent_id
+ Nadřazený
+
+
+
+
+ log.details.delete_entry
+ Odstranit záznam protokolu
+
+
+
+
+ log.delete.message.title
+ Opravdu chcete odstranit záznam protokolu?
+
+
+
+
+ log.delete.message
+ Pokud se jedná o položku historie prvků, dojde k přerušení historie prvků! To může vést k neočekávaným výsledkům při použití funkce cestování v čase.
+
+
+
+
+ log.collection_deleted.on_collection
+ o sbírce
+
+
+
+
+ log.element_edited.changed_fields.attachments
+ Přílohy
+
+
+
+
+ tfa_u2f.add_key.registration_error
+ Při registraci bezpečnostního klíče došlo k chybě. Zkuste to znovu nebo použijte jiný bezpečnostní klíč!
+
+
+
+
+ log.target_type.none
+ Žádné
+
+
+
+
+ ui.darkmode.light
+ Světlý
+
+
+
+
+ ui.darkmode.dark
+ Tmavý
+
+
+
+
+ ui.darkmode.auto
+ Automaticky (podle nastavení systému)
+
+
+
+
+ label_generator.no_lines_given
+ Není uveden žádný textový obsah! Popisky zůstanou prázdné.
+
+
+
+
+ user.password_strength.very_weak
+ Velmi slabé
+
+
+
+
+ user.password_strength.weak
+ Slabé
+
+
+
+
+ user.password_strength.medium
+ Střední
+
+
+
+
+ user.password_strength.strong
+ Silné
+
+
+
+
+ user.password_strength.very_strong
+ Velmi silné
+
+
+
+
+ perm.users.impersonate
+ Vydávat se za jiné uživatele
+
+
+
+
+ user.impersonated_by.label
+ Vydává se za
+
+
+
+
+ user.stop_impersonation
+ Zastavit vydávání se za někoho jiného
+
+
+
+
+ user.impersonate.btn
+ Vydávat se za
+
+
+
+
+ user.impersonate.confirm.title
+ Opravdu se chcete vydávat za tohoto uživatele?
+
+
+
+
+ user.impersonate.confirm.message
+ Tato skutečnost bude zaznamenána. Měli byste to dělat pouze z dobrého důvodu.
+
+Vezměte prosím na vědomí, že se nemůžete vydávat za uživatele se zakázaným přístupem. Pokud se o to pokusíte, zobrazí se zpráva "Přístup odepřen".
+
+
+
+
+ log.type.security.user_impersonated
+ Vydávaný uživatel
+
+
+
+
+ info_providers.providers_list.title
+ Poskytovatelé informací
+
+
+
+
+ info_providers.providers_list.active
+ Aktivní
+
+
+
+
+ info_providers.providers_list.disabled
+ Zakázané
+
+
+
+
+ info_providers.capabilities.basic
+ Základní
+
+
+
+
+ info_providers.capabilities.footprint
+ Otisk
+
+
+
+
+ info_providers.capabilities.picture
+ Obrázek
+
+
+
+
+ info_providers.capabilities.datasheet
+ Datové listy
+
+
+
+
+ info_providers.capabilities.price
+ Ceny
+
+
+
+
+ part.info_provider_reference.badge
+ Zdroj informací použitý k vytvoření tohoto dílu.
+
+
+
+
+ part.info_provider_reference
+ Vytvořeno zdrojem informací
+
+
+
+
+ oauth_client.connect.btn
+ Připojení OAuth
+
+
+
+
+ info_providers.table.provider.label
+ Poskytovatel
+
+
+
+
+ info_providers.search.keyword
+ Klíčové slovo
+
+
+
+
+ info_providers.search.submit
+ Hledat
+
+
+
+
+ info_providers.search.providers.help
+ Vyberte zdroje, ve kterých se má vyhledávat.
+
+
+
+
+ info_providers.search.providers
+ Zdroje
+
+
+
+
+ info_providers.search.info_providers_list
+ Zobrazit všechny dostupné zdroje informací
+
+
+
+
+ info_providers.search.title
+ Vytvořit díly ze zdroje informací
+
+
+
+
+ oauth_client.flash.connection_successful
+ Úspěšné připojení k aplikaci OAuth!
+
+
+
+
+ perm.part.info_providers
+ Poskytovatelé informací
+
+
+
+
+ perm.part.info_providers.create_parts
+ Vytvořit díly ze zdroje informací
+
+
+
+
+ entity.edit.alternative_names.label
+ Alternativní názvy
+
+
+
+
+ entity.edit.alternative_names.help
+ Zde uvedené alternativní názvy se používají k vyhledání tohoto prvku na základě výsledků poskytovatelů informací.
+
+
+
+
+ info_providers.form.help_prefix
+ Zdroj
+
+
+
+
+ update_manager.new_version_available.title
+ K dispozici je nová verze
+
+
+
+
+ update_manager.new_version_available.text
+ K dispozici je nová verze Part-DB. Podívejte se na ni zde
+
+
+
+
+ update_manager.new_version_available.only_administrators_can_see
+ Tuto zprávu mohou vidět pouze správci.
+
+
+
+
+ perm.system.show_available_updates
+ Zobrazit dostupné aktualizace Part-DB
+
+
+
+
+ user.settings.api_tokens
+ API tokeny
+
+
+
+
+ user.settings.api_tokens.description
+ Pomocí tokenu API mohou jiné aplikace přistupovat k Part-DB s vašimi uživatelskými právy a provádět různé akce pomocí rozhraní Part-DB REST API. Pokud zde token API odstraníte, aplikace, která token používá, již nebude moci vaším jménem přistupovat k Part-DB.
+
+
+
+
+ api_tokens.name
+ Název
+
+
+
+
+ api_tokens.access_level
+ Úroveň přístupu
+
+
+
+
+ api_tokens.expiration_date
+ Datum vypršení platnosti
+
+
+
+
+ api_tokens.added_date
+ Přidáno v
+
+
+
+
+ api_tokens.last_time_used
+ Naposledy použité
+
+
+
+
+ datetime.never
+ Nikdy
+
+
+
+
+ api_token.valid
+ Platný
+
+
+
+
+ api_token.expired
+ Vypršela platnost
+
+
+
+
+ user.settings.show_api_documentation
+ Zobrazit dokumentaci API
+
+
+
+
+ api_token.create_new
+ Vytvořit nový token API
+
+
+
+
+ api_token.level.read_only
+ Pouze pro čtení
+
+
+
+
+ api_token.level.edit
+ Upravit
+
+
+
+
+ api_token.level.admin
+ Admin
+
+
+
+
+ api_token.level.full
+ Úplný
+
+
+
+
+ api_tokens.access_level.help
+ Můžete omezit, k čemu má token API přístup. Přístup je vždy omezen oprávněním uživatele.
+
+
+
+
+ api_tokens.expiration_date.help
+ Po tomto datu již není token použitelný. Pokud token nemá nikdy vypršet, ponechte prázdné pole.
+
+
+
+
+ api_tokens.your_token_is
+ Token API je
+
+
+
+
+ api_tokens.please_save_it
+ Prosím, uložte si ji. Nebudete ji moci znovu vidět!
+
+
+
+
+ api_tokens.create_new.back_to_user_settings
+ Zpět na uživatelská nastavení
+
+
+
+
+ project.build.dont_check_quantity
+ Nekontrolovat množství
+
+
+
+
+ project.build.dont_check_quantity.help
+ Pokud je tato možnost vybrána, použijí se zadaná stažená množství bez ohledu na to, zda je k sestavení projektu skutečně zapotřebí více nebo méně dílů.
+
+
+
+
+ part_list.action.invert_selection
+ Inverzní výběr
+
+
+
+
+ perm.api
+ API
+
+
+
+
+ perm.api.access_api
+ Přístup k API
+
+
+
+
+ perm.api.manage_tokens
+ Správa tokenů API
+
+
+
+
+ user.settings.api_tokens.delete.title
+ Opravdu chcete tento token API odstranit?
+
+
+
+
+ user.settings.api_tokens.delete
+ Smazat
+
+
+
+
+ user.settings.api_tokens.delete.message
+ Aplikace, která používá tento token API, již nebude mít přístup k Part-DB. Tuto akci nelze vzít zpět!
+
+
+
+
+ api_tokens.deleted
+ Token API byl úspěšně smazán!
+
+
+
+
+ user.settings.api_tokens.no_api_tokens_yet
+ Zatím nejsou nakonfigurovány žádné tokeny API.
+
+
+
+
+ api_token.ends_with
+ Končí
+
+
+
+
+ entity.select.creating_new_entities_not_allowed
+ Není dovoleno vytvářet nové entity tohoto typu! Vyberte si prosím již existující subjekt.
+
+
+
+
+ scan_dialog.mode
+ Typ čárového kódu
+
+
+
+
+ scan_dialog.mode.auto
+ Automatická detekce
+
+
+
+
+ scan_dialog.mode.ipn
+ Čárový kód IPN
+
+
+
+
+ scan_dialog.mode.internal
+ Čárový kód Part-DB
+
+
+
+
+ part_association.label
+ Spojení dílu
+
+
+
+
+ part.edit.tab.associations
+ Související díly
+
+
+
+
+ part_association.edit.other_part
+ Související díl
+
+
+
+
+ part_association.edit.type
+ Typ vztahu
+
+
+
+
+ part_association.edit.comment
+ Poznámky
+
+
+
+
+ part_association.edit.type.help
+ Zde můžete vybrat, jak vybraný díl souvisí s tímto dílem.
+
+
+
+
+ part_association.table.from_this_part
+ Přidružení tohoto dílu k ostatním
+
+
+
+
+ part_association.table.from
+ Z
+
+
+
+
+ part_association.table.type
+ Vztah
+
+
+
+
+ part_association.table.to
+ Do
+
+
+
+
+ part_association.type.compatible
+ Je kompatibilní s
+
+
+
+
+ part_association.table.to_this_part
+ Přidružení k tomuto dílu od ostatních
+
+
+
+
+ part_association.type.other
+ Ostatní (vlastní hodnota)
+
+
+
+
+ part_association.type.supersedes
+ Nahrazuje
+
+
+
+
+ part_association.edit.other_type
+ Vlastní typ
+
+
+
+
+ part_association.edit.delete.confirm
+ Opravdu chcete toto přidružení smazat? To nelze vrátit zpět.
+
+
+
+
+ part_lot.edit.advanced
+ Rozbalit pokročilé možnosti
+
+
+
+
+ part_lot.edit.vendor_barcode
+ Čárový kód dodavatele
+
+
+
+
+ part_lot.edit.vendor_barcode.help
+ Pokud již tento inventář má čárový kód (např. vložený prodejcem), můžete zde zadat jeho obsah, abyste jej mohli snadno naskenovat.
+
+
+
+
+ scan_dialog.mode.vendor
+ Čárový kód prodejce (nakonfigurovaný v inventáři)
+
+
+
+
+ project.bom.instockAmount
+ Množství zásob
+
+
+
+
+ collection_type.new_element.tooltip
+ Tento prvek byl nově vytvořen a dosud není uložen v databázi.
+
+
+
+
+ part.merge.title
+ Sloučit díl
+
+
+
+
+ part.merge.title.into
+ na
+
+
+
+
+ part.merge.confirm.title
+ Opravdu chcete sloučit <b>%other%</b> do <b>%target%</b>?
+
+
+
+
+ part.merge.confirm.message
+ <b>%other%</b> bude odstraněn a díl bude uložen se zobrazenými informacemi.
+
+
+
+
+ part.info.merge_modal.title
+ Sloučení dílů
+
+
+
+
+ part.info.merge_modal.other_part
+ Jiné díly
+
+
+
+
+ part.info.merge_modal.other_into_this
+ Sloučení jiný díl do tohoto (smazání jiného dílu, ponechání tohoto)
+
+
+
+
+ part.info.merge_modal.this_into_other
+ Sloučit tento díl do jiného (tento díl smazat, jiný ponechat)
+
+
+
+
+ part.info.merge_btn
+ Sloučit díl
+
+
+
+
+ part.update_part_from_info_provider.btn
+ Aktualizovat díl ze zdroje informací
+
+
+
+
+ info_providers.update_part.title
+ Aktualizace stávajícího dílu ze zdroje informací
+
+
+
+
+ part.merge.flash.please_review
+ Data zatím nebyla uložena. Zkontrolujte změny a kliknutím na tlačítko uložit nová data zachovejte.
+
+
+
+
+ user.edit.flash.permissions_fixed
+ Chyběla oprávnění vyžadovaná jinými oprávněními. To bylo opraveno. Zkontrolujte prosím, zda jsou oprávnění v souladu s vaším záměrem.
+
+
+
+
+ permission.legend.dependency_note
+ Vezměte prosím na vědomí, že některé operace povolení jsou na sobě závislé. Pokud se setkáte s varováním, že chybějící oprávnění byla opravena a oprávnění bylo znovu nastaveno na povolit, musíte nastavit i závislou operaci na zakázat. Závislé operace lze obvykle nalézt napravo od operace.
+
+
+
+
+ log.part_stock_changed.timestamp
+ Časové razítko
+
+
+
+
+ part.info.withdraw_modal.timestamp
+ Časové razítko akce
+
+
+
+
+ part.info.withdraw_modal.timestamp.hint
+ Toto pole umožňuje zadat skutečné datum, kdy byla skladová operace skutečně provedena, a ne pouze kdy byla zaznamenána. Tato hodnota je uložena v extra poli záznamu protokolu.
+
+
+
+
+ part.info.withdraw_modal.delete_lot_if_empty
+ Vymazat tento inventář, až se vyprázdní
+
+
+
+
+ info_providers.search.error.client_exception
+ Při komunikaci se zdrojem informací došlo k chybě. Zkontrolujte konfiguraci tohoto zdroje a pokud možno obnovte tokeny OAuth.
+
+
+
+
+ eda_info.reference_prefix.placeholder
+ např. R
+
+
+
+
+ eda_info.reference_prefix
+ Referenční předpona
+
+
+
+
+ eda_info.kicad_section.title
+ KiCad specifické nastavení
+
+
+
+
+ eda_info.value
+ Hodnota
+
+
+
+
+ eda_info.value.placeholder
+ např. 100n
+
+
+
+
+ eda_info.exclude_from_bom
+ Vyloučit díl z BOM
+
+
+
+
+ eda_info.exclude_from_board
+ Vyloučit díl z desky plošných spojů
+
+
+
+
+ eda_info.exclude_from_sim
+ Vyloučit díl ze simulace
+
+
+
+
+ eda_info.kicad_symbol
+ Symbol schématu KiCad
+
+
+
+
+ eda_info.kicad_symbol.placeholder
+ např. Transistor_BJT:BC547
+
+
+
+
+ eda_info.kicad_footprint
+ KiCad otisk
+
+
+
+
+ eda_info.kicad_footprint.placeholder
+ např. Package_TO_SOT_THT:TO-92
+
+
+
+
+ part.edit.tab.eda
+ Informace EDA
+
+
+
+
+ api.api_endpoints.title
+ Koncové body API
+
+
+
+
+ api.api_endpoints.partdb
+ Part-DB API
+
+
+
+
+ api.api_endpoints.kicad_root_url
+ KiCad API root URL
+
+
+
+
+ eda_info.visibility
+ Viditelné
+
+
+
+
+ eda_info.visibility.help
+ Ve výchozím nastavení je viditelnost pro software EDA určena automaticky. Pomocí tohoto zaškrtávacího políčka můžete vynutit, aby byl díl viditelný nebo neviditelný.
+
+
+
+
+ part.withdraw.zero_amount
+ Pokusili jste se vybrat/přidat nulové množství! Nebyla provedena žádná akce.
+
+
+
+
+ login.flash.access_denied_please_login
+ Přístup odepřen! Pro pokračování se prosím přihlaste.
+
+
+
+
diff --git a/translations/messages.da.xlf b/translations/messages.da.xlf
new file mode 100644
index 00000000..bc6f7db5
--- /dev/null
+++ b/translations/messages.da.xlf
@@ -0,0 +1,12200 @@
+
+
+
+
+
+ Part-DB1\templates\AdminPages\AttachmentTypeAdmin.html.twig:4
+ Part-DB1\templates\AdminPages\AttachmentTypeAdmin.html.twig:4
+ templates\AdminPages\AttachmentTypeAdmin.html.twig:4
+
+
+ attachment_type.caption
+ Bilags datatyper
+
+
+
+
+ Part-DB1\templates\AdminPages\AttachmentTypeAdmin.html.twig:12
+ new
+
+
+ attachment_type.edit
+ Ret bilags filtype
+
+
+
+
+ Part-DB1\templates\AdminPages\AttachmentTypeAdmin.html.twig:16
+ new
+
+
+ attachment_type.new
+ Ny filtype
+
+
+
+
+ Part-DB1\templates\AdminPages\CategoryAdmin.html.twig:4
+ Part-DB1\templates\_sidebar.html.twig:22
+ Part-DB1\templates\_sidebar.html.twig:7
+ Part-DB1\templates\AdminPages\CategoryAdmin.html.twig:4
+ Part-DB1\templates\_sidebar.html.twig:22
+ Part-DB1\templates\_sidebar.html.twig:7
+ templates\AdminPages\CategoryAdmin.html.twig:4
+ templates\base.html.twig:163
+ templates\base.html.twig:170
+ templates\base.html.twig:197
+ templates\base.html.twig:225
+
+
+ category.labelp
+ Kategorier
+
+
+
+
+ Part-DB1\templates\AdminPages\CategoryAdmin.html.twig:8
+ Part-DB1\templates\AdminPages\StorelocationAdmin.html.twig:19
+ Part-DB1\templates\AdminPages\CategoryAdmin.html.twig:8
+ Part-DB1\templates\AdminPages\StorelocationAdmin.html.twig:11
+ templates\AdminPages\CategoryAdmin.html.twig:8
+
+
+ admin.options
+ Optioner
+
+
+
+
+ Part-DB1\templates\AdminPages\CategoryAdmin.html.twig:9
+ Part-DB1\templates\AdminPages\CompanyAdminBase.html.twig:15
+ Part-DB1\templates\AdminPages\CategoryAdmin.html.twig:9
+ Part-DB1\templates\AdminPages\CompanyAdminBase.html.twig:15
+ templates\AdminPages\CategoryAdmin.html.twig:9
+
+
+ admin.advanced
+ Advanceret
+
+
+
+
+ Part-DB1\templates\AdminPages\CategoryAdmin.html.twig:13
+ new
+
+
+ category.edit
+ Ret kategori
+
+
+
+
+ Part-DB1\templates\AdminPages\CategoryAdmin.html.twig:17
+ new
+
+
+ category.new
+ Ny kategori
+
+
+
+
+ Part-DB1\templates\AdminPages\CurrencyAdmin.html.twig:4
+ Part-DB1\templates\AdminPages\CurrencyAdmin.html.twig:4
+
+
+ currency.caption
+ Valuta
+
+
+
+
+ Part-DB1\templates\AdminPages\CurrencyAdmin.html.twig:12
+ Part-DB1\templates\AdminPages\CurrencyAdmin.html.twig:12
+
+
+ currency.iso_code.caption
+ ISO kode
+
+
+
+
+ Part-DB1\templates\AdminPages\CurrencyAdmin.html.twig:15
+ Part-DB1\templates\AdminPages\CurrencyAdmin.html.twig:15
+
+
+ currency.symbol.caption
+ Valutaenhed
+
+
+
+
+ Part-DB1\templates\AdminPages\CurrencyAdmin.html.twig:29
+ new
+
+
+ currency.edit
+ Ret valuta
+
+
+
+
+ Part-DB1\templates\AdminPages\CurrencyAdmin.html.twig:33
+ new
+
+
+ currency.new
+ Ny valuta
+
+
+
+
+ Part-DB1\templates\AdminPages\DeviceAdmin.html.twig:4
+ Part-DB1\templates\AdminPages\DeviceAdmin.html.twig:4
+ templates\AdminPages\DeviceAdmin.html.twig:4
+
+
+ project.caption
+ Projekt
+
+
+
+
+ Part-DB1\templates\AdminPages\DeviceAdmin.html.twig:8
+ new
+
+
+ project.edit
+ Ret projekt
+
+
+
+
+ Part-DB1\templates\AdminPages\DeviceAdmin.html.twig:12
+ new
+
+
+ project.new
+ Nyt projekt
+
+
+
+
+ Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:19
+ Part-DB1\templates\_navbar_search.html.twig:67
+ Part-DB1\templates\_sidebar.html.twig:27
+ Part-DB1\templates\_sidebar.html.twig:43
+ Part-DB1\templates\_sidebar.html.twig:63
+ Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:19
+ Part-DB1\templates\_navbar_search.html.twig:61
+ Part-DB1\templates\_sidebar.html.twig:27
+ Part-DB1\templates\_sidebar.html.twig:43
+ Part-DB1\templates\_sidebar.html.twig:63
+ templates\AdminPages\EntityAdminBase.html.twig:9
+ templates\base.html.twig:80
+ templates\base.html.twig:179
+ templates\base.html.twig:206
+ templates\base.html.twig:237
+
+
+ search.placeholder
+ Søg
+
+
+
+
+ Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:23
+ Part-DB1\templates\_sidebar.html.twig:3
+ Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:23
+ Part-DB1\templates\_sidebar.html.twig:3
+ templates\AdminPages\EntityAdminBase.html.twig:13
+ templates\base.html.twig:166
+ templates\base.html.twig:193
+ templates\base.html.twig:221
+
+
+ expandAll
+ Udfold alle
+
+
+
+
+ Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:27
+ Part-DB1\templates\_sidebar.html.twig:4
+ Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:27
+ Part-DB1\templates\_sidebar.html.twig:4
+ templates\AdminPages\EntityAdminBase.html.twig:17
+ templates\base.html.twig:167
+ templates\base.html.twig:194
+ templates\base.html.twig:222
+
+
+ reduceAll
+ Sammenfold alle
+
+
+
+
+ Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:54
+ Part-DB1\templates\Parts\info\_sidebar.html.twig:4
+ Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:54
+ Part-DB1\templates\Parts\info\_sidebar.html.twig:4
+
+
+ part.info.timetravel_hint
+ Det er hvordan delen fromstod før %timestamp%. <i>Venligst bemærk at dette er en eksperimentel funktion. Så derfor kan info være ukorrekt.</i>
+
+
+
+
+ Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:60
+ Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:60
+ templates\AdminPages\EntityAdminBase.html.twig:42
+
+
+ standard.label
+ Egenskaber
+
+
+
+
+ Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:61
+ Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:61
+ templates\AdminPages\EntityAdminBase.html.twig:43
+
+
+ infos.label
+ Info
+
+
+
+
+ Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:63
+ Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:63
+ new
+
+
+ history.label
+ Historik
+
+
+
+
+ Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:66
+ Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:66
+ templates\AdminPages\EntityAdminBase.html.twig:45
+
+
+ export.label
+ Eksport
+
+
+
+
+ Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:68
+ Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:68
+ templates\AdminPages\EntityAdminBase.html.twig:47
+
+
+ import_export.label
+ Import
+
+
+
+
+ Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:69
+ Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:69
+
+
+ mass_creation.label
+ Masseoprettelse
+
+
+
+
+ Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:82
+ Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:82
+ templates\AdminPages\EntityAdminBase.html.twig:59
+
+
+ admin.common
+ Fælles
+
+
+
+
+ Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:86
+ Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:86
+
+
+ admin.attachments
+ Bilag
+
+
+
+
+ Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:90
+
+
+ admin.parameters
+ Parametre
+
+
+
+
+ Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:179
+ Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:167
+ templates\AdminPages\EntityAdminBase.html.twig:142
+
+
+ export_all.label
+ Eksportér alle elementer
+
+
+
+
+ Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:185
+ Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:173
+
+
+ mass_creation.help
+ Hver linje fortolkes og oprettes som et navn til et nyt element. Ved at indrykke tekst kan du lave strukturer
+
+
+
+
+ Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:45
+ Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:45
+ templates\AdminPages\EntityAdminBase.html.twig:35
+
+
+ edit.caption
+ Ret element "%name"
+
+
+
+
+ Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:50
+ Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:50
+ templates\AdminPages\EntityAdminBase.html.twig:37
+
+
+ new.caption
+ Nyt element
+
+
+
+
+ Part-DB1\templates\AdminPages\FootprintAdmin.html.twig:4
+ Part-DB1\templates\_sidebar.html.twig:9
+ Part-DB1\templates\AdminPages\FootprintAdmin.html.twig:4
+ Part-DB1\templates\_sidebar.html.twig:9
+ templates\base.html.twig:172
+ templates\base.html.twig:199
+ templates\base.html.twig:227
+
+
+ footprint.labelp
+ Footprint
+
+
+
+
+ Part-DB1\templates\AdminPages\FootprintAdmin.html.twig:13
+ new
+
+
+ footprint.edit
+ Ret footprint
+
+
+
+
+ Part-DB1\templates\AdminPages\FootprintAdmin.html.twig:17
+ new
+
+
+ footprint.new
+ Nyt footprint
+
+
+
+
+ Part-DB1\templates\AdminPages\GroupAdmin.html.twig:4
+ Part-DB1\templates\AdminPages\GroupAdmin.html.twig:4
+
+
+ group.edit.caption
+ Grupper
+
+
+
+
+ Part-DB1\templates\AdminPages\GroupAdmin.html.twig:9
+ Part-DB1\templates\AdminPages\UserAdmin.html.twig:16
+ Part-DB1\templates\AdminPages\GroupAdmin.html.twig:9
+ Part-DB1\templates\AdminPages\UserAdmin.html.twig:16
+
+
+ user.edit.permissions
+ Rettigheder
+
+
+
+
+ Part-DB1\templates\AdminPages\GroupAdmin.html.twig:24
+ new
+
+
+ group.edit
+ Ret gruppe
+
+
+
+
+ Part-DB1\templates\AdminPages\GroupAdmin.html.twig:28
+ new
+
+
+ group.new
+ Ny gruppe
+
+
+
+
+ Part-DB1\templates\AdminPages\LabelProfileAdmin.html.twig:4
+
+
+ label_profile.caption
+ Labelprofiler
+
+
+
+
+ Part-DB1\templates\AdminPages\LabelProfileAdmin.html.twig:8
+
+
+ label_profile.advanced
+ Advanceret
+
+
+
+
+ Part-DB1\templates\AdminPages\LabelProfileAdmin.html.twig:9
+
+
+ label_profile.comment
+ Notater
+
+
+
+
+ Part-DB1\templates\AdminPages\LabelProfileAdmin.html.twig:55
+ new
+
+
+ label_profile.edit
+ Ret labelprofil
+
+
+
+
+ Part-DB1\templates\AdminPages\LabelProfileAdmin.html.twig:59
+ new
+
+
+ label_profile.new
+ Ny labelprofil
+
+
+
+
+ Part-DB1\templates\AdminPages\ManufacturerAdmin.html.twig:4
+ Part-DB1\templates\AdminPages\ManufacturerAdmin.html.twig:4
+ templates\AdminPages\ManufacturerAdmin.html.twig:4
+
+
+ manufacturer.caption
+ Fabrikant
+
+
+
+
+ Part-DB1\templates\AdminPages\ManufacturerAdmin.html.twig:8
+ new
+
+
+ manufacturer.edit
+ Ret fabrikanter
+
+
+
+
+ Part-DB1\templates\AdminPages\ManufacturerAdmin.html.twig:12
+ new
+
+
+ manufacturer.new
+ Ny fabrikant
+
+
+
+
+ Part-DB1\templates\AdminPages\MeasurementUnitAdmin.html.twig:4
+ Part-DB1\templates\AdminPages\MeasurementUnitAdmin.html.twig:4
+
+
+ measurement_unit.caption
+ Måleenhed
+
+
+
+
+ Part-DB1\templates\AdminPages\StorelocationAdmin.html.twig:5
+ Part-DB1\templates\_sidebar.html.twig:8
+ Part-DB1\templates\AdminPages\StorelocationAdmin.html.twig:4
+ Part-DB1\templates\_sidebar.html.twig:8
+ templates\base.html.twig:171
+ templates\base.html.twig:198
+ templates\base.html.twig:226
+
+
+ storelocation.labelp
+ Lagerlokationer
+
+
+
+
+ Part-DB1\templates\AdminPages\StorelocationAdmin.html.twig:32
+ new
+
+
+ storelocation.edit
+ Ret lagerlokation
+
+
+
+
+ Part-DB1\templates\AdminPages\StorelocationAdmin.html.twig:36
+ new
+
+
+ storelocation.new
+ Ny lagerlokation
+
+
+
+
+ Part-DB1\templates\AdminPages\SupplierAdmin.html.twig:4
+ Part-DB1\templates\AdminPages\SupplierAdmin.html.twig:4
+ templates\AdminPages\SupplierAdmin.html.twig:4
+
+
+ supplier.caption
+ Leverandører
+
+
+
+
+ Part-DB1\templates\AdminPages\SupplierAdmin.html.twig:16
+ new
+
+
+ supplier.edit
+ Ret leverandør
+
+
+
+
+ Part-DB1\templates\AdminPages\SupplierAdmin.html.twig:20
+ new
+
+
+ supplier.new
+ Ny leverandør
+
+
+
+
+ Part-DB1\templates\AdminPages\UserAdmin.html.twig:8
+ Part-DB1\templates\AdminPages\UserAdmin.html.twig:8
+
+
+ user.edit.caption
+ Brugere
+
+
+
+
+ Part-DB1\templates\AdminPages\UserAdmin.html.twig:14
+ Part-DB1\templates\AdminPages\UserAdmin.html.twig:14
+
+
+ user.edit.configuration
+ Opsætning
+
+
+
+
+ Part-DB1\templates\AdminPages\UserAdmin.html.twig:15
+ Part-DB1\templates\AdminPages\UserAdmin.html.twig:15
+
+
+ user.edit.password
+ Password
+
+
+
+
+ Part-DB1\templates\AdminPages\UserAdmin.html.twig:45
+ Part-DB1\templates\AdminPages\UserAdmin.html.twig:45
+
+
+ user.edit.tfa.caption
+ To-faktor godkendelse
+
+
+
+
+ Part-DB1\templates\AdminPages\UserAdmin.html.twig:47
+ Part-DB1\templates\AdminPages\UserAdmin.html.twig:47
+
+
+ user.edit.tfa.google_active
+ Godkendelses-app aktiv
+
+
+
+
+ Part-DB1\templates\AdminPages\UserAdmin.html.twig:48
+ Part-DB1\templates\Users\backup_codes.html.twig:15
+ Part-DB1\templates\Users\_2fa_settings.html.twig:95
+ Part-DB1\templates\AdminPages\UserAdmin.html.twig:48
+ Part-DB1\templates\Users\backup_codes.html.twig:15
+ Part-DB1\templates\Users\_2fa_settings.html.twig:95
+
+
+ tfa_backup.remaining_tokens
+ Antal resterende backupkoder
+
+
+
+
+ Part-DB1\templates\AdminPages\UserAdmin.html.twig:49
+ Part-DB1\templates\Users\backup_codes.html.twig:17
+ Part-DB1\templates\Users\_2fa_settings.html.twig:96
+ Part-DB1\templates\AdminPages\UserAdmin.html.twig:49
+ Part-DB1\templates\Users\backup_codes.html.twig:17
+ Part-DB1\templates\Users\_2fa_settings.html.twig:96
+
+
+ tfa_backup.generation_date
+ Oprettelsesdato for backupkoder
+
+
+
+
+ Part-DB1\templates\AdminPages\UserAdmin.html.twig:53
+ Part-DB1\templates\AdminPages\UserAdmin.html.twig:60
+ Part-DB1\templates\AdminPages\UserAdmin.html.twig:53
+ Part-DB1\templates\AdminPages\UserAdmin.html.twig:60
+
+
+ user.edit.tfa.disabled
+ Metode ikke aktiveret
+
+
+
+
+ Part-DB1\templates\AdminPages\UserAdmin.html.twig:56
+ Part-DB1\templates\AdminPages\UserAdmin.html.twig:56
+
+
+ user.edit.tfa.u2f_keys_count
+ Aktive sikkerhedsnøgler
+
+
+
+
+ Part-DB1\templates\AdminPages\UserAdmin.html.twig:72
+ Part-DB1\templates\AdminPages\UserAdmin.html.twig:72
+
+
+ user.edit.tfa.disable_tfa_title
+ Ønsker du at fortsætte?
+
+
+
+
+ Part-DB1\templates\AdminPages\UserAdmin.html.twig:72
+ Part-DB1\templates\AdminPages\UserAdmin.html.twig:72
+
+
+ user.edit.tfa.disable_tfa_message
+ Dette vil deaktiver <b>alle aktive to-faktor godkendelses metoder af brugere</b> og slette <b>backupkoderne</b>!
+<br>
+Brugen skal sætte all to-faktor godkendelsesmetoder op igen og printe nye backupkoder! <br><br>
+<b>Gør kun dette hvis du er helt sikker på identiten af brugeren (som søger hjælp), eller kan kontoen blive kompromiteret af en som ønsker at angrive systemet!</b>
+
+
+
+
+ Part-DB1\templates\AdminPages\UserAdmin.html.twig:73
+ Part-DB1\templates\AdminPages\UserAdmin.html.twig:73
+
+
+ user.edit.tfa.disable_tfa.btn
+ Deaktivér all to-faktor godkendelsesmetoder
+
+
+
+
+ Part-DB1\templates\AdminPages\UserAdmin.html.twig:85
+ new
+
+
+ user.edit
+ Ret bruger
+
+
+
+
+ Part-DB1\templates\AdminPages\UserAdmin.html.twig:89
+ new
+
+
+ user.new
+ Ny bruger
+
+
+
+
+ Part-DB1\templates\AdminPages\_attachments.html.twig:4
+ Part-DB1\templates\Parts\edit\_attachments.html.twig:4
+ Part-DB1\templates\AdminPages\_attachments.html.twig:4
+ Part-DB1\templates\Parts\edit\_attachments.html.twig:4
+ Part-DB1\templates\Parts\info\_attachments_info.html.twig:63
+
+
+ attachment.delete
+ Slet
+
+
+
+
+ Part-DB1\templates\AdminPages\_attachments.html.twig:41
+ Part-DB1\templates\Parts\edit\_attachments.html.twig:38
+ Part-DB1\templates\Parts\info\_attachments_info.html.twig:35
+ Part-DB1\src\DataTables\AttachmentDataTable.php:159
+ Part-DB1\templates\Parts\edit\_attachments.html.twig:38
+ Part-DB1\src\DataTables\AttachmentDataTable.php:159
+
+
+ attachment.external
+ Ekstern
+
+
+
+
+ Part-DB1\templates\AdminPages\_attachments.html.twig:49
+ Part-DB1\templates\Parts\edit\_attachments.html.twig:47
+ Part-DB1\templates\AdminPages\_attachments.html.twig:47
+ Part-DB1\templates\Parts\edit\_attachments.html.twig:45
+
+
+ attachment.preview.alt
+ Billede af bilag
+
+
+
+
+ Part-DB1\templates\AdminPages\_attachments.html.twig:52
+ Part-DB1\templates\Parts\edit\_attachments.html.twig:50
+ Part-DB1\templates\Parts\info\_attachments_info.html.twig:62
+ Part-DB1\templates\AdminPages\_attachments.html.twig:50
+ Part-DB1\templates\Parts\edit\_attachments.html.twig:48
+ Part-DB1\templates\Parts\info\_attachments_info.html.twig:45
+
+
+ attachment.view
+ Vis
+
+
+
+
+ Part-DB1\templates\AdminPages\_attachments.html.twig:58
+ Part-DB1\templates\Parts\edit\_attachments.html.twig:56
+ Part-DB1\templates\Parts\info\_attachments_info.html.twig:43
+ Part-DB1\src\DataTables\AttachmentDataTable.php:166
+ Part-DB1\templates\AdminPages\_attachments.html.twig:56
+ Part-DB1\templates\Parts\edit\_attachments.html.twig:54
+ Part-DB1\templates\Parts\info\_attachments_info.html.twig:38
+ Part-DB1\src\DataTables\AttachmentDataTable.php:166
+
+
+ attachment.file_not_found
+ Fil ikke fundet
+
+
+
+
+ Part-DB1\templates\AdminPages\_attachments.html.twig:66
+ Part-DB1\templates\Parts\edit\_attachments.html.twig:64
+ Part-DB1\templates\Parts\info\_attachments_info.html.twig:48
+ Part-DB1\templates\Parts\edit\_attachments.html.twig:62
+
+
+ attachment.secure
+ Privat bilag
+
+
+
+
+ Part-DB1\templates\AdminPages\_attachments.html.twig:79
+ Part-DB1\templates\Parts\edit\_attachments.html.twig:77
+ Part-DB1\templates\AdminPages\_attachments.html.twig:77
+ Part-DB1\templates\Parts\edit\_attachments.html.twig:75
+
+
+ attachment.create
+ Tilføj bilag
+
+
+
+
+ Part-DB1\templates\AdminPages\_attachments.html.twig:84
+ Part-DB1\templates\Parts\edit\_attachments.html.twig:82
+ Part-DB1\templates\Parts\edit\_lots.html.twig:33
+ Part-DB1\templates\AdminPages\_attachments.html.twig:82
+ Part-DB1\templates\Parts\edit\_attachments.html.twig:80
+ Part-DB1\templates\Parts\edit\_lots.html.twig:33
+
+
+ part_lot.edit.delete.confirm
+ Ønsker du virkeligt at slette dette lager? Du kan ikke fortryde det senere!
+
+
+
+
+ Part-DB1\templates\AdminPages\_delete_form.html.twig:2
+ Part-DB1\templates\AdminPages\_delete_form.html.twig:2
+ templates\AdminPages\_delete_form.html.twig:2
+
+
+ entity.delete.confirm_title
+ Ønsker du virkeligt at slette %name%?
+
+
+
+
+ Part-DB1\templates\AdminPages\_delete_form.html.twig:3
+ Part-DB1\templates\AdminPages\_delete_form.html.twig:3
+ templates\AdminPages\_delete_form.html.twig:3
+
+
+ entity.delete.message
+ Dette kan ikke fortrydes!
+
+Underelementer vil blive flyttet opad.
+
+
+
+
+ Part-DB1\templates\AdminPages\_delete_form.html.twig:11
+ Part-DB1\templates\AdminPages\_delete_form.html.twig:11
+ templates\AdminPages\_delete_form.html.twig:9
+
+
+ entity.delete
+ Slet element
+
+
+
+
+ Part-DB1\templates\AdminPages\_delete_form.html.twig:16
+ Part-DB1\templates\Parts\info\_tools.html.twig:45
+ Part-DB1\src\Form\Part\PartBaseType.php:286
+ Part-DB1\templates\AdminPages\_delete_form.html.twig:16
+ Part-DB1\templates\Parts\info\_tools.html.twig:43
+ Part-DB1\src\Form\Part\PartBaseType.php:267
+ new
+
+
+ edit.log_comment
+ Ret kommentar
+
+
+
+
+ Part-DB1\templates\AdminPages\_delete_form.html.twig:24
+ Part-DB1\templates\AdminPages\_delete_form.html.twig:24
+ templates\AdminPages\_delete_form.html.twig:12
+
+
+ entity.delete.recursive
+ Slet rekursivt (alle underelementer)
+
+
+
+
+ Part-DB1\templates\AdminPages\_duplicate.html.twig:3
+
+
+ entity.duplicate
+ Kopier element
+
+
+
+
+ Part-DB1\templates\AdminPages\_export_form.html.twig:4
+ Part-DB1\src\Form\AdminPages\ImportType.php:76
+ Part-DB1\templates\AdminPages\_export_form.html.twig:4
+ Part-DB1\src\Form\AdminPages\ImportType.php:76
+ templates\AdminPages\_export_form.html.twig:4
+ src\Form\ImportType.php:67
+
+
+ export.format
+ Filformat
+
+
+
+
+ Part-DB1\templates\AdminPages\_export_form.html.twig:16
+ Part-DB1\templates\AdminPages\_export_form.html.twig:16
+ templates\AdminPages\_export_form.html.twig:16
+
+
+ export.level
+ Detaljegrad
+
+
+
+
+ Part-DB1\templates\AdminPages\_export_form.html.twig:19
+ Part-DB1\templates\AdminPages\_export_form.html.twig:19
+ templates\AdminPages\_export_form.html.twig:19
+
+
+ export.level.simple
+ Simpel
+
+
+
+
+ Part-DB1\templates\AdminPages\_export_form.html.twig:20
+ Part-DB1\templates\AdminPages\_export_form.html.twig:20
+ templates\AdminPages\_export_form.html.twig:20
+
+
+ export.level.extended
+ Udvidet
+
+
+
+
+ Part-DB1\templates\AdminPages\_export_form.html.twig:21
+ Part-DB1\templates\AdminPages\_export_form.html.twig:21
+ templates\AdminPages\_export_form.html.twig:21
+
+
+ export.level.full
+ Fuldstændig
+
+
+
+
+ Part-DB1\templates\AdminPages\_export_form.html.twig:31
+ Part-DB1\templates\AdminPages\_export_form.html.twig:31
+ templates\AdminPages\_export_form.html.twig:31
+
+
+ export.include_children
+ medtag underelementer ved eksport
+
+
+
+
+ Part-DB1\templates\AdminPages\_export_form.html.twig:39
+ Part-DB1\templates\AdminPages\_export_form.html.twig:39
+ templates\AdminPages\_export_form.html.twig:39
+
+
+ export.btn
+ Eksport
+
+
+
+
+ Part-DB1\templates\AdminPages\_info.html.twig:4
+ Part-DB1\templates\Parts\edit\edit_part_info.html.twig:12
+ Part-DB1\templates\Parts\info\show_part_info.html.twig:24
+ Part-DB1\templates\Parts\info\_extended_infos.html.twig:36
+ Part-DB1\templates\AdminPages\_info.html.twig:4
+ Part-DB1\templates\Parts\edit\edit_part_info.html.twig:12
+ Part-DB1\templates\Parts\info\show_part_info.html.twig:24
+ Part-DB1\templates\Parts\info\_extended_infos.html.twig:36
+ templates\AdminPages\EntityAdminBase.html.twig:94
+ templates\Parts\edit_part_info.html.twig:12
+ templates\Parts\show_part_info.html.twig:11
+
+
+ id.label
+ ID
+
+
+
+
+ Part-DB1\templates\AdminPages\_info.html.twig:11
+ Part-DB1\templates\Parts\info\_attachments_info.html.twig:76
+ Part-DB1\templates\Parts\info\_attachments_info.html.twig:77
+ Part-DB1\templates\Parts\info\_extended_infos.html.twig:6
+ Part-DB1\templates\Parts\info\_order_infos.html.twig:69
+ Part-DB1\templates\Parts\info\_sidebar.html.twig:12
+ Part-DB1\templates\Parts\lists\_info_card.html.twig:77
+ Part-DB1\templates\AdminPages\_info.html.twig:11
+ Part-DB1\templates\Parts\info\_attachments_info.html.twig:59
+ Part-DB1\templates\Parts\info\_attachments_info.html.twig:60
+ Part-DB1\templates\Parts\info\_extended_infos.html.twig:6
+ Part-DB1\templates\Parts\info\_order_infos.html.twig:69
+ Part-DB1\templates\Parts\info\_sidebar.html.twig:12
+ Part-DB1\templates\Parts\lists\_info_card.html.twig:53
+ templates\AdminPages\EntityAdminBase.html.twig:101
+ templates\Parts\show_part_info.html.twig:248
+
+
+ createdAt
+ Oprettet på
+
+
+
+
+ Part-DB1\templates\AdminPages\_info.html.twig:25
+ Part-DB1\templates\Parts\info\_extended_infos.html.twig:21
+ Part-DB1\templates\Parts\info\_sidebar.html.twig:8
+ Part-DB1\templates\Parts\lists\_info_card.html.twig:73
+ Part-DB1\templates\AdminPages\_info.html.twig:25
+ Part-DB1\templates\Parts\info\_extended_infos.html.twig:21
+ Part-DB1\templates\Parts\info\_sidebar.html.twig:8
+ Part-DB1\templates\Parts\lists\_info_card.html.twig:49
+ templates\AdminPages\EntityAdminBase.html.twig:114
+ templates\Parts\show_part_info.html.twig:263
+
+
+ lastModified
+ Sidst rettet
+
+
+
+
+ Part-DB1\templates\AdminPages\_info.html.twig:38
+ Part-DB1\templates\AdminPages\_info.html.twig:38
+
+
+ entity.info.parts_count
+ antal dele med dette element
+
+
+
+
+ Part-DB1\templates\AdminPages\_parameters.html.twig:6
+ Part-DB1\templates\helper.twig:125
+ Part-DB1\templates\Parts\edit\_specifications.html.twig:6
+
+
+ specifications.property
+ Parameter
+
+
+
+
+ Part-DB1\templates\AdminPages\_parameters.html.twig:7
+ Part-DB1\templates\Parts\edit\_specifications.html.twig:7
+
+
+ specifications.symbol
+ Symbol
+
+
+
+
+ Part-DB1\templates\AdminPages\_parameters.html.twig:8
+ Part-DB1\templates\Parts\edit\_specifications.html.twig:8
+
+
+ specifications.value_min
+ Min.
+
+
+
+
+ Part-DB1\templates\AdminPages\_parameters.html.twig:9
+ Part-DB1\templates\Parts\edit\_specifications.html.twig:9
+
+
+ specifications.value_typ
+ Typ.
+
+
+
+
+ Part-DB1\templates\AdminPages\_parameters.html.twig:10
+ Part-DB1\templates\Parts\edit\_specifications.html.twig:10
+
+
+ specifications.value_max
+ Max.
+
+
+
+
+ Part-DB1\templates\AdminPages\_parameters.html.twig:11
+ Part-DB1\templates\Parts\edit\_specifications.html.twig:11
+
+
+ specifications.unit
+ Enhed
+
+
+
+
+ Part-DB1\templates\AdminPages\_parameters.html.twig:12
+ Part-DB1\templates\Parts\edit\_specifications.html.twig:12
+
+
+ specifications.text
+ Tekst
+
+
+
+
+ Part-DB1\templates\AdminPages\_parameters.html.twig:13
+ Part-DB1\templates\Parts\edit\_specifications.html.twig:13
+
+
+ specifications.group
+ Gruppe
+
+
+
+
+ Part-DB1\templates\AdminPages\_parameters.html.twig:26
+ Part-DB1\templates\Parts\edit\_specifications.html.twig:26
+
+
+ specification.create
+ Ny parameter
+
+
+
+
+ Part-DB1\templates\AdminPages\_parameters.html.twig:31
+ Part-DB1\templates\Parts\edit\_specifications.html.twig:31
+
+
+ parameter.delete.confirm
+ Ønsker du at slette denne parameter?
+
+
+
+
+ Part-DB1\templates\attachment_list.html.twig:3
+ Part-DB1\templates\attachment_list.html.twig:3
+
+
+ attachment.list.title
+ Bilagsliste
+
+
+
+
+ Part-DB1\templates\attachment_list.html.twig:10
+ Part-DB1\templates\LogSystem\_log_table.html.twig:8
+ Part-DB1\templates\Parts\lists\_parts_list.html.twig:6
+ Part-DB1\templates\attachment_list.html.twig:10
+ Part-DB1\templates\LogSystem\_log_table.html.twig:8
+ Part-DB1\templates\Parts\lists\_parts_list.html.twig:6
+
+
+ part_list.loading.caption
+ Henter
+
+
+
+
+ Part-DB1\templates\attachment_list.html.twig:11
+ Part-DB1\templates\LogSystem\_log_table.html.twig:9
+ Part-DB1\templates\Parts\lists\_parts_list.html.twig:7
+ Part-DB1\templates\attachment_list.html.twig:11
+ Part-DB1\templates\LogSystem\_log_table.html.twig:9
+ Part-DB1\templates\Parts\lists\_parts_list.html.twig:7
+
+
+ part_list.loading.message
+ Dette kan tage et øjeblik. Hvis denne meddelelse ikke forsvinder, prøv at genindlæse siden.
+
+
+
+
+ Part-DB1\templates\base.html.twig:68
+ Part-DB1\templates\base.html.twig:68
+ templates\base.html.twig:246
+
+
+ vendor.base.javascript_hint
+ Sørg for at aktivere alle Javascriptfunktioner!
+
+
+
+
+ Part-DB1\templates\base.html.twig:73
+ Part-DB1\templates\base.html.twig:73
+
+
+ sidebar.big.toggle
+ Vis/skjul sidepanel
+
+
+
+
+ Part-DB1\templates\base.html.twig:95
+ Part-DB1\templates\base.html.twig:95
+ templates\base.html.twig:271
+
+
+ loading.caption
+ Henter:
+
+
+
+
+ Part-DB1\templates\base.html.twig:96
+ Part-DB1\templates\base.html.twig:96
+ templates\base.html.twig:272
+
+
+ loading.message
+ Dette kan taget noget tid. Hvis denne meddelelse bliver stående i lang tid, forsøg da at genindlæse siden.
+
+
+
+
+ Part-DB1\templates\base.html.twig:101
+ Part-DB1\templates\base.html.twig:101
+ templates\base.html.twig:277
+
+
+ loading.bar
+ Henter...
+
+
+
+
+ Part-DB1\templates\base.html.twig:112
+ Part-DB1\templates\base.html.twig:112
+ templates\base.html.twig:288
+
+
+ back_to_top
+ Tilbage til toppen af siden
+
+
+
+
+ Part-DB1\templates\Form\permissionLayout.html.twig:35
+ Part-DB1\templates\Form\permissionLayout.html.twig:35
+
+
+ permission.edit.permission
+ Rettigheder
+
+
+
+
+ Part-DB1\templates\Form\permissionLayout.html.twig:36
+ Part-DB1\templates\Form\permissionLayout.html.twig:36
+
+
+ permission.edit.value
+ Værdi
+
+
+
+
+ Part-DB1\templates\Form\permissionLayout.html.twig:53
+ Part-DB1\templates\Form\permissionLayout.html.twig:53
+
+
+ permission.legend.title
+ Forklaring til tilstande
+
+
+
+
+ Part-DB1\templates\Form\permissionLayout.html.twig:57
+ Part-DB1\templates\Form\permissionLayout.html.twig:57
+
+
+ permission.legend.disallow
+ Ej tilladt
+
+
+
+
+ Part-DB1\templates\Form\permissionLayout.html.twig:61
+ Part-DB1\templates\Form\permissionLayout.html.twig:61
+
+
+ permission.legend.allow
+ Tilladt
+
+
+
+
+ Part-DB1\templates\Form\permissionLayout.html.twig:65
+ Part-DB1\templates\Form\permissionLayout.html.twig:65
+
+
+ permission.legend.inherit
+ Nedarv fra (overordnet) gruppe
+
+
+
+
+ Part-DB1\templates\helper.twig:3
+ Part-DB1\templates\helper.twig:3
+
+
+ bool.true
+ Sand
+
+
+
+
+ Part-DB1\templates\helper.twig:5
+ Part-DB1\templates\helper.twig:5
+
+
+ bool.false
+ Falsk
+
+
+
+
+ Part-DB1\templates\helper.twig:92
+ Part-DB1\templates\helper.twig:87
+
+
+ Yes
+ Ja
+
+
+
+
+ Part-DB1\templates\helper.twig:94
+ Part-DB1\templates\helper.twig:89
+
+
+ No
+ Nej
+
+
+
+
+ Part-DB1\templates\helper.twig:126
+
+
+ specifications.value
+ Værdi
+
+
+
+
+ Part-DB1\templates\homepage.html.twig:7
+ Part-DB1\templates\homepage.html.twig:7
+ templates\homepage.html.twig:7
+
+
+ version.caption
+ Version
+
+
+
+
+ Part-DB1\templates\homepage.html.twig:22
+ Part-DB1\templates\homepage.html.twig:22
+ templates\homepage.html.twig:19
+
+
+ homepage.license
+ Licensinformation
+
+
+
+
+ Part-DB1\templates\homepage.html.twig:31
+ Part-DB1\templates\homepage.html.twig:31
+ templates\homepage.html.twig:28
+
+
+ homepage.github.caption
+ Projektoversigt
+
+
+
+
+ Part-DB1\templates\homepage.html.twig:31
+ Part-DB1\templates\homepage.html.twig:31
+ templates\homepage.html.twig:28
+
+
+ homepage.github.text
+ Kilde, downloads, fejlrapporter, to-do-list etc. kan findes på <a href="%href%" class="link-external" target="_blank">GitHub project page</a>
+
+
+
+
+ Part-DB1\templates\homepage.html.twig:32
+ Part-DB1\templates\homepage.html.twig:32
+ templates\homepage.html.twig:29
+
+
+ homepage.help.caption
+ Hjælp
+
+
+
+
+ Part-DB1\templates\homepage.html.twig:32
+ Part-DB1\templates\homepage.html.twig:32
+ templates\homepage.html.twig:29
+
+
+ homepage.help.text
+ Hjælp og tips kan findes på Wiki <a href="%href%" class="link-external" target="_blank">GitHub siden</a>
+
+
+
+
+ Part-DB1\templates\homepage.html.twig:33
+ Part-DB1\templates\homepage.html.twig:33
+ templates\homepage.html.twig:30
+
+
+ homepage.forum.caption
+ Forum
+
+
+
+
+ Part-DB1\templates\homepage.html.twig:45
+ Part-DB1\templates\homepage.html.twig:45
+ new
+
+
+ homepage.last_activity
+ Sidste aktivitet
+
+
+
+
+ Part-DB1\templates\LabelSystem\dialog.html.twig:3
+ Part-DB1\templates\LabelSystem\dialog.html.twig:6
+
+
+ label_generator.title
+ Labelgenerator
+
+
+
+
+ Part-DB1\templates\LabelSystem\dialog.html.twig:16
+
+
+ label_generator.common
+ Fælles
+
+
+
+
+ Part-DB1\templates\LabelSystem\dialog.html.twig:20
+
+
+ label_generator.advanced
+ Avanceret
+
+
+
+
+ Part-DB1\templates\LabelSystem\dialog.html.twig:24
+
+
+ label_generator.profiles
+ Profiler
+
+
+
+
+ Part-DB1\templates\LabelSystem\dialog.html.twig:58
+
+
+ label_generator.selected_profile
+ Valgte profil
+
+
+
+
+ Part-DB1\templates\LabelSystem\dialog.html.twig:62
+
+
+ label_generator.edit_profile
+ Ret profil
+
+
+
+
+ Part-DB1\templates\LabelSystem\dialog.html.twig:75
+
+
+ label_generator.load_profile
+ Hent profil
+
+
+
+
+ Part-DB1\templates\LabelSystem\dialog.html.twig:102
+
+
+ label_generator.download
+ Hent
+
+
+
+
+ Part-DB1\templates\LabelSystem\dropdown_macro.html.twig:3
+ Part-DB1\templates\LabelSystem\dropdown_macro.html.twig:5
+
+
+ label_generator.label_btn
+ Opret label
+
+
+
+
+ Part-DB1\templates\LabelSystem\dropdown_macro.html.twig:20
+
+
+ label_generator.label_empty
+ Ny tom label
+
+
+
+
+ Part-DB1\templates\LabelSystem\Scanner\dialog.html.twig:3
+
+
+ label_scanner.title
+ Label scanner
+
+
+
+
+ Part-DB1\templates\LabelSystem\Scanner\dialog.html.twig:7
+
+
+ label_scanner.no_cam_found.title
+ Intet webcam fundet
+
+
+
+
+ Part-DB1\templates\LabelSystem\Scanner\dialog.html.twig:7
+
+
+ label_scanner.no_cam_found.text
+ Du skal bruge et webcam og give lov til at bruge det som scanner. Du kan indtaste stregkoden manuelt nedenfor.
+
+
+
+
+ Part-DB1\templates\LabelSystem\Scanner\dialog.html.twig:27
+
+
+ label_scanner.source_select
+ Vælg kilde
+
+
+
+
+ Part-DB1\templates\LogSystem\log_list.html.twig:3
+ Part-DB1\templates\LogSystem\log_list.html.twig:3
+
+
+ log.list.title
+ Systemlog
+
+
+
+
+ Part-DB1\templates\LogSystem\_log_table.html.twig:1
+ Part-DB1\templates\LogSystem\_log_table.html.twig:1
+ new
+
+
+ log.undo.confirm_title
+ Er du sikker på at du vil fortryde ændringerne / gå tilbage til forrige version?
+
+
+
+
+ Part-DB1\templates\LogSystem\_log_table.html.twig:2
+ Part-DB1\templates\LogSystem\_log_table.html.twig:2
+ new
+
+
+ log.undo.confirm_message
+ Er du sikker på at du vil fortryde ændringen / og gå tilbage til en tidligere version?
+
+
+
+
+ Part-DB1\templates\mail\base.html.twig:24
+ Part-DB1\templates\mail\base.html.twig:24
+
+
+ mail.footer.email_sent_by
+ Denne e-mail er afsendt automatisk af
+
+
+
+
+ Part-DB1\templates\mail\base.html.twig:24
+ Part-DB1\templates\mail\base.html.twig:24
+
+
+ mail.footer.dont_reply
+ Venligt undlad at svare på denne e-mail.
+
+
+
+
+ Part-DB1\templates\mail\pw_reset.html.twig:6
+ Part-DB1\templates\mail\pw_reset.html.twig:6
+
+
+ email.hi %name%
+ Hej %name%
+
+
+
+
+ Part-DB1\templates\mail\pw_reset.html.twig:7
+ Part-DB1\templates\mail\pw_reset.html.twig:7
+
+
+ email.pw_reset.message
+ En eller anden (forhåbentlig dig) har anmodet om at nulstille det gemte password. Hvis du ikke har anmodet om dette, venligst ignorér denne e-mail.
+
+
+
+
+ Part-DB1\templates\mail\pw_reset.html.twig:9
+ Part-DB1\templates\mail\pw_reset.html.twig:9
+
+
+ email.pw_reset.button
+ Klik her for at nulstille password
+
+
+
+
+ Part-DB1\templates\mail\pw_reset.html.twig:11
+ Part-DB1\templates\mail\pw_reset.html.twig:11
+
+
+ email.pw_reset.fallback
+ Hvis dette ikke virker, gå til <a href="%url%">%url%</a> og indtast følgende information
+
+
+
+
+ Part-DB1\templates\mail\pw_reset.html.twig:16
+ Part-DB1\templates\mail\pw_reset.html.twig:16
+
+
+ email.pw_reset.username
+ Brugernavn
+
+
+
+
+ Part-DB1\templates\mail\pw_reset.html.twig:19
+ Part-DB1\templates\mail\pw_reset.html.twig:19
+
+
+ email.pw_reset.token
+ Token
+
+
+
+
+ Part-DB1\templates\mail\pw_reset.html.twig:24
+ Part-DB1\templates\mail\pw_reset.html.twig:24
+
+
+ email.pw_reset.valid_unit %date%
+ Nulstillingstoken'en vil være gyldig indtil <i>%date%</i>.
+
+
+
+
+ Part-DB1\templates\Parts\edit\edit_form_styles.html.twig:18
+ Part-DB1\templates\Parts\edit\edit_form_styles.html.twig:58
+ Part-DB1\templates\Parts\edit\edit_form_styles.html.twig:78
+ Part-DB1\templates\Parts\edit\edit_form_styles.html.twig:58
+
+
+ orderdetail.delete
+ Slet
+
+
+
+
+ Part-DB1\templates\Parts\edit\edit_form_styles.html.twig:39
+ Part-DB1\templates\Parts\edit\edit_form_styles.html.twig:39
+
+
+ pricedetails.edit.min_qty
+ Minimum rabat-antal
+
+
+
+
+ Part-DB1\templates\Parts\edit\edit_form_styles.html.twig:40
+ Part-DB1\templates\Parts\edit\edit_form_styles.html.twig:40
+
+
+ pricedetails.edit.price
+ Pris
+
+
+
+
+ Part-DB1\templates\Parts\edit\edit_form_styles.html.twig:41
+ Part-DB1\templates\Parts\edit\edit_form_styles.html.twig:41
+
+
+ pricedetails.edit.price_qty
+ for mængde
+
+
+
+
+ Part-DB1\templates\Parts\edit\edit_form_styles.html.twig:54
+ Part-DB1\templates\Parts\edit\edit_form_styles.html.twig:54
+
+
+ pricedetail.create
+ Anfør pris
+
+
+
+
+ Part-DB1\templates\Parts\edit\edit_part_info.html.twig:4
+ Part-DB1\templates\Parts\edit\edit_part_info.html.twig:4
+ templates\Parts\edit_part_info.html.twig:4
+
+
+ part.edit.title
+ Rediger komponent %name%
+
+
+
+
+ Part-DB1\templates\Parts\edit\edit_part_info.html.twig:9
+ Part-DB1\templates\Parts\edit\edit_part_info.html.twig:9
+ templates\Parts\edit_part_info.html.twig:9
+
+
+ part.edit.card_title
+ Rediger del
+
+
+
+
+ Part-DB1\templates\Parts\edit\edit_part_info.html.twig:22
+ Part-DB1\templates\Parts\edit\edit_part_info.html.twig:22
+
+
+ part.edit.tab.common
+ Fælles
+
+
+
+
+ Part-DB1\templates\Parts\edit\edit_part_info.html.twig:28
+ Part-DB1\templates\Parts\edit\edit_part_info.html.twig:28
+
+
+ part.edit.tab.manufacturer
+ Fabrikant
+
+
+
+
+ Part-DB1\templates\Parts\edit\edit_part_info.html.twig:34
+ Part-DB1\templates\Parts\edit\edit_part_info.html.twig:34
+
+
+ part.edit.tab.advanced
+ Advanceret
+
+
+
+
+ Part-DB1\templates\Parts\edit\edit_part_info.html.twig:40
+ Part-DB1\templates\Parts\edit\edit_part_info.html.twig:40
+
+
+ part.edit.tab.part_lots
+ Lagerbestand
+
+
+
+
+ Part-DB1\templates\Parts\edit\edit_part_info.html.twig:46
+ Part-DB1\templates\Parts\edit\edit_part_info.html.twig:46
+
+
+ part.edit.tab.attachments
+ Vedhæftede filer
+
+
+
+
+ Part-DB1\templates\Parts\edit\edit_part_info.html.twig:52
+ Part-DB1\templates\Parts\edit\edit_part_info.html.twig:52
+
+
+ part.edit.tab.orderdetails
+ indkøbsinformation
+
+
+
+
+ Part-DB1\templates\Parts\edit\edit_part_info.html.twig:58
+
+
+ part.edit.tab.specifications
+ Paremetre
+
+
+
+
+ Part-DB1\templates\Parts\edit\edit_part_info.html.twig:64
+ Part-DB1\templates\Parts\edit\edit_part_info.html.twig:58
+
+
+ part.edit.tab.comment
+ Noter
+
+
+
+
+ Part-DB1\templates\Parts\edit\new_part.html.twig:8
+ Part-DB1\templates\Parts\edit\new_part.html.twig:8
+ templates\Parts\new_part.html.twig:8
+
+
+ part.new.card_title
+ Opret ny del
+
+
+
+
+ Part-DB1\templates\Parts\edit\_lots.html.twig:5
+ Part-DB1\templates\Parts\edit\_lots.html.twig:5
+
+
+ part_lot.delete
+ Slet
+
+
+
+
+ Part-DB1\templates\Parts\edit\_lots.html.twig:28
+ Part-DB1\templates\Parts\edit\_lots.html.twig:28
+
+
+ part_lot.create
+ Opret beholdning
+
+
+
+
+ Part-DB1\templates\Parts\edit\_orderdetails.html.twig:13
+ Part-DB1\templates\Parts\edit\_orderdetails.html.twig:13
+
+
+ orderdetail.create
+ tilføj distributør
+
+
+
+
+ Part-DB1\templates\Parts\edit\_orderdetails.html.twig:18
+ Part-DB1\templates\Parts\edit\_orderdetails.html.twig:18
+
+
+ pricedetails.edit.delete.confirm
+ Er du sikker på, at du vil slette denne pris? Dette kan ikke fortrydes!
+
+
+
+
+ Part-DB1\templates\Parts\edit\_orderdetails.html.twig:62
+ Part-DB1\templates\Parts\edit\_orderdetails.html.twig:61
+
+
+ orderdetails.edit.delete.confirm
+ Er du sikker på, at du vil slette denne leverandør? Dette kan ikke fortrydes!
+
+
+
+
+ Part-DB1\templates\Parts\info\show_part_info.html.twig:4
+ Part-DB1\templates\Parts\info\show_part_info.html.twig:19
+ Part-DB1\templates\Parts\info\show_part_info.html.twig:4
+ Part-DB1\templates\Parts\info\show_part_info.html.twig:19
+ templates\Parts\show_part_info.html.twig:4
+ templates\Parts\show_part_info.html.twig:9
+
+
+ part.info.title
+ Detaljerede oplysninger vedr.
+
+
+
+
+ Part-DB1\templates\Parts\info\show_part_info.html.twig:47
+ Part-DB1\templates\Parts\info\show_part_info.html.twig:47
+
+
+ part.part_lots.label
+ Lagerbestand
+
+
+
+
+ Part-DB1\templates\Parts\info\show_part_info.html.twig:56
+ Part-DB1\templates\Parts\lists\_info_card.html.twig:43
+ Part-DB1\templates\_navbar_search.html.twig:31
+ Part-DB1\templates\_navbar_search.html.twig:26
+ templates\base.html.twig:62
+ templates\Parts\show_part_info.html.twig:74
+ src\Form\PartType.php:86
+
+
+ comment.label
+ Noter
+
+
+
+
+ Part-DB1\templates\Parts\info\show_part_info.html.twig:64
+
+
+ part.info.specifications
+ Paremeter
+
+
+
+
+ Part-DB1\templates\Parts\info\show_part_info.html.twig:74
+ Part-DB1\templates\Parts\info\show_part_info.html.twig:64
+ templates\Parts\show_part_info.html.twig:82
+
+
+ attachment.labelp
+ Vedhæftede filer
+
+
+
+
+ Part-DB1\templates\Parts\info\show_part_info.html.twig:83
+ Part-DB1\templates\Parts\info\show_part_info.html.twig:71
+ templates\Parts\show_part_info.html.twig:88
+
+
+ vendor.partinfo.shopping_infos
+ Indkøbsinformation
+
+
+
+
+ Part-DB1\templates\Parts\info\show_part_info.html.twig:91
+ Part-DB1\templates\Parts\info\show_part_info.html.twig:78
+ templates\Parts\show_part_info.html.twig:94
+
+
+ vendor.partinfo.history
+ Historik
+
+
+
+
+ Part-DB1\templates\Parts\info\show_part_info.html.twig:97
+ Part-DB1\templates\_sidebar.html.twig:54
+ Part-DB1\templates\_sidebar.html.twig:13
+ Part-DB1\templates\Parts\info\show_part_info.html.twig:84
+ Part-DB1\templates\_sidebar.html.twig:54
+ Part-DB1\templates\_sidebar.html.twig:13
+ templates\base.html.twig:176
+ templates\base.html.twig:203
+ templates\base.html.twig:217
+ templates\base.html.twig:231
+ templates\Parts\show_part_info.html.twig:100
+
+
+ tools.label
+ Værktøjer
+
+
+
+
+ Part-DB1\templates\Parts\info\show_part_info.html.twig:103
+ Part-DB1\templates\Parts\info\show_part_info.html.twig:90
+
+
+ extended_info.label
+ Yderligere Informationen
+
+
+
+
+ Part-DB1\templates\Parts\info\_attachments_info.html.twig:7
+ Part-DB1\templates\Parts\info\_attachments_info.html.twig:7
+
+
+ attachment.name
+ Navn
+
+
+
+
+ Part-DB1\templates\Parts\info\_attachments_info.html.twig:8
+ Part-DB1\templates\Parts\info\_attachments_info.html.twig:8
+
+
+ attachment.attachment_type
+ Vedhæft sikkerhedstype
+
+
+
+
+ Part-DB1\templates\Parts\info\_attachments_info.html.twig:9
+ Part-DB1\templates\Parts\info\_attachments_info.html.twig:9
+
+
+ attachment.file_name
+ vedhæft fil_navn
+
+
+
+
+ Part-DB1\templates\Parts\info\_attachments_info.html.twig:10
+ Part-DB1\templates\Parts\info\_attachments_info.html.twig:10
+
+
+ attachment.file_size
+ vedhæftet fil_størrelse
+
+
+
+
+ Part-DB1\templates\Parts\info\_attachments_info.html.twig:54
+
+
+ attachment.preview
+ Forhåndsvisningbillede
+
+
+
+
+ Part-DB1\templates\Parts\info\_attachments_info.html.twig:67
+ Part-DB1\templates\Parts\info\_attachments_info.html.twig:50
+
+
+ attachment.download
+ Vedhæftet fil
+
+
+
+
+ Part-DB1\templates\Parts\info\_extended_infos.html.twig:11
+ Part-DB1\templates\Parts\info\_extended_infos.html.twig:11
+ new
+
+
+ user.creating_user
+ Hvem oprettede denne del
+
+
+
+
+ Part-DB1\templates\Parts\info\_extended_infos.html.twig:13
+ Part-DB1\templates\Parts\info\_extended_infos.html.twig:28
+ Part-DB1\templates\Parts\info\_extended_infos.html.twig:50
+ Part-DB1\templates\Parts\info\_extended_infos.html.twig:13
+ Part-DB1\templates\Parts\info\_extended_infos.html.twig:28
+ Part-DB1\templates\Parts\info\_extended_infos.html.twig:50
+
+
+ Unknown
+ Ukendt
+
+
+
+
+ Part-DB1\templates\Parts\info\_extended_infos.html.twig:15
+ Part-DB1\templates\Parts\info\_extended_infos.html.twig:30
+ Part-DB1\templates\Parts\info\_extended_infos.html.twig:15
+ Part-DB1\templates\Parts\info\_extended_infos.html.twig:30
+ new
+
+
+ accessDenied
+ Adgang nægtet
+
+
+
+
+ Part-DB1\templates\Parts\info\_extended_infos.html.twig:26
+ Part-DB1\templates\Parts\info\_extended_infos.html.twig:26
+ new
+
+
+ user.last_editing_user
+ Bruger som rettede denne del
+
+
+
+
+ Part-DB1\templates\Parts\info\_extended_infos.html.twig:41
+ Part-DB1\templates\Parts\info\_extended_infos.html.twig:41
+
+
+ part.isFavorite
+ Favorit
+
+
+
+
+ Part-DB1\templates\Parts\info\_extended_infos.html.twig:46
+ Part-DB1\templates\Parts\info\_extended_infos.html.twig:46
+
+
+ part.minOrderAmount
+ Minimum ordrestrørrelse
+
+
+
+
+ Part-DB1\templates\Parts\info\_main_infos.html.twig:8
+ Part-DB1\templates\_navbar_search.html.twig:46
+ Part-DB1\src\Services\ElementTypeNameGenerator.php:84
+ Part-DB1\templates\Parts\info\_main_infos.html.twig:8
+ Part-DB1\templates\_navbar_search.html.twig:41
+ Part-DB1\src\Services\ElementTypeNameGenerator.php:84
+ templates\base.html.twig:70
+ templates\Parts\show_part_info.html.twig:24
+ src\Form\PartType.php:80
+
+
+ manufacturer.label
+ Fabrikant
+
+
+
+
+ Part-DB1\templates\Parts\info\_main_infos.html.twig:24
+ Part-DB1\templates\_navbar_search.html.twig:11
+ templates\base.html.twig:54
+ src\Form\PartType.php:62
+
+
+ name.label
+ Navn
+
+
+
+
+ Part-DB1\templates\Parts\info\_main_infos.html.twig:27
+ Part-DB1\templates\Parts\info\_main_infos.html.twig:27
+ new
+
+
+ part.back_to_info
+ Tilbage til forrige version
+
+
+
+
+ Part-DB1\templates\Parts\info\_main_infos.html.twig:32
+ Part-DB1\templates\_navbar_search.html.twig:19
+ Part-DB1\templates\Parts\info\_main_infos.html.twig:32
+ Part-DB1\templates\_navbar_search.html.twig:18
+ templates\base.html.twig:58
+ templates\Parts\show_part_info.html.twig:31
+ src\Form\PartType.php:65
+
+
+ description.label
+ Beskrivelse
+
+
+
+
+ Part-DB1\templates\Parts\info\_main_infos.html.twig:34
+ Part-DB1\templates\_navbar_search.html.twig:15
+ Part-DB1\src\Services\ElementTypeNameGenerator.php:80
+ Part-DB1\templates\Parts\info\_main_infos.html.twig:34
+ Part-DB1\templates\_navbar_search.html.twig:14
+ Part-DB1\src\Services\ElementTypeNameGenerator.php:80
+ templates\base.html.twig:56
+ templates\Parts\show_part_info.html.twig:32
+ src\Form\PartType.php:74
+
+
+ category.label
+ Kategori
+
+
+
+
+ Part-DB1\templates\Parts\info\_main_infos.html.twig:39
+ Part-DB1\templates\Parts\info\_main_infos.html.twig:39
+ templates\Parts\show_part_info.html.twig:42
+ src\Form\PartType.php:69
+
+
+ instock.label
+ På lager
+
+
+
+
+ Part-DB1\templates\Parts\info\_main_infos.html.twig:41
+ Part-DB1\templates\Parts\info\_main_infos.html.twig:41
+ templates\Parts\show_part_info.html.twig:44
+ src\Form\PartType.php:72
+
+
+ mininstock.label
+ Minimumbestand
+
+
+
+
+ Part-DB1\templates\Parts\info\_main_infos.html.twig:45
+ Part-DB1\templates\_navbar_search.html.twig:52
+ Part-DB1\src\Services\ElementTypeNameGenerator.php:83
+ Part-DB1\templates\Parts\info\_main_infos.html.twig:45
+ Part-DB1\templates\_navbar_search.html.twig:47
+ Part-DB1\src\Services\ElementTypeNameGenerator.php:83
+ templates\base.html.twig:73
+ templates\Parts\show_part_info.html.twig:47
+
+
+ footprint.label
+ Footprint
+
+
+
+
+ Part-DB1\templates\Parts\info\_main_infos.html.twig:56
+ Part-DB1\templates\Parts\info\_main_infos.html.twig:59
+ Part-DB1\templates\Parts\info\_main_infos.html.twig:57
+ Part-DB1\templates\Parts\info\_main_infos.html.twig:60
+ templates\Parts\show_part_info.html.twig:51
+
+
+ part.avg_price.label
+ Gennemsnitspris
+
+
+
+
+ Part-DB1\templates\Parts\info\_order_infos.html.twig:5
+ Part-DB1\templates\Parts\info\_order_infos.html.twig:5
+
+
+ part.supplier.name
+ Navn
+
+
+
+
+ Part-DB1\templates\Parts\info\_order_infos.html.twig:6
+ Part-DB1\templates\Parts\info\_order_infos.html.twig:6
+
+
+ part.supplier.partnr
+ Bestillingsnummer.
+
+
+
+
+ Part-DB1\templates\Parts\info\_order_infos.html.twig:28
+ Part-DB1\templates\Parts\info\_order_infos.html.twig:28
+
+
+ part.order.minamount
+ Mindsteantal
+
+
+
+
+ Part-DB1\templates\Parts\info\_order_infos.html.twig:29
+ Part-DB1\templates\Parts\info\_order_infos.html.twig:29
+
+
+ part.order.price
+ Pris
+
+
+
+
+ Part-DB1\templates\Parts\info\_order_infos.html.twig:31
+ Part-DB1\templates\Parts\info\_order_infos.html.twig:31
+
+
+ part.order.single_price
+ Enhedspris
+
+
+
+
+ Part-DB1\templates\Parts\info\_order_infos.html.twig:71
+ Part-DB1\templates\Parts\info\_order_infos.html.twig:71
+
+
+ edit.caption_short
+ Ret
+
+
+
+
+ Part-DB1\templates\Parts\info\_order_infos.html.twig:72
+ Part-DB1\templates\Parts\info\_order_infos.html.twig:72
+
+
+ delete.caption
+ Slet
+
+
+
+
+ Part-DB1\templates\Parts\info\_part_lots.html.twig:7
+ Part-DB1\templates\Parts\info\_part_lots.html.twig:6
+
+
+ part_lots.description
+ Beskrivelse
+
+
+
+
+ Part-DB1\templates\Parts\info\_part_lots.html.twig:8
+ Part-DB1\templates\Parts\info\_part_lots.html.twig:7
+
+
+ part_lots.storage_location
+ Lagerlokation
+
+
+
+
+ Part-DB1\templates\Parts\info\_part_lots.html.twig:9
+ Part-DB1\templates\Parts\info\_part_lots.html.twig:8
+
+
+ part_lots.amount
+ Mængde
+
+
+
+
+ Part-DB1\templates\Parts\info\_part_lots.html.twig:24
+ Part-DB1\templates\Parts\info\_part_lots.html.twig:22
+
+
+ part_lots.location_unknown
+ Ukendt lagerlokation
+
+
+
+
+ Part-DB1\templates\Parts\info\_part_lots.html.twig:31
+ Part-DB1\templates\Parts\info\_part_lots.html.twig:29
+
+
+ part_lots.instock_unknown
+ Ukendt mængde
+
+
+
+
+ Part-DB1\templates\Parts\info\_part_lots.html.twig:40
+ Part-DB1\templates\Parts\info\_part_lots.html.twig:38
+
+
+ part_lots.expiration_date
+ Udløbsdato
+
+
+
+
+ Part-DB1\templates\Parts\info\_part_lots.html.twig:48
+ Part-DB1\templates\Parts\info\_part_lots.html.twig:46
+
+
+ part_lots.is_expired
+ Udløbet
+
+
+
+
+ Part-DB1\templates\Parts\info\_part_lots.html.twig:55
+ Part-DB1\templates\Parts\info\_part_lots.html.twig:53
+
+
+ part_lots.need_refill
+ Skal fyldes op
+
+
+
+
+ Part-DB1\templates\Parts\info\_picture.html.twig:15
+ Part-DB1\templates\Parts\info\_picture.html.twig:15
+
+
+ part.info.prev_picture
+ Forrige billede
+
+
+
+
+ Part-DB1\templates\Parts\info\_picture.html.twig:19
+ Part-DB1\templates\Parts\info\_picture.html.twig:19
+
+
+ part.info.next_picture
+ Næste billede
+
+
+
+
+ Part-DB1\templates\Parts\info\_sidebar.html.twig:21
+ Part-DB1\templates\Parts\info\_sidebar.html.twig:21
+
+
+ part.mass.tooltip
+ Vægt
+
+
+
+
+ Part-DB1\templates\Parts\info\_sidebar.html.twig:30
+ Part-DB1\templates\Parts\info\_sidebar.html.twig:30
+
+
+ part.needs_review.badge
+ Gennemgang nødvendig
+
+
+
+
+ Part-DB1\templates\Parts\info\_sidebar.html.twig:39
+ Part-DB1\templates\Parts\info\_sidebar.html.twig:39
+
+
+ part.favorite.badge
+ Favorit
+
+
+
+
+ Part-DB1\templates\Parts\info\_sidebar.html.twig:47
+ Part-DB1\templates\Parts\info\_sidebar.html.twig:47
+
+
+ part.obsolete.badge
+ Ikke længere tilgængelig
+
+
+
+
+ Part-DB1\templates\Parts\info\_specifications.html.twig:10
+
+
+ parameters.extracted_from_description
+ Automatisk udtrukket fra beskrivelse
+
+
+
+
+ Part-DB1\templates\Parts\info\_specifications.html.twig:15
+
+
+ parameters.auto_extracted_from_comment
+ Automatisk udtrukket fra noter
+
+
+
+
+ Part-DB1\templates\Parts\info\_tools.html.twig:6
+ Part-DB1\templates\Parts\info\_tools.html.twig:4
+ templates\Parts\show_part_info.html.twig:125
+
+
+ part.edit.btn
+ Rediger komponent
+
+
+
+
+ Part-DB1\templates\Parts\info\_tools.html.twig:16
+ Part-DB1\templates\Parts\info\_tools.html.twig:14
+ templates\Parts\show_part_info.html.twig:135
+
+
+ part.clone.btn
+ Kopier komponent
+
+
+
+
+ Part-DB1\templates\Parts\info\_tools.html.twig:24
+ Part-DB1\templates\Parts\lists\_action_bar.html.twig:4
+ templates\Parts\show_part_info.html.twig:143
+
+
+ part.create.btn
+ Opret ny komponent
+
+
+
+
+ Part-DB1\templates\Parts\info\_tools.html.twig:31
+ Part-DB1\templates\Parts\info\_tools.html.twig:29
+
+
+ part.delete.confirm_title
+ Vil du virkelig slette denne komponent
+
+
+
+
+ Part-DB1\templates\Parts\info\_tools.html.twig:32
+ Part-DB1\templates\Parts\info\_tools.html.twig:30
+
+
+ part.delete.message
+ Komponenten og alle dens relaterede oplysninger (bilag, priser osv. ) slettes. Dette kan ikke fortrydes!
+
+
+
+
+ Part-DB1\templates\Parts\info\_tools.html.twig:39
+ Part-DB1\templates\Parts\info\_tools.html.twig:37
+
+
+ part.delete
+ Slet komponent
+
+
+
+
+ Part-DB1\templates\Parts\lists\all_list.html.twig:4
+ Part-DB1\templates\Parts\lists\all_list.html.twig:4
+
+
+ parts_list.all.title
+ Alle komponenter
+
+
+
+
+ Part-DB1\templates\Parts\lists\category_list.html.twig:4
+ Part-DB1\templates\Parts\lists\category_list.html.twig:4
+
+
+ parts_list.category.title
+ Komponent med kategori
+
+
+
+
+ Part-DB1\templates\Parts\lists\footprint_list.html.twig:4
+ Part-DB1\templates\Parts\lists\footprint_list.html.twig:4
+
+
+ parts_list.footprint.title
+ Komponent med footprint
+
+
+
+
+ Part-DB1\templates\Parts\lists\manufacturer_list.html.twig:4
+ Part-DB1\templates\Parts\lists\manufacturer_list.html.twig:4
+
+
+ parts_list.manufacturer.title
+ Komponenter med fabrikanter
+
+
+
+
+ Part-DB1\templates\Parts\lists\search_list.html.twig:4
+ Part-DB1\templates\Parts\lists\search_list.html.twig:4
+
+
+ parts_list.search.title
+ Søg komponenter
+
+
+
+
+ Part-DB1\templates\Parts\lists\store_location_list.html.twig:4
+ Part-DB1\templates\Parts\lists\store_location_list.html.twig:4
+
+
+ parts_list.storelocation.title
+ Komponenter med lagerlokationer
+
+
+
+
+ Part-DB1\templates\Parts\lists\supplier_list.html.twig:4
+ Part-DB1\templates\Parts\lists\supplier_list.html.twig:4
+
+
+ parts_list.supplier.title
+ Komponenter med leverandører
+
+
+
+
+ Part-DB1\templates\Parts\lists\tags_list.html.twig:4
+ Part-DB1\templates\Parts\lists\tags_list.html.twig:4
+
+
+ parts_list.tags.title
+ Komponenter med tag
+
+
+
+
+ Part-DB1\templates\Parts\lists\_info_card.html.twig:22
+ Part-DB1\templates\Parts\lists\_info_card.html.twig:17
+
+
+ entity.info.common.tab
+ Fælles
+
+
+
+
+ Part-DB1\templates\Parts\lists\_info_card.html.twig:26
+ Part-DB1\templates\Parts\lists\_info_card.html.twig:20
+
+
+ entity.info.statistics.tab
+ Statistik
+
+
+
+
+ Part-DB1\templates\Parts\lists\_info_card.html.twig:31
+
+
+ entity.info.attachments.tab
+ Vedhæftede filer
+
+
+
+
+ Part-DB1\templates\Parts\lists\_info_card.html.twig:37
+
+
+ entity.info.parameters.tab
+ Parametre
+
+
+
+
+ Part-DB1\templates\Parts\lists\_info_card.html.twig:54
+ Part-DB1\templates\Parts\lists\_info_card.html.twig:30
+
+
+ entity.info.name
+ Navn
+
+
+
+
+ Part-DB1\templates\Parts\lists\_info_card.html.twig:58
+ Part-DB1\templates\Parts\lists\_info_card.html.twig:96
+ Part-DB1\templates\Parts\lists\_info_card.html.twig:34
+ Part-DB1\templates\Parts\lists\_info_card.html.twig:67
+
+
+ entity.info.parent
+ Overordnet element
+
+
+
+
+ Part-DB1\templates\Parts\lists\_info_card.html.twig:70
+ Part-DB1\templates\Parts\lists\_info_card.html.twig:46
+
+
+ entity.edit.btn
+ Redigere
+
+
+
+
+ Part-DB1\templates\Parts\lists\_info_card.html.twig:92
+ Part-DB1\templates\Parts\lists\_info_card.html.twig:63
+
+
+ entity.info.children_count
+ Antal af underelementer
+
+
+
+
+ Part-DB1\templates\security\2fa_base_form.html.twig:3
+ Part-DB1\templates\security\2fa_base_form.html.twig:5
+ Part-DB1\templates\security\2fa_base_form.html.twig:3
+ Part-DB1\templates\security\2fa_base_form.html.twig:5
+
+
+ tfa.check.title
+ To-faktor godkendelse påkrævet
+
+
+
+
+ Part-DB1\templates\security\2fa_base_form.html.twig:39
+ Part-DB1\templates\security\2fa_base_form.html.twig:39
+
+
+ tfa.code.trusted_pc
+ Dette er en pålidelig computer (hvis dette er aktiveret, udføres der ikke yderligere to-faktorforespørgsler på denne computer)
+
+
+
+
+ Part-DB1\templates\security\2fa_base_form.html.twig:52
+ Part-DB1\templates\security\login.html.twig:58
+ Part-DB1\templates\security\2fa_base_form.html.twig:52
+ Part-DB1\templates\security\login.html.twig:58
+
+
+ login.btn
+ Login
+
+
+
+
+ Part-DB1\templates\security\2fa_base_form.html.twig:53
+ Part-DB1\templates\security\U2F\u2f_login.html.twig:13
+ Part-DB1\templates\_navbar.html.twig:42
+ Part-DB1\templates\security\2fa_base_form.html.twig:53
+ Part-DB1\templates\security\U2F\u2f_login.html.twig:13
+ Part-DB1\templates\_navbar.html.twig:40
+
+
+ user.logout
+ Log ud
+
+
+
+
+ Part-DB1\templates\security\2fa_form.html.twig:6
+ Part-DB1\templates\security\2fa_form.html.twig:6
+
+
+ tfa.check.code.label
+ Godkendelses app kode
+
+
+
+
+ Part-DB1\templates\security\2fa_form.html.twig:10
+ Part-DB1\templates\security\2fa_form.html.twig:10
+
+
+ tfa.check.code.help
+ Indtast den 6-cifrede kode fra din godkendelsesapp her eller en af dine backupkoder, hvis godkendelses app'en ikke er tilgændelig.
+
+
+
+
+ Part-DB1\templates\security\login.html.twig:3
+ Part-DB1\templates\security\login.html.twig:3
+ templates\security\login.html.twig:3
+
+
+ login.title
+ Login
+
+
+
+
+ Part-DB1\templates\security\login.html.twig:7
+ Part-DB1\templates\security\login.html.twig:7
+ templates\security\login.html.twig:7
+
+
+ login.card_title
+ Login
+
+
+
+
+ Part-DB1\templates\security\login.html.twig:31
+ Part-DB1\templates\security\login.html.twig:31
+ templates\security\login.html.twig:31
+
+
+ login.username.label
+ Brugernavn
+
+
+
+
+ Part-DB1\templates\security\login.html.twig:34
+ Part-DB1\templates\security\login.html.twig:34
+ templates\security\login.html.twig:34
+
+
+ login.username.placeholder
+ Brugernavn
+
+
+
+
+ Part-DB1\templates\security\login.html.twig:38
+ Part-DB1\templates\security\login.html.twig:38
+ templates\security\login.html.twig:38
+
+
+ login.password.label
+ Password
+
+
+
+
+ Part-DB1\templates\security\login.html.twig:40
+ Part-DB1\templates\security\login.html.twig:40
+ templates\security\login.html.twig:40
+
+
+ login.password.placeholder
+ Password
+
+
+
+
+ Part-DB1\templates\security\login.html.twig:50
+ Part-DB1\templates\security\login.html.twig:50
+ templates\security\login.html.twig:50
+
+
+ login.rememberme
+ Forbliv logget ind (anbefales ikke på delte computere)
+
+
+
+
+ Part-DB1\templates\security\login.html.twig:64
+ Part-DB1\templates\security\login.html.twig:64
+
+
+ pw_reset.password_forget
+ Glemt brugernavn/password?
+
+
+
+
+ Part-DB1\templates\security\pw_reset_new_pw.html.twig:5
+ Part-DB1\templates\security\pw_reset_new_pw.html.twig:5
+
+
+ pw_reset.new_pw.header.title
+ Indstil ny adgangskode
+
+
+
+
+ Part-DB1\templates\security\pw_reset_request.html.twig:5
+ Part-DB1\templates\security\pw_reset_request.html.twig:5
+
+
+ pw_reset.request.header.title
+ Anmod om nyt password
+
+
+
+
+ Part-DB1\templates\security\U2F\u2f_login.html.twig:7
+ Part-DB1\templates\security\U2F\u2f_register.html.twig:10
+ Part-DB1\templates\security\U2F\u2f_login.html.twig:7
+ Part-DB1\templates\security\U2F\u2f_register.html.twig:10
+
+
+ tfa_u2f.http_warning
+ Du tilgår denne side ved hjælp af den usikre HTTP-metode, så U2F vil højst sandsynligt ikke fungere (Bad Request-fejlmeddelelse). Bed en administrator om at konfigurere den sikre HTTPS-metode, hvis du vil bruge sikkerhedsnøgler.
+
+
+
+
+ Part-DB1\templates\security\U2F\u2f_login.html.twig:10
+ Part-DB1\templates\security\U2F\u2f_register.html.twig:22
+ Part-DB1\templates\security\U2F\u2f_login.html.twig:10
+ Part-DB1\templates\security\U2F\u2f_register.html.twig:22
+
+
+ r_u2f_two_factor.pressbutton
+ Indsæt venligst sikkerhedsnøglen og tryk på knappen
+
+
+
+
+ Part-DB1\templates\security\U2F\u2f_register.html.twig:3
+ Part-DB1\templates\security\U2F\u2f_register.html.twig:3
+
+
+ tfa_u2f.add_key.title
+ Tilføj sikkerhedsnøgle
+
+
+
+
+ Part-DB1\templates\security\U2F\u2f_register.html.twig:6
+ Part-DB1\templates\Users\_2fa_settings.html.twig:111
+ Part-DB1\templates\security\U2F\u2f_register.html.twig:6
+ Part-DB1\templates\Users\_2fa_settings.html.twig:111
+
+
+ tfa_u2f.explanation
+ Brug af en U2F/FIDO-kompatibel sikkerhedsnøgle (f.eks. YubiKey eller NitroKey) kan øge brugervenligheden og sikre en sikker to-faktor-godkendelse. Sikkerhedsnøglerne kan registreres her. Hvis to-faktor verifikation er påkrævet, skal nøglen kun tilsluttes via USB eller sættes op mod enheden via NFC.
+
+
+
+
+ Part-DB1\templates\security\U2F\u2f_register.html.twig:7
+ Part-DB1\templates\security\U2F\u2f_register.html.twig:7
+
+
+ tfa_u2f.add_key.backup_hint
+ For at sikre adgang, selvom nøglen går tabt, anbefales det at registrere en anden nøgle som backup og opbevare den et sikkert sted!
+
+
+
+
+ Part-DB1\templates\security\U2F\u2f_register.html.twig:16
+ Part-DB1\templates\security\U2F\u2f_register.html.twig:16
+
+
+ r_u2f_two_factor.name
+ Vist nøglenavn (f.eks. backup)
+
+
+
+
+ Part-DB1\templates\security\U2F\u2f_register.html.twig:19
+ Part-DB1\templates\security\U2F\u2f_register.html.twig:19
+
+
+ tfa_u2f.add_key.add_button
+ Tilføj sikkerhedsnøgle
+
+
+
+
+ Part-DB1\templates\security\U2F\u2f_register.html.twig:27
+ Part-DB1\templates\security\U2F\u2f_register.html.twig:27
+
+
+ tfa_u2f.add_key.back_to_settings
+ Tilbage til indstillinger
+
+
+
+
+ Part-DB1\templates\Statistics\statistics.html.twig:5
+ Part-DB1\templates\Statistics\statistics.html.twig:8
+ Part-DB1\templates\Statistics\statistics.html.twig:5
+ Part-DB1\templates\Statistics\statistics.html.twig:8
+ new
+
+
+ statistics.title
+ Statistikker
+
+
+
+
+ Part-DB1\templates\Statistics\statistics.html.twig:14
+ Part-DB1\templates\Statistics\statistics.html.twig:14
+ new
+
+
+ statistics.parts
+ Komponenter
+
+
+
+
+ Part-DB1\templates\Statistics\statistics.html.twig:19
+ Part-DB1\templates\Statistics\statistics.html.twig:19
+ new
+
+
+ statistics.data_structures
+ Datastrukturer
+
+
+
+
+ Part-DB1\templates\Statistics\statistics.html.twig:24
+ Part-DB1\templates\Statistics\statistics.html.twig:24
+ new
+
+
+ statistics.attachments
+ Bilag
+
+
+
+
+ Part-DB1\templates\Statistics\statistics.html.twig:34
+ Part-DB1\templates\Statistics\statistics.html.twig:59
+ Part-DB1\templates\Statistics\statistics.html.twig:104
+ Part-DB1\templates\Statistics\statistics.html.twig:34
+ Part-DB1\templates\Statistics\statistics.html.twig:59
+ Part-DB1\templates\Statistics\statistics.html.twig:104
+ new
+
+
+ statistics.property
+ Egenskab
+
+
+
+
+ Part-DB1\templates\Statistics\statistics.html.twig:35
+ Part-DB1\templates\Statistics\statistics.html.twig:60
+ Part-DB1\templates\Statistics\statistics.html.twig:105
+ Part-DB1\templates\Statistics\statistics.html.twig:35
+ Part-DB1\templates\Statistics\statistics.html.twig:60
+ Part-DB1\templates\Statistics\statistics.html.twig:105
+ new
+
+
+ statistics.value
+ Værdi
+
+
+
+
+ Part-DB1\templates\Statistics\statistics.html.twig:40
+ Part-DB1\templates\Statistics\statistics.html.twig:40
+ new
+
+
+ statistics.distinct_parts_count
+ Antal forskellige komponenter
+
+
+
+
+ Part-DB1\templates\Statistics\statistics.html.twig:44
+ Part-DB1\templates\Statistics\statistics.html.twig:44
+ new
+
+
+ statistics.parts_instock_sum
+ Komponenter på lager i alt
+
+
+
+
+ Part-DB1\templates\Statistics\statistics.html.twig:48
+ Part-DB1\templates\Statistics\statistics.html.twig:48
+ new
+
+
+ statistics.parts_with_price
+ Komponenter med prisinformantion
+
+
+
+
+ Part-DB1\templates\Statistics\statistics.html.twig:65
+ Part-DB1\templates\Statistics\statistics.html.twig:65
+ new
+
+
+ statistics.categories_count
+ Antal kategorier
+
+
+
+
+ Part-DB1\templates\Statistics\statistics.html.twig:69
+ Part-DB1\templates\Statistics\statistics.html.twig:69
+ new
+
+
+ statistics.footprints_count
+ Antal footprints
+
+
+
+
+ Part-DB1\templates\Statistics\statistics.html.twig:73
+ Part-DB1\templates\Statistics\statistics.html.twig:73
+ new
+
+
+ statistics.manufacturers_count
+ Antal fabrikanter
+
+
+
+
+ Part-DB1\templates\Statistics\statistics.html.twig:77
+ Part-DB1\templates\Statistics\statistics.html.twig:77
+ new
+
+
+ statistics.storelocations_count
+ Antal lagerlokationer
+
+
+
+
+ Part-DB1\templates\Statistics\statistics.html.twig:81
+ Part-DB1\templates\Statistics\statistics.html.twig:81
+ new
+
+
+ statistics.suppliers_count
+ Antal leverandører
+
+
+
+
+ Part-DB1\templates\Statistics\statistics.html.twig:85
+ Part-DB1\templates\Statistics\statistics.html.twig:85
+ new
+
+
+ statistics.currencies_count
+ Antal valutaer
+
+
+
+
+ Part-DB1\templates\Statistics\statistics.html.twig:89
+ Part-DB1\templates\Statistics\statistics.html.twig:89
+ new
+
+
+ statistics.measurement_units_count
+ Antal måleenheder
+
+
+
+
+ Part-DB1\templates\Statistics\statistics.html.twig:93
+ Part-DB1\templates\Statistics\statistics.html.twig:93
+ new
+
+
+ statistics.devices_count
+ Antal projekter
+
+
+
+
+ Part-DB1\templates\Statistics\statistics.html.twig:110
+ Part-DB1\templates\Statistics\statistics.html.twig:110
+ new
+
+
+ statistics.attachment_types_count
+ Antal af bilagstyper
+
+
+
+
+ Part-DB1\templates\Statistics\statistics.html.twig:114
+ Part-DB1\templates\Statistics\statistics.html.twig:114
+ new
+
+
+ statistics.all_attachments_count
+ Antal bilag i alt
+
+
+
+
+ Part-DB1\templates\Statistics\statistics.html.twig:118
+ Part-DB1\templates\Statistics\statistics.html.twig:118
+ new
+
+
+ statistics.user_uploaded_attachments_count
+ Antal uploadede bilag
+
+
+
+
+ Part-DB1\templates\Statistics\statistics.html.twig:122
+ Part-DB1\templates\Statistics\statistics.html.twig:122
+ new
+
+
+ statistics.private_attachments_count
+ Antal private bilag
+
+
+
+
+ Part-DB1\templates\Statistics\statistics.html.twig:126
+ Part-DB1\templates\Statistics\statistics.html.twig:126
+ new
+
+
+ statistics.external_attachments_count
+ Antallet af alle eksterne bilag (URL)
+
+
+
+
+ Part-DB1\templates\Users\backup_codes.html.twig:3
+ Part-DB1\templates\Users\backup_codes.html.twig:9
+ Part-DB1\templates\Users\backup_codes.html.twig:3
+ Part-DB1\templates\Users\backup_codes.html.twig:9
+
+
+ tfa_backup.codes.title
+ Backupkoder
+
+
+
+
+ Part-DB1\templates\Users\backup_codes.html.twig:12
+ Part-DB1\templates\Users\backup_codes.html.twig:12
+
+
+ tfa_backup.codes.explanation
+ Udskriv disse koder og opbevar dem et sikkert sted!
+
+
+
+
+ Part-DB1\templates\Users\backup_codes.html.twig:13
+ Part-DB1\templates\Users\backup_codes.html.twig:13
+
+
+ tfa_backup.codes.help
+ Hvis du ikke længere har adgang til din enhed med Godkendelses-appen (smartphone tabt, datatab osv.), kan du bruge en af disse koder til at få adgang til din konto og eventuelt igen forbinde til godkendelses-app. Hver af disse koder kan bruges én gang; det er tilrådeligt at slette brugte koder. Alle med adgang til disse koder kan potentielt få adgang til din konto, så opbevar dem et sikkert sted.
+
+
+
+
+ Part-DB1\templates\Users\backup_codes.html.twig:16
+ Part-DB1\templates\Users\backup_codes.html.twig:16
+
+
+ tfa_backup.username
+ Brugernavn
+
+
+
+
+ Part-DB1\templates\Users\backup_codes.html.twig:29
+ Part-DB1\templates\Users\backup_codes.html.twig:29
+
+
+ tfa_backup.codes.page_generated_on
+ Side genereret den %date%
+
+
+
+
+ Part-DB1\templates\Users\backup_codes.html.twig:32
+ Part-DB1\templates\Users\backup_codes.html.twig:32
+
+
+ tfa_backup.codes.print
+ Udskriv
+
+
+
+
+ Part-DB1\templates\Users\backup_codes.html.twig:35
+ Part-DB1\templates\Users\backup_codes.html.twig:35
+
+
+ tfa_backup.codes.copy_clipboard
+ Kopier til udklipsholder
+
+
+
+
+ Part-DB1\templates\Users\user_info.html.twig:3
+ Part-DB1\templates\Users\user_info.html.twig:6
+ Part-DB1\templates\_navbar.html.twig:40
+ Part-DB1\templates\Users\user_info.html.twig:3
+ Part-DB1\templates\Users\user_info.html.twig:6
+ Part-DB1\templates\_navbar.html.twig:38
+ templates\base.html.twig:99
+ templates\Users\user_info.html.twig:3
+ templates\Users\user_info.html.twig:6
+
+
+ user.info.label
+ Brugerinformation
+
+
+
+
+ Part-DB1\templates\Users\user_info.html.twig:18
+ Part-DB1\src\Form\UserSettingsType.php:77
+ Part-DB1\templates\Users\user_info.html.twig:18
+ Part-DB1\src\Form\UserSettingsType.php:77
+ templates\Users\user_info.html.twig:18
+ src\Form\UserSettingsType.php:32
+
+
+ user.firstName.label
+ Fornavn
+
+
+
+
+ Part-DB1\templates\Users\user_info.html.twig:24
+ Part-DB1\src\Form\UserSettingsType.php:82
+ Part-DB1\templates\Users\user_info.html.twig:24
+ Part-DB1\src\Form\UserSettingsType.php:82
+ templates\Users\user_info.html.twig:24
+ src\Form\UserSettingsType.php:35
+
+
+ user.lastName.label
+ Efternavn
+
+
+
+
+ Part-DB1\templates\Users\user_info.html.twig:30
+ Part-DB1\src\Form\UserSettingsType.php:92
+ Part-DB1\templates\Users\user_info.html.twig:30
+ Part-DB1\src\Form\UserSettingsType.php:92
+ templates\Users\user_info.html.twig:30
+ src\Form\UserSettingsType.php:41
+
+
+ user.email.label
+ E-mail
+
+
+
+
+ Part-DB1\templates\Users\user_info.html.twig:37
+ Part-DB1\src\Form\UserSettingsType.php:87
+ Part-DB1\templates\Users\user_info.html.twig:37
+ Part-DB1\src\Form\UserSettingsType.php:87
+ templates\Users\user_info.html.twig:37
+ src\Form\UserSettingsType.php:38
+
+
+ user.department.label
+ Afdeling
+
+
+
+
+ Part-DB1\templates\Users\user_info.html.twig:47
+ Part-DB1\src\Form\UserSettingsType.php:73
+ Part-DB1\templates\Users\user_info.html.twig:47
+ Part-DB1\src\Form\UserSettingsType.php:73
+ templates\Users\user_info.html.twig:47
+ src\Form\UserSettingsType.php:30
+
+
+ user.username.label
+ Brugernavn
+
+
+
+
+ Part-DB1\templates\Users\user_info.html.twig:53
+ Part-DB1\src\Services\ElementTypeNameGenerator.php:93
+ Part-DB1\templates\Users\user_info.html.twig:53
+ Part-DB1\src\Services\ElementTypeNameGenerator.php:93
+ templates\Users\user_info.html.twig:53
+
+
+ group.label
+ Gruppe
+
+
+
+
+ Part-DB1\templates\Users\user_info.html.twig:67
+ Part-DB1\templates\Users\user_info.html.twig:67
+
+
+ user.permissions
+ Tilladelser
+
+
+
+
+ Part-DB1\templates\Users\user_settings.html.twig:3
+ Part-DB1\templates\Users\user_settings.html.twig:6
+ Part-DB1\templates\_navbar.html.twig:39
+ Part-DB1\templates\Users\user_settings.html.twig:3
+ Part-DB1\templates\Users\user_settings.html.twig:6
+ Part-DB1\templates\_navbar.html.twig:37
+ templates\base.html.twig:98
+ templates\Users\user_settings.html.twig:3
+ templates\Users\user_settings.html.twig:6
+
+
+ user.settings.label
+ Brugerindstillinger
+
+
+
+
+ Part-DB1\templates\Users\user_settings.html.twig:18
+ Part-DB1\templates\Users\user_settings.html.twig:18
+ templates\Users\user_settings.html.twig:14
+
+
+ user_settings.data.label
+ Personlige data
+
+
+
+
+ Part-DB1\templates\Users\user_settings.html.twig:22
+ Part-DB1\templates\Users\user_settings.html.twig:22
+ templates\Users\user_settings.html.twig:18
+
+
+ user_settings.configuration.label
+ Konfiguration
+
+
+
+
+ Part-DB1\templates\Users\user_settings.html.twig:55
+ Part-DB1\templates\Users\user_settings.html.twig:55
+ templates\Users\user_settings.html.twig:48
+
+
+ user.settings.change_pw
+ Ændre password
+
+
+
+
+ Part-DB1\templates\Users\_2fa_settings.html.twig:6
+ Part-DB1\templates\Users\_2fa_settings.html.twig:6
+
+
+ user.settings.2fa_settings
+ To-faktor godkendelse
+
+
+
+
+ Part-DB1\templates\Users\_2fa_settings.html.twig:13
+ Part-DB1\templates\Users\_2fa_settings.html.twig:13
+
+
+ tfa.settings.google.tab
+ Godkendelses-app
+
+
+
+
+ Part-DB1\templates\Users\_2fa_settings.html.twig:17
+ Part-DB1\templates\Users\_2fa_settings.html.twig:17
+
+
+ tfa.settings.bakup.tab
+ Backup-koder
+
+
+
+
+ Part-DB1\templates\Users\_2fa_settings.html.twig:21
+ Part-DB1\templates\Users\_2fa_settings.html.twig:21
+
+
+ tfa.settings.u2f.tab
+ Sikkerhedsnøgler (U2F)
+
+
+
+
+ Part-DB1\templates\Users\_2fa_settings.html.twig:25
+ Part-DB1\templates\Users\_2fa_settings.html.twig:25
+
+
+ tfa.settings.trustedDevices.tab
+ Pålidelige enheder
+
+
+
+
+ Part-DB1\templates\Users\_2fa_settings.html.twig:33
+ Part-DB1\templates\Users\_2fa_settings.html.twig:33
+
+
+ tfa_google.disable.confirm_title
+ Er du sikker på, at du vil deaktivere godkendelses-appen?
+
+
+
+
+ Part-DB1\templates\Users\_2fa_settings.html.twig:33
+ Part-DB1\templates\Users\_2fa_settings.html.twig:33
+
+
+ tfa_google.disable.confirm_message
+ Hvis du deaktiverer godkendelses-apen slettes alle backupkoder. Så du skal muligvis genudskrive dem.<br>
+Bemærk også, at uden to-faktor-godkendelse er din konto ikke længere så godt beskyttet mod misbrug!
+
+
+
+
+ Part-DB1\templates\Users\_2fa_settings.html.twig:39
+ Part-DB1\templates\Users\_2fa_settings.html.twig:39
+
+
+ tfa_google.disabled_message
+ Godkendelses-app er deaktiveret
+
+
+
+
+ Part-DB1\templates\Users\_2fa_settings.html.twig:48
+ Part-DB1\templates\Users\_2fa_settings.html.twig:48
+
+
+ tfa_google.step.download
+ Download en godkendelses-app (f.eks. <a class="link-external" target="_blank" href="https://play.google.com/store/apps/details?id=com.google.android. apps. authenticator2">Google Authenticator</a> eller <a class="link-external" target="_blank" href="https://play.google.com/store/apps/details?id=org .fedorahosted .freeotp">FreeOTP Authenticator</a>)
+
+
+
+
+ Part-DB1\templates\Users\_2fa_settings.html.twig:49
+ Part-DB1\templates\Users\_2fa_settings.html.twig:49
+
+
+ tfa_google.step.scan
+ Scan QR-koden nedenfor med appen eller indtast data manuelt
+
+
+
+
+ Part-DB1\templates\Users\_2fa_settings.html.twig:50
+ Part-DB1\templates\Users\_2fa_settings.html.twig:50
+
+
+ tfa_google.step.input_code
+ Indtast den genererede kode i feltet nedenfor og bekræft
+
+
+
+
+ Part-DB1\templates\Users\_2fa_settings.html.twig:51
+ Part-DB1\templates\Users\_2fa_settings.html.twig:51
+
+
+ tfa_google.step.download_backup
+ Udskriv dine backupkoder og gem dem et sikkert sted
+
+
+
+
+ Part-DB1\templates\Users\_2fa_settings.html.twig:58
+ Part-DB1\templates\Users\_2fa_settings.html.twig:58
+
+
+ tfa_google.manual_setup
+ Manuel opsætning
+
+
+
+
+ Part-DB1\templates\Users\_2fa_settings.html.twig:62
+ Part-DB1\templates\Users\_2fa_settings.html.twig:62
+
+
+ tfa_google.manual_setup.type
+ Type
+
+
+
+
+ Part-DB1\templates\Users\_2fa_settings.html.twig:63
+ Part-DB1\templates\Users\_2fa_settings.html.twig:63
+
+
+ tfa_google.manual_setup.username
+ Brugernavn
+
+
+
+
+ Part-DB1\templates\Users\_2fa_settings.html.twig:64
+ Part-DB1\templates\Users\_2fa_settings.html.twig:64
+
+
+ tfa_google.manual_setup.secret
+ Secret
+
+
+
+
+ Part-DB1\templates\Users\_2fa_settings.html.twig:65
+ Part-DB1\templates\Users\_2fa_settings.html.twig:65
+
+
+ tfa_google.manual_setup.digit_count
+ Antal ciffre
+
+
+
+
+ Part-DB1\templates\Users\_2fa_settings.html.twig:74
+ Part-DB1\templates\Users\_2fa_settings.html.twig:74
+
+
+ tfa_google.enabled_message
+ Godkendelses-app aktiv
+
+
+
+
+ Part-DB1\templates\Users\_2fa_settings.html.twig:83
+ Part-DB1\templates\Users\_2fa_settings.html.twig:83
+
+
+ tfa_backup.disabled
+ Backup-koder deaktiveret. Konfigurer godkendelses-appen for at aktivere backupkoder.
+
+
+
+
+ Part-DB1\templates\Users\_2fa_settings.html.twig:84
+ Part-DB1\templates\Users\_2fa_settings.html.twig:92
+ Part-DB1\templates\Users\_2fa_settings.html.twig:84
+ Part-DB1\templates\Users\_2fa_settings.html.twig:92
+
+
+ tfa_backup.explanation
+ Disse backupkoder giver dig adgang til din konto, selvom du mister enheden med godkendelse-appen. Udskriv koderne og opbevar dem et sikkert sted.
+
+
+
+
+ Part-DB1\templates\Users\_2fa_settings.html.twig:88
+ Part-DB1\templates\Users\_2fa_settings.html.twig:88
+
+
+ tfa_backup.reset_codes.confirm_title
+ Vil du virkelig nulstille koder?
+
+
+
+
+ Part-DB1\templates\Users\_2fa_settings.html.twig:88
+ Part-DB1\templates\Users\_2fa_settings.html.twig:88
+
+
+ tfa_backup.reset_codes.confirm_message
+ Dette vil slette alle tidligere koder og generere et sæt nye koder. Dette kan ikke fortrydes. Husk at udskrive de nye koder og gem dem et sikkert sted!
+
+
+
+
+ Part-DB1\templates\Users\_2fa_settings.html.twig:91
+ Part-DB1\templates\Users\_2fa_settings.html.twig:91
+
+
+ tfa_backup.enabled
+ Backupkoder aktiveret
+
+
+
+
+ Part-DB1\templates\Users\_2fa_settings.html.twig:99
+ Part-DB1\templates\Users\_2fa_settings.html.twig:99
+
+
+ tfa_backup.show_codes
+ Vis backupkoder
+
+
+
+
+ Part-DB1\templates\Users\_2fa_settings.html.twig:114
+ Part-DB1\templates\Users\_2fa_settings.html.twig:114
+
+
+ tfa_u2f.table_caption
+ Gemte backupkoder
+
+
+
+
+ Part-DB1\templates\Users\_2fa_settings.html.twig:115
+ Part-DB1\templates\Users\_2fa_settings.html.twig:115
+
+
+ tfa_u2f.delete_u2f.confirm_title
+ Ønsker du virkelig at slette denne backupkode?
+
+
+
+
+ Part-DB1\templates\Users\_2fa_settings.html.twig:116
+ Part-DB1\templates\Users\_2fa_settings.html.twig:116
+
+
+ tfa_u2f.delete_u2f.confirm_message
+ Hvis du fjerner denne nøgle, vil du ikke længere kunne logge på med den. Hvis der ikke er nogen sikkerhedsnøgler tilbage, er to-faktor-godkendelse deaktiveret.
+
+
+
+
+ Part-DB1\templates\Users\_2fa_settings.html.twig:123
+ Part-DB1\templates\Users\_2fa_settings.html.twig:123
+
+
+ tfa_u2f.keys.name
+ Nøglenavn
+
+
+
+
+ Part-DB1\templates\Users\_2fa_settings.html.twig:124
+ Part-DB1\templates\Users\_2fa_settings.html.twig:124
+
+
+ tfa_u2f.keys.added_date
+ Registreringsdato
+
+
+
+
+ Part-DB1\templates\Users\_2fa_settings.html.twig:134
+ Part-DB1\templates\Users\_2fa_settings.html.twig:134
+
+
+ tfa_u2f.key_delete
+ Slet nøgle
+
+
+
+
+ Part-DB1\templates\Users\_2fa_settings.html.twig:141
+ Part-DB1\templates\Users\_2fa_settings.html.twig:141
+
+
+ tfa_u2f.no_keys_registered
+ Ingen gemte nøgler
+
+
+
+
+ Part-DB1\templates\Users\_2fa_settings.html.twig:144
+ Part-DB1\templates\Users\_2fa_settings.html.twig:144
+
+
+ tfa_u2f.add_new_key
+ Registrer ny sikkerhedsnøgle
+
+
+
+
+ Part-DB1\templates\Users\_2fa_settings.html.twig:148
+ Part-DB1\templates\Users\_2fa_settings.html.twig:148
+
+
+ tfa_trustedDevices.explanation
+ Når du tjekker to-faktor, kan den aktuelle computer markeres som troværdig og så er to-faktor-tjek er ikke længere nødvendig på denne computer. Hvis du udførte dette ved en fejl, eller hvis en computer ikke længere er troværdig. Så kan du nulstille status for <i>alle </i>computere her.
+
+
+
+
+ Part-DB1\templates\Users\_2fa_settings.html.twig:149
+ Part-DB1\templates\Users\_2fa_settings.html.twig:149
+
+
+ tfa_trustedDevices.invalidate.confirm_title
+ Vil du virkelig fjerne alle pålidelige computere?
+
+
+
+
+ Part-DB1\templates\Users\_2fa_settings.html.twig:150
+ Part-DB1\templates\Users\_2fa_settings.html.twig:150
+
+
+ tfa_trustedDevices.invalidate.confirm_message
+ Du skal opsætte to-faktor-godkendelse igen på alle computere. Sørg for, at du har din to-faktor-enhed ved hånden.
+
+
+
+
+ Part-DB1\templates\Users\_2fa_settings.html.twig:154
+ Part-DB1\templates\Users\_2fa_settings.html.twig:154
+
+
+ tfa_trustedDevices.invalidate.btn
+ Fjern alle pålidelige enheder
+
+
+
+
+ Part-DB1\templates\_navbar.html.twig:4
+ Part-DB1\templates\_navbar.html.twig:4
+ templates\base.html.twig:29
+
+
+ sidebar.toggle
+ Aktivér/de-aktiver sidebjælke
+
+
+
+
+ Part-DB1\templates\_navbar.html.twig:22
+
+
+ navbar.scanner.link
+ Scanner
+
+
+
+
+ Part-DB1\templates\_navbar.html.twig:38
+ Part-DB1\templates\_navbar.html.twig:36
+ templates\base.html.twig:97
+
+
+ user.loggedin.label
+ Logget ind som
+
+
+
+
+ Part-DB1\templates\_navbar.html.twig:44
+ Part-DB1\templates\_navbar.html.twig:42
+ templates\base.html.twig:103
+
+
+ user.login
+ Log ind
+
+
+
+
+ Part-DB1\templates\_navbar.html.twig:50
+ Part-DB1\templates\_navbar.html.twig:48
+
+
+ ui.toggle_darkmode
+ Darkmode
+
+
+
+
+ Part-DB1\templates\_navbar.html.twig:54
+ Part-DB1\src\Form\UserSettingsType.php:97
+ Part-DB1\templates\_navbar.html.twig:52
+ Part-DB1\src\Form\UserSettingsType.php:97
+ templates\base.html.twig:106
+ src\Form\UserSettingsType.php:44
+
+
+ user.language_select
+ Sprog
+
+
+
+
+ Part-DB1\templates\_navbar_search.html.twig:4
+ Part-DB1\templates\_navbar_search.html.twig:4
+ templates\base.html.twig:49
+
+
+ search.options.label
+ Søgemuligheder
+
+
+
+
+ Part-DB1\templates\_navbar_search.html.twig:23
+
+
+ tags.label
+ Tags
+
+
+
+
+ Part-DB1\templates\_navbar_search.html.twig:27
+ Part-DB1\src\Form\LabelOptionsType.php:68
+ Part-DB1\src\Services\ElementTypeNameGenerator.php:88
+ Part-DB1\src\Services\ElementTypeNameGenerator.php:88
+ templates\base.html.twig:60
+ templates\Parts\show_part_info.html.twig:36
+ src\Form\PartType.php:77
+
+
+ storelocation.label
+ Lagerlokation
+
+
+
+
+ Part-DB1\templates\_navbar_search.html.twig:36
+ Part-DB1\templates\_navbar_search.html.twig:31
+ templates\base.html.twig:65
+
+
+ ordernumber.label.short
+ Bestillingsnummer
+
+
+
+
+ Part-DB1\templates\_navbar_search.html.twig:40
+ Part-DB1\src\Services\ElementTypeNameGenerator.php:89
+ Part-DB1\templates\_navbar_search.html.twig:35
+ Part-DB1\src\Services\ElementTypeNameGenerator.php:89
+ templates\base.html.twig:67
+
+
+ supplier.label
+ Leverandør
+
+
+
+
+ Part-DB1\templates\_navbar_search.html.twig:57
+ Part-DB1\templates\_navbar_search.html.twig:52
+ templates\base.html.twig:75
+
+
+ search.deactivateBarcode
+ Deakt. stregkode
+
+
+
+
+ Part-DB1\templates\_navbar_search.html.twig:61
+ Part-DB1\templates\_navbar_search.html.twig:56
+ templates\base.html.twig:77
+
+
+ search.regexmatching
+ Reg. Ex. matching
+
+
+
+
+ Part-DB1\templates\_navbar_search.html.twig:68
+ Part-DB1\templates\_navbar_search.html.twig:62
+
+
+ search.submit
+ Kom nu!
+
+
+
+
+ Part-DB1\templates\_sidebar.html.twig:37
+ Part-DB1\templates\_sidebar.html.twig:12
+ Part-DB1\templates\_sidebar.html.twig:37
+ Part-DB1\templates\_sidebar.html.twig:12
+ templates\base.html.twig:175
+ templates\base.html.twig:189
+ templates\base.html.twig:202
+ templates\base.html.twig:230
+
+
+ project.labelp
+ Projekter
+
+
+
+
+ Part-DB1\templates\_sidebar.html.twig:2
+ Part-DB1\templates\_sidebar.html.twig:2
+ templates\base.html.twig:165
+ templates\base.html.twig:192
+ templates\base.html.twig:220
+
+
+ actions
+ Handlinger
+
+
+
+
+ Part-DB1\templates\_sidebar.html.twig:6
+ Part-DB1\templates\_sidebar.html.twig:6
+ templates\base.html.twig:169
+ templates\base.html.twig:196
+ templates\base.html.twig:224
+
+
+ datasource
+ Datakilde
+
+
+
+
+ Part-DB1\templates\_sidebar.html.twig:10
+ Part-DB1\templates\_sidebar.html.twig:10
+ templates\base.html.twig:173
+ templates\base.html.twig:200
+ templates\base.html.twig:228
+
+
+ manufacturer.labelp
+ Fabrikant
+
+
+
+
+ Part-DB1\templates\_sidebar.html.twig:11
+ Part-DB1\templates\_sidebar.html.twig:11
+ templates\base.html.twig:174
+ templates\base.html.twig:201
+ templates\base.html.twig:229
+
+
+ supplier.labelp
+ Leverandører
+
+
+
+
+ Part-DB1\src\Controller\AdminPages\BaseAdminController.php:213
+ Part-DB1\src\Controller\AdminPages\BaseAdminController.php:293
+ Part-DB1\src\Controller\PartController.php:173
+ Part-DB1\src\Controller\PartController.php:293
+ Part-DB1\src\Controller\AdminPages\BaseAdminController.php:181
+ Part-DB1\src\Controller\AdminPages\BaseAdminController.php:243
+ Part-DB1\src\Controller\PartController.php:173
+ Part-DB1\src\Controller\PartController.php:268
+
+
+ attachment.download_failed
+ Download af eksterne data fejlet!
+
+
+
+
+ Part-DB1\src\Controller\AdminPages\BaseAdminController.php:222
+ Part-DB1\src\Controller\AdminPages\BaseAdminController.php:190
+
+
+ entity.edit_flash
+ Ændringer gemt med succes.
+
+
+
+
+ Part-DB1\src\Controller\AdminPages\BaseAdminController.php:231
+ Part-DB1\src\Controller\AdminPages\BaseAdminController.php:196
+
+
+ entity.edit_flash.invalid
+ Handlinger
+
+
+
+
+ Part-DB1\src\Controller\AdminPages\BaseAdminController.php:302
+ Part-DB1\src\Controller\AdminPages\BaseAdminController.php:252
+
+
+ entity.created_flash
+ Element oprettet med succes!
+
+
+
+
+ Part-DB1\src\Controller\AdminPages\BaseAdminController.php:308
+ Part-DB1\src\Controller\AdminPages\BaseAdminController.php:258
+
+
+ entity.created_flash.invalid
+ Elementet kunne ikke oprettes! Tjek dit input data
+
+
+
+
+ Part-DB1\src\Controller\AdminPages\BaseAdminController.php:399
+ Part-DB1\src\Controller\AdminPages\BaseAdminController.php:352
+ src\Controller\BaseAdminController.php:154
+
+
+ attachment_type.deleted
+ Element slettet!
+
+
+
+
+ Part-DB1\src\Controller\AdminPages\BaseAdminController.php:401
+ Part-DB1\src\Controller\UserController.php:109
+ Part-DB1\src\Controller\UserSettingsController.php:159
+ Part-DB1\src\Controller\UserSettingsController.php:193
+ Part-DB1\src\Controller\AdminPages\BaseAdminController.php:354
+ Part-DB1\src\Controller\UserController.php:101
+ Part-DB1\src\Controller\UserSettingsController.php:150
+ Part-DB1\src\Controller\UserSettingsController.php:182
+
+
+ csfr_invalid
+ CSRF-token er ugyldig! Genindlæs denne side, eller kontakt en administrator, hvis problemet fortsætter!
+
+
+
+
+ Part-DB1\src\Controller\LabelController.php:125
+
+
+ label_generator.no_entities_found
+ ingen elementer fundet.
+
+
+
+
+ Part-DB1\src\Controller\LogController.php:149
+ Part-DB1\src\Controller\LogController.php:154
+ new
+
+
+ log.undo.target_not_found
+ Elementet blev ikke fundet i databasen!
+
+
+
+
+ Part-DB1\src\Controller\LogController.php:156
+ Part-DB1\src\Controller\LogController.php:160
+ new
+
+
+ log.undo.revert_success
+ Komponent rettet tilbage til tidligere version
+
+
+
+
+ Part-DB1\src\Controller\LogController.php:176
+ Part-DB1\src\Controller\LogController.php:180
+ new
+
+
+ log.undo.element_undelete_success
+ Komponent gendannet med succes.
+
+
+
+
+ Part-DB1\src\Controller\LogController.php:178
+ Part-DB1\src\Controller\LogController.php:182
+ new
+
+
+ log.undo.element_element_already_undeleted
+ Komponent er allerede gendannet!
+
+
+
+
+ Part-DB1\src\Controller\LogController.php:185
+ Part-DB1\src\Controller\LogController.php:189
+ new
+
+
+ log.undo.element_delete_success
+ Komponent slettet med succes
+
+
+
+
+ Part-DB1\src\Controller\LogController.php:187
+ Part-DB1\src\Controller\LogController.php:191
+ new
+
+
+ log.undo.element.element_already_delted
+ Komponent er allerede blevet slettet
+
+
+
+
+ Part-DB1\src\Controller\LogController.php:194
+ Part-DB1\src\Controller\LogController.php:198
+ new
+
+
+ log.undo.element_change_undone
+ Annullering af ændringerne gennemført
+
+
+
+
+ Part-DB1\src\Controller\LogController.php:196
+ Part-DB1\src\Controller\LogController.php:200
+ new
+
+
+ log.undo.do_undelete_before
+ Du skal først gendanne elementet, før du kan fortryde denne ændring!
+
+
+
+
+ Part-DB1\src\Controller\LogController.php:199
+ Part-DB1\src\Controller\LogController.php:203
+ new
+
+
+ log.undo.log_type_invalid
+ Denne logtype kan ikke fortrydes!
+
+
+
+
+ Part-DB1\src\Controller\PartController.php:182
+ Part-DB1\src\Controller\PartController.php:182
+ src\Controller\PartController.php:80
+
+
+ part.edited_flash
+ Ændringer gemt!
+
+
+
+
+ Part-DB1\src\Controller\PartController.php:186
+ Part-DB1\src\Controller\PartController.php:186
+
+
+ part.edited_flash.invalid
+ Fejl ved lagring: Tjek dine indtastninger!
+
+
+
+
+ Part-DB1\src\Controller\PartController.php:216
+ Part-DB1\src\Controller\PartController.php:219
+
+
+ part.deleted
+ Komponent slettet.
+
+
+
+
+ Part-DB1\src\Controller\PartController.php:302
+ Part-DB1\src\Controller\PartController.php:277
+ Part-DB1\src\Controller\PartController.php:317
+ src\Controller\PartController.php:113
+ src\Controller\PartController.php:142
+
+
+ part.created_flash
+ Komponenter oprettet med succes!
+
+
+
+
+ Part-DB1\src\Controller\PartController.php:308
+ Part-DB1\src\Controller\PartController.php:283
+
+
+ part.created_flash.invalid
+ Fejl ved oprettelse: Tjek dine indtastninger!
+
+
+
+
+ Part-DB1\src\Controller\ScanController.php:68
+ Part-DB1\src\Controller\ScanController.php:90
+
+
+ scan.qr_not_found
+ Ingen element fundet
+
+
+
+
+ Part-DB1\src\Controller\ScanController.php:71
+
+
+ scan.format_unknown
+ Ukendt format!
+
+
+
+
+ Part-DB1\src\Controller\ScanController.php:86
+
+
+ scan.qr_success
+ Element fundet.
+
+
+
+
+ Part-DB1\src\Controller\SecurityController.php:114
+ Part-DB1\src\Controller\SecurityController.php:109
+
+
+ pw_reset.user_or_email
+ Brugernavn / e-mail
+
+
+
+
+ Part-DB1\src\Controller\SecurityController.php:131
+ Part-DB1\src\Controller\SecurityController.php:126
+
+
+ pw_reset.request.success
+ Anmodning om password lykkedes! Tjek din e-mail for mere information.
+
+
+
+
+ Part-DB1\src\Controller\SecurityController.php:162
+ Part-DB1\src\Controller\SecurityController.php:160
+
+
+ pw_reset.username
+ Brugernavn
+
+
+
+
+ Part-DB1\src\Controller\SecurityController.php:165
+ Part-DB1\src\Controller\SecurityController.php:163
+
+
+ pw_reset.token
+ Token
+
+
+
+
+ Part-DB1\src\Controller\SecurityController.php:194
+ Part-DB1\src\Controller\SecurityController.php:192
+
+
+ pw_reset.new_pw.error
+ Brugernavn eller token er ugyldigt! Tjek dine indtastninger.
+
+
+
+
+ Part-DB1\src\Controller\SecurityController.php:196
+ Part-DB1\src\Controller\SecurityController.php:194
+
+
+ pw_reset.new_pw.success
+ Password blev nulstillet. Du kan nu logge ind med det nye password.
+
+
+
+
+ Part-DB1\src\Controller\UserController.php:107
+ Part-DB1\src\Controller\UserController.php:99
+
+
+ user.edit.reset_success
+ Alle to-faktor-godkendelsesmetoder er blevet deaktiveret.
+
+
+
+
+ Part-DB1\src\Controller\UserSettingsController.php:101
+ Part-DB1\src\Controller\UserSettingsController.php:92
+
+
+ tfa_backup.no_codes_enabled
+ Ingen backup-koder er aktiveret!
+
+
+
+
+ Part-DB1\src\Controller\UserSettingsController.php:138
+ Part-DB1\src\Controller\UserSettingsController.php:132
+
+
+ tfa_u2f.u2f_delete.not_existing
+ Der er ingen sikkerhedsnøgle med dette ID!
+
+
+
+
+ Part-DB1\src\Controller\UserSettingsController.php:145
+ Part-DB1\src\Controller\UserSettingsController.php:139
+
+
+ tfa_u2f.u2f_delete.access_denied
+ Du kan kun slette dine egne sikkerhedsnøgler!
+
+
+
+
+ Part-DB1\src\Controller\UserSettingsController.php:153
+ Part-DB1\src\Controller\UserSettingsController.php:147
+
+
+ tfa.u2f.u2f_delete.success
+ Sikkerhedsnøglen blev fjernet.
+
+
+
+
+ Part-DB1\src\Controller\UserSettingsController.php:188
+ Part-DB1\src\Controller\UserSettingsController.php:180
+
+
+ tfa_trustedDevice.invalidate.success
+ Pålidelige enheder blev slettet.
+
+
+
+
+ Part-DB1\src\Controller\UserSettingsController.php:235
+ Part-DB1\src\Controller\UserSettingsController.php:226
+ src\Controller\UserController.php:98
+
+
+ user.settings.saved_flash
+ Indstillinger gemt!
+
+
+
+
+ Part-DB1\src\Controller\UserSettingsController.php:297
+ Part-DB1\src\Controller\UserSettingsController.php:288
+ src\Controller\UserController.php:130
+
+
+ user.settings.pw_changed_flash
+ Password ændret!
+
+
+
+
+ Part-DB1\src\Controller\UserSettingsController.php:317
+ Part-DB1\src\Controller\UserSettingsController.php:306
+
+
+ user.settings.2fa.google.activated
+ Godkendelses-app'en blev aktiveret.
+
+
+
+
+ Part-DB1\src\Controller\UserSettingsController.php:328
+ Part-DB1\src\Controller\UserSettingsController.php:315
+
+
+ user.settings.2fa.google.disabled
+ Godkendelses-app'en er deaktiveret
+
+
+
+
+ Part-DB1\src\Controller\UserSettingsController.php:346
+ Part-DB1\src\Controller\UserSettingsController.php:332
+
+
+ user.settings.2fa.backup_codes.regenerated
+ Nye backupkoder blev oprettet.
+
+
+
+
+ Part-DB1\src\DataTables\AttachmentDataTable.php:148
+ Part-DB1\src\DataTables\AttachmentDataTable.php:148
+
+
+ attachment.table.filename
+ Filnavn
+
+
+
+
+ Part-DB1\src\DataTables\AttachmentDataTable.php:153
+ Part-DB1\src\DataTables\AttachmentDataTable.php:153
+
+
+ attachment.table.filesize
+ filstørrelse
+
+
+
+
+ Part-DB1\src\DataTables\AttachmentDataTable.php:183
+ Part-DB1\src\DataTables\AttachmentDataTable.php:191
+ Part-DB1\src\DataTables\AttachmentDataTable.php:200
+ Part-DB1\src\DataTables\AttachmentDataTable.php:209
+ Part-DB1\src\DataTables\PartsDataTable.php:245
+ Part-DB1\src\DataTables\PartsDataTable.php:252
+ Part-DB1\src\DataTables\AttachmentDataTable.php:183
+ Part-DB1\src\DataTables\AttachmentDataTable.php:191
+ Part-DB1\src\DataTables\AttachmentDataTable.php:200
+ Part-DB1\src\DataTables\AttachmentDataTable.php:209
+ Part-DB1\src\DataTables\PartsDataTable.php:193
+ Part-DB1\src\DataTables\PartsDataTable.php:200
+
+
+ true
+ Sand
+
+
+
+
+ Part-DB1\src\DataTables\AttachmentDataTable.php:184
+ Part-DB1\src\DataTables\AttachmentDataTable.php:192
+ Part-DB1\src\DataTables\AttachmentDataTable.php:201
+ Part-DB1\src\DataTables\AttachmentDataTable.php:210
+ Part-DB1\src\DataTables\PartsDataTable.php:246
+ Part-DB1\src\DataTables\PartsDataTable.php:253
+ Part-DB1\src\Form\Type\SIUnitType.php:139
+ Part-DB1\src\DataTables\AttachmentDataTable.php:184
+ Part-DB1\src\DataTables\AttachmentDataTable.php:192
+ Part-DB1\src\DataTables\AttachmentDataTable.php:201
+ Part-DB1\src\DataTables\AttachmentDataTable.php:210
+ Part-DB1\src\DataTables\PartsDataTable.php:194
+ Part-DB1\src\DataTables\PartsDataTable.php:201
+ Part-DB1\src\Form\Type\SIUnitType.php:139
+
+
+ false
+ Falsk
+
+
+
+
+ Part-DB1\src\DataTables\Column\LogEntryTargetColumn.php:128
+ Part-DB1\src\DataTables\Column\LogEntryTargetColumn.php:119
+
+
+ log.target_deleted
+ Slettet
+
+
+
+
+ Part-DB1\src\DataTables\Column\RevertLogColumn.php:57
+ Part-DB1\src\DataTables\Column\RevertLogColumn.php:60
+ new
+
+
+ log.undo.undelete
+ Gendan element
+
+
+
+
+ Part-DB1\src\DataTables\Column\RevertLogColumn.php:63
+ Part-DB1\src\DataTables\Column\RevertLogColumn.php:66
+ new
+
+
+ log.undo.undo
+ Fortryd ændring
+
+
+
+
+ Part-DB1\src\DataTables\Column\RevertLogColumn.php:83
+ Part-DB1\src\DataTables\Column\RevertLogColumn.php:86
+ new
+
+
+ log.undo.revert
+ Nulstil element til nuværende status!
+
+
+
+
+ Part-DB1\src\DataTables\LogDataTable.php:173
+ Part-DB1\src\DataTables\LogDataTable.php:161
+
+
+ log.id
+ ID
+
+
+
+
+ Part-DB1\src\DataTables\LogDataTable.php:178
+ Part-DB1\src\DataTables\LogDataTable.php:166
+
+
+ log.timestamp
+ Tidsstempel
+
+
+
+
+ Part-DB1\src\DataTables\LogDataTable.php:183
+ Part-DB1\src\DataTables\LogDataTable.php:171
+
+
+ log.type
+ Begivenhed
+
+
+
+
+ Part-DB1\src\DataTables\LogDataTable.php:191
+ Part-DB1\src\DataTables\LogDataTable.php:179
+
+
+ log.level
+ Niveau
+
+
+
+
+ Part-DB1\src\DataTables\LogDataTable.php:200
+ Part-DB1\src\DataTables\LogDataTable.php:188
+
+
+ log.user
+ Bruger
+
+
+
+
+ Part-DB1\src\DataTables\LogDataTable.php:213
+ Part-DB1\src\DataTables\LogDataTable.php:201
+
+
+ log.target_type
+ Måltype
+
+
+
+
+ Part-DB1\src\DataTables\LogDataTable.php:226
+ Part-DB1\src\DataTables\LogDataTable.php:214
+
+
+ log.target
+ Mål
+
+
+
+
+ Part-DB1\src\DataTables\LogDataTable.php:231
+ Part-DB1\src\DataTables\LogDataTable.php:218
+ new
+
+
+ log.extra
+ Ekstra
+
+
+
+
+ Part-DB1\src\DataTables\PartsDataTable.php:168
+ Part-DB1\src\DataTables\PartsDataTable.php:116
+
+
+ part.table.name
+ Navn
+
+
+
+
+ Part-DB1\src\DataTables\PartsDataTable.php:178
+ Part-DB1\src\DataTables\PartsDataTable.php:126
+
+
+ part.table.id
+ ID
+
+
+
+
+ Part-DB1\src\DataTables\PartsDataTable.php:182
+ Part-DB1\src\DataTables\PartsDataTable.php:130
+
+
+ part.table.description
+ Beskrivelse
+
+
+
+
+ Part-DB1\src\DataTables\PartsDataTable.php:185
+ Part-DB1\src\DataTables\PartsDataTable.php:133
+
+
+ part.table.category
+ Kategori
+
+
+
+
+ Part-DB1\src\DataTables\PartsDataTable.php:190
+ Part-DB1\src\DataTables\PartsDataTable.php:138
+
+
+ part.table.footprint
+ Footprint
+
+
+
+
+ Part-DB1\src\DataTables\PartsDataTable.php:194
+ Part-DB1\src\DataTables\PartsDataTable.php:142
+
+
+ part.table.manufacturer
+ Fabrikant
+
+
+
+
+ Part-DB1\src\DataTables\PartsDataTable.php:197
+ Part-DB1\src\DataTables\PartsDataTable.php:145
+
+
+ part.table.storeLocations
+ Lagerlokationer
+
+
+
+
+ Part-DB1\src\DataTables\PartsDataTable.php:216
+ Part-DB1\src\DataTables\PartsDataTable.php:164
+
+
+ part.table.amount
+ Antal
+
+
+
+
+ Part-DB1\src\DataTables\PartsDataTable.php:224
+ Part-DB1\src\DataTables\PartsDataTable.php:172
+
+
+ part.table.minamount
+ Min. beholdning
+
+
+
+
+ Part-DB1\src\DataTables\PartsDataTable.php:232
+ Part-DB1\src\DataTables\PartsDataTable.php:180
+
+
+ part.table.partUnit
+ Måleenhed
+
+
+
+
+ Part-DB1\src\DataTables\PartsDataTable.php:236
+ Part-DB1\src\DataTables\PartsDataTable.php:184
+
+
+ part.table.addedDate
+ Tilføjet
+
+
+
+
+ Part-DB1\src\DataTables\PartsDataTable.php:240
+ Part-DB1\src\DataTables\PartsDataTable.php:188
+
+
+ part.table.lastModified
+ Sidst redigeret
+
+
+
+
+ Part-DB1\src\DataTables\PartsDataTable.php:244
+ Part-DB1\src\DataTables\PartsDataTable.php:192
+
+
+ part.table.needsReview
+ Gennemgang nødvendig
+
+
+
+
+ Part-DB1\src\DataTables\PartsDataTable.php:251
+ Part-DB1\src\DataTables\PartsDataTable.php:199
+
+
+ part.table.favorite
+ Favorit
+
+
+
+
+ Part-DB1\src\DataTables\PartsDataTable.php:258
+ Part-DB1\src\DataTables\PartsDataTable.php:206
+
+
+ part.table.manufacturingStatus
+ Status
+
+
+
+
+ Part-DB1\src\DataTables\PartsDataTable.php:260
+ Part-DB1\src\DataTables\PartsDataTable.php:262
+ Part-DB1\src\Form\Part\PartBaseType.php:90
+ Part-DB1\src\DataTables\PartsDataTable.php:208
+ Part-DB1\src\DataTables\PartsDataTable.php:210
+ Part-DB1\src\Form\Part\PartBaseType.php:88
+
+
+ m_status.unknown
+ Ukendt
+
+
+
+
+ Part-DB1\src\DataTables\PartsDataTable.php:263
+ Part-DB1\src\Form\Part\PartBaseType.php:90
+ Part-DB1\src\DataTables\PartsDataTable.php:211
+ Part-DB1\src\Form\Part\PartBaseType.php:88
+
+
+ m_status.announced
+ Meddelt
+
+
+
+
+ Part-DB1\src\DataTables\PartsDataTable.php:264
+ Part-DB1\src\Form\Part\PartBaseType.php:90
+ Part-DB1\src\DataTables\PartsDataTable.php:212
+ Part-DB1\src\Form\Part\PartBaseType.php:88
+
+
+ m_status.active
+ Aktiv
+
+
+
+
+ Part-DB1\src\DataTables\PartsDataTable.php:265
+ Part-DB1\src\Form\Part\PartBaseType.php:90
+ Part-DB1\src\DataTables\PartsDataTable.php:213
+ Part-DB1\src\Form\Part\PartBaseType.php:88
+
+
+ m_status.nrfnd
+ Anbefales ikke til nye designs
+
+
+
+
+ Part-DB1\src\DataTables\PartsDataTable.php:266
+ Part-DB1\src\Form\Part\PartBaseType.php:90
+ Part-DB1\src\DataTables\PartsDataTable.php:214
+ Part-DB1\src\Form\Part\PartBaseType.php:88
+
+
+ m_status.eol
+ End of life
+
+
+
+
+ Part-DB1\src\DataTables\PartsDataTable.php:267
+ Part-DB1\src\Form\Part\PartBaseType.php:90
+ Part-DB1\src\DataTables\PartsDataTable.php:215
+ Part-DB1\src\Form\Part\PartBaseType.php:88
+
+
+ m_status.discontinued
+ Discontinued
+
+
+
+
+ Part-DB1\src\DataTables\PartsDataTable.php:271
+ Part-DB1\src\DataTables\PartsDataTable.php:219
+
+
+ part.table.mpn
+ MPN
+
+
+
+
+ Part-DB1\src\DataTables\PartsDataTable.php:275
+ Part-DB1\src\DataTables\PartsDataTable.php:223
+
+
+ part.table.mass
+ Vægt
+
+
+
+
+ Part-DB1\src\DataTables\PartsDataTable.php:279
+ Part-DB1\src\DataTables\PartsDataTable.php:227
+
+
+ part.table.tags
+ Tags
+
+
+
+
+ Part-DB1\src\DataTables\PartsDataTable.php:283
+ Part-DB1\src\DataTables\PartsDataTable.php:231
+
+
+ part.table.attachments
+ Bilag
+
+
+
+
+ Part-DB1\src\EventSubscriber\UserSystem\LoginSuccessSubscriber.php:82
+ Part-DB1\src\EventSubscriber\LoginSuccessListener.php:82
+
+
+ flash.login_successful
+ Login lykkedes
+
+
+
+
+ Part-DB1\src\Form\AdminPages\ImportType.php:77
+ Part-DB1\src\Form\AdminPages\ImportType.php:77
+ src\Form\ImportType.php:68
+
+
+ JSON
+ JSON
+
+
+
+
+ Part-DB1\src\Form\AdminPages\ImportType.php:77
+ Part-DB1\src\Form\AdminPages\ImportType.php:77
+ src\Form\ImportType.php:68
+
+
+ XML
+ XML
+
+
+
+
+ Part-DB1\src\Form\AdminPages\ImportType.php:77
+ Part-DB1\src\Form\AdminPages\ImportType.php:77
+ src\Form\ImportType.php:68
+
+
+ CSV
+ CSV
+
+
+
+
+ Part-DB1\src\Form\AdminPages\ImportType.php:77
+ Part-DB1\src\Form\AdminPages\ImportType.php:77
+ src\Form\ImportType.php:68
+
+
+ YAML
+ YAML
+
+
+
+
+ Part-DB1\src\Form\AdminPages\ImportType.php:124
+ Part-DB1\src\Form\AdminPages\ImportType.php:124
+
+
+ import.abort_on_validation.help
+ Hvis denne indstilling er aktiveret, vil hele processen blive afbrudt, hvis der registreres ugyldige data. Hvis denne indstilling ikke er aktiv, ignoreres ugyldige poster, og de andre poster forsøges importeret.
+
+
+
+
+ Part-DB1\src\Form\AdminPages\ImportType.php:86
+ Part-DB1\src\Form\AdminPages\ImportType.php:86
+ src\Form\ImportType.php:70
+
+
+ import.csv_separator
+ CSV-separator
+
+
+
+
+ Part-DB1\src\Form\AdminPages\ImportType.php:93
+ Part-DB1\src\Form\AdminPages\ImportType.php:93
+ src\Form\ImportType.php:72
+
+
+ parent.label
+ Overordnet element
+
+
+
+
+ Part-DB1\src\Form\AdminPages\ImportType.php:101
+ Part-DB1\src\Form\AdminPages\ImportType.php:101
+ src\Form\ImportType.php:75
+
+
+ import.file
+ Fil
+
+
+
+
+ Part-DB1\src\Form\AdminPages\ImportType.php:111
+ Part-DB1\src\Form\AdminPages\ImportType.php:111
+ src\Form\ImportType.php:78
+
+
+ import.preserve_children
+ Importer også underelementer
+
+
+
+
+ Part-DB1\src\Form\AdminPages\ImportType.php:120
+ Part-DB1\src\Form\AdminPages\ImportType.php:120
+ src\Form\ImportType.php:80
+
+
+ import.abort_on_validation
+ Annuller ved ugyldige data
+
+
+
+
+ Part-DB1\src\Form\AdminPages\ImportType.php:132
+ Part-DB1\src\Form\AdminPages\ImportType.php:132
+ src\Form\ImportType.php:85
+
+
+ import.btn
+ Importer
+
+
+
+
+ Part-DB1\src\Form\AttachmentFormType.php:113
+ Part-DB1\src\Form\AttachmentFormType.php:109
+
+
+ attachment.edit.secure_file.help
+ En vedhæftet fil, der er markeret som privat, kan kun tilgås af autoriseret bruger som har de relevante tilladelser. Når denne indstilling er aktiv, genereres der ikke miniaturebilleder, og adgangen til filen er langsommere.
+
+
+
+
+ Part-DB1\src\Form\AttachmentFormType.php:127
+ Part-DB1\src\Form\AttachmentFormType.php:123
+
+
+ attachment.edit.url.help
+ Her kan du enten indtaste en URL til en ekstern fil, eller du kan søge efter de indbyggede ressourcer ved at indtaste et nøgleord (f.eks. footprint).
+
+
+
+
+ Part-DB1\src\Form\AttachmentFormType.php:82
+ Part-DB1\src\Form\AttachmentFormType.php:79
+
+
+ attachment.edit.name
+ Navn
+
+
+
+
+ Part-DB1\src\Form\AttachmentFormType.php:85
+ Part-DB1\src\Form\AttachmentFormType.php:82
+
+
+ attachment.edit.attachment_type
+ Bilagstype
+
+
+
+
+ Part-DB1\src\Form\AttachmentFormType.php:94
+ Part-DB1\src\Form\AttachmentFormType.php:91
+
+
+ attachment.edit.show_in_table
+ Vis i tabel
+
+
+
+
+ Part-DB1\src\Form\AttachmentFormType.php:105
+ Part-DB1\src\Form\AttachmentFormType.php:102
+
+
+ attachment.edit.secure_file
+ Privat bilag
+
+
+
+
+ Part-DB1\src\Form\AttachmentFormType.php:119
+ Part-DB1\src\Form\AttachmentFormType.php:115
+
+
+ attachment.edit.url
+ URL
+
+
+
+
+ Part-DB1\src\Form\AttachmentFormType.php:133
+ Part-DB1\src\Form\AttachmentFormType.php:129
+
+
+ attachment.edit.download_url
+ Download eksternt data
+
+
+
+
+ Part-DB1\src\Form\AttachmentFormType.php:146
+ Part-DB1\src\Form\AttachmentFormType.php:142
+
+
+ attachment.edit.file
+ Upload fil
+
+
+
+
+ Part-DB1\src\Form\LabelOptionsType.php:68
+ Part-DB1\src\Services\ElementTypeNameGenerator.php:86
+
+
+ part.label
+ Komponent
+
+
+
+
+ Part-DB1\src\Form\LabelOptionsType.php:68
+ Part-DB1\src\Services\ElementTypeNameGenerator.php:87
+
+
+ part_lot.label
+ Komponentbeholdning
+
+
+
+
+ Part-DB1\src\Form\LabelOptionsType.php:78
+
+
+ label_options.barcode_type.none
+ Ingen
+
+
+
+
+ Part-DB1\src\Form\LabelOptionsType.php:78
+
+
+ label_options.barcode_type.qr
+ QR-kode (anbefalet)
+
+
+
+
+ Part-DB1\src\Form\LabelOptionsType.php:78
+
+
+ label_options.barcode_type.code128
+ Kode 128 (anbefalet)
+
+
+
+
+ Part-DB1\src\Form\LabelOptionsType.php:78
+
+
+ label_options.barcode_type.code39
+ Kode 39 (anbefalet)
+
+
+
+
+ Part-DB1\src\Form\LabelOptionsType.php:78
+
+
+ label_options.barcode_type.code93
+ Kode 93
+
+
+
+
+ Part-DB1\src\Form\LabelOptionsType.php:78
+
+
+ label_options.barcode_type.datamatrix
+ Datamatrix
+
+
+
+
+ Part-DB1\src\Form\LabelOptionsType.php:122
+
+
+ label_options.lines_mode.html
+ HTML
+
+
+
+
+ Part-DB1\src\Form\LabelOptionsType.php:122
+
+
+ label.options.lines_mode.twig
+ Twig
+
+
+
+
+ Part-DB1\src\Form\LabelOptionsType.php:126
+
+
+ label_options.lines_mode.help
+ Hvis du vælger Twig her, vil indholdsfeltet blive fortolket som en Twig-skabelon. Yderligere hjælp er tilgængelig i <a href="https://twig.symfony.com/doc/3.x/templates.html">Twig Dokumentation</a> og <a href="https://docs.part-db.dk/usage/labels.html#twig-mode">Wiki</a>.
+
+
+
+
+ Part-DB1\src\Form\LabelOptionsType.php:47
+
+
+ label_options.page_size.label
+ Størrelse
+
+
+
+
+ Part-DB1\src\Form\LabelOptionsType.php:66
+
+
+ label_options.supported_elements.label
+ Elementtype
+
+
+
+
+ Part-DB1\src\Form\LabelOptionsType.php:75
+
+
+ label_options.barcode_type.label
+ Stregkodetype
+
+
+
+
+ Part-DB1\src\Form\LabelOptionsType.php:102
+
+
+ label_profile.lines.label
+ Indhold
+
+
+
+
+ Part-DB1\src\Form\LabelOptionsType.php:111
+
+
+ label_options.additional_css.label
+ Yderligere CSS
+
+
+
+
+ Part-DB1\src\Form\LabelOptionsType.php:120
+
+
+ label_options.lines_mode.label
+ Parser mode
+
+
+
+
+ Part-DB1\src\Form\LabelOptionsType.php:51
+
+
+ label_options.width.placeholder
+ Bredde
+
+
+
+
+ Part-DB1\src\Form\LabelOptionsType.php:60
+
+
+ label_options.height.placeholder
+ Højde
+
+
+
+
+ Part-DB1\src\Form\LabelSystem\LabelDialogType.php:49
+
+
+ label_generator.target_id.range_hint
+ Du kan her angive flere ID'er (f.eks. 1, 2, 3) og/eller et interval her for at generere stregkoder for flere elementer på én gang.
+
+
+
+
+ Part-DB1\src\Form\LabelSystem\LabelDialogType.php:46
+
+
+ label_generator.target_id.label
+ Element ID'ere
+
+
+
+
+ Part-DB1\src\Form\LabelSystem\LabelDialogType.php:59
+
+
+ label_generator.update
+ Opdatering
+
+
+
+
+ Part-DB1\src\Form\LabelSystem\ScanDialogType.php:36
+
+
+ scan_dialog.input
+ Input
+
+
+
+
+ Part-DB1\src\Form\LabelSystem\ScanDialogType.php:44
+
+
+ scan_dialog.submit
+ Afsend
+
+
+
+
+ Part-DB1\src\Form\ParameterType.php:41
+
+
+ parameters.name.placeholder
+ F.eks. DC Current Gain
+
+
+
+
+ Part-DB1\src\Form\ParameterType.php:50
+
+
+ parameters.symbol.placeholder
+ F.eks. h_[FE]
+
+
+
+
+ Part-DB1\src\Form\ParameterType.php:60
+
+
+ parameters.text.placeholder
+ f.eks. Test specifikationer
+
+
+
+
+ Part-DB1\src\Form\ParameterType.php:71
+
+
+ parameters.max.placeholder
+ f.eks. 350
+
+
+
+
+ Part-DB1\src\Form\ParameterType.php:82
+
+
+ parameters.min.placeholder
+ f.eks. 100
+
+
+
+
+ Part-DB1\src\Form\ParameterType.php:93
+
+
+ parameters.typical.placeholder
+ f.eks. 200
+
+
+
+
+ Part-DB1\src\Form\ParameterType.php:103
+
+
+ parameters.unit.placeholder
+ f.eks. V
+
+
+
+
+ Part-DB1\src\Form\ParameterType.php:114
+
+
+ parameter.group.placeholder
+ f.eks. tekniske specifikationer
+
+
+
+
+ Part-DB1\src\Form\Part\OrderdetailType.php:72
+ Part-DB1\src\Form\Part\OrderdetailType.php:75
+
+
+ orderdetails.edit.supplierpartnr
+ Leverandør varenummer
+
+
+
+
+ Part-DB1\src\Form\Part\OrderdetailType.php:81
+ Part-DB1\src\Form\Part\OrderdetailType.php:84
+
+
+ orderdetails.edit.supplier
+ Leverandør
+
+
+
+
+ Part-DB1\src\Form\Part\OrderdetailType.php:87
+ Part-DB1\src\Form\Part\OrderdetailType.php:90
+
+
+ orderdetails.edit.url
+ Link til tilbud
+
+
+
+
+ Part-DB1\src\Form\Part\OrderdetailType.php:93
+ Part-DB1\src\Form\Part\OrderdetailType.php:96
+
+
+ orderdetails.edit.obsolete
+ Ikke længere tilgængelig
+
+
+
+
+ Part-DB1\src\Form\Part\OrderdetailType.php:75
+ Part-DB1\src\Form\Part\OrderdetailType.php:78
+
+
+ orderdetails.edit.supplierpartnr.placeholder
+ f.eks. BC 547
+
+
+
+
+ Part-DB1\src\Form\Part\PartBaseType.php:101
+ Part-DB1\src\Form\Part\PartBaseType.php:99
+
+
+ part.edit.name
+ Navn
+
+
+
+
+ Part-DB1\src\Form\Part\PartBaseType.php:109
+ Part-DB1\src\Form\Part\PartBaseType.php:107
+
+
+ part.edit.description
+ Beskrivelse
+
+
+
+
+ Part-DB1\src\Form\Part\PartBaseType.php:120
+ Part-DB1\src\Form\Part\PartBaseType.php:118
+
+
+ part.edit.mininstock
+ Minimumsmængde
+
+
+
+
+ Part-DB1\src\Form\Part\PartBaseType.php:129
+ Part-DB1\src\Form\Part\PartBaseType.php:127
+
+
+ part.edit.category
+ Kategori
+
+
+
+
+ Part-DB1\src\Form\Part\PartBaseType.php:135
+ Part-DB1\src\Form\Part\PartBaseType.php:133
+
+
+ part.edit.footprint
+ Footprint
+
+
+
+
+ Part-DB1\src\Form\Part\PartBaseType.php:142
+ Part-DB1\src\Form\Part\PartBaseType.php:140
+
+
+ part.edit.tags
+ Tags
+
+
+
+
+ Part-DB1\src\Form\Part\PartBaseType.php:154
+ Part-DB1\src\Form\Part\PartBaseType.php:152
+
+
+ part.edit.manufacturer.label
+ Fabrikant
+
+
+
+
+ Part-DB1\src\Form\Part\PartBaseType.php:161
+ Part-DB1\src\Form\Part\PartBaseType.php:159
+
+
+ part.edit.manufacturer_url.label
+ Link til produktside
+
+
+
+
+ Part-DB1\src\Form\Part\PartBaseType.php:167
+ Part-DB1\src\Form\Part\PartBaseType.php:165
+
+
+ part.edit.mpn
+ Fabrikant partnummer
+
+
+
+
+ Part-DB1\src\Form\Part\PartBaseType.php:173
+ Part-DB1\src\Form\Part\PartBaseType.php:171
+
+
+ part.edit.manufacturing_status
+ Fabrikantstatus
+
+
+
+
+ Part-DB1\src\Form\Part\PartBaseType.php:181
+ Part-DB1\src\Form\Part\PartBaseType.php:179
+
+
+ part.edit.needs_review
+ Gennemgang nødvendig
+
+
+
+
+ Part-DB1\src\Form\Part\PartBaseType.php:189
+ Part-DB1\src\Form\Part\PartBaseType.php:187
+
+
+ part.edit.is_favorite
+ Favorit
+
+
+
+
+ Part-DB1\src\Form\Part\PartBaseType.php:197
+ Part-DB1\src\Form\Part\PartBaseType.php:195
+
+
+ part.edit.mass
+ Vægt
+
+
+
+
+ Part-DB1\src\Form\Part\PartBaseType.php:203
+ Part-DB1\src\Form\Part\PartBaseType.php:201
+
+
+ part.edit.partUnit
+ Måleenhed
+
+
+
+
+ Part-DB1\src\Form\Part\PartBaseType.php:212
+ Part-DB1\src\Form\Part\PartBaseType.php:210
+
+
+ part.edit.comment
+ Notater
+
+
+
+
+ Part-DB1\src\Form\Part\PartBaseType.php:250
+ Part-DB1\src\Form\Part\PartBaseType.php:246
+
+
+ part.edit.master_attachment
+ Miniaturebillede
+
+
+
+
+ Part-DB1\src\Form\Part\PartBaseType.php:295
+ Part-DB1\src\Form\Part\PartBaseType.php:276
+ src\Form\PartType.php:91
+
+
+ part.edit.save
+ Anvend ændringer
+
+
+
+
+ Part-DB1\src\Form\Part\PartBaseType.php:296
+ Part-DB1\src\Form\Part\PartBaseType.php:277
+ src\Form\PartType.php:92
+
+
+ part.edit.reset
+ Annuller ændringer
+
+
+
+
+ Part-DB1\src\Form\Part\PartBaseType.php:105
+ Part-DB1\src\Form\Part\PartBaseType.php:103
+
+
+ part.edit.name.placeholder
+ f.eks. BC547
+
+
+
+
+ Part-DB1\src\Form\Part\PartBaseType.php:115
+ Part-DB1\src\Form\Part\PartBaseType.php:113
+
+
+ part.edit.description.placeholder
+ f.eks. NPN 45V, 0,1A 0,5W
+
+
+
+
+ Part-DB1\src\Form\Part\PartBaseType.php:123
+ Part-DB1\src\Form\Part\PartBaseType.php:121
+
+
+ part.editmininstock.placeholder
+ f.eks. 1
+
+
+
+
+ Part-DB1\src\Form\Part\PartLotType.php:69
+ Part-DB1\src\Form\Part\PartLotType.php:69
+
+
+ part_lot.edit.description
+ Beskrivelse
+
+
+
+
+ Part-DB1\src\Form\Part\PartLotType.php:78
+ Part-DB1\src\Form\Part\PartLotType.php:78
+
+
+ part_lot.edit.location
+ Lagerlokation
+
+
+
+
+ Part-DB1\src\Form\Part\PartLotType.php:89
+ Part-DB1\src\Form\Part\PartLotType.php:89
+
+
+ part_lot.edit.amount
+ Antal
+
+
+
+
+ Part-DB1\src\Form\Part\PartLotType.php:98
+ Part-DB1\src\Form\Part\PartLotType.php:97
+
+
+ part_lot.edit.instock_unknown
+ Ukendt antal
+
+
+
+
+ Part-DB1\src\Form\Part\PartLotType.php:109
+ Part-DB1\src\Form\Part\PartLotType.php:108
+
+
+ part_lot.edit.needs_refill
+ skal fyldes op igen
+
+
+
+
+ Part-DB1\src\Form\Part\PartLotType.php:120
+ Part-DB1\src\Form\Part\PartLotType.php:119
+
+
+ part_lot.edit.expiration_date
+ Udløbsdato
+
+
+
+
+ Part-DB1\src\Form\Part\PartLotType.php:128
+ Part-DB1\src\Form\Part\PartLotType.php:125
+
+
+ part_lot.edit.comment
+ Bemærk
+
+
+
+
+ Part-DB1\src\Form\Permissions\PermissionsType.php:99
+ Part-DB1\src\Form\Permissions\PermissionsType.php:99
+
+
+ perm.group.other
+ Forskellige
+
+
+
+
+ Part-DB1\src\Form\TFAGoogleSettingsType.php:97
+ Part-DB1\src\Form\TFAGoogleSettingsType.php:97
+
+
+ tfa_google.enable
+ Aktiver godkendelses-app
+
+
+
+
+ Part-DB1\src\Form\TFAGoogleSettingsType.php:101
+ Part-DB1\src\Form\TFAGoogleSettingsType.php:101
+
+
+ tfa_google.disable
+ Deaktiver godkendelses-app
+
+
+
+
+ Part-DB1\src\Form\TFAGoogleSettingsType.php:74
+ Part-DB1\src\Form\TFAGoogleSettingsType.php:74
+
+
+ google_confirmation
+ Verifikationskode
+
+
+
+
+ Part-DB1\src\Form\UserSettingsType.php:108
+ Part-DB1\src\Form\UserSettingsType.php:108
+ src\Form\UserSettingsType.php:46
+
+
+ user.timezone.label
+ Tidszone
+
+
+
+
+ Part-DB1\src\Form\UserSettingsType.php:133
+ Part-DB1\src\Form\UserSettingsType.php:132
+
+
+ user.currency.label
+ Foretrukken valuta
+
+
+
+
+ Part-DB1\src\Form\UserSettingsType.php:140
+ Part-DB1\src\Form\UserSettingsType.php:139
+ src\Form\UserSettingsType.php:53
+
+
+ save
+ Anvend ændringer
+
+
+
+
+ Part-DB1\src\Form\UserSettingsType.php:141
+ Part-DB1\src\Form\UserSettingsType.php:140
+ src\Form\UserSettingsType.php:54
+
+
+ reset
+ Kasser ændringer
+
+
+
+
+ Part-DB1\src\Form\UserSettingsType.php:104
+ Part-DB1\src\Form\UserSettingsType.php:104
+ src\Form\UserSettingsType.php:45
+
+
+ user_settings.language.placeholder
+ Serversprog
+
+
+
+
+ Part-DB1\src\Form\UserSettingsType.php:115
+ Part-DB1\src\Form\UserSettingsType.php:115
+ src\Form\UserSettingsType.php:48
+
+
+ user_settings.timezone.placeholder
+ Server tidszone
+
+
+
+
+ Part-DB1\src\Services\ElementTypeNameGenerator.php:79
+ Part-DB1\src\Services\ElementTypeNameGenerator.php:79
+
+
+ attachment.label
+ Bilag
+
+
+
+
+ Part-DB1\src\Services\ElementTypeNameGenerator.php:81
+ Part-DB1\src\Services\ElementTypeNameGenerator.php:81
+
+
+ attachment_type.label
+ Bilagstype
+
+
+
+
+ Part-DB1\src\Services\ElementTypeNameGenerator.php:82
+ Part-DB1\src\Services\ElementTypeNameGenerator.php:82
+
+
+ project.label
+ Projekt
+
+
+
+
+ Part-DB1\src\Services\ElementTypeNameGenerator.php:85
+ Part-DB1\src\Services\ElementTypeNameGenerator.php:85
+
+
+ measurement_unit.label
+ Måleenhed
+
+
+
+
+ Part-DB1\src\Services\ElementTypeNameGenerator.php:90
+ Part-DB1\src\Services\ElementTypeNameGenerator.php:90
+
+
+ currency.label
+ Valuta
+
+
+
+
+ Part-DB1\src\Services\ElementTypeNameGenerator.php:91
+ Part-DB1\src\Services\ElementTypeNameGenerator.php:91
+
+
+ orderdetail.label
+ Bestillingsoplysninger
+
+
+
+
+ Part-DB1\src\Services\ElementTypeNameGenerator.php:92
+ Part-DB1\src\Services\ElementTypeNameGenerator.php:92
+
+
+ pricedetail.label
+ Prisinformation
+
+
+
+
+ Part-DB1\src\Services\ElementTypeNameGenerator.php:94
+ Part-DB1\src\Services\ElementTypeNameGenerator.php:94
+
+
+ user.label
+ Rediger
+
+
+
+
+ Part-DB1\src\Services\ElementTypeNameGenerator.php:95
+
+
+ parameter.label
+ Parameter
+
+
+
+
+ Part-DB1\src\Services\ElementTypeNameGenerator.php:96
+
+
+ label_profile.label
+ Labelprofil
+
+
+
+
+ Part-DB1\src\Services\LogSystem\LogEntryExtraFormatter.php:176
+ Part-DB1\src\Services\LogSystem\LogEntryExtraFormatter.php:161
+ new
+
+
+ log.element_deleted.old_name.unknown
+ Ukendt
+
+
+
+
+ Part-DB1\src\Services\MarkdownParser.php:73
+ Part-DB1\src\Services\MarkdownParser.php:73
+
+
+ markdown.loading
+ Indlæs Markdown. Hvis dette varer ved i lang tid, så prøv at indlæse hjemmesiden igen!
+
+
+
+
+ Part-DB1\src\Services\PasswordResetManager.php:98
+ Part-DB1\src\Services\PasswordResetManager.php:98
+
+
+ pw_reset.email.subject
+ Password nulstillet for din Part-DB-konto
+
+
+
+
+ Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:108
+
+
+ tree.tools.tools
+ Værktøjer
+
+
+
+
+ Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:109
+ Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:107
+ src\Services\ToolsTreeBuilder.php:74
+
+
+ tree.tools.edit
+ Rediger
+
+
+
+
+ Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:110
+ Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:108
+ src\Services\ToolsTreeBuilder.php:81
+
+
+ tree.tools.show
+ Vis
+
+
+
+
+ Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:111
+ Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:109
+
+
+ tree.tools.system
+ System
+
+
+
+
+ Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:123
+
+
+ tree.tools.tools.label_dialog
+ Labeldialog
+
+
+
+
+ Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:130
+
+
+ tree.tools.tools.label_scanner
+ Scanner
+
+
+
+
+ Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:149
+ Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:126
+ src\Services\ToolsTreeBuilder.php:62
+
+
+ tree.tools.edit.attachment_types
+ Bilagstype
+
+
+
+
+ Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:155
+ Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:132
+ src\Services\ToolsTreeBuilder.php:64
+
+
+ tree.tools.edit.categories
+ Kategorier
+
+
+
+
+ Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:161
+ Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:138
+ src\Services\ToolsTreeBuilder.php:66
+
+
+ tree.tools.edit.projects
+ Projekter
+
+
+
+
+ Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:167
+ Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:144
+ src\Services\ToolsTreeBuilder.php:68
+
+
+ tree.tools.edit.suppliers
+ Leverandører
+
+
+
+
+ Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:173
+ Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:150
+ src\Services\ToolsTreeBuilder.php:70
+
+
+ tree.tools.edit.manufacturer
+ Fabrikanter
+
+
+
+
+ Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:179
+ Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:156
+
+
+ tree.tools.edit.storelocation
+ Lagerlokationer
+
+
+
+
+ Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:185
+ Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:162
+
+
+ tree.tools.edit.footprint
+ Footprints
+
+
+
+
+ Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:191
+ Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:168
+
+
+ tree.tools.edit.currency
+ Valuta
+
+
+
+
+ Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:197
+ Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:174
+
+
+ tree.tools.edit.measurement_unit
+ Måleenhed
+
+
+
+
+ Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:203
+
+
+ tree.tools.edit.label_profile
+ Labelprofil
+
+
+
+
+ Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:209
+ Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:180
+
+
+ tree.tools.edit.part
+ Ny komponent
+
+
+
+
+ Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:226
+ Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:197
+ src\Services\ToolsTreeBuilder.php:77
+
+
+ tree.tools.show.all_parts
+ Vis alle dele
+
+
+
+
+ Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:232
+ Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:203
+
+
+ tree.tools.show.all_attachments
+ Bilag
+
+
+
+
+ Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:239
+ Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:210
+ new
+
+
+ tree.tools.show.statistics
+ Statistik
+
+
+
+
+ Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:258
+ Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:229
+
+
+ tree.tools.system.users
+ Bruger
+
+
+
+
+ Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:264
+ Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:235
+
+
+ tree.tools.system.groups
+ Grupper
+
+
+
+
+ Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:271
+ Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:242
+ new
+
+
+ tree.tools.system.event_log
+ Hændelseslog
+
+
+
+
+ Part-DB1\src\Services\Trees\TreeViewGenerator.php:95
+ Part-DB1\src\Services\Trees\TreeViewGenerator.php:95
+ src\Services\TreeBuilder.php:124
+
+
+ entity.tree.new
+ Nyt element
+
+
+
+
+ Part-DB1\templates\Parts\info\_attachments_info.html.twig:34
+ obsolete
+
+
+ attachment.external_file
+ Ekstern fil
+
+
+
+
+ Part-DB1\templates\Parts\info\_attachments_info.html.twig:62
+ obsolete
+
+
+ attachment.edit
+ Rediger
+
+
+
+
+ Part-DB1\templates\_navbar.html.twig:27
+ templates\base.html.twig:88
+ obsolete
+
+
+ barcode.scan
+ Scan stregkode
+
+
+
+
+ Part-DB1\src\Form\UserSettingsType.php:119
+ src\Form\UserSettingsType.php:49
+ obsolete
+
+
+ user.theme.label
+ Tema
+
+
+
+
+ Part-DB1\src\Form\UserSettingsType.php:129
+ src\Form\UserSettingsType.php:50
+ obsolete
+
+
+ user_settings.theme.placeholder
+ Server Tema
+
+
+
+
+ Part-DB1\src\Services\LogSystem\LogEntryExtraFormatter.php:100
+ new
+ obsolete
+
+
+ log.user_login.ip
+ IP:
+
+
+
+
+ Part-DB1\src\Services\LogSystem\LogEntryExtraFormatter.php:128
+ Part-DB1\src\Services\LogSystem\LogEntryExtraFormatter.php:150
+ Part-DB1\src\Services\LogSystem\LogEntryExtraFormatter.php:169
+ Part-DB1\src\Services\LogSystem\LogEntryExtraFormatter.php:207
+ new
+ obsolete
+
+
+ log.undo_mode.undo
+ Fortryd ændringer
+
+
+
+
+ Part-DB1\src\Services\LogSystem\LogEntryExtraFormatter.php:130
+ Part-DB1\src\Services\LogSystem\LogEntryExtraFormatter.php:152
+ Part-DB1\src\Services\LogSystem\LogEntryExtraFormatter.php:171
+ Part-DB1\src\Services\LogSystem\LogEntryExtraFormatter.php:209
+ new
+ obsolete
+
+
+ log.undo_mode.revert
+ Element nulstillet
+
+
+
+
+ Part-DB1\src\Services\LogSystem\LogEntryExtraFormatter.php:139
+ new
+ obsolete
+
+
+ log.element_created.original_instock
+ Gammelt lager
+
+
+
+
+ Part-DB1\src\Services\LogSystem\LogEntryExtraFormatter.php:160
+ new
+ obsolete
+
+
+ log.element_deleted.old_name
+ Gammelt navn
+
+
+
+
+ Part-DB1\src\Services\LogSystem\LogEntryExtraFormatter.php:184
+ new
+ obsolete
+
+
+ log.element_edited.changed_fields
+ Ændrede egenskaber
+
+
+
+
+ Part-DB1\src\Services\LogSystem\LogEntryExtraFormatter.php:198
+ new
+ obsolete
+
+
+ log.instock_changed.comment
+ Kommentar
+
+
+
+
+ Part-DB1\src\Services\LogSystem\LogEntryExtraFormatter.php:214
+ new
+ obsolete
+
+
+ log.collection_deleted.deleted
+ Slettet element
+
+
+
+
+ templates\base.html.twig:81
+ obsolete
+ obsolete
+
+
+ go.exclamation
+ Kom nu!
+
+
+
+
+ templates\base.html.twig:109
+ obsolete
+ obsolete
+
+
+ language.english
+ Engelsk
+
+
+
+
+ templates\base.html.twig:112
+ obsolete
+ obsolete
+
+
+ language.german
+ Tysk
+
+
+
+
+ obsolete
+ obsolete
+
+
+ flash.password_change_needed
+ Dit password skal ændres
+
+
+
+
+ obsolete
+ obsolete
+
+
+ attachment.table.type
+ Bilagstype
+
+
+
+
+ obsolete
+ obsolete
+
+
+ attachment.table.element
+ forbundet element
+
+
+
+
+ obsolete
+ obsolete
+
+
+ attachment.edit.isPicture
+ Billede?
+
+
+
+
+ obsolete
+ obsolete
+
+
+ attachment.edit.is3DModel
+ 3D-model?
+
+
+
+
+ obsolete
+ obsolete
+
+
+ attachment.edit.isBuiltin
+ Indbygget ressource?
+
+
+
+
+ obsolete
+ obsolete
+
+
+ category.edit.default_comment.placeholder
+ f.eks. brugbar til strømforsyning
+
+
+
+
+ obsolete
+ obsolete
+
+
+ tfa_backup.regenerate_codes
+ Generer nye backup-koder
+
+
+
+
+ obsolete
+ obsolete
+
+
+ validator.noneofitschild.self
+ Et element kan ikke være overordnet for sig selv!
+
+
+
+
+ obsolete
+ obsolete
+
+
+ validator.noneofitschild.children
+ Et underordnet element kan ikke være det overordnede element!
+
+
+
+
+ obsolete
+ obsolete
+
+
+ validator.part_lot.location_full.no_increasment
+ Den anvendte lagerlokation er markeret som fuld, derfor kan beholdningen ikke øges. (Nyt lager maksimum {{ old_amount }})
+
+
+
+
+ obsolete
+ obsolete
+
+
+ validator.part_lot.location_full
+ Lagerpladsen er fuld, så nye dele kan ikke tilføjes.
+
+
+
+
+ obsolete
+ obsolete
+
+
+ validator.part_lot.only_existing
+ Opbevaringsstedet er markeret som "kun eksisterende dele", så nye dele kan ikke tilføjes.
+
+
+
+
+ obsolete
+ obsolete
+
+
+ validator.part_lot.single_part
+ Lagerlokationen er markeret som "Kun én komponent", så en ny komponent kan ikke tilføjes.
+
+
+
+
+ obsolete
+ obsolete
+
+
+ m_status.active.help
+ Komponenten er i øjeblikket under produktion og vil bliver produceret inden for en overskuelig fremtid.
+
+
+
+
+ obsolete
+ obsolete
+
+
+ m_status.announced.help
+ Komponenten er blevet annonceret, men er endnu ikke tilgængelig.
+
+
+
+
+ obsolete
+ obsolete
+
+
+ m_status.discontinued.help
+ Komponenten produceres ikke længere.
+
+
+
+
+ obsolete
+ obsolete
+
+
+ m_status.eol.help
+ Produktion af komponenten vil snart ophøre.
+
+
+
+
+ obsolete
+ obsolete
+
+
+ m_status.nrfnd.help
+ Komponenten fremstilles stadig. Dog anbefales den ikke anvendt længere til nye designs.
+
+
+
+
+ obsolete
+ obsolete
+
+
+ m_status.unknown.help
+ Produktionsstatus er ukendt.
+
+
+
+
+ obsolete
+ obsolete
+
+
+ flash.success
+ Succes
+
+
+
+
+ obsolete
+ obsolete
+
+
+ flash.error
+ Fejl
+
+
+
+
+ obsolete
+ obsolete
+
+
+ flash.warning
+ Advarsel
+
+
+
+
+ obsolete
+ obsolete
+
+
+ flash.notice
+ Varsel
+
+
+
+
+ obsolete
+ obsolete
+
+
+ flash.info
+ Info
+
+
+
+
+ obsolete
+ obsolete
+
+
+ validator.noLockout
+ Du kan ikke fjerne din egen tilladelse til at redigere tilladelser. Dette sikrer dig imod ved et uheld at låse dig ude!
+
+
+
+
+ obsolete
+ obsolete
+
+
+ attachment_type.edit.filetype_filter
+ Tilladte filtyper
+
+
+
+
+ obsolete
+ obsolete
+
+
+ attachment_type.edit.filetype_filter.help
+ Her kan du angive en kommasepareret liste over filtypenavne eller mime-typer, som en uploadet fil af denne type skal have. For at tillade alle understøttede billedfiler kan image/* benyttes.
+
+
+
+
+ obsolete
+ obsolete
+
+
+ attachment_type.edit.filetype_filter.placeholder
+ f.eks. .txt, application/pdf, image/*
+
+
+
+
+ src\Form\PartType.php:63
+ obsolete
+ obsolete
+
+
+ part.name.placeholder
+ f.eks. BC547
+
+
+
+
+ obsolete
+ obsolete
+
+
+ entity.edit.not_selectable
+ Kan ikke vælges
+
+
+
+
+ obsolete
+ obsolete
+
+
+ entity.edit.not_selectable.help
+ Hvis denne mulighed er aktiveret, kan dette element ikke tildeles som en egenskab til nogen komponent. Nyttigt, for eksempel hvis dette element kun er beregnet til rene sorteringsformål.
+
+
+
+
+ obsolete
+ obsolete
+
+
+ bbcode.hint
+ BBCode kan bruges her (f.eks. [b]Fed[/b])
+
+
+
+
+ obsolete
+ obsolete
+
+
+ entity.create
+ Opret element
+
+
+
+
+ obsolete
+ obsolete
+
+
+ entity.edit.save
+ Gem
+
+
+
+
+ obsolete
+ obsolete
+
+
+ category.edit.disable_footprints
+ Deaktiver Footprints
+
+
+
+
+ obsolete
+ obsolete
+
+
+ category.edit.disable_footprints.help
+ Når denne indstilling er aktiveret, er egenskaben footprint deaktiveret for alle komponenter i denne kategori.
+
+
+
+
+ obsolete
+ obsolete
+
+
+ category.edit.disable_manufacturers
+ Deaktiver fabrikant
+
+
+
+
+ obsolete
+ obsolete
+
+
+ category.edit.disable_manufacturers.help
+ Når denne indstilling er aktiveret, er fakbrikantegenskaben deaktiveret for alle komponenter i denne kategori.
+
+
+
+
+ obsolete
+ obsolete
+
+
+ category.edit.disable_autodatasheets
+ Deaktiver automatiske databladlinks
+
+
+
+
+ obsolete
+ obsolete
+
+
+ category.edit.disable_autodatasheets.help
+ Hvis denne mulighed er aktiveret, vil der ikke blive genereret automatiske databladlinks for komponenter med denne kategori.
+
+
+
+
+ obsolete
+ obsolete
+
+
+ category.edit.disable_properties
+ Deaktiver egenskaber
+
+
+
+
+ obsolete
+ obsolete
+
+
+ category.edit.disable_properties.help
+ Hvis denne indstilling er aktiveret, deaktiveres komponentegenskaberne for alle komponenter i denne kategori.
+
+
+
+
+ obsolete
+ obsolete
+
+
+ category.edit.partname_hint
+ Ledetråd for navn
+
+
+
+
+ obsolete
+ obsolete
+
+
+ category.edit.partname_hint.placeholder
+ f.eks. 100nF
+
+
+
+
+ obsolete
+ obsolete
+
+
+ category.edit.partname_regex
+ Navnefilter
+
+
+
+
+ obsolete
+ obsolete
+
+
+ category.edit.default_description
+ Standardbeskrivelse
+
+
+
+
+ obsolete
+ obsolete
+
+
+ category.edit.default_description.placeholder
+ f.eks. kondensator, 10 mm x 10 mm, SMD
+
+
+
+
+ obsolete
+ obsolete
+
+
+ category.edit.default_comment
+ Standardkommentar
+
+
+
+
+ obsolete
+ obsolete
+
+
+ company.edit.address
+ Adresse
+
+
+
+
+ obsolete
+ obsolete
+
+
+ company.edit.address.placeholder
+ F. eks. Eksempelvej 314
+3140 Eksempelby
+
+
+
+
+ obsolete
+ obsolete
+
+
+ company.edit.phone_number
+ Telefonnummer
+
+
+
+
+ obsolete
+ obsolete
+
+
+ company.edit.phone_number.placeholder
+ f. eks. +45 1234 4321
+
+
+
+
+ obsolete
+ obsolete
+
+
+ company.edit.fax_number
+ Faxnummer
+
+
+
+
+ obsolete
+ obsolete
+
+
+ company.edit.email
+ e-mail
+
+
+
+
+ obsolete
+ obsolete
+
+
+ company.edit.email.placeholder
+ f.eks. kontakt@foo.bar
+
+
+
+
+ obsolete
+ obsolete
+
+
+ company.edit.website
+ Webside
+
+
+
+
+ obsolete
+ obsolete
+
+
+ company.edit.website.placeholder
+ https://www.foo.bar
+
+
+
+
+ obsolete
+ obsolete
+
+
+ company.edit.auto_product_url
+ Produkt URL
+
+
+
+
+ obsolete
+ obsolete
+
+
+ company.edit.auto_product_url.help
+ Dette felt benyttes til at knytte linke til en fabrikants komponentside Der vil %PARTNUMBER% så blive erstattet med ordrenummeret.
+
+
+
+
+ obsolete
+ obsolete
+
+
+ company.edit.auto_product_url.placeholder
+ https://foo.bar/product/%PARTNUMBER%
+
+
+
+
+ obsolete
+ obsolete
+
+
+ currency.edit.iso_code
+ ISO-kode
+
+
+
+
+ obsolete
+ obsolete
+
+
+ currency.edit.exchange_rate
+ Valutakurs
+
+
+
+
+ obsolete
+ obsolete
+
+
+ footprint.edit.3d_model
+ 3D-model
+
+
+
+
+ obsolete
+ obsolete
+
+
+ mass_creation.lines
+ Input
+
+
+
+
+ obsolete
+ obsolete
+
+
+ mass_creation.lines.placeholder
+ Element 1
+ Element 1.1
+ Element 1.1.1
+ Element 1.2
+Element 2
+Element 3
+
+
+
+
+ obsolete
+ obsolete
+
+
+ entity.mass_creation.btn
+ Opret
+
+
+
+
+ obsolete
+ obsolete
+
+
+ measurement_unit.edit.is_integer
+ er heltal
+
+
+
+
+ obsolete
+ obsolete
+
+
+ measurement_unit.edit.is_integer.help
+ Når denne option er aktiveret, vil alle mængder i denne enhed blive afrundet til hele tal.
+
+
+
+
+ obsolete
+ obsolete
+
+
+ measurement_unit.edit.use_si_prefix
+ Benyt SI prefix
+
+
+
+
+ obsolete
+ obsolete
+
+
+ measurement_unit.edit.use_si_prefix.help
+ Når denne option er aktiveret, bruges SI-præfikser, når tallene udlæses (f.eks. 1,2 kg i stedet for 1200 g)
+
+
+
+
+ obsolete
+ obsolete
+
+
+ measurement_unit.edit.unit_symbol
+ Enhedssymbol
+
+
+
+
+ obsolete
+ obsolete
+
+
+ measurement_unit.edit.unit_symbol.placeholder
+ f.eks. m
+
+
+
+
+ obsolete
+ obsolete
+
+
+ storelocation.edit.is_full.label
+ Lagerlokation er fyldt op
+
+
+
+
+ obsolete
+ obsolete
+
+
+ storelocation.edit.is_full.help
+ Når denne option er aktiveret, er det hverken muligt at tilføje nye komponenter til denne lagerplads eller at øge antallet af eksisterende komponenter.
+
+
+
+
+ obsolete
+ obsolete
+
+
+ storelocation.limit_to_existing.label
+ Kun eksisterende komponenter
+
+
+
+
+ obsolete
+ obsolete
+
+
+ storelocation.limit_to_existing.help
+ Når denne option er aktiveret, er det ikke muligt at tilføje nye komponenter til denne lagerplads, men det er muligt at øge antallet af eksisterende komponenter.
+
+
+
+
+ obsolete
+ obsolete
+
+
+ storelocation.only_single_part.label
+ Kun en komponent
+
+
+
+
+ obsolete
+ obsolete
+
+
+ storelocation.only_single_part.help
+ Hvis denne option er aktiveret, kan denne lagerplads kun indeholde en enkelt komponent, men i en hvilken som helst mængde. Nyttigt til små SMD-rum eller fødere.
+
+
+
+
+ obsolete
+ obsolete
+
+
+ storelocation.storage_type.label
+ Lagertype
+
+
+
+
+ obsolete
+ obsolete
+
+
+ storelocation.storage_type.help
+ Her kan du vælge en måleenhed, som en komponent skal have, så den kan opbevares på denne lagerplads.
+
+
+
+
+ obsolete
+ obsolete
+
+
+ supplier.edit.default_currency
+ Standardvaluta
+
+
+
+
+ obsolete
+ obsolete
+
+
+ supplier.shipping_costs.label
+ Forsendelsesomkostninger
+
+
+
+
+ obsolete
+ obsolete
+
+
+ user.username.placeholder
+ f.eks. j.doe
+
+
+
+
+ obsolete
+ obsolete
+
+
+ user.firstName.placeholder
+ f.eks. John
+
+
+
+
+ obsolete
+ obsolete
+
+
+ user.lastName.placeholder
+ f.eks. Doe
+
+
+
+
+ obsolete
+ obsolete
+
+
+ user.email.placeholder
+ j.doe@ecorp.com
+
+
+
+
+ obsolete
+ obsolete
+
+
+ user.department.placeholder
+ f.eks. Udvikling
+
+
+
+
+ obsolete
+ obsolete
+
+
+ user.settings.pw_new.label
+ Nyt pasword
+
+
+
+
+ obsolete
+ obsolete
+
+
+ user.settings.pw_confirm.label
+ bekræft nyt password
+
+
+
+
+ obsolete
+ obsolete
+
+
+ user.edit.needs_pw_change
+ Bruger skal ændre password
+
+
+
+
+ obsolete
+ obsolete
+
+
+ user.edit.user_disabled
+ Bruger deaktiveret (login ikke muligt)
+
+
+
+
+ obsolete
+ obsolete
+
+
+ user.create
+ Opret bruger
+
+
+
+
+ obsolete
+ obsolete
+
+
+ user.edit.save
+ Gem
+
+
+
+
+ obsolete
+ obsolete
+
+
+ entity.edit.reset
+ Fortryd ændringer
+
+
+
+
+ templates\Parts\show_part_info.html.twig:166
+ obsolete
+ obsolete
+
+
+ part.withdraw.btn
+ Fjern
+
+
+
+
+ templates\Parts\show_part_info.html.twig:171
+ obsolete
+ obsolete
+
+
+ part.withdraw.comment:
+ Kommentar/formål
+
+
+
+
+ templates\Parts\show_part_info.html.twig:189
+ obsolete
+ obsolete
+
+
+ part.add.caption
+ Tilføj komponent
+
+
+
+
+ templates\Parts\show_part_info.html.twig:194
+ obsolete
+ obsolete
+
+
+ part.add.btn
+ Tilføj
+
+
+
+
+ templates\Parts\show_part_info.html.twig:199
+ obsolete
+ obsolete
+
+
+ part.add.comment
+ Kommentar/formål
+
+
+
+
+ templates\AdminPages\CompanyAdminBase.html.twig:15
+ obsolete
+ obsolete
+
+
+ admin.comment
+ Noter
+
+
+
+
+ src\Form\PartType.php:83
+ obsolete
+ obsolete
+
+
+ manufacturer_url.label
+ Producentlink
+
+
+
+
+ src\Form\PartType.php:66
+ obsolete
+ obsolete
+
+
+ part.description.placeholder
+ f.eks. NPN 45V 0,1A 0,5W
+
+
+
+
+ src\Form\PartType.php:69
+ obsolete
+ obsolete
+
+
+ part.instock.placeholder
+ f.eks. 10
+
+
+
+
+ src\Form\PartType.php:72
+ obsolete
+ obsolete
+
+
+ part.mininstock.placeholder
+ f.eks. 12
+
+
+
+
+ obsolete
+ obsolete
+
+
+ part.order.price_per
+ Stykpris
+
+
+
+
+ obsolete
+ obsolete
+
+
+ part.withdraw.caption
+ Fjern komponenter
+
+
+
+
+ obsolete
+ obsolete
+
+
+ datatable.datatable.lengthMenu
+ _MENU_
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.group.parts
+ Komponenter
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.group.structures
+ Datastrukturer
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.group.system
+ System
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.parts
+ Generelt
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.read
+ Vis
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.edit
+ Ret
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.create
+ Opret
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.part.move
+ Skift kategori
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.delete
+ Slet
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.part.search
+ Søg
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.part.all_parts
+ Liste over alle komponenter
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.part.no_price_parts
+ Komponenter uden prisinformation
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.part.obsolete_parts
+ Vis udgåede komponenter
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.part.unknown_instock_parts
+ Vis komponenter med ukendt lagerstatus
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.part.change_favorite
+ Ret favoritstatus
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.part.show_favorite
+ Vis favoritkomponenter
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.part.show_last_edit_parts
+ Vis nyligt redigerede/tilføjede komponenter
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.part.show_users
+ Vis den sidste bruger, der redigerede
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.part.show_history
+ Se historik
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.part.name
+ Navn
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.part.description
+ Beskrivelse
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.part.instock
+ På lager
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.part.mininstock
+ mindste lager
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.part.comment
+ Noter
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.part.storelocation
+ Lagerlokation
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.part.manufacturer
+ Fabrikant
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.part.orderdetails
+ Ordreinformation
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.part.prices
+ Pris
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.part.attachments
+ Bilag
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.part.order
+ Ordrer
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.storelocations
+ Lagerlokationer
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.move
+ Flyt
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.list_parts
+ Vis komponentliste
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.part.footprints
+ Footprints
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.part.categories
+ Kategorier
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.part.supplier
+ Leverandører
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.part.manufacturers
+ Fabrikant
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.projects
+ Projekter
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.part.attachment_types
+ bilagstype
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.tools.import
+ Import
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.tools.labels
+ Labels
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.tools.calculator
+ Modstandsberegner
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.tools.footprints
+ Footprints
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.tools.ic_logos
+ IC logoer
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.tools.statistics
+ Statistik
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.edit_permissions
+ Ret tilladelser
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.users.edit_user_name
+ Ret brugernavn
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.users.edit_change_group
+ Skift gruppe
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.users.edit_infos
+ Ret information
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.users.edit_permissions
+ Ret tilladelser
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.users.set_password
+ Skift password
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.users.change_user_settings
+ Ret brugerindstillinger
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.database.see_status
+ Vis status
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.database.update_db
+ Opdater database
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.database.read_db_settings
+ Vis indstillinger
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.database.write_db_settings
+ Ret indstillinger
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.config.read_config
+ Vis konfiguration
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.config.edit_config
+ Ret konfiguration
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.config.server_info
+ Server info
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.config.use_debug
+ Brug fejlfindingsværktøjer
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.show_logs
+ Vis logs
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.delete_logs
+ Slet log
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.self.edit_infos
+ Ret info
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.self.edit_username
+ Ret brugernavn
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.self.show_permissions
+ Vis tilladelser
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.self.show_logs
+ Se log
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.self.create_labels
+ Opret labels
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.self.edit_options
+ Ret indstillinger
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.self.delete_profiles
+ Slet profiler
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.self.edit_profiles
+ Ret profiler
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.part.tools
+ Værktøjer
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.groups
+ Grupper
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.users
+ Brugere
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.database
+ Database
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.config
+ Instilinger
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.system
+ System
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.self
+ Ret din egen bruger
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.labels
+ Labels
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.part.category
+ Kategori
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.part.minamount
+ Mindstebeholdning
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.part.footprint
+ Footprint
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.part.mpn
+ MPN
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.part.status
+ Fremstillingsstatus
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.part.tags
+ Tags
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.part.unit
+ Måleenhed
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.part.mass
+ Vægt
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.part.lots
+ Lagerlokationer
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.show_users
+ Vis den sidste bruger, der redigerede
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.currencies
+ Valuta
+
+
+
+
+ obsolete
+ obsolete
+
+
+ perm.measurement_units
+ Måleenhed
+
+
+
+
+ obsolete
+ obsolete
+
+
+ user.settings.pw_old.label
+ Gammelt password
+
+
+
+
+ obsolete
+ obsolete
+
+
+ pw_reset.submit
+ Nulstil password
+
+
+
+
+ obsolete
+ obsolete
+
+
+ u2f_two_factor
+ Sikkerhedsnøgle (U2F)
+
+
+
+
+ obsolete
+ obsolete
+
+
+ google
+ Google
+
+
+
+
+ tfa.provider.webauthn_two_factor_provider
+ Sikkerhedsnøgle
+
+
+
+
+ obsolete
+ obsolete
+
+
+ tfa.provider.google
+ Godkendelses-app
+
+
+
+
+ obsolete
+ obsolete
+
+
+ Login successful
+ Logget ind med succes
+
+
+
+
+ obsolete
+ obsolete
+
+
+ log.type.exception
+ Ubehandlet undtagelse (udfaset)
+
+
+
+
+ obsolete
+ obsolete
+
+
+ log.type.user_login
+ Bruger logget ind
+
+
+
+
+ obsolete
+ obsolete
+
+
+ log.type.user_logout
+ Bruger logget ud
+
+
+
+
+ obsolete
+ obsolete
+
+
+ log.type.unknown
+ Ukendt
+
+
+
+
+ obsolete
+ obsolete
+
+
+ log.type.element_created
+ Element oprettet
+
+
+
+
+ obsolete
+ obsolete
+
+
+ log.type.element_edited
+ Element rettet
+
+
+
+
+ obsolete
+ obsolete
+
+
+ log.type.element_deleted
+ Element slettet
+
+
+
+
+ obsolete
+ obsolete
+
+
+ log.type.database_updated
+ Database er opdateret
+
+
+
+
+ obsolete
+
+
+ perm.revert_elements
+ Nulstil element
+
+
+
+
+ obsolete
+
+
+ perm.show_history
+ Vis historik
+
+
+
+
+ obsolete
+
+
+ perm.tools.lastActivity
+ Vis sidste aktivitet
+
+
+
+
+ obsolete
+
+
+ perm.tools.timeTravel
+ Vis tidligere versioner (tidsrejser)
+
+
+
+
+ obsolete
+
+
+ tfa_u2f.key_added_successful
+ Sikkerhedsnøgle tilføjet
+
+
+
+
+ obsolete
+
+
+ Username
+ Brugernavn
+
+
+
+
+ obsolete
+
+
+ log.type.security.google_disabled
+ Godkendelses-app deaktiveret
+
+
+
+
+ obsolete
+
+
+ log.type.security.u2f_removed
+ Sikkerhedsnøgle slettet
+
+
+
+
+ obsolete
+
+
+ log.type.security.u2f_added
+ Sikkerhedsnøgle tilføjet
+
+
+
+
+ obsolete
+
+
+ log.type.security.backup_keys_reset
+ Backupnøgler regenereret
+
+
+
+
+ obsolete
+
+
+ log.type.security.google_enabled
+ Godkendelses-app aktiveret
+
+
+
+
+ obsolete
+
+
+ log.type.security.password_changed
+ Password ændret
+
+
+
+
+ obsolete
+
+
+ log.type.security.trusted_device_reset
+ Godkendte enheder nulstillet
+
+
+
+
+ obsolete
+
+
+ log.type.collection_element_deleted
+ Hovedelement slettet
+
+
+
+
+ obsolete
+
+
+ log.type.security.password_reset
+ Nulstil password
+
+
+
+
+ obsolete
+
+
+ log.type.security.2fa_admin_reset
+ To-faktor-godkendelse nulstillet af administrator
+
+
+
+
+ obsolete
+
+
+ log.type.user_not_allowed
+ Forsøg på uautoriseret adgang
+
+
+
+
+ obsolete
+
+
+ log.database_updated.success
+ Succes
+
+
+
+
+ obsolete
+
+
+ label_options.barcode_type.2D
+ 2D
+
+
+
+
+ obsolete
+
+
+ label_options.barcode_type.1D
+ 1D
+
+
+
+
+ obsolete
+
+
+ perm.part.parameters
+ Parametre
+
+
+
+
+ obsolete
+
+
+ perm.attachment_show_private
+ Vis private bilag
+
+
+
+
+ obsolete
+
+
+ perm.tools.label_scanner
+ Labelscannner
+
+
+
+
+ obsolete
+
+
+ perm.self.read_profiles
+ Vis profiler
+
+
+
+
+ obsolete
+
+
+ perm.self.create_profiles
+ Opret profil
+
+
+
+
+ obsolete
+
+
+ perm.labels.use_twig
+ Brug Twig tilstand
+
+
+
+
+ label_profile.showInDropdown
+ Vis hurtigvalg i barcode
+
+
+
+
+ group.edit.enforce_2fa
+ Forlang to-faktor-godkendelse (2FA)
+
+
+
+
+ group.edit.enforce_2fa.help
+ Hvis denne option er valgt, skal hvert direkte medlem af denne gruppe konfigurere mindst en anden faktor til godkendelse. Anbefales f.eks. til administrative grupper med omfattende autorisationer.
+
+
+
+
+ selectpicker.empty
+ Ingenting valgt
+
+
+
+
+ selectpicker.nothing_selected
+ Ingenting valgt
+
+
+
+
+ entity.delete.must_not_contain_parts
+ Elementet "%PATH%" indeholder stadig komponenter. Rediger komponenterne for at kunne slette dette element.
+
+
+
+
+ entity.delete.must_not_contain_attachments
+ Filtypen indeholder stadig komponenter. Skift deres filtype for at kunne slette denne filtype.
+
+
+
+
+ entity.delete.must_not_contain_prices
+ Valuta indeholder stadig komponenter. Skift deres valuta for at kunne slette denne valuta.
+
+
+
+
+ entity.delete.must_not_contain_users
+ Der er stadigvæk brugere i denne gruppe. Vælg en anden gruppe for disse brugere for at kunne slette denne gruppe.
+
+
+
+
+ part.table.edit
+ Ret
+
+
+
+
+ part.table.edit.title
+ Ret komponent
+
+
+
+
+ part_list.action.action.title
+ Vælg handling
+
+
+
+
+ part_list.action.action.group.favorite
+ Favorit
+
+
+
+
+ part_list.action.action.favorite
+ Gør denne til favorit
+
+
+
+
+ part_list.action.action.unfavorite
+ Fjern favorit
+
+
+
+
+ part_list.action.action.group.change_field
+ Ret felt
+
+
+
+
+ part_list.action.action.change_category
+ Skift kategori
+
+
+
+
+ part_list.action.action.change_footprint
+ Ret footprint
+
+
+
+
+ part_list.action.action.change_manufacturer
+ Ret fabrikant
+
+
+
+
+ part_list.action.action.change_unit
+ Ret måleenhed
+
+
+
+
+ part_list.action.action.delete
+ Slet
+
+
+
+
+ part_list.action.submit
+ Ok
+
+
+
+
+ part_list.action.part_count
+ %count% komponenter valgt
+
+
+
+
+ company.edit.quick.website
+ Åbn webside
+
+
+
+
+ company.edit.quick.email
+ send e-mail
+
+
+
+
+ company.edit.quick.phone
+ Ring op
+
+
+
+
+ company.edit.quick.fax
+ Send fax
+
+
+
+
+ company.fax_number.placeholder
+ f.eks. +45 1234 5678
+
+
+
+
+ part.edit.save_and_clone
+ Gem og dupliker
+
+
+
+
+ validator.file_ext_not_allowed
+ Filtypenavnet er ikke tilladt for denne bilagstype.
+
+
+
+
+ tools.reel_calc.title
+ SMD-rulle beregner
+
+
+
+
+ tools.reel_calc.inner_dia
+ Indre diameter
+
+
+
+
+ tools.reel_calc.outer_dia
+ Ydre diameter
+
+
+
+
+ tools.reel_calc.tape_thick
+ Tape tykkelse
+
+
+
+
+ tools.reel_calc.part_distance
+ Komponentafstand
+
+
+
+
+ tools.reel_calc.update
+ Opdater
+
+
+
+
+ tools.reel_calc.parts_per_meter
+ Komponenter per meter
+
+
+
+
+ tools.reel_calc.result_length
+ Tapelængde
+
+
+
+
+ tools.reel_calc.result_amount
+ Omtrentligt antal komponenter
+
+
+
+
+ tools.reel_calc.outer_greater_inner_error
+ Fejl: Den ydre diameter skal være større end den indvendige diameter!
+
+
+
+
+ tools.reel_calc.missing_values.error
+ Angiv venligst alle værdier!
+
+
+
+
+ tools.reel_calc.load_preset
+ Indlæs preset
+
+
+
+
+ tools.reel_calc.explanation
+ Denne kalkulator giver dig mulighed for at estimere hvor mange komponenter der er tilbage på en SMD-rulle. Mål de angivne dimensioner på rullen (eller brug specifikationerne) og tryk på "Opdater".
+
+
+
+
+ perm.tools.reel_calculator
+ SMD-rulle kalkulator
+
+
+
+
+ tree.tools.tools.reel_calculator
+ SMD-rullle kalkulator
+
+
+
+
+ user.pw_change_needed.flash
+ Ændring af password påkrævet! Venligst vælg et nyt password.
+
+
+
+
+ tree.root_node.text
+ Rod
+
+
+
+
+ part_list.action.select_null
+ Ingen elementer tilstede!
+
+
+
+
+ part_list.action.delete-title
+ Vil du virkelig slette disse komponenter?
+
+
+
+
+ part_list.action.delete-message
+ Disse komponenter og alle tilknyttede oplysninger (bilag, vedhæftede filer, prisoplysninger osv.) slettes. Dette kan ikke fortrydes!
+
+
+
+
+ part.table.actions.success
+ Handling lykkedes med succes.
+
+
+
+
+ attachment.edit.delete.confirm
+ Er du sikker på, at du vil slette dette bilag?
+
+
+
+
+ filter.text_constraint.value.operator.EQ
+ Lig med
+
+
+
+
+ filter.text_constraint.value.operator.NEQ
+ Forskellig fra
+
+
+
+
+ filter.text_constraint.value.operator.STARTS
+ Begynder med
+
+
+
+
+ filter.text_constraint.value.operator.CONTAINS
+ Indeholder
+
+
+
+
+ filter.text_constraint.value.operator.ENDS
+ Slutter med
+
+
+
+
+ filter.text_constraint.value.operator.LIKE
+ LIKE udtryk
+
+
+
+
+ filter.text_constraint.value.operator.REGEX
+ Almindelig udtryk
+
+
+
+
+ filter.number_constraint.value.operator.BETWEEN
+ Mellem
+
+
+
+
+ filter.number_constraint.AND
+ og
+
+
+
+
+ filter.entity_constraint.operator.EQ
+ Lig med (uden underelementer)
+
+
+
+
+ filter.entity_constraint.operator.NEQ
+ Forskellig fra (uden underelementer)
+
+
+
+
+ filter.entity_constraint.operator.INCLUDING_CHILDREN
+ Lig med (inklusiv underelementer)
+
+
+
+
+ filter.entity_constraint.operator.EXCLUDING_CHILDREN
+ Forskellig fra (inklusiv underelementer)
+
+
+
+
+ part.filter.dbId
+ Database ID
+
+
+
+
+ filter.tags_constraint.operator.ANY
+ Alle tags
+
+
+
+
+ filter.tags_constraint.operator.ALL
+ Alle tags
+
+
+
+
+ filter.tags_constraint.operator.NONE
+ Ingen tags
+
+
+
+
+ part.filter.lot_count
+ Antal partier
+
+
+
+
+ part.filter.attachments_count
+ Antal bilag
+
+
+
+
+ part.filter.orderdetails_count
+ Antal bestillingsinformationer
+
+
+
+
+ part.filter.lotExpirationDate
+ Udløbsdato for komponentbeholdning
+
+
+
+
+ part.filter.lotNeedsRefill
+ Lagerbeholdning skal genopfyldes
+
+
+
+
+ part.filter.lotUnknwonAmount
+ Lagerbestand med ukendt antal
+
+
+
+
+ part.filter.attachmentName
+ Bilagsnavn
+
+
+
+
+ filter.choice_constraint.operator.ANY
+ En af de udvalgte
+
+
+
+
+ filter.choice_constraint.operator.NONE
+ Ingen af de udvalgte
+
+
+
+
+ part.filter.amount_sum
+ Samlet mængde
+
+
+
+
+ filter.submit
+ Updatér
+
+
+
+
+ filter.discard
+ Fortryd ændringer
+
+
+
+
+ filter.clear_filters
+ Slet alle filtre
+
+
+
+
+ filter.title
+ Filter
+
+
+
+
+ filter.parameter_value_constraint.operator.=
+ Typ. Værdi =
+
+
+
+
+ filter.parameter_value_constraint.operator.!=
+ Typ. Værdi !=
+
+
+
+
+ filter.parameter_value_constraint.operator.<
+ Typ. værdi <
+
+
+
+
+ filter.parameter_value_constraint.operator.>
+ Typ. værdi >
+
+
+
+
+ filter.parameter_value_constraint.operator.<=
+ Typ. værdi <=
+
+
+
+
+ filter.parameter_value_constraint.operator.>=
+ Typ. værdi >=
+
+
+
+
+ filter.parameter_value_constraint.operator.BETWEEN
+ Typ. værdi imellem
+
+
+
+
+ filter.parameter_value_constraint.operator.IN_RANGE
+ I værdiområdet
+
+
+
+
+ filter.parameter_value_constraint.operator.NOT_IN_RANGE
+ Ikke i værdiområdet
+
+
+
+
+ filter.parameter_value_constraint.operator.GREATER_THAN_RANGE
+ Større end værdiområdet
+
+
+
+
+ filter.parameter_value_constraint.operator.GREATER_EQUAL_RANGE
+ Større end eller lig med værdiområdet
+
+
+
+
+ filter.parameter_value_constraint.operator.LESS_THAN_RANGE
+ Mindre end værdiområdet
+
+
+
+
+ filter.parameter_value_constraint.operator.LESS_EQUAL_RANGE
+ Mindre end lig med værdiområdet
+
+
+
+
+ filter.parameter_value_constraint.operator.RANGE_IN_RANGE
+ helt indenfor værdiområdet
+
+
+
+
+ filter.parameter_value_constraint.operator.RANGE_INTERSECT_RANGE
+ Skærer værdiområdet
+
+
+
+
+ filter.text_constraint.value
+ Ingen værdi angivet
+
+
+
+
+ filter.number_constraint.value1
+ Ingen værdi angivet
+
+
+
+
+ filter.number_constraint.value2
+ Maksimalværdi
+
+
+
+
+ filter.datetime_constraint.value1
+ Ingen dato/tid indstillet
+
+
+
+
+ filter.datetime_constraint.value2
+ Maksimal dato/tid
+
+
+
+
+ filter.constraint.add
+ Tilføj filter
+
+
+
+
+ part.filter.parameters_count
+ Antal parametre
+
+
+
+
+ part.filter.lotDescription
+ Beskrivelse af komponentbeholdning
+
+
+
+
+ parts_list.search.searching_for
+ Søg i dele med søgeordet <b>%søgeord%</b>
+
+
+
+
+ parts_list.search_options.caption
+ Aktiverede søgemuligheder
+
+
+
+
+ attachment.table.element_type
+ Aktiverede søgemuligheder
+
+
+
+
+ log.level.debug
+ Debug
+
+
+
+
+ log.level.info
+ Info
+
+
+
+
+ log.level.notice
+ Meddelele
+
+
+
+
+ log.level.warning
+ Advarsel
+
+
+
+
+ log.level.error
+ Fejl
+
+
+
+
+ log.level.critical
+ Kritisk
+
+
+
+
+ log.level.alert
+ Alarm
+
+
+
+
+ log.level.emergency
+ Nødsituation
+
+
+
+
+ log.type.security
+ Sikkerhedsbegivenhed
+
+
+
+
+ log.type.instock_changed
+ [ALT] Beholdning ændret
+
+
+
+
+ log.target_id
+ ID for målelementet
+
+
+
+
+ entity.info.parts_count_recursive
+ Komponenter med dette element eller dets underelementer
+
+
+
+
+ tools.server_infos.title
+ Serverinfo
+
+
+
+
+ permission.preset.read_only
+ Read-only
+
+
+
+
+ permission.preset.read_only.desc
+ Tillad kun read-only for data
+
+
+
+
+ permission.preset.all_inherit
+ Alle nedarvede
+
+
+
+
+ permission.preset.all_inherit.desc
+ Indstil alle tilladelser til at kunne arve
+
+
+
+
+ permission.preset.all_forbid
+ Forbyd alle
+
+
+
+
+ permission.preset.all_forbid.desc
+ Indstil alle tilladelser til Ikke tilladt
+
+
+
+
+ permission.preset.all_allow
+ Tillad alle
+
+
+
+
+ permission.preset.all_allow.desc
+ Indstill alle tilladelser til Tilladt
+
+
+
+
+ perm.server_infos
+ Serverinfo
+
+
+
+
+ permission.preset.editor
+ Redaktør
+
+
+
+
+ permission.preset.editor.desc
+ Tillad at komponenter og datastrukturer kan redigeres
+
+
+
+
+ permission.preset.admin
+ Admin
+
+
+
+
+ permission.preset.admin.desc
+ Tillad administrative handlinger
+
+
+
+
+ permission.preset.button
+ Anvend skabelon
+
+
+
+
+ perm.attachments.show_private
+ Vis private bilag
+
+
+
+
+ perm.attachments.list_attachments
+ Se liste over alle bilag
+
+
+
+
+ user.edit.permission_success
+ Tilladelsesskabelon blev anvendt. Tjek, at de nye tilladelser lever op til dine forventninger.
+
+
+
+
+ perm.group.data
+ Data
+
+
+
+
+ part_list.action.action.group.needs_review
+ Gennemsyn nødvendigt
+
+
+
+
+ part_list.action.action.set_needs_review
+ Sæt status til Gennemgang nødvændig
+
+
+
+
+ part_list.action.action.unset_needs_review
+ Fjern Gennemganng nødvendig status
+
+
+
+
+ part.edit.ipn
+ Internt Partnummer (IPN)
+
+
+
+
+ part.ipn.not_defined
+ Ikke defineret
+
+
+
+
+ part.table.ipn
+ IPN
+
+
+
+
+ currency.edit.update_rate
+ Hent valutakurs
+
+
+
+
+ currency.edit.exchange_rate_update.unsupported_currency
+ Valutaen understøttes ikke af valutakursudbyderen. Tjek venligst konfigurationen af valutakursudbyderne.
+
+
+
+
+ currency.edit.exchange_rate_update.generic_error
+ Valutakursen kan kke hentes. Tjek venligst konfigurationen af valutakursudbyderne.
+
+
+
+
+ currency.edit.exchange_rate_updated.success
+ Valutakurs hentet med succes
+
+
+
+
+ project.bom.quantity
+ BOM mængde
+
+
+
+
+ project.bom.mountnames
+ Bestykningsnavn
+
+
+
+
+ project.bom.name
+ Navn
+
+
+
+
+ project.bom.comment
+ Noter
+
+
+
+
+ project.bom.part
+ Komponent
+
+
+
+
+ project.bom.add_entry
+ Tilføj post
+
+
+
+
+ part_list.action.group.projects
+ Projekter
+
+
+
+
+ part_list.action.projects.add_to_project
+ Tilføj komponent til projekt
+
+
+
+
+ project.bom.delete.confirm
+ Vil du virkeligt slette denne stykliste (BOM)?
+
+
+
+
+ project.add_parts_to_project
+ Tilføj komponenter til stykliste (BOM)
+
+
+
+
+ part.info.add_part_to_project
+ Føj denne komponent til et projekt
+
+
+
+
+ project_bom_entry.label
+ Registrering af BOM
+
+
+
+
+ project.edit.status
+ Projektstatus
+
+
+
+
+ project.status.draft
+ Kladde
+
+
+
+
+ project.status.planning
+ Under planlægning
+
+
+
+
+ project.status.in_production
+ I produktion
+
+
+
+
+ project.status.finished
+ Ophørt
+
+
+
+
+ project.status.archived
+ Arkiveret
+
+
+
+
+ part.new_build_part.error.build_part_already_exists
+ Dette projekt har allerede en linket komponent
+
+
+
+
+ project.edit.associated_build_part
+ Tilhørende bygge komponent
+
+
+
+
+ project.edit.associated_build_part.add
+ Tilføj bygge komponent
+
+
+
+
+ project.edit.associated_build.hint
+ Denne komponent repræsenterer de færdigbyggede forekomster af projektet, der er gemt et sted
+
+
+
+
+ part.info.projectBuildPart.hint
+ Denne komponent repræsenterer de byggede forekomster af det følgende projekt og er knyttet til det
+
+
+
+
+ part.is_build_part
+ Er produktkomponent
+
+
+
+
+ project.info.title
+ Projektinfo
+
+
+
+
+ project.info.bom_entries_count
+ Styklisteposter
+
+
+
+
+ project.info.sub_projects_count
+ Underprojekt
+
+
+
+
+ project.info.bom_add_parts
+ Tilføj nye styklisteposter
+
+
+
+
+ project.info.info.label
+ Info
+
+
+
+
+ project.info.sub_projects.label
+ Underprojekter
+
+
+
+
+ project.bom.price
+ Pris
+
+
+
+
+ part.info.withdraw_modal.title.withdraw
+ Fjern komponenter fra lot
+
+
+
+
+ part.info.withdraw_modal.title.add
+ Tilføj komponenter til lot
+
+
+
+
+ part.info.withdraw_modal.title.move
+ Flyt komponenter til et andet lot
+
+
+
+
+ part.info.withdraw_modal.amount
+ Mængde
+
+
+
+
+ part.info.withdraw_modal.move_to
+ Flyt til
+
+
+
+
+ part.info.withdraw_modal.comment
+ Kommentar
+
+
+
+
+ part.info.withdraw_modal.comment.hint
+ Du kan indtaste en kommentar her, der beskriver, hvorfor denne handling blev udført (f.eks. hvorfor denne komponent var nødvendig). Disse oplysninger gemmes i loggen.
+
+
+
+
+ modal.close
+ Luk
+
+
+
+
+ modal.submit
+ Indsend
+
+
+
+
+ part.withdraw.success
+ Komponenter blev fjernet/tilføjet/flyttet.
+
+
+
+
+ perm.parts_stock
+ Komponentbeholdning
+
+
+
+
+ perm.parts_stock.withdraw
+ Fjern komponenter fra lageret
+
+
+
+
+ perm.parts_stock.add
+ Tilføj komponenter til lager
+
+
+
+
+ perm.parts_stock.move
+ Flyt komponenter mellem lagerbeholdninger
+
+
+
+
+ user.permissions_schema_updated
+ Din brugerkontos tilladelsesliste er blevet opdateret til den seneste version.
+
+
+
+
+ log.type.part_stock_changed
+ Komponentbeholdning ændret
+
+
+
+
+ log.part_stock_changed.withdraw
+ Komponenter fjernet
+
+
+
+
+ log.part_stock_changed.add
+ Komponenter tilføjet til lager
+
+
+
+
+ log.part_stock_changed.move
+ Komponenter flyttet
+
+
+
+
+ log.part_stock_changed.comment
+ Kommentar
+
+
+
+
+ log.part_stock_changed.change
+ Ændring
+
+
+
+
+ log.part_stock_changed.move_target
+ Flyttet til
+
+
+
+
+ tools.builtin_footprints_viewer.title
+ Indbyggede Footprint billeder
+
+
+
+
+ tools.builtin_footprints_viewer.hint
+ Dette galleri viser alle de inkluderede footprint-billeder. Hvis du vil bruge det i et bilag, skal du skrive navnet (eller et nøgleord) i bilagets URL-felt og vælge det ønskede billede fra rullemenuen.
+
+
+
+
+ tools.ic_logos.title
+ IC logoer
+
+
+
+
+ part_list.action.group.labels
+ Labels
+
+
+
+
+ part_list.action.projects.generate_label
+ Opret labels (til komponenter)
+
+
+
+
+ part_list.action.projects.generate_label_lot
+ Opret labels (til komponentbeholdning)
+
+
+
+
+ part_list.action.generate_label.empty
+ Tom label
+
+
+
+
+ project.info.builds.label
+ Byg
+
+
+
+
+ project.builds.build_not_possible
+ Byg ikke mulig: Der er ikke nok komponenter tilsted for dette byg
+
+
+
+
+ project.builds.following_bom_entries_miss_instock
+ Følgende komponenter har ikke nok lagerbeholdning til at bygge dette projekt mindst én gang:
+
+
+
+
+ project.builds.stocked
+ På lager
+
+
+
+
+ project.builds.needed
+ Nødvendig
+
+
+
+
+ project.builds.build_possible
+ Der kan laves et byg
+
+
+
+
+ project.builds.number_of_builds_possible
+ Du har nok komponenter på lager til at bygge <b>%max_builds%</b> kopier af dette projekt.
+
+
+
+
+ project.builds.check_project_status
+ Den aktuelle projektstatus er <b>"%project_status%"</b>. Du bør tjekke, om du virkelig vil bygge projektet med denne status!
+
+
+
+
+ project.builds.following_bom_entries_miss_instock_n
+ Der er ikke nok komponenter på lager til at bygge dette projekt %number_of_builds% gange. Der er ikke nok af følgende komponenter på lager.
+
+
+
+
+ project.build.flash.invalid_input
+ Projektet kan ikke bygges. Tjek venligst dine input
+
+
+
+
+ project.build.required_qty
+ Nødvendigt antal
+
+
+
+
+ project.build.btn_build
+ Byg
+
+
+
+
+ project.build.help
+ Vælg fra hvilke lagre de komponenter, der kræves til bygget skal tages (og i hvilken mængde). Marker afkrydsningsfeltet for hver styklistepost, når du har fjernet komponenterne, eller brug det øverste afkrydsningsfelt til at markere alle felterne på én gang.
+
+
+
+
+ project.build.buildsPartLot.new_lot
+ Opret ny beholdning
+
+
+
+
+ project.build.add_builds_to_builds_part
+ Tilføj byg til projekt-byg-dele
+
+
+
+
+ project.build.builds_part_lot
+ Mål mængde
+
+
+
+
+ project.builds.number_of_builds
+ Byg antal
+
+
+
+
+ project.builds.no_stocked_builds
+ Antal gemte byg-instanser
+
+
+
+
+ user.change_avatar.label
+ Ændr profilbillede
+
+
+
+
+ user_settings.change_avatar.label
+ Ændre profilbillede
+
+
+
+
+ user_settings.remove_avatar.label
+ Fjern profilbillede
+
+
+
+
+ part.edit.name.category_hint
+ tip fra kategori
+
+
+
+
+ category.edit.partname_regex.placeholder
+ f.eks. "/Kondensator \d+ nF/i"
+
+
+
+
+ category.edit.partname_regex.help
+ Et PCRE-kompatibelt regulært udtryk, som delnavnet skal opfylde.
+
+
+
+
+ entity.select.add_hint
+ Brug -> for at oprette under-strukturer, f.eks. "Element 1->Element 1.1"
+
+
+
+
+ entity.select.group.new_not_added_to_DB
+ Ny (endnu ikke tilføjet til database)
+
+
+
+
+ part.edit.save_and_new
+ Gem og opret en ny tom komponent
+
+
+
+
+ homepage.first_steps.title
+ Første skridt
+
+
+
+
+ homepage.first_steps.introduction
+ Databasen er i øjeblikket tom. Du vil måske læse <a href="%url%">dokumentationen</a> eller begynde at oprette følgende datastrukturer.
+
+
+
+
+ homepage.first_steps.create_part
+ Eller du kan direkte oprette en <a href="%url%">ny komponent</a>.
+
+
+
+
+ homepage.first_steps.hide_hint
+ Denne meddelelse vil blive skjult, når du har oprettet den første komponent.
+
+
+
+
+ homepage.forum.text
+ For spørgsmål om Part-DB, brug <a class="link-external" rel="noopener" target="_blank" href="%href%">diskussionsforummet</a>
+
+
+
+
+ log.element_edited.changed_fields.category
+ Kategori
+
+
+
+
+ log.element_edited.changed_fields.footprint
+ Footprint
+
+
+
+
+ log.element_edited.changed_fields.manufacturer
+ Fabrikant
+
+
+
+
+ log.element_edited.changed_fields.value_typical
+ typ. værdi
+
+
+
+
+ log.element_edited.changed_fields.pw_reset_expires
+ Nulstil password
+
+
+
+
+ log.element_edited.changed_fields.comment
+ Noter
+
+
+
+
+ log.element_edited.changed_fields.supplierpartnr
+ Leverandør part-nummer
+
+
+
+
+ log.element_edited.changed_fields.supplier_product_url
+ Produkt URL
+
+
+
+
+ log.element_edited.changed_fields.price
+ Pris
+
+
+
+
+ log.element_edited.changed_fields.min_discount_quantity
+ Minimum ordremængde
+
+
+
+
+ log.element_edited.changed_fields.original_filename
+ Originalt bilagsnavn, filnavn
+
+
+
+
+ log.element_edited.changed_fields.path
+ Sti
+
+
+
+
+ log.element_edited.changed_fields.description
+ Beskrivelse
+
+
+
+
+ log.element_edited.changed_fields.manufacturing_status
+ Fabrikantstatus
+
+
+
+
+ log.element_edited.changed_fields.options.barcode_type
+ Barcode type
+
+
+
+
+ log.element_edited.changed_fields.status
+ Status
+
+
+
+
+ log.element_edited.changed_fields.quantity
+ BOM antal
+
+
+
+
+ log.element_edited.changed_fields.mountnames
+ Montagenavne
+
+
+
+
+ log.element_edited.changed_fields.name
+ Navn
+
+
+
+
+ log.element_edited.changed_fields.part
+ Komponent
+
+
+
+
+ log.element_edited.changed_fields.price_currency
+ prisens valuta
+
+
+
+
+ log.element_edited.changed_fields.partname_hint
+ Komponentnavn henvisning
+
+
+
+
+ log.element_edited.changed_fields.partname_regex
+ Navnefilter
+
+
+
+
+ log.element_edited.changed_fields.disable_footprints
+ Deaktiver footprints
+
+
+
+
+ log.element_edited.changed_fields.disable_manufacturers
+ Deaktiver fabrikanter
+
+
+
+
+ log.element_edited.changed_fields.disable_autodatasheets
+ Deaktiver automatiske databladlinks
+
+
+
+
+ log.element_edited.changed_fields.disable_properties
+ Deaktiver egenskaber
+
+
+
+
+ log.element_edited.changed_fields.default_description
+ Standardbeskrivelse
+
+
+
+
+ log.element_edited.changed_fields.default_comment
+ Standardkommentar
+
+
+
+
+ log.element_edited.changed_fields.filetype_filter
+ Tilladte bilagstyper
+
+
+
+
+ log.element_edited.changed_fields.not_selectable
+ Ikke valgt
+
+
+
+
+ log.element_edited.changed_fields.parent
+ Overordnet element
+
+
+
+
+ log.element_edited.changed_fields.shipping_costs
+ Forsendelsespris
+
+
+
+
+ log.element_edited.changed_fields.default_currency
+ Standard valuta
+
+
+
+
+ log.element_edited.changed_fields.address
+ Adresse
+
+
+
+
+ log.element_edited.changed_fields.phone_number
+ Telefonnummer
+
+
+
+
+ log.element_edited.changed_fields.fax_number
+ Fax nummer
+
+
+
+
+ log.element_edited.changed_fields.email_address
+ e-mail
+
+
+
+
+ log.element_edited.changed_fields.website
+ Webside
+
+
+
+
+ log.element_edited.changed_fields.auto_product_url
+ Produkt URL
+
+
+
+
+ log.element_edited.changed_fields.is_full
+ Lagerplads fuld
+
+
+
+
+ log.element_edited.changed_fields.limit_to_existing_parts
+ Kun eksisterende komponenter
+
+
+
+
+ log.element_edited.changed_fields.only_single_part
+ Kun én komponent
+
+
+
+
+ log.element_edited.changed_fields.storage_type
+ Lagertype
+
+
+
+
+ log.element_edited.changed_fields.footprint_3d
+ 3D-model
+
+
+
+
+ log.element_edited.changed_fields.master_picture_attachment
+ Miniaturebillede
+
+
+
+
+ log.element_edited.changed_fields.exchange_rate
+ Veksel kurs
+
+
+
+
+ log.element_edited.changed_fields.iso_code
+ ISO-kode
+
+
+
+
+ log.element_edited.changed_fields.unit
+ Enhedssymbol
+
+
+
+
+ log.element_edited.changed_fields.is_integer
+ Er heltal
+
+
+
+
+ log.element_edited.changed_fields.use_si_prefix
+ Benyt SI-præfiks
+
+
+
+
+ log.element_edited.changed_fields.options.width
+ Bredde
+
+
+
+
+ log.element_edited.changed_fields.options.height
+ Højde
+
+
+
+
+ log.element_edited.changed_fields.options.supported_element
+ Elementtype
+
+
+
+
+ log.element_edited.changed_fields.options.additional_css
+ Yderligere CSS
+
+
+
+
+ log.element_edited.changed_fields.options.lines
+ Indhold
+
+
+
+
+ log.element_edited.changed_fields.permissions.data
+ Tilladelser
+
+
+
+
+ log.element_edited.changed_fields.disabled
+ Deaktiveret
+
+
+
+
+ log.element_edited.changed_fields.theme
+ Tema
+
+
+
+
+ log.element_edited.changed_fields.timezone
+ Tidszone
+
+
+
+
+ log.element_edited.changed_fields.language
+ Sprog
+
+
+
+
+ log.element_edited.changed_fields.email
+ e-mail
+
+
+
+
+ log.element_edited.changed_fields.department
+ Afdeling
+
+
+
+
+ log.element_edited.changed_fields.last_name
+ Fornavn
+
+
+
+
+ log.element_edited.changed_fields.first_name
+ Efternavn
+
+
+
+
+ log.element_edited.changed_fields.group
+ Gruppe
+
+
+
+
+ log.element_edited.changed_fields.currency
+ foretrukken valuta
+
+
+
+
+ log.element_edited.changed_fields.enforce2FA
+ Fremtving 2FA
+
+
+
+
+ log.element_edited.changed_fields.symbol
+ Symbol
+
+
+
+
+ log.element_edited.changed_fields.value_min
+ Minimum værdi
+
+
+
+
+ log.element_edited.changed_fields.value_max
+ Maksimum værdi
+
+
+
+
+ log.element_edited.changed_fields.value_text
+ Tekstværdi
+
+
+
+
+ log.element_edited.changed_fields.show_in_table
+ Vis på tabelform
+
+
+
+
+ log.element_edited.changed_fields.attachment_type
+ Datatype
+
+
+
+
+ log.element_edited.changed_fields.needs_review
+ Behøver gennemgang
+
+
+
+
+ log.element_edited.changed_fields.tags
+ Tags
+
+
+
+
+ log.element_edited.changed_fields.mass
+ Masse
+
+
+
+
+ log.element_edited.changed_fields.ipn
+ IPN
+
+
+
+
+ log.element_edited.changed_fields.favorite
+ Favorit
+
+
+
+
+ log.element_edited.changed_fields.minamount
+ Minimum lagerbeholdning
+
+
+
+
+ log.element_edited.changed_fields.manufacturer_product_url
+ Link til produktside
+
+
+
+
+ log.element_edited.changed_fields.manufacturer_product_number
+ MPN
+
+
+
+
+ log.element_edited.changed_fields.partUnit
+ Måleenhed
+
+
+
+
+ log.element_edited.changed_fields.expiration_date
+ Udløbsdato
+
+
+
+
+ log.element_edited.changed_fields.amount
+ Mængde
+
+
+
+
+ log.element_edited.changed_fields.storage_location
+ Lagerlokation
+
+
+
+
+ attachment.max_file_size
+ Maksimum bilagsstørrelse
+
+
+
+
+ user.saml_user
+ SSO / SAML Bruger
+
+
+
+
+ user.saml_user.pw_change_hint
+ Du bruger Single Sign-On (SSO) til at logge ind. Du kan derfor ikke konfigurere dit password og to-faktor godkendelse her. Brug i stedet det centrale websted for din SSO-udbyder!
+
+
+
+
+ login.sso_saml_login
+ Single Sign-On Login (SSO)
+
+
+
+
+ login.local_login_hint
+ Nedenstående formular kan kun bruges til at logge ind med en lokal bruger. Ønsker du i stedet at logge ind via single sign-on, skal du bruge knappen ovenfor.
+
+
+
+
+ part_list.action.action.export
+ Eksporter komponenter
+
+
+
+
+ part_list.action.export_json
+ Eksporter som JSON
+
+
+
+
+ part_list.action.export_csv
+ Eksporter som CSV
+
+
+
+
+ part_list.action.export_yaml
+ Esporter som YAML
+
+
+
+
+ part_list.action.export_xml
+ Eksporter som XML
+
+
+
+
+ parts.import.title
+ Importer kompenter
+
+
+
+
+ parts.import.errors.title
+ Problemer ved import
+
+
+
+
+ parts.import.flash.error
+ Der opstod fejl under eksport. Dette skyldes sandsynligvis fejlbehæftede data.
+
+
+
+
+ parts.import.format.auto
+ Automatisk (baseret på endelsen på bilagsnavnet)
+
+
+
+
+ parts.import.flash.error.unknown_format
+ Formatet kunne ikke bestemmes automatisk. Vælg venligst det korrekte format manuelt!
+
+
+
+
+ parts.import.flash.error.invalid_file
+ Bilaget er beskadiget/forkert formateret. Tjek, at du har valgt det rigtige format.
+
+
+
+
+ parts.import.part_category.label
+ Gennemtving kategori
+
+
+
+
+ parts.import.part_category.help
+ Hvis du vælger en kategori her, vil alle importerede komponenter blive tildelt denne kategori, uanset hvad der er i importdataene.
+
+
+
+
+ import.create_unknown_datastructures
+ Opret ukendte datastrukturer
+
+
+
+
+ import.create_unknown_datastructures.help
+ Hvis denne mulighed er valgt, oprettes automatisk datastrukturer (f.eks. kategorier, footprints osv.), som endnu ikke findes i databasen. Hvis denne mulighed ikke er valgt, vil kun datastrukturer, der allerede findes i databasen, blive brugt. Og hvis der ikke findes en passende struktur, vil det tilsvarende felt for komponenten stå tomt.
+
+
+
+
+ import.path_delimiter
+ Stibegrænser
+
+
+
+
+ import.path_delimiter.help
+ Afgrænseren bruges til at adskille de forskellige niveauer af datastrukturer (såsom kategorier, footprint osv.) i stispecifikationer.
+
+
+
+
+ parts.import.help_documentation
+ Se <a href="%link%">dokumentationen</a> for mere information om bilagsformatet.
+
+
+
+
+ parts.import.help
+ Med dette værktøj kan du importere komponenter fra eksisterende bilag. Komponenterne gemmes direkte i databasen (uden mulighed for at kontrollere dem igen på forhånd). Tjek venligst din importfil her, før du uploader!
+
+
+
+
+ parts.import.flash.success
+ Komponentimport lykkedes
+
+
+
+
+ parts.import.errors.imported_entities
+ Importerde komponenter
+
+
+
+
+ perm.import
+ Importer data
+
+
+
+
+ parts.import.part_needs_review.label
+ Marker alle komponenter som "Gennnemgang nødvendig"
+
+
+
+
+ parts.import.part_needs_review.help
+ Hvis denne mulighed er valgt, vil alle dele blive markeret som "Kræver gennemgang", uanset hvad der blev angivet i dataene.
+
+
+
+
+ project.bom_import.flash.success
+ %count% BOM Einträge erfolgreich importiert.
+
+Oversæt med stemmen
+44 / 5.000
+Oversættelsesresultater
+Oversættelsen
+%count% styklisteposter blev importeret.
+
+
+
+
+ project.bom_import.type
+ Typ
+
+
+
+
+ project.bom_import.type.kicad_pcbnew
+ KiCAD Pcbnew BOM (CSV fil)
+
+
+
+
+ project.bom_import.clear_existing_bom
+ let eksisterende styklisteposter før import
+
+
+
+
+ project.bom_import.clear_existing_bom.help
+ Hvis denne mulighed er valgt, vil alle styklisteposter, der allerede findes i projektet, blive slettet og overskrevet med de importerede styklistedata.
+
+
+
+
+ project.bom_import.flash.invalid_file
+ Filen kunne ikke importeres. Tjek, at du har valgt den korrekte bilagstype. Fejlmeddelelse: %message%
+
+
+
+
+ project.bom_import.flash.invalid_entries
+ Valideringsfejl! Tjek venligst den importerede fil!
+
+
+
+
+ project.import_bom
+ Importer stykliste til projekt
+
+
+
+
+ project.edit.bom.import_bom
+ Importer BOM
+
+
+
+
+ measurement_unit.new
+ Ny måleenhed
+
+
+
+
+ measurement_unit.edit
+ Ret måleenhed
+
+
+
+
+ user.aboutMe.label
+ Om mig
+
+
+
+
+ storelocation.owner.label
+ Ejer
+
+
+
+
+ storelocation.part_owner_must_match.label
+ Komponentejer skal matche lagerplaceringsejer
+
+
+
+
+ part_lot.owner
+ Ejer
+
+
+
+
+ part_lot.owner.help
+ Kun ejeren kan fjerne eller tilføje komponenter fra denne beholdning.
+
+
+
+
+ log.element_edited.changed_fields.owner
+ Ejer
+
+
+
+
+ log.element_edited.changed_fields.instock_unknown
+ Mængde ukendt
+
+
+
+
+ log.element_edited.changed_fields.needs_refill
+ Skal genopfyldes
+
+
+
+
+ part.withdraw.access_denied
+ Du er ikke autoriseret til at udføre den ønskede handling! Tjek venligst dine autorisationer og ejeren af komponentbeholdningen.
+
+
+
+
+ part.info.amount.less_than_desired
+ Mindre end ønsket
+
+
+
+
+ log.cli_user
+ CLI bruger
+
+
+
+
+ log.element_edited.changed_fields.part_owner_must_match
+ Komponentejeren skal svare til lagerstedets ejer!
+
+
+
+
+ part.filter.lessThanDesired
+ Mindre tilgængelig end ønsket (samlet mængde < minimumsmængde)
+
+
+
+
+ part.filter.lotOwner
+ Ejer af inventaret
+
+
+
+
+ user.show_email_on_profile.label
+ Vis e-mail adresse på den offenlige profilside
+
+
+
+
+ log.details.title
+ Log detaljer
+
+
+
+
+ log.user_login.login_from_ip
+ Login fra IP-Adresse
+
+
+
+
+ log.user_login.ip_anonymize_hint
+ Hvis de sidste cifre i IP-adressen mangler, aktiveres DSGV-tilstanden, hvor IP-adresserne anonymiseres.
+
+
+
+
+ log.user_not_allowed.unauthorized_access_attempt_to
+ Uautoriseret adgang forsøg på side
+
+
+
+
+ log.user_not_allowed.hint
+ Anmodningen blev blokeret. Der skulle ikke være behov for yderligere handling.
+
+
+
+
+ log.no_comment
+ Ingen kommentarer
+
+
+
+
+ log.element_changed.field
+ Felt
+
+
+
+
+ log.element_changed.data_before
+ Data før ændring
+
+
+
+
+ error_table.error
+ Der opstod en fejl under anmodningen.
+
+
+
+
+ part.table.invalid_regex
+ Ugyldigt regulært udtryk (regex)
+
+
+
+
+ log.element_changed.data_after
+ Data efter ændring
+
+
+
+
+ log.element_changed.diff
+ Forskel
+
+
+
+
+ log.undo.undo.short
+ Fortryd
+
+
+
+
+ log.undo.revert.short
+ Vend tilbage til version
+
+
+
+
+ log.view_version
+ Vis version
+
+
+
+
+ log.undo.undelete.short
+ Gendan
+
+
+
+
+ log.element_edited.changed_fields.id
+ ID
+
+
+
+
+ log.element_edited.changed_fields.id_owner
+ Ejer
+
+
+
+
+ log.element_edited.changed_fields.parent_id
+ Overordnet element
+
+
+
+
+ log.details.delete_entry
+ Slet logpost
+
+
+
+
+ log.delete.message.title
+ Vil du virkelig slette denne logpost?
+
+
+
+
+ log.delete.message
+ Hvis dette er en historikindgang for et element, vil sletning af det resultere i tab af historikdata! Dette kan give uventede resultater, når du bruger tidsrejsefunktionen.
+
+
+
+
+ log.collection_deleted.on_collection
+ i samling
+
+
+
+
+ log.element_edited.changed_fields.attachments
+ Bilag
+
+
+
+
+ tfa_u2f.add_key.registration_error
+ Der opstod en fejl under registrering af sikkerhedsnøgle. Prøv igen, eller brug en anden nøgle!
+
+
+
+
+ log.target_type.none
+ Ingen
+
+
+
+
+ ui.darkmode.light
+ Lys
+
+
+
+
+ ui.darkmode.dark
+ Mørk
+
+
+
+
+ ui.darkmode.auto
+ Auto (baseret på systemindstillinger)
+
+
+
+
+ label_generator.no_lines_given
+ Intet tekstindhold angivet! De oprettede etiketter vil være tomme.
+
+
+
+
+ user.password_strength.very_weak
+ Meget svag
+
+
+
+
+ user.password_strength.weak
+ Svag
+
+
+
+
+ user.password_strength.medium
+ Middel
+
+
+
+
+ user.password_strength.strong
+ Stærk
+
+
+
+
+ user.password_strength.very_strong
+ Meget stærk
+
+
+
+
+ perm.users.impersonate
+ Kopier en anden bruger
+
+
+
+
+ user.impersonated_by.label
+ Kopieret fra bruger
+
+
+
+
+ user.stop_impersonation
+ Afslut kopiering fra bruger
+
+
+
+
+ user.impersonate.btn
+ Kopier fra bruger
+
+
+
+
+ user.impersonate.confirm.title
+ Er du sikker på at du vil kopiere fra denne bruger?
+
+
+
+
+ user.impersonate.confirm.message
+ Dette vil blive logget. Du bør kun gøre dette med en grund.
+
+Bemærk venligst, at du ikke kan kopiere fra deaktiveret bruger. Hvis du prøver dette, vil du modtage en "Adgang nægtet"-meddelelse.
+
+
+
+
+ log.type.security.user_impersonated
+ Kopieret bruger
+
+
+
+
+ info_providers.providers_list.title
+ Kilder til information
+
+
+
+
+ info_providers.providers_list.active
+ Aktiv
+
+
+
+
+ info_providers.providers_list.disabled
+ Deaktiveret
+
+
+
+
+ info_providers.capabilities.basic
+ Basis
+
+
+
+
+ info_providers.capabilities.footprint
+ Footprint
+
+
+
+
+ info_providers.capabilities.picture
+ Billede
+
+
+
+
+ info_providers.capabilities.datasheet
+ Datablade
+
+
+
+
+ info_providers.capabilities.price
+ Pris
+
+
+
+
+ part.info_provider_reference.badge
+ Kilden til information, der bruges til at oprette denne komponent
+
+
+
+
+ part.info_provider_reference
+ Genereret fra informationskilde
+
+
+
+
+ oauth_client.connect.btn
+ Forbind OAuth
+
+
+
+
+ info_providers.table.provider.label
+ Kilde
+
+
+
+
+ info_providers.search.keyword
+ Søgeord
+
+
+
+
+ info_providers.search.submit
+ Søg
+
+
+
+
+ info_providers.search.providers.help
+ Vælg de informationskilder, der skal søges i.
+
+
+
+
+ info_providers.search.providers
+ Kilder
+
+
+
+
+ info_providers.search.info_providers_list
+ Se alle tilgængelige informationskilder
+
+
+
+
+ info_providers.search.title
+ Opret komponent vha. informationskilde
+
+
+
+
+ oauth_client.flash.connection_successful
+ Forbindelsen til OAuth-applikationen er etableret!
+
+
+
+
+ perm.part.info_providers
+ Informationskilder
+
+
+
+
+ perm.part.info_providers.create_parts
+ Opret komponenter
+
+
+
+
+ entity.edit.alternative_names.label
+ Alternativt navn
+
+
+
+
+ entity.edit.alternative_names.help
+ De alternative navne, der er angivet her, bruges til automatisk at vælge dette element baseret på data returneret fra informationskilder.
+
+
+
+
+ info_providers.form.help_prefix
+ Kilde
+
+
+
+
+ update_manager.new_version_available.title
+ Ny version tilgængelig
+
+
+
+
+ update_manager.new_version_available.text
+ En ny version af Part-DB er tilgængelig. Her finder du mere information
+
+
+
+
+ update_manager.new_version_available.only_administrators_can_see
+ Kun administratorer kan se denne meddelelse
+
+
+
+
+ perm.system.show_available_updates
+ Vis tilgængelige Part-DB opdateringer
+
+
+
+
+ user.settings.api_tokens
+ API token
+
+
+
+
+ user.settings.api_tokens.description
+ Ved at bruge et API-token kan andre applikationer få adgang til Part-DB med deres brugerrettigheder til at udføre forskellige handlinger ved hjælp af Part-DB REST API. Hvis du sletter et API-token, kan det program, der bruger token'et, ikke længere få adgang til Part-DB på dets vegne.
+
+
+
+
+ api_tokens.name
+ Navn
+
+
+
+
+ api_tokens.access_level
+ Adgangsniveau
+
+
+
+
+ api_tokens.expiration_date
+ Udløbsdato
+
+
+
+
+ api_tokens.added_date
+ Oprettet den
+
+
+
+
+ api_tokens.last_time_used
+ Sidste anvendelse
+
+
+
+
+ datetime.never
+ Aldrig
+
+
+
+
+ api_token.valid
+ Gyldig
+
+
+
+
+ api_token.expired
+ Udløbet
+
+
+
+
+ user.settings.show_api_documentation
+ Vis API dokumentation
+
+
+
+
+ api_token.create_new
+ Opret nyt API token
+
+
+
+
+ api_token.level.read_only
+ Read-only
+
+
+
+
+ api_token.level.edit
+ Ret
+
+
+
+
+ api_token.level.admin
+ Admin
+
+
+
+
+ api_token.level.full
+ Fuld
+
+
+
+
+ api_tokens.access_level.help
+ Dette giver dig mulighed for at begrænse, hvad API-tokenet giver adgang til. Adgang er altid begrænset af brugerens tilladelser.
+
+
+
+
+ api_tokens.expiration_date.help
+ Efter denne dato vil tokenet ikke længere være brugbart. Hvis dette felt efterlades tomt, vil tokenet aldrig udløbe.
+
+
+
+
+ api_tokens.your_token_is
+ Dit API token er
+
+
+
+
+ api_tokens.please_save_it
+ Gem venligst dette. Du vil ikke kunne se det igen!
+
+
+
+
+ api_tokens.create_new.back_to_user_settings
+ Tilbage til brugerindstillinger
+
+
+
+
+ project.build.dont_check_quantity
+ Kontrollerer ikke mængder
+
+
+
+
+ project.build.dont_check_quantity.help
+ Hvis denne mulighed er valgt, vil de valgte mængder blive fjernet fra lageret, uanset om der er flere eller færre komponenter, end der reelt er nødvendige for at bygge projektet.
+
+
+
+
+ part_list.action.invert_selection
+ Inverter valg
+
+
+
+
+ perm.api
+ API
+
+
+
+
+ perm.api.access_api
+ API adgang
+
+
+
+
+ perm.api.manage_tokens
+ Administrer API-tokens
+
+
+
+
+ user.settings.api_tokens.delete.title
+ Er du sikker på, at du vil slette dette API-token?
+
+
+
+
+ user.settings.api_tokens.delete
+ Slet
+
+
+
+
+ user.settings.api_tokens.delete.message
+ Den applikation, der bruger dette token, vil ikke længere have adgang til Part-DB. Dette kan ikke fortrydes!
+
+
+
+
+ api_tokens.deleted
+ API-token blev fjernet!
+
+
+
+
+ user.settings.api_tokens.no_api_tokens_yet
+ Ingen API-tokens er blevet oprettet endnu.
+
+
+
+
+ api_token.ends_with
+ Ender med
+
+
+
+
+ entity.select.creating_new_entities_not_allowed
+ Du er ikke autoriseret til at oprette nye elementer af denne type! Vælg venligst et givet element.
+
+
+
+
+ scan_dialog.mode
+ Barcode type
+
+
+
+
+ scan_dialog.mode.auto
+ Automatisk genkendelse
+
+
+
+
+ scan_dialog.mode.ipn
+ IPN barcode
+
+
+
+
+ scan_dialog.mode.internal
+ Part-DB barcode
+
+
+
+
+ part_association.label
+ Komponentforbindelse
+
+
+
+
+ part.edit.tab.associations
+ Forbundne komponenter
+
+
+
+
+ part_association.edit.other_part
+ Forbunden komponent
+
+
+
+
+ part_association.edit.type
+ type relation
+
+
+
+
+ part_association.edit.comment
+ Noter
+
+
+
+
+ part_association.edit.type.help
+ Her kan du vælge hvilken type forbindelse komponenterne har.
+
+
+
+
+ part_association.table.from_this_part
+ Links fra denne komponent til andre
+
+
+
+
+ part_association.table.from
+ Fra
+
+
+
+
+ part_association.table.type
+ Relation
+
+
+
+
+ part_association.table.to
+ Til
+
+
+
+
+ part_association.type.compatible
+ Er kompatibel med
+
+
+
+
+ part_association.table.to_this_part
+ Links til denne komponent fra andre
+
+
+
+
+ part_association.type.other
+ Andet (egen værdi)
+
+
+
+
+ part_association.type.supersedes
+ Erstatter
+
+
+
+
+ part_association.edit.other_type
+ brugerdefineret type
+
+
+
+
+ part_association.edit.delete.confirm
+ Er du sikker på, at du vil slette denne genvej? Dette kan ikke fortrydes.
+
+
+
+
+ part_lot.edit.advanced
+ Vis avancerede muligheder
+
+
+
+
+ part_lot.edit.vendor_barcode
+ Leverandør barcode
+
+
+
+
+ part_lot.edit.vendor_barcode.help
+ Hvis denne beholdning allerede har en stregkode (f.eks. påført af leverandøren), kan du indtaste stregkodens indhold her, så du kan finde denne beholdning ved at scanne stregkoden.
+
+
+
+
+ scan_dialog.mode.vendor
+ Leverandørstregkode (konfigureret i komponentbeholdning)
+
+
+
+
+ project.bom.instockAmount
+ Lagerantal
+
+
+
+
+ collection_type.new_element.tooltip
+ Dette element er nyoprettet og er endnu ikke gemt i databasen.
+
+
+
+
+ part.merge.title
+ Sammenflæt komponent
+
+
+
+
+ part.merge.title.into
+ sammen til
+
+
+
+
+ part.merge.confirm.title
+ Er du sikker på at du vil sammenflætte <b>%other%</b> til <b>%target%</b>?
+
+
+
+
+ part.merge.confirm.message
+ <b>%other%</b> vil blive slettet, og komponenten vil blive gemt med den viste informaton.
+
+
+
+
+ part.info.merge_modal.title
+ Sammenflæt kompontenter
+
+
+
+
+ part.info.merge_modal.other_part
+ Andet komponent
+
+
+
+
+ part.info.merge_modal.other_into_this
+ Sammenflet anden komponent ind i denne (slet anden komponent, behold denne)
+
+
+
+
+ part.info.merge_modal.this_into_other
+ Flet denne komponent til en anden (slet denne komponent, behold en anden)
+
+
+
+
+ part.info.merge_btn
+ Sammenflæt komponent
+
+
+
+
+ part.update_part_from_info_provider.btn
+ Opdater komponent fra informationskilden
+
+
+
+
+ info_providers.update_part.title
+ Opdater komponent fra informationskilden
+
+
+
+
+ part.merge.flash.please_review
+ Data er endnu ikke blevet gemt. Gennemgå ændringerne, og klik på Gem for at gemme dataene.
+
+
+
+
+ user.edit.flash.permissions_fixed
+ De nødvendige tilladelser til andre tilladelser manglede. Dette er blevet rettet. Tjek venligst, om tilladelserne svarer til dine krav.
+
+
+
+
+ permission.legend.dependency_note
+ Bemærk venligst, at nogle autorisationsoperationer afhænger af hinanden. Hvis du modtager en advarsel om, at manglende tilladelser er blevet rettet, og en tilladelse er blevet sat tilbage til tilladt, skal du også indstille den afhængige handling til forbudt. Afhængighederne er normalt placeret til højre for en operation.
+
+
+
+
+ log.part_stock_changed.timestamp
+ Tidspunkt
+
+
+
+
+ part.info.withdraw_modal.timestamp
+ Handlingstidspunkt
+
+
+
+
+ part.info.withdraw_modal.timestamp.hint
+ Dette felt giver dig mulighed for at angive den faktiske dato, da lageroperationen rent faktisk blev udført, ikke kun datoen, hvor den blev logget. Denne værdi gemmes i det ekstra felt i logposten.
+
+
+
+
+ part.info.withdraw_modal.delete_lot_if_empty
+ Slet denne beholdning, når den bliver tom under drift
+
+
+
+
+ info_providers.search.error.client_exception
+ Der opstod en fejl under kommunikationen med informationsudbyderen. Gennemgå konfigurationen for denne udbyder, og forny OAuth-token'erne, hvis det er muligt.
+
+
+
+
+ eda_info.reference_prefix.placeholder
+ f.eks. R
+
+
+
+
+ eda_info.reference_prefix
+ Referencepræfiks
+
+
+
+
+ eda_info.kicad_section.title
+ KiCad specifikke indstillinger
+
+
+
+
+ eda_info.value
+ Værdi
+
+
+
+
+ eda_info.value.placeholder
+ f.eks. 100n
+
+
+
+
+ eda_info.exclude_from_bom
+ Udelad komponent fra stykliste (BOM)
+
+
+
+
+ eda_info.exclude_from_board
+ Udelad komponent fra PCB/Print
+
+
+
+
+ eda_info.exclude_from_sim
+ Udelad komponent fra simulering
+
+
+
+
+ eda_info.kicad_symbol
+ KiCad diagramsymbol
+
+
+
+
+ eda_info.kicad_symbol.placeholder
+ f.eks. transistor_BJT:BC547
+
+
+
+
+ eda_info.kicad_footprint
+ KiCad footprint
+
+
+
+
+ eda_info.kicad_footprint.placeholder
+ f.eks. Package_TO_SOT_THT:TO-92
+
+
+
+
+ part.edit.tab.eda
+ EDA information
+
+
+
+
+ api.api_endpoints.title
+ API endpoint
+
+
+
+
+ api.api_endpoints.partdb
+ Part-DB API
+
+
+
+
+ api.api_endpoints.kicad_root_url
+ KiCad API root URL
+
+
+
+
+ eda_info.visibility
+ Gennemtving synlighed
+
+
+
+
+ eda_info.visibility.help
+ Som standard bestemmes synlighed automatisk i EDA-softwaren. Ved at bruge dette afkrydsningsfelt kan du tvinge komponenten til at være synlig eller usynlig.
+
+
+
+
+ part.withdraw.zero_amount
+ Du forsøgte at fjerne/tilføje en mængde sat til nul! Der blev ikke foretaget nogen handling.
+
+
+
+
diff --git a/translations/messages.de.xlf b/translations/messages.de.xlf
index 0723c50d..6399c0fc 100644
--- a/translations/messages.de.xlf
+++ b/translations/messages.de.xlf
@@ -6386,7 +6386,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr
log.user_login.ip
- IP:
+ IP
@@ -11803,5 +11803,395 @@ Bitte beachten Sie, dass Sie sich nicht als deaktivierter Benutzer ausgeben kön
Sie sind nicht berechtigt, neue Elemente dieses Typs anzulegen! Bitte wählen Sie ein vorgegebenes Element aus.
+
+
+ scan_dialog.mode
+ Barcode-Typ
+
+
+
+
+ scan_dialog.mode.auto
+ Automatische Erkennung
+
+
+
+
+ scan_dialog.mode.ipn
+ IPN Barcode
+
+
+
+
+ scan_dialog.mode.internal
+ Part-DB Barcode
+
+
+
+
+ part_association.label
+ Bauteileverknüpfung
+
+
+
+
+ part.edit.tab.associations
+ Verknüpfte Bauteile
+
+
+
+
+ part_association.edit.other_part
+ Verknüpftes Bauteil
+
+
+
+
+ part_association.edit.type
+ Art der Beziehung
+
+
+
+
+ part_association.edit.comment
+ Notizen
+
+
+
+
+ part_association.edit.type.help
+ Sie können hier auswählen, in welcher Art von Verbindung die Bauteile stehen.
+
+
+
+
+ part_association.table.from_this_part
+ Verknüpfungen von diesem Bauteil zu anderen
+
+
+
+
+ part_association.table.from
+ Von
+
+
+
+
+ part_association.table.type
+ Beziehung
+
+
+
+
+ part_association.table.to
+ Zu
+
+
+
+
+ part_association.type.compatible
+ Ist kompatibel mit
+
+
+
+
+ part_association.table.to_this_part
+ Verknüpfungen zu diesem Bauteil von anderen
+
+
+
+
+ part_association.type.other
+ Andere (eigener Wert)
+
+
+
+
+ part_association.type.supersedes
+ Ersetzt
+
+
+
+
+ part_association.edit.other_type
+ Selbstgewählte Beziehung
+
+
+
+
+ part_association.edit.delete.confirm
+ Möchten Sie diese Verknüpfung wirklich löschen? Dies kann nicht rückgängig gemacht werden.
+
+
+
+
+ part_lot.edit.advanced
+ Erweiterte Optionen zeigen
+
+
+
+
+ part_lot.edit.vendor_barcode
+ Lieferanten Barcode
+
+
+
+
+ part_lot.edit.vendor_barcode.help
+ Wenn dieser Bestand bereits ein Barcode hat (der z.B. vom Lieferanten aufgebracht wurde), können Sie hier den Inhalt des Barcodes angeben, damit Sie diesen Bestand durch scannen des Barcodes finden.
+
+
+
+
+ scan_dialog.mode.vendor
+ Lieferanten Barcode (in Bauteilebestand konfiguriert)
+
+
+
+
+ project.bom.instockAmount
+ Bestand im Lager
+
+
+
+
+ collection_type.new_element.tooltip
+ Dieses Element wurde neu erstellt und ist noch nicht in der Datenbank gespeichert.
+
+
+
+
+ part.merge.title
+ Führe Bauteil
+
+
+
+
+ part.merge.title.into
+ zusammen in
+
+
+
+
+ part.merge.confirm.title
+ Möchten Sie wirklich <b>%other%</b> in <b>%target%</b> zusammenführen?
+
+
+
+
+ part.merge.confirm.message
+ <b>%other%</b> wird gelöscht, und das aktuelle Bauteil wird mit den angezeigten Daten gespeichert.
+
+
+
+
+ part.info.merge_modal.title
+ Bauteile zusammenführen
+
+
+
+
+ part.info.merge_modal.other_part
+ Anderes Bauteil
+
+
+
+
+ part.info.merge_modal.other_into_this
+ Führe anderes Bauteil in diesem zusammen (anderes Bauteil löschen, dieses behalten)
+
+
+
+
+ part.info.merge_modal.this_into_other
+ Führe dieses Bauteil in anderem zusammen (dieses Bauteil löschen, anderes behalten)
+
+
+
+
+ part.info.merge_btn
+ Bauteil zusammenführen
+
+
+
+
+ part.update_part_from_info_provider.btn
+ Bauteil aus Informationsquelle aktualisieren
+
+
+
+
+ info_providers.update_part.title
+ Bauteil aus Informationsquelle aktualisieren
+
+
+
+
+ part.merge.flash.please_review
+ Daten wurden noch nicht gespeichert. Bitte überprüfen Sie die Änderungen und klicken Sie speichern, um die Daten zu sichern.
+
+
+
+
+ user.edit.flash.permissions_fixed
+ Berechtigungen, die für andere Berechtigungen erforderlich sind, fehlten. Dies wurde korrigiert. Bitte prüfen Sie, ob die Berechtigungen Ihren Vorstellungen entsprechen.
+
+
+
+
+ permission.legend.dependency_note
+ Bitte beachten Sie, dass einige Berechtigungsoperationen voneinander abhängen. Wenn Sie eine Warnung erhalten, dass fehlende Berechtigungen korrigiert wurden und eine Berechtigung wieder auf erlaubt gesetzt wurde, müssen Sie die abhängige Operation ebenfalls auf verboten setzen. Die Abhängigkeiten befinden sich normalerweise rechts von einer Operation.
+
+
+
+
+ log.part_stock_changed.timestamp
+ Zeitpunkt
+
+
+
+
+ part.info.withdraw_modal.timestamp
+ Aktionszeitpunkt
+
+
+
+
+ part.info.withdraw_modal.timestamp.hint
+ In diesem Feld können Sie das tatsächliche Datum angeben, an dem die Lageroperation tatsächlich durchgeführt wurde, und nicht nur das Datum, an dem sie protokolliert wurde. Dieser Wert wird im Extrafeld des Logeintrags gespeichert.
+
+
+
+
+ part.info.withdraw_modal.delete_lot_if_empty
+ Lösche diesen Bestand, wenn er durch Operation leer wird
+
+
+
+
+ info_providers.search.error.client_exception
+ Bei der Kommunikation mit dem Informationsanbieter ist ein Fehler aufgetreten. Überprüfen Sie die Konfiguration für diesen Anbieter und erneuern Sie die OAuth-Tokens, falls möglich.
+
+
+
+
+ eda_info.reference_prefix.placeholder
+ z. B. R
+
+
+
+
+ eda_info.reference_prefix
+ Referenzpräfix
+
+
+
+
+ eda_info.kicad_section.title
+ KiCad spezifische Einstellungen
+
+
+
+
+ eda_info.value
+ Wert
+
+
+
+
+ eda_info.value.placeholder
+ z.B. 100n
+
+
+
+
+ eda_info.exclude_from_bom
+ Bauteil von BOM ausschließen
+
+
+
+
+ eda_info.exclude_from_board
+ Bauteil von Platine ausschließen
+
+
+
+
+ eda_info.exclude_from_sim
+ Bauteil von Simulation ausschließen
+
+
+
+
+ eda_info.kicad_symbol
+ KiCad-Schaltsymbol
+
+
+
+
+ eda_info.kicad_symbol.placeholder
+ z.B. Transistor_BJT:BC547
+
+
+
+
+ eda_info.kicad_footprint
+ KiCad-Footprint
+
+
+
+
+ eda_info.kicad_footprint.placeholder
+ z.B. Package_TO_SOT_THT:TO-92
+
+
+
+
+ part.edit.tab.eda
+ EDA Informationen
+
+
+
+
+ api.api_endpoints.title
+ API Endpunkte
+
+
+
+
+ api.api_endpoints.partdb
+ Part-DB API
+
+
+
+
+ api.api_endpoints.kicad_root_url
+ KiCad API root URL
+
+
+
+
+ eda_info.visibility
+ Erzwinge Sichtbarkeit
+
+
+
+
+ eda_info.visibility.help
+ Standardmäßig wird die Sichtbarkeit innerhalb der EDA Software automatisch ermittelt. Mittels dieser Checkbox, lässt es sich erzwingen, dass das Bauteil sichtbar oder unsichtbar ist.
+
+
+
+
+ part.withdraw.zero_amount
+ Sie haben versucht eine Menge von Null zu entnehmen/hinzuzufügen! Es wurde keine Aktion durchgeführt.
+
+
+
+
+ login.flash.access_denied_please_login
+ Zugriff verweigert! Bitte melden Sie sich an, um fortzufahren.
+
+
diff --git a/translations/messages.en.xlf b/translations/messages.en.xlf
index a4d526a9..f6d876a3 100644
--- a/translations/messages.en.xlf
+++ b/translations/messages.en.xlf
@@ -7,7 +7,7 @@
Part-DB1\templates\AdminPages\AttachmentTypeAdmin.html.twig:4templates\AdminPages\AttachmentTypeAdmin.html.twig:4
-
+ attachment_type.captionFile types for attachments
@@ -17,7 +17,7 @@
Part-DB1\templates\AdminPages\AttachmentTypeAdmin.html.twig:12new
-
+ attachment_type.editEdit file type
@@ -27,7 +27,7 @@
Part-DB1\templates\AdminPages\AttachmentTypeAdmin.html.twig:16new
-
+ attachment_type.newNew file type
@@ -46,7 +46,7 @@
templates\base.html.twig:197templates\base.html.twig:225
-
+ category.labelpCategories
@@ -59,7 +59,7 @@
Part-DB1\templates\AdminPages\StorelocationAdmin.html.twig:11templates\AdminPages\CategoryAdmin.html.twig:8
-
+ admin.optionsOptions
@@ -72,7 +72,7 @@
Part-DB1\templates\AdminPages\CompanyAdminBase.html.twig:15templates\AdminPages\CategoryAdmin.html.twig:9
-
+ admin.advancedAdvanced
@@ -82,7 +82,7 @@
Part-DB1\templates\AdminPages\CategoryAdmin.html.twig:13new
-
+ category.editEdit category
@@ -92,7 +92,7 @@
Part-DB1\templates\AdminPages\CategoryAdmin.html.twig:17new
-
+ category.newNew category
@@ -102,7 +102,7 @@
Part-DB1\templates\AdminPages\CurrencyAdmin.html.twig:4Part-DB1\templates\AdminPages\CurrencyAdmin.html.twig:4
-
+ currency.captionCurrency
@@ -112,7 +112,7 @@
Part-DB1\templates\AdminPages\CurrencyAdmin.html.twig:12Part-DB1\templates\AdminPages\CurrencyAdmin.html.twig:12
-
+ currency.iso_code.captionISO code
@@ -122,7 +122,7 @@
Part-DB1\templates\AdminPages\CurrencyAdmin.html.twig:15Part-DB1\templates\AdminPages\CurrencyAdmin.html.twig:15
-
+ currency.symbol.captionCurrency symbol
@@ -132,7 +132,7 @@
Part-DB1\templates\AdminPages\CurrencyAdmin.html.twig:29new
-
+ currency.editEdit currency
@@ -142,7 +142,7 @@
Part-DB1\templates\AdminPages\CurrencyAdmin.html.twig:33new
-
+ currency.newNew currency
@@ -153,7 +153,7 @@
Part-DB1\templates\AdminPages\DeviceAdmin.html.twig:4templates\AdminPages\DeviceAdmin.html.twig:4
-
+ project.captionProject
@@ -163,7 +163,7 @@
Part-DB1\templates\AdminPages\DeviceAdmin.html.twig:8new
-
+ project.editEdit project
@@ -173,7 +173,7 @@
Part-DB1\templates\AdminPages\DeviceAdmin.html.twig:12new
-
+ project.newNew project
@@ -196,7 +196,7 @@
templates\base.html.twig:206templates\base.html.twig:237
-
+ search.placeholderSearch
@@ -212,7 +212,7 @@
templates\base.html.twig:193templates\base.html.twig:221
-
+ expandAllExpand All
@@ -228,7 +228,7 @@
templates\base.html.twig:194templates\base.html.twig:222
-
+ reduceAllReduce All
@@ -240,9 +240,9 @@
Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:54Part-DB1\templates\Parts\info\_sidebar.html.twig:4
-
+ part.info.timetravel_hint
- Please note that this feature is experimental, so the info may not be correct.]]>
+ This is how the part appeared before %timestamp%. <i>Please note that this feature is experimental, so the info may not be correct.</i>
@@ -251,7 +251,7 @@
Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:60templates\AdminPages\EntityAdminBase.html.twig:42
-
+ standard.labelProperties
@@ -262,7 +262,7 @@
Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:61templates\AdminPages\EntityAdminBase.html.twig:43
-
+ infos.labelInfo
@@ -273,7 +273,7 @@
Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:63new
-
+ history.labelHistory
@@ -284,7 +284,7 @@
Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:66templates\AdminPages\EntityAdminBase.html.twig:45
-
+ export.labelExport
@@ -295,7 +295,7 @@
Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:68templates\AdminPages\EntityAdminBase.html.twig:47
-
+ import_export.labelImport / Export
@@ -305,7 +305,7 @@
Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:69Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:69
-
+ mass_creation.labelMass creation
@@ -316,7 +316,7 @@
Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:82templates\AdminPages\EntityAdminBase.html.twig:59
-
+ admin.commonCommon
@@ -326,7 +326,7 @@
Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:86Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:86
-
+ admin.attachmentsAttachments
@@ -335,7 +335,7 @@
Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:90
-
+ admin.parametersParameters
@@ -346,7 +346,7 @@
Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:167templates\AdminPages\EntityAdminBase.html.twig:142
-
+ export_all.labelExport all elements
@@ -356,7 +356,7 @@
Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:185Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:173
-
+ mass_creation.helpEach line will be interpreted as a name of an element, which will be created. You can create nested structures by indentations.
@@ -367,7 +367,7 @@
Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:45templates\AdminPages\EntityAdminBase.html.twig:35
-
+ edit.captionEdit element "%name"
@@ -378,7 +378,7 @@
Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:50templates\AdminPages\EntityAdminBase.html.twig:37
-
+ new.captionNew element
@@ -393,7 +393,7 @@
templates\base.html.twig:199templates\base.html.twig:227
-
+ footprint.labelpFootprints
@@ -403,7 +403,7 @@
Part-DB1\templates\AdminPages\FootprintAdmin.html.twig:13new
-
+ footprint.editEdit footprint
@@ -413,7 +413,7 @@
Part-DB1\templates\AdminPages\FootprintAdmin.html.twig:17new
-
+ footprint.newNew footprint
@@ -423,7 +423,7 @@
Part-DB1\templates\AdminPages\GroupAdmin.html.twig:4Part-DB1\templates\AdminPages\GroupAdmin.html.twig:4
-
+ group.edit.captionGroups
@@ -435,7 +435,7 @@
Part-DB1\templates\AdminPages\GroupAdmin.html.twig:9Part-DB1\templates\AdminPages\UserAdmin.html.twig:16
-
+ user.edit.permissionsPermissions
@@ -445,7 +445,7 @@
Part-DB1\templates\AdminPages\GroupAdmin.html.twig:24new
-
+ group.editEdit group
@@ -455,7 +455,7 @@
Part-DB1\templates\AdminPages\GroupAdmin.html.twig:28new
-
+ group.newNew group
@@ -464,7 +464,7 @@
Part-DB1\templates\AdminPages\LabelProfileAdmin.html.twig:4
-
+ label_profile.captionLabel profiles
@@ -473,7 +473,7 @@
Part-DB1\templates\AdminPages\LabelProfileAdmin.html.twig:8
-
+ label_profile.advancedAdvanced
@@ -482,7 +482,7 @@
Part-DB1\templates\AdminPages\LabelProfileAdmin.html.twig:9
-
+ label_profile.commentNotes
@@ -492,7 +492,7 @@
Part-DB1\templates\AdminPages\LabelProfileAdmin.html.twig:55new
-
+ label_profile.editEdit label profile
@@ -502,7 +502,7 @@
Part-DB1\templates\AdminPages\LabelProfileAdmin.html.twig:59new
-
+ label_profile.newNew label profile
@@ -513,7 +513,7 @@
Part-DB1\templates\AdminPages\ManufacturerAdmin.html.twig:4templates\AdminPages\ManufacturerAdmin.html.twig:4
-
+ manufacturer.captionManufacturers
@@ -523,7 +523,7 @@
Part-DB1\templates\AdminPages\ManufacturerAdmin.html.twig:8new
-
+ manufacturer.editEdit manufacturer
@@ -533,7 +533,7 @@
Part-DB1\templates\AdminPages\ManufacturerAdmin.html.twig:12new
-
+ manufacturer.newNew manufacturer
@@ -543,7 +543,7 @@
Part-DB1\templates\AdminPages\MeasurementUnitAdmin.html.twig:4Part-DB1\templates\AdminPages\MeasurementUnitAdmin.html.twig:4
-
+ measurement_unit.captionMeasurement Unit
@@ -558,7 +558,7 @@
templates\base.html.twig:198templates\base.html.twig:226
-
+ storelocation.labelpStorage locations
@@ -568,7 +568,7 @@
Part-DB1\templates\AdminPages\StorelocationAdmin.html.twig:32new
-
+ storelocation.editEdit storage location
@@ -578,7 +578,7 @@
Part-DB1\templates\AdminPages\StorelocationAdmin.html.twig:36new
-
+ storelocation.newNew storage location
@@ -589,7 +589,7 @@
Part-DB1\templates\AdminPages\SupplierAdmin.html.twig:4templates\AdminPages\SupplierAdmin.html.twig:4
-
+ supplier.captionSuppliers
@@ -599,7 +599,7 @@
Part-DB1\templates\AdminPages\SupplierAdmin.html.twig:16new
-
+ supplier.editEdit supplier
@@ -609,7 +609,7 @@
Part-DB1\templates\AdminPages\SupplierAdmin.html.twig:20new
-
+ supplier.newNew supplier
@@ -619,7 +619,7 @@
Part-DB1\templates\AdminPages\UserAdmin.html.twig:8Part-DB1\templates\AdminPages\UserAdmin.html.twig:8
-
+ user.edit.captionUsers
@@ -629,7 +629,7 @@
Part-DB1\templates\AdminPages\UserAdmin.html.twig:14Part-DB1\templates\AdminPages\UserAdmin.html.twig:14
-
+ user.edit.configurationConfiguration
@@ -639,7 +639,7 @@
Part-DB1\templates\AdminPages\UserAdmin.html.twig:15Part-DB1\templates\AdminPages\UserAdmin.html.twig:15
-
+ user.edit.passwordPassword
@@ -649,7 +649,7 @@
Part-DB1\templates\AdminPages\UserAdmin.html.twig:45Part-DB1\templates\AdminPages\UserAdmin.html.twig:45
-
+ user.edit.tfa.captionTwo-factor authentication
@@ -659,7 +659,7 @@
Part-DB1\templates\AdminPages\UserAdmin.html.twig:47Part-DB1\templates\AdminPages\UserAdmin.html.twig:47
-
+ user.edit.tfa.google_activeAuthenticator app active
@@ -673,7 +673,7 @@
Part-DB1\templates\Users\backup_codes.html.twig:15Part-DB1\templates\Users\_2fa_settings.html.twig:95
-
+ tfa_backup.remaining_tokensRemaining backup codes count
@@ -687,7 +687,7 @@
Part-DB1\templates\Users\backup_codes.html.twig:17Part-DB1\templates\Users\_2fa_settings.html.twig:96
-
+ tfa_backup.generation_dateGeneration date of the backup codes
@@ -699,7 +699,7 @@
Part-DB1\templates\AdminPages\UserAdmin.html.twig:53Part-DB1\templates\AdminPages\UserAdmin.html.twig:60
-
+ user.edit.tfa.disabledMethod not enabled
@@ -709,7 +709,7 @@
Part-DB1\templates\AdminPages\UserAdmin.html.twig:56Part-DB1\templates\AdminPages\UserAdmin.html.twig:56
-
+ user.edit.tfa.u2f_keys_countActive security keys
@@ -719,7 +719,7 @@
Part-DB1\templates\AdminPages\UserAdmin.html.twig:72Part-DB1\templates\AdminPages\UserAdmin.html.twig:72
-
+ user.edit.tfa.disable_tfa_titleDo you really want to proceed?
@@ -729,12 +729,12 @@
Part-DB1\templates\AdminPages\UserAdmin.html.twig:72Part-DB1\templates\AdminPages\UserAdmin.html.twig:72
-
+ user.edit.tfa.disable_tfa_message
- all active two-factor authentication methods of the user and delete the backup codes!
-
-The user will have to set up all two-factor authentication methods again and print new backup codes!
-Only do this if you are absolutely sure about the identity of the user (seeking help), otherwise the account could be compromised by an attacker!]]>
+ This will disable <b>all active two-factor authentication methods of the user</b> and delete the <b>backup codes</b>!
+<br>
+The user will have to set up all two-factor authentication methods again and print new backup codes! <br><br>
+<b>Only do this if you are absolutely sure about the identity of the user (seeking help), otherwise the account could be compromised by an attacker!</b>
@@ -742,7 +742,7 @@ The user will have to set up all two-factor authentication methods again and pri
Part-DB1\templates\AdminPages\UserAdmin.html.twig:73Part-DB1\templates\AdminPages\UserAdmin.html.twig:73
-
+ user.edit.tfa.disable_tfa.btnDisable all two-factor authentication methods
@@ -752,7 +752,7 @@ The user will have to set up all two-factor authentication methods again and pri
Part-DB1\templates\AdminPages\UserAdmin.html.twig:85new
-
+ user.editEdit user
@@ -762,7 +762,7 @@ The user will have to set up all two-factor authentication methods again and pri
Part-DB1\templates\AdminPages\UserAdmin.html.twig:89new
-
+ user.newNew user
@@ -775,7 +775,7 @@ The user will have to set up all two-factor authentication methods again and pri
Part-DB1\templates\Parts\edit\_attachments.html.twig:4Part-DB1\templates\Parts\info\_attachments_info.html.twig:63
-
+ attachment.deleteDelete
@@ -789,7 +789,7 @@ The user will have to set up all two-factor authentication methods again and pri
Part-DB1\templates\Parts\edit\_attachments.html.twig:38Part-DB1\src\DataTables\AttachmentDataTable.php:159
-
+ attachment.externalExternal
@@ -801,7 +801,7 @@ The user will have to set up all two-factor authentication methods again and pri
Part-DB1\templates\AdminPages\_attachments.html.twig:47Part-DB1\templates\Parts\edit\_attachments.html.twig:45
-
+ attachment.preview.altAttachment thumbnail
@@ -815,7 +815,7 @@ The user will have to set up all two-factor authentication methods again and pri
Part-DB1\templates\Parts\edit\_attachments.html.twig:48Part-DB1\templates\Parts\info\_attachments_info.html.twig:45
-
+ attachment.viewView
@@ -831,7 +831,7 @@ The user will have to set up all two-factor authentication methods again and pri
Part-DB1\templates\Parts\info\_attachments_info.html.twig:38Part-DB1\src\DataTables\AttachmentDataTable.php:166
-
+ attachment.file_not_foundFile not found
@@ -843,7 +843,7 @@ The user will have to set up all two-factor authentication methods again and pri
Part-DB1\templates\Parts\info\_attachments_info.html.twig:48Part-DB1\templates\Parts\edit\_attachments.html.twig:62
-
+ attachment.securePrivate attachment
@@ -855,7 +855,7 @@ The user will have to set up all two-factor authentication methods again and pri
Part-DB1\templates\AdminPages\_attachments.html.twig:77Part-DB1\templates\Parts\edit\_attachments.html.twig:75
-
+ attachment.createAdd attachment
@@ -869,7 +869,7 @@ The user will have to set up all two-factor authentication methods again and pri
Part-DB1\templates\Parts\edit\_attachments.html.twig:80Part-DB1\templates\Parts\edit\_lots.html.twig:33
-
+ part_lot.edit.delete.confirmDo you really want to delete this stock? This can not be undone!
@@ -880,7 +880,7 @@ The user will have to set up all two-factor authentication methods again and pri
Part-DB1\templates\AdminPages\_delete_form.html.twig:2templates\AdminPages\_delete_form.html.twig:2
-
+ entity.delete.confirm_titleYou really want to delete %name%?
@@ -891,11 +891,11 @@ The user will have to set up all two-factor authentication methods again and pri
Part-DB1\templates\AdminPages\_delete_form.html.twig:3templates\AdminPages\_delete_form.html.twig:3
-
+ entity.delete.message
-
-Sub elements will be moved upwards.]]>
+ This can not be undone!
+<br>
+Sub elements will be moved upwards.
@@ -904,7 +904,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\AdminPages\_delete_form.html.twig:11templates\AdminPages\_delete_form.html.twig:9
-
+ entity.deleteDelete element
@@ -919,7 +919,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\src\Form\Part\PartBaseType.php:267new
-
+ edit.log_commentChange comment
@@ -930,7 +930,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\AdminPages\_delete_form.html.twig:24templates\AdminPages\_delete_form.html.twig:12
-
+ entity.delete.recursiveDelete recursive (all sub elements)
@@ -939,7 +939,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\AdminPages\_duplicate.html.twig:3
-
+ entity.duplicateDuplicate element
@@ -953,7 +953,7 @@ Sub elements will be moved upwards.]]>
templates\AdminPages\_export_form.html.twig:4src\Form\ImportType.php:67
-
+ export.formatFile format
@@ -964,7 +964,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\AdminPages\_export_form.html.twig:16templates\AdminPages\_export_form.html.twig:16
-
+ export.levelVerbosity level
@@ -975,7 +975,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\AdminPages\_export_form.html.twig:19templates\AdminPages\_export_form.html.twig:19
-
+ export.level.simpleSimple
@@ -986,7 +986,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\AdminPages\_export_form.html.twig:20templates\AdminPages\_export_form.html.twig:20
-
+ export.level.extendedExtended
@@ -997,7 +997,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\AdminPages\_export_form.html.twig:21templates\AdminPages\_export_form.html.twig:21
-
+ export.level.fullFull
@@ -1008,7 +1008,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\AdminPages\_export_form.html.twig:31templates\AdminPages\_export_form.html.twig:31
-
+ export.include_childrenInclude children elements in export
@@ -1019,7 +1019,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\AdminPages\_export_form.html.twig:39templates\AdminPages\_export_form.html.twig:39
-
+ export.btnExport
@@ -1038,7 +1038,7 @@ Sub elements will be moved upwards.]]>
templates\Parts\edit_part_info.html.twig:12templates\Parts\show_part_info.html.twig:11
-
+ id.labelID
@@ -1062,7 +1062,7 @@ Sub elements will be moved upwards.]]>
templates\AdminPages\EntityAdminBase.html.twig:101templates\Parts\show_part_info.html.twig:248
-
+ createdAtCreated At
@@ -1080,7 +1080,7 @@ Sub elements will be moved upwards.]]>
templates\AdminPages\EntityAdminBase.html.twig:114templates\Parts\show_part_info.html.twig:263
-
+ lastModifiedLast modified
@@ -1090,7 +1090,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\AdminPages\_info.html.twig:38Part-DB1\templates\AdminPages\_info.html.twig:38
-
+ entity.info.parts_countNumber of parts with this element
@@ -1101,7 +1101,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\helper.twig:125Part-DB1\templates\Parts\edit\_specifications.html.twig:6
-
+ specifications.propertyParameter
@@ -1111,7 +1111,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\AdminPages\_parameters.html.twig:7Part-DB1\templates\Parts\edit\_specifications.html.twig:7
-
+ specifications.symbolSymbol
@@ -1121,7 +1121,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\AdminPages\_parameters.html.twig:8Part-DB1\templates\Parts\edit\_specifications.html.twig:8
-
+ specifications.value_minMin.
@@ -1131,7 +1131,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\AdminPages\_parameters.html.twig:9Part-DB1\templates\Parts\edit\_specifications.html.twig:9
-
+ specifications.value_typTyp.
@@ -1141,7 +1141,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\AdminPages\_parameters.html.twig:10Part-DB1\templates\Parts\edit\_specifications.html.twig:10
-
+ specifications.value_maxMax.
@@ -1151,7 +1151,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\AdminPages\_parameters.html.twig:11Part-DB1\templates\Parts\edit\_specifications.html.twig:11
-
+ specifications.unitUnit
@@ -1161,7 +1161,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\AdminPages\_parameters.html.twig:12Part-DB1\templates\Parts\edit\_specifications.html.twig:12
-
+ specifications.textText
@@ -1171,7 +1171,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\AdminPages\_parameters.html.twig:13Part-DB1\templates\Parts\edit\_specifications.html.twig:13
-
+ specifications.groupGroup
@@ -1181,7 +1181,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\AdminPages\_parameters.html.twig:26Part-DB1\templates\Parts\edit\_specifications.html.twig:26
-
+ specification.createNew Parameter
@@ -1191,7 +1191,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\AdminPages\_parameters.html.twig:31Part-DB1\templates\Parts\edit\_specifications.html.twig:31
-
+ parameter.delete.confirmDo you really want to delete this parameter?
@@ -1201,7 +1201,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\attachment_list.html.twig:3Part-DB1\templates\attachment_list.html.twig:3
-
+ attachment.list.titleAttachments list
@@ -1215,7 +1215,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\LogSystem\_log_table.html.twig:8Part-DB1\templates\Parts\lists\_parts_list.html.twig:6
-
+ part_list.loading.captionLoading
@@ -1229,7 +1229,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\LogSystem\_log_table.html.twig:9Part-DB1\templates\Parts\lists\_parts_list.html.twig:7
-
+ part_list.loading.messageThis can take a moment. If this message do not disappear, try to reload the page.
@@ -1240,7 +1240,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\base.html.twig:68templates\base.html.twig:246
-
+ vendor.base.javascript_hintPlease activate Javascript to use all features!
@@ -1250,7 +1250,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\base.html.twig:73Part-DB1\templates\base.html.twig:73
-
+ sidebar.big.toggleShow/Hide sidebar
@@ -1261,7 +1261,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\base.html.twig:95templates\base.html.twig:271
-
+ loading.captionLoading:
@@ -1272,7 +1272,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\base.html.twig:96templates\base.html.twig:272
-
+ loading.messageThis can take a while. If this messages stays for a long time, try to reload the page.
@@ -1283,7 +1283,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\base.html.twig:101templates\base.html.twig:277
-
+ loading.barLoading...
@@ -1294,7 +1294,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\base.html.twig:112templates\base.html.twig:288
-
+ back_to_topBack to page's top
@@ -1304,7 +1304,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Form\permissionLayout.html.twig:35Part-DB1\templates\Form\permissionLayout.html.twig:35
-
+ permission.edit.permissionPermissions
@@ -1314,7 +1314,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Form\permissionLayout.html.twig:36Part-DB1\templates\Form\permissionLayout.html.twig:36
-
+ permission.edit.valueValue
@@ -1324,9 +1324,9 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Form\permissionLayout.html.twig:53Part-DB1\templates\Form\permissionLayout.html.twig:53
-
+ permission.legend.title
- Explanation of the states:
+ Explanation of the states
@@ -1334,7 +1334,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Form\permissionLayout.html.twig:57Part-DB1\templates\Form\permissionLayout.html.twig:57
-
+ permission.legend.disallowForbidden
@@ -1344,7 +1344,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Form\permissionLayout.html.twig:61Part-DB1\templates\Form\permissionLayout.html.twig:61
-
+ permission.legend.allowAllowed
@@ -1354,7 +1354,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Form\permissionLayout.html.twig:65Part-DB1\templates\Form\permissionLayout.html.twig:65
-
+ permission.legend.inheritInherit from (parent) group
@@ -1364,7 +1364,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\helper.twig:3Part-DB1\templates\helper.twig:3
-
+ bool.trueTrue
@@ -1374,7 +1374,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\helper.twig:5Part-DB1\templates\helper.twig:5
-
+ bool.falseFalse
@@ -1384,7 +1384,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\helper.twig:92Part-DB1\templates\helper.twig:87
-
+ YesYes
@@ -1394,7 +1394,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\helper.twig:94Part-DB1\templates\helper.twig:89
-
+ NoNo
@@ -1403,7 +1403,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\helper.twig:126
-
+ specifications.valueValue
@@ -1414,7 +1414,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\homepage.html.twig:7templates\homepage.html.twig:7
-
+ version.captionVersion
@@ -1425,7 +1425,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\homepage.html.twig:22templates\homepage.html.twig:19
-
+ homepage.licenseLicense information
@@ -1436,7 +1436,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\homepage.html.twig:31templates\homepage.html.twig:28
-
+ homepage.github.captionProject page
@@ -1447,9 +1447,9 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\homepage.html.twig:31templates\homepage.html.twig:28
-
+ homepage.github.text
- GitHub project page]]>
+ Source, downloads, bug reports, to-do-list etc. can be found on <a href="%href%" class="link-external" target="_blank">GitHub project page</a>
@@ -1458,7 +1458,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\homepage.html.twig:32templates\homepage.html.twig:29
-
+ homepage.help.captionHelp
@@ -1469,9 +1469,9 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\homepage.html.twig:32templates\homepage.html.twig:29
-
+ homepage.help.text
- GitHub page]]>
+ Help and tips can be found in Wiki the <a href="%href%" class="link-external" target="_blank">GitHub page</a>
@@ -1480,7 +1480,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\homepage.html.twig:33templates\homepage.html.twig:30
-
+ homepage.forum.captionForum
@@ -1491,7 +1491,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\homepage.html.twig:45new
-
+ homepage.last_activityLast activity
@@ -1501,7 +1501,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\LabelSystem\dialog.html.twig:3Part-DB1\templates\LabelSystem\dialog.html.twig:6
-
+ label_generator.titleLabel generator
@@ -1510,7 +1510,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\LabelSystem\dialog.html.twig:16
-
+ label_generator.commonCommon
@@ -1519,7 +1519,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\LabelSystem\dialog.html.twig:20
-
+ label_generator.advancedAdvanced
@@ -1528,7 +1528,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\LabelSystem\dialog.html.twig:24
-
+ label_generator.profilesProfiles
@@ -1537,7 +1537,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\LabelSystem\dialog.html.twig:58
-
+ label_generator.selected_profileCurrently selected profile
@@ -1546,7 +1546,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\LabelSystem\dialog.html.twig:62
-
+ label_generator.edit_profileEdit profile
@@ -1555,7 +1555,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\LabelSystem\dialog.html.twig:75
-
+ label_generator.load_profileLoad profile
@@ -1564,7 +1564,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\LabelSystem\dialog.html.twig:102
-
+ label_generator.downloadDownload
@@ -1574,7 +1574,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\LabelSystem\dropdown_macro.html.twig:3Part-DB1\templates\LabelSystem\dropdown_macro.html.twig:5
-
+ label_generator.label_btnGenerate label
@@ -1583,7 +1583,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\LabelSystem\dropdown_macro.html.twig:20
-
+ label_generator.label_emptyNew empty label
@@ -1592,7 +1592,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\LabelSystem\Scanner\dialog.html.twig:3
-
+ label_scanner.titleLabel scanner
@@ -1601,7 +1601,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\LabelSystem\Scanner\dialog.html.twig:7
-
+ label_scanner.no_cam_found.titleNo webcam found
@@ -1610,7 +1610,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\LabelSystem\Scanner\dialog.html.twig:7
-
+ label_scanner.no_cam_found.textYou need a webcam and give permission to use the scanner function. You can input the barcode code manually below.
@@ -1619,7 +1619,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\LabelSystem\Scanner\dialog.html.twig:27
-
+ label_scanner.source_selectSelect source
@@ -1629,7 +1629,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\LogSystem\log_list.html.twig:3Part-DB1\templates\LogSystem\log_list.html.twig:3
-
+ log.list.titleSystem log
@@ -1640,7 +1640,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\LogSystem\_log_table.html.twig:1new
-
+ log.undo.confirm_titleReally undo change / revert to timestamp?
@@ -1651,7 +1651,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\LogSystem\_log_table.html.twig:2new
-
+ log.undo.confirm_messageDo you really want to undo the given change / reset the element to the given timestamp?
@@ -1661,7 +1661,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\mail\base.html.twig:24Part-DB1\templates\mail\base.html.twig:24
-
+ mail.footer.email_sent_byThis email was sent automatically by
@@ -1671,7 +1671,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\mail\base.html.twig:24Part-DB1\templates\mail\base.html.twig:24
-
+ mail.footer.dont_replyDo not answer to this email.
@@ -1681,7 +1681,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\mail\pw_reset.html.twig:6Part-DB1\templates\mail\pw_reset.html.twig:6
-
+ email.hi %name%Hi %name%
@@ -1691,7 +1691,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\mail\pw_reset.html.twig:7Part-DB1\templates\mail\pw_reset.html.twig:7
-
+ email.pw_reset.messagesomebody (hopefully you) requested a reset of your password. If this request was not made by you, ignore this mail.
@@ -1701,7 +1701,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\mail\pw_reset.html.twig:9Part-DB1\templates\mail\pw_reset.html.twig:9
-
+ email.pw_reset.buttonClick here to reset password
@@ -1711,9 +1711,9 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\mail\pw_reset.html.twig:11Part-DB1\templates\mail\pw_reset.html.twig:11
-
+ email.pw_reset.fallback
- %url% and enter the following info]]>
+ If this does not work for you, go to <a href="%url%">%url%</a> and enter the following info
@@ -1721,7 +1721,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\mail\pw_reset.html.twig:16Part-DB1\templates\mail\pw_reset.html.twig:16
-
+ email.pw_reset.usernameUsername
@@ -1731,7 +1731,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\mail\pw_reset.html.twig:19Part-DB1\templates\mail\pw_reset.html.twig:19
-
+ email.pw_reset.tokenToken
@@ -1741,9 +1741,9 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\mail\pw_reset.html.twig:24Part-DB1\templates\mail\pw_reset.html.twig:24
-
+ email.pw_reset.valid_unit %date%
- %date%.]]>
+ The reset token will be valid until <i>%date%</i>.
@@ -1753,7 +1753,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Parts\edit\edit_form_styles.html.twig:78Part-DB1\templates\Parts\edit\edit_form_styles.html.twig:58
-
+ orderdetail.deleteDelete
@@ -1763,7 +1763,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Parts\edit\edit_form_styles.html.twig:39Part-DB1\templates\Parts\edit\edit_form_styles.html.twig:39
-
+ pricedetails.edit.min_qtyMinimum discount quantity
@@ -1773,7 +1773,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Parts\edit\edit_form_styles.html.twig:40Part-DB1\templates\Parts\edit\edit_form_styles.html.twig:40
-
+ pricedetails.edit.pricePrice
@@ -1783,7 +1783,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Parts\edit\edit_form_styles.html.twig:41Part-DB1\templates\Parts\edit\edit_form_styles.html.twig:41
-
+ pricedetails.edit.price_qtyfor amount
@@ -1793,7 +1793,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Parts\edit\edit_form_styles.html.twig:54Part-DB1\templates\Parts\edit\edit_form_styles.html.twig:54
-
+ pricedetail.createAdd price
@@ -1804,7 +1804,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Parts\edit\edit_part_info.html.twig:4templates\Parts\edit_part_info.html.twig:4
-
+ part.edit.titleEdit part
@@ -1815,7 +1815,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Parts\edit\edit_part_info.html.twig:9templates\Parts\edit_part_info.html.twig:9
-
+ part.edit.card_titleEdit part
@@ -1825,7 +1825,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Parts\edit\edit_part_info.html.twig:22Part-DB1\templates\Parts\edit\edit_part_info.html.twig:22
-
+ part.edit.tab.commonCommon
@@ -1835,7 +1835,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Parts\edit\edit_part_info.html.twig:28Part-DB1\templates\Parts\edit\edit_part_info.html.twig:28
-
+ part.edit.tab.manufacturerManufacturer
@@ -1845,7 +1845,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Parts\edit\edit_part_info.html.twig:34Part-DB1\templates\Parts\edit\edit_part_info.html.twig:34
-
+ part.edit.tab.advancedAdvanced
@@ -1855,7 +1855,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Parts\edit\edit_part_info.html.twig:40Part-DB1\templates\Parts\edit\edit_part_info.html.twig:40
-
+ part.edit.tab.part_lotsStocks
@@ -1865,7 +1865,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Parts\edit\edit_part_info.html.twig:46Part-DB1\templates\Parts\edit\edit_part_info.html.twig:46
-
+ part.edit.tab.attachmentsAttachments
@@ -1875,7 +1875,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Parts\edit\edit_part_info.html.twig:52Part-DB1\templates\Parts\edit\edit_part_info.html.twig:52
-
+ part.edit.tab.orderdetailsPurchase information
@@ -1884,7 +1884,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Parts\edit\edit_part_info.html.twig:58
-
+ part.edit.tab.specificationsParameters
@@ -1894,7 +1894,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Parts\edit\edit_part_info.html.twig:64Part-DB1\templates\Parts\edit\edit_part_info.html.twig:58
-
+ part.edit.tab.commentNotes
@@ -1905,7 +1905,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Parts\edit\new_part.html.twig:8templates\Parts\new_part.html.twig:8
-
+ part.new.card_titleCreate new part
@@ -1915,7 +1915,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Parts\edit\_lots.html.twig:5Part-DB1\templates\Parts\edit\_lots.html.twig:5
-
+ part_lot.deleteDelete
@@ -1925,7 +1925,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Parts\edit\_lots.html.twig:28Part-DB1\templates\Parts\edit\_lots.html.twig:28
-
+ part_lot.createAdd stock
@@ -1935,7 +1935,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Parts\edit\_orderdetails.html.twig:13Part-DB1\templates\Parts\edit\_orderdetails.html.twig:13
-
+ orderdetail.createAdd distributor
@@ -1945,7 +1945,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Parts\edit\_orderdetails.html.twig:18Part-DB1\templates\Parts\edit\_orderdetails.html.twig:18
-
+ pricedetails.edit.delete.confirmDo you really want to delete this price? This can not be undone.
@@ -1955,7 +1955,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Parts\edit\_orderdetails.html.twig:62Part-DB1\templates\Parts\edit\_orderdetails.html.twig:61
-
+ orderdetails.edit.delete.confirmDo you really want to delete this distributor info? This can not be undone!
@@ -1969,7 +1969,7 @@ Sub elements will be moved upwards.]]>
templates\Parts\show_part_info.html.twig:4templates\Parts\show_part_info.html.twig:9
-
+ part.info.titleDetail info for part
@@ -1979,7 +1979,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Parts\info\show_part_info.html.twig:47Part-DB1\templates\Parts\info\show_part_info.html.twig:47
-
+ part.part_lots.labelStocks
@@ -1994,7 +1994,7 @@ Sub elements will be moved upwards.]]>
templates\Parts\show_part_info.html.twig:74src\Form\PartType.php:86
-
+ comment.labelNotes
@@ -2003,7 +2003,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Parts\info\show_part_info.html.twig:64
-
+ part.info.specificationsParameters
@@ -2014,7 +2014,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Parts\info\show_part_info.html.twig:64templates\Parts\show_part_info.html.twig:82
-
+ attachment.labelpAttachments
@@ -2025,7 +2025,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Parts\info\show_part_info.html.twig:71templates\Parts\show_part_info.html.twig:88
-
+ vendor.partinfo.shopping_infosShopping information
@@ -2036,7 +2036,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Parts\info\show_part_info.html.twig:78templates\Parts\show_part_info.html.twig:94
-
+ vendor.partinfo.historyHistory
@@ -2055,7 +2055,7 @@ Sub elements will be moved upwards.]]>
templates\base.html.twig:231templates\Parts\show_part_info.html.twig:100
-
+ tools.labelTools
@@ -2065,7 +2065,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Parts\info\show_part_info.html.twig:103Part-DB1\templates\Parts\info\show_part_info.html.twig:90
-
+ extended_info.labelExtended info
@@ -2075,7 +2075,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Parts\info\_attachments_info.html.twig:7Part-DB1\templates\Parts\info\_attachments_info.html.twig:7
-
+ attachment.nameName
@@ -2085,7 +2085,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Parts\info\_attachments_info.html.twig:8Part-DB1\templates\Parts\info\_attachments_info.html.twig:8
-
+ attachment.attachment_typeAttachment Type
@@ -2095,7 +2095,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Parts\info\_attachments_info.html.twig:9Part-DB1\templates\Parts\info\_attachments_info.html.twig:9
-
+ attachment.file_nameFile name
@@ -2105,7 +2105,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Parts\info\_attachments_info.html.twig:10Part-DB1\templates\Parts\info\_attachments_info.html.twig:10
-
+ attachment.file_sizeFile size
@@ -2114,7 +2114,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Parts\info\_attachments_info.html.twig:54
-
+ attachment.previewPreview picture
@@ -2124,7 +2124,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Parts\info\_attachments_info.html.twig:67Part-DB1\templates\Parts\info\_attachments_info.html.twig:50
-
+ attachment.downloadDownload
@@ -2135,7 +2135,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Parts\info\_extended_infos.html.twig:11new
-
+ user.creating_userUser who created this part
@@ -2149,7 +2149,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Parts\info\_extended_infos.html.twig:28Part-DB1\templates\Parts\info\_extended_infos.html.twig:50
-
+ UnknownUnknown
@@ -2162,7 +2162,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Parts\info\_extended_infos.html.twig:30new
-
+ accessDeniedAccess Denied
@@ -2173,7 +2173,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Parts\info\_extended_infos.html.twig:26new
-
+ user.last_editing_userUser who edited this part last
@@ -2183,7 +2183,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Parts\info\_extended_infos.html.twig:41Part-DB1\templates\Parts\info\_extended_infos.html.twig:41
-
+ part.isFavoriteFavorite
@@ -2193,7 +2193,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Parts\info\_extended_infos.html.twig:46Part-DB1\templates\Parts\info\_extended_infos.html.twig:46
-
+ part.minOrderAmountMinimum order amount
@@ -2210,7 +2210,7 @@ Sub elements will be moved upwards.]]>
templates\Parts\show_part_info.html.twig:24src\Form\PartType.php:80
-
+ manufacturer.labelManufacturer
@@ -2222,7 +2222,7 @@ Sub elements will be moved upwards.]]>
templates\base.html.twig:54src\Form\PartType.php:62
-
+ name.labelName
@@ -2233,7 +2233,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Parts\info\_main_infos.html.twig:27new
-
+ part.back_to_infoBack to current version
@@ -2248,7 +2248,7 @@ Sub elements will be moved upwards.]]>
templates\Parts\show_part_info.html.twig:31src\Form\PartType.php:65
-
+ description.labelDescription
@@ -2265,7 +2265,7 @@ Sub elements will be moved upwards.]]>
templates\Parts\show_part_info.html.twig:32src\Form\PartType.php:74
-
+ category.labelCategory
@@ -2277,7 +2277,7 @@ Sub elements will be moved upwards.]]>
templates\Parts\show_part_info.html.twig:42src\Form\PartType.php:69
-
+ instock.labelInstock
@@ -2289,7 +2289,7 @@ Sub elements will be moved upwards.]]>
templates\Parts\show_part_info.html.twig:44src\Form\PartType.php:72
-
+ mininstock.labelMinimum Instock
@@ -2305,7 +2305,7 @@ Sub elements will be moved upwards.]]>
templates\base.html.twig:73templates\Parts\show_part_info.html.twig:47
-
+ footprint.labelFootprint
@@ -2318,7 +2318,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Parts\info\_main_infos.html.twig:60templates\Parts\show_part_info.html.twig:51
-
+ part.avg_price.labelAverage Price
@@ -2328,7 +2328,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Parts\info\_order_infos.html.twig:5Part-DB1\templates\Parts\info\_order_infos.html.twig:5
-
+ part.supplier.nameName
@@ -2338,7 +2338,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Parts\info\_order_infos.html.twig:6Part-DB1\templates\Parts\info\_order_infos.html.twig:6
-
+ part.supplier.partnrPartnr.
@@ -2348,7 +2348,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Parts\info\_order_infos.html.twig:28Part-DB1\templates\Parts\info\_order_infos.html.twig:28
-
+ part.order.minamountMinimum amount
@@ -2358,7 +2358,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Parts\info\_order_infos.html.twig:29Part-DB1\templates\Parts\info\_order_infos.html.twig:29
-
+ part.order.pricePrice
@@ -2368,7 +2368,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Parts\info\_order_infos.html.twig:31Part-DB1\templates\Parts\info\_order_infos.html.twig:31
-
+ part.order.single_priceUnit Price
@@ -2378,7 +2378,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Parts\info\_order_infos.html.twig:71Part-DB1\templates\Parts\info\_order_infos.html.twig:71
-
+ edit.caption_shortEdit
@@ -2388,7 +2388,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Parts\info\_order_infos.html.twig:72Part-DB1\templates\Parts\info\_order_infos.html.twig:72
-
+ delete.captionDelete
@@ -2398,7 +2398,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Parts\info\_part_lots.html.twig:7Part-DB1\templates\Parts\info\_part_lots.html.twig:6
-
+ part_lots.descriptionDescription
@@ -2408,7 +2408,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Parts\info\_part_lots.html.twig:8Part-DB1\templates\Parts\info\_part_lots.html.twig:7
-
+ part_lots.storage_locationStorage location
@@ -2418,7 +2418,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Parts\info\_part_lots.html.twig:9Part-DB1\templates\Parts\info\_part_lots.html.twig:8
-
+ part_lots.amountAmount
@@ -2428,7 +2428,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Parts\info\_part_lots.html.twig:24Part-DB1\templates\Parts\info\_part_lots.html.twig:22
-
+ part_lots.location_unknownStorage location unknown
@@ -2438,7 +2438,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Parts\info\_part_lots.html.twig:31Part-DB1\templates\Parts\info\_part_lots.html.twig:29
-
+ part_lots.instock_unknownAmount unknown
@@ -2448,7 +2448,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Parts\info\_part_lots.html.twig:40Part-DB1\templates\Parts\info\_part_lots.html.twig:38
-
+ part_lots.expiration_dateExpiration date
@@ -2458,7 +2458,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Parts\info\_part_lots.html.twig:48Part-DB1\templates\Parts\info\_part_lots.html.twig:46
-
+ part_lots.is_expiredExpired
@@ -2468,7 +2468,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Parts\info\_part_lots.html.twig:55Part-DB1\templates\Parts\info\_part_lots.html.twig:53
-
+ part_lots.need_refillNeeds refill
@@ -2478,7 +2478,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Parts\info\_picture.html.twig:15Part-DB1\templates\Parts\info\_picture.html.twig:15
-
+ part.info.prev_picturePrevious picture
@@ -2488,7 +2488,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Parts\info\_picture.html.twig:19Part-DB1\templates\Parts\info\_picture.html.twig:19
-
+ part.info.next_pictureNext picture
@@ -2498,7 +2498,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Parts\info\_sidebar.html.twig:21Part-DB1\templates\Parts\info\_sidebar.html.twig:21
-
+ part.mass.tooltipMass
@@ -2508,7 +2508,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Parts\info\_sidebar.html.twig:30Part-DB1\templates\Parts\info\_sidebar.html.twig:30
-
+ part.needs_review.badgeNeeds review
@@ -2518,7 +2518,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Parts\info\_sidebar.html.twig:39Part-DB1\templates\Parts\info\_sidebar.html.twig:39
-
+ part.favorite.badgeFavorite
@@ -2528,7 +2528,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Parts\info\_sidebar.html.twig:47Part-DB1\templates\Parts\info\_sidebar.html.twig:47
-
+ part.obsolete.badgeNo longer available
@@ -2537,7 +2537,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Parts\info\_specifications.html.twig:10
-
+ parameters.extracted_from_descriptionAutomatically extracted from description
@@ -2546,7 +2546,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Parts\info\_specifications.html.twig:15
-
+ parameters.auto_extracted_from_commentAutomatically extracted from notes
@@ -2557,7 +2557,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Parts\info\_tools.html.twig:4templates\Parts\show_part_info.html.twig:125
-
+ part.edit.btnEdit part
@@ -2568,7 +2568,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Parts\info\_tools.html.twig:14templates\Parts\show_part_info.html.twig:135
-
+ part.clone.btnClone part
@@ -2579,7 +2579,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Parts\lists\_action_bar.html.twig:4templates\Parts\show_part_info.html.twig:143
-
+ part.create.btnCreate new part
@@ -2589,7 +2589,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Parts\info\_tools.html.twig:31Part-DB1\templates\Parts\info\_tools.html.twig:29
-
+ part.delete.confirm_titleDo you really want to delete this part?
@@ -2599,7 +2599,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Parts\info\_tools.html.twig:32Part-DB1\templates\Parts\info\_tools.html.twig:30
-
+ part.delete.messageThis part and any associated information (like attachments, price information, etc.) will be deleted. This can not be undone!
@@ -2609,7 +2609,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Parts\info\_tools.html.twig:39Part-DB1\templates\Parts\info\_tools.html.twig:37
-
+ part.deleteDelete part
@@ -2619,7 +2619,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Parts\lists\all_list.html.twig:4Part-DB1\templates\Parts\lists\all_list.html.twig:4
-
+ parts_list.all.titleAll parts
@@ -2629,7 +2629,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Parts\lists\category_list.html.twig:4Part-DB1\templates\Parts\lists\category_list.html.twig:4
-
+ parts_list.category.titleParts with category
@@ -2639,7 +2639,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Parts\lists\footprint_list.html.twig:4Part-DB1\templates\Parts\lists\footprint_list.html.twig:4
-
+ parts_list.footprint.titleParts with footprint
@@ -2649,7 +2649,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Parts\lists\manufacturer_list.html.twig:4Part-DB1\templates\Parts\lists\manufacturer_list.html.twig:4
-
+ parts_list.manufacturer.titleParts with manufacturer
@@ -2659,7 +2659,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Parts\lists\search_list.html.twig:4Part-DB1\templates\Parts\lists\search_list.html.twig:4
-
+ parts_list.search.titleSearch Parts
@@ -2669,7 +2669,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Parts\lists\store_location_list.html.twig:4Part-DB1\templates\Parts\lists\store_location_list.html.twig:4
-
+ parts_list.storelocation.titleParts with storage locations
@@ -2679,7 +2679,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Parts\lists\supplier_list.html.twig:4Part-DB1\templates\Parts\lists\supplier_list.html.twig:4
-
+ parts_list.supplier.titleParts with supplier
@@ -2689,7 +2689,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Parts\lists\tags_list.html.twig:4Part-DB1\templates\Parts\lists\tags_list.html.twig:4
-
+ parts_list.tags.titleParts with tag
@@ -2699,7 +2699,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Parts\lists\_info_card.html.twig:22Part-DB1\templates\Parts\lists\_info_card.html.twig:17
-
+ entity.info.common.tabCommon
@@ -2709,7 +2709,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Parts\lists\_info_card.html.twig:26Part-DB1\templates\Parts\lists\_info_card.html.twig:20
-
+ entity.info.statistics.tabStatistics
@@ -2718,7 +2718,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Parts\lists\_info_card.html.twig:31
-
+ entity.info.attachments.tabAttachments
@@ -2727,7 +2727,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Parts\lists\_info_card.html.twig:37
-
+ entity.info.parameters.tabParameters
@@ -2737,7 +2737,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Parts\lists\_info_card.html.twig:54Part-DB1\templates\Parts\lists\_info_card.html.twig:30
-
+ entity.info.nameName
@@ -2749,7 +2749,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Parts\lists\_info_card.html.twig:34Part-DB1\templates\Parts\lists\_info_card.html.twig:67
-
+ entity.info.parentParent
@@ -2759,7 +2759,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Parts\lists\_info_card.html.twig:70Part-DB1\templates\Parts\lists\_info_card.html.twig:46
-
+ entity.edit.btnEdit
@@ -2769,7 +2769,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Parts\lists\_info_card.html.twig:92Part-DB1\templates\Parts\lists\_info_card.html.twig:63
-
+ entity.info.children_countCount of children elements
@@ -2781,7 +2781,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\security\2fa_base_form.html.twig:3Part-DB1\templates\security\2fa_base_form.html.twig:5
-
+ tfa.check.titleTwo-factor authentication needed
@@ -2791,7 +2791,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\security\2fa_base_form.html.twig:39Part-DB1\templates\security\2fa_base_form.html.twig:39
-
+ tfa.code.trusted_pcThis is a trusted computer (if this is enabled, no further two-factor queries are performed on this computer)
@@ -2803,7 +2803,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\security\2fa_base_form.html.twig:52Part-DB1\templates\security\login.html.twig:58
-
+ login.btnLogin
@@ -2817,7 +2817,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\security\U2F\u2f_login.html.twig:13Part-DB1\templates\_navbar.html.twig:40
-
+ user.logoutLogout
@@ -2827,7 +2827,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\security\2fa_form.html.twig:6Part-DB1\templates\security\2fa_form.html.twig:6
-
+ tfa.check.code.labelAuthenticator app code
@@ -2837,7 +2837,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\security\2fa_form.html.twig:10Part-DB1\templates\security\2fa_form.html.twig:10
-
+ tfa.check.code.helpEnter the 6-digit code from your Authenticator app or one of your backup codes if the Authenticator is not available.
@@ -2848,7 +2848,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\security\login.html.twig:3templates\security\login.html.twig:3
-
+ login.titleLogin
@@ -2859,7 +2859,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\security\login.html.twig:7templates\security\login.html.twig:7
-
+ login.card_titleLogin
@@ -2870,7 +2870,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\security\login.html.twig:31templates\security\login.html.twig:31
-
+ login.username.labelUsername
@@ -2881,7 +2881,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\security\login.html.twig:34templates\security\login.html.twig:34
-
+ login.username.placeholderUsername
@@ -2892,7 +2892,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\security\login.html.twig:38templates\security\login.html.twig:38
-
+ login.password.labelPassword
@@ -2903,7 +2903,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\security\login.html.twig:40templates\security\login.html.twig:40
-
+ login.password.placeholderPassword
@@ -2914,7 +2914,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\security\login.html.twig:50templates\security\login.html.twig:50
-
+ login.remembermeRemember me (should not be used on shared computers)
@@ -2924,7 +2924,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\security\login.html.twig:64Part-DB1\templates\security\login.html.twig:64
-
+ pw_reset.password_forgetForgot username/password?
@@ -2934,7 +2934,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\security\pw_reset_new_pw.html.twig:5Part-DB1\templates\security\pw_reset_new_pw.html.twig:5
-
+ pw_reset.new_pw.header.titleSet new password
@@ -2944,7 +2944,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\security\pw_reset_request.html.twig:5Part-DB1\templates\security\pw_reset_request.html.twig:5
-
+ pw_reset.request.header.titleRequest a new password
@@ -2956,7 +2956,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\security\U2F\u2f_login.html.twig:7Part-DB1\templates\security\U2F\u2f_register.html.twig:10
-
+ tfa_u2f.http_warningYou are accessing this page using the insecure HTTP method, so U2F will most likely not work (Bad Request error message). Ask an administrator to set up the secure HTTPS method if you want to use security keys.
@@ -2968,7 +2968,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\security\U2F\u2f_login.html.twig:10Part-DB1\templates\security\U2F\u2f_register.html.twig:22
-
+ r_u2f_two_factor.pressbuttonPlease plug in your security key and press its button!
@@ -2978,7 +2978,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\security\U2F\u2f_register.html.twig:3Part-DB1\templates\security\U2F\u2f_register.html.twig:3
-
+ tfa_u2f.add_key.titleAdd security key
@@ -2990,7 +2990,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\security\U2F\u2f_register.html.twig:6Part-DB1\templates\Users\_2fa_settings.html.twig:111
-
+ tfa_u2f.explanationWith the help of a U2F/FIDO compatible security key (e.g. YubiKey or NitroKey), user-friendly and secure two-factor authentication can be achieved. The security keys can be registered here, and if two-factor verification is required, the key only needs to be inserted via USB or typed against the device via NFC.
@@ -3000,7 +3000,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\security\U2F\u2f_register.html.twig:7Part-DB1\templates\security\U2F\u2f_register.html.twig:7
-
+ tfa_u2f.add_key.backup_hintTo ensure access even if the key is lost, it is recommended to register a second key as backup and store it in a safe place!
@@ -3010,7 +3010,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\security\U2F\u2f_register.html.twig:16Part-DB1\templates\security\U2F\u2f_register.html.twig:16
-
+ r_u2f_two_factor.nameShown key name (e.g. Backup)
@@ -3020,7 +3020,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\security\U2F\u2f_register.html.twig:19Part-DB1\templates\security\U2F\u2f_register.html.twig:19
-
+ tfa_u2f.add_key.add_buttonAdd security key
@@ -3030,7 +3030,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\security\U2F\u2f_register.html.twig:27Part-DB1\templates\security\U2F\u2f_register.html.twig:27
-
+ tfa_u2f.add_key.back_to_settingsBack to settings
@@ -3043,7 +3043,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Statistics\statistics.html.twig:8new
-
+ statistics.titleStatistics
@@ -3054,7 +3054,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Statistics\statistics.html.twig:14new
-
+ statistics.partsParts
@@ -3065,7 +3065,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Statistics\statistics.html.twig:19new
-
+ statistics.data_structuresData structures
@@ -3076,7 +3076,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Statistics\statistics.html.twig:24new
-
+ statistics.attachmentsAttachments
@@ -3091,7 +3091,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Statistics\statistics.html.twig:104new
-
+ statistics.propertyProperty
@@ -3106,7 +3106,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Statistics\statistics.html.twig:105new
-
+ statistics.valueValue
@@ -3117,7 +3117,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Statistics\statistics.html.twig:40new
-
+ statistics.distinct_parts_countNumber of distinct parts
@@ -3128,7 +3128,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Statistics\statistics.html.twig:44new
-
+ statistics.parts_instock_sumSum of all part instocks
@@ -3139,7 +3139,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Statistics\statistics.html.twig:48new
-
+ statistics.parts_with_priceNumber of parts with price information
@@ -3150,7 +3150,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Statistics\statistics.html.twig:65new
-
+ statistics.categories_countNumber of categories
@@ -3161,7 +3161,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Statistics\statistics.html.twig:69new
-
+ statistics.footprints_countNumber of footprints
@@ -3172,7 +3172,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Statistics\statistics.html.twig:73new
-
+ statistics.manufacturers_countNumber of manufacturers
@@ -3183,7 +3183,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Statistics\statistics.html.twig:77new
-
+ statistics.storelocations_countNumber of storage locations
@@ -3194,7 +3194,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Statistics\statistics.html.twig:81new
-
+ statistics.suppliers_countNumber of suppliers
@@ -3205,7 +3205,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Statistics\statistics.html.twig:85new
-
+ statistics.currencies_countNumber of currencies
@@ -3216,7 +3216,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Statistics\statistics.html.twig:89new
-
+ statistics.measurement_units_countNumber of measurement units
@@ -3227,7 +3227,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Statistics\statistics.html.twig:93new
-
+ statistics.devices_countNumber of projects
@@ -3238,7 +3238,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Statistics\statistics.html.twig:110new
-
+ statistics.attachment_types_countNumber of attachment types
@@ -3249,7 +3249,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Statistics\statistics.html.twig:114new
-
+ statistics.all_attachments_countNumber of all attachments
@@ -3260,7 +3260,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Statistics\statistics.html.twig:118new
-
+ statistics.user_uploaded_attachments_countNumber of user uploaded attachments
@@ -3271,7 +3271,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Statistics\statistics.html.twig:122new
-
+ statistics.private_attachments_countNumber of private attachments
@@ -3282,7 +3282,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Statistics\statistics.html.twig:126new
-
+ statistics.external_attachments_countNumber of external attachments (URL)
@@ -3294,7 +3294,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Users\backup_codes.html.twig:3Part-DB1\templates\Users\backup_codes.html.twig:9
-
+ tfa_backup.codes.titleBackup codes
@@ -3304,7 +3304,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Users\backup_codes.html.twig:12Part-DB1\templates\Users\backup_codes.html.twig:12
-
+ tfa_backup.codes.explanationPrint out these codes and keep them in a safe place!
@@ -3314,7 +3314,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Users\backup_codes.html.twig:13Part-DB1\templates\Users\backup_codes.html.twig:13
-
+ tfa_backup.codes.helpIf you no longer have access to your device with the Authenticator App (lost smartphone, data loss, etc.) you can use one of these codes to access your account and possibly set up a new Authenticator App. Each of these codes can be used once, it is recommended to delete used codes. Anyone with access to these codes can potentially access your account, so keep them in a safe place.
@@ -3324,7 +3324,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Users\backup_codes.html.twig:16Part-DB1\templates\Users\backup_codes.html.twig:16
-
+ tfa_backup.usernameUsername
@@ -3334,7 +3334,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Users\backup_codes.html.twig:29Part-DB1\templates\Users\backup_codes.html.twig:29
-
+ tfa_backup.codes.page_generated_onPage generated on %date%
@@ -3344,7 +3344,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Users\backup_codes.html.twig:32Part-DB1\templates\Users\backup_codes.html.twig:32
-
+ tfa_backup.codes.printPrint
@@ -3354,7 +3354,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Users\backup_codes.html.twig:35Part-DB1\templates\Users\backup_codes.html.twig:35
-
+ tfa_backup.codes.copy_clipboardCopy to clipboard
@@ -3371,7 +3371,7 @@ Sub elements will be moved upwards.]]>
templates\Users\user_info.html.twig:3templates\Users\user_info.html.twig:6
-
+ user.info.labelUser information
@@ -3385,7 +3385,7 @@ Sub elements will be moved upwards.]]>
templates\Users\user_info.html.twig:18src\Form\UserSettingsType.php:32
-
+ user.firstName.labelFirst name
@@ -3399,7 +3399,7 @@ Sub elements will be moved upwards.]]>
templates\Users\user_info.html.twig:24src\Form\UserSettingsType.php:35
-
+ user.lastName.labelLast name
@@ -3413,7 +3413,7 @@ Sub elements will be moved upwards.]]>
templates\Users\user_info.html.twig:30src\Form\UserSettingsType.php:41
-
+ user.email.labelEmail
@@ -3427,7 +3427,7 @@ Sub elements will be moved upwards.]]>
templates\Users\user_info.html.twig:37src\Form\UserSettingsType.php:38
-
+ user.department.labelDepartment
@@ -3441,7 +3441,7 @@ Sub elements will be moved upwards.]]>
templates\Users\user_info.html.twig:47src\Form\UserSettingsType.php:30
-
+ user.username.labelUser name
@@ -3454,7 +3454,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\src\Services\ElementTypeNameGenerator.php:93templates\Users\user_info.html.twig:53
-
+ group.labelGroup:
@@ -3464,7 +3464,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Users\user_info.html.twig:67Part-DB1\templates\Users\user_info.html.twig:67
-
+ user.permissionsPermissions
@@ -3481,7 +3481,7 @@ Sub elements will be moved upwards.]]>
templates\Users\user_settings.html.twig:3templates\Users\user_settings.html.twig:6
-
+ user.settings.labelUser settings
@@ -3492,7 +3492,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Users\user_settings.html.twig:18templates\Users\user_settings.html.twig:14
-
+ user_settings.data.labelPersonal data
@@ -3503,7 +3503,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Users\user_settings.html.twig:22templates\Users\user_settings.html.twig:18
-
+ user_settings.configuration.labelConfiguration
@@ -3514,7 +3514,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Users\user_settings.html.twig:55templates\Users\user_settings.html.twig:48
-
+ user.settings.change_pwChange password
@@ -3524,7 +3524,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Users\_2fa_settings.html.twig:6Part-DB1\templates\Users\_2fa_settings.html.twig:6
-
+ user.settings.2fa_settingsTwo-Factor Authentication
@@ -3534,7 +3534,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Users\_2fa_settings.html.twig:13Part-DB1\templates\Users\_2fa_settings.html.twig:13
-
+ tfa.settings.google.tabAuthenticator app
@@ -3544,7 +3544,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Users\_2fa_settings.html.twig:17Part-DB1\templates\Users\_2fa_settings.html.twig:17
-
+ tfa.settings.bakup.tabBackup codes
@@ -3554,7 +3554,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Users\_2fa_settings.html.twig:21Part-DB1\templates\Users\_2fa_settings.html.twig:21
-
+ tfa.settings.u2f.tabSecurity keys (U2F)
@@ -3564,7 +3564,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Users\_2fa_settings.html.twig:25Part-DB1\templates\Users\_2fa_settings.html.twig:25
-
+ tfa.settings.trustedDevices.tabTrusted devices
@@ -3574,7 +3574,7 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Users\_2fa_settings.html.twig:33Part-DB1\templates\Users\_2fa_settings.html.twig:33
-
+ tfa_google.disable.confirm_titleDo you really want to disable the Authenticator App?
@@ -3584,10 +3584,10 @@ Sub elements will be moved upwards.]]>
Part-DB1\templates\Users\_2fa_settings.html.twig:33Part-DB1\templates\Users\_2fa_settings.html.twig:33
-
+ tfa_google.disable.confirm_message
-
-Also note that without two-factor authentication your account is not as well protected against attackers!]]>
+ If you disable the Authenticator App, all backup codes will be deleted, so you may need to reprint them.<br>
+Also note that without two-factor authentication your account is not as well protected against attackers!
@@ -3595,7 +3595,7 @@ Also note that without two-factor authentication your account is not as well pro
Part-DB1\templates\Users\_2fa_settings.html.twig:39Part-DB1\templates\Users\_2fa_settings.html.twig:39
-
+ tfa_google.disabled_messageAuthenticator app deactivated!
@@ -3605,9 +3605,9 @@ Also note that without two-factor authentication your account is not as well pro
Part-DB1\templates\Users\_2fa_settings.html.twig:48Part-DB1\templates\Users\_2fa_settings.html.twig:48
-
+ tfa_google.step.download
- Google Authenticator oder FreeOTP Authenticator)]]>
+ Download an authenticator app (e.g. <a class="link-external" target="_blank" href="https://play.google.com/store/apps/details?id=com.google.android.apps.authenticator2">Google Authenticator</a> oder <a class="link-external" target="_blank" href="https://play.google.com/store/apps/details?id=org.fedorahosted.freeotp">FreeOTP Authenticator</a>)
@@ -3615,7 +3615,7 @@ Also note that without two-factor authentication your account is not as well pro
Part-DB1\templates\Users\_2fa_settings.html.twig:49Part-DB1\templates\Users\_2fa_settings.html.twig:49
-
+ tfa_google.step.scanScan the adjoining QR Code with the app or enter the data manually
@@ -3625,7 +3625,7 @@ Also note that without two-factor authentication your account is not as well pro
Part-DB1\templates\Users\_2fa_settings.html.twig:50Part-DB1\templates\Users\_2fa_settings.html.twig:50
-
+ tfa_google.step.input_codeEnter the generated code in the field below and confirm
@@ -3635,7 +3635,7 @@ Also note that without two-factor authentication your account is not as well pro
Part-DB1\templates\Users\_2fa_settings.html.twig:51Part-DB1\templates\Users\_2fa_settings.html.twig:51
-
+ tfa_google.step.download_backupPrint out your backup codes and store them in a safe place
@@ -3645,7 +3645,7 @@ Also note that without two-factor authentication your account is not as well pro
Part-DB1\templates\Users\_2fa_settings.html.twig:58Part-DB1\templates\Users\_2fa_settings.html.twig:58
-
+ tfa_google.manual_setupManual setup
@@ -3655,7 +3655,7 @@ Also note that without two-factor authentication your account is not as well pro
Part-DB1\templates\Users\_2fa_settings.html.twig:62Part-DB1\templates\Users\_2fa_settings.html.twig:62
-
+ tfa_google.manual_setup.typeType
@@ -3665,7 +3665,7 @@ Also note that without two-factor authentication your account is not as well pro
Part-DB1\templates\Users\_2fa_settings.html.twig:63Part-DB1\templates\Users\_2fa_settings.html.twig:63
-
+ tfa_google.manual_setup.usernameUsername
@@ -3675,7 +3675,7 @@ Also note that without two-factor authentication your account is not as well pro
Part-DB1\templates\Users\_2fa_settings.html.twig:64Part-DB1\templates\Users\_2fa_settings.html.twig:64
-
+ tfa_google.manual_setup.secretSecret
@@ -3685,7 +3685,7 @@ Also note that without two-factor authentication your account is not as well pro
Part-DB1\templates\Users\_2fa_settings.html.twig:65Part-DB1\templates\Users\_2fa_settings.html.twig:65
-
+ tfa_google.manual_setup.digit_countDigit count
@@ -3695,7 +3695,7 @@ Also note that without two-factor authentication your account is not as well pro
Part-DB1\templates\Users\_2fa_settings.html.twig:74Part-DB1\templates\Users\_2fa_settings.html.twig:74
-
+ tfa_google.enabled_messageAuthenticator App enabled
@@ -3705,7 +3705,7 @@ Also note that without two-factor authentication your account is not as well pro
Part-DB1\templates\Users\_2fa_settings.html.twig:83Part-DB1\templates\Users\_2fa_settings.html.twig:83
-
+ tfa_backup.disabledBackup codes disabled. Setup authenticator app to enable backup codes.
@@ -3717,7 +3717,7 @@ Also note that without two-factor authentication your account is not as well pro
Part-DB1\templates\Users\_2fa_settings.html.twig:84Part-DB1\templates\Users\_2fa_settings.html.twig:92
-
+ tfa_backup.explanationYou can use these backup codes to access your account even if you lose the device with the Authenticator App. Print out the codes and keep them in a safe place.
@@ -3727,7 +3727,7 @@ Also note that without two-factor authentication your account is not as well pro
Part-DB1\templates\Users\_2fa_settings.html.twig:88Part-DB1\templates\Users\_2fa_settings.html.twig:88
-
+ tfa_backup.reset_codes.confirm_titleReally reset codes?
@@ -3737,7 +3737,7 @@ Also note that without two-factor authentication your account is not as well pro
Part-DB1\templates\Users\_2fa_settings.html.twig:88Part-DB1\templates\Users\_2fa_settings.html.twig:88
-
+ tfa_backup.reset_codes.confirm_messageThis will delete all previous codes and generate a set of new codes. This cannot be undone. Remember to print out the new codes and store them in a safe place!
@@ -3747,7 +3747,7 @@ Also note that without two-factor authentication your account is not as well pro
Part-DB1\templates\Users\_2fa_settings.html.twig:91Part-DB1\templates\Users\_2fa_settings.html.twig:91
-
+ tfa_backup.enabledBackup codes enabled
@@ -3757,7 +3757,7 @@ Also note that without two-factor authentication your account is not as well pro
Part-DB1\templates\Users\_2fa_settings.html.twig:99Part-DB1\templates\Users\_2fa_settings.html.twig:99
-
+ tfa_backup.show_codesShow backup codes
@@ -3767,7 +3767,7 @@ Also note that without two-factor authentication your account is not as well pro
Part-DB1\templates\Users\_2fa_settings.html.twig:114Part-DB1\templates\Users\_2fa_settings.html.twig:114
-
+ tfa_u2f.table_captionRegistered security keys
@@ -3777,7 +3777,7 @@ Also note that without two-factor authentication your account is not as well pro
Part-DB1\templates\Users\_2fa_settings.html.twig:115Part-DB1\templates\Users\_2fa_settings.html.twig:115
-
+ tfa_u2f.delete_u2f.confirm_titleReally remove this security key?
@@ -3787,7 +3787,7 @@ Also note that without two-factor authentication your account is not as well pro
Part-DB1\templates\Users\_2fa_settings.html.twig:116Part-DB1\templates\Users\_2fa_settings.html.twig:116
-
+ tfa_u2f.delete_u2f.confirm_messageIf you remove this key, then no more login with this key will be possible. If no security keys remain, two-factor authentication will be disabled.
@@ -3797,7 +3797,7 @@ Also note that without two-factor authentication your account is not as well pro
Part-DB1\templates\Users\_2fa_settings.html.twig:123Part-DB1\templates\Users\_2fa_settings.html.twig:123
-
+ tfa_u2f.keys.nameKey name
@@ -3807,7 +3807,7 @@ Also note that without two-factor authentication your account is not as well pro
Part-DB1\templates\Users\_2fa_settings.html.twig:124Part-DB1\templates\Users\_2fa_settings.html.twig:124
-
+ tfa_u2f.keys.added_dateRegistration date
@@ -3817,7 +3817,7 @@ Also note that without two-factor authentication your account is not as well pro
Part-DB1\templates\Users\_2fa_settings.html.twig:134Part-DB1\templates\Users\_2fa_settings.html.twig:134
-
+ tfa_u2f.key_deleteDelete key
@@ -3827,7 +3827,7 @@ Also note that without two-factor authentication your account is not as well pro
Part-DB1\templates\Users\_2fa_settings.html.twig:141Part-DB1\templates\Users\_2fa_settings.html.twig:141
-
+ tfa_u2f.no_keys_registeredNo keys registered yet.
@@ -3837,7 +3837,7 @@ Also note that without two-factor authentication your account is not as well pro
Part-DB1\templates\Users\_2fa_settings.html.twig:144Part-DB1\templates\Users\_2fa_settings.html.twig:144
-
+ tfa_u2f.add_new_keyRegister new security key
@@ -3847,10 +3847,10 @@ Also note that without two-factor authentication your account is not as well pro
Part-DB1\templates\Users\_2fa_settings.html.twig:148Part-DB1\templates\Users\_2fa_settings.html.twig:148
-
+ tfa_trustedDevices.explanation
- all computers here.]]>
+ When checking the second factor, the current computer can be marked as trustworthy, so no more two-factor checks on this computer are needed.
+If you have done this incorrectly or if a computer is no longer trusted, you can reset the status of <i>all </i>computers here.
@@ -3858,7 +3858,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\templates\Users\_2fa_settings.html.twig:149Part-DB1\templates\Users\_2fa_settings.html.twig:149
-
+ tfa_trustedDevices.invalidate.confirm_titleReally remove all trusted computers?
@@ -3868,7 +3868,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\templates\Users\_2fa_settings.html.twig:150Part-DB1\templates\Users\_2fa_settings.html.twig:150
-
+ tfa_trustedDevices.invalidate.confirm_messageYou will have to perform two-factor authentication again on all computers. Make sure you have your two-factor device at hand.
@@ -3878,7 +3878,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\templates\Users\_2fa_settings.html.twig:154Part-DB1\templates\Users\_2fa_settings.html.twig:154
-
+ tfa_trustedDevices.invalidate.btnReset trusted devices
@@ -3889,7 +3889,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\templates\_navbar.html.twig:4templates\base.html.twig:29
-
+ sidebar.toggleToggle Sidebar
@@ -3898,7 +3898,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\templates\_navbar.html.twig:22
-
+ navbar.scanner.linkScanner
@@ -3909,7 +3909,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\templates\_navbar.html.twig:36templates\base.html.twig:97
-
+ user.loggedin.labelLogged in as
@@ -3920,7 +3920,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\templates\_navbar.html.twig:42templates\base.html.twig:103
-
+ user.loginLogin
@@ -3930,7 +3930,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\templates\_navbar.html.twig:50Part-DB1\templates\_navbar.html.twig:48
-
+ ui.toggle_darkmodeDarkmode
@@ -3944,7 +3944,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
templates\base.html.twig:106src\Form\UserSettingsType.php:44
-
+ user.language_selectSwitch Language
@@ -3955,7 +3955,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\templates\_navbar_search.html.twig:4templates\base.html.twig:49
-
+ search.options.labelSearch options
@@ -3964,7 +3964,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\templates\_navbar_search.html.twig:23
-
+ tags.labelTags
@@ -3979,7 +3979,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
templates\Parts\show_part_info.html.twig:36src\Form\PartType.php:77
-
+ storelocation.labelStorage location
@@ -3990,7 +3990,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\templates\_navbar_search.html.twig:31templates\base.html.twig:65
-
+ ordernumber.label.shortsupplier partnr.
@@ -4003,7 +4003,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Services\ElementTypeNameGenerator.php:89templates\base.html.twig:67
-
+ supplier.labelSupplier
@@ -4014,7 +4014,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\templates\_navbar_search.html.twig:52templates\base.html.twig:75
-
+ search.deactivateBarcodeDeact. Barcode
@@ -4025,7 +4025,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\templates\_navbar_search.html.twig:56templates\base.html.twig:77
-
+ search.regexmatchingReg.Ex. Matching
@@ -4035,7 +4035,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\templates\_navbar_search.html.twig:68Part-DB1\templates\_navbar_search.html.twig:62
-
+ search.submitGo!
@@ -4051,7 +4051,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
templates\base.html.twig:202templates\base.html.twig:230
-
+ project.labelpProjects
@@ -4064,7 +4064,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
templates\base.html.twig:192templates\base.html.twig:220
-
+ actionsActions
@@ -4077,7 +4077,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
templates\base.html.twig:196templates\base.html.twig:224
-
+ datasourceData source
@@ -4090,7 +4090,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
templates\base.html.twig:200templates\base.html.twig:228
-
+ manufacturer.labelpManufacturers
@@ -4103,7 +4103,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
templates\base.html.twig:201templates\base.html.twig:229
-
+ supplier.labelpSuppliers
@@ -4119,7 +4119,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Controller\PartController.php:173Part-DB1\src\Controller\PartController.php:268
-
+ attachment.download_failedDownload of the external attachment failed.
@@ -4129,7 +4129,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Controller\AdminPages\BaseAdminController.php:222Part-DB1\src\Controller\AdminPages\BaseAdminController.php:190
-
+ entity.edit_flashChanges saved successful.
@@ -4139,7 +4139,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Controller\AdminPages\BaseAdminController.php:231Part-DB1\src\Controller\AdminPages\BaseAdminController.php:196
-
+ entity.edit_flash.invalidCan not save changed. Please check your input!
@@ -4149,7 +4149,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Controller\AdminPages\BaseAdminController.php:302Part-DB1\src\Controller\AdminPages\BaseAdminController.php:252
-
+ entity.created_flashElement created.
@@ -4159,7 +4159,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Controller\AdminPages\BaseAdminController.php:308Part-DB1\src\Controller\AdminPages\BaseAdminController.php:258
-
+ entity.created_flash.invalidCould not create element. Please check your input!
@@ -4170,7 +4170,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Controller\AdminPages\BaseAdminController.php:352src\Controller\BaseAdminController.php:154
-
+ attachment_type.deletedElement deleted!
@@ -4186,7 +4186,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Controller\UserSettingsController.php:150Part-DB1\src\Controller\UserSettingsController.php:182
-
+ csfr_invalidCSFR Token invalid. Please reload this page or contact an administrator if this message stays.
@@ -4195,7 +4195,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Controller\LabelController.php:125
-
+ label_generator.no_entities_foundNo entities matching the range found.
@@ -4206,7 +4206,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Controller\LogController.php:154new
-
+ log.undo.target_not_foundTarget element could not be found in DB!
@@ -4217,7 +4217,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Controller\LogController.php:160new
-
+ log.undo.revert_successReverted to timestamp successfully.
@@ -4228,7 +4228,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Controller\LogController.php:180new
-
+ log.undo.element_undelete_successUndeleted element successfully.
@@ -4239,7 +4239,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Controller\LogController.php:182new
-
+ log.undo.element_element_already_undeletedElement was already undeleted!
@@ -4250,7 +4250,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Controller\LogController.php:189new
-
+ log.undo.element_delete_successElement deleted successfully.
@@ -4261,7 +4261,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Controller\LogController.php:191new
-
+ log.undo.element.element_already_deltedElement was already deleted!
@@ -4272,7 +4272,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Controller\LogController.php:198new
-
+ log.undo.element_change_undoneChange undone successfully!
@@ -4283,7 +4283,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Controller\LogController.php:200new
-
+ log.undo.do_undelete_beforeYou have to undelete the element before you can undo this change!
@@ -4294,7 +4294,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Controller\LogController.php:203new
-
+ log.undo.log_type_invalidThis log entry can not be undone!
@@ -4305,7 +4305,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Controller\PartController.php:182src\Controller\PartController.php:80
-
+ part.edited_flashSaved changes!
@@ -4315,7 +4315,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Controller\PartController.php:186Part-DB1\src\Controller\PartController.php:186
-
+ part.edited_flash.invalidError during saving: Please check your inputs!
@@ -4325,7 +4325,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Controller\PartController.php:216Part-DB1\src\Controller\PartController.php:219
-
+ part.deletedPart deleted successful.
@@ -4338,7 +4338,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
src\Controller\PartController.php:113src\Controller\PartController.php:142
-
+ part.created_flashPart created!
@@ -4348,7 +4348,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Controller\PartController.php:308Part-DB1\src\Controller\PartController.php:283
-
+ part.created_flash.invalidError during creation: Please check your inputs!
@@ -4358,7 +4358,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Controller\ScanController.php:68Part-DB1\src\Controller\ScanController.php:90
-
+ scan.qr_not_foundNo element found for the given barcode.
@@ -4367,7 +4367,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Controller\ScanController.php:71
-
+ scan.format_unknownFormat unknown!
@@ -4376,7 +4376,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Controller\ScanController.php:86
-
+ scan.qr_successElement found.
@@ -4386,7 +4386,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Controller\SecurityController.php:114Part-DB1\src\Controller\SecurityController.php:109
-
+ pw_reset.user_or_emailUsername / Email
@@ -4396,7 +4396,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Controller\SecurityController.php:131Part-DB1\src\Controller\SecurityController.php:126
-
+ pw_reset.request.successReset request was successful! Please check your emails for further instructions.
@@ -4406,7 +4406,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Controller\SecurityController.php:162Part-DB1\src\Controller\SecurityController.php:160
-
+ pw_reset.usernameUsername
@@ -4416,7 +4416,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Controller\SecurityController.php:165Part-DB1\src\Controller\SecurityController.php:163
-
+ pw_reset.tokenToken
@@ -4426,7 +4426,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Controller\SecurityController.php:194Part-DB1\src\Controller\SecurityController.php:192
-
+ pw_reset.new_pw.errorUsername or Token invalid! Please check your input.
@@ -4436,7 +4436,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Controller\SecurityController.php:196Part-DB1\src\Controller\SecurityController.php:194
-
+ pw_reset.new_pw.successPassword was reset successfully. You can now login with your new password.
@@ -4446,7 +4446,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Controller\UserController.php:107Part-DB1\src\Controller\UserController.php:99
-
+ user.edit.reset_successAll two-factor authentication methods were successfully disabled.
@@ -4456,7 +4456,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Controller\UserSettingsController.php:101Part-DB1\src\Controller\UserSettingsController.php:92
-
+ tfa_backup.no_codes_enabledNo backup codes enabled!
@@ -4466,7 +4466,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Controller\UserSettingsController.php:138Part-DB1\src\Controller\UserSettingsController.php:132
-
+ tfa_u2f.u2f_delete.not_existingNo security key with this ID is existing.
@@ -4476,7 +4476,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Controller\UserSettingsController.php:145Part-DB1\src\Controller\UserSettingsController.php:139
-
+ tfa_u2f.u2f_delete.access_deniedYou can not delete the security keys of other users!
@@ -4486,7 +4486,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Controller\UserSettingsController.php:153Part-DB1\src\Controller\UserSettingsController.php:147
-
+ tfa.u2f.u2f_delete.successSecurity key successfully removed.
@@ -4496,7 +4496,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Controller\UserSettingsController.php:188Part-DB1\src\Controller\UserSettingsController.php:180
-
+ tfa_trustedDevice.invalidate.successTrusted devices successfully reset.
@@ -4507,7 +4507,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Controller\UserSettingsController.php:226src\Controller\UserController.php:98
-
+ user.settings.saved_flashSettings saved!
@@ -4518,7 +4518,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Controller\UserSettingsController.php:288src\Controller\UserController.php:130
-
+ user.settings.pw_changed_flashPassword changed!
@@ -4528,7 +4528,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Controller\UserSettingsController.php:317Part-DB1\src\Controller\UserSettingsController.php:306
-
+ user.settings.2fa.google.activatedAuthenticator App successfully activated.
@@ -4538,7 +4538,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Controller\UserSettingsController.php:328Part-DB1\src\Controller\UserSettingsController.php:315
-
+ user.settings.2fa.google.disabledAuthenticator App successfully deactivated.
@@ -4548,7 +4548,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Controller\UserSettingsController.php:346Part-DB1\src\Controller\UserSettingsController.php:332
-
+ user.settings.2fa.backup_codes.regeneratedNew backup codes successfully generated.
@@ -4558,7 +4558,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\DataTables\AttachmentDataTable.php:148Part-DB1\src\DataTables\AttachmentDataTable.php:148
-
+ attachment.table.filenameFile name
@@ -4568,7 +4568,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\DataTables\AttachmentDataTable.php:153Part-DB1\src\DataTables\AttachmentDataTable.php:153
-
+ attachment.table.filesizeFile size
@@ -4588,7 +4588,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\DataTables\PartsDataTable.php:193Part-DB1\src\DataTables\PartsDataTable.php:200
-
+ truetrue
@@ -4610,7 +4610,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\DataTables\PartsDataTable.php:201Part-DB1\src\Form\Type\SIUnitType.php:139
-
+ falsefalse
@@ -4620,7 +4620,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\DataTables\Column\LogEntryTargetColumn.php:128Part-DB1\src\DataTables\Column\LogEntryTargetColumn.php:119
-
+ log.target_deleteddeleted
@@ -4631,7 +4631,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\DataTables\Column\RevertLogColumn.php:60new
-
+ log.undo.undeleteUndelete element
@@ -4642,7 +4642,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\DataTables\Column\RevertLogColumn.php:66new
-
+ log.undo.undoUndo change
@@ -4653,7 +4653,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\DataTables\Column\RevertLogColumn.php:86new
-
+ log.undo.revertRevert element to this timestamp
@@ -4663,7 +4663,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\DataTables\LogDataTable.php:173Part-DB1\src\DataTables\LogDataTable.php:161
-
+ log.idID
@@ -4673,7 +4673,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\DataTables\LogDataTable.php:178Part-DB1\src\DataTables\LogDataTable.php:166
-
+ log.timestampTimestamp
@@ -4683,7 +4683,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\DataTables\LogDataTable.php:183Part-DB1\src\DataTables\LogDataTable.php:171
-
+ log.typeEvent
@@ -4693,7 +4693,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\DataTables\LogDataTable.php:191Part-DB1\src\DataTables\LogDataTable.php:179
-
+ log.levelLevel
@@ -4703,7 +4703,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\DataTables\LogDataTable.php:200Part-DB1\src\DataTables\LogDataTable.php:188
-
+ log.userUser
@@ -4713,7 +4713,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\DataTables\LogDataTable.php:213Part-DB1\src\DataTables\LogDataTable.php:201
-
+ log.target_typeTarget type
@@ -4723,7 +4723,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\DataTables\LogDataTable.php:226Part-DB1\src\DataTables\LogDataTable.php:214
-
+ log.targetTarget
@@ -4734,7 +4734,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\DataTables\LogDataTable.php:218new
-
+ log.extraExtra
@@ -4744,7 +4744,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\DataTables\PartsDataTable.php:168Part-DB1\src\DataTables\PartsDataTable.php:116
-
+ part.table.nameName
@@ -4754,7 +4754,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\DataTables\PartsDataTable.php:178Part-DB1\src\DataTables\PartsDataTable.php:126
-
+ part.table.idId
@@ -4764,7 +4764,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\DataTables\PartsDataTable.php:182Part-DB1\src\DataTables\PartsDataTable.php:130
-
+ part.table.descriptionDescription
@@ -4774,7 +4774,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\DataTables\PartsDataTable.php:185Part-DB1\src\DataTables\PartsDataTable.php:133
-
+ part.table.categoryCategory
@@ -4784,7 +4784,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\DataTables\PartsDataTable.php:190Part-DB1\src\DataTables\PartsDataTable.php:138
-
+ part.table.footprintFootprint
@@ -4794,7 +4794,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\DataTables\PartsDataTable.php:194Part-DB1\src\DataTables\PartsDataTable.php:142
-
+ part.table.manufacturerManufacturer
@@ -4804,7 +4804,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\DataTables\PartsDataTable.php:197Part-DB1\src\DataTables\PartsDataTable.php:145
-
+ part.table.storeLocationsStorage locations
@@ -4814,7 +4814,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\DataTables\PartsDataTable.php:216Part-DB1\src\DataTables\PartsDataTable.php:164
-
+ part.table.amountAmount
@@ -4824,7 +4824,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\DataTables\PartsDataTable.php:224Part-DB1\src\DataTables\PartsDataTable.php:172
-
+ part.table.minamountMin. Amount
@@ -4834,7 +4834,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\DataTables\PartsDataTable.php:232Part-DB1\src\DataTables\PartsDataTable.php:180
-
+ part.table.partUnitMeasurement Unit
@@ -4844,7 +4844,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\DataTables\PartsDataTable.php:236Part-DB1\src\DataTables\PartsDataTable.php:184
-
+ part.table.addedDateCreated at
@@ -4854,7 +4854,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\DataTables\PartsDataTable.php:240Part-DB1\src\DataTables\PartsDataTable.php:188
-
+ part.table.lastModifiedLast modified
@@ -4864,7 +4864,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\DataTables\PartsDataTable.php:244Part-DB1\src\DataTables\PartsDataTable.php:192
-
+ part.table.needsReviewNeeds review
@@ -4874,7 +4874,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\DataTables\PartsDataTable.php:251Part-DB1\src\DataTables\PartsDataTable.php:199
-
+ part.table.favoriteFavorite
@@ -4884,7 +4884,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\DataTables\PartsDataTable.php:258Part-DB1\src\DataTables\PartsDataTable.php:206
-
+ part.table.manufacturingStatusStatus
@@ -4898,7 +4898,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\DataTables\PartsDataTable.php:210Part-DB1\src\Form\Part\PartBaseType.php:88
-
+ m_status.unknownUnknown
@@ -4910,7 +4910,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\DataTables\PartsDataTable.php:211Part-DB1\src\Form\Part\PartBaseType.php:88
-
+ m_status.announcedAnnounced
@@ -4922,7 +4922,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\DataTables\PartsDataTable.php:212Part-DB1\src\Form\Part\PartBaseType.php:88
-
+ m_status.activeActive
@@ -4934,7 +4934,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\DataTables\PartsDataTable.php:213Part-DB1\src\Form\Part\PartBaseType.php:88
-
+ m_status.nrfndNot recommended for new designs
@@ -4946,7 +4946,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\DataTables\PartsDataTable.php:214Part-DB1\src\Form\Part\PartBaseType.php:88
-
+ m_status.eolEnd of life
@@ -4958,7 +4958,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\DataTables\PartsDataTable.php:215Part-DB1\src\Form\Part\PartBaseType.php:88
-
+ m_status.discontinuedDiscontinued
@@ -4968,7 +4968,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\DataTables\PartsDataTable.php:271Part-DB1\src\DataTables\PartsDataTable.php:219
-
+ part.table.mpnMPN
@@ -4978,7 +4978,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\DataTables\PartsDataTable.php:275Part-DB1\src\DataTables\PartsDataTable.php:223
-
+ part.table.massMass
@@ -4988,7 +4988,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\DataTables\PartsDataTable.php:279Part-DB1\src\DataTables\PartsDataTable.php:227
-
+ part.table.tagsTags
@@ -4998,7 +4998,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\DataTables\PartsDataTable.php:283Part-DB1\src\DataTables\PartsDataTable.php:231
-
+ part.table.attachmentsAttachments
@@ -5008,7 +5008,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\EventSubscriber\UserSystem\LoginSuccessSubscriber.php:82Part-DB1\src\EventSubscriber\LoginSuccessListener.php:82
-
+ flash.login_successfulLogin successful
@@ -5019,7 +5019,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\AdminPages\ImportType.php:77src\Form\ImportType.php:68
-
+ JSONJSON
@@ -5030,7 +5030,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\AdminPages\ImportType.php:77src\Form\ImportType.php:68
-
+ XMLXML
@@ -5041,7 +5041,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\AdminPages\ImportType.php:77src\Form\ImportType.php:68
-
+ CSVCSV
@@ -5052,7 +5052,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\AdminPages\ImportType.php:77src\Form\ImportType.php:68
-
+ YAMLYAML
@@ -5062,7 +5062,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\AdminPages\ImportType.php:124Part-DB1\src\Form\AdminPages\ImportType.php:124
-
+ import.abort_on_validation.helpWhen this option is activated, the whole import process is aborted if invalid data is detected. If not selected, the invalid data is ignored and the importer will try to import the other elements.
@@ -5073,7 +5073,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\AdminPages\ImportType.php:86src\Form\ImportType.php:70
-
+ import.csv_separatorCSV separator
@@ -5084,7 +5084,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\AdminPages\ImportType.php:93src\Form\ImportType.php:72
-
+ parent.labelParent element
@@ -5095,7 +5095,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\AdminPages\ImportType.php:101src\Form\ImportType.php:75
-
+ import.fileFile
@@ -5106,7 +5106,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\AdminPages\ImportType.php:111src\Form\ImportType.php:78
-
+ import.preserve_childrenPreserve child elements on import
@@ -5117,7 +5117,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\AdminPages\ImportType.php:120src\Form\ImportType.php:80
-
+ import.abort_on_validationAbort on invalid data
@@ -5128,7 +5128,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\AdminPages\ImportType.php:132src\Form\ImportType.php:85
-
+ import.btnImport
@@ -5138,7 +5138,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\AttachmentFormType.php:113Part-DB1\src\Form\AttachmentFormType.php:109
-
+ attachment.edit.secure_file.helpAn attachment marked private can only be accessed by authenticated users with the proper permission. If this is activated no thumbnails are generated and access to file is less performant.
@@ -5148,7 +5148,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\AttachmentFormType.php:127Part-DB1\src\Form\AttachmentFormType.php:123
-
+ attachment.edit.url.helpYou can specify an URL to an external file here, or input an keyword which is used to search in built-in resources (e.g. footprints)
@@ -5158,7 +5158,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\AttachmentFormType.php:82Part-DB1\src\Form\AttachmentFormType.php:79
-
+ attachment.edit.nameName
@@ -5168,7 +5168,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\AttachmentFormType.php:85Part-DB1\src\Form\AttachmentFormType.php:82
-
+ attachment.edit.attachment_typeAttachment type
@@ -5178,7 +5178,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\AttachmentFormType.php:94Part-DB1\src\Form\AttachmentFormType.php:91
-
+ attachment.edit.show_in_tableShow in table
@@ -5188,7 +5188,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\AttachmentFormType.php:105Part-DB1\src\Form\AttachmentFormType.php:102
-
+ attachment.edit.secure_filePrivate attachment
@@ -5198,7 +5198,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\AttachmentFormType.php:119Part-DB1\src\Form\AttachmentFormType.php:115
-
+ attachment.edit.urlURL
@@ -5208,7 +5208,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\AttachmentFormType.php:133Part-DB1\src\Form\AttachmentFormType.php:129
-
+ attachment.edit.download_urlDownload external file
@@ -5218,7 +5218,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\AttachmentFormType.php:146Part-DB1\src\Form\AttachmentFormType.php:142
-
+ attachment.edit.fileUpload file
@@ -5228,7 +5228,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\LabelOptionsType.php:68Part-DB1\src\Services\ElementTypeNameGenerator.php:86
-
+ part.labelPart
@@ -5238,7 +5238,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\LabelOptionsType.php:68Part-DB1\src\Services\ElementTypeNameGenerator.php:87
-
+ part_lot.labelPart lot
@@ -5247,7 +5247,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\LabelOptionsType.php:78
-
+ label_options.barcode_type.noneNone
@@ -5256,7 +5256,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\LabelOptionsType.php:78
-
+ label_options.barcode_type.qrQR Code (recommended)
@@ -5265,7 +5265,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\LabelOptionsType.php:78
-
+ label_options.barcode_type.code128Code 128 (recommended)
@@ -5274,7 +5274,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\LabelOptionsType.php:78
-
+ label_options.barcode_type.code39Code 39 (recommended)
@@ -5283,7 +5283,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\LabelOptionsType.php:78
-
+ label_options.barcode_type.code93Code 93
@@ -5292,7 +5292,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\LabelOptionsType.php:78
-
+ label_options.barcode_type.datamatrixDatamatrix
@@ -5301,7 +5301,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\LabelOptionsType.php:122
-
+ label_options.lines_mode.htmlPlaceholders
@@ -5310,7 +5310,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\LabelOptionsType.php:122
-
+ label.options.lines_mode.twigTwig
@@ -5319,16 +5319,16 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\LabelOptionsType.php:126
-
+ label_options.lines_mode.help
- Twig documentation and Wiki for more information.]]>
+ If you select Twig here, the content field is interpreted as Twig template. See <a href="https://twig.symfony.com/doc/3.x/templates.html">Twig documentation</a> and <a href="https://docs.part-db.de/usage/labels.html#twig-mode">Wiki</a> for more information.Part-DB1\src\Form\LabelOptionsType.php:47
-
+ label_options.page_size.labelLabel size
@@ -5337,7 +5337,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\LabelOptionsType.php:66
-
+ label_options.supported_elements.labelTarget type
@@ -5346,7 +5346,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\LabelOptionsType.php:75
-
+ label_options.barcode_type.labelBarcode
@@ -5355,7 +5355,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\LabelOptionsType.php:102
-
+ label_profile.lines.labelContent
@@ -5364,7 +5364,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\LabelOptionsType.php:111
-
+ label_options.additional_css.labelAdditional styles (CSS)
@@ -5373,7 +5373,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\LabelOptionsType.php:120
-
+ label_options.lines_mode.labelParser mode
@@ -5382,7 +5382,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\LabelOptionsType.php:51
-
+ label_options.width.placeholderWidth
@@ -5391,7 +5391,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\LabelOptionsType.php:60
-
+ label_options.height.placeholderHeight
@@ -5400,7 +5400,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\LabelSystem\LabelDialogType.php:49
-
+ label_generator.target_id.range_hintYou can specify multiple IDs (e.g. 1,2,3) and/or a range (1-3) here to generate labels for multiple elements at once.
@@ -5409,7 +5409,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\LabelSystem\LabelDialogType.php:46
-
+ label_generator.target_id.labelTarget IDs
@@ -5418,7 +5418,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\LabelSystem\LabelDialogType.php:59
-
+ label_generator.updateUpdate
@@ -5427,7 +5427,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\LabelSystem\ScanDialogType.php:36
-
+ scan_dialog.inputInput
@@ -5436,7 +5436,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\LabelSystem\ScanDialogType.php:44
-
+ scan_dialog.submitSubmit
@@ -5445,7 +5445,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\ParameterType.php:41
-
+ parameters.name.placeholdere.g. DC Current Gain
@@ -5454,7 +5454,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\ParameterType.php:50
-
+ parameters.symbol.placeholdere.g. h_{FE}
@@ -5463,7 +5463,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\ParameterType.php:60
-
+ parameters.text.placeholdere.g. Test conditions
@@ -5472,7 +5472,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\ParameterType.php:71
-
+ parameters.max.placeholdere.g. 350
@@ -5481,7 +5481,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\ParameterType.php:82
-
+ parameters.min.placeholdere.g. 100
@@ -5490,7 +5490,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\ParameterType.php:93
-
+ parameters.typical.placeholdere.g. 200
@@ -5499,7 +5499,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\ParameterType.php:103
-
+ parameters.unit.placeholdere.g. V
@@ -5508,7 +5508,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\ParameterType.php:114
-
+ parameter.group.placeholdere.g. Technical Specifications
@@ -5518,7 +5518,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\Part\OrderdetailType.php:72Part-DB1\src\Form\Part\OrderdetailType.php:75
-
+ orderdetails.edit.supplierpartnrSupplier part number
@@ -5528,7 +5528,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\Part\OrderdetailType.php:81Part-DB1\src\Form\Part\OrderdetailType.php:84
-
+ orderdetails.edit.supplierSupplier
@@ -5538,7 +5538,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\Part\OrderdetailType.php:87Part-DB1\src\Form\Part\OrderdetailType.php:90
-
+ orderdetails.edit.urlLink to offer
@@ -5548,7 +5548,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\Part\OrderdetailType.php:93Part-DB1\src\Form\Part\OrderdetailType.php:96
-
+ orderdetails.edit.obsoleteNo longer available
@@ -5558,7 +5558,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\Part\OrderdetailType.php:75Part-DB1\src\Form\Part\OrderdetailType.php:78
-
+ orderdetails.edit.supplierpartnr.placeholdere.g. BC 547
@@ -5568,7 +5568,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\Part\PartBaseType.php:101Part-DB1\src\Form\Part\PartBaseType.php:99
-
+ part.edit.nameName
@@ -5578,7 +5578,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\Part\PartBaseType.php:109Part-DB1\src\Form\Part\PartBaseType.php:107
-
+ part.edit.descriptionDescription
@@ -5588,7 +5588,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\Part\PartBaseType.php:120Part-DB1\src\Form\Part\PartBaseType.php:118
-
+ part.edit.mininstockMinimum stock
@@ -5598,7 +5598,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\Part\PartBaseType.php:129Part-DB1\src\Form\Part\PartBaseType.php:127
-
+ part.edit.categoryCategory
@@ -5608,7 +5608,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\Part\PartBaseType.php:135Part-DB1\src\Form\Part\PartBaseType.php:133
-
+ part.edit.footprintFootprint
@@ -5618,7 +5618,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\Part\PartBaseType.php:142Part-DB1\src\Form\Part\PartBaseType.php:140
-
+ part.edit.tagsTags
@@ -5628,7 +5628,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\Part\PartBaseType.php:154Part-DB1\src\Form\Part\PartBaseType.php:152
-
+ part.edit.manufacturer.labelManufacturer
@@ -5638,7 +5638,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\Part\PartBaseType.php:161Part-DB1\src\Form\Part\PartBaseType.php:159
-
+ part.edit.manufacturer_url.labelLink to product page
@@ -5648,7 +5648,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\Part\PartBaseType.php:167Part-DB1\src\Form\Part\PartBaseType.php:165
-
+ part.edit.mpnManufacturer part number
@@ -5658,7 +5658,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\Part\PartBaseType.php:173Part-DB1\src\Form\Part\PartBaseType.php:171
-
+ part.edit.manufacturing_statusManufacturing status
@@ -5668,7 +5668,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\Part\PartBaseType.php:181Part-DB1\src\Form\Part\PartBaseType.php:179
-
+ part.edit.needs_reviewNeeds review
@@ -5678,7 +5678,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\Part\PartBaseType.php:189Part-DB1\src\Form\Part\PartBaseType.php:187
-
+ part.edit.is_favoriteFavorite
@@ -5688,7 +5688,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\Part\PartBaseType.php:197Part-DB1\src\Form\Part\PartBaseType.php:195
-
+ part.edit.massMass
@@ -5698,7 +5698,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\Part\PartBaseType.php:203Part-DB1\src\Form\Part\PartBaseType.php:201
-
+ part.edit.partUnitMeasuring unit
@@ -5708,7 +5708,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\Part\PartBaseType.php:212Part-DB1\src\Form\Part\PartBaseType.php:210
-
+ part.edit.commentNotes
@@ -5718,7 +5718,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\Part\PartBaseType.php:250Part-DB1\src\Form\Part\PartBaseType.php:246
-
+ part.edit.master_attachmentPreview image
@@ -5729,7 +5729,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\Part\PartBaseType.php:276src\Form\PartType.php:91
-
+ part.edit.saveSave changes
@@ -5740,7 +5740,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\Part\PartBaseType.php:277src\Form\PartType.php:92
-
+ part.edit.resetReset changes
@@ -5750,7 +5750,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\Part\PartBaseType.php:105Part-DB1\src\Form\Part\PartBaseType.php:103
-
+ part.edit.name.placeholdere.g. BC547
@@ -5760,7 +5760,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\Part\PartBaseType.php:115Part-DB1\src\Form\Part\PartBaseType.php:113
-
+ part.edit.description.placeholdere.g. NPN 45V, 0,1A, 0,5W
@@ -5770,7 +5770,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\Part\PartBaseType.php:123Part-DB1\src\Form\Part\PartBaseType.php:121
-
+ part.editmininstock.placeholdere.g. 1
@@ -5780,7 +5780,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\Part\PartLotType.php:69Part-DB1\src\Form\Part\PartLotType.php:69
-
+ part_lot.edit.descriptionDescription
@@ -5790,7 +5790,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\Part\PartLotType.php:78Part-DB1\src\Form\Part\PartLotType.php:78
-
+ part_lot.edit.locationStorage location
@@ -5800,7 +5800,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\Part\PartLotType.php:89Part-DB1\src\Form\Part\PartLotType.php:89
-
+ part_lot.edit.amountAmount
@@ -5810,7 +5810,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\Part\PartLotType.php:98Part-DB1\src\Form\Part\PartLotType.php:97
-
+ part_lot.edit.instock_unknownAmount unknown
@@ -5820,7 +5820,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\Part\PartLotType.php:109Part-DB1\src\Form\Part\PartLotType.php:108
-
+ part_lot.edit.needs_refillNeeds refill
@@ -5830,7 +5830,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\Part\PartLotType.php:120Part-DB1\src\Form\Part\PartLotType.php:119
-
+ part_lot.edit.expiration_dateExpiration date
@@ -5840,7 +5840,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\Part\PartLotType.php:128Part-DB1\src\Form\Part\PartLotType.php:125
-
+ part_lot.edit.commentNotes
@@ -5850,7 +5850,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\Permissions\PermissionsType.php:99Part-DB1\src\Form\Permissions\PermissionsType.php:99
-
+ perm.group.otherMiscellaneous
@@ -5860,7 +5860,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\TFAGoogleSettingsType.php:97Part-DB1\src\Form\TFAGoogleSettingsType.php:97
-
+ tfa_google.enableEnable authenticator app
@@ -5870,7 +5870,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\TFAGoogleSettingsType.php:101Part-DB1\src\Form\TFAGoogleSettingsType.php:101
-
+ tfa_google.disableDeactivate authenticator app
@@ -5880,7 +5880,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\TFAGoogleSettingsType.php:74Part-DB1\src\Form\TFAGoogleSettingsType.php:74
-
+ google_confirmationConfirmation code
@@ -5891,7 +5891,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\UserSettingsType.php:108src\Form\UserSettingsType.php:46
-
+ user.timezone.labelTimezone
@@ -5901,7 +5901,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\UserSettingsType.php:133Part-DB1\src\Form\UserSettingsType.php:132
-
+ user.currency.labelPreferred currency
@@ -5912,7 +5912,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\UserSettingsType.php:139src\Form\UserSettingsType.php:53
-
+ saveApply changes
@@ -5923,7 +5923,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\UserSettingsType.php:140src\Form\UserSettingsType.php:54
-
+ resetDiscard changes
@@ -5934,7 +5934,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\UserSettingsType.php:104src\Form\UserSettingsType.php:45
-
+ user_settings.language.placeholderServerwide language
@@ -5945,7 +5945,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\UserSettingsType.php:115src\Form\UserSettingsType.php:48
-
+ user_settings.timezone.placeholderServerwide Timezone
@@ -5955,7 +5955,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Services\ElementTypeNameGenerator.php:79Part-DB1\src\Services\ElementTypeNameGenerator.php:79
-
+ attachment.labelAttachment
@@ -5965,7 +5965,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Services\ElementTypeNameGenerator.php:81Part-DB1\src\Services\ElementTypeNameGenerator.php:81
-
+ attachment_type.labelAttachment type
@@ -5975,7 +5975,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Services\ElementTypeNameGenerator.php:82Part-DB1\src\Services\ElementTypeNameGenerator.php:82
-
+ project.labelProject
@@ -5985,7 +5985,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Services\ElementTypeNameGenerator.php:85Part-DB1\src\Services\ElementTypeNameGenerator.php:85
-
+ measurement_unit.labelMeasurement unit
@@ -5995,7 +5995,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Services\ElementTypeNameGenerator.php:90Part-DB1\src\Services\ElementTypeNameGenerator.php:90
-
+ currency.labelCurrency
@@ -6005,7 +6005,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Services\ElementTypeNameGenerator.php:91Part-DB1\src\Services\ElementTypeNameGenerator.php:91
-
+ orderdetail.labelOrder detail
@@ -6015,7 +6015,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Services\ElementTypeNameGenerator.php:92Part-DB1\src\Services\ElementTypeNameGenerator.php:92
-
+ pricedetail.labelPrice detail
@@ -6025,7 +6025,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Services\ElementTypeNameGenerator.php:94Part-DB1\src\Services\ElementTypeNameGenerator.php:94
-
+ user.labelUser
@@ -6034,7 +6034,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Services\ElementTypeNameGenerator.php:95
-
+ parameter.labelParameter
@@ -6043,7 +6043,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Services\ElementTypeNameGenerator.php:96
-
+ label_profile.labelLabel profile
@@ -6054,7 +6054,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Services\LogSystem\LogEntryExtraFormatter.php:161new
-
+ log.element_deleted.old_name.unknownUnknown
@@ -6064,7 +6064,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Services\MarkdownParser.php:73Part-DB1\src\Services\MarkdownParser.php:73
-
+ markdown.loadingLoading markdown. If this message does not disappear, try to reload the page.
@@ -6074,7 +6074,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Services\PasswordResetManager.php:98Part-DB1\src\Services\PasswordResetManager.php:98
-
+ pw_reset.email.subjectPassword reset for your Part-DB account
@@ -6083,7 +6083,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:108
-
+ tree.tools.toolsTools
@@ -6094,7 +6094,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:107src\Services\ToolsTreeBuilder.php:74
-
+ tree.tools.editEdit
@@ -6105,7 +6105,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:108src\Services\ToolsTreeBuilder.php:81
-
+ tree.tools.showShow
@@ -6115,7 +6115,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:111Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:109
-
+ tree.tools.systemSystem
@@ -6124,7 +6124,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:123
-
+ tree.tools.tools.label_dialogLabel generator
@@ -6133,7 +6133,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:130
-
+ tree.tools.tools.label_scannerScanner
@@ -6144,7 +6144,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:126src\Services\ToolsTreeBuilder.php:62
-
+ tree.tools.edit.attachment_typesAttachment types
@@ -6155,7 +6155,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:132src\Services\ToolsTreeBuilder.php:64
-
+ tree.tools.edit.categoriesCategories
@@ -6166,7 +6166,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:138src\Services\ToolsTreeBuilder.php:66
-
+ tree.tools.edit.projectsProjects
@@ -6177,7 +6177,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:144src\Services\ToolsTreeBuilder.php:68
-
+ tree.tools.edit.suppliersSuppliers
@@ -6188,7 +6188,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:150src\Services\ToolsTreeBuilder.php:70
-
+ tree.tools.edit.manufacturerManufacturers
@@ -6198,7 +6198,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:179Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:156
-
+ tree.tools.edit.storelocationStorage locations
@@ -6208,7 +6208,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:185Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:162
-
+ tree.tools.edit.footprintFootprints
@@ -6218,7 +6218,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:191Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:168
-
+ tree.tools.edit.currencyCurrencies
@@ -6228,7 +6228,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:197Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:174
-
+ tree.tools.edit.measurement_unitMeasurement Unit
@@ -6237,7 +6237,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:203
-
+ tree.tools.edit.label_profileLabel profiles
@@ -6247,7 +6247,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:209Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:180
-
+ tree.tools.edit.partNew part
@@ -6258,7 +6258,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:197src\Services\ToolsTreeBuilder.php:77
-
+ tree.tools.show.all_partsShow all parts
@@ -6268,7 +6268,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:232Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:203
-
+ tree.tools.show.all_attachmentsAttachments
@@ -6279,7 +6279,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:210new
-
+ tree.tools.show.statisticsStatistics
@@ -6289,7 +6289,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:258Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:229
-
+ tree.tools.system.usersUsers
@@ -6299,7 +6299,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:264Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:235
-
+ tree.tools.system.groupsGroups
@@ -6310,7 +6310,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:242new
-
+ tree.tools.system.event_logEvent log
@@ -6321,7 +6321,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Services\Trees\TreeViewGenerator.php:95src\Services\TreeBuilder.php:124
-
+ entity.tree.newNew Element
@@ -6331,7 +6331,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\templates\Parts\info\_attachments_info.html.twig:34obsolete
-
+ attachment.external_fileExternal file
@@ -6341,7 +6341,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\templates\Parts\info\_attachments_info.html.twig:62obsolete
-
+ attachment.editEdit
@@ -6352,7 +6352,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
templates\base.html.twig:88obsolete
-
+ barcode.scanScan Barcode
@@ -6363,7 +6363,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
src\Form\UserSettingsType.php:49obsolete
-
+ user.theme.labelTheme
@@ -6374,7 +6374,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
src\Form\UserSettingsType.php:50obsolete
-
+ user_settings.theme.placeholderServerwide Theme
@@ -6385,7 +6385,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
newobsolete
-
+ log.user_login.ipIP
@@ -6399,7 +6399,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
newobsolete
-
+ log.undo_mode.undoChange undone
@@ -6413,7 +6413,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
newobsolete
-
+ log.undo_mode.revertElement reverted
@@ -6424,7 +6424,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
newobsolete
-
+ log.element_created.original_instockOld instock
@@ -6435,7 +6435,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
newobsolete
-
+ log.element_deleted.old_nameOld name
@@ -6446,7 +6446,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
newobsolete
-
+ log.element_edited.changed_fieldsChanged fields
@@ -6457,7 +6457,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
newobsolete
-
+ log.instock_changed.commentComment
@@ -6468,7 +6468,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
newobsolete
-
+ log.collection_deleted.deletedDeleted element:
@@ -6479,7 +6479,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
obsoleteobsolete
-
+ go.exclamationGo!
@@ -6490,7 +6490,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
obsoleteobsolete
-
+ language.englishEnglish
@@ -6501,7 +6501,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
obsoleteobsolete
-
+ language.germanGerman
@@ -6511,7 +6511,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
obsoleteobsolete
-
+ flash.password_change_neededPassword change needed!
@@ -6521,7 +6521,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
obsoleteobsolete
-
+ attachment.table.typeAttachment type
@@ -6531,7 +6531,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
obsoleteobsolete
-
+ attachment.table.elementAssociated element
@@ -6541,7 +6541,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
obsoleteobsolete
-
+ attachment.edit.isPicturePicture?
@@ -6551,7 +6551,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
obsoleteobsolete
-
+ attachment.edit.is3DModel3D model?
@@ -6561,7 +6561,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
obsoleteobsolete
-
+ attachment.edit.isBuiltinBuiltin?
@@ -6571,7 +6571,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
obsoleteobsolete
-
+ category.edit.default_comment.placeholdere.g. useful for switching
@@ -6581,7 +6581,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
obsoleteobsolete
-
+ tfa_backup.regenerate_codesGenerate new backup codes
@@ -6591,7 +6591,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
obsoleteobsolete
-
+ validator.noneofitschild.selfA element can not be its own parent.
@@ -6601,7 +6601,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
obsoleteobsolete
-
+ validator.noneofitschild.childrenThe parent can not be one of the children of itself.
@@ -6611,7 +6611,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
obsoleteobsolete
-
+ validator.part_lot.location_full.no_increasmentThe storage location was marked as full, so you can not increase the instock amount. (New amount max. {{ old_amount }})
@@ -6621,7 +6621,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
obsoleteobsolete
-
+ validator.part_lot.location_fullThe storage location was marked as full, so you can not add a new part to it.
@@ -6631,7 +6631,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
obsoleteobsolete
-
+ validator.part_lot.only_existingThe storage location was marked as "only existing", so you can not add new part to it.
@@ -6641,7 +6641,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
obsoleteobsolete
-
+ validator.part_lot.single_partThe storage location was marked as "single part", so you can not add a new part to it.
@@ -6651,7 +6651,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
obsoleteobsolete
-
+ m_status.active.helpThe part is currently and in the foreseeable future in production
@@ -6661,7 +6661,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
obsoleteobsolete
-
+ m_status.announced.helpThe part was announced but is not available yet.
@@ -6671,7 +6671,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
obsoleteobsolete
-
+ m_status.discontinued.helpThe part is discontinued and not produced anymore.
@@ -6681,7 +6681,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
obsoleteobsolete
-
+ m_status.eol.helpThe product has reached its end-of-life and the production will be stopped soon.
@@ -6691,7 +6691,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
obsoleteobsolete
-
+ m_status.nrfnd.helpThe part is currently in production but is not recommended for new designs.
@@ -6701,7 +6701,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
obsoleteobsolete
-
+ m_status.unknown.helpThe manufacturing status of the part is not known.
@@ -6711,7 +6711,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
obsoleteobsolete
-
+ flash.successSuccess
@@ -6721,7 +6721,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
obsoleteobsolete
-
+ flash.errorError
@@ -6731,7 +6731,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
obsoleteobsolete
-
+ flash.warningWarning
@@ -6741,7 +6741,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
obsoleteobsolete
-
+ flash.noticeNotice
@@ -6751,7 +6751,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
obsoleteobsolete
-
+ flash.infoInfo
@@ -6761,7 +6761,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
obsoleteobsolete
-
+ validator.noLockoutYou can not withdraw yourself the "change permission" permission, to prevent that you lockout yourself accidentally.
@@ -6771,7 +6771,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
obsoleteobsolete
-
+ attachment_type.edit.filetype_filterAllowed file extensions
@@ -6781,7 +6781,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
obsoleteobsolete
-
+ attachment_type.edit.filetype_filter.helpYou can specify a comma separated list of file extension or mime types, which an uploaded file must have when assigned to this attachment type. To allow all supported image files, you can use image/*.
@@ -6791,7 +6791,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
obsoleteobsolete
-
+ attachment_type.edit.filetype_filter.placeholdere.g. .txt, application/pdf, image/*
@@ -6802,7 +6802,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
obsoleteobsolete
-
+ part.name.placeholdere.g. BC547
@@ -6812,7 +6812,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
obsoleteobsolete
-
+ entity.edit.not_selectableNot selectable
@@ -6822,7 +6822,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
obsoleteobsolete
-
+ entity.edit.not_selectable.helpIf this option is activated, this element can not be assigned to a part property. Useful if this element is just used for grouping.
@@ -6832,7 +6832,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
obsoleteobsolete
-
+ bbcode.hintYou can use BBCode here (e.g. [b]Bold[/b])
@@ -6842,7 +6842,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
obsoleteobsolete
-
+ entity.createCreate element
@@ -6852,7 +6852,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
obsoleteobsolete
-
+ entity.edit.saveSave
@@ -6862,7 +6862,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
obsoleteobsolete
-
+ category.edit.disable_footprintsDisable footprints
@@ -6872,7 +6872,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
obsoleteobsolete
-
+ category.edit.disable_footprints.helpIf this option is activated, the footprint property is disabled for all parts with this category.
@@ -6882,7 +6882,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
obsoleteobsolete
-
+ category.edit.disable_manufacturersDisable manufacturers
@@ -6892,7 +6892,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
obsoleteobsolete
-
+ category.edit.disable_manufacturers.helpIf this option is activated, the manufacturer property is disabled for all parts with this category.
@@ -6902,7 +6902,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
obsoleteobsolete
-
+ category.edit.disable_autodatasheetsDisable automatic datasheet links
@@ -6912,7 +6912,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
obsoleteobsolete
-
+ category.edit.disable_autodatasheets.helpIf this option is activated, no automatic links to datasheets are created for parts with this category.
@@ -6922,7 +6922,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
obsoleteobsolete
-
+ category.edit.disable_propertiesDisable properties
@@ -6932,7 +6932,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
obsoleteobsolete
-
+ category.edit.disable_properties.helpIf this option is activated, the part properties are disabled for parts with this category.
@@ -6942,7 +6942,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
obsoleteobsolete
-
+ category.edit.partname_hintPart name hint
@@ -6952,7 +6952,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
obsoleteobsolete
-
+ category.edit.partname_hint.placeholdere.g. 100nF
@@ -6962,7 +6962,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
obsoleteobsolete
-
+ category.edit.partname_regexName filter
@@ -6972,7 +6972,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
obsoleteobsolete
-
+ category.edit.default_descriptionDefault description
@@ -6982,7 +6982,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
obsoleteobsolete
-
+ category.edit.default_description.placeholdere.g. Capacitor, 10mm x 10mm, SMD
@@ -6992,7 +6992,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
obsoleteobsolete
-
+ category.edit.default_commentDefault notes
@@ -7002,7 +7002,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
obsoleteobsolete
-
+ company.edit.addressAddress
@@ -7012,7 +7012,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
obsoleteobsolete
-
+ company.edit.address.placeholdere.g. Examplestreet 314
Exampletown
@@ -7023,7 +7023,7 @@ Exampletown
obsoleteobsolete
-
+ company.edit.phone_numberPhone number
@@ -7033,7 +7033,7 @@ Exampletown
obsoleteobsolete
-
+ company.edit.phone_number.placeholder+49 12345 6789
@@ -7043,7 +7043,7 @@ Exampletown
obsoleteobsolete
-
+ company.edit.fax_numberFax number
@@ -7053,7 +7053,7 @@ Exampletown
obsoleteobsolete
-
+ company.edit.emailEmail
@@ -7063,7 +7063,7 @@ Exampletown
obsoleteobsolete
-
+ company.edit.email.placeholdere.g. contact@foo.bar
@@ -7073,7 +7073,7 @@ Exampletown
obsoleteobsolete
-
+ company.edit.websiteWebsite
@@ -7083,7 +7083,7 @@ Exampletown
obsoleteobsolete
-
+ company.edit.website.placeholderhttps://www.foo.bar
@@ -7093,7 +7093,7 @@ Exampletown
obsoleteobsolete
-
+ company.edit.auto_product_urlProduct URL
@@ -7103,7 +7103,7 @@ Exampletown
obsoleteobsolete
-
+ company.edit.auto_product_url.helpThis field is used to determine a link to the part on the company page. %PARTNUMBER% will be replaced with the order number.
@@ -7113,7 +7113,7 @@ Exampletown
obsoleteobsolete
-
+ company.edit.auto_product_url.placeholderhttps://foo.bar/product/%PARTNUMBER%
@@ -7123,7 +7123,7 @@ Exampletown
obsoleteobsolete
-
+ currency.edit.iso_codeISO code
@@ -7133,7 +7133,7 @@ Exampletown
obsoleteobsolete
-
+ currency.edit.exchange_rateExchange rate
@@ -7143,7 +7143,7 @@ Exampletown
obsoleteobsolete
-
+ footprint.edit.3d_model3D model
@@ -7153,7 +7153,7 @@ Exampletown
obsoleteobsolete
-
+ mass_creation.linesInput
@@ -7163,7 +7163,7 @@ Exampletown
obsoleteobsolete
-
+ mass_creation.lines.placeholderElement 1
Element 1.1
@@ -7178,7 +7178,7 @@ Element 3obsoleteobsolete
-
+ entity.mass_creation.btnCreate
@@ -7188,7 +7188,7 @@ Element 3
obsoleteobsolete
-
+ measurement_unit.edit.is_integerIs integer
@@ -7198,7 +7198,7 @@ Element 3
obsoleteobsolete
-
+ measurement_unit.edit.is_integer.helpIf this option is activated, all values with this unit will be rounded to whole numbers.
@@ -7208,7 +7208,7 @@ Element 3
obsoleteobsolete
-
+ measurement_unit.edit.use_si_prefixUse SI prefix
@@ -7218,7 +7218,7 @@ Element 3
obsoleteobsolete
-
+ measurement_unit.edit.use_si_prefix.helpIf this option is activated, values are outputted with SI prefixes (e.g. 1,2kg instead of 1200g)
@@ -7228,7 +7228,7 @@ Element 3
obsoleteobsolete
-
+ measurement_unit.edit.unit_symbolUnit symbol
@@ -7238,7 +7238,7 @@ Element 3
obsoleteobsolete
-
+ measurement_unit.edit.unit_symbol.placeholdere.g. m
@@ -7248,7 +7248,7 @@ Element 3
obsoleteobsolete
-
+ storelocation.edit.is_full.labelStorelocation full
@@ -7258,7 +7258,7 @@ Element 3
obsoleteobsolete
-
+ storelocation.edit.is_full.helpIf this option is selected, it is neither possible to add new parts to this storelocation or to increase the amount of existing parts.
@@ -7268,7 +7268,7 @@ Element 3
obsoleteobsolete
-
+ storelocation.limit_to_existing.labelLimit to existing parts
@@ -7278,7 +7278,7 @@ Element 3
obsoleteobsolete
-
+ storelocation.limit_to_existing.helpIf this option is activated, it is not possible to add new parts to this storelocation, but the amount of existing parts can be increased.
@@ -7288,7 +7288,7 @@ Element 3
obsoleteobsolete
-
+ storelocation.only_single_part.labelOnly single part
@@ -7298,7 +7298,7 @@ Element 3
obsoleteobsolete
-
+ storelocation.only_single_part.helpIf this option is activated, only a single part (with every amount) can be assigned to this storage location. Useful for small SMD boxes or feeders.
@@ -7308,7 +7308,7 @@ Element 3
obsoleteobsolete
-
+ storelocation.storage_type.labelStorage type
@@ -7318,7 +7318,7 @@ Element 3
obsoleteobsolete
-
+ storelocation.storage_type.helpYou can select a measurement unit here, which a part must have to be able to be assigned to this storage location
@@ -7328,7 +7328,7 @@ Element 3
obsoleteobsolete
-
+ supplier.edit.default_currencyDefault currency
@@ -7338,7 +7338,7 @@ Element 3
obsoleteobsolete
-
+ supplier.shipping_costs.labelShipping Costs
@@ -7348,7 +7348,7 @@ Element 3
obsoleteobsolete
-
+ user.username.placeholdere.g. j.doe
@@ -7358,7 +7358,7 @@ Element 3
obsoleteobsolete
-
+ user.firstName.placeholdere.g John
@@ -7368,7 +7368,7 @@ Element 3
obsoleteobsolete
-
+ user.lastName.placeholdere.g. Doe
@@ -7378,7 +7378,7 @@ Element 3
obsoleteobsolete
-
+ user.email.placeholderj.doe@ecorp.com
@@ -7388,7 +7388,7 @@ Element 3
obsoleteobsolete
-
+ user.department.placeholdere.g. Development
@@ -7398,7 +7398,7 @@ Element 3
obsoleteobsolete
-
+ user.settings.pw_new.labelNew password
@@ -7408,7 +7408,7 @@ Element 3
obsoleteobsolete
-
+ user.settings.pw_confirm.labelConfirm new password
@@ -7418,7 +7418,7 @@ Element 3
obsoleteobsolete
-
+ user.edit.needs_pw_changeUser needs to change password
@@ -7428,7 +7428,7 @@ Element 3
obsoleteobsolete
-
+ user.edit.user_disabledUser disabled (no login possible)
@@ -7438,7 +7438,7 @@ Element 3
obsoleteobsolete
-
+ user.createCreate user
@@ -7448,7 +7448,7 @@ Element 3
obsoleteobsolete
-
+ user.edit.saveSave
@@ -7458,7 +7458,7 @@ Element 3
obsoleteobsolete
-
+ entity.edit.resetDiscard changes
@@ -7469,7 +7469,7 @@ Element 3
obsoleteobsolete
-
+ part.withdraw.btnWithdraw
@@ -7480,7 +7480,7 @@ Element 3
obsoleteobsolete
-
+ part.withdraw.comment:Comment/Purpose
@@ -7491,7 +7491,7 @@ Element 3
obsoleteobsolete
-
+ part.add.captionAdd parts
@@ -7502,7 +7502,7 @@ Element 3
obsoleteobsolete
-
+ part.add.btnAdd
@@ -7513,7 +7513,7 @@ Element 3
obsoleteobsolete
-
+ part.add.commentComment/Purpose
@@ -7524,7 +7524,7 @@ Element 3
obsoleteobsolete
-
+ admin.commentNotes
@@ -7535,7 +7535,7 @@ Element 3
obsoleteobsolete
-
+ manufacturer_url.labelManufacturer link
@@ -7546,7 +7546,7 @@ Element 3
obsoleteobsolete
-
+ part.description.placeholdere.g. NPN 45V 0,1A 0,5W
@@ -7557,7 +7557,7 @@ Element 3
obsoleteobsolete
-
+ part.instock.placeholdere.g. 10
@@ -7568,7 +7568,7 @@ Element 3
obsoleteobsolete
-
+ part.mininstock.placeholdere.g. 5
@@ -7578,7 +7578,7 @@ Element 3
obsoleteobsolete
-
+ part.order.price_perPrice per
@@ -7588,7 +7588,7 @@ Element 3
obsoleteobsolete
-
+ part.withdraw.captionWithdraw parts
@@ -7598,7 +7598,7 @@ Element 3
obsoleteobsolete
-
+ datatable.datatable.lengthMenu_MENU_
@@ -7608,7 +7608,7 @@ Element 3
obsoleteobsolete
-
+ perm.group.partsParts
@@ -7618,7 +7618,7 @@ Element 3
obsoleteobsolete
-
+ perm.group.structuresData structures
@@ -7628,7 +7628,7 @@ Element 3
obsoleteobsolete
-
+ perm.group.systemSystem
@@ -7638,7 +7638,7 @@ Element 3
obsoleteobsolete
-
+ perm.partsParts
@@ -7648,7 +7648,7 @@ Element 3
obsoleteobsolete
-
+ perm.readView
@@ -7658,7 +7658,7 @@ Element 3
obsoleteobsolete
-
+