2a9aaa80 |
## translation metadata
|
e6e327c1 |
# Revision: $Revision$
|
2a9aaa80 |
# Translation-Priority: 2-medium
|
24c66a74 |
# this structure defines the side nav bar for the /docs pages
|
2a9aaa80 |
# 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
|
fdcf771c |
# the english version
|
2a9aaa80 |
#
# txt - the link text to be displayed. Different translations will
|
fdcf771c |
# need to supply alternate txt
|
2a9aaa80 |
<:
my $sidenav;
$sidenav = [
{'url' => 'docs/documentation',
'txt' => 'Documentation Overview',
|
fdcf771c |
},
|
79e1199f |
{'url' => 'projects/torbrowser',
'txt' => 'Install Tor Browser',
},
{'url' => 'https://guardianproject.info/apps/orbot/',
'txt' => 'Tor on Android',
},
{'url' => 'projects/projects',
'txt' => 'Other Tor software',
},
|
2a9aaa80 |
{
'url' => 'docs/installguide',
|
79e1199f |
'txt' => 'Expert guides',
|
2a9aaa80 |
'subelements' => [
|
41b9624b |
{'url' => '<wiki>TorRelayGuide',
'txt' => 'The Tor Relay Guide',
},
|
03f1bf2c |
{'url' => 'docs/debian',
'txt' => 'Installing Tor on Debian/Ubuntu',
},
|
79e1199f |
{'url' => 'docs/tor-doc-unix',
'txt' => 'Installing Tor Source',
|
2a9aaa80 |
},
|
79e1199f |
{'url' => 'docs/tor-doc-osx',
|
76331607 |
'txt' => 'OSX',
|
a4d00f18 |
},
|
c9be5827 |
{'url' => 'docs/tor-onion-service',
|
32316cbf |
'txt' => 'Configuring an Onion Service',
|
fdcf771c |
},
{'url' => 'docs/bridges',
|
79e1199f |
'txt' => 'Understanding bridges',
|
fdcf771c |
},
|
79e1199f |
{'url' => 'docs/verifying-signatures',
'txt' => 'Verify package signatures',
}],
},
{'url' => 'docs/manual',
'txt' => 'Manuals',
'subelements' => [
|
8a73aee6 |
{'url' => 'docs/tor-manual',
'txt' => 'Tor -stable Manual',
},
|
2a9aaa80 |
{'url' => 'docs/tor-manual-dev',
|
4f4be4ad |
'txt' => 'Tor -alpha Manual',
|
79e1199f |
}],
|
2a9aaa80 |
},
|
79e1199f |
{'url' => '<wiki>',
|
2a9aaa80 |
'txt' => 'Tor Wiki',
|
8cddc472 |
},
|
e4aeb800 |
{'url' => 'docs/faq',
|
fdcf771c |
'txt' => 'General FAQ',
|
f4d76878 |
},
{'url' => 'docs/faq-abuse',
'txt' => 'Abuse FAQ',
},
{'url' => 'docs/trademark-faq',
'txt' => 'Trademark FAQ',
},
{'url' => 'eff/tor-legal-faq',
'txt' => 'Tor Legal FAQ',
},
|
2a9aaa80 |
];
:>
|