From d8d524ffef3c08a44f6563fb76af5fb55a6f397c Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Sun, 25 Jul 2004 14:22:16 +0000 Subject: - Patch #4269 and #4248 by Killes: added missing t()'s to book module. --- modules/book/book.module | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'modules/book/book.module') diff --git a/modules/book/book.module b/modules/book/book.module index 2f3392738..925f3bbd5 100644 --- a/modules/book/book.module +++ b/modules/book/book.module @@ -244,7 +244,7 @@ function book_form(&$node) { if (user_access('administer nodes')) { $output .= form_weight(t('Weight'), 'weight', $node->weight, 15, t('The heavier pages will sink and the lighter pages will be positioned nearer the top.')); if (user_access('create php content')) { - $output .= form_radios('Type', 'format', $node->format, array(0 => 'HTML / text', 1 => 'PHP')); + $output .= form_radios(t('Type'), 'format', $node->format, array(0 => 'HTML / text', 1 => 'PHP')); } } else { @@ -877,7 +877,7 @@ function book_admin_orphan() { } if ($pages) { - $output .= "

Orphan pages

"; + $output .= '

'. t('Orphan pages') .'

'; $header = array(t("title"), t("weight"), array("data" => t("operations"), "colspan" => 3)); foreach ($pages as $nid => $node) { if ($node->parent && empty($pages[$node->parent])) { -- cgit v1.2.3