diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2002-01-08 12:08:09 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2002-01-08 12:08:09 +0000 |
commit | 8b15689cb18745a4c86ad6f4047d72eb86abd49f (patch) | |
tree | c7db40fb73a5d62c46c9d18f4d0034d33ad4aa93 | |
parent | 7bb135a4d0cdd2ed593aafe0d166e75f2163a660 (diff) | |
download | drakx-8b15689cb18745a4c86ad6f4047d72eb86abd49f.tar drakx-8b15689cb18745a4c86ad6f4047d72eb86abd49f.tar.gz drakx-8b15689cb18745a4c86ad6f4047d72eb86abd49f.tar.bz2 drakx-8b15689cb18745a4c86ad6f4047d72eb86abd49f.tar.xz drakx-8b15689cb18745a4c86ad6f4047d72eb86abd49f.zip |
fixed bad use of _().
-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 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), ), ); |