webwml/docs/en/sidenav.wmi
2016-04-16 20:59:23 -04:00

91 lines
2.5 KiB
Plaintext

## translation metadata
# Revision: $Revision$
# Translation-Priority: 2-medium
# this structure defines the side nav bar for the /docs pages
# and is the input for include/side.wmi
# fields:
#
# url - the path to the wml page, as used the the <page> tag. This tag ensures
# that links will point to the current language if supported, and alternately
# the english version
#
# txt - the link text to be displayed. Different translations will
# need to supply alternate txt
<:
my $sidenav;
$sidenav = [
{'url' => 'docs/documentation',
'txt' => 'Documentation Overview',
},
{'url' => 'projects/torbrowser',
'txt' => 'Install Tor Browser',
},
{'url' => 'https://guardianproject.info/apps/orbot/',
'txt' => 'Tor on Android',
},
{'url' => 'projects/projects',
'txt' => 'Other Tor software',
},
{
'url' => 'docs/installguide',
'txt' => 'Expert guides',
'subelements' => [
{'url' => 'docs/debian',
'txt' => 'Installing Tor on Debian/Ubuntu',
},
{'url' => 'docs/rpms',
'txt' => 'Installing Tor on Fedora/CentOS',
},
{'url' => 'docs/tor-doc-unix',
'txt' => 'Installing Tor Source',
},
{'url' => 'docs/tor-doc-osx',
'txt' => 'MacPorts',
},
{'url' => 'docs/tor-relay-debian',
'txt' => 'Configuring a Relay manually',
},
{'url' => 'docs/tor-doc-relay',
'txt' => 'Configuring a Relay graphically',
},
{'url' => 'docs/tor-hidden-service',
'txt' => 'Configuring a Hidden Service',
},
{'url' => 'docs/bridges',
'txt' => 'Understanding bridges',
},
{'url' => 'docs/verifying-signatures',
'txt' => 'Verify package signatures',
}],
},
{'url' => 'docs/manual',
'txt' => 'Manuals',
'subelements' => [
{'url' => 'docs/tor-manual',
'txt' => 'Tor -stable Manual',
},
{'url' => 'docs/tor-manual-dev',
'txt' => 'Tor -alpha Manual',
}],
},
{'url' => '<wiki>',
'txt' => 'Tor Wiki',
},
{'url' => 'docs/faq',
'txt' => 'General FAQ',
},
{'url' => 'docs/faq-abuse',
'txt' => 'Abuse FAQ',
},
{'url' => 'docs/trademark-faq',
'txt' => 'Trademark FAQ',
},
{'url' => 'eff/tor-legal-faq',
'txt' => 'Tor Legal FAQ',
},
];
:>