Files
san-reymoros/language/fr/plupload.php
Gauvain Boiché 5e4c5f9418 Ajout du FR
Ajout du FR + correction du "functions.php"
2020-03-30 14:52:34 +02:00

79 lines
3.9 KiB
PHP
Raw Permalink Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?php
/**
* This file is part of the French language pack for the
* phpBB forum software.
*
* @copyright (c) phpBB Limited <https://www.phpbb.com>
* @copyright (c) Moxiecode Systems AB <http://www.moxiecode.com>
* @license GNU General Public License, version 2 (GPL-2.0)
*
* For more information about the language pack, please visit
* https://www.phpbb.com/customise/db/translation/french/
*/
/**
* DO NOT CHANGE
*/
if (!defined('IN_PHPBB'))
{
exit;
}
if (empty($lang) || !is_array($lang))
{
$lang = [];
}
// DEVELOPERS PLEASE NOTE
//
// All language files should use UTF-8 as their encoding and the files must not contain a BOM.
//
// Placeholders can now contain order information, e.g. instead of
// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
// translators to re-order the output of data while ensuring it remains correct
//
// You do not need this where single placeholders are used, e.g. 'Message %d' is fine
// equally where a string contains only two placeholders which are used to wrap text
// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
$lang = array_merge($lang, [
'PLUPLOAD_ADD_FILES' => 'Ajouter des fichiers',
'PLUPLOAD_ADD_FILES_TO_QUEUE' => 'Ajoutez des fichiers à la file dattente de transfert et cliquez sur le bouton de démarrage afin de les transférer.',
'PLUPLOAD_ALREADY_QUEUED' => '%s fichiers déjà présents dans la file dattente.',
'PLUPLOAD_CLOSE' => 'Fermer',
'PLUPLOAD_DRAG' => 'Glissez et déposez ici les fichiers que vous souhaitez transférer.',
'PLUPLOAD_DUPLICATE_ERROR' => 'Erreur de duplicata de fichier.',
'PLUPLOAD_DRAG_TEXTAREA' => 'Vous pouvez également transférer des fichiers en les glissant et en les déposant dans la boîte de texte.',
'PLUPLOAD_ERR_INPUT' => 'Impossible douvrir le flux dentrée.',
'PLUPLOAD_ERR_MOVE_UPLOADED' => 'Impossible de déplacer le fichier transféré.',
'PLUPLOAD_ERR_OUTPUT' => 'Impossible douvrir le flux de sortie.',
'PLUPLOAD_ERR_FILE_TOO_LARGE' => 'La taille du fichier est trop importante :',
'PLUPLOAD_ERR_FILE_COUNT' => 'Erreur sur le nombre de fichiers.',
'PLUPLOAD_ERR_FILE_INVALID_EXT' => 'Lextension du fichier est invalide :',
'PLUPLOAD_ERR_RUNTIME_MEMORY' => 'La mémoire disponible est insuffisante.',
'PLUPLOAD_ERR_UPLOAD_URL' => 'Le lien de transfert est introuvable ou invalide.',
'PLUPLOAD_EXTENSION_ERROR' => 'Erreur dextension de fichier.',
'PLUPLOAD_FILE' => 'Fichier : %s',
'PLUPLOAD_FILE_DETAILS' => 'Fichier : %s ; taille : %d ; taille maximale autorisée : %d',
'PLUPLOAD_FILENAME' => 'Nom',
'PLUPLOAD_FILES_QUEUED' => '%d fichiers en attente',
'PLUPLOAD_GENERIC_ERROR' => 'Erreur générique.',
'PLUPLOAD_HTTP_ERROR' => 'Erreur HTTP.',
'PLUPLOAD_IMAGE_FORMAT' => 'Le format de limage est invalide ou nest pas pris en charge.',
'PLUPLOAD_INIT_ERROR' => 'Erreur dinitialisation.',
'PLUPLOAD_IO_ERROR' => 'Erreur E/S.',
'PLUPLOAD_NOT_APPLICABLE' => 'ND',
'PLUPLOAD_SECURITY_ERROR' => 'Erreur de sécurité.',
'PLUPLOAD_SELECT_FILES' => 'Sélectionner des fichiers',
'PLUPLOAD_SIZE' => 'Taille',
'PLUPLOAD_SIZE_ERROR' => 'Erreur de taille de fichier.',
'PLUPLOAD_STATUS' => 'Statut',
'PLUPLOAD_START_UPLOAD' => 'Démarrer le transfert',
'PLUPLOAD_START_CURRENT_UPLOAD' => 'Démarrer le transfert de la file',
'PLUPLOAD_STOP_UPLOAD' => 'Interrompre le transfert',
'PLUPLOAD_STOP_CURRENT_UPLOAD' => 'Interrompre le transfert actuel',
// Note: This string is formatted independently by plupload and so does not
// use the same formatting rules as normal phpBB translation strings
'PLUPLOAD_UPLOADED' => '%d/%d fichiers transférés',
]);