53 lines
2.1 KiB
PHP
53 lines
2.1 KiB
PHP
<?php
|
|
// German translation provided courtesy of GitHub user Woersty.
|
|
// (C) 2021 CubicleSoft. All Rights Reserved.
|
|
|
|
if (!isset($langmap)) $langmap = array();
|
|
|
|
$langmap["de"] = array(
|
|
"The uploaded file exceeds the 'upload_max_filesize' directive in 'php.ini'." =>
|
|
"Die hochgeladene Datei ist größer als 'upload_max_filesize' in der 'php.ini'.",
|
|
|
|
"The uploaded file exceeds the 'MAX_FILE_SIZE' directive that was specified in the submitted form." =>
|
|
"Die hochgeladene Datei ist größer als 'MAX_FILE_SIZE' im Formular.",
|
|
|
|
"The uploaded file was only partially uploaded." =>
|
|
"Die Datei wurde nur teilweise hochgeladen.",
|
|
|
|
"No file was uploaded." =>
|
|
"Es wurde keine Datei hochgeladen.",
|
|
|
|
"The configured temporary folder on the server is missing." =>
|
|
"Der temporäre Ordner auf dem LoxBerry ist nicht vorhanden.",
|
|
|
|
"Unable to write the temporary file to disk. The server is out of disk space, incorrectly configured, or experiencing hardware issues." =>
|
|
"Kann die temporäre Datei nicht schreiben. Entweder ist Speicherplatz voll oder das Speichermedium defekt.",
|
|
|
|
"A PHP extension stopped the upload." =>
|
|
"Keine PHP Erweiterung stoppte das Hochladen.",
|
|
|
|
"An unknown error occurred." =>
|
|
"Ein unbekannter Fehler ist aufgetreten.",
|
|
|
|
"The specified input filename was not uploaded to this server." =>
|
|
"Der angegebene Dateiname wurde nicht auf diesen Server hochgeladen.",
|
|
|
|
"File data was submitted but is missing." =>
|
|
"Dateiinformationen wurden gesendet aber es fehlen Angaben.",
|
|
|
|
"Invalid file extension. Must be one of %s." =>
|
|
"Ungültige Dateiendung. Es muss eine von diesen sein %s.",
|
|
|
|
"The server did not set a valid filename." =>
|
|
"Der Server hat keinen gültigen Dateinamen gesendet.",
|
|
|
|
"The server file size limit was exceeded." =>
|
|
"Die Server Dateigrößenbeschränkung wurde überschritten.",
|
|
|
|
"Unable to open a required file for writing." =>
|
|
"Kann eine benötigte Datei nicht für den Schreibzugriff öffnen.",
|
|
|
|
"Unable to open a required file for reading." =>
|
|
"Kann eine benötigte Datei nicht für den Lesezugriff öffnen."
|
|
);
|
|
?>
|