diff options
author | damien <damien@mandriva.com> | 2002-03-12 13:50:00 +0000 |
---|---|---|
committer | damien <damien@mandriva.com> | 2002-03-12 13:50:00 +0000 |
commit | 5b97cd80afe34e1e1ea673488d54f7d2c7b309f5 (patch) | |
tree | 35b6b263afc31c2248820700622d2ada117b0da7 /perl-install/standalone/drakbackup | |
parent | 998267bf3474332c853e312d4a718e81a06c2980 (diff) | |
download | drakx-backup-do-not-use-5b97cd80afe34e1e1ea673488d54f7d2c7b309f5.tar drakx-backup-do-not-use-5b97cd80afe34e1e1ea673488d54f7d2c7b309f5.tar.gz drakx-backup-do-not-use-5b97cd80afe34e1e1ea673488d54f7d2c7b309f5.tar.bz2 drakx-backup-do-not-use-5b97cd80afe34e1e1ea673488d54f7d2c7b309f5.tar.xz drakx-backup-do-not-use-5b97cd80afe34e1e1ea673488d54f7d2c7b309f5.zip |
minor bug correction
Diffstat (limited to 'perl-install/standalone/drakbackup')
-rwxr-xr-x | perl-install/standalone/drakbackup | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/perl-install/standalone/drakbackup b/perl-install/standalone/drakbackup index 303f4b1da..d487add3b 100755 --- a/perl-install/standalone/drakbackup +++ b/perl-install/standalone/drakbackup @@ -445,14 +445,14 @@ sub read_conf_file { sub complete_results { system_state(); - $results .= _("***********************************************************************\n\n"); + $results .= "***********************************************************************\n\n"; $daemon or $results .= _("\n DrakBackup Report \n\n"); $daemon and $results .= _("\n DrakBackup Daemon Report\n\n\n"); - $results .= _("***********************************************************************\n\n"); + $results .= "***********************************************************************\n\n"; $results .= $system_state; - $results .= _("\n\n***********************************************************************\n\n"); + $results .= "\n\n***********************************************************************\n\n"; $results .= _("\n DrakBackup Report Details\n\n\n"); - $results .= _("***********************************************************************\n\n"); + $results .= "***********************************************************************\n\n"; } @@ -674,7 +674,7 @@ sub build_backup_files { $results .= _("file list send by FTP : %s\n ", $_) foreach @file_list_to_send_by_ftp; $interactive and build_backup_ftp_status(); if (ftp_client()) { - $results .= _("\n(!) FTP connexion problem: It was not possible to send your backup files by FTP.\n"); + $results .= _("\n FTP connexion problem: It was not possible to send your backup files by FTP.\n"); $interactive and client_ftp_pb(); } } @@ -684,7 +684,7 @@ sub build_backup_files { if ($send_mail) { if (send_mail("$results")) { $interactive and send_mail_pb(); - $interactive or print _("(!) Error during mail sending. \n"); + $interactive or print _(" Error during mail sending. \n"); } } } |