SproutCMS

This is the code documentation for the SproutCMS project

source of /sprout/i18n/en_US/image.php

  1. <?php
  2. /*
  3.  * Copyright (C) 2017 Karmabunny Pty Ltd.
  4.  *
  5.  * This file is a part of SproutCMS.
  6.  *
  7.  * SproutCMS is free software: you can redistribute it and/or modify it under the terms
  8.  * of the GNU General Public License as published by the Free Software Foundation, either
  9.  * version 2 of the License, or (at your option) any later version.
  10.  *
  11.  * For more information, visit <http://getsproutcms.com>.
  12.  */
  13.  
  14.  
  15. $lang = array
  16. (
  17. 'getimagesize_missing' => 'The Image library requires the getimagesize() PHP function, which is not available in your installation.',
  18. 'unsupported_method' => 'Your configured driver does not support the %s image transformation.',
  19. 'file_not_found' => 'The specified image, %s, was not found. Please verify that images exist by using file_exists() before manipulating them.',
  20. 'type_not_allowed' => 'The specified image, %s, is not an allowed image type.',
  21. 'invalid_width' => 'The width you specified, %s, is not valid.',
  22. 'invalid_height' => 'The height you specified, %s, is not valid.',
  23. 'invalid_dimensions' => 'The dimensions specified for %s are not valid.',
  24. 'invalid_master' => 'The master dimension specified is not valid.',
  25. 'invalid_flip' => 'The flip direction specified is not valid.',
  26. 'directory_unwritable' => 'The specified directory, %s, is not writable.',
  27.  
  28. // ImageMagick specific messages
  29. 'imagemagick' => array
  30. (
  31. 'not_found' => 'The ImageMagick directory specified does not contain a required program, %s.',
  32. ),
  33.  
  34. // GraphicsMagick specific messages
  35. 'graphicsmagick' => array
  36. (
  37. 'not_found' => 'The GraphicsMagick directory specified does not contain a required program, %s.',
  38. ),
  39.  
  40. // GD specific messages
  41. 'gd' => array
  42. (
  43. 'requires_v2' => 'The Image library requires GD2. Please see http://php.net/gd_info for more information.',
  44. ),
  45. );
  46.