Revision e7fa9a26
Von Moritz Bunkus vor mehr als 15 Jahren hinzugefügt
locale/de/all | ||
---|---|---|
728 | 728 |
'General ledger and cash' => 'Finanzbuchhaltung und Zahlungsverkehr', |
729 | 729 |
'General ledger corrections' => 'Korrekturen im Hauptbuch', |
730 | 730 |
'Generic Tax Report' => 'USTVA Bericht', |
731 |
'German' => 'Deutsch', |
|
731 | 732 |
'Given Name' => 'Vorname', |
732 | 733 |
'Greeting' => 'Anrede', |
733 | 734 |
'Group' => 'Warengruppe', |
templates/webpages/admin/edit_user_de.html | ||
---|---|---|
126 | 126 |
<tr> |
127 | 127 |
<th align="right">Sprache</th> |
128 | 128 |
<td> |
129 |
<select name="countrycode"> |
|
129 |
Deutsch |
|
130 |
<input type="hidden" name="countrycode" value="de"> |
|
131 |
<!-- <select name="countrycode"> |
|
130 | 132 |
[% FOREACH row = ALL_COUNTRYCODES %]<option value="[% HTML.escape(row.value) %]" [% IF row.selected %]selected[% END %]>[% HTML.escape(row.name) %]</option> |
131 | 133 |
[% END %] |
132 |
</select> |
|
134 |
</select>-->
|
|
133 | 135 |
</td> |
134 | 136 |
</tr> |
135 | 137 |
|
templates/webpages/admin/edit_user_master.html | ||
---|---|---|
126 | 126 |
<tr> |
127 | 127 |
<th align="right"><translate>Language</translate></th> |
128 | 128 |
<td> |
129 |
<select name="countrycode"> |
|
129 |
<translate>German</translate> |
|
130 |
<input type="hidden" name="countrycode" value="de"> |
|
131 |
<!-- <select name="countrycode"> |
|
130 | 132 |
[% FOREACH row = ALL_COUNTRYCODES %]<option value="[% HTML.escape(row.value) %]" [% IF row.selected %]selected[% END %]>[% HTML.escape(row.name) %]</option> |
131 | 133 |
[% END %] |
132 |
</select> |
|
134 |
</select>-->
|
|
133 | 135 |
</td> |
134 | 136 |
</tr> |
135 | 137 |
|
templates/webpages/am/config_de.html | ||
---|---|---|
101 | 101 |
<tr> |
102 | 102 |
<th align="right">Sprache</th> |
103 | 103 |
<td> |
104 |
<select name="countrycode"> |
|
104 |
Deutsch |
|
105 |
<input type="hidden" name="countrycode" value="de"> |
|
106 |
<!-- <select name="countrycode"> |
|
105 | 107 |
[%- FOREACH row = COUNTRYCODES %] |
106 | 108 |
<option value="[% HTML.escape(row.value) %]"[% IF row.selected %] selected[% END %]>[% HTML.escape(row.name) %]</option> |
107 | 109 |
[%- END %] |
108 |
</select> |
|
110 |
</select>-->
|
|
109 | 111 |
</td> |
110 | 112 |
</tr> |
111 | 113 |
|
templates/webpages/am/config_master.html | ||
---|---|---|
101 | 101 |
<tr> |
102 | 102 |
<th align="right"><translate>Language</translate></th> |
103 | 103 |
<td> |
104 |
<select name="countrycode"> |
|
104 |
<translate>German</translate> |
|
105 |
<input type="hidden" name="countrycode" value="de"> |
|
106 |
<!-- <select name="countrycode"> |
|
105 | 107 |
[%- FOREACH row = COUNTRYCODES %] |
106 | 108 |
<option value="[% HTML.escape(row.value) %]"[% IF row.selected %] selected[% END %]>[% HTML.escape(row.name) %]</option> |
107 | 109 |
[%- END %] |
108 |
</select> |
|
110 |
</select>-->
|
|
109 | 111 |
</td> |
110 | 112 |
</tr> |
111 | 113 |
|
Auch abrufbar als: Unified diff
Die Sprachauswahl temporär deaktivieren und auf "Deutsch" hardcodieren.
Wird die Sprache von "Deutsch" auf eine beliebige andere umgestellt,
so bekommt man sofort Perl-Fehler wegen Objektzugriffe auf nicht
definierte Variablen. Der Grund ist, dass das anzulegende
Locale-Objekt halb leer ist und nicht die Iconv-Instanzen enthält.
Temporärer Fix für Bug 1037.