lilypond-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Texi2html: Change text of [To Documentation Overview] link


From: pnorcks
Subject: Texi2html: Change text of [To Documentation Overview] link
Date: Thu, 25 Dec 2008 02:43:43 +0000

Reviewers: Reinhold,

Message:
I would recommend making the small change that's explained in the
comment.

Thanks,
Patrick


http://codereview.appspot.com/11851/diff/1/2
File lilypond-texi2html.init (right):

http://codereview.appspot.com/11851/diff/1/2#newcode669
Line 669: print $fh "<p class=\"toc_uplink\"><a href=\"$uplink\"
I think the square brackets should be outside the anchor tags to be
consistent with the nav bars.  So:

<p>[<a>...</a>]</p>

Otherwise, I think it's fine.

Description:
Texi2html: Change text of [To Documentation Overview] link

Please review this at http://codereview.appspot.com/11851

Affected files:
  M lilypond-texi2html.init


Index: lilypond-texi2html.init
diff --git a/lilypond-texi2html.init b/lilypond-texi2html.init
index 6abc48cd980eb76659e85c2f9b20c8d45c36d05a..1cc7f483816cc2b5fa698d6ec5b4f5dd88ee7530 100644
--- a/lilypond-texi2html.init
+++ b/lilypond-texi2html.init
@@ -73,13 +73,13 @@ package Texi2HTML::Config;
 use utf8;
 my $LY_LANGUAGES = {};
 $LY_LANGUAGES->{'fr'} = {
- 'Back to Documentation Index' => 'Retour à l\'accueil de la documentation', + 'To Documentation Overview' => 'Retour à l\'accueil de la documentation',
 };
 $LY_LANGUAGES->{'es'} = {
- 'Back to Documentation Index' => 'Volver al índice de la documentación',
+    'To Documentation Overview' => 'Volver al índice de la documentación',
 };
 $LY_LANGUAGES->{'de'} = {
-    'Back to Documentation Index' => '',
+    'To Documentation Overview' => 'Zur Dokumentationsübersicht',
 };


@@ -667,9 +667,9 @@ sub lilypond_print_toc_div ($$)
     my $uplink = $reldir."index.${lang}html";

     print $fh "<p class=\"toc_uplink\"><a href=\"$uplink\"
-         title=\"Documentation Index\">&lt;&lt; " .
-        &ly_get_string ('Back to Documentation Index') .
-        "</a></p>\n";
+         title=\"Documentation Index\">[" .
+        &ly_get_string ('To Documentation Overview') .
+        "]</a></p>\n";

     print $fh '<h4 class="toc_header"> ' . &$anchor('',
                                     $Texi2HTML::HREF{'Top'},



reply via email to

[Prev in Thread] Current Thread [Next in Thread]