summaryrefslogtreecommitdiffstats
path: root/doc/translator.pl
diff options
context:
space:
mode:
authordimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2004-01-05 19:00:26 (GMT)
committerdimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2004-01-05 19:00:26 (GMT)
commit29348f280d674693e74e30ae55ca63ab3b97372e (patch)
tree278be3215f40b4fffddab1ec6dc2b8d47da895ac /doc/translator.pl
parent104be290eb99ab3277906a57fb4673dfa1850bc6 (diff)
downloadDoxygen-29348f280d674693e74e30ae55ca63ab3b97372e.zip
Doxygen-29348f280d674693e74e30ae55ca63ab3b97372e.tar.gz
Doxygen-29348f280d674693e74e30ae55ca63ab3b97372e.tar.bz2
Release-1.3.5-20040105
Diffstat (limited to 'doc/translator.pl')
-rw-r--r--doc/translator.pl16
1 files changed, 15 insertions, 1 deletions
diff --git a/doc/translator.pl b/doc/translator.pl
index d6204c9..89721f7 100644
--- a/doc/translator.pl
+++ b/doc/translator.pl
@@ -122,6 +122,14 @@
# - Changes to display languages with two words more naturally
# (like "Chinese Traditional" instead of "Chinesetraditional"
# or "Brazilian Portuguese" instead of "Brazilian").
+#
+# ATTENTION! Development of this script is stopped. Only the errors
+# are going to be fixed. Look for the translator.py as the replacement.
+#
+# 2003/12/18
+# - Fixed the bug for maintainers with name starting with special
+# character (like &Aacute;).
+# - The &Aacute; translation to LaTeX.
#
################################################################
@@ -648,7 +656,7 @@ xxxTABLE_FOOTxxx
# Join the information for one language into one line,
# and remove empty lines.
#
- $maintainers =~ s{\b\n\b}{<sep/>}sg;
+ $maintainers =~ s{\b\n(\S)}{<sep/>$1}sg;
$maintainers =~ s{\n{2,}}{\n}sg;
$maintainers =~ s{^\n+}{}s;
$maintainers =~ s{\n+$}{}s;
@@ -722,6 +730,11 @@ xxxTABLE_FOOTxxx
}
if ($i == 0) {
+ $i = $status =~ s{^TranslatorAdapter_(\d)_(\d)}
+ {$1.$2}x;
+ }
+
+ if ($i == 0) {
$i = $status =~ s{^TranslatorEnglish$}
{obsolete}x;
}
@@ -831,6 +844,7 @@ xxxTABLE_FOOTxxx
$tableHTML =~ s{&rcaron;}{&#x0159;}sg;
$tableLATEX =~ s/&aacute;/\\'{a}/sg;
+ $tableLATEX =~ s/&Aacute;/\\'{A}/sg;
$tableLATEX =~ s/&auml;/\\"{a}/sg;
$tableLATEX =~ s/&ouml;/\\"{o}/sg;
$tableLATEX =~ s/&oslash;/\\o{}/sg;