diff options
author | Guillaume Cottenceau <gc@mandriva.com> | 2002-01-20 17:53:44 +0000 |
---|---|---|
committer | Guillaume Cottenceau <gc@mandriva.com> | 2002-01-20 17:53:44 +0000 |
commit | d7cb0ded898eae0b57fdcbfe5da874237693e9ce (patch) | |
tree | ac512e2dc2de27b6808051b45d4784c47132c8ee /perl-install | |
parent | f72cffe297df34a8f4292179b9e1f68561fe90de (diff) | |
download | drakx-backup-do-not-use-d7cb0ded898eae0b57fdcbfe5da874237693e9ce.tar drakx-backup-do-not-use-d7cb0ded898eae0b57fdcbfe5da874237693e9ce.tar.gz drakx-backup-do-not-use-d7cb0ded898eae0b57fdcbfe5da874237693e9ce.tar.bz2 drakx-backup-do-not-use-d7cb0ded898eae0b57fdcbfe5da874237693e9ce.tar.xz drakx-backup-do-not-use-d7cb0ded898eae0b57fdcbfe5da874237693e9ce.zip |
sorry, _("$_") is not allowed
Diffstat (limited to 'perl-install')
-rwxr-xr-x | perl-install/standalone/drakbackup | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/perl-install/standalone/drakbackup b/perl-install/standalone/drakbackup index 53b0dd495..04bdd2c05 100755 --- a/perl-install/standalone/drakbackup +++ b/perl-install/standalone/drakbackup @@ -473,11 +473,11 @@ sub ftp_client { $ftp->cwd("$host_path"); foreach (@file_list_to_send_by_ftp) { $pbar->set_value(0); - $interactive and progress($pbar, 0.5, _("$_")); -# $interactive and progress($pbar, 0.5, _("$_")); + $interactive and progress($pbar, 0.5, $_); +# $interactive and progress($pbar, 0.5, $_); $interactive and $pbar->set_show_text( $_ ); $ftp->put("$_"); - $interactive and progress($pbar, 0.5, _("$_")); + $interactive and progress($pbar, 0.5, $_); $interactive and $pbar->set_show_text( $_ ); $interactive and progress($pbar3, 1/@file_list_to_send_by_ftp, _("total progess")); } |