* finish task #8069.
This commit is contained in:
Vendored
+2
-4
@@ -1,4 +1,2 @@
|
||||
alert('日语是收费功能,需要购买插件安装');
|
||||
$.cookie('lang', 'zh-cn', {expires:config.cookieLife, path:config.webRoot});
|
||||
location.href = location.href;
|
||||
|
||||
var locateLink = config.webRoot + 'tip4japanese.html';
|
||||
if(location.href.indexOf(locateLink) < 0) location.href = locateLink;
|
||||
|
||||
@@ -0,0 +1,40 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang='zh-cn'>
|
||||
<head>
|
||||
<meta charset='utf-8'>
|
||||
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="renderer" content="webkit">
|
||||
<title>グリッド・リサーチ株式会社に完全日本語使用権を取得ください</title>
|
||||
<style>
|
||||
body{margin:0px;}
|
||||
p{margin:0px; margin-bottom:3px;}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div style='width:500px;margin:100px auto; border:1px solid #000; padding:10px;'>
|
||||
<h5 style='margin-top:0px;'>グリッド・リサーチ株式会社に完全日本語使用権を取得ください</h5>
|
||||
<div style='font-size:12px;'>
|
||||
<p>〒104-0041 東京都中央区新富1-15-11 マキプラザ 3階</p>
|
||||
<p>電話:03-3537-9700(代表)</p>
|
||||
<p>MailTo:sales1@grids.co.jp</p>
|
||||
</div>
|
||||
<div style='margin-top:20px; font-size:13px;'>
|
||||
Language :
|
||||
<a style='padding-right:5px;' href="javascript:switchLang('zh-cn')">简体</a>
|
||||
<a style='padding-right:5px;' href="javascript:switchLang('zh-tw')">繁體</a>
|
||||
<a style='padding-right:5px;' href="javascript:switchLang('en')">English</a>
|
||||
<a style='padding-right:5px;' href="javascript:switchLang('de')">Deutsch</a>
|
||||
<a style='padding-right:5px;' href="javascript:switchLang('fr')">Français</a>
|
||||
<a style='padding-right:5px;' href="javascript:switchLang('vi')">Tiếng Việt</a>
|
||||
</div>
|
||||
</div>
|
||||
<script>
|
||||
function switchLang(lang)
|
||||
{
|
||||
document.cookie = "lang=" + lang;
|
||||
location.href = window.location.protocol+"//"+window.location.host;
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user