From e61840c926adafa402746471347f9d7a233c5564 Mon Sep 17 00:00:00 2001 From: wwp Date: Fri, 10 Nov 2017 11:37:38 +0100 Subject: [PATCH] Yet another string correction. --- src/prefs_account.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; } -- 2.25.1