diff options
author | Till Kamppeter <tkamppeter@mandriva.com> | 2003-08-25 23:15:21 +0000 |
---|---|---|
committer | Till Kamppeter <tkamppeter@mandriva.com> | 2003-08-25 23:15:21 +0000 |
commit | d1cc348191809530c80b35405317dbe21b999bfd (patch) | |
tree | 025680838797ffb5b28da3da567d75632ce7670e /perl-install/printer/cups.pm | |
parent | a0be523710b157b40e483a72b1e4f59ebdcf804d (diff) | |
download | drakx-d1cc348191809530c80b35405317dbe21b999bfd.tar drakx-d1cc348191809530c80b35405317dbe21b999bfd.tar.gz drakx-d1cc348191809530c80b35405317dbe21b999bfd.tar.bz2 drakx-d1cc348191809530c80b35405317dbe21b999bfd.tar.xz drakx-d1cc348191809530c80b35405317dbe21b999bfd.zip |
Distinguish between printers "Configured on this machine" and
"Configured on other machines", not any more "Local Printers" and
"Remote Printers", so the current dialog is compatible to the new GTK2
dialog.
Diffstat (limited to 'perl-install/printer/cups.pm')
-rw-r--r-- | perl-install/printer/cups.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/printer/cups.pm b/perl-install/printer/cups.pm index 127c342bb..521e196a3 100644 --- a/perl-install/printer/cups.pm +++ b/perl-install/printer/cups.pm @@ -37,7 +37,7 @@ sub get_formatted_remote_queues { # CUPS daemon knows due to broadcasting of remote servers or # "BrowsePoll" entries in the local /etc/cups/cupsd.conf/ map { - join('!', if_($::expert, N("CUPS")), N("Remote Printers"), $_); + join('!', if_($::expert, N("CUPS")), N("Configured on other machines"), $_); } map { my $comment = N("On CUPS server \"%s\"", $_->{ipp}) . ($_->{queuename} eq $printer->{DEFAULT} ? N(" (Default)") : ""); "$_->{queuename}: $comment"; |