Terminate password prompts with a full stop
Ted Percival <[email protected]> Sat, 08 Dec 2007 04:24:08 +1000
| Newsgroups | gmane.comp.gnome.evolution.patches |
|---|---|
| Message-ID | <[email protected]> |
I think the password prompts would look better if they were terminated with a full stop - because they are full sentences. Please CC me on replies, or on a bug report, if this needs discussion. -- \0 _______________________________________________ Evolution-patches mailing list [email protected] http://mail.gnome.org/mailman/listinfo/evolution-patches
eds-password-prompttext.patch
(text/x-patch, 4.1 KB)
diff -ru evolution-data-server-1.12.2/camel/providers/groupwise/camel-groupwise-store.c evolution-data-server-1.12.2-new/camel/providers/groupwise/camel-groupwise-store.c
--- evolution-data-server-1.12.2/camel/providers/groupwise/camel-groupwise-store.c 2007-10-12 16:29:20.000000000 +1000
+++ evolution-data-server-1.12.2-new/camel/providers/groupwise/camel-groupwise-store.c 2007-12-08 04:06:01.000000000 +1000
@@ -202,7 +202,7 @@
char *prompt;
prompt = g_strdup_printf (_("%sPlease enter the GroupWise "
- "password for %s@%s"),
+ "password for %s@%s."),
errbuf ? errbuf : "",
service->url->user,
service->url->host);
diff -ru evolution-data-server-1.12.2/camel/providers/imap/camel-imap-store.c evolution-data-server-1.12.2-new/camel/providers/imap/camel-imap-store.c
--- evolution-data-server-1.12.2/camel/providers/imap/camel-imap-store.c 2007-10-12 16:29:21.000000000 +1000
+++ evolution-data-server-1.12.2-new/camel/providers/imap/camel-imap-store.c 2007-12-08 04:03:05.000000000 +1000
@@ -1368,7 +1368,7 @@
char *prompt;
prompt = g_strdup_printf (_("%sPlease enter the IMAP "
- "password for %s@%s"),
+ "password for %s@%s."),
errbuf ? errbuf : "",
service->url->user,
service->url->host);
diff -ru evolution-data-server-1.12.2/camel/providers/imap4/camel-imap4-store.c evolution-data-server-1.12.2-new/camel/providers/imap4/camel-imap4-store.c
--- evolution-data-server-1.12.2/camel/providers/imap4/camel-imap4-store.c 2007-10-12 16:29:23.000000000 +1000
+++ evolution-data-server-1.12.2-new/camel/providers/imap4/camel-imap4-store.c 2007-12-08 04:04:00.000000000 +1000
@@ -458,7 +458,7 @@
if (reprompt)
flags |= CAMEL_SESSION_PASSWORD_REPROMPT;
- prompt = g_strdup_printf (_("%sPlease enter the IMAP password for %s on host %s"),
+ prompt = g_strdup_printf (_("%sPlease enter the IMAP password for %s on host %s."),
errmsg ? errmsg : "",
service->url->user,
service->url->host);
diff -ru evolution-data-server-1.12.2/camel/providers/imapp/camel-imapp-store.c evolution-data-server-1.12.2-new/camel/providers/imapp/camel-imapp-store.c
--- evolution-data-server-1.12.2/camel/providers/imapp/camel-imapp-store.c 2007-10-12 16:29:22.000000000 +1000
+++ evolution-data-server-1.12.2-new/camel/providers/imapp/camel-imapp-store.c 2007-12-08 04:05:56.000000000 +1000
@@ -362,7 +362,7 @@
camel_exception_init(&ex);
- prompt = g_strdup_printf (_("%sPlease enter the IMAP password for %s@%s"),
+ prompt = g_strdup_printf (_("%sPlease enter the IMAP password for %s@%s."),
store->login_error?store->login_error:"",
((CamelService *)store)->url->user,
((CamelService *)store)->url->host);
diff -ru evolution-data-server-1.12.2/camel/providers/nntp/camel-nntp-store.c evolution-data-server-1.12.2-new/camel/providers/nntp/camel-nntp-store.c
--- evolution-data-server-1.12.2/camel/providers/nntp/camel-nntp-store.c 2007-10-12 16:29:19.000000000 +1000
+++ evolution-data-server-1.12.2-new/camel/providers/nntp/camel-nntp-store.c 2007-12-08 04:05:25.000000000 +1000
@@ -1149,7 +1149,7 @@
if (!service->url->passwd) {
char *prompt, *base;
retry:
- base = g_strdup_printf (_("Please enter the NNTP password for %s@%s"),
+ base = g_strdup_printf (_("Please enter the NNTP password for %s@%s."),
service->url->user,
service->url->host);
if (line) {
diff -ru evolution-data-server-1.12.2/camel/providers/pop3/camel-pop3-store.c evolution-data-server-1.12.2-new/camel/providers/pop3/camel-pop3-store.c
--- evolution-data-server-1.12.2/camel/providers/pop3/camel-pop3-store.c 2007-10-12 16:29:19.000000000 +1000
+++ evolution-data-server-1.12.2-new/camel/providers/pop3/camel-pop3-store.c 2007-12-08 04:05:18.000000000 +1000
@@ -473,7 +473,7 @@
if (reprompt)
flags |= CAMEL_SESSION_PASSWORD_REPROMPT;
- prompt = g_strdup_printf (_("%sPlease enter the POP password for %s on host %s"),
+ prompt = g_strdup_printf (_("%sPlease enter the POP password for %s on host %s."),
errmsg ? errmsg : "",
service->url->user,
service->url->host);