mirror of
https://github.com/Combodo/iTop.git
synced 2026-08-26 07:59:27 +02:00
* 🌐 Complete the German (de) translations (iTop 3.3) German was incomplete in ways that the `~~` marker alone does not reveal. This pull request: - translates 317 entries that still carried the `~~` fallback marker - fills 265 descriptions that were empty while the English entry had text - adds 69 keys that existed only in the English dictionary - updates 57 entries that still mirrored an older, much shorter English wording - restores 8 broken printf placeholders - adds 3 German dictionaries for modules that shipped none English source strings and dictionary keys are untouched; only German values change. Each printf placeholder was checked against its English entry. * 🌐 Translate the new welcome popup entries (iTop 3.3) Follow-up to the develop merge: translates the new `330_05_Portal` title and description, extends `330_01_Welcome` with the sentences added upstream, and restores the German wording that the merge had reverted to English for `330_01_Welcome:Title`, `330_02_AIFoundations:Title` and `330_04_MFA:Description`. --------- Co-authored-by: Molkobain <lajarige.guillaume@free.fr>
19 lines
517 B
PHP
19 lines
517 B
PHP
<?php
|
|
|
|
/**
|
|
* Localized data
|
|
*
|
|
* @copyright Copyright (C) 2010-2024 Combodo SAS
|
|
* @license https://opensource.org/licenses/AGPL-3.0
|
|
*
|
|
*/
|
|
/**
|
|
*
|
|
*/
|
|
Dict::Add('DE DE', 'German', 'Deutsch', [
|
|
'UI:Component:Input:ChangeNotAllowed' => 'Diese Änderung ist nicht erlaubt',
|
|
'UI:Component:Input:Password:DoesNotMatch' => 'Passwörter stimmen nicht überein',
|
|
'UI:Component:Input:Set:MinimumItems' => 'Mindestens %1$s Element(e) benötigt',
|
|
'UI:Component:Input:Select:Select_item' => 'Eintrag auswählen...',
|
|
]);
|