diff options
author | Dries Buytaert <dries@buytaert.net> | 2003-10-02 08:35:33 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2003-10-02 08:35:33 +0000 |
commit | 51976ac13489876d5dabb98a96dbbdc55a152ba0 (patch) | |
tree | 3a0c57b495391374aa58c9a0b4c8fb6d8324270a | |
parent | 37da83ce53def0c39e07e55cfbe84450ed105f93 (diff) | |
download | brdo-51976ac13489876d5dabb98a96dbbdc55a152ba0.tar.gz brdo-51976ac13489876d5dabb98a96dbbdc55a152ba0.tar.bz2 |
- Fixed translation glitch in watchdog module. Thanks Stefan.
-rw-r--r-- | modules/watchdog.module | 3 | ||||
-rw-r--r-- | modules/watchdog/watchdog.module | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/modules/watchdog.module b/modules/watchdog.module index 82881e87c..38608c659 100644 --- a/modules/watchdog.module +++ b/modules/watchdog.module @@ -98,8 +98,9 @@ function watchdog_overview($type) { } if (!$rows) { - $rows[] = array(array("data" => t("No <i>%s</i> messages currently available.", array("%s" => $type)), "colspan" => "5")); + $rows[] = array(array("data" => t("No log messages available."), "colspan" => "5")); } + $pager = pager_display(NULL, 50, 0, "admin", tablesort_pager()); if (!empty($pager)) { $rows[] = array(array("data" => $pager, "colspan" => "5")); diff --git a/modules/watchdog/watchdog.module b/modules/watchdog/watchdog.module index 82881e87c..38608c659 100644 --- a/modules/watchdog/watchdog.module +++ b/modules/watchdog/watchdog.module @@ -98,8 +98,9 @@ function watchdog_overview($type) { } if (!$rows) { - $rows[] = array(array("data" => t("No <i>%s</i> messages currently available.", array("%s" => $type)), "colspan" => "5")); + $rows[] = array(array("data" => t("No log messages available."), "colspan" => "5")); } + $pager = pager_display(NULL, 50, 0, "admin", tablesort_pager()); if (!empty($pager)) { $rows[] = array(array("data" => $pager, "colspan" => "5")); |