... | ... |
@@ -20,10 +20,7 @@ |
20 | 20 |
my $sidenav; |
21 | 21 |
$sidenav = [ |
22 | 22 |
{'url' => 'press/press', |
23 |
- 'txt' => 'Press Releases', |
|
24 |
- }, |
|
25 |
- {'url' => 'press/inthemedia', |
|
26 |
- 'txt' => 'Tor in the Media', |
|
23 |
+ 'txt' => 'Tor Media and Press', |
|
27 | 24 |
}, |
28 | 25 |
{'url' => 'https://blog.torproject.org/', |
29 | 26 |
'txt' => 'Tor Blog', |
... | ... |
@@ -19,16 +19,13 @@ |
19 | 19 |
<: |
20 | 20 |
my $sidenav; |
21 | 21 |
$sidenav = [ |
22 |
- {'url' => 'press/press', |
|
23 |
- 'txt' => 'Announcements', |
|
24 |
- }, |
|
25 |
- {'url' => 'press/pressreleases', |
|
22 |
+ {'url' => 'press/', |
|
26 | 23 |
'txt' => 'Press Releases', |
27 | 24 |
}, |
28 | 25 |
{'url' => 'press/inthemedia', |
29 | 26 |
'txt' => 'Tor in the Media', |
30 | 27 |
}, |
31 |
- {'url' => 'https://blog.torproject.org', |
|
28 |
+ {'url' => 'https://blog.torproject.org/', |
|
32 | 29 |
'txt' => 'Tor Blog', |
33 | 30 |
}, |
34 | 31 |
]; |
1 | 1 |
new file mode 100644 |
... | ... |
@@ -0,0 +1,35 @@ |
1 |
+#!/usr/bin/wml |
|
2 |
+ |
|
3 |
+## translation metadata |
|
4 |
+# Revision: $Revision: 0 $ |
|
5 |
+# Translation-Priority: 2-medium |
|
6 |
+ |
|
7 |
+# this structure defines the side nav bar for the /about pages |
|
8 |
+# and is the input for include/side.wmi |
|
9 |
+ |
|
10 |
+# fields: |
|
11 |
+# |
|
12 |
+# url - the path to the wml page, as used the the <page> tag. This tag ensures |
|
13 |
+# that links will point to the current language if supported, and alternately |
|
14 |
+# the english version |
|
15 |
+# |
|
16 |
+# txt - the link text to be displayed. Different translations will |
|
17 |
+# need to supply alternate txt |
|
18 |
+ |
|
19 |
+<: |
|
20 |
+ my $sidenav; |
|
21 |
+ $sidenav = [ |
|
22 |
+ {'url' => 'press/press', |
|
23 |
+ 'txt' => 'Announcements', |
|
24 |
+ }, |
|
25 |
+ {'url' => 'press/pressreleases', |
|
26 |
+ 'txt' => 'Press Releases', |
|
27 |
+ }, |
|
28 |
+ {'url' => 'press/inthemedia', |
|
29 |
+ 'txt' => 'Tor in the Media', |
|
30 |
+ }, |
|
31 |
+ {'url' => 'https://blog.torproject.org', |
|
32 |
+ 'txt' => 'Tor Blog', |
|
33 |
+ }, |
|
34 |
+ ]; |
|
35 |
+:> |