summaryrefslogtreecommitdiffstats
path: root/perl-install/standalone/drakbackup
diff options
context:
space:
mode:
authorThierry Vignaud <tvignaud@mandriva.org>2002-07-30 14:57:33 +0000
committerThierry Vignaud <tvignaud@mandriva.org>2002-07-30 14:57:33 +0000
commit0908aa8eba697d699e4df007c6e3f5e2bb2a19ce (patch)
treeadcddfae6bc59d228955be279f22bb2b2870cd98 /perl-install/standalone/drakbackup
parent452d0cee47686e5d941308df27d1b0ecc0a686d8 (diff)
downloaddrakx-0908aa8eba697d699e4df007c6e3f5e2bb2a19ce.tar
drakx-0908aa8eba697d699e4df007c6e3f5e2bb2a19ce.tar.gz
drakx-0908aa8eba697d699e4df007c6e3f5e2bb2a19ce.tar.bz2
drakx-0908aa8eba697d699e4df007c6e3f5e2bb2a19ce.tar.xz
drakx-0908aa8eba697d699e4df007c6e3f5e2bb2a19ce.zip
don't translate useless strings (here: "\n")
Diffstat (limited to 'perl-install/standalone/drakbackup')
-rwxr-xr-xperl-install/standalone/drakbackup2
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);