talons

Fork of Claws Mail https://www.claws-mail
Log | Files | Refs | README | LICENSE

commit e61840c926adafa402746471347f9d7a233c5564
parent a631e269241b9cb7ff73c00a1980560bb8e7df1b
Author: wwp <wwp@free.fr>
Date:   Fri, 10 Nov 2017 11:37:38 +0100

Yet another string correction.

Diffstat:
Msrc/prefs_account.c | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/prefs_account.c b/src/prefs_account.c @@ -3066,12 +3066,12 @@ static gint prefs_basic_apply(void) static gint prefs_receive_apply(void) { if (strchr(gtk_entry_get_text(GTK_ENTRY(send_page.smtp_uid_entry)), '\n') != NULL) { - alertpanel_error(_("SMTP user ID can not contain newline character.")); + alertpanel_error(_("SMTP user ID cannot contain a newline character.")); return -1; } if (strchr(gtk_entry_get_text(GTK_ENTRY(send_page.smtp_pass_entry)), '\n') != NULL) { - alertpanel_error(_("SMTP password can not contain newline character.")); + alertpanel_error(_("SMTP password cannot contain a newline character.")); return -1; }