diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2004-01-05 19:00:26 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2004-01-05 19:00:26 (GMT) |
commit | 29348f280d674693e74e30ae55ca63ab3b97372e (patch) | |
tree | 278be3215f40b4fffddab1ec6dc2b8d47da895ac /doc/translator.pl | |
parent | 104be290eb99ab3277906a57fb4673dfa1850bc6 (diff) | |
download | Doxygen-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.pl | 16 |
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 Á). +# - The Á 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{ř}{ř}sg; $tableLATEX =~ s/á/\\'{a}/sg; + $tableLATEX =~ s/Á/\\'{A}/sg; $tableLATEX =~ s/ä/\\"{a}/sg; $tableLATEX =~ s/ö/\\"{o}/sg; $tableLATEX =~ s/ø/\\o{}/sg; |