Guest User

Untitled

a guest
May 23rd, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.79 KB | None | 0 0
  1. <?php
  2. //
  3. // en.lproj.php
  4. // CSPhotocardsPlugIn - Basil
  5. //
  6. // Created by Nicholas Penree on 10/14/08.
  7. // Copyright 2008 Conceited Software. All rights reserved.
  8. //
  9.  
  10. // api messages
  11. define('MSG_PHOTOCARDS_NAME_NOT_SPECIFIED', "No destination name specified, cannot continue.");
  12. define('MSG_PHOTOCARDS_EMAIL_NOT_SPECIFIED', "No destination email specified, cannot continue.");
  13. define('MSG_PHOTOCARDS_PHOTOCARD_NOT_SPECIFIED', "No Photocard specified, nothing to send.");
  14. define('MSG_PHOTOCARDS_PHOTOCARD_UPLOAD_ERROR', "There was a problem when uploading your photocard. Please try again.");
  15. define('MSG_PHOTOCARDS_UPLOAD_IS_NOT_AN_IMAGE', "The file you uploaded was not a valid image.");
  16.  
  17. // mail messages
  18. define('MSG_PHOTOCARDS_MESSAGE_DEFAULT_SUBJECT', "You have been sent a Photocard!");
  19. define('MSG_PHOTOCARDS_MESSAGE_BODY', "You have been sent a Photocard. Please see the attached image.");
  20. define('MSG_PHOTOCARDS_MESSAGE_SENT', "Mail sent successfully.");
  21.  
  22. // upload messages
  23. define('MSG_PHOTOCARDS_UPLOAD_ERROR_MAX_SIZE', "The uploaded file exceeds the upload_max_filesize directive (".ini_get("upload_max_filesize").") in php.ini.");
  24. define('MSG_PHOTOCARDS_UPLOAD_ERROR_MAX_SIZE_FORM', "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form.");
  25. define('MSG_PHOTOCARDS_UPLOAD_ERROR_PARTIAL', "The uploaded file was only partially uploaded.");
  26. define('MSG_PHOTOCARDS_UPLOAD_ERROR_NO_FILE', "No file was uploaded.");
  27. define('MSG_PHOTOCARDS_UPLOAD_ERROR_NO_TMP_FOLDER', "Missing a temporary folder.");
  28. define('MSG_PHOTOCARDS_UPLOAD_ERROR_WRITE_FAILED', "Failed to write file to disk");
  29. define('MSG_PHOTOCARDS_UPLOAD_ERROR_EXTENSION_NOT_AUTHORIZED', "File upload stopped by extension.");
  30. define('MSG_PHOTOCARDS_UPLOAD_ERROR_UNKNOWN', "Unknown File Error");
  31.  
  32. ?>
Add Comment
Please, Sign In to add comment