summaryrefslogtreecommitdiff
path: root/modules/upload
diff options
context:
space:
mode:
authorGábor Hojtsy <gabor@hojtsy.hu>2007-11-12 19:06:33 +0000
committerGábor Hojtsy <gabor@hojtsy.hu>2007-11-12 19:06:33 +0000
commitc856eac1357f131309ad4563958a8a8d048a5baf (patch)
tree3093da4faeabc9373ca3b91a50c28aeb9e5c91c4 /modules/upload
parent2eeb8862a1538dfcfcf86ebab77fa3f752fd4189 (diff)
downloadbrdo-c856eac1357f131309ad4563958a8a8d048a5baf.tar.gz
brdo-c856eac1357f131309ad4563958a8a8d048a5baf.tar.bz2
#191104 by keith.smith: (usability) change occurances of node to 'post' and 'content' as appropriate
Diffstat (limited to 'modules/upload')
-rw-r--r--modules/upload/upload.admin.inc4
-rw-r--r--modules/upload/upload.module2
2 files changed, 3 insertions, 3 deletions
diff --git a/modules/upload/upload.admin.inc b/modules/upload/upload.admin.inc
index 20472d4a6..1d3603d9e 100644
--- a/modules/upload/upload.admin.inc
+++ b/modules/upload/upload.admin.inc
@@ -78,7 +78,7 @@ function upload_admin_settings() {
'#title' => t('List files by default'),
'#default_value' => variable_get('upload_list_default', 1),
'#options' => array(0 => t('No'), 1 => t('Yes')),
- '#description' => t('Set whether files attached to nodes are listed or not in the node view by default.'),
+ '#description' => t('Display attached files when viewing a post.'),
);
$form['settings_general']['upload_extensions_default'] = array(
@@ -149,4 +149,4 @@ function upload_admin_settings() {
$form['#validate'] = array('upload_admin_settings_validate');
return system_settings_form($form);
-} \ No newline at end of file
+}
diff --git a/modules/upload/upload.module b/modules/upload/upload.module
index 79eb321b9..1c9733ec7 100644
--- a/modules/upload/upload.module
+++ b/modules/upload/upload.module
@@ -13,7 +13,7 @@
function upload_help($path, $arg) {
switch ($path) {
case 'admin/help#upload':
- $output = '<p>'. t('The upload module allows users to upload files to the site. The ability to upload files to a site is important for members of a community who want to share work. It is also useful to administrators who want to keep uploaded files connected to a node or page.') .'</p>';
+ $output = '<p>'. t('The upload module allows users to upload files to the site. The ability to upload files to a site is important for members of a community who want to share work. It is also useful to administrators who want to keep uploaded files connected to posts.') .'</p>';
$output .= '<p>'. t('Users with the upload files permission can upload attachments. You can choose which post types can take attachments on the content types settings page. Each user role can be customized for the file size of uploads, and the dimension of image files.') .'</p>';
$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;