diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2002-07-30 14:57:33 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2002-07-30 14:57:33 +0000 |
commit | 0908aa8eba697d699e4df007c6e3f5e2bb2a19ce (patch) | |
tree | adcddfae6bc59d228955be279f22bb2b2870cd98 /perl-install/standalone/drakbackup | |
parent | 452d0cee47686e5d941308df27d1b0ecc0a686d8 (diff) | |
download | drakx-backup-do-not-use-0908aa8eba697d699e4df007c6e3f5e2bb2a19ce.tar drakx-backup-do-not-use-0908aa8eba697d699e4df007c6e3f5e2bb2a19ce.tar.gz drakx-backup-do-not-use-0908aa8eba697d699e4df007c6e3f5e2bb2a19ce.tar.bz2 drakx-backup-do-not-use-0908aa8eba697d699e4df007c6e3f5e2bb2a19ce.tar.xz drakx-backup-do-not-use-0908aa8eba697d699e4df007c6e3f5e2bb2a19ce.zip |
don't translate useless strings (here: "\n")
Diffstat (limited to 'perl-install/standalone/drakbackup')
-rwxr-xr-x | perl-install/standalone/drakbackup | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/standalone/drakbackup b/perl-install/standalone/drakbackup index cea2f41ac..d631da458 100755 --- a/perl-install/standalone/drakbackup +++ b/perl-install/standalone/drakbackup @@ -1978,7 +1978,7 @@ sub system_state { $where_cd and $system_state .= _(" on device : %s", $cd_device); $where_tape and $system_state .= _("\n- Save to Tape on device : %s", $tape_device); $media_erase and $system_state .= _("\t\tErase=%s", $erase_media); - ($where_cd || $where_tape) and $system_state .= _("\n"); + ($where_cd || $where_tape) and $system_state .= "\n"; $where_net and $system_state .= _("\n- Save via %s on host : %s\n", $net_proto, $host_name); $where_net and $system_state .= _("\t\t user name: %s\n\t\t on path: %s \n", $login_user, $host_path); |