Guest User

Untitled

a guest
May 23rd, 2018
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.89 KB | None | 0 0
  1. <?php
  2. //
  3. // fr.lproj.php
  4. // CSPhotocardsPlugIn - Basil
  5. //
  6. // Created by Nicolas Lapomarda on 10/14/08.
  7. // Copyright 2008 Conceited Software. All rights reserved.
  8. //
  9.  
  10. // api messages
  11. define('MSG_PHOTOCARDS_NAME_NOT_SPECIFIED', "Nom du destinataire non spécifié, impossible de continuer.");
  12. define('MSG_PHOTOCARDS_EMAIL_NOT_SPECIFIED', "Adresse du destinataire non spécifiée, impossible de continuer.");
  13. define('MSG_PHOTOCARDS_PHOTOCARD_NOT_SPECIFIED', "Photocard non spécifiée, rien a faire.");
  14. define('MSG_PHOTOCARDS_PHOTOCARD_UPLOAD_ERROR', "Une erreur est survenue pendant l'envoi. Merci de réessayer.");
  15. define('MSG_PHOTOCARDS_UPLOAD_IS_NOT_AN_IMAGE', "Le fichier attaché n'est pas une image valide.");
  16.  
  17. // mail messages
  18. define('MSG_PHOTOCARDS_MESSAGE_DEFAULT_SUBJECT', "Vous avez reçu une Photocard!");
  19. define('MSG_PHOTOCARDS_MESSAGE_BODY', "Vous avez reçu une Photocard. Vous la trouverez en fichier joint.");
  20. define('MSG_PHOTOCARDS_MESSAGE_SENT', "E-mail envoyé.");
  21.  
  22. // upload messages
  23. define('MSG_PHOTOCARDS_UPLOAD_ERROR_MAX_SIZE', "Le fichier attaché est plus lourd que la préférence upload_max_filesize (".ini_get("upload_max_filesize").") dans php.ini.");
  24. define('MSG_PHOTOCARDS_UPLOAD_ERROR_MAX_SIZE_FORM', "Le fichier attaché est plus lourd que la préférence MAX_FILE_SIZE spécifiée dans le formulaire HTML.");
  25. define('MSG_PHOTOCARDS_UPLOAD_ERROR_PARTIAL', "Le fichier n'a été transféré que partiellement.");
  26. define('MSG_PHOTOCARDS_UPLOAD_ERROR_NO_FILE', "Aucun fichier n'a été transféré.");
  27. define('MSG_PHOTOCARDS_UPLOAD_ERROR_NO_TMP_FOLDER', "Un dossier temporaire est introuvable.");
  28. define('MSG_PHOTOCARDS_UPLOAD_ERROR_WRITE_FAILED', "L'écriture sur le disque a échoué");
  29. define('MSG_PHOTOCARDS_UPLOAD_ERROR_EXTENSION_NOT_AUTHORIZED', "L'extension n'est pas autorisée.");
  30. define('MSG_PHOTOCARDS_UPLOAD_ERROR_UNKNOWN', "Erreur Fichier Inconnue");
  31.  
  32. ?>
Add Comment
Please, Sign In to add comment