2a9aaa80 |
## translation metadata
|
e6e327c1 |
# Revision: $Revision$
|
2a9aaa80 |
# Translation-Priority: 2-medium
# this structure defines the side nav bar for the /about 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 = [
|
966628e3 |
{'url' => 'about/overview',
|
2a9aaa80 |
'txt' => 'Tor Overview',
},
{'url' => 'about/torusers',
'txt' => 'Users of Tor',
},
{'url' => 'about/corepeople',
'txt' => 'Tor People',
'subelements' => [
|
ae30bea6 |
{'url' => 'about/corepeople',
'txt' => 'Core Tor People',
},
|
2a9aaa80 |
{'url' => 'about/board',
'txt' => 'Board of Directors',
|
ae30bea6 |
},
|
2a9aaa80 |
{'url' => 'about/contributors',
'txt' => 'Past Contributors',
}]
},
|
5aa505d4 |
{'url' => 'about/jobs',
'txt' => 'Jobs',
},
|
2a9aaa80 |
{'url' => 'about/sponsors',
'txt' => 'Sponsors',
},
|
54e4c453 |
{'url' => 'about/financials',
'txt' => 'Financial Reports',
},
|
a8d1387d |
{'url' => 'projects/projects',
|
2a9aaa80 |
'txt' => 'Projects',
},
|
05eb4107 |
{'url' => 'docs/documentation',
'txt' => 'Documentation',
|
2a9aaa80 |
},
];
:>
|