From: wwp Date: Fri, 10 Nov 2017 10:37:38 +0000 (+0100) Subject: Yet another string correction. X-Git-Tag: 3.16.0~33 X-Git-Url: http://git.claws-mail.org/?p=claws.git;a=commitdiff_plain;h=e61840c926adafa402746471347f9d7a233c5564;ds=sidebyside Yet another string correction. --- diff --git a/src/prefs_account.c b/src/prefs_account.c index 84a8d0a21..ec0d11516 100644 --- 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; }