aboutsummaryrefslogtreecommitdiff
path: root/video.module
diff options
context:
space:
mode:
authorFabio Varesano <fax8@13637.no-reply.drupal.org>2007-01-03 18:20:55 +0000
committerFabio Varesano <fax8@13637.no-reply.drupal.org>2007-01-03 18:20:55 +0000
commitfe99ce4a7d944e5a4b69828a3473ec33d77490ed (patch)
tree35a6cf4ddb4bb691ebbcaacd141b2cf04772bf8a /video.module
parent10b8a26d749a372dc75cdea4a280b67ecc33a404 (diff)
downloadvideo-fe99ce4a7d944e5a4b69828a3473ec33d77490ed.tar.gz
video-fe99ce4a7d944e5a4b69828a3473ec33d77490ed.tar.bz2
First letter capitalization.
Diffstat (limited to 'video.module')
-rw-r--r--video.module12
1 files changed, 6 insertions, 6 deletions
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'),
)
);
}