summaryrefslogtreecommitdiff
path: root/modules/dblog
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2007-04-30 17:03:29 +0000
committerDries Buytaert <dries@buytaert.net>2007-04-30 17:03:29 +0000
commit7d4f2836ba303c3ac2657eb019419c04471fb034 (patch)
treed0e6024a791b6d00e16d60284de879d9deae7156 /modules/dblog
parentb93ce19a9c04870647eb4567b94d3a894ba280e7 (diff)
downloadbrdo-7d4f2836ba303c3ac2657eb019419c04471fb034.tar.gz
brdo-7d4f2836ba303c3ac2657eb019419c04471fb034.tar.bz2
- Patch #128082 by Goba et al: Allow localization of built-in menu items.
Diffstat (limited to 'modules/dblog')
-rw-r--r--modules/dblog/dblog.module18
1 files changed, 9 insertions, 9 deletions
diff --git a/modules/dblog/dblog.module b/modules/dblog/dblog.module
index 08bc9c0e2..120752464 100644
--- a/modules/dblog/dblog.module
+++ b/modules/dblog/dblog.module
@@ -43,32 +43,32 @@ function dblog_theme() {
*/
function dblog_menu() {
$items['admin/settings/logging/dblog'] = array(
- 'title' => t('Database logging'),
- 'description' => t('Settings for logging to the Drupal database logs. This is the most common method for small to medium sites on shared hosting. The logs are viewable from the admin pages.'),
+ 'title' => 'Database logging',
+ 'description' => 'Settings for logging to the Drupal database logs. This is the most common method for small to medium sites on shared hosting. The logs are viewable from the admin pages.',
'page callback' => 'drupal_get_form',
'page arguments' => array('dblog_admin_settings'),
);
$items['admin/logs/dblog'] = array(
- 'title' => t('Recent log entries'),
- 'description' => t('View events that have recently been logged.'),
+ 'title' => 'Recent log entries',
+ 'description' => 'View events that have recently been logged.',
'page callback' => 'dblog_overview',
'weight' => -1,
);
$items['admin/logs/page-not-found'] = array(
- 'title' => t("Top 'page not found' errors"),
- 'description' => t("View 'page not found' errors (404s)."),
+ 'title' => "Top 'page not found' errors",
+ 'description' => "View 'page not found' errors (404s).",
'page callback' => 'dblog_top',
'page arguments' => array('page not found'),
);
$items['admin/logs/access-denied'] = array(
- 'title' => t("Top 'access denied' errors"),
- 'description' => t("View 'access denied' errors (403s)."),
+ 'title' => "Top 'access denied' errors",
+ 'description' => "View 'access denied' errors (403s).",
'page callback' => 'dblog_top',
'page arguments' => array('access denied'),
);
$items['admin/logs/event/%'] = array(
- 'title' => t('Details'),
+ 'title' => 'Details',
'page callback' => 'dblog_event',
'page arguments' => array(3),
'type' => MENU_CALLBACK,