summaryrefslogtreecommitdiffstats
path: root/perl-install/standalone/drakbackup
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2002-01-08 13:03:19 +0000
committerPascal Rigaux <pixel@mandriva.com>2002-01-08 13:03:19 +0000
commitbdf673229f0f4abbf47ffce2432732a079521c80 (patch)
tree5236d92c2bf7a50ec5e7b5675d5184693720df37 /perl-install/standalone/drakbackup
parent8b15689cb18745a4c86ad6f4047d72eb86abd49f (diff)
downloaddrakx-backup-do-not-use-bdf673229f0f4abbf47ffce2432732a079521c80.tar
drakx-backup-do-not-use-bdf673229f0f4abbf47ffce2432732a079521c80.tar.gz
drakx-backup-do-not-use-bdf673229f0f4abbf47ffce2432732a079521c80.tar.bz2
drakx-backup-do-not-use-bdf673229f0f4abbf47ffce2432732a079521c80.tar.xz
drakx-backup-do-not-use-bdf673229f0f4abbf47ffce2432732a079521c80.zip
another round of bad use of _() fixes.
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 2bded3cf6..3d5c0c7aa 100755
--- a/perl-install/standalone/drakbackup
+++ b/perl-install/standalone/drakbackup
@@ -1537,9 +1537,9 @@ sub system_state {
if ($cfg_file_exist) {
$system_state .= _("\nBackup Sources: \n");
$backup_sys and $system_state .= _("\n- System Files:\n");
- $backup_sys and $system_state .= _("\t\t$_\n") foreach @sys_files;
+ $backup_sys and $system_state .= "\t\t$_\n" foreach @sys_files;
$backup_user and $system_state .= _("\n- Users Files:\n");
- $backup_user and $system_state .= _("\t\t$_\n") foreach @user_list;
+ $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: %s\n", $save_path);
@@ -2939,7 +2939,7 @@ _("options description:
Like with cvs, Drakbackup will ignore all references
included on .backupignore files in each directories.
ex:
- \$> cat .backupignore
+ #> cat .backupignore
*.o
*~
...