todos fixed

This commit is contained in:
Dennis Eichhorn 2023-10-12 22:49:20 +00:00
parent ff3b15caff
commit e643fbcc70
3 changed files with 5 additions and 5 deletions

View File

@ -504,7 +504,7 @@ final class ApiController extends Controller
->execute();
$type = $request->getDataString('type');
$mimes = $type === null ? $request->header->get('content-type') : [$type];
$mimes = $type === null ? $request->header->get('Content-Type') : [$type];
foreach ($mimes as $mime) {
if ($mime === MimeType::M_TEXT) {

View File

@ -15,5 +15,5 @@ declare(strict_types=1);
return ['Navigation' => [
'Create' => 'Erstellen',
'Editor' => 'Editor',
'List' => 'Aufführen',
'List' => 'Liste',
]];

View File

@ -15,7 +15,7 @@ declare(strict_types=1);
return ['Editor' => [
'Add' => 'Hinzufügen',
'Created' => 'Erstellt',
'Creator' => 'Schöpfer',
'Creator' => 'Ersteller',
'Documents' => 'Unterlagen',
'Editor' => 'Editor',
'GroupUser' => 'Gruppe / Benutzer',
@ -27,8 +27,8 @@ return ['Editor' => [
'Permission' => 'Erlaubnis',
'Preview' => 'Vorschau',
'Save' => 'Speichern',
'Start' => 'Anfang',
'Start' => 'Start',
'Text' => 'Text',
'Title' => 'Titel',
'Type' => '',
'Type' => 'Typ',
]];