diff options
author | Thierry Crozat | 2010-12-12 00:24:19 +0000 |
---|---|---|
committer | Thierry Crozat | 2010-12-12 00:24:19 +0000 |
commit | 27e7da73402c2cd75f3ac40a5c2ddd675ad6a923 (patch) | |
tree | a40b7c684ab67dc3da1a7b37f6a20a01d00ac3ec /tools | |
parent | 3b40695f92a9cc09ae37e467309e76f33d752964 (diff) | |
download | scummvm-rg350-27e7da73402c2cd75f3ac40a5c2ddd675ad6a923.tar.gz scummvm-rg350-27e7da73402c2cd75f3ac40a5c2ddd675ad6a923.tar.bz2 scummvm-rg350-27e7da73402c2cd75f3ac40a5c2ddd675ad6a923.zip |
I18N: Add Norwegian (Bokmaal) translation (patch #3134466)
svn-id: r54876
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/credits.pl | 6 |
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(); |