0
0
mirror of https://github.com/postfixadmin/postfixadmin.git synced 2024-09-19 19:22:14 +02:00
postfixadmin/templates/edit-mailbox.tpl
Christian Boltz cf1fde5194 languages/*:
several text changes to be more clear (see the en.lang diff for details)

This commit implements most changes from Chris H. (dharmachris@SF) posted at
https://sourceforge.net/tracker/?func=detail&aid=3186094&group_id=191583&atid=937964


Related template changes:

templates/admin_edit-admin.tpl:
- use PALANG.save instead of PALANG.pAdminEdit_admin_button

templates/users_edit-alias.tpl, templates/edit-alias.tpl:
- split PALANG.pEdit_alias_welcome - second half is now PALANG.pEdit_alias_help
  (this avoids the <br /> in the text)
- use PALANG.save instead of PALANG.pEdit_alias_button

templates/edit-mailbox.tpl:
- use PALANG.save instead of $PALANG.pEdit_mailbox_button

templates/admin_edit-domain.tpl:
- use PALANG.save instead of $PALANG.pAdminEdit_domain_button


git-svn-id: https://svn.code.sf.net/p/postfixadmin/code/trunk@1031 a1433add-5e2c-0410-b055-b7f2511e0802
2011-04-10 18:26:52 +00:00

52 lines
1.4 KiB
Smarty

{* {$pEdit_mailbox_username_text} nicht gesetzt *}
<div id="edit_form">
<form name="mailbox" method="post" action="">
<table>
<tr>
<td colspan="3"><h3>{$PALANG.pEdit_mailbox_welcome}</h3></td>
</tr>
<tr>
<td>{$PALANG.pEdit_mailbox_username}</td>
<td>{$fUsername}</td>
<td>{$pEdit_mailbox_username_text}</td>
</tr>
<tr>
<td>{$PALANG.pEdit_mailbox_password}:</td>
<td><input class="flat" type="password" name="fPassword" /></td>
<td>{$pEdit_mailbox_password_text}</td>
</tr>
<tr>
<td>{$PALANG.pEdit_mailbox_password2}:</td>
<td><input class="flat" type="password" name="fPassword2" /></td>
<td>&nbsp;</td>
</tr>
<tr>
<td>{$PALANG.pEdit_mailbox_name}:</td>
<td><input class="flat" type="text" name="fName" value="{$tName}" /></td>
<td>{$pEdit_mailbox_name_text}</td>
</tr>
{if $CONF.quota===YES}
<tr>
<td>{$PALANG.pEdit_mailbox_quota} (max: {$tMaxquota}):</td>
<td><input class="flat" type="text" name="fQuota" value="{$tQuota}" /></td>
<td>{$pEdit_mailbox_quota_text}</td>
</tr>
{/if}
<tr>
<td>{$PALANG.pCreate_mailbox_active}:</td>
<td><input class="flat" type="checkbox" name="fActive"{$tActive}/></td>
<td>&nbsp;</td>
</tr>
<tr>
<td colspan="3" class="hlp_center">
<input class="button" type="submit" name="submit" value="{$PALANG.save}" />
<input class="button" type="submit" name="cancel" value="{$PALANG.exit}"/>
</td>
</tr>
<tr>
<td colspan="3" class="standout">{$tMessage}</td>
</tr>
</table>
</form>
</div>