aboutsummaryrefslogtreecommitdiff
path: root/imagecache_auto.inc
diff options
context:
space:
mode:
authorSilvio <silvio@devlet.com.br>2012-04-06 19:03:25 -0300
committerSilvio <silvio@devlet.com.br>2012-04-06 19:03:25 -0300
commite28d853fade2c547312a8765e88c63be1e92a16c (patch)
tree9e72fd894a23f00554513a64c3ff2741f0aa6e5f /imagecache_auto.inc
parent1de5bcfffd1053ab66b373f7a1c8bd4de8481e67 (diff)
downloadimagecache_auto-e28d853fade2c547312a8765e88c63be1e92a16c.tar.gz
imagecache_auto-e28d853fade2c547312a8765e88c63be1e92a16c.tar.bz2
Fixing remaining code review issues6.x-1.x
Diffstat (limited to 'imagecache_auto.inc')
-rw-r--r--imagecache_auto.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/imagecache_auto.inc b/imagecache_auto.inc
index 78c5751..018beb5 100644
--- a/imagecache_auto.inc
+++ b/imagecache_auto.inc
@@ -40,7 +40,7 @@ function imagecache_auto_create_preset($options) {
// Check if maximum number of presets was reached.
$max_presets = (int) variable_get('imagecache_auto_max_presets', '250');
if (imagecache_auto_count_presets() + 1 > $max_presets) {
- $message = 'Maximum number of imagecache presets reached. Please consider increasing the max number of presets.';
+ $message = t('Maximum number of imagecache presets reached. Please consider increasing the max number of presets.');
watchdog('imagecache_auto', $message, array(), WATCHDOG_ERROR);
return;
}