cambios adicionales
This commit is contained in:
@@ -0,0 +1,53 @@
|
||||
<?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."
|
||||
);
|
||||
?>
|
||||
@@ -0,0 +1,53 @@
|
||||
<?php
|
||||
// French translation provided courtesy of GitHub user tuxfamily.
|
||||
// (C) 2022 CubicleSoft. All Rights Reserved.
|
||||
|
||||
if (!isset($langmap)) $langmap = array();
|
||||
|
||||
$langmap["fr"] = array(
|
||||
"The uploaded file exceeds the 'upload_max_filesize' directive in 'php.ini'." =>
|
||||
"Le poids du fichier dépasse la directive 'upload_max_filesize' dans 'php.ini'.",
|
||||
|
||||
"The uploaded file exceeds the 'MAX_FILE_SIZE' directive that was specified in the submitted form." =>
|
||||
"Le poids du fichier dépasse la directive 'MAX_FILE_SIZE' spécifiée dans le formulaire.",
|
||||
|
||||
"The uploaded file was only partially uploaded." =>
|
||||
"Le fichier n'a été que partiellement transféré.",
|
||||
|
||||
"No file was uploaded." =>
|
||||
"Aucun fichier n'a été transféré.",
|
||||
|
||||
"The configured temporary folder on the server is missing." =>
|
||||
"Le dossier temporaire configuré sur le serveur n'existe pas.",
|
||||
|
||||
"Unable to write the temporary file to disk. The server is out of disk space, incorrectly configured, or experiencing hardware issues." =>
|
||||
"Impossible d'écrire le fichier temporaire sur le disque. Le serveur manque d'espace disque ou rencontre des problèmes techniques.",
|
||||
|
||||
"A PHP extension stopped the upload." =>
|
||||
"Une extension PHP a arrêté le transfert.",
|
||||
|
||||
"An unknown error occurred." =>
|
||||
"Une erreur inconnue est survenue.",
|
||||
|
||||
"The specified input filename was not uploaded to this server." =>
|
||||
"Le nom de fichier spécifié n'a pu être transmis au serveur.",
|
||||
|
||||
"File data was submitted but is missing." =>
|
||||
"Les données du fichier ont été transférées mais le fichier est manquant.",
|
||||
|
||||
"Invalid file extension. Must be one of %s." =>
|
||||
"Extension de fichier invalide. Les extensions acceptées sont : %s.",
|
||||
|
||||
"The server did not set a valid filename." =>
|
||||
"Le serveur n'a pas retourné un nom de fichier valide.",
|
||||
|
||||
"The server file size limit was exceeded." =>
|
||||
"La limite de poids de fichier définie sur le serveur a été dépassée.",
|
||||
|
||||
"Unable to open a required file for writing." =>
|
||||
"Impossible d'ouvrir un fichier requis pour l'écriture.",
|
||||
|
||||
"Unable to open a required file for reading." =>
|
||||
"Impossible d'ouvrir un fichier requis pour la lecture."
|
||||
);
|
||||
?>
|
||||
Reference in New Issue
Block a user