diff options
-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; |