Skip to content

Commit

Permalink
Fix missing DE keys. (#257)
Browse files Browse the repository at this point in the history
  • Loading branch information
sfadschm committed Nov 17, 2021
1 parent 5239fd9 commit 6ca8e76
Show file tree
Hide file tree
Showing 3 changed files with 41 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Language/de/Files.php
Expand Up @@ -11,6 +11,8 @@

// Files language settings
return [
'fileNotFound' => 'Datei nicht gefunden: {0}',
'cannotMove' => 'Datei konnte nicht von {0} nach {1} verschoben werden ({2}).',
'fileNotFound' => 'Datei nicht gefunden: {0}',
'cannotMove' => 'Datei konnte nicht von {0} nach {1} verschoben werden ({2}).',
'expectedDirectory' => '{0} erwartet einen gültigen Ordner.',
'expectedFile' => '{0} erwartet eine gültige Datei.',
];
22 changes: 22 additions & 0 deletions Language/de/Publisher.php
@@ -0,0 +1,22 @@
<?php

/**
* This file is part of CodeIgniter 4 framework.
*
* (c) CodeIgniter Foundation <admin@codeigniter.com>
*
* For the full copyright and license information, please view
* the LICENSE file that was distributed with this source code.
*/

// Publisher language settings
return [
'collision' => 'Publisher hat ein unerwartetes {0} beim Kopieren von {1} nach {2} festgestellt.',
'destinationNotAllowed' => 'Das Ziel befindet sich nicht in der Liste der zulässigen Publisher-Verzeichnisse: {0}',
'fileNotAllowed' => '{0} erfüllt die folgende Einschränkung für {1} nicht: {2}',

// Publish Command
'publishMissing' => 'Es konnten keine Publisher-Klassen in {0} in allen Namensräumen detektiert werden.',
'publishSuccess' => '{0} hat {1} Datei(en) nach {2} publiziert.',
'publishFailure' => '{0} konnte nicht nach {1} publiziert werden!',
];
15 changes: 15 additions & 0 deletions Language/de/Test.php
@@ -0,0 +1,15 @@
<?php

/**
* This file is part of CodeIgniter 4 framework.
*
* (c) CodeIgniter Foundation <admin@codeigniter.com>
*
* For the full copyright and license information, please view
* the LICENSE file that was distributed with this source code.
*/

// Testing language settings
return [
'invalidMockClass' => '{0} ist keine gültige Mock-Klasse',
];

0 comments on commit 6ca8e76

Please sign in to comment.