summaryrefslogtreecommitdiff
path: root/modules/upload/upload.module
diff options
context:
space:
mode:
authorNeil Drumm <drumm@3064.no-reply.drupal.org>2006-11-26 02:20:01 +0000
committerNeil Drumm <drumm@3064.no-reply.drupal.org>2006-11-26 02:20:01 +0000
commitb5bf8a8f476fe4214478fec9250e651164b0e76f (patch)
tree434eb5771bd9238d426be6c19d9c30730af1ab3e /modules/upload/upload.module
parentfb70944dc92345e3f62c5ff810c805ffdeacd4bb (diff)
downloadbrdo-b5bf8a8f476fe4214478fec9250e651164b0e76f.tar.gz
brdo-b5bf8a8f476fe4214478fec9250e651164b0e76f.tar.bz2
#97824 by Gurpartap. Move enclosing elements outside of their t().
Diffstat (limited to 'modules/upload/upload.module')
-rw-r--r--modules/upload/upload.module4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/upload/upload.module b/modules/upload/upload.module
index a3f18a27e..9dc86e52e 100644
--- a/modules/upload/upload.module
+++ b/modules/upload/upload.module
@@ -18,7 +18,7 @@ function upload_help($section) {
$output .= '<p>'. t('For more information please read the configuration and customization handbook <a href="@upload">Upload page</a>.', array('@upload' => 'http://drupal.org/handbook/modules/upload/')) .'</p>';
return $output;
case 'admin/settings/upload':
- return t('<p>Users with the <a href="@permissions">upload files permission</a> can upload attachments. Users with the <a href="@permissions">view uploaded files permission</a> can view uploaded attachments. You can choose which post types can take attachments on the <a href="@types">content types settings</a> page.</p>', array('@permissions' => url('admin/user/access'), '@types' => url('admin/settings/types')));
+ return '<p>'. t('Users with the <a href="@permissions">upload files permission</a> can upload attachments. Users with the <a href="@permissions">view uploaded files permission</a> can view uploaded attachments. You can choose which post types can take attachments on the <a href="@types">content types settings</a> page.', array('@permissions' => url('admin/user/access'), '@types' => url('admin/settings/types'))) .'</p>';
}
}
@@ -174,7 +174,7 @@ function upload_admin_settings() {
'#size' => 15,
'#maxlength' => 10,
'#description' => t('The maximum allowed image size (e.g. 640x480). Set to 0 for no restriction.'),
- '#field_suffix' => t('<kbd>WIDTHxHEIGHT</kbd>')
+ '#field_suffix' => '<kbd>'. t('WIDTHxHEIGHT') .'</kbd>'
);
$form['settings_general']['upload_list_default'] = array(
'#type' => 'select',