File: index.html

package info (click to toggle)
doublecmd-help 1.1.30-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 17,812 kB
  • sloc: makefile: 12
file content (25 lines) | stat: -rw-r--r-- 616 bytes parent folder | download
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
<html>
  <head>
    <script type="text/javascript">
      var userLangs = navigator.languages || [navigator.language || navigator.userLanguage];

      var userLang = userLangs[0].substring(0, 2);

      if (userLang == "ru")
      {
        window.location.replace("doc/ru/index.html");
      }
      else if (userLang == "zh")
      {
        window.location.replace("doc/zh/index.html");
      }
      else
      {
        window.location.replace("doc/en/index.html");
      }
    </script>
    <noscript>
      <meta http-equiv="refresh" content="0; url='doc/en/index.html'" />
    </noscript>
  </head>
</html>