diff options
author | Harish Krishnaswamy <kharish@novell.com> | 2006-01-01 20:21:38 +0800 |
---|---|---|
committer | Harish Krishnaswamy <kharish@src.gnome.org> | 2006-01-01 20:21:38 +0800 |
commit | 66d997c1605b80c67344a2973a17f6a4650181c9 (patch) | |
tree | 11e9ec0315992702a519ac7f9dbbb11756ce6b4b /mail/em-utils.c | |
parent | 3f2e506802009ee3a0a6d3818e018884eb7ef91d (diff) | |
download | gsoc2013-evolution-66d997c1605b80c67344a2973a17f6a4650181c9.tar.gz gsoc2013-evolution-66d997c1605b80c67344a2973a17f6a4650181c9.tar.zst gsoc2013-evolution-66d997c1605b80c67344a2973a17f6a4650181c9.zip |
s/don't/do not/ string changes. Fixes #325276.
2006-01-01 Harish Krishnaswamy <kharish@novell.com>
* em-utils.c (em_utils_prompt_user), mail-config.glade, mail.error.xml :
s/don't/do not/ string changes. Fixes #325276.
svn path=/trunk/; revision=31002
Diffstat (limited to 'mail/em-utils.c')
-rw-r--r-- | mail/em-utils.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mail/em-utils.c b/mail/em-utils.c index 4041d82a46..0ea8caf442 100644 --- a/mail/em-utils.c +++ b/mail/em-utils.c @@ -97,7 +97,7 @@ extern struct _CamelSession *session; * @arg0: The first of a NULL terminated list of arguments for the error. * * Convenience function to query the user with a Yes/No dialog and a - * "Don't show this dialog again" checkbox. If the user checks that + * "Do not show this dialog again" checkbox. If the user checks that * checkbox, then @promptkey is set to %FALSE, otherwise it is set to * %TRUE. * @@ -120,7 +120,7 @@ em_utils_prompt_user(GtkWindow *parent, const char *promptkey, const char *tag, va_end(ap); if (promptkey) { - check = gtk_check_button_new_with_label (_("Don't show this message again.")); + check = gtk_check_button_new_with_label (_("Do not show this message again.")); gtk_container_set_border_width((GtkContainer *)check, 12); gtk_box_pack_start ((GtkBox *)((GtkDialog *) mbox)->vbox, check, TRUE, TRUE, 0); gtk_widget_show (check); |