+ {% include "Parts/info/_specifications.html.twig" %}
+
+
{% include "Parts/info/_extended_infos.html.twig" %}
diff --git a/tests/Entity/Parameters/PartParameterTest.php b/tests/Entity/Parameters/PartParameterTest.php
new file mode 100644
index 00000000..1d04b1b0
--- /dev/null
+++ b/tests/Entity/Parameters/PartParameterTest.php
@@ -0,0 +1,115 @@
+.
+ */
+
+namespace App\Tests\Entity\Parameters;
+
+use App\Entity\Parameters\PartParameter;
+use PHPUnit\Framework\TestCase;
+
+class PartParameterTest extends TestCase
+{
+
+ public function valueWithUnitDataProvider(): array
+ {
+ return [
+ ['1', 1.0, ''],
+ ['1 V', 1.0, 'V'],
+ ['1.23', 1.23, ''],
+ ['1.23 V', 1.23, 'V'],
+ ];
+ }
+
+ public function formattedValueDataProvider(): array
+ {
+ return [
+ ['Text Test', null, null, null, 'V', 'Text Test'],
+ ['10.23 V', null, 10.23, null, 'V', ''],
+ ['10.23 V [Text]', null, 10.23, null, 'V', 'Text'],
+ ['max. 10.23 V', null, null, 10.23, 'V', ''],
+ ['max. 10.23 [Text]', null, null, 10.23, '', 'Text'],
+ ['min. 10.23 V', 10.23, null, null, 'V', ''],
+ ['10.23 V ... 11 V', 10.23, null, 11, 'V', ''],
+ ['10.23 V (9 V ... 11 V)', 9, 10.23, 11, 'V', ''],
+ ['10.23 V (9 V ... 11 V) [Test]', 9, 10.23, 11, 'V', 'Test'],
+ ];
+ }
+
+ /**
+ * @dataProvider valueWithUnitDataProvider
+ * @param string $expected
+ * @param float $value
+ * @param string $unit
+ */
+ public function testGetValueMinWithUnit(string $expected, float $value, string $unit): void
+ {
+ $param = new PartParameter();
+ $param->setUnit($unit);
+ $param->setValueMin($value);
+ $this->assertSame($expected, $param->getValueMinWithUnit());
+ }
+
+ /**
+ * @dataProvider valueWithUnitDataProvider
+ * @param string $expected
+ * @param float $value
+ * @param string $unit
+ */
+ public function testGetValueMaxWithUnit(string $expected, float $value, string $unit): void
+ {
+ $param = new PartParameter();
+ $param->setUnit($unit);
+ $param->setValueMax($value);
+ $this->assertSame($expected, $param->getValueMaxWithUnit());
+ }
+
+ /**
+ * @dataProvider valueWithUnitDataProvider
+ * @param string $expected
+ * @param float $value
+ * @param string $unit
+ */
+ public function testGetValueTypicalWithUnit(string $expected, float $value, string $unit): void
+ {
+ $param = new PartParameter();
+ $param->setUnit($unit);
+ $param->setValueTypical($value);
+ $this->assertSame($expected, $param->getValueTypicalWithUnit());
+ }
+
+ /**
+ * @dataProvider formattedValueDataProvider
+ * @param string $expected
+ * @param float $min
+ * @param float $typical
+ * @param float $max
+ * @param string $unit
+ * @param string $text
+ */
+ public function testGetFormattedValue(string $expected, ?float $min, ?float $typical, ?float $max, string $unit, string $text): void
+ {
+ $param = new PartParameter();
+ $param->setUnit($unit);
+ $param->setValueMin($min);
+ $param->setValueTypical($typical);
+ $param->setValueMax($max);
+ $param->setValueText($text);
+ $this->assertSame($expected, $param->getFormattedValue());
+ }
+}
diff --git a/translations/messages.de.xlf b/translations/messages.de.xlf
index 44cfad6c..7386c77f 100644
--- a/translations/messages.de.xlf
+++ b/translations/messages.de.xlf
@@ -7942,7 +7942,7 @@ Element 3
specifications.unit
- Unit
+ Einheit
@@ -7951,5 +7951,47 @@ Element 3
Text
+
+
+ parameters.name.placeholder
+ z.B. DC Current Gain
+
+
+
+
+ parameters.symbol.placeholder
+ z.B. h_{FE}
+
+
+
+
+ parameters.min.placeholder
+ z.B. 100
+
+
+
+
+ parameters.typical.placeholder
+ z.B. 200
+
+
+
+
+ parameters.max.placeholder
+ z.B. 350
+
+
+
+
+ parameters.unit.placeholder
+ z.B. V
+
+
+
+
+ parameters.text.placeholder
+ z.B. Test Specifications
+
+
diff --git a/translations/messages.en.xlf b/translations/messages.en.xlf
index d36b8b02..d9d3ca4a 100644
--- a/translations/messages.en.xlf
+++ b/translations/messages.en.xlf
@@ -7,7 +7,7 @@
Part-DB1\templates\AdminPages\AttachmentTypeAdmin.html.twig:4
templates\AdminPages\AttachmentTypeAdmin.html.twig:4
-
+
attachment_type.caption
File types for attachments
@@ -26,7 +26,7 @@
templates\base.html.twig:197
templates\base.html.twig:225
-
+
category.labelp
Categories
@@ -39,7 +39,7 @@
Part-DB1\templates\AdminPages\StorelocationAdmin.html.twig:11
templates\AdminPages\CategoryAdmin.html.twig:8
-
+
admin.options
Options
@@ -52,7 +52,7 @@
Part-DB1\templates\AdminPages\CompanyAdminBase.html.twig:15
templates\AdminPages\CategoryAdmin.html.twig:9
-
+
admin.advanced
Advanced
@@ -62,7 +62,7 @@
Part-DB1\templates\AdminPages\CurrencyAdmin.html.twig:4
Part-DB1\templates\AdminPages\CurrencyAdmin.html.twig:4
-
+
currency.caption
Currency
@@ -72,7 +72,7 @@
Part-DB1\templates\AdminPages\CurrencyAdmin.html.twig:12
Part-DB1\templates\AdminPages\CurrencyAdmin.html.twig:12
-
+
currency.iso_code.caption
ISO code
@@ -82,7 +82,7 @@
Part-DB1\templates\AdminPages\CurrencyAdmin.html.twig:15
Part-DB1\templates\AdminPages\CurrencyAdmin.html.twig:15
-
+
currency.symbol.caption
Currency symbol
@@ -93,7 +93,7 @@
Part-DB1\templates\AdminPages\DeviceAdmin.html.twig:4
templates\AdminPages\DeviceAdmin.html.twig:4
-
+
device.caption
Device
@@ -116,7 +116,7 @@
templates\base.html.twig:206
templates\base.html.twig:237
-
+
search.placeholder
Search
@@ -132,7 +132,7 @@
templates\base.html.twig:193
templates\base.html.twig:221
-
+
expandAll
Expand All
@@ -148,7 +148,7 @@
templates\base.html.twig:194
templates\base.html.twig:222
-
+
reduceAll
Reduce All
@@ -159,7 +159,7 @@
Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:45
templates\AdminPages\EntityAdminBase.html.twig:35
-
+
edit.caption
Edit element "%name"
@@ -170,7 +170,7 @@
Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:50
templates\AdminPages\EntityAdminBase.html.twig:37
-
+
new.caption
New element
@@ -182,9 +182,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 +193,7 @@
Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:60
templates\AdminPages\EntityAdminBase.html.twig:42
-
+
standard.label
Properties
@@ -204,7 +204,7 @@
Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:61
templates\AdminPages\EntityAdminBase.html.twig:43
-
+
infos.label
Infos
@@ -215,7 +215,7 @@
Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:63
new
-
+
history.label
History
@@ -226,7 +226,7 @@
Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:66
templates\AdminPages\EntityAdminBase.html.twig:45
-
+
export.label
Export
@@ -237,7 +237,7 @@
Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:68
templates\AdminPages\EntityAdminBase.html.twig:47
-
+
import_export.label
Import / Export
@@ -247,7 +247,7 @@
Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:69
Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:69
-
+
mass_creation.label
Mass creation
@@ -258,7 +258,7 @@
Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:82
templates\AdminPages\EntityAdminBase.html.twig:59
-
+
admin.common
Common
@@ -268,7 +268,7 @@
Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:86
Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:86
-
+
admin.attachments
Attachments
@@ -279,7 +279,7 @@
Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:167
templates\AdminPages\EntityAdminBase.html.twig:142
-
+
export_all.label
Export all elements
@@ -289,7 +289,7 @@
Part-DB1\templates\AdminPages\EntityAdminBase.html.twig:173
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.
@@ -304,7 +304,7 @@
templates\base.html.twig:199
templates\base.html.twig:227
-
+
footprint.labelp
Footprints
@@ -314,7 +314,7 @@
Part-DB1\templates\AdminPages\GroupAdmin.html.twig:4
Part-DB1\templates\AdminPages\GroupAdmin.html.twig:4
-
+
group.edit.caption
Groups
@@ -326,7 +326,7 @@
Part-DB1\templates\AdminPages\GroupAdmin.html.twig:9
Part-DB1\templates\AdminPages\UserAdmin.html.twig:16
-
+
user.edit.permissions
Permissions
@@ -337,7 +337,7 @@
Part-DB1\templates\AdminPages\ManufacturerAdmin.html.twig:4
templates\AdminPages\ManufacturerAdmin.html.twig:4
-
+
manufacturer.caption
Manufacturers
@@ -347,7 +347,7 @@
Part-DB1\templates\AdminPages\MeasurementUnitAdmin.html.twig:4
Part-DB1\templates\AdminPages\MeasurementUnitAdmin.html.twig:4
-
+
measurement_unit.caption
Measurement Unit
@@ -362,7 +362,7 @@
templates\base.html.twig:198
templates\base.html.twig:226
-
+
storelocation.labelp
Storelocations
@@ -373,7 +373,7 @@
Part-DB1\templates\AdminPages\SupplierAdmin.html.twig:4
templates\AdminPages\SupplierAdmin.html.twig:4
-
+
supplier.caption
Suppliers
@@ -383,7 +383,7 @@
Part-DB1\templates\AdminPages\UserAdmin.html.twig:8
Part-DB1\templates\AdminPages\UserAdmin.html.twig:8
-
+
user.edit.caption
Users
@@ -393,7 +393,7 @@
Part-DB1\templates\AdminPages\UserAdmin.html.twig:14
Part-DB1\templates\AdminPages\UserAdmin.html.twig:14
-
+
user.edit.configuration
Configuration
@@ -403,7 +403,7 @@
Part-DB1\templates\AdminPages\UserAdmin.html.twig:15
Part-DB1\templates\AdminPages\UserAdmin.html.twig:15
-
+
user.edit.password
Password
@@ -413,7 +413,7 @@
Part-DB1\templates\AdminPages\UserAdmin.html.twig:45
Part-DB1\templates\AdminPages\UserAdmin.html.twig:45
-
+
user.edit.tfa.caption
Two-factor authentication
@@ -423,7 +423,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
@@ -437,7 +437,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
@@ -451,7 +451,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
@@ -463,7 +463,7 @@
Part-DB1\templates\AdminPages\UserAdmin.html.twig:53
Part-DB1\templates\AdminPages\UserAdmin.html.twig:60
-
+
user.edit.tfa.disabled
Method not enabled
@@ -473,7 +473,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
@@ -483,7 +483,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?
@@ -493,12 +493,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!]]>
@@ -506,7 +506,7 @@ 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
@@ -520,7 +520,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
@@ -534,7 +534,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
@@ -546,7 +546,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
@@ -560,7 +560,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
@@ -576,7 +576,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
@@ -588,7 +588,7 @@ The user will have to set up all two-factor authentication methods again and pri
Part-DB1\templates\AdminPages\_attachments.html.twig:64
Part-DB1\templates\Parts\edit\_attachments.html.twig:62
-
+
attachment.secure
Private attachment
@@ -600,7 +600,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
@@ -614,7 +614,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!
@@ -625,7 +625,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%?
@@ -636,11 +636,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.]]>
@@ -649,7 +649,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
@@ -664,7 +664,7 @@ Subelements will be moved upwards.
Part-DB1\src\Form\Part\PartBaseType.php:267
new
-
+
edit.log_comment
Change comment
@@ -675,7 +675,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)
@@ -689,7 +689,7 @@ Subelements will be moved upwards.
templates\AdminPages\_export_form.html.twig:4
src\Form\ImportType.php:67
-
+
export.format
File format
@@ -700,7 +700,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
@@ -711,7 +711,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
@@ -722,7 +722,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
@@ -733,7 +733,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
@@ -744,7 +744,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
@@ -755,7 +755,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
@@ -774,7 +774,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
@@ -798,7 +798,7 @@ Subelements will be moved upwards.
templates\AdminPages\EntityAdminBase.html.twig:101
templates\Parts\show_part_info.html.twig:248
-
+
createdAt
Created At
@@ -816,7 +816,7 @@ Subelements will be moved upwards.
templates\AdminPages\EntityAdminBase.html.twig:114
templates\Parts\show_part_info.html.twig:263
-
+
lastModified
Last modified
@@ -826,7 +826,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
@@ -836,7 +836,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
@@ -850,7 +850,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
@@ -864,7 +864,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.
@@ -875,7 +875,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!
@@ -885,7 +885,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
@@ -896,7 +896,7 @@ Subelements will be moved upwards.
Part-DB1\templates\base.html.twig:95
templates\base.html.twig:271
-
+
loading.caption
Loading:
@@ -907,7 +907,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.
@@ -918,7 +918,7 @@ Subelements will be moved upwards.
Part-DB1\templates\base.html.twig:101
templates\base.html.twig:277
-
+
loading.bar
Loading...
@@ -929,7 +929,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
@@ -939,7 +939,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
@@ -949,7 +949,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
@@ -959,7 +959,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:
@@ -969,7 +969,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
@@ -979,7 +979,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
@@ -989,7 +989,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
@@ -999,7 +999,7 @@ Subelements will be moved upwards.
Part-DB1\templates\helper.twig:3
Part-DB1\templates\helper.twig:3
-
+
bool.true
True
@@ -1009,7 +1009,7 @@ Subelements will be moved upwards.
Part-DB1\templates\helper.twig:5
Part-DB1\templates\helper.twig:5
-
+
bool.false
False
@@ -1019,7 +1019,7 @@ Subelements will be moved upwards.
Part-DB1\templates\helper.twig:87
Part-DB1\templates\helper.twig:87
-
+
Yes
Yes
@@ -1029,7 +1029,7 @@ Subelements will be moved upwards.
Part-DB1\templates\helper.twig:89
Part-DB1\templates\helper.twig:89
-
+
No
No
@@ -1040,7 +1040,7 @@ Subelements will be moved upwards.
Part-DB1\templates\homepage.html.twig:7
templates\homepage.html.twig:7
-
+
version.caption
Version
@@ -1051,7 +1051,7 @@ Subelements will be moved upwards.
Part-DB1\templates\homepage.html.twig:22
templates\homepage.html.twig:19
-
+
homepage.license
License information
@@ -1062,7 +1062,7 @@ Subelements will be moved upwards.
Part-DB1\templates\homepage.html.twig:31
templates\homepage.html.twig:28
-
+
homepage.github.caption
Project page
@@ -1073,9 +1073,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]]>
@@ -1084,7 +1084,7 @@ Subelements will be moved upwards.
Part-DB1\templates\homepage.html.twig:32
templates\homepage.html.twig:29
-
+
homepage.help.caption
Help
@@ -1095,9 +1095,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]]>
@@ -1106,7 +1106,7 @@ Subelements will be moved upwards.
Part-DB1\templates\homepage.html.twig:33
templates\homepage.html.twig:30
-
+
homepage.forum.caption
Forum
@@ -1117,9 +1117,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]]>
@@ -1128,7 +1128,7 @@ Subelements will be moved upwards.
Part-DB1\templates\homepage.html.twig:34
templates\homepage.html.twig:31
-
+
homepage.wiki.caption
Wiki
@@ -1139,9 +1139,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]]>
@@ -1150,7 +1150,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
@@ -1161,7 +1161,7 @@ Subelements will be moved upwards.
Part-DB1\templates\homepage.html.twig:39
templates\homepage.html.twig:36
-
+
homepage.others
and others
@@ -1172,7 +1172,7 @@ Subelements will be moved upwards.
Part-DB1\templates\homepage.html.twig:45
new
-
+
homepage.last_activity
Last activity
@@ -1182,7 +1182,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
@@ -1193,7 +1193,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?
@@ -1204,7 +1204,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?
@@ -1214,7 +1214,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
@@ -1224,7 +1224,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.
@@ -1234,7 +1234,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%
@@ -1244,7 +1244,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.
@@ -1254,7 +1254,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
@@ -1264,9 +1264,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]]>
@@ -1274,7 +1274,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
@@ -1284,7 +1284,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
@@ -1294,9 +1294,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%.]]>
@@ -1306,7 +1306,7 @@ Subelements will be moved upwards.
Part-DB1\templates\Parts\edit\edit_form_styles.html.twig:18
Part-DB1\templates\Parts\edit\edit_form_styles.html.twig:58
-
+
orderdetail.delete
Delete
@@ -1316,7 +1316,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
@@ -1326,7 +1326,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
@@ -1336,7 +1336,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
@@ -1346,7 +1346,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
@@ -1357,7 +1357,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
@@ -1368,7 +1368,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
@@ -1378,7 +1378,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
@@ -1388,7 +1388,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
@@ -1398,7 +1398,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
@@ -1408,7 +1408,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
@@ -1418,7 +1418,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
@@ -1428,7 +1428,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
@@ -1438,7 +1438,7 @@ Subelements will be moved upwards.
Part-DB1\templates\Parts\edit\edit_part_info.html.twig:58
Part-DB1\templates\Parts\edit\edit_part_info.html.twig:58
-
+
part.edit.tab.comment
Comment
@@ -1449,7 +1449,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
@@ -1459,7 +1459,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
@@ -1469,7 +1469,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
@@ -1479,7 +1479,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
@@ -1489,7 +1489,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.
@@ -1499,7 +1499,7 @@ Subelements will be moved upwards.
Part-DB1\templates\Parts\edit\_orderdetails.html.twig:61
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!
@@ -1513,7 +1513,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
@@ -1523,7 +1523,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
@@ -1538,7 +1538,7 @@ Subelements will be moved upwards.
templates\Parts\show_part_info.html.twig:74
src\Form\PartType.php:86
-
+
comment.label
Comment
@@ -1549,7 +1549,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
@@ -1560,7 +1560,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
@@ -1571,7 +1571,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
@@ -1590,7 +1590,7 @@ Subelements will be moved upwards.
templates\base.html.twig:231
templates\Parts\show_part_info.html.twig:100
-
+
tools.label
Tools
@@ -1600,7 +1600,7 @@ Subelements will be moved upwards.
Part-DB1\templates\Parts\info\show_part_info.html.twig:90
Part-DB1\templates\Parts\info\show_part_info.html.twig:90
-
+
extended_info.label
Extended infos
@@ -1610,7 +1610,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
@@ -1620,7 +1620,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
@@ -1630,7 +1630,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
@@ -1640,7 +1640,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
@@ -1650,7 +1650,7 @@ Subelements will be moved upwards.
Part-DB1\templates\Parts\info\_attachments_info.html.twig:34
Part-DB1\templates\Parts\info\_attachments_info.html.twig:34
-
+
attachment.external_file
External file
@@ -1660,7 +1660,7 @@ Subelements will be moved upwards.
Part-DB1\templates\Parts\info\_attachments_info.html.twig:50
Part-DB1\templates\Parts\info\_attachments_info.html.twig:50
-
+
attachment.download
Download
@@ -1670,7 +1670,7 @@ Subelements will be moved upwards.
Part-DB1\templates\Parts\info\_attachments_info.html.twig:62
Part-DB1\templates\Parts\info\_attachments_info.html.twig:62
-
+
attachment.edit
Edit
@@ -1681,7 +1681,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
@@ -1695,7 +1695,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
@@ -1708,7 +1708,7 @@ Subelements will be moved upwards.
Part-DB1\templates\Parts\info\_extended_infos.html.twig:30
new
-
+
accessDenied
Access Denied
@@ -1719,7 +1719,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
@@ -1729,7 +1729,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
@@ -1739,7 +1739,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
@@ -1756,7 +1756,7 @@ Subelements will be moved upwards.
templates\Parts\show_part_info.html.twig:24
src\Form\PartType.php:80
-
+
manufacturer.label
Manufacturer
@@ -1767,7 +1767,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
@@ -1782,7 +1782,7 @@ Subelements will be moved upwards.
templates\Parts\show_part_info.html.twig:31
src\Form\PartType.php:65
-
+
description.label
Description
@@ -1799,7 +1799,7 @@ Subelements will be moved upwards.
templates\Parts\show_part_info.html.twig:32
src\Form\PartType.php:74
-
+
category.label
Category
@@ -1811,7 +1811,7 @@ Subelements will be moved upwards.
templates\Parts\show_part_info.html.twig:42
src\Form\PartType.php:69
-
+
instock.label
Instock
@@ -1823,7 +1823,7 @@ Subelements will be moved upwards.
templates\Parts\show_part_info.html.twig:44
src\Form\PartType.php:72
-
+
mininstock.label
Minimum Instock
@@ -1839,7 +1839,7 @@ Subelements will be moved upwards.
templates\base.html.twig:73
templates\Parts\show_part_info.html.twig:47
-
+
footprint.label
Footprint
@@ -1852,7 +1852,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
@@ -1862,7 +1862,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
@@ -1872,7 +1872,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.
@@ -1882,7 +1882,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
@@ -1892,7 +1892,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
@@ -1902,7 +1902,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
@@ -1912,7 +1912,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
@@ -1922,7 +1922,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
@@ -1932,7 +1932,7 @@ Subelements will be moved upwards.
Part-DB1\templates\Parts\info\_part_lots.html.twig:6
Part-DB1\templates\Parts\info\_part_lots.html.twig:6
-
+
part_lots.description
Description
@@ -1942,7 +1942,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:7
-
+
part_lots.storage_location
Storage location
@@ -1952,7 +1952,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:8
-
+
part_lots.amount
Amount
@@ -1962,7 +1962,7 @@ Subelements will be moved upwards.
Part-DB1\templates\Parts\info\_part_lots.html.twig:22
Part-DB1\templates\Parts\info\_part_lots.html.twig:22
-
+
part_lots.location_unknown
Storage location unknown
@@ -1972,7 +1972,7 @@ Subelements will be moved upwards.
Part-DB1\templates\Parts\info\_part_lots.html.twig:29
Part-DB1\templates\Parts\info\_part_lots.html.twig:29
-
+
part_lots.instock_unknown
Amount unknown
@@ -1982,7 +1982,7 @@ Subelements will be moved upwards.
Part-DB1\templates\Parts\info\_part_lots.html.twig:38
Part-DB1\templates\Parts\info\_part_lots.html.twig:38
-
+
part_lots.expiration_date
Expiration date
@@ -1992,7 +1992,7 @@ Subelements will be moved upwards.
Part-DB1\templates\Parts\info\_part_lots.html.twig:46
Part-DB1\templates\Parts\info\_part_lots.html.twig:46
-
+
part_lots.is_expired
Expired
@@ -2002,7 +2002,7 @@ Subelements will be moved upwards.
Part-DB1\templates\Parts\info\_part_lots.html.twig:53
Part-DB1\templates\Parts\info\_part_lots.html.twig:53
-
+
part_lots.need_refill
Needs refill
@@ -2012,7 +2012,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
@@ -2022,7 +2022,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
@@ -2032,7 +2032,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
@@ -2042,7 +2042,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
@@ -2052,7 +2052,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
@@ -2062,7 +2062,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
@@ -2073,7 +2073,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
@@ -2084,7 +2084,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
@@ -2095,7 +2095,7 @@ Subelements will be moved upwards.
Part-DB1\templates\Parts\info\_tools.html.twig:22
templates\Parts\show_part_info.html.twig:143
-
+
part.create.btn
Create new part
@@ -2105,7 +2105,7 @@ Subelements will be moved upwards.
Part-DB1\templates\Parts\info\_tools.html.twig:29
Part-DB1\templates\Parts\info\_tools.html.twig:29
-
+
part.delete.confirm_title
Do you really want to delete this part?
@@ -2115,7 +2115,7 @@ Subelements will be moved upwards.
Part-DB1\templates\Parts\info\_tools.html.twig:30
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!
@@ -2125,7 +2125,7 @@ Subelements will be moved upwards.
Part-DB1\templates\Parts\info\_tools.html.twig:37
Part-DB1\templates\Parts\info\_tools.html.twig:37
-
+
part.delete
Delete part
@@ -2135,7 +2135,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
@@ -2145,7 +2145,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
@@ -2155,7 +2155,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
@@ -2165,7 +2165,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
@@ -2175,7 +2175,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
@@ -2185,7 +2185,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
@@ -2195,7 +2195,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
@@ -2205,7 +2205,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
@@ -2215,7 +2215,7 @@ Subelements will be moved upwards.
Part-DB1\templates\Parts\lists\_info_card.html.twig:17
Part-DB1\templates\Parts\lists\_info_card.html.twig:17
-
+
entity.info.common.tab
Common
@@ -2225,7 +2225,7 @@ Subelements will be moved upwards.
Part-DB1\templates\Parts\lists\_info_card.html.twig:20
Part-DB1\templates\Parts\lists\_info_card.html.twig:20
-
+
entity.info.statistics.tab
Statistics
@@ -2235,7 +2235,7 @@ Subelements will be moved upwards.
Part-DB1\templates\Parts\lists\_info_card.html.twig:30
Part-DB1\templates\Parts\lists\_info_card.html.twig:30
-
+
entity.info.name
Name
@@ -2247,7 +2247,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
@@ -2257,7 +2257,7 @@ Subelements will be moved upwards.
Part-DB1\templates\Parts\lists\_info_card.html.twig:46
Part-DB1\templates\Parts\lists\_info_card.html.twig:46
-
+
entity.edit.btn
Edit
@@ -2267,7 +2267,7 @@ Subelements will be moved upwards.
Part-DB1\templates\Parts\lists\_info_card.html.twig:63
Part-DB1\templates\Parts\lists\_info_card.html.twig:63
-
+
entity.info.children_count
Count of children elements
@@ -2279,7 +2279,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
@@ -2289,7 +2289,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)
@@ -2301,7 +2301,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
@@ -2315,7 +2315,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
@@ -2325,7 +2325,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
@@ -2335,7 +2335,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.
@@ -2346,7 +2346,7 @@ Subelements will be moved upwards.
Part-DB1\templates\security\login.html.twig:3
templates\security\login.html.twig:3
-
+
login.title
Login
@@ -2357,7 +2357,7 @@ Subelements will be moved upwards.
Part-DB1\templates\security\login.html.twig:7
templates\security\login.html.twig:7
-
+
login.card_title
Login
@@ -2368,7 +2368,7 @@ Subelements will be moved upwards.
Part-DB1\templates\security\login.html.twig:31
templates\security\login.html.twig:31
-
+
login.username.label
Username
@@ -2379,7 +2379,7 @@ Subelements will be moved upwards.
Part-DB1\templates\security\login.html.twig:34
templates\security\login.html.twig:34
-
+
login.username.placeholder
Username
@@ -2390,7 +2390,7 @@ Subelements will be moved upwards.
Part-DB1\templates\security\login.html.twig:38
templates\security\login.html.twig:38
-
+
login.password.label
Password
@@ -2401,7 +2401,7 @@ Subelements will be moved upwards.
Part-DB1\templates\security\login.html.twig:40
templates\security\login.html.twig:40
-
+
login.password.placeholder
Password
@@ -2412,7 +2412,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)
@@ -2422,7 +2422,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?
@@ -2432,7 +2432,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
@@ -2442,7 +2442,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
@@ -2454,7 +2454,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.
@@ -2466,7 +2466,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!
@@ -2476,7 +2476,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
@@ -2488,7 +2488,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.
@@ -2498,7 +2498,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!
@@ -2508,7 +2508,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)
@@ -2518,7 +2518,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
@@ -2528,7 +2528,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
@@ -2541,7 +2541,7 @@ Subelements will be moved upwards.
Part-DB1\templates\Statistics\statistics.html.twig:8
new
-
+
statistics.title
Statistics
@@ -2552,7 +2552,7 @@ Subelements will be moved upwards.
Part-DB1\templates\Statistics\statistics.html.twig:14
new
-
+
statistics.parts
Parts
@@ -2563,7 +2563,7 @@ Subelements will be moved upwards.
Part-DB1\templates\Statistics\statistics.html.twig:19
new
-
+
statistics.data_structures
Data structures
@@ -2574,7 +2574,7 @@ Subelements will be moved upwards.
Part-DB1\templates\Statistics\statistics.html.twig:24
new
-
+
statistics.attachments
Attachments
@@ -2589,7 +2589,7 @@ Subelements will be moved upwards.
Part-DB1\templates\Statistics\statistics.html.twig:104
new
-
+
statistics.property
Property
@@ -2604,7 +2604,7 @@ Subelements will be moved upwards.
Part-DB1\templates\Statistics\statistics.html.twig:105
new
-
+
statistics.value
Value
@@ -2615,7 +2615,7 @@ Subelements will be moved upwards.
Part-DB1\templates\Statistics\statistics.html.twig:40
new
-
+
statistics.distinct_parts_count
Number of distinct parts
@@ -2626,7 +2626,7 @@ Subelements will be moved upwards.
Part-DB1\templates\Statistics\statistics.html.twig:44
new
-
+
statistics.parts_instock_sum
Sum of all part instocks
@@ -2637,7 +2637,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
@@ -2648,7 +2648,7 @@ Subelements will be moved upwards.
Part-DB1\templates\Statistics\statistics.html.twig:65
new
-
+
statistics.categories_count
Number of categories
@@ -2659,7 +2659,7 @@ Subelements will be moved upwards.
Part-DB1\templates\Statistics\statistics.html.twig:69
new
-
+
statistics.footprints_count
Number of footprints
@@ -2670,7 +2670,7 @@ Subelements will be moved upwards.
Part-DB1\templates\Statistics\statistics.html.twig:73
new
-
+
statistics.manufacturers_count
Number of manufacturers
@@ -2681,7 +2681,7 @@ Subelements will be moved upwards.
Part-DB1\templates\Statistics\statistics.html.twig:77
new
-
+
statistics.storelocations_count
Number of storelocations
@@ -2692,7 +2692,7 @@ Subelements will be moved upwards.
Part-DB1\templates\Statistics\statistics.html.twig:81
new
-
+
statistics.suppliers_count
Number of suppliers
@@ -2703,7 +2703,7 @@ Subelements will be moved upwards.
Part-DB1\templates\Statistics\statistics.html.twig:85
new
-
+
statistics.currencies_count
Number of currencies
@@ -2714,7 +2714,7 @@ Subelements will be moved upwards.
Part-DB1\templates\Statistics\statistics.html.twig:89
new
-
+
statistics.measurement_units_count
Number of measurement units
@@ -2725,7 +2725,7 @@ Subelements will be moved upwards.
Part-DB1\templates\Statistics\statistics.html.twig:93
new
-
+
statistics.devices_count
Number of devices
@@ -2736,7 +2736,7 @@ Subelements will be moved upwards.
Part-DB1\templates\Statistics\statistics.html.twig:110
new
-
+
statistics.attachment_types_count
Number of attachment types
@@ -2747,7 +2747,7 @@ Subelements will be moved upwards.
Part-DB1\templates\Statistics\statistics.html.twig:114
new
-
+
statistics.all_attachments_count
Number of all attachments
@@ -2758,7 +2758,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
@@ -2769,7 +2769,7 @@ Subelements will be moved upwards.
Part-DB1\templates\Statistics\statistics.html.twig:122
new
-
+
statistics.private_attachments_count
Number of private attachments
@@ -2780,7 +2780,7 @@ Subelements will be moved upwards.
Part-DB1\templates\Statistics\statistics.html.twig:126
new
-
+
statistics.external_attachments_count
Number of external attachments (URL)
@@ -2792,7 +2792,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
@@ -2802,7 +2802,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!
@@ -2812,7 +2812,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.
@@ -2822,7 +2822,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
@@ -2832,7 +2832,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%
@@ -2842,7 +2842,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
@@ -2852,7 +2852,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
@@ -2869,7 +2869,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
@@ -2883,7 +2883,7 @@ Subelements will be moved upwards.
templates\Users\user_info.html.twig:18
src\Form\UserSettingsType.php:32
-
+
user.firstName.label
First name
@@ -2897,7 +2897,7 @@ Subelements will be moved upwards.
templates\Users\user_info.html.twig:24
src\Form\UserSettingsType.php:35
-
+
user.lastName.label
Last name
@@ -2911,7 +2911,7 @@ Subelements will be moved upwards.
templates\Users\user_info.html.twig:30
src\Form\UserSettingsType.php:41
-
+
user.email.label
Email
@@ -2925,7 +2925,7 @@ Subelements will be moved upwards.
templates\Users\user_info.html.twig:37
src\Form\UserSettingsType.php:38
-
+
user.department.label
Department
@@ -2939,7 +2939,7 @@ Subelements will be moved upwards.
templates\Users\user_info.html.twig:47
src\Form\UserSettingsType.php:30
-
+
user.username.label
User name
@@ -2952,7 +2952,7 @@ Subelements will be moved upwards.
Part-DB1\src\Services\ElementTypeNameGenerator.php:93
templates\Users\user_info.html.twig:53
-
+
group.label
Gruppe:
@@ -2962,7 +2962,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
@@ -2979,7 +2979,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
@@ -2990,7 +2990,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
@@ -3001,7 +3001,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
@@ -3012,7 +3012,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
@@ -3022,7 +3022,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
@@ -3032,7 +3032,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
@@ -3042,7 +3042,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
@@ -3052,7 +3052,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)
@@ -3062,7 +3062,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
@@ -3072,7 +3072,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?
@@ -3082,10 +3082,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!]]>
@@ -3093,7 +3093,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!
@@ -3103,9 +3103,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)]]>
@@ -3113,7 +3113,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
@@ -3123,7 +3123,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
@@ -3133,7 +3133,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
@@ -3143,7 +3143,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
@@ -3153,7 +3153,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
@@ -3163,7 +3163,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
@@ -3173,7 +3173,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
@@ -3183,7 +3183,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
@@ -3193,7 +3193,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
@@ -3203,7 +3203,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.
@@ -3215,7 +3215,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.
@@ -3225,7 +3225,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?
@@ -3235,7 +3235,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!
@@ -3245,7 +3245,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
@@ -3255,7 +3255,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
@@ -3265,7 +3265,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
@@ -3275,7 +3275,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?
@@ -3285,7 +3285,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.
@@ -3295,7 +3295,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
@@ -3305,7 +3305,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
@@ -3315,7 +3315,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
@@ -3325,7 +3325,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.
@@ -3335,7 +3335,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
@@ -3345,10 +3345,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.]]>
@@ -3356,7 +3356,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?
@@ -3366,7 +3366,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.
@@ -3376,7 +3376,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
@@ -3387,7 +3387,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
@@ -3398,7 +3398,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\templates\_navbar.html.twig:27
templates\base.html.twig:88
-
+
barcode.scan
Scan Barcode
@@ -3409,7 +3409,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
@@ -3420,7 +3420,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
@@ -3430,7 +3430,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\templates\_navbar.html.twig:48
Part-DB1\templates\_navbar.html.twig:48
-
+
ui.toggle_darkmode
Darkmode
@@ -3444,7 +3444,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
@@ -3455,7 +3455,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
@@ -3467,7 +3467,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
templates\base.html.twig:54
src\Form\PartType.php:62
-
+
name.label
Name
@@ -3482,7 +3482,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
templates\Parts\show_part_info.html.twig:36
src\Form\PartType.php:77
-
+
storelocation.label
Store location
@@ -3493,7 +3493,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.
@@ -3506,7 +3506,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
@@ -3517,7 +3517,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
@@ -3528,7 +3528,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
@@ -3538,7 +3538,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\templates\_navbar_search.html.twig:62
Part-DB1\templates\_navbar_search.html.twig:62
-
+
search.submit
Go!
@@ -3554,7 +3554,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
@@ -3567,7 +3567,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
@@ -3580,7 +3580,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
@@ -3593,7 +3593,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
@@ -3606,7 +3606,7 @@ 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
@@ -3622,7 +3622,7 @@ 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.
@@ -3632,7 +3632,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Controller\AdminPages\BaseAdminController.php:190
Part-DB1\src\Controller\AdminPages\BaseAdminController.php:190
-
+
entity.edit_flash
Changes saved successful.
@@ -3642,7 +3642,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Controller\AdminPages\BaseAdminController.php:196
Part-DB1\src\Controller\AdminPages\BaseAdminController.php:196
-
+
entity.edit_flash.invalid
Can not save changed. Please check your input!
@@ -3652,7 +3652,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Controller\AdminPages\BaseAdminController.php:252
Part-DB1\src\Controller\AdminPages\BaseAdminController.php:252
-
+
entity.created_flash
Element created.
@@ -3662,7 +3662,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Controller\AdminPages\BaseAdminController.php:258
Part-DB1\src\Controller\AdminPages\BaseAdminController.php:258
-
+
entity.created_flash.invalid
Could not create element. Please check your input!
@@ -3673,7 +3673,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Controller\AdminPages\BaseAdminController.php:352
src\Controller\BaseAdminController.php:154
-
+
attachment_type.deleted
Element deleted!
@@ -3689,7 +3689,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
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.
@@ -3700,7 +3700,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!
@@ -3711,7 +3711,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.
@@ -3722,7 +3722,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.
@@ -3733,7 +3733,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!
@@ -3744,7 +3744,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.
@@ -3755,7 +3755,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!
@@ -3766,7 +3766,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!
@@ -3777,7 +3777,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!
@@ -3788,7 +3788,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!
@@ -3799,7 +3799,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!
@@ -3809,7 +3809,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!
@@ -3819,7 +3819,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Controller\PartController.php:219
Part-DB1\src\Controller\PartController.php:219
-
+
part.deleted
Part deleted successful.
@@ -3833,7 +3833,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!
@@ -3843,7 +3843,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Controller\PartController.php:283
Part-DB1\src\Controller\PartController.php:283
-
+
part.created_flash.invalid
Error during creation: Please check your inputs!
@@ -3853,7 +3853,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Controller\SecurityController.php:109
Part-DB1\src\Controller\SecurityController.php:109
-
+
pw_reset.user_or_email
Username / Email
@@ -3863,7 +3863,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Controller\SecurityController.php:126
Part-DB1\src\Controller\SecurityController.php:126
-
+
pw_reset.request.success
Reset request was successful! Please check your emails for further instructions.
@@ -3873,7 +3873,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Controller\SecurityController.php:160
Part-DB1\src\Controller\SecurityController.php:160
-
+
pw_reset.username
Username
@@ -3883,7 +3883,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Controller\SecurityController.php:163
Part-DB1\src\Controller\SecurityController.php:163
-
+
pw_reset.token
Token
@@ -3893,7 +3893,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Controller\SecurityController.php:192
Part-DB1\src\Controller\SecurityController.php:192
-
+
pw_reset.new_pw.error
Username or Token invalid! Please check your input.
@@ -3903,7 +3903,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:194
-
+
pw_reset.new_pw.success
Password was reset successfully. You can now login with your new password.
@@ -3913,7 +3913,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Controller\UserController.php:99
Part-DB1\src\Controller\UserController.php:99
-
+
user.edit.reset_success
All two-factor authentication methods were successfully disabled.
@@ -3923,7 +3923,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Controller\UserSettingsController.php:92
Part-DB1\src\Controller\UserSettingsController.php:92
-
+
tfa_backup.no_codes_enabled
No backup codes enabled!
@@ -3933,7 +3933,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Controller\UserSettingsController.php:132
Part-DB1\src\Controller\UserSettingsController.php:132
-
+
tfa_u2f.u2f_delete.not_existing
No security key with this ID is existing.
@@ -3943,7 +3943,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Controller\UserSettingsController.php:139
Part-DB1\src\Controller\UserSettingsController.php:139
-
+
tfa_u2f.u2f_delete.access_denied
You can not delete the security keys of other users!
@@ -3953,7 +3953,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Controller\UserSettingsController.php:147
Part-DB1\src\Controller\UserSettingsController.php:147
-
+
tfa.u2f.u2f_delete.success
Security key successfully removed.
@@ -3963,7 +3963,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Controller\UserSettingsController.php:180
Part-DB1\src\Controller\UserSettingsController.php:180
-
+
tfa_trustedDevice.invalidate.success
Trusted devices successfully reset.
@@ -3974,7 +3974,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Controller\UserSettingsController.php:226
src\Controller\UserController.php:98
-
+
user.settings.saved_flash
Settings saved!
@@ -3985,7 +3985,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Controller\UserSettingsController.php:288
src\Controller\UserController.php:130
-
+
user.settings.pw_changed_flash
Password changed!
@@ -3995,7 +3995,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Controller\UserSettingsController.php:306
Part-DB1\src\Controller\UserSettingsController.php:306
-
+
user.settings.2fa.google.activated
Authenticator App successfully activated.
@@ -4005,7 +4005,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Controller\UserSettingsController.php:315
Part-DB1\src\Controller\UserSettingsController.php:315
-
+
user.settings.2fa.google.disabled
Authenticator App erfolgreich deaktiviert.
@@ -4015,7 +4015,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Controller\UserSettingsController.php:332
Part-DB1\src\Controller\UserSettingsController.php:332
-
+
user.settings.2fa.backup_codes.regenerated
New backup codes successfully generated.
@@ -4025,7 +4025,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
@@ -4035,7 +4035,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
@@ -4055,7 +4055,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
@@ -4077,7 +4077,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
@@ -4087,7 +4087,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\DataTables\Column\LogEntryTargetColumn.php:119
Part-DB1\src\DataTables\Column\LogEntryTargetColumn.php:119
-
+
log.target_deleted
deleted
@@ -4098,7 +4098,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
@@ -4109,7 +4109,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
@@ -4120,7 +4120,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
@@ -4130,7 +4130,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\DataTables\LogDataTable.php:161
Part-DB1\src\DataTables\LogDataTable.php:161
-
+
log.id
ID
@@ -4140,7 +4140,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\DataTables\LogDataTable.php:166
Part-DB1\src\DataTables\LogDataTable.php:166
-
+
log.timestamp
Timestamp
@@ -4150,7 +4150,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\DataTables\LogDataTable.php:171
Part-DB1\src\DataTables\LogDataTable.php:171
-
+
log.type
Event
@@ -4160,7 +4160,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\DataTables\LogDataTable.php:179
Part-DB1\src\DataTables\LogDataTable.php:179
-
+
log.level
Level
@@ -4170,7 +4170,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\DataTables\LogDataTable.php:188
Part-DB1\src\DataTables\LogDataTable.php:188
-
+
log.user
User
@@ -4180,7 +4180,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\DataTables\LogDataTable.php:201
Part-DB1\src\DataTables\LogDataTable.php:201
-
+
log.target_type
Target type
@@ -4190,7 +4190,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\DataTables\LogDataTable.php:214
Part-DB1\src\DataTables\LogDataTable.php:214
-
+
log.target
Target
@@ -4201,7 +4201,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
@@ -4211,7 +4211,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\DataTables\PartsDataTable.php:116
Part-DB1\src\DataTables\PartsDataTable.php:116
-
+
part.table.name
Name
@@ -4221,7 +4221,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\DataTables\PartsDataTable.php:126
Part-DB1\src\DataTables\PartsDataTable.php:126
-
+
part.table.id
Id
@@ -4231,7 +4231,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\DataTables\PartsDataTable.php:130
Part-DB1\src\DataTables\PartsDataTable.php:130
-
+
part.table.description
Description
@@ -4241,7 +4241,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\DataTables\PartsDataTable.php:133
Part-DB1\src\DataTables\PartsDataTable.php:133
-
+
part.table.category
Category
@@ -4251,7 +4251,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\DataTables\PartsDataTable.php:138
Part-DB1\src\DataTables\PartsDataTable.php:138
-
+
part.table.footprint
Footprint
@@ -4261,7 +4261,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\DataTables\PartsDataTable.php:142
Part-DB1\src\DataTables\PartsDataTable.php:142
-
+
part.table.manufacturer
Manufacturer
@@ -4271,7 +4271,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\DataTables\PartsDataTable.php:145
Part-DB1\src\DataTables\PartsDataTable.php:145
-
+
part.table.storeLocations
Store locations
@@ -4281,7 +4281,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\DataTables\PartsDataTable.php:164
Part-DB1\src\DataTables\PartsDataTable.php:164
-
+
part.table.amount
Amount
@@ -4291,7 +4291,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\DataTables\PartsDataTable.php:172
Part-DB1\src\DataTables\PartsDataTable.php:172
-
+
part.table.minamount
Min. Amount
@@ -4301,7 +4301,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\DataTables\PartsDataTable.php:180
Part-DB1\src\DataTables\PartsDataTable.php:180
-
+
part.table.partUnit
Measurement Unit
@@ -4311,7 +4311,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\DataTables\PartsDataTable.php:184
Part-DB1\src\DataTables\PartsDataTable.php:184
-
+
part.table.addedDate
Created at
@@ -4321,7 +4321,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\DataTables\PartsDataTable.php:188
Part-DB1\src\DataTables\PartsDataTable.php:188
-
+
part.table.lastModified
Last modified
@@ -4331,7 +4331,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\DataTables\PartsDataTable.php:192
Part-DB1\src\DataTables\PartsDataTable.php:192
-
+
part.table.needsReview
Needs review
@@ -4341,7 +4341,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\DataTables\PartsDataTable.php:199
Part-DB1\src\DataTables\PartsDataTable.php:199
-
+
part.table.favorite
Favorite
@@ -4351,7 +4351,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\DataTables\PartsDataTable.php:206
Part-DB1\src\DataTables\PartsDataTable.php:206
-
+
part.table.manufacturingStatus
Status
@@ -4365,7 +4365,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
@@ -4377,7 +4377,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
@@ -4389,7 +4389,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
@@ -4401,7 +4401,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
@@ -4413,7 +4413,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
@@ -4425,7 +4425,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
@@ -4435,7 +4435,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\DataTables\PartsDataTable.php:219
Part-DB1\src\DataTables\PartsDataTable.php:219
-
+
part.table.mpn
MPN
@@ -4445,7 +4445,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\DataTables\PartsDataTable.php:223
Part-DB1\src\DataTables\PartsDataTable.php:223
-
+
part.table.mass
Mass
@@ -4455,7 +4455,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\DataTables\PartsDataTable.php:227
Part-DB1\src\DataTables\PartsDataTable.php:227
-
+
part.table.tags
Tags
@@ -4465,7 +4465,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\DataTables\PartsDataTable.php:231
Part-DB1\src\DataTables\PartsDataTable.php:231
-
+
part.table.attachments
Attachments
@@ -4475,7 +4475,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\EventSubscriber\LoginSuccessListener.php:82
Part-DB1\src\EventSubscriber\LoginSuccessListener.php:82
-
+
flash.login_successful
Login successful
@@ -4486,7 +4486,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
@@ -4497,7 +4497,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
@@ -4508,7 +4508,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
@@ -4519,7 +4519,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
@@ -4529,7 +4529,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.
@@ -4540,7 +4540,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
@@ -4551,7 +4551,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
@@ -4562,7 +4562,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
@@ -4573,7 +4573,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
@@ -4584,7 +4584,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
@@ -4595,7 +4595,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
@@ -4605,7 +4605,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\AttachmentFormType.php:109
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.
@@ -4615,7 +4615,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\AttachmentFormType.php:123
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)
@@ -4625,7 +4625,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\AttachmentFormType.php:79
Part-DB1\src\Form\AttachmentFormType.php:79
-
+
attachment.edit.name
Name
@@ -4635,7 +4635,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:82
-
+
attachment.edit.attachment_type
Attachment type
@@ -4645,7 +4645,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\AttachmentFormType.php:91
Part-DB1\src\Form\AttachmentFormType.php:91
-
+
attachment.edit.show_in_table
Show in table
@@ -4655,7 +4655,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\AttachmentFormType.php:102
Part-DB1\src\Form\AttachmentFormType.php:102
-
+
attachment.edit.secure_file
Private attachment
@@ -4665,7 +4665,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\AttachmentFormType.php:115
Part-DB1\src\Form\AttachmentFormType.php:115
-
+
attachment.edit.url
URL
@@ -4675,7 +4675,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\AttachmentFormType.php:129
Part-DB1\src\Form\AttachmentFormType.php:129
-
+
attachment.edit.download_url
Download external file
@@ -4685,7 +4685,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\AttachmentFormType.php:142
Part-DB1\src\Form\AttachmentFormType.php:142
-
+
attachment.edit.file
Upload file
@@ -4695,7 +4695,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:75
-
+
orderdetails.edit.supplierpartnr
Order number
@@ -4705,7 +4705,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\Part\OrderdetailType.php:84
Part-DB1\src\Form\Part\OrderdetailType.php:84
-
+
orderdetails.edit.supplier
Supplier
@@ -4715,7 +4715,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\Part\OrderdetailType.php:90
Part-DB1\src\Form\Part\OrderdetailType.php:90
-
+
orderdetails.edit.url
Link to offer
@@ -4725,7 +4725,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\Part\OrderdetailType.php:96
Part-DB1\src\Form\Part\OrderdetailType.php:96
-
+
orderdetails.edit.obsolete
No longer available
@@ -4735,7 +4735,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\Part\OrderdetailType.php:78
Part-DB1\src\Form\Part\OrderdetailType.php:78
-
+
orderdetails.edit.supplierpartnr.placeholder
e.g. BC 547
@@ -4745,7 +4745,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\Part\PartBaseType.php:99
Part-DB1\src\Form\Part\PartBaseType.php:99
-
+
part.edit.name
Name
@@ -4755,7 +4755,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\Part\PartBaseType.php:107
Part-DB1\src\Form\Part\PartBaseType.php:107
-
+
part.edit.description
Description
@@ -4765,7 +4765,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\Part\PartBaseType.php:118
Part-DB1\src\Form\Part\PartBaseType.php:118
-
+
part.edit.mininstock
Minimum stock
@@ -4775,7 +4775,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\Part\PartBaseType.php:127
Part-DB1\src\Form\Part\PartBaseType.php:127
-
+
part.edit.category
Category
@@ -4785,7 +4785,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\Part\PartBaseType.php:133
Part-DB1\src\Form\Part\PartBaseType.php:133
-
+
part.edit.footprint
Footprint
@@ -4795,7 +4795,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\Part\PartBaseType.php:140
Part-DB1\src\Form\Part\PartBaseType.php:140
-
+
part.edit.tags
Tags
@@ -4805,7 +4805,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\Part\PartBaseType.php:152
Part-DB1\src\Form\Part\PartBaseType.php:152
-
+
part.edit.manufacturer.label
Manufacturer
@@ -4815,7 +4815,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\Part\PartBaseType.php:159
Part-DB1\src\Form\Part\PartBaseType.php:159
-
+
part.edit.manufacturer_url.label
Link to product page
@@ -4825,7 +4825,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\Part\PartBaseType.php:165
Part-DB1\src\Form\Part\PartBaseType.php:165
-
+
part.edit.mpn
Manufacturer part number
@@ -4835,7 +4835,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\Part\PartBaseType.php:171
Part-DB1\src\Form\Part\PartBaseType.php:171
-
+
part.edit.manufacturing_status
Manufacturing status
@@ -4845,7 +4845,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\Part\PartBaseType.php:179
Part-DB1\src\Form\Part\PartBaseType.php:179
-
+
part.edit.needs_review
Needs review
@@ -4855,7 +4855,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\Part\PartBaseType.php:187
Part-DB1\src\Form\Part\PartBaseType.php:187
-
+
part.edit.is_favorite
Favorite
@@ -4865,7 +4865,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\Part\PartBaseType.php:195
Part-DB1\src\Form\Part\PartBaseType.php:195
-
+
part.edit.mass
Mass
@@ -4875,7 +4875,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\Part\PartBaseType.php:201
Part-DB1\src\Form\Part\PartBaseType.php:201
-
+
part.edit.partUnit
Measuring unit
@@ -4885,7 +4885,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\Part\PartBaseType.php:210
Part-DB1\src\Form\Part\PartBaseType.php:210
-
+
part.edit.comment
Comment
@@ -4895,7 +4895,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\Part\PartBaseType.php:246
Part-DB1\src\Form\Part\PartBaseType.php:246
-
+
part.edit.master_attachment
Preview image
@@ -4906,7 +4906,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
@@ -4917,7 +4917,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
@@ -4927,7 +4927,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\Part\PartBaseType.php:103
Part-DB1\src\Form\Part\PartBaseType.php:103
-
+
part.edit.name.placeholder
e.g. BC547
@@ -4937,7 +4937,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\Part\PartBaseType.php:113
Part-DB1\src\Form\Part\PartBaseType.php:113
-
+
part.edit.description.placeholder
e.g. NPN 45V, 0,1A, 0,5W
@@ -4947,7 +4947,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\Part\PartBaseType.php:121
Part-DB1\src\Form\Part\PartBaseType.php:121
-
+
part.editmininstock.placeholder
e.g. 1
@@ -4957,7 +4957,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
@@ -4967,7 +4967,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
@@ -4977,7 +4977,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
@@ -4987,7 +4987,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\Part\PartLotType.php:97
Part-DB1\src\Form\Part\PartLotType.php:97
-
+
part_lot.edit.instock_unknown
Amount unknown
@@ -4997,7 +4997,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\Part\PartLotType.php:108
Part-DB1\src\Form\Part\PartLotType.php:108
-
+
part_lot.edit.needs_refill
Needs refill
@@ -5007,7 +5007,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\Part\PartLotType.php:119
Part-DB1\src\Form\Part\PartLotType.php:119
-
+
part_lot.edit.expiration_date
Expiration date
@@ -5017,7 +5017,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\Part\PartLotType.php:125
Part-DB1\src\Form\Part\PartLotType.php:125
-
+
part_lot.edit.comment
Comment
@@ -5027,7 +5027,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
@@ -5037,7 +5037,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
@@ -5047,7 +5047,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
@@ -5057,7 +5057,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
@@ -5067,7 +5067,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
Part-DB1\src\Form\Type\SIUnitType.php:141
-
+
M
M
@@ -5077,14 +5077,14 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\Type\SIUnitType.php:141
Part-DB1\src\Form\Type\SIUnitType.php:141
-
+
k
k
-
+
@@ -5093,7 +5093,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
Part-DB1\src\Form\Type\SIUnitType.php:141
-
+
m
m
@@ -5103,7 +5103,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
Part-DB1\src\Form\Type\SIUnitType.php:141
-
+
µ
µ
@@ -5114,7 +5114,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
@@ -5125,7 +5125,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\UserSettingsType.php:119
src\Form\UserSettingsType.php:49
-
+
user.theme.label
Theme
@@ -5135,7 +5135,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\UserSettingsType.php:132
Part-DB1\src\Form\UserSettingsType.php:132
-
+
user.currency.label
Preferred currency
@@ -5146,7 +5146,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
@@ -5157,7 +5157,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
@@ -5168,7 +5168,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
@@ -5179,7 +5179,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
@@ -5190,7 +5190,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Form\UserSettingsType.php:129
src\Form\UserSettingsType.php:50
-
+
user_settings.theme.placeholder
Serverwide Theme
@@ -5200,7 +5200,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
@@ -5210,7 +5210,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
@@ -5220,7 +5220,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
@@ -5230,7 +5230,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
@@ -5240,7 +5240,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Services\ElementTypeNameGenerator.php:86
Part-DB1\src\Services\ElementTypeNameGenerator.php:86
-
+
part.label
Part
@@ -5250,7 +5250,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Services\ElementTypeNameGenerator.php:87
Part-DB1\src\Services\ElementTypeNameGenerator.php:87
-
+
part_lot.label
Part lot
@@ -5260,7 +5260,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
@@ -5270,7 +5270,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
@@ -5280,7 +5280,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
@@ -5290,7 +5290,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
@@ -5301,7 +5301,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Services\LogSystem\LogEntryExtraFormatter.php:100
new
-
+
log.user_login.ip
IP
@@ -5318,7 +5318,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Services\LogSystem\LogEntryExtraFormatter.php:207
new
-
+
log.undo_mode.undo
Change undone
@@ -5335,7 +5335,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Services\LogSystem\LogEntryExtraFormatter.php:209
new
-
+
log.undo_mode.revert
Element reverted
@@ -5346,7 +5346,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Services\LogSystem\LogEntryExtraFormatter.php:139
new
-
+
log.element_created.original_instock
Old instock
@@ -5357,7 +5357,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Services\LogSystem\LogEntryExtraFormatter.php:160
new
-
+
log.element_deleted.old_name
Old name
@@ -5368,7 +5368,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
@@ -5379,7 +5379,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Services\LogSystem\LogEntryExtraFormatter.php:184
new
-
+
log.element_edited.changed_fields
Changed fields
@@ -5390,7 +5390,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Services\LogSystem\LogEntryExtraFormatter.php:198
new
-
+
log.instock_changed.comment
Comment
@@ -5401,7 +5401,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Services\LogSystem\LogEntryExtraFormatter.php:214
new
-
+
log.collection_deleted.deleted
Deleted element:
@@ -5411,7 +5411,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.
@@ -5421,7 +5421,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
@@ -5432,7 +5432,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
@@ -5443,7 +5443,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
@@ -5453,7 +5453,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:109
Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:109
-
+
tree.tools.system
System
@@ -5464,7 +5464,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
@@ -5475,7 +5475,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
@@ -5486,7 +5486,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
@@ -5497,7 +5497,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
@@ -5508,7 +5508,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
@@ -5518,7 +5518,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:156
Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:156
-
+
tree.tools.edit.storelocation
Storage locations
@@ -5528,7 +5528,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:162
Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:162
-
+
tree.tools.edit.footprint
Footprints
@@ -5538,7 +5538,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:168
Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:168
-
+
tree.tools.edit.currency
Currencies
@@ -5548,7 +5548,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:174
Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:174
-
+
tree.tools.edit.measurement_unit
Measurement Unit
@@ -5558,7 +5558,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:180
Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:180
-
+
tree.tools.edit.part
Part
@@ -5569,7 +5569,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
src\Services\ToolsTreeBuilder.php:77
-
+
tree.tools.show.all_parts
Show all parts
@@ -5579,7 +5579,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
Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:203
-
+
tree.tools.show.all_attachments
Attachments
@@ -5590,7 +5590,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:210
new
-
+
tree.tools.show.statistics
Statistics
@@ -5600,7 +5600,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:229
Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:229
-
+
tree.tools.system.users
Users
@@ -5610,7 +5610,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:235
Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:235
-
+
tree.tools.system.groups
Groups
@@ -5621,7 +5621,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
Part-DB1\src\Services\Trees\ToolsTreeBuilder.php:242
new
-
+
tree.tools.system.event_log
Event log
@@ -5632,7 +5632,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
@@ -5643,7 +5643,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
obsolete
obsolete
-
+
go.exclamation
Go!
@@ -5654,7 +5654,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
obsolete
obsolete
-
+
language.english
English
@@ -5665,7 +5665,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
obsolete
obsolete
-
+
language.german
German
@@ -5675,7 +5675,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!
@@ -5685,7 +5685,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
obsolete
obsolete
-
+
attachment.table.type
Attachment type
@@ -5695,7 +5695,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
obsolete
obsolete
-
+
attachment.table.element
Associated element
@@ -5705,7 +5705,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
obsolete
obsolete
-
+
attachment.edit.isPicture
Picture?
@@ -5715,7 +5715,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
obsolete
obsolete
-
+
attachment.edit.is3DModel
3D model?
@@ -5725,7 +5725,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
obsolete
obsolete
-
+
attachment.edit.isBuiltin
Builtin?
@@ -5735,7 +5735,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
@@ -5745,7 +5745,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
@@ -5755,7 +5755,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.
@@ -5765,7 +5765,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.
@@ -5775,7 +5775,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.
@@ -5785,7 +5785,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 }})
@@ -5795,7 +5795,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.
@@ -5805,7 +5805,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.
@@ -5815,7 +5815,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.
@@ -5825,7 +5825,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
@@ -5835,7 +5835,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.
@@ -5845,7 +5845,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.
@@ -5855,7 +5855,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.
@@ -5865,7 +5865,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.
@@ -5875,7 +5875,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.
@@ -5885,7 +5885,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
obsolete
obsolete
-
+
flash.success
Success
@@ -5895,7 +5895,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
obsolete
obsolete
-
+
flash.error
Error
@@ -5905,7 +5905,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
obsolete
obsolete
-
+
flash.warning
Warning
@@ -5915,7 +5915,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
obsolete
obsolete
-
+
flash.notice
Notice
@@ -5925,7 +5925,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
obsolete
obsolete
-
+
flash.info
Info
@@ -5935,7 +5935,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.
@@ -5945,7 +5945,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.
@@ -5955,7 +5955,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/*.
@@ -5965,7 +5965,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/*
@@ -5976,7 +5976,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
@@ -5986,7 +5986,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
@@ -5996,7 +5996,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.
@@ -6006,7 +6006,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])
@@ -6016,7 +6016,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
obsolete
obsolete
-
+
entity.create
Create element
@@ -6026,7 +6026,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
obsolete
obsolete
-
+
entity.edit.save
Save
@@ -6036,7 +6036,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
@@ -6046,7 +6046,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.
@@ -6056,7 +6056,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
@@ -6066,7 +6066,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.
@@ -6076,7 +6076,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
@@ -6086,7 +6086,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.
@@ -6096,7 +6096,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
@@ -6106,7 +6106,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.
@@ -6116,7 +6116,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
@@ -6126,7 +6126,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
@@ -6136,7 +6136,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
@@ -6146,7 +6146,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
@@ -6156,7 +6156,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
@@ -6166,7 +6166,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
@@ -6176,7 +6176,7 @@ If you have done this incorrectly or if a computer is no longer trusted, you can
obsolete
obsolete
-
+
company.edit.address
Address
@@ -6186,7 +6186,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
@@ -6197,7 +6197,7 @@ Exampletown
obsolete
obsolete
-
+
company.edit.phone_number
Phone number
@@ -6207,7 +6207,7 @@ Exampletown
obsolete
obsolete
-
+
company.edit.phone_number.placeholder
+49 12345 6789
@@ -6217,7 +6217,7 @@ Exampletown
obsolete
obsolete
-
+
company.edit.fax_number
Fax number
@@ -6227,7 +6227,7 @@ Exampletown
obsolete
obsolete
-
+
company.edit.email
Email
@@ -6237,7 +6237,7 @@ Exampletown
obsolete
obsolete
-
+
company.edit.email.placeholder
e.g. contact@foo.bar
@@ -6247,7 +6247,7 @@ Exampletown
obsolete
obsolete
-
+
company.edit.website
Website
@@ -6257,7 +6257,7 @@ Exampletown
obsolete
obsolete
-
+
company.edit.website.placeholder
https://www.foo.bar
@@ -6267,7 +6267,7 @@ Exampletown
obsolete
obsolete
-
+
company.edit.auto_product_url
Product url
@@ -6277,7 +6277,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.
@@ -6287,7 +6287,7 @@ Exampletown
obsolete
obsolete
-
+
company.edit.auto_product_url.placeholder
https://foo.bar/product/%PARTNR%
@@ -6297,7 +6297,7 @@ Exampletown
obsolete
obsolete
-
+
currency.edit.iso_code
ISO code
@@ -6307,7 +6307,7 @@ Exampletown
obsolete
obsolete
-
+
currency.edit.exchange_rate
Exchange rate
@@ -6317,7 +6317,7 @@ Exampletown
obsolete
obsolete
-
+
footprint.edit.3d_model
3D model
@@ -6327,7 +6327,7 @@ Exampletown
obsolete
obsolete
-
+
mass_creation.lines
Input
@@ -6337,7 +6337,7 @@ Exampletown
obsolete
obsolete
-
+
mass_creation.lines.placeholder
Element 1
Element 2
@@ -6349,7 +6349,7 @@ Element 3
obsolete
obsolete
-
+
entity.mass_creation.btn
Create
@@ -6359,7 +6359,7 @@ Element 3
obsolete
obsolete
-
+
measurement_unit.edit.is_integer
Is integer
@@ -6369,7 +6369,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.
@@ -6379,7 +6379,7 @@ Element 3
obsolete
obsolete
-
+
measurement_unit.edit.use_si_prefix
Use SI prefix
@@ -6389,7 +6389,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)
@@ -6399,7 +6399,7 @@ Element 3
obsolete
obsolete
-
+
measurement_unit.edit.unit_symbol
Unit symbol
@@ -6409,7 +6409,7 @@ Element 3
obsolete
obsolete
-
+
measurement_unit.edit.unit_symbol.placeholder
e.g. m
@@ -6419,7 +6419,7 @@ Element 3
obsolete
obsolete
-
+
storelocation.edit.is_full.label
Storelocation full
@@ -6429,7 +6429,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.
@@ -6439,7 +6439,7 @@ Element 3
obsolete
obsolete
-
+
storelocation.limit_to_existing.label
Limit to existing parts
@@ -6449,7 +6449,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.
@@ -6459,7 +6459,7 @@ Element 3
obsolete
obsolete
-
+
storelocation.only_single_part.label
Only single part
@@ -6469,7 +6469,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.
@@ -6479,7 +6479,7 @@ Element 3
obsolete
obsolete
-
+
storelocation.storage_type.label
Storage type
@@ -6489,7 +6489,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
@@ -6499,7 +6499,7 @@ Element 3
obsolete
obsolete
-
+
supplier.edit.default_currency
Default currency
@@ -6509,7 +6509,7 @@ Element 3
obsolete
obsolete
-
+
supplier.shipping_costs.label
Shipping Costs
@@ -6519,7 +6519,7 @@ Element 3
obsolete
obsolete
-
+
user.username.placeholder
e.g. j.doe
@@ -6529,7 +6529,7 @@ Element 3
obsolete
obsolete
-
+
user.firstName.placeholder
e.g John
@@ -6539,7 +6539,7 @@ Element 3
obsolete
obsolete
-
+
user.lastName.placeholder
e.g. Doe
@@ -6549,7 +6549,7 @@ Element 3
obsolete
obsolete
-
+
user.email.placeholder
j.doe@ecorp.com
@@ -6559,7 +6559,7 @@ Element 3
obsolete
obsolete
-
+
user.department.placeholder
e.g. Development
@@ -6569,7 +6569,7 @@ Element 3
obsolete
obsolete
-
+
user.settings.pw_new.label
New password
@@ -6579,7 +6579,7 @@ Element 3
obsolete
obsolete
-
+
user.settings.pw_confirm.label
Confirm new password
@@ -6589,7 +6589,7 @@ Element 3
obsolete
obsolete
-
+
user.edit.needs_pw_change
User needs to change password
@@ -6599,7 +6599,7 @@ Element 3
obsolete
obsolete
-
+
user.edit.user_disabled
User disbaled (no login possible)
@@ -6609,7 +6609,7 @@ Element 3
obsolete
obsolete
-
+
user.create
Create user
@@ -6619,7 +6619,7 @@ Element 3
obsolete
obsolete
-
+
user.edit.save
Save
@@ -6629,7 +6629,7 @@ Element 3
obsolete
obsolete
-
+
entity.edit.reset
Discard changes
@@ -6640,7 +6640,7 @@ Element 3
obsolete
obsolete
-
+
part.withdraw.caption:
Withdraw parts:
@@ -6651,7 +6651,7 @@ Element 3
obsolete
obsolete
-
+
part.withdraw.btn
Withdraw
@@ -6662,7 +6662,7 @@ Element 3
obsolete
obsolete
-
+
part.withdraw.comment:
Comment/Purpose
@@ -6673,7 +6673,7 @@ Element 3
obsolete
obsolete
-
+
part.add.caption
Add parts
@@ -6684,7 +6684,7 @@ Element 3
obsolete
obsolete
-
+
part.add.btn
Add
@@ -6695,7 +6695,7 @@ Element 3
obsolete
obsolete
-
+
part.add.comment
Comment/Purpose
@@ -6706,7 +6706,7 @@ Element 3
obsolete
obsolete
-
+
admin.comment
Comment
@@ -6717,7 +6717,7 @@ Element 3
obsolete
obsolete
-
+
manufacturer_url.label
Manufacturer link
@@ -6728,7 +6728,7 @@ Element 3
obsolete
obsolete
-
+
part.description.placeholder
e.g. NPN 45V 0,1A 0,5W
@@ -6739,7 +6739,7 @@ Element 3
obsolete
obsolete
-
+
part.instock.placeholder
e.g. 10
@@ -6750,7 +6750,7 @@ Element 3
obsolete
obsolete
-
+
part.mininstock.placeholder
e.g. 5
@@ -6760,7 +6760,7 @@ Element 3
obsolete
obsolete
-
+
homepage.basedOn
Based on work of
@@ -6770,7 +6770,7 @@ Element 3
obsolete
obsolete
-
+
homepage.others
and others
@@ -6780,7 +6780,7 @@ Element 3
obsolete
obsolete
-
+
part.order.price_per
Price per
@@ -6790,7 +6790,7 @@ Element 3
obsolete
obsolete
-
+
part.withdraw.caption
Withdraw parts
@@ -6800,7 +6800,7 @@ Element 3
obsolete
obsolete
-
+
datatable.datatable.lengthMenu
_MENU_
@@ -6810,7 +6810,7 @@ Element 3
obsolete
obsolete
-
+
perm.group.parts
Parts
@@ -6820,7 +6820,7 @@ Element 3
obsolete
obsolete
-
+
perm.group.structures
Data structures
@@ -6830,7 +6830,7 @@ Element 3
obsolete
obsolete
-
+
perm.group.system
System
@@ -6840,7 +6840,7 @@ Element 3
obsolete
obsolete
-
+
perm.parts
Common
@@ -6850,7 +6850,7 @@ Element 3
obsolete
obsolete
-
+
perm.read
View
@@ -6860,7 +6860,7 @@ Element 3
obsolete
obsolete
-
+
perm.edit
Edit
@@ -6870,7 +6870,7 @@ Element 3
obsolete
obsolete
-
+
perm.create
Create
@@ -6880,7 +6880,7 @@ Element 3
obsolete
obsolete
-
+
perm.part.move
Change category
@@ -6890,7 +6890,7 @@ Element 3
obsolete
obsolete
-
+
perm.delete
Delete
@@ -6900,7 +6900,7 @@ Element 3
obsolete
obsolete
-
+
perm.part.search
Search
@@ -6910,7 +6910,7 @@ Element 3
obsolete
obsolete
-
+
perm.part.all_parts
List all parts
@@ -6920,7 +6920,7 @@ Element 3
obsolete
obsolete
-
+
perm.part.no_price_parts
List parts without price infos
@@ -6930,7 +6930,7 @@ Element 3
obsolete
obsolete
-
+
perm.part.obsolete_parts
List obsolete parts
@@ -6940,7 +6940,7 @@ Element 3
obsolete
obsolete
-
+
perm.part.unknown_instock_parts
Show parts with unknown instock
@@ -6950,7 +6950,7 @@ Element 3
obsolete
obsolete
-
+
perm.part.change_favorite
Change favorite status
@@ -6960,7 +6960,7 @@ Element 3
obsolete
obsolete
-
+
perm.part.show_favorite
List favorite parts
@@ -6970,7 +6970,7 @@ Element 3
obsolete
obsolete
-
+
perm.part.show_last_edit_parts
Show last edited/added parts
@@ -6980,7 +6980,7 @@ Element 3
obsolete
obsolete
-
+
perm.part.show_users
Show last modifying user
@@ -6990,7 +6990,7 @@ Element 3
obsolete
obsolete
-
+
perm.part.show_history
Show history
@@ -7000,7 +7000,7 @@ Element 3
obsolete
obsolete
-
+
perm.part.name
Name
@@ -7010,7 +7010,7 @@ Element 3
obsolete
obsolete
-
+
perm.part.description
Description
@@ -7020,7 +7020,7 @@ Element 3
obsolete
obsolete
-
+
perm.part.instock
Instock
@@ -7030,7 +7030,7 @@ Element 3
obsolete
obsolete
-
+
perm.part.mininstock
Minimum instock
@@ -7040,7 +7040,7 @@ Element 3
obsolete
obsolete
-
+
perm.part.comment
Comment
@@ -7050,7 +7050,7 @@ Element 3
obsolete
obsolete
-
+
perm.part.storelocation
Storelocation
@@ -7060,7 +7060,7 @@ Element 3
obsolete
obsolete
-
+
perm.part.manufacturer
Manufacturer
@@ -7070,7 +7070,7 @@ Element 3
obsolete
obsolete
-
+
perm.part.orderdetails
Order informations
@@ -7080,7 +7080,7 @@ Element 3
obsolete
obsolete
-
+
perm.part.prices
Prices
@@ -7090,7 +7090,7 @@ Element 3
obsolete
obsolete
-
+
perm.part.attachments
File attachments
@@ -7100,7 +7100,7 @@ Element 3
obsolete
obsolete
-
+
perm.part.order
Orders
@@ -7110,7 +7110,7 @@ Element 3
obsolete
obsolete
-
+
perm.storelocations
Storelocations
@@ -7120,7 +7120,7 @@ Element 3
obsolete
obsolete
-
+
perm.move
Move
@@ -7130,7 +7130,7 @@ Element 3
obsolete
obsolete
-
+
perm.list_parts
List parts
@@ -7140,7 +7140,7 @@ Element 3
obsolete
obsolete
-
+
perm.part.footprints
Footprints
@@ -7150,7 +7150,7 @@ Element 3
obsolete
obsolete
-
+
perm.part.categories
Categories
@@ -7160,7 +7160,7 @@ Element 3
obsolete
obsolete
-
+
perm.part.supplier
Suppliers
@@ -7170,7 +7170,7 @@ Element 3
obsolete
obsolete
-
+
perm.part.manufacturers
Manufacturers
@@ -7180,7 +7180,7 @@ Element 3
obsolete
obsolete
-
+
perm.part.devices
Devices
@@ -7190,7 +7190,7 @@ Element 3
obsolete
obsolete
-
+
perm.part.attachment_types
Attachment types
@@ -7200,7 +7200,7 @@ Element 3
obsolete
obsolete
-
+
perm.tools.import
Import
@@ -7210,7 +7210,7 @@ Element 3
obsolete
obsolete
-
+
perm.tools.labels
Labels
@@ -7220,7 +7220,7 @@ Element 3
obsolete
obsolete
-
+
perm.tools.calculator
Resistor calculator
@@ -7230,7 +7230,7 @@ Element 3
obsolete
obsolete
-
+
perm.tools.footprints
Footprints
@@ -7240,7 +7240,7 @@ Element 3
obsolete
obsolete
-
+
perm.tools.ic_logos
IC logos
@@ -7250,7 +7250,7 @@ Element 3
obsolete
obsolete
-
+
perm.tools.statistics
Statistics
@@ -7260,7 +7260,7 @@ Element 3
obsolete
obsolete
-
+
perm.edit_permissions
Edit permissions
@@ -7270,7 +7270,7 @@ Element 3
obsolete
obsolete
-
+
perm.users.edit_user_name
Edit user name
@@ -7280,7 +7280,7 @@ Element 3
obsolete
obsolete
-
+
perm.users.edit_change_group
Change group
@@ -7290,7 +7290,7 @@ Element 3
obsolete
obsolete
-
+
perm.users.edit_infos
Edit infos
@@ -7300,7 +7300,7 @@ Element 3
obsolete
obsolete
-
+
perm.users.edit_permissions
Edit permissions
@@ -7310,7 +7310,7 @@ Element 3
obsolete
obsolete
-
+
perm.users.set_password
Set password
@@ -7320,7 +7320,7 @@ Element 3
obsolete
obsolete
-
+
perm.users.change_user_settings
Change user settings
@@ -7330,7 +7330,7 @@ Element 3
obsolete
obsolete
-
+
perm.database.see_status
Show status
@@ -7340,7 +7340,7 @@ Element 3
obsolete
obsolete
-
+
perm.database.update_db
Update DB
@@ -7350,7 +7350,7 @@ Element 3
obsolete
obsolete
-
+
perm.database.read_db_settings
Read DB settings
@@ -7360,7 +7360,7 @@ Element 3
obsolete
obsolete
-
+
perm.database.write_db_settings
Write DB settings
@@ -7370,7 +7370,7 @@ Element 3
obsolete
obsolete
-
+
perm.config.read_config
Read config
@@ -7380,7 +7380,7 @@ Element 3
obsolete
obsolete
-
+
perm.config.edit_config
Edit config
@@ -7390,7 +7390,7 @@ Element 3
obsolete
obsolete
-
+
perm.config.server_info
Server info
@@ -7400,7 +7400,7 @@ Element 3
obsolete
obsolete
-
+
perm.config.use_debug
Use debug tools
@@ -7410,7 +7410,7 @@ Element 3
obsolete
obsolete
-
+
perm.show_logs
Show logs
@@ -7420,7 +7420,7 @@ Element 3
obsolete
obsolete
-
+
perm.delete_logs
Delete logs
@@ -7430,7 +7430,7 @@ Element 3
obsolete
obsolete
-
+