summaryrefslogtreecommitdiff
path: root/modules/book.module
diff options
context:
space:
mode:
Diffstat (limited to 'modules/book.module')
-rw-r--r--modules/book.module4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/book.module b/modules/book.module
index a962f7ee7..4dcdf18fb 100644
--- a/modules/book.module
+++ b/modules/book.module
@@ -685,7 +685,7 @@ function book_admin_view($nid, $depth = 0) {
$output .= '<h3>'. $node->title .'</h3>';
- $header = array(t('title'), t('weight'), array('data' => t('operations'), 'colspan' => 3));
+ $header = array(t('Title'), t('Weight'), array('data' => t('Operations'), 'colspan' => 3));
$rows[] = book_admin_view_line($node);
$rows = array_merge($rows, book_admin_view_book($nid));
@@ -733,7 +733,7 @@ function book_admin_orphan() {
if ($pages) {
$output .= '<h3>'. t('Orphan pages') .'</h3>';
- $header = array(t('title'), t('weight'), array('data' => t('operations'), 'colspan' => 3));
+ $header = array(t('Title'), t('Weight'), array('data' => t('Operations'), 'colspan' => 3));
foreach ($pages as $nid => $node) {
if ($node->parent && empty($pages[$node->parent])) {
$rows[] = book_admin_view_line($node, $depth);