Просмотр файла vendor/verot/class.upload.php/src/lang/class.upload.fr_FR.php

Размер файла: 6.81Kb
  1. <?php
  2. // +------------------------------------------------------------------------+
  3. // | class.upload.fr_FR.php |
  4. // +------------------------------------------------------------------------+
  5. // | Copyright (c) Colin Verot 2003-2007. All rights reserved. |
  6. // | Version 0.25 |
  7. // | Last modified 17/11/2007 |
  8. // | Email colin@verot.net |
  9. // | Web http://www.verot.net |
  10. // +------------------------------------------------------------------------+
  11. // | This program is free software; you can redistribute it and/or modify |
  12. // | it under the terms of the GNU General Public License version 2 as |
  13. // | published by the Free Software Foundation. |
  14. // | |
  15. // | This program is distributed in the hope that it will be useful, |
  16. // | but WITHOUT ANY WARRANTY; without even the implied warranty of |
  17. // | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
  18. // | GNU General Public License for more details. |
  19. // | |
  20. // | You should have received a copy of the GNU General Public License |
  21. // | along with this program; if not, write to the |
  22. // | Free Software Foundation, Inc., 59 Temple Place, Suite 330, |
  23. // | Boston, MA 02111-1307 USA |
  24. // | |
  25. // | Please give credit on sites that use class.upload and submit changes |
  26. // | of the script so other people can use them as well. |
  27. // | This script is free to use, don't abuse. |
  28. // +------------------------------------------------------------------------+
  29.  
  30. /**
  31. * Class upload french translation
  32. *
  33. * @version 0.28
  34. * @author Colin Verot <colin@verot.net>
  35. * @license http://opensource.org/licenses/gpl-license.php GNU Public License
  36. * @copyright Colin Verot
  37. * @package cmf
  38. * @subpackage external
  39. */
  40.  
  41. $translation = array();
  42. $translation['file_error'] = 'Erreur de transmission. Essayez encore.';
  43. $translation['local_file_missing'] = 'Le fichier local n\'existe pas.';
  44. $translation['local_file_not_readable'] = 'Le fichier local ne peut être ouvert en lecture.';
  45. $translation['uploaded_too_big_ini'] = 'Le fichier transmis dépasse la taille autorisée dans la configuration php.ini.';
  46. $translation['uploaded_too_big_html'] = 'Le fichier transmis dépasse la taille autorisée dans le formulaire.';
  47. $translation['uploaded_partial'] = 'Le fichier n\' été que partiellement transmis.';
  48. $translation['uploaded_missing'] = 'Le serveur n\'a pas reçu de fichier.';
  49. $translation['uploaded_no_tmp_dir'] = 'Il n\'y a pas de répertoire temporaire disponible';
  50. $translation['uploaded_cant_write'] = 'Impossible d\'écrire sur le disque.';
  51. $translation['uploaded_err_extension'] = 'Upload stoppé par l\'extension.';
  52. $translation['uploaded_unknown'] = 'Erreur inconnue.';
  53. $translation['try_again'] = 'Erreur de transmission. Essayez encore.';
  54. $translation['file_too_big'] = 'Fichier trop gros.';
  55. $translation['no_mime'] = 'Le MIME type ne peut être détecté.';
  56. $translation['incorrect_file'] = 'Type de fichier incorrect.';
  57. $translation['image_too_wide'] = 'L\'image est trop large.';
  58. $translation['image_too_narrow'] = 'L\'image n\est pas assez large.';
  59. $translation['image_too_high'] = 'L\image est trop haute.';
  60. $translation['image_too_short'] = 'L\image n\est pas assez haute.';
  61. $translation['ratio_too_high'] = 'Le ratio est trop élevé (image trop large).';
  62. $translation['ratio_too_low'] = 'Le ratio est trop petit (image trop haute).';
  63. $translation['too_many_pixels'] = 'L\'image a trop de pixels.';
  64. $translation['not_enough_pixels'] = 'L\'image n\'a pas assez de pixels.';
  65. $translation['file_not_uploaded'] = 'Fichier non transmis. Impossible de continuer.';
  66. $translation['already_exists'] = '%s existe déjà. Changez le nom du fichier.';
  67. $translation['temp_file_missing'] = 'Le fichier source est incorrect. Impossible de continuer.';
  68. $translation['source_missing'] = 'Le fichier transmis est incorrect. Impossible de continuer.';
  69. $translation['destination_dir'] = 'Le répertoire de destination ne peut être crée. Impossible de continuer.';
  70. $translation['destination_dir_missing'] = 'Le répertoire de destination n\'existe pas. Impossible de continuer.';
  71. $translation['destination_path_not_dir'] = 'Le chemin de destination n\'est pas un répertoire. Impossible de continuer.';
  72. $translation['destination_dir_write'] = 'Le répertoire de destination ne peut être ouvert en écriture. Impossible de continuer.';
  73. $translation['destination_path_write'] = 'Le chemin de destination ne peut être ouvert en écriture. Impossible de continuer.';
  74. $translation['temp_file'] = 'Le fichier temporaire ne peut être crée. Impossible de continuer.';
  75. $translation['source_not_readable'] = 'Le fichier source ne peut être lu. Impossible de continuer.';
  76. $translation['no_create_support'] = 'Création depuis un fichier %s impossible.';
  77. $translation['create_error'] = 'Erreur lors de la création de l\'image %s depuis le fichier source.';
  78. $translation['source_invalid'] = 'Impossible de lire l\'image source. Est-ce une image?.';
  79. $translation['gd_missing'] = 'GD ne semble pas être présent.';
  80. $translation['watermark_no_create_support'] = 'Création depuis un fichier %s impossible, watermark ne peut être lu.';
  81. $translation['watermark_create_error'] = 'Erreur lors de la création du watermark %s depuis le fichier source.';
  82. $translation['watermark_invalid'] = 'Impossible de lire le watermark, format de fichier inconnu.';
  83. $translation['file_create'] = 'Création d\'un fichier %s impossible.';
  84. $translation['no_conversion_type'] = 'Le type de conversion n\'est pas défini.';
  85. $translation['copy_failed'] = 'La copie du fichier sur le serveur a échoué.';
  86. $translation['reading_failed'] = 'Erreur pendant la lecture du fichier.';
  87.  
  88. ?>