From fe99ce4a7d944e5a4b69828a3473ec33d77490ed Mon Sep 17 00:00:00 2001 From: Fabio Varesano Date: Wed, 3 Jan 2007 18:20:55 +0000 Subject: First letter capitalization. --- plugins/video_customfields/video_customfields.module | 4 ++-- plugins/video_image/video_image.module | 4 ++-- plugins/video_multidownload/video_multidownload.module | 4 ++-- plugins/video_upload/video_upload.module | 4 ++-- video.module | 12 ++++++------ 5 files changed, 14 insertions(+), 14 deletions(-) diff --git a/plugins/video_customfields/video_customfields.module b/plugins/video_customfields/video_customfields.module index fa48795..5b51c8e 100644 --- a/plugins/video_customfields/video_customfields.module +++ b/plugins/video_customfields/video_customfields.module @@ -35,8 +35,8 @@ function video_customfields_menu($may_cache) { if ($may_cache) { $items[] = array( 'path' => 'admin/content/video/customfields', - 'title' => t('customfields'), - 'description' => t('administer video_customfields module settings'), + 'title' => t('Customfields'), + 'description' => t('Administer video_customfields module settings'), 'callback' => 'drupal_get_form', 'callback arguments' => array('video_customfields_settings_form'), 'access' => user_access('administer site configuration'), diff --git a/plugins/video_image/video_image.module b/plugins/video_image/video_image.module index dbd22ee..a765bfc 100644 --- a/plugins/video_image/video_image.module +++ b/plugins/video_image/video_image.module @@ -27,8 +27,8 @@ function video_image_menu($may_cache) { if ($may_cache) { $items[] = array( 'path' => 'admin/content/video/image', - 'title' => t('video image'), - 'description' => t('administer video_image module settings'), + 'title' => t('Video image'), + 'description' => t('Administer video_image module settings'), 'callback' => 'drupal_get_form', 'callback arguments' => array('video_image_admin_settings'), 'access' => user_access('administer site configuration'), diff --git a/plugins/video_multidownload/video_multidownload.module b/plugins/video_multidownload/video_multidownload.module index 0e5f37d..25bbea7 100644 --- a/plugins/video_multidownload/video_multidownload.module +++ b/plugins/video_multidownload/video_multidownload.module @@ -34,8 +34,8 @@ function video_multidownload_menu($may_cache) { if ($may_cache) { $items[] = array( 'path' => 'admin/content/video/multidownload', - 'title' => t('multidownload'), - 'description' => t('administer video_multidownload module settings'), + 'title' => t('Multidownload'), + 'description' => t('Administer video_multidownload module settings'), 'callback' => 'drupal_get_form', 'callback arguments' => array('video_multidownload_settings_form'), 'access' => user_access('administer site configuration'), diff --git a/plugins/video_upload/video_upload.module b/plugins/video_upload/video_upload.module index 41e79ae..c39182c 100644 --- a/plugins/video_upload/video_upload.module +++ b/plugins/video_upload/video_upload.module @@ -28,8 +28,8 @@ function video_upload_menu($may_cache) { if ($may_cache) { $items[] = array( 'path' => 'admin/content/video/upload', - 'title' => t('upload'), - 'description' => t('administer video_upload module settings'), + 'title' => t('Upload'), + 'description' => t('Administer video_upload module settings'), 'callback' => 'drupal_get_form', 'callback arguments' => array('video_upload_settings_form'), 'access' => user_access('administer site configuration'), diff --git a/video.module b/video.module index 2c066e8..86b2e48 100644 --- a/video.module +++ b/video.module @@ -89,12 +89,12 @@ function video_menu($may_cache) { 'type' => MENU_CALLBACK); $items[] = array( 'path' => 'node/add/video', - 'title' => t('video'), + 'title' => t('Video'), 'access' => user_access('create video')); $items[] = array( 'path' => 'admin/content/video', - 'title' => t('video settings'), - 'description' => t('administer video module settings'), + 'title' => t('Video settings'), + 'description' => t('Configure different aspects of the video module and its plugins'), 'callback' => 'drupal_get_form', 'callback arguments' => array('video_settings_form'), 'access' => user_access('administer site configuration'), @@ -139,7 +139,7 @@ function video_menu($may_cache) { * if it does loads the video views module. */ function video_init() { - if (module_exist('views')) { + if (module_exists('views')) { include(drupal_get_path('module', 'video') .'/views_video.inc'); } } @@ -344,9 +344,9 @@ function video_settings_form() { */ function video_node_info() { return array('video' => array( - 'name' => t('video'), + 'name' => t('Video'), 'module' => 'video', - 'description' => t('allow a variety of video formats to be posted as nodes in your site'), + 'description' => t('Allow a variety of video formats to be posted as nodes in your site'), ) ); } -- cgit v1.2.3