German translation of sidenav.wmi for donate/ (by Sacro)
Runa A. Sandvik

Runa A. Sandvik commited on 2011-04-16 20:11:48
Zeige 1 geänderte Dateien mit 39 Einfügungen und 0 Löschungen.

... ...
@@ -0,0 +1,39 @@
1
+#!/usr/bin/wml
2
+
3
+## translation metadata
4
+# Revision: $Revision$
5
+# Translation-Priority: 2-medium
6
+
7
+# this structure defines the side nav bar for the /donate 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'  => 'donate/donate',
23
+         'txt'  => 'Geldspenden',
24
+        },
25
+        {'url'  => 'donate/donate-hardware',
26
+         'txt'  => 'Hardware-Spenden',
27
+        },
28
+        {'url'  => 'donate/donate-service',
29
+         'txt'  => 'Dienst-Spenden',
30
+        }, 
31
+        {'url'  => 'donate/matching-program',
32
+         'txt'  => 'Matching-Programm',
33
+        }, 
34
+        {'url'  => 'donate/become-sponsor',
35
+         'txt'  => 'Werde ein Sponsor',
36
+        }, 
37
+    ];
38
+:>
39
+
0 40