From 47702d613141c5576dc892ce1fa465474ea4232d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20B=C3=B6hmer?= Date: Mon, 11 May 2020 22:59:25 +0200 Subject: [PATCH] Added quick link to parts list to the admin pages. Fixes issue #55. --- .../AdminPages/AttachmentTypeAdmin.html.twig | 8 + templates/AdminPages/CategoryAdmin.html.twig | 8 + templates/AdminPages/CurrencyAdmin.html.twig | 8 + templates/AdminPages/DeviceAdmin.html.twig | 8 + .../AdminPages/EntityAdminBase.html.twig | 4 +- templates/AdminPages/FootprintAdmin.html.twig | 8 + templates/AdminPages/GroupAdmin.html.twig | 8 + .../AdminPages/LabelProfileAdmin.html.twig | 8 + .../AdminPages/ManufacturerAdmin.html.twig | 8 + .../AdminPages/MeasurementUnitAdmin.html.twig | 3 +- .../AdminPages/StorelocationAdmin.html.twig | 8 + templates/AdminPages/SupplierAdmin.html.twig | 8 + templates/AdminPages/UserAdmin.html.twig | 8 + translations/messages.de.xlf | 2098 ++++++++-------- translations/messages.en.xlf | 2104 +++++++++-------- 15 files changed, 2429 insertions(+), 1868 deletions(-) diff --git a/templates/AdminPages/AttachmentTypeAdmin.html.twig b/templates/AdminPages/AttachmentTypeAdmin.html.twig index 49c02070..91180a7c 100644 --- a/templates/AdminPages/AttachmentTypeAdmin.html.twig +++ b/templates/AdminPages/AttachmentTypeAdmin.html.twig @@ -6,4 +6,12 @@ {% block additional_controls %} {{ form_row(form.filetype_filter) }} +{% endblock %} + +{% block edit_title %} + {% trans %}attachment_type.edit{% endtrans %}: {{ entity.name }} +{% endblock %} + +{% block new_title %} + {% trans %}attachment_type.new{% endtrans %} {% endblock %} \ No newline at end of file diff --git a/templates/AdminPages/CategoryAdmin.html.twig b/templates/AdminPages/CategoryAdmin.html.twig index c81ba6e4..e39ea3d0 100644 --- a/templates/AdminPages/CategoryAdmin.html.twig +++ b/templates/AdminPages/CategoryAdmin.html.twig @@ -9,6 +9,14 @@ {% endblock %} +{% block edit_title %} + {% trans %}category.edit{% endtrans %}: {{ entity.name }} +{% endblock %} + +{% block new_title %} + {% trans %}category.new{% endtrans %} +{% endblock %} + {% block additional_panes %}
{{ form_row(form.disable_footprints) }} diff --git a/templates/AdminPages/CurrencyAdmin.html.twig b/templates/AdminPages/CurrencyAdmin.html.twig index 5bc6fd59..ed50f108 100644 --- a/templates/AdminPages/CurrencyAdmin.html.twig +++ b/templates/AdminPages/CurrencyAdmin.html.twig @@ -23,4 +23,12 @@ {{ '1'|format_currency(default_currency) }} = {{ entity.inverseExchangeRate | format_currency(entity.isoCode, {fraction_digit: 5}) }} {% endif %} +{% endblock %} + +{% block edit_title %} + {% trans %}currency.edit{% endtrans %}: {{ entity.name }} +{% endblock %} + +{% block new_title %} + {% trans %}currency.new{% endtrans %} {% endblock %} \ No newline at end of file diff --git a/templates/AdminPages/DeviceAdmin.html.twig b/templates/AdminPages/DeviceAdmin.html.twig index 9a75eb32..633d3bb2 100644 --- a/templates/AdminPages/DeviceAdmin.html.twig +++ b/templates/AdminPages/DeviceAdmin.html.twig @@ -2,4 +2,12 @@ {% block card_title %} {% trans %}device.caption{% endtrans %} +{% endblock %} + +{% block edit_title %} + {% trans %}device.edit{% endtrans %}: {{ entity.name }} +{% endblock %} + +{% block new_title %} + {% trans %}device.new{% endtrans %} {% endblock %} \ No newline at end of file diff --git a/templates/AdminPages/EntityAdminBase.html.twig b/templates/AdminPages/EntityAdminBase.html.twig index 514f9938..817b6c2a 100644 --- a/templates/AdminPages/EntityAdminBase.html.twig +++ b/templates/AdminPages/EntityAdminBase.html.twig @@ -42,12 +42,12 @@
{% if entity.ID %} - {% trans with {'%name': entity.name} %}edit.caption{% endtrans %} + {% block edit_title %}{% trans with {'%name': entity.name} %}edit.caption{% endtrans %}{% endblock %} {% if timeTravel is defined and timeTravel is not null %} ({{ timeTravel|format_datetime('short') }}) {% endif %} {% else %} - {% trans %}new.caption{% endtrans %} + {% block new_title %}{% trans %}new.caption{% endtrans %}{% endblock %} {% endif %} {% if timeTravel is defined and timeTravel is not null %} diff --git a/templates/AdminPages/FootprintAdmin.html.twig b/templates/AdminPages/FootprintAdmin.html.twig index 13c4519b..2771fa46 100644 --- a/templates/AdminPages/FootprintAdmin.html.twig +++ b/templates/AdminPages/FootprintAdmin.html.twig @@ -7,4 +7,12 @@ {% block master_picture_block %} {{ form_row(form.master_picture_attachment) }} {{ form_row(form.footprint_3d) }} +{% endblock %} + +{% block edit_title %} + {% trans %}footprint.edit{% endtrans %}: {{ entity.name }} +{% endblock %} + +{% block new_title %} + {% trans %}footprint.new{% endtrans %} {% endblock %} \ No newline at end of file diff --git a/templates/AdminPages/GroupAdmin.html.twig b/templates/AdminPages/GroupAdmin.html.twig index 305ae156..7952d06f 100644 --- a/templates/AdminPages/GroupAdmin.html.twig +++ b/templates/AdminPages/GroupAdmin.html.twig @@ -18,4 +18,12 @@ {% block additional_controls %} {{ form_row(form.enforce2FA) }} +{% endblock %} + +{% block edit_title %} + {% trans %}group.edit{% endtrans %}: {{ entity.name }} +{% endblock %} + +{% block new_title %} + {% trans %}group.new{% endtrans %} {% endblock %} \ No newline at end of file diff --git a/templates/AdminPages/LabelProfileAdmin.html.twig b/templates/AdminPages/LabelProfileAdmin.html.twig index b4e8977e..2d008448 100644 --- a/templates/AdminPages/LabelProfileAdmin.html.twig +++ b/templates/AdminPages/LabelProfileAdmin.html.twig @@ -49,4 +49,12 @@
{% endif %} +{% endblock %} + +{% block edit_title %} + {% trans %}label_profile.edit{% endtrans %}: {{ entity.name }} +{% endblock %} + +{% block new_title %} + {% trans %}label_profile.new{% endtrans %} {% endblock %} \ No newline at end of file diff --git a/templates/AdminPages/ManufacturerAdmin.html.twig b/templates/AdminPages/ManufacturerAdmin.html.twig index 9d5db787..793f36b1 100644 --- a/templates/AdminPages/ManufacturerAdmin.html.twig +++ b/templates/AdminPages/ManufacturerAdmin.html.twig @@ -2,4 +2,12 @@ {% block card_title %} {% trans %}manufacturer.caption{% endtrans %} +{% endblock %} + +{% block edit_title %} + {% trans %}manufacturer.edit{% endtrans %}: {{ entity.name }} +{% endblock %} + +{% block new_title %} + {% trans %}manufacturer.new{% endtrans %} {% endblock %} \ No newline at end of file diff --git a/templates/AdminPages/MeasurementUnitAdmin.html.twig b/templates/AdminPages/MeasurementUnitAdmin.html.twig index 288014c5..0e87b77e 100644 --- a/templates/AdminPages/MeasurementUnitAdmin.html.twig +++ b/templates/AdminPages/MeasurementUnitAdmin.html.twig @@ -8,4 +8,5 @@ {{ form_row(form.unit) }} {{ form_row(form.is_integer) }} {{ form_row(form.use_si_prefix)}} -{% endblock %} \ No newline at end of file +{% endblock %} + diff --git a/templates/AdminPages/StorelocationAdmin.html.twig b/templates/AdminPages/StorelocationAdmin.html.twig index 57103a41..8ed65d82 100644 --- a/templates/AdminPages/StorelocationAdmin.html.twig +++ b/templates/AdminPages/StorelocationAdmin.html.twig @@ -26,4 +26,12 @@ {{ form_row(form.limit_to_existing_parts) }} {{ form_row(form.only_single_part) }} +{% endblock %} + +{% block edit_title %} + {% trans %}storelocation.edit{% endtrans %}: {{ entity.name }} +{% endblock %} + +{% block new_title %} + {% trans %}storelocation.new{% endtrans %} {% endblock %} \ No newline at end of file diff --git a/templates/AdminPages/SupplierAdmin.html.twig b/templates/AdminPages/SupplierAdmin.html.twig index b4cc4671..5cbe59ba 100644 --- a/templates/AdminPages/SupplierAdmin.html.twig +++ b/templates/AdminPages/SupplierAdmin.html.twig @@ -10,4 +10,12 @@ {{ form_row(form.shipping_costs) }} {{ form_row(form.comment) }} +{% endblock %} + +{% block edit_title %} + {% trans %}supplier.edit{% endtrans %}: {{ entity.name }} +{% endblock %} + +{% block new_title %} + {% trans %}supplier.new{% endtrans %} {% endblock %} \ No newline at end of file diff --git a/templates/AdminPages/UserAdmin.html.twig b/templates/AdminPages/UserAdmin.html.twig index cdcc584d..33c44626 100644 --- a/templates/AdminPages/UserAdmin.html.twig +++ b/templates/AdminPages/UserAdmin.html.twig @@ -79,4 +79,12 @@
{{ form_row(form.permissions) }}
+{% endblock %} + +{% block edit_title %} + {% trans %}user.edit{% endtrans %}: {{ entity.name }} +{% endblock %} + +{% block new_title %} + {% trans %}user.new{% endtrans %} {% endblock %} \ No newline at end of file diff --git a/translations/messages.de.xlf b/translations/messages.de.xlf index d288d486..073619ad 100644 --- a/translations/messages.de.xlf +++ b/translations/messages.de.xlf @@ -1,17 +1,37 @@ - + 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 Dateitypen für Anhänge + + + Part-DB1\templates\AdminPages\AttachmentTypeAdmin.html.twig:12 + new + + + attachment_type.edit + Bearbeite Dateityp + + + + + Part-DB1\templates\AdminPages\AttachmentTypeAdmin.html.twig:16 + new + + + attachment_type.new + Neuer Dateityp + + Part-DB1\templates\AdminPages\CategoryAdmin.html.twig:4 @@ -26,7 +46,7 @@ templates\base.html.twig:197 templates\base.html.twig:225 - + category.labelp Kategorien @@ -39,7 +59,7 @@ Part-DB1\templates\AdminPages\StorelocationAdmin.html.twig:11 templates\AdminPages\CategoryAdmin.html.twig:8 - + admin.options Optionen @@ -52,17 +72,37 @@ Part-DB1\templates\AdminPages\CompanyAdminBase.html.twig:15 templates\AdminPages\CategoryAdmin.html.twig:9 - + admin.advanced Erweitert + + + Part-DB1\templates\AdminPages\CategoryAdmin.html.twig:13 + new + + + category.edit + Bearbeite Kategorie + + + + + Part-DB1\templates\AdminPages\CategoryAdmin.html.twig:17 + new + + + category.new + Neue Kategorie + + Part-DB1\templates\AdminPages\CurrencyAdmin.html.twig:4 Part-DB1\templates\AdminPages\CurrencyAdmin.html.twig:4 - + currency.caption Währung @@ -72,7 +112,7 @@ Part-DB1\templates\AdminPages\CurrencyAdmin.html.twig:12 Part-DB1\templates\AdminPages\CurrencyAdmin.html.twig:12 - + currency.iso_code.caption ISO Code @@ -82,22 +122,62 @@ Part-DB1\templates\AdminPages\CurrencyAdmin.html.twig:15 Part-DB1\templates\AdminPages\CurrencyAdmin.html.twig:15 - + currency.symbol.caption Währungssymbol + + + Part-DB1\templates\AdminPages\CurrencyAdmin.html.twig:29 + new + + + currency.edit + Bearbeite Währung + + + + + Part-DB1\templates\AdminPages\CurrencyAdmin.html.twig:33 + new + + + currency.new + Neue Währung + + Part-DB1\templates\AdminPages\DeviceAdmin.html.twig:4 Part-DB1\templates\AdminPages\DeviceAdmin.html.twig:4 templates\AdminPages\DeviceAdmin.html.twig:4 - + device.caption Baugruppen + + + Part-DB1\templates\AdminPages\DeviceAdmin.html.twig:8 + new + + + device.edit + Bearbeite Baugruppe + + + + + Part-DB1\templates\AdminPages\DeviceAdmin.html.twig:12 + new + + + device.new + Neue Baugruppe + + Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:19 @@ -116,7 +196,7 @@ templates\base.html.twig:206 templates\base.html.twig:237 - + search.placeholder Suche @@ -132,7 +212,7 @@ templates\base.html.twig:193 templates\base.html.twig:221 - + expandAll Alle ausklappen @@ -148,33 +228,11 @@ templates\base.html.twig:194 templates\base.html.twig:222 - + reduceAll Alle einklappen - - - Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:45 - Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:45 - templates\AdminPages\EntityAdminBase.html.twig:35 - - - edit.caption - Bearbeite 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 - Neues Element - - Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:54 @@ -182,9 +240,9 @@ Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:54 Part-DB1\templates\Parts\info\_sidebar.html.twig:4 - + part.info.timetravel_hint - Dies ist wie das Bauteil bevor dem %timestamp% aussah. <i>Beachten Sie, dass dieses Feature experimentell ist und die angezeigten Infos daher nicht unbedingt korrekt sind.</i> + Beachten Sie, dass dieses Feature experimentell ist und die angezeigten Infos daher nicht unbedingt korrekt sind.]]> @@ -193,7 +251,7 @@ Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:60 templates\AdminPages\EntityAdminBase.html.twig:42 - + standard.label Eigenschaften @@ -204,7 +262,7 @@ Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:61 templates\AdminPages\EntityAdminBase.html.twig:43 - + infos.label Informationen @@ -215,7 +273,7 @@ Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:63 new - + history.label Historie @@ -226,7 +284,7 @@ Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:66 templates\AdminPages\EntityAdminBase.html.twig:45 - + export.label Exportieren @@ -237,7 +295,7 @@ Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:68 templates\AdminPages\EntityAdminBase.html.twig:47 - + import_export.label Import / Export @@ -247,7 +305,7 @@ Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:69 Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:69 - + mass_creation.label Masseneingabe @@ -258,7 +316,7 @@ Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:82 templates\AdminPages\EntityAdminBase.html.twig:59 - + admin.common Allgemein @@ -268,7 +326,7 @@ Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:86 Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:86 - + admin.attachments Dateianhänge @@ -277,7 +335,7 @@ Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:90 - + admin.parameters Parameter @@ -288,7 +346,7 @@ Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:167 templates\AdminPages\EntityAdminBase.html.twig:142 - + export_all.label Alles exportieren @@ -298,11 +356,33 @@ Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:185 Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:173 - + mass_creation.help Jede Zeile wird als Name für ein neues Element interpretiert und angelegt. + + + Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:45 + Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:45 + templates\AdminPages\EntityAdminBase.html.twig:35 + + + edit.caption + Bearbeite 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 + Neues Element + + Part-DB1\templates\AdminPages\FootprintAdmin.html.twig:4 @@ -313,17 +393,37 @@ templates\base.html.twig:199 templates\base.html.twig:227 - + footprint.labelp Footprints + + + Part-DB1\templates\AdminPages\FootprintAdmin.html.twig:13 + new + + + footprint.edit + Bearbeite Footprint + + + + + Part-DB1\templates\AdminPages\FootprintAdmin.html.twig:17 + new + + + footprint.new + Neuer Footprint + + Part-DB1\templates\AdminPages\GroupAdmin.html.twig:4 Part-DB1\templates\AdminPages\GroupAdmin.html.twig:4 - + group.edit.caption Gruppen @@ -335,16 +435,36 @@ Part-DB1\templates\AdminPages\GroupAdmin.html.twig:9 Part-DB1\templates\AdminPages\UserAdmin.html.twig:16 - + user.edit.permissions Berechtigungen + + + Part-DB1\templates\AdminPages\GroupAdmin.html.twig:24 + new + + + group.edit + Bearbeite Gruppe + + + + + Part-DB1\templates\AdminPages\GroupAdmin.html.twig:28 + new + + + group.new + Neue Gruppe + + Part-DB1\templates\AdminPages\LabelProfileAdmin.html.twig:4 - + label_profile.caption Labelprofile @@ -353,7 +473,7 @@ Part-DB1\templates\AdminPages\LabelProfileAdmin.html.twig:8 - + label_profile.advanced Erweitert @@ -362,28 +482,68 @@ Part-DB1\templates\AdminPages\LabelProfileAdmin.html.twig:9 - + label_profile.comment Kommentar + + + Part-DB1\templates\AdminPages\LabelProfileAdmin.html.twig:55 + new + + + label_profile.edit + Bearbeite Labelprofil + + + + + Part-DB1\templates\AdminPages\LabelProfileAdmin.html.twig:59 + new + + + label_profile.new + Neues 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 Hersteller + + + Part-DB1\templates\AdminPages\ManufacturerAdmin.html.twig:8 + new + + + manufacturer.edit + Bearbeite Hersteller + + + + + Part-DB1\templates\AdminPages\ManufacturerAdmin.html.twig:12 + new + + + manufacturer.new + Neuer Hersteller + + Part-DB1\templates\AdminPages\MeasurementUnitAdmin.html.twig:4 Part-DB1\templates\AdminPages\MeasurementUnitAdmin.html.twig:4 - + measurement_unit.caption Maßeinheit @@ -398,28 +558,68 @@ templates\base.html.twig:198 templates\base.html.twig:226 - + storelocation.labelp Lagerorte + + + Part-DB1\templates\AdminPages\StorelocationAdmin.html.twig:32 + new + + + storelocation.edit + Bearbeite Lagerort + + + + + Part-DB1\templates\AdminPages\StorelocationAdmin.html.twig:36 + new + + + storelocation.new + Neuer Lagerort + + Part-DB1\templates\AdminPages\SupplierAdmin.html.twig:4 Part-DB1\templates\AdminPages\SupplierAdmin.html.twig:4 templates\AdminPages\SupplierAdmin.html.twig:4 - + supplier.caption Lieferanten + + + Part-DB1\templates\AdminPages\SupplierAdmin.html.twig:16 + new + + + supplier.edit + Bearbeite Lieferant + + + + + Part-DB1\templates\AdminPages\SupplierAdmin.html.twig:20 + new + + + supplier.new + Neuer Lieferant + + Part-DB1\templates\AdminPages\UserAdmin.html.twig:8 Part-DB1\templates\AdminPages\UserAdmin.html.twig:8 - + user.edit.caption Benutzer @@ -429,7 +629,7 @@ Part-DB1\templates\AdminPages\UserAdmin.html.twig:14 Part-DB1\templates\AdminPages\UserAdmin.html.twig:14 - + user.edit.configuration Konfiguration @@ -439,7 +639,7 @@ Part-DB1\templates\AdminPages\UserAdmin.html.twig:15 Part-DB1\templates\AdminPages\UserAdmin.html.twig:15 - + user.edit.password Passwort @@ -449,7 +649,7 @@ Part-DB1\templates\AdminPages\UserAdmin.html.twig:45 Part-DB1\templates\AdminPages\UserAdmin.html.twig:45 - + user.edit.tfa.caption Zwei-Faktor-Authentifizierung @@ -459,7 +659,7 @@ Part-DB1\templates\AdminPages\UserAdmin.html.twig:47 Part-DB1\templates\AdminPages\UserAdmin.html.twig:47 - + user.edit.tfa.google_active Authentifizierungsapp aktiv @@ -473,7 +673,7 @@ Part-DB1\templates\Users\backup_codes.html.twig:15 Part-DB1\templates\Users\_2fa_settings.html.twig:95 - + tfa_backup.remaining_tokens Verbleibende Backupcodes @@ -487,7 +687,7 @@ Part-DB1\templates\Users\backup_codes.html.twig:17 Part-DB1\templates\Users\_2fa_settings.html.twig:96 - + tfa_backup.generation_date Erzeugungsdatum der Backupcodes @@ -499,7 +699,7 @@ Part-DB1\templates\AdminPages\UserAdmin.html.twig:53 Part-DB1\templates\AdminPages\UserAdmin.html.twig:60 - + user.edit.tfa.disabled Methode deaktiviert @@ -509,7 +709,7 @@ Part-DB1\templates\AdminPages\UserAdmin.html.twig:56 Part-DB1\templates\AdminPages\UserAdmin.html.twig:56 - + user.edit.tfa.u2f_keys_count Aktive Sicherheitsschlüssel @@ -519,7 +719,7 @@ Part-DB1\templates\AdminPages\UserAdmin.html.twig:72 Part-DB1\templates\AdminPages\UserAdmin.html.twig:72 - + user.edit.tfa.disable_tfa_title Wirklich fortfahren? @@ -529,11 +729,11 @@ Part-DB1\templates\AdminPages\UserAdmin.html.twig:72 Part-DB1\templates\AdminPages\UserAdmin.html.twig:72 - + user.edit.tfa.disable_tfa_message - Dies wird <b>alle aktiven Zwei-Faktor-Authentifizierungsmethoden des Nutzers deaktivieren</b> und die <b>Backupcodes löschen</b>! <br> -Der Benutzer wird alle Zwei-Faktor-Authentifizierungmethoden neu einrichten müssen und neue Backupcodes ausdrucken müssen! <br><br> -<b>Führen sie dies nur durch, wenn Sie über die Identität des (um Hilfe suchenden) Benutzers absolut sicher sind, da ansonsten eine Kompromittierung des Accounts durch einen Angreifer erfolgen könnte!</b> + alle aktiven Zwei-Faktor-Authentifizierungsmethoden des Nutzers deaktivieren und die Backupcodes löschen!
+Der Benutzer wird alle Zwei-Faktor-Authentifizierungmethoden neu einrichten müssen und neue Backupcodes ausdrucken müssen!

+Führen sie dies nur durch, wenn Sie über die Identität des (um Hilfe suchenden) Benutzers absolut sicher sind, da ansonsten eine Kompromittierung des Accounts durch einen Angreifer erfolgen könnte!]]>
@@ -541,11 +741,31 @@ Der Benutzer wird alle Zwei-Faktor-Authentifizierungmethoden neu einrichten müs Part-DB1\templates\AdminPages\UserAdmin.html.twig:73 Part-DB1\templates\AdminPages\UserAdmin.html.twig:73 - + user.edit.tfa.disable_tfa.btn Alle Zwei-Faktor-Authentifizierungsmethoden deaktivieren + + + Part-DB1\templates\AdminPages\UserAdmin.html.twig:85 + new + + + user.edit + Bearbeite Benutzer + + + + + Part-DB1\templates\AdminPages\UserAdmin.html.twig:89 + new + + + user.new + Neuer Benutzer + + Part-DB1\templates\AdminPages\_attachments.html.twig:4 @@ -554,7 +774,7 @@ Der Benutzer wird alle Zwei-Faktor-Authentifizierungmethoden neu einrichten müs Part-DB1\templates\Parts\edit\_attachments.html.twig:4 Part-DB1\templates\Parts\info\_attachments_info.html.twig:63 - + attachment.delete Löschen @@ -568,7 +788,7 @@ Der Benutzer wird alle Zwei-Faktor-Authentifizierungmethoden neu einrichten müs Part-DB1\templates\Parts\edit\_attachments.html.twig:38 Part-DB1\src\DataTables\AttachmentDataTable.php:159 - + attachment.external Extern @@ -580,7 +800,7 @@ Der Benutzer wird alle Zwei-Faktor-Authentifizierungmethoden neu einrichten müs Part-DB1\templates\AdminPages\_attachments.html.twig:47 Part-DB1\templates\Parts\edit\_attachments.html.twig:45 - + attachment.preview.alt Thumbnail des Dateianhanges @@ -594,7 +814,7 @@ Der Benutzer wird alle Zwei-Faktor-Authentifizierungmethoden neu einrichten müs Part-DB1\templates\Parts\edit\_attachments.html.twig:48 Part-DB1\templates\Parts\info\_attachments_info.html.twig:45 - + attachment.view Anzeigen @@ -610,7 +830,7 @@ Der Benutzer wird alle Zwei-Faktor-Authentifizierungmethoden neu einrichten müs Part-DB1\templates\Parts\info\_attachments_info.html.twig:38 Part-DB1\src\DataTables\AttachmentDataTable.php:166 - + attachment.file_not_found Datei nicht gefunden @@ -622,7 +842,7 @@ Der Benutzer wird alle Zwei-Faktor-Authentifizierungmethoden neu einrichten müs Part-DB1\templates\Parts\info\_attachments_info.html.twig:48 Part-DB1\templates\Parts\edit\_attachments.html.twig:62 - + attachment.secure Privat @@ -634,7 +854,7 @@ Der Benutzer wird alle Zwei-Faktor-Authentifizierungmethoden neu einrichten müs Part-DB1\templates\AdminPages\_attachments.html.twig:77 Part-DB1\templates\Parts\edit\_attachments.html.twig:75 - + attachment.create Dateianhang hinzufügen @@ -648,7 +868,7 @@ Der Benutzer wird alle Zwei-Faktor-Authentifizierungmethoden neu einrichten müs Part-DB1\templates\Parts\edit\_attachments.html.twig:80 Part-DB1\templates\Parts\edit\_lots.html.twig:33 - + part_lot.edit.delete.confirm Möchten Sie diesen Bestand wirklich löschen? Dies kann nicht rückgängig gemacht werden! @@ -659,7 +879,7 @@ Der Benutzer wird alle Zwei-Faktor-Authentifizierungmethoden neu einrichten müs Part-DB1\templates\AdminPages\_delete_form.html.twig:2 templates\AdminPages\_delete_form.html.twig:2 - + entity.delete.confirm_title Wollen sie das Element %name% wirklich löschen? @@ -670,7 +890,7 @@ Der Benutzer wird alle Zwei-Faktor-Authentifizierungmethoden neu einrichten müs Part-DB1\templates\AdminPages\_delete_form.html.twig:3 templates\AdminPages\_delete_form.html.twig:3 - + entity.delete.message Diese Aktion lässt sich nicht rückgängig machen! @@ -683,7 +903,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\AdminPages\_delete_form.html.twig:11 templates\AdminPages\_delete_form.html.twig:9 - + entity.delete Element löschen @@ -698,7 +918,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\src\Form\Part\PartBaseType.php:267 new - + edit.log_comment Änderungskommentar @@ -709,7 +929,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\AdminPages\_delete_form.html.twig:24 templates\AdminPages\_delete_form.html.twig:12 - + entity.delete.recursive Rekursiv (alle Unterelemente) löschen @@ -718,7 +938,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\AdminPages\_duplicate.html.twig:3 - + entity.duplicate Element duplizieren @@ -732,7 +952,7 @@ Subelemente werden beim Löschen nach oben verschoben. templates\AdminPages\_export_form.html.twig:4 src\Form\ImportType.php:67 - + export.format Dateiformat @@ -743,7 +963,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\AdminPages\_export_form.html.twig:16 templates\AdminPages\_export_form.html.twig:16 - + export.level Ausführlichkeit @@ -754,7 +974,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\AdminPages\_export_form.html.twig:19 templates\AdminPages\_export_form.html.twig:19 - + export.level.simple Einfach @@ -765,7 +985,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\AdminPages\_export_form.html.twig:20 templates\AdminPages\_export_form.html.twig:20 - + export.level.extended Erweitert @@ -776,7 +996,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\AdminPages\_export_form.html.twig:21 templates\AdminPages\_export_form.html.twig:21 - + export.level.full Vollständig @@ -787,7 +1007,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\AdminPages\_export_form.html.twig:31 templates\AdminPages\_export_form.html.twig:31 - + export.include_children Unterelemente auch exportieren @@ -798,7 +1018,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\AdminPages\_export_form.html.twig:39 templates\AdminPages\_export_form.html.twig:39 - + export.btn Exportieren @@ -817,7 +1037,7 @@ Subelemente werden beim Löschen nach oben verschoben. templates\Parts\edit_part_info.html.twig:12 templates\Parts\show_part_info.html.twig:11 - + id.label ID @@ -841,7 +1061,7 @@ Subelemente werden beim Löschen nach oben verschoben. templates\AdminPages\EntityAdminBase.html.twig:101 templates\Parts\show_part_info.html.twig:248 - + createdAt Erstellt am @@ -859,7 +1079,7 @@ Subelemente werden beim Löschen nach oben verschoben. templates\AdminPages\EntityAdminBase.html.twig:114 templates\Parts\show_part_info.html.twig:263 - + lastModified Zuletzt bearbeitet @@ -869,7 +1089,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\AdminPages\_info.html.twig:38 Part-DB1\templates\AdminPages\_info.html.twig:38 - + entity.info.parts_count Bauteile mit diesem Element @@ -880,7 +1100,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\helper.twig:125 Part-DB1\templates\Parts\edit\_specifications.html.twig:6 - + specifications.property Parameter @@ -890,7 +1110,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\AdminPages\_parameters.html.twig:7 Part-DB1\templates\Parts\edit\_specifications.html.twig:7 - + specifications.symbol Symbol @@ -900,7 +1120,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\AdminPages\_parameters.html.twig:8 Part-DB1\templates\Parts\edit\_specifications.html.twig:8 - + specifications.value_min Min. @@ -910,7 +1130,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\AdminPages\_parameters.html.twig:9 Part-DB1\templates\Parts\edit\_specifications.html.twig:9 - + specifications.value_typ Typ. @@ -920,7 +1140,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\AdminPages\_parameters.html.twig:10 Part-DB1\templates\Parts\edit\_specifications.html.twig:10 - + specifications.value_max Max. @@ -930,7 +1150,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\AdminPages\_parameters.html.twig:11 Part-DB1\templates\Parts\edit\_specifications.html.twig:11 - + specifications.unit Einheit @@ -940,7 +1160,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\AdminPages\_parameters.html.twig:12 Part-DB1\templates\Parts\edit\_specifications.html.twig:12 - + specifications.text Text @@ -950,7 +1170,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\AdminPages\_parameters.html.twig:13 Part-DB1\templates\Parts\edit\_specifications.html.twig:13 - + specifications.group Sektion @@ -960,7 +1180,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\AdminPages\_parameters.html.twig:26 Part-DB1\templates\Parts\edit\_specifications.html.twig:26 - + specification.create Neuer Parameter @@ -970,7 +1190,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\AdminPages\_parameters.html.twig:31 Part-DB1\templates\Parts\edit\_specifications.html.twig:31 - + parameter.delete.confirm Möchten Sie den Parameter wirklich löschen? @@ -980,7 +1200,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\attachment_list.html.twig:3 Part-DB1\templates\attachment_list.html.twig:3 - + attachment.list.title Dateianhänge @@ -994,7 +1214,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\LogSystem\_log_table.html.twig:8 Part-DB1\templates\Parts\lists\_parts_list.html.twig:6 - + part_list.loading.caption Lade @@ -1008,7 +1228,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\LogSystem\_log_table.html.twig:9 Part-DB1\templates\Parts\lists\_parts_list.html.twig:7 - + part_list.loading.message Dies kann einen Moment dauern. Wenn diese Nachricht längere Zeit bestehen bleibt, versuchen sie die Seite erneut zu laden. @@ -1019,7 +1239,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\base.html.twig:68 templates\base.html.twig:246 - + vendor.base.javascript_hint Aktivieren Sie Javascript um alle Features zu nutzen! @@ -1029,7 +1249,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\base.html.twig:73 Part-DB1\templates\base.html.twig:73 - + sidebar.big.toggle Seitenleiste ein/ausblenden @@ -1040,7 +1260,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\base.html.twig:95 templates\base.html.twig:271 - + loading.caption Lade: @@ -1051,7 +1271,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\base.html.twig:96 templates\base.html.twig:272 - + loading.message Dies kann einen Moment dauern. Sollte diese Nachricht bestehen bleiben, dann laden sie die Seite erneut. @@ -1062,7 +1282,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\base.html.twig:101 templates\base.html.twig:277 - + loading.bar Lade... @@ -1073,7 +1293,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\base.html.twig:112 templates\base.html.twig:288 - + back_to_top Zurück zum Seitenbeginn @@ -1083,7 +1303,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\Form\permissionLayout.html.twig:35 Part-DB1\templates\Form\permissionLayout.html.twig:35 - + permission.edit.permission Berechtigung @@ -1093,7 +1313,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\Form\permissionLayout.html.twig:36 Part-DB1\templates\Form\permissionLayout.html.twig:36 - + permission.edit.value Wert @@ -1103,7 +1323,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\Form\permissionLayout.html.twig:53 Part-DB1\templates\Form\permissionLayout.html.twig:53 - + permission.legend.title Erläuterung der Zustände @@ -1113,7 +1333,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\Form\permissionLayout.html.twig:57 Part-DB1\templates\Form\permissionLayout.html.twig:57 - + permission.legend.disallow Verboten @@ -1123,7 +1343,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\Form\permissionLayout.html.twig:61 Part-DB1\templates\Form\permissionLayout.html.twig:61 - + permission.legend.allow Erlaubt @@ -1133,7 +1353,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\Form\permissionLayout.html.twig:65 Part-DB1\templates\Form\permissionLayout.html.twig:65 - + permission.legend.inherit Erbe von (übergeordneter) Gruppe @@ -1143,7 +1363,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\helper.twig:3 Part-DB1\templates\helper.twig:3 - + bool.true Ja @@ -1153,7 +1373,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\helper.twig:5 Part-DB1\templates\helper.twig:5 - + bool.false Nein @@ -1163,7 +1383,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\helper.twig:92 Part-DB1\templates\helper.twig:87 - + Yes Ja @@ -1173,7 +1393,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\helper.twig:94 Part-DB1\templates\helper.twig:89 - + No Nein @@ -1182,7 +1402,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\helper.twig:126 - + specifications.value Wert @@ -1193,7 +1413,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\homepage.html.twig:7 templates\homepage.html.twig:7 - + version.caption Version @@ -1204,7 +1424,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\homepage.html.twig:22 templates\homepage.html.twig:19 - + homepage.license Lizenzinformation @@ -1215,7 +1435,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\homepage.html.twig:31 templates\homepage.html.twig:28 - + homepage.github.caption Projektseite @@ -1226,9 +1446,9 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\homepage.html.twig:31 templates\homepage.html.twig:28 - + homepage.github.text - Quellcode, Downloads, Bugreports, ToDo-Liste usw. gibts auf der <a class="link-external" target="_blank" href="%href%">GitHub Projektseite</a> + GitHub Projektseite]]> @@ -1237,7 +1457,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\homepage.html.twig:32 templates\homepage.html.twig:29 - + homepage.help.caption Hilfe @@ -1248,9 +1468,9 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\homepage.html.twig:32 templates\homepage.html.twig:29 - + homepage.help.text - Hilfe und Tipps finden sie im <a class="link-external" rel="noopener" target="_blank" href="%href%">Wiki</a> der GitHub Seite. + Wiki der GitHub Seite.]]> @@ -1259,7 +1479,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\homepage.html.twig:33 templates\homepage.html.twig:30 - + homepage.forum.caption Forum @@ -1270,9 +1490,9 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\homepage.html.twig:33 templates\homepage.html.twig:30 - + homepage.forum.text - Für Fragen rund um die Part-DB gibt es einen Thread auf <a class="link-external" rel="noopener" target="_blank" href="%href%">mikrocontroller.net</a> + mikrocontroller.net]]> @@ -1281,7 +1501,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\homepage.html.twig:34 templates\homepage.html.twig:31 - + homepage.wiki.caption Wiki @@ -1292,9 +1512,9 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\homepage.html.twig:34 templates\homepage.html.twig:31 - + homepage.wiki.text - Weitere Informationen gibt es im <a class="link-external" rel="noopener" target="_blank" href="%href%">mikrocontroller.net Artikel</a> + mikrocontroller.net Artikel]]> @@ -1303,7 +1523,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\homepage.html.twig:36 templates\homepage.html.twig:33 - + homepage.basedOn Basierend auf dem originale Part-DB von @@ -1314,7 +1534,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\homepage.html.twig:39 templates\homepage.html.twig:36 - + homepage.others und anderen @@ -1325,7 +1545,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\homepage.html.twig:45 new - + homepage.last_activity Letzte Aktivitäten @@ -1335,7 +1555,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\LabelSystem\dialog.html.twig:3 Part-DB1\templates\LabelSystem\dialog.html.twig:6 - + label_generator.title Labelgenerator @@ -1344,7 +1564,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\LabelSystem\dialog.html.twig:16 - + label_generator.common Allgemein @@ -1353,7 +1573,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\LabelSystem\dialog.html.twig:20 - + label_generator.advanced Erweitert @@ -1362,7 +1582,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\LabelSystem\dialog.html.twig:24 - + label_generator.profiles Profil @@ -1371,7 +1591,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\LabelSystem\dialog.html.twig:58 - + label_generator.selected_profile Ausgewähltes Profil @@ -1380,7 +1600,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\LabelSystem\dialog.html.twig:62 - + label_generator.edit_profile Profil ändern @@ -1389,7 +1609,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\LabelSystem\dialog.html.twig:75 - + label_generator.load_profile Profil laden @@ -1398,7 +1618,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\LabelSystem\dialog.html.twig:102 - + label_generator.download Download @@ -1408,7 +1628,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\LabelSystem\dropdown_macro.html.twig:3 Part-DB1\templates\LabelSystem\dropdown_macro.html.twig:5 - + label_generator.label_btn Label erzeugen @@ -1417,7 +1637,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\LabelSystem\dropdown_macro.html.twig:20 - + label_generator.label_empty Leeres Label @@ -1426,7 +1646,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\LabelSystem\Scanner\dialog.html.twig:3 - + label_scanner.title Scanner @@ -1435,7 +1655,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\LabelSystem\Scanner\dialog.html.twig:7 - + label_scanner.no_cam_found.title Keine Kamera gefunden @@ -1444,7 +1664,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\LabelSystem\Scanner\dialog.html.twig:7 - + label_scanner.no_cam_found.text Sie müssen eine Kamera anschließen und die Berechtigung erteilen, um den Scanner nutzen zu können. Sie können unten den Barcode manuell eingeben. @@ -1453,7 +1673,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\LabelSystem\Scanner\dialog.html.twig:27 - + label_scanner.source_select Kamera auswählen @@ -1463,7 +1683,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\LogSystem\log_list.html.twig:3 Part-DB1\templates\LogSystem\log_list.html.twig:3 - + log.list.title Systemlog @@ -1474,7 +1694,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\LogSystem\_log_table.html.twig:1 new - + log.undo.confirm_title Änderung wirklich rückgängig machen / Element wirklich zurücksetzen? @@ -1485,7 +1705,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\LogSystem\_log_table.html.twig:2 new - + log.undo.confirm_message Wollen Sie wirklich die gegebene Änderung rückgängig machen / Das Element auf einen alten Versionsstand zurücksetzen? @@ -1495,7 +1715,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\mail\base.html.twig:24 Part-DB1\templates\mail\base.html.twig:24 - + mail.footer.email_sent_by Diese Email wurde automatisch erstellt von @@ -1505,7 +1725,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\mail\base.html.twig:24 Part-DB1\templates\mail\base.html.twig:24 - + mail.footer.dont_reply Antworten Sie nicht auf diese Email. @@ -1515,7 +1735,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\mail\pw_reset.html.twig:6 Part-DB1\templates\mail\pw_reset.html.twig:6 - + email.hi %name% Hallo %name% @@ -1525,7 +1745,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\mail\pw_reset.html.twig:7 Part-DB1\templates\mail\pw_reset.html.twig:7 - + email.pw_reset.message jemand (hoffentlich Sie) hat ein Reset ihres Passwortes angefordert. Wenn diese Anfrage nicht von Ihnen stammt, ignorieren sie diese Email. @@ -1535,7 +1755,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\mail\pw_reset.html.twig:9 Part-DB1\templates\mail\pw_reset.html.twig:9 - + email.pw_reset.button Passwort zurücksetzen @@ -1545,9 +1765,9 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\mail\pw_reset.html.twig:11 Part-DB1\templates\mail\pw_reset.html.twig:11 - + email.pw_reset.fallback - Wenn dies nicht funktioniert, rufen Sie <a href="%url%">%url%</a> auf und geben Sie die folgenden Daten ein + %url% auf und geben Sie die folgenden Daten ein]]> @@ -1555,7 +1775,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\mail\pw_reset.html.twig:16 Part-DB1\templates\mail\pw_reset.html.twig:16 - + email.pw_reset.username Benutzername @@ -1565,7 +1785,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\mail\pw_reset.html.twig:19 Part-DB1\templates\mail\pw_reset.html.twig:19 - + email.pw_reset.token Token @@ -1575,9 +1795,9 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\mail\pw_reset.html.twig:24 Part-DB1\templates\mail\pw_reset.html.twig:24 - + email.pw_reset.valid_unit %date% - Das Reset Token ist gültig bis <i>%date%</i> + %date%]]> @@ -1587,7 +1807,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\Parts\edit\edit_form_styles.html.twig:78 Part-DB1\templates\Parts\edit\edit_form_styles.html.twig:58 - + orderdetail.delete Löschen @@ -1597,7 +1817,7 @@ Subelemente werden beim Löschen nach oben verschoben. 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 Mindestbestellmenge @@ -1607,7 +1827,7 @@ Subelemente werden beim Löschen nach oben verschoben. 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 Preis @@ -1617,7 +1837,7 @@ Subelemente werden beim Löschen nach oben verschoben. 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 für Menge @@ -1627,7 +1847,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\Parts\edit\edit_form_styles.html.twig:54 Part-DB1\templates\Parts\edit\edit_form_styles.html.twig:54 - + pricedetail.create Preis hinzufügen @@ -1638,7 +1858,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\Parts\edit\edit_part_info.html.twig:4 templates\Parts\edit_part_info.html.twig:4 - + part.edit.title Bearbeite Bauteil %name% @@ -1649,7 +1869,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\Parts\edit\edit_part_info.html.twig:9 templates\Parts\edit_part_info.html.twig:9 - + part.edit.card_title Bearbeite Bauteileinformationen von @@ -1659,7 +1879,7 @@ Subelemente werden beim Löschen nach oben verschoben. 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 Allgemein @@ -1669,7 +1889,7 @@ Subelemente werden beim Löschen nach oben verschoben. 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 Hersteller @@ -1679,7 +1899,7 @@ Subelemente werden beim Löschen nach oben verschoben. 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 Erweiterte Optionen @@ -1689,7 +1909,7 @@ Subelemente werden beim Löschen nach oben verschoben. 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 Lagerbestände @@ -1699,7 +1919,7 @@ Subelemente werden beim Löschen nach oben verschoben. 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 Dateianhänge @@ -1709,7 +1929,7 @@ Subelemente werden beim Löschen nach oben verschoben. 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 Bestellinformationen @@ -1718,7 +1938,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\Parts\edit\edit_part_info.html.twig:58 - + part.edit.tab.specifications Parameter @@ -1728,7 +1948,7 @@ Subelemente werden beim Löschen nach oben verschoben. 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 Kommentar @@ -1739,7 +1959,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\Parts\edit\new_part.html.twig:8 templates\Parts\new_part.html.twig:8 - + part.new.card_title Neues Bauteil erstellen @@ -1749,7 +1969,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\Parts\edit\_lots.html.twig:5 Part-DB1\templates\Parts\edit\_lots.html.twig:5 - + part_lot.delete Löschen @@ -1759,7 +1979,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\Parts\edit\_lots.html.twig:28 Part-DB1\templates\Parts\edit\_lots.html.twig:28 - + part_lot.create Bestand anlegen @@ -1769,7 +1989,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\Parts\edit\_orderdetails.html.twig:13 Part-DB1\templates\Parts\edit\_orderdetails.html.twig:13 - + orderdetail.create Lieferant hinzufügen @@ -1779,7 +1999,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\Parts\edit\_orderdetails.html.twig:18 Part-DB1\templates\Parts\edit\_orderdetails.html.twig:18 - + pricedetails.edit.delete.confirm Möchten Sie diesen Preis wirklich löschen? Das kann nicht rückgängig gemacht werden! @@ -1789,7 +2009,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\Parts\edit\_orderdetails.html.twig:62 Part-DB1\templates\Parts\edit\_orderdetails.html.twig:61 - + orderdetails.edit.delete.confirm Möchten Sie diesen Lieferanten wirklich löschen? Dies kann nicht rückgängig gemacht werden! @@ -1803,7 +2023,7 @@ Subelemente werden beim Löschen nach oben verschoben. templates\Parts\show_part_info.html.twig:4 templates\Parts\show_part_info.html.twig:9 - + part.info.title Detailinfo für @@ -1813,7 +2033,7 @@ Subelemente werden beim Löschen nach oben verschoben. 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 Lagerbestände @@ -1828,7 +2048,7 @@ Subelemente werden beim Löschen nach oben verschoben. templates\Parts\show_part_info.html.twig:74 src\Form\PartType.php:86 - + comment.label Kommentar @@ -1837,7 +2057,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\Parts\info\show_part_info.html.twig:64 - + part.info.specifications Parameter @@ -1848,7 +2068,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\Parts\info\show_part_info.html.twig:64 templates\Parts\show_part_info.html.twig:82 - + attachment.labelp Dateianhänge @@ -1859,7 +2079,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\Parts\info\show_part_info.html.twig:71 templates\Parts\show_part_info.html.twig:88 - + vendor.partinfo.shopping_infos Einkaufsinformationen @@ -1870,7 +2090,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\Parts\info\show_part_info.html.twig:78 templates\Parts\show_part_info.html.twig:94 - + vendor.partinfo.history Historie @@ -1889,7 +2109,7 @@ Subelemente werden beim Löschen nach oben verschoben. templates\base.html.twig:231 templates\Parts\show_part_info.html.twig:100 - + tools.label Tools @@ -1899,7 +2119,7 @@ Subelemente werden beim Löschen nach oben verschoben. 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 Erweiterte Informationen @@ -1909,7 +2129,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\Parts\info\_attachments_info.html.twig:7 Part-DB1\templates\Parts\info\_attachments_info.html.twig:7 - + attachment.name Name @@ -1919,7 +2139,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\Parts\info\_attachments_info.html.twig:8 Part-DB1\templates\Parts\info\_attachments_info.html.twig:8 - + attachment.attachment_type Anhangstyp @@ -1929,7 +2149,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\Parts\info\_attachments_info.html.twig:9 Part-DB1\templates\Parts\info\_attachments_info.html.twig:9 - + attachment.file_name Dateiname @@ -1939,7 +2159,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\Parts\info\_attachments_info.html.twig:10 Part-DB1\templates\Parts\info\_attachments_info.html.twig:10 - + attachment.file_size Dateigröße @@ -1948,7 +2168,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\Parts\info\_attachments_info.html.twig:54 - + attachment.preview Vorschaubild @@ -1958,7 +2178,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\Parts\info\_attachments_info.html.twig:67 Part-DB1\templates\Parts\info\_attachments_info.html.twig:50 - + attachment.download Herunterladen @@ -1969,7 +2189,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\Parts\info\_extended_infos.html.twig:11 new - + user.creating_user Nutzer der dieses Bauteil erstellte @@ -1983,7 +2203,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\Parts\info\_extended_infos.html.twig:28 Part-DB1\templates\Parts\info\_extended_infos.html.twig:50 - + Unknown Unbekannt @@ -1996,7 +2216,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\Parts\info\_extended_infos.html.twig:30 new - + accessDenied Zugriff verboten @@ -2007,7 +2227,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\Parts\info\_extended_infos.html.twig:26 new - + user.last_editing_user Nutzer der dieses Bauteil zu Letzt bearbeitete @@ -2017,7 +2237,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\Parts\info\_extended_infos.html.twig:41 Part-DB1\templates\Parts\info\_extended_infos.html.twig:41 - + part.isFavorite Favorit @@ -2027,7 +2247,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\Parts\info\_extended_infos.html.twig:46 Part-DB1\templates\Parts\info\_extended_infos.html.twig:46 - + part.minOrderAmount Mindestbestellmenge @@ -2044,7 +2264,7 @@ Subelemente werden beim Löschen nach oben verschoben. templates\Parts\show_part_info.html.twig:24 src\Form\PartType.php:80 - + manufacturer.label Hersteller @@ -2056,7 +2276,7 @@ Subelemente werden beim Löschen nach oben verschoben. templates\base.html.twig:54 src\Form\PartType.php:62 - + name.label Name @@ -2067,7 +2287,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\Parts\info\_main_infos.html.twig:27 new - + part.back_to_info Zurück zum aktuellen Versionsstand @@ -2082,7 +2302,7 @@ Subelemente werden beim Löschen nach oben verschoben. templates\Parts\show_part_info.html.twig:31 src\Form\PartType.php:65 - + description.label Beschreibung @@ -2099,7 +2319,7 @@ Subelemente werden beim Löschen nach oben verschoben. templates\Parts\show_part_info.html.twig:32 src\Form\PartType.php:74 - + category.label Kategorie @@ -2111,7 +2331,7 @@ Subelemente werden beim Löschen nach oben verschoben. templates\Parts\show_part_info.html.twig:42 src\Form\PartType.php:69 - + instock.label Im Lager @@ -2123,7 +2343,7 @@ Subelemente werden beim Löschen nach oben verschoben. templates\Parts\show_part_info.html.twig:44 src\Form\PartType.php:72 - + mininstock.label Mindestbestand @@ -2139,7 +2359,7 @@ Subelemente werden beim Löschen nach oben verschoben. templates\base.html.twig:73 templates\Parts\show_part_info.html.twig:47 - + footprint.label Footprint @@ -2152,7 +2372,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\Parts\info\_main_infos.html.twig:60 templates\Parts\show_part_info.html.twig:51 - + part.avg_price.label Durchschnittspreis @@ -2162,7 +2382,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\Parts\info\_order_infos.html.twig:5 Part-DB1\templates\Parts\info\_order_infos.html.twig:5 - + part.supplier.name Name @@ -2172,7 +2392,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\Parts\info\_order_infos.html.twig:6 Part-DB1\templates\Parts\info\_order_infos.html.twig:6 - + part.supplier.partnr Bestellnr. @@ -2182,7 +2402,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\Parts\info\_order_infos.html.twig:28 Part-DB1\templates\Parts\info\_order_infos.html.twig:28 - + part.order.minamount Mindestanzahl @@ -2192,7 +2412,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\Parts\info\_order_infos.html.twig:29 Part-DB1\templates\Parts\info\_order_infos.html.twig:29 - + part.order.price Preis @@ -2202,7 +2422,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\Parts\info\_order_infos.html.twig:31 Part-DB1\templates\Parts\info\_order_infos.html.twig:31 - + part.order.single_price Stückpreis @@ -2212,7 +2432,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\Parts\info\_order_infos.html.twig:71 Part-DB1\templates\Parts\info\_order_infos.html.twig:71 - + edit.caption_short Bearbeiten @@ -2222,7 +2442,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\Parts\info\_order_infos.html.twig:72 Part-DB1\templates\Parts\info\_order_infos.html.twig:72 - + delete.caption Löschen @@ -2232,7 +2452,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\Parts\info\_part_lots.html.twig:7 Part-DB1\templates\Parts\info\_part_lots.html.twig:6 - + part_lots.description Beschreibung @@ -2242,7 +2462,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\Parts\info\_part_lots.html.twig:8 Part-DB1\templates\Parts\info\_part_lots.html.twig:7 - + part_lots.storage_location Lagerort @@ -2252,7 +2472,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\Parts\info\_part_lots.html.twig:9 Part-DB1\templates\Parts\info\_part_lots.html.twig:8 - + part_lots.amount Menge @@ -2262,7 +2482,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\Parts\info\_part_lots.html.twig:24 Part-DB1\templates\Parts\info\_part_lots.html.twig:22 - + part_lots.location_unknown Lagerort unbekannt @@ -2272,7 +2492,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\Parts\info\_part_lots.html.twig:31 Part-DB1\templates\Parts\info\_part_lots.html.twig:29 - + part_lots.instock_unknown Menge unbekannt @@ -2282,7 +2502,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\Parts\info\_part_lots.html.twig:40 Part-DB1\templates\Parts\info\_part_lots.html.twig:38 - + part_lots.expiration_date Ablaufdatum @@ -2292,7 +2512,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\Parts\info\_part_lots.html.twig:48 Part-DB1\templates\Parts\info\_part_lots.html.twig:46 - + part_lots.is_expired Abgelaufen @@ -2302,7 +2522,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\Parts\info\_part_lots.html.twig:55 Part-DB1\templates\Parts\info\_part_lots.html.twig:53 - + part_lots.need_refill Muss aufgefüllt werden @@ -2312,7 +2532,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\Parts\info\_picture.html.twig:15 Part-DB1\templates\Parts\info\_picture.html.twig:15 - + part.info.prev_picture Vorheriges Bild @@ -2322,7 +2542,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\Parts\info\_picture.html.twig:19 Part-DB1\templates\Parts\info\_picture.html.twig:19 - + part.info.next_picture Nächstes Bild @@ -2332,7 +2552,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\Parts\info\_sidebar.html.twig:21 Part-DB1\templates\Parts\info\_sidebar.html.twig:21 - + part.mass.tooltip Gewicht @@ -2342,7 +2562,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\Parts\info\_sidebar.html.twig:30 Part-DB1\templates\Parts\info\_sidebar.html.twig:30 - + part.needs_review.badge Review benötigt @@ -2352,7 +2572,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\Parts\info\_sidebar.html.twig:39 Part-DB1\templates\Parts\info\_sidebar.html.twig:39 - + part.favorite.badge Favorit @@ -2362,7 +2582,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\Parts\info\_sidebar.html.twig:47 Part-DB1\templates\Parts\info\_sidebar.html.twig:47 - + part.obsolete.badge Nicht mehr lieferbar @@ -2371,7 +2591,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\Parts\info\_specifications.html.twig:10 - + parameters.extracted_from_description Automatisch aus Beschreibung extrahiert @@ -2380,7 +2600,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\Parts\info\_specifications.html.twig:15 - + parameters.auto_extracted_from_comment Automatisch aus Kommentar extrahiert @@ -2391,7 +2611,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\Parts\info\_tools.html.twig:4 templates\Parts\show_part_info.html.twig:125 - + part.edit.btn Bauteil bearbeiten @@ -2402,7 +2622,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\Parts\info\_tools.html.twig:14 templates\Parts\show_part_info.html.twig:135 - + part.clone.btn Bauteil kopieren @@ -2413,7 +2633,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\Parts\lists\_action_bar.html.twig:4 templates\Parts\show_part_info.html.twig:143 - + part.create.btn Neues Bauteil anlegen @@ -2423,7 +2643,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\Parts\info\_tools.html.twig:31 Part-DB1\templates\Parts\info\_tools.html.twig:29 - + part.delete.confirm_title Möchten Sie dieses Bauteil wirklich löschen? @@ -2433,7 +2653,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\Parts\info\_tools.html.twig:32 Part-DB1\templates\Parts\info\_tools.html.twig:30 - + part.delete.message Das Bauteil und alle zugehörigen Informationen (Bestände, Dateianhänge, etc.) werden gelöscht. Dies kann nicht rückgängig gemacht werden. @@ -2443,7 +2663,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\Parts\info\_tools.html.twig:39 Part-DB1\templates\Parts\info\_tools.html.twig:37 - + part.delete Bauteil löschen @@ -2453,7 +2673,7 @@ Subelemente werden beim Löschen nach oben verschoben. 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 Bauteile @@ -2463,7 +2683,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\Parts\lists\category_list.html.twig:4 Part-DB1\templates\Parts\lists\category_list.html.twig:4 - + parts_list.category.title Bauteile mit Kategorie @@ -2473,7 +2693,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\Parts\lists\footprint_list.html.twig:4 Part-DB1\templates\Parts\lists\footprint_list.html.twig:4 - + parts_list.footprint.title Bauteile mit Footprint @@ -2483,7 +2703,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\Parts\lists\manufacturer_list.html.twig:4 Part-DB1\templates\Parts\lists\manufacturer_list.html.twig:4 - + parts_list.manufacturer.title Bauteile mit Hersteller @@ -2493,7 +2713,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\Parts\lists\search_list.html.twig:4 Part-DB1\templates\Parts\lists\search_list.html.twig:4 - + parts_list.search.title Bauteilesuche @@ -2503,7 +2723,7 @@ Subelemente werden beim Löschen nach oben verschoben. 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 Bauteile mit Lagerort @@ -2513,7 +2733,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\Parts\lists\supplier_list.html.twig:4 Part-DB1\templates\Parts\lists\supplier_list.html.twig:4 - + parts_list.supplier.title Bauteile mit Lieferant @@ -2523,7 +2743,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\Parts\lists\tags_list.html.twig:4 Part-DB1\templates\Parts\lists\tags_list.html.twig:4 - + parts_list.tags.title Bauteile mit Tag @@ -2533,7 +2753,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\Parts\lists\_info_card.html.twig:22 Part-DB1\templates\Parts\lists\_info_card.html.twig:17 - + entity.info.common.tab Allgemein @@ -2543,7 +2763,7 @@ Subelemente werden beim Löschen nach oben verschoben. 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 @@ -2552,7 +2772,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\Parts\lists\_info_card.html.twig:31 - + entity.info.attachments.tab Dateianhänge @@ -2561,7 +2781,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\Parts\lists\_info_card.html.twig:37 - + entity.info.parameters.tab Parameter @@ -2571,7 +2791,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\Parts\lists\_info_card.html.twig:54 Part-DB1\templates\Parts\lists\_info_card.html.twig:30 - + entity.info.name Name @@ -2583,7 +2803,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\Parts\lists\_info_card.html.twig:34 Part-DB1\templates\Parts\lists\_info_card.html.twig:67 - + entity.info.parent Übergeordnetes Element @@ -2593,7 +2813,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\Parts\lists\_info_card.html.twig:70 Part-DB1\templates\Parts\lists\_info_card.html.twig:46 - + entity.edit.btn Bearbeiten @@ -2603,7 +2823,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\Parts\lists\_info_card.html.twig:92 Part-DB1\templates\Parts\lists\_info_card.html.twig:63 - + entity.info.children_count Anzahl an Unterelementen @@ -2615,7 +2835,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\security\2fa_base_form.html.twig:3 Part-DB1\templates\security\2fa_base_form.html.twig:5 - + tfa.check.title Zwei-Faktor-Authentifizierung benötigt @@ -2625,7 +2845,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\security\2fa_base_form.html.twig:39 Part-DB1\templates\security\2fa_base_form.html.twig:39 - + tfa.code.trusted_pc Dies ist ein vertrauenswürdiger Computer (wenn dies aktiviert ist, werden auf diesem Computer keine weiteren Zwei-Faktor-Abfragen durchgeführt) @@ -2637,7 +2857,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\security\2fa_base_form.html.twig:52 Part-DB1\templates\security\login.html.twig:58 - + login.btn Login @@ -2651,7 +2871,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\security\U2F\u2f_login.html.twig:13 Part-DB1\templates\_navbar.html.twig:40 - + user.logout Ausloggen @@ -2661,7 +2881,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\security\2fa_form.html.twig:6 Part-DB1\templates\security\2fa_form.html.twig:6 - + tfa.check.code.label Authenticator App Code @@ -2671,7 +2891,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\security\2fa_form.html.twig:10 Part-DB1\templates\security\2fa_form.html.twig:10 - + tfa.check.code.help Geben Sie hier den 6-stelligen Code aus ihrer Authenticator App ein oder einen ihrer Backupcodes, wenn der Authenticator nicht verfügbar ist. @@ -2682,7 +2902,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\security\login.html.twig:3 templates\security\login.html.twig:3 - + login.title Login @@ -2693,7 +2913,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\security\login.html.twig:7 templates\security\login.html.twig:7 - + login.card_title Login @@ -2704,7 +2924,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\security\login.html.twig:31 templates\security\login.html.twig:31 - + login.username.label Benutzername @@ -2715,7 +2935,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\security\login.html.twig:34 templates\security\login.html.twig:34 - + login.username.placeholder Benutzername @@ -2726,7 +2946,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\security\login.html.twig:38 templates\security\login.html.twig:38 - + login.password.label Passwort @@ -2737,7 +2957,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\security\login.html.twig:40 templates\security\login.html.twig:40 - + login.password.placeholder Passwort @@ -2748,7 +2968,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\security\login.html.twig:50 templates\security\login.html.twig:50 - + login.rememberme Eingeloggt bleiben (nicht empfohlen auf geteilten Computern) @@ -2758,7 +2978,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\security\login.html.twig:64 Part-DB1\templates\security\login.html.twig:64 - + pw_reset.password_forget Nutzername/Passwort vergessen? @@ -2768,7 +2988,7 @@ Subelemente werden beim Löschen nach oben verschoben. 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 Neues Passwort setzen @@ -2778,7 +2998,7 @@ Subelemente werden beim Löschen nach oben verschoben. 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 Neues Passwort anfordern @@ -2790,7 +3010,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\security\U2F\u2f_login.html.twig:7 Part-DB1\templates\security\U2F\u2f_register.html.twig:10 - + tfa_u2f.http_warning Sie greifen auf diese Seite über das unsichere HTTP-Verfahren zu, daher wird U2F sehr wahrscheinlich nicht funktionieren (Fehlermeldung Bad Request). Bitten Sie einen Adminstrator das sichere HTTPS Verfahren einzurichten, wenn Sie Sicherheitsschlüssel benutzen möchten. @@ -2802,7 +3022,7 @@ Subelemente werden beim Löschen nach oben verschoben. 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 Bitte Sicherheitsschlüssel einstecken und Button drücken! @@ -2812,7 +3032,7 @@ Subelemente werden beim Löschen nach oben verschoben. 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 Sicherheitsschlüssel hinzufügen @@ -2824,7 +3044,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\security\U2F\u2f_register.html.twig:6 Part-DB1\templates\Users\_2fa_settings.html.twig:111 - + tfa_u2f.explanation Mithilfe eines U2F/FIDO kompatiblem Sicherheitsschlüssel (z.B. YubiKey oder NitroKey) kann eine benutzerfreundliche und sichere Zwei-Faktor-Authentifizierung ermöglicht. Die Sicherheitsschlüssel können hier registriert werden, und wird eine Zwei-Faktor-Überprüfung benötigt, so muss der Schlüssel nur per USB angesteckt oder per NFC gegen das Gerät getippt werden. @@ -2834,7 +3054,7 @@ Subelemente werden beim Löschen nach oben verschoben. 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 Um den Zugang auch bei Verlust des Schlüssels zu gewährleisten, ist es empfehlenswert einen zweiten Schlüssel als Backup zu registrieren und diesen an einem sicherem Ort zu lagern! @@ -2844,7 +3064,7 @@ Subelemente werden beim Löschen nach oben verschoben. 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 Anzeigename des Schlüssels (z.B. Backup) @@ -2854,7 +3074,7 @@ Subelemente werden beim Löschen nach oben verschoben. 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 Schlüssel hinzufügen @@ -2864,7 +3084,7 @@ Subelemente werden beim Löschen nach oben verschoben. 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 Zurück zu den Einstellungen @@ -2877,7 +3097,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\Statistics\statistics.html.twig:8 new - + statistics.title Statistik @@ -2888,7 +3108,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\Statistics\statistics.html.twig:14 new - + statistics.parts Bauteile @@ -2899,7 +3119,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\Statistics\statistics.html.twig:19 new - + statistics.data_structures Datenstrukturen @@ -2910,7 +3130,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\Statistics\statistics.html.twig:24 new - + statistics.attachments Dateianhänge @@ -2925,7 +3145,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\Statistics\statistics.html.twig:104 new - + statistics.property Eigenschaft @@ -2940,7 +3160,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\Statistics\statistics.html.twig:105 new - + statistics.value Wert @@ -2951,7 +3171,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\Statistics\statistics.html.twig:40 new - + statistics.distinct_parts_count Anzahl verschiedener Bauteile @@ -2962,7 +3182,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\Statistics\statistics.html.twig:44 new - + statistics.parts_instock_sum Summe aller vorhanden Bauteilebestände @@ -2973,7 +3193,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\Statistics\statistics.html.twig:48 new - + statistics.parts_with_price Bauteile mit Preisinformationen @@ -2984,7 +3204,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\Statistics\statistics.html.twig:65 new - + statistics.categories_count Anzahl Kategorien @@ -2995,7 +3215,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\Statistics\statistics.html.twig:69 new - + statistics.footprints_count Anzahl Footprints @@ -3006,7 +3226,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\Statistics\statistics.html.twig:73 new - + statistics.manufacturers_count Anzahl Hersteller @@ -3017,7 +3237,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\Statistics\statistics.html.twig:77 new - + statistics.storelocations_count Anzahl Lagerorte @@ -3028,7 +3248,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\Statistics\statistics.html.twig:81 new - + statistics.suppliers_count Anzahl Lieferanten @@ -3039,7 +3259,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\Statistics\statistics.html.twig:85 new - + statistics.currencies_count Anzahl Währungen @@ -3050,7 +3270,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\Statistics\statistics.html.twig:89 new - + statistics.measurement_units_count Anzahl Maßeinheiten @@ -3061,7 +3281,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\Statistics\statistics.html.twig:93 new - + statistics.devices_count Anzahl Baugruppen @@ -3072,7 +3292,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\Statistics\statistics.html.twig:110 new - + statistics.attachment_types_count Anzahl Anhangstypen @@ -3083,7 +3303,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\Statistics\statistics.html.twig:114 new - + statistics.all_attachments_count Anzahl aller Dateianhänge @@ -3094,7 +3314,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\Statistics\statistics.html.twig:118 new - + statistics.user_uploaded_attachments_count Anzahl aller vom Nutzer hochgeladener Anhänge @@ -3105,7 +3325,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\Statistics\statistics.html.twig:122 new - + statistics.private_attachments_count Anzahl aller privaten Anhänge @@ -3116,7 +3336,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\Statistics\statistics.html.twig:126 new - + statistics.external_attachments_count Anzahl aller externen Anhänge (URL) @@ -3128,7 +3348,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\Users\backup_codes.html.twig:3 Part-DB1\templates\Users\backup_codes.html.twig:9 - + tfa_backup.codes.title Backupcodes @@ -3138,7 +3358,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\Users\backup_codes.html.twig:12 Part-DB1\templates\Users\backup_codes.html.twig:12 - + tfa_backup.codes.explanation Drucken Sie diese Codes aus und bewahren Sie sie an einem sicherem Ort auf! @@ -3148,7 +3368,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\Users\backup_codes.html.twig:13 Part-DB1\templates\Users\backup_codes.html.twig:13 - + tfa_backup.codes.help Wenn Sie keinen Zugriff auf ihr Gerät mit der Authenticator App mehr haben sollten (Smartphone verloren, Datenverlust, etc.) können Sie einen dieser Codes benutzen, um Zugriff auf ihren Account zu erhalten und evtl. eine neue Authenticator App einzurichten. Jeder dieser Codes lässt sich einmal einsetzen, es empfiehlt sich benutzte Codes zu streichen. Jeder mit Zugriff auf diese Codes kann potentiell auf ihren Account zugreifen, daher bewahren Sie sie an einem sicheren Ort auf. @@ -3158,7 +3378,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\Users\backup_codes.html.twig:16 Part-DB1\templates\Users\backup_codes.html.twig:16 - + tfa_backup.username Benutzername @@ -3168,7 +3388,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\Users\backup_codes.html.twig:29 Part-DB1\templates\Users\backup_codes.html.twig:29 - + tfa_backup.codes.page_generated_on Codes abgerufen am %date% @@ -3178,7 +3398,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\Users\backup_codes.html.twig:32 Part-DB1\templates\Users\backup_codes.html.twig:32 - + tfa_backup.codes.print Drucken @@ -3188,7 +3408,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\Users\backup_codes.html.twig:35 Part-DB1\templates\Users\backup_codes.html.twig:35 - + tfa_backup.codes.copy_clipboard In die Zwischenablage kopieren @@ -3205,7 +3425,7 @@ Subelemente werden beim Löschen nach oben verschoben. templates\Users\user_info.html.twig:3 templates\Users\user_info.html.twig:6 - + user.info.label Benutzerinformationen @@ -3219,7 +3439,7 @@ Subelemente werden beim Löschen nach oben verschoben. templates\Users\user_info.html.twig:18 src\Form\UserSettingsType.php:32 - + user.firstName.label Vorname @@ -3233,7 +3453,7 @@ Subelemente werden beim Löschen nach oben verschoben. templates\Users\user_info.html.twig:24 src\Form\UserSettingsType.php:35 - + user.lastName.label Nachname @@ -3247,7 +3467,7 @@ Subelemente werden beim Löschen nach oben verschoben. templates\Users\user_info.html.twig:30 src\Form\UserSettingsType.php:41 - + user.email.label Email @@ -3261,7 +3481,7 @@ Subelemente werden beim Löschen nach oben verschoben. templates\Users\user_info.html.twig:37 src\Form\UserSettingsType.php:38 - + user.department.label Abteilung @@ -3275,7 +3495,7 @@ Subelemente werden beim Löschen nach oben verschoben. templates\Users\user_info.html.twig:47 src\Form\UserSettingsType.php:30 - + user.username.label Benutzername @@ -3288,7 +3508,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\src\Services\ElementTypeNameGenerator.php:93 templates\Users\user_info.html.twig:53 - + group.label Group @@ -3298,7 +3518,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\Users\user_info.html.twig:67 Part-DB1\templates\Users\user_info.html.twig:67 - + user.permissions Berechtigungen @@ -3315,7 +3535,7 @@ Subelemente werden beim Löschen nach oben verschoben. templates\Users\user_settings.html.twig:3 templates\Users\user_settings.html.twig:6 - + user.settings.label Benutzereinstellungen @@ -3326,7 +3546,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\Users\user_settings.html.twig:18 templates\Users\user_settings.html.twig:14 - + user_settings.data.label Persönliche Daten @@ -3337,7 +3557,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\Users\user_settings.html.twig:22 templates\Users\user_settings.html.twig:18 - + user_settings.configuration.label Konfiguration @@ -3348,7 +3568,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\Users\user_settings.html.twig:55 templates\Users\user_settings.html.twig:48 - + user.settings.change_pw Passwort ändern @@ -3358,7 +3578,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\Users\_2fa_settings.html.twig:6 Part-DB1\templates\Users\_2fa_settings.html.twig:6 - + user.settings.2fa_settings Zwei-Faktor-Authentifizierung @@ -3368,7 +3588,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\Users\_2fa_settings.html.twig:13 Part-DB1\templates\Users\_2fa_settings.html.twig:13 - + tfa.settings.google.tab Authenticator App @@ -3378,7 +3598,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\Users\_2fa_settings.html.twig:17 Part-DB1\templates\Users\_2fa_settings.html.twig:17 - + tfa.settings.bakup.tab Backupcodes @@ -3388,7 +3608,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\Users\_2fa_settings.html.twig:21 Part-DB1\templates\Users\_2fa_settings.html.twig:21 - + tfa.settings.u2f.tab Sicherheitsschlüssel (U2F) @@ -3398,7 +3618,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\Users\_2fa_settings.html.twig:25 Part-DB1\templates\Users\_2fa_settings.html.twig:25 - + tfa.settings.trustedDevices.tab Vertrauenswürdige Geräte @@ -3408,7 +3628,7 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\Users\_2fa_settings.html.twig:33 Part-DB1\templates\Users\_2fa_settings.html.twig:33 - + tfa_google.disable.confirm_title Möchten Sie die Authenticator App wirklich deaktivieren? @@ -3418,10 +3638,10 @@ Subelemente werden beim Löschen nach oben verschoben. Part-DB1\templates\Users\_2fa_settings.html.twig:33 Part-DB1\templates\Users\_2fa_settings.html.twig:33 - + tfa_google.disable.confirm_message - Wenn Sie die Authenticator App deaktivieren, werden alle Backupcodes gelöscht, daher sie müssen sie evtl. neu ausdrucken.<br> -Beachten Sie außerdem, dass ihr Account ohne Zwei-Faktor-Authentifizierung nicht mehr so gut gegen Angreifer geschützt ist! + +Beachten Sie außerdem, dass ihr Account ohne Zwei-Faktor-Authentifizierung nicht mehr so gut gegen Angreifer geschützt ist!]]> @@ -3429,7 +3649,7 @@ Beachten Sie außerdem, dass ihr Account ohne Zwei-Faktor-Authentifizierung nich Part-DB1\templates\Users\_2fa_settings.html.twig:39 Part-DB1\templates\Users\_2fa_settings.html.twig:39 - + tfa_google.disabled_message Authenticator App deaktiviert @@ -3439,9 +3659,9 @@ Beachten Sie außerdem, dass ihr Account ohne Zwei-Faktor-Authentifizierung nich Part-DB1\templates\Users\_2fa_settings.html.twig:48 Part-DB1\templates\Users\_2fa_settings.html.twig:48 - + tfa_google.step.download - Laden Sie eine Authenticator App herunter (z.B. <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>) + Google Authenticator oder FreeOTP Authenticator)]]> @@ -3449,7 +3669,7 @@ Beachten Sie außerdem, dass ihr Account ohne Zwei-Faktor-Authentifizierung nich Part-DB1\templates\Users\_2fa_settings.html.twig:49 Part-DB1\templates\Users\_2fa_settings.html.twig:49 - + tfa_google.step.scan Scannen Sie den nebenstehenden QR-Code mit der App oder geben Sie die Daten manuell ein @@ -3459,7 +3679,7 @@ Beachten Sie außerdem, dass ihr Account ohne Zwei-Faktor-Authentifizierung nich Part-DB1\templates\Users\_2fa_settings.html.twig:50 Part-DB1\templates\Users\_2fa_settings.html.twig:50 - + tfa_google.step.input_code Geben Sie den erzeugten Code in das untere Feld ein und bestätigen Sie @@ -3469,7 +3689,7 @@ Beachten Sie außerdem, dass ihr Account ohne Zwei-Faktor-Authentifizierung nich Part-DB1\templates\Users\_2fa_settings.html.twig:51 Part-DB1\templates\Users\_2fa_settings.html.twig:51 - + tfa_google.step.download_backup Drucken Sie ihre Backupcodes aus und lagern sie an einem sicherem Ort @@ -3479,7 +3699,7 @@ Beachten Sie außerdem, dass ihr Account ohne Zwei-Faktor-Authentifizierung nich Part-DB1\templates\Users\_2fa_settings.html.twig:58 Part-DB1\templates\Users\_2fa_settings.html.twig:58 - + tfa_google.manual_setup Manuelle Einrichtung @@ -3489,7 +3709,7 @@ Beachten Sie außerdem, dass ihr Account ohne Zwei-Faktor-Authentifizierung nich Part-DB1\templates\Users\_2fa_settings.html.twig:62 Part-DB1\templates\Users\_2fa_settings.html.twig:62 - + tfa_google.manual_setup.type Typ @@ -3499,7 +3719,7 @@ Beachten Sie außerdem, dass ihr Account ohne Zwei-Faktor-Authentifizierung nich Part-DB1\templates\Users\_2fa_settings.html.twig:63 Part-DB1\templates\Users\_2fa_settings.html.twig:63 - + tfa_google.manual_setup.username Benutzername @@ -3509,7 +3729,7 @@ Beachten Sie außerdem, dass ihr Account ohne Zwei-Faktor-Authentifizierung nich Part-DB1\templates\Users\_2fa_settings.html.twig:64 Part-DB1\templates\Users\_2fa_settings.html.twig:64 - + tfa_google.manual_setup.secret Secret @@ -3519,7 +3739,7 @@ Beachten Sie außerdem, dass ihr Account ohne Zwei-Faktor-Authentifizierung nich Part-DB1\templates\Users\_2fa_settings.html.twig:65 Part-DB1\templates\Users\_2fa_settings.html.twig:65 - + tfa_google.manual_setup.digit_count Anzahl Stellen @@ -3529,7 +3749,7 @@ Beachten Sie außerdem, dass ihr Account ohne Zwei-Faktor-Authentifizierung nich Part-DB1\templates\Users\_2fa_settings.html.twig:74 Part-DB1\templates\Users\_2fa_settings.html.twig:74 - + tfa_google.enabled_message Authenticator App aktiv @@ -3539,7 +3759,7 @@ Beachten Sie außerdem, dass ihr Account ohne Zwei-Faktor-Authentifizierung nich Part-DB1\templates\Users\_2fa_settings.html.twig:83 Part-DB1\templates\Users\_2fa_settings.html.twig:83 - + tfa_backup.disabled Backupcodes deaktiviert. Authenticator App einrichten, um Backupcodes zu aktivieren. @@ -3551,7 +3771,7 @@ Beachten Sie außerdem, dass ihr Account ohne Zwei-Faktor-Authentifizierung nich Part-DB1\templates\Users\_2fa_settings.html.twig:84 Part-DB1\templates\Users\_2fa_settings.html.twig:92 - + tfa_backup.explanation Mithilfe dieser Backupcodes können Sie auf ihren Account zugreifen, selbst wenn Sie das Gerät mit der Authenticator App verlieren sollten. Drucken Sie die Codes aus und bewahren Sie sie an einem sicherem Ort auf. @@ -3561,7 +3781,7 @@ Beachten Sie außerdem, dass ihr Account ohne Zwei-Faktor-Authentifizierung nich Part-DB1\templates\Users\_2fa_settings.html.twig:88 Part-DB1\templates\Users\_2fa_settings.html.twig:88 - + tfa_backup.reset_codes.confirm_title Codes wirklich zurücksetzen? @@ -3571,7 +3791,7 @@ Beachten Sie außerdem, dass ihr Account ohne Zwei-Faktor-Authentifizierung nich Part-DB1\templates\Users\_2fa_settings.html.twig:88 Part-DB1\templates\Users\_2fa_settings.html.twig:88 - + tfa_backup.reset_codes.confirm_message Dies wird alle bisherigen Codes löschen und einen Satz neuer Codes generieren. Dies lässt sich nicht rückgängig machen. Denken Sie daran die neuen Codes auszudrucken und an einem sicheren Ort zu hinterlegen! @@ -3581,7 +3801,7 @@ Beachten Sie außerdem, dass ihr Account ohne Zwei-Faktor-Authentifizierung nich Part-DB1\templates\Users\_2fa_settings.html.twig:91 Part-DB1\templates\Users\_2fa_settings.html.twig:91 - + tfa_backup.enabled Backupcodes aktiviert @@ -3591,7 +3811,7 @@ Beachten Sie außerdem, dass ihr Account ohne Zwei-Faktor-Authentifizierung nich Part-DB1\templates\Users\_2fa_settings.html.twig:99 Part-DB1\templates\Users\_2fa_settings.html.twig:99 - + tfa_backup.show_codes Backupcodes anzeigen @@ -3601,7 +3821,7 @@ Beachten Sie außerdem, dass ihr Account ohne Zwei-Faktor-Authentifizierung nich Part-DB1\templates\Users\_2fa_settings.html.twig:114 Part-DB1\templates\Users\_2fa_settings.html.twig:114 - + tfa_u2f.table_caption Registrierte Sicherheitsschlüssel @@ -3611,7 +3831,7 @@ Beachten Sie außerdem, dass ihr Account ohne Zwei-Faktor-Authentifizierung nich Part-DB1\templates\Users\_2fa_settings.html.twig:115 Part-DB1\templates\Users\_2fa_settings.html.twig:115 - + tfa_u2f.delete_u2f.confirm_title Diesen Sicherheitsschlüssel wirklich entfernen? @@ -3621,7 +3841,7 @@ Beachten Sie außerdem, dass ihr Account ohne Zwei-Faktor-Authentifizierung nich Part-DB1\templates\Users\_2fa_settings.html.twig:116 Part-DB1\templates\Users\_2fa_settings.html.twig:116 - + tfa_u2f.delete_u2f.confirm_message Wenn Sie diesen Schlüssel entfernen, dann wird kein Login mehr mit diesem möglich sein. Wenn keine Sicherheitsschlüssel verleiben, wird die Zwei-Faktor-Authentifizierung deaktiviert. @@ -3631,7 +3851,7 @@ Beachten Sie außerdem, dass ihr Account ohne Zwei-Faktor-Authentifizierung nich Part-DB1\templates\Users\_2fa_settings.html.twig:123 Part-DB1\templates\Users\_2fa_settings.html.twig:123 - + tfa_u2f.keys.name Name des Schlüssels @@ -3641,7 +3861,7 @@ Beachten Sie außerdem, dass ihr Account ohne Zwei-Faktor-Authentifizierung nich Part-DB1\templates\Users\_2fa_settings.html.twig:124 Part-DB1\templates\Users\_2fa_settings.html.twig:124 - + tfa_u2f.keys.added_date Datum der Registrierung @@ -3651,7 +3871,7 @@ Beachten Sie außerdem, dass ihr Account ohne Zwei-Faktor-Authentifizierung nich Part-DB1\templates\Users\_2fa_settings.html.twig:134 Part-DB1\templates\Users\_2fa_settings.html.twig:134 - + tfa_u2f.key_delete Schlüssel löschen @@ -3661,7 +3881,7 @@ Beachten Sie außerdem, dass ihr Account ohne Zwei-Faktor-Authentifizierung nich Part-DB1\templates\Users\_2fa_settings.html.twig:141 Part-DB1\templates\Users\_2fa_settings.html.twig:141 - + tfa_u2f.no_keys_registered Keine Sicherheitsschlüssel registriert @@ -3671,7 +3891,7 @@ Beachten Sie außerdem, dass ihr Account ohne Zwei-Faktor-Authentifizierung nich Part-DB1\templates\Users\_2fa_settings.html.twig:144 Part-DB1\templates\Users\_2fa_settings.html.twig:144 - + tfa_u2f.add_new_key Neuen Sicherheitsschlüssel registrieren @@ -3681,10 +3901,10 @@ Beachten Sie außerdem, dass ihr Account ohne Zwei-Faktor-Authentifizierung nich Part-DB1\templates\Users\_2fa_settings.html.twig:148 Part-DB1\templates\Users\_2fa_settings.html.twig:148 - + tfa_trustedDevices.explanation - Bei der Überprüfung des zweiten Faktors, kann der aktuelle Computer als vertrauenswürdig gekennzeichnet werden, daher es werden keine Zwei-Faktor-Überprüfungen mehr an diesem Computer benötigt. -Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertrauenswürdig ist, können Sie hier den Status <i>aller </i>Computer zurücksetzen. + aller Computer zurücksetzen.]]> @@ -3692,7 +3912,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\templates\Users\_2fa_settings.html.twig:149 Part-DB1\templates\Users\_2fa_settings.html.twig:149 - + tfa_trustedDevices.invalidate.confirm_title Wirklich alle vertrauenswürdigen Computer entfernen? @@ -3702,7 +3922,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\templates\Users\_2fa_settings.html.twig:150 Part-DB1\templates\Users\_2fa_settings.html.twig:150 - + tfa_trustedDevices.invalidate.confirm_message Sie werden auf allen Rechnern erneut eine Zwei-Faktor-Authentifizierung durchführen müssen. Achten Sie darauf, dass Sie ihr Zwei-Faktor-Gerät zur Hand haben. @@ -3712,7 +3932,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\templates\Users\_2fa_settings.html.twig:154 Part-DB1\templates\Users\_2fa_settings.html.twig:154 - + tfa_trustedDevices.invalidate.btn Alle vertrauenswürdigen Geräte entfernen @@ -3723,7 +3943,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\templates\_navbar.html.twig:4 templates\base.html.twig:29 - + sidebar.toggle Sidebar umschalten @@ -3732,7 +3952,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\templates\_navbar.html.twig:22 - + navbar.scanner.link Scanner @@ -3743,7 +3963,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\templates\_navbar.html.twig:36 templates\base.html.twig:97 - + user.loggedin.label Eingeloggt als @@ -3754,7 +3974,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\templates\_navbar.html.twig:42 templates\base.html.twig:103 - + user.login Einloggen @@ -3764,7 +3984,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\templates\_navbar.html.twig:50 Part-DB1\templates\_navbar.html.twig:48 - + ui.toggle_darkmode Darkmode @@ -3778,7 +3998,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr templates\base.html.twig:106 src\Form\UserSettingsType.php:44 - + user.language_select Sprache @@ -3789,7 +4009,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\templates\_navbar_search.html.twig:4 templates\base.html.twig:49 - + search.options.label Suchoptionen @@ -3798,7 +4018,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\templates\_navbar_search.html.twig:23 - + tags.label Tags @@ -3806,14 +4026,14 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\templates\_navbar_search.html.twig:27 - Part-DB1\src\Form\LabelOptionsType.php:66 + 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 Lagerort @@ -3824,7 +4044,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\templates\_navbar_search.html.twig:31 templates\base.html.twig:65 - + ordernumber.label.short Ordernr. @@ -3837,7 +4057,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Services\ElementTypeNameGenerator.php:89 templates\base.html.twig:67 - + supplier.label Lieferant @@ -3848,7 +4068,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\templates\_navbar_search.html.twig:52 templates\base.html.twig:75 - + search.deactivateBarcode Deakt. Barcode @@ -3859,7 +4079,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\templates\_navbar_search.html.twig:56 templates\base.html.twig:77 - + search.regexmatching Reg.Ex. Matching @@ -3869,7 +4089,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\templates\_navbar_search.html.twig:68 Part-DB1\templates\_navbar_search.html.twig:62 - + search.submit Los! @@ -3885,7 +4105,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr templates\base.html.twig:202 templates\base.html.twig:230 - + device.labelp Baugruppen @@ -3898,7 +4118,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr templates\base.html.twig:192 templates\base.html.twig:220 - + actions Aktionen @@ -3911,7 +4131,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr templates\base.html.twig:196 templates\base.html.twig:224 - + datasource Datenquelle @@ -3924,7 +4144,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr templates\base.html.twig:200 templates\base.html.twig:228 - + manufacturer.labelp Hersteller @@ -3937,15 +4157,15 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr templates\base.html.twig:201 templates\base.html.twig:229 - + supplier.labelp Lieferanten - Part-DB1\src\Controller\AdminPages\BaseAdminController.php:212 - Part-DB1\src\Controller\AdminPages\BaseAdminController.php:292 + 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 @@ -3953,83 +4173,83 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Controller\PartController.php:173 Part-DB1\src\Controller\PartController.php:268 - + attachment.download_failed Download der externen Datei fehlgeschlagen! - Part-DB1\src\Controller\AdminPages\BaseAdminController.php:221 + Part-DB1\src\Controller\AdminPages\BaseAdminController.php:222 Part-DB1\src\Controller\AdminPages\BaseAdminController.php:190 - + entity.edit_flash Änderungen erfolgreich gespeichert. - Part-DB1\src\Controller\AdminPages\BaseAdminController.php:230 + Part-DB1\src\Controller\AdminPages\BaseAdminController.php:231 Part-DB1\src\Controller\AdminPages\BaseAdminController.php:196 - + entity.edit_flash.invalid Änderungen konnten nicht gespeichert werden! Prüfen Sie ihre Eingaben! - Part-DB1\src\Controller\AdminPages\BaseAdminController.php:301 + Part-DB1\src\Controller\AdminPages\BaseAdminController.php:302 Part-DB1\src\Controller\AdminPages\BaseAdminController.php:252 - + entity.created_flash Element erfolgreich angelegt! - Part-DB1\src\Controller\AdminPages\BaseAdminController.php:307 + Part-DB1\src\Controller\AdminPages\BaseAdminController.php:308 Part-DB1\src\Controller\AdminPages\BaseAdminController.php:258 - + entity.created_flash.invalid Element konnte nicht angelegt werden! Prüfen Sie ihre Eingaben! - Part-DB1\src\Controller\AdminPages\BaseAdminController.php:398 + 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 gelöscht! - Part-DB1\src\Controller\AdminPages\BaseAdminController.php:400 + Part-DB1\src\Controller\AdminPages\BaseAdminController.php:401 Part-DB1\src\Controller\UserController.php:109 - Part-DB1\src\Controller\UserSettingsController.php:157 - Part-DB1\src\Controller\UserSettingsController.php:191 + 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 CSFR-Token ungültig! Laden Sie diese Seite erneut oder kontaktieren Sie einen Administrator, wenn das Problem bestehen bleibt! - Part-DB1\src\Controller\LabelController.php:134 + Part-DB1\src\Controller\LabelController.php:125 - + label_generator.no_entities_found Keine Elemente gefunden @@ -4040,7 +4260,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Controller\LogController.php:154 new - + log.undo.target_not_found Zielelement nicht in Datenbank gefunden! @@ -4051,7 +4271,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Controller\LogController.php:160 new - + log.undo.revert_success Bauteil erfolgreich zurückgesetzt. @@ -4062,7 +4282,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Controller\LogController.php:180 new - + log.undo.element_undelete_success Bauteil erfolgreich wiederhergestellt. @@ -4073,7 +4293,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Controller\LogController.php:182 new - + log.undo.element_element_already_undeleted Bauteile wurde bereits wiederhergestellt! @@ -4084,7 +4304,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Controller\LogController.php:189 new - + log.undo.element_delete_success Bauteil erfolgreich gelöscht. @@ -4095,7 +4315,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Controller\LogController.php:191 new - + log.undo.element.element_already_delted Bauteil wurde bereits gelöscht @@ -4106,7 +4326,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Controller\LogController.php:198 new - + log.undo.element_change_undone Änderung erfolgreich rückgängig gemacht. @@ -4117,7 +4337,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Controller\LogController.php:200 new - + log.undo.do_undelete_before Sie müssen das Element zuerst wiederherstellen bevor sie diese Änderung rückgängig machen können! @@ -4128,7 +4348,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Controller\LogController.php:203 new - + log.undo.log_type_invalid Dieser Logtyp kann nicht rückgängig gemacht werden! @@ -4139,7 +4359,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Controller\PartController.php:182 src\Controller\PartController.php:80 - + part.edited_flash Änderungen gespeichert! @@ -4149,7 +4369,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Controller\PartController.php:186 Part-DB1\src\Controller\PartController.php:186 - + part.edited_flash.invalid Fehler beim Speichern: Überprüfen Sie ihre Eingaben! @@ -4159,7 +4379,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Controller\PartController.php:216 Part-DB1\src\Controller\PartController.php:219 - + part.deleted Bauteil erfolgreich gelöscht. @@ -4172,7 +4392,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr src\Controller\PartController.php:113 src\Controller\PartController.php:142 - + part.created_flash Bauteile erfolgreich angelegt! @@ -4182,26 +4402,26 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Controller\PartController.php:308 Part-DB1\src\Controller\PartController.php:283 - + part.created_flash.invalid Fehler beim Anlegen: Überprüfen Sie ihre Eingaben! - Part-DB1\src\Controller\ScanController.php:66 - Part-DB1\src\Controller\ScanController.php:89 + Part-DB1\src\Controller\ScanController.php:68 + Part-DB1\src\Controller\ScanController.php:90 - + scan.qr_not_found Kein Element gefunden - Part-DB1\src\Controller\ScanController.php:69 + Part-DB1\src\Controller\ScanController.php:71 - + scan.format_unknown Format unbekannt @@ -4210,7 +4430,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Controller\ScanController.php:86 - + scan.qr_success Element gefunden @@ -4220,7 +4440,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Controller\SecurityController.php:114 Part-DB1\src\Controller\SecurityController.php:109 - + pw_reset.user_or_email Benutzername / Email @@ -4230,7 +4450,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Controller\SecurityController.php:131 Part-DB1\src\Controller\SecurityController.php:126 - + pw_reset.request.success Passwort Anfrage erfolgreich! Überprüfen Sie Ihre Emails für weitere Informationen. @@ -4240,7 +4460,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Controller\SecurityController.php:162 Part-DB1\src\Controller\SecurityController.php:160 - + pw_reset.username Benutzername @@ -4250,7 +4470,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Controller\SecurityController.php:165 Part-DB1\src\Controller\SecurityController.php:163 - + pw_reset.token Token @@ -4260,7 +4480,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Controller\SecurityController.php:194 Part-DB1\src\Controller\SecurityController.php:192 - + pw_reset.new_pw.error Benutzername oder Token ungültig! Überprüfen Sie ihre Eingaben. @@ -4270,7 +4490,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Controller\SecurityController.php:196 Part-DB1\src\Controller\SecurityController.php:194 - + pw_reset.new_pw.success Passwort wurde erfolgreich zurückgesetzt. Sie können sich nun mit dem neuen Passwort einloggen. @@ -4280,109 +4500,109 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Controller\UserController.php:107 Part-DB1\src\Controller\UserController.php:99 - + user.edit.reset_success Alle Zwei-Faktor-Authentisierungsmethoden wurden erfolgreich deaktiviert. - Part-DB1\src\Controller\UserSettingsController.php:99 + Part-DB1\src\Controller\UserSettingsController.php:101 Part-DB1\src\Controller\UserSettingsController.php:92 - + tfa_backup.no_codes_enabled Es sind keine Backupcodes aktiviert! - Part-DB1\src\Controller\UserSettingsController.php:136 + Part-DB1\src\Controller\UserSettingsController.php:138 Part-DB1\src\Controller\UserSettingsController.php:132 - + tfa_u2f.u2f_delete.not_existing Es existiert kein Sicherheitsschlüssel mit dieser ID! - Part-DB1\src\Controller\UserSettingsController.php:143 + Part-DB1\src\Controller\UserSettingsController.php:145 Part-DB1\src\Controller\UserSettingsController.php:139 - + tfa_u2f.u2f_delete.access_denied Sie können nur ihre eigenen Sicherheitsschlüssel löschen! - Part-DB1\src\Controller\UserSettingsController.php:151 + Part-DB1\src\Controller\UserSettingsController.php:153 Part-DB1\src\Controller\UserSettingsController.php:147 - + tfa.u2f.u2f_delete.success Sicherheitsschlüssel erfolgreich entfernt. - Part-DB1\src\Controller\UserSettingsController.php:186 + Part-DB1\src\Controller\UserSettingsController.php:188 Part-DB1\src\Controller\UserSettingsController.php:180 - + tfa_trustedDevice.invalidate.success Vertrauenswürdige Geräte erfolgreich zurückgesetzt. - Part-DB1\src\Controller\UserSettingsController.php:233 + Part-DB1\src\Controller\UserSettingsController.php:235 Part-DB1\src\Controller\UserSettingsController.php:226 src\Controller\UserController.php:98 - + user.settings.saved_flash Einstellungen gespeichert! - Part-DB1\src\Controller\UserSettingsController.php:295 + Part-DB1\src\Controller\UserSettingsController.php:297 Part-DB1\src\Controller\UserSettingsController.php:288 src\Controller\UserController.php:130 - + user.settings.pw_changed_flash Passwort geändert! - Part-DB1\src\Controller\UserSettingsController.php:315 + Part-DB1\src\Controller\UserSettingsController.php:317 Part-DB1\src\Controller\UserSettingsController.php:306 - + user.settings.2fa.google.activated Authenticator App erfolgreich aktiviert. - Part-DB1\src\Controller\UserSettingsController.php:326 + Part-DB1\src\Controller\UserSettingsController.php:328 Part-DB1\src\Controller\UserSettingsController.php:315 - + user.settings.2fa.google.disabled Authenticator App erfolgreich deaktiviert. - Part-DB1\src\Controller\UserSettingsController.php:344 + Part-DB1\src\Controller\UserSettingsController.php:346 Part-DB1\src\Controller\UserSettingsController.php:332 - + user.settings.2fa.backup_codes.regenerated Neue Backupcodes erfolgreich erzeugt. @@ -4392,7 +4612,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\DataTables\AttachmentDataTable.php:148 Part-DB1\src\DataTables\AttachmentDataTable.php:148 - + attachment.table.filename Dateiname @@ -4402,7 +4622,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\DataTables\AttachmentDataTable.php:153 Part-DB1\src\DataTables\AttachmentDataTable.php:153 - + attachment.table.filesize Dateigröße @@ -4422,7 +4642,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\DataTables\PartsDataTable.php:193 Part-DB1\src\DataTables\PartsDataTable.php:200 - + true wahr @@ -4444,7 +4664,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\DataTables\PartsDataTable.php:201 Part-DB1\src\Form\Type\SIUnitType.php:139 - + false falsch @@ -4454,7 +4674,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\DataTables\Column\LogEntryTargetColumn.php:128 Part-DB1\src\DataTables\Column\LogEntryTargetColumn.php:119 - + log.target_deleted gelöscht @@ -4465,7 +4685,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\DataTables\Column\RevertLogColumn.php:60 new - + log.undo.undelete Bauteil wiederherstellen @@ -4476,7 +4696,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\DataTables\Column\RevertLogColumn.php:66 new - + log.undo.undo Änderung rückgängig machen @@ -4487,7 +4707,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\DataTables\Column\RevertLogColumn.php:86 new - + log.undo.revert Element auf Stand dieses Zeitpunktes zurücksetzen! @@ -4497,7 +4717,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\DataTables\LogDataTable.php:173 Part-DB1\src\DataTables\LogDataTable.php:161 - + log.id ID @@ -4507,7 +4727,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\DataTables\LogDataTable.php:178 Part-DB1\src\DataTables\LogDataTable.php:166 - + log.timestamp Zeitstempel @@ -4517,7 +4737,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\DataTables\LogDataTable.php:183 Part-DB1\src\DataTables\LogDataTable.php:171 - + log.type Ereignis @@ -4527,7 +4747,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\DataTables\LogDataTable.php:191 Part-DB1\src\DataTables\LogDataTable.php:179 - + log.level Level @@ -4537,7 +4757,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\DataTables\LogDataTable.php:200 Part-DB1\src\DataTables\LogDataTable.php:188 - + log.user Benutzer @@ -4547,7 +4767,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\DataTables\LogDataTable.php:213 Part-DB1\src\DataTables\LogDataTable.php:201 - + log.target_type Zieltyp @@ -4557,7 +4777,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\DataTables\LogDataTable.php:226 Part-DB1\src\DataTables\LogDataTable.php:214 - + log.target Ziel @@ -4568,7 +4788,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\DataTables\LogDataTable.php:218 new - + log.extra Extra @@ -4578,7 +4798,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\DataTables\PartsDataTable.php:168 Part-DB1\src\DataTables\PartsDataTable.php:116 - + part.table.name Name @@ -4588,7 +4808,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\DataTables\PartsDataTable.php:178 Part-DB1\src\DataTables\PartsDataTable.php:126 - + part.table.id ID @@ -4598,7 +4818,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\DataTables\PartsDataTable.php:182 Part-DB1\src\DataTables\PartsDataTable.php:130 - + part.table.description Beschreibung @@ -4608,7 +4828,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\DataTables\PartsDataTable.php:185 Part-DB1\src\DataTables\PartsDataTable.php:133 - + part.table.category Kategorie @@ -4618,7 +4838,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\DataTables\PartsDataTable.php:190 Part-DB1\src\DataTables\PartsDataTable.php:138 - + part.table.footprint Footprint @@ -4628,7 +4848,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\DataTables\PartsDataTable.php:194 Part-DB1\src\DataTables\PartsDataTable.php:142 - + part.table.manufacturer Hersteller @@ -4638,7 +4858,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\DataTables\PartsDataTable.php:197 Part-DB1\src\DataTables\PartsDataTable.php:145 - + part.table.storeLocations Lagerorte @@ -4648,7 +4868,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\DataTables\PartsDataTable.php:216 Part-DB1\src\DataTables\PartsDataTable.php:164 - + part.table.amount Menge @@ -4658,7 +4878,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\DataTables\PartsDataTable.php:224 Part-DB1\src\DataTables\PartsDataTable.php:172 - + part.table.minamount Min.Menge @@ -4668,7 +4888,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\DataTables\PartsDataTable.php:232 Part-DB1\src\DataTables\PartsDataTable.php:180 - + part.table.partUnit Maßeinheit @@ -4678,7 +4898,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\DataTables\PartsDataTable.php:236 Part-DB1\src\DataTables\PartsDataTable.php:184 - + part.table.addedDate Hinzugefügt @@ -4688,7 +4908,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\DataTables\PartsDataTable.php:240 Part-DB1\src\DataTables\PartsDataTable.php:188 - + part.table.lastModified Zuletzt bearbeitet @@ -4698,7 +4918,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\DataTables\PartsDataTable.php:244 Part-DB1\src\DataTables\PartsDataTable.php:192 - + part.table.needsReview Review benötigt @@ -4708,7 +4928,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\DataTables\PartsDataTable.php:251 Part-DB1\src\DataTables\PartsDataTable.php:199 - + part.table.favorite Favorit @@ -4718,7 +4938,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\DataTables\PartsDataTable.php:258 Part-DB1\src\DataTables\PartsDataTable.php:206 - + part.table.manufacturingStatus Status @@ -4732,7 +4952,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\DataTables\PartsDataTable.php:210 Part-DB1\src\Form\Part\PartBaseType.php:88 - + m_status.unknown Unbekannt @@ -4744,7 +4964,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\DataTables\PartsDataTable.php:211 Part-DB1\src\Form\Part\PartBaseType.php:88 - + m_status.announced Angekündigt @@ -4756,7 +4976,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\DataTables\PartsDataTable.php:212 Part-DB1\src\Form\Part\PartBaseType.php:88 - + m_status.active Aktiv @@ -4768,7 +4988,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\DataTables\PartsDataTable.php:213 Part-DB1\src\Form\Part\PartBaseType.php:88 - + m_status.nrfnd Not recommended for new designs @@ -4780,7 +5000,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\DataTables\PartsDataTable.php:214 Part-DB1\src\Form\Part\PartBaseType.php:88 - + m_status.eol End of life @@ -4792,7 +5012,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\DataTables\PartsDataTable.php:215 Part-DB1\src\Form\Part\PartBaseType.php:88 - + m_status.discontinued Discontinued @@ -4802,7 +5022,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\DataTables\PartsDataTable.php:271 Part-DB1\src\DataTables\PartsDataTable.php:219 - + part.table.mpn MPN @@ -4812,7 +5032,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\DataTables\PartsDataTable.php:275 Part-DB1\src\DataTables\PartsDataTable.php:223 - + part.table.mass Gewicht @@ -4822,7 +5042,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\DataTables\PartsDataTable.php:279 Part-DB1\src\DataTables\PartsDataTable.php:227 - + part.table.tags Tags @@ -4832,7 +5052,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\DataTables\PartsDataTable.php:283 Part-DB1\src\DataTables\PartsDataTable.php:231 - + part.table.attachments Dateianhänge @@ -4842,7 +5062,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\EventSubscriber\UserSystem\LoginSuccessSubscriber.php:82 Part-DB1\src\EventSubscriber\LoginSuccessListener.php:82 - + flash.login_successful Login erfolgreich. @@ -4853,7 +5073,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Form\AdminPages\ImportType.php:77 src\Form\ImportType.php:68 - + JSON JSON @@ -4864,7 +5084,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Form\AdminPages\ImportType.php:77 src\Form\ImportType.php:68 - + XML XML @@ -4875,7 +5095,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Form\AdminPages\ImportType.php:77 src\Form\ImportType.php:68 - + CSV CSV @@ -4886,7 +5106,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Form\AdminPages\ImportType.php:77 src\Form\ImportType.php:68 - + YAML YAML @@ -4896,7 +5116,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Form\AdminPages\ImportType.php:124 Part-DB1\src\Form\AdminPages\ImportType.php:124 - + import.abort_on_validation.help Wenn diese Option aktivert ist, wird beim erkennen ungültiger Daten der gesamte Vorgang abgebrochen. Ist diese Option nicht aktiv, werden ungültige Einträge ignoriert und versucht die anderen Einträge zu importieren. @@ -4907,7 +5127,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Form\AdminPages\ImportType.php:86 src\Form\ImportType.php:70 - + import.csv_separator CSV Trennzeichen @@ -4918,7 +5138,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Form\AdminPages\ImportType.php:93 src\Form\ImportType.php:72 - + parent.label Übergeordnetes Element @@ -4929,7 +5149,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Form\AdminPages\ImportType.php:101 src\Form\ImportType.php:75 - + import.file Datei @@ -4940,7 +5160,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Form\AdminPages\ImportType.php:111 src\Form\ImportType.php:78 - + import.preserve_children Importiere auch Unterelemente @@ -4951,7 +5171,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Form\AdminPages\ImportType.php:120 src\Form\ImportType.php:80 - + import.abort_on_validation Breche bei Invaliden Daten ab @@ -4962,7 +5182,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Form\AdminPages\ImportType.php:132 src\Form\ImportType.php:85 - + import.btn Importieren @@ -4972,7 +5192,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Form\AttachmentFormType.php:113 Part-DB1\src\Form\AttachmentFormType.php:109 - + attachment.edit.secure_file.help Auf ein Anhang der als privat gekennzeichnet ist, kann nur durch einen angemeldeten Benutzer zugegriffen werden, der die entsprechende Berechtigung besitzt. Wenn diese Option aktiv ist, werden keine Thumbnails erzeugt, und der Zugriff auf die Datei ist langsamer. @@ -4982,7 +5202,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Form\AttachmentFormType.php:127 Part-DB1\src\Form\AttachmentFormType.php:123 - + attachment.edit.url.help Hier kann entweder eine URL zu einer externen Datei eingetragen werden, oder es wird durch Eingabe eines Stichwortes in den eingebauten Ressourcen gesucht (z.B. Footprints). @@ -4992,7 +5212,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Form\AttachmentFormType.php:82 Part-DB1\src\Form\AttachmentFormType.php:79 - + attachment.edit.name Name @@ -5002,7 +5222,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Form\AttachmentFormType.php:85 Part-DB1\src\Form\AttachmentFormType.php:82 - + attachment.edit.attachment_type Anhangstyp @@ -5012,7 +5232,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Form\AttachmentFormType.php:94 Part-DB1\src\Form\AttachmentFormType.php:91 - + attachment.edit.show_in_table Zeige in Tabelle @@ -5022,7 +5242,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Form\AttachmentFormType.php:105 Part-DB1\src\Form\AttachmentFormType.php:102 - + attachment.edit.secure_file Privater Anhang @@ -5032,7 +5252,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Form\AttachmentFormType.php:119 Part-DB1\src\Form\AttachmentFormType.php:115 - + attachment.edit.url URL @@ -5042,7 +5262,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Form\AttachmentFormType.php:133 Part-DB1\src\Form\AttachmentFormType.php:129 - + attachment.edit.download_url Downloade externe Datei @@ -5052,198 +5272,198 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Form\AttachmentFormType.php:146 Part-DB1\src\Form\AttachmentFormType.php:142 - + attachment.edit.file Datei hochladen - Part-DB1\src\Form\LabelOptionsType.php:66 + Part-DB1\src\Form\LabelOptionsType.php:68 Part-DB1\src\Services\ElementTypeNameGenerator.php:86 - + part.label Bauteil - Part-DB1\src\Form\LabelOptionsType.php:66 + Part-DB1\src\Form\LabelOptionsType.php:68 Part-DB1\src\Services\ElementTypeNameGenerator.php:87 - + part_lot.label Bauteile Lot - Part-DB1\src\Form\LabelOptionsType.php:76 + Part-DB1\src\Form\LabelOptionsType.php:78 - + label_options.barcode_type.none Keiner - Part-DB1\src\Form\LabelOptionsType.php:76 + Part-DB1\src\Form\LabelOptionsType.php:78 - + label_options.barcode_type.qr QR-Code (empfohlen) - Part-DB1\src\Form\LabelOptionsType.php:76 + Part-DB1\src\Form\LabelOptionsType.php:78 - + label_options.barcode_type.code128 Code 128 (empfehlen) - Part-DB1\src\Form\LabelOptionsType.php:76 + Part-DB1\src\Form\LabelOptionsType.php:78 - + label_options.barcode_type.code39 Code 39 (empfohlen) - Part-DB1\src\Form\LabelOptionsType.php:76 + Part-DB1\src\Form\LabelOptionsType.php:78 - + label_options.barcode_type.code93 Code 93 - Part-DB1\src\Form\LabelOptionsType.php:76 + Part-DB1\src\Form\LabelOptionsType.php:78 - + label_options.barcode_type.datamatrix Datamatrix - Part-DB1\src\Form\LabelOptionsType.php:121 + Part-DB1\src\Form\LabelOptionsType.php:122 - + label_options.lines_mode.html HTML - Part-DB1\src\Form\LabelOptionsType.php:121 + Part-DB1\src\Form\LabelOptionsType.php:122 - + label.options.lines_mode.twig Twig - Part-DB1\src\Form\LabelOptionsType.php:125 + Part-DB1\src\Form\LabelOptionsType.php:126 - + label_options.lines_mode.help - Wenn sie hier Twig auswählen, wird das Contentfeld als Twig-Template interpretiert. Weitere Hilfe gibt es in der <a href="https://twig.symfony.com/doc/3.x/templates.html">Twig Dokumentation</a> und dem <a href="https://github.com/Part-DB/Part-DB-symfony/wiki/Labels#twig-mode">Wiki</a>. + Twig Dokumentation und dem Wiki.]]> - Part-DB1\src\Form\LabelOptionsType.php:45 + Part-DB1\src\Form\LabelOptionsType.php:47 - + label_options.page_size.label Größe - Part-DB1\src\Form\LabelOptionsType.php:64 + Part-DB1\src\Form\LabelOptionsType.php:66 - + label_options.supported_elements.label Elementtyp - Part-DB1\src\Form\LabelOptionsType.php:73 + Part-DB1\src\Form\LabelOptionsType.php:75 - + label_options.barcode_type.label Barcodetyp - Part-DB1\src\Form\LabelOptionsType.php:101 + Part-DB1\src\Form\LabelOptionsType.php:102 - + label_profile.lines.label Inhalt - Part-DB1\src\Form\LabelOptionsType.php:110 + Part-DB1\src\Form\LabelOptionsType.php:111 - + label_options.additional_css.label Zusätzliches CSS - Part-DB1\src\Form\LabelOptionsType.php:119 + Part-DB1\src\Form\LabelOptionsType.php:120 - + label_options.lines_mode.label Parser Modus - Part-DB1\src\Form\LabelOptionsType.php:49 + Part-DB1\src\Form\LabelOptionsType.php:51 - + label_options.width.placeholder Breite - Part-DB1\src\Form\LabelOptionsType.php:58 + Part-DB1\src\Form\LabelOptionsType.php:60 - + label_options.height.placeholder Höhe - Part-DB1\src\Form\LabelSystem\LabelDialogType.php:48 + Part-DB1\src\Form\LabelSystem\LabelDialogType.php:49 - + label_generator.target_id.range_hint Sie können hier mehrere IDs (z.B. 1, 2, 3) und/oder einen Bereich angeben, um Barcodes für mehrere Elemente auf einmal zu erzeugen. - Part-DB1\src\Form\LabelSystem\LabelDialogType.php:45 + Part-DB1\src\Form\LabelSystem\LabelDialogType.php:46 - + label_generator.target_id.label Element IDs @@ -5252,27 +5472,25 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Form\LabelSystem\LabelDialogType.php:59 - + label_generator.update Update - Part-DB1\src\Form\LabelSystem\ScanDialogType.php:34 - new + Part-DB1\src\Form\LabelSystem\ScanDialogType.php:36 - + scan_dialog.input Input - Part-DB1\src\Form\LabelSystem\ScanDialogType.php:42 - new + Part-DB1\src\Form\LabelSystem\ScanDialogType.php:44 - + scan_dialog.submit Absenden @@ -5281,7 +5499,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Form\ParameterType.php:41 - + parameters.name.placeholder z.B. DC Current Gain @@ -5290,7 +5508,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Form\ParameterType.php:50 - + parameters.symbol.placeholder z.B. h_{FE} @@ -5299,7 +5517,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Form\ParameterType.php:60 - + parameters.text.placeholder z.B. Test Specifications @@ -5308,7 +5526,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Form\ParameterType.php:71 - + parameters.max.placeholder z.B. 350 @@ -5317,7 +5535,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Form\ParameterType.php:82 - + parameters.min.placeholder z.B. 100 @@ -5326,7 +5544,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Form\ParameterType.php:93 - + parameters.typical.placeholder z.B. 200 @@ -5335,7 +5553,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Form\ParameterType.php:103 - + parameters.unit.placeholder z.B. V @@ -5344,7 +5562,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Form\ParameterType.php:114 - + parameter.group.placeholder z.B. Technische Spezifikationen @@ -5354,7 +5572,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Form\Part\OrderdetailType.php:72 Part-DB1\src\Form\Part\OrderdetailType.php:75 - + orderdetails.edit.supplierpartnr Bestellnummer @@ -5364,7 +5582,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Form\Part\OrderdetailType.php:81 Part-DB1\src\Form\Part\OrderdetailType.php:84 - + orderdetails.edit.supplier Lieferant @@ -5374,7 +5592,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Form\Part\OrderdetailType.php:87 Part-DB1\src\Form\Part\OrderdetailType.php:90 - + orderdetails.edit.url Link zum Angebot @@ -5384,7 +5602,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Form\Part\OrderdetailType.php:93 Part-DB1\src\Form\Part\OrderdetailType.php:96 - + orderdetails.edit.obsolete Nicht mehr lieferbar @@ -5394,7 +5612,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Form\Part\OrderdetailType.php:75 Part-DB1\src\Form\Part\OrderdetailType.php:78 - + orderdetails.edit.supplierpartnr.placeholder z.B. BC 547C @@ -5404,7 +5622,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Form\Part\PartBaseType.php:101 Part-DB1\src\Form\Part\PartBaseType.php:99 - + part.edit.name Name @@ -5414,7 +5632,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Form\Part\PartBaseType.php:109 Part-DB1\src\Form\Part\PartBaseType.php:107 - + part.edit.description Beschreibung @@ -5424,7 +5642,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Form\Part\PartBaseType.php:120 Part-DB1\src\Form\Part\PartBaseType.php:118 - + part.edit.mininstock Mindestbestand @@ -5434,7 +5652,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Form\Part\PartBaseType.php:129 Part-DB1\src\Form\Part\PartBaseType.php:127 - + part.edit.category Kategorie @@ -5444,7 +5662,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Form\Part\PartBaseType.php:135 Part-DB1\src\Form\Part\PartBaseType.php:133 - + part.edit.footprint Footprint @@ -5454,7 +5672,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Form\Part\PartBaseType.php:142 Part-DB1\src\Form\Part\PartBaseType.php:140 - + part.edit.tags Tags @@ -5464,7 +5682,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Form\Part\PartBaseType.php:154 Part-DB1\src\Form\Part\PartBaseType.php:152 - + part.edit.manufacturer.label Hersteller @@ -5474,7 +5692,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Form\Part\PartBaseType.php:161 Part-DB1\src\Form\Part\PartBaseType.php:159 - + part.edit.manufacturer_url.label Link zur Produktseite @@ -5484,7 +5702,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Form\Part\PartBaseType.php:167 Part-DB1\src\Form\Part\PartBaseType.php:165 - + part.edit.mpn Bauteilenummer des Herstellers @@ -5494,7 +5712,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Form\Part\PartBaseType.php:173 Part-DB1\src\Form\Part\PartBaseType.php:171 - + part.edit.manufacturing_status Herstellungsstatus @@ -5504,7 +5722,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Form\Part\PartBaseType.php:181 Part-DB1\src\Form\Part\PartBaseType.php:179 - + part.edit.needs_review Review benötigt @@ -5514,7 +5732,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Form\Part\PartBaseType.php:189 Part-DB1\src\Form\Part\PartBaseType.php:187 - + part.edit.is_favorite Favorit @@ -5524,7 +5742,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Form\Part\PartBaseType.php:197 Part-DB1\src\Form\Part\PartBaseType.php:195 - + part.edit.mass Gewicht @@ -5534,7 +5752,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Form\Part\PartBaseType.php:203 Part-DB1\src\Form\Part\PartBaseType.php:201 - + part.edit.partUnit Maßeinheit @@ -5544,7 +5762,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Form\Part\PartBaseType.php:212 Part-DB1\src\Form\Part\PartBaseType.php:210 - + part.edit.comment Kommentat @@ -5554,7 +5772,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Form\Part\PartBaseType.php:250 Part-DB1\src\Form\Part\PartBaseType.php:246 - + part.edit.master_attachment Vorschaubild @@ -5565,7 +5783,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Form\Part\PartBaseType.php:276 src\Form\PartType.php:91 - + part.edit.save Änderungen übernehmen @@ -5576,7 +5794,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Form\Part\PartBaseType.php:277 src\Form\PartType.php:92 - + part.edit.reset Änderungen verwerfen @@ -5586,7 +5804,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Form\Part\PartBaseType.php:105 Part-DB1\src\Form\Part\PartBaseType.php:103 - + part.edit.name.placeholder z.B. BC547 @@ -5596,7 +5814,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Form\Part\PartBaseType.php:115 Part-DB1\src\Form\Part\PartBaseType.php:113 - + part.edit.description.placeholder z.B. NPN 45V 0,1A 0,5W @@ -5606,7 +5824,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Form\Part\PartBaseType.php:123 Part-DB1\src\Form\Part\PartBaseType.php:121 - + part.editmininstock.placeholder e.g. 1 @@ -5616,7 +5834,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Form\Part\PartLotType.php:69 Part-DB1\src\Form\Part\PartLotType.php:69 - + part_lot.edit.description Beschreibung @@ -5626,7 +5844,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Form\Part\PartLotType.php:78 Part-DB1\src\Form\Part\PartLotType.php:78 - + part_lot.edit.location Lagerort @@ -5636,7 +5854,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Form\Part\PartLotType.php:89 Part-DB1\src\Form\Part\PartLotType.php:89 - + part_lot.edit.amount Menge @@ -5646,7 +5864,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Form\Part\PartLotType.php:98 Part-DB1\src\Form\Part\PartLotType.php:97 - + part_lot.edit.instock_unknown Menge unbekannt @@ -5656,7 +5874,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Form\Part\PartLotType.php:109 Part-DB1\src\Form\Part\PartLotType.php:108 - + part_lot.edit.needs_refill Muss aufgefüllt werden @@ -5666,7 +5884,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Form\Part\PartLotType.php:120 Part-DB1\src\Form\Part\PartLotType.php:119 - + part_lot.edit.expiration_date Ablaufdatum @@ -5676,7 +5894,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Form\Part\PartLotType.php:128 Part-DB1\src\Form\Part\PartLotType.php:125 - + part_lot.edit.comment Kommentar @@ -5686,7 +5904,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Form\Permissions\PermissionsType.php:99 Part-DB1\src\Form\Permissions\PermissionsType.php:99 - + perm.group.other Verschiedene @@ -5696,7 +5914,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Form\TFAGoogleSettingsType.php:97 Part-DB1\src\Form\TFAGoogleSettingsType.php:97 - + tfa_google.enable Authenticator App aktivieren @@ -5706,7 +5924,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Form\TFAGoogleSettingsType.php:101 Part-DB1\src\Form\TFAGoogleSettingsType.php:101 - + tfa_google.disable Authenticator App deaktivieren @@ -5716,7 +5934,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Form\TFAGoogleSettingsType.php:74 Part-DB1\src\Form\TFAGoogleSettingsType.php:74 - + google_confirmation Bestätigungscode @@ -5727,7 +5945,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Form\UserSettingsType.php:108 src\Form\UserSettingsType.php:46 - + user.timezone.label Zeitzone @@ -5737,7 +5955,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Form\UserSettingsType.php:133 Part-DB1\src\Form\UserSettingsType.php:132 - + user.currency.label Bevorzugte Währung @@ -5748,7 +5966,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Form\UserSettingsType.php:139 src\Form\UserSettingsType.php:53 - + save Änderungen übernehmen @@ -5759,7 +5977,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Form\UserSettingsType.php:140 src\Form\UserSettingsType.php:54 - + reset Änderungen verwerfen @@ -5770,7 +5988,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Form\UserSettingsType.php:104 src\Form\UserSettingsType.php:45 - + user_settings.language.placeholder Serverweite Sprache @@ -5781,7 +5999,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Form\UserSettingsType.php:115 src\Form\UserSettingsType.php:48 - + user_settings.timezone.placeholder Serverweite Zeitzone @@ -5791,7 +6009,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Services\ElementTypeNameGenerator.php:79 Part-DB1\src\Services\ElementTypeNameGenerator.php:79 - + attachment.label Dateianhang @@ -5801,7 +6019,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Services\ElementTypeNameGenerator.php:81 Part-DB1\src\Services\ElementTypeNameGenerator.php:81 - + attachment_type.label Ahangstyp @@ -5811,7 +6029,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Services\ElementTypeNameGenerator.php:82 Part-DB1\src\Services\ElementTypeNameGenerator.php:82 - + device.label Baugruppe @@ -5821,7 +6039,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Services\ElementTypeNameGenerator.php:85 Part-DB1\src\Services\ElementTypeNameGenerator.php:85 - + measurement_unit.label Maßeinheit @@ -5831,7 +6049,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Services\ElementTypeNameGenerator.php:90 Part-DB1\src\Services\ElementTypeNameGenerator.php:90 - + currency.label Währung @@ -5841,7 +6059,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Services\ElementTypeNameGenerator.php:91 Part-DB1\src\Services\ElementTypeNameGenerator.php:91 - + orderdetail.label Bestellinformation @@ -5851,7 +6069,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Services\ElementTypeNameGenerator.php:92 Part-DB1\src\Services\ElementTypeNameGenerator.php:92 - + pricedetail.label Preisinformation @@ -5861,7 +6079,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Services\ElementTypeNameGenerator.php:94 Part-DB1\src\Services\ElementTypeNameGenerator.php:94 - + user.label Benutzer @@ -5870,7 +6088,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Services\ElementTypeNameGenerator.php:95 - + parameter.label Parameter @@ -5879,7 +6097,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Services\ElementTypeNameGenerator.php:96 - + label_profile.label Labelprofil @@ -5890,7 +6108,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Services\LogSystem\LogEntryExtraFormatter.php:161 new - + log.element_deleted.old_name.unknown Unbekannt @@ -5900,7 +6118,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Services\MarkdownParser.php:73 Part-DB1\src\Services\MarkdownParser.php:73 - + markdown.loading Lade Markdown. Wenn diese längere Zeit bestehen bleibt, versuchen sie die Website erneut zu laden! @@ -5910,7 +6128,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Services\PasswordResetManager.php:98 Part-DB1\src\Services\PasswordResetManager.php:98 - + pw_reset.email.subject Passwort Reset für Ihren Part-DB Account @@ -5919,7 +6137,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:108 - + tree.tools.tools Tools @@ -5930,7 +6148,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:107 src\Services\ToolsTreeBuilder.php:74 - + tree.tools.edit Bearbeiten @@ -5941,7 +6159,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:108 src\Services\ToolsTreeBuilder.php:81 - + tree.tools.show Zeige @@ -5951,7 +6169,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:111 Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:109 - + tree.tools.system System @@ -5960,7 +6178,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:123 - + tree.tools.tools.label_dialog Labeldialog @@ -5969,7 +6187,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:130 - + tree.tools.tools.label_scanner Labelscanner @@ -5980,7 +6198,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:126 src\Services\ToolsTreeBuilder.php:62 - + tree.tools.edit.attachment_types Dateitypen @@ -5991,7 +6209,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:132 src\Services\ToolsTreeBuilder.php:64 - + tree.tools.edit.categories Kategorien @@ -6002,7 +6220,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:138 src\Services\ToolsTreeBuilder.php:66 - + tree.tools.edit.devices Baugruppen @@ -6013,7 +6231,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:144 src\Services\ToolsTreeBuilder.php:68 - + tree.tools.edit.suppliers Lieferanten @@ -6024,7 +6242,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:150 src\Services\ToolsTreeBuilder.php:70 - + tree.tools.edit.manufacturer Hersteller @@ -6034,7 +6252,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:179 Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:156 - + tree.tools.edit.storelocation Lagerorte @@ -6044,7 +6262,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:185 Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:162 - + tree.tools.edit.footprint Footprints @@ -6054,7 +6272,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:191 Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:168 - + tree.tools.edit.currency Währungen @@ -6064,7 +6282,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:197 Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:174 - + tree.tools.edit.measurement_unit Maßeinheiten @@ -6073,7 +6291,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:203 - + tree.tools.edit.label_profile Labelprofil @@ -6083,70 +6301,70 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:209 Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:180 - + tree.tools.edit.part Neues Bauteil - Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:227 + 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 Alle Teile - Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:233 + Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:232 Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:203 - + tree.tools.show.all_attachments Dateianhänge - Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:240 + 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:259 + Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:258 Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:229 - + tree.tools.system.users Benutzer - Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:265 + Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:264 Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:235 - + tree.tools.system.groups Gruppen - Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:272 + Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:271 Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:242 new - + tree.tools.system.event_log Event log @@ -6157,7 +6375,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Services\Trees\TreeViewGenerator.php:95 src\Services\TreeBuilder.php:124 - + entity.tree.new Neues Element @@ -6167,7 +6385,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\templates\Parts\info\_attachments_info.html.twig:34 obsolete - + attachment.external_file Externe Datei @@ -6177,7 +6395,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\templates\Parts\info\_attachments_info.html.twig:62 obsolete - + attachment.edit Bearbeiten @@ -6188,7 +6406,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr templates\base.html.twig:88 obsolete - + barcode.scan Scanne Barcode @@ -6199,7 +6417,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr src\Form\UserSettingsType.php:49 obsolete - + user.theme.label Theme @@ -6210,7 +6428,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr src\Form\UserSettingsType.php:50 obsolete - + user_settings.theme.placeholder Serverweites Theme @@ -6220,7 +6438,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Form\Type\SIUnitType.php:141 obsolete - + M M @@ -6230,7 +6448,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Form\Type\SIUnitType.php:141 obsolete - + k k @@ -6246,7 +6464,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Form\Type\SIUnitType.php:141 obsolete - + m m @@ -6256,7 +6474,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr Part-DB1\src\Form\Type\SIUnitType.php:141 obsolete - + µ µ @@ -6267,7 +6485,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr new obsolete - + log.user_login.ip IP: @@ -6281,7 +6499,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr new obsolete - + log.undo_mode.undo Änderung rückgängig gemacht @@ -6295,7 +6513,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr new obsolete - + log.undo_mode.revert Element zurückgesetzt @@ -6306,7 +6524,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr new obsolete - + log.element_created.original_instock Alter Bestand @@ -6317,7 +6535,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr new obsolete - + log.element_deleted.old_name Alter Name @@ -6328,7 +6546,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr new obsolete - + log.element_edited.changed_fields Geänderte Eigenschaften @@ -6339,7 +6557,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr new obsolete - + log.instock_changed.comment Kommentar @@ -6350,7 +6568,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr new obsolete - + log.collection_deleted.deleted gelöschtes Element @@ -6361,7 +6579,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr obsolete obsolete - + go.exclamation Los! @@ -6372,7 +6590,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr obsolete obsolete - + language.english Englisch @@ -6383,7 +6601,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr obsolete obsolete - + language.german Deutsch @@ -6393,7 +6611,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr obsolete obsolete - + flash.password_change_needed Ihr Password muss geändert werden! @@ -6403,7 +6621,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr obsolete obsolete - + attachment.table.type Anhangstyp @@ -6413,7 +6631,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr obsolete obsolete - + attachment.table.element verknüpftes Element @@ -6423,7 +6641,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr obsolete obsolete - + attachment.edit.isPicture Bild? @@ -6433,7 +6651,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr obsolete obsolete - + attachment.edit.is3DModel 3D Modell? @@ -6443,7 +6661,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr obsolete obsolete - + attachment.edit.isBuiltin Eingebaute Ressource? @@ -6453,7 +6671,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr obsolete obsolete - + category.edit.default_comment.placeholder z.B. Nützlich für Schaltnetzteile @@ -6463,7 +6681,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr obsolete obsolete - + tfa_backup.regenerate_codes Neue Backupcodes erzeugen @@ -6473,7 +6691,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr obsolete obsolete - + validator.noneofitschild.self Ein Element kann nicht sich selbst als übergeordnet sein! @@ -6483,7 +6701,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr obsolete obsolete - + validator.noneofitschild.children Ein Kindelement kann nicht das übergeordnete Element sein! @@ -6493,7 +6711,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr obsolete obsolete - + validator.isSelectable Das Element muss auswählbar sein! @@ -6503,7 +6721,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr obsolete obsolete - + validator.part_lot.location_full.no_increasment Der verwendete Lagerort wurde als voll markiert, daher kann der Bestand nicht erhöht werden. (Neuer Bestand maximal {{ old_amount }}) @@ -6513,7 +6731,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr obsolete obsolete - + validator.part_lot.location_full Der Lagerort ist voll, daher können keine neue Teile hinzugefügt werden. @@ -6523,7 +6741,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr obsolete obsolete - + validator.part_lot.only_existing Der Lagerort wurde als "nur bestehende Teile" markiert, daher können keine neuen Teile hinzugefügt werden. @@ -6533,7 +6751,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr obsolete obsolete - + validator.part_lot.single_part Der Lagerort wurde als "Nur ein Bauteil" markiert, daher kann kein neues Bauteil hinzugefügt werden. @@ -6543,7 +6761,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr obsolete obsolete - + m_status.active.help Das Bauteil wird momentan und in absehbarer Zukunft produziert. @@ -6553,7 +6771,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr obsolete obsolete - + m_status.announced.help Das Bauteil wurde angekündigt, ist aber noch nicht erhältlich. @@ -6563,7 +6781,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr obsolete obsolete - + m_status.discontinued.help Das Bauteil wird nicht mehr hergestellt. @@ -6573,7 +6791,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr obsolete obsolete - + m_status.eol.help Die Produktion des Bauteils wird bald eingestellt. @@ -6583,7 +6801,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr obsolete obsolete - + m_status.nrfnd.help Im Moment wird das Bauteil noch hergestellt, die Verwendung für neue Designs ist nicht mehr empfohlen. @@ -6593,7 +6811,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr obsolete obsolete - + m_status.unknown.help Der Produktionstatus ist nicht bekannt. @@ -6603,7 +6821,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr obsolete obsolete - + flash.success Erfolg @@ -6613,7 +6831,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr obsolete obsolete - + flash.error Fehler @@ -6623,7 +6841,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr obsolete obsolete - + flash.warning Warnung @@ -6633,7 +6851,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr obsolete obsolete - + flash.notice Hinweis @@ -6643,7 +6861,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr obsolete obsolete - + flash.info Info @@ -6653,7 +6871,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr obsolete obsolete - + validator.noLockout Sie können sich nicht selbst die Berechtigung Berechtigungen zu bearbeiten entziehen, um sich nicht versehentlich auszusperren! @@ -6663,7 +6881,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr obsolete obsolete - + attachment_type.edit.filetype_filter Erlaubte Dateitypen @@ -6673,7 +6891,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr obsolete obsolete - + attachment_type.edit.filetype_filter.help Sie können hier eine kommaseparierte Liste von Dateiendungen oder Mimetypen angeben, die eine hochgeladene Datei mit diesem Anhangstyp haben muss. Um alle unterstützten Bilddateien zu erlauben, kann image/* benutzt werden. @@ -6683,7 +6901,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr obsolete obsolete - + attachment_type.edit.filetype_filter.placeholder z.B. .txt, application/pdf, image/* @@ -6694,7 +6912,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr obsolete obsolete - + part.name.placeholder z.B. BC547 @@ -6704,7 +6922,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr obsolete obsolete - + entity.edit.not_selectable Nicht auswählbar @@ -6714,7 +6932,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr obsolete obsolete - + entity.edit.not_selectable.help Wenn diese Option aktiviert ist, dann kann dieses Element keinem Bauteil als Eigenschaft zugewiesen werden. Hilfreich z.B. wenn dieses Element nur der reinen Sortierung dienen soll. @@ -6724,7 +6942,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr obsolete obsolete - + bbcode.hint Hier kann BBCode verwendet werden (z.B. [b]Fett[/b]) @@ -6734,7 +6952,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr obsolete obsolete - + entity.create Element anlegen @@ -6744,7 +6962,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr obsolete obsolete - + entity.edit.save Speichern @@ -6754,7 +6972,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr obsolete obsolete - + category.edit.disable_footprints Deaktiviere Footprints @@ -6764,7 +6982,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr obsolete obsolete - + category.edit.disable_footprints.help Wenn diese Option aktiviert ist, ist die Footprint Eigenschaft für alle Bauteile in dieser Kategorie, deaktiviert. @@ -6774,7 +6992,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr obsolete obsolete - + category.edit.disable_manufacturers Deaktiviere Hersteller @@ -6784,7 +7002,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr obsolete obsolete - + category.edit.disable_manufacturers.help Wenn diese Option aktiviert ist, ist die Hersteller Eigenschaft für alle Bauteile in dieser Kategorie, deaktiviert. @@ -6794,7 +7012,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr obsolete obsolete - + category.edit.disable_autodatasheets Deaktiviere Automatische Datenblatt links @@ -6804,7 +7022,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr obsolete obsolete - + category.edit.disable_autodatasheets.help Wenn diese Option aktiviert ist, werden für Bauteile mit dieser Kategorie keine automatischen Datenblattlinks erzeugt. @@ -6814,7 +7032,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr obsolete obsolete - + category.edit.disable_properties Deaktiviere Eigenschaften @@ -6824,7 +7042,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr obsolete obsolete - + category.edit.disable_properties.help Wenn diese Option aktiviert ist, sind die Bauteileeigenschaften für alle Bauteile in dieser Kategorie, deaktiviert. @@ -6834,7 +7052,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr obsolete obsolete - + category.edit.partname_hint Namenshinweis @@ -6844,7 +7062,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr obsolete obsolete - + category.edit.partname_hint.placeholder z.B. 100nF @@ -6854,7 +7072,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr obsolete obsolete - + category.edit.partname_regex Namensfilter @@ -6864,7 +7082,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr obsolete obsolete - + category.edit.default_description Standard Beschreibung @@ -6874,7 +7092,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr obsolete obsolete - + category.edit.default_description.placeholder z.B. Kondensator, 10mmx10mm, SMD @@ -6884,7 +7102,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr obsolete obsolete - + category.edit.default_comment Standard Kommentar @@ -6894,7 +7112,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr obsolete obsolete - + company.edit.address Anschrift @@ -6904,7 +7122,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr obsolete obsolete - + company.edit.address.placeholder Musterstraße 314 31415 Beispielhausen @@ -6915,7 +7133,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr obsolete obsolete - + company.edit.phone_number Telefonnummer @@ -6925,7 +7143,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr obsolete obsolete - + company.edit.phone_number.placeholder +49 12345 6789 @@ -6935,7 +7153,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr obsolete obsolete - + company.edit.fax_number Faxnummer @@ -6945,7 +7163,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr obsolete obsolete - + company.edit.email Email Addresse @@ -6955,7 +7173,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr obsolete obsolete - + company.edit.email.placeholder contact@foo.bar @@ -6965,7 +7183,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr obsolete obsolete - + company.edit.website Website @@ -6975,7 +7193,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr obsolete obsolete - + company.edit.website.placeholder https://www.foo.bar @@ -6985,7 +7203,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr obsolete obsolete - + company.edit.auto_product_url Produkt URL @@ -6995,7 +7213,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr obsolete obsolete - + company.edit.auto_product_url.help Wenn diese URL gesetzt ist, wird sie benutzt um die URL eines Bauteils auf der Website des Herstellers zu erzeugen. Dabei wird %PARTNR% mit der Bestellnummer ersetzt. @@ -7005,7 +7223,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr obsolete obsolete - + company.edit.auto_product_url.placeholder https://foo.bar/product/%PARTNR% @@ -7015,7 +7233,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr obsolete obsolete - + currency.edit.iso_code ISO Code @@ -7025,7 +7243,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr obsolete obsolete - + currency.edit.exchange_rate Wechselkurs @@ -7035,7 +7253,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr obsolete obsolete - + footprint.edit.3d_model 3D Modell @@ -7045,7 +7263,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr obsolete obsolete - + mass_creation.lines Eingabe @@ -7055,7 +7273,7 @@ Wenn Sie dies fehlerhafterweise gemacht haben oder ein Computer nicht mehr vertr obsolete obsolete - + mass_creation.lines.placeholder Element 1 Element 2 @@ -7067,7 +7285,7 @@ Element 3 obsolete obsolete - + entity.mass_creation.btn Anlegen @@ -7077,7 +7295,7 @@ Element 3 obsolete obsolete - + measurement_unit.edit.is_integer Ganzzahlig @@ -7087,7 +7305,7 @@ Element 3 obsolete obsolete - + measurement_unit.edit.is_integer.help Wenn diese Option aktiviert ist, werden alle Mengen in dieser Einheit auf ganze Zahlen gerundet. @@ -7097,7 +7315,7 @@ Element 3 obsolete obsolete - + measurement_unit.edit.use_si_prefix Benutze SI Prefixe @@ -7107,7 +7325,7 @@ Element 3 obsolete obsolete - + measurement_unit.edit.use_si_prefix.help Wenn diese Option aktiviert ist, werden bei Ausgabe der Zahlen SI Prefixe benutzt (z.B. 1,2kg anstatt 1200g) @@ -7117,7 +7335,7 @@ Element 3 obsolete obsolete - + measurement_unit.edit.unit_symbol Einheitensymbol @@ -7127,7 +7345,7 @@ Element 3 obsolete obsolete - + measurement_unit.edit.unit_symbol.placeholder z.B. m @@ -7137,7 +7355,7 @@ Element 3 obsolete obsolete - + storelocation.edit.is_full.label Lagerort voll @@ -7147,7 +7365,7 @@ Element 3 obsolete obsolete - + storelocation.edit.is_full.help Wenn diese Option aktiviert ist, ist es weder möglich neue Bauteile zu diesem Lagerort hinzuzufügen, noch die Anzahl bereits vorhandener Bauteile zu erhöhen. @@ -7157,7 +7375,7 @@ Element 3 obsolete obsolete - + storelocation.limit_to_existing.label Nur bestehende Bauteile @@ -7167,7 +7385,7 @@ Element 3 obsolete obsolete - + storelocation.limit_to_existing.help Wenn diese Option aktiv ist, ist es nicht möglich neue Bauteile zu diesem Lagerort hinzuzufügen, es ist aber möglich die Anzahl bereits vorhandener Bauteile zu erhöhen. @@ -7177,7 +7395,7 @@ Element 3 obsolete obsolete - + storelocation.only_single_part.label Nur ein ein Bauteil @@ -7187,7 +7405,7 @@ Element 3 obsolete obsolete - + storelocation.only_single_part.help Wenn diese Option aktiviert ist, kann dieser Lagerort nur ein einzelnes Bauteil aber in beliebiger Menge fassen. Hilfreich für kleine SMD Fächer oder Feeder. @@ -7197,7 +7415,7 @@ Element 3 obsolete obsolete - + storelocation.storage_type.label Lagertyp @@ -7207,7 +7425,7 @@ Element 3 obsolete obsolete - + storelocation.storage_type.help Hier kann eine Maßeinheit gewählt werden, die ein Bauteil haben muss, damit es in diesem Lagerort gelagert werden kann. @@ -7217,7 +7435,7 @@ Element 3 obsolete obsolete - + supplier.edit.default_currency Standardwährung @@ -7227,7 +7445,7 @@ Element 3 obsolete obsolete - + supplier.shipping_costs.label Versandkosten @@ -7237,7 +7455,7 @@ Element 3 obsolete obsolete - + user.username.placeholder z.B. m.muster @@ -7247,7 +7465,7 @@ Element 3 obsolete obsolete - + user.firstName.placeholder z.B. Max @@ -7257,7 +7475,7 @@ Element 3 obsolete obsolete - + user.lastName.placeholder z.B. Muster @@ -7267,7 +7485,7 @@ Element 3 obsolete obsolete - + user.email.placeholder z.B. m.muster@ecorp.com @@ -7277,7 +7495,7 @@ Element 3 obsolete obsolete - + user.department.placeholder z.B. Entwicklung @@ -7287,7 +7505,7 @@ Element 3 obsolete obsolete - + user.settings.pw_new.label Neues Passwort @@ -7297,7 +7515,7 @@ Element 3 obsolete obsolete - + user.settings.pw_confirm.label Neues Passwort bestätigen @@ -7307,7 +7525,7 @@ Element 3 obsolete obsolete - + user.edit.needs_pw_change Nutzer muss Passwort ändern @@ -7317,7 +7535,7 @@ Element 3 obsolete obsolete - + user.edit.user_disabled Benutzer deaktiviert (kein Login möglich) @@ -7327,7 +7545,7 @@ Element 3 obsolete obsolete - + user.create Benutzer anlegen @@ -7337,7 +7555,7 @@ Element 3 obsolete obsolete - + user.edit.save Speichern @@ -7347,7 +7565,7 @@ Element 3 obsolete obsolete - + entity.edit.reset Änderungen verwerfen @@ -7358,7 +7576,7 @@ Element 3 obsolete obsolete - + part.withdraw.caption: Bauteile entnehmen: @@ -7369,7 +7587,7 @@ Element 3 obsolete obsolete - + part.withdraw.btn Entnehmen @@ -7380,7 +7598,7 @@ Element 3 obsolete obsolete - + part.withdraw.comment: Kommentar/Zweck @@ -7391,7 +7609,7 @@ Element 3 obsolete obsolete - + part.add.caption Bauteil hinzufügen @@ -7402,7 +7620,7 @@ Element 3 obsolete obsolete - + part.add.btn Hinzufügen @@ -7413,7 +7631,7 @@ Element 3 obsolete obsolete - + part.add.comment Kommentar/Zweck @@ -7424,7 +7642,7 @@ Element 3 obsolete obsolete - + admin.comment Kommentar @@ -7435,7 +7653,7 @@ Element 3 obsolete obsolete - + manufacturer_url.label Herstellerlink @@ -7446,7 +7664,7 @@ Element 3 obsolete obsolete - + part.description.placeholder z.B. NPN 45V 0,1A 0,5W @@ -7457,7 +7675,7 @@ Element 3 obsolete obsolete - + part.instock.placeholder z.B. 12 @@ -7468,7 +7686,7 @@ Element 3 obsolete obsolete - + part.mininstock.placeholder z.B. 10 @@ -7478,7 +7696,7 @@ Element 3 obsolete obsolete - + homepage.basedOn basierend auf Arbeit von @@ -7488,7 +7706,7 @@ Element 3 obsolete obsolete - + homepage.others und anderen @@ -7498,7 +7716,7 @@ Element 3 obsolete obsolete - + part.order.price_per pro @@ -7508,7 +7726,7 @@ Element 3 obsolete obsolete - + part.withdraw.caption Bauteile entnehmen @@ -7518,7 +7736,7 @@ Element 3 obsolete obsolete - + datatable.datatable.lengthMenu _MENU_ @@ -7528,7 +7746,7 @@ Element 3 obsolete obsolete - + perm.group.parts Bauteile @@ -7538,7 +7756,7 @@ Element 3 obsolete obsolete - + perm.group.structures Datenstrukturen @@ -7548,7 +7766,7 @@ Element 3 obsolete obsolete - + perm.group.system System @@ -7558,7 +7776,7 @@ Element 3 obsolete obsolete - + perm.parts Allgemein @@ -7568,7 +7786,7 @@ Element 3 obsolete obsolete - + perm.read Anzeigen @@ -7578,7 +7796,7 @@ Element 3 obsolete obsolete - + perm.edit Bearbeiten @@ -7588,7 +7806,7 @@ Element 3 obsolete obsolete - + perm.create Anlegen @@ -7598,7 +7816,7 @@ Element 3 obsolete obsolete - + perm.part.move Kategorie verändern @@ -7608,7 +7826,7 @@ Element 3 obsolete obsolete - + perm.delete Löschen @@ -7618,7 +7836,7 @@ Element 3 obsolete obsolete - + perm.part.search Suchen @@ -7628,7 +7846,7 @@ Element 3 obsolete obsolete - + perm.part.all_parts Alle Bauteile auflisten @@ -7638,7 +7856,7 @@ Element 3 obsolete obsolete - + perm.part.no_price_parts Teile ohne Preis auflisten @@ -7648,7 +7866,7 @@ Element 3 obsolete obsolete - + perm.part.obsolete_parts Obsolete Teile auflisten @@ -7658,7 +7876,7 @@ Element 3 obsolete obsolete - + perm.part.unknown_instock_parts Bauteile mit unbekanntem Bestand auflisten @@ -7668,7 +7886,7 @@ Element 3 obsolete obsolete - + perm.part.change_favorite Favoritenstatus ändern @@ -7678,7 +7896,7 @@ Element 3 obsolete obsolete - + perm.part.show_favorite Favoriten anzeigen @@ -7688,7 +7906,7 @@ Element 3 obsolete obsolete - + perm.part.show_last_edit_parts Zeige zuletzt bearbeitete/hinzugefügte Bauteile @@ -7698,7 +7916,7 @@ Element 3 obsolete obsolete - + perm.part.show_users Letzten bearbeitenden Nutzer anzeigen @@ -7708,7 +7926,7 @@ Element 3 obsolete obsolete - + perm.part.show_history Historie anzeigen @@ -7718,7 +7936,7 @@ Element 3 obsolete obsolete - + perm.part.name Name @@ -7728,7 +7946,7 @@ Element 3 obsolete obsolete - + perm.part.description Beschreibung @@ -7738,7 +7956,7 @@ Element 3 obsolete obsolete - + perm.part.instock Vorhanden @@ -7748,7 +7966,7 @@ Element 3 obsolete obsolete - + perm.part.mininstock Min. Bestand @@ -7758,7 +7976,7 @@ Element 3 obsolete obsolete - + perm.part.comment Kommentar @@ -7768,7 +7986,7 @@ Element 3 obsolete obsolete - + perm.part.storelocation Lagerort @@ -7778,7 +7996,7 @@ Element 3 obsolete obsolete - + perm.part.manufacturer Hersteller @@ -7788,7 +8006,7 @@ Element 3 obsolete obsolete - + perm.part.orderdetails Bestellinformationen @@ -7798,7 +8016,7 @@ Element 3 obsolete obsolete - + perm.part.prices Preise @@ -7808,7 +8026,7 @@ Element 3 obsolete obsolete - + perm.part.attachments Dateianhänge @@ -7818,7 +8036,7 @@ Element 3 obsolete obsolete - + perm.part.order Bestellungen @@ -7828,7 +8046,7 @@ Element 3 obsolete obsolete - + perm.storelocations Lagerorte @@ -7838,7 +8056,7 @@ Element 3 obsolete obsolete - + perm.move Verschieben @@ -7848,7 +8066,7 @@ Element 3 obsolete obsolete - + perm.list_parts Teile auflisten @@ -7858,7 +8076,7 @@ Element 3 obsolete obsolete - + perm.part.footprints Footprints @@ -7868,7 +8086,7 @@ Element 3 obsolete obsolete - + perm.part.categories Kategorien @@ -7878,7 +8096,7 @@ Element 3 obsolete obsolete - + perm.part.supplier Lieferanten @@ -7888,7 +8106,7 @@ Element 3 obsolete obsolete - + perm.part.manufacturers Hersteller @@ -7898,7 +8116,7 @@ Element 3 obsolete obsolete - + perm.part.devices Baugruppen @@ -7908,7 +8126,7 @@ Element 3 obsolete obsolete - + perm.part.attachment_types Dateitypen @@ -7918,7 +8136,7 @@ Element 3 obsolete obsolete - + perm.tools.import Import @@ -7928,7 +8146,7 @@ Element 3 obsolete obsolete - + perm.tools.labels Labels @@ -7938,7 +8156,7 @@ Element 3 obsolete obsolete - + perm.tools.calculator Widerstandsrechner @@ -7948,7 +8166,7 @@ Element 3 obsolete obsolete - + perm.tools.footprints Footprints @@ -7958,7 +8176,7 @@ Element 3 obsolete obsolete - + perm.tools.ic_logos IC-Logos @@ -7968,7 +8186,7 @@ Element 3 obsolete obsolete - + perm.tools.statistics Statistik @@ -7978,7 +8196,7 @@ Element 3 obsolete obsolete - + perm.edit_permissions Berechtigungen ändern @@ -7988,7 +8206,7 @@ Element 3 obsolete obsolete - + perm.users.edit_user_name Nutzernamen ändern @@ -7998,7 +8216,7 @@ Element 3 obsolete obsolete - + perm.users.edit_change_group Gruppe ändern @@ -8008,7 +8226,7 @@ Element 3 obsolete obsolete - + perm.users.edit_infos Informationen ändern @@ -8018,7 +8236,7 @@ Element 3 obsolete obsolete - + perm.users.edit_permissions Berechtigungen ändern @@ -8028,7 +8246,7 @@ Element 3 obsolete obsolete - + perm.users.set_password Passwort ändern @@ -8038,7 +8256,7 @@ Element 3 obsolete obsolete - + perm.users.change_user_settings Benutzereinstellungen ändern @@ -8048,7 +8266,7 @@ Element 3 obsolete obsolete - + perm.database.see_status Status anzeigen @@ -8058,7 +8276,7 @@ Element 3 obsolete obsolete - + perm.database.update_db Datenbank updaten @@ -8068,7 +8286,7 @@ Element 3 obsolete obsolete - + perm.database.read_db_settings Einstellungen anzeigen @@ -8078,7 +8296,7 @@ Element 3 obsolete obsolete - + perm.database.write_db_settings Einstellungen ändern @@ -8088,7 +8306,7 @@ Element 3 obsolete obsolete - + perm.config.read_config Konfiguration anzeigen @@ -8098,7 +8316,7 @@ Element 3 obsolete obsolete - + perm.config.edit_config Konfiguration ändern @@ -8108,7 +8326,7 @@ Element 3 obsolete obsolete - + perm.config.server_info Server info @@ -8118,7 +8336,7 @@ Element 3 obsolete obsolete - + perm.config.use_debug Debugtools benutzen @@ -8128,7 +8346,7 @@ Element 3 obsolete obsolete - + perm.show_logs Logs anzeigen @@ -8138,7 +8356,7 @@ Element 3 obsolete obsolete - + perm.delete_logs Logeinträge löschen @@ -8148,7 +8366,7 @@ Element 3 obsolete obsolete - + perm.self.edit_infos Informationen ändern @@ -8158,7 +8376,7 @@ Element 3 obsolete obsolete - + perm.self.edit_username Benutzernamen ändern @@ -8168,7 +8386,7 @@ Element 3 obsolete obsolete - + perm.self.show_permissions Berechtigungen anzeigen @@ -8178,7 +8396,7 @@ Element 3 obsolete obsolete - + perm.self.show_logs Logs anzeigen @@ -8188,7 +8406,7 @@ Element 3 obsolete obsolete - + perm.self.create_labels Labels erstellen @@ -8198,7 +8416,7 @@ Element 3 obsolete obsolete - + perm.self.edit_options Einstellungen ändern @@ -8208,7 +8426,7 @@ Element 3 obsolete obsolete - + perm.self.delete_profiles Profile löschen @@ -8218,7 +8436,7 @@ Element 3 obsolete obsolete - + perm.self.edit_profiles Profile bearbeiten @@ -8228,7 +8446,7 @@ Element 3 obsolete obsolete - + perm.part.tools Tools @@ -8238,7 +8456,7 @@ Element 3 obsolete obsolete - + perm.groups Gruppen @@ -8248,7 +8466,7 @@ Element 3 obsolete obsolete - + perm.users Benutzer @@ -8258,7 +8476,7 @@ Element 3 obsolete obsolete - + perm.database Datenbank @@ -8268,7 +8486,7 @@ Element 3 obsolete obsolete - + perm.config Einstellungen @@ -8278,7 +8496,7 @@ Element 3 obsolete obsolete - + perm.system System @@ -8288,7 +8506,7 @@ Element 3 obsolete obsolete - + perm.device_parts Baugruppenbauteile @@ -8298,7 +8516,7 @@ Element 3 obsolete obsolete - + perm.self Eigenen Benutzer bearbeiten @@ -8308,7 +8526,7 @@ Element 3 obsolete obsolete - + perm.labels Labels @@ -8318,7 +8536,7 @@ Element 3 obsolete obsolete - + perm.part.category Kategorie @@ -8328,7 +8546,7 @@ Element 3 obsolete obsolete - + perm.part.minamount Mindestbestand @@ -8338,7 +8556,7 @@ Element 3 obsolete obsolete - + perm.part.footprint Footprint @@ -8348,7 +8566,7 @@ Element 3 obsolete obsolete - + perm.part.mpn MPN @@ -8358,7 +8576,7 @@ Element 3 obsolete obsolete - + perm.part.status Herstellungsstatus @@ -8368,7 +8586,7 @@ Element 3 obsolete obsolete - + perm.part.tags Tags @@ -8378,7 +8596,7 @@ Element 3 obsolete obsolete - + perm.part.unit Maßeinheit @@ -8388,7 +8606,7 @@ Element 3 obsolete obsolete - + perm.part.mass Gewicht @@ -8398,7 +8616,7 @@ Element 3 obsolete obsolete - + perm.part.lots Lagerorte @@ -8408,7 +8626,7 @@ Element 3 obsolete obsolete - + perm.show_users Letzten bearbeitenden Nutzer anzeigen @@ -8418,7 +8636,7 @@ Element 3 obsolete obsolete - + perm.currencies Währungen @@ -8428,7 +8646,7 @@ Element 3 obsolete obsolete - + perm.measurement_units Maßeinheiten @@ -8438,7 +8656,7 @@ Element 3 obsolete obsolete - + user.settings.pw_old.label Altes Passwort @@ -8448,7 +8666,7 @@ Element 3 obsolete obsolete - + pw_reset.submit Passwort zurücksetzen @@ -8458,7 +8676,7 @@ Element 3 obsolete obsolete - + u2f_two_factor Sicherheitsschlüssel (U2F) @@ -8468,7 +8686,7 @@ Element 3 obsolete obsolete - + google Google @@ -8478,7 +8696,7 @@ Element 3 obsolete obsolete - + tfa.provider.u2f_two_factor Sicherheitsschlüssel @@ -8488,7 +8706,7 @@ Element 3 obsolete obsolete - + tfa.provider.google Authenticator App @@ -8498,7 +8716,7 @@ Element 3 obsolete obsolete - + Login successful Erfolgreich eingeloggt! @@ -8508,7 +8726,7 @@ Element 3 obsolete obsolete - + log.type.exception Unbehandelte Exception (veraltet) @@ -8518,7 +8736,7 @@ Element 3 obsolete obsolete - + log.type.user_login Nutzer eingeloggt @@ -8528,7 +8746,7 @@ Element 3 obsolete obsolete - + log.type.user_logout Nutzer ausgeloggt @@ -8538,7 +8756,7 @@ Element 3 obsolete obsolete - + log.type.unknown Unbekannt @@ -8548,7 +8766,7 @@ Element 3 obsolete obsolete - + log.type.element_created Element angelegt @@ -8558,7 +8776,7 @@ Element 3 obsolete obsolete - + log.type.element_edited Element bearbeitet @@ -8568,7 +8786,7 @@ Element 3 obsolete obsolete - + log.type.element_deleted Element gelöscht @@ -8578,7 +8796,7 @@ Element 3 obsolete obsolete - + log.type.database_updated Datenbank aktualisiert @@ -8587,7 +8805,7 @@ Element 3 obsolete - + perm.revert_elements Element zurücksetzen @@ -8596,7 +8814,7 @@ Element 3 obsolete - + perm.show_history Historie anzeigen @@ -8605,7 +8823,7 @@ Element 3 obsolete - + perm.tools.lastActivity Letzte Aktivität anzeigen @@ -8614,7 +8832,7 @@ Element 3 obsolete - + perm.tools.timeTravel Alte Versionsstände anzeigen (Zeitreisen) @@ -8623,7 +8841,7 @@ Element 3 obsolete - + log.type. __log.type. @@ -8632,7 +8850,7 @@ Element 3 obsolete - + tfa_u2f.key_added_successful Sicherheitsschlüssel erfolgreich hinzugefügt. @@ -8641,7 +8859,7 @@ Element 3 obsolete - + Username Benutzername @@ -8650,7 +8868,7 @@ Element 3 obsolete - + log.type.security.google_disabled Authenticator App deaktiviert @@ -8659,7 +8877,7 @@ Element 3 obsolete - + log.type.security.u2f_removed Sicherheitsschlüssel gelöscht @@ -8668,7 +8886,7 @@ Element 3 obsolete - + log.type.security.u2f_added Sicherheitsschlüssel hinzugefügt @@ -8677,7 +8895,7 @@ Element 3 obsolete - + log.type.security.backup_keys_reset Neue Backupkeys erzeugt @@ -8686,7 +8904,7 @@ Element 3 obsolete - + log.type.security.google_enabled Authenticator App aktiviert @@ -8695,7 +8913,7 @@ Element 3 obsolete - + log.type.security.password_changed Passwort geändert @@ -8704,7 +8922,7 @@ Element 3 obsolete - + log.type.security.trusted_device_reset Vertrauenswürdige Geräte zurückgesetzt @@ -8713,7 +8931,7 @@ Element 3 obsolete - + log.type.collection_element_deleted Kollektionselement gelöscht @@ -8722,7 +8940,7 @@ Element 3 obsolete - + log.type.security.password_reset Passwort zurückgesetzt @@ -8731,7 +8949,7 @@ Element 3 obsolete - + log.type.security.2fa_admin_reset Zwei-Faktor-Authentifizierung durch Administrator zurückgesetzt @@ -8740,7 +8958,7 @@ Element 3 obsolete - + log.type.user_not_allowed Unerlaubter Zugriffsversuch @@ -8749,7 +8967,7 @@ Element 3 obsolete - + log.database_updated.success Erfolgreich @@ -8758,7 +8976,7 @@ Element 3 obsolete - + label_options.barcode_type.2D 2D @@ -8767,43 +8985,61 @@ Element 3 obsolete - + label_options.barcode_type.1D 1D - + + obsolete + + perm.part.parameters Parameter - + + obsolete + + perm.attachment_show_private Private Anhänge zeigen - + + obsolete + + perm.tools.label_scanner Labelscanner - + + obsolete + + perm.self.read_profiles Profile anzeigen - + + obsolete + + perm.self.create_profiles Profil anlegen - + + obsolete + + perm.labels.use_twig Twig Modus benutzen diff --git a/translations/messages.en.xlf b/translations/messages.en.xlf index 25982d21..d1da48fc 100644 --- a/translations/messages.en.xlf +++ b/translations/messages.en.xlf @@ -7,11 +7,31 @@ Part-DB1\templates\AdminPages\AttachmentTypeAdmin.html.twig:4 templates\AdminPages\AttachmentTypeAdmin.html.twig:4 - + attachment_type.caption File types for attachments + + + Part-DB1\templates\AdminPages\AttachmentTypeAdmin.html.twig:12 + new + + + attachment_type.edit + Edit file type + + + + + Part-DB1\templates\AdminPages\AttachmentTypeAdmin.html.twig:16 + new + + + attachment_type.new + New file type + + Part-DB1\templates\AdminPages\CategoryAdmin.html.twig:4 @@ -26,7 +46,7 @@ templates\base.html.twig:197 templates\base.html.twig:225 - + category.labelp Categories @@ -39,7 +59,7 @@ Part-DB1\templates\AdminPages\StorelocationAdmin.html.twig:11 templates\AdminPages\CategoryAdmin.html.twig:8 - + admin.options Options @@ -52,17 +72,37 @@ Part-DB1\templates\AdminPages\CompanyAdminBase.html.twig:15 templates\AdminPages\CategoryAdmin.html.twig:9 - + admin.advanced Advanced + + + Part-DB1\templates\AdminPages\CategoryAdmin.html.twig:13 + new + + + category.edit + Edit category + + + + + Part-DB1\templates\AdminPages\CategoryAdmin.html.twig:17 + new + + + category.new + New category + + Part-DB1\templates\AdminPages\CurrencyAdmin.html.twig:4 Part-DB1\templates\AdminPages\CurrencyAdmin.html.twig:4 - + currency.caption Currency @@ -72,7 +112,7 @@ Part-DB1\templates\AdminPages\CurrencyAdmin.html.twig:12 Part-DB1\templates\AdminPages\CurrencyAdmin.html.twig:12 - + currency.iso_code.caption ISO code @@ -82,22 +122,62 @@ Part-DB1\templates\AdminPages\CurrencyAdmin.html.twig:15 Part-DB1\templates\AdminPages\CurrencyAdmin.html.twig:15 - + currency.symbol.caption Currency symbol + + + Part-DB1\templates\AdminPages\CurrencyAdmin.html.twig:29 + new + + + currency.edit + Edit currency + + + + + Part-DB1\templates\AdminPages\CurrencyAdmin.html.twig:33 + new + + + currency.new + New currency + + Part-DB1\templates\AdminPages\DeviceAdmin.html.twig:4 Part-DB1\templates\AdminPages\DeviceAdmin.html.twig:4 templates\AdminPages\DeviceAdmin.html.twig:4 - + device.caption Device + + + Part-DB1\templates\AdminPages\DeviceAdmin.html.twig:8 + new + + + device.edit + Edit device + + + + + Part-DB1\templates\AdminPages\DeviceAdmin.html.twig:12 + new + + + device.new + New device + + Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:19 @@ -116,7 +196,7 @@ templates\base.html.twig:206 templates\base.html.twig:237 - + search.placeholder Search @@ -132,7 +212,7 @@ templates\base.html.twig:193 templates\base.html.twig:221 - + expandAll Expand All @@ -148,33 +228,11 @@ templates\base.html.twig:194 templates\base.html.twig:222 - + reduceAll Reduce All - - - Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:45 - Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:45 - templates\AdminPages\EntityAdminBase.html.twig:35 - - - edit.caption - Edit 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 - New element - - Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:54 @@ -182,9 +240,9 @@ Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:54 Part-DB1\templates\Parts\info\_sidebar.html.twig:4 - + part.info.timetravel_hint - This is how the part appeared before %timestamp%. <i>Please note that this feature is experimental, so the infos are maybe not correct.</i> + Please note that this feature is experimental, so the infos are maybe not correct.]]> @@ -193,7 +251,7 @@ Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:60 templates\AdminPages\EntityAdminBase.html.twig:42 - + standard.label Properties @@ -204,7 +262,7 @@ Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:61 templates\AdminPages\EntityAdminBase.html.twig:43 - + infos.label Infos @@ -215,7 +273,7 @@ Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:63 new - + history.label History @@ -226,7 +284,7 @@ Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:66 templates\AdminPages\EntityAdminBase.html.twig:45 - + export.label Export @@ -237,7 +295,7 @@ Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:68 templates\AdminPages\EntityAdminBase.html.twig:47 - + import_export.label Import / Export @@ -247,7 +305,7 @@ Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:69 Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:69 - + mass_creation.label Mass creation @@ -258,7 +316,7 @@ Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:82 templates\AdminPages\EntityAdminBase.html.twig:59 - + admin.common Common @@ -268,7 +326,7 @@ Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:86 Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:86 - + admin.attachments Attachments @@ -277,7 +335,7 @@ Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:90 - + admin.parameters Parameters @@ -288,7 +346,7 @@ Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:167 templates\AdminPages\EntityAdminBase.html.twig:142 - + export_all.label Export all elements @@ -298,11 +356,33 @@ Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:185 Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:173 - + mass_creation.help Each line will be interpreted as a name of a element, which will be created. + + + Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:45 + Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:45 + templates\AdminPages\EntityAdminBase.html.twig:35 + + + edit.caption + Edit 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 + New element + + Part-DB1\templates\AdminPages\FootprintAdmin.html.twig:4 @@ -313,17 +393,37 @@ templates\base.html.twig:199 templates\base.html.twig:227 - + footprint.labelp Footprints + + + Part-DB1\templates\AdminPages\FootprintAdmin.html.twig:13 + new + + + footprint.edit + Edit footprint + + + + + Part-DB1\templates\AdminPages\FootprintAdmin.html.twig:17 + new + + + footprint.new + New footprint + + Part-DB1\templates\AdminPages\GroupAdmin.html.twig:4 Part-DB1\templates\AdminPages\GroupAdmin.html.twig:4 - + group.edit.caption Groups @@ -335,16 +435,36 @@ Part-DB1\templates\AdminPages\GroupAdmin.html.twig:9 Part-DB1\templates\AdminPages\UserAdmin.html.twig:16 - + user.edit.permissions Permissions + + + Part-DB1\templates\AdminPages\GroupAdmin.html.twig:24 + new + + + group.edit + Edit group + + + + + Part-DB1\templates\AdminPages\GroupAdmin.html.twig:28 + new + + + group.new + New group + + Part-DB1\templates\AdminPages\LabelProfileAdmin.html.twig:4 - + label_profile.caption Label profiles @@ -353,7 +473,7 @@ Part-DB1\templates\AdminPages\LabelProfileAdmin.html.twig:8 - + label_profile.advanced Advanced @@ -362,28 +482,68 @@ Part-DB1\templates\AdminPages\LabelProfileAdmin.html.twig:9 - + label_profile.comment Comment + + + Part-DB1\templates\AdminPages\LabelProfileAdmin.html.twig:55 + new + + + label_profile.edit + Edit label profile + + + + + Part-DB1\templates\AdminPages\LabelProfileAdmin.html.twig:59 + new + + + label_profile.new + New label profile + + Part-DB1\templates\AdminPages\ManufacturerAdmin.html.twig:4 Part-DB1\templates\AdminPages\ManufacturerAdmin.html.twig:4 templates\AdminPages\ManufacturerAdmin.html.twig:4 - + manufacturer.caption Manufacturers + + + Part-DB1\templates\AdminPages\ManufacturerAdmin.html.twig:8 + new + + + manufacturer.edit + Edit manufacturer + + + + + Part-DB1\templates\AdminPages\ManufacturerAdmin.html.twig:12 + new + + + manufacturer.new + New manufacturer + + Part-DB1\templates\AdminPages\MeasurementUnitAdmin.html.twig:4 Part-DB1\templates\AdminPages\MeasurementUnitAdmin.html.twig:4 - + measurement_unit.caption Measurement Unit @@ -398,28 +558,68 @@ templates\base.html.twig:198 templates\base.html.twig:226 - + storelocation.labelp Storelocations + + + Part-DB1\templates\AdminPages\StorelocationAdmin.html.twig:32 + new + + + storelocation.edit + Edit store location + + + + + Part-DB1\templates\AdminPages\StorelocationAdmin.html.twig:36 + new + + + storelocation.new + New store location + + Part-DB1\templates\AdminPages\SupplierAdmin.html.twig:4 Part-DB1\templates\AdminPages\SupplierAdmin.html.twig:4 templates\AdminPages\SupplierAdmin.html.twig:4 - + supplier.caption Suppliers + + + Part-DB1\templates\AdminPages\SupplierAdmin.html.twig:16 + new + + + supplier.edit + Edit supplier + + + + + Part-DB1\templates\AdminPages\SupplierAdmin.html.twig:20 + new + + + supplier.new + New supplier + + Part-DB1\templates\AdminPages\UserAdmin.html.twig:8 Part-DB1\templates\AdminPages\UserAdmin.html.twig:8 - + user.edit.caption Users @@ -429,7 +629,7 @@ Part-DB1\templates\AdminPages\UserAdmin.html.twig:14 Part-DB1\templates\AdminPages\UserAdmin.html.twig:14 - + user.edit.configuration Configuration @@ -439,7 +639,7 @@ Part-DB1\templates\AdminPages\UserAdmin.html.twig:15 Part-DB1\templates\AdminPages\UserAdmin.html.twig:15 - + user.edit.password Password @@ -449,7 +649,7 @@ Part-DB1\templates\AdminPages\UserAdmin.html.twig:45 Part-DB1\templates\AdminPages\UserAdmin.html.twig:45 - + user.edit.tfa.caption Two-factor authentication @@ -459,7 +659,7 @@ Part-DB1\templates\AdminPages\UserAdmin.html.twig:47 Part-DB1\templates\AdminPages\UserAdmin.html.twig:47 - + user.edit.tfa.google_active Authenticator app active @@ -473,7 +673,7 @@ Part-DB1\templates\Users\backup_codes.html.twig:15 Part-DB1\templates\Users\_2fa_settings.html.twig:95 - + tfa_backup.remaining_tokens Remaining backup codes count @@ -487,7 +687,7 @@ Part-DB1\templates\Users\backup_codes.html.twig:17 Part-DB1\templates\Users\_2fa_settings.html.twig:96 - + tfa_backup.generation_date Generation date of the backup codes @@ -499,7 +699,7 @@ Part-DB1\templates\AdminPages\UserAdmin.html.twig:53 Part-DB1\templates\AdminPages\UserAdmin.html.twig:60 - + user.edit.tfa.disabled Method not enabled @@ -509,7 +709,7 @@ Part-DB1\templates\AdminPages\UserAdmin.html.twig:56 Part-DB1\templates\AdminPages\UserAdmin.html.twig:56 - + user.edit.tfa.u2f_keys_count Active security keys @@ -519,7 +719,7 @@ Part-DB1\templates\AdminPages\UserAdmin.html.twig:72 Part-DB1\templates\AdminPages\UserAdmin.html.twig:72 - + user.edit.tfa.disable_tfa_title Do you really want to proceed? @@ -529,12 +729,12 @@ Part-DB1\templates\AdminPages\UserAdmin.html.twig:72 Part-DB1\templates\AdminPages\UserAdmin.html.twig:72 - + user.edit.tfa.disable_tfa_message - 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> + 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!]]>
@@ -542,11 +742,31 @@ The user will have to set up all two-factor authentication methods again and pri Part-DB1\templates\AdminPages\UserAdmin.html.twig:73 Part-DB1\templates\AdminPages\UserAdmin.html.twig:73 - + user.edit.tfa.disable_tfa.btn Disable all two-factor authentication methods + + + Part-DB1\templates\AdminPages\UserAdmin.html.twig:85 + new + + + user.edit + Edit user + + + + + Part-DB1\templates\AdminPages\UserAdmin.html.twig:89 + new + + + user.new + New user + + Part-DB1\templates\AdminPages\_attachments.html.twig:4 @@ -555,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:4 Part-DB1\templates\Parts\info\_attachments_info.html.twig:63 - + attachment.delete Delete @@ -569,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:38 Part-DB1\src\DataTables\AttachmentDataTable.php:159 - + attachment.external External @@ -581,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:47 Part-DB1\templates\Parts\edit\_attachments.html.twig:45 - + attachment.preview.alt Attachment thumbnail @@ -595,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:48 Part-DB1\templates\Parts\info\_attachments_info.html.twig:45 - + attachment.view View @@ -611,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:38 Part-DB1\src\DataTables\AttachmentDataTable.php:166 - + attachment.file_not_found File not found @@ -623,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:48 Part-DB1\templates\Parts\edit\_attachments.html.twig:62 - + attachment.secure Private attachment @@ -635,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:77 Part-DB1\templates\Parts\edit\_attachments.html.twig:75 - + attachment.create Add attachment @@ -649,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:80 Part-DB1\templates\Parts\edit\_lots.html.twig:33 - + part_lot.edit.delete.confirm Do you really want to delete this stock? This can not be undone! @@ -660,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:2 templates\AdminPages\_delete_form.html.twig:2 - + entity.delete.confirm_title You really want to delete %name%? @@ -671,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:3 templates\AdminPages\_delete_form.html.twig:3 - + entity.delete.message - This can not be undone! -<br> -Subelements will be moved upwards. + +Subelements will be moved upwards.]]> @@ -684,7 +904,7 @@ Subelements will be moved upwards. Part-DB1\templates\AdminPages\_delete_form.html.twig:11 templates\AdminPages\_delete_form.html.twig:9 - + entity.delete Delete element @@ -699,7 +919,7 @@ Subelements will be moved upwards. Part-DB1\src\Form\Part\PartBaseType.php:267 new - + edit.log_comment Change comment @@ -710,7 +930,7 @@ Subelements will be moved upwards. Part-DB1\templates\AdminPages\_delete_form.html.twig:24 templates\AdminPages\_delete_form.html.twig:12 - + entity.delete.recursive Delete recursive (all subelements) @@ -719,7 +939,7 @@ Subelements will be moved upwards. Part-DB1\templates\AdminPages\_duplicate.html.twig:3 - + entity.duplicate Duplicate element @@ -733,7 +953,7 @@ Subelements will be moved upwards. templates\AdminPages\_export_form.html.twig:4 src\Form\ImportType.php:67 - + export.format File format @@ -744,7 +964,7 @@ Subelements will be moved upwards. Part-DB1\templates\AdminPages\_export_form.html.twig:16 templates\AdminPages\_export_form.html.twig:16 - + export.level Verbosity level @@ -755,7 +975,7 @@ Subelements will be moved upwards. Part-DB1\templates\AdminPages\_export_form.html.twig:19 templates\AdminPages\_export_form.html.twig:19 - + export.level.simple Simple @@ -766,7 +986,7 @@ Subelements will be moved upwards. Part-DB1\templates\AdminPages\_export_form.html.twig:20 templates\AdminPages\_export_form.html.twig:20 - + export.level.extended Extended @@ -777,7 +997,7 @@ Subelements will be moved upwards. Part-DB1\templates\AdminPages\_export_form.html.twig:21 templates\AdminPages\_export_form.html.twig:21 - + export.level.full Full @@ -788,7 +1008,7 @@ Subelements will be moved upwards. Part-DB1\templates\AdminPages\_export_form.html.twig:31 templates\AdminPages\_export_form.html.twig:31 - + export.include_children Include children elements in export @@ -799,7 +1019,7 @@ Subelements will be moved upwards. Part-DB1\templates\AdminPages\_export_form.html.twig:39 templates\AdminPages\_export_form.html.twig:39 - + export.btn Export @@ -818,7 +1038,7 @@ Subelements will be moved upwards. templates\Parts\edit_part_info.html.twig:12 templates\Parts\show_part_info.html.twig:11 - + id.label ID @@ -842,7 +1062,7 @@ Subelements will be moved upwards. templates\AdminPages\EntityAdminBase.html.twig:101 templates\Parts\show_part_info.html.twig:248 - + createdAt Created At @@ -860,7 +1080,7 @@ Subelements will be moved upwards. templates\AdminPages\EntityAdminBase.html.twig:114 templates\Parts\show_part_info.html.twig:263 - + lastModified Last modified @@ -870,7 +1090,7 @@ Subelements will be moved upwards. Part-DB1\templates\AdminPages\_info.html.twig:38 Part-DB1\templates\AdminPages\_info.html.twig:38 - + entity.info.parts_count Count of parts with this element @@ -881,7 +1101,7 @@ Subelements will be moved upwards. Part-DB1\templates\helper.twig:125 Part-DB1\templates\Parts\edit\_specifications.html.twig:6 - + specifications.property Parameter @@ -891,7 +1111,7 @@ Subelements will be moved upwards. Part-DB1\templates\AdminPages\_parameters.html.twig:7 Part-DB1\templates\Parts\edit\_specifications.html.twig:7 - + specifications.symbol Symbol @@ -901,7 +1121,7 @@ Subelements will be moved upwards. Part-DB1\templates\AdminPages\_parameters.html.twig:8 Part-DB1\templates\Parts\edit\_specifications.html.twig:8 - + specifications.value_min Min. @@ -911,7 +1131,7 @@ Subelements will be moved upwards. Part-DB1\templates\AdminPages\_parameters.html.twig:9 Part-DB1\templates\Parts\edit\_specifications.html.twig:9 - + specifications.value_typ Typ. @@ -921,7 +1141,7 @@ Subelements will be moved upwards. Part-DB1\templates\AdminPages\_parameters.html.twig:10 Part-DB1\templates\Parts\edit\_specifications.html.twig:10 - + specifications.value_max Max. @@ -931,7 +1151,7 @@ Subelements will be moved upwards. Part-DB1\templates\AdminPages\_parameters.html.twig:11 Part-DB1\templates\Parts\edit\_specifications.html.twig:11 - + specifications.unit Unit @@ -941,7 +1161,7 @@ Subelements will be moved upwards. Part-DB1\templates\AdminPages\_parameters.html.twig:12 Part-DB1\templates\Parts\edit\_specifications.html.twig:12 - + specifications.text Text @@ -951,7 +1171,7 @@ Subelements will be moved upwards. Part-DB1\templates\AdminPages\_parameters.html.twig:13 Part-DB1\templates\Parts\edit\_specifications.html.twig:13 - + specifications.group Group @@ -961,7 +1181,7 @@ Subelements will be moved upwards. Part-DB1\templates\AdminPages\_parameters.html.twig:26 Part-DB1\templates\Parts\edit\_specifications.html.twig:26 - + specification.create New Parameter @@ -971,7 +1191,7 @@ Subelements will be moved upwards. Part-DB1\templates\AdminPages\_parameters.html.twig:31 Part-DB1\templates\Parts\edit\_specifications.html.twig:31 - + parameter.delete.confirm Do you really want to delete this parameter? @@ -981,7 +1201,7 @@ Subelements will be moved upwards. Part-DB1\templates\attachment_list.html.twig:3 Part-DB1\templates\attachment_list.html.twig:3 - + attachment.list.title Attachments list @@ -995,7 +1215,7 @@ Subelements will be moved upwards. Part-DB1\templates\LogSystem\_log_table.html.twig:8 Part-DB1\templates\Parts\lists\_parts_list.html.twig:6 - + part_list.loading.caption Loading @@ -1009,7 +1229,7 @@ Subelements will be moved upwards. Part-DB1\templates\LogSystem\_log_table.html.twig:9 Part-DB1\templates\Parts\lists\_parts_list.html.twig:7 - + part_list.loading.message This can take a moment. If this message do not disappear, try to reload the page. @@ -1020,7 +1240,7 @@ Subelements will be moved upwards. Part-DB1\templates\base.html.twig:68 templates\base.html.twig:246 - + vendor.base.javascript_hint Please activate Javascript to use all features! @@ -1030,7 +1250,7 @@ Subelements will be moved upwards. Part-DB1\templates\base.html.twig:73 Part-DB1\templates\base.html.twig:73 - + sidebar.big.toggle Show/Hide sidebar @@ -1041,7 +1261,7 @@ Subelements will be moved upwards. Part-DB1\templates\base.html.twig:95 templates\base.html.twig:271 - + loading.caption Loading: @@ -1052,7 +1272,7 @@ Subelements will be moved upwards. Part-DB1\templates\base.html.twig:96 templates\base.html.twig:272 - + loading.message This can take a while. If this messages stays for a long time, try to reload the page. @@ -1063,7 +1283,7 @@ Subelements will be moved upwards. Part-DB1\templates\base.html.twig:101 templates\base.html.twig:277 - + loading.bar Loading... @@ -1074,7 +1294,7 @@ Subelements will be moved upwards. Part-DB1\templates\base.html.twig:112 templates\base.html.twig:288 - + back_to_top Back to page's top @@ -1084,7 +1304,7 @@ Subelements will be moved upwards. Part-DB1\templates\Form\permissionLayout.html.twig:35 Part-DB1\templates\Form\permissionLayout.html.twig:35 - + permission.edit.permission Permissions @@ -1094,7 +1314,7 @@ Subelements will be moved upwards. Part-DB1\templates\Form\permissionLayout.html.twig:36 Part-DB1\templates\Form\permissionLayout.html.twig:36 - + permission.edit.value Value @@ -1104,7 +1324,7 @@ Subelements will be moved upwards. Part-DB1\templates\Form\permissionLayout.html.twig:53 Part-DB1\templates\Form\permissionLayout.html.twig:53 - + permission.legend.title Explanation of the states: @@ -1114,7 +1334,7 @@ Subelements will be moved upwards. Part-DB1\templates\Form\permissionLayout.html.twig:57 Part-DB1\templates\Form\permissionLayout.html.twig:57 - + permission.legend.disallow Forbidden @@ -1124,7 +1344,7 @@ Subelements will be moved upwards. Part-DB1\templates\Form\permissionLayout.html.twig:61 Part-DB1\templates\Form\permissionLayout.html.twig:61 - + permission.legend.allow Allowed @@ -1134,7 +1354,7 @@ Subelements will be moved upwards. Part-DB1\templates\Form\permissionLayout.html.twig:65 Part-DB1\templates\Form\permissionLayout.html.twig:65 - + permission.legend.inherit Inherit from (parent) group @@ -1144,7 +1364,7 @@ Subelements will be moved upwards. Part-DB1\templates\helper.twig:3 Part-DB1\templates\helper.twig:3 - + bool.true True @@ -1154,7 +1374,7 @@ Subelements will be moved upwards. Part-DB1\templates\helper.twig:5 Part-DB1\templates\helper.twig:5 - + bool.false False @@ -1164,7 +1384,7 @@ Subelements will be moved upwards. Part-DB1\templates\helper.twig:92 Part-DB1\templates\helper.twig:87 - + Yes Yes @@ -1174,7 +1394,7 @@ Subelements will be moved upwards. Part-DB1\templates\helper.twig:94 Part-DB1\templates\helper.twig:89 - + No No @@ -1183,7 +1403,7 @@ Subelements will be moved upwards. Part-DB1\templates\helper.twig:126 - + specifications.value Value @@ -1194,7 +1414,7 @@ Subelements will be moved upwards. Part-DB1\templates\homepage.html.twig:7 templates\homepage.html.twig:7 - + version.caption Version @@ -1205,7 +1425,7 @@ Subelements will be moved upwards. Part-DB1\templates\homepage.html.twig:22 templates\homepage.html.twig:19 - + homepage.license License information @@ -1216,7 +1436,7 @@ Subelements will be moved upwards. Part-DB1\templates\homepage.html.twig:31 templates\homepage.html.twig:28 - + homepage.github.caption Project page @@ -1227,9 +1447,9 @@ Subelements will be moved upwards. Part-DB1\templates\homepage.html.twig:31 templates\homepage.html.twig:28 - + homepage.github.text - Source, downloads, bug reports, to-do-list etc. can be found on <a href="%href%" class="link-external" target="_blank">GitHub project page</a> + GitHub project page]]> @@ -1238,7 +1458,7 @@ Subelements will be moved upwards. Part-DB1\templates\homepage.html.twig:32 templates\homepage.html.twig:29 - + homepage.help.caption Help @@ -1249,9 +1469,9 @@ Subelements will be moved upwards. Part-DB1\templates\homepage.html.twig:32 templates\homepage.html.twig:29 - + homepage.help.text - Help and tips can be found in Wiki the <a href="%href%" class="link-external" target="_blank">GitHub page</a> + GitHub page]]> @@ -1260,7 +1480,7 @@ Subelements will be moved upwards. Part-DB1\templates\homepage.html.twig:33 templates\homepage.html.twig:30 - + homepage.forum.caption Forum @@ -1271,9 +1491,9 @@ Subelements will be moved upwards. Part-DB1\templates\homepage.html.twig:33 templates\homepage.html.twig:30 - + homepage.forum.text - For questions about the Part-DB there is a thread on <a href="%href%" class="link-external" target="_blank">mikrocontroller.net</a> + mikrocontroller.net]]> @@ -1282,7 +1502,7 @@ Subelements will be moved upwards. Part-DB1\templates\homepage.html.twig:34 templates\homepage.html.twig:31 - + homepage.wiki.caption Wiki @@ -1293,9 +1513,9 @@ Subelements will be moved upwards. Part-DB1\templates\homepage.html.twig:34 templates\homepage.html.twig:31 - + homepage.wiki.text - Further information is available in <a href="%href%" class="link-external" target="_blank">mikrocontroller.net Article</a> + mikrocontroller.net Article]]> @@ -1304,7 +1524,7 @@ Subelements will be moved upwards. Part-DB1\templates\homepage.html.twig:36 templates\homepage.html.twig:33 - + homepage.basedOn Based on the original Part-DB by @@ -1315,7 +1535,7 @@ Subelements will be moved upwards. Part-DB1\templates\homepage.html.twig:39 templates\homepage.html.twig:36 - + homepage.others and others @@ -1326,7 +1546,7 @@ Subelements will be moved upwards. Part-DB1\templates\homepage.html.twig:45 new - + homepage.last_activity Last activity @@ -1336,7 +1556,7 @@ Subelements will be moved upwards. Part-DB1\templates\LabelSystem\dialog.html.twig:3 Part-DB1\templates\LabelSystem\dialog.html.twig:6 - + label_generator.title Label generator @@ -1345,7 +1565,7 @@ Subelements will be moved upwards. Part-DB1\templates\LabelSystem\dialog.html.twig:16 - + label_generator.common Common @@ -1354,7 +1574,7 @@ Subelements will be moved upwards. Part-DB1\templates\LabelSystem\dialog.html.twig:20 - + label_generator.advanced Advanced @@ -1363,7 +1583,7 @@ Subelements will be moved upwards. Part-DB1\templates\LabelSystem\dialog.html.twig:24 - + label_generator.profiles Profiles @@ -1372,7 +1592,7 @@ Subelements will be moved upwards. Part-DB1\templates\LabelSystem\dialog.html.twig:58 - + label_generator.selected_profile Currently selected profile @@ -1381,7 +1601,7 @@ Subelements will be moved upwards. Part-DB1\templates\LabelSystem\dialog.html.twig:62 - + label_generator.edit_profile Edit profile @@ -1390,7 +1610,7 @@ Subelements will be moved upwards. Part-DB1\templates\LabelSystem\dialog.html.twig:75 - + label_generator.load_profile Load profile @@ -1399,7 +1619,7 @@ Subelements will be moved upwards. Part-DB1\templates\LabelSystem\dialog.html.twig:102 - + label_generator.download Download @@ -1409,7 +1629,7 @@ Subelements will be moved upwards. Part-DB1\templates\LabelSystem\dropdown_macro.html.twig:3 Part-DB1\templates\LabelSystem\dropdown_macro.html.twig:5 - + label_generator.label_btn Generate label @@ -1418,7 +1638,7 @@ Subelements will be moved upwards. Part-DB1\templates\LabelSystem\dropdown_macro.html.twig:20 - + label_generator.label_empty New empty label @@ -1427,7 +1647,7 @@ Subelements will be moved upwards. Part-DB1\templates\LabelSystem\Scanner\dialog.html.twig:3 - + label_scanner.title Label scanner @@ -1436,7 +1656,7 @@ Subelements will be moved upwards. Part-DB1\templates\LabelSystem\Scanner\dialog.html.twig:7 - + label_scanner.no_cam_found.title No webcam found @@ -1445,7 +1665,7 @@ Subelements will be moved upwards. Part-DB1\templates\LabelSystem\Scanner\dialog.html.twig:7 - + label_scanner.no_cam_found.text You need a webcam and give permission to use the scanner function. You can input the barcode code manually below. @@ -1454,7 +1674,7 @@ Subelements will be moved upwards. Part-DB1\templates\LabelSystem\Scanner\dialog.html.twig:27 - + label_scanner.source_select Select source @@ -1464,7 +1684,7 @@ Subelements will be moved upwards. Part-DB1\templates\LogSystem\log_list.html.twig:3 Part-DB1\templates\LogSystem\log_list.html.twig:3 - + log.list.title System log @@ -1475,7 +1695,7 @@ Subelements will be moved upwards. Part-DB1\templates\LogSystem\_log_table.html.twig:1 new - + log.undo.confirm_title Really undo change / revert to timestamp? @@ -1486,7 +1706,7 @@ Subelements will be moved upwards. Part-DB1\templates\LogSystem\_log_table.html.twig:2 new - + log.undo.confirm_message Do you really want to undo the given change / reset the element to the given timestamp? @@ -1496,7 +1716,7 @@ Subelements will be moved upwards. Part-DB1\templates\mail\base.html.twig:24 Part-DB1\templates\mail\base.html.twig:24 - + mail.footer.email_sent_by This email was sent automatically by @@ -1506,7 +1726,7 @@ Subelements will be moved upwards. Part-DB1\templates\mail\base.html.twig:24 Part-DB1\templates\mail\base.html.twig:24 - + mail.footer.dont_reply Do not answer to this email. @@ -1516,7 +1736,7 @@ Subelements will be moved upwards. Part-DB1\templates\mail\pw_reset.html.twig:6 Part-DB1\templates\mail\pw_reset.html.twig:6 - + email.hi %name% Hi %name% @@ -1526,7 +1746,7 @@ Subelements will be moved upwards. Part-DB1\templates\mail\pw_reset.html.twig:7 Part-DB1\templates\mail\pw_reset.html.twig:7 - + email.pw_reset.message somebody (hopefully you) requested a reset of your password. If this request was not made by you, ignore this mail. @@ -1536,7 +1756,7 @@ Subelements will be moved upwards. Part-DB1\templates\mail\pw_reset.html.twig:9 Part-DB1\templates\mail\pw_reset.html.twig:9 - + email.pw_reset.button Click here to reset password @@ -1546,9 +1766,9 @@ Subelements will be moved upwards. Part-DB1\templates\mail\pw_reset.html.twig:11 Part-DB1\templates\mail\pw_reset.html.twig:11 - + email.pw_reset.fallback - If this does not work for you, go to <a href="%url%">%url%</a> and enter the following info + %url% and enter the following info]]> @@ -1556,7 +1776,7 @@ Subelements will be moved upwards. Part-DB1\templates\mail\pw_reset.html.twig:16 Part-DB1\templates\mail\pw_reset.html.twig:16 - + email.pw_reset.username Username @@ -1566,7 +1786,7 @@ Subelements will be moved upwards. Part-DB1\templates\mail\pw_reset.html.twig:19 Part-DB1\templates\mail\pw_reset.html.twig:19 - + email.pw_reset.token Token @@ -1576,9 +1796,9 @@ Subelements will be moved upwards. Part-DB1\templates\mail\pw_reset.html.twig:24 Part-DB1\templates\mail\pw_reset.html.twig:24 - + email.pw_reset.valid_unit %date% - The reset token will be valid until <i>%date%</i>. + %date%.]]> @@ -1588,7 +1808,7 @@ Subelements will be moved upwards. Part-DB1\templates\Parts\edit\edit_form_styles.html.twig:78 Part-DB1\templates\Parts\edit\edit_form_styles.html.twig:58 - + orderdetail.delete Delete @@ -1598,7 +1818,7 @@ Subelements will be moved upwards. 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 discount quantity @@ -1608,7 +1828,7 @@ Subelements will be moved upwards. 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 Price @@ -1618,7 +1838,7 @@ Subelements will be moved upwards. 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 amount @@ -1628,7 +1848,7 @@ Subelements will be moved upwards. Part-DB1\templates\Parts\edit\edit_form_styles.html.twig:54 Part-DB1\templates\Parts\edit\edit_form_styles.html.twig:54 - + pricedetail.create Add price @@ -1639,7 +1859,7 @@ Subelements will be moved upwards. Part-DB1\templates\Parts\edit\edit_part_info.html.twig:4 templates\Parts\edit_part_info.html.twig:4 - + part.edit.title Edit part @@ -1650,7 +1870,7 @@ Subelements will be moved upwards. Part-DB1\templates\Parts\edit\edit_part_info.html.twig:9 templates\Parts\edit_part_info.html.twig:9 - + part.edit.card_title Edit part @@ -1660,7 +1880,7 @@ Subelements will be moved upwards. 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 Common @@ -1670,7 +1890,7 @@ Subelements will be moved upwards. 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 Manufacturer @@ -1680,7 +1900,7 @@ Subelements will be moved upwards. 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 Advanced @@ -1690,7 +1910,7 @@ Subelements will be moved upwards. 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 Stocks @@ -1700,7 +1920,7 @@ Subelements will be moved upwards. 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 Attachments @@ -1710,7 +1930,7 @@ Subelements will be moved upwards. 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 Purchase informations @@ -1719,7 +1939,7 @@ Subelements will be moved upwards. Part-DB1\templates\Parts\edit\edit_part_info.html.twig:58 - + part.edit.tab.specifications Parameters @@ -1729,7 +1949,7 @@ Subelements will be moved upwards. 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 Comment @@ -1740,7 +1960,7 @@ Subelements will be moved upwards. Part-DB1\templates\Parts\edit\new_part.html.twig:8 templates\Parts\new_part.html.twig:8 - + part.new.card_title Create new part @@ -1750,7 +1970,7 @@ Subelements will be moved upwards. Part-DB1\templates\Parts\edit\_lots.html.twig:5 Part-DB1\templates\Parts\edit\_lots.html.twig:5 - + part_lot.delete Delete @@ -1760,7 +1980,7 @@ Subelements will be moved upwards. Part-DB1\templates\Parts\edit\_lots.html.twig:28 Part-DB1\templates\Parts\edit\_lots.html.twig:28 - + part_lot.create Add stock @@ -1770,7 +1990,7 @@ Subelements will be moved upwards. Part-DB1\templates\Parts\edit\_orderdetails.html.twig:13 Part-DB1\templates\Parts\edit\_orderdetails.html.twig:13 - + orderdetail.create Add distributor @@ -1780,7 +2000,7 @@ Subelements will be moved upwards. Part-DB1\templates\Parts\edit\_orderdetails.html.twig:18 Part-DB1\templates\Parts\edit\_orderdetails.html.twig:18 - + pricedetails.edit.delete.confirm Do you really want to delete this price? This can not be undone. @@ -1790,7 +2010,7 @@ Subelements will be moved upwards. Part-DB1\templates\Parts\edit\_orderdetails.html.twig:62 Part-DB1\templates\Parts\edit\_orderdetails.html.twig:61 - + orderdetails.edit.delete.confirm Do you really want to delete this distributor info? This can not be undone! @@ -1804,7 +2024,7 @@ Subelements will be moved upwards. templates\Parts\show_part_info.html.twig:4 templates\Parts\show_part_info.html.twig:9 - + part.info.title Detail info for part @@ -1814,7 +2034,7 @@ Subelements will be moved upwards. 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 Stocks @@ -1829,7 +2049,7 @@ Subelements will be moved upwards. templates\Parts\show_part_info.html.twig:74 src\Form\PartType.php:86 - + comment.label Comment @@ -1838,7 +2058,7 @@ Subelements will be moved upwards. Part-DB1\templates\Parts\info\show_part_info.html.twig:64 - + part.info.specifications Parameters @@ -1849,7 +2069,7 @@ Subelements will be moved upwards. Part-DB1\templates\Parts\info\show_part_info.html.twig:64 templates\Parts\show_part_info.html.twig:82 - + attachment.labelp Attachments @@ -1860,7 +2080,7 @@ Subelements will be moved upwards. Part-DB1\templates\Parts\info\show_part_info.html.twig:71 templates\Parts\show_part_info.html.twig:88 - + vendor.partinfo.shopping_infos Shopping informations @@ -1871,7 +2091,7 @@ Subelements will be moved upwards. Part-DB1\templates\Parts\info\show_part_info.html.twig:78 templates\Parts\show_part_info.html.twig:94 - + vendor.partinfo.history History @@ -1890,7 +2110,7 @@ Subelements will be moved upwards. templates\base.html.twig:231 templates\Parts\show_part_info.html.twig:100 - + tools.label Tools @@ -1900,7 +2120,7 @@ Subelements will be moved upwards. 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 Extended infos @@ -1910,7 +2130,7 @@ Subelements will be moved upwards. Part-DB1\templates\Parts\info\_attachments_info.html.twig:7 Part-DB1\templates\Parts\info\_attachments_info.html.twig:7 - + attachment.name Name @@ -1920,7 +2140,7 @@ Subelements will be moved upwards. Part-DB1\templates\Parts\info\_attachments_info.html.twig:8 Part-DB1\templates\Parts\info\_attachments_info.html.twig:8 - + attachment.attachment_type Attachment Type @@ -1930,7 +2150,7 @@ Subelements will be moved upwards. Part-DB1\templates\Parts\info\_attachments_info.html.twig:9 Part-DB1\templates\Parts\info\_attachments_info.html.twig:9 - + attachment.file_name File name @@ -1940,7 +2160,7 @@ Subelements will be moved upwards. Part-DB1\templates\Parts\info\_attachments_info.html.twig:10 Part-DB1\templates\Parts\info\_attachments_info.html.twig:10 - + attachment.file_size File size @@ -1949,7 +2169,7 @@ Subelements will be moved upwards. Part-DB1\templates\Parts\info\_attachments_info.html.twig:54 - + attachment.preview Preview picture @@ -1959,7 +2179,7 @@ Subelements will be moved upwards. Part-DB1\templates\Parts\info\_attachments_info.html.twig:67 Part-DB1\templates\Parts\info\_attachments_info.html.twig:50 - + attachment.download Download @@ -1970,7 +2190,7 @@ Subelements will be moved upwards. Part-DB1\templates\Parts\info\_extended_infos.html.twig:11 new - + user.creating_user User who created this part @@ -1984,7 +2204,7 @@ Subelements will be moved upwards. Part-DB1\templates\Parts\info\_extended_infos.html.twig:28 Part-DB1\templates\Parts\info\_extended_infos.html.twig:50 - + Unknown Unknown @@ -1997,7 +2217,7 @@ Subelements will be moved upwards. Part-DB1\templates\Parts\info\_extended_infos.html.twig:30 new - + accessDenied Access Denied @@ -2008,7 +2228,7 @@ Subelements will be moved upwards. Part-DB1\templates\Parts\info\_extended_infos.html.twig:26 new - + user.last_editing_user User who edited this part last @@ -2018,7 +2238,7 @@ Subelements will be moved upwards. Part-DB1\templates\Parts\info\_extended_infos.html.twig:41 Part-DB1\templates\Parts\info\_extended_infos.html.twig:41 - + part.isFavorite Favorite @@ -2028,7 +2248,7 @@ Subelements will be moved upwards. Part-DB1\templates\Parts\info\_extended_infos.html.twig:46 Part-DB1\templates\Parts\info\_extended_infos.html.twig:46 - + part.minOrderAmount Minimum order amount @@ -2045,7 +2265,7 @@ Subelements will be moved upwards. templates\Parts\show_part_info.html.twig:24 src\Form\PartType.php:80 - + manufacturer.label Manufacturer @@ -2057,7 +2277,7 @@ Subelements will be moved upwards. templates\base.html.twig:54 src\Form\PartType.php:62 - + name.label Name @@ -2068,7 +2288,7 @@ Subelements will be moved upwards. Part-DB1\templates\Parts\info\_main_infos.html.twig:27 new - + part.back_to_info Back to current version @@ -2083,7 +2303,7 @@ Subelements will be moved upwards. templates\Parts\show_part_info.html.twig:31 src\Form\PartType.php:65 - + description.label Description @@ -2100,7 +2320,7 @@ Subelements will be moved upwards. templates\Parts\show_part_info.html.twig:32 src\Form\PartType.php:74 - + category.label Category @@ -2112,7 +2332,7 @@ Subelements will be moved upwards. templates\Parts\show_part_info.html.twig:42 src\Form\PartType.php:69 - + instock.label Instock @@ -2124,7 +2344,7 @@ Subelements will be moved upwards. templates\Parts\show_part_info.html.twig:44 src\Form\PartType.php:72 - + mininstock.label Minimum Instock @@ -2140,7 +2360,7 @@ Subelements will be moved upwards. templates\base.html.twig:73 templates\Parts\show_part_info.html.twig:47 - + footprint.label Footprint @@ -2153,7 +2373,7 @@ Subelements will be moved upwards. Part-DB1\templates\Parts\info\_main_infos.html.twig:60 templates\Parts\show_part_info.html.twig:51 - + part.avg_price.label Average Price @@ -2163,7 +2383,7 @@ Subelements will be moved upwards. Part-DB1\templates\Parts\info\_order_infos.html.twig:5 Part-DB1\templates\Parts\info\_order_infos.html.twig:5 - + part.supplier.name Name @@ -2173,7 +2393,7 @@ Subelements will be moved upwards. Part-DB1\templates\Parts\info\_order_infos.html.twig:6 Part-DB1\templates\Parts\info\_order_infos.html.twig:6 - + part.supplier.partnr Partnr. @@ -2183,7 +2403,7 @@ Subelements will be moved upwards. Part-DB1\templates\Parts\info\_order_infos.html.twig:28 Part-DB1\templates\Parts\info\_order_infos.html.twig:28 - + part.order.minamount Minimum amount @@ -2193,7 +2413,7 @@ Subelements will be moved upwards. Part-DB1\templates\Parts\info\_order_infos.html.twig:29 Part-DB1\templates\Parts\info\_order_infos.html.twig:29 - + part.order.price Price @@ -2203,7 +2423,7 @@ Subelements will be moved upwards. Part-DB1\templates\Parts\info\_order_infos.html.twig:31 Part-DB1\templates\Parts\info\_order_infos.html.twig:31 - + part.order.single_price Unit Price @@ -2213,7 +2433,7 @@ Subelements will be moved upwards. Part-DB1\templates\Parts\info\_order_infos.html.twig:71 Part-DB1\templates\Parts\info\_order_infos.html.twig:71 - + edit.caption_short Edit @@ -2223,7 +2443,7 @@ Subelements will be moved upwards. Part-DB1\templates\Parts\info\_order_infos.html.twig:72 Part-DB1\templates\Parts\info\_order_infos.html.twig:72 - + delete.caption Delete @@ -2233,7 +2453,7 @@ Subelements will be moved upwards. Part-DB1\templates\Parts\info\_part_lots.html.twig:7 Part-DB1\templates\Parts\info\_part_lots.html.twig:6 - + part_lots.description Description @@ -2243,7 +2463,7 @@ Subelements will be moved upwards. Part-DB1\templates\Parts\info\_part_lots.html.twig:8 Part-DB1\templates\Parts\info\_part_lots.html.twig:7 - + part_lots.storage_location Storage location @@ -2253,7 +2473,7 @@ Subelements will be moved upwards. Part-DB1\templates\Parts\info\_part_lots.html.twig:9 Part-DB1\templates\Parts\info\_part_lots.html.twig:8 - + part_lots.amount Amount @@ -2263,7 +2483,7 @@ Subelements will be moved upwards. Part-DB1\templates\Parts\info\_part_lots.html.twig:24 Part-DB1\templates\Parts\info\_part_lots.html.twig:22 - + part_lots.location_unknown Storage location unknown @@ -2273,7 +2493,7 @@ Subelements will be moved upwards. Part-DB1\templates\Parts\info\_part_lots.html.twig:31 Part-DB1\templates\Parts\info\_part_lots.html.twig:29 - + part_lots.instock_unknown Amount unknown @@ -2283,7 +2503,7 @@ Subelements will be moved upwards. Part-DB1\templates\Parts\info\_part_lots.html.twig:40 Part-DB1\templates\Parts\info\_part_lots.html.twig:38 - + part_lots.expiration_date Expiration date @@ -2293,7 +2513,7 @@ Subelements will be moved upwards. Part-DB1\templates\Parts\info\_part_lots.html.twig:48 Part-DB1\templates\Parts\info\_part_lots.html.twig:46 - + part_lots.is_expired Expired @@ -2303,7 +2523,7 @@ Subelements will be moved upwards. Part-DB1\templates\Parts\info\_part_lots.html.twig:55 Part-DB1\templates\Parts\info\_part_lots.html.twig:53 - + part_lots.need_refill Needs refill @@ -2313,7 +2533,7 @@ Subelements will be moved upwards. Part-DB1\templates\Parts\info\_picture.html.twig:15 Part-DB1\templates\Parts\info\_picture.html.twig:15 - + part.info.prev_picture Previous picture @@ -2323,7 +2543,7 @@ Subelements will be moved upwards. Part-DB1\templates\Parts\info\_picture.html.twig:19 Part-DB1\templates\Parts\info\_picture.html.twig:19 - + part.info.next_picture Next picture @@ -2333,7 +2553,7 @@ Subelements will be moved upwards. Part-DB1\templates\Parts\info\_sidebar.html.twig:21 Part-DB1\templates\Parts\info\_sidebar.html.twig:21 - + part.mass.tooltip Mass @@ -2343,7 +2563,7 @@ Subelements will be moved upwards. Part-DB1\templates\Parts\info\_sidebar.html.twig:30 Part-DB1\templates\Parts\info\_sidebar.html.twig:30 - + part.needs_review.badge Needs review @@ -2353,7 +2573,7 @@ Subelements will be moved upwards. Part-DB1\templates\Parts\info\_sidebar.html.twig:39 Part-DB1\templates\Parts\info\_sidebar.html.twig:39 - + part.favorite.badge Favorite @@ -2363,7 +2583,7 @@ Subelements will be moved upwards. Part-DB1\templates\Parts\info\_sidebar.html.twig:47 Part-DB1\templates\Parts\info\_sidebar.html.twig:47 - + part.obsolete.badge No longer available @@ -2372,7 +2592,7 @@ Subelements will be moved upwards. Part-DB1\templates\Parts\info\_specifications.html.twig:10 - + parameters.extracted_from_description Automatically extracted from description @@ -2381,7 +2601,7 @@ Subelements will be moved upwards. Part-DB1\templates\Parts\info\_specifications.html.twig:15 - + parameters.auto_extracted_from_comment Automatically extracted from comment @@ -2392,7 +2612,7 @@ Subelements will be moved upwards. Part-DB1\templates\Parts\info\_tools.html.twig:4 templates\Parts\show_part_info.html.twig:125 - + part.edit.btn Edit part @@ -2403,7 +2623,7 @@ Subelements will be moved upwards. Part-DB1\templates\Parts\info\_tools.html.twig:14 templates\Parts\show_part_info.html.twig:135 - + part.clone.btn Clone part @@ -2414,7 +2634,7 @@ Subelements will be moved upwards. Part-DB1\templates\Parts\lists\_action_bar.html.twig:4 templates\Parts\show_part_info.html.twig:143 - + part.create.btn Create new part @@ -2424,7 +2644,7 @@ Subelements will be moved upwards. Part-DB1\templates\Parts\info\_tools.html.twig:31 Part-DB1\templates\Parts\info\_tools.html.twig:29 - + part.delete.confirm_title Do you really want to delete this part? @@ -2434,7 +2654,7 @@ Subelements will be moved upwards. Part-DB1\templates\Parts\info\_tools.html.twig:32 Part-DB1\templates\Parts\info\_tools.html.twig:30 - + part.delete.message This part and any associated information (like attachments, price informations, etc.) will be deleted. This can not be undone! @@ -2444,7 +2664,7 @@ Subelements will be moved upwards. Part-DB1\templates\Parts\info\_tools.html.twig:39 Part-DB1\templates\Parts\info\_tools.html.twig:37 - + part.delete Delete part @@ -2454,7 +2674,7 @@ Subelements will be moved upwards. Part-DB1\templates\Parts\lists\all_list.html.twig:4 Part-DB1\templates\Parts\lists\all_list.html.twig:4 - + parts_list.all.title All parts @@ -2464,7 +2684,7 @@ Subelements will be moved upwards. Part-DB1\templates\Parts\lists\category_list.html.twig:4 Part-DB1\templates\Parts\lists\category_list.html.twig:4 - + parts_list.category.title Parts with category @@ -2474,7 +2694,7 @@ Subelements will be moved upwards. Part-DB1\templates\Parts\lists\footprint_list.html.twig:4 Part-DB1\templates\Parts\lists\footprint_list.html.twig:4 - + parts_list.footprint.title Parts with footprint @@ -2484,7 +2704,7 @@ Subelements will be moved upwards. Part-DB1\templates\Parts\lists\manufacturer_list.html.twig:4 Part-DB1\templates\Parts\lists\manufacturer_list.html.twig:4 - + parts_list.manufacturer.title Parts with manufacturer @@ -2494,7 +2714,7 @@ Subelements will be moved upwards. Part-DB1\templates\Parts\lists\search_list.html.twig:4 Part-DB1\templates\Parts\lists\search_list.html.twig:4 - + parts_list.search.title Search Parts @@ -2504,7 +2724,7 @@ Subelements will be moved upwards. 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 Parts with store locations @@ -2514,7 +2734,7 @@ Subelements will be moved upwards. Part-DB1\templates\Parts\lists\supplier_list.html.twig:4 Part-DB1\templates\Parts\lists\supplier_list.html.twig:4 - + parts_list.supplier.title Parts with supplier @@ -2524,7 +2744,7 @@ Subelements will be moved upwards. Part-DB1\templates\Parts\lists\tags_list.html.twig:4 Part-DB1\templates\Parts\lists\tags_list.html.twig:4 - + parts_list.tags.title Parts with tag @@ -2534,7 +2754,7 @@ Subelements will be moved upwards. Part-DB1\templates\Parts\lists\_info_card.html.twig:22 Part-DB1\templates\Parts\lists\_info_card.html.twig:17 - + entity.info.common.tab Common @@ -2544,7 +2764,7 @@ Subelements will be moved upwards. Part-DB1\templates\Parts\lists\_info_card.html.twig:26 Part-DB1\templates\Parts\lists\_info_card.html.twig:20 - + entity.info.statistics.tab Statistics @@ -2553,7 +2773,7 @@ Subelements will be moved upwards. Part-DB1\templates\Parts\lists\_info_card.html.twig:31 - + entity.info.attachments.tab Attachments @@ -2562,7 +2782,7 @@ Subelements will be moved upwards. Part-DB1\templates\Parts\lists\_info_card.html.twig:37 - + entity.info.parameters.tab Parameters @@ -2572,7 +2792,7 @@ Subelements will be moved upwards. Part-DB1\templates\Parts\lists\_info_card.html.twig:54 Part-DB1\templates\Parts\lists\_info_card.html.twig:30 - + entity.info.name Name @@ -2584,7 +2804,7 @@ Subelements will be moved upwards. Part-DB1\templates\Parts\lists\_info_card.html.twig:34 Part-DB1\templates\Parts\lists\_info_card.html.twig:67 - + entity.info.parent Parent @@ -2594,7 +2814,7 @@ Subelements will be moved upwards. Part-DB1\templates\Parts\lists\_info_card.html.twig:70 Part-DB1\templates\Parts\lists\_info_card.html.twig:46 - + entity.edit.btn Edit @@ -2604,7 +2824,7 @@ Subelements will be moved upwards. Part-DB1\templates\Parts\lists\_info_card.html.twig:92 Part-DB1\templates\Parts\lists\_info_card.html.twig:63 - + entity.info.children_count Count of children elements @@ -2616,7 +2836,7 @@ Subelements will be moved upwards. Part-DB1\templates\security\2fa_base_form.html.twig:3 Part-DB1\templates\security\2fa_base_form.html.twig:5 - + tfa.check.title Two-factor authentication needed @@ -2626,7 +2846,7 @@ Subelements will be moved upwards. Part-DB1\templates\security\2fa_base_form.html.twig:39 Part-DB1\templates\security\2fa_base_form.html.twig:39 - + tfa.code.trusted_pc This is a trusted computer (if this is enabled, no further two-factor queries are performed on this computer) @@ -2638,7 +2858,7 @@ Subelements will be moved upwards. Part-DB1\templates\security\2fa_base_form.html.twig:52 Part-DB1\templates\security\login.html.twig:58 - + login.btn Login @@ -2652,7 +2872,7 @@ Subelements will be moved upwards. Part-DB1\templates\security\U2F\u2f_login.html.twig:13 Part-DB1\templates\_navbar.html.twig:40 - + user.logout Logout @@ -2662,7 +2882,7 @@ Subelements will be moved upwards. Part-DB1\templates\security\2fa_form.html.twig:6 Part-DB1\templates\security\2fa_form.html.twig:6 - + tfa.check.code.label Authenticator app code @@ -2672,7 +2892,7 @@ Subelements will be moved upwards. Part-DB1\templates\security\2fa_form.html.twig:10 Part-DB1\templates\security\2fa_form.html.twig:10 - + tfa.check.code.help Enter the 6-digit code from your Authenticator App or one of your backup codes if the Authenticator is not available. @@ -2683,7 +2903,7 @@ Subelements will be moved upwards. Part-DB1\templates\security\login.html.twig:3 templates\security\login.html.twig:3 - + login.title Login @@ -2694,7 +2914,7 @@ Subelements will be moved upwards. Part-DB1\templates\security\login.html.twig:7 templates\security\login.html.twig:7 - + login.card_title Login @@ -2705,7 +2925,7 @@ Subelements will be moved upwards. Part-DB1\templates\security\login.html.twig:31 templates\security\login.html.twig:31 - + login.username.label Username @@ -2716,7 +2936,7 @@ Subelements will be moved upwards. Part-DB1\templates\security\login.html.twig:34 templates\security\login.html.twig:34 - + login.username.placeholder Username @@ -2727,7 +2947,7 @@ Subelements will be moved upwards. Part-DB1\templates\security\login.html.twig:38 templates\security\login.html.twig:38 - + login.password.label Password @@ -2738,7 +2958,7 @@ Subelements will be moved upwards. Part-DB1\templates\security\login.html.twig:40 templates\security\login.html.twig:40 - + login.password.placeholder Password @@ -2749,7 +2969,7 @@ Subelements will be moved upwards. Part-DB1\templates\security\login.html.twig:50 templates\security\login.html.twig:50 - + login.rememberme Remember me (should not be used on shared computers) @@ -2759,7 +2979,7 @@ Subelements will be moved upwards. Part-DB1\templates\security\login.html.twig:64 Part-DB1\templates\security\login.html.twig:64 - + pw_reset.password_forget Forgot username/password? @@ -2769,7 +2989,7 @@ Subelements will be moved upwards. 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 Set new password @@ -2779,7 +2999,7 @@ Subelements will be moved upwards. 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 Request a new password @@ -2791,7 +3011,7 @@ Subelements will be moved upwards. Part-DB1\templates\security\U2F\u2f_login.html.twig:7 Part-DB1\templates\security\U2F\u2f_register.html.twig:10 - + tfa_u2f.http_warning You 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. @@ -2803,7 +3023,7 @@ Subelements will be moved upwards. 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 Please plug in your security key and press its button! @@ -2813,7 +3033,7 @@ Subelements will be moved upwards. 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 Add security key @@ -2825,7 +3045,7 @@ Subelements will be moved upwards. Part-DB1\templates\security\U2F\u2f_register.html.twig:6 Part-DB1\templates\Users\_2fa_settings.html.twig:111 - + tfa_u2f.explanation With 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. @@ -2835,7 +3055,7 @@ Subelements will be moved upwards. 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 To 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! @@ -2845,7 +3065,7 @@ Subelements will be moved upwards. 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 Shown key name (e.g. Backup) @@ -2855,7 +3075,7 @@ Subelements will be moved upwards. 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 Add security key @@ -2865,7 +3085,7 @@ Subelements will be moved upwards. 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 Back to settings @@ -2878,7 +3098,7 @@ Subelements will be moved upwards. Part-DB1\templates\Statistics\statistics.html.twig:8 new - + statistics.title Statistics @@ -2889,7 +3109,7 @@ Subelements will be moved upwards. Part-DB1\templates\Statistics\statistics.html.twig:14 new - + statistics.parts Parts @@ -2900,7 +3120,7 @@ Subelements will be moved upwards. Part-DB1\templates\Statistics\statistics.html.twig:19 new - + statistics.data_structures Data structures @@ -2911,7 +3131,7 @@ Subelements will be moved upwards. Part-DB1\templates\Statistics\statistics.html.twig:24 new - + statistics.attachments Attachments @@ -2926,7 +3146,7 @@ Subelements will be moved upwards. Part-DB1\templates\Statistics\statistics.html.twig:104 new - + statistics.property Property @@ -2941,7 +3161,7 @@ Subelements will be moved upwards. Part-DB1\templates\Statistics\statistics.html.twig:105 new - + statistics.value Value @@ -2952,7 +3172,7 @@ Subelements will be moved upwards. Part-DB1\templates\Statistics\statistics.html.twig:40 new - + statistics.distinct_parts_count Number of distinct parts @@ -2963,7 +3183,7 @@ Subelements will be moved upwards. Part-DB1\templates\Statistics\statistics.html.twig:44 new - + statistics.parts_instock_sum Sum of all part instocks @@ -2974,7 +3194,7 @@ Subelements will be moved upwards. Part-DB1\templates\Statistics\statistics.html.twig:48 new - + statistics.parts_with_price Number of parts with price information @@ -2985,7 +3205,7 @@ Subelements will be moved upwards. Part-DB1\templates\Statistics\statistics.html.twig:65 new - + statistics.categories_count Number of categories @@ -2996,7 +3216,7 @@ Subelements will be moved upwards. Part-DB1\templates\Statistics\statistics.html.twig:69 new - + statistics.footprints_count Number of footprints @@ -3007,7 +3227,7 @@ Subelements will be moved upwards. Part-DB1\templates\Statistics\statistics.html.twig:73 new - + statistics.manufacturers_count Number of manufacturers @@ -3018,7 +3238,7 @@ Subelements will be moved upwards. Part-DB1\templates\Statistics\statistics.html.twig:77 new - + statistics.storelocations_count Number of storelocations @@ -3029,7 +3249,7 @@ Subelements will be moved upwards. Part-DB1\templates\Statistics\statistics.html.twig:81 new - + statistics.suppliers_count Number of suppliers @@ -3040,7 +3260,7 @@ Subelements will be moved upwards. Part-DB1\templates\Statistics\statistics.html.twig:85 new - + statistics.currencies_count Number of currencies @@ -3051,7 +3271,7 @@ Subelements will be moved upwards. Part-DB1\templates\Statistics\statistics.html.twig:89 new - + statistics.measurement_units_count Number of measurement units @@ -3062,7 +3282,7 @@ Subelements will be moved upwards. Part-DB1\templates\Statistics\statistics.html.twig:93 new - + statistics.devices_count Number of devices @@ -3073,7 +3293,7 @@ Subelements will be moved upwards. Part-DB1\templates\Statistics\statistics.html.twig:110 new - + statistics.attachment_types_count Number of attachment types @@ -3084,7 +3304,7 @@ Subelements will be moved upwards. Part-DB1\templates\Statistics\statistics.html.twig:114 new - + statistics.all_attachments_count Number of all attachments @@ -3095,7 +3315,7 @@ Subelements will be moved upwards. Part-DB1\templates\Statistics\statistics.html.twig:118 new - + statistics.user_uploaded_attachments_count Number of user uploaded attachments @@ -3106,7 +3326,7 @@ Subelements will be moved upwards. Part-DB1\templates\Statistics\statistics.html.twig:122 new - + statistics.private_attachments_count Number of private attachments @@ -3117,7 +3337,7 @@ Subelements will be moved upwards. Part-DB1\templates\Statistics\statistics.html.twig:126 new - + statistics.external_attachments_count Number of external attachments (URL) @@ -3129,7 +3349,7 @@ Subelements will be moved upwards. Part-DB1\templates\Users\backup_codes.html.twig:3 Part-DB1\templates\Users\backup_codes.html.twig:9 - + tfa_backup.codes.title Backup codes @@ -3139,7 +3359,7 @@ Subelements will be moved upwards. Part-DB1\templates\Users\backup_codes.html.twig:12 Part-DB1\templates\Users\backup_codes.html.twig:12 - + tfa_backup.codes.explanation Print out these codes and keep them in a safe place! @@ -3149,7 +3369,7 @@ Subelements will be moved upwards. Part-DB1\templates\Users\backup_codes.html.twig:13 Part-DB1\templates\Users\backup_codes.html.twig:13 - + tfa_backup.codes.help If 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. @@ -3159,7 +3379,7 @@ Subelements will be moved upwards. Part-DB1\templates\Users\backup_codes.html.twig:16 Part-DB1\templates\Users\backup_codes.html.twig:16 - + tfa_backup.username Username @@ -3169,7 +3389,7 @@ Subelements will be moved upwards. Part-DB1\templates\Users\backup_codes.html.twig:29 Part-DB1\templates\Users\backup_codes.html.twig:29 - + tfa_backup.codes.page_generated_on Page generated on %date% @@ -3179,7 +3399,7 @@ Subelements will be moved upwards. Part-DB1\templates\Users\backup_codes.html.twig:32 Part-DB1\templates\Users\backup_codes.html.twig:32 - + tfa_backup.codes.print Print @@ -3189,7 +3409,7 @@ Subelements will be moved upwards. Part-DB1\templates\Users\backup_codes.html.twig:35 Part-DB1\templates\Users\backup_codes.html.twig:35 - + tfa_backup.codes.copy_clipboard Copy to clipboard @@ -3206,7 +3426,7 @@ Subelements will be moved upwards. templates\Users\user_info.html.twig:3 templates\Users\user_info.html.twig:6 - + user.info.label User informations @@ -3220,7 +3440,7 @@ Subelements will be moved upwards. templates\Users\user_info.html.twig:18 src\Form\UserSettingsType.php:32 - + user.firstName.label First name @@ -3234,7 +3454,7 @@ Subelements will be moved upwards. templates\Users\user_info.html.twig:24 src\Form\UserSettingsType.php:35 - + user.lastName.label Last name @@ -3248,7 +3468,7 @@ Subelements will be moved upwards. templates\Users\user_info.html.twig:30 src\Form\UserSettingsType.php:41 - + user.email.label Email @@ -3262,7 +3482,7 @@ Subelements will be moved upwards. templates\Users\user_info.html.twig:37 src\Form\UserSettingsType.php:38 - + user.department.label Department @@ -3276,7 +3496,7 @@ Subelements will be moved upwards. templates\Users\user_info.html.twig:47 src\Form\UserSettingsType.php:30 - + user.username.label User name @@ -3289,7 +3509,7 @@ Subelements will be moved upwards. Part-DB1\src\Services\ElementTypeNameGenerator.php:93 templates\Users\user_info.html.twig:53 - + group.label Gruppe: @@ -3299,7 +3519,7 @@ Subelements will be moved upwards. Part-DB1\templates\Users\user_info.html.twig:67 Part-DB1\templates\Users\user_info.html.twig:67 - + user.permissions Permissions @@ -3316,7 +3536,7 @@ Subelements will be moved upwards. templates\Users\user_settings.html.twig:3 templates\Users\user_settings.html.twig:6 - + user.settings.label User settings @@ -3327,7 +3547,7 @@ Subelements will be moved upwards. Part-DB1\templates\Users\user_settings.html.twig:18 templates\Users\user_settings.html.twig:14 - + user_settings.data.label Personal data @@ -3338,7 +3558,7 @@ Subelements will be moved upwards. Part-DB1\templates\Users\user_settings.html.twig:22 templates\Users\user_settings.html.twig:18 - + user_settings.configuration.label Configuration @@ -3349,7 +3569,7 @@ Subelements will be moved upwards. Part-DB1\templates\Users\user_settings.html.twig:55 templates\Users\user_settings.html.twig:48 - + user.settings.change_pw Change password @@ -3359,7 +3579,7 @@ Subelements will be moved upwards. Part-DB1\templates\Users\_2fa_settings.html.twig:6 Part-DB1\templates\Users\_2fa_settings.html.twig:6 - + user.settings.2fa_settings Two-Factor Authentication @@ -3369,7 +3589,7 @@ Subelements will be moved upwards. Part-DB1\templates\Users\_2fa_settings.html.twig:13 Part-DB1\templates\Users\_2fa_settings.html.twig:13 - + tfa.settings.google.tab Authenticator app @@ -3379,7 +3599,7 @@ Subelements will be moved upwards. Part-DB1\templates\Users\_2fa_settings.html.twig:17 Part-DB1\templates\Users\_2fa_settings.html.twig:17 - + tfa.settings.bakup.tab Backup codes @@ -3389,7 +3609,7 @@ Subelements will be moved upwards. Part-DB1\templates\Users\_2fa_settings.html.twig:21 Part-DB1\templates\Users\_2fa_settings.html.twig:21 - + tfa.settings.u2f.tab Security keys (U2F) @@ -3399,7 +3619,7 @@ Subelements will be moved upwards. Part-DB1\templates\Users\_2fa_settings.html.twig:25 Part-DB1\templates\Users\_2fa_settings.html.twig:25 - + tfa.settings.trustedDevices.tab Trusted devices @@ -3409,7 +3629,7 @@ Subelements will be moved upwards. Part-DB1\templates\Users\_2fa_settings.html.twig:33 Part-DB1\templates\Users\_2fa_settings.html.twig:33 - + tfa_google.disable.confirm_title Do you really want to disable the Authenticator App? @@ -3419,10 +3639,10 @@ Subelements will be moved upwards. Part-DB1\templates\Users\_2fa_settings.html.twig:33 Part-DB1\templates\Users\_2fa_settings.html.twig:33 - + tfa_google.disable.confirm_message - 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! + +Also note that without two-factor authentication your account is not as well protected against attackers!]]> @@ -3430,7 +3650,7 @@ Also note that without two-factor authentication your account is not as well pro Part-DB1\templates\Users\_2fa_settings.html.twig:39 Part-DB1\templates\Users\_2fa_settings.html.twig:39 - + tfa_google.disabled_message Authenticator app deactivated! @@ -3440,9 +3660,9 @@ Also note that without two-factor authentication your account is not as well pro Part-DB1\templates\Users\_2fa_settings.html.twig:48 Part-DB1\templates\Users\_2fa_settings.html.twig:48 - + tfa_google.step.download - 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>) + Google Authenticator oder FreeOTP Authenticator)]]> @@ -3450,7 +3670,7 @@ Also note that without two-factor authentication your account is not as well pro Part-DB1\templates\Users\_2fa_settings.html.twig:49 Part-DB1\templates\Users\_2fa_settings.html.twig:49 - + tfa_google.step.scan Scan the adjoining QR Code with the app or enter the data manually @@ -3460,7 +3680,7 @@ Also note that without two-factor authentication your account is not as well pro Part-DB1\templates\Users\_2fa_settings.html.twig:50 Part-DB1\templates\Users\_2fa_settings.html.twig:50 - + tfa_google.step.input_code Enter the generated code in the field below and confirm @@ -3470,7 +3690,7 @@ Also note that without two-factor authentication your account is not as well pro Part-DB1\templates\Users\_2fa_settings.html.twig:51 Part-DB1\templates\Users\_2fa_settings.html.twig:51 - + tfa_google.step.download_backup Print out your backup codes and store them in a safe place @@ -3480,7 +3700,7 @@ Also note that without two-factor authentication your account is not as well pro Part-DB1\templates\Users\_2fa_settings.html.twig:58 Part-DB1\templates\Users\_2fa_settings.html.twig:58 - + tfa_google.manual_setup Manual setup @@ -3490,7 +3710,7 @@ Also note that without two-factor authentication your account is not as well pro Part-DB1\templates\Users\_2fa_settings.html.twig:62 Part-DB1\templates\Users\_2fa_settings.html.twig:62 - + tfa_google.manual_setup.type Type @@ -3500,7 +3720,7 @@ Also note that without two-factor authentication your account is not as well pro Part-DB1\templates\Users\_2fa_settings.html.twig:63 Part-DB1\templates\Users\_2fa_settings.html.twig:63 - + tfa_google.manual_setup.username Username @@ -3510,7 +3730,7 @@ Also note that without two-factor authentication your account is not as well pro Part-DB1\templates\Users\_2fa_settings.html.twig:64 Part-DB1\templates\Users\_2fa_settings.html.twig:64 - + tfa_google.manual_setup.secret Secret @@ -3520,7 +3740,7 @@ Also note that without two-factor authentication your account is not as well pro Part-DB1\templates\Users\_2fa_settings.html.twig:65 Part-DB1\templates\Users\_2fa_settings.html.twig:65 - + tfa_google.manual_setup.digit_count Digit count @@ -3530,7 +3750,7 @@ Also note that without two-factor authentication your account is not as well pro Part-DB1\templates\Users\_2fa_settings.html.twig:74 Part-DB1\templates\Users\_2fa_settings.html.twig:74 - + tfa_google.enabled_message Authenticator App enabled @@ -3540,7 +3760,7 @@ Also note that without two-factor authentication your account is not as well pro Part-DB1\templates\Users\_2fa_settings.html.twig:83 Part-DB1\templates\Users\_2fa_settings.html.twig:83 - + tfa_backup.disabled Backup codes disabled. Setup authenticator app to enable backup codes. @@ -3552,7 +3772,7 @@ Also note that without two-factor authentication your account is not as well pro Part-DB1\templates\Users\_2fa_settings.html.twig:84 Part-DB1\templates\Users\_2fa_settings.html.twig:92 - + tfa_backup.explanation You 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. @@ -3562,7 +3782,7 @@ Also note that without two-factor authentication your account is not as well pro Part-DB1\templates\Users\_2fa_settings.html.twig:88 Part-DB1\templates\Users\_2fa_settings.html.twig:88 - + tfa_backup.reset_codes.confirm_title Really reset codes? @@ -3572,7 +3792,7 @@ Also note that without two-factor authentication your account is not as well pro Part-DB1\templates\Users\_2fa_settings.html.twig:88 Part-DB1\templates\Users\_2fa_settings.html.twig:88 - + tfa_backup.reset_codes.confirm_message This 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! @@ -3582,7 +3802,7 @@ Also note that without two-factor authentication your account is not as well pro Part-DB1\templates\Users\_2fa_settings.html.twig:91 Part-DB1\templates\Users\_2fa_settings.html.twig:91 - + tfa_backup.enabled Backup codes enabled @@ -3592,7 +3812,7 @@ Also note that without two-factor authentication your account is not as well pro Part-DB1\templates\Users\_2fa_settings.html.twig:99 Part-DB1\templates\Users\_2fa_settings.html.twig:99 - + tfa_backup.show_codes Show backup codes @@ -3602,7 +3822,7 @@ Also note that without two-factor authentication your account is not as well pro Part-DB1\templates\Users\_2fa_settings.html.twig:114 Part-DB1\templates\Users\_2fa_settings.html.twig:114 - + tfa_u2f.table_caption Registered security keys @@ -3612,7 +3832,7 @@ Also note that without two-factor authentication your account is not as well pro Part-DB1\templates\Users\_2fa_settings.html.twig:115 Part-DB1\templates\Users\_2fa_settings.html.twig:115 - + tfa_u2f.delete_u2f.confirm_title Really remove this security key? @@ -3622,7 +3842,7 @@ Also note that without two-factor authentication your account is not as well pro Part-DB1\templates\Users\_2fa_settings.html.twig:116 Part-DB1\templates\Users\_2fa_settings.html.twig:116 - + tfa_u2f.delete_u2f.confirm_message If 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. @@ -3632,7 +3852,7 @@ Also note that without two-factor authentication your account is not as well pro Part-DB1\templates\Users\_2fa_settings.html.twig:123 Part-DB1\templates\Users\_2fa_settings.html.twig:123 - + tfa_u2f.keys.name Key name @@ -3642,7 +3862,7 @@ Also note that without two-factor authentication your account is not as well pro Part-DB1\templates\Users\_2fa_settings.html.twig:124 Part-DB1\templates\Users\_2fa_settings.html.twig:124 - + tfa_u2f.keys.added_date Registration date @@ -3652,7 +3872,7 @@ Also note that without two-factor authentication your account is not as well pro Part-DB1\templates\Users\_2fa_settings.html.twig:134 Part-DB1\templates\Users\_2fa_settings.html.twig:134 - + tfa_u2f.key_delete Delete key @@ -3662,7 +3882,7 @@ Also note that without two-factor authentication your account is not as well pro Part-DB1\templates\Users\_2fa_settings.html.twig:141 Part-DB1\templates\Users\_2fa_settings.html.twig:141 - + tfa_u2f.no_keys_registered No keys registered yet. @@ -3672,7 +3892,7 @@ Also note that without two-factor authentication your account is not as well pro Part-DB1\templates\Users\_2fa_settings.html.twig:144 Part-DB1\templates\Users\_2fa_settings.html.twig:144 - + tfa_u2f.add_new_key Register new security key @@ -3682,10 +3902,10 @@ Also note that without two-factor authentication your account is not as well pro Part-DB1\templates\Users\_2fa_settings.html.twig:148 Part-DB1\templates\Users\_2fa_settings.html.twig:148 - + tfa_trustedDevices.explanation - 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. + all computers here.]]> @@ -3693,7 +3913,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:149 Part-DB1\templates\Users\_2fa_settings.html.twig:149 - + tfa_trustedDevices.invalidate.confirm_title Really remove all trusted computers? @@ -3703,7 +3923,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:150 Part-DB1\templates\Users\_2fa_settings.html.twig:150 - + tfa_trustedDevices.invalidate.confirm_message You will have to perform two-factor authentication again on all computers. Make sure you have your two-factor device at hand. @@ -3713,7 +3933,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:154 Part-DB1\templates\Users\_2fa_settings.html.twig:154 - + tfa_trustedDevices.invalidate.btn Reset trusted devices @@ -3724,7 +3944,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\templates\_navbar.html.twig:4 templates\base.html.twig:29 - + sidebar.toggle Toggle Sidebar @@ -3733,7 +3953,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.link Scanner @@ -3744,7 +3964,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\templates\_navbar.html.twig:36 templates\base.html.twig:97 - + user.loggedin.label Logged in as @@ -3755,7 +3975,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\templates\_navbar.html.twig:42 templates\base.html.twig:103 - + user.login Login @@ -3765,7 +3985,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\templates\_navbar.html.twig:50 Part-DB1\templates\_navbar.html.twig:48 - + ui.toggle_darkmode Darkmode @@ -3779,7 +3999,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can templates\base.html.twig:106 src\Form\UserSettingsType.php:44 - + user.language_select Switch Language @@ -3790,7 +4010,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\templates\_navbar_search.html.twig:4 templates\base.html.twig:49 - + search.options.label Search options @@ -3799,7 +4019,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.label Tags @@ -3807,14 +4027,14 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\templates\_navbar_search.html.twig:27 - Part-DB1\src\Form\LabelOptionsType.php:66 + 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 Store location @@ -3825,7 +4045,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\templates\_navbar_search.html.twig:31 templates\base.html.twig:65 - + ordernumber.label.short Ordernr. @@ -3838,7 +4058,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\Services\ElementTypeNameGenerator.php:89 templates\base.html.twig:67 - + supplier.label Supplier @@ -3849,7 +4069,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\templates\_navbar_search.html.twig:52 templates\base.html.twig:75 - + search.deactivateBarcode Deact. Barcode @@ -3860,7 +4080,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\templates\_navbar_search.html.twig:56 templates\base.html.twig:77 - + search.regexmatching Reg.Ex. Matching @@ -3870,7 +4090,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\templates\_navbar_search.html.twig:68 Part-DB1\templates\_navbar_search.html.twig:62 - + search.submit Go! @@ -3886,7 +4106,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can templates\base.html.twig:202 templates\base.html.twig:230 - + device.labelp Devices @@ -3899,7 +4119,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can templates\base.html.twig:192 templates\base.html.twig:220 - + actions Actions @@ -3912,7 +4132,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can templates\base.html.twig:196 templates\base.html.twig:224 - + datasource Datasource @@ -3925,7 +4145,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can templates\base.html.twig:200 templates\base.html.twig:228 - + manufacturer.labelp Manufacturers @@ -3938,15 +4158,15 @@ If you have done this incorrectly or if a computer is no longer trusted, you can templates\base.html.twig:201 templates\base.html.twig:229 - + supplier.labelp Suppliers - Part-DB1\src\Controller\AdminPages\BaseAdminController.php:212 - Part-DB1\src\Controller\AdminPages\BaseAdminController.php:292 + 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 @@ -3954,83 +4174,83 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\Controller\PartController.php:173 Part-DB1\src\Controller\PartController.php:268 - + attachment.download_failed Download of the external attachment failed. - Part-DB1\src\Controller\AdminPages\BaseAdminController.php:221 + Part-DB1\src\Controller\AdminPages\BaseAdminController.php:222 Part-DB1\src\Controller\AdminPages\BaseAdminController.php:190 - + entity.edit_flash Changes saved successful. - Part-DB1\src\Controller\AdminPages\BaseAdminController.php:230 + Part-DB1\src\Controller\AdminPages\BaseAdminController.php:231 Part-DB1\src\Controller\AdminPages\BaseAdminController.php:196 - + entity.edit_flash.invalid Can not save changed. Please check your input! - Part-DB1\src\Controller\AdminPages\BaseAdminController.php:301 + Part-DB1\src\Controller\AdminPages\BaseAdminController.php:302 Part-DB1\src\Controller\AdminPages\BaseAdminController.php:252 - + entity.created_flash Element created. - Part-DB1\src\Controller\AdminPages\BaseAdminController.php:307 + Part-DB1\src\Controller\AdminPages\BaseAdminController.php:308 Part-DB1\src\Controller\AdminPages\BaseAdminController.php:258 - + entity.created_flash.invalid Could not create element. Please check your input! - Part-DB1\src\Controller\AdminPages\BaseAdminController.php:398 + 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 deleted! - Part-DB1\src\Controller\AdminPages\BaseAdminController.php:400 + Part-DB1\src\Controller\AdminPages\BaseAdminController.php:401 Part-DB1\src\Controller\UserController.php:109 - Part-DB1\src\Controller\UserSettingsController.php:157 - Part-DB1\src\Controller\UserSettingsController.php:191 + 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 CSFR Token invalid. Please reload this page or contact an administrator if this message stays. - Part-DB1\src\Controller\LabelController.php:134 + Part-DB1\src\Controller\LabelController.php:125 - + label_generator.no_entities_found No entities matching the range found. @@ -4041,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:154 new - + log.undo.target_not_found Target element could not be found in DB! @@ -4052,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:160 new - + log.undo.revert_success Reverted to timestamp successfully. @@ -4063,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:180 new - + log.undo.element_undelete_success Undeleted element successfully. @@ -4074,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:182 new - + log.undo.element_element_already_undeleted Element was already undeleted! @@ -4085,7 +4305,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\Controller\LogController.php:189 new - + log.undo.element_delete_success Element deleted successfully. @@ -4096,7 +4316,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\Controller\LogController.php:191 new - + log.undo.element.element_already_delted Element was already deleted! @@ -4107,7 +4327,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\Controller\LogController.php:198 new - + log.undo.element_change_undone Change undone successfully! @@ -4118,7 +4338,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\Controller\LogController.php:200 new - + log.undo.do_undelete_before You have to undelete the element before you can undo this change! @@ -4129,7 +4349,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\Controller\LogController.php:203 new - + log.undo.log_type_invalid This log entry can not be undone! @@ -4140,7 +4360,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\Controller\PartController.php:182 src\Controller\PartController.php:80 - + part.edited_flash Saved changes! @@ -4150,7 +4370,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\Controller\PartController.php:186 Part-DB1\src\Controller\PartController.php:186 - + part.edited_flash.invalid Error during saving: Please check your inputs! @@ -4160,7 +4380,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\Controller\PartController.php:216 Part-DB1\src\Controller\PartController.php:219 - + part.deleted Part deleted successful. @@ -4173,7 +4393,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can src\Controller\PartController.php:113 src\Controller\PartController.php:142 - + part.created_flash Part created! @@ -4183,26 +4403,26 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\Controller\PartController.php:308 Part-DB1\src\Controller\PartController.php:283 - + part.created_flash.invalid Error during creation: Please check your inputs! - Part-DB1\src\Controller\ScanController.php:66 - Part-DB1\src\Controller\ScanController.php:89 + Part-DB1\src\Controller\ScanController.php:68 + Part-DB1\src\Controller\ScanController.php:90 - + scan.qr_not_found No element found for the given barcode. - Part-DB1\src\Controller\ScanController.php:69 + Part-DB1\src\Controller\ScanController.php:71 - + scan.format_unknown Format unknown! @@ -4211,7 +4431,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_success Element found. @@ -4221,7 +4441,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\Controller\SecurityController.php:114 Part-DB1\src\Controller\SecurityController.php:109 - + pw_reset.user_or_email Username / Email @@ -4231,7 +4451,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\Controller\SecurityController.php:131 Part-DB1\src\Controller\SecurityController.php:126 - + pw_reset.request.success Reset request was successful! Please check your emails for further instructions. @@ -4241,7 +4461,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\Controller\SecurityController.php:162 Part-DB1\src\Controller\SecurityController.php:160 - + pw_reset.username Username @@ -4251,7 +4471,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\Controller\SecurityController.php:165 Part-DB1\src\Controller\SecurityController.php:163 - + pw_reset.token Token @@ -4261,7 +4481,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\Controller\SecurityController.php:194 Part-DB1\src\Controller\SecurityController.php:192 - + pw_reset.new_pw.error Username or Token invalid! Please check your input. @@ -4271,7 +4491,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\Controller\SecurityController.php:196 Part-DB1\src\Controller\SecurityController.php:194 - + pw_reset.new_pw.success Password was reset successfully. You can now login with your new password. @@ -4281,109 +4501,109 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\Controller\UserController.php:107 Part-DB1\src\Controller\UserController.php:99 - + user.edit.reset_success All two-factor authentication methods were successfully disabled. - Part-DB1\src\Controller\UserSettingsController.php:99 + Part-DB1\src\Controller\UserSettingsController.php:101 Part-DB1\src\Controller\UserSettingsController.php:92 - + tfa_backup.no_codes_enabled No backup codes enabled! - Part-DB1\src\Controller\UserSettingsController.php:136 + Part-DB1\src\Controller\UserSettingsController.php:138 Part-DB1\src\Controller\UserSettingsController.php:132 - + tfa_u2f.u2f_delete.not_existing No security key with this ID is existing. - Part-DB1\src\Controller\UserSettingsController.php:143 + Part-DB1\src\Controller\UserSettingsController.php:145 Part-DB1\src\Controller\UserSettingsController.php:139 - + tfa_u2f.u2f_delete.access_denied You can not delete the security keys of other users! - Part-DB1\src\Controller\UserSettingsController.php:151 + Part-DB1\src\Controller\UserSettingsController.php:153 Part-DB1\src\Controller\UserSettingsController.php:147 - + tfa.u2f.u2f_delete.success Security key successfully removed. - Part-DB1\src\Controller\UserSettingsController.php:186 + Part-DB1\src\Controller\UserSettingsController.php:188 Part-DB1\src\Controller\UserSettingsController.php:180 - + tfa_trustedDevice.invalidate.success Trusted devices successfully reset. - Part-DB1\src\Controller\UserSettingsController.php:233 + Part-DB1\src\Controller\UserSettingsController.php:235 Part-DB1\src\Controller\UserSettingsController.php:226 src\Controller\UserController.php:98 - + user.settings.saved_flash Settings saved! - Part-DB1\src\Controller\UserSettingsController.php:295 + 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 changed! - Part-DB1\src\Controller\UserSettingsController.php:315 + Part-DB1\src\Controller\UserSettingsController.php:317 Part-DB1\src\Controller\UserSettingsController.php:306 - + user.settings.2fa.google.activated Authenticator App successfully activated. - Part-DB1\src\Controller\UserSettingsController.php:326 + Part-DB1\src\Controller\UserSettingsController.php:328 Part-DB1\src\Controller\UserSettingsController.php:315 - + user.settings.2fa.google.disabled Authenticator App erfolgreich deaktiviert. - Part-DB1\src\Controller\UserSettingsController.php:344 + Part-DB1\src\Controller\UserSettingsController.php:346 Part-DB1\src\Controller\UserSettingsController.php:332 - + user.settings.2fa.backup_codes.regenerated New backup codes successfully generated. @@ -4393,7 +4613,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\DataTables\AttachmentDataTable.php:148 Part-DB1\src\DataTables\AttachmentDataTable.php:148 - + attachment.table.filename File name @@ -4403,7 +4623,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\DataTables\AttachmentDataTable.php:153 Part-DB1\src\DataTables\AttachmentDataTable.php:153 - + attachment.table.filesize File size @@ -4423,7 +4643,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\DataTables\PartsDataTable.php:193 Part-DB1\src\DataTables\PartsDataTable.php:200 - + true true @@ -4445,7 +4665,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\DataTables\PartsDataTable.php:201 Part-DB1\src\Form\Type\SIUnitType.php:139 - + false false @@ -4455,7 +4675,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\DataTables\Column\LogEntryTargetColumn.php:128 Part-DB1\src\DataTables\Column\LogEntryTargetColumn.php:119 - + log.target_deleted deleted @@ -4466,7 +4686,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\DataTables\Column\RevertLogColumn.php:60 new - + log.undo.undelete Undelete element @@ -4477,7 +4697,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\DataTables\Column\RevertLogColumn.php:66 new - + log.undo.undo Undo change @@ -4488,7 +4708,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\DataTables\Column\RevertLogColumn.php:86 new - + log.undo.revert Revert element to this timestamp @@ -4498,7 +4718,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\DataTables\LogDataTable.php:173 Part-DB1\src\DataTables\LogDataTable.php:161 - + log.id ID @@ -4508,7 +4728,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\DataTables\LogDataTable.php:178 Part-DB1\src\DataTables\LogDataTable.php:166 - + log.timestamp Timestamp @@ -4518,7 +4738,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\DataTables\LogDataTable.php:183 Part-DB1\src\DataTables\LogDataTable.php:171 - + log.type Event @@ -4528,7 +4748,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\DataTables\LogDataTable.php:191 Part-DB1\src\DataTables\LogDataTable.php:179 - + log.level Level @@ -4538,7 +4758,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\DataTables\LogDataTable.php:200 Part-DB1\src\DataTables\LogDataTable.php:188 - + log.user User @@ -4548,7 +4768,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\DataTables\LogDataTable.php:213 Part-DB1\src\DataTables\LogDataTable.php:201 - + log.target_type Target type @@ -4558,7 +4778,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\DataTables\LogDataTable.php:226 Part-DB1\src\DataTables\LogDataTable.php:214 - + log.target Target @@ -4569,7 +4789,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\DataTables\LogDataTable.php:218 new - + log.extra Extra @@ -4579,7 +4799,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\DataTables\PartsDataTable.php:168 Part-DB1\src\DataTables\PartsDataTable.php:116 - + part.table.name Name @@ -4589,7 +4809,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\DataTables\PartsDataTable.php:178 Part-DB1\src\DataTables\PartsDataTable.php:126 - + part.table.id Id @@ -4599,7 +4819,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\DataTables\PartsDataTable.php:182 Part-DB1\src\DataTables\PartsDataTable.php:130 - + part.table.description Description @@ -4609,7 +4829,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\DataTables\PartsDataTable.php:185 Part-DB1\src\DataTables\PartsDataTable.php:133 - + part.table.category Category @@ -4619,7 +4839,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\DataTables\PartsDataTable.php:190 Part-DB1\src\DataTables\PartsDataTable.php:138 - + part.table.footprint Footprint @@ -4629,7 +4849,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\DataTables\PartsDataTable.php:194 Part-DB1\src\DataTables\PartsDataTable.php:142 - + part.table.manufacturer Manufacturer @@ -4639,7 +4859,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\DataTables\PartsDataTable.php:197 Part-DB1\src\DataTables\PartsDataTable.php:145 - + part.table.storeLocations Store locations @@ -4649,7 +4869,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\DataTables\PartsDataTable.php:216 Part-DB1\src\DataTables\PartsDataTable.php:164 - + part.table.amount Amount @@ -4659,7 +4879,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\DataTables\PartsDataTable.php:224 Part-DB1\src\DataTables\PartsDataTable.php:172 - + part.table.minamount Min. Amount @@ -4669,7 +4889,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\DataTables\PartsDataTable.php:232 Part-DB1\src\DataTables\PartsDataTable.php:180 - + part.table.partUnit Measurement Unit @@ -4679,7 +4899,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\DataTables\PartsDataTable.php:236 Part-DB1\src\DataTables\PartsDataTable.php:184 - + part.table.addedDate Created at @@ -4689,7 +4909,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\DataTables\PartsDataTable.php:240 Part-DB1\src\DataTables\PartsDataTable.php:188 - + part.table.lastModified Last modified @@ -4699,7 +4919,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\DataTables\PartsDataTable.php:244 Part-DB1\src\DataTables\PartsDataTable.php:192 - + part.table.needsReview Needs review @@ -4709,7 +4929,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\DataTables\PartsDataTable.php:251 Part-DB1\src\DataTables\PartsDataTable.php:199 - + part.table.favorite Favorite @@ -4719,7 +4939,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\DataTables\PartsDataTable.php:258 Part-DB1\src\DataTables\PartsDataTable.php:206 - + part.table.manufacturingStatus Status @@ -4733,7 +4953,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\DataTables\PartsDataTable.php:210 Part-DB1\src\Form\Part\PartBaseType.php:88 - + m_status.unknown Unknown @@ -4745,7 +4965,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\DataTables\PartsDataTable.php:211 Part-DB1\src\Form\Part\PartBaseType.php:88 - + m_status.announced Announced @@ -4757,7 +4977,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\DataTables\PartsDataTable.php:212 Part-DB1\src\Form\Part\PartBaseType.php:88 - + m_status.active Active @@ -4769,7 +4989,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\DataTables\PartsDataTable.php:213 Part-DB1\src\Form\Part\PartBaseType.php:88 - + m_status.nrfnd Not recommended for new designs @@ -4781,7 +5001,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\DataTables\PartsDataTable.php:214 Part-DB1\src\Form\Part\PartBaseType.php:88 - + m_status.eol End of life @@ -4793,7 +5013,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\DataTables\PartsDataTable.php:215 Part-DB1\src\Form\Part\PartBaseType.php:88 - + m_status.discontinued Discontinued @@ -4803,7 +5023,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\DataTables\PartsDataTable.php:271 Part-DB1\src\DataTables\PartsDataTable.php:219 - + part.table.mpn MPN @@ -4813,7 +5033,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\DataTables\PartsDataTable.php:275 Part-DB1\src\DataTables\PartsDataTable.php:223 - + part.table.mass Mass @@ -4823,7 +5043,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\DataTables\PartsDataTable.php:279 Part-DB1\src\DataTables\PartsDataTable.php:227 - + part.table.tags Tags @@ -4833,7 +5053,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\DataTables\PartsDataTable.php:283 Part-DB1\src\DataTables\PartsDataTable.php:231 - + part.table.attachments Attachments @@ -4843,7 +5063,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\EventSubscriber\UserSystem\LoginSuccessSubscriber.php:82 Part-DB1\src\EventSubscriber\LoginSuccessListener.php:82 - + flash.login_successful Login successful @@ -4854,7 +5074,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\Form\AdminPages\ImportType.php:77 src\Form\ImportType.php:68 - + JSON JSON @@ -4865,7 +5085,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\Form\AdminPages\ImportType.php:77 src\Form\ImportType.php:68 - + XML XML @@ -4876,7 +5096,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\Form\AdminPages\ImportType.php:77 src\Form\ImportType.php:68 - + CSV CSV @@ -4887,7 +5107,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\Form\AdminPages\ImportType.php:77 src\Form\ImportType.php:68 - + YAML YAML @@ -4897,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:124 Part-DB1\src\Form\AdminPages\ImportType.php:124 - + import.abort_on_validation.help When 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. @@ -4908,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:86 src\Form\ImportType.php:70 - + import.csv_separator CSV separator @@ -4919,7 +5139,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\Form\AdminPages\ImportType.php:93 src\Form\ImportType.php:72 - + parent.label Parent element @@ -4930,7 +5150,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\Form\AdminPages\ImportType.php:101 src\Form\ImportType.php:75 - + import.file File @@ -4941,7 +5161,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\Form\AdminPages\ImportType.php:111 src\Form\ImportType.php:78 - + import.preserve_children Preserve child elements on import @@ -4952,7 +5172,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\Form\AdminPages\ImportType.php:120 src\Form\ImportType.php:80 - + import.abort_on_validation Abort on invalid data @@ -4963,7 +5183,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\Form\AdminPages\ImportType.php:132 src\Form\ImportType.php:85 - + import.btn Import @@ -4973,7 +5193,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\Form\AttachmentFormType.php:113 Part-DB1\src\Form\AttachmentFormType.php:109 - + attachment.edit.secure_file.help An attachment marked private can only accessed by authenticated users with the proper permission. If this is activated no thumbnails are generated and access to file is less perfomant. @@ -4983,7 +5203,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\Form\AttachmentFormType.php:127 Part-DB1\src\Form\AttachmentFormType.php:123 - + attachment.edit.url.help You can specify a url to an external file here, or input an keyword which is used to search in builtin ressources (e.g. footprints) @@ -4993,7 +5213,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\Form\AttachmentFormType.php:82 Part-DB1\src\Form\AttachmentFormType.php:79 - + attachment.edit.name Name @@ -5003,7 +5223,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\Form\AttachmentFormType.php:85 Part-DB1\src\Form\AttachmentFormType.php:82 - + attachment.edit.attachment_type Attachment type @@ -5013,7 +5233,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\Form\AttachmentFormType.php:94 Part-DB1\src\Form\AttachmentFormType.php:91 - + attachment.edit.show_in_table Show in table @@ -5023,7 +5243,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\Form\AttachmentFormType.php:105 Part-DB1\src\Form\AttachmentFormType.php:102 - + attachment.edit.secure_file Private attachment @@ -5033,7 +5253,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\Form\AttachmentFormType.php:119 Part-DB1\src\Form\AttachmentFormType.php:115 - + attachment.edit.url URL @@ -5043,7 +5263,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\Form\AttachmentFormType.php:133 Part-DB1\src\Form\AttachmentFormType.php:129 - + attachment.edit.download_url Download external file @@ -5053,198 +5273,198 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\Form\AttachmentFormType.php:146 Part-DB1\src\Form\AttachmentFormType.php:142 - + attachment.edit.file Upload file - Part-DB1\src\Form\LabelOptionsType.php:66 + Part-DB1\src\Form\LabelOptionsType.php:68 Part-DB1\src\Services\ElementTypeNameGenerator.php:86 - + part.label Part - Part-DB1\src\Form\LabelOptionsType.php:66 + Part-DB1\src\Form\LabelOptionsType.php:68 Part-DB1\src\Services\ElementTypeNameGenerator.php:87 - + part_lot.label Part lot - Part-DB1\src\Form\LabelOptionsType.php:76 + Part-DB1\src\Form\LabelOptionsType.php:78 - + label_options.barcode_type.none None - Part-DB1\src\Form\LabelOptionsType.php:76 + Part-DB1\src\Form\LabelOptionsType.php:78 - + label_options.barcode_type.qr QR Code (recommended) - Part-DB1\src\Form\LabelOptionsType.php:76 + Part-DB1\src\Form\LabelOptionsType.php:78 - + label_options.barcode_type.code128 Code 128 (recommended) - Part-DB1\src\Form\LabelOptionsType.php:76 + Part-DB1\src\Form\LabelOptionsType.php:78 - + label_options.barcode_type.code39 Code 39 (recommended) - Part-DB1\src\Form\LabelOptionsType.php:76 + Part-DB1\src\Form\LabelOptionsType.php:78 - + label_options.barcode_type.code93 Code 93 - Part-DB1\src\Form\LabelOptionsType.php:76 + Part-DB1\src\Form\LabelOptionsType.php:78 - + label_options.barcode_type.datamatrix Datamatrix - Part-DB1\src\Form\LabelOptionsType.php:121 + Part-DB1\src\Form\LabelOptionsType.php:122 - + label_options.lines_mode.html Placeholders - Part-DB1\src\Form\LabelOptionsType.php:121 + Part-DB1\src\Form\LabelOptionsType.php:122 - + label.options.lines_mode.twig Twig - Part-DB1\src\Form\LabelOptionsType.php:125 + Part-DB1\src\Form\LabelOptionsType.php:126 - + label_options.lines_mode.help - 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://github.com/Part-DB/Part-DB-symfony/wiki/Labels#twig-mode">Wiki</a> for more informations. + Twig documentation and Wiki for more informations.]]> - Part-DB1\src\Form\LabelOptionsType.php:45 + Part-DB1\src\Form\LabelOptionsType.php:47 - + label_options.page_size.label Label size - Part-DB1\src\Form\LabelOptionsType.php:64 + Part-DB1\src\Form\LabelOptionsType.php:66 - + label_options.supported_elements.label Target type - Part-DB1\src\Form\LabelOptionsType.php:73 + Part-DB1\src\Form\LabelOptionsType.php:75 - + label_options.barcode_type.label Barcode - Part-DB1\src\Form\LabelOptionsType.php:101 + Part-DB1\src\Form\LabelOptionsType.php:102 - + label_profile.lines.label Content - Part-DB1\src\Form\LabelOptionsType.php:110 + Part-DB1\src\Form\LabelOptionsType.php:111 - + label_options.additional_css.label Additional styles (CSS) - Part-DB1\src\Form\LabelOptionsType.php:119 + Part-DB1\src\Form\LabelOptionsType.php:120 - + label_options.lines_mode.label Parser mode - Part-DB1\src\Form\LabelOptionsType.php:49 + Part-DB1\src\Form\LabelOptionsType.php:51 - + label_options.width.placeholder Width - Part-DB1\src\Form\LabelOptionsType.php:58 + Part-DB1\src\Form\LabelOptionsType.php:60 - + label_options.height.placeholder Height - Part-DB1\src\Form\LabelSystem\LabelDialogType.php:48 + Part-DB1\src\Form\LabelSystem\LabelDialogType.php:49 - + label_generator.target_id.range_hint You can specify multiple IDs (e.g. 1,2,3) and/or a range (1-3) here to generate labels for multiple elements at once. - Part-DB1\src\Form\LabelSystem\LabelDialogType.php:45 + Part-DB1\src\Form\LabelSystem\LabelDialogType.php:46 - + label_generator.target_id.label Target IDs @@ -5253,27 +5473,25 @@ 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.update Update - Part-DB1\src\Form\LabelSystem\ScanDialogType.php:34 - new + Part-DB1\src\Form\LabelSystem\ScanDialogType.php:36 - + scan_dialog.input Input - Part-DB1\src\Form\LabelSystem\ScanDialogType.php:42 - new + Part-DB1\src\Form\LabelSystem\ScanDialogType.php:44 - + scan_dialog.submit Submit @@ -5282,7 +5500,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.placeholder e.g. DC Current Gain @@ -5291,7 +5509,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.placeholder e.g. h_{FE} @@ -5300,7 +5518,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.placeholder e.g. Test conditions @@ -5309,7 +5527,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.placeholder e.g. 350 @@ -5318,7 +5536,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.placeholder e.g. 100 @@ -5327,7 +5545,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.placeholder e.g. 200 @@ -5336,7 +5554,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.placeholder e.g. V @@ -5345,7 +5563,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.placeholder e.g. Technical Specifications @@ -5355,7 +5573,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\Form\Part\OrderdetailType.php:72 Part-DB1\src\Form\Part\OrderdetailType.php:75 - + orderdetails.edit.supplierpartnr Order number @@ -5365,7 +5583,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\Form\Part\OrderdetailType.php:81 Part-DB1\src\Form\Part\OrderdetailType.php:84 - + orderdetails.edit.supplier Supplier @@ -5375,7 +5593,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\Form\Part\OrderdetailType.php:87 Part-DB1\src\Form\Part\OrderdetailType.php:90 - + orderdetails.edit.url Link to offer @@ -5385,7 +5603,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\Form\Part\OrderdetailType.php:93 Part-DB1\src\Form\Part\OrderdetailType.php:96 - + orderdetails.edit.obsolete No longer available @@ -5395,7 +5613,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\Form\Part\OrderdetailType.php:75 Part-DB1\src\Form\Part\OrderdetailType.php:78 - + orderdetails.edit.supplierpartnr.placeholder e.g. BC 547 @@ -5405,7 +5623,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\Form\Part\PartBaseType.php:101 Part-DB1\src\Form\Part\PartBaseType.php:99 - + part.edit.name Name @@ -5415,7 +5633,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\Form\Part\PartBaseType.php:109 Part-DB1\src\Form\Part\PartBaseType.php:107 - + part.edit.description Description @@ -5425,7 +5643,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\Form\Part\PartBaseType.php:120 Part-DB1\src\Form\Part\PartBaseType.php:118 - + part.edit.mininstock Minimum stock @@ -5435,7 +5653,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\Form\Part\PartBaseType.php:129 Part-DB1\src\Form\Part\PartBaseType.php:127 - + part.edit.category Category @@ -5445,7 +5663,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\Form\Part\PartBaseType.php:135 Part-DB1\src\Form\Part\PartBaseType.php:133 - + part.edit.footprint Footprint @@ -5455,7 +5673,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\Form\Part\PartBaseType.php:142 Part-DB1\src\Form\Part\PartBaseType.php:140 - + part.edit.tags Tags @@ -5465,7 +5683,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\Form\Part\PartBaseType.php:154 Part-DB1\src\Form\Part\PartBaseType.php:152 - + part.edit.manufacturer.label Manufacturer @@ -5475,7 +5693,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\Form\Part\PartBaseType.php:161 Part-DB1\src\Form\Part\PartBaseType.php:159 - + part.edit.manufacturer_url.label Link to product page @@ -5485,7 +5703,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\Form\Part\PartBaseType.php:167 Part-DB1\src\Form\Part\PartBaseType.php:165 - + part.edit.mpn Manufacturer part number @@ -5495,7 +5713,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\Form\Part\PartBaseType.php:173 Part-DB1\src\Form\Part\PartBaseType.php:171 - + part.edit.manufacturing_status Manufacturing status @@ -5505,7 +5723,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\Form\Part\PartBaseType.php:181 Part-DB1\src\Form\Part\PartBaseType.php:179 - + part.edit.needs_review Needs review @@ -5515,7 +5733,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\Form\Part\PartBaseType.php:189 Part-DB1\src\Form\Part\PartBaseType.php:187 - + part.edit.is_favorite Favorite @@ -5525,7 +5743,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\Form\Part\PartBaseType.php:197 Part-DB1\src\Form\Part\PartBaseType.php:195 - + part.edit.mass Mass @@ -5535,7 +5753,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\Form\Part\PartBaseType.php:203 Part-DB1\src\Form\Part\PartBaseType.php:201 - + part.edit.partUnit Measuring unit @@ -5545,7 +5763,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\Form\Part\PartBaseType.php:212 Part-DB1\src\Form\Part\PartBaseType.php:210 - + part.edit.comment Comment @@ -5555,7 +5773,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\Form\Part\PartBaseType.php:250 Part-DB1\src\Form\Part\PartBaseType.php:246 - + part.edit.master_attachment Preview image @@ -5566,7 +5784,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\Form\Part\PartBaseType.php:276 src\Form\PartType.php:91 - + part.edit.save Save changes @@ -5577,7 +5795,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\Form\Part\PartBaseType.php:277 src\Form\PartType.php:92 - + part.edit.reset Reset changes @@ -5587,7 +5805,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\Form\Part\PartBaseType.php:105 Part-DB1\src\Form\Part\PartBaseType.php:103 - + part.edit.name.placeholder e.g. BC547 @@ -5597,7 +5815,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\Form\Part\PartBaseType.php:115 Part-DB1\src\Form\Part\PartBaseType.php:113 - + part.edit.description.placeholder e.g. NPN 45V, 0,1A, 0,5W @@ -5607,7 +5825,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\Form\Part\PartBaseType.php:123 Part-DB1\src\Form\Part\PartBaseType.php:121 - + part.editmininstock.placeholder e.g. 1 @@ -5617,7 +5835,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\Form\Part\PartLotType.php:69 Part-DB1\src\Form\Part\PartLotType.php:69 - + part_lot.edit.description Description @@ -5627,7 +5845,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\Form\Part\PartLotType.php:78 Part-DB1\src\Form\Part\PartLotType.php:78 - + part_lot.edit.location Storage location @@ -5637,7 +5855,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\Form\Part\PartLotType.php:89 Part-DB1\src\Form\Part\PartLotType.php:89 - + part_lot.edit.amount Amount @@ -5647,7 +5865,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\Form\Part\PartLotType.php:98 Part-DB1\src\Form\Part\PartLotType.php:97 - + part_lot.edit.instock_unknown Amount unknown @@ -5657,7 +5875,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\Form\Part\PartLotType.php:109 Part-DB1\src\Form\Part\PartLotType.php:108 - + part_lot.edit.needs_refill Needs refill @@ -5667,7 +5885,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\Form\Part\PartLotType.php:120 Part-DB1\src\Form\Part\PartLotType.php:119 - + part_lot.edit.expiration_date Expiration date @@ -5677,7 +5895,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\Form\Part\PartLotType.php:128 Part-DB1\src\Form\Part\PartLotType.php:125 - + part_lot.edit.comment Comment @@ -5687,7 +5905,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\Form\Permissions\PermissionsType.php:99 Part-DB1\src\Form\Permissions\PermissionsType.php:99 - + perm.group.other Miscellaneous @@ -5697,7 +5915,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\Form\TFAGoogleSettingsType.php:97 Part-DB1\src\Form\TFAGoogleSettingsType.php:97 - + tfa_google.enable Enable authenticator app @@ -5707,7 +5925,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\Form\TFAGoogleSettingsType.php:101 Part-DB1\src\Form\TFAGoogleSettingsType.php:101 - + tfa_google.disable Deactivate authenticator app @@ -5717,7 +5935,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\Form\TFAGoogleSettingsType.php:74 Part-DB1\src\Form\TFAGoogleSettingsType.php:74 - + google_confirmation Confirmation code @@ -5728,7 +5946,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\Form\UserSettingsType.php:108 src\Form\UserSettingsType.php:46 - + user.timezone.label Timezone @@ -5738,7 +5956,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\Form\UserSettingsType.php:133 Part-DB1\src\Form\UserSettingsType.php:132 - + user.currency.label Preferred currency @@ -5749,7 +5967,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\Form\UserSettingsType.php:139 src\Form\UserSettingsType.php:53 - + save Apply changes @@ -5760,7 +5978,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\Form\UserSettingsType.php:140 src\Form\UserSettingsType.php:54 - + reset Discard changes @@ -5771,7 +5989,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\Form\UserSettingsType.php:104 src\Form\UserSettingsType.php:45 - + user_settings.language.placeholder Serverwide language @@ -5782,7 +6000,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\Form\UserSettingsType.php:115 src\Form\UserSettingsType.php:48 - + user_settings.timezone.placeholder Serverwide Timezone @@ -5792,7 +6010,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\Services\ElementTypeNameGenerator.php:79 Part-DB1\src\Services\ElementTypeNameGenerator.php:79 - + attachment.label Attachment @@ -5802,7 +6020,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\Services\ElementTypeNameGenerator.php:81 Part-DB1\src\Services\ElementTypeNameGenerator.php:81 - + attachment_type.label Attachment type @@ -5812,7 +6030,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\Services\ElementTypeNameGenerator.php:82 Part-DB1\src\Services\ElementTypeNameGenerator.php:82 - + device.label Project @@ -5822,7 +6040,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\Services\ElementTypeNameGenerator.php:85 Part-DB1\src\Services\ElementTypeNameGenerator.php:85 - + measurement_unit.label Measurement unit @@ -5832,7 +6050,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\Services\ElementTypeNameGenerator.php:90 Part-DB1\src\Services\ElementTypeNameGenerator.php:90 - + currency.label Currency @@ -5842,7 +6060,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\Services\ElementTypeNameGenerator.php:91 Part-DB1\src\Services\ElementTypeNameGenerator.php:91 - + orderdetail.label Order detail @@ -5852,7 +6070,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\Services\ElementTypeNameGenerator.php:92 Part-DB1\src\Services\ElementTypeNameGenerator.php:92 - + pricedetail.label Price detail @@ -5862,7 +6080,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\Services\ElementTypeNameGenerator.php:94 Part-DB1\src\Services\ElementTypeNameGenerator.php:94 - + user.label User @@ -5871,7 +6089,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.label Parameter @@ -5880,7 +6098,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.label Label profile @@ -5891,7 +6109,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\Services\LogSystem\LogEntryExtraFormatter.php:161 new - + log.element_deleted.old_name.unknown Unknown @@ -5901,7 +6119,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\Services\MarkdownParser.php:73 Part-DB1\src\Services\MarkdownParser.php:73 - + markdown.loading Loading markdown. If this message does not disappear, try to reload the page. @@ -5911,7 +6129,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\Services\PasswordResetManager.php:98 Part-DB1\src\Services\PasswordResetManager.php:98 - + pw_reset.email.subject Password reset for your Part-DB account @@ -5920,7 +6138,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.tools Tools @@ -5931,7 +6149,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:107 src\Services\ToolsTreeBuilder.php:74 - + tree.tools.edit Edit @@ -5942,7 +6160,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 src\Services\ToolsTreeBuilder.php:81 - + tree.tools.show Show @@ -5952,7 +6170,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:111 Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:109 - + tree.tools.system System @@ -5961,7 +6179,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_dialog Label generator @@ -5970,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:130 - + tree.tools.tools.label_scanner Scanner @@ -5981,7 +6199,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:126 src\Services\ToolsTreeBuilder.php:62 - + tree.tools.edit.attachment_types Attachment types @@ -5992,7 +6210,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:132 src\Services\ToolsTreeBuilder.php:64 - + tree.tools.edit.categories Categories @@ -6003,7 +6221,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:138 src\Services\ToolsTreeBuilder.php:66 - + tree.tools.edit.devices Devices @@ -6014,7 +6232,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:144 src\Services\ToolsTreeBuilder.php:68 - + tree.tools.edit.suppliers Suppliers @@ -6025,7 +6243,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:150 src\Services\ToolsTreeBuilder.php:70 - + tree.tools.edit.manufacturer Manufacturers @@ -6035,7 +6253,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:179 Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:156 - + tree.tools.edit.storelocation Storage locations @@ -6045,7 +6263,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:185 Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:162 - + tree.tools.edit.footprint Footprints @@ -6055,7 +6273,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:191 Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:168 - + tree.tools.edit.currency Currencies @@ -6065,7 +6283,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:197 Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:174 - + tree.tools.edit.measurement_unit Measurement Unit @@ -6074,7 +6292,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_profile Label profiles @@ -6084,70 +6302,70 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:209 Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:180 - + tree.tools.edit.part Part - Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:227 + 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 Show all parts - Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:233 + Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:232 Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:203 - + tree.tools.show.all_attachments Attachments - Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:240 + Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:239 Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:210 new - + tree.tools.show.statistics Statistics - Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:259 + Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:258 Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:229 - + tree.tools.system.users Users - Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:265 + Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:264 Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:235 - + tree.tools.system.groups Groups - Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:272 + Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:271 Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:242 new - + tree.tools.system.event_log Event log @@ -6158,7 +6376,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\Services\Trees\TreeViewGenerator.php:95 src\Services\TreeBuilder.php:124 - + entity.tree.new New Element @@ -6168,7 +6386,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:34 obsolete - + attachment.external_file External file @@ -6178,7 +6396,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:62 obsolete - + attachment.edit Edit @@ -6189,7 +6407,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can templates\base.html.twig:88 obsolete - + barcode.scan Scan Barcode @@ -6200,7 +6418,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can src\Form\UserSettingsType.php:49 obsolete - + user.theme.label Theme @@ -6211,7 +6429,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can src\Form\UserSettingsType.php:50 obsolete - + user_settings.theme.placeholder Serverwide Theme @@ -6221,7 +6439,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\Form\Type\SIUnitType.php:141 obsolete - + M M @@ -6231,7 +6449,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\Form\Type\SIUnitType.php:141 obsolete - + k k @@ -6247,7 +6465,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\Form\Type\SIUnitType.php:141 obsolete - + m m @@ -6257,7 +6475,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can Part-DB1\src\Form\Type\SIUnitType.php:141 obsolete - + µ µ @@ -6268,7 +6486,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can new obsolete - + log.user_login.ip IP @@ -6282,7 +6500,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can new obsolete - + log.undo_mode.undo Change undone @@ -6296,7 +6514,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can new obsolete - + log.undo_mode.revert Element reverted @@ -6307,7 +6525,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can new obsolete - + log.element_created.original_instock Old instock @@ -6318,7 +6536,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can new obsolete - + log.element_deleted.old_name Old name @@ -6329,7 +6547,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can new obsolete - + log.element_edited.changed_fields Changed fields @@ -6340,7 +6558,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can new obsolete - + log.instock_changed.comment Comment @@ -6351,7 +6569,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can new obsolete - + log.collection_deleted.deleted Deleted element: @@ -6362,7 +6580,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can obsolete obsolete - + go.exclamation Go! @@ -6373,7 +6591,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can obsolete obsolete - + language.english English @@ -6384,7 +6602,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can obsolete obsolete - + language.german German @@ -6394,7 +6612,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can obsolete obsolete - + flash.password_change_needed Password change needed! @@ -6404,7 +6622,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can obsolete obsolete - + attachment.table.type Attachment type @@ -6414,7 +6632,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can obsolete obsolete - + attachment.table.element Associated element @@ -6424,7 +6642,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can obsolete obsolete - + attachment.edit.isPicture Picture? @@ -6434,7 +6652,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can obsolete obsolete - + attachment.edit.is3DModel 3D model? @@ -6444,7 +6662,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can obsolete obsolete - + attachment.edit.isBuiltin Builtin? @@ -6454,7 +6672,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can obsolete obsolete - + category.edit.default_comment.placeholder e.g. useful for switching @@ -6464,7 +6682,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can obsolete obsolete - + tfa_backup.regenerate_codes Generate new backup codes @@ -6474,7 +6692,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can obsolete obsolete - + validator.noneofitschild.self A element can not be its own parent. @@ -6484,7 +6702,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can obsolete obsolete - + validator.noneofitschild.children The parent can not be one of the children of itself. @@ -6494,7 +6712,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can obsolete obsolete - + validator.isSelectable The element must be selectable. @@ -6504,7 +6722,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can obsolete obsolete - + validator.part_lot.location_full.no_increasment The storage location was marked as full, so you can not increase the instock amount. (New amount max. {{ old_amount }}) @@ -6514,7 +6732,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can obsolete obsolete - + validator.part_lot.location_full The storage location was marked as full, so you can not add a new part to it. @@ -6524,7 +6742,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can obsolete obsolete - + validator.part_lot.only_existing The storage location was marked as "only existing", so you can not add new part to it. @@ -6534,7 +6752,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can obsolete obsolete - + validator.part_lot.single_part The storage location was marked as "single part", so you can not add a new part to it. @@ -6544,7 +6762,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can obsolete obsolete - + m_status.active.help The part is currently and in forseeable future in production @@ -6554,7 +6772,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can obsolete obsolete - + m_status.announced.help The part was announced but is not available yet. @@ -6564,7 +6782,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can obsolete obsolete - + m_status.discontinued.help The part is discontinued and not produced anymore. @@ -6574,7 +6792,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can obsolete obsolete - + m_status.eol.help The product has reached its end-of-life and the production will be stopped soon. @@ -6584,7 +6802,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can obsolete obsolete - + m_status.nrfnd.help The part is currently in production but is not recommended for new designs. @@ -6594,7 +6812,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can obsolete obsolete - + m_status.unknown.help The manufacturing status of the part is not known. @@ -6604,7 +6822,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can obsolete obsolete - + flash.success Success @@ -6614,7 +6832,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can obsolete obsolete - + flash.error Error @@ -6624,7 +6842,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can obsolete obsolete - + flash.warning Warning @@ -6634,7 +6852,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can obsolete obsolete - + flash.notice Notice @@ -6644,7 +6862,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can obsolete obsolete - + flash.info Info @@ -6654,7 +6872,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can obsolete obsolete - + validator.noLockout You can not withdraw yourself the "change permission" permission, to prevent that you lockout yourself accidentally. @@ -6664,7 +6882,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can obsolete obsolete - + attachment_type.edit.filetype_filter Allowed file extensions. @@ -6674,7 +6892,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can obsolete obsolete - + attachment_type.edit.filetype_filter.help You can specify a comma separated list of file extension or mimetypes, which an uploaded file must have when assigned to this attachment type. To allow all supported image files you can use image/*. @@ -6684,7 +6902,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can obsolete obsolete - + attachment_type.edit.filetype_filter.placeholder e.g. .txt, application/pdf, image/* @@ -6695,7 +6913,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can obsolete obsolete - + part.name.placeholder e.g. BC547 @@ -6705,7 +6923,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can obsolete obsolete - + entity.edit.not_selectable Not selectable @@ -6715,7 +6933,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can obsolete obsolete - + entity.edit.not_selectable.help If this option is activated, this element can not be assigned to a part property. Useful if this element is just used for grouping. @@ -6725,7 +6943,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can obsolete obsolete - + bbcode.hint You can use BBCode here (e.g. [b]Bold[/b]) @@ -6735,7 +6953,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can obsolete obsolete - + entity.create Create element @@ -6745,7 +6963,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can obsolete obsolete - + entity.edit.save Save @@ -6755,7 +6973,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can obsolete obsolete - + category.edit.disable_footprints Disable footprints @@ -6765,7 +6983,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can obsolete obsolete - + category.edit.disable_footprints.help If this option is activated, the footprint property is disabled for all parts with this category. @@ -6775,7 +6993,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can obsolete obsolete - + category.edit.disable_manufacturers Disable manufacturers @@ -6785,7 +7003,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can obsolete obsolete - + category.edit.disable_manufacturers.help If this option is activated, the manufacturer property is disabled for all parts with this category. @@ -6795,7 +7013,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can obsolete obsolete - + category.edit.disable_autodatasheets Disable automatic datasheet links @@ -6805,7 +7023,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can obsolete obsolete - + category.edit.disable_autodatasheets.help If this option is activated, no automatic links to datasheets are created for parts with this category. @@ -6815,7 +7033,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can obsolete obsolete - + category.edit.disable_properties Disable properties @@ -6825,7 +7043,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can obsolete obsolete - + category.edit.disable_properties.help If this option is activated, the part properties are disabled for parts with this category. @@ -6835,7 +7053,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can obsolete obsolete - + category.edit.partname_hint Part name hint @@ -6845,7 +7063,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can obsolete obsolete - + category.edit.partname_hint.placeholder e.g. 100nF @@ -6855,7 +7073,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can obsolete obsolete - + category.edit.partname_regex Name filter @@ -6865,7 +7083,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can obsolete obsolete - + category.edit.default_description Default description @@ -6875,7 +7093,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can obsolete obsolete - + category.edit.default_description.placeholder e.g. Capacitor, 10mm x 10mm, SMD @@ -6885,7 +7103,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can obsolete obsolete - + category.edit.default_comment Default comment @@ -6895,7 +7113,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can obsolete obsolete - + company.edit.address Address @@ -6905,7 +7123,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can obsolete obsolete - + company.edit.address.placeholder e.g. Examplestreet 314 Exampletown @@ -6916,7 +7134,7 @@ Exampletown obsolete obsolete - + company.edit.phone_number Phone number @@ -6926,7 +7144,7 @@ Exampletown obsolete obsolete - + company.edit.phone_number.placeholder +49 12345 6789 @@ -6936,7 +7154,7 @@ Exampletown obsolete obsolete - + company.edit.fax_number Fax number @@ -6946,7 +7164,7 @@ Exampletown obsolete obsolete - + company.edit.email Email @@ -6956,7 +7174,7 @@ Exampletown obsolete obsolete - + company.edit.email.placeholder e.g. contact@foo.bar @@ -6966,7 +7184,7 @@ Exampletown obsolete obsolete - + company.edit.website Website @@ -6976,7 +7194,7 @@ Exampletown obsolete obsolete - + company.edit.website.placeholder https://www.foo.bar @@ -6986,7 +7204,7 @@ Exampletown obsolete obsolete - + company.edit.auto_product_url Product url @@ -6996,7 +7214,7 @@ Exampletown obsolete obsolete - + company.edit.auto_product_url.help This field is used to determine an link to the part on the company page. %PARTNR% will be replaced with the order number. @@ -7006,7 +7224,7 @@ Exampletown obsolete obsolete - + company.edit.auto_product_url.placeholder https://foo.bar/product/%PARTNR% @@ -7016,7 +7234,7 @@ Exampletown obsolete obsolete - + currency.edit.iso_code ISO code @@ -7026,7 +7244,7 @@ Exampletown obsolete obsolete - + currency.edit.exchange_rate Exchange rate @@ -7036,7 +7254,7 @@ Exampletown obsolete obsolete - + footprint.edit.3d_model 3D model @@ -7046,7 +7264,7 @@ Exampletown obsolete obsolete - + mass_creation.lines Input @@ -7056,7 +7274,7 @@ Exampletown obsolete obsolete - + mass_creation.lines.placeholder Element 1 Element 2 @@ -7068,7 +7286,7 @@ Element 3 obsolete obsolete - + entity.mass_creation.btn Create @@ -7078,7 +7296,7 @@ Element 3 obsolete obsolete - + measurement_unit.edit.is_integer Is integer @@ -7088,7 +7306,7 @@ Element 3 obsolete obsolete - + measurement_unit.edit.is_integer.help If this option is activated, all values with this unit will be rounded to whole numbers. @@ -7098,7 +7316,7 @@ Element 3 obsolete obsolete - + measurement_unit.edit.use_si_prefix Use SI prefix @@ -7108,7 +7326,7 @@ Element 3 obsolete obsolete - + measurement_unit.edit.use_si_prefix.help If this option is activated, values are outputted with SI prefixes (e.g. 1,2kg instead of 1200g) @@ -7118,7 +7336,7 @@ Element 3 obsolete obsolete - + measurement_unit.edit.unit_symbol Unit symbol @@ -7128,7 +7346,7 @@ Element 3 obsolete obsolete - + measurement_unit.edit.unit_symbol.placeholder e.g. m @@ -7138,7 +7356,7 @@ Element 3 obsolete obsolete - + storelocation.edit.is_full.label Storelocation full @@ -7148,7 +7366,7 @@ Element 3 obsolete obsolete - + storelocation.edit.is_full.help If this option is selected, it is neither possible to add new parts to this storelocation or to increase the amount of existing parts. @@ -7158,7 +7376,7 @@ Element 3 obsolete obsolete - + storelocation.limit_to_existing.label Limit to existing parts @@ -7168,7 +7386,7 @@ Element 3 obsolete obsolete - + storelocation.limit_to_existing.help If this option is activated, it is not possible to add new parts to this storelocation, but the amount of existing parts can be increased. @@ -7178,7 +7396,7 @@ Element 3 obsolete obsolete - + storelocation.only_single_part.label Only single part @@ -7188,7 +7406,7 @@ Element 3 obsolete obsolete - + storelocation.only_single_part.help If this option is activated, only a single part (with every amount) can be assigned to this store location. Useful for small SMD boxes or feeders. @@ -7198,7 +7416,7 @@ Element 3 obsolete obsolete - + storelocation.storage_type.label Storage type @@ -7208,7 +7426,7 @@ Element 3 obsolete obsolete - + storelocation.storage_type.help You can select a measurement unit here, which a part must have to be able to be assigned to this storage location @@ -7218,7 +7436,7 @@ Element 3 obsolete obsolete - + supplier.edit.default_currency Default currency @@ -7228,7 +7446,7 @@ Element 3 obsolete obsolete - + supplier.shipping_costs.label Shipping Costs @@ -7238,7 +7456,7 @@ Element 3 obsolete obsolete - + user.username.placeholder e.g. j.doe @@ -7248,7 +7466,7 @@ Element 3 obsolete obsolete - + user.firstName.placeholder e.g John @@ -7258,7 +7476,7 @@ Element 3 obsolete obsolete - + user.lastName.placeholder e.g. Doe @@ -7268,7 +7486,7 @@ Element 3 obsolete obsolete - + user.email.placeholder j.doe@ecorp.com @@ -7278,7 +7496,7 @@ Element 3 obsolete obsolete - + user.department.placeholder e.g. Development @@ -7288,7 +7506,7 @@ Element 3 obsolete obsolete - + user.settings.pw_new.label New password @@ -7298,7 +7516,7 @@ Element 3 obsolete obsolete - + user.settings.pw_confirm.label Confirm new password @@ -7308,7 +7526,7 @@ Element 3 obsolete obsolete - + user.edit.needs_pw_change User needs to change password @@ -7318,7 +7536,7 @@ Element 3 obsolete obsolete - + user.edit.user_disabled User disbaled (no login possible) @@ -7328,7 +7546,7 @@ Element 3 obsolete obsolete - + user.create Create user @@ -7338,7 +7556,7 @@ Element 3 obsolete obsolete - + user.edit.save Save @@ -7348,7 +7566,7 @@ Element 3 obsolete obsolete - + entity.edit.reset Discard changes @@ -7359,7 +7577,7 @@ Element 3 obsolete obsolete - + part.withdraw.caption: Withdraw parts: @@ -7370,7 +7588,7 @@ Element 3 obsolete obsolete - + part.withdraw.btn Withdraw @@ -7381,7 +7599,7 @@ Element 3 obsolete obsolete - + part.withdraw.comment: Comment/Purpose @@ -7392,7 +7610,7 @@ Element 3 obsolete obsolete - + part.add.caption Add parts @@ -7403,7 +7621,7 @@ Element 3 obsolete obsolete - + part.add.btn Add @@ -7414,7 +7632,7 @@ Element 3 obsolete obsolete - + part.add.comment Comment/Purpose @@ -7425,7 +7643,7 @@ Element 3 obsolete obsolete - + admin.comment Comment @@ -7436,7 +7654,7 @@ Element 3 obsolete obsolete - + manufacturer_url.label Manufacturer link @@ -7447,7 +7665,7 @@ Element 3 obsolete obsolete - + part.description.placeholder e.g. NPN 45V 0,1A 0,5W @@ -7458,7 +7676,7 @@ Element 3 obsolete obsolete - + part.instock.placeholder e.g. 10 @@ -7469,7 +7687,7 @@ Element 3 obsolete obsolete - + part.mininstock.placeholder e.g. 5 @@ -7479,7 +7697,7 @@ Element 3 obsolete obsolete - + homepage.basedOn Based on work of @@ -7489,7 +7707,7 @@ Element 3 obsolete obsolete - + homepage.others and others @@ -7499,7 +7717,7 @@ Element 3 obsolete obsolete - + part.order.price_per Price per @@ -7509,7 +7727,7 @@ Element 3 obsolete obsolete - + part.withdraw.caption Withdraw parts @@ -7519,7 +7737,7 @@ Element 3 obsolete obsolete - + datatable.datatable.lengthMenu _MENU_ @@ -7529,7 +7747,7 @@ Element 3 obsolete obsolete - + perm.group.parts Parts @@ -7539,7 +7757,7 @@ Element 3 obsolete obsolete - + perm.group.structures Data structures @@ -7549,7 +7767,7 @@ Element 3 obsolete obsolete - + perm.group.system System @@ -7559,7 +7777,7 @@ Element 3 obsolete obsolete - + perm.parts Common @@ -7569,7 +7787,7 @@ Element 3 obsolete obsolete - + perm.read View @@ -7579,7 +7797,7 @@ Element 3 obsolete obsolete - + perm.edit Edit @@ -7589,7 +7807,7 @@ Element 3 obsolete obsolete - + perm.create Create @@ -7599,7 +7817,7 @@ Element 3 obsolete obsolete - + perm.part.move Change category @@ -7609,7 +7827,7 @@ Element 3 obsolete obsolete - + perm.delete Delete @@ -7619,7 +7837,7 @@ Element 3 obsolete obsolete - + perm.part.search Search @@ -7629,7 +7847,7 @@ Element 3 obsolete obsolete - + perm.part.all_parts List all parts @@ -7639,7 +7857,7 @@ Element 3 obsolete obsolete - + perm.part.no_price_parts List parts without price infos @@ -7649,7 +7867,7 @@ Element 3 obsolete obsolete - + perm.part.obsolete_parts List obsolete parts @@ -7659,7 +7877,7 @@ Element 3 obsolete obsolete - + perm.part.unknown_instock_parts Show parts with unknown instock @@ -7669,7 +7887,7 @@ Element 3 obsolete obsolete - + perm.part.change_favorite Change favorite status @@ -7679,7 +7897,7 @@ Element 3 obsolete obsolete - + perm.part.show_favorite List favorite parts @@ -7689,7 +7907,7 @@ Element 3 obsolete obsolete - + perm.part.show_last_edit_parts Show last edited/added parts @@ -7699,7 +7917,7 @@ Element 3 obsolete obsolete - + perm.part.show_users Show last modifying user @@ -7709,7 +7927,7 @@ Element 3 obsolete obsolete - + perm.part.show_history Show history @@ -7719,7 +7937,7 @@ Element 3 obsolete obsolete - + perm.part.name Name @@ -7729,7 +7947,7 @@ Element 3 obsolete obsolete - + perm.part.description Description @@ -7739,7 +7957,7 @@ Element 3 obsolete obsolete - + perm.part.instock Instock @@ -7749,7 +7967,7 @@ Element 3 obsolete obsolete - + perm.part.mininstock Minimum instock @@ -7759,7 +7977,7 @@ Element 3 obsolete obsolete - + perm.part.comment Comment @@ -7769,7 +7987,7 @@ Element 3 obsolete obsolete - + perm.part.storelocation Storelocation @@ -7779,7 +7997,7 @@ Element 3 obsolete obsolete - + perm.part.manufacturer Manufacturer @@ -7789,7 +8007,7 @@ Element 3 obsolete obsolete - + perm.part.orderdetails Order informations @@ -7799,7 +8017,7 @@ Element 3 obsolete obsolete - + perm.part.prices Prices @@ -7809,7 +8027,7 @@ Element 3 obsolete obsolete - + perm.part.attachments File attachments @@ -7819,7 +8037,7 @@ Element 3 obsolete obsolete - + perm.part.order Orders @@ -7829,7 +8047,7 @@ Element 3 obsolete obsolete - + perm.storelocations Storelocations @@ -7839,7 +8057,7 @@ Element 3 obsolete obsolete - + perm.move Move @@ -7849,7 +8067,7 @@ Element 3 obsolete obsolete - + perm.list_parts List parts @@ -7859,7 +8077,7 @@ Element 3 obsolete obsolete - + perm.part.footprints Footprints @@ -7869,7 +8087,7 @@ Element 3 obsolete obsolete - + perm.part.categories Categories @@ -7879,7 +8097,7 @@ Element 3 obsolete obsolete - + perm.part.supplier Suppliers @@ -7889,7 +8107,7 @@ Element 3 obsolete obsolete - + perm.part.manufacturers Manufacturers @@ -7899,7 +8117,7 @@ Element 3 obsolete obsolete - + perm.part.devices Devices @@ -7909,7 +8127,7 @@ Element 3 obsolete obsolete - + perm.part.attachment_types Attachment types @@ -7919,7 +8137,7 @@ Element 3 obsolete obsolete - + perm.tools.import Import @@ -7929,7 +8147,7 @@ Element 3 obsolete obsolete - + perm.tools.labels Labels @@ -7939,7 +8157,7 @@ Element 3 obsolete obsolete - + perm.tools.calculator Resistor calculator @@ -7949,7 +8167,7 @@ Element 3 obsolete obsolete - + perm.tools.footprints Footprints @@ -7959,7 +8177,7 @@ Element 3 obsolete obsolete - + perm.tools.ic_logos IC logos @@ -7969,7 +8187,7 @@ Element 3 obsolete obsolete - + perm.tools.statistics Statistics @@ -7979,7 +8197,7 @@ Element 3 obsolete obsolete - + perm.edit_permissions Edit permissions @@ -7989,7 +8207,7 @@ Element 3 obsolete obsolete - + perm.users.edit_user_name Edit user name @@ -7999,7 +8217,7 @@ Element 3 obsolete obsolete - + perm.users.edit_change_group Change group @@ -8009,7 +8227,7 @@ Element 3 obsolete obsolete - + perm.users.edit_infos Edit infos @@ -8019,7 +8237,7 @@ Element 3 obsolete obsolete - + perm.users.edit_permissions Edit permissions @@ -8029,7 +8247,7 @@ Element 3 obsolete obsolete - + perm.users.set_password Set password @@ -8039,7 +8257,7 @@ Element 3 obsolete obsolete - + perm.users.change_user_settings Change user settings @@ -8049,7 +8267,7 @@ Element 3 obsolete obsolete - + perm.database.see_status Show status @@ -8059,7 +8277,7 @@ Element 3 obsolete obsolete - + perm.database.update_db Update DB @@ -8069,7 +8287,7 @@ Element 3 obsolete obsolete - + perm.database.read_db_settings Read DB settings @@ -8079,7 +8297,7 @@ Element 3 obsolete obsolete - + perm.database.write_db_settings Write DB settings @@ -8089,7 +8307,7 @@ Element 3 obsolete obsolete - + perm.config.read_config Read config @@ -8099,7 +8317,7 @@ Element 3 obsolete obsolete - + perm.config.edit_config Edit config @@ -8109,7 +8327,7 @@ Element 3 obsolete obsolete - + perm.config.server_info Server info @@ -8119,7 +8337,7 @@ Element 3 obsolete obsolete - + perm.config.use_debug Use debug tools @@ -8129,7 +8347,7 @@ Element 3 obsolete obsolete - + perm.show_logs Show logs @@ -8139,7 +8357,7 @@ Element 3 obsolete obsolete - + perm.delete_logs Delete logs @@ -8149,7 +8367,7 @@ Element 3 obsolete obsolete - + perm.self.edit_infos Edit infos @@ -8159,7 +8377,7 @@ Element 3 obsolete obsolete - + perm.self.edit_username Edit username @@ -8169,7 +8387,7 @@ Element 3 obsolete obsolete - + perm.self.show_permissions View permissions @@ -8179,7 +8397,7 @@ Element 3 obsolete obsolete - + perm.self.show_logs Show own log entries @@ -8189,7 +8407,7 @@ Element 3 obsolete obsolete - + perm.self.create_labels Create labels @@ -8199,7 +8417,7 @@ Element 3 obsolete obsolete - + perm.self.edit_options Edit options @@ -8209,7 +8427,7 @@ Element 3 obsolete obsolete - + perm.self.delete_profiles Delete profiles @@ -8219,7 +8437,7 @@ Element 3 obsolete obsolete - + perm.self.edit_profiles Edit profiles @@ -8229,7 +8447,7 @@ Element 3 obsolete obsolete - + perm.part.tools Tools @@ -8239,7 +8457,7 @@ Element 3 obsolete obsolete - + perm.groups Groups @@ -8249,7 +8467,7 @@ Element 3 obsolete obsolete - + perm.users Users @@ -8259,7 +8477,7 @@ Element 3 obsolete obsolete - + perm.database Database @@ -8269,7 +8487,7 @@ Element 3 obsolete obsolete - + perm.config Configuration @@ -8279,7 +8497,7 @@ Element 3 obsolete obsolete - + perm.system System @@ -8289,7 +8507,7 @@ Element 3 obsolete obsolete - + perm.device_parts Device parts @@ -8299,7 +8517,7 @@ Element 3 obsolete obsolete - + perm.self Own user @@ -8309,7 +8527,7 @@ Element 3 obsolete obsolete - + perm.labels Labels @@ -8319,7 +8537,7 @@ Element 3 obsolete obsolete - + perm.part.category Category @@ -8329,7 +8547,7 @@ Element 3 obsolete obsolete - + perm.part.minamount Minimum amount @@ -8339,7 +8557,7 @@ Element 3 obsolete obsolete - + perm.part.footprint Footprint @@ -8349,7 +8567,7 @@ Element 3 obsolete obsolete - + perm.part.mpn MPN @@ -8359,7 +8577,7 @@ Element 3 obsolete obsolete - + perm.part.status Manufacturing status @@ -8369,7 +8587,7 @@ Element 3 obsolete obsolete - + perm.part.tags Tags @@ -8379,7 +8597,7 @@ Element 3 obsolete obsolete - + perm.part.unit Part unit @@ -8389,7 +8607,7 @@ Element 3 obsolete obsolete - + perm.part.mass Mass @@ -8399,7 +8617,7 @@ Element 3 obsolete obsolete - + perm.part.lots Part lots @@ -8409,7 +8627,7 @@ Element 3 obsolete obsolete - + perm.show_users Show last modifying user @@ -8419,7 +8637,7 @@ Element 3 obsolete obsolete - + perm.currencies Currencies @@ -8429,7 +8647,7 @@ Element 3 obsolete obsolete - + perm.measurement_units Measurement unit @@ -8439,7 +8657,7 @@ Element 3 obsolete obsolete - + user.settings.pw_old.label Old password @@ -8449,7 +8667,7 @@ Element 3 obsolete obsolete - + pw_reset.submit Reset password @@ -8459,7 +8677,7 @@ Element 3 obsolete obsolete - + u2f_two_factor Security key (U2F) @@ -8469,7 +8687,7 @@ Element 3 obsolete obsolete - + google Google @@ -8479,7 +8697,7 @@ Element 3 obsolete obsolete - + tfa.provider.u2f_two_factor Security key (U2F) @@ -8489,7 +8707,7 @@ Element 3 obsolete obsolete - + tfa.provider.google Authenticator app @@ -8499,7 +8717,7 @@ Element 3 obsolete obsolete - + Login successful Login successful @@ -8509,7 +8727,7 @@ Element 3 obsolete obsolete - + log.type.exception Unhandled exception (obsolete) @@ -8519,7 +8737,7 @@ Element 3 obsolete obsolete - + log.type.user_login User login @@ -8529,7 +8747,7 @@ Element 3 obsolete obsolete - + log.type.user_logout User logout @@ -8539,7 +8757,7 @@ Element 3 obsolete obsolete - + log.type.unknown Unknown @@ -8549,7 +8767,7 @@ Element 3 obsolete obsolete - + log.type.element_created Element created @@ -8559,7 +8777,7 @@ Element 3 obsolete obsolete - + log.type.element_edited Element edited @@ -8569,7 +8787,7 @@ Element 3 obsolete obsolete - + log.type.element_deleted Element deleted @@ -8579,7 +8797,7 @@ Element 3 obsolete obsolete - + log.type.database_updated Database updated @@ -8588,7 +8806,7 @@ Element 3 obsolete - + perm.revert_elements Revert element @@ -8597,7 +8815,7 @@ Element 3 obsolete - + perm.show_history Show history @@ -8606,7 +8824,7 @@ Element 3 obsolete - + perm.tools.lastActivity Show last activity @@ -8615,7 +8833,7 @@ Element 3 obsolete - + perm.tools.timeTravel Show old element versions (time travel) @@ -8624,7 +8842,7 @@ Element 3 obsolete - + log.type. __log.type. @@ -8633,7 +8851,7 @@ Element 3 obsolete - + tfa_u2f.key_added_successful Security key added successfully. @@ -8642,7 +8860,7 @@ Element 3 obsolete - + Username Username @@ -8651,7 +8869,7 @@ Element 3 obsolete - + log.type.security.google_disabled Authenticator App disabled @@ -8660,7 +8878,7 @@ Element 3 obsolete - + log.type.security.u2f_removed Security key removed @@ -8669,7 +8887,7 @@ Element 3 obsolete - + log.type.security.u2f_added Security key added @@ -8678,7 +8896,7 @@ Element 3 obsolete - + log.type.security.backup_keys_reset Backup keys regenerated @@ -8687,7 +8905,7 @@ Element 3 obsolete - + log.type.security.google_enabled Authenticator App enabled @@ -8696,7 +8914,7 @@ Element 3 obsolete - + log.type.security.password_changed Password changed @@ -8705,7 +8923,7 @@ Element 3 obsolete - + log.type.security.trusted_device_reset Trusted devices resetted @@ -8714,7 +8932,7 @@ Element 3 obsolete - + log.type.collection_element_deleted Element of Collection deleted @@ -8723,7 +8941,7 @@ Element 3 obsolete - + log.type.security.password_reset Password reset @@ -8732,7 +8950,7 @@ Element 3 obsolete - + log.type.security.2fa_admin_reset Two Factor Reset by Administrator @@ -8741,7 +8959,7 @@ Element 3 obsolete - + log.type.user_not_allowed Unauthorised access attempt @@ -8750,7 +8968,7 @@ Element 3 obsolete - + log.database_updated.success Sucess @@ -8759,7 +8977,7 @@ Element 3 obsolete - + label_options.barcode_type.2D 2D @@ -8768,43 +8986,61 @@ Element 3 obsolete - + label_options.barcode_type.1D 1D - + + obsolete + + perm.part.parameters Parameters - + + obsolete + + perm.attachment_show_private View private attachments - + + obsolete + + perm.tools.label_scanner Label scanner - + + obsolete + + perm.self.read_profiles Read profiles - + + obsolete + + perm.self.create_profiles Create profiles - + + obsolete + + perm.labels.use_twig Use twig mode