diff options
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; |