summaryrefslogtreecommitdiff
path: root/modules/upload
diff options
context:
space:
mode:
authorSteven Wittens <steven@10.no-reply.drupal.org>2006-10-22 08:28:47 +0000
committerSteven Wittens <steven@10.no-reply.drupal.org>2006-10-22 08:28:47 +0000
commit36d44fbfb07e4682f219368e1424c58fc61315a1 (patch)
treed6a5363c6ec34a5b81aac6fee283ee7479d45ea4 /modules/upload
parentc93c0fc7000f5cbb78ac2715ace58c28b789dc81 (diff)
downloadbrdo-36d44fbfb07e4682f219368e1424c58fc61315a1.tar.gz
brdo-36d44fbfb07e4682f219368e1424c58fc61315a1.tar.bz2
#84146: Use 'Sentence capitalization' for menu items, page titles, form items, etc
Diffstat (limited to 'modules/upload')
-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 07aed8d65..9772598d4 100644
--- a/modules/upload/upload.module
+++ b/modules/upload/upload.module
@@ -77,7 +77,7 @@ function upload_menu($may_cache) {
'type' => MENU_CALLBACK
);
$items[] = array('path' => 'admin/settings/uploads',
- 'title' => t('file uploads'),
+ 'title' => t('File uploads'),
'description' => t('Control how files may be attached to content.'),
'callback' => 'drupal_get_form',
'callback arguments' => array('upload_admin_settings'),
@@ -98,7 +98,7 @@ function upload_menu($may_cache) {
}
$items[] = array(
- 'path' => $filename, 'title' => t('file download'),
+ 'path' => $filename, 'title' => t('File download'),
'callback' => 'upload_download',
'access' => user_access('view uploaded files'),
'type' => MENU_CALLBACK