From 8b15689cb18745a4c86ad6f4047d72eb86abd49f Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Tue, 8 Jan 2002 12:08:09 +0000 Subject: fixed bad use of _(). --- perl-install/standalone/drakbackup | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/perl-install/standalone/drakbackup b/perl-install/standalone/drakbackup index 00a00e217..2bded3cf6 100755 --- a/perl-install/standalone/drakbackup +++ b/perl-install/standalone/drakbackup @@ -1541,8 +1541,8 @@ sub system_state { $backup_user and $system_state .= _("\n- Users Files:\n"); $backup_user and $system_state .= _("\t\t$_\n") foreach @user_list; @list_other and $system_state .= _("\n- Other Files:\n"); - @list_other and $system_state .= _("\t\t$_\n") foreach @list_other; - $system_state .= _("\n- Path to save backups: $save_path\n"); + @list_other and $system_state .= "\t\t$_\n" foreach @list_other; + $system_state .= _("\n- Path to save backups: %s\n", $save_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 "); } @@ -1690,7 +1690,7 @@ sub restore_aff_result { $do_restore = gtkpack_(new Gtk::VBox(0,10), 1, new Gtk::VBox(0,10), 0, _(" All your selectionned data have been "), - 0, _(" Successfuly Restored on $restore_path "), + 0, _(" Successfuly Restored on %s ", $restore_path), 1, new Gtk::VBox(0,10), ), ); -- cgit v1.2.1