texi2html-cvs
[Top][All Lists]
Advanced

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

[Texi2html-cvs] texi2html ChangeLog texi2html.init po_document/...


From: Patrice Dumas
Subject: [Texi2html-cvs] texi2html ChangeLog texi2html.init po_document/...
Date: Sun, 22 Nov 2009 15:27:29 +0000

CVSROOT:        /cvsroot/texi2html
Module name:    texi2html
Changes by:     Patrice Dumas <pertusus>        09/11/22 15:27:28

Modified files:
        .              : ChangeLog texi2html.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:
                * texi2html.init: don't execute commplex format string if it is
                an empty string.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/texi2html/ChangeLog?cvsroot=texi2html&r1=1.459&r2=1.460
http://cvs.savannah.gnu.org/viewcvs/texi2html/texi2html.init?cvsroot=texi2html&r1=1.250&r2=1.251
http://cvs.savannah.gnu.org/viewcvs/texi2html/po_document/de.us-ascii.po?cvsroot=texi2html&r1=1.8&r2=1.9
http://cvs.savannah.gnu.org/viewcvs/texi2html/po_document/es.us-ascii.po?cvsroot=texi2html&r1=1.8&r2=1.9
http://cvs.savannah.gnu.org/viewcvs/texi2html/po_document/fr.us-ascii.po?cvsroot=texi2html&r1=1.8&r2=1.9
http://cvs.savannah.gnu.org/viewcvs/texi2html/po_document/ja.utf-8.po?cvsroot=texi2html&r1=1.8&r2=1.9
http://cvs.savannah.gnu.org/viewcvs/texi2html/po_document/nl.us-ascii.po?cvsroot=texi2html&r1=1.8&r2=1.9
http://cvs.savannah.gnu.org/viewcvs/texi2html/po_document/no.us-ascii.po?cvsroot=texi2html&r1=1.8&r2=1.9
http://cvs.savannah.gnu.org/viewcvs/texi2html/po_document/pt.us-ascii.po?cvsroot=texi2html&r1=1.8&r2=1.9
http://cvs.savannah.gnu.org/viewcvs/texi2html/po_document/pt_BR.us-ascii.po?cvsroot=texi2html&r1=1.8&r2=1.9

Patches:
Index: ChangeLog
===================================================================
RCS file: /cvsroot/texi2html/texi2html/ChangeLog,v
retrieving revision 1.459
retrieving revision 1.460
diff -u -b -r1.459 -r1.460
--- ChangeLog   21 Nov 2009 22:56:05 -0000      1.459
+++ ChangeLog   22 Nov 2009 15:27:25 -0000      1.460
@@ -1,3 +1,8 @@
+2009-11-22   Patrice Dumas  <address@hidden>
+
+       * texi2html.init: don't execute commplex format string if it is
+       an empty string.
+
 2009-11-21   Patrice Dumas  <address@hidden>
 
        * texi2html.pl, formats/info.init: add anchors for index entries

Index: texi2html.init
===================================================================
RCS file: /cvsroot/texi2html/texi2html/texi2html.init,v
retrieving revision 1.250
retrieving revision 1.251
diff -u -b -r1.250 -r1.251
--- texi2html.init      15 Nov 2009 23:39:06 -0000      1.250
+++ texi2html.init      22 Nov 2009 15:27:25 -0000      1.251
@@ -13,7 +13,7 @@
 # Afterwards, load the file with command-line 
 # option --init-file <your_init_file>
 #
-# $Id: texi2html.init,v 1.250 2009/11/15 23:39:06 pertusus Exp $
+# $Id: texi2html.init,v 1.251 2009/11/22 15:27:25 pertusus Exp $
 
 ######################################################################
 # The following variables can also be set by command-line options
@@ -5121,19 +5121,26 @@
     my $text = shift;
     return '' if ($text eq '');
     return '' if ($name eq 'direntry');
-    my $beginning = eval "$complex_format_map->{$name}->{'begin'}";
+    my $beginning = '';
+    if ($complex_format_map->{$name}->{'begin'} ne '')
+    {
+        $beginning = eval "$complex_format_map->{$name}->{'begin'}";
     if ($@ ne '')
     {
         main::msg_debug("Evaluation of 
$complex_format_map->{$name}->{'begin'}: $@");
         $beginning = '';
 
     }
-    my $end = eval "$complex_format_map->{$name}->{'end'}";
+    }
+    my $end = '';
+    if ($complex_format_map->{$name}->{'end'} ne '')
+    {
+        $end = eval "$complex_format_map->{$name}->{'end'}";
     if ($@ ne '')
     {
         main::msg_debug("Evaluation of $complex_format_map->{$name}->{'end'}: 
$@");
         $end = '';
-
+        }
     }
     return $beginning . $text . $end;  
 }

Index: po_document/de.us-ascii.po
===================================================================
RCS file: /cvsroot/texi2html/texi2html/po_document/de.us-ascii.po,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -b -r1.8 -r1.9
--- po_document/de.us-ascii.po  17 Nov 2009 14:15:58 -0000      1.8
+++ po_document/de.us-ascii.po  22 Nov 2009 15:27:26 -0000      1.9
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: texi2html 1.83\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-11-17 14:50+0100\n"
+"POT-Creation-Date: 2009-11-22 11:38+0100\n"
 "PO-Revision-Date: 2008-03-19\n"
 "Last-Translator: Reinhold Kainhofer <address@hidden>\n"
 "Language-Team: Unknown\n"
@@ -27,12 +27,12 @@
 msgid "Short Table of Contents"
 msgstr "Kurzes Inhaltsverzeichnis"
 
-#: texi2html.pl:5918 texi2html.pl:5922 texi2html.pl:5926 texi2html.init:6503
+#: texi2html.pl:5918 texi2html.pl:5922 texi2html.pl:5926 texi2html.init:6510
 #: formats/html.init:2478
 msgid "Footnotes"
 msgstr "address@hidden"
 
-#: texi2html.pl:12402
+#: texi2html.pl:12413
 #, perl-brace-format
 msgid "@{No value for `{value}'@}"
 msgstr ""
@@ -237,148 +237,148 @@
 "Dieses Dokument wurde erzeugt durch @uref{{program_homepage}, @emph"
 "{{program}}}."
 
-#: texi2html.init:5185 texi2html.init:5308 formats/html.init:1577
+#: texi2html.init:5192 texi2html.init:5315 formats/html.init:1577
 #: formats/html.init:1675
 #, perl-brace-format
 msgid "{style} {number}"
 msgstr "{style} {number}"
 
-#: texi2html.init:5207 formats/html.init:1591
+#: texi2html.init:5214 formats/html.init:1591
 #, perl-brace-format
 msgid "{style}: {caption_first_line}"
 msgstr "{style}: {caption_first_line}"
 
-#: texi2html.init:5235 formats/html.init:1608
+#: texi2html.init:5242 formats/html.init:1608
 #, perl-brace-format
 msgid "{style}: {shortcaption_first_line}"
 msgstr "{style}: {shortcaption_first_line}"
 
-#: texi2html.init:5540 texi2html.init:5561
+#: texi2html.init:5547 texi2html.init:5568
 #, perl-brace-format
 msgid "{name} on {class}"
 msgstr ""
 
-#: texi2html.init:5544 texi2html.init:5565
+#: texi2html.init:5551 texi2html.init:5572
 #, perl-brace-format
 msgid "{name} of {class}"
 msgstr ""
 
-#: texi2html.init:5868
+#: texi2html.init:5875
 #, 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:5869
+#: texi2html.init:5876
 #, perl-brace-format
 msgid "see {node_file_href} @cite{{book}}"
 msgstr "siehe {node_file_href} @cite{{book}}"
 
-#: texi2html.init:5873
+#: texi2html.init:5880
 #, perl-brace-format
 msgid "see section `{section}' in @cite{{book}}"
 msgstr "siehe Abschnitt `{section}' in @cite{{book}}"
 
-#: texi2html.init:5874
+#: texi2html.init:5881
 #, perl-brace-format
 msgid "see @cite{{book}}"
 msgstr "siehe @cite{{book}}"
 
-#: texi2html.init:5878
+#: texi2html.init:5885
 #, perl-brace-format
 msgid "see {node_file_href}"
 msgstr "siehe {node_file_href}"
 
-#: texi2html.init:5885
+#: texi2html.init:5892
 #, 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:5886
+#: texi2html.init:5893
 #, perl-brace-format
 msgid "See {node_file_href} @cite{{book}}"
 msgstr "Siehe {node_file_href} @cite{{book}}"
 
-#: texi2html.init:5890
+#: texi2html.init:5897
 #, perl-brace-format
 msgid "See section `{section}' in @cite{{book}}"
 msgstr "Siehe Abschnitt `{section}' in @cite{{book}}"
 
-#: texi2html.init:5891
+#: texi2html.init:5898
 #, perl-brace-format
 msgid "See @cite{{book}}"
 msgstr ""
 
-#: texi2html.init:5895
+#: texi2html.init:5902
 #, perl-brace-format
 msgid "See {node_file_href}"
 msgstr "Siehe {node_file_href}"
 
-#: texi2html.init:5902
+#: texi2html.init:5909
 #, perl-brace-format
 msgid "{node_file_href} section `{section}' in @cite{{book}}"
 msgstr "{node_file_href} in Abschnitt `{section}' in @cite{{book}}"
 
-#: texi2html.init:5903
+#: texi2html.init:5910
 #, perl-brace-format
 msgid "{node_file_href} @cite{{book}}"
 msgstr ""
 
-#: texi2html.init:5907
+#: texi2html.init:5914
 #, perl-brace-format
 msgid "section `{section}' in @cite{{book}}"
 msgstr "Abschnitt `{section}' in @cite{{book}}"
 
-#: texi2html.init:5908
+#: texi2html.init:5915
 #, perl-brace-format
 msgid "@cite{{book}}"
 msgstr "@cite{{book}}"
 
-#: texi2html.init:5912
+#: texi2html.init:5919
 #, perl-brace-format
 msgid "{node_file_href}"
 msgstr ""
 
-#: texi2html.init:5947
+#: texi2html.init:5954
 #, perl-brace-format
 msgid "see section {reference_name}"
 msgstr "siehe Abschnitt {reference_name}"
 
-#: texi2html.init:5948 texi2html.init:5965
+#: texi2html.init:5955 texi2html.init:5972
 #, perl-brace-format
 msgid "see {reference_name}"
 msgstr "siehe {reference_name}"
 
-#: texi2html.init:5952
+#: texi2html.init:5959
 #, perl-brace-format
 msgid "See section {reference_name}"
 msgstr ""
 
-#: texi2html.init:5953 texi2html.init:5969
+#: texi2html.init:5960 texi2html.init:5976
 #, perl-brace-format
 msgid "See {reference_name}"
 msgstr ""
 
-#: texi2html.init:5957 texi2html.init:5973
+#: texi2html.init:5964 texi2html.init:5980
 #, perl-brace-format
 msgid "{reference_name}"
 msgstr "{reference_name}"
 
-#: texi2html.init:6591
+#: texi2html.init:6598
 #, perl-brace-format
 msgid "on @emph{{date}}"
 msgstr "am @emph{{date}}"
 
-#: texi2html.init:6768 formats/html.init:2682 maintained_extra/html32.init:170
+#: texi2html.init:6775 formats/html.init:2682 maintained_extra/html32.init:170
 #, perl-brace-format
 msgid "{acronym_like} ({explanation})"
 msgstr "{acronym_like} ({explanation})"
 
-#: texi2html.init:6788 formats/docbook.init:1402
+#: texi2html.init:6795 formats/docbook.init:1402
 #, perl-brace-format
 msgid "@b{{quotation_arg}:} "
 msgstr "@b{{quotation_arg}:} "
 
-#: texi2html.init:6913
+#: texi2html.init:6920
 msgid "(outside of any element)"
 msgstr ""
 

Index: po_document/es.us-ascii.po
===================================================================
RCS file: /cvsroot/texi2html/texi2html/po_document/es.us-ascii.po,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -b -r1.8 -r1.9
--- po_document/es.us-ascii.po  17 Nov 2009 14:15:58 -0000      1.8
+++ po_document/es.us-ascii.po  22 Nov 2009 15:27:26 -0000      1.9
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: texi2html 1.83\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-11-17 14:50+0100\n"
+"POT-Creation-Date: 2009-11-22 11:38+0100\n"
 "PO-Revision-Date: 2008-08-28\n"
 "Last-Translator: Francisco Vila <address@hidden>\n"
 "Language-Team: Unknown\n"
@@ -27,12 +27,12 @@
 msgid "Short Table of Contents"
 msgstr "Resumen del Contenido"
 
-#: texi2html.pl:5918 texi2html.pl:5922 texi2html.pl:5926 texi2html.init:6503
+#: texi2html.pl:5918 texi2html.pl:5922 texi2html.pl:5926 texi2html.init:6510
 #: formats/html.init:2478
 msgid "Footnotes"
 msgstr "Notas el pie"
 
-#: texi2html.pl:12402
+#: texi2html.pl:12413
 #, perl-brace-format
 msgid "@{No value for `{value}'@}"
 msgstr ""
@@ -237,148 +237,148 @@
 "Este documento se gener utilizando @uref{{program_homepage}, @emph"
 "{{program}}}."
 
-#: texi2html.init:5185 texi2html.init:5308 formats/html.init:1577
+#: texi2html.init:5192 texi2html.init:5315 formats/html.init:1577
 #: formats/html.init:1675
 #, perl-brace-format
 msgid "{style} {number}"
 msgstr ""
 
-#: texi2html.init:5207 formats/html.init:1591
+#: texi2html.init:5214 formats/html.init:1591
 #, perl-brace-format
 msgid "{style}: {caption_first_line}"
 msgstr ""
 
-#: texi2html.init:5235 formats/html.init:1608
+#: texi2html.init:5242 formats/html.init:1608
 #, perl-brace-format
 msgid "{style}: {shortcaption_first_line}"
 msgstr ""
 
-#: texi2html.init:5540 texi2html.init:5561
+#: texi2html.init:5547 texi2html.init:5568
 #, perl-brace-format
 msgid "{name} on {class}"
 msgstr "{name} en {class}"
 
-#: texi2html.init:5544 texi2html.init:5565
+#: texi2html.init:5551 texi2html.init:5572
 #, perl-brace-format
 msgid "{name} of {class}"
 msgstr "{name} de {class}"
 
-#: texi2html.init:5868
+#: texi2html.init:5875
 #, 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:5869
+#: texi2html.init:5876
 #, perl-brace-format
 msgid "see {node_file_href} @cite{{book}}"
 msgstr "v@'ease {node_file_href} @cite{{book}}"
 
-#: texi2html.init:5873
+#: texi2html.init:5880
 #, perl-brace-format
 msgid "see section `{section}' in @cite{{book}}"
 msgstr "v@'ease la secci@'on `{section}' en @cite{{book}}"
 
-#: texi2html.init:5874
+#: texi2html.init:5881
 #, perl-brace-format
 msgid "see @cite{{book}}"
 msgstr "v@'ease @cite{{book}}"
 
-#: texi2html.init:5878
+#: texi2html.init:5885
 #, perl-brace-format
 msgid "see {node_file_href}"
 msgstr "v@'ease {node_file_href}"
 
-#: texi2html.init:5885
+#: texi2html.init:5892
 #, 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:5886
+#: texi2html.init:5893
 #, perl-brace-format
 msgid "See {node_file_href} @cite{{book}}"
 msgstr "V@'ease {node_file_href} @cite{{book}}"
 
-#: texi2html.init:5890
+#: texi2html.init:5897
 #, perl-brace-format
 msgid "See section `{section}' in @cite{{book}}"
 msgstr "V@'ease la secci@'on `{section}' en @cite{{book}}"
 
-#: texi2html.init:5891
+#: texi2html.init:5898
 #, perl-brace-format
 msgid "See @cite{{book}}"
 msgstr "V@'ease @cite{{book}}"
 
-#: texi2html.init:5895
+#: texi2html.init:5902
 #, perl-brace-format
 msgid "See {node_file_href}"
 msgstr "V@'ease {node_file_href}"
 
-#: texi2html.init:5902
+#: texi2html.init:5909
 #, perl-brace-format
 msgid "{node_file_href} section `{section}' in @cite{{book}}"
 msgstr "{node_file_href} secci@'on `{section}' en @cite{{book}}"
 
-#: texi2html.init:5903
+#: texi2html.init:5910
 #, perl-brace-format
 msgid "{node_file_href} @cite{{book}}"
 msgstr ""
 
-#: texi2html.init:5907
+#: texi2html.init:5914
 #, perl-brace-format
 msgid "section `{section}' in @cite{{book}}"
 msgstr "secci@'on `{section}' en @cite{{book}}"
 
-#: texi2html.init:5908
+#: texi2html.init:5915
 #, perl-brace-format
 msgid "@cite{{book}}"
 msgstr ""
 
-#: texi2html.init:5912
+#: texi2html.init:5919
 #, perl-brace-format
 msgid "{node_file_href}"
 msgstr ""
 
-#: texi2html.init:5947
+#: texi2html.init:5954
 #, perl-brace-format
 msgid "see section {reference_name}"
 msgstr "v@'ease la secci@'on {reference_name}"
 
-#: texi2html.init:5948 texi2html.init:5965
+#: texi2html.init:5955 texi2html.init:5972
 #, perl-brace-format
 msgid "see {reference_name}"
 msgstr "v@'ease {reference_name}"
 
-#: texi2html.init:5952
+#: texi2html.init:5959
 #, perl-brace-format
 msgid "See section {reference_name}"
 msgstr "V@'ease la secci@'on  {reference_name}"
 
-#: texi2html.init:5953 texi2html.init:5969
+#: texi2html.init:5960 texi2html.init:5976
 #, perl-brace-format
 msgid "See {reference_name}"
 msgstr "V@'ease {reference_name}"
 
-#: texi2html.init:5957 texi2html.init:5973
+#: texi2html.init:5964 texi2html.init:5980
 #, perl-brace-format
 msgid "{reference_name}"
 msgstr ""
 
-#: texi2html.init:6591
+#: texi2html.init:6598
 #, perl-brace-format
 msgid "on @emph{{date}}"
 msgstr "el @emph{{date}}"
 
-#: texi2html.init:6768 formats/html.init:2682 maintained_extra/html32.init:170
+#: texi2html.init:6775 formats/html.init:2682 maintained_extra/html32.init:170
 #, perl-brace-format
 msgid "{acronym_like} ({explanation})"
 msgstr ""
 
-#: texi2html.init:6788 formats/docbook.init:1402
+#: texi2html.init:6795 formats/docbook.init:1402
 #, perl-brace-format
 msgid "@b{{quotation_arg}:} "
 msgstr ""
 
-#: texi2html.init:6913
+#: texi2html.init:6920
 msgid "(outside of any element)"
 msgstr ""
 

Index: po_document/fr.us-ascii.po
===================================================================
RCS file: /cvsroot/texi2html/texi2html/po_document/fr.us-ascii.po,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -b -r1.8 -r1.9
--- po_document/fr.us-ascii.po  17 Nov 2009 14:15:58 -0000      1.8
+++ po_document/fr.us-ascii.po  22 Nov 2009 15:27:26 -0000      1.9
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: texi2html 1.83\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-11-17 14:50+0100\n"
+"POT-Creation-Date: 2009-11-22 11:38+0100\n"
 "PO-Revision-Date: 2008-07-20\n"
 "Last-Translator: Jean-Charles Malahieude <address@hidden>\n"
 "Language-Team: Unknown\n"
@@ -27,12 +27,12 @@
 msgid "Short Table of Contents"
 msgstr "R@'esum@'e du contenu"
 
-#: texi2html.pl:5918 texi2html.pl:5922 texi2html.pl:5926 texi2html.init:6503
+#: texi2html.pl:5918 texi2html.pl:5922 texi2html.pl:5926 texi2html.init:6510
 #: formats/html.init:2478
 msgid "Footnotes"
 msgstr "Notes de bas de page"
 
-#: texi2html.pl:12402
+#: texi2html.pl:12413
 #, perl-brace-format
 msgid "@{No value for `{value}'@}"
 msgstr ""
@@ -237,148 +237,148 @@
 "Ce document a @'et@'e g@'en@'er@'e en utilisant @uref{{program_homepage}, "
 "@emph{{program}}}."
 
-#: texi2html.init:5185 texi2html.init:5308 formats/html.init:1577
+#: texi2html.init:5192 texi2html.init:5315 formats/html.init:1577
 #: formats/html.init:1675
 #, perl-brace-format
 msgid "{style} {number}"
 msgstr ""
 
-#: texi2html.init:5207 formats/html.init:1591
+#: texi2html.init:5214 formats/html.init:1591
 #, perl-brace-format
 msgid "{style}: {caption_first_line}"
 msgstr ""
 
-#: texi2html.init:5235 formats/html.init:1608
+#: texi2html.init:5242 formats/html.init:1608
 #, perl-brace-format
 msgid "{style}: {shortcaption_first_line}"
 msgstr ""
 
-#: texi2html.init:5540 texi2html.init:5561
+#: texi2html.init:5547 texi2html.init:5568
 #, perl-brace-format
 msgid "{name} on {class}"
 msgstr "{name} de {class}"
 
-#: texi2html.init:5544 texi2html.init:5565
+#: texi2html.init:5551 texi2html.init:5572
 #, perl-brace-format
 msgid "{name} of {class}"
 msgstr "{name} de {class}"
 
-#: texi2html.init:5868
+#: texi2html.init:5875
 #, 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:5869
+#: texi2html.init:5876
 #, perl-brace-format
 msgid "see {node_file_href} @cite{{book}}"
 msgstr "voir {node_file_href} @cite{{book}}"
 
-#: texi2html.init:5873
+#: texi2html.init:5880
 #, perl-brace-format
 msgid "see section `{section}' in @cite{{book}}"
 msgstr "voir la section `{section}' dans @cite{{book}}"
 
-#: texi2html.init:5874
+#: texi2html.init:5881
 #, perl-brace-format
 msgid "see @cite{{book}}"
 msgstr "voir @cite{{book}}"
 
-#: texi2html.init:5878
+#: texi2html.init:5885
 #, perl-brace-format
 msgid "see {node_file_href}"
 msgstr "voir {node_file_href}"
 
-#: texi2html.init:5885
+#: texi2html.init:5892
 #, 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:5886
+#: texi2html.init:5893
 #, perl-brace-format
 msgid "See {node_file_href} @cite{{book}}"
 msgstr "Voir {node_file_href} @cite{{book}}"
 
-#: texi2html.init:5890
+#: texi2html.init:5897
 #, perl-brace-format
 msgid "See section `{section}' in @cite{{book}}"
 msgstr "Voir la section `{section}' dans @cite{{book}}"
 
-#: texi2html.init:5891
+#: texi2html.init:5898
 #, perl-brace-format
 msgid "See @cite{{book}}"
 msgstr "Voir @cite{{book}}"
 
-#: texi2html.init:5895
+#: texi2html.init:5902
 #, perl-brace-format
 msgid "See {node_file_href}"
 msgstr "Voir {node_file_href}"
 
-#: texi2html.init:5902
+#: texi2html.init:5909
 #, perl-brace-format
 msgid "{node_file_href} section `{section}' in @cite{{book}}"
 msgstr "{node_file_href} section `{section}' dans @cite{{book}}"
 
-#: texi2html.init:5903
+#: texi2html.init:5910
 #, perl-brace-format
 msgid "{node_file_href} @cite{{book}}"
 msgstr ""
 
-#: texi2html.init:5907
+#: texi2html.init:5914
 #, perl-brace-format
 msgid "section `{section}' in @cite{{book}}"
 msgstr "section `{section}' dans @cite{{book}}"
 
-#: texi2html.init:5908
+#: texi2html.init:5915
 #, perl-brace-format
 msgid "@cite{{book}}"
 msgstr ""
 
-#: texi2html.init:5912
+#: texi2html.init:5919
 #, perl-brace-format
 msgid "{node_file_href}"
 msgstr ""
 
-#: texi2html.init:5947
+#: texi2html.init:5954
 #, perl-brace-format
 msgid "see section {reference_name}"
 msgstr "voir la section {reference_name}"
 
-#: texi2html.init:5948 texi2html.init:5965
+#: texi2html.init:5955 texi2html.init:5972
 #, perl-brace-format
 msgid "see {reference_name}"
 msgstr "voir {reference_name}"
 
-#: texi2html.init:5952
+#: texi2html.init:5959
 #, perl-brace-format
 msgid "See section {reference_name}"
 msgstr "Voir la section {reference_name}"
 
-#: texi2html.init:5953 texi2html.init:5969
+#: texi2html.init:5960 texi2html.init:5976
 #, perl-brace-format
 msgid "See {reference_name}"
 msgstr "Voir {reference_name}"
 
-#: texi2html.init:5957 texi2html.init:5973
+#: texi2html.init:5964 texi2html.init:5980
 #, perl-brace-format
 msgid "{reference_name}"
 msgstr ""
 
-#: texi2html.init:6591
+#: texi2html.init:6598
 #, perl-brace-format
 msgid "on @emph{{date}}"
 msgstr "le @emph{{date}}"
 
-#: texi2html.init:6768 formats/html.init:2682 maintained_extra/html32.init:170
+#: texi2html.init:6775 formats/html.init:2682 maintained_extra/html32.init:170
 #, perl-brace-format
 msgid "{acronym_like} ({explanation})"
 msgstr ""
 
-#: texi2html.init:6788 formats/docbook.init:1402
+#: texi2html.init:6795 formats/docbook.init:1402
 #, perl-brace-format
 msgid "@b{{quotation_arg}:} "
 msgstr ""
 
-#: texi2html.init:6913
+#: texi2html.init:6920
 msgid "(outside of any element)"
 msgstr ""
 

Index: po_document/ja.utf-8.po
===================================================================
RCS file: /cvsroot/texi2html/texi2html/po_document/ja.utf-8.po,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -b -r1.8 -r1.9
--- po_document/ja.utf-8.po     17 Nov 2009 14:15:58 -0000      1.8
+++ po_document/ja.utf-8.po     22 Nov 2009 15:27:26 -0000      1.9
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: texi2html 1.83\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-11-17 14:50+0100\n"
+"POT-Creation-Date: 2009-11-22 11:38+0100\n"
 "PO-Revision-Date: 2007-02-05\n"
 "Last-Translator: Unknown\n"
 "Language-Team: Unknown\n"
@@ -27,12 +27,12 @@
 msgid "Short Table of Contents"
 msgstr "簡略化した目次"
 
-#: texi2html.pl:5918 texi2html.pl:5922 texi2html.pl:5926 texi2html.init:6503
+#: texi2html.pl:5918 texi2html.pl:5922 texi2html.pl:5926 texi2html.init:6510
 #: formats/html.init:2478
 msgid "Footnotes"
 msgstr "脚注"
 
-#: texi2html.pl:12402
+#: texi2html.pl:12413
 #, perl-brace-format
 msgid "@{No value for `{value}'@}"
 msgstr ""
@@ -236,148 +236,148 @@
 msgstr ""
 "address@hidden, @emph{{program}}}を用いて生成されました。"
 
-#: texi2html.init:5185 texi2html.init:5308 formats/html.init:1577
+#: texi2html.init:5192 texi2html.init:5315 formats/html.init:1577
 #: formats/html.init:1675
 #, perl-brace-format
 msgid "{style} {number}"
 msgstr ""
 
-#: texi2html.init:5207 formats/html.init:1591
+#: texi2html.init:5214 formats/html.init:1591
 #, perl-brace-format
 msgid "{style}: {caption_first_line}"
 msgstr ""
 
-#: texi2html.init:5235 formats/html.init:1608
+#: texi2html.init:5242 formats/html.init:1608
 #, perl-brace-format
 msgid "{style}: {shortcaption_first_line}"
 msgstr ""
 
-#: texi2html.init:5540 texi2html.init:5561
+#: texi2html.init:5547 texi2html.init:5568
 #, perl-brace-format
 msgid "{name} on {class}"
 msgstr ""
 
-#: texi2html.init:5544 texi2html.init:5565
+#: texi2html.init:5551 texi2html.init:5572
 #, perl-brace-format
 msgid "{name} of {class}"
 msgstr ""
 
-#: texi2html.init:5868
+#: texi2html.init:5875
 #, perl-brace-format
 msgid "see {node_file_href} section `{section}' in @cite{{book}}"
 msgstr ""
 
-#: texi2html.init:5869
+#: texi2html.init:5876
 #, perl-brace-format
 msgid "see {node_file_href} @cite{{book}}"
 msgstr "{node_file_href} @cite{{book}}参照"
 
-#: texi2html.init:5873
+#: texi2html.init:5880
 #, perl-brace-format
 msgid "see section `{section}' in @cite{{book}}"
 msgstr ""
 
-#: texi2html.init:5874
+#: texi2html.init:5881
 #, perl-brace-format
 msgid "see @cite{{book}}"
 msgstr ""
 
-#: texi2html.init:5878
+#: texi2html.init:5885
 #, perl-brace-format
 msgid "see {node_file_href}"
 msgstr "{node_file_href}参照"
 
-#: texi2html.init:5885
+#: texi2html.init:5892
 #, perl-brace-format
 msgid "See {node_file_href} section `{section}' in @cite{{book}}"
 msgstr ""
 
-#: texi2html.init:5886
+#: texi2html.init:5893
 #, perl-brace-format
 msgid "See {node_file_href} @cite{{book}}"
 msgstr ""
 
-#: texi2html.init:5890
+#: texi2html.init:5897
 #, perl-brace-format
 msgid "See section `{section}' in @cite{{book}}"
 msgstr ""
 
-#: texi2html.init:5891
+#: texi2html.init:5898
 #, perl-brace-format
 msgid "See @cite{{book}}"
 msgstr ""
 
-#: texi2html.init:5895
+#: texi2html.init:5902
 #, perl-brace-format
 msgid "See {node_file_href}"
 msgstr ""
 
-#: texi2html.init:5902
+#: texi2html.init:5909
 #, perl-brace-format
 msgid "{node_file_href} section `{section}' in @cite{{book}}"
 msgstr ""
 
-#: texi2html.init:5903
+#: texi2html.init:5910
 #, perl-brace-format
 msgid "{node_file_href} @cite{{book}}"
 msgstr ""
 
-#: texi2html.init:5907
+#: texi2html.init:5914
 #, perl-brace-format
 msgid "section `{section}' in @cite{{book}}"
 msgstr "@cite{{book}}の `{section}' "
 
-#: texi2html.init:5908
+#: texi2html.init:5915
 #, perl-brace-format
 msgid "@cite{{book}}"
 msgstr ""
 
-#: texi2html.init:5912
+#: texi2html.init:5919
 #, perl-brace-format
 msgid "{node_file_href}"
 msgstr ""
 
-#: texi2html.init:5947
+#: texi2html.init:5954
 #, perl-brace-format
 msgid "see section {reference_name}"
 msgstr ""
 
-#: texi2html.init:5948 texi2html.init:5965
+#: texi2html.init:5955 texi2html.init:5972
 #, perl-brace-format
 msgid "see {reference_name}"
 msgstr ""
 
-#: texi2html.init:5952
+#: texi2html.init:5959
 #, perl-brace-format
 msgid "See section {reference_name}"
 msgstr ""
 
-#: texi2html.init:5953 texi2html.init:5969
+#: texi2html.init:5960 texi2html.init:5976
 #, perl-brace-format
 msgid "See {reference_name}"
 msgstr ""
 
-#: texi2html.init:5957 texi2html.init:5973
+#: texi2html.init:5964 texi2html.init:5980
 #, perl-brace-format
 msgid "{reference_name}"
 msgstr ""
 
-#: texi2html.init:6591
+#: texi2html.init:6598
 #, perl-brace-format
 msgid "on @emph{{date}}"
 msgstr "@emph{{date}}"
 
-#: texi2html.init:6768 formats/html.init:2682 maintained_extra/html32.init:170
+#: texi2html.init:6775 formats/html.init:2682 maintained_extra/html32.init:170
 #, perl-brace-format
 msgid "{acronym_like} ({explanation})"
 msgstr ""
 
-#: texi2html.init:6788 formats/docbook.init:1402
+#: texi2html.init:6795 formats/docbook.init:1402
 #, perl-brace-format
 msgid "@b{{quotation_arg}:} "
 msgstr ""
 
-#: texi2html.init:6913
+#: texi2html.init:6920
 msgid "(outside of any element)"
 msgstr ""
 

Index: po_document/nl.us-ascii.po
===================================================================
RCS file: /cvsroot/texi2html/texi2html/po_document/nl.us-ascii.po,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -b -r1.8 -r1.9
--- po_document/nl.us-ascii.po  17 Nov 2009 14:15:58 -0000      1.8
+++ po_document/nl.us-ascii.po  22 Nov 2009 15:27:27 -0000      1.9
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: texi2html 1.83\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-11-17 14:50+0100\n"
+"POT-Creation-Date: 2009-11-22 11:38+0100\n"
 "PO-Revision-Date: 2001-01-01\n"
 "Last-Translator: Unknown\n"
 "Language-Team: Unknown\n"
@@ -27,12 +27,12 @@
 msgid "Short Table of Contents"
 msgstr "Korte inhoudsopgave"
 
-#: texi2html.pl:5918 texi2html.pl:5922 texi2html.pl:5926 texi2html.init:6503
+#: texi2html.pl:5918 texi2html.pl:5922 texi2html.pl:5926 texi2html.init:6510
 #: formats/html.init:2478
 msgid "Footnotes"
 msgstr "No translation available!"
 
-#: texi2html.pl:12402
+#: texi2html.pl:12413
 #, perl-brace-format
 msgid "@{No value for `{value}'@}"
 msgstr ""
@@ -233,148 +233,148 @@
 "{{program}}}."
 msgstr ""
 
-#: texi2html.init:5185 texi2html.init:5308 formats/html.init:1577
+#: texi2html.init:5192 texi2html.init:5315 formats/html.init:1577
 #: formats/html.init:1675
 #, perl-brace-format
 msgid "{style} {number}"
 msgstr ""
 
-#: texi2html.init:5207 formats/html.init:1591
+#: texi2html.init:5214 formats/html.init:1591
 #, perl-brace-format
 msgid "{style}: {caption_first_line}"
 msgstr ""
 
-#: texi2html.init:5235 formats/html.init:1608
+#: texi2html.init:5242 formats/html.init:1608
 #, perl-brace-format
 msgid "{style}: {shortcaption_first_line}"
 msgstr ""
 
-#: texi2html.init:5540 texi2html.init:5561
+#: texi2html.init:5547 texi2html.init:5568
 #, perl-brace-format
 msgid "{name} on {class}"
 msgstr ""
 
-#: texi2html.init:5544 texi2html.init:5565
+#: texi2html.init:5551 texi2html.init:5572
 #, perl-brace-format
 msgid "{name} of {class}"
 msgstr ""
 
-#: texi2html.init:5868
+#: texi2html.init:5875
 #, perl-brace-format
 msgid "see {node_file_href} section `{section}' in @cite{{book}}"
 msgstr ""
 
-#: texi2html.init:5869
+#: texi2html.init:5876
 #, perl-brace-format
 msgid "see {node_file_href} @cite{{book}}"
 msgstr ""
 
-#: texi2html.init:5873
+#: texi2html.init:5880
 #, perl-brace-format
 msgid "see section `{section}' in @cite{{book}}"
 msgstr ""
 
-#: texi2html.init:5874
+#: texi2html.init:5881
 #, perl-brace-format
 msgid "see @cite{{book}}"
 msgstr ""
 
-#: texi2html.init:5878
+#: texi2html.init:5885
 #, perl-brace-format
 msgid "see {node_file_href}"
 msgstr ""
 
-#: texi2html.init:5885
+#: texi2html.init:5892
 #, perl-brace-format
 msgid "See {node_file_href} section `{section}' in @cite{{book}}"
 msgstr ""
 
-#: texi2html.init:5886
+#: texi2html.init:5893
 #, perl-brace-format
 msgid "See {node_file_href} @cite{{book}}"
 msgstr ""
 
-#: texi2html.init:5890
+#: texi2html.init:5897
 #, perl-brace-format
 msgid "See section `{section}' in @cite{{book}}"
 msgstr ""
 
-#: texi2html.init:5891
+#: texi2html.init:5898
 #, perl-brace-format
 msgid "See @cite{{book}}"
 msgstr ""
 
-#: texi2html.init:5895
+#: texi2html.init:5902
 #, perl-brace-format
 msgid "See {node_file_href}"
 msgstr ""
 
-#: texi2html.init:5902
+#: texi2html.init:5909
 #, perl-brace-format
 msgid "{node_file_href} section `{section}' in @cite{{book}}"
 msgstr ""
 
-#: texi2html.init:5903
+#: texi2html.init:5910
 #, perl-brace-format
 msgid "{node_file_href} @cite{{book}}"
 msgstr ""
 
-#: texi2html.init:5907
+#: texi2html.init:5914
 #, perl-brace-format
 msgid "section `{section}' in @cite{{book}}"
 msgstr ""
 
-#: texi2html.init:5908
+#: texi2html.init:5915
 #, perl-brace-format
 msgid "@cite{{book}}"
 msgstr ""
 
-#: texi2html.init:5912
+#: texi2html.init:5919
 #, perl-brace-format
 msgid "{node_file_href}"
 msgstr ""
 
-#: texi2html.init:5947
+#: texi2html.init:5954
 #, perl-brace-format
 msgid "see section {reference_name}"
 msgstr ""
 
-#: texi2html.init:5948 texi2html.init:5965
+#: texi2html.init:5955 texi2html.init:5972
 #, perl-brace-format
 msgid "see {reference_name}"
 msgstr ""
 
-#: texi2html.init:5952
+#: texi2html.init:5959
 #, perl-brace-format
 msgid "See section {reference_name}"
 msgstr ""
 
-#: texi2html.init:5953 texi2html.init:5969
+#: texi2html.init:5960 texi2html.init:5976
 #, perl-brace-format
 msgid "See {reference_name}"
 msgstr ""
 
-#: texi2html.init:5957 texi2html.init:5973
+#: texi2html.init:5964 texi2html.init:5980
 #, perl-brace-format
 msgid "{reference_name}"
 msgstr ""
 
-#: texi2html.init:6591
+#: texi2html.init:6598
 #, perl-brace-format
 msgid "on @emph{{date}}"
 msgstr ""
 
-#: texi2html.init:6768 formats/html.init:2682 maintained_extra/html32.init:170
+#: texi2html.init:6775 formats/html.init:2682 maintained_extra/html32.init:170
 #, perl-brace-format
 msgid "{acronym_like} ({explanation})"
 msgstr ""
 
-#: texi2html.init:6788 formats/docbook.init:1402
+#: texi2html.init:6795 formats/docbook.init:1402
 #, perl-brace-format
 msgid "@b{{quotation_arg}:} "
 msgstr ""
 
-#: texi2html.init:6913
+#: texi2html.init:6920
 msgid "(outside of any element)"
 msgstr ""
 

Index: po_document/no.us-ascii.po
===================================================================
RCS file: /cvsroot/texi2html/texi2html/po_document/no.us-ascii.po,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -b -r1.8 -r1.9
--- po_document/no.us-ascii.po  17 Nov 2009 14:15:58 -0000      1.8
+++ po_document/no.us-ascii.po  22 Nov 2009 15:27:27 -0000      1.9
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: texi2html 1.83\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-11-17 14:50+0100\n"
+"POT-Creation-Date: 2009-11-22 11:38+0100\n"
 "PO-Revision-Date: 2001-01-01\n"
 "Last-Translator: Unknown\n"
 "Language-Team: Unknown\n"
@@ -27,12 +27,12 @@
 msgid "Short Table of Contents"
 msgstr "Kort innholdsfortegnelse"
 
-#: texi2html.pl:5918 texi2html.pl:5922 texi2html.pl:5926 texi2html.init:6503
+#: texi2html.pl:5918 texi2html.pl:5922 texi2html.pl:5926 texi2html.init:6510
 #: formats/html.init:2478
 msgid "Footnotes"
 msgstr "No translation available!"
 
-#: texi2html.pl:12402
+#: texi2html.pl:12413
 #, perl-brace-format
 msgid "@{No value for `{value}'@}"
 msgstr ""
@@ -233,148 +233,148 @@
 "{{program}}}."
 msgstr ""
 
-#: texi2html.init:5185 texi2html.init:5308 formats/html.init:1577
+#: texi2html.init:5192 texi2html.init:5315 formats/html.init:1577
 #: formats/html.init:1675
 #, perl-brace-format
 msgid "{style} {number}"
 msgstr ""
 
-#: texi2html.init:5207 formats/html.init:1591
+#: texi2html.init:5214 formats/html.init:1591
 #, perl-brace-format
 msgid "{style}: {caption_first_line}"
 msgstr ""
 
-#: texi2html.init:5235 formats/html.init:1608
+#: texi2html.init:5242 formats/html.init:1608
 #, perl-brace-format
 msgid "{style}: {shortcaption_first_line}"
 msgstr ""
 
-#: texi2html.init:5540 texi2html.init:5561
+#: texi2html.init:5547 texi2html.init:5568
 #, perl-brace-format
 msgid "{name} on {class}"
 msgstr ""
 
-#: texi2html.init:5544 texi2html.init:5565
+#: texi2html.init:5551 texi2html.init:5572
 #, perl-brace-format
 msgid "{name} of {class}"
 msgstr ""
 
-#: texi2html.init:5868
+#: texi2html.init:5875
 #, perl-brace-format
 msgid "see {node_file_href} section `{section}' in @cite{{book}}"
 msgstr ""
 
-#: texi2html.init:5869
+#: texi2html.init:5876
 #, perl-brace-format
 msgid "see {node_file_href} @cite{{book}}"
 msgstr ""
 
-#: texi2html.init:5873
+#: texi2html.init:5880
 #, perl-brace-format
 msgid "see section `{section}' in @cite{{book}}"
 msgstr ""
 
-#: texi2html.init:5874
+#: texi2html.init:5881
 #, perl-brace-format
 msgid "see @cite{{book}}"
 msgstr ""
 
-#: texi2html.init:5878
+#: texi2html.init:5885
 #, perl-brace-format
 msgid "see {node_file_href}"
 msgstr ""
 
-#: texi2html.init:5885
+#: texi2html.init:5892
 #, perl-brace-format
 msgid "See {node_file_href} section `{section}' in @cite{{book}}"
 msgstr ""
 
-#: texi2html.init:5886
+#: texi2html.init:5893
 #, perl-brace-format
 msgid "See {node_file_href} @cite{{book}}"
 msgstr ""
 
-#: texi2html.init:5890
+#: texi2html.init:5897
 #, perl-brace-format
 msgid "See section `{section}' in @cite{{book}}"
 msgstr ""
 
-#: texi2html.init:5891
+#: texi2html.init:5898
 #, perl-brace-format
 msgid "See @cite{{book}}"
 msgstr ""
 
-#: texi2html.init:5895
+#: texi2html.init:5902
 #, perl-brace-format
 msgid "See {node_file_href}"
 msgstr ""
 
-#: texi2html.init:5902
+#: texi2html.init:5909
 #, perl-brace-format
 msgid "{node_file_href} section `{section}' in @cite{{book}}"
 msgstr ""
 
-#: texi2html.init:5903
+#: texi2html.init:5910
 #, perl-brace-format
 msgid "{node_file_href} @cite{{book}}"
 msgstr ""
 
-#: texi2html.init:5907
+#: texi2html.init:5914
 #, perl-brace-format
 msgid "section `{section}' in @cite{{book}}"
 msgstr ""
 
-#: texi2html.init:5908
+#: texi2html.init:5915
 #, perl-brace-format
 msgid "@cite{{book}}"
 msgstr ""
 
-#: texi2html.init:5912
+#: texi2html.init:5919
 #, perl-brace-format
 msgid "{node_file_href}"
 msgstr ""
 
-#: texi2html.init:5947
+#: texi2html.init:5954
 #, perl-brace-format
 msgid "see section {reference_name}"
 msgstr ""
 
-#: texi2html.init:5948 texi2html.init:5965
+#: texi2html.init:5955 texi2html.init:5972
 #, perl-brace-format
 msgid "see {reference_name}"
 msgstr ""
 
-#: texi2html.init:5952
+#: texi2html.init:5959
 #, perl-brace-format
 msgid "See section {reference_name}"
 msgstr ""
 
-#: texi2html.init:5953 texi2html.init:5969
+#: texi2html.init:5960 texi2html.init:5976
 #, perl-brace-format
 msgid "See {reference_name}"
 msgstr ""
 
-#: texi2html.init:5957 texi2html.init:5973
+#: texi2html.init:5964 texi2html.init:5980
 #, perl-brace-format
 msgid "{reference_name}"
 msgstr ""
 
-#: texi2html.init:6591
+#: texi2html.init:6598
 #, perl-brace-format
 msgid "on @emph{{date}}"
 msgstr ""
 
-#: texi2html.init:6768 formats/html.init:2682 maintained_extra/html32.init:170
+#: texi2html.init:6775 formats/html.init:2682 maintained_extra/html32.init:170
 #, perl-brace-format
 msgid "{acronym_like} ({explanation})"
 msgstr ""
 
-#: texi2html.init:6788 formats/docbook.init:1402
+#: texi2html.init:6795 formats/docbook.init:1402
 #, perl-brace-format
 msgid "@b{{quotation_arg}:} "
 msgstr ""
 
-#: texi2html.init:6913
+#: texi2html.init:6920
 msgid "(outside of any element)"
 msgstr ""
 

Index: po_document/pt.us-ascii.po
===================================================================
RCS file: /cvsroot/texi2html/texi2html/po_document/pt.us-ascii.po,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -b -r1.8 -r1.9
--- po_document/pt.us-ascii.po  17 Nov 2009 14:15:58 -0000      1.8
+++ po_document/pt.us-ascii.po  22 Nov 2009 15:27:27 -0000      1.9
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: texi2html 1.83\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-11-17 14:50+0100\n"
+"POT-Creation-Date: 2009-11-22 11:38+0100\n"
 "PO-Revision-Date: 2006-01-09\n"
 "Last-Translator: Jorge Barros de Abreu <address@hidden>\n"
 "Language-Team: Unknown\n"
@@ -27,12 +27,12 @@
 msgid "Short Table of Contents"
 msgstr "Breve Sum@'ario"
 
-#: texi2html.pl:5918 texi2html.pl:5922 texi2html.pl:5926 texi2html.init:6503
+#: texi2html.pl:5918 texi2html.pl:5922 texi2html.pl:5926 texi2html.init:6510
 #: formats/html.init:2478
 msgid "Footnotes"
 msgstr "Notas de Rodap@'e"
 
-#: texi2html.pl:12402
+#: texi2html.pl:12413
 #, perl-brace-format
 msgid "@{No value for `{value}'@}"
 msgstr ""
@@ -236,148 +236,148 @@
 msgstr ""
 "Esse documento foi gerado usando @uref{{program_homepage}, @emph{{program}}}."
 
-#: texi2html.init:5185 texi2html.init:5308 formats/html.init:1577
+#: texi2html.init:5192 texi2html.init:5315 formats/html.init:1577
 #: formats/html.init:1675
 #, perl-brace-format
 msgid "{style} {number}"
 msgstr ""
 
-#: texi2html.init:5207 formats/html.init:1591
+#: texi2html.init:5214 formats/html.init:1591
 #, perl-brace-format
 msgid "{style}: {caption_first_line}"
 msgstr ""
 
-#: texi2html.init:5235 formats/html.init:1608
+#: texi2html.init:5242 formats/html.init:1608
 #, perl-brace-format
 msgid "{style}: {shortcaption_first_line}"
 msgstr ""
 
-#: texi2html.init:5540 texi2html.init:5561
+#: texi2html.init:5547 texi2html.init:5568
 #, perl-brace-format
 msgid "{name} on {class}"
 msgstr "{name} na {class}"
 
-#: texi2html.init:5544 texi2html.init:5565
+#: texi2html.init:5551 texi2html.init:5572
 #, perl-brace-format
 msgid "{name} of {class}"
 msgstr "{name} da {class}"
 
-#: texi2html.init:5868
+#: texi2html.init:5875
 #, 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:5869
+#: texi2html.init:5876
 #, perl-brace-format
 msgid "see {node_file_href} @cite{{book}}"
 msgstr "veja {node_file_href} @cite{{book}}"
 
-#: texi2html.init:5873
+#: texi2html.init:5880
 #, perl-brace-format
 msgid "see section `{section}' in @cite{{book}}"
 msgstr "veja se@,address@hidden `{section}' em @cite{{book}}"
 
-#: texi2html.init:5874
+#: texi2html.init:5881
 #, perl-brace-format
 msgid "see @cite{{book}}"
 msgstr "veja @cite{{book}}"
 
-#: texi2html.init:5878
+#: texi2html.init:5885
 #, perl-brace-format
 msgid "see {node_file_href}"
 msgstr "veja {node_file_href}"
 
-#: texi2html.init:5885
+#: texi2html.init:5892
 #, 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:5886
+#: texi2html.init:5893
 #, perl-brace-format
 msgid "See {node_file_href} @cite{{book}}"
 msgstr "Veja {node_file_href} @cite{{book}}"
 
-#: texi2html.init:5890
+#: texi2html.init:5897
 #, perl-brace-format
 msgid "See section `{section}' in @cite{{book}}"
 msgstr "Veja se@,address@hidden `{section}' em @cite{{book}}"
 
-#: texi2html.init:5891
+#: texi2html.init:5898
 #, perl-brace-format
 msgid "See @cite{{book}}"
 msgstr "Veja @cite{{book}}"
 
-#: texi2html.init:5895
+#: texi2html.init:5902
 #, perl-brace-format
 msgid "See {node_file_href}"
 msgstr "Veja {node_file_href}"
 
-#: texi2html.init:5902
+#: texi2html.init:5909
 #, 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:5903
+#: texi2html.init:5910
 #, perl-brace-format
 msgid "{node_file_href} @cite{{book}}"
 msgstr ""
 
-#: texi2html.init:5907
+#: texi2html.init:5914
 #, perl-brace-format
 msgid "section `{section}' in @cite{{book}}"
 msgstr "se@,address@hidden `{section}' em @cite{{book}}"
 
-#: texi2html.init:5908
+#: texi2html.init:5915
 #, perl-brace-format
 msgid "@cite{{book}}"
 msgstr ""
 
-#: texi2html.init:5912
+#: texi2html.init:5919
 #, perl-brace-format
 msgid "{node_file_href}"
 msgstr ""
 
-#: texi2html.init:5947
+#: texi2html.init:5954
 #, perl-brace-format
 msgid "see section {reference_name}"
 msgstr "veja se@,address@hidden {reference_name}"
 
-#: texi2html.init:5948 texi2html.init:5965
+#: texi2html.init:5955 texi2html.init:5972
 #, perl-brace-format
 msgid "see {reference_name}"
 msgstr "veja {reference_name}"
 
-#: texi2html.init:5952
+#: texi2html.init:5959
 #, perl-brace-format
 msgid "See section {reference_name}"
 msgstr "Veja se@,address@hidden {reference_name}"
 
-#: texi2html.init:5953 texi2html.init:5969
+#: texi2html.init:5960 texi2html.init:5976
 #, perl-brace-format
 msgid "See {reference_name}"
 msgstr "Veja {reference_name}"
 
-#: texi2html.init:5957 texi2html.init:5973
+#: texi2html.init:5964 texi2html.init:5980
 #, perl-brace-format
 msgid "{reference_name}"
 msgstr ""
 
-#: texi2html.init:6591
+#: texi2html.init:6598
 #, perl-brace-format
 msgid "on @emph{{date}}"
 msgstr "em @emph{{date}}"
 
-#: texi2html.init:6768 formats/html.init:2682 maintained_extra/html32.init:170
+#: texi2html.init:6775 formats/html.init:2682 maintained_extra/html32.init:170
 #, perl-brace-format
 msgid "{acronym_like} ({explanation})"
 msgstr ""
 
-#: texi2html.init:6788 formats/docbook.init:1402
+#: texi2html.init:6795 formats/docbook.init:1402
 #, perl-brace-format
 msgid "@b{{quotation_arg}:} "
 msgstr ""
 
-#: texi2html.init:6913
+#: texi2html.init:6920
 msgid "(outside of any element)"
 msgstr ""
 

Index: po_document/pt_BR.us-ascii.po
===================================================================
RCS file: /cvsroot/texi2html/texi2html/po_document/pt_BR.us-ascii.po,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -b -r1.8 -r1.9
--- po_document/pt_BR.us-ascii.po       17 Nov 2009 14:15:58 -0000      1.8
+++ po_document/pt_BR.us-ascii.po       22 Nov 2009 15:27:28 -0000      1.9
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: texi2html 1.83\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-11-17 14:50+0100\n"
+"POT-Creation-Date: 2009-11-22 11:38+0100\n"
 "PO-Revision-Date: 2006-01-09\n"
 "Last-Translator: Jorge Barros de Abreu <address@hidden>\n"
 "Language-Team: Unknown\n"
@@ -27,12 +27,12 @@
 msgid "Short Table of Contents"
 msgstr "Breve Sum@'ario"
 
-#: texi2html.pl:5918 texi2html.pl:5922 texi2html.pl:5926 texi2html.init:6503
+#: texi2html.pl:5918 texi2html.pl:5922 texi2html.pl:5926 texi2html.init:6510
 #: formats/html.init:2478
 msgid "Footnotes"
 msgstr "Notas de Rodap@'e"
 
-#: texi2html.pl:12402
+#: texi2html.pl:12413
 #, perl-brace-format
 msgid "@{No value for `{value}'@}"
 msgstr ""
@@ -236,148 +236,148 @@
 msgstr ""
 "Esse documento foi gerado usando @uref{{program_homepage}, @emph{{program}}}."
 
-#: texi2html.init:5185 texi2html.init:5308 formats/html.init:1577
+#: texi2html.init:5192 texi2html.init:5315 formats/html.init:1577
 #: formats/html.init:1675
 #, perl-brace-format
 msgid "{style} {number}"
 msgstr ""
 
-#: texi2html.init:5207 formats/html.init:1591
+#: texi2html.init:5214 formats/html.init:1591
 #, perl-brace-format
 msgid "{style}: {caption_first_line}"
 msgstr ""
 
-#: texi2html.init:5235 formats/html.init:1608
+#: texi2html.init:5242 formats/html.init:1608
 #, perl-brace-format
 msgid "{style}: {shortcaption_first_line}"
 msgstr ""
 
-#: texi2html.init:5540 texi2html.init:5561
+#: texi2html.init:5547 texi2html.init:5568
 #, perl-brace-format
 msgid "{name} on {class}"
 msgstr "{name} na {class}"
 
-#: texi2html.init:5544 texi2html.init:5565
+#: texi2html.init:5551 texi2html.init:5572
 #, perl-brace-format
 msgid "{name} of {class}"
 msgstr "{name} da {class}"
 
-#: texi2html.init:5868
+#: texi2html.init:5875
 #, 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:5869
+#: texi2html.init:5876
 #, perl-brace-format
 msgid "see {node_file_href} @cite{{book}}"
 msgstr "veja {node_file_href} @cite{{book}}"
 
-#: texi2html.init:5873
+#: texi2html.init:5880
 #, perl-brace-format
 msgid "see section `{section}' in @cite{{book}}"
 msgstr "veja se@,address@hidden `{section}' em @cite{{book}}"
 
-#: texi2html.init:5874
+#: texi2html.init:5881
 #, perl-brace-format
 msgid "see @cite{{book}}"
 msgstr "veja @cite{{book}}"
 
-#: texi2html.init:5878
+#: texi2html.init:5885
 #, perl-brace-format
 msgid "see {node_file_href}"
 msgstr "veja {node_file_href}"
 
-#: texi2html.init:5885
+#: texi2html.init:5892
 #, 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:5886
+#: texi2html.init:5893
 #, perl-brace-format
 msgid "See {node_file_href} @cite{{book}}"
 msgstr "Veja {node_file_href} @cite{{book}}"
 
-#: texi2html.init:5890
+#: texi2html.init:5897
 #, perl-brace-format
 msgid "See section `{section}' in @cite{{book}}"
 msgstr "Veja se@,address@hidden `{section}' em @cite{{book}}"
 
-#: texi2html.init:5891
+#: texi2html.init:5898
 #, perl-brace-format
 msgid "See @cite{{book}}"
 msgstr "Veja @cite{{book}}"
 
-#: texi2html.init:5895
+#: texi2html.init:5902
 #, perl-brace-format
 msgid "See {node_file_href}"
 msgstr "Veja {node_file_href}"
 
-#: texi2html.init:5902
+#: texi2html.init:5909
 #, 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:5903
+#: texi2html.init:5910
 #, perl-brace-format
 msgid "{node_file_href} @cite{{book}}"
 msgstr ""
 
-#: texi2html.init:5907
+#: texi2html.init:5914
 #, perl-brace-format
 msgid "section `{section}' in @cite{{book}}"
 msgstr "se@,address@hidden `{section}' em @cite{{book}}"
 
-#: texi2html.init:5908
+#: texi2html.init:5915
 #, perl-brace-format
 msgid "@cite{{book}}"
 msgstr ""
 
-#: texi2html.init:5912
+#: texi2html.init:5919
 #, perl-brace-format
 msgid "{node_file_href}"
 msgstr ""
 
-#: texi2html.init:5947
+#: texi2html.init:5954
 #, perl-brace-format
 msgid "see section {reference_name}"
 msgstr "veja se@,address@hidden {reference_name}"
 
-#: texi2html.init:5948 texi2html.init:5965
+#: texi2html.init:5955 texi2html.init:5972
 #, perl-brace-format
 msgid "see {reference_name}"
 msgstr "veja {reference_name}"
 
-#: texi2html.init:5952
+#: texi2html.init:5959
 #, perl-brace-format
 msgid "See section {reference_name}"
 msgstr "Veja se@,address@hidden {reference_name}"
 
-#: texi2html.init:5953 texi2html.init:5969
+#: texi2html.init:5960 texi2html.init:5976
 #, perl-brace-format
 msgid "See {reference_name}"
 msgstr "Veja {reference_name}"
 
-#: texi2html.init:5957 texi2html.init:5973
+#: texi2html.init:5964 texi2html.init:5980
 #, perl-brace-format
 msgid "{reference_name}"
 msgstr ""
 
-#: texi2html.init:6591
+#: texi2html.init:6598
 #, perl-brace-format
 msgid "on @emph{{date}}"
 msgstr "em @emph{{date}}"
 
-#: texi2html.init:6768 formats/html.init:2682 maintained_extra/html32.init:170
+#: texi2html.init:6775 formats/html.init:2682 maintained_extra/html32.init:170
 #, perl-brace-format
 msgid "{acronym_like} ({explanation})"
 msgstr ""
 
-#: texi2html.init:6788 formats/docbook.init:1402
+#: texi2html.init:6795 formats/docbook.init:1402
 #, perl-brace-format
 msgid "@b{{quotation_arg}:} "
 msgstr ""
 
-#: texi2html.init:6913
+#: texi2html.init:6920
 msgid "(outside of any element)"
 msgstr ""
 




reply via email to

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