aboutsummaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorMax Horn2005-05-09 21:21:21 +0000
committerMax Horn2005-05-09 21:21:21 +0000
commit52bbc867979b1453f98191718c3eca726cc9ff8e (patch)
tree4bf1084cc670b2fff715916420c604684fa81135 /tools
parent1c6788797ee3a5f4790ae1e42fa9321478f62c60 (diff)
downloadscummvm-rg350-52bbc867979b1453f98191718c3eca726cc9ff8e.tar.gz
scummvm-rg350-52bbc867979b1453f98191718c3eca726cc9ff8e.tar.bz2
scummvm-rg350-52bbc867979b1453f98191718c3eca726cc9ff8e.zip
Patch #1181544 (AmigaOS 4 changes)
svn-id: r18011
Diffstat (limited to 'tools')
-rwxr-xr-xtools/credits.pl13
1 files changed, 12 insertions, 1 deletions
diff --git a/tools/credits.pl b/tools/credits.pl
index ab6e24ca49..6aa8bb99f1 100755
--- a/tools/credits.pl
+++ b/tools/credits.pl
@@ -61,6 +61,7 @@ sub html_entities_to_ascii {
# é -> e
# ø -> o
# ö -> o / oe
+ # ä -> a
# & -> &
# ł -> l
$text =~ s/á/a/g;
@@ -68,6 +69,8 @@ sub html_entities_to_ascii {
$text =~ s/ø/o/g;
$text =~ s/ł/l/g;
+ $text =~ s/ä/a/g;
+ $text =~ s/ü/u/g;
# HACK: Torbj*o*rn but G*oe*ffringmann and R*oe*ver
$text =~ s/ör/or/g;
$text =~ s/ö/oe/g;
@@ -85,7 +88,10 @@ sub html_entities_to_rtf {
$text =~ s/é/\\'8e/g;
$text =~ s/ø/\\'bf/g;
$text =~ s/ł/\\uc0\\u322 /g;
+
+ $text =~ s/ä/\\'8a/g;
$text =~ s/ö/\\'9a/g;
+ $text =~ s/ü/\\'9f/g;
$text =~ s/&/&/g;
@@ -99,8 +105,11 @@ sub html_entities_to_tex {
$text =~ s/á/\\'a/g;
$text =~ s/é/\\'e/g;
$text =~ s/ø/{\\o}/g;
- $text =~ s/ł/l/g; # TODO
+ $text =~ s/ł/{\\l}/g;
+
+ $text =~ s/ä/\\"a/g;
$text =~ s/ö/\\"o/g;
+ $text =~ s/ü/\\"u/g;
$text =~ s/&/\\&/g;
@@ -329,6 +338,7 @@ begin_credits("Credits");
add_person("Jamieson Christian", "jamieson630", "iMUSE, MIDI, all things musical");
add_person("Jerome Fisher", "KingGuppy", "MT-32 emulator");
add_person("Jochen Hoenicke", "hoenicke", "Speaker & PCjr sound support, Adlib work");
+ add_person("Hans-Jörg Frieden", "", "Port: AmigaOS 4");
end_section();
@@ -363,6 +373,7 @@ begin_credits("Credits");
add_person("Johannes Schickel", "LordHoto", "Thumbnails for ScummEngine");
add_person("André Souza", "", "SDL-based OpenGL renderer");
add_person("Tim ???", "realmz", "Initial MI1 CD music support");
+ add_person("Juha Niemimäki", "", "AmigaOS 4 port maintaining");
end_section();