From 27e7da73402c2cd75f3ac40a5c2ddd675ad6a923 Mon Sep 17 00:00:00 2001 From: Thierry Crozat Date: Sun, 12 Dec 2010 00:24:19 +0000 Subject: I18N: Add Norwegian (Bokmaal) translation (patch #3134466) svn-id: r54876 --- tools/credits.pl | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'tools/credits.pl') 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(); -- cgit v1.2.3