aboutsummaryrefslogtreecommitdiff
path: root/tools/credits.pl
diff options
context:
space:
mode:
Diffstat (limited to 'tools/credits.pl')
-rwxr-xr-xtools/credits.pl6
1 files changed, 6 insertions, 0 deletions
diff --git a/tools/credits.pl b/tools/credits.pl
index c37ba29536..5e5f3c2b21 100755
--- a/tools/credits.pl
+++ b/tools/credits.pl
@@ -67,6 +67,7 @@ sub html_entities_to_ascii {
# ö -> o / oe
# ä -> a
# ü -> ue
+ # å -> aa
# & -> &
# ł -> l
# Š -> S
@@ -76,6 +77,7 @@ sub html_entities_to_ascii {
$text =~ s/ø/o/g;
$text =~ s/ł/l/g;
$text =~ s/Š/S/g;
+ $text =~ s/å/aa/g;
$text =~ s/ä/a/g;
$text =~ s/ü/ue/g;
@@ -99,6 +101,7 @@ sub html_entities_to_cpp {
$text =~ s/ø/\\370/g;
$text =~ s/ł/l/g;
$text =~ s/Š/S/g;
+ $text =~ s/å/\\345/g;
$text =~ s/ä/\\344/g;
$text =~ s/ö/\\366/g;
@@ -902,6 +905,9 @@ begin_credits("Credits");
begin_section("Italian");
add_person("Matteo Angelino", "Maff", "");
end_section();
+ begin_section("Norwegian (Bokmål)");
+ add_person("Einar Johan T. Sømåen", "", "");
+ end_section();
begin_section("Brazilian Portuguese");
add_person("ScummBR Team", "", "");
end_section();