From c0716f2d6d5c67e60626bc34c1e983eb8aae2cf1 Mon Sep 17 00:00:00 2001 From: Stew Benedict Date: Tue, 9 Mar 2004 15:50:25 +0000 Subject: Reverse trivial translation typo. Change the_time() usage. --- perl-install/standalone/drakbackup | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'perl-install/standalone/drakbackup') diff --git a/perl-install/standalone/drakbackup b/perl-install/standalone/drakbackup index 8f794a52a..4f60483f4 100755 --- a/perl-install/standalone/drakbackup +++ b/perl-install/standalone/drakbackup @@ -283,7 +283,7 @@ sub all_user_list() { sub the_time() { my ($sec, $min, $hour, $day, $month, $year) = localtime(time()); - $the_time = sprintf("_%d%02d%02d_%02d%02d%02d", $year + 1900, $month + 1, $day, $hour, $min, $sec); + sprintf("_%d%02d%02d_%02d%02d%02d", $year + 1900, $month + 1, $day, $hour, $min, $sec); } sub get_tape_info() { @@ -1012,7 +1012,7 @@ sub build_backup_files() { $interactive and cursor_wait(); read_conf_file(); - the_time(); + $the_time = the_time(); $conf{SEND_MAIL} and complete_results(); -d $conf{PATH_TO_SAVE} or mkdir_p($conf{PATH_TO_SAVE}); @@ -2831,7 +2831,7 @@ sub restore_aff_backup_problems() { my $text = new Gtk2::TextView; my $restore_pbs_state = N("List of data corrupted:\n\n"); $restore_pbs_state .= "\t\t$_\n" foreach @files_corrupted; - $restore_pbs_state .= N("Please uncheck or remove it for the next time."); + $restore_pbs_state .= N("Please uncheck or remove it on next time."); gtktext_insert($text, [ [ $restore_pbs_state ] ]); button_box_restore_main(); -- cgit v1.2.1