Revision 0642b9ee
Von Moritz Bunkus vor fast 17 Jahren hinzugefügt
locale/de/all | ||
---|---|---|
435 | 435 |
'Discount' => 'Rabatt', |
436 | 436 |
'Display' => 'Anzeigen', |
437 | 437 |
'Display file' => 'Datei anzeigen', |
438 |
'Display options' => 'Anzeigeoptionen', |
|
438 | 439 |
'Do you really want to delete this group:' => 'Wollen Sie wirklich diese Gruppe löschen:', |
439 | 440 |
'Do you want Lx-Office to create a group for access to all functions?' => 'Wollen Sie, dass Lx-Office eine Gruppe mit Zugriff auf alle Funktionen anlegt?', |
440 | 441 |
'Do you want to <b>limit</b> your search?' => 'Wollen Sie Ihre Suche <b>spezialisieren</b>?', |
... | ... | |
953 | 954 |
'Payment terms deleted!' => 'Zahlungskonditionen gel?scht!', |
954 | 955 |
'Payments' => 'Zahlungsausg?nge', |
955 | 956 |
'Period' => 'Zeitraum', |
957 |
'Personal settings' => 'Persönliche Einstellungen', |
|
956 | 958 |
'Pg Database Administration' => 'Datenbankadministration', |
957 | 959 |
'Phone' => 'Telefon', |
958 | 960 |
'Phone1' => 'Telefon 1 ', |
... | ... | |
1004 | 1006 |
'Print and Post' => 'Drucken und Buchen', |
1005 | 1007 |
'Print dunnings' => 'Mahnungen drucken', |
1006 | 1008 |
'Print list' => 'Liste ausdrucken', |
1007 |
'Print options' => 'Druckoptionen', |
|
1008 | 1009 |
'Printer' => 'Drucker', |
1009 | 1010 |
'Printer Command' => 'Druckbefehl', |
1010 | 1011 |
'Printer Command missing!' => 'Druckbefehl fehlt', |
templates/webpages/am/config_de.html | ||
---|---|---|
1 |
[% USE HTML %]<body> |
|
1 |
[% USE HTML %]<body onLoad="fokus()">
|
|
2 | 2 |
|
3 | 3 |
<div class="listtop">[% title %]</div> |
4 | 4 |
|
5 |
<form method="post" action="am.pl"name="Form"> |
|
5 |
<form method="post" action="am.pl" name="Form" onKeyUp="highlight(event)" onClick="highlight(event)"> |
|
6 |
|
|
7 |
<ul id="maintab" class="shadetabs"> |
|
8 |
<li class="selected"><a href="#" rel="page_personal_settings">Persönliche Einstellungen</a></li> |
|
9 |
<li><a href="#" rel="page_display_options">Anzeigeoptionen</a></li> |
|
10 |
<li><a href="#" rel="page_print_options">Print options</a></li> |
|
11 |
</ul> |
|
6 | 12 |
|
7 | 13 |
<input type="hidden" name="type" value="preferences"> |
8 | 14 |
<input type="hidden" name="role" value="[% HTML.escape(myconfig_role) %]"> |
9 | 15 |
|
10 |
<p> |
|
11 |
<table> |
|
12 |
<tr> |
|
13 |
<th align="right">Name</th> |
|
14 |
<td><input name="name" size="15" value="[% HTML.escape(myconfig_name) %]"></td> |
|
15 |
</tr> |
|
16 |
|
|
17 |
<tr> |
|
18 |
<th align="right">Passwort</th> |
|
19 |
<td> |
|
20 |
[%- IF CAN_CHANGE_PASSWORD %] |
|
21 |
<input type="password" name="new_password" size="10" value="********"> |
|
22 |
[%- ELSE %] |
|
23 |
<input type="hidden" name="new_password" value="********"> |
|
24 |
[%- END %] |
|
25 |
</td> |
|
26 |
</tr> |
|
27 |
|
|
28 |
<tr> |
|
29 |
<th align="right">eMail</th> |
|
30 |
<td><input name="email" size="30" value="[% HTML.escape(myconfig_email) %]"></td> |
|
31 |
</tr> |
|
32 |
|
|
33 |
<tr valign="top"> |
|
34 |
<th align="right">Unterschrift</th> |
|
35 |
<td><textarea name="signature" rows="3" cols="50">[% HTML.escape(myconfig_signature) %]</textarea></td> |
|
36 |
</tr> |
|
37 |
|
|
38 |
<tr> |
|
39 |
<th align="right">Telefon</th> |
|
40 |
<td><input name="tel" size="14" value="[% HTML.escape(myconfig_tel) %]"></td> |
|
41 |
</tr> |
|
42 |
|
|
43 |
<tr> |
|
44 |
<th align="right">Fax</th> |
|
45 |
<td><input name="fax" size="14" value="[% HTML.escape(myconfig_fax) %]"></td> |
|
46 |
</tr> |
|
47 |
<tr> |
|
48 |
<th align="right">Firma</th> |
|
49 |
<td><input name="company" size="30" value="[% HTML.escape(myconfig_company) %]"></td> |
|
50 |
</tr> |
|
51 |
<tr valign="top"> |
|
52 |
<th align="right">Adresse</th> |
|
53 |
<td><textarea name="address" rows="4" cols="50">[% HTML.escape(myconfig_address) %]</textarea></td> |
|
54 |
</tr> |
|
55 |
<tr> |
|
56 |
<th align="right">Datumsformat</th> |
|
57 |
<td> |
|
58 |
<select name="dateformat"> |
|
59 |
[%- FOREACH row = DATEFORMATS %] |
|
60 |
<option value="[% HTML.escape(row.value) %]"[% IF row.selected %] selected[% END %]>[% HTML.escape(row.name) %]</option> |
|
61 |
[%- END %] |
|
62 |
</select> |
|
63 |
</td> |
|
64 |
</tr> |
|
65 |
<tr> |
|
66 |
<th align="right">Zahlenformat (Ausgabe)</th> |
|
67 |
<td> |
|
68 |
<select name="numberformat"> |
|
69 |
[%- FOREACH row = NUMBERFORMATS %] |
|
70 |
<option value="[% HTML.escape(row.value) %]"[% IF row.selected %] selected[% END %]>[% HTML.escape(row.name) %]</option> |
|
71 |
[%- END %] |
|
72 |
</select> |
|
73 |
</td> |
|
74 |
</tr> |
|
75 |
|
|
76 |
<tr> |
|
77 |
<th align="right">Auswahllistenbegrenzung</th> |
|
78 |
<td><input name="vclimit" size="10" value="[% HTML.escape(myconfig_vclimit) %]"></td> |
|
79 |
</tr> |
|
80 |
|
|
81 |
<tr> |
|
82 |
<th align="right">Sprache</th> |
|
83 |
<td> |
|
84 |
<select name="countrycode"> |
|
85 |
[%- FOREACH row = COUNTRYCODES %] |
|
86 |
<option value="[% HTML.escape(row.value) %]"[% IF row.selected %] selected[% END %]>[% HTML.escape(row.name) %]</option> |
|
87 |
[%- END %] |
|
88 |
</select> |
|
89 |
</td> |
|
90 |
</tr> |
|
91 |
|
|
92 |
<tr> |
|
93 |
<th align="right">Stilvorlage</th> |
|
94 |
<td> |
|
95 |
<select name="usestylesheet"> |
|
96 |
[%- FOREACH row = STYLESHEETS %] |
|
97 |
<option value="[% HTML.escape(row.value) %]"[% IF row.selected %] selected[% END %]>[% HTML.escape(row.name) %]</option> |
|
98 |
[%- END %] |
|
99 |
</select> |
|
100 |
</td> |
|
101 |
</tr> |
|
102 |
|
|
103 |
<tr> |
|
104 |
<th align="right">Men?setup</th> |
|
105 |
<td> |
|
106 |
<input name="menustyle" id="menustyle_v3" type="radio" class="radio" value="v3" [% IF menustyle_v3 %]checked[% END %]> |
|
107 |
<label for="menustyle_v3">Oben (mit CSS)</label> |
|
108 |
<input name="menustyle" id="menustyle_neu" type="radio" class="radio" value="neu" [% IF menustyle_neu %]checked[% END %]> |
|
109 |
<label for="menustyle_neu">Oben (mit Javascript)</label> |
|
110 |
<input name="menustyle" id="menustyle_old" type="radio" class="radio" value="old" [% IF menustyle_old %]checked[% END %]> |
|
111 |
<label for="menustyle_old">Alt (seitlich)</label> |
|
112 |
<input name="menustyle" id="menustyle_xml" type="radio" class="radio" value="xml" [% IF menustyle_xml %]checked[% END %]> |
|
113 |
<label for="menustyle_xml">XML (XUL,...)</label> |
|
114 |
</td> |
|
115 |
</tr> |
|
116 |
|
|
117 |
<tr valign="top"> |
|
118 |
<th align="right">Favoriten</th> |
|
119 |
<td><textarea name="favorites" rows="4" cols="50">[% HTML.escape(myconfig_favorites) %]</textarea></td> |
|
120 |
</tr> |
|
121 |
|
|
122 |
<tr> |
|
123 |
<th align="right">Formulardetails (zweite Positionszeile)</th> |
|
124 |
<td> |
|
125 |
<input type="radio" id="rad_show_form_details" name="show_form_details" value="1" [% IF myconfig_show_form_details %]checked[% END %]> |
|
126 |
<label for="rad_show_form_details">Standardmäßig anzeigen</label> |
|
127 |
<input type="radio" id="rad_hide_form_details" name="show_form_details" value="0" [% UNLESS myconfig_show_form_details %]checked[% END %]> |
|
128 |
<label for="rad_hide_form_details">Standardmäßig verstecken</label></td> |
|
129 |
</tr> |
|
130 |
|
|
131 |
<input name="printer" type="hidden" value="[% HTML.escape(myconfig_printer) %]"> |
|
132 |
<tr class="listheading"> |
|
133 |
<th colspan="2">Druckoptionen</th> |
|
134 |
</tr> |
|
135 |
|
|
136 |
<tr> |
|
137 |
<th align="right">Standardvorlagenformat</th> |
|
138 |
<td> |
|
139 |
<select name="template_format"> |
|
140 |
[%- FOREACH row = TEMPLATE_FORMATS %] |
|
141 |
<option value="[% HTML.escape(row.value) %]"[% IF row.selected %] selected[% END %]>[% HTML.escape(row.name) %]</option> |
|
142 |
[%- END %] |
|
143 |
</select> |
|
144 |
</td> |
|
145 |
</tr> |
|
146 |
|
|
147 |
<tr> |
|
148 |
<th align="right">Standardausgabekanal</th> |
|
149 |
<td> |
|
150 |
<select name="default_media"> |
|
151 |
[%- FOREACH row = MEDIA %] |
|
152 |
<option value="[% HTML.escape(row.value) %]"[% IF row.selected %] selected[% END %]>[% HTML.escape(row.name) %]</option> |
|
153 |
[%- END %] |
|
154 |
</select> |
|
155 |
</td> |
|
156 |
</tr> |
|
157 |
|
|
158 |
<tr> |
|
159 |
<th align="right">Standarddrucker</th> |
|
160 |
<td> |
|
161 |
<select name="default_printer_id"> |
|
162 |
[%- FOREACH row = PRINTERS %] |
|
163 |
<option value="[% HTML.escape(row.value) %]"[% IF row.selected %] selected[% END %]>[% HTML.escape(row.name) %]</option> |
|
164 |
[%- END %] |
|
165 |
</select> |
|
166 |
</td> |
|
167 |
</tr> |
|
16 |
<div class="tabcontentstyle"> |
|
168 | 17 |
|
169 |
<tr> |
|
170 |
<th align="right">Anzahl Kopien</th> |
|
171 |
<td><input name="copies" size="10" value="[% HTML.escape(myconfig_copies) %]"></td> |
|
172 |
</tr> |
|
173 |
</table> |
|
174 |
</p> |
|
18 |
<div id="page_personal_settings" class="tabcontent"> |
|
175 | 19 |
|
176 |
<hr height="3" noshade> |
|
20 |
<table> |
|
21 |
<tr> |
|
22 |
<th align="right">Name</th> |
|
23 |
<td><input name="name" size="15" value="[% HTML.escape(myconfig_name) %]"></td> |
|
24 |
</tr> |
|
25 |
|
|
26 |
<tr> |
|
27 |
<th align="right">Passwort</th> |
|
28 |
<td> |
|
29 |
[%- IF CAN_CHANGE_PASSWORD %] |
|
30 |
<input type="password" name="new_password" size="10" value="********"> |
|
31 |
[%- ELSE %] |
|
32 |
<input type="hidden" name="new_password" value="********"> |
|
33 |
[%- END %] |
|
34 |
</td> |
|
35 |
</tr> |
|
36 |
|
|
37 |
<tr> |
|
38 |
<th align="right">eMail</th> |
|
39 |
<td><input name="email" size="30" value="[% HTML.escape(myconfig_email) %]"></td> |
|
40 |
</tr> |
|
41 |
|
|
42 |
<tr valign="top"> |
|
43 |
<th align="right">Unterschrift</th> |
|
44 |
<td><textarea name="signature" rows="3" cols="50">[% HTML.escape(myconfig_signature) %]</textarea></td> |
|
45 |
</tr> |
|
46 |
|
|
47 |
<tr> |
|
48 |
<th align="right">Telefon</th> |
|
49 |
<td><input name="tel" size="14" value="[% HTML.escape(myconfig_tel) %]"></td> |
|
50 |
</tr> |
|
51 |
|
|
52 |
<tr> |
|
53 |
<th align="right">Fax</th> |
|
54 |
<td><input name="fax" size="14" value="[% HTML.escape(myconfig_fax) %]"></td> |
|
55 |
</tr> |
|
56 |
<tr> |
|
57 |
<th align="right">Firma</th> |
|
58 |
<td><input name="company" size="30" value="[% HTML.escape(myconfig_company) %]"></td> |
|
59 |
</tr> |
|
60 |
<tr valign="top"> |
|
61 |
<th align="right">Adresse</th> |
|
62 |
<td><textarea name="address" rows="4" cols="50">[% HTML.escape(myconfig_address) %]</textarea></td> |
|
63 |
</tr> |
|
64 |
</table> |
|
65 |
|
|
66 |
<br style="clear: left" /> |
|
67 |
</div> |
|
68 |
|
|
69 |
<div id="page_display_options" class="tabcontent"> |
|
70 |
|
|
71 |
<table> |
|
72 |
<tr> |
|
73 |
<th align="right">Datumsformat</th> |
|
74 |
<td> |
|
75 |
<select name="dateformat"> |
|
76 |
[%- FOREACH row = DATEFORMATS %] |
|
77 |
<option value="[% HTML.escape(row.value) %]"[% IF row.selected %] selected[% END %]>[% HTML.escape(row.name) %]</option> |
|
78 |
[%- END %] |
|
79 |
</select> |
|
80 |
</td> |
|
81 |
</tr> |
|
82 |
<tr> |
|
83 |
<th align="right">Zahlenformat (Ausgabe)</th> |
|
84 |
<td> |
|
85 |
<select name="numberformat"> |
|
86 |
[%- FOREACH row = NUMBERFORMATS %] |
|
87 |
<option value="[% HTML.escape(row.value) %]"[% IF row.selected %] selected[% END %]>[% HTML.escape(row.name) %]</option> |
|
88 |
[%- END %] |
|
89 |
</select> |
|
90 |
</td> |
|
91 |
</tr> |
|
92 |
|
|
93 |
<tr> |
|
94 |
<th align="right">Auswahllistenbegrenzung</th> |
|
95 |
<td><input name="vclimit" size="10" value="[% HTML.escape(myconfig_vclimit) %]"></td> |
|
96 |
</tr> |
|
97 |
|
|
98 |
<tr> |
|
99 |
<th align="right">Sprache</th> |
|
100 |
<td> |
|
101 |
<select name="countrycode"> |
|
102 |
[%- FOREACH row = COUNTRYCODES %] |
|
103 |
<option value="[% HTML.escape(row.value) %]"[% IF row.selected %] selected[% END %]>[% HTML.escape(row.name) %]</option> |
|
104 |
[%- END %] |
|
105 |
</select> |
|
106 |
</td> |
|
107 |
</tr> |
|
108 |
|
|
109 |
<tr> |
|
110 |
<th align="right">Stilvorlage</th> |
|
111 |
<td> |
|
112 |
<select name="usestylesheet"> |
|
113 |
[%- FOREACH row = STYLESHEETS %] |
|
114 |
<option value="[% HTML.escape(row.value) %]"[% IF row.selected %] selected[% END %]>[% HTML.escape(row.name) %]</option> |
|
115 |
[%- END %] |
|
116 |
</select> |
|
117 |
</td> |
|
118 |
</tr> |
|
119 |
|
|
120 |
<tr> |
|
121 |
<th align="right">Men?setup</th> |
|
122 |
<td> |
|
123 |
<input name="menustyle" id="menustyle_v3" type="radio" class="radio" value="v3" [% IF menustyle_v3 %]checked[% END %]> |
|
124 |
<label for="menustyle_v3">Oben (mit CSS)</label> |
|
125 |
<input name="menustyle" id="menustyle_neu" type="radio" class="radio" value="neu" [% IF menustyle_neu %]checked[% END %]> |
|
126 |
<label for="menustyle_neu">Oben (mit Javascript)</label> |
|
127 |
<input name="menustyle" id="menustyle_old" type="radio" class="radio" value="old" [% IF menustyle_old %]checked[% END %]> |
|
128 |
<label for="menustyle_old">Alt (seitlich)</label> |
|
129 |
<input name="menustyle" id="menustyle_xml" type="radio" class="radio" value="xml" [% IF menustyle_xml %]checked[% END %]> |
|
130 |
<label for="menustyle_xml">XML (XUL,...)</label> |
|
131 |
</td> |
|
132 |
</tr> |
|
133 |
|
|
134 |
<tr valign="top"> |
|
135 |
<th align="right">Favoriten</th> |
|
136 |
<td><textarea name="favorites" rows="4" cols="50">[% HTML.escape(myconfig_favorites) %]</textarea></td> |
|
137 |
</tr> |
|
138 |
|
|
139 |
<tr> |
|
140 |
<th align="right">Formulardetails (zweite Positionszeile)</th> |
|
141 |
<td> |
|
142 |
<input type="radio" id="rad_show_form_details" name="show_form_details" value="1" [% IF myconfig_show_form_details %]checked[% END %]> |
|
143 |
<label for="rad_show_form_details">Standardmäßig anzeigen</label> |
|
144 |
<input type="radio" id="rad_hide_form_details" name="show_form_details" value="0" [% UNLESS myconfig_show_form_details %]checked[% END %]> |
|
145 |
<label for="rad_hide_form_details">Standardmäßig verstecken</label></td> |
|
146 |
</tr> |
|
147 |
</table> |
|
148 |
|
|
149 |
<br style="clear: left" /> |
|
150 |
</div> |
|
151 |
|
|
152 |
<div id="page_print_options" class="tabcontent"> |
|
153 |
|
|
154 |
<table> |
|
155 |
<input name="printer" type="hidden" value="[% HTML.escape(myconfig_printer) %]"> |
|
156 |
|
|
157 |
<tr> |
|
158 |
<th align="right">Standardvorlagenformat</th> |
|
159 |
<td> |
|
160 |
<select name="template_format"> |
|
161 |
[%- FOREACH row = TEMPLATE_FORMATS %] |
|
162 |
<option value="[% HTML.escape(row.value) %]"[% IF row.selected %] selected[% END %]>[% HTML.escape(row.name) %]</option> |
|
163 |
[%- END %] |
|
164 |
</select> |
|
165 |
</td> |
|
166 |
</tr> |
|
167 |
|
|
168 |
<tr> |
|
169 |
<th align="right">Standardausgabekanal</th> |
|
170 |
<td> |
|
171 |
<select name="default_media"> |
|
172 |
[%- FOREACH row = MEDIA %] |
|
173 |
<option value="[% HTML.escape(row.value) %]"[% IF row.selected %] selected[% END %]>[% HTML.escape(row.name) %]</option> |
|
174 |
[%- END %] |
|
175 |
</select> |
|
176 |
</td> |
|
177 |
</tr> |
|
178 |
|
|
179 |
<tr> |
|
180 |
<th align="right">Standarddrucker</th> |
|
181 |
<td> |
|
182 |
<select name="default_printer_id"> |
|
183 |
[%- FOREACH row = PRINTERS %] |
|
184 |
<option value="[% HTML.escape(row.value) %]"[% IF row.selected %] selected[% END %]>[% HTML.escape(row.name) %]</option> |
|
185 |
[%- END %] |
|
186 |
</select> |
|
187 |
</td> |
|
188 |
</tr> |
|
189 |
|
|
190 |
<tr> |
|
191 |
<th align="right">Anzahl Kopien</th> |
|
192 |
<td><input name="copies" size="10" value="[% HTML.escape(myconfig_copies) %]"></td> |
|
193 |
</tr> |
|
194 |
</table> |
|
195 |
|
|
196 |
<br style="clear: left" /> |
|
197 |
</div> |
|
198 |
</div> |
|
177 | 199 |
|
178 | 200 |
<p><input type="submit" class="submit" name="action" value="Speichern"></p> |
179 | 201 |
</form> |
180 | 202 |
|
203 |
<script type="text/javascript"> |
|
204 |
<!-- |
|
205 |
//Start Tab Content script for UL with id="maintab" Separate multiple ids each with a comma. |
|
206 |
initializetabcontent("maintab"); |
|
207 |
--> |
|
208 |
</script> |
|
209 |
|
|
181 | 210 |
</body> |
182 | 211 |
</html> |
templates/webpages/am/config_master.html | ||
---|---|---|
1 |
[% USE HTML %]<body> |
|
1 |
[% USE HTML %]<body onLoad="fokus()">
|
|
2 | 2 |
|
3 | 3 |
<div class="listtop">[% title %]</div> |
4 | 4 |
|
5 |
<form method="post" action="am.pl"name="Form"> |
|
5 |
<form method="post" action="am.pl" name="Form" onKeyUp="highlight(event)" onClick="highlight(event)"> |
|
6 |
|
|
7 |
<ul id="maintab" class="shadetabs"> |
|
8 |
<li class="selected"><a href="#" rel="page_personal_settings"><translate>Personal settings</translate></a></li> |
|
9 |
<li><a href="#" rel="page_display_options"><translate>Display options</translate></a></li> |
|
10 |
<li><a href="#" rel="page_print_options">Print options</a></li> |
|
11 |
</ul> |
|
6 | 12 |
|
7 | 13 |
<input type="hidden" name="type" value="preferences"> |
8 | 14 |
<input type="hidden" name="role" value="[% HTML.escape(myconfig_role) %]"> |
9 | 15 |
|
10 |
<p> |
|
11 |
<table> |
|
12 |
<tr> |
|
13 |
<th align="right"><translate>Name</translate></th> |
|
14 |
<td><input name="name" size="15" value="[% HTML.escape(myconfig_name) %]"></td> |
|
15 |
</tr> |
|
16 |
|
|
17 |
<tr> |
|
18 |
<th align="right"><translate>Password</translate></th> |
|
19 |
<td> |
|
20 |
[%- IF CAN_CHANGE_PASSWORD %] |
|
21 |
<input type="password" name="new_password" size="10" value="********"> |
|
22 |
[%- ELSE %] |
|
23 |
<input type="hidden" name="new_password" value="********"> |
|
24 |
[%- END %] |
|
25 |
</td> |
|
26 |
</tr> |
|
27 |
|
|
28 |
<tr> |
|
29 |
<th align="right"><translate>E-mail</translate></th> |
|
30 |
<td><input name="email" size="30" value="[% HTML.escape(myconfig_email) %]"></td> |
|
31 |
</tr> |
|
32 |
|
|
33 |
<tr valign="top"> |
|
34 |
<th align="right"><translate>Signature</translate></th> |
|
35 |
<td><textarea name="signature" rows="3" cols="50">[% HTML.escape(myconfig_signature) %]</textarea></td> |
|
36 |
</tr> |
|
37 |
|
|
38 |
<tr> |
|
39 |
<th align="right"><translate>Phone</translate></th> |
|
40 |
<td><input name="tel" size="14" value="[% HTML.escape(myconfig_tel) %]"></td> |
|
41 |
</tr> |
|
42 |
|
|
43 |
<tr> |
|
44 |
<th align="right"><translate>Fax</translate></th> |
|
45 |
<td><input name="fax" size="14" value="[% HTML.escape(myconfig_fax) %]"></td> |
|
46 |
</tr> |
|
47 |
<tr> |
|
48 |
<th align="right"><translate>Company</translate></th> |
|
49 |
<td><input name="company" size="30" value="[% HTML.escape(myconfig_company) %]"></td> |
|
50 |
</tr> |
|
51 |
<tr valign="top"> |
|
52 |
<th align="right"><translate>Address</translate></th> |
|
53 |
<td><textarea name="address" rows="4" cols="50">[% HTML.escape(myconfig_address) %]</textarea></td> |
|
54 |
</tr> |
|
55 |
<tr> |
|
56 |
<th align="right"><translate>Date Format</translate></th> |
|
57 |
<td> |
|
58 |
<select name="dateformat"> |
|
59 |
[%- FOREACH row = DATEFORMATS %] |
|
60 |
<option value="[% HTML.escape(row.value) %]"[% IF row.selected %] selected[% END %]>[% HTML.escape(row.name) %]</option> |
|
61 |
[%- END %] |
|
62 |
</select> |
|
63 |
</td> |
|
64 |
</tr> |
|
65 |
<tr> |
|
66 |
<th align="right"><translate>Output Number Format</translate></th> |
|
67 |
<td> |
|
68 |
<select name="numberformat"> |
|
69 |
[%- FOREACH row = NUMBERFORMATS %] |
|
70 |
<option value="[% HTML.escape(row.value) %]"[% IF row.selected %] selected[% END %]>[% HTML.escape(row.name) %]</option> |
|
71 |
[%- END %] |
|
72 |
</select> |
|
73 |
</td> |
|
74 |
</tr> |
|
75 |
|
|
76 |
<tr> |
|
77 |
<th align="right"><translate>Dropdown Limit</translate></th> |
|
78 |
<td><input name="vclimit" size="10" value="[% HTML.escape(myconfig_vclimit) %]"></td> |
|
79 |
</tr> |
|
80 |
|
|
81 |
<tr> |
|
82 |
<th align="right"><translate>Language</translate></th> |
|
83 |
<td> |
|
84 |
<select name="countrycode"> |
|
85 |
[%- FOREACH row = COUNTRYCODES %] |
|
86 |
<option value="[% HTML.escape(row.value) %]"[% IF row.selected %] selected[% END %]>[% HTML.escape(row.name) %]</option> |
|
87 |
[%- END %] |
|
88 |
</select> |
|
89 |
</td> |
|
90 |
</tr> |
|
91 |
|
|
92 |
<tr> |
|
93 |
<th align="right"><translate>Stylesheet</translate></th> |
|
94 |
<td> |
|
95 |
<select name="usestylesheet"> |
|
96 |
[%- FOREACH row = STYLESHEETS %] |
|
97 |
<option value="[% HTML.escape(row.value) %]"[% IF row.selected %] selected[% END %]>[% HTML.escape(row.name) %]</option> |
|
98 |
[%- END %] |
|
99 |
</select> |
|
100 |
</td> |
|
101 |
</tr> |
|
102 |
|
|
103 |
<tr> |
|
104 |
<th align="right"><translate>Setup Menu</translate></th> |
|
105 |
<td> |
|
106 |
<input name="menustyle" id="menustyle_v3" type="radio" class="radio" value="v3" [% IF menustyle_v3 %]checked[% END %]> |
|
107 |
<label for="menustyle_v3"><translate>Top (CSS)</translate></label> |
|
108 |
<input name="menustyle" id="menustyle_neu" type="radio" class="radio" value="neu" [% IF menustyle_neu %]checked[% END %]> |
|
109 |
<label for="menustyle_neu"><translate>Top (Javascript)</translate></label> |
|
110 |
<input name="menustyle" id="menustyle_old" type="radio" class="radio" value="old" [% IF menustyle_old %]checked[% END %]> |
|
111 |
<label for="menustyle_old"><translate>Old (on the side)</translate></label> |
|
112 |
<input name="menustyle" id="menustyle_xml" type="radio" class="radio" value="xml" [% IF menustyle_xml %]checked[% END %]> |
|
113 |
<label for="menustyle_xml">XML (XUL,...)</label> |
|
114 |
</td> |
|
115 |
</tr> |
|
116 |
|
|
117 |
<tr valign="top"> |
|
118 |
<th align="right"><translate>Favorites</translate></th> |
|
119 |
<td><textarea name="favorites" rows="4" cols="50">[% HTML.escape(myconfig_favorites) %]</textarea></td> |
|
120 |
</tr> |
|
121 |
|
|
122 |
<tr> |
|
123 |
<th align="right"><translate>Form details (second row)</translate></th> |
|
124 |
<td> |
|
125 |
<input type="radio" id="rad_show_form_details" name="show_form_details" value="1" [% IF myconfig_show_form_details %]checked[% END %]> |
|
126 |
<label for="rad_show_form_details"><translate>Show by default</translate></label> |
|
127 |
<input type="radio" id="rad_hide_form_details" name="show_form_details" value="0" [% UNLESS myconfig_show_form_details %]checked[% END %]> |
|
128 |
<label for="rad_hide_form_details"><translate>Hide by default</translate></label></td> |
|
129 |
</tr> |
|
130 |
|
|
131 |
<input name="printer" type="hidden" value="[% HTML.escape(myconfig_printer) %]"> |
|
132 |
<tr class="listheading"> |
|
133 |
<th colspan="2"><translate>Print options</translate></th> |
|
134 |
</tr> |
|
135 |
|
|
136 |
<tr> |
|
137 |
<th align="right"><translate>Default template format</translate></th> |
|
138 |
<td> |
|
139 |
<select name="template_format"> |
|
140 |
[%- FOREACH row = TEMPLATE_FORMATS %] |
|
141 |
<option value="[% HTML.escape(row.value) %]"[% IF row.selected %] selected[% END %]>[% HTML.escape(row.name) %]</option> |
|
142 |
[%- END %] |
|
143 |
</select> |
|
144 |
</td> |
|
145 |
</tr> |
|
146 |
|
|
147 |
<tr> |
|
148 |
<th align="right"><translate>Default output medium</translate></th> |
|
149 |
<td> |
|
150 |
<select name="default_media"> |
|
151 |
[%- FOREACH row = MEDIA %] |
|
152 |
<option value="[% HTML.escape(row.value) %]"[% IF row.selected %] selected[% END %]>[% HTML.escape(row.name) %]</option> |
|
153 |
[%- END %] |
|
154 |
</select> |
|
155 |
</td> |
|
156 |
</tr> |
|
157 |
|
|
158 |
<tr> |
|
159 |
<th align="right"><translate>Default printer</translate></th> |
|
160 |
<td> |
|
161 |
<select name="default_printer_id"> |
|
162 |
[%- FOREACH row = PRINTERS %] |
|
163 |
<option value="[% HTML.escape(row.value) %]"[% IF row.selected %] selected[% END %]>[% HTML.escape(row.name) %]</option> |
|
164 |
[%- END %] |
|
165 |
</select> |
|
166 |
</td> |
|
167 |
</tr> |
|
16 |
<div class="tabcontentstyle"> |
|
168 | 17 |
|
169 |
<tr> |
|
170 |
<th align="right"><translate>Number of copies</translate></th> |
|
171 |
<td><input name="copies" size="10" value="[% HTML.escape(myconfig_copies) %]"></td> |
|
172 |
</tr> |
|
173 |
</table> |
|
174 |
</p> |
|
18 |
<div id="page_personal_settings" class="tabcontent"> |
|
175 | 19 |
|
176 |
<hr height="3" noshade> |
|
20 |
<table> |
|
21 |
<tr> |
|
22 |
<th align="right"><translate>Name</translate></th> |
|
23 |
<td><input name="name" size="15" value="[% HTML.escape(myconfig_name) %]"></td> |
|
24 |
</tr> |
|
25 |
|
|
26 |
<tr> |
|
27 |
<th align="right"><translate>Password</translate></th> |
|
28 |
<td> |
|
29 |
[%- IF CAN_CHANGE_PASSWORD %] |
|
30 |
<input type="password" name="new_password" size="10" value="********"> |
|
31 |
[%- ELSE %] |
|
32 |
<input type="hidden" name="new_password" value="********"> |
|
33 |
[%- END %] |
|
34 |
</td> |
|
35 |
</tr> |
|
36 |
|
|
37 |
<tr> |
|
38 |
<th align="right"><translate>E-mail</translate></th> |
|
39 |
<td><input name="email" size="30" value="[% HTML.escape(myconfig_email) %]"></td> |
|
40 |
</tr> |
|
41 |
|
|
42 |
<tr valign="top"> |
|
43 |
<th align="right"><translate>Signature</translate></th> |
|
44 |
<td><textarea name="signature" rows="3" cols="50">[% HTML.escape(myconfig_signature) %]</textarea></td> |
|
45 |
</tr> |
|
46 |
|
|
47 |
<tr> |
|
48 |
<th align="right"><translate>Phone</translate></th> |
|
49 |
<td><input name="tel" size="14" value="[% HTML.escape(myconfig_tel) %]"></td> |
|
50 |
</tr> |
|
51 |
|
|
52 |
<tr> |
|
53 |
<th align="right"><translate>Fax</translate></th> |
|
54 |
<td><input name="fax" size="14" value="[% HTML.escape(myconfig_fax) %]"></td> |
|
55 |
</tr> |
|
56 |
<tr> |
|
57 |
<th align="right"><translate>Company</translate></th> |
|
58 |
<td><input name="company" size="30" value="[% HTML.escape(myconfig_company) %]"></td> |
|
59 |
</tr> |
|
60 |
<tr valign="top"> |
|
61 |
<th align="right"><translate>Address</translate></th> |
|
62 |
<td><textarea name="address" rows="4" cols="50">[% HTML.escape(myconfig_address) %]</textarea></td> |
|
63 |
</tr> |
|
64 |
</table> |
|
65 |
|
|
66 |
<br style="clear: left" /> |
|
67 |
</div> |
|
68 |
|
|
69 |
<div id="page_display_options" class="tabcontent"> |
|
70 |
|
|
71 |
<table> |
|
72 |
<tr> |
|
73 |
<th align="right"><translate>Date Format</translate></th> |
|
74 |
<td> |
|
75 |
<select name="dateformat"> |
|
76 |
[%- FOREACH row = DATEFORMATS %] |
|
77 |
<option value="[% HTML.escape(row.value) %]"[% IF row.selected %] selected[% END %]>[% HTML.escape(row.name) %]</option> |
|
78 |
[%- END %] |
|
79 |
</select> |
|
80 |
</td> |
|
81 |
</tr> |
|
82 |
<tr> |
|
83 |
<th align="right"><translate>Output Number Format</translate></th> |
|
84 |
<td> |
|
85 |
<select name="numberformat"> |
|
86 |
[%- FOREACH row = NUMBERFORMATS %] |
|
87 |
<option value="[% HTML.escape(row.value) %]"[% IF row.selected %] selected[% END %]>[% HTML.escape(row.name) %]</option> |
|
88 |
[%- END %] |
|
89 |
</select> |
|
90 |
</td> |
|
91 |
</tr> |
|
92 |
|
|
93 |
<tr> |
|
94 |
<th align="right"><translate>Dropdown Limit</translate></th> |
|
95 |
<td><input name="vclimit" size="10" value="[% HTML.escape(myconfig_vclimit) %]"></td> |
|
96 |
</tr> |
|
97 |
|
|
98 |
<tr> |
|
99 |
<th align="right"><translate>Language</translate></th> |
|
100 |
<td> |
|
101 |
<select name="countrycode"> |
|
102 |
[%- FOREACH row = COUNTRYCODES %] |
|
103 |
<option value="[% HTML.escape(row.value) %]"[% IF row.selected %] selected[% END %]>[% HTML.escape(row.name) %]</option> |
|
104 |
[%- END %] |
|
105 |
</select> |
|
106 |
</td> |
|
107 |
</tr> |
|
108 |
|
|
109 |
<tr> |
|
110 |
<th align="right"><translate>Stylesheet</translate></th> |
|
111 |
<td> |
|
112 |
<select name="usestylesheet"> |
|
113 |
[%- FOREACH row = STYLESHEETS %] |
|
114 |
<option value="[% HTML.escape(row.value) %]"[% IF row.selected %] selected[% END %]>[% HTML.escape(row.name) %]</option> |
|
115 |
[%- END %] |
|
116 |
</select> |
|
117 |
</td> |
|
118 |
</tr> |
|
119 |
|
|
120 |
<tr> |
|
121 |
<th align="right"><translate>Setup Menu</translate></th> |
|
122 |
<td> |
|
123 |
<input name="menustyle" id="menustyle_v3" type="radio" class="radio" value="v3" [% IF menustyle_v3 %]checked[% END %]> |
|
124 |
<label for="menustyle_v3"><translate>Top (CSS)</translate></label> |
|
125 |
<input name="menustyle" id="menustyle_neu" type="radio" class="radio" value="neu" [% IF menustyle_neu %]checked[% END %]> |
|
126 |
<label for="menustyle_neu"><translate>Top (Javascript)</translate></label> |
|
127 |
<input name="menustyle" id="menustyle_old" type="radio" class="radio" value="old" [% IF menustyle_old %]checked[% END %]> |
|
128 |
<label for="menustyle_old"><translate>Old (on the side)</translate></label> |
|
129 |
<input name="menustyle" id="menustyle_xml" type="radio" class="radio" value="xml" [% IF menustyle_xml %]checked[% END %]> |
|
130 |
<label for="menustyle_xml">XML (XUL,...)</label> |
|
131 |
</td> |
|
132 |
</tr> |
|
133 |
|
|
134 |
<tr valign="top"> |
|
135 |
<th align="right"><translate>Favorites</translate></th> |
|
136 |
<td><textarea name="favorites" rows="4" cols="50">[% HTML.escape(myconfig_favorites) %]</textarea></td> |
|
137 |
</tr> |
|
138 |
|
|
139 |
<tr> |
|
140 |
<th align="right"><translate>Form details (second row)</translate></th> |
|
141 |
<td> |
|
142 |
<input type="radio" id="rad_show_form_details" name="show_form_details" value="1" [% IF myconfig_show_form_details %]checked[% END %]> |
|
143 |
<label for="rad_show_form_details"><translate>Show by default</translate></label> |
|
144 |
<input type="radio" id="rad_hide_form_details" name="show_form_details" value="0" [% UNLESS myconfig_show_form_details %]checked[% END %]> |
|
145 |
<label for="rad_hide_form_details"><translate>Hide by default</translate></label></td> |
|
146 |
</tr> |
|
147 |
</table> |
|
148 |
|
|
149 |
<br style="clear: left" /> |
|
150 |
</div> |
|
151 |
|
|
152 |
<div id="page_print_options" class="tabcontent"> |
|
153 |
|
|
154 |
<table> |
|
155 |
<input name="printer" type="hidden" value="[% HTML.escape(myconfig_printer) %]"> |
|
156 |
|
|
157 |
<tr> |
|
158 |
<th align="right"><translate>Default template format</translate></th> |
|
159 |
<td> |
|
160 |
<select name="template_format"> |
|
161 |
[%- FOREACH row = TEMPLATE_FORMATS %] |
|
162 |
<option value="[% HTML.escape(row.value) %]"[% IF row.selected %] selected[% END %]>[% HTML.escape(row.name) %]</option> |
|
163 |
[%- END %] |
|
164 |
</select> |
|
165 |
</td> |
|
166 |
</tr> |
|
167 |
|
|
168 |
<tr> |
|
169 |
<th align="right"><translate>Default output medium</translate></th> |
|
170 |
<td> |
|
171 |
<select name="default_media"> |
|
172 |
[%- FOREACH row = MEDIA %] |
|
173 |
<option value="[% HTML.escape(row.value) %]"[% IF row.selected %] selected[% END %]>[% HTML.escape(row.name) %]</option> |
|
174 |
[%- END %] |
|
175 |
</select> |
|
176 |
</td> |
|
177 |
</tr> |
|
178 |
|
|
179 |
<tr> |
|
180 |
<th align="right"><translate>Default printer</translate></th> |
|
181 |
<td> |
|
182 |
<select name="default_printer_id"> |
|
183 |
[%- FOREACH row = PRINTERS %] |
|
184 |
<option value="[% HTML.escape(row.value) %]"[% IF row.selected %] selected[% END %]>[% HTML.escape(row.name) %]</option> |
|
185 |
[%- END %] |
|
186 |
</select> |
|
187 |
</td> |
|
188 |
</tr> |
|
189 |
|
|
190 |
<tr> |
|
191 |
<th align="right"><translate>Number of copies</translate></th> |
|
192 |
<td><input name="copies" size="10" value="[% HTML.escape(myconfig_copies) %]"></td> |
|
193 |
</tr> |
|
194 |
</table> |
|
195 |
|
|
196 |
<br style="clear: left" /> |
|
197 |
</div> |
|
198 |
</div> |
|
177 | 199 |
|
178 | 200 |
<p><input type="submit" class="submit" name="action" value="<translate>Save</translate>"></p> |
179 | 201 |
</form> |
180 | 202 |
|
203 |
<script type="text/javascript"> |
|
204 |
<!-- |
|
205 |
//Start Tab Content script for UL with id="maintab" Separate multiple ids each with a comma. |
|
206 |
initializetabcontent("maintab"); |
|
207 |
--> |
|
208 |
</script> |
|
209 |
|
|
181 | 210 |
</body> |
182 | 211 |
</html> |
Auch abrufbar als: Unified diff
Umstellung der Benutzereinstellungen auf getabbtes Layout.