texi2html-cvs
[Top][All Lists]
Advanced

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

[Texi2html-cvs] texi2html ChangeLog formats/html.init maintaine...


From: Patrice Dumas
Subject: [Texi2html-cvs] texi2html ChangeLog formats/html.init maintaine...
Date: Mon, 23 Nov 2009 16:49:52 +0000

CVSROOT:        /cvsroot/texi2html
Module name:    texi2html
Changes by:     Patrice Dumas <pertusus>        09/11/23 16:49:52

Modified files:
        .              : ChangeLog 
        formats        : html.init 
        maintained_extra: mediawiki.init 
        po_document    : de.us-ascii.po es.us-ascii.po fr.us-ascii.po 
                         ja.utf-8.po nl.us-ascii.po no.us-ascii.po 
                         pt.us-ascii.po pt_BR.us-ascii.po 

Log message:
                Prepare the indentation using css for complex formats.
                * maintained_extra/mediawiki.init: use preformatted formats
                indentation in css. Don't add a div for each preformatted, but 
only
                for the whole format.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/texi2html/ChangeLog?cvsroot=texi2html&r1=1.461&r2=1.462
http://cvs.savannah.gnu.org/viewcvs/texi2html/formats/html.init?cvsroot=texi2html&r1=1.38&r2=1.39
http://cvs.savannah.gnu.org/viewcvs/texi2html/maintained_extra/mediawiki.init?cvsroot=texi2html&r1=1.3&r2=1.4
http://cvs.savannah.gnu.org/viewcvs/texi2html/po_document/de.us-ascii.po?cvsroot=texi2html&r1=1.10&r2=1.11
http://cvs.savannah.gnu.org/viewcvs/texi2html/po_document/es.us-ascii.po?cvsroot=texi2html&r1=1.10&r2=1.11
http://cvs.savannah.gnu.org/viewcvs/texi2html/po_document/fr.us-ascii.po?cvsroot=texi2html&r1=1.10&r2=1.11
http://cvs.savannah.gnu.org/viewcvs/texi2html/po_document/ja.utf-8.po?cvsroot=texi2html&r1=1.10&r2=1.11
http://cvs.savannah.gnu.org/viewcvs/texi2html/po_document/nl.us-ascii.po?cvsroot=texi2html&r1=1.10&r2=1.11
http://cvs.savannah.gnu.org/viewcvs/texi2html/po_document/no.us-ascii.po?cvsroot=texi2html&r1=1.10&r2=1.11
http://cvs.savannah.gnu.org/viewcvs/texi2html/po_document/pt.us-ascii.po?cvsroot=texi2html&r1=1.10&r2=1.11
http://cvs.savannah.gnu.org/viewcvs/texi2html/po_document/pt_BR.us-ascii.po?cvsroot=texi2html&r1=1.10&r2=1.11

Patches:
Index: ChangeLog
===================================================================
RCS file: /cvsroot/texi2html/texi2html/ChangeLog,v
retrieving revision 1.461
retrieving revision 1.462
diff -u -b -r1.461 -r1.462
--- ChangeLog   23 Nov 2009 13:30:47 -0000      1.461
+++ ChangeLog   23 Nov 2009 16:49:51 -0000      1.462
@@ -1,9 +1,13 @@
 2009-11-23   Patrice Dumas  <address@hidden>
 
        * formats/html.init: @format is not indented.
+       Prepare the indentation using css for complex formats.
        * texi2html.pl, texi2html.init, */*.init:  complex format handling 
        API changed. $complex_format_map is replaced by a real hash 
        %complex_format_map and the begin and end are no more evaluated.
+       * maintained_extra/mediawiki.init: use preformatted formats
+       indentation in css. Don't add a div for each preformatted, but only
+       for the whole format.
 
 2009-11-22   Patrice Dumas  <address@hidden>
 

Index: formats/html.init
===================================================================
RCS file: /cvsroot/texi2html/texi2html/formats/html.init,v
retrieving revision 1.38
retrieving revision 1.39
diff -u -b -r1.38 -r1.39
--- formats/html.init   23 Nov 2009 13:30:50 -0000      1.38
+++ formats/html.init   23 Nov 2009 16:49:51 -0000      1.39
@@ -6,7 +6,7 @@
 # A copy of this file is pasted into the beginning of texi2html by
 # running './configure'.
 #
-# $Id: html.init,v 1.38 2009/11/23 13:30:50 pertusus Exp $
+# $Id: html.init,v 1.39 2009/11/23 16:49:51 pertusus Exp $
 
 use strict;
 
@@ -546,10 +546,10 @@
 {
    foreach my $format ('example', 'display', 'lisp', 'format')
    {
-      $complex_format_map{$format}->{'begin'} = 
html_default_attribute_class('div', $format).'>';
-      $complex_format_map{"small$format"}->{'begin'} = 
html_default_attribute_class('div', "small$format").'>';
-      $complex_format_map{$format}->{'end'} = '</div>';
-      $complex_format_map{"small$format"}->{'end'} = '</div>';
+      $complex_format_map{$format}->{'begin'} = 
html_default_attribute_class('div', $format).">\n";
+      $complex_format_map{"small$format"}->{'begin'} = 
html_default_attribute_class('div', "small$format").">\n";
+      $complex_format_map{$format}->{'end'} = '</div>'."\n";
+      $complex_format_map{"small$format"}->{'end'} = '</div>'."\n";
    }
 }
 
@@ -583,19 +583,19 @@
          'pre.display'            => 'font-family: serif',
          'pre.smalldisplay'       => 'font-family: serif; font-size: smaller',
          'pre.smallexample'       => 'font-size: smaller',
-         'span.sansserif'         => 'font-family:sans-serif; 
font-weight:normal;',
-         'span.roman'         => 'font-family:serif; font-weight:normal;'
+         'span.sansserif'         => 'font-family:sans-serif; 
font-weight:normal',
+         'span.roman'         => 'font-family:serif; font-weight:normal'
      );
 
 $css_map{'pre.format'} = $css_map{'pre.display'};
 $css_map{'pre.smallformat'} = $css_map{'pre.smalldisplay'}; 
 $css_map{'pre.smalllisp'} = $css_map{'pre.smallexample'};
 
-#foreach my $indented_format ('example', 'display', 'lisp')
-#{
-#   $css_map{"div.$indented_format"} = 'margin-left: 3.2em;';
-#   $css_map{"div.small$indented_format"} = 'margin-left: 3.2em;';
-#}
+foreach my $indented_format ('example', 'display', 'lisp')
+{
+   $css_map{"div.$indented_format"} = 'margin-left: 3.2em';
+   $css_map{"div.small$indented_format"} = 'margin-left: 3.2em';
+}
 
 # formatting functions
 

Index: maintained_extra/mediawiki.init
===================================================================
RCS file: /cvsroot/texi2html/texi2html/maintained_extra/mediawiki.init,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -b -r1.3 -r1.4
--- maintained_extra/mediawiki.init     23 Nov 2009 13:30:50 -0000      1.3
+++ maintained_extra/mediawiki.init     23 Nov 2009 16:49:52 -0000      1.4
@@ -8,18 +8,18 @@
 # Load the file with command-line 
 # option -init-file mediawiki.init
 #
-# $Id: mediawiki.init,v 1.3 2009/11/23 13:30:50 pertusus Exp $
+# $Id: mediawiki.init,v 1.4 2009/11/23 16:49:52 pertusus Exp $
 
 use strict;
 
-# inline css style
-$INLINE_CSS_STYLE = 1;
-
 html_default_load();
 # remark: in my tests, there was no support for mathtt in texvc
 # https://bugzilla.wikimedia.org/show_bug.cgi?id=21475
 default_load_tex_math();
 
+# inline css style
+$INLINE_CSS_STYLE = 1;
+
 $USE_SECTIONS = 1;
 $USE_NODES = undef;
 
@@ -152,6 +152,7 @@
    $format_map{$format} = '';
 }
 
+my %processed_formats = ();
 # there are no pre used in mediawiki, to have links working in 
 # complex formats, therefore the styles are copied in div that
 # are used instead. This doesn't really improve the situation, 
@@ -160,8 +161,39 @@
 {
    my $class = $complex_format_map{$complex_format}->{'class'};
    $class = $complex_format if (!defined($class));
-   $css_map{"div.$class"} = $css_map{"pre.$class"} 
-      if (defined($css_map{"pre.$class"}));
+
+   # Avoid doing things twice if the class is associated with more than one
+   # complex format
+   next if($processed_formats{$class});
+
+   if (defined($css_map{"pre.$class"}))
+   {
+      if (defined($css_map{"div.$class"}))
+      {
+           $css_map{"div.$class"} .= "; ";
+      }
+      else
+      {
+            $css_map{"div.$class"} = '';
+      }
+      $css_map{"div.$class"} .= $css_map{"pre.$class"};
+   }
+   $processed_formats{$class} = 1;
+}
+
+foreach my $format ('example', 'display', 'lisp', 'format')
+{
+   $complex_format_map{$format}->{'begin'} = 
html_default_attribute_class('div', $format).">\n";
+   $complex_format_map{"small$format"}->{'begin'} = 
html_default_attribute_class('div', "small$format").">\n";
+   $complex_format_map{$format}->{'end'} = '</div>'."\n";
+   $complex_format_map{"small$format"}->{'end'} = '</div>'."\n";
+}
+foreach my $format ('menu', 'detailmenu', 'menu_comment')
+{
+   my $class = $complex_format_map{$format}->{'class'};
+   $class = $format if (!defined($class));
+   $complex_format_map{$format}->{'begin'} = 
html_default_attribute_class('div', $class).">\n";
+   $complex_format_map{$format}->{'end'} = '</div>'."\n";
 }
 
 $texi_formats_map{'direntry'} = 0;
@@ -700,7 +732,8 @@
     }
 
     $text =~ s/^/ /mg;
-    return html_default_attribute_class('div', $class).">\n$text</div>\n";
+   # return html_default_attribute_class('div', $class).">\n$text</div>\n";
+    return "$text";
     #return "<pre class=\"$class\"><nowiki>$text</nowiki></pre>";
 }
 

Index: po_document/de.us-ascii.po
===================================================================
RCS file: /cvsroot/texi2html/texi2html/po_document/de.us-ascii.po,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -b -r1.10 -r1.11
--- po_document/de.us-ascii.po  23 Nov 2009 13:30:51 -0000      1.10
+++ po_document/de.us-ascii.po  23 Nov 2009 16:49:52 -0000      1.11
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: texi2html 1.83\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-11-23 13:44+0100\n"
+"POT-Creation-Date: 2009-11-23 15:42+0100\n"
 "PO-Revision-Date: 2008-03-19\n"
 "Last-Translator: Reinhold Kainhofer <address@hidden>\n"
 "Language-Team: Unknown\n"
@@ -27,7 +27,7 @@
 msgid "Short Table of Contents"
 msgstr "Kurzes Inhaltsverzeichnis"
 
-#: texi2html.pl:5934 texi2html.pl:5938 texi2html.pl:5942 texi2html.init:6489
+#: texi2html.pl:5934 texi2html.pl:5938 texi2html.pl:5942 texi2html.init:6490
 #: formats/html.init:2475
 msgid "Footnotes"
 msgstr "address@hidden"
@@ -37,189 +37,189 @@
 msgid "@{No value for `{value}'@}"
 msgstr ""
 
-#: texi2html.init:923 texi2html.init:975 formats/html.init:687
+#: texi2html.init:924 texi2html.init:976 formats/html.init:687
 msgid "Top"
 msgstr "Anfang"
 
-#: texi2html.init:924 texi2html.init:976 formats/html.init:688
+#: texi2html.init:925 texi2html.init:977 formats/html.init:688
 msgid "Contents"
 msgstr "Inhalt"
 
-#: texi2html.init:925 texi2html.init:977 formats/html.init:689
+#: texi2html.init:926 texi2html.init:978 formats/html.init:689
 msgid "Overview"
 msgstr "@\"Ubersicht"
 
-#: texi2html.init:926 texi2html.init:953 texi2html.init:978
+#: texi2html.init:927 texi2html.init:954 texi2html.init:979
 #: formats/html.init:690
 msgid "Index"
 msgstr "Index"
 
-#: texi2html.init:928
+#: texi2html.init:929
 msgid "Current"
 msgstr ""
 
-#: texi2html.init:931 texi2html.init:936
+#: texi2html.init:932 texi2html.init:937
 msgid "Previous"
 msgstr ""
 
-#: texi2html.init:932 texi2html.init:934 texi2html.init:984
+#: texi2html.init:933 texi2html.init:935 texi2html.init:985
 msgid "Up"
 msgstr "Nach oben"
 
-#: texi2html.init:933 texi2html.init:935 texi2html.init:985
+#: texi2html.init:934 texi2html.init:936 texi2html.init:986
 #: formats/html.init:697
 msgid "Next"
 msgstr ""
 
-#: texi2html.init:937 texi2html.init:989
+#: texi2html.init:938 texi2html.init:990
 msgid "Following"
 msgstr ""
 
-#: texi2html.init:943 formats/html.init:707
+#: texi2html.init:944 formats/html.init:707
 msgid "Next file"
 msgstr ""
 
-#: texi2html.init:944 formats/html.init:708
+#: texi2html.init:945 formats/html.init:708
 msgid "Previous file"
 msgstr ""
 
-#: texi2html.init:950
+#: texi2html.init:951
 msgid "Cover (top) of document"
 msgstr "Titelseite des Dokuments"
 
-#: texi2html.init:951
+#: texi2html.init:952
 msgid "Table of contents"
 msgstr "Inhaltsverzeichnis"
 
-#: texi2html.init:952
+#: texi2html.init:953
 msgid "Short table of contents"
 msgstr "Kurzes Inhaltsverzeichnis"
 
-#: texi2html.init:954
+#: texi2html.init:955
 msgid "Current section"
 msgstr "Aktueller Abschnitt"
 
-#: texi2html.init:955
+#: texi2html.init:956
 msgid "Previous section in reading order"
 msgstr "Voriger Abschnitt in Lesereihenfolge"
 
-#: texi2html.init:956
+#: texi2html.init:957
 msgid "Beginning of this chapter or previous chapter"
 msgstr "Anfang dieses oder des letzten Kapitels"
 
-#: texi2html.init:957
+#: texi2html.init:958
 msgid "Previous section on same level"
 msgstr "Voriger Abschnitt derselben Ebene"
 
-#: texi2html.init:958
+#: texi2html.init:959
 msgid "Up section"
 msgstr "Abschnitt nach oben"
 
-#: texi2html.init:959
+#: texi2html.init:960
 msgid "Next section on same level"
 msgstr "address@hidden"achster Abschitt derselben Ebene"
 
-#: texi2html.init:960
+#: texi2html.init:961
 msgid "Up node"
 msgstr "Knoten nach oben"
 
-#: texi2html.init:961 formats/html.init:699
+#: texi2html.init:962 formats/html.init:699
 msgid "Next node"
 msgstr "address@hidden"achster Knoten"
 
-#: texi2html.init:962 formats/html.init:700
+#: texi2html.init:963 formats/html.init:700
 msgid "Previous node"
 msgstr "Voriger Knoten"
 
-#: texi2html.init:963
+#: texi2html.init:964
 msgid "Node following in node reading order"
 msgstr "address@hidden"achster Abschnitt in Lesereihenfolge"
 
-#: texi2html.init:964
+#: texi2html.init:965
 msgid "Next section in reading order"
 msgstr "address@hidden"achster Abschnitt in Lesereihenfolge"
 
-#: texi2html.init:965
+#: texi2html.init:966
 msgid "Next chapter"
 msgstr "address@hidden"achstes Kapitel"
 
-#: texi2html.init:966
+#: texi2html.init:967
 msgid "About (help)"
 msgstr "@\"Uber (Hilfe)"
 
-#: texi2html.init:967
+#: texi2html.init:968
 msgid "First section in reading order"
 msgstr "Erster Abschnitt in Lesereihenfolge"
 
-#: texi2html.init:968
+#: texi2html.init:969
 msgid "Last section in reading order"
 msgstr "Letzter Abschnitt in Lesereihenfolge"
 
-#: texi2html.init:969
+#: texi2html.init:970
 msgid "Forward section in next file"
 msgstr ""
 
-#: texi2html.init:970
+#: texi2html.init:971
 msgid "Back section in previous file"
 msgstr ""
 
-#: texi2html.init:980
+#: texi2html.init:981
 msgid "This"
 msgstr ""
 
-#: texi2html.init:981
+#: texi2html.init:982
 msgid "Back"
 msgstr "address@hidden"uck"
 
-#: texi2html.init:982
+#: texi2html.init:983
 msgid "FastBack"
 msgstr ""
 
-#: texi2html.init:983 formats/html.init:695
+#: texi2html.init:984 formats/html.init:695
 msgid "Prev"
 msgstr ""
 
-#: texi2html.init:986
+#: texi2html.init:987
 msgid "NodeUp"
 msgstr ""
 
-#: texi2html.init:987
+#: texi2html.init:988
 msgid "NodeNext"
 msgstr ""
 
-#: texi2html.init:988
+#: texi2html.init:989
 msgid "NodePrev"
 msgstr ""
 
-#: texi2html.init:990
+#: texi2html.init:991
 msgid "Forward"
 msgstr "Nach vorne"
 
-#: texi2html.init:991
+#: texi2html.init:992
 msgid "FastForward"
 msgstr ""
 
-#: texi2html.init:992
+#: texi2html.init:993
 msgid "About"
 msgstr "@\"Uber"
 
-#: texi2html.init:993
+#: texi2html.init:994
 msgid "First"
 msgstr ""
 
-#: texi2html.init:994
+#: texi2html.init:995
 msgid "Last"
 msgstr ""
 
-#: texi2html.init:995
+#: texi2html.init:996
 msgid "NextFile"
 msgstr ""
 
-#: texi2html.init:996
+#: texi2html.init:997
 msgid "PrevFile"
 msgstr ""
 
-#: texi2html.init:1611
+#: texi2html.init:1612
 #, perl-brace-format
 msgid ""
 "This document was generated on @i{{date}} using @uref{{program_homepage}, @i"
@@ -228,7 +228,7 @@
 "Dieses Dokument wurde erzeugt am @i{{date}} durch @uref{{program_homepage}, "
 "@i{{program}}}."
 
-#: texi2html.init:1614
+#: texi2html.init:1615
 #, perl-brace-format
 msgid ""
 "This document was generated using @uref{{program_homepage}, @emph"
@@ -237,148 +237,148 @@
 "Dieses Dokument wurde erzeugt durch @uref{{program_homepage}, @emph"
 "{{program}}}."
 
-#: texi2html.init:5171 texi2html.init:5294 formats/html.init:1574
+#: texi2html.init:5172 texi2html.init:5295 formats/html.init:1574
 #: formats/html.init:1672
 #, perl-brace-format
 msgid "{style} {number}"
 msgstr "{style} {number}"
 
-#: texi2html.init:5193 formats/html.init:1588
+#: texi2html.init:5194 formats/html.init:1588
 #, perl-brace-format
 msgid "{style}: {caption_first_line}"
 msgstr "{style}: {caption_first_line}"
 
-#: texi2html.init:5221 formats/html.init:1605
+#: texi2html.init:5222 formats/html.init:1605
 #, perl-brace-format
 msgid "{style}: {shortcaption_first_line}"
 msgstr "{style}: {shortcaption_first_line}"
 
-#: texi2html.init:5526 texi2html.init:5547
+#: texi2html.init:5527 texi2html.init:5548
 #, perl-brace-format
 msgid "{name} on {class}"
 msgstr ""
 
-#: texi2html.init:5530 texi2html.init:5551
+#: texi2html.init:5531 texi2html.init:5552
 #, perl-brace-format
 msgid "{name} of {class}"
 msgstr ""
 
-#: texi2html.init:5854
+#: texi2html.init:5855
 #, perl-brace-format
 msgid "see {node_file_href} section `{section}' in @cite{{book}}"
 msgstr "siehe {node_file_href} im Abschnitt `{section}' in @cite{{book}}"
 
-#: texi2html.init:5855
+#: texi2html.init:5856
 #, perl-brace-format
 msgid "see {node_file_href} @cite{{book}}"
 msgstr "siehe {node_file_href} @cite{{book}}"
 
-#: texi2html.init:5859
+#: texi2html.init:5860
 #, perl-brace-format
 msgid "see section `{section}' in @cite{{book}}"
 msgstr "siehe Abschnitt `{section}' in @cite{{book}}"
 
-#: texi2html.init:5860
+#: texi2html.init:5861
 #, perl-brace-format
 msgid "see @cite{{book}}"
 msgstr "siehe @cite{{book}}"
 
-#: texi2html.init:5864
+#: texi2html.init:5865
 #, perl-brace-format
 msgid "see {node_file_href}"
 msgstr "siehe {node_file_href}"
 
-#: texi2html.init:5871
+#: texi2html.init:5872
 #, perl-brace-format
 msgid "See {node_file_href} section `{section}' in @cite{{book}}"
 msgstr "Siehe {node_file_href} in Abschnitt `{section}' in @cite{{book}}"
 
-#: texi2html.init:5872
+#: texi2html.init:5873
 #, perl-brace-format
 msgid "See {node_file_href} @cite{{book}}"
 msgstr "Siehe {node_file_href} @cite{{book}}"
 
-#: texi2html.init:5876
+#: texi2html.init:5877
 #, perl-brace-format
 msgid "See section `{section}' in @cite{{book}}"
 msgstr "Siehe Abschnitt `{section}' in @cite{{book}}"
 
-#: texi2html.init:5877
+#: texi2html.init:5878
 #, perl-brace-format
 msgid "See @cite{{book}}"
 msgstr ""
 
-#: texi2html.init:5881
+#: texi2html.init:5882
 #, perl-brace-format
 msgid "See {node_file_href}"
 msgstr "Siehe {node_file_href}"
 
-#: texi2html.init:5888
+#: texi2html.init:5889
 #, perl-brace-format
 msgid "{node_file_href} section `{section}' in @cite{{book}}"
 msgstr "{node_file_href} in Abschnitt `{section}' in @cite{{book}}"
 
-#: texi2html.init:5889
+#: texi2html.init:5890
 #, perl-brace-format
 msgid "{node_file_href} @cite{{book}}"
 msgstr ""
 
-#: texi2html.init:5893
+#: texi2html.init:5894
 #, perl-brace-format
 msgid "section `{section}' in @cite{{book}}"
 msgstr "Abschnitt `{section}' in @cite{{book}}"
 
-#: texi2html.init:5894
+#: texi2html.init:5895
 #, perl-brace-format
 msgid "@cite{{book}}"
 msgstr "@cite{{book}}"
 
-#: texi2html.init:5898
+#: texi2html.init:5899
 #, perl-brace-format
 msgid "{node_file_href}"
 msgstr ""
 
-#: texi2html.init:5933
+#: texi2html.init:5934
 #, perl-brace-format
 msgid "see section {reference_name}"
 msgstr "siehe Abschnitt {reference_name}"
 
-#: texi2html.init:5934 texi2html.init:5951
+#: texi2html.init:5935 texi2html.init:5952
 #, perl-brace-format
 msgid "see {reference_name}"
 msgstr "siehe {reference_name}"
 
-#: texi2html.init:5938
+#: texi2html.init:5939
 #, perl-brace-format
 msgid "See section {reference_name}"
 msgstr ""
 
-#: texi2html.init:5939 texi2html.init:5955
+#: texi2html.init:5940 texi2html.init:5956
 #, perl-brace-format
 msgid "See {reference_name}"
 msgstr ""
 
-#: texi2html.init:5943 texi2html.init:5959
+#: texi2html.init:5944 texi2html.init:5960
 #, perl-brace-format
 msgid "{reference_name}"
 msgstr "{reference_name}"
 
-#: texi2html.init:6577
+#: texi2html.init:6578
 #, perl-brace-format
 msgid "on @emph{{date}}"
 msgstr "am @emph{{date}}"
 
-#: texi2html.init:6754 formats/html.init:2679 maintained_extra/html32.init:172
+#: texi2html.init:6755 formats/html.init:2679 maintained_extra/html32.init:172
 #, perl-brace-format
 msgid "{acronym_like} ({explanation})"
 msgstr "{acronym_like} ({explanation})"
 
-#: texi2html.init:6774 formats/docbook.init:1402
+#: texi2html.init:6775 formats/docbook.init:1402
 #, perl-brace-format
 msgid "@b{{quotation_arg}:} "
 msgstr "@b{{quotation_arg}:} "
 
-#: texi2html.init:6899
+#: texi2html.init:6900
 msgid "(outside of any element)"
 msgstr ""
 
@@ -588,7 +588,7 @@
 msgid "Section"
 msgstr "Abschnitt"
 
-#: formats/html.init:2832 maintained_extra/mediawiki.init:998
+#: formats/html.init:2832 maintained_extra/mediawiki.init:1031
 msgid "Jump to"
 msgstr "Springe zu"
 

Index: po_document/es.us-ascii.po
===================================================================
RCS file: /cvsroot/texi2html/texi2html/po_document/es.us-ascii.po,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -b -r1.10 -r1.11
--- po_document/es.us-ascii.po  23 Nov 2009 13:30:51 -0000      1.10
+++ po_document/es.us-ascii.po  23 Nov 2009 16:49:52 -0000      1.11
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: texi2html 1.83\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-11-23 13:44+0100\n"
+"POT-Creation-Date: 2009-11-23 15:42+0100\n"
 "PO-Revision-Date: 2008-08-28\n"
 "Last-Translator: Francisco Vila <address@hidden>\n"
 "Language-Team: Unknown\n"
@@ -27,7 +27,7 @@
 msgid "Short Table of Contents"
 msgstr "Resumen del Contenido"
 
-#: texi2html.pl:5934 texi2html.pl:5938 texi2html.pl:5942 texi2html.init:6489
+#: texi2html.pl:5934 texi2html.pl:5938 texi2html.pl:5942 texi2html.init:6490
 #: formats/html.init:2475
 msgid "Footnotes"
 msgstr "Notas el pie"
@@ -37,189 +37,189 @@
 msgid "@{No value for `{value}'@}"
 msgstr ""
 
-#: texi2html.init:923 texi2html.init:975 formats/html.init:687
+#: texi2html.init:924 texi2html.init:976 formats/html.init:687
 msgid "Top"
 msgstr "Arriba"
 
-#: texi2html.init:924 texi2html.init:976 formats/html.init:688
+#: texi2html.init:925 texi2html.init:977 formats/html.init:688
 msgid "Contents"
 msgstr "@'Indice general"
 
-#: texi2html.init:925 texi2html.init:977 formats/html.init:689
+#: texi2html.init:926 texi2html.init:978 formats/html.init:689
 msgid "Overview"
 msgstr "Panor@'amica"
 
-#: texi2html.init:926 texi2html.init:953 texi2html.init:978
+#: texi2html.init:927 texi2html.init:954 texi2html.init:979
 #: formats/html.init:690
 msgid "Index"
 msgstr "@'Indice"
 
-#: texi2html.init:928
+#: texi2html.init:929
 msgid "Current"
 msgstr ""
 
-#: texi2html.init:931 texi2html.init:936
+#: texi2html.init:932 texi2html.init:937
 msgid "Previous"
 msgstr ""
 
-#: texi2html.init:932 texi2html.init:934 texi2html.init:984
+#: texi2html.init:933 texi2html.init:935 texi2html.init:985
 msgid "Up"
 msgstr "Subir"
 
-#: texi2html.init:933 texi2html.init:935 texi2html.init:985
+#: texi2html.init:934 texi2html.init:936 texi2html.init:986
 #: formats/html.init:697
 msgid "Next"
 msgstr "Siguiente"
 
-#: texi2html.init:937 texi2html.init:989
+#: texi2html.init:938 texi2html.init:990
 msgid "Following"
 msgstr "Siguiente"
 
-#: texi2html.init:943 formats/html.init:707
+#: texi2html.init:944 formats/html.init:707
 msgid "Next file"
 msgstr "Archivo siguiente"
 
-#: texi2html.init:944 formats/html.init:708
+#: texi2html.init:945 formats/html.init:708
 msgid "Previous file"
 msgstr "Archivo anterior"
 
-#: texi2html.init:950
+#: texi2html.init:951
 msgid "Cover (top) of document"
 msgstr "Portada del documento"
 
-#: texi2html.init:951
+#: texi2html.init:952
 msgid "Table of contents"
 msgstr "@'address@hidden general"
 
-#: texi2html.init:952
+#: texi2html.init:953
 msgid "Short table of contents"
 msgstr "Resumen del contenido"
 
-#: texi2html.init:954
+#: texi2html.init:955
 msgid "Current section"
 msgstr "Secci@'on actual"
 
-#: texi2html.init:955
+#: texi2html.init:956
 msgid "Previous section in reading order"
 msgstr "Secci@'on anterior en orden de lectura"
 
-#: texi2html.init:956
+#: texi2html.init:957
 msgid "Beginning of this chapter or previous chapter"
 msgstr "Inicio de este cap@'itulo o cap@'itulo anterior"
 
-#: texi2html.init:957
+#: texi2html.init:958
 msgid "Previous section on same level"
 msgstr "Secci@'on anterior en el mismo nivel"
 
-#: texi2html.init:958
+#: texi2html.init:959
 msgid "Up section"
 msgstr "Subir secci@'on"
 
-#: texi2html.init:959
+#: texi2html.init:960
 msgid "Next section on same level"
 msgstr "Secci@'on siguiente en el mismo nivel"
 
-#: texi2html.init:960
+#: texi2html.init:961
 msgid "Up node"
 msgstr "Subir nodo"
 
-#: texi2html.init:961 formats/html.init:699
+#: texi2html.init:962 formats/html.init:699
 msgid "Next node"
 msgstr "Nodo siguiente"
 
-#: texi2html.init:962 formats/html.init:700
+#: texi2html.init:963 formats/html.init:700
 msgid "Previous node"
 msgstr "Nodo anterior"
 
-#: texi2html.init:963
+#: texi2html.init:964
 msgid "Node following in node reading order"
 msgstr "Nodo siguiente en orden de lectura de nodos"
 
-#: texi2html.init:964
+#: texi2html.init:965
 msgid "Next section in reading order"
 msgstr "Secci@'on siguiente en orden de lectura"
 
-#: texi2html.init:965
+#: texi2html.init:966
 msgid "Next chapter"
 msgstr "Cap@'itulo siguiente"
 
-#: texi2html.init:966
+#: texi2html.init:967
 msgid "About (help)"
 msgstr "Acerca de (p@'agina de ayuda)"
 
-#: texi2html.init:967
+#: texi2html.init:968
 msgid "First section in reading order"
 msgstr "Primera secci@'on en orden de lectura"
 
-#: texi2html.init:968
+#: texi2html.init:969
 msgid "Last section in reading order"
 msgstr "@'Ultima secci@'on en orden de lectura"
 
-#: texi2html.init:969
+#: texi2html.init:970
 msgid "Forward section in next file"
 msgstr "Avanzar secci@'on en el pr@'oximo archivo"
 
-#: texi2html.init:970
+#: texi2html.init:971
 msgid "Back section in previous file"
 msgstr "Retroceder secci@'on en el archivo anterior"
 
-#: texi2html.init:980
+#: texi2html.init:981
 msgid "This"
 msgstr "Este"
 
-#: texi2html.init:981
+#: texi2html.init:982
 msgid "Back"
 msgstr "Atr@'as"
 
-#: texi2html.init:982
+#: texi2html.init:983
 msgid "FastBack"
 msgstr "Retroceso r@'apido"
 
-#: texi2html.init:983 formats/html.init:695
+#: texi2html.init:984 formats/html.init:695
 msgid "Prev"
 msgstr "Ant"
 
-#: texi2html.init:986
+#: texi2html.init:987
 msgid "NodeUp"
 msgstr "SubirNodo"
 
-#: texi2html.init:987
+#: texi2html.init:988
 msgid "NodeNext"
 msgstr "NodoSiguiente"
 
-#: texi2html.init:988
+#: texi2html.init:989
 msgid "NodePrev"
 msgstr "NodoAnterior"
 
-#: texi2html.init:990
+#: texi2html.init:991
 msgid "Forward"
 msgstr "Adelante"
 
-#: texi2html.init:991
+#: texi2html.init:992
 msgid "FastForward"
 msgstr "Avance r@'apido"
 
-#: texi2html.init:992
+#: texi2html.init:993
 msgid "About"
 msgstr "Acerca de"
 
-#: texi2html.init:993
+#: texi2html.init:994
 msgid "First"
 msgstr "Primero"
 
-#: texi2html.init:994
+#: texi2html.init:995
 msgid "Last"
 msgstr "@'Ultimo"
 
-#: texi2html.init:995
+#: texi2html.init:996
 msgid "NextFile"
 msgstr "ArchivoSiguiente"
 
-#: texi2html.init:996
+#: texi2html.init:997
 msgid "PrevFile"
 msgstr "ArchivoAnt"
 
-#: texi2html.init:1611
+#: texi2html.init:1612
 #, perl-brace-format
 msgid ""
 "This document was generated on @i{{date}} using @uref{{program_homepage}, @i"
@@ -228,7 +228,7 @@
 "Este documento se gener el @i{{date}} utilizando @uref{{program_homepage}, @i"
 "{{program}}}."
 
-#: texi2html.init:1614
+#: texi2html.init:1615
 #, perl-brace-format
 msgid ""
 "This document was generated using @uref{{program_homepage}, @emph"
@@ -237,148 +237,148 @@
 "Este documento se gener utilizando @uref{{program_homepage}, @emph"
 "{{program}}}."
 
-#: texi2html.init:5171 texi2html.init:5294 formats/html.init:1574
+#: texi2html.init:5172 texi2html.init:5295 formats/html.init:1574
 #: formats/html.init:1672
 #, perl-brace-format
 msgid "{style} {number}"
 msgstr ""
 
-#: texi2html.init:5193 formats/html.init:1588
+#: texi2html.init:5194 formats/html.init:1588
 #, perl-brace-format
 msgid "{style}: {caption_first_line}"
 msgstr ""
 
-#: texi2html.init:5221 formats/html.init:1605
+#: texi2html.init:5222 formats/html.init:1605
 #, perl-brace-format
 msgid "{style}: {shortcaption_first_line}"
 msgstr ""
 
-#: texi2html.init:5526 texi2html.init:5547
+#: texi2html.init:5527 texi2html.init:5548
 #, perl-brace-format
 msgid "{name} on {class}"
 msgstr "{name} en {class}"
 
-#: texi2html.init:5530 texi2html.init:5551
+#: texi2html.init:5531 texi2html.init:5552
 #, perl-brace-format
 msgid "{name} of {class}"
 msgstr "{name} de {class}"
 
-#: texi2html.init:5854
+#: texi2html.init:5855
 #, perl-brace-format
 msgid "see {node_file_href} section `{section}' in @cite{{book}}"
 msgstr "v@'ease {node_file_href} secci@'on `{section}' en @cite{{book}}"
 
-#: texi2html.init:5855
+#: texi2html.init:5856
 #, perl-brace-format
 msgid "see {node_file_href} @cite{{book}}"
 msgstr "v@'ease {node_file_href} @cite{{book}}"
 
-#: texi2html.init:5859
+#: texi2html.init:5860
 #, perl-brace-format
 msgid "see section `{section}' in @cite{{book}}"
 msgstr "v@'ease la secci@'on `{section}' en @cite{{book}}"
 
-#: texi2html.init:5860
+#: texi2html.init:5861
 #, perl-brace-format
 msgid "see @cite{{book}}"
 msgstr "v@'ease @cite{{book}}"
 
-#: texi2html.init:5864
+#: texi2html.init:5865
 #, perl-brace-format
 msgid "see {node_file_href}"
 msgstr "v@'ease {node_file_href}"
 
-#: texi2html.init:5871
+#: texi2html.init:5872
 #, perl-brace-format
 msgid "See {node_file_href} section `{section}' in @cite{{book}}"
 msgstr "V@'ease {node_file_href} secci@'on `{section}' en @cite{{book}}"
 
-#: texi2html.init:5872
+#: texi2html.init:5873
 #, perl-brace-format
 msgid "See {node_file_href} @cite{{book}}"
 msgstr "V@'ease {node_file_href} @cite{{book}}"
 
-#: texi2html.init:5876
+#: texi2html.init:5877
 #, perl-brace-format
 msgid "See section `{section}' in @cite{{book}}"
 msgstr "V@'ease la secci@'on `{section}' en @cite{{book}}"
 
-#: texi2html.init:5877
+#: texi2html.init:5878
 #, perl-brace-format
 msgid "See @cite{{book}}"
 msgstr "V@'ease @cite{{book}}"
 
-#: texi2html.init:5881
+#: texi2html.init:5882
 #, perl-brace-format
 msgid "See {node_file_href}"
 msgstr "V@'ease {node_file_href}"
 
-#: texi2html.init:5888
+#: texi2html.init:5889
 #, perl-brace-format
 msgid "{node_file_href} section `{section}' in @cite{{book}}"
 msgstr "{node_file_href} secci@'on `{section}' en @cite{{book}}"
 
-#: texi2html.init:5889
+#: texi2html.init:5890
 #, perl-brace-format
 msgid "{node_file_href} @cite{{book}}"
 msgstr ""
 
-#: texi2html.init:5893
+#: texi2html.init:5894
 #, perl-brace-format
 msgid "section `{section}' in @cite{{book}}"
 msgstr "secci@'on `{section}' en @cite{{book}}"
 
-#: texi2html.init:5894
+#: texi2html.init:5895
 #, perl-brace-format
 msgid "@cite{{book}}"
 msgstr ""
 
-#: texi2html.init:5898
+#: texi2html.init:5899
 #, perl-brace-format
 msgid "{node_file_href}"
 msgstr ""
 
-#: texi2html.init:5933
+#: texi2html.init:5934
 #, perl-brace-format
 msgid "see section {reference_name}"
 msgstr "v@'ease la secci@'on {reference_name}"
 
-#: texi2html.init:5934 texi2html.init:5951
+#: texi2html.init:5935 texi2html.init:5952
 #, perl-brace-format
 msgid "see {reference_name}"
 msgstr "v@'ease {reference_name}"
 
-#: texi2html.init:5938
+#: texi2html.init:5939
 #, perl-brace-format
 msgid "See section {reference_name}"
 msgstr "V@'ease la secci@'on  {reference_name}"
 
-#: texi2html.init:5939 texi2html.init:5955
+#: texi2html.init:5940 texi2html.init:5956
 #, perl-brace-format
 msgid "See {reference_name}"
 msgstr "V@'ease {reference_name}"
 
-#: texi2html.init:5943 texi2html.init:5959
+#: texi2html.init:5944 texi2html.init:5960
 #, perl-brace-format
 msgid "{reference_name}"
 msgstr ""
 
-#: texi2html.init:6577
+#: texi2html.init:6578
 #, perl-brace-format
 msgid "on @emph{{date}}"
 msgstr "el @emph{{date}}"
 
-#: texi2html.init:6754 formats/html.init:2679 maintained_extra/html32.init:172
+#: texi2html.init:6755 formats/html.init:2679 maintained_extra/html32.init:172
 #, perl-brace-format
 msgid "{acronym_like} ({explanation})"
 msgstr ""
 
-#: texi2html.init:6774 formats/docbook.init:1402
+#: texi2html.init:6775 formats/docbook.init:1402
 #, perl-brace-format
 msgid "@b{{quotation_arg}:} "
 msgstr ""
 
-#: texi2html.init:6899
+#: texi2html.init:6900
 msgid "(outside of any element)"
 msgstr ""
 
@@ -588,7 +588,7 @@
 msgid "Section"
 msgstr "Secci@'on"
 
-#: formats/html.init:2832 maintained_extra/mediawiki.init:998
+#: formats/html.init:2832 maintained_extra/mediawiki.init:1031
 msgid "Jump to"
 msgstr "Saltar a"
 

Index: po_document/fr.us-ascii.po
===================================================================
RCS file: /cvsroot/texi2html/texi2html/po_document/fr.us-ascii.po,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -b -r1.10 -r1.11
--- po_document/fr.us-ascii.po  23 Nov 2009 13:30:51 -0000      1.10
+++ po_document/fr.us-ascii.po  23 Nov 2009 16:49:52 -0000      1.11
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: texi2html 1.83\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-11-23 13:44+0100\n"
+"POT-Creation-Date: 2009-11-23 15:42+0100\n"
 "PO-Revision-Date: 2008-07-20\n"
 "Last-Translator: Jean-Charles Malahieude <address@hidden>\n"
 "Language-Team: Unknown\n"
@@ -27,7 +27,7 @@
 msgid "Short Table of Contents"
 msgstr "R@'esum@'e du contenu"
 
-#: texi2html.pl:5934 texi2html.pl:5938 texi2html.pl:5942 texi2html.init:6489
+#: texi2html.pl:5934 texi2html.pl:5938 texi2html.pl:5942 texi2html.init:6490
 #: formats/html.init:2475
 msgid "Footnotes"
 msgstr "Notes de bas de page"
@@ -37,189 +37,189 @@
 msgid "@{No value for `{value}'@}"
 msgstr ""
 
-#: texi2html.init:923 texi2html.init:975 formats/html.init:687
+#: texi2html.init:924 texi2html.init:976 formats/html.init:687
 msgid "Top"
 msgstr "Racine"
 
-#: texi2html.init:924 texi2html.init:976 formats/html.init:688
+#: texi2html.init:925 texi2html.init:977 formats/html.init:688
 msgid "Contents"
 msgstr "Table des address@hidden"
 
-#: texi2html.init:925 texi2html.init:977 formats/html.init:689
+#: texi2html.init:926 texi2html.init:978 formats/html.init:689
 msgid "Overview"
 msgstr "Vue d'ensemble"
 
-#: texi2html.init:926 texi2html.init:953 texi2html.init:978
+#: texi2html.init:927 texi2html.init:954 texi2html.init:979
 #: formats/html.init:690
 msgid "Index"
 msgstr "Index"
 
-#: texi2html.init:928
+#: texi2html.init:929
 msgid "Current"
 msgstr ""
 
-#: texi2html.init:931 texi2html.init:936
+#: texi2html.init:932 texi2html.init:937
 msgid "Previous"
 msgstr ""
 
-#: texi2html.init:932 texi2html.init:934 texi2html.init:984
+#: texi2html.init:933 texi2html.init:935 texi2html.init:985
 msgid "Up"
 msgstr "Monter"
 
-#: texi2html.init:933 texi2html.init:935 texi2html.init:985
+#: texi2html.init:934 texi2html.init:936 texi2html.init:986
 #: formats/html.init:697
 msgid "Next"
 msgstr "Suivant"
 
-#: texi2html.init:937 texi2html.init:989
+#: texi2html.init:938 texi2html.init:990
 msgid "Following"
 msgstr "Suivant"
 
-#: texi2html.init:943 formats/html.init:707
+#: texi2html.init:944 formats/html.init:707
 msgid "Next file"
 msgstr "Fichier suivant"
 
-#: texi2html.init:944 formats/html.init:708
+#: texi2html.init:945 formats/html.init:708
 msgid "Previous file"
 msgstr "Fichier pr@'ec@'edent"
 
-#: texi2html.init:950
+#: texi2html.init:951
 msgid "Cover (top) of document"
 msgstr "Couverture (top) du document"
 
-#: texi2html.init:951
+#: texi2html.init:952
 msgid "Table of contents"
 msgstr "Table des address@hidden"
 
-#: texi2html.init:952
+#: texi2html.init:953
 msgid "Short table of contents"
 msgstr "R@'esum@'e du contenu"
 
-#: texi2html.init:954
+#: texi2html.init:955
 msgid "Current section"
 msgstr "Section actuelle"
 
-#: texi2html.init:955
+#: texi2html.init:956
 msgid "Previous section in reading order"
 msgstr "Section pr@'ec@'edente dans l'ordre de lecture"
 
-#: texi2html.init:956
+#: texi2html.init:957
 msgid "Beginning of this chapter or previous chapter"
 msgstr "D@'ebut de ce chapitre ou chapitre pr@'ec@'edent"
 
-#: texi2html.init:957
+#: texi2html.init:958
 msgid "Previous section on same level"
 msgstr "Section pr@'ec@'edente au address@hidden niveau"
 
-#: texi2html.init:958
+#: texi2html.init:959
 msgid "Up section"
 msgstr "Section sup@'erieure"
 
-#: texi2html.init:959
+#: texi2html.init:960
 msgid "Next section on same level"
 msgstr "Section suivante au address@hidden niveau"
 
-#: texi2html.init:960
+#: texi2html.init:961
 msgid "Up node"
 msgstr "address@hidden au dessus"
 
-#: texi2html.init:961 formats/html.init:699
+#: texi2html.init:962 formats/html.init:699
 msgid "Next node"
 msgstr "address@hidden suivant"
 
-#: texi2html.init:962 formats/html.init:700
+#: texi2html.init:963 formats/html.init:700
 msgid "Previous node"
 msgstr "address@hidden pr@'ec@'edent"
 
-#: texi2html.init:963
+#: texi2html.init:964
 msgid "Node following in node reading order"
 msgstr "address@hidden suivant dans l'ordre de lecture"
 
-#: texi2html.init:964
+#: texi2html.init:965
 msgid "Next section in reading order"
 msgstr "Section suivante dans l'ordre de lecture"
 
-#: texi2html.init:965
+#: texi2html.init:966
 msgid "Next chapter"
 msgstr "Chapitre suivant"
 
-#: texi2html.init:966
+#: texi2html.init:967
 msgid "About (help)"
 msgstr "A propos (page d'aide)"
 
-#: texi2html.init:967
+#: texi2html.init:968
 msgid "First section in reading order"
 msgstr "address@hidden section dans l'ordre de lecture"
 
-#: texi2html.init:968
+#: texi2html.init:969
 msgid "Last section in reading order"
 msgstr "address@hidden section dans l'ordre de lecture"
 
-#: texi2html.init:969
+#: texi2html.init:970
 msgid "Forward section in next file"
 msgstr ""
 
-#: texi2html.init:970
+#: texi2html.init:971
 msgid "Back section in previous file"
 msgstr ""
 
-#: texi2html.init:980
+#: texi2html.init:981
 msgid "This"
 msgstr "Ici"
 
-#: texi2html.init:981
+#: texi2html.init:982
 msgid "Back"
 msgstr "Retour"
 
-#: texi2html.init:982
+#: texi2html.init:983
 msgid "FastBack"
 msgstr "RetourRapide"
 
-#: texi2html.init:983 formats/html.init:695
+#: texi2html.init:984 formats/html.init:695
 msgid "Prev"
 msgstr "Pr@'ec@'edent"
 
-#: texi2html.init:986
+#: texi2html.init:987
 msgid "NodeUp"
 msgstr "address@hidden"
 
-#: texi2html.init:987
+#: texi2html.init:988
 msgid "NodeNext"
 msgstr "address@hidden"
 
-#: texi2html.init:988
+#: texi2html.init:989
 msgid "NodePrev"
 msgstr "address@hidden@'ec@'edent"
 
-#: texi2html.init:990
+#: texi2html.init:991
 msgid "Forward"
 msgstr "Avant"
 
-#: texi2html.init:991
+#: texi2html.init:992
 msgid "FastForward"
 msgstr "AvanceRapide"
 
-#: texi2html.init:992
+#: texi2html.init:993
 msgid "About"
 msgstr "A propos"
 
-#: texi2html.init:993
+#: texi2html.init:994
 msgid "First"
 msgstr "Premier"
 
-#: texi2html.init:994
+#: texi2html.init:995
 msgid "Last"
 msgstr "Dernier"
 
-#: texi2html.init:995
+#: texi2html.init:996
 msgid "NextFile"
 msgstr "FichierSuivant"
 
-#: texi2html.init:996
+#: texi2html.init:997
 msgid "PrevFile"
 msgstr ""
 
-#: texi2html.init:1611
+#: texi2html.init:1612
 #, perl-brace-format
 msgid ""
 "This document was generated on @i{{date}} using @uref{{program_homepage}, @i"
@@ -228,7 +228,7 @@
 "Ce document a @'et@'e g@'en@'er@'e le @emph{{date}} en utilisant @uref"
 "{{program_homepage}, @emph{{program}}}"
 
-#: texi2html.init:1614
+#: texi2html.init:1615
 #, perl-brace-format
 msgid ""
 "This document was generated using @uref{{program_homepage}, @emph"
@@ -237,148 +237,148 @@
 "Ce document a @'et@'e g@'en@'er@'e en utilisant @uref{{program_homepage}, "
 "@emph{{program}}}."
 
-#: texi2html.init:5171 texi2html.init:5294 formats/html.init:1574
+#: texi2html.init:5172 texi2html.init:5295 formats/html.init:1574
 #: formats/html.init:1672
 #, perl-brace-format
 msgid "{style} {number}"
 msgstr ""
 
-#: texi2html.init:5193 formats/html.init:1588
+#: texi2html.init:5194 formats/html.init:1588
 #, perl-brace-format
 msgid "{style}: {caption_first_line}"
 msgstr ""
 
-#: texi2html.init:5221 formats/html.init:1605
+#: texi2html.init:5222 formats/html.init:1605
 #, perl-brace-format
 msgid "{style}: {shortcaption_first_line}"
 msgstr ""
 
-#: texi2html.init:5526 texi2html.init:5547
+#: texi2html.init:5527 texi2html.init:5548
 #, perl-brace-format
 msgid "{name} on {class}"
 msgstr "{name} de {class}"
 
-#: texi2html.init:5530 texi2html.init:5551
+#: texi2html.init:5531 texi2html.init:5552
 #, perl-brace-format
 msgid "{name} of {class}"
 msgstr "{name} de {class}"
 
-#: texi2html.init:5854
+#: texi2html.init:5855
 #, perl-brace-format
 msgid "see {node_file_href} section `{section}' in @cite{{book}}"
 msgstr "voir {node_file_href} section `{section}' dans @cite{{book}}"
 
-#: texi2html.init:5855
+#: texi2html.init:5856
 #, perl-brace-format
 msgid "see {node_file_href} @cite{{book}}"
 msgstr "voir {node_file_href} @cite{{book}}"
 
-#: texi2html.init:5859
+#: texi2html.init:5860
 #, perl-brace-format
 msgid "see section `{section}' in @cite{{book}}"
 msgstr "voir la section `{section}' dans @cite{{book}}"
 
-#: texi2html.init:5860
+#: texi2html.init:5861
 #, perl-brace-format
 msgid "see @cite{{book}}"
 msgstr "voir @cite{{book}}"
 
-#: texi2html.init:5864
+#: texi2html.init:5865
 #, perl-brace-format
 msgid "see {node_file_href}"
 msgstr "voir {node_file_href}"
 
-#: texi2html.init:5871
+#: texi2html.init:5872
 #, perl-brace-format
 msgid "See {node_file_href} section `{section}' in @cite{{book}}"
 msgstr "Voir {node_file_href} section `{section}' dans @cite{{book}}"
 
-#: texi2html.init:5872
+#: texi2html.init:5873
 #, perl-brace-format
 msgid "See {node_file_href} @cite{{book}}"
 msgstr "Voir {node_file_href} @cite{{book}}"
 
-#: texi2html.init:5876
+#: texi2html.init:5877
 #, perl-brace-format
 msgid "See section `{section}' in @cite{{book}}"
 msgstr "Voir la section `{section}' dans @cite{{book}}"
 
-#: texi2html.init:5877
+#: texi2html.init:5878
 #, perl-brace-format
 msgid "See @cite{{book}}"
 msgstr "Voir @cite{{book}}"
 
-#: texi2html.init:5881
+#: texi2html.init:5882
 #, perl-brace-format
 msgid "See {node_file_href}"
 msgstr "Voir {node_file_href}"
 
-#: texi2html.init:5888
+#: texi2html.init:5889
 #, perl-brace-format
 msgid "{node_file_href} section `{section}' in @cite{{book}}"
 msgstr "{node_file_href} section `{section}' dans @cite{{book}}"
 
-#: texi2html.init:5889
+#: texi2html.init:5890
 #, perl-brace-format
 msgid "{node_file_href} @cite{{book}}"
 msgstr ""
 
-#: texi2html.init:5893
+#: texi2html.init:5894
 #, perl-brace-format
 msgid "section `{section}' in @cite{{book}}"
 msgstr "section `{section}' dans @cite{{book}}"
 
-#: texi2html.init:5894
+#: texi2html.init:5895
 #, perl-brace-format
 msgid "@cite{{book}}"
 msgstr ""
 
-#: texi2html.init:5898
+#: texi2html.init:5899
 #, perl-brace-format
 msgid "{node_file_href}"
 msgstr ""
 
-#: texi2html.init:5933
+#: texi2html.init:5934
 #, perl-brace-format
 msgid "see section {reference_name}"
 msgstr "voir la section {reference_name}"
 
-#: texi2html.init:5934 texi2html.init:5951
+#: texi2html.init:5935 texi2html.init:5952
 #, perl-brace-format
 msgid "see {reference_name}"
 msgstr "voir {reference_name}"
 
-#: texi2html.init:5938
+#: texi2html.init:5939
 #, perl-brace-format
 msgid "See section {reference_name}"
 msgstr "Voir la section {reference_name}"
 
-#: texi2html.init:5939 texi2html.init:5955
+#: texi2html.init:5940 texi2html.init:5956
 #, perl-brace-format
 msgid "See {reference_name}"
 msgstr "Voir {reference_name}"
 
-#: texi2html.init:5943 texi2html.init:5959
+#: texi2html.init:5944 texi2html.init:5960
 #, perl-brace-format
 msgid "{reference_name}"
 msgstr ""
 
-#: texi2html.init:6577
+#: texi2html.init:6578
 #, perl-brace-format
 msgid "on @emph{{date}}"
 msgstr "le @emph{{date}}"
 
-#: texi2html.init:6754 formats/html.init:2679 maintained_extra/html32.init:172
+#: texi2html.init:6755 formats/html.init:2679 maintained_extra/html32.init:172
 #, perl-brace-format
 msgid "{acronym_like} ({explanation})"
 msgstr ""
 
-#: texi2html.init:6774 formats/docbook.init:1402
+#: texi2html.init:6775 formats/docbook.init:1402
 #, perl-brace-format
 msgid "@b{{quotation_arg}:} "
 msgstr ""
 
-#: texi2html.init:6899
+#: texi2html.init:6900
 msgid "(outside of any element)"
 msgstr ""
 
@@ -587,7 +587,7 @@
 msgid "Section"
 msgstr ""
 
-#: formats/html.init:2832 maintained_extra/mediawiki.init:998
+#: formats/html.init:2832 maintained_extra/mediawiki.init:1031
 msgid "Jump to"
 msgstr "Aller @`a"
 

Index: po_document/ja.utf-8.po
===================================================================
RCS file: /cvsroot/texi2html/texi2html/po_document/ja.utf-8.po,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -b -r1.10 -r1.11
--- po_document/ja.utf-8.po     23 Nov 2009 13:30:51 -0000      1.10
+++ po_document/ja.utf-8.po     23 Nov 2009 16:49:52 -0000      1.11
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: texi2html 1.83\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-11-23 13:44+0100\n"
+"POT-Creation-Date: 2009-11-23 15:42+0100\n"
 "PO-Revision-Date: 2007-02-05\n"
 "Last-Translator: Unknown\n"
 "Language-Team: Unknown\n"
@@ -27,7 +27,7 @@
 msgid "Short Table of Contents"
 msgstr "簡略化した目次"
 
-#: texi2html.pl:5934 texi2html.pl:5938 texi2html.pl:5942 texi2html.init:6489
+#: texi2html.pl:5934 texi2html.pl:5938 texi2html.pl:5942 texi2html.init:6490
 #: formats/html.init:2475
 msgid "Footnotes"
 msgstr "脚注"
@@ -37,189 +37,189 @@
 msgid "@{No value for `{value}'@}"
 msgstr ""
 
-#: texi2html.init:923 texi2html.init:975 formats/html.init:687
+#: texi2html.init:924 texi2html.init:976 formats/html.init:687
 msgid "Top"
 msgstr "冒頭"
 
-#: texi2html.init:924 texi2html.init:976 formats/html.init:688
+#: texi2html.init:925 texi2html.init:977 formats/html.init:688
 msgid "Contents"
 msgstr "目次"
 
-#: texi2html.init:925 texi2html.init:977 formats/html.init:689
+#: texi2html.init:926 texi2html.init:978 formats/html.init:689
 msgid "Overview"
 msgstr "概要"
 
-#: texi2html.init:926 texi2html.init:953 texi2html.init:978
+#: texi2html.init:927 texi2html.init:954 texi2html.init:979
 #: formats/html.init:690
 msgid "Index"
 msgstr "見出し"
 
-#: texi2html.init:928
+#: texi2html.init:929
 msgid "Current"
 msgstr ""
 
-#: texi2html.init:931 texi2html.init:936
+#: texi2html.init:932 texi2html.init:937
 msgid "Previous"
 msgstr ""
 
-#: texi2html.init:932 texi2html.init:934 texi2html.init:984
+#: texi2html.init:933 texi2html.init:935 texi2html.init:985
 msgid "Up"
 msgstr ""
 
-#: texi2html.init:933 texi2html.init:935 texi2html.init:985
+#: texi2html.init:934 texi2html.init:936 texi2html.init:986
 #: formats/html.init:697
 msgid "Next"
 msgstr "次"
 
-#: texi2html.init:937 texi2html.init:989
+#: texi2html.init:938 texi2html.init:990
 msgid "Following"
 msgstr ""
 
-#: texi2html.init:943 formats/html.init:707
+#: texi2html.init:944 formats/html.init:707
 msgid "Next file"
 msgstr ""
 
-#: texi2html.init:944 formats/html.init:708
+#: texi2html.init:945 formats/html.init:708
 msgid "Previous file"
 msgstr ""
 
-#: texi2html.init:950
+#: texi2html.init:951
 msgid "Cover (top) of document"
 msgstr ""
 
-#: texi2html.init:951
+#: texi2html.init:952
 msgid "Table of contents"
 msgstr ""
 
-#: texi2html.init:952
+#: texi2html.init:953
 msgid "Short table of contents"
 msgstr ""
 
-#: texi2html.init:954
+#: texi2html.init:955
 msgid "Current section"
 msgstr ""
 
-#: texi2html.init:955
+#: texi2html.init:956
 msgid "Previous section in reading order"
 msgstr ""
 
-#: texi2html.init:956
+#: texi2html.init:957
 msgid "Beginning of this chapter or previous chapter"
 msgstr ""
 
-#: texi2html.init:957
+#: texi2html.init:958
 msgid "Previous section on same level"
 msgstr ""
 
-#: texi2html.init:958
+#: texi2html.init:959
 msgid "Up section"
 msgstr ""
 
-#: texi2html.init:959
+#: texi2html.init:960
 msgid "Next section on same level"
 msgstr ""
 
-#: texi2html.init:960
+#: texi2html.init:961
 msgid "Up node"
 msgstr ""
 
-#: texi2html.init:961 formats/html.init:699
+#: texi2html.init:962 formats/html.init:699
 msgid "Next node"
 msgstr ""
 
-#: texi2html.init:962 formats/html.init:700
+#: texi2html.init:963 formats/html.init:700
 msgid "Previous node"
 msgstr ""
 
-#: texi2html.init:963
+#: texi2html.init:964
 msgid "Node following in node reading order"
 msgstr ""
 
-#: texi2html.init:964
+#: texi2html.init:965
 msgid "Next section in reading order"
 msgstr ""
 
-#: texi2html.init:965
+#: texi2html.init:966
 msgid "Next chapter"
 msgstr ""
 
-#: texi2html.init:966
+#: texi2html.init:967
 msgid "About (help)"
 msgstr ""
 
-#: texi2html.init:967
+#: texi2html.init:968
 msgid "First section in reading order"
 msgstr ""
 
-#: texi2html.init:968
+#: texi2html.init:969
 msgid "Last section in reading order"
 msgstr ""
 
-#: texi2html.init:969
+#: texi2html.init:970
 msgid "Forward section in next file"
 msgstr ""
 
-#: texi2html.init:970
+#: texi2html.init:971
 msgid "Back section in previous file"
 msgstr ""
 
-#: texi2html.init:980
+#: texi2html.init:981
 msgid "This"
 msgstr ""
 
-#: texi2html.init:981
+#: texi2html.init:982
 msgid "Back"
 msgstr ""
 
-#: texi2html.init:982
+#: texi2html.init:983
 msgid "FastBack"
 msgstr ""
 
-#: texi2html.init:983 formats/html.init:695
+#: texi2html.init:984 formats/html.init:695
 msgid "Prev"
 msgstr "前"
 
-#: texi2html.init:986
+#: texi2html.init:987
 msgid "NodeUp"
 msgstr ""
 
-#: texi2html.init:987
+#: texi2html.init:988
 msgid "NodeNext"
 msgstr ""
 
-#: texi2html.init:988
+#: texi2html.init:989
 msgid "NodePrev"
 msgstr ""
 
-#: texi2html.init:990
+#: texi2html.init:991
 msgid "Forward"
 msgstr ""
 
-#: texi2html.init:991
+#: texi2html.init:992
 msgid "FastForward"
 msgstr ""
 
-#: texi2html.init:992
+#: texi2html.init:993
 msgid "About"
 msgstr ""
 
-#: texi2html.init:993
+#: texi2html.init:994
 msgid "First"
 msgstr ""
 
-#: texi2html.init:994
+#: texi2html.init:995
 msgid "Last"
 msgstr ""
 
-#: texi2html.init:995
+#: texi2html.init:996
 msgid "NextFile"
 msgstr ""
 
-#: texi2html.init:996
+#: texi2html.init:997
 msgid "PrevFile"
 msgstr ""
 
-#: texi2html.init:1611
+#: texi2html.init:1612
 #, perl-brace-format
 msgid ""
 "This document was generated on @i{{date}} using @uref{{program_homepage}, @i"
@@ -228,7 +228,7 @@
 "address@hidden@uref{{program_homepage}, @emph{{program}}}を用いて"
 "生成されました。"
 
-#: texi2html.init:1614
+#: texi2html.init:1615
 #, perl-brace-format
 msgid ""
 "This document was generated using @uref{{program_homepage}, @emph"
@@ -236,148 +236,148 @@
 msgstr ""
 "address@hidden, @emph{{program}}}を用いて生成されました。"
 
-#: texi2html.init:5171 texi2html.init:5294 formats/html.init:1574
+#: texi2html.init:5172 texi2html.init:5295 formats/html.init:1574
 #: formats/html.init:1672
 #, perl-brace-format
 msgid "{style} {number}"
 msgstr ""
 
-#: texi2html.init:5193 formats/html.init:1588
+#: texi2html.init:5194 formats/html.init:1588
 #, perl-brace-format
 msgid "{style}: {caption_first_line}"
 msgstr ""
 
-#: texi2html.init:5221 formats/html.init:1605
+#: texi2html.init:5222 formats/html.init:1605
 #, perl-brace-format
 msgid "{style}: {shortcaption_first_line}"
 msgstr ""
 
-#: texi2html.init:5526 texi2html.init:5547
+#: texi2html.init:5527 texi2html.init:5548
 #, perl-brace-format
 msgid "{name} on {class}"
 msgstr ""
 
-#: texi2html.init:5530 texi2html.init:5551
+#: texi2html.init:5531 texi2html.init:5552
 #, perl-brace-format
 msgid "{name} of {class}"
 msgstr ""
 
-#: texi2html.init:5854
+#: texi2html.init:5855
 #, perl-brace-format
 msgid "see {node_file_href} section `{section}' in @cite{{book}}"
 msgstr ""
 
-#: texi2html.init:5855
+#: texi2html.init:5856
 #, perl-brace-format
 msgid "see {node_file_href} @cite{{book}}"
 msgstr "{node_file_href} @cite{{book}}参照"
 
-#: texi2html.init:5859
+#: texi2html.init:5860
 #, perl-brace-format
 msgid "see section `{section}' in @cite{{book}}"
 msgstr ""
 
-#: texi2html.init:5860
+#: texi2html.init:5861
 #, perl-brace-format
 msgid "see @cite{{book}}"
 msgstr ""
 
-#: texi2html.init:5864
+#: texi2html.init:5865
 #, perl-brace-format
 msgid "see {node_file_href}"
 msgstr "{node_file_href}参照"
 
-#: texi2html.init:5871
+#: texi2html.init:5872
 #, perl-brace-format
 msgid "See {node_file_href} section `{section}' in @cite{{book}}"
 msgstr ""
 
-#: texi2html.init:5872
+#: texi2html.init:5873
 #, perl-brace-format
 msgid "See {node_file_href} @cite{{book}}"
 msgstr ""
 
-#: texi2html.init:5876
+#: texi2html.init:5877
 #, perl-brace-format
 msgid "See section `{section}' in @cite{{book}}"
 msgstr ""
 
-#: texi2html.init:5877
+#: texi2html.init:5878
 #, perl-brace-format
 msgid "See @cite{{book}}"
 msgstr ""
 
-#: texi2html.init:5881
+#: texi2html.init:5882
 #, perl-brace-format
 msgid "See {node_file_href}"
 msgstr ""
 
-#: texi2html.init:5888
+#: texi2html.init:5889
 #, perl-brace-format
 msgid "{node_file_href} section `{section}' in @cite{{book}}"
 msgstr ""
 
-#: texi2html.init:5889
+#: texi2html.init:5890
 #, perl-brace-format
 msgid "{node_file_href} @cite{{book}}"
 msgstr ""
 
-#: texi2html.init:5893
+#: texi2html.init:5894
 #, perl-brace-format
 msgid "section `{section}' in @cite{{book}}"
 msgstr "@cite{{book}}の `{section}' "
 
-#: texi2html.init:5894
+#: texi2html.init:5895
 #, perl-brace-format
 msgid "@cite{{book}}"
 msgstr ""
 
-#: texi2html.init:5898
+#: texi2html.init:5899
 #, perl-brace-format
 msgid "{node_file_href}"
 msgstr ""
 
-#: texi2html.init:5933
+#: texi2html.init:5934
 #, perl-brace-format
 msgid "see section {reference_name}"
 msgstr ""
 
-#: texi2html.init:5934 texi2html.init:5951
+#: texi2html.init:5935 texi2html.init:5952
 #, perl-brace-format
 msgid "see {reference_name}"
 msgstr ""
 
-#: texi2html.init:5938
+#: texi2html.init:5939
 #, perl-brace-format
 msgid "See section {reference_name}"
 msgstr ""
 
-#: texi2html.init:5939 texi2html.init:5955
+#: texi2html.init:5940 texi2html.init:5956
 #, perl-brace-format
 msgid "See {reference_name}"
 msgstr ""
 
-#: texi2html.init:5943 texi2html.init:5959
+#: texi2html.init:5944 texi2html.init:5960
 #, perl-brace-format
 msgid "{reference_name}"
 msgstr ""
 
-#: texi2html.init:6577
+#: texi2html.init:6578
 #, perl-brace-format
 msgid "on @emph{{date}}"
 msgstr "@emph{{date}}"
 
-#: texi2html.init:6754 formats/html.init:2679 maintained_extra/html32.init:172
+#: texi2html.init:6755 formats/html.init:2679 maintained_extra/html32.init:172
 #, perl-brace-format
 msgid "{acronym_like} ({explanation})"
 msgstr ""
 
-#: texi2html.init:6774 formats/docbook.init:1402
+#: texi2html.init:6775 formats/docbook.init:1402
 #, perl-brace-format
 msgid "@b{{quotation_arg}:} "
 msgstr ""
 
-#: texi2html.init:6899
+#: texi2html.init:6900
 msgid "(outside of any element)"
 msgstr ""
 
@@ -586,7 +586,7 @@
 msgid "Section"
 msgstr "項"
 
-#: formats/html.init:2832 maintained_extra/mediawiki.init:998
+#: formats/html.init:2832 maintained_extra/mediawiki.init:1031
 msgid "Jump to"
 msgstr "移動"
 

Index: po_document/nl.us-ascii.po
===================================================================
RCS file: /cvsroot/texi2html/texi2html/po_document/nl.us-ascii.po,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -b -r1.10 -r1.11
--- po_document/nl.us-ascii.po  23 Nov 2009 13:30:51 -0000      1.10
+++ po_document/nl.us-ascii.po  23 Nov 2009 16:49:52 -0000      1.11
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: texi2html 1.83\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-11-23 13:44+0100\n"
+"POT-Creation-Date: 2009-11-23 15:42+0100\n"
 "PO-Revision-Date: 2001-01-01\n"
 "Last-Translator: Unknown\n"
 "Language-Team: Unknown\n"
@@ -27,7 +27,7 @@
 msgid "Short Table of Contents"
 msgstr "Korte inhoudsopgave"
 
-#: texi2html.pl:5934 texi2html.pl:5938 texi2html.pl:5942 texi2html.init:6489
+#: texi2html.pl:5934 texi2html.pl:5938 texi2html.pl:5942 texi2html.init:6490
 #: formats/html.init:2475
 msgid "Footnotes"
 msgstr "No translation available!"
@@ -37,344 +37,344 @@
 msgid "@{No value for `{value}'@}"
 msgstr ""
 
-#: texi2html.init:923 texi2html.init:975 formats/html.init:687
+#: texi2html.init:924 texi2html.init:976 formats/html.init:687
 msgid "Top"
 msgstr ""
 
-#: texi2html.init:924 texi2html.init:976 formats/html.init:688
+#: texi2html.init:925 texi2html.init:977 formats/html.init:688
 msgid "Contents"
 msgstr ""
 
-#: texi2html.init:925 texi2html.init:977 formats/html.init:689
+#: texi2html.init:926 texi2html.init:978 formats/html.init:689
 msgid "Overview"
 msgstr ""
 
-#: texi2html.init:926 texi2html.init:953 texi2html.init:978
+#: texi2html.init:927 texi2html.init:954 texi2html.init:979
 #: formats/html.init:690
 msgid "Index"
 msgstr "Index"
 
-#: texi2html.init:928
+#: texi2html.init:929
 msgid "Current"
 msgstr ""
 
-#: texi2html.init:931 texi2html.init:936
+#: texi2html.init:932 texi2html.init:937
 msgid "Previous"
 msgstr ""
 
-#: texi2html.init:932 texi2html.init:934 texi2html.init:984
+#: texi2html.init:933 texi2html.init:935 texi2html.init:985
 msgid "Up"
 msgstr ""
 
-#: texi2html.init:933 texi2html.init:935 texi2html.init:985
+#: texi2html.init:934 texi2html.init:936 texi2html.init:986
 #: formats/html.init:697
 msgid "Next"
 msgstr ""
 
-#: texi2html.init:937 texi2html.init:989
+#: texi2html.init:938 texi2html.init:990
 msgid "Following"
 msgstr ""
 
-#: texi2html.init:943 formats/html.init:707
+#: texi2html.init:944 formats/html.init:707
 msgid "Next file"
 msgstr ""
 
-#: texi2html.init:944 formats/html.init:708
+#: texi2html.init:945 formats/html.init:708
 msgid "Previous file"
 msgstr ""
 
-#: texi2html.init:950
+#: texi2html.init:951
 msgid "Cover (top) of document"
 msgstr ""
 
-#: texi2html.init:951
+#: texi2html.init:952
 msgid "Table of contents"
 msgstr ""
 
-#: texi2html.init:952
+#: texi2html.init:953
 msgid "Short table of contents"
 msgstr ""
 
-#: texi2html.init:954
+#: texi2html.init:955
 msgid "Current section"
 msgstr ""
 
-#: texi2html.init:955
+#: texi2html.init:956
 msgid "Previous section in reading order"
 msgstr ""
 
-#: texi2html.init:956
+#: texi2html.init:957
 msgid "Beginning of this chapter or previous chapter"
 msgstr ""
 
-#: texi2html.init:957
+#: texi2html.init:958
 msgid "Previous section on same level"
 msgstr ""
 
-#: texi2html.init:958
+#: texi2html.init:959
 msgid "Up section"
 msgstr ""
 
-#: texi2html.init:959
+#: texi2html.init:960
 msgid "Next section on same level"
 msgstr ""
 
-#: texi2html.init:960
+#: texi2html.init:961
 msgid "Up node"
 msgstr ""
 
-#: texi2html.init:961 formats/html.init:699
+#: texi2html.init:962 formats/html.init:699
 msgid "Next node"
 msgstr ""
 
-#: texi2html.init:962 formats/html.init:700
+#: texi2html.init:963 formats/html.init:700
 msgid "Previous node"
 msgstr ""
 
-#: texi2html.init:963
+#: texi2html.init:964
 msgid "Node following in node reading order"
 msgstr ""
 
-#: texi2html.init:964
+#: texi2html.init:965
 msgid "Next section in reading order"
 msgstr ""
 
-#: texi2html.init:965
+#: texi2html.init:966
 msgid "Next chapter"
 msgstr ""
 
-#: texi2html.init:966
+#: texi2html.init:967
 msgid "About (help)"
 msgstr ""
 
-#: texi2html.init:967
+#: texi2html.init:968
 msgid "First section in reading order"
 msgstr ""
 
-#: texi2html.init:968
+#: texi2html.init:969
 msgid "Last section in reading order"
 msgstr ""
 
-#: texi2html.init:969
+#: texi2html.init:970
 msgid "Forward section in next file"
 msgstr ""
 
-#: texi2html.init:970
+#: texi2html.init:971
 msgid "Back section in previous file"
 msgstr ""
 
-#: texi2html.init:980
+#: texi2html.init:981
 msgid "This"
 msgstr ""
 
-#: texi2html.init:981
+#: texi2html.init:982
 msgid "Back"
 msgstr ""
 
-#: texi2html.init:982
+#: texi2html.init:983
 msgid "FastBack"
 msgstr ""
 
-#: texi2html.init:983 formats/html.init:695
+#: texi2html.init:984 formats/html.init:695
 msgid "Prev"
 msgstr ""
 
-#: texi2html.init:986
+#: texi2html.init:987
 msgid "NodeUp"
 msgstr ""
 
-#: texi2html.init:987
+#: texi2html.init:988
 msgid "NodeNext"
 msgstr ""
 
-#: texi2html.init:988
+#: texi2html.init:989
 msgid "NodePrev"
 msgstr ""
 
-#: texi2html.init:990
+#: texi2html.init:991
 msgid "Forward"
 msgstr ""
 
-#: texi2html.init:991
+#: texi2html.init:992
 msgid "FastForward"
 msgstr ""
 
-#: texi2html.init:992
+#: texi2html.init:993
 msgid "About"
 msgstr ""
 
-#: texi2html.init:993
+#: texi2html.init:994
 msgid "First"
 msgstr ""
 
-#: texi2html.init:994
+#: texi2html.init:995
 msgid "Last"
 msgstr ""
 
-#: texi2html.init:995
+#: texi2html.init:996
 msgid "NextFile"
 msgstr ""
 
-#: texi2html.init:996
+#: texi2html.init:997
 msgid "PrevFile"
 msgstr ""
 
-#: texi2html.init:1611
+#: texi2html.init:1612
 #, perl-brace-format
 msgid ""
 "This document was generated on @i{{date}} using @uref{{program_homepage}, @i"
 "{{program}}}."
 msgstr ""
 
-#: texi2html.init:1614
+#: texi2html.init:1615
 #, perl-brace-format
 msgid ""
 "This document was generated using @uref{{program_homepage}, @emph"
 "{{program}}}."
 msgstr ""
 
-#: texi2html.init:5171 texi2html.init:5294 formats/html.init:1574
+#: texi2html.init:5172 texi2html.init:5295 formats/html.init:1574
 #: formats/html.init:1672
 #, perl-brace-format
 msgid "{style} {number}"
 msgstr ""
 
-#: texi2html.init:5193 formats/html.init:1588
+#: texi2html.init:5194 formats/html.init:1588
 #, perl-brace-format
 msgid "{style}: {caption_first_line}"
 msgstr ""
 
-#: texi2html.init:5221 formats/html.init:1605
+#: texi2html.init:5222 formats/html.init:1605
 #, perl-brace-format
 msgid "{style}: {shortcaption_first_line}"
 msgstr ""
 
-#: texi2html.init:5526 texi2html.init:5547
+#: texi2html.init:5527 texi2html.init:5548
 #, perl-brace-format
 msgid "{name} on {class}"
 msgstr ""
 
-#: texi2html.init:5530 texi2html.init:5551
+#: texi2html.init:5531 texi2html.init:5552
 #, perl-brace-format
 msgid "{name} of {class}"
 msgstr ""
 
-#: texi2html.init:5854
+#: texi2html.init:5855
 #, perl-brace-format
 msgid "see {node_file_href} section `{section}' in @cite{{book}}"
 msgstr ""
 
-#: texi2html.init:5855
+#: texi2html.init:5856
 #, perl-brace-format
 msgid "see {node_file_href} @cite{{book}}"
 msgstr ""
 
-#: texi2html.init:5859
+#: texi2html.init:5860
 #, perl-brace-format
 msgid "see section `{section}' in @cite{{book}}"
 msgstr ""
 
-#: texi2html.init:5860
+#: texi2html.init:5861
 #, perl-brace-format
 msgid "see @cite{{book}}"
 msgstr ""
 
-#: texi2html.init:5864
+#: texi2html.init:5865
 #, perl-brace-format
 msgid "see {node_file_href}"
 msgstr ""
 
-#: texi2html.init:5871
+#: texi2html.init:5872
 #, perl-brace-format
 msgid "See {node_file_href} section `{section}' in @cite{{book}}"
 msgstr ""
 
-#: texi2html.init:5872
+#: texi2html.init:5873
 #, perl-brace-format
 msgid "See {node_file_href} @cite{{book}}"
 msgstr ""
 
-#: texi2html.init:5876
+#: texi2html.init:5877
 #, perl-brace-format
 msgid "See section `{section}' in @cite{{book}}"
 msgstr ""
 
-#: texi2html.init:5877
+#: texi2html.init:5878
 #, perl-brace-format
 msgid "See @cite{{book}}"
 msgstr ""
 
-#: texi2html.init:5881
+#: texi2html.init:5882
 #, perl-brace-format
 msgid "See {node_file_href}"
 msgstr ""
 
-#: texi2html.init:5888
+#: texi2html.init:5889
 #, perl-brace-format
 msgid "{node_file_href} section `{section}' in @cite{{book}}"
 msgstr ""
 
-#: texi2html.init:5889
+#: texi2html.init:5890
 #, perl-brace-format
 msgid "{node_file_href} @cite{{book}}"
 msgstr ""
 
-#: texi2html.init:5893
+#: texi2html.init:5894
 #, perl-brace-format
 msgid "section `{section}' in @cite{{book}}"
 msgstr ""
 
-#: texi2html.init:5894
+#: texi2html.init:5895
 #, perl-brace-format
 msgid "@cite{{book}}"
 msgstr ""
 
-#: texi2html.init:5898
+#: texi2html.init:5899
 #, perl-brace-format
 msgid "{node_file_href}"
 msgstr ""
 
-#: texi2html.init:5933
+#: texi2html.init:5934
 #, perl-brace-format
 msgid "see section {reference_name}"
 msgstr ""
 
-#: texi2html.init:5934 texi2html.init:5951
+#: texi2html.init:5935 texi2html.init:5952
 #, perl-brace-format
 msgid "see {reference_name}"
 msgstr ""
 
-#: texi2html.init:5938
+#: texi2html.init:5939
 #, perl-brace-format
 msgid "See section {reference_name}"
 msgstr ""
 
-#: texi2html.init:5939 texi2html.init:5955
+#: texi2html.init:5940 texi2html.init:5956
 #, perl-brace-format
 msgid "See {reference_name}"
 msgstr ""
 
-#: texi2html.init:5943 texi2html.init:5959
+#: texi2html.init:5944 texi2html.init:5960
 #, perl-brace-format
 msgid "{reference_name}"
 msgstr ""
 
-#: texi2html.init:6577
+#: texi2html.init:6578
 #, perl-brace-format
 msgid "on @emph{{date}}"
 msgstr ""
 
-#: texi2html.init:6754 formats/html.init:2679 maintained_extra/html32.init:172
+#: texi2html.init:6755 formats/html.init:2679 maintained_extra/html32.init:172
 #, perl-brace-format
 msgid "{acronym_like} ({explanation})"
 msgstr ""
 
-#: texi2html.init:6774 formats/docbook.init:1402
+#: texi2html.init:6775 formats/docbook.init:1402
 #, perl-brace-format
 msgid "@b{{quotation_arg}:} "
 msgstr ""
 
-#: texi2html.init:6899
+#: texi2html.init:6900
 msgid "(outside of any element)"
 msgstr ""
 
@@ -581,7 +581,7 @@
 msgid "Section"
 msgstr ""
 
-#: formats/html.init:2832 maintained_extra/mediawiki.init:998
+#: formats/html.init:2832 maintained_extra/mediawiki.init:1031
 msgid "Jump to"
 msgstr ""
 

Index: po_document/no.us-ascii.po
===================================================================
RCS file: /cvsroot/texi2html/texi2html/po_document/no.us-ascii.po,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -b -r1.10 -r1.11
--- po_document/no.us-ascii.po  23 Nov 2009 13:30:51 -0000      1.10
+++ po_document/no.us-ascii.po  23 Nov 2009 16:49:52 -0000      1.11
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: texi2html 1.83\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-11-23 13:44+0100\n"
+"POT-Creation-Date: 2009-11-23 15:42+0100\n"
 "PO-Revision-Date: 2001-01-01\n"
 "Last-Translator: Unknown\n"
 "Language-Team: Unknown\n"
@@ -27,7 +27,7 @@
 msgid "Short Table of Contents"
 msgstr "Kort innholdsfortegnelse"
 
-#: texi2html.pl:5934 texi2html.pl:5938 texi2html.pl:5942 texi2html.init:6489
+#: texi2html.pl:5934 texi2html.pl:5938 texi2html.pl:5942 texi2html.init:6490
 #: formats/html.init:2475
 msgid "Footnotes"
 msgstr "No translation available!"
@@ -37,344 +37,344 @@
 msgid "@{No value for `{value}'@}"
 msgstr ""
 
-#: texi2html.init:923 texi2html.init:975 formats/html.init:687
+#: texi2html.init:924 texi2html.init:976 formats/html.init:687
 msgid "Top"
 msgstr ""
 
-#: texi2html.init:924 texi2html.init:976 formats/html.init:688
+#: texi2html.init:925 texi2html.init:977 formats/html.init:688
 msgid "Contents"
 msgstr ""
 
-#: texi2html.init:925 texi2html.init:977 formats/html.init:689
+#: texi2html.init:926 texi2html.init:978 formats/html.init:689
 msgid "Overview"
 msgstr ""
 
-#: texi2html.init:926 texi2html.init:953 texi2html.init:978
+#: texi2html.init:927 texi2html.init:954 texi2html.init:979
 #: formats/html.init:690
 msgid "Index"
 msgstr "Indeks"
 
-#: texi2html.init:928
+#: texi2html.init:929
 msgid "Current"
 msgstr ""
 
-#: texi2html.init:931 texi2html.init:936
+#: texi2html.init:932 texi2html.init:937
 msgid "Previous"
 msgstr ""
 
-#: texi2html.init:932 texi2html.init:934 texi2html.init:984
+#: texi2html.init:933 texi2html.init:935 texi2html.init:985
 msgid "Up"
 msgstr ""
 
-#: texi2html.init:933 texi2html.init:935 texi2html.init:985
+#: texi2html.init:934 texi2html.init:936 texi2html.init:986
 #: formats/html.init:697
 msgid "Next"
 msgstr ""
 
-#: texi2html.init:937 texi2html.init:989
+#: texi2html.init:938 texi2html.init:990
 msgid "Following"
 msgstr ""
 
-#: texi2html.init:943 formats/html.init:707
+#: texi2html.init:944 formats/html.init:707
 msgid "Next file"
 msgstr ""
 
-#: texi2html.init:944 formats/html.init:708
+#: texi2html.init:945 formats/html.init:708
 msgid "Previous file"
 msgstr ""
 
-#: texi2html.init:950
+#: texi2html.init:951
 msgid "Cover (top) of document"
 msgstr ""
 
-#: texi2html.init:951
+#: texi2html.init:952
 msgid "Table of contents"
 msgstr ""
 
-#: texi2html.init:952
+#: texi2html.init:953
 msgid "Short table of contents"
 msgstr ""
 
-#: texi2html.init:954
+#: texi2html.init:955
 msgid "Current section"
 msgstr ""
 
-#: texi2html.init:955
+#: texi2html.init:956
 msgid "Previous section in reading order"
 msgstr ""
 
-#: texi2html.init:956
+#: texi2html.init:957
 msgid "Beginning of this chapter or previous chapter"
 msgstr ""
 
-#: texi2html.init:957
+#: texi2html.init:958
 msgid "Previous section on same level"
 msgstr ""
 
-#: texi2html.init:958
+#: texi2html.init:959
 msgid "Up section"
 msgstr ""
 
-#: texi2html.init:959
+#: texi2html.init:960
 msgid "Next section on same level"
 msgstr ""
 
-#: texi2html.init:960
+#: texi2html.init:961
 msgid "Up node"
 msgstr ""
 
-#: texi2html.init:961 formats/html.init:699
+#: texi2html.init:962 formats/html.init:699
 msgid "Next node"
 msgstr ""
 
-#: texi2html.init:962 formats/html.init:700
+#: texi2html.init:963 formats/html.init:700
 msgid "Previous node"
 msgstr ""
 
-#: texi2html.init:963
+#: texi2html.init:964
 msgid "Node following in node reading order"
 msgstr ""
 
-#: texi2html.init:964
+#: texi2html.init:965
 msgid "Next section in reading order"
 msgstr ""
 
-#: texi2html.init:965
+#: texi2html.init:966
 msgid "Next chapter"
 msgstr ""
 
-#: texi2html.init:966
+#: texi2html.init:967
 msgid "About (help)"
 msgstr ""
 
-#: texi2html.init:967
+#: texi2html.init:968
 msgid "First section in reading order"
 msgstr ""
 
-#: texi2html.init:968
+#: texi2html.init:969
 msgid "Last section in reading order"
 msgstr ""
 
-#: texi2html.init:969
+#: texi2html.init:970
 msgid "Forward section in next file"
 msgstr ""
 
-#: texi2html.init:970
+#: texi2html.init:971
 msgid "Back section in previous file"
 msgstr ""
 
-#: texi2html.init:980
+#: texi2html.init:981
 msgid "This"
 msgstr ""
 
-#: texi2html.init:981
+#: texi2html.init:982
 msgid "Back"
 msgstr ""
 
-#: texi2html.init:982
+#: texi2html.init:983
 msgid "FastBack"
 msgstr ""
 
-#: texi2html.init:983 formats/html.init:695
+#: texi2html.init:984 formats/html.init:695
 msgid "Prev"
 msgstr ""
 
-#: texi2html.init:986
+#: texi2html.init:987
 msgid "NodeUp"
 msgstr ""
 
-#: texi2html.init:987
+#: texi2html.init:988
 msgid "NodeNext"
 msgstr ""
 
-#: texi2html.init:988
+#: texi2html.init:989
 msgid "NodePrev"
 msgstr ""
 
-#: texi2html.init:990
+#: texi2html.init:991
 msgid "Forward"
 msgstr ""
 
-#: texi2html.init:991
+#: texi2html.init:992
 msgid "FastForward"
 msgstr ""
 
-#: texi2html.init:992
+#: texi2html.init:993
 msgid "About"
 msgstr ""
 
-#: texi2html.init:993
+#: texi2html.init:994
 msgid "First"
 msgstr ""
 
-#: texi2html.init:994
+#: texi2html.init:995
 msgid "Last"
 msgstr ""
 
-#: texi2html.init:995
+#: texi2html.init:996
 msgid "NextFile"
 msgstr ""
 
-#: texi2html.init:996
+#: texi2html.init:997
 msgid "PrevFile"
 msgstr ""
 
-#: texi2html.init:1611
+#: texi2html.init:1612
 #, perl-brace-format
 msgid ""
 "This document was generated on @i{{date}} using @uref{{program_homepage}, @i"
 "{{program}}}."
 msgstr ""
 
-#: texi2html.init:1614
+#: texi2html.init:1615
 #, perl-brace-format
 msgid ""
 "This document was generated using @uref{{program_homepage}, @emph"
 "{{program}}}."
 msgstr ""
 
-#: texi2html.init:5171 texi2html.init:5294 formats/html.init:1574
+#: texi2html.init:5172 texi2html.init:5295 formats/html.init:1574
 #: formats/html.init:1672
 #, perl-brace-format
 msgid "{style} {number}"
 msgstr ""
 
-#: texi2html.init:5193 formats/html.init:1588
+#: texi2html.init:5194 formats/html.init:1588
 #, perl-brace-format
 msgid "{style}: {caption_first_line}"
 msgstr ""
 
-#: texi2html.init:5221 formats/html.init:1605
+#: texi2html.init:5222 formats/html.init:1605
 #, perl-brace-format
 msgid "{style}: {shortcaption_first_line}"
 msgstr ""
 
-#: texi2html.init:5526 texi2html.init:5547
+#: texi2html.init:5527 texi2html.init:5548
 #, perl-brace-format
 msgid "{name} on {class}"
 msgstr ""
 
-#: texi2html.init:5530 texi2html.init:5551
+#: texi2html.init:5531 texi2html.init:5552
 #, perl-brace-format
 msgid "{name} of {class}"
 msgstr ""
 
-#: texi2html.init:5854
+#: texi2html.init:5855
 #, perl-brace-format
 msgid "see {node_file_href} section `{section}' in @cite{{book}}"
 msgstr ""
 
-#: texi2html.init:5855
+#: texi2html.init:5856
 #, perl-brace-format
 msgid "see {node_file_href} @cite{{book}}"
 msgstr ""
 
-#: texi2html.init:5859
+#: texi2html.init:5860
 #, perl-brace-format
 msgid "see section `{section}' in @cite{{book}}"
 msgstr ""
 
-#: texi2html.init:5860
+#: texi2html.init:5861
 #, perl-brace-format
 msgid "see @cite{{book}}"
 msgstr ""
 
-#: texi2html.init:5864
+#: texi2html.init:5865
 #, perl-brace-format
 msgid "see {node_file_href}"
 msgstr ""
 
-#: texi2html.init:5871
+#: texi2html.init:5872
 #, perl-brace-format
 msgid "See {node_file_href} section `{section}' in @cite{{book}}"
 msgstr ""
 
-#: texi2html.init:5872
+#: texi2html.init:5873
 #, perl-brace-format
 msgid "See {node_file_href} @cite{{book}}"
 msgstr ""
 
-#: texi2html.init:5876
+#: texi2html.init:5877
 #, perl-brace-format
 msgid "See section `{section}' in @cite{{book}}"
 msgstr ""
 
-#: texi2html.init:5877
+#: texi2html.init:5878
 #, perl-brace-format
 msgid "See @cite{{book}}"
 msgstr ""
 
-#: texi2html.init:5881
+#: texi2html.init:5882
 #, perl-brace-format
 msgid "See {node_file_href}"
 msgstr ""
 
-#: texi2html.init:5888
+#: texi2html.init:5889
 #, perl-brace-format
 msgid "{node_file_href} section `{section}' in @cite{{book}}"
 msgstr ""
 
-#: texi2html.init:5889
+#: texi2html.init:5890
 #, perl-brace-format
 msgid "{node_file_href} @cite{{book}}"
 msgstr ""
 
-#: texi2html.init:5893
+#: texi2html.init:5894
 #, perl-brace-format
 msgid "section `{section}' in @cite{{book}}"
 msgstr ""
 
-#: texi2html.init:5894
+#: texi2html.init:5895
 #, perl-brace-format
 msgid "@cite{{book}}"
 msgstr ""
 
-#: texi2html.init:5898
+#: texi2html.init:5899
 #, perl-brace-format
 msgid "{node_file_href}"
 msgstr ""
 
-#: texi2html.init:5933
+#: texi2html.init:5934
 #, perl-brace-format
 msgid "see section {reference_name}"
 msgstr ""
 
-#: texi2html.init:5934 texi2html.init:5951
+#: texi2html.init:5935 texi2html.init:5952
 #, perl-brace-format
 msgid "see {reference_name}"
 msgstr ""
 
-#: texi2html.init:5938
+#: texi2html.init:5939
 #, perl-brace-format
 msgid "See section {reference_name}"
 msgstr ""
 
-#: texi2html.init:5939 texi2html.init:5955
+#: texi2html.init:5940 texi2html.init:5956
 #, perl-brace-format
 msgid "See {reference_name}"
 msgstr ""
 
-#: texi2html.init:5943 texi2html.init:5959
+#: texi2html.init:5944 texi2html.init:5960
 #, perl-brace-format
 msgid "{reference_name}"
 msgstr ""
 
-#: texi2html.init:6577
+#: texi2html.init:6578
 #, perl-brace-format
 msgid "on @emph{{date}}"
 msgstr ""
 
-#: texi2html.init:6754 formats/html.init:2679 maintained_extra/html32.init:172
+#: texi2html.init:6755 formats/html.init:2679 maintained_extra/html32.init:172
 #, perl-brace-format
 msgid "{acronym_like} ({explanation})"
 msgstr ""
 
-#: texi2html.init:6774 formats/docbook.init:1402
+#: texi2html.init:6775 formats/docbook.init:1402
 #, perl-brace-format
 msgid "@b{{quotation_arg}:} "
 msgstr ""
 
-#: texi2html.init:6899
+#: texi2html.init:6900
 msgid "(outside of any element)"
 msgstr ""
 
@@ -581,7 +581,7 @@
 msgid "Section"
 msgstr ""
 
-#: formats/html.init:2832 maintained_extra/mediawiki.init:998
+#: formats/html.init:2832 maintained_extra/mediawiki.init:1031
 msgid "Jump to"
 msgstr ""
 

Index: po_document/pt.us-ascii.po
===================================================================
RCS file: /cvsroot/texi2html/texi2html/po_document/pt.us-ascii.po,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -b -r1.10 -r1.11
--- po_document/pt.us-ascii.po  23 Nov 2009 13:30:51 -0000      1.10
+++ po_document/pt.us-ascii.po  23 Nov 2009 16:49:52 -0000      1.11
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: texi2html 1.83\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-11-23 13:44+0100\n"
+"POT-Creation-Date: 2009-11-23 15:42+0100\n"
 "PO-Revision-Date: 2006-01-09\n"
 "Last-Translator: Jorge Barros de Abreu <address@hidden>\n"
 "Language-Team: Unknown\n"
@@ -27,7 +27,7 @@
 msgid "Short Table of Contents"
 msgstr "Breve Sum@'ario"
 
-#: texi2html.pl:5934 texi2html.pl:5938 texi2html.pl:5942 texi2html.init:6489
+#: texi2html.pl:5934 texi2html.pl:5938 texi2html.pl:5942 texi2html.init:6490
 #: formats/html.init:2475
 msgid "Footnotes"
 msgstr "Notas de Rodap@'e"
@@ -37,189 +37,189 @@
 msgid "@{No value for `{value}'@}"
 msgstr ""
 
-#: texi2html.init:923 texi2html.init:975 formats/html.init:687
+#: texi2html.init:924 texi2html.init:976 formats/html.init:687
 msgid "Top"
 msgstr "Topo"
 
-#: texi2html.init:924 texi2html.init:976 formats/html.init:688
+#: texi2html.init:925 texi2html.init:977 formats/html.init:688
 msgid "Contents"
 msgstr "Conte@'udo"
 
-#: texi2html.init:925 texi2html.init:977 formats/html.init:689
+#: texi2html.init:926 texi2html.init:978 formats/html.init:689
 msgid "Overview"
 msgstr "address@hidden geral"
 
-#: texi2html.init:926 texi2html.init:953 texi2html.init:978
+#: texi2html.init:927 texi2html.init:954 texi2html.init:979
 #: formats/html.init:690
 msgid "Index"
 msgstr "@'Indice"
 
-#: texi2html.init:928
+#: texi2html.init:929
 msgid "Current"
 msgstr ""
 
-#: texi2html.init:931 texi2html.init:936
+#: texi2html.init:932 texi2html.init:937
 msgid "Previous"
 msgstr ""
 
-#: texi2html.init:932 texi2html.init:934 texi2html.init:984
+#: texi2html.init:933 texi2html.init:935 texi2html.init:985
 msgid "Up"
 msgstr "Acima"
 
-#: texi2html.init:933 texi2html.init:935 texi2html.init:985
+#: texi2html.init:934 texi2html.init:936 texi2html.init:986
 #: formats/html.init:697
 msgid "Next"
 msgstr "Pr@'oximo"
 
-#: texi2html.init:937 texi2html.init:989
+#: texi2html.init:938 texi2html.init:990
 msgid "Following"
 msgstr "Seguinte"
 
-#: texi2html.init:943 formats/html.init:707
+#: texi2html.init:944 formats/html.init:707
 msgid "Next file"
 msgstr ""
 
-#: texi2html.init:944 formats/html.init:708
+#: texi2html.init:945 formats/html.init:708
 msgid "Previous file"
 msgstr ""
 
-#: texi2html.init:950
+#: texi2html.init:951
 msgid "Cover (top) of document"
 msgstr "In@'icio (topo) do documento"
 
-#: texi2html.init:951
+#: texi2html.init:952
 msgid "Table of contents"
 msgstr "Sum@'ario"
 
-#: texi2html.init:952
+#: texi2html.init:953
 msgid "Short table of contents"
 msgstr "Breve sum@'ario"
 
-#: texi2html.init:954
+#: texi2html.init:955
 msgid "Current section"
 msgstr "Se@,address@hidden atual"
 
-#: texi2html.init:955
+#: texi2html.init:956
 msgid "Previous section in reading order"
 msgstr "Se@,address@hidden anterior na ordem de leitura"
 
-#: texi2html.init:956
+#: texi2html.init:957
 msgid "Beginning of this chapter or previous chapter"
 msgstr "Come@,{c}o desse cap@'itulo ou cap@'itulo anterior"
 
-#: texi2html.init:957
+#: texi2html.init:958
 msgid "Previous section on same level"
 msgstr "Se@,address@hidden anterior no mesmo n@'ivel"
 
-#: texi2html.init:958
+#: texi2html.init:959
 msgid "Up section"
 msgstr "Se@,address@hidden acima"
 
-#: texi2html.init:959
+#: texi2html.init:960
 msgid "Next section on same level"
 msgstr "Pr@'oxima se@,address@hidden no mesmo n@'ivel"
 
-#: texi2html.init:960
+#: texi2html.init:961
 msgid "Up node"
 msgstr "Nodo acima"
 
-#: texi2html.init:961 formats/html.init:699
+#: texi2html.init:962 formats/html.init:699
 msgid "Next node"
 msgstr "Pr@'oximo nodo"
 
-#: texi2html.init:962 formats/html.init:700
+#: texi2html.init:963 formats/html.init:700
 msgid "Previous node"
 msgstr "Nodo anterior"
 
-#: texi2html.init:963
+#: texi2html.init:964
 msgid "Node following in node reading order"
 msgstr "Nodo seguinte na ordem de leitura de nodos"
 
-#: texi2html.init:964
+#: texi2html.init:965
 msgid "Next section in reading order"
 msgstr "Pr@'oxima se@,address@hidden na ordem de leitura"
 
-#: texi2html.init:965
+#: texi2html.init:966
 msgid "Next chapter"
 msgstr "Pr@'oximo cap@'itulo"
 
-#: texi2html.init:966
+#: texi2html.init:967
 msgid "About (help)"
 msgstr "Sobre (ajuda)"
 
-#: texi2html.init:967
+#: texi2html.init:968
 msgid "First section in reading order"
 msgstr "Primeira se@,address@hidden na ordem de leitura"
 
-#: texi2html.init:968
+#: texi2html.init:969
 msgid "Last section in reading order"
 msgstr "@'Ultima se@,address@hidden na ordem de leitura"
 
-#: texi2html.init:969
+#: texi2html.init:970
 msgid "Forward section in next file"
 msgstr ""
 
-#: texi2html.init:970
+#: texi2html.init:971
 msgid "Back section in previous file"
 msgstr ""
 
-#: texi2html.init:980
+#: texi2html.init:981
 msgid "This"
 msgstr "Esse"
 
-#: texi2html.init:981
+#: texi2html.init:982
 msgid "Back"
 msgstr "Volta"
 
-#: texi2html.init:982
+#: texi2html.init:983
 msgid "FastBack"
 msgstr "Voltar R@'apido"
 
-#: texi2html.init:983 formats/html.init:695
+#: texi2html.init:984 formats/html.init:695
 msgid "Prev"
 msgstr "Pr@'evio"
 
-#: texi2html.init:986
+#: texi2html.init:987
 msgid "NodeUp"
 msgstr "Nodo Acima"
 
-#: texi2html.init:987
+#: texi2html.init:988
 msgid "NodeNext"
 msgstr "Pr@'oximo Nodo"
 
-#: texi2html.init:988
+#: texi2html.init:989
 msgid "NodePrev"
 msgstr "Nodo Anterior"
 
-#: texi2html.init:990
+#: texi2html.init:991
 msgid "Forward"
 msgstr "Avan@,{c}ar"
 
-#: texi2html.init:991
+#: texi2html.init:992
 msgid "FastForward"
 msgstr "Avan@,{c}ar R@'apido"
 
-#: texi2html.init:992
+#: texi2html.init:993
 msgid "About"
 msgstr "Sobre"
 
-#: texi2html.init:993
+#: texi2html.init:994
 msgid "First"
 msgstr "Primeiro"
 
-#: texi2html.init:994
+#: texi2html.init:995
 msgid "Last"
 msgstr "@'Ultimo"
 
-#: texi2html.init:995
+#: texi2html.init:996
 msgid "NextFile"
 msgstr ""
 
-#: texi2html.init:996
+#: texi2html.init:997
 msgid "PrevFile"
 msgstr ""
 
-#: texi2html.init:1611
+#: texi2html.init:1612
 #, perl-brace-format
 msgid ""
 "This document was generated on @i{{date}} using @uref{{program_homepage}, @i"
@@ -228,7 +228,7 @@
 "Esse documento foi gerado em @i{{date}} usando @uref{{program_homepage}, @i"
 "{{program}}}."
 
-#: texi2html.init:1614
+#: texi2html.init:1615
 #, perl-brace-format
 msgid ""
 "This document was generated using @uref{{program_homepage}, @emph"
@@ -236,148 +236,148 @@
 msgstr ""
 "Esse documento foi gerado usando @uref{{program_homepage}, @emph{{program}}}."
 
-#: texi2html.init:5171 texi2html.init:5294 formats/html.init:1574
+#: texi2html.init:5172 texi2html.init:5295 formats/html.init:1574
 #: formats/html.init:1672
 #, perl-brace-format
 msgid "{style} {number}"
 msgstr ""
 
-#: texi2html.init:5193 formats/html.init:1588
+#: texi2html.init:5194 formats/html.init:1588
 #, perl-brace-format
 msgid "{style}: {caption_first_line}"
 msgstr ""
 
-#: texi2html.init:5221 formats/html.init:1605
+#: texi2html.init:5222 formats/html.init:1605
 #, perl-brace-format
 msgid "{style}: {shortcaption_first_line}"
 msgstr ""
 
-#: texi2html.init:5526 texi2html.init:5547
+#: texi2html.init:5527 texi2html.init:5548
 #, perl-brace-format
 msgid "{name} on {class}"
 msgstr "{name} na {class}"
 
-#: texi2html.init:5530 texi2html.init:5551
+#: texi2html.init:5531 texi2html.init:5552
 #, perl-brace-format
 msgid "{name} of {class}"
 msgstr "{name} da {class}"
 
-#: texi2html.init:5854
+#: texi2html.init:5855
 #, perl-brace-format
 msgid "see {node_file_href} section `{section}' in @cite{{book}}"
 msgstr "veja {node_file_href} se@,address@hidden `{section}' em @cite{{book}}"
 
-#: texi2html.init:5855
+#: texi2html.init:5856
 #, perl-brace-format
 msgid "see {node_file_href} @cite{{book}}"
 msgstr "veja {node_file_href} @cite{{book}}"
 
-#: texi2html.init:5859
+#: texi2html.init:5860
 #, perl-brace-format
 msgid "see section `{section}' in @cite{{book}}"
 msgstr "veja se@,address@hidden `{section}' em @cite{{book}}"
 
-#: texi2html.init:5860
+#: texi2html.init:5861
 #, perl-brace-format
 msgid "see @cite{{book}}"
 msgstr "veja @cite{{book}}"
 
-#: texi2html.init:5864
+#: texi2html.init:5865
 #, perl-brace-format
 msgid "see {node_file_href}"
 msgstr "veja {node_file_href}"
 
-#: texi2html.init:5871
+#: texi2html.init:5872
 #, perl-brace-format
 msgid "See {node_file_href} section `{section}' in @cite{{book}}"
 msgstr "Veja {node_file_href} se@,address@hidden `{section}' em @cite{{book}}"
 
-#: texi2html.init:5872
+#: texi2html.init:5873
 #, perl-brace-format
 msgid "See {node_file_href} @cite{{book}}"
 msgstr "Veja {node_file_href} @cite{{book}}"
 
-#: texi2html.init:5876
+#: texi2html.init:5877
 #, perl-brace-format
 msgid "See section `{section}' in @cite{{book}}"
 msgstr "Veja se@,address@hidden `{section}' em @cite{{book}}"
 
-#: texi2html.init:5877
+#: texi2html.init:5878
 #, perl-brace-format
 msgid "See @cite{{book}}"
 msgstr "Veja @cite{{book}}"
 
-#: texi2html.init:5881
+#: texi2html.init:5882
 #, perl-brace-format
 msgid "See {node_file_href}"
 msgstr "Veja {node_file_href}"
 
-#: texi2html.init:5888
+#: texi2html.init:5889
 #, perl-brace-format
 msgid "{node_file_href} section `{section}' in @cite{{book}}"
 msgstr "{node_file_href} se@,address@hidden `{section}' em @cite{{book}}"
 
-#: texi2html.init:5889
+#: texi2html.init:5890
 #, perl-brace-format
 msgid "{node_file_href} @cite{{book}}"
 msgstr ""
 
-#: texi2html.init:5893
+#: texi2html.init:5894
 #, perl-brace-format
 msgid "section `{section}' in @cite{{book}}"
 msgstr "se@,address@hidden `{section}' em @cite{{book}}"
 
-#: texi2html.init:5894
+#: texi2html.init:5895
 #, perl-brace-format
 msgid "@cite{{book}}"
 msgstr ""
 
-#: texi2html.init:5898
+#: texi2html.init:5899
 #, perl-brace-format
 msgid "{node_file_href}"
 msgstr ""
 
-#: texi2html.init:5933
+#: texi2html.init:5934
 #, perl-brace-format
 msgid "see section {reference_name}"
 msgstr "veja se@,address@hidden {reference_name}"
 
-#: texi2html.init:5934 texi2html.init:5951
+#: texi2html.init:5935 texi2html.init:5952
 #, perl-brace-format
 msgid "see {reference_name}"
 msgstr "veja {reference_name}"
 
-#: texi2html.init:5938
+#: texi2html.init:5939
 #, perl-brace-format
 msgid "See section {reference_name}"
 msgstr "Veja se@,address@hidden {reference_name}"
 
-#: texi2html.init:5939 texi2html.init:5955
+#: texi2html.init:5940 texi2html.init:5956
 #, perl-brace-format
 msgid "See {reference_name}"
 msgstr "Veja {reference_name}"
 
-#: texi2html.init:5943 texi2html.init:5959
+#: texi2html.init:5944 texi2html.init:5960
 #, perl-brace-format
 msgid "{reference_name}"
 msgstr ""
 
-#: texi2html.init:6577
+#: texi2html.init:6578
 #, perl-brace-format
 msgid "on @emph{{date}}"
 msgstr "em @emph{{date}}"
 
-#: texi2html.init:6754 formats/html.init:2679 maintained_extra/html32.init:172
+#: texi2html.init:6755 formats/html.init:2679 maintained_extra/html32.init:172
 #, perl-brace-format
 msgid "{acronym_like} ({explanation})"
 msgstr ""
 
-#: texi2html.init:6774 formats/docbook.init:1402
+#: texi2html.init:6775 formats/docbook.init:1402
 #, perl-brace-format
 msgid "@b{{quotation_arg}:} "
 msgstr ""
 
-#: texi2html.init:6899
+#: texi2html.init:6900
 msgid "(outside of any element)"
 msgstr ""
 
@@ -589,7 +589,7 @@
 msgid "Section"
 msgstr "Se@,address@hidden"
 
-#: formats/html.init:2832 maintained_extra/mediawiki.init:998
+#: formats/html.init:2832 maintained_extra/mediawiki.init:1031
 msgid "Jump to"
 msgstr "Pular para"
 

Index: po_document/pt_BR.us-ascii.po
===================================================================
RCS file: /cvsroot/texi2html/texi2html/po_document/pt_BR.us-ascii.po,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -b -r1.10 -r1.11
--- po_document/pt_BR.us-ascii.po       23 Nov 2009 13:30:51 -0000      1.10
+++ po_document/pt_BR.us-ascii.po       23 Nov 2009 16:49:52 -0000      1.11
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: texi2html 1.83\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-11-23 13:44+0100\n"
+"POT-Creation-Date: 2009-11-23 15:42+0100\n"
 "PO-Revision-Date: 2006-01-09\n"
 "Last-Translator: Jorge Barros de Abreu <address@hidden>\n"
 "Language-Team: Unknown\n"
@@ -27,7 +27,7 @@
 msgid "Short Table of Contents"
 msgstr "Breve Sum@'ario"
 
-#: texi2html.pl:5934 texi2html.pl:5938 texi2html.pl:5942 texi2html.init:6489
+#: texi2html.pl:5934 texi2html.pl:5938 texi2html.pl:5942 texi2html.init:6490
 #: formats/html.init:2475
 msgid "Footnotes"
 msgstr "Notas de Rodap@'e"
@@ -37,189 +37,189 @@
 msgid "@{No value for `{value}'@}"
 msgstr ""
 
-#: texi2html.init:923 texi2html.init:975 formats/html.init:687
+#: texi2html.init:924 texi2html.init:976 formats/html.init:687
 msgid "Top"
 msgstr "Topo"
 
-#: texi2html.init:924 texi2html.init:976 formats/html.init:688
+#: texi2html.init:925 texi2html.init:977 formats/html.init:688
 msgid "Contents"
 msgstr "Conte@'udo"
 
-#: texi2html.init:925 texi2html.init:977 formats/html.init:689
+#: texi2html.init:926 texi2html.init:978 formats/html.init:689
 msgid "Overview"
 msgstr "address@hidden geral"
 
-#: texi2html.init:926 texi2html.init:953 texi2html.init:978
+#: texi2html.init:927 texi2html.init:954 texi2html.init:979
 #: formats/html.init:690
 msgid "Index"
 msgstr "@'Indice"
 
-#: texi2html.init:928
+#: texi2html.init:929
 msgid "Current"
 msgstr ""
 
-#: texi2html.init:931 texi2html.init:936
+#: texi2html.init:932 texi2html.init:937
 msgid "Previous"
 msgstr ""
 
-#: texi2html.init:932 texi2html.init:934 texi2html.init:984
+#: texi2html.init:933 texi2html.init:935 texi2html.init:985
 msgid "Up"
 msgstr "Acima"
 
-#: texi2html.init:933 texi2html.init:935 texi2html.init:985
+#: texi2html.init:934 texi2html.init:936 texi2html.init:986
 #: formats/html.init:697
 msgid "Next"
 msgstr "Pr@'oximo"
 
-#: texi2html.init:937 texi2html.init:989
+#: texi2html.init:938 texi2html.init:990
 msgid "Following"
 msgstr "Seguinte"
 
-#: texi2html.init:943 formats/html.init:707
+#: texi2html.init:944 formats/html.init:707
 msgid "Next file"
 msgstr ""
 
-#: texi2html.init:944 formats/html.init:708
+#: texi2html.init:945 formats/html.init:708
 msgid "Previous file"
 msgstr ""
 
-#: texi2html.init:950
+#: texi2html.init:951
 msgid "Cover (top) of document"
 msgstr "In@'icio (topo) do documento"
 
-#: texi2html.init:951
+#: texi2html.init:952
 msgid "Table of contents"
 msgstr "Sum@'ario"
 
-#: texi2html.init:952
+#: texi2html.init:953
 msgid "Short table of contents"
 msgstr "Breve sum@'ario"
 
-#: texi2html.init:954
+#: texi2html.init:955
 msgid "Current section"
 msgstr "Se@,address@hidden atual"
 
-#: texi2html.init:955
+#: texi2html.init:956
 msgid "Previous section in reading order"
 msgstr "Se@,address@hidden anterior na ordem de leitura"
 
-#: texi2html.init:956
+#: texi2html.init:957
 msgid "Beginning of this chapter or previous chapter"
 msgstr "Come@,{c}o desse cap@'itulo ou cap@'itulo anterior"
 
-#: texi2html.init:957
+#: texi2html.init:958
 msgid "Previous section on same level"
 msgstr "Se@,address@hidden anterior no mesmo n@'ivel"
 
-#: texi2html.init:958
+#: texi2html.init:959
 msgid "Up section"
 msgstr "Se@,address@hidden acima"
 
-#: texi2html.init:959
+#: texi2html.init:960
 msgid "Next section on same level"
 msgstr "Pr@'oxima se@,address@hidden no mesmo n@'ivel"
 
-#: texi2html.init:960
+#: texi2html.init:961
 msgid "Up node"
 msgstr "Nodo acima"
 
-#: texi2html.init:961 formats/html.init:699
+#: texi2html.init:962 formats/html.init:699
 msgid "Next node"
 msgstr "Pr@'oximo nodo"
 
-#: texi2html.init:962 formats/html.init:700
+#: texi2html.init:963 formats/html.init:700
 msgid "Previous node"
 msgstr "Nodo anterior"
 
-#: texi2html.init:963
+#: texi2html.init:964
 msgid "Node following in node reading order"
 msgstr "Nodo seguinte na ordem de leitura de nodos"
 
-#: texi2html.init:964
+#: texi2html.init:965
 msgid "Next section in reading order"
 msgstr "Pr@'oxima se@,address@hidden na ordem de leitura"
 
-#: texi2html.init:965
+#: texi2html.init:966
 msgid "Next chapter"
 msgstr "Pr@'oximo cap@'itulo"
 
-#: texi2html.init:966
+#: texi2html.init:967
 msgid "About (help)"
 msgstr "Sobre (ajuda)"
 
-#: texi2html.init:967
+#: texi2html.init:968
 msgid "First section in reading order"
 msgstr "Primeira se@,address@hidden na ordem de leitura"
 
-#: texi2html.init:968
+#: texi2html.init:969
 msgid "Last section in reading order"
 msgstr "@'Ultima se@,address@hidden na ordem de leitura"
 
-#: texi2html.init:969
+#: texi2html.init:970
 msgid "Forward section in next file"
 msgstr ""
 
-#: texi2html.init:970
+#: texi2html.init:971
 msgid "Back section in previous file"
 msgstr ""
 
-#: texi2html.init:980
+#: texi2html.init:981
 msgid "This"
 msgstr "Esse"
 
-#: texi2html.init:981
+#: texi2html.init:982
 msgid "Back"
 msgstr "Volta"
 
-#: texi2html.init:982
+#: texi2html.init:983
 msgid "FastBack"
 msgstr "Voltar R@'apido"
 
-#: texi2html.init:983 formats/html.init:695
+#: texi2html.init:984 formats/html.init:695
 msgid "Prev"
 msgstr "Pr@'evio"
 
-#: texi2html.init:986
+#: texi2html.init:987
 msgid "NodeUp"
 msgstr "Nodo Acima"
 
-#: texi2html.init:987
+#: texi2html.init:988
 msgid "NodeNext"
 msgstr "Pr@'oximo Nodo"
 
-#: texi2html.init:988
+#: texi2html.init:989
 msgid "NodePrev"
 msgstr "Nodo Anterior"
 
-#: texi2html.init:990
+#: texi2html.init:991
 msgid "Forward"
 msgstr "Avan@,{c}ar"
 
-#: texi2html.init:991
+#: texi2html.init:992
 msgid "FastForward"
 msgstr "Avan@,{c}ar R@'apido"
 
-#: texi2html.init:992
+#: texi2html.init:993
 msgid "About"
 msgstr "Sobre"
 
-#: texi2html.init:993
+#: texi2html.init:994
 msgid "First"
 msgstr "Primeiro"
 
-#: texi2html.init:994
+#: texi2html.init:995
 msgid "Last"
 msgstr "@'Ultimo"
 
-#: texi2html.init:995
+#: texi2html.init:996
 msgid "NextFile"
 msgstr ""
 
-#: texi2html.init:996
+#: texi2html.init:997
 msgid "PrevFile"
 msgstr ""
 
-#: texi2html.init:1611
+#: texi2html.init:1612
 #, perl-brace-format
 msgid ""
 "This document was generated on @i{{date}} using @uref{{program_homepage}, @i"
@@ -228,7 +228,7 @@
 "Esse documento foi gerado em @i{{date}} usando @uref{{program_homepage}, @i"
 "{{program}}}."
 
-#: texi2html.init:1614
+#: texi2html.init:1615
 #, perl-brace-format
 msgid ""
 "This document was generated using @uref{{program_homepage}, @emph"
@@ -236,148 +236,148 @@
 msgstr ""
 "Esse documento foi gerado usando @uref{{program_homepage}, @emph{{program}}}."
 
-#: texi2html.init:5171 texi2html.init:5294 formats/html.init:1574
+#: texi2html.init:5172 texi2html.init:5295 formats/html.init:1574
 #: formats/html.init:1672
 #, perl-brace-format
 msgid "{style} {number}"
 msgstr ""
 
-#: texi2html.init:5193 formats/html.init:1588
+#: texi2html.init:5194 formats/html.init:1588
 #, perl-brace-format
 msgid "{style}: {caption_first_line}"
 msgstr ""
 
-#: texi2html.init:5221 formats/html.init:1605
+#: texi2html.init:5222 formats/html.init:1605
 #, perl-brace-format
 msgid "{style}: {shortcaption_first_line}"
 msgstr ""
 
-#: texi2html.init:5526 texi2html.init:5547
+#: texi2html.init:5527 texi2html.init:5548
 #, perl-brace-format
 msgid "{name} on {class}"
 msgstr "{name} na {class}"
 
-#: texi2html.init:5530 texi2html.init:5551
+#: texi2html.init:5531 texi2html.init:5552
 #, perl-brace-format
 msgid "{name} of {class}"
 msgstr "{name} da {class}"
 
-#: texi2html.init:5854
+#: texi2html.init:5855
 #, perl-brace-format
 msgid "see {node_file_href} section `{section}' in @cite{{book}}"
 msgstr "veja {node_file_href} se@,address@hidden `{section}' em @cite{{book}}"
 
-#: texi2html.init:5855
+#: texi2html.init:5856
 #, perl-brace-format
 msgid "see {node_file_href} @cite{{book}}"
 msgstr "veja {node_file_href} @cite{{book}}"
 
-#: texi2html.init:5859
+#: texi2html.init:5860
 #, perl-brace-format
 msgid "see section `{section}' in @cite{{book}}"
 msgstr "veja se@,address@hidden `{section}' em @cite{{book}}"
 
-#: texi2html.init:5860
+#: texi2html.init:5861
 #, perl-brace-format
 msgid "see @cite{{book}}"
 msgstr "veja @cite{{book}}"
 
-#: texi2html.init:5864
+#: texi2html.init:5865
 #, perl-brace-format
 msgid "see {node_file_href}"
 msgstr "veja {node_file_href}"
 
-#: texi2html.init:5871
+#: texi2html.init:5872
 #, perl-brace-format
 msgid "See {node_file_href} section `{section}' in @cite{{book}}"
 msgstr "Veja {node_file_href} se@,address@hidden `{section}' em @cite{{book}}"
 
-#: texi2html.init:5872
+#: texi2html.init:5873
 #, perl-brace-format
 msgid "See {node_file_href} @cite{{book}}"
 msgstr "Veja {node_file_href} @cite{{book}}"
 
-#: texi2html.init:5876
+#: texi2html.init:5877
 #, perl-brace-format
 msgid "See section `{section}' in @cite{{book}}"
 msgstr "Veja se@,address@hidden `{section}' em @cite{{book}}"
 
-#: texi2html.init:5877
+#: texi2html.init:5878
 #, perl-brace-format
 msgid "See @cite{{book}}"
 msgstr "Veja @cite{{book}}"
 
-#: texi2html.init:5881
+#: texi2html.init:5882
 #, perl-brace-format
 msgid "See {node_file_href}"
 msgstr "Veja {node_file_href}"
 
-#: texi2html.init:5888
+#: texi2html.init:5889
 #, perl-brace-format
 msgid "{node_file_href} section `{section}' in @cite{{book}}"
 msgstr "{node_file_href} se@,address@hidden `{section}' em @cite{{book}}"
 
-#: texi2html.init:5889
+#: texi2html.init:5890
 #, perl-brace-format
 msgid "{node_file_href} @cite{{book}}"
 msgstr ""
 
-#: texi2html.init:5893
+#: texi2html.init:5894
 #, perl-brace-format
 msgid "section `{section}' in @cite{{book}}"
 msgstr "se@,address@hidden `{section}' em @cite{{book}}"
 
-#: texi2html.init:5894
+#: texi2html.init:5895
 #, perl-brace-format
 msgid "@cite{{book}}"
 msgstr ""
 
-#: texi2html.init:5898
+#: texi2html.init:5899
 #, perl-brace-format
 msgid "{node_file_href}"
 msgstr ""
 
-#: texi2html.init:5933
+#: texi2html.init:5934
 #, perl-brace-format
 msgid "see section {reference_name}"
 msgstr "veja se@,address@hidden {reference_name}"
 
-#: texi2html.init:5934 texi2html.init:5951
+#: texi2html.init:5935 texi2html.init:5952
 #, perl-brace-format
 msgid "see {reference_name}"
 msgstr "veja {reference_name}"
 
-#: texi2html.init:5938
+#: texi2html.init:5939
 #, perl-brace-format
 msgid "See section {reference_name}"
 msgstr "Veja se@,address@hidden {reference_name}"
 
-#: texi2html.init:5939 texi2html.init:5955
+#: texi2html.init:5940 texi2html.init:5956
 #, perl-brace-format
 msgid "See {reference_name}"
 msgstr "Veja {reference_name}"
 
-#: texi2html.init:5943 texi2html.init:5959
+#: texi2html.init:5944 texi2html.init:5960
 #, perl-brace-format
 msgid "{reference_name}"
 msgstr ""
 
-#: texi2html.init:6577
+#: texi2html.init:6578
 #, perl-brace-format
 msgid "on @emph{{date}}"
 msgstr "em @emph{{date}}"
 
-#: texi2html.init:6754 formats/html.init:2679 maintained_extra/html32.init:172
+#: texi2html.init:6755 formats/html.init:2679 maintained_extra/html32.init:172
 #, perl-brace-format
 msgid "{acronym_like} ({explanation})"
 msgstr ""
 
-#: texi2html.init:6774 formats/docbook.init:1402
+#: texi2html.init:6775 formats/docbook.init:1402
 #, perl-brace-format
 msgid "@b{{quotation_arg}:} "
 msgstr ""
 
-#: texi2html.init:6899
+#: texi2html.init:6900
 msgid "(outside of any element)"
 msgstr ""
 
@@ -589,7 +589,7 @@
 msgid "Section"
 msgstr "Se@,address@hidden"
 
-#: formats/html.init:2832 maintained_extra/mediawiki.init:998
+#: formats/html.init:2832 maintained_extra/mediawiki.init:1031
 msgid "Jump to"
 msgstr "Pular para"
 




reply via email to

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