diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2002-01-08 13:03:19 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2002-01-08 13:03:19 +0000 |
commit | bdf673229f0f4abbf47ffce2432732a079521c80 (patch) | |
tree | 5236d92c2bf7a50ec5e7b5675d5184693720df37 | |
parent | 8b15689cb18745a4c86ad6f4047d72eb86abd49f (diff) | |
download | drakx-bdf673229f0f4abbf47ffce2432732a079521c80.tar drakx-bdf673229f0f4abbf47ffce2432732a079521c80.tar.gz drakx-bdf673229f0f4abbf47ffce2432732a079521c80.tar.bz2 drakx-bdf673229f0f4abbf47ffce2432732a079521c80.tar.xz drakx-bdf673229f0f4abbf47ffce2432732a079521c80.zip |
another round of bad use of _() fixes.
-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 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 *~ ... |