use correct internationalization in email-edit template, thx to arnoldB

Signed-off-by: Michael Kaufmann (d00p) <d00p@froxlor.org>
This commit is contained in:
Michael Kaufmann (d00p)
2011-03-10 11:14:04 +01:00
parent 2754e0ae5a
commit 9428c794c0
4 changed files with 4 additions and 2 deletions

View File

@@ -1573,3 +1573,4 @@ $lng['panel']['theme'] = 'Theme';
$lng['success']['rebuildingconfigs'] = 'Successfully inserted tasks for rebuild configfiles'; $lng['success']['rebuildingconfigs'] = 'Successfully inserted tasks for rebuild configfiles';
$lng['panel']['variable'] = 'Variable'; $lng['panel']['variable'] = 'Variable';
$lng['panel']['description'] = 'Description'; $lng['panel']['description'] = 'Description';
$lng['emails']['back_to_overview'] = 'Back to overview';

View File

@@ -1555,3 +1555,4 @@ $lng['panel']['theme'] = 'Theme';
$lng['success']['rebuildingconfigs'] = 'Task f&uuml;r das Neuerstellen der Konfigurationen wurde erfolgreich eingetragen'; $lng['success']['rebuildingconfigs'] = 'Task f&uuml;r das Neuerstellen der Konfigurationen wurde erfolgreich eingetragen';
$lng['panel']['variable'] = 'Variable'; $lng['panel']['variable'] = 'Variable';
$lng['panel']['description'] = 'Beschreibung'; $lng['panel']['description'] = 'Beschreibung';
$lng['emails']['back_to_overview'] = 'Zur&uuml;ck zur &Uuml;bersicht';

View File

@@ -6,7 +6,7 @@ $header
</tr> </tr>
{$email_edit_form} {$email_edit_form}
<tr> <tr>
<td class="maintitle" colspan="2"><a href="$filename?page=email&amp;s=$s">Back to overview (@TODO lng)</a></td> <td class="maintitle" colspan="2"><a href="$filename?page=email&amp;s=$s">{$lng['emails']['back_to_overview']}</a></td>
</tr> </tr>
</table> </table>
</form> </form>

View File

@@ -16,7 +16,7 @@ $header
<table class="formtable"> <table class="formtable">
{$email_edit_form} {$email_edit_form}
<tr> <tr>
<td class="maintitle" colspan="2"><a href="$filename?page=emails&amp;s=$s">Back to overview (@TODO lng)</a></td> <td class="maintitle" colspan="2"><a href="$filename?page=emails&amp;s=$s">{$lng['emails']['back_to_overview']}</a></td>
</tr> </tr>
</table> </table>
</fieldset> </fieldset>