summaryrefslogtreecommitdiff
path: root/website/main.inc.php
blob: 749dbfb8f3e93df1c0b92d90c7d92fdaf46e5d78 (plain)
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
38
39
40
41
42
43
44
45
<?php
/*
 * Copyright 2004 Matt Brubeck
 * This file is licensed under a Creative Commons license:
 * http://creativecommons.org/licenses/by/2.0/
 */

// Work around PHP bug on sf.net where include_path gets reset.
set_include_path(".".PATH_SEPARATOR."/usr/share/pear".PATH_SEPARATOR."/usr/share/php");
require_once "include/lang.inc.php";
localization_setup();

$sitePath = ".";
$sectionId = "none";

$siteNavItems = array(
  array(_("Home"), "", 0),
  array(_("About"), "about/", 
    array(
      array(_("Features"), "features"),
      /*array(_("Screenshots"), "screenshots"),*/
      array(_("News"), "news"),
      array(_("License"), "license"),
      array(_("Credits"), "credits"),
      array(_("Links"), "links"),
    )
  ),
  array(_("Download"), "download/",
    array(
      array(_("OrkAudio Windows"), "windows"),
      array(_("OrkAudio Debian/Ubuntu"), "debian"),
      array(_("OrkWeb/OrkTrack"), "war"),
      array(_("Source Code"), "source"),
      array(_("Release Notes"), "release-notes"),
    )
  ),
  array(_("Support"), "support/",
    array(
      array(_("FAQ"), "faq"),
      array(_("Documentation"), "documentation"),
      array(_("Mailing Lists"), "lists"),
    )
  )
);
?>