git.schokokeks.org
Repositories
Help
Report an Issue
tor-webwml.git
Code
Commits
Branches
Tags
Suche
Strukturansicht:
e3b532ec1
Branches
Tags
bridges
docs-debian
jobs
master
press-clips
tor-webwml.git
docs
en
sidenav.wmi
fix a missing quote.
Andrew Lewman
commited
e3b532ec1
at 2011-10-27 18:15:58
sidenav.wmi
Blame
History
Raw
## 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' => 'docs/installguide', 'txt' => 'Installation Guides', 'subelements' => [ {'url' => 'docs/tor-doc-windows', 'txt' => 'Installing on Windows', }, {'url' => 'docs/tor-doc-unix', 'txt' => 'Installing on Linux/BSD/Unix', }, {'url' => 'docs/debian', 'txt' => 'Installing Tor on Debian/Ubuntu', }, {'url' => 'docs/debian-vidalia', 'txt' => 'Installing Vidalia on Debian/Ubuntu', }, {'url' => 'docs/tor-doc-osx', 'txt' => 'Installing Tor on Mac OS X', }, {'url' => 'docs/android', 'txt' => 'Installing Tor on Android', }, {'url' => 'docs/N900', 'txt' => 'Installing Tor on Maemo/N900', }, {'url' => 'docs/verifying-signatures', 'txt' => 'Verify our GPG signatures', }, {'url' => 'docs/tor-doc-web', 'txt' => 'Configuring your browser to use Tor', }], }, {'url' => 'docs/manual', 'txt' => 'Manuals', 'subelements' => [ { 'url' => 'docs/short-user-manual', 'txt' => 'Short User Manual', }, {'url' => 'docs/tor-doc-relay', 'txt' => 'Configuring a Relay', }, {'url' => 'docs/tor-hidden-service', 'txt' => 'Configuring a Hidden Service', }, {'url' => 'docs/bridges', 'txt' => 'Configuring a Bridge Relay', }, {'url' => 'docs/running-a-mirror', 'txt' => 'Configuring a Mirror', }, {'url' => 'docs/tor-manual', 'txt' => 'Tor -stable Manual', }, {'url' => 'docs/tor-manual-dev', 'txt' => 'Tor -alpha Manual', }, {'url' => 'docs/proxychain', 'txt' => 'Configuring Tor to use a Proxy Server', }, {'url' => '<doxygen>', 'txt' => 'Doxygen output from Tor codebase', }] }, { 'url' => '<wiki>', 'txt' => 'Tor Wiki', }, {'url' => 'docs/faq', 'txt' => 'General FAQ', }, {'url' => 'torbutton/torbutton-faq', 'txt' => 'Torbutton FAQ', }, {'url' => 'docs/faq-abuse', 'txt' => 'Abuse FAQ', }, {'url' => 'docs/trademark-faq', 'txt' => 'Trademark FAQ', }, {'url' => 'eff/tor-legal-faq', 'txt' => 'Tor Legal FAQ', }, {'url' => 'eff/tor-dmca-response', 'txt' => 'Tor DMCA Response', }, ]; :>