aboutsummaryrefslogtreecommitdiffstats
path: root/mod
diff options
context:
space:
mode:
authorMike Macgirvin <mike@macgirvin.com>2010-09-29 18:11:23 -0700
committerMike Macgirvin <mike@macgirvin.com>2010-09-29 18:11:23 -0700
commite25e40f1ef4e1ad703c55b13069461ee0d712eae (patch)
tree41966307ee765db01b6ecebcff447329605a6fe5 /mod
parent8ba3737b3b7284c9b7cf40028240ebf89daad1d7 (diff)
downloadvolse-hubzilla-e25e40f1ef4e1ad703c55b13069461ee0d712eae.tar.gz
volse-hubzilla-e25e40f1ef4e1ad703c55b13069461ee0d712eae.tar.bz2
volse-hubzilla-e25e40f1ef4e1ad703c55b13069461ee0d712eae.zip
i18n string extraction util
Diffstat (limited to 'mod')
-rw-r--r--mod/install.php2
-rw-r--r--mod/photos.php2
-rw-r--r--mod/profile_photo.php6
3 files changed, 5 insertions, 5 deletions
diff --git a/mod/install.php b/mod/install.php
index 4160445cc..c80fb54fb 100644
--- a/mod/install.php
+++ b/mod/install.php
@@ -49,7 +49,7 @@ function install_post(&$a) {
$_SESSION['sysmsg'] = '';
notice( t('Database import succeeded.') . EOL
- . t('IMPORTANT: You will need to (manually) setup a scheduled task for the poller.') . EOL
+ . t('IMPORTANT: You will need to [manually] setup a scheduled task for the poller.') . EOL
. t('Please see the file INSTALL.') . EOL );
goaway($a->get_baseurl());
}
diff --git a/mod/photos.php b/mod/photos.php
index f5d4258ac..345a22d50 100644
--- a/mod/photos.php
+++ b/mod/photos.php
@@ -493,7 +493,7 @@ function photos_content(&$a) {
'$permissions' => t('Permissions'),
'$aclselect' => populate_acl($a->user),
'$archive' => $a->get_baseurl() . '/jumploader_z.jar',
- '$nojava' => t('Use the following controls only if the Java uploader (above) fails to launch.'),
+ '$nojava' => t('Use the following controls only if the Java uploader [above] fails to launch.'),
'$uploadurl' => $a->get_baseurl() . '/photos',
'$submit' => t('Submit')
));
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;
}