| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- <?php
- /**
- * pThumb
- * Copyright 2013 Jason Grant
- *
- * Forked from phpThumbOf 1.4.0
- * Copyright 2009-2012 by Shaun McCormick <shaun@modx.com>
- *
- * Please see the GitHub page for documentation or to report bugs:
- * https://github.com/oo12/phpThumbOf
- *
- * pThumb is free software; you can redistribute it and/or modify it
- * under the terms of the GNU General Public License as published by the Free
- * Software Foundation; either version 2 of the License, or (at your option) any
- * later version.
- *
- * pThumb is distributed in the hope that it will be useful, but WITHOUT ANY
- * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
- * A PARTICULAR PURPOSE. See the GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License along with
- * phpThumbOf; if not, write to the Free Software Foundation, Inc., 59 Temple
- * Place, Suite 330, Boston, MA 02111-1307 USA
- *
- * @package phpthumbof
- */
- /**
- * English Lexicon for phpThumbOf
- *
- * @package phpthumbof
- * @subpackage lexicon
- * @language en
- */
- $_lang['setting_phpthumbof.cache_path'] = 'Override Cache Path';
- $_lang['setting_phpthumbof.cache_path_desc'] = '<strong>phpThumbOf cache only</strong><br />Optional. You may set an absolute path here to override the path for the cache.';
- $_lang['setting_phpthumbof.postfix_property_hash'] = 'Post-fix Properties Hash to Name';
- $_lang['setting_phpthumbof.postfix_property_hash_desc'] = '<strong>phpThumbOf cache only</strong><br /><strong>Yes</strong>: add a hash to the thumbnail’s filename to prevent collisions with different versions of the same image or others with the same name.<br /><strong>No</strong>: don’t add a hash. You probably don’t want this, especially if your site has more than a few images.';
- $_lang['setting_phpthumbof.check_mod_time'] = 'Check file modification time';
- $_lang['setting_phpthumbof.check_mod_time_desc'] = '<strong>Both cache systems</strong><br />Check file mod time and update the cached version if the original image has changed. Note that changing this setting will cause all thumbnails to be regenerated on access.<br /><strong>Default:</strong> No';
- $_lang['setting_phpthumbof.cache_url'] = 'Override Cache URL';
- $_lang['setting_phpthumbof.cache_url_desc'] = 'An absolute URL to be prepended to generated image URLs. Can be useful when using contexts and subdomains. Ex: http://subdomain.site.com/';
- $_lang['setting_pthumb.global_defaults'] = 'Global Default Options';
- $_lang['setting_pthumb.global_defaults_desc'] = 'An string of default options for image resizing. Ex: q=60&zc=C';
- $_lang['setting_phpthumbof.use_resizer'] = 'Use Resizer';
- $_lang['setting_phpthumbof.use_resizer_desc'] = 'Use Resizer instead of phpThumb for image sizing and cropping.<br /><strong>Requires PHP 5.3.2 or higher</strong><br />See the <a href="https://github.com/oo12/Resizer" target="_blank">Resizer documentation</a> for more info.<br /><strong>Default:</strong> No';
- $_lang['setting_phpthumbof.remote_timeout'] = 'Remote Timeout';
- $_lang['setting_phpthumbof.remote_timeout_desc'] = 'When downloading a remote image, abort if the transfer hasn’t finished after this many seconds. Remote images are cached for subsequent use.<br /><strong>Default:</strong> 5';
- $_lang['setting_pthumb.use_ptcache'] = 'Use pThumb Cache';
- $_lang['setting_pthumb.use_ptcache_desc'] = '<strong>Yes</strong>: use the <a href="https://github.com/oo12/phpThumbOf#pthumb-cache" target="_blank">pThumb cache</a> structure, where thumbnail filenames retain part of the original image\'s path and have shorter hashes.<br /><strong>No</strong>: use the "classic" phpThumbOf cache.<br /><strong>Default:</strong> No';
- $_lang['setting_pthumb.ptcache_location'] = 'pThumb Cache Location';
- $_lang['setting_pthumb.ptcache_location_desc'] = 'Cache location when using the pThumb cache. Relative to MODX_BASE_DIR (generally your web root). Make sure this directory is writable by PHP.<br /><strong>Default:</strong> assets/image-cache';
- $_lang['setting_pthumb.ptcache_images_basedir'] = 'Images Base Directory';
- $_lang['setting_pthumb.ptcache_images_basedir_desc'] = 'Location of your original images. You’ll likely want to make this more specific. Any subdirectories are used in cache filenames. Any images outside of this directory will simply be cached to top level of pThumb Cache Location.<br /><strong>Default:</strong> assets';
- $_lang['setting_pthumb.clean_level'] = 'Cache Cleaning Level';
- $_lang['setting_pthumb.clean_level_desc'] = 'How to clean the caches on site refresh. The cache manager plugin processes all 3 caches: phpThumbOf style, pThumb style, and remote images. The S3 output media source is cleaned as well.<br /><strong>0</strong>: (default) Do nothing<br /><strong>1</strong>: Clean the caches separately based on the "Max Cache *" system settings (core > phpThumb)<br /><strong>2</strong>: Delete all cached images';
- $_lang['setting_pthumb.s3_output'] = 'S3 Output Media Source';
- $_lang['setting_pthumb.s3_output_desc'] = 'ID number of the S3 media source to use for output. May be overridden with the <em>&s3output</em> property.';
- $_lang['setting_pthumb.s3_headers'] = 'S3 Additional Headers';
- $_lang['setting_pthumb.s3_headers_desc'] = 'Specify additional HTTP headers for S3 objects. One per line in the format <strong>header: value</strong>';
- $_lang['setting_pthumb.s3_multi_img'] = 'Optimize for Multiple Images';
- $_lang['setting_pthumb.s3_multi_img_desc'] = 'Controls how pThumb checks for cached thumbnails on S3.<br /><strong>Yes</strong>: Retreive a list of all objects in the bucket, then use this list for all subsequent pThumb calls on the page (1 S3 request total)<br /><strong>No</strong>: Check the existence of each thumbnail object individually (separate S3 request for each image)<br />May be overridden with the <em>&s3multiImg</em> property. Multi is faster the more the thumbnails on a page and the fewer the objects in the S3 bucket. In some quick testing I found Multi is better when X > 1 + Y/250, where X is the number of thumbnails on a page and Y is the number of objects in the bucket.';
- $_lang['setting_pthumb.s3_cache_path'] = 'S3 Cache Path Prefix';
- $_lang['setting_pthumb.s3_cache_path_desc'] = 'A subdirectory where all cached images will be stored in the S3 bucket(s).';
- $_lang['prop_pthumb.debug_desc'] = 'Write debug messages to the MODX error log.';
|