diff options
author | Milan Crha <mcrha@redhat.com> | 2009-06-22 23:41:15 +0800 |
---|---|---|
committer | Milan Crha <mcrha@redhat.com> | 2009-06-22 23:41:15 +0800 |
commit | f7b884584a5aa62ae96987ee01f1b853ae9f147f (patch) | |
tree | 4b3bf434a3bf57dc9e1f16f0b4e3cdfea61f12ef /plugins/backup-restore | |
parent | 7a9ab4f23b918dbf4fd0790f002924dc7c18a0cf (diff) | |
download | gsoc2013-evolution-f7b884584a5aa62ae96987ee01f1b853ae9f147f.tar.gz gsoc2013-evolution-f7b884584a5aa62ae96987ee01f1b853ae9f147f.tar.zst gsoc2013-evolution-f7b884584a5aa62ae96987ee01f1b853ae9f147f.zip |
Bug #566369 - fix string typo "cancelled" => "canceled"
Diffstat (limited to 'plugins/backup-restore')
-rw-r--r-- | plugins/backup-restore/backup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/backup-restore/backup.c b/plugins/backup-restore/backup.c index 7842606a72..1ca9a52dc2 100644 --- a/plugins/backup-restore/backup.c +++ b/plugins/backup-restore/backup.c @@ -389,7 +389,7 @@ dlg_response (GtkWidget *dlg, gint response, gpointer data) /* backup was canceled, delete the backup file as it is not needed now */ gchar *cmd, *filename; - g_message ("Backup cancelled, removing partial backup file."); + g_message ("Backup canceled, removing partial backup file."); filename = g_shell_quote (bk_file); cmd = g_strconcat ("rm ", filename, NULL); |