updated the makefile to inc...
Runa A. Sandvik authored 13 years ago
|
1) ## translation metadata
2) # Revision: $Revision: 0 $
3) # Translation-Priority: 2-medium
4)
5) # this structure defines the side nav bar for the /about pages
6) # and is the input for include/side.wmi
7)
8) # fields:
9) #
10) # url - the path to the wml page, as used the the <page> tag. This tag ensures
11) # that links will point to the current language if supported, and alternately
12) # the english version
13) #
14) # txt - the link text to be displayed. Different translations will
15) # need to supply alternate txt
16)
17) <:
18) my $sidenav;
19) $sidenav = [
20) {'url' => 'docs/documentation',
21) 'txt' => 'Documentation Overview',
22) },
23) {
24) 'url' => 'docs/installguide',
25) 'txt' => 'Installation Guides',
26) 'subelements' => [
27) {'url' => 'docs/tor-doc-windows',
28) 'txt' => 'Installing on Windows',
29) },
30) {'url' => 'docs/tor-doc-unix',
31) 'txt' => 'Installing on Linux/BSD/Unix',
32) },
33) {'url' => 'docs/tor-doc-osx',
34) 'txt' => 'Installing on Mac OS X',
35) },
36) {'url' => 'docs/android',
37) 'txt' => 'Installing on Android',
38) },
39) {'url' => 'docs/N900',
40) 'txt' => 'Installing on Maemo/N900',
41) },
42) {'url' => 'docs/verifying-signatures',
43) 'txt' => 'Verify our GPG signatures',
44) },
45) {'url' => 'docs/tor-doc-web',
46) 'txt' => 'Configuring your browser to use Tor',
47) }],
48) },
49) {'url' => 'docs/manual',
50) 'txt' => 'Manuals',
51) 'subelements' => [
52) {'url' => 'docs/tor-doc-relay',
53) 'txt' => 'Configuring a Relay',
54) },
55) {'url' => 'docs/tor-hidden-service',
56) 'txt' => 'Configuring a Hidden Service',
57) },
58) {'url' => 'docs/bridges',
59) 'txt' => 'Configuring a Bridge Relay',
60) },
61) {'url' => 'docs/running-a-mirror',
62) 'txt' => 'Configuring a Mirror',
63) },
|