I18N: Add Norwegian (Bokmaal) translation (patch #3134466)

svn-id: r54876
This commit is contained in:
Thierry Crozat 2010-12-12 00:24:19 +00:00
parent 3b40695f92
commit 27e7da7340
5 changed files with 2383 additions and 0 deletions

View File

@ -362,6 +362,9 @@ Other contributions
Italian:
Matteo Angelino
Norwegian (Bokmaal):
Einar Johan T. Somaae
Brazilian Portuguese:
ScummBR Team

View File

@ -406,6 +406,9 @@ static const char *credits[] = {
"C1""Italian",
"C0""Matteo Angelino",
"",
"C1""Norwegian (Bokm\345l)",
"C0""Einar Johan T. S\370m\345en",
"",
"C1""Brazilian Portuguese",
"C0""ScummBR Team",
"",

Binary file not shown.

2371
po/nb_NO.po Normal file

File diff suppressed because it is too large Load Diff

View File

@ -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();