summaryrefslogtreecommitdiffstats
path: root/perl-install/standalone/drakbackup
diff options
context:
space:
mode:
authorStew Benedict <stewb@mandriva.org>2004-03-09 15:50:25 +0000
committerStew Benedict <stewb@mandriva.org>2004-03-09 15:50:25 +0000
commitc0716f2d6d5c67e60626bc34c1e983eb8aae2cf1 (patch)
tree74cf034e7d56f36a7d3d3b817c034afc2a42173c /perl-install/standalone/drakbackup
parent32f73df73b3aa97159d5f2b197707263f34d6b3c (diff)
downloaddrakx-backup-do-not-use-c0716f2d6d5c67e60626bc34c1e983eb8aae2cf1.tar
drakx-backup-do-not-use-c0716f2d6d5c67e60626bc34c1e983eb8aae2cf1.tar.gz
drakx-backup-do-not-use-c0716f2d6d5c67e60626bc34c1e983eb8aae2cf1.tar.bz2
drakx-backup-do-not-use-c0716f2d6d5c67e60626bc34c1e983eb8aae2cf1.tar.xz
drakx-backup-do-not-use-c0716f2d6d5c67e60626bc34c1e983eb8aae2cf1.zip
Reverse trivial translation typo. Change the_time() usage.
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 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();