Thread: SF.net SVN: postfixadmin: [132] trunk/languages/en.lang
Brought to you by:
christian_boltz,
gingerdog
From: <Gin...@us...> - 2007-10-04 14:58:34
|
Revision: 132 http://postfixadmin.svn.sourceforge.net/postfixadmin/?rev=132&view=rev Author: GingerDog Date: 2007-10-04 07:58:38 -0700 (Thu, 04 Oct 2007) Log Message: ----------- languages/en.lang: pPasswordTooShort added Modified Paths: -------------- trunk/languages/en.lang Modified: trunk/languages/en.lang =================================================================== --- trunk/languages/en.lang 2007-10-04 14:58:11 UTC (rev 131) +++ trunk/languages/en.lang 2007-10-04 14:58:38 UTC (rev 132) @@ -352,4 +352,6 @@ $PALANG['pStatus_undeliverable'] = 'maybe UNDELIVERABLE '; $PALANG['pStatus_custom'] = 'Delivers to '; $PALANG['pStatus_popimap'] = 'POP/IMAP '; + +$PALANG['pPasswordTooShort'] = "Password is too short - requires %s characters"; ?> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <Gin...@us...> - 2007-12-06 21:49:43
|
Revision: 261 http://postfixadmin.svn.sourceforge.net/postfixadmin/?rev=261&view=rev Author: GingerDog Date: 2007-12-06 13:49:45 -0800 (Thu, 06 Dec 2007) Log Message: ----------- en.lang: add error message if password is too short Modified Paths: -------------- trunk/languages/en.lang Modified: trunk/languages/en.lang =================================================================== --- trunk/languages/en.lang 2007-12-06 21:42:06 UTC (rev 260) +++ trunk/languages/en.lang 2007-12-06 21:49:45 UTC (rev 261) @@ -160,6 +160,7 @@ $PALANG['pPassword_button'] = 'Change Password'; $PALANG['pPassword_result_error'] = '<span class="error_msg">Unable to change your password!</span>'; $PALANG['pPassword_result_success'] = 'Your password has been changed!'; +$PALANG['pPassword_too_short_error'] = "Password must be longer than {$CONF['min_password_length']} characters"; $PALANG['pEdit_vacation_set'] = 'Change / Set away message'; $PALANG['pEdit_vacation_remove'] = 'Remove away message'; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <Gin...@us...> - 2007-12-06 21:54:15
|
Revision: 262 http://postfixadmin.svn.sourceforge.net/postfixadmin/?rev=262&view=rev Author: GingerDog Date: 2007-12-06 13:54:20 -0800 (Thu, 06 Dec 2007) Log Message: ----------- languages/en.lang: fix string for successful mail sending Modified Paths: -------------- trunk/languages/en.lang Modified: trunk/languages/en.lang =================================================================== --- trunk/languages/en.lang 2007-12-06 21:49:45 UTC (rev 261) +++ trunk/languages/en.lang 2007-12-06 21:54:20 UTC (rev 262) @@ -197,8 +197,8 @@ $PALANG['pSendmail_subject_text'] = 'Welcome'; $PALANG['pSendmail_body'] = 'Body'; $PALANG['pSendmail_button'] = 'Send Message'; -$PALANG['pSendmail_result_error'] = '<span class="error_msg">Unable to create mailbox!</span>'; -$PALANG['pSendmail_result_success'] = 'The mailbox has been created!'; +$PALANG['pSendmail_result_error'] = '<span class="error_msg">Unable to send email!</span>'; +$PALANG['pSendmail_result_success'] = 'Email sent!'; $PALANG['pAdminMenu_list_admin'] = 'Admin List'; $PALANG['pAdminMenu_list_domain'] = 'Domain List'; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <chr...@us...> - 2007-12-06 22:21:28
|
Revision: 263 http://postfixadmin.svn.sourceforge.net/postfixadmin/?rev=263&view=rev Author: christian_boltz Date: 2007-12-06 14:21:29 -0800 (Thu, 06 Dec 2007) Log Message: ----------- - removed duplicate, unused string $PALANG['pPassword_too_short_error'] again. Please use the existing string pPasswordTooShort Modified Paths: -------------- trunk/languages/en.lang Modified: trunk/languages/en.lang =================================================================== --- trunk/languages/en.lang 2007-12-06 21:54:20 UTC (rev 262) +++ trunk/languages/en.lang 2007-12-06 22:21:29 UTC (rev 263) @@ -160,7 +160,6 @@ $PALANG['pPassword_button'] = 'Change Password'; $PALANG['pPassword_result_error'] = '<span class="error_msg">Unable to change your password!</span>'; $PALANG['pPassword_result_success'] = 'Your password has been changed!'; -$PALANG['pPassword_too_short_error'] = "Password must be longer than {$CONF['min_password_length']} characters"; $PALANG['pEdit_vacation_set'] = 'Change / Set away message'; $PALANG['pEdit_vacation_remove'] = 'Remove away message'; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |