aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/backup-restore/backup.c
diff options
context:
space:
mode:
authorMilan Crha <mcrha@redhat.com>2010-10-04 22:18:01 +0800
committerMilan Crha <mcrha@redhat.com>2010-10-04 22:18:01 +0800
commit5bde5537b6d098b16f96e46f48fdf45a3ce92207 (patch)
treea61f1edd4bbe187d39f7d2c5682243ecaf4433d4 /plugins/backup-restore/backup.c
parentc42663bcb790f9c732b0ce7fd7b288f74d58a581 (diff)
downloadgsoc2013-evolution-5bde5537b6d098b16f96e46f48fdf45a3ce92207.tar
gsoc2013-evolution-5bde5537b6d098b16f96e46f48fdf45a3ce92207.tar.gz
gsoc2013-evolution-5bde5537b6d098b16f96e46f48fdf45a3ce92207.tar.bz2
gsoc2013-evolution-5bde5537b6d098b16f96e46f48fdf45a3ce92207.tar.lz
gsoc2013-evolution-5bde5537b6d098b16f96e46f48fdf45a3ce92207.tar.xz
gsoc2013-evolution-5bde5537b6d098b16f96e46f48fdf45a3ce92207.tar.zst
gsoc2013-evolution-5bde5537b6d098b16f96e46f48fdf45a3ce92207.zip
Bug #616250 - Restore and Backup options aren't fully descriptive
Diffstat (limited to 'plugins/backup-restore/backup.c')
-rw-r--r--plugins/backup-restore/backup.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/plugins/backup-restore/backup.c b/plugins/backup-restore/backup.c
index 03ff5a4d97..2ce3d08532 100644
--- a/plugins/backup-restore/backup.c
+++ b/plugins/backup-restore/backup.c
@@ -77,11 +77,11 @@ static gboolean complete = FALSE;
static GOptionEntry options[] = {
{ "backup", '\0', 0, G_OPTION_ARG_NONE, &backup_op,
- N_("Backup Evolution directory"), NULL },
+ N_("Back up Evolution directory"), NULL },
{ "restore", '\0', 0, G_OPTION_ARG_NONE, &restore_op,
N_("Restore Evolution directory"), NULL },
{ "check", '\0', 0, G_OPTION_ARG_NONE, &check_op,
- N_("Check Evolution Backup"), NULL },
+ N_("Check Evolution Back up"), NULL },
{ "restart", '\0', 0, G_OPTION_ARG_NONE, &restart_arg,
N_("Restart Evolution"), NULL },
{ "gui", '\0', 0, G_OPTION_ARG_NONE, &gui_arg,
@@ -315,7 +315,7 @@ backup (const gchar *filename)
run_cmd ("rm $HOME/" EVOLUTION_DIR_FILE);
- txt = _("Backup complete");
+ txt = _("Back up complete");
if (restart_arg) {
@@ -407,7 +407,7 @@ restore (const gchar *filename)
run_cmd ("mv $HOME/.camel_certs $HOME/.camel_certs_old");
CANCEL (complete);
- txt = _("Extracting files from backup");
+ txt = _("Extracting files from back up");
if (is_new_format) {
GString *dir_fn;
@@ -479,7 +479,7 @@ restore (const gchar *filename)
}
CANCEL (complete);
- txt = _("Removing temporary backup files");
+ txt = _("Removing temporary back up files");
run_cmd ("rm -rf $DATADIR_old");
run_cmd ("rm -rf $CONFIGDIR_old");
run_cmd ("rm -rf $HOME/.camel_certs_old");
@@ -616,7 +616,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 canceled, removing partial backup file.");
+ g_message ("Back up canceled, removing partial back up file.");
filename = g_shell_quote (bk_file);
cmd = g_strconcat ("rm ", filename, NULL);
@@ -703,7 +703,7 @@ main (gint argc, gchar **argv)
gtk_window_set_default_icon_name ("evolution");
/* Backup / Restore only can have GUI. We should restrict the rest */
- progress_dialog = gtk_dialog_new_with_buttons (backup_op ? _("Evolution Backup"): _("Evolution Restore"),
+ progress_dialog = gtk_dialog_new_with_buttons (backup_op ? _("Evolution Back up"): _("Evolution Restore"),
NULL,
GTK_DIALOG_MODAL,
GTK_STOCK_CANCEL,