Skip to content

Commit

Permalink
Fixed for Ticket geonetwork#1295
Browse files Browse the repository at this point in the history
Change encoding for login.jsp to utf-8
  • Loading branch information
ianwallen authored and Jesse Eichar committed May 31, 2013
1 parent 0026130 commit 17bffbf
Showing 1 changed file with 26 additions and 26 deletions.
52 changes: 26 additions & 26 deletions web/src/main/webapp/login.jsp
Original file line number Diff line number Diff line change
Expand Up @@ -38,39 +38,39 @@
userLang = "ger";
} else if (userLang.match("^it")) {
userLang = "ita";
} else if (userLang.match("^ca")) {
userLang = "cat";
} else if (userLang.match("^es")) {
userLang = "spa";
} else if (userLang.match("^fi")) {
userLang = "fin";
} else if (userLang.match("^pl")) {
userLang = "pol";
} else if (userLang.match("^no")) {
userLang = "nor";
} else if (userLang.match("^ca")) {
userLang = "cat";
} else if (userLang.match("^es")) {
userLang = "spa";
} else if (userLang.match("^fi")) {
userLang = "fin";
} else if (userLang.match("^pl")) {
userLang = "pol";
} else if (userLang.match("^no")) {
userLang = "nor";
} else if (userLang.match("^nl")) {
userLang = "dut";
} else if (userLang.match("^pt")) {
userLang = "por";
} else if (userLang.match("^ar")) {
userLang = "ara";
} else if (userLang.match("^zh")) {
userLang = "chi";
} else if (userLang.match("^ru")) {
userLang = "rus";
} else if (userLang.match("^tr")) {
userLang = "tur";
} else {
userLang = "eng";
}
userLang = "dut";
} else if (userLang.match("^pt")) {
userLang = "por";
} else if (userLang.match("^ar")) {
userLang = "ara";
} else if (userLang.match("^zh")) {
userLang = "chi";
} else if (userLang.match("^ru")) {
userLang = "rus";
} else if (userLang.match("^tr")) {
userLang = "tur";
} else {
userLang = "eng";
}
window.location="srv/"+userLang+"/login.form"+window.location.search;
}
</script>
</head>
<body onload="init()">
<p>&nbsp;&nbsp;Please wait...</p>
<p>&nbsp;&nbsp;Patientez s'il vous plaît...</p>
<p>&nbsp;&nbsp;Patientez s'il vous plaît...</p>
<p>&nbsp;&nbsp;Bitte warten...</p>
<p>&nbsp;&nbsp;Un momento per favore...</p>

Expand Down

0 comments on commit 17bffbf

Please sign in to comment.