From e25e40f1ef4e1ad703c55b13069461ee0d712eae Mon Sep 17 00:00:00 2001 From: Mike Macgirvin Date: Wed, 29 Sep 2010 18:11:23 -0700 Subject: i18n string extraction util --- mod/profile_photo.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'mod/profile_photo.php') diff --git a/mod/profile_photo.php b/mod/profile_photo.php index b7aaf6c13..bc2e5b4ea 100644 --- a/mod/profile_photo.php +++ b/mod/profile_photo.php @@ -58,14 +58,14 @@ function profile_photo_post(&$a) { $r = $im->store(get_uid(), 0, $base_image['resource-id'],$base_image['filename'], t('Profile Photos'), 4, 1); if($r === false) - notice ( t('Image size reduction (175) failed.') . EOL ); + notice ( t('Image size reduction [175] failed.') . EOL ); $im->scaleImage(80); $r = $im->store(get_uid(), 0, $base_image['resource-id'],$base_image['filename'], t('Profile Photos'), 5, 1); if($r === false) - notice( t('Image size reduction (80) failed.') . EOL ); + notice( t('Image size reduction [80] failed.') . EOL ); // Unset the profile photo flag from any other photos I own @@ -132,7 +132,7 @@ function profile_photo_post(&$a) { $r = $ph->store(get_uid(), 0 , $hash, $filename, t('Profile Photos'), 1 ); if($r === false) - notice( t('Image size reduction (640) failed.') . EOL ); + notice( t('Image size reduction [640] failed.') . EOL ); else $smallest = 1; } -- cgit v1.2.3