-
Notifications
You must be signed in to change notification settings - Fork 594
/
activation_code.html
37 lines (34 loc) · 1.21 KB
/
activation_code.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta http-equiv="refresh" content="1; url=en_US/activation_code.html" />
<title>File Centipede Activation Code</title>
<script>
(function(){
var list = ["en_US","zh_CN","zh_TW","ru_RU","ko_KR"];
var lang = navigator.language.replace('-','_');
var name = "en_US";
for(let i=0;i<list.length;++i) {
if(list[i] === lang){
name = list[i];
break;
}
}
window.location = name + "/activation_code.html";
})();
</script>
</head>
<body>
<h1>File Centipede</h1>
<div>
<a href="en_US/activation_code.html"><h2>English</h2></a>
<a href="zh_CN/activation_code.html"><h2>简体中文</h2></a>
<a href="zh_TW/activation_code.html"><h2>繁體中文</h2></a>
<a href="ru_RU/activation_code.html"><h2>Русский</h2></a>
<a href="ko_KR/activation_code.html"><h2>한국어</h2></a>
</div>
</body>
</html>