From ebc49654e7ec7da8695ccc259080dfa03803d5c2 Mon Sep 17 00:00:00 2001 From: Till Kamppeter Date: Fri, 2 Aug 2002 00:15:04 +0000 Subject: Corrected strings for printer queue list in main window. --- perl-install/printer.pm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'perl-install/printer.pm') diff --git a/perl-install/printer.pm b/perl-install/printer.pm index f780963af..8db2af7a7 100644 --- a/perl-install/printer.pm +++ b/perl-install/printer.pm @@ -561,17 +561,17 @@ sub make_menuentry { } elsif ($connect =~ m!^file:(.+)$!) { $connection = _(", printing to %s", $1); } elsif ($connect =~ m!^lpd://([^/]+)/([^/]+)/?$!) { - $connection = _("on LPD server \"%s\", printer \"%s\"", $2, $1); + $connection = _(" on LPD server \"%s\", printer \"%s\"", $2, $1); } elsif ($connect =~ m!^socket://([^/:]+):([^/:]+)/?$!) { $connection = _(", TCP/IP host \"%s\", port %s", $1, $2); } elsif (($connect =~ m!^smb://([^/\@]+)/([^/\@]+)/?$!) || ($connect =~ m!^smb://.*/([^/\@]+)/([^/\@]+)/?$!) || ($connect =~ m!^smb://.*\@([^/\@]+)/([^/\@]+)/?$!)) { - $connection = _("on Windows server \"%s\", share \"%s\"", $1, $2); + $connection = _(" on SMB/Windows server \"%s\", share \"%s\"", $1, $2); } elsif (($connect =~ m!^ncp://([^/\@]+)/([^/\@]+)/?$!) || ($connect =~ m!^ncp://.*/([^/\@]+)/([^/\@]+)/?$!) || ($connect =~ m!^ncp://.*\@([^/\@]+)/([^/\@]+)/?$!)) { - $connection = _("on Novell server \"%s\", printer \"%s\"", $1, $2); + $connection = _(" on Novell server \"%s\", printer \"%s\"", $1, $2); } elsif ($connect =~ m!^postpipe:(.+)$!) { $connection = _(", using command %s", $1); } else { -- cgit v1.2.1