ede191d695e01c32a4e03572066db5907afc6923
Runa A. Sandvik and commit a bunch of new t...

Runa A. Sandvik authored 13 years ago

1) ## translation metadata
2) # Revision: $Revision$
3) # Translation-Priority: 2-medium
4) 
5) # this structure defines the side nav bar for the /docs pages
6) # and is the input for include/side.wmi
7) 
8) # fields:
9) #
10) # url - the path to the wml page, as used the the <page> tag. This tag ensures
11) # that links will point to the current language if supported, and alternately
12) # the english version 
13) #
14) # txt - the link text to be displayed. Different translations will
15) # need to supply alternate txt 
16) 
17) <:
18)   my $sidenav;
19)   $sidenav = [
20)       {'url'  => 'docs/documentation',
Runa A. Sandvik change docs/de/sidenav.wmi...

Runa A. Sandvik authored 13 years ago

21)        'txt'  => 'Dokumentations Übersicht',
Runa A. Sandvik and commit a bunch of new t...

Runa A. Sandvik authored 13 years ago

22)       }, 
23)       {
24)        'url'  => 'docs/installguide',
25)        'txt'  => 'Installations Anleitung',
26)        'subelements' => [
27)           {'url'  => 'docs/tor-doc-windows',
28)            'txt'  => 'Installation auf Windows',
29)           },
30)           {'url'  => 'docs/tor-doc-unix',
31)            'txt'  => 'Installation auf Linux/BSD/Unix',
32)           },
Runa A. Sandvik updated docs/de/sidenav.wmi...

Runa A. Sandvik authored 12 years ago

33)           {'url'  => 'docs/debian',
34)            'txt'  => 'Installation von Tor auf Debian/Ubuntu',
35)           },
36)           {'url'  => 'docs/debian-vidalia',
37)            'txt'  => 'Installation von Vidalia auf Debian/Ubuntu',
38)           },
Runa A. Sandvik and commit a bunch of new t...

Runa A. Sandvik authored 13 years ago

39)           {'url'  => 'docs/tor-doc-osx',
40)            'txt'  => 'Installation auf Mac OS X',
41)           },
42)           {'url'  => 'docs/android',
43)            'txt'  => 'Installation auf Android',
44)           },
45)           {'url'  => 'docs/N900',
46)            'txt'  => 'Installation auf Maemo/N900',
47)           },
48)           {'url'  => 'docs/verifying-signatures',
Runa A. Sandvik change docs/de/sidenav.wmi...

Runa A. Sandvik authored 13 years ago

49)            'txt'  => 'Überprüfe unsere GPG Signatur',
Runa A. Sandvik and commit a bunch of new t...

Runa A. Sandvik authored 13 years ago

50)           },
51)           {'url'  => 'docs/tor-doc-web',
52)            'txt'  => 'Richte deinen Browser zur Nutzung von Tor ein',
53)           }],
54)       },
55)       {'url'  => 'docs/manual',
Runa A. Sandvik change docs/de/sidenav.wmi...

Runa A. Sandvik authored 13 years ago

56)        'txt'  => 'Handbücher',
Runa A. Sandvik and commit a bunch of new t...

Runa A. Sandvik authored 13 years ago

57)        'subelements' => [
58)           {'url'  => 'docs/tor-doc-relay',
59)            'txt'  => 'Konfiguration eines Relais',
60)           },
61)           {'url'  => 'docs/tor-hidden-service',
62)            'txt'  => 'Konfiguration eines versteckten Dienstes',
63)           }, 
64)           {'url'  => 'docs/bridges',
Runa A. Sandvik change docs/de/sidenav.wmi...

Runa A. Sandvik authored 13 years ago

65)            'txt'  => 'Konfiguration eines Brücken Relais',
Runa A. Sandvik and commit a bunch of new t...

Runa A. Sandvik authored 13 years ago

66)           }, 
67)           {'url'  => 'docs/running-a-mirror',
68)            'txt'  => 'Konfiguration eines Spiegelservers',
69)           },
70)           {'url'  => 'docs/tor-manual',
71)            'txt'  => 'Tor -stable Handbuch',
72)           },
73)           {'url'  => 'docs/tor-manual-dev',
74)            'txt'  => 'Tor -alpha Handbuch',
75)           },
76)           {'url'  => 'docs/proxychain',
Runa A. Sandvik change docs/de/sidenav.wmi...

Runa A. Sandvik authored 13 years ago

77)            'txt'  => 'Konfigurieren von Tor für die Verwendung eines Proxy Servers',
Runa A. Sandvik and commit a bunch of new t...

Runa A. Sandvik authored 13 years ago

78)           }],
79)       },
80)       {
81)        'url'  => '<wiki>',
82)        'txt'  => 'Tor Wiki',
83)       }, 
84)       {'url'  => 'docs/faq',
85)        'txt'  => 'Allgemeine FAQ',  
86)       },
87)       {'url'  => 'torbutton/torbutton-faq',
88)        'txt'  => 'Torbutton FAQ',
89)       },
90)       {'url'  => 'docs/faq-abuse',
91)        'txt'  => 'Missbrauch FAQ',
92)       },
93)       {'url'  => 'docs/trademark-faq',
94)        'txt'  => 'Trademark FAQ',
95)       },
96)       {'url'  => 'eff/tor-legal-faq',
97)        'txt'  => 'Tor rechtliches FAQ',
98)       },
99)       {'url'  => 'eff/tor-dmca-response',
100)        'txt'  => 'Tor DMCA Antwort',
101)       },  
102)   ];
103) :>
104)