aboutsummaryrefslogtreecommitdiff
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
parent10b8a26d749a372dc75cdea4a280b67ecc33a404 (diff)
downloadvideo-fe99ce4a7d944e5a4b69828a3473ec33d77490ed.tar.gz
video-fe99ce4a7d944e5a4b69828a3473ec33d77490ed.tar.bz2
First letter capitalization.
-rw-r--r--plugins/video_customfields/video_customfields.module4
-rw-r--r--plugins/video_image/video_image.module4
-rw-r--r--plugins/video_multidownload/video_multidownload.module4
-rw-r--r--plugins/video_upload/video_upload.module4
-rw-r--r--video.module12
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'),
)
);
}