diff options
author | Mike Macgirvin <mike@macgirvin.com> | 2010-09-29 18:11:23 -0700 |
---|---|---|
committer | Mike Macgirvin <mike@macgirvin.com> | 2010-09-29 18:11:23 -0700 |
commit | e25e40f1ef4e1ad703c55b13069461ee0d712eae (patch) | |
tree | 41966307ee765db01b6ecebcff447329605a6fe5 /mod/profile_photo.php | |
parent | 8ba3737b3b7284c9b7cf40028240ebf89daad1d7 (diff) | |
download | volse-hubzilla-e25e40f1ef4e1ad703c55b13069461ee0d712eae.tar.gz volse-hubzilla-e25e40f1ef4e1ad703c55b13069461ee0d712eae.tar.bz2 volse-hubzilla-e25e40f1ef4e1ad703c55b13069461ee0d712eae.zip |
i18n string extraction util
Diffstat (limited to 'mod/profile_photo.php')
-rw-r--r-- | mod/profile_photo.php | 6 |
1 files changed, 3 insertions, 3 deletions
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; } |