summaryrefslogtreecommitdiffstats
path: root/perl-install/standalone/drakbackup
diff options
context:
space:
mode:
authorStefan Siegel <siegel@linux-mandrake.com>2002-01-21 11:43:03 +0000
committerStefan Siegel <siegel@linux-mandrake.com>2002-01-21 11:43:03 +0000
commit4164d6b0846b983665c9c2f04185b80fc7226f97 (patch)
treee3f83ea632b6b2034c722cdfc0caa4e4badfdcf8 /perl-install/standalone/drakbackup
parenteec2e01efbc2e096387c21efc0dd66656f389b72 (diff)
downloaddrakx-backup-do-not-use-4164d6b0846b983665c9c2f04185b80fc7226f97.tar
drakx-backup-do-not-use-4164d6b0846b983665c9c2f04185b80fc7226f97.tar.gz
drakx-backup-do-not-use-4164d6b0846b983665c9c2f04185b80fc7226f97.tar.bz2
drakx-backup-do-not-use-4164d6b0846b983665c9c2f04185b80fc7226f97.tar.xz
drakx-backup-do-not-use-4164d6b0846b983665c9c2f04185b80fc7226f97.zip
fixed i18n bugs
Diffstat (limited to 'perl-install/standalone/drakbackup')
-rwxr-xr-xperl-install/standalone/drakbackup6
1 files changed, 3 insertions, 3 deletions
diff --git a/perl-install/standalone/drakbackup b/perl-install/standalone/drakbackup
index 04bdd2c05..5ba589266 100755
--- a/perl-install/standalone/drakbackup
+++ b/perl-install/standalone/drakbackup
@@ -664,7 +664,7 @@ sub build_backup_files {
#ssh_client();
}
if (($where_net_ftp && !$daemon) || ($daemon && $ftp_daemon)) {
- $results .= _("file list send by FTP : $_\n ") foreach @file_list_to_send_by_ftp;
+ $results .= _("file list send by FTP : %s\n ", $_) foreach @file_list_to_send_by_ftp;
build_backup_ftp_status();
ftp_client();
}
@@ -1643,12 +1643,12 @@ sub system_state {
@list_other and $system_state .= "\t\t$_\n" foreach @list_other;
$where_hd and $system_state .= _("\n- Save on Hard drive on path : %s\n", $save_path);
$where_net_ftp and $system_state .= _("\n- Save on FTP on host : %s\n", $host_name);
- $where_net_ftp and $system_state .= _("\t\t user name: $login_user\n\t\t on path: $host_path \n");
+ $where_net_ftp and $system_state .= _("\t\t user name: %s\n\t\t on path: %s \n", $login_user, $host_path);
$system_state .= _("\n- Options:\n");
$backup_sys or $system_state .= _("\tDo not include System Files\n");
if ($comp_mode) { $system_state .= _("\tBackups use tar and bzip2\n"); }
else { $system_state .= _("\tBackups use tar and gzip\n"); }
- $system_state .= _("\n- Daemon ($when_space) include :\n");
+ $system_state .= _("\n- Daemon (%s) include :\n", $when_space);
$hd_daemon and $system_state .= _("\t-Hard drive.\n");
$cd_daemon and $system_state .= _("\t-CDROM.\n");
$ftp_daemon and $system_state .= _("\t-Network by FTP.\n");