From 1aad594b51a8a71dc1ad91d4f3312a3a4e91748c Mon Sep 17 00:00:00 2001 From: webchick Date: Wed, 11 Jan 2012 23:33:48 -0500 Subject: Issue #1336308 by kathyh, pjcdawkins, meshkinsoft: Fixed wrong usage of function t in system_menu(). --- modules/system/system.module | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/system/system.module b/modules/system/system.module index eac76a33d..3b9b09ffe 100644 --- a/modules/system/system.module +++ b/modules/system/system.module @@ -976,7 +976,7 @@ function system_menu() { ); $items['admin/config/system/site-information'] = array( 'title' => 'Site information', - 'description' => t('Change site name, e-mail address, slogan, default front page, and number of posts per page, error pages.'), + 'description' => 'Change site name, e-mail address, slogan, default front page, and number of posts per page, error pages.', 'page callback' => 'drupal_get_form', 'page arguments' => array('system_site_information_settings'), 'access arguments' => array('administer site configuration'), @@ -984,8 +984,8 @@ function system_menu() { 'weight' => -20, ); $items['admin/config/system/cron'] = array( - 'title' => t('Cron'), - 'description' => t('Manage automatic site maintenance tasks.'), + 'title' => 'Cron', + 'description' => 'Manage automatic site maintenance tasks.', 'page callback' => 'drupal_get_form', 'page arguments' => array('system_cron_settings'), 'access arguments' => array('administer site configuration'), -- cgit v1.2.3