diff options
author | Till Kamppeter <tkamppeter@mandriva.com> | 2002-08-02 00:15:04 +0000 |
---|---|---|
committer | Till Kamppeter <tkamppeter@mandriva.com> | 2002-08-02 00:15:04 +0000 |
commit | ebc49654e7ec7da8695ccc259080dfa03803d5c2 (patch) | |
tree | 3e02724cbec6898d4284cd61184b6038c7c4ca64 /perl-install/printer.pm | |
parent | 84475732515cf646ae4e735b014c5bd8cf2e3ab5 (diff) | |
download | drakx-ebc49654e7ec7da8695ccc259080dfa03803d5c2.tar drakx-ebc49654e7ec7da8695ccc259080dfa03803d5c2.tar.gz drakx-ebc49654e7ec7da8695ccc259080dfa03803d5c2.tar.bz2 drakx-ebc49654e7ec7da8695ccc259080dfa03803d5c2.tar.xz drakx-ebc49654e7ec7da8695ccc259080dfa03803d5c2.zip |
Corrected strings for printer queue list in main window.
Diffstat (limited to 'perl-install/printer.pm')
-rw-r--r-- | perl-install/printer.pm | 6 |
1 files changed, 3 insertions, 3 deletions
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 { |