diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2001-07-15 17:11:26 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2001-07-15 17:11:26 (GMT) |
commit | 5346e18047c0e047db2f1b13dc2c767a73c5c305 (patch) | |
tree | bc5400211360251f121d60efdd50b09f10db11d2 /doc/translator.pl | |
parent | d723d351b1ec59ad9db456f820d59a6e270f21a4 (diff) | |
download | Doxygen-5346e18047c0e047db2f1b13dc2c767a73c5c305.zip Doxygen-5346e18047c0e047db2f1b13dc2c767a73c5c305.tar.gz Doxygen-5346e18047c0e047db2f1b13dc2c767a73c5c305.tar.bz2 |
Release-1.2.8-20010715
Diffstat (limited to 'doc/translator.pl')
-rw-r--r-- | doc/translator.pl | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/doc/translator.pl b/doc/translator.pl index b0bb9e3..9d44686 100644 --- a/doc/translator.pl +++ b/doc/translator.pl @@ -38,6 +38,9 @@ # argument list does not contain argument identifiers # (i.e., when it contains type information only). # +# 2001/06/11 +# - Character entity č recognized in maintainers.txt. +# ################################################################ require 5.005; @@ -566,13 +569,15 @@ xxxTABLE_FOOTxxx $tableLATEX .= $latexTableFoot; $tableHTML =~ s{@}{\@NOSPAM.}sg; + $tableHTML =~ s{č}{č}sg; $tableHTML =~ s{ř}{ř}sg; - $tableLATEX =~ s/ř/\\v{r}/sg; $tableLATEX =~ s/á/\\'{a}/sg; $tableLATEX =~ s/ä/\\"{a}/sg; $tableLATEX =~ s/ö/\\"{o}/sg; $tableLATEX =~ s/ø/\\o{}/sg; + $tableLATEX =~ s/č/\\v{c}/sg; + $tableLATEX =~ s/ř/\\v{r}/sg; $tableLATEX =~ s/_/\\_/sg; my $notice = "\nHave a look at <a href=\"../doc/$ftranslatortxt\"\n>" |