diff options
author | Harish Krishnaswamy <kharish@novell.com> | 2006-01-01 20:34:48 +0800 |
---|---|---|
committer | Harish Krishnaswamy <kharish@src.gnome.org> | 2006-01-01 20:34:48 +0800 |
commit | 4b1a6066dc36b8672e167db77e7808bbf7115888 (patch) | |
tree | 11abdabfbe21bed875fd169f3dd1263b5cd1748b | |
parent | 66d997c1605b80c67344a2973a17f6a4650181c9 (diff) | |
download | gsoc2013-evolution-4b1a6066dc36b8672e167db77e7808bbf7115888.tar.gz gsoc2013-evolution-4b1a6066dc36b8672e167db77e7808bbf7115888.tar.zst gsoc2013-evolution-4b1a6066dc36b8672e167db77e7808bbf7115888.zip |
s/don't/do not/ string changes. Fixes #325276.
2006-01-01 Harish Krishnaswamy <kharish@novell.com>
* s/don't/do not/ string changes. Fixes #325276.
svn path=/trunk/; revision=31003
-rw-r--r-- | composer/mail-composer.error.xml | 2 | ||||
-rw-r--r-- | designs/OOA/ooa.glade | 2 | ||||
-rw-r--r-- | shell/importer/intelligent.c | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/composer/mail-composer.error.xml b/composer/mail-composer.error.xml index 58e56991e8..2266265744 100644 --- a/composer/mail-composer.error.xml +++ b/composer/mail-composer.error.xml @@ -24,7 +24,7 @@ <_title>Unfinished messages found</_title> <_primary>Do you want to recover unfinished messages?</_primary> <_secondary>Evolution quit unexpectedly while you were composing a new message. Recovering the message will allow you to continue where you left off.</_secondary> - <button _label="Don't Recover" response="GTK_RESPONSE_CANCEL"/> + <button _label="Do not Recover" response="GTK_RESPONSE_CANCEL"/> <button _label="Recover" response="GTK_RESPONSE_YES"/> </error> diff --git a/designs/OOA/ooa.glade b/designs/OOA/ooa.glade index 386ad85810..b39875080a 100644 --- a/designs/OOA/ooa.glade +++ b/designs/OOA/ooa.glade @@ -386,7 +386,7 @@ Would you like to change your status to "In the Office"? </property> <child> <widget class="GtkLabel" id="label9"> <property name="visible">True</property> - <property name="label" translatable="yes">No, Don't Change Status</property> + <property name="label" translatable="yes">No, Do not Change Status</property> <property name="use_underline">True</property> <property name="use_markup">False</property> <property name="justify">GTK_JUSTIFY_LEFT</property> diff --git a/shell/importer/intelligent.c b/shell/importer/intelligent.c index 2043abadb4..f2f7f6898d 100644 --- a/shell/importer/intelligent.c +++ b/shell/importer/intelligent.c @@ -196,11 +196,11 @@ create_gui (GList *importers) gtk_dialog_add_action_widget((GtkDialog *)dialog, dummy, GTK_RESPONSE_ACCEPT); dummy = gtk_button_new_from_stock(GTK_STOCK_NO); - gtk_button_set_label((GtkButton *)dummy, _("Don't import")); + gtk_button_set_label((GtkButton *)dummy, _("Do not import")); gtk_dialog_add_action_widget((GtkDialog *)dialog, dummy, GTK_RESPONSE_REJECT); dummy = gtk_button_new_from_stock(GTK_STOCK_CANCEL); - gtk_button_set_label((GtkButton *)dummy, _("Don't ask me again")); + gtk_button_set_label((GtkButton *)dummy, _("Do not ask me again")); gtk_dialog_add_action_widget((GtkDialog *)dialog, dummy, GTK_RESPONSE_CANCEL); d->importers = NULL; d->current = NULL; |