diff --git a/.cvsignore b/.cvsignore index e2ec284..561290d 100644 --- a/.cvsignore +++ b/.cvsignore @@ -197,3 +197,4 @@ system-config-printer-1.1.2.tar.bz2 system-config-printer-1.1.3.tar.bz2 system-config-printer-1.1.4.tar.bz2 system-config-printer-1.1.5.tar.bz2 +system-config-printer-1.1.6.tar.bz2 diff --git a/sources b/sources index de35717..50c0be2 100644 --- a/sources +++ b/sources @@ -1,3 +1,3 @@ ac8f98a40b0fc4b6ab4470f10489887a pysmbc-1.0.6.tar.bz2 ff634a6751f8a859ed26751bf03abef0 pycups-1.9.45.tar.bz2 -02673e5db137fde1017d98dc7a4a66a5 system-config-printer-1.1.5.tar.bz2 +b07e1d75130030fa3beae3b698c2d32b system-config-printer-1.1.6.tar.bz2 diff --git a/system-config-printer-1.1.5.tar.bz2.sig b/system-config-printer-1.1.5.tar.bz2.sig deleted file mode 100644 index 4445372..0000000 Binary files a/system-config-printer-1.1.5.tar.bz2.sig and /dev/null differ diff --git a/system-config-printer-1.1.6.tar.bz2.sig b/system-config-printer-1.1.6.tar.bz2.sig new file mode 100644 index 0000000..17f4456 Binary files /dev/null and b/system-config-printer-1.1.6.tar.bz2.sig differ diff --git a/system-config-printer-git-1.1.x.patch b/system-config-printer-git-1.1.x.patch deleted file mode 100644 index 671073e..0000000 --- a/system-config-printer-git-1.1.x.patch +++ /dev/null @@ -1,108750 +0,0 @@ -diff -up system-config-printer-1.1.5/authconn.py.git-1.1.x system-config-printer-1.1.5/authconn.py ---- system-config-printer-1.1.5/authconn.py.git-1.1.x 2009-03-03 13:29:34.000000000 +0000 -+++ system-config-printer-1.1.5/authconn.py 2009-03-10 17:43:31.000000000 +0000 -@@ -205,9 +205,10 @@ class Connection: - break - except cups.IPPError, (e, m): - if self._use_pk and m == 'pkcancel': -- title = 'Unauthorized request (%s)' % fname -- text = 'You are not authorized for the requested action' -- show_info_dialog (title, text, None) -+ title = _('Unauthorized request (%s)') % fname -+ text = _("You are not authorized to carry out the" -+ "requested action.") -+ show_error_dialog (title, text, None) - raise cups.IPPError (0, _("Operation canceled")) - if not self._cancel and (e == cups.IPP_NOT_AUTHORIZED or - e == cups.IPP_FORBIDDEN): -@@ -245,13 +246,18 @@ class Connection: - if self._lock: - gtk.gdk.threads_enter () - -+ try: -+ msg = _("CUPS server error (%s)") % self._operation_stack[0] -+ except IndexError: -+ msg = _("CUPS server error") -+ - d = gtk.MessageDialog (self._parent, - gtk.DIALOG_MODAL | - gtk.DIALOG_DESTROY_WITH_PARENT, - gtk.MESSAGE_ERROR, - gtk.BUTTONS_NONE, -- _("CUPS server error (%s)") % -- self._operation_stack[0]) -+ msg) -+ - d.format_secondary_text (_("There was an error during the " - "CUPS operation: '%s'." % message)) - d.add_buttons (gtk.STOCK_CANCEL, gtk.RESPONSE_CANCEL, -@@ -397,8 +403,12 @@ class Connection: - - # Prompt. - if len (self._operation_stack) > 0: -- d = AuthDialog (title=_("Authentication (%s)") % -- self._operation_stack[0], -+ try: -+ title = _("Authentication (%s)") % self._operation_stack[0] -+ except IndexError: -+ title = _("Authentication") -+ -+ d = AuthDialog (title=title, - parent=self._parent) - else: - d = AuthDialog (parent=self._parent) -diff -U0 system-config-printer-1.1.5/ChangeLog.git-1.1.x system-config-printer-1.1.5/ChangeLog ---- system-config-printer-1.1.5/ChangeLog.git-1.1.x 2009-03-03 13:29:34.000000000 +0000 -+++ system-config-printer-1.1.5/ChangeLog 2009-03-10 17:43:31.000000000 +0000 -@@ -0,0 +1,27 @@ -+2009-03-10 Tim Waugh -+ -+ * cupshelpers/ppds.py (ppdMakeModelSplit): Strip " hpijs" from PPD -+ names. -+ (ppdMakeModelSplit.strip_suffix): Removed dead code. -+ -+2009-03-10 Tim Waugh -+ -+ * cupshelpers/ppds.py (PPDs.getPPDNameFromDeviceID): Better PPD -+ fallback searching. -+ -+2009-03-10 Till Kamppeter -+ -+ * newprinternotification.conf: Adapted D-Bus policy file to the -+ new D-Bus defaults (Ubuntu #318776). -+ -+2009-03-10 Tim Waugh -+ -+ * cupshelpers/ppds.py (PPDs._findBestMatchPPDs): Don't try search -+ for a model series if there are no digits in the model name. -+ -+2009-03-09 Tim Waugh -+ -+ * cupshelpers/cupshelpers.py (Printer._expand_flags): Use -+ setlocale() to save current LC_CTYPE value, not getlocale() (bug -+ #489313). -+ -diff -up system-config-printer-1.1.5/cupshelpers/cupshelpers.py.git-1.1.x system-config-printer-1.1.5/cupshelpers/cupshelpers.py ---- system-config-printer-1.1.5/cupshelpers/cupshelpers.py.git-1.1.x 2009-03-03 13:29:34.000000000 +0000 -+++ system-config-printer-1.1.5/cupshelpers/cupshelpers.py 2009-03-10 17:43:31.000000000 +0000 -@@ -52,7 +52,7 @@ class Printer: - prefix_length = len(prefix) - - # Use the C locale for lower() (trac #151). -- current_ctype = locale.getlocale (locale.LC_CTYPE) -+ current_ctype = locale.setlocale (locale.LC_CTYPE) - locale.setlocale (locale.LC_CTYPE, "C") - - # loop over cups constants -diff -up system-config-printer-1.1.5/cupshelpers/ppds.py.git-1.1.x system-config-printer-1.1.5/cupshelpers/ppds.py ---- system-config-printer-1.1.5/cupshelpers/ppds.py.git-1.1.x 2009-02-10 18:33:35.000000000 +0000 -+++ system-config-printer-1.1.5/cupshelpers/ppds.py 2009-03-10 17:43:31.000000000 +0000 -@@ -2,9 +2,9 @@ - - ## system-config-printer - --## Copyright (C) 2006, 2007, 2008 Red Hat, Inc. -+## Copyright (C) 2006, 2007, 2008, 2009 Red Hat, Inc. - ## Copyright (C) 2006 Florian Festi --## Copyright (C) 2006, 2007, 2008 Tim Waugh -+## Copyright (C) 2006, 2007, 2008, 2009 Tim Waugh - - ## This program is free software; you can redistribute it and/or modify - ## it under the terms of the GNU General Public License as published by -@@ -99,11 +99,6 @@ def ppdMakeModelSplit (ppd_make_and_mode - make = ppd_make_and_model - model = '' - -- def strip_suffix (model, suffix): -- if model.endswith (suffix): -- return model[:-len(suffix)] -- return model -- - # Model names do not contain a comma, truncate all from the - # comma on - c = model.find (",") -@@ -154,6 +149,7 @@ def ppdMakeModelSplit (ppd_make_and_mode - model = re.sub (r"(?i)\s*PostScript\s*$", "", model) - model = re.sub (r"(?i)\s*\(\s*\)", "", model) - model = re.sub (r"(?i)\s*[\-\/]\s*$", "", model) -+ model = re.sub (r"(?i)\s*hpijs\s*$", "", model) - - for mfr in [ "Apple", "Canon", "Epson", "Lexmark", "Oki" ]: - if make == mfr.upper (): -@@ -550,27 +546,27 @@ class PPDs: - ppdnamelist = generic - - if not ppdnamelist: -- _debugprint ("Text-only fallback") - status = self.STATUS_NO_DRIVER -- ppdnamelist = ["textonly.ppd"] -- tppdfound = 0 -- for ppdpath in self.ppds.keys (): -- if ppdpath.endswith (ppdnamelist[0]): -- tppdfound = 1 -- ppdnamelist = [ppdpath] -- break -- if tppdfound == 0: -- _debugprint ("No text-only driver?! Using postscript.ppd") -- ppdnamelist = ["postscript.ppd"] -- psppdfound = 0 -+ fallbacks = ["textonly.ppd", "postscript.ppd"] -+ found = False -+ for fallback in fallbacks: -+ _debugprint ("'%s' fallback" % fallback) -+ fallbackgz = fallback + ".gz" - for ppdpath in self.ppds.keys (): -- if ppdpath.endswith (ppdnamelist[0]): -- psppdfound = 1 -+ if (ppdpath.endswith (fallback) or -+ ppdpath.endswith (fallbackgz)): - ppdnamelist = [ppdpath] -+ found = True - break -- if psppdfound == 0: -- _debugprint ("No postscript.ppd; choosing any") -- ppdnamelist = [self.ppds.keys ()[0]] -+ -+ if found: -+ break -+ -+ _debugprint ("Fallback '%s' not available" % fallback) -+ -+ if not found: -+ _debugprint ("No fallback available; choosing any") -+ ppdnamelist = [self.ppds.keys ()[0]] - - if id_matched: - _debugprint ("Checking DES field") -@@ -700,39 +696,39 @@ class PPDs: - modelnumber = 0 - if digits > 0: - modelnumber = int (modelid[digits_start:digits_end]) -- modelpattern = (modelid[:digits_start] + "%d" + -- modelid[digits_end:]) -- _debugprint ("Searching for model ID '%s', '%s' %% %d" % -- (modelid, modelpattern, modelnumber)) -- ignore_digits = 0 -- best_mdl = None -- found = False -- while ignore_digits < digits: -- div = pow (10, ignore_digits) -- modelid = modelpattern % ((modelnumber / div) * div) -- _debugprint ("Ignoring %d of %d digits, trying %s" % -- (ignore_digits, digits, modelid)) -- -- for (name, ppds) in mdlitems: -- for word in name.split (' '): -- if word.lower () == modelid: -- found = True -+ modelpattern = (modelid[:digits_start] + "%d" + -+ modelid[digits_end:]) -+ _debugprint ("Searching for model ID '%s', '%s' %% %d" % -+ (modelid, modelpattern, modelnumber)) -+ ignore_digits = 0 -+ best_mdl = None -+ found = False -+ while ignore_digits < digits: -+ div = pow (10, ignore_digits) -+ modelid = modelpattern % ((modelnumber / div) * div) -+ _debugprint ("Ignoring %d of %d digits, trying %s" % -+ (ignore_digits, digits, modelid)) -+ -+ for (name, ppds) in mdlitems: -+ for word in name.split (' '): -+ if word.lower () == modelid: -+ found = True -+ break -+ -+ if found: -+ best_mdl = ppds.keys () - break - - if found: -- best_mdl = ppds.keys () - break - -- if found: -- break -- -- ignore_digits += 1 -- if digits < 2: -- break -+ ignore_digits += 1 -+ if digits < 2: -+ break - -- if found: -- ppdnamelist = best_mdl -- status = self.STATUS_MODEL_MISMATCH -+ if found: -+ ppdnamelist = best_mdl -+ status = self.STATUS_MODEL_MISMATCH - - return (status, ppdnamelist) - -diff -up system-config-printer-1.1.5/glade/NewPrinterWindow.glade.git-1.1.x system-config-printer-1.1.5/glade/NewPrinterWindow.glade ---- system-config-printer-1.1.5/glade/NewPrinterWindow.glade.git-1.1.x 2009-03-03 13:29:34.000000000 +0000 -+++ system-config-printer-1.1.5/glade/NewPrinterWindow.glade 2009-03-10 17:43:31.000000000 +0000 -@@ -2504,242 +2504,6 @@ DTR/DSR (Hardware) - - - -- -- True -- 0.5 -- 0.5 -- 1 -- 1 -- 3 -- 0 -- 0 -- 6 -- -- -- -- True -- 0 -- 0.5 -- GTK_SHADOW_NONE -- -- -- -- True -- 0.5 -- 0.5 -- 1 -- 1 -- 6 -- 0 -- 12 -- 0 -- -- -- -- True -- 2 -- 3 -- False -- 6 -- 6 -- -- -- -- True -- Host: -- False -- False -- GTK_JUSTIFY_LEFT -- False -- False -- 0 -- 0.5 -- 0 -- 0 -- PANGO_ELLIPSIZE_NONE -- -1 -- False -- 0 -- -- -- -- -- -- 0 -- 1 -- 0 -- 1 -- fill -- -- -- -- -- -- -- True -- True -- True -- True -- 0 -- -- True -- False -- -- -- -- -- -- -- 1 -- 2 -- 0 -- 1 -- -- -- -- -- -- -- True -- False -- True -- Find _Queue... -- True -- GTK_RELIEF_NORMAL -- True -- -- -- -- 2 -- 3 -- 0 -- 1 -- fill -- -- -- -- -- -- -- True -- URI: -- False -- False -- GTK_JUSTIFY_LEFT -- False -- False -- 0 -- 0.5 -- 0 -- 0 -- PANGO_ELLIPSIZE_NONE -- -1 -- False -- 0 -- -- -- -- -- -- 0 -- 1 -- 1 -- 2 -- fill -- -- -- -- -- -- -- True -- label2221 -- False -- False -- GTK_JUSTIFY_LEFT -- False -- True -- 0 -- 0.5 -- 0 -- 0 -- PANGO_ELLIPSIZE_END -- 35 -- False -- 0 -- -- -- -- -- -- 1 -- 3 -- 1 -- 2 -- fill -- -- -- -- -- -- -- -- -- -- -- True -- <b>HP Printer (HPLIP) via network</b> -- False -- True -- GTK_JUSTIFY_LEFT -- False -- False -- 0.5 -- 0.5 -- 0 -- 0 -- PANGO_ELLIPSIZE_NONE -- -1 -- False -- 0 -- -- -- label_item -- -- -- -- -- -- -- False -- True -- -- -- -- -- -- True -- HP -- False -- False -- GTK_JUSTIFY_LEFT -- False -- False -- 0.5 -- 0.5 -- 0 -- 0 -- PANGO_ELLIPSIZE_NONE -- -1 -- False -- 0 -- -- -- tab -- -- -- -- - - True - 0.5 -diff -up system-config-printer-1.1.5/jobviewer.py.git-1.1.x system-config-printer-1.1.5/jobviewer.py ---- system-config-printer-1.1.5/jobviewer.py.git-1.1.x 2009-03-03 13:29:34.000000000 +0000 -+++ system-config-printer-1.1.5/jobviewer.py 2009-03-10 17:43:31.000000000 +0000 -@@ -413,7 +413,7 @@ class JobViewer (GtkGUI, monitor.Watcher - t = _("%d weeks ago") % weeks - else: - need_update = False -- t = time.strftime ("%B %Y", created) -+ t = time.strftime ("%B %Y", time.localtime (created)) - - self.store.set_value (iter, 5, t) - -@@ -771,13 +771,13 @@ class JobViewer (GtkGUI, monitor.Watcher - type = gnomekeyring.ITEM_NETWORK_PASSWORD - attrs = dialog.get_data ("keyring-attrs") - auth_info_required = dialog.get_data ('auth-info-required') -- try: -- ind = auth_info_required.index ('username') -- attrs['user'] = auth_info[ind] -- except IndexError: -- pass -+ if attrs != None and auth_info_required != None: -+ try: -+ ind = auth_info_required.index ('username') -+ attrs['user'] = auth_info[ind] -+ except IndexError: -+ pass - -- if attrs != None: - name = "%s@%s (%s)" % (attrs.get ("user"), - attrs.get ("server"), - attrs.get ("protocol")) -diff -up system-config-printer-1.1.5/monitor.py.git-1.1.x system-config-printer-1.1.5/monitor.py ---- system-config-printer-1.1.5/monitor.py.git-1.1.x 2009-03-03 13:29:34.000000000 +0000 -+++ system-config-printer-1.1.5/monitor.py 2009-03-10 17:43:31.000000000 +0000 -@@ -18,6 +18,7 @@ - ## Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - - import cups -+cups.require("1.9.42") - import dbus - import dbus.glib - import gobject -diff -up system-config-printer-1.1.5/newprinternotification.conf.git-1.1.x system-config-printer-1.1.5/newprinternotification.conf ---- system-config-printer-1.1.5/newprinternotification.conf.git-1.1.x 2009-02-04 16:14:05.000000000 +0000 -+++ system-config-printer-1.1.5/newprinternotification.conf 2009-03-10 17:43:31.000000000 +0000 -@@ -14,11 +14,18 @@ - - -- -- -- - -- -+ -+ -+ -- -+ -+ -+ -+ -+ -+ - -diff -up system-config-printer-1.1.5/po/ar.po.git-1.1.x system-config-printer-1.1.5/po/ar.po ---- system-config-printer-1.1.5/po/ar.po.git-1.1.x 2009-03-03 22:21:45.000000000 +0000 -+++ system-config-printer-1.1.5/po/ar.po 2009-03-10 17:43:31.000000000 +0000 -@@ -11,7 +11,7 @@ msgid "" - msgstr "" - "Project-Id-Version: ar\n" - "Report-Msgid-Bugs-To: https://bugzilla.redhat.com/bugzilla\n" --"POT-Creation-Date: 2009-03-02 23:22+0000\n" -+"POT-Creation-Date: 2009-03-10 16:51+0000\n" - "PO-Revision-Date: 2004-12-05 19:23+0300\n" - "Last-Translator: Munzir Taha \n" - "Language-Team: Arabic \n" -@@ -57,12 +57,12 @@ msgstr "" - msgid "Enter IP address" - msgstr "اسم الخادم أو عنوانه IP:" - --#: ../authconn.py:35 ../glade/NewPrinterWindow.glade.h:108 -+#: ../authconn.py:35 ../glade/NewPrinterWindow.glade.h:107 - #, fuzzy - msgid "Username:" - msgstr "اسم المستخدم:" - --#: ../authconn.py:36 ../glade/NewPrinterWindow.glade.h:77 -+#: ../authconn.py:36 ../glade/NewPrinterWindow.glade.h:76 - msgid "Password:" - msgstr "كلمة المرور:" - -@@ -71,7 +71,7 @@ msgstr "كلمة المرور:" - msgid "Domain:" - msgstr "الهامش العلوي (نقطة):" - --#: ../authconn.py:46 -+#: ../authconn.py:46 ../authconn.py:409 - #, fuzzy - msgid "Authentication" - msgstr "التّوثيق" -@@ -80,46 +80,55 @@ msgstr "التّوثيق" - msgid "Remember password" - msgstr "" - --#: ../authconn.py:211 ../authconn.py:232 -+#: ../authconn.py:208 -+#, python-format -+msgid "Unauthorized request (%s)" -+msgstr "" -+ -+#: ../authconn.py:209 -+msgid "You are not authorized to carry out therequested action." -+msgstr "" -+ -+#: ../authconn.py:212 ../authconn.py:233 - #, fuzzy - msgid "Operation canceled" - msgstr "اسم الخيار" - --#: ../authconn.py:253 -+#: ../authconn.py:250 - #, fuzzy, python-format - msgid "CUPS server error (%s)" - msgstr "الخادم:" - --#: ../authconn.py:255 ../errordialogs.py:57 --#: ../troubleshoot/PrintTestPage.py:400 -+#: ../authconn.py:252 ../errordialogs.py:56 ../errordialogs.py:70 -+#, fuzzy -+msgid "CUPS server error" -+msgstr "الخادم:" -+ -+#: ../authconn.py:261 ../errordialogs.py:57 -+#: ../troubleshoot/PrintTestPage.py:417 - #, fuzzy, python-format - msgid "There was an error during the CUPS operation: '%s'." - msgstr "حصل خطأ عند محاولة طبع صفحة الإختبار." - --#: ../authconn.py:258 -+#: ../authconn.py:264 - #, fuzzy - msgid "Retry" - msgstr "اختبار" - --#: ../authconn.py:379 ../authconn.py:381 ../errordialogs.py:65 ../pysmb.py:75 -+#: ../authconn.py:385 ../authconn.py:387 ../errordialogs.py:65 ../pysmb.py:75 - #: ../pysmb.py:77 - msgid "Not authorized" - msgstr "" - --#: ../authconn.py:382 ../pysmb.py:78 -+#: ../authconn.py:388 ../pysmb.py:78 - msgid "The password may be incorrect." - msgstr "" - --#: ../authconn.py:400 -+#: ../authconn.py:407 - #, fuzzy, python-format - msgid "Authentication (%s)" - msgstr "التّوثيق" - --#: ../errordialogs.py:56 ../errordialogs.py:70 --#, fuzzy --msgid "CUPS server error" --msgstr "الخادم:" -- - #: ../errordialogs.py:66 - msgid "" - "The password may be incorrect, or the server may be configured to deny " -@@ -149,7 +158,7 @@ msgstr "كلمة المرور:" - msgid "Server error" - msgstr "الطابعة: " - --#: ../errordialogs.py:82 ../system-config-printer.py:1219 -+#: ../errordialogs.py:82 ../system-config-printer.py:1223 - #, fuzzy - msgid "Not connected" - msgstr "م_وصول محليا" -@@ -172,7 +181,7 @@ msgstr "" - msgid "_New Group from Selection" - msgstr "" - --#: ../GroupsPane.py:98 ../system-config-printer.py:393 -+#: ../GroupsPane.py:98 ../system-config-printer.py:397 - #, fuzzy - msgid "_Rename" - msgstr "_حذف" -@@ -243,7 +252,7 @@ msgid "Document" - msgstr "التعليق" - - #: ../jobviewer.py:212 ../my-default-printer.py:153 --#: ../system-config-printer.py:366 ../system-config-printer.py:1367 -+#: ../system-config-printer.py:370 ../system-config-printer.py:1371 - #: ../troubleshoot/PrintTestPage.py:84 - #, fuzzy - msgid "Printer" -@@ -282,8 +291,8 @@ msgstr "" - - #: ../jobviewer.py:386 ../jobviewer.py:451 ../jobviewer.py:452 - #: ../jobviewer.py:492 ../jobviewer.py:600 ../jobviewer.py:727 --#: ../jobviewer.py:1196 ../jobviewer.py:1222 ../system-config-printer.py:2546 --#: ../glade/NewPrinterWindow.glade.h:106 -+#: ../jobviewer.py:1196 ../jobviewer.py:1222 ../system-config-printer.py:2556 -+#: ../glade/NewPrinterWindow.glade.h:105 - #: ../troubleshoot/ChooseNetworkPrinter.py:101 - #: ../troubleshoot/ChooseNetworkPrinter.py:102 - #: ../troubleshoot/ChooseNetworkPrinter.py:105 -@@ -375,12 +384,12 @@ msgstr "" - msgid "Pending" - msgstr "الطباعة" - --#: ../jobviewer.py:591 ../system-config-printer.py:186 -+#: ../jobviewer.py:591 ../system-config-printer.py:190 - #: ../troubleshoot/PrintTestPage.py:43 - msgid "Processing" - msgstr "" - --#: ../jobviewer.py:592 ../system-config-printer.py:188 -+#: ../jobviewer.py:592 ../system-config-printer.py:192 - #: ../troubleshoot/PrintTestPage.py:44 - msgid "Stopped" - msgstr "" -@@ -502,8 +511,8 @@ msgstr "_ضبط كافتراضي" - msgid "_Set Default" - msgstr "الا_فتراضيات" - --#: ../my-default-printer.py:158 ../system-config-printer.py:423 --#: ../system-config-printer.py:3660 ../troubleshoot/ChooseNetworkPrinter.py:37 -+#: ../my-default-printer.py:158 ../system-config-printer.py:427 -+#: ../system-config-printer.py:3675 ../troubleshoot/ChooseNetworkPrinter.py:37 - #: ../troubleshoot/ChoosePrinter.py:38 - #, fuzzy - msgid "Location" -@@ -537,7 +546,7 @@ msgstr "هذا وصف الطابعة." - msgid "Authenticated" - msgstr "التّوثيق" - --#: ../ppdippstr.py:50 ../system-config-printer.py:6259 -+#: ../ppdippstr.py:50 ../system-config-printer.py:6207 - msgid "None" - msgstr "بلا" - -@@ -760,217 +769,217 @@ msgstr "" - msgid "1200 dpi, photo, black + color cartridge, photo paper" - msgstr "" - --#: ../system-config-printer.py:127 -+#: ../system-config-printer.py:131 - msgid "To do this, select System->Administration->Firewall from the main menu." - msgstr "" - --#: ../system-config-printer.py:185 -+#: ../system-config-printer.py:189 - msgid "Idle" - msgstr "" - --#: ../system-config-printer.py:187 -+#: ../system-config-printer.py:191 - msgid "Busy" - msgstr "" - --#: ../system-config-printer.py:372 ../system-config-printer.py:1373 -+#: ../system-config-printer.py:376 ../system-config-printer.py:1377 - #, fuzzy - msgid "Class" - msgstr "الأسماء المستعارة" - --#: ../system-config-printer.py:399 -+#: ../system-config-printer.py:403 - #, fuzzy - msgid "Set As De_fault" - msgstr "الا_فتراضيات" - --#: ../system-config-printer.py:403 -+#: ../system-config-printer.py:407 - #, fuzzy - msgid "_Create class" - msgstr "طابعة جت دايركت" - --#: ../system-config-printer.py:405 -+#: ../system-config-printer.py:409 - #, fuzzy - msgid "View Print _Queue" - msgstr "طابور طباعة خام" - --#: ../system-config-printer.py:407 -+#: ../system-config-printer.py:411 - msgid "_Add to Group" - msgstr "" - --#: ../system-config-printer.py:409 -+#: ../system-config-printer.py:413 - msgid "Save Results as _Group" - msgstr "" - --#: ../system-config-printer.py:411 -+#: ../system-config-printer.py:415 - msgid "Save Filter as _Search Group" - msgstr "" - --#: ../system-config-printer.py:415 -+#: ../system-config-printer.py:419 - msgid "E_nabled" - msgstr "" - --#: ../system-config-printer.py:417 -+#: ../system-config-printer.py:421 - #, fuzzy - msgid "_Shared" - msgstr "مشترك" - --#: ../system-config-printer.py:421 ../troubleshoot/ChooseNetworkPrinter.py:35 -+#: ../system-config-printer.py:425 ../troubleshoot/ChooseNetworkPrinter.py:35 - #: ../troubleshoot/ChoosePrinter.py:36 ../troubleshoot/DeviceListed.py:36 - msgid "Name" - msgstr "الإسم" - --#: ../system-config-printer.py:422 -+#: ../system-config-printer.py:426 - #, fuzzy - msgid "Description" - msgstr "الوصف" - --#: ../system-config-printer.py:424 -+#: ../system-config-printer.py:428 - msgid "Manufacturer / Model" - msgstr "" - - #. Printer state reasons list --#: ../system-config-printer.py:499 -+#: ../system-config-printer.py:503 - msgid "Message" - msgstr "" - --#: ../system-config-printer.py:534 -+#: ../system-config-printer.py:538 - msgid "Problems?" - msgstr "" - --#: ../system-config-printer.py:637 ../system-config-printer.py:639 -+#: ../system-config-printer.py:641 ../system-config-printer.py:643 - msgid "Members of this class" - msgstr "" - --#: ../system-config-printer.py:638 ../system-config-printer.py:640 -+#: ../system-config-printer.py:642 ../system-config-printer.py:644 - msgid "Others" - msgstr "" - --#: ../system-config-printer.py:641 -+#: ../system-config-printer.py:645 - #, fuzzy - msgid "Devices" - msgstr "الجهاز" - --#: ../system-config-printer.py:642 -+#: ../system-config-printer.py:646 - #, fuzzy - msgid "Connections" - msgstr "التعليق" - --#: ../system-config-printer.py:643 -+#: ../system-config-printer.py:647 - msgid "Makes" - msgstr "" - --#: ../system-config-printer.py:644 -+#: ../system-config-printer.py:648 - #, fuzzy - msgid "Models" - msgstr "الطراز" - --#: ../system-config-printer.py:645 -+#: ../system-config-printer.py:649 - #, fuzzy - msgid "Drivers" - msgstr "المشغل" - --#: ../system-config-printer.py:646 ../glade/NewPrinterWindow.glade.h:55 -+#: ../system-config-printer.py:650 ../glade/NewPrinterWindow.glade.h:54 - #, fuzzy - msgid "Downloadable Drivers" - msgstr "المشغلات المتوفّرة:" - --#: ../system-config-printer.py:647 -+#: ../system-config-printer.py:651 - #, fuzzy - msgid "Users" - msgstr "المستخدم" - --#: ../system-config-printer.py:682 -+#: ../system-config-printer.py:686 - msgid "Automatic rotation" - msgstr "" - --#: ../system-config-printer.py:989 -+#: ../system-config-printer.py:993 - #, fuzzy, python-format - msgid "Printer Properties - '%s' on %s" - msgstr " خيارات الفلتر" - - #. The Conflict button was pressed. --#: ../system-config-printer.py:996 -+#: ../system-config-printer.py:1000 - msgid "" - "There are conflicting options.\n" - "Changes can only be applied after\n" - "these conflicts are resolved." - msgstr "" - --#: ../system-config-printer.py:1214 -+#: ../system-config-printer.py:1218 - #, python-format - msgid "Printer configuration - %s" - msgstr "تخصيص الطابعة - %s" - --#: ../system-config-printer.py:1217 -+#: ../system-config-printer.py:1221 - #, python-format - msgid "Connected to %s" - msgstr "" - - #. Update our copy of the printer's settings. --#: ../system-config-printer.py:1257 ../system-config-printer.py:2042 -+#: ../system-config-printer.py:1261 ../system-config-printer.py:2046 - msgid "obtaining queue details" - msgstr "" - --#: ../system-config-printer.py:1295 -+#: ../system-config-printer.py:1299 - msgid "Remove from Group" - msgstr "" - --#: ../system-config-printer.py:1361 -+#: ../system-config-printer.py:1365 - #, fuzzy - msgid "Network printer (discovered)" - msgstr "الطابعة:" - --#: ../system-config-printer.py:1364 -+#: ../system-config-printer.py:1368 - msgid "Network class (discovered)" - msgstr "" - --#: ../system-config-printer.py:1370 ../system-config-printer.py:5524 --#: ../system-config-printer.py:5594 ../system-config-printer.py:5596 -+#: ../system-config-printer.py:1374 ../system-config-printer.py:5519 -+#: ../system-config-printer.py:5589 ../system-config-printer.py:5591 - msgid "Fax" - msgstr "" - --#: ../system-config-printer.py:1376 ../system-config-printer.py:1382 -+#: ../system-config-printer.py:1380 ../system-config-printer.py:1386 - #: ../troubleshoot/LocalOrRemote.py:30 - #, fuzzy - msgid "Network printer" - msgstr "الطابعة:" - --#: ../system-config-printer.py:1379 -+#: ../system-config-printer.py:1383 - #, fuzzy - msgid "Network print share" - msgstr "الطابعة:" - --#: ../system-config-printer.py:1508 ../glade/ConnectingDialog.glade.h:2 -+#: ../system-config-printer.py:1512 ../glade/ConnectingDialog.glade.h:2 - #, no-c-format, python-format - msgid "Opening connection to %s" - msgstr "" - --#: ../system-config-printer.py:1887 -+#: ../system-config-printer.py:1891 - msgid "Installable Options" - msgstr "" - --#: ../system-config-printer.py:1888 -+#: ../system-config-printer.py:1892 - #: ../glade/PrinterPropertiesDialog.glade.h:109 - #, fuzzy - msgid "Printer Options" - msgstr " خيارات الفلتر" - --#: ../system-config-printer.py:1924 -+#: ../system-config-printer.py:1928 - #, python-format - msgid "modifying class %s" - msgstr "" - --#: ../system-config-printer.py:1926 ../system-config-printer.py:3019 --#: ../system-config-printer.py:3044 ../system-config-printer.py:6547 --#: ../system-config-printer.py:6559 ../system-config-printer.py:6581 -+#: ../system-config-printer.py:1930 ../system-config-printer.py:3037 -+#: ../system-config-printer.py:3062 ../system-config-printer.py:6495 -+#: ../system-config-printer.py:6507 ../system-config-printer.py:6529 - #, fuzzy, python-format - msgid "modifying printer %s" - msgstr "إضافة طابوررطباعة جديد" - --#: ../system-config-printer.py:1941 -+#: ../system-config-printer.py:1945 - msgid "This will delete this class!" - msgstr "" - --#: ../system-config-printer.py:1942 -+#: ../system-config-printer.py:1946 - msgid "Proceed anyway?" - msgstr "" - -@@ -978,72 +987,72 @@ msgstr "" - #. but we have never fetched the server settings to see whether - #. the server is publishing shared printers. Fetch the settings - #. now so that we can update the "not published" label if necessary. --#: ../system-config-printer.py:2030 ../system-config-printer.py:3203 -+#: ../system-config-printer.py:2034 ../system-config-printer.py:3221 - #, fuzzy - msgid "fetching server settings" - msgstr "خيارات المشغل" - --#: ../system-config-printer.py:2100 -+#: ../system-config-printer.py:2104 - #, fuzzy - msgid "Set Default Printer" - msgstr "هذا وصف الطابعة." - --#: ../system-config-printer.py:2102 -+#: ../system-config-printer.py:2106 - #, fuzzy - msgid "Do you want to set this as the system-wide default printer?" - msgstr "" - "هل تريد حفظ التّغييرات\n" - "التي قمت بها على تهيئة طابعتك؟" - --#: ../system-config-printer.py:2104 -+#: ../system-config-printer.py:2108 - #, fuzzy - msgid "Set as the _system-wide default printer" - msgstr "هذا وصف الطابعة." - --#: ../system-config-printer.py:2106 -+#: ../system-config-printer.py:2110 - msgid "_Clear my personal default setting" - msgstr "" - --#: ../system-config-printer.py:2107 -+#: ../system-config-printer.py:2111 - #, fuzzy - msgid "Set as my _personal default printer" - msgstr "هذا وصف الطابعة." - --#: ../system-config-printer.py:2112 -+#: ../system-config-printer.py:2116 - #, fuzzy - msgid "setting default printer" - msgstr "هذا وصف الطابعة." - --#: ../system-config-printer.py:2169 -+#: ../system-config-printer.py:2173 - #, fuzzy - msgid "printing test page" - msgstr "ملاحظات الطابعة:" - --#: ../system-config-printer.py:2182 ../system-config-printer.py:2217 --#: ../system-config-printer.py:5418 -+#: ../system-config-printer.py:2186 ../system-config-printer.py:2221 -+#: ../system-config-printer.py:5413 - msgid "Not possible" - msgstr "" - --#: ../system-config-printer.py:2183 ../system-config-printer.py:2218 -+#: ../system-config-printer.py:2187 ../system-config-printer.py:2222 - msgid "" - "The remote server did not accept the print job, most likely because the " - "printer is not shared." - msgstr "" - --#: ../system-config-printer.py:2195 ../system-config-printer.py:2210 -+#: ../system-config-printer.py:2199 ../system-config-printer.py:2214 - msgid "Submitted" - msgstr "" - --#: ../system-config-printer.py:2196 -+#: ../system-config-printer.py:2200 - #, python-format - msgid "Test page submitted as job %d" - msgstr "" - --#: ../system-config-printer.py:2203 -+#: ../system-config-printer.py:2207 - msgid "sending maintenance command" - msgstr "" - --#: ../system-config-printer.py:2211 -+#: ../system-config-printer.py:2215 - #, python-format - msgid "Maintenance command submitted as job %d" - msgstr "" -@@ -1051,11 +1060,11 @@ msgstr "" - #. The underlying cupsGetPPD2() function returned NULL without - #. setting an IPP error, so it'll be something like a failed - #. connection. --#: ../system-config-printer.py:2285 ../system-config-printer.py:2381 -+#: ../system-config-printer.py:2289 ../system-config-printer.py:2385 - msgid "Error" - msgstr "خطأ" - --#: ../system-config-printer.py:2286 -+#: ../system-config-printer.py:2290 - #, fuzzy - msgid "There was a problem connecting to the CUPS server." - msgstr "" -@@ -1063,68 +1072,68 @@ msgstr "" - "إلى صفِّ '%s':\n" - "\n" - --#: ../system-config-printer.py:2382 -+#: ../system-config-printer.py:2386 - #, python-format - msgid "Option '%s' has value '%s' and cannot be edited." - msgstr "" - --#: ../system-config-printer.py:2466 -+#: ../system-config-printer.py:2476 - msgid "Marker levels are not reported for this printer." - msgstr "" - --#: ../system-config-printer.py:2763 -+#: ../system-config-printer.py:2773 - #, fuzzy - msgid "Cannot Rename" - msgstr "_حذف" - --#: ../system-config-printer.py:2764 -+#: ../system-config-printer.py:2774 - #, fuzzy - msgid "There are queued jobs." - msgstr "لا توجد هناك خيارات متوفرة لهذا المشغل." - --#: ../system-config-printer.py:2822 -+#: ../system-config-printer.py:2840 - #, fuzzy - msgid "renaming printer" - msgstr "إضافة طابوررطباعة جديد" - - #. for classes make sure all members - #. will get added --#: ../system-config-printer.py:2907 -+#: ../system-config-printer.py:2925 - #, fuzzy - msgid "copying printer" - msgstr "إضافة طابوررطباعة جديد" - --#: ../system-config-printer.py:2971 -+#: ../system-config-printer.py:2989 - #, fuzzy, python-format - msgid "Really delete class '%s'?" - msgstr "حقا حذف \"%s\"?" - --#: ../system-config-printer.py:2973 -+#: ../system-config-printer.py:2991 - #, fuzzy, python-format - msgid "Really delete printer '%s'?" - msgstr "حقا حذف \"%s\"?" - --#: ../system-config-printer.py:2975 -+#: ../system-config-printer.py:2993 - #, fuzzy - msgid "Really delete selected destinations?" - msgstr "حقا حذف \"%s\"?" - --#: ../system-config-printer.py:2996 -+#: ../system-config-printer.py:3014 - #, fuzzy, python-format - msgid "deleting printer %s" - msgstr "إضافة طابوررطباعة جديد" - --#: ../system-config-printer.py:3070 -+#: ../system-config-printer.py:3088 - msgid "Publish Shared Printers" - msgstr "" - --#: ../system-config-printer.py:3071 -+#: ../system-config-printer.py:3089 - msgid "" - "Shared printers are not available to other people unless the 'Publish shared " - "printers' option is enabled in the server settings." - msgstr "" - --#: ../system-config-printer.py:3264 -+#: ../system-config-printer.py:3282 - #, fuzzy - msgid "modifying server settings" - msgstr "خيارات المشغل" -@@ -1135,109 +1144,109 @@ msgstr "خيارات المشغل" - #. be unblocked. Unfortunately, this is not yet possible - #. (bug #440469). However, we can display a dialog to suggest - #. that now might be a good time to review the firewall settings. --#: ../system-config-printer.py:3289 -+#: ../system-config-printer.py:3307 - #, fuzzy - msgid "Review Firewall" - msgstr "ملف الجهاز" - --#: ../system-config-printer.py:3290 -+#: ../system-config-printer.py:3308 - msgid "" - "You may need to adjust the firewall to allow network printing to this " - "computer." - msgstr "" - --#: ../system-config-printer.py:3623 -+#: ../system-config-printer.py:3638 - msgid "Browsing not available (pysmbc not installed)" - msgstr "" - - #. SMB list columns --#: ../system-config-printer.py:3629 -+#: ../system-config-printer.py:3644 - msgid "Share" - msgstr "مشاركة" - --#: ../system-config-printer.py:3635 -+#: ../system-config-printer.py:3650 - msgid "Comment" - msgstr "التعليق" - - #. IPP list columns --#: ../system-config-printer.py:3654 -+#: ../system-config-printer.py:3669 - msgid "Queue" - msgstr "الطابور" - --#: ../system-config-printer.py:3668 -+#: ../system-config-printer.py:3683 - msgid "" - "PostScript Printer Description files (*.ppd, *.PPD, *.ppd.gz, *.PPD.gz, *." - "PPD.GZ)" - msgstr "" - --#: ../system-config-printer.py:3677 -+#: ../system-config-printer.py:3692 - msgid "All files (*)" - msgstr "" - --#: ../system-config-printer.py:3713 ../system-config-printer.py:5970 --#: ../system-config-printer.py:6008 ../applet.py:124 -+#: ../system-config-printer.py:3728 ../system-config-printer.py:5918 -+#: ../system-config-printer.py:5956 ../applet.py:124 - #, fuzzy - msgid "Search" - msgstr "تحذير" - --#: ../system-config-printer.py:3736 ../system-config-printer.py:3760 --#: ../glade/NewPrinterWindow.glade.h:74 -+#: ../system-config-printer.py:3751 ../system-config-printer.py:3775 -+#: ../glade/NewPrinterWindow.glade.h:73 - #, fuzzy - msgid "New Printer" - msgstr "الطابعة:" - --#: ../system-config-printer.py:3747 -+#: ../system-config-printer.py:3762 - msgid "New Class" - msgstr "" - --#: ../system-config-printer.py:3752 -+#: ../system-config-printer.py:3767 - msgid "Change Device URI" - msgstr "" - --#: ../system-config-printer.py:3758 -+#: ../system-config-printer.py:3773 - #, fuzzy - msgid "Change Driver" - msgstr "غيّر النوع" - --#: ../system-config-printer.py:3927 ../system-config-printer.py:3993 --#: ../system-config-printer.py:4289 ../system-config-printer.py:4487 --#: ../system-config-printer.py:5772 ../system-config-printer.py:5995 -+#: ../system-config-printer.py:3942 ../system-config-printer.py:4008 -+#: ../system-config-printer.py:4304 ../system-config-printer.py:4502 -+#: ../system-config-printer.py:5762 ../system-config-printer.py:5943 - #, fuzzy - msgid "Searching" - msgstr "تحذير" - --#: ../system-config-printer.py:3928 -+#: ../system-config-printer.py:3943 - #, fuzzy - msgid "Searching for downloadable drivers" - msgstr "اخاصيات المشاركة" - --#: ../system-config-printer.py:3994 ../system-config-printer.py:4290 -+#: ../system-config-printer.py:4009 ../system-config-printer.py:4305 - #, fuzzy - msgid "Searching for drivers" - msgstr "اخاصيات المشاركة" - --#: ../system-config-printer.py:4488 ../system-config-printer.py:5773 -+#: ../system-config-printer.py:4503 ../system-config-printer.py:5763 - #, fuzzy - msgid "Searching for printers" - msgstr "اخاصيات المشاركة" - --#: ../system-config-printer.py:4497 -+#: ../system-config-printer.py:4512 - #, fuzzy - msgid "fetching device list" - msgstr "خيارات المشغل" - - #. Tell the user why he needs the plugin --#: ../system-config-printer.py:4579 -+#: ../system-config-printer.py:4594 - msgid "For this printer a proprietary driver plugin from HP is available.\n" - msgstr "" - --#: ../system-config-printer.py:4582 -+#: ../system-config-printer.py:4597 - msgid "" - "The installation of the plugin is required for your printer to work.\n" - "\n" - msgstr "" - --#: ../system-config-printer.py:4585 -+#: ../system-config-printer.py:4600 - msgid "" - "Installing the plugin is optional, it completes or enhances the " - "functionality\n" -@@ -1245,141 +1254,137 @@ msgid "" - "\n" - msgstr "" - --#: ../system-config-printer.py:4589 -+#: ../system-config-printer.py:4604 - msgid "The plugin provides the following features:\n" - msgstr "" - --#: ../system-config-printer.py:4592 -+#: ../system-config-printer.py:4607 - msgid " - Printing support\n" - msgstr "" - --#: ../system-config-printer.py:4595 -+#: ../system-config-printer.py:4610 - msgid " - Faster printing\n" - msgstr "" - --#: ../system-config-printer.py:4598 -+#: ../system-config-printer.py:4613 - msgid " - Better printout quality\n" - msgstr "" - --#: ../system-config-printer.py:4601 -+#: ../system-config-printer.py:4616 - msgid " - Extra printing features\n" - msgstr "" - --#: ../system-config-printer.py:4604 -+#: ../system-config-printer.py:4619 - msgid " - Scanning support\n" - msgstr "" - --#: ../system-config-printer.py:4607 -+#: ../system-config-printer.py:4622 - msgid " - Faster scanning\n" - msgstr "" - --#: ../system-config-printer.py:4610 -+#: ../system-config-printer.py:4625 - msgid " - Better scanning image quality\n" - msgstr "" - --#: ../system-config-printer.py:4613 -+#: ../system-config-printer.py:4628 - msgid " - Faxing support\n" - msgstr "" - --#: ../system-config-printer.py:4616 -+#: ../system-config-printer.py:4631 - msgid " - Extra fax features\n" - msgstr "" - --#: ../system-config-printer.py:4619 -+#: ../system-config-printer.py:4634 - msgid " - Better Input/Output support\n" - msgstr "" - --#: ../system-config-printer.py:4622 -+#: ../system-config-printer.py:4637 - msgid " - Extra user interface features\n" - msgstr "" - --#: ../system-config-printer.py:4625 -+#: ../system-config-printer.py:4640 - msgid " - Other extra features\n" - msgstr "" - --#: ../system-config-printer.py:4630 -+#: ../system-config-printer.py:4645 - #, fuzzy - msgid "Install plugin" - msgstr " خيارات الفلتر" - --#: ../system-config-printer.py:4631 -+#: ../system-config-printer.py:4646 - #, fuzzy - msgid "Do not set up printer" - msgstr "الطابعة:" - --#: ../system-config-printer.py:4632 -+#: ../system-config-printer.py:4647 - msgid "Set up without plugin" - msgstr "" - --#: ../system-config-printer.py:4634 ../troubleshoot/PrintTestPage.py:118 -+#: ../system-config-printer.py:4649 ../troubleshoot/PrintTestPage.py:118 - msgid "Yes" - msgstr "نعم" - --#: ../system-config-printer.py:4635 ../troubleshoot/PrintTestPage.py:119 -+#: ../system-config-printer.py:4650 ../troubleshoot/PrintTestPage.py:119 - msgid "No" - msgstr "لا" - --#: ../system-config-printer.py:4809 ../system-config-printer.py:4813 -+#: ../system-config-printer.py:4824 ../system-config-printer.py:4828 - msgid " (Current)" - msgstr "" - --#: ../system-config-printer.py:4845 --msgid "HP Printer (HPLIP)" --msgstr "" -- --#: ../system-config-printer.py:4886 -+#: ../system-config-printer.py:4881 - msgid "Other" - msgstr "" - - #. device-info - #. PhysicalDevice obj - #. Separator? --#: ../system-config-printer.py:4902 -+#: ../system-config-printer.py:4897 - #, fuzzy - msgid "Network Printer" - msgstr "الطابعة:" - --#: ../system-config-printer.py:4906 -+#: ../system-config-printer.py:4901 - #, fuzzy - msgid "Find Network Printer" - msgstr "الطابعة:" - --#: ../system-config-printer.py:4979 ../system-config-printer.py:5376 -+#: ../system-config-printer.py:4974 ../system-config-printer.py:5371 - msgid "Scanning..." - msgstr "" - --#: ../system-config-printer.py:5034 ../system-config-printer.py:5798 -+#: ../system-config-printer.py:5029 - #, fuzzy - msgid "No Print Shares" - msgstr "الطابعة:" - --#: ../system-config-printer.py:5035 -+#: ../system-config-printer.py:5030 - msgid "" - "There were no print shares found. Please check that the Samba service is " - "marked as trusted in your firewall configuration." - msgstr "" - --#: ../system-config-printer.py:5296 ../system-config-printer.py:5357 -+#: ../system-config-printer.py:5291 ../system-config-printer.py:5352 - msgid "Print Share Verified" - msgstr "" - --#: ../system-config-printer.py:5297 ../system-config-printer.py:5358 -+#: ../system-config-printer.py:5292 ../system-config-printer.py:5353 - msgid "This print share is accessible." - msgstr "" - --#: ../system-config-printer.py:5302 ../system-config-printer.py:5362 -+#: ../system-config-printer.py:5297 ../system-config-printer.py:5357 - msgid "This print share is not accessible." - msgstr "" - --#: ../system-config-printer.py:5305 -+#: ../system-config-printer.py:5300 - msgid "Print Share Inaccessible" - msgstr "" - --#: ../system-config-printer.py:5361 -+#: ../system-config-printer.py:5356 - msgid "Inaccessible" - msgstr "" - --#: ../system-config-printer.py:5419 -+#: ../system-config-printer.py:5414 - #, fuzzy, python-format - msgid "It is not possible to obtain a list of queues from '%s'." - msgstr "" -@@ -1387,158 +1392,154 @@ msgstr "" - "إلى صفِّ '%s':\n" - "\n" - --#: ../system-config-printer.py:5421 -+#: ../system-config-printer.py:5416 - msgid "" - "Obtaining a list of queues is a CUPS extension to IPP. Network printers do " - "not support it." - msgstr "" - --#: ../system-config-printer.py:5424 -+#: ../system-config-printer.py:5419 - #, fuzzy - msgid "No queues" - msgstr "طابور _جديد" - --#: ../system-config-printer.py:5425 -+#: ../system-config-printer.py:5420 - #, fuzzy - msgid "There are no queues available." - msgstr "لا توجد هناك خيارات متوفرة لهذا المشغل." - --#: ../system-config-printer.py:5516 -+#: ../system-config-printer.py:5511 - msgid "Parallel Port" - msgstr "" - --#: ../system-config-printer.py:5518 -+#: ../system-config-printer.py:5513 - #, fuzzy - msgid "Serial Port" - msgstr "عام" - --#: ../system-config-printer.py:5520 -+#: ../system-config-printer.py:5515 - msgid "USB" - msgstr "" - --#: ../system-config-printer.py:5522 ../system-config-printer.py:5525 -+#: ../system-config-printer.py:5517 ../system-config-printer.py:5520 - msgid "HP Linux Imaging and Printing (HPLIP)" - msgstr "" - --#: ../system-config-printer.py:5527 -+#: ../system-config-printer.py:5522 - msgid "Hardware Abstraction Layer (HAL)" - msgstr "" - --#: ../system-config-printer.py:5529 -+#: ../system-config-printer.py:5524 - #, fuzzy - msgid "AppSocket/HP JetDirect" - msgstr "مشبّك _جت دايريكت" - --#: ../system-config-printer.py:5538 -+#: ../system-config-printer.py:5533 - #, python-format - msgid "LPD/LPR queue '%s'" - msgstr "" - --#: ../system-config-printer.py:5540 -+#: ../system-config-printer.py:5535 - msgid "LPD/LPR queue" - msgstr "" - --#: ../system-config-printer.py:5543 -+#: ../system-config-printer.py:5538 - #, fuzzy - msgid "Windows Printer via SAMBA" - msgstr "بيانات طابعة ويندوز (SMB)" - --#: ../system-config-printer.py:5545 ../glade/NewPrinterWindow.glade.h:66 -+#: ../system-config-printer.py:5540 ../glade/NewPrinterWindow.glade.h:65 - #, fuzzy - msgid "IPP" - msgstr "عنوان IP:" - --#: ../system-config-printer.py:5547 -+#: ../system-config-printer.py:5542 - msgid "HTTP" - msgstr "" - --#: ../system-config-printer.py:5632 -+#: ../system-config-printer.py:5624 - msgid "A printer connected to the parallel port." - msgstr "" - --#: ../system-config-printer.py:5634 -+#: ../system-config-printer.py:5626 - msgid "A printer connected to a USB port." - msgstr "" - --#: ../system-config-printer.py:5636 -+#: ../system-config-printer.py:5628 - msgid "" - "HPLIP software driving a printer, or the printer function of a multi-" - "function device." - msgstr "" - --#: ../system-config-printer.py:5639 -+#: ../system-config-printer.py:5631 - msgid "" - "HPLIP software driving a fax machine, or the fax function of a multi-" - "function device." - msgstr "" - --#: ../system-config-printer.py:5642 -+#: ../system-config-printer.py:5634 - msgid "Local printer detected by the Hardware Abstraction Layer (HAL)." - msgstr "" - --#: ../system-config-printer.py:5799 --msgid "HPLIP cannot find the device." --msgstr "" -- --#: ../system-config-printer.py:5881 -+#: ../system-config-printer.py:5831 - msgid "No printer was found at that address." - msgstr "" - --#: ../system-config-printer.py:6020 -+#: ../system-config-printer.py:5968 - #, fuzzy - msgid "-- Select from search results --" - msgstr "يجب أن تحدّد طراز طابعة." - --#: ../system-config-printer.py:6022 -+#: ../system-config-printer.py:5970 - msgid "-- No matches found --" - msgstr "" - --#: ../system-config-printer.py:6203 -+#: ../system-config-printer.py:6151 - #, fuzzy - msgid " (recommended)" - msgstr "" - "(المشغل \n" - " المفضل هو %s)" - --#: ../system-config-printer.py:6217 -+#: ../system-config-printer.py:6165 - msgid "This PPD is generated by foomatic." - msgstr "" - --#: ../system-config-printer.py:6241 -+#: ../system-config-printer.py:6189 - #, fuzzy - msgid "OpenPrinting" - msgstr "الطباعة" - --#: ../system-config-printer.py:6252 -+#: ../system-config-printer.py:6200 - msgid "Distributable" - msgstr "" - --#: ../system-config-printer.py:6293 -+#: ../system-config-printer.py:6241 - msgid ", " - msgstr "" - --#: ../system-config-printer.py:6298 -+#: ../system-config-printer.py:6246 - #, python-format - msgid "" - "\n" - "(%s)" - msgstr "" - --#: ../system-config-printer.py:6303 -+#: ../system-config-printer.py:6251 - msgid "No support contacts known" - msgstr "" - --#: ../system-config-printer.py:6307 ../system-config-printer.py:6320 -+#: ../system-config-printer.py:6255 ../system-config-printer.py:6268 - #, fuzzy - msgid "Not specified." - msgstr "يجب أن تحدد جهازاً." - - #. Foomatic database problem of some sort. --#: ../system-config-printer.py:6360 -+#: ../system-config-printer.py:6308 - msgid "Database error" - msgstr "" - --#: ../system-config-printer.py:6361 -+#: ../system-config-printer.py:6309 - #, python-format - msgid "The '%s' driver cannot be used with printer '%s %s'." - msgstr "" -@@ -1546,65 +1547,65 @@ msgstr "" - #. This printer references some XML that is not - #. installed by default. Point the user at the - #. package they need to install. --#: ../system-config-printer.py:6371 -+#: ../system-config-printer.py:6319 - #, python-format - msgid "You will need to install the '%s' package in order to use this driver." - msgstr "" - - #. This error came from trying to open the PPD file. --#: ../system-config-printer.py:6378 -+#: ../system-config-printer.py:6326 - msgid "PPD error" - msgstr "" - --#: ../system-config-printer.py:6380 -+#: ../system-config-printer.py:6328 - msgid "Failed to read PPD file. Possible reason follows:" - msgstr "" - - #. Failed to get PPD downloaded from OpenPrinting XXX --#: ../system-config-printer.py:6397 -+#: ../system-config-printer.py:6345 - #, fuzzy - msgid "Downloadable drivers" - msgstr "المشغلات المتوفّرة:" - --#: ../system-config-printer.py:6398 -+#: ../system-config-printer.py:6346 - msgid "Failed to download PPD." - msgstr "" - --#: ../system-config-printer.py:6405 -+#: ../system-config-printer.py:6353 - #, fuzzy - msgid "fetching PPD" - msgstr "غيّر النوع" - --#: ../system-config-printer.py:6434 ../system-config-printer.py:6472 -+#: ../system-config-printer.py:6382 ../system-config-printer.py:6420 - msgid "No Installable Options" - msgstr "" - --#: ../system-config-printer.py:6520 -+#: ../system-config-printer.py:6468 - #, fuzzy, python-format - msgid "adding printer %s" - msgstr "إضافة طابوررطباعة جديد" - --#: ../system-config-printer.py:6669 -+#: ../system-config-printer.py:6617 - #, fuzzy - msgid "Would you like to print a test page?" - msgstr "هل تودّ طباعة صفحة اختبار؟" - --#: ../system-config-printer.py:6722 -+#: ../system-config-printer.py:6670 - #, fuzzy - msgid "Install driver" - msgstr "مشغل الطابعة" - --#: ../system-config-printer.py:6723 ../troubleshoot/CheckPPDSanity.py:131 -+#: ../system-config-printer.py:6671 ../troubleshoot/CheckPPDSanity.py:131 - #, python-format - msgid "Printer '%s' requires the %s package but it is not currently installed." - msgstr "" - --#: ../system-config-printer.py:6739 -+#: ../system-config-printer.py:6687 - #, fuzzy - msgid "Missing driver" - msgstr "مشغل الطابعة" - --#: ../system-config-printer.py:6740 -+#: ../system-config-printer.py:6688 - #, python-format - msgid "" - "Printer '%s' requires the '%s' program but it is not currently installed. " -@@ -1733,116 +1734,111 @@ msgstr "جهاز الطابعة" - - #: ../glade/NewPrinterWindow.glade.h:5 - #, fuzzy --msgid "HP Printer (HPLIP) via network" --msgstr "طراز الطّابعة" -- --#: ../glade/NewPrinterWindow.glade.h:6 --#, fuzzy - msgid "IPP Printer" - msgstr "طراز الطّابعة" - --#: ../glade/NewPrinterWindow.glade.h:7 -+#: ../glade/NewPrinterWindow.glade.h:6 - #, fuzzy - msgid "License Terms" - msgstr "طراز الطّابعة" - --#: ../glade/NewPrinterWindow.glade.h:8 -+#: ../glade/NewPrinterWindow.glade.h:7 - msgid "Location of the LPD network printer" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:9 -+#: ../glade/NewPrinterWindow.glade.h:8 - msgid "Location of the network printer" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:10 -+#: ../glade/NewPrinterWindow.glade.h:9 - msgid "Location (optional)" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:11 -+#: ../glade/NewPrinterWindow.glade.h:10 - #, fuzzy - msgid "Network Printer" - msgstr "الطابعة:" - --#: ../glade/NewPrinterWindow.glade.h:12 -+#: ../glade/NewPrinterWindow.glade.h:11 - #, fuzzy - msgid "Note" - msgstr "طراز الطّابعة" - --#: ../glade/NewPrinterWindow.glade.h:13 -+#: ../glade/NewPrinterWindow.glade.h:12 - msgid "Output Quality" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:14 -+#: ../glade/NewPrinterWindow.glade.h:13 - #, fuzzy - msgid "Printer Name" - msgstr "طراز الطّابعة" - --#: ../glade/NewPrinterWindow.glade.h:15 -+#: ../glade/NewPrinterWindow.glade.h:14 - #, fuzzy - msgid "SMB Printer" - msgstr "طراز الطّابعة" - --#: ../glade/NewPrinterWindow.glade.h:16 -+#: ../glade/NewPrinterWindow.glade.h:15 - #, fuzzy - msgid "Select Driver" - msgstr "طراز الطّابعة" - --#: ../glade/NewPrinterWindow.glade.h:17 -+#: ../glade/NewPrinterWindow.glade.h:16 - msgid "Settings of the serial port" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:18 -+#: ../glade/NewPrinterWindow.glade.h:17 - msgid "smb://[workgroup/]server[:port]/printer" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:19 -+#: ../glade/NewPrinterWindow.glade.h:18 - msgid "Choose Class Members" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:20 -+#: ../glade/NewPrinterWindow.glade.h:19 - msgid "Choose Driver" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:21 -+#: ../glade/NewPrinterWindow.glade.h:20 - msgid "Describe Printer" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:22 -+#: ../glade/NewPrinterWindow.glade.h:21 - msgid "Existing Settings" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:23 -+#: ../glade/NewPrinterWindow.glade.h:22 - msgid "Installable Options" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:24 -+#: ../glade/NewPrinterWindow.glade.h:23 - msgid "Select Device" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:25 -+#: ../glade/NewPrinterWindow.glade.h:24 - msgid "Baud Rate" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:26 -+#: ../glade/NewPrinterWindow.glade.h:25 - msgid "Browse..." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:27 -+#: ../glade/NewPrinterWindow.glade.h:26 - #, fuzzy - msgid "Comments..." - msgstr "التعليق" - --#: ../glade/NewPrinterWindow.glade.h:28 -+#: ../glade/NewPrinterWindow.glade.h:27 - #, fuzzy - msgid "Connection" - msgstr "_عملية" - --#: ../glade/NewPrinterWindow.glade.h:29 -+#: ../glade/NewPrinterWindow.glade.h:28 - #, fuzzy - msgid "Data Bits" - msgstr "تفاصيل" - --#: ../glade/NewPrinterWindow.glade.h:30 -+#: ../glade/NewPrinterWindow.glade.h:29 - msgid "" - "Default\n" - "1200\n" -@@ -1855,7 +1851,7 @@ msgid "" - "115200" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:39 -+#: ../glade/NewPrinterWindow.glade.h:38 - #, fuzzy - msgid "" - "Default\n" -@@ -1863,7 +1859,7 @@ msgid "" - "7" - msgstr "افتراضي" - --#: ../glade/NewPrinterWindow.glade.h:42 -+#: ../glade/NewPrinterWindow.glade.h:41 - msgid "" - "Default\n" - "None\n" -@@ -1871,7 +1867,7 @@ msgid "" - "Even" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:46 -+#: ../glade/NewPrinterWindow.glade.h:45 - msgid "" - "Default\n" - "None\n" -@@ -1880,205 +1876,205 @@ msgid "" - "DTR/DSR (Hardware)" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:51 -+#: ../glade/NewPrinterWindow.glade.h:50 - #: ../glade/PrinterPropertiesDialog.glade.h:35 - #, fuzzy - msgid "Description:" - msgstr "الوصف" - --#: ../glade/NewPrinterWindow.glade.h:52 ../troubleshoot/DeviceListed.py:40 -+#: ../glade/NewPrinterWindow.glade.h:51 ../troubleshoot/DeviceListed.py:40 - #, fuzzy - msgid "Device URI" - msgstr "الجهاز: " - --#: ../glade/NewPrinterWindow.glade.h:53 -+#: ../glade/NewPrinterWindow.glade.h:52 - #, fuzzy - msgid "Device description." - msgstr "الوصف" - --#: ../glade/NewPrinterWindow.glade.h:54 -+#: ../glade/NewPrinterWindow.glade.h:53 - msgid "DirectJet" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:56 -+#: ../glade/NewPrinterWindow.glade.h:55 - #, fuzzy - msgid "Driver details" - msgstr "المشغل" - --#: ../glade/NewPrinterWindow.glade.h:57 -+#: ../glade/NewPrinterWindow.glade.h:56 - msgid "Empty" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:58 -+#: ../glade/NewPrinterWindow.glade.h:57 - msgid "Find _Queue..." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:59 -+#: ../glade/NewPrinterWindow.glade.h:58 - msgid "Flow Control" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:60 -+#: ../glade/NewPrinterWindow.glade.h:59 - msgid "" - "For the printer you have selected there are drivers available for download." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:61 -+#: ../glade/NewPrinterWindow.glade.h:60 - msgid "Free software" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:62 -+#: ../glade/NewPrinterWindow.glade.h:61 - msgid "Graphics:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:63 -+#: ../glade/NewPrinterWindow.glade.h:62 - #, fuzzy - msgid "Host:" - msgstr "IP المضيف" - --#: ../glade/NewPrinterWindow.glade.h:64 -+#: ../glade/NewPrinterWindow.glade.h:63 - msgid "Human-readable description such as \"HP LaserJet with Duplexer\"" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:65 -+#: ../glade/NewPrinterWindow.glade.h:64 - msgid "Human-readable location such as \"Lab 1\"" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:67 -+#: ../glade/NewPrinterWindow.glade.h:66 - msgid "LPD" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:68 -+#: ../glade/NewPrinterWindow.glade.h:67 - msgid "License:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:69 -+#: ../glade/NewPrinterWindow.glade.h:68 - #, fuzzy - msgid "Line art:" - msgstr "ملاحظات الطابعة:" - --#: ../glade/NewPrinterWindow.glade.h:70 -+#: ../glade/NewPrinterWindow.glade.h:69 - #, fuzzy - msgid "Local Driver" - msgstr "تحرير طابعة محليه" - --#: ../glade/NewPrinterWindow.glade.h:71 -+#: ../glade/NewPrinterWindow.glade.h:70 - #, fuzzy - msgid "Make and model:" - msgstr "نحتاج طراز وصُنع الجهاز.\n" - --#: ../glade/NewPrinterWindow.glade.h:72 -+#: ../glade/NewPrinterWindow.glade.h:71 - msgid "Manufacturer" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:73 -+#: ../glade/NewPrinterWindow.glade.h:72 - #, fuzzy - msgid "Network" - msgstr "الطابعة:" - --#: ../glade/NewPrinterWindow.glade.h:75 -+#: ../glade/NewPrinterWindow.glade.h:74 - msgid "No, I do not accept this license" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:76 -+#: ../glade/NewPrinterWindow.glade.h:75 - msgid "Parity" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:78 -+#: ../glade/NewPrinterWindow.glade.h:77 - msgid "Patented algorithms" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:79 -+#: ../glade/NewPrinterWindow.glade.h:78 - #, fuzzy - msgid "Photo:" - msgstr "المنفذ: " - --#: ../glade/NewPrinterWindow.glade.h:80 -+#: ../glade/NewPrinterWindow.glade.h:79 - msgid "Port number:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:81 -+#: ../glade/NewPrinterWindow.glade.h:80 - msgid "" - "PostScript Printer Description (PPD) files can often be found on the driver " - "disk that comes with the printer. For PostScript printers they are often " - "part of the Windows® driver." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:82 -+#: ../glade/NewPrinterWindow.glade.h:81 - #, fuzzy - msgid "Printer model:" - msgstr "طراز الطّابعة" - --#: ../glade/NewPrinterWindow.glade.h:83 -+#: ../glade/NewPrinterWindow.glade.h:82 - msgid "Probe" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:84 -+#: ../glade/NewPrinterWindow.glade.h:83 - #, fuzzy - msgid "Prompt user if authentication is required" - msgstr "التّوثيق" - --#: ../glade/NewPrinterWindow.glade.h:85 -+#: ../glade/NewPrinterWindow.glade.h:84 - msgid "Provide PPD file" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:86 -+#: ../glade/NewPrinterWindow.glade.h:85 - msgid "Queue:" - msgstr "الطابور:" - --#: ../glade/NewPrinterWindow.glade.h:87 -+#: ../glade/NewPrinterWindow.glade.h:86 - msgid "SCSI" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:88 -+#: ../glade/NewPrinterWindow.glade.h:87 - msgid "SMB" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:89 -+#: ../glade/NewPrinterWindow.glade.h:88 - msgid "Search for a printer driver to download" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:90 -+#: ../glade/NewPrinterWindow.glade.h:89 - #, fuzzy - msgid "Searching..." - msgstr "تحذير" - --#: ../glade/NewPrinterWindow.glade.h:91 -+#: ../glade/NewPrinterWindow.glade.h:90 - msgid "Select A File" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:92 -+#: ../glade/NewPrinterWindow.glade.h:91 - msgid "Select printer from database" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:93 -+#: ../glade/NewPrinterWindow.glade.h:92 - #, fuzzy - msgid "Serial" - msgstr "عام" - --#: ../glade/NewPrinterWindow.glade.h:94 -+#: ../glade/NewPrinterWindow.glade.h:93 - #, fuzzy - msgid "Set authentication details now" - msgstr "التّوثيق" - --#: ../glade/NewPrinterWindow.glade.h:95 -+#: ../glade/NewPrinterWindow.glade.h:94 - msgid "Short name for this printer such as \"laserjet\"" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:96 -+#: ../glade/NewPrinterWindow.glade.h:95 - msgid "Supplier:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:97 -+#: ../glade/NewPrinterWindow.glade.h:96 - #, fuzzy - msgid "Support:" - msgstr "المنفذ:" - --#: ../glade/NewPrinterWindow.glade.h:98 -+#: ../glade/NewPrinterWindow.glade.h:97 - #, fuzzy - msgid "Text:" - msgstr "اخ_تبار" - --#: ../glade/NewPrinterWindow.glade.h:99 -+#: ../glade/NewPrinterWindow.glade.h:98 - msgid "" - "The foomatic printer database contains various manufacturer provided " - "PostScript Printer Description (PPD) files and also can generate PPD files " -@@ -2087,70 +2083,70 @@ msgid "" - "printer." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:100 -+#: ../glade/NewPrinterWindow.glade.h:99 - msgid "" - "These drivers do not come from your operating system supplier and will not " - "be covered by their commercial support. See the support and license terms " - "of the driver's supplier." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:101 -+#: ../glade/NewPrinterWindow.glade.h:100 - msgid "" - "This driver supports additional hardware that may be installed in the " - "printer." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:102 -+#: ../glade/NewPrinterWindow.glade.h:101 - msgid "" - "This is done by assuming that options with the same name do have the same " - "meaning. Settings of options that are not present in the new PPD will be " - "lost and options only present in the new PPD will be set to default." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:103 -+#: ../glade/NewPrinterWindow.glade.h:102 - msgid "" - "This way all current option settings will be lost. The default settings of " - "the new PPD will be used. " - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:104 -+#: ../glade/NewPrinterWindow.glade.h:103 - msgid "Try to copy the option settings over from the old PPD. " - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:105 -+#: ../glade/NewPrinterWindow.glade.h:104 - msgid "URI:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:107 -+#: ../glade/NewPrinterWindow.glade.h:106 - msgid "Use the new PPD (Postscript Printer Description) as is." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:109 -+#: ../glade/NewPrinterWindow.glade.h:108 - msgid "" - "With this choice no driver download will be performed. In the next steps a " - "locally installed driver will be selected." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:110 -+#: ../glade/NewPrinterWindow.glade.h:109 - msgid "Yes, I accept this license" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:111 -+#: ../glade/NewPrinterWindow.glade.h:110 - #, fuzzy - msgid "_Search" - msgstr "تحذير" - --#: ../glade/NewPrinterWindow.glade.h:112 -+#: ../glade/NewPrinterWindow.glade.h:111 - #, fuzzy - msgid "_Verify..." - msgstr "حدّد..." - --#: ../glade/NewPrinterWindow.glade.h:113 -+#: ../glade/NewPrinterWindow.glade.h:112 - #: ../glade/PrinterPropertiesDialog.glade.h:128 - msgid "move left" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:114 -+#: ../glade/NewPrinterWindow.glade.h:113 - #: ../glade/PrinterPropertiesDialog.glade.h:129 - msgid "move right" - msgstr "" -@@ -3062,7 +3058,7 @@ msgstr "" - msgid "Remember to load paper of type '%s' into the printer first." - msgstr "" - --#: ../troubleshoot/PrintTestPage.py:399 -+#: ../troubleshoot/PrintTestPage.py:416 - msgid "Error submitting test page" - msgstr "" - -@@ -3267,6 +3263,10 @@ msgid "Select default printer" - msgstr "هذا وصف الطابعة." - - #, fuzzy -+#~ msgid "HP Printer (HPLIP) via network" -+#~ msgstr "طراز الطّابعة" -+ -+#, fuzzy - #~ msgid "Not Found" - #~ msgstr "م_وصول محليا" - -diff -up system-config-printer-1.1.5/po/as.po.git-1.1.x system-config-printer-1.1.5/po/as.po ---- system-config-printer-1.1.5/po/as.po.git-1.1.x 2009-03-03 22:21:45.000000000 +0000 -+++ system-config-printer-1.1.5/po/as.po 2009-03-10 17:43:31.000000000 +0000 -@@ -9,7 +9,7 @@ msgid "" - msgstr "" - "Project-Id-Version: system-config-printer.trunk.as\n" - "Report-Msgid-Bugs-To: https://bugzilla.redhat.com/bugzilla\n" --"POT-Creation-Date: 2009-03-02 23:22+0000\n" -+"POT-Creation-Date: 2009-03-10 16:51+0000\n" - "PO-Revision-Date: 2008-01-31 18:16+0530\n" - "Last-Translator: Amitakhya Phukan \n" - "Language-Team: Assamese\n" -@@ -57,11 +57,11 @@ msgstr "" - msgid "Enter IP address" - msgstr "প্ৰিন্টাৰ" - --#: ../authconn.py:35 ../glade/NewPrinterWindow.glade.h:108 -+#: ../authconn.py:35 ../glade/NewPrinterWindow.glade.h:107 - msgid "Username:" - msgstr "ব্যৱহাৰকৰ্তাৰ নাম:" - --#: ../authconn.py:36 ../glade/NewPrinterWindow.glade.h:77 -+#: ../authconn.py:36 ../glade/NewPrinterWindow.glade.h:76 - msgid "Password:" - msgstr "গুপ্তশব্দ:" - -@@ -70,7 +70,7 @@ msgstr "গুপ্তশব্দ:" - msgid "Domain:" - msgstr "উপৰেৰ প্ৰান্তৰেখা" - --#: ../authconn.py:46 -+#: ../authconn.py:46 ../authconn.py:409 - #, fuzzy - msgid "Authentication" - msgstr "অনুমোদন ব্যবস্থা" -@@ -79,45 +79,54 @@ msgstr "অনুমোদন ব্য - msgid "Remember password" - msgstr "" - --#: ../authconn.py:211 ../authconn.py:232 -+#: ../authconn.py:208 -+#, python-format -+msgid "Unauthorized request (%s)" -+msgstr "" -+ -+#: ../authconn.py:209 -+msgid "You are not authorized to carry out therequested action." -+msgstr "" -+ -+#: ../authconn.py:212 ../authconn.py:233 - #, fuzzy - msgid "Operation canceled" - msgstr "কাৰ্য্য কৰা নীতি:" - --#: ../authconn.py:253 -+#: ../authconn.py:250 - #, fuzzy, python-format - msgid "CUPS server error (%s)" - msgstr "CUPS সেৱকৰ বুল" - --#: ../authconn.py:255 ../errordialogs.py:57 --#: ../troubleshoot/PrintTestPage.py:400 -+#: ../authconn.py:252 ../errordialogs.py:56 ../errordialogs.py:70 -+msgid "CUPS server error" -+msgstr "CUPS সেৱকৰ বুল" -+ -+#: ../authconn.py:261 ../errordialogs.py:57 -+#: ../troubleshoot/PrintTestPage.py:417 - #, python-format - msgid "There was an error during the CUPS operation: '%s'." - msgstr "CUPS ক্ৰিয়াকৰণৰ সময়ত এটা ভুল হ'ল: '%s'." - --#: ../authconn.py:258 -+#: ../authconn.py:264 - #, fuzzy - msgid "Retry" - msgstr "পুনৰায় নিৰ্ধাৰণ" - --#: ../authconn.py:379 ../authconn.py:381 ../errordialogs.py:65 ../pysmb.py:75 -+#: ../authconn.py:385 ../authconn.py:387 ../errordialogs.py:65 ../pysmb.py:75 - #: ../pysmb.py:77 - msgid "Not authorized" - msgstr "স্বীকৃতি নাই" - --#: ../authconn.py:382 ../pysmb.py:78 -+#: ../authconn.py:388 ../pysmb.py:78 - msgid "The password may be incorrect." - msgstr "গুপ্তশব্দ অশুদ্ধ হ'ব পাৰে ।" - --#: ../authconn.py:400 -+#: ../authconn.py:407 - #, fuzzy, python-format - msgid "Authentication (%s)" - msgstr "অনুমোদন ব্যবস্থা" - --#: ../errordialogs.py:56 ../errordialogs.py:70 --msgid "CUPS server error" --msgstr "CUPS সেৱকৰ বুল" -- - #: ../errordialogs.py:66 - msgid "" - "The password may be incorrect, or the server may be configured to deny " -@@ -145,7 +154,7 @@ msgstr "উন্নয়নৰ প্ৰ - msgid "Server error" - msgstr "সেৱকৰ ভুল" - --#: ../errordialogs.py:82 ../system-config-printer.py:1219 -+#: ../errordialogs.py:82 ../system-config-printer.py:1223 - msgid "Not connected" - msgstr "সংযোগ থকা নহয়" - -@@ -167,7 +176,7 @@ msgstr "" - msgid "_New Group from Selection" - msgstr "" - --#: ../GroupsPane.py:98 ../system-config-printer.py:393 -+#: ../GroupsPane.py:98 ../system-config-printer.py:397 - #, fuzzy - msgid "_Rename" - msgstr "মুক্ত কৰা হবে (_R)" -@@ -236,7 +245,7 @@ msgid "Document" - msgstr "ডকুমেন্ট" - - #: ../jobviewer.py:212 ../my-default-printer.py:153 --#: ../system-config-printer.py:366 ../system-config-printer.py:1367 -+#: ../system-config-printer.py:370 ../system-config-printer.py:1371 - #: ../troubleshoot/PrintTestPage.py:84 - msgid "Printer" - msgstr "মুদ্ৰক" -@@ -273,8 +282,8 @@ msgstr "নথি প্ৰিন্ট - - #: ../jobviewer.py:386 ../jobviewer.py:451 ../jobviewer.py:452 - #: ../jobviewer.py:492 ../jobviewer.py:600 ../jobviewer.py:727 --#: ../jobviewer.py:1196 ../jobviewer.py:1222 ../system-config-printer.py:2546 --#: ../glade/NewPrinterWindow.glade.h:106 -+#: ../jobviewer.py:1196 ../jobviewer.py:1222 ../system-config-printer.py:2556 -+#: ../glade/NewPrinterWindow.glade.h:105 - #: ../troubleshoot/ChooseNetworkPrinter.py:101 - #: ../troubleshoot/ChooseNetworkPrinter.py:102 - #: ../troubleshoot/ChooseNetworkPrinter.py:105 -@@ -367,12 +376,12 @@ msgstr "যতক্ষণ না:" - msgid "Pending" - msgstr "অসমাপ্ত কৰ্ম" - --#: ../jobviewer.py:591 ../system-config-printer.py:186 -+#: ../jobviewer.py:591 ../system-config-printer.py:190 - #: ../troubleshoot/PrintTestPage.py:43 - msgid "Processing" - msgstr "সংসাধন কৰা হৈছে" - --#: ../jobviewer.py:592 ../system-config-printer.py:188 -+#: ../jobviewer.py:592 ../system-config-printer.py:192 - #: ../troubleshoot/PrintTestPage.py:44 - msgid "Stopped" - msgstr "বন্ধ" -@@ -486,8 +495,8 @@ msgstr "ব্যৱস্থাপ্ - msgid "_Set Default" - msgstr "অৱিকল্পিত নিৰ্ধাৰণ কৰক (_S)" - --#: ../my-default-printer.py:158 ../system-config-printer.py:423 --#: ../system-config-printer.py:3660 ../troubleshoot/ChooseNetworkPrinter.py:37 -+#: ../my-default-printer.py:158 ../system-config-printer.py:427 -+#: ../system-config-printer.py:3675 ../troubleshoot/ChooseNetworkPrinter.py:37 - #: ../troubleshoot/ChoosePrinter.py:38 - msgid "Location" - msgstr "অৱস্থান" -@@ -520,7 +529,7 @@ msgstr "অৱিকল্পিত ম - msgid "Authenticated" - msgstr "অনুমোদন ব্যবস্থা" - --#: ../ppdippstr.py:50 ../system-config-printer.py:6259 -+#: ../ppdippstr.py:50 ../system-config-printer.py:6207 - msgid "None" - msgstr "শূণ্য" - -@@ -739,132 +748,132 @@ msgstr "" - msgid "1200 dpi, photo, black + color cartridge, photo paper" - msgstr "" - --#: ../system-config-printer.py:127 -+#: ../system-config-printer.py:131 - msgid "To do this, select System->Administration->Firewall from the main menu." - msgstr "" - --#: ../system-config-printer.py:185 -+#: ../system-config-printer.py:189 - msgid "Idle" - msgstr "অসাৰ" - --#: ../system-config-printer.py:187 -+#: ../system-config-printer.py:191 - msgid "Busy" - msgstr "ব্যস্ত" - --#: ../system-config-printer.py:372 ../system-config-printer.py:1373 -+#: ../system-config-printer.py:376 ../system-config-printer.py:1377 - #, fuzzy - msgid "Class" - msgstr "নতুন শ্ৰেণী" - --#: ../system-config-printer.py:399 -+#: ../system-config-printer.py:403 - #, fuzzy - msgid "Set As De_fault" - msgstr "অৱিকল্পিত নিৰ্ধাৰণ কৰক (_S)" - --#: ../system-config-printer.py:403 -+#: ../system-config-printer.py:407 - #, fuzzy - msgid "_Create class" - msgstr "দূৰৰ শ্ৰেণী" - --#: ../system-config-printer.py:405 -+#: ../system-config-printer.py:409 - #, fuzzy - msgid "View Print _Queue" - msgstr "নতুন মুদ্ৰক" - --#: ../system-config-printer.py:407 -+#: ../system-config-printer.py:411 - msgid "_Add to Group" - msgstr "" - --#: ../system-config-printer.py:409 -+#: ../system-config-printer.py:413 - msgid "Save Results as _Group" - msgstr "" - --#: ../system-config-printer.py:411 -+#: ../system-config-printer.py:415 - msgid "Save Filter as _Search Group" - msgstr "" - --#: ../system-config-printer.py:415 -+#: ../system-config-printer.py:419 - #, fuzzy - msgid "E_nabled" - msgstr "সক্ৰীয়" - --#: ../system-config-printer.py:417 -+#: ../system-config-printer.py:421 - #, fuzzy - msgid "_Shared" - msgstr "অংশীদাৰ কৰা" - --#: ../system-config-printer.py:421 ../troubleshoot/ChooseNetworkPrinter.py:35 -+#: ../system-config-printer.py:425 ../troubleshoot/ChooseNetworkPrinter.py:35 - #: ../troubleshoot/ChoosePrinter.py:36 ../troubleshoot/DeviceListed.py:36 - msgid "Name" - msgstr "" - --#: ../system-config-printer.py:422 -+#: ../system-config-printer.py:426 - #, fuzzy - msgid "Description" - msgstr "বিৱৰণ:" - --#: ../system-config-printer.py:424 -+#: ../system-config-printer.py:428 - msgid "Manufacturer / Model" - msgstr "" - - #. Printer state reasons list --#: ../system-config-printer.py:499 -+#: ../system-config-printer.py:503 - msgid "Message" - msgstr "বাৰ্তা" - --#: ../system-config-printer.py:534 -+#: ../system-config-printer.py:538 - #, fuzzy - msgid "Problems?" - msgstr "অনুসন্ধান" - --#: ../system-config-printer.py:637 ../system-config-printer.py:639 -+#: ../system-config-printer.py:641 ../system-config-printer.py:643 - msgid "Members of this class" - msgstr "এই শ্ৰেণীৰ সদস্যসমূহ" - --#: ../system-config-printer.py:638 ../system-config-printer.py:640 -+#: ../system-config-printer.py:642 ../system-config-printer.py:644 - msgid "Others" - msgstr "অন্য" - --#: ../system-config-printer.py:641 -+#: ../system-config-printer.py:645 - msgid "Devices" - msgstr "যন্ত্ৰ" - --#: ../system-config-printer.py:642 -+#: ../system-config-printer.py:646 - #, fuzzy - msgid "Connections" - msgstr "সংযোগ কৰা হৈছে" - --#: ../system-config-printer.py:643 -+#: ../system-config-printer.py:647 - msgid "Makes" - msgstr "নিৰ্মাণ" - --#: ../system-config-printer.py:644 -+#: ../system-config-printer.py:648 - msgid "Models" - msgstr "প্ৰতিমান" - --#: ../system-config-printer.py:645 -+#: ../system-config-printer.py:649 - msgid "Drivers" - msgstr "চালক" - --#: ../system-config-printer.py:646 ../glade/NewPrinterWindow.glade.h:55 -+#: ../system-config-printer.py:650 ../glade/NewPrinterWindow.glade.h:54 - msgid "Downloadable Drivers" - msgstr "ডাউন্‌লোড কৰিব পৰা চালক" - --#: ../system-config-printer.py:647 -+#: ../system-config-printer.py:651 - msgid "Users" - msgstr "ব্যৱহাৰকৰ্তা" - --#: ../system-config-printer.py:682 -+#: ../system-config-printer.py:686 - msgid "Automatic rotation" - msgstr "Automatic rotation" - --#: ../system-config-printer.py:989 -+#: ../system-config-printer.py:993 - #, fuzzy, python-format - msgid "Printer Properties - '%s' on %s" - msgstr "প্ৰিন্টাৰ সংক্ৰান্ত বিবৰণ" - - #. The Conflict button was pressed. --#: ../system-config-printer.py:996 -+#: ../system-config-printer.py:1000 - msgid "" - "There are conflicting options.\n" - "Changes can only be applied after\n" -@@ -874,81 +883,81 @@ msgstr "" - "এই সংঘাতসমূহ খণ্ডন কৰাৰ পিছতহে\n" - "সাল সলনি সমূহ প্ৰয়োগ কৰিব পাৰি ।" - --#: ../system-config-printer.py:1214 -+#: ../system-config-printer.py:1218 - #, python-format - msgid "Printer configuration - %s" - msgstr "মুদ্ৰকৰ বিন্যাস - %s" - --#: ../system-config-printer.py:1217 -+#: ../system-config-printer.py:1221 - #, python-format - msgid "Connected to %s" - msgstr "%s লৈ সংযোজিত" - - #. Update our copy of the printer's settings. --#: ../system-config-printer.py:1257 ../system-config-printer.py:2042 -+#: ../system-config-printer.py:1261 ../system-config-printer.py:2046 - msgid "obtaining queue details" - msgstr "" - --#: ../system-config-printer.py:1295 -+#: ../system-config-printer.py:1299 - msgid "Remove from Group" - msgstr "" - --#: ../system-config-printer.py:1361 -+#: ../system-config-printer.py:1365 - #, fuzzy - msgid "Network printer (discovered)" - msgstr "নতুন মুদ্ৰক" - --#: ../system-config-printer.py:1364 -+#: ../system-config-printer.py:1368 - msgid "Network class (discovered)" - msgstr "" - --#: ../system-config-printer.py:1370 ../system-config-printer.py:5524 --#: ../system-config-printer.py:5594 ../system-config-printer.py:5596 -+#: ../system-config-printer.py:1374 ../system-config-printer.py:5519 -+#: ../system-config-printer.py:5589 ../system-config-printer.py:5591 - msgid "Fax" - msgstr "" - --#: ../system-config-printer.py:1376 ../system-config-printer.py:1382 -+#: ../system-config-printer.py:1380 ../system-config-printer.py:1386 - #: ../troubleshoot/LocalOrRemote.py:30 - #, fuzzy - msgid "Network printer" - msgstr "নতুন মুদ্ৰক" - --#: ../system-config-printer.py:1379 -+#: ../system-config-printer.py:1383 - #, fuzzy - msgid "Network print share" - msgstr "নতুন মুদ্ৰক" - --#: ../system-config-printer.py:1508 ../glade/ConnectingDialog.glade.h:2 -+#: ../system-config-printer.py:1512 ../glade/ConnectingDialog.glade.h:2 - #, no-c-format, python-format - msgid "Opening connection to %s" - msgstr "" - --#: ../system-config-printer.py:1887 -+#: ../system-config-printer.py:1891 - msgid "Installable Options" - msgstr "সংস্থাপন কৰিব পৰা বিকল্প" - --#: ../system-config-printer.py:1888 -+#: ../system-config-printer.py:1892 - #: ../glade/PrinterPropertiesDialog.glade.h:109 - msgid "Printer Options" - msgstr "মুদ্ৰকৰ বিকল্প" - --#: ../system-config-printer.py:1924 -+#: ../system-config-printer.py:1928 - #, python-format - msgid "modifying class %s" - msgstr "" - --#: ../system-config-printer.py:1926 ../system-config-printer.py:3019 --#: ../system-config-printer.py:3044 ../system-config-printer.py:6547 --#: ../system-config-printer.py:6559 ../system-config-printer.py:6581 -+#: ../system-config-printer.py:1930 ../system-config-printer.py:3037 -+#: ../system-config-printer.py:3062 ../system-config-printer.py:6495 -+#: ../system-config-printer.py:6507 ../system-config-printer.py:6529 - #, fuzzy, python-format - msgid "modifying printer %s" - msgstr "মুদ্ৰকৰ বিন্যাস কৰক" - --#: ../system-config-printer.py:1941 -+#: ../system-config-printer.py:1945 - msgid "This will delete this class!" - msgstr "এই কাৰ্য্যই এই শ্ৰেণীটো আঁতৰাব !" - --#: ../system-config-printer.py:1942 -+#: ../system-config-printer.py:1946 - msgid "Proceed anyway?" - msgstr "যিকোনো উপায়ে আগবাঢ়োঁ ?" - -@@ -956,69 +965,69 @@ msgstr "যিকোনো উপায় - #. but we have never fetched the server settings to see whether - #. the server is publishing shared printers. Fetch the settings - #. now so that we can update the "not published" label if necessary. --#: ../system-config-printer.py:2030 ../system-config-printer.py:3203 -+#: ../system-config-printer.py:2034 ../system-config-printer.py:3221 - #, fuzzy - msgid "fetching server settings" - msgstr "সেৱকৰ মৌলিক বিন্যাস" - --#: ../system-config-printer.py:2100 -+#: ../system-config-printer.py:2104 - #, fuzzy - msgid "Set Default Printer" - msgstr "অৱিকল্পিত মুদ্ৰক" - --#: ../system-config-printer.py:2102 -+#: ../system-config-printer.py:2106 - msgid "Do you want to set this as the system-wide default printer?" - msgstr "" - --#: ../system-config-printer.py:2104 -+#: ../system-config-printer.py:2108 - #, fuzzy - msgid "Set as the _system-wide default printer" - msgstr "এইটো অৱিকল্পিত মুদ্ৰক" - --#: ../system-config-printer.py:2106 -+#: ../system-config-printer.py:2110 - msgid "_Clear my personal default setting" - msgstr "" - --#: ../system-config-printer.py:2107 -+#: ../system-config-printer.py:2111 - #, fuzzy - msgid "Set as my _personal default printer" - msgstr "অৱিকল্পিত" - --#: ../system-config-printer.py:2112 -+#: ../system-config-printer.py:2116 - #, fuzzy - msgid "setting default printer" - msgstr "অৱিকল্পিত" - --#: ../system-config-printer.py:2169 -+#: ../system-config-printer.py:2173 - #, fuzzy - msgid "printing test page" - msgstr "পৰীক্ষাৰ পৃষ্ঠা মুদ্ৰণ কৰক" - --#: ../system-config-printer.py:2182 ../system-config-printer.py:2217 --#: ../system-config-printer.py:5418 -+#: ../system-config-printer.py:2186 ../system-config-printer.py:2221 -+#: ../system-config-printer.py:5413 - msgid "Not possible" - msgstr "অসাধ্য" - --#: ../system-config-printer.py:2183 ../system-config-printer.py:2218 -+#: ../system-config-printer.py:2187 ../system-config-printer.py:2222 - msgid "" - "The remote server did not accept the print job, most likely because the " - "printer is not shared." - msgstr "দূৰৰ সেৱকে মুদ্ৰণৰ কাৰ্য্য গ্ৰহণ নকৰিলে,সম্ভৱতঃ মুদ্ৰকক অংশীদাৰ কৰা হোৱা নাই ।" - --#: ../system-config-printer.py:2195 ../system-config-printer.py:2210 -+#: ../system-config-printer.py:2199 ../system-config-printer.py:2214 - msgid "Submitted" - msgstr "আগবঢ়োৱা হ'ল" - --#: ../system-config-printer.py:2196 -+#: ../system-config-printer.py:2200 - #, python-format - msgid "Test page submitted as job %d" - msgstr "%d কাৰ্য্য হিচাপে পৰীক্ষাৰ পৃষ্ঠা আগবঢ়োৱা হৈছে" - --#: ../system-config-printer.py:2203 -+#: ../system-config-printer.py:2207 - msgid "sending maintenance command" - msgstr "" - --#: ../system-config-printer.py:2211 -+#: ../system-config-printer.py:2215 - #, python-format - msgid "Maintenance command submitted as job %d" - msgstr "%d কাৰ্য্য হিচাপে পৰীক্ষাৰ পৃষ্ঠা আগবঢ়োৱা হৈছে" -@@ -1026,76 +1035,76 @@ msgstr "%d কাৰ্য্য হি - #. The underlying cupsGetPPD2() function returned NULL without - #. setting an IPP error, so it'll be something like a failed - #. connection. --#: ../system-config-printer.py:2285 ../system-config-printer.py:2381 -+#: ../system-config-printer.py:2289 ../system-config-printer.py:2385 - msgid "Error" - msgstr "ভুল" - --#: ../system-config-printer.py:2286 -+#: ../system-config-printer.py:2290 - msgid "There was a problem connecting to the CUPS server." - msgstr "CUPS সেৱকলৈ সংযোগ কৰোঁতে এটা ভুল হ'ল ।" - --#: ../system-config-printer.py:2382 -+#: ../system-config-printer.py:2386 - #, python-format - msgid "Option '%s' has value '%s' and cannot be edited." - msgstr "Option '%s' has value '%s' and cannot be edited." - --#: ../system-config-printer.py:2466 -+#: ../system-config-printer.py:2476 - msgid "Marker levels are not reported for this printer." - msgstr "" - --#: ../system-config-printer.py:2763 -+#: ../system-config-printer.py:2773 - #, fuzzy - msgid "Cannot Rename" - msgstr "মুক্ত কৰা হবে (_R)" - --#: ../system-config-printer.py:2764 -+#: ../system-config-printer.py:2774 - #, fuzzy - msgid "There are queued jobs." - msgstr "There are no queues available." - --#: ../system-config-printer.py:2822 -+#: ../system-config-printer.py:2840 - #, fuzzy - msgid "renaming printer" - msgstr "মুদ্ৰকৰ বিন্যাস কৰক" - - #. for classes make sure all members - #. will get added --#: ../system-config-printer.py:2907 -+#: ../system-config-printer.py:2925 - #, fuzzy - msgid "copying printer" - msgstr "মুদ্ৰকৰ বিন্যাস কৰক" - --#: ../system-config-printer.py:2971 -+#: ../system-config-printer.py:2989 - #, fuzzy, python-format - msgid "Really delete class '%s'?" - msgstr "%s শ্ৰেণী সঁচাকৈ আঁতৰাওঁ ?" - --#: ../system-config-printer.py:2973 -+#: ../system-config-printer.py:2991 - #, fuzzy, python-format - msgid "Really delete printer '%s'?" - msgstr "%s সঁচাকৈ আঁতৰাওঁ ?" - --#: ../system-config-printer.py:2975 -+#: ../system-config-printer.py:2993 - #, fuzzy - msgid "Really delete selected destinations?" - msgstr "%s সঁচাকৈ আঁতৰাওঁ ?" - --#: ../system-config-printer.py:2996 -+#: ../system-config-printer.py:3014 - #, fuzzy, python-format - msgid "deleting printer %s" - msgstr "মুদ্ৰকৰ বিন্যাস কৰক" - --#: ../system-config-printer.py:3070 -+#: ../system-config-printer.py:3088 - msgid "Publish Shared Printers" - msgstr "" - --#: ../system-config-printer.py:3071 -+#: ../system-config-printer.py:3089 - msgid "" - "Shared printers are not available to other people unless the 'Publish shared " - "printers' option is enabled in the server settings." - msgstr "" - --#: ../system-config-printer.py:3264 -+#: ../system-config-printer.py:3282 - #, fuzzy - msgid "modifying server settings" - msgstr "সেৱকৰ মৌলিক বিন্যাস" -@@ -1106,35 +1115,35 @@ msgstr "সেৱকৰ মৌলি - #. be unblocked. Unfortunately, this is not yet possible - #. (bug #440469). However, we can display a dialog to suggest - #. that now might be a good time to review the firewall settings. --#: ../system-config-printer.py:3289 -+#: ../system-config-printer.py:3307 - msgid "Review Firewall" - msgstr "" - --#: ../system-config-printer.py:3290 -+#: ../system-config-printer.py:3308 - msgid "" - "You may need to adjust the firewall to allow network printing to this " - "computer." - msgstr "" - --#: ../system-config-printer.py:3623 -+#: ../system-config-printer.py:3638 - msgid "Browsing not available (pysmbc not installed)" - msgstr "" - - #. SMB list columns --#: ../system-config-printer.py:3629 -+#: ../system-config-printer.py:3644 - msgid "Share" - msgstr "অংশ" - --#: ../system-config-printer.py:3635 -+#: ../system-config-printer.py:3650 - msgid "Comment" - msgstr "মন্তব্য" - - #. IPP list columns --#: ../system-config-printer.py:3654 -+#: ../system-config-printer.py:3669 - msgid "Queue" - msgstr "Queue" - --#: ../system-config-printer.py:3668 -+#: ../system-config-printer.py:3683 - msgid "" - "PostScript Printer Description files (*.ppd, *.PPD, *.ppd.gz, *.PPD.gz, *." - "PPD.GZ)" -@@ -1142,68 +1151,68 @@ msgstr "" - "PostScript Printer Description files (*.ppd, *.PPD, *.ppd.gz, *.PPD.gz, *." - "PPD.GZ)" - --#: ../system-config-printer.py:3677 -+#: ../system-config-printer.py:3692 - msgid "All files (*)" - msgstr "সকল" - --#: ../system-config-printer.py:3713 ../system-config-printer.py:5970 --#: ../system-config-printer.py:6008 ../applet.py:124 -+#: ../system-config-printer.py:3728 ../system-config-printer.py:5918 -+#: ../system-config-printer.py:5956 ../applet.py:124 - msgid "Search" - msgstr "বিচাৰক" - --#: ../system-config-printer.py:3736 ../system-config-printer.py:3760 --#: ../glade/NewPrinterWindow.glade.h:74 -+#: ../system-config-printer.py:3751 ../system-config-printer.py:3775 -+#: ../glade/NewPrinterWindow.glade.h:73 - msgid "New Printer" - msgstr "নতুন মুদ্ৰক" - --#: ../system-config-printer.py:3747 -+#: ../system-config-printer.py:3762 - msgid "New Class" - msgstr "নতুন শ্ৰেণী" - --#: ../system-config-printer.py:3752 -+#: ../system-config-printer.py:3767 - msgid "Change Device URI" - msgstr "যন্ত্ৰৰ URI সলনি কৰক" - --#: ../system-config-printer.py:3758 -+#: ../system-config-printer.py:3773 - msgid "Change Driver" - msgstr "চালকৰ সলনি কৰক" - --#: ../system-config-printer.py:3927 ../system-config-printer.py:3993 --#: ../system-config-printer.py:4289 ../system-config-printer.py:4487 --#: ../system-config-printer.py:5772 ../system-config-printer.py:5995 -+#: ../system-config-printer.py:3942 ../system-config-printer.py:4008 -+#: ../system-config-printer.py:4304 ../system-config-printer.py:4502 -+#: ../system-config-printer.py:5762 ../system-config-printer.py:5943 - msgid "Searching" - msgstr "অনুসন্ধান" - --#: ../system-config-printer.py:3928 -+#: ../system-config-printer.py:3943 - #, fuzzy - msgid "Searching for downloadable drivers" - msgstr "অনুসন্ধান উল্লিখিত সময় অৱধি" - --#: ../system-config-printer.py:3994 ../system-config-printer.py:4290 -+#: ../system-config-printer.py:4009 ../system-config-printer.py:4305 - msgid "Searching for drivers" - msgstr "অনুসন্ধান উল্লিখিত সময় অৱধি" - --#: ../system-config-printer.py:4488 ../system-config-printer.py:5773 -+#: ../system-config-printer.py:4503 ../system-config-printer.py:5763 - msgid "Searching for printers" - msgstr "অনুসন্ধান উল্লিখিত সময় অৱধি" - --#: ../system-config-printer.py:4497 -+#: ../system-config-printer.py:4512 - #, fuzzy - msgid "fetching device list" - msgstr "সেৱকৰ মৌলিক বিন্যাস" - - #. Tell the user why he needs the plugin --#: ../system-config-printer.py:4579 -+#: ../system-config-printer.py:4594 - msgid "For this printer a proprietary driver plugin from HP is available.\n" - msgstr "" - --#: ../system-config-printer.py:4582 -+#: ../system-config-printer.py:4597 - msgid "" - "The installation of the plugin is required for your printer to work.\n" - "\n" - msgstr "" - --#: ../system-config-printer.py:4585 -+#: ../system-config-printer.py:4600 - msgid "" - "Installing the plugin is optional, it completes or enhances the " - "functionality\n" -@@ -1211,298 +1220,290 @@ msgid "" - "\n" - msgstr "" - --#: ../system-config-printer.py:4589 -+#: ../system-config-printer.py:4604 - msgid "The plugin provides the following features:\n" - msgstr "" - --#: ../system-config-printer.py:4592 -+#: ../system-config-printer.py:4607 - msgid " - Printing support\n" - msgstr "" - --#: ../system-config-printer.py:4595 -+#: ../system-config-printer.py:4610 - msgid " - Faster printing\n" - msgstr "" - --#: ../system-config-printer.py:4598 -+#: ../system-config-printer.py:4613 - msgid " - Better printout quality\n" - msgstr "" - --#: ../system-config-printer.py:4601 -+#: ../system-config-printer.py:4616 - msgid " - Extra printing features\n" - msgstr "" - --#: ../system-config-printer.py:4604 -+#: ../system-config-printer.py:4619 - msgid " - Scanning support\n" - msgstr "" - --#: ../system-config-printer.py:4607 -+#: ../system-config-printer.py:4622 - msgid " - Faster scanning\n" - msgstr "" - --#: ../system-config-printer.py:4610 -+#: ../system-config-printer.py:4625 - msgid " - Better scanning image quality\n" - msgstr "" - --#: ../system-config-printer.py:4613 -+#: ../system-config-printer.py:4628 - msgid " - Faxing support\n" - msgstr "" - --#: ../system-config-printer.py:4616 -+#: ../system-config-printer.py:4631 - msgid " - Extra fax features\n" - msgstr "" - --#: ../system-config-printer.py:4619 -+#: ../system-config-printer.py:4634 - msgid " - Better Input/Output support\n" - msgstr "" - --#: ../system-config-printer.py:4622 -+#: ../system-config-printer.py:4637 - msgid " - Extra user interface features\n" - msgstr "" - --#: ../system-config-printer.py:4625 -+#: ../system-config-printer.py:4640 - msgid " - Other extra features\n" - msgstr "" - --#: ../system-config-printer.py:4630 -+#: ../system-config-printer.py:4645 - #, fuzzy - msgid "Install plugin" - msgstr "অপশন" - --#: ../system-config-printer.py:4631 -+#: ../system-config-printer.py:4646 - #, fuzzy - msgid "Do not set up printer" - msgstr "মুদ্ৰকৰ নকল কৰক" - --#: ../system-config-printer.py:4632 -+#: ../system-config-printer.py:4647 - msgid "Set up without plugin" - msgstr "" - --#: ../system-config-printer.py:4634 ../troubleshoot/PrintTestPage.py:118 -+#: ../system-config-printer.py:4649 ../troubleshoot/PrintTestPage.py:118 - msgid "Yes" - msgstr "" - --#: ../system-config-printer.py:4635 ../troubleshoot/PrintTestPage.py:119 -+#: ../system-config-printer.py:4650 ../troubleshoot/PrintTestPage.py:119 - #, fuzzy - msgid "No" - msgstr "শূণ্য" - --#: ../system-config-printer.py:4809 ../system-config-printer.py:4813 -+#: ../system-config-printer.py:4824 ../system-config-printer.py:4828 - msgid " (Current)" - msgstr " (বৰ্ত্তমানৰ)" - --#: ../system-config-printer.py:4845 --msgid "HP Printer (HPLIP)" --msgstr "" -- --#: ../system-config-printer.py:4886 -+#: ../system-config-printer.py:4881 - msgid "Other" - msgstr "অন্য" - - #. device-info - #. PhysicalDevice obj - #. Separator? --#: ../system-config-printer.py:4902 -+#: ../system-config-printer.py:4897 - #, fuzzy - msgid "Network Printer" - msgstr "নতুন মুদ্ৰক" - --#: ../system-config-printer.py:4906 -+#: ../system-config-printer.py:4901 - #, fuzzy - msgid "Find Network Printer" - msgstr "নতুন মুদ্ৰক" - --#: ../system-config-printer.py:4979 ../system-config-printer.py:5376 -+#: ../system-config-printer.py:4974 ../system-config-printer.py:5371 - msgid "Scanning..." - msgstr "চোৱা হৈছে..." - --#: ../system-config-printer.py:5034 ../system-config-printer.py:5798 -+#: ../system-config-printer.py:5029 - #, fuzzy - msgid "No Print Shares" - msgstr "নতুন মুদ্ৰক" - --#: ../system-config-printer.py:5035 -+#: ../system-config-printer.py:5030 - msgid "" - "There were no print shares found. Please check that the Samba service is " - "marked as trusted in your firewall configuration." - msgstr "" - --#: ../system-config-printer.py:5296 ../system-config-printer.py:5357 -+#: ../system-config-printer.py:5291 ../system-config-printer.py:5352 - msgid "Print Share Verified" - msgstr "" - --#: ../system-config-printer.py:5297 ../system-config-printer.py:5358 -+#: ../system-config-printer.py:5292 ../system-config-printer.py:5353 - msgid "This print share is accessible." - msgstr "এই মুদ্ৰণ অংশ অভিগম কৰিব পাৰি ।" - --#: ../system-config-printer.py:5302 ../system-config-printer.py:5362 -+#: ../system-config-printer.py:5297 ../system-config-printer.py:5357 - msgid "This print share is not accessible." - msgstr "এই মুদ্ৰণ অংশ অভিগম কৰিব নোৱাৰি ।" - --#: ../system-config-printer.py:5305 -+#: ../system-config-printer.py:5300 - #, fuzzy - msgid "Print Share Inaccessible" - msgstr "এই মুদ্ৰণ অংশ অভিগম কৰিব পাৰি ।" - --#: ../system-config-printer.py:5361 -+#: ../system-config-printer.py:5356 - msgid "Inaccessible" - msgstr "অভিগম কৰিব নোৱাৰি" - --#: ../system-config-printer.py:5419 -+#: ../system-config-printer.py:5414 - #, fuzzy, python-format - msgid "It is not possible to obtain a list of queues from '%s'." - msgstr "হলো তালিকা সৰ্বমোট হোস্ট." - --#: ../system-config-printer.py:5421 -+#: ../system-config-printer.py:5416 - msgid "" - "Obtaining a list of queues is a CUPS extension to IPP. Network printers do " - "not support it." - msgstr "" - --#: ../system-config-printer.py:5424 -+#: ../system-config-printer.py:5419 - msgid "No queues" - msgstr "না" - --#: ../system-config-printer.py:5425 -+#: ../system-config-printer.py:5420 - msgid "There are no queues available." - msgstr "There are no queues available." - --#: ../system-config-printer.py:5516 -+#: ../system-config-printer.py:5511 - msgid "Parallel Port" - msgstr "" - --#: ../system-config-printer.py:5518 -+#: ../system-config-printer.py:5513 - #, fuzzy - msgid "Serial Port" - msgstr "ক্ৰমিক" - --#: ../system-config-printer.py:5520 -+#: ../system-config-printer.py:5515 - #, fuzzy - msgid "USB" - msgstr "SMB" - --#: ../system-config-printer.py:5522 ../system-config-printer.py:5525 -+#: ../system-config-printer.py:5517 ../system-config-printer.py:5520 - msgid "HP Linux Imaging and Printing (HPLIP)" - msgstr "" - --#: ../system-config-printer.py:5527 -+#: ../system-config-printer.py:5522 - #, fuzzy - msgid "Hardware Abstraction Layer (HAL)" - msgstr "" - "হাৰ্ডৱেৰ এব্সট্ৰেক্সন লেয়াৰ (যান্ত্ৰিক সামগ্ৰীৰ নিৰ্য্যাস বাহিৰ কৰা স্তৰ)(HAL)-এ " - "উদ্ঘাটন কৰা স্থানীয় মুদ্ৰক ।" - --#: ../system-config-printer.py:5529 -+#: ../system-config-printer.py:5524 - msgid "AppSocket/HP JetDirect" - msgstr "" - --#: ../system-config-printer.py:5538 -+#: ../system-config-printer.py:5533 - #, python-format - msgid "LPD/LPR queue '%s'" - msgstr "" - --#: ../system-config-printer.py:5540 -+#: ../system-config-printer.py:5535 - #, fuzzy - msgid "LPD/LPR queue" - msgstr "LPD" - --#: ../system-config-printer.py:5543 -+#: ../system-config-printer.py:5538 - msgid "Windows Printer via SAMBA" - msgstr "" - --#: ../system-config-printer.py:5545 ../glade/NewPrinterWindow.glade.h:66 -+#: ../system-config-printer.py:5540 ../glade/NewPrinterWindow.glade.h:65 - msgid "IPP" - msgstr "IPP" - --#: ../system-config-printer.py:5547 -+#: ../system-config-printer.py:5542 - msgid "HTTP" - msgstr "" - --#: ../system-config-printer.py:5632 -+#: ../system-config-printer.py:5624 - msgid "A printer connected to the parallel port." - msgstr "পেৰেলেল প'ৰ্টত সংযোগ থকা মুদ্ৰক ।" - --#: ../system-config-printer.py:5634 -+#: ../system-config-printer.py:5626 - msgid "A printer connected to a USB port." - msgstr "USB প'ৰ্টত সংযোগ থকা মুদ্ৰক ।" - --#: ../system-config-printer.py:5636 -+#: ../system-config-printer.py:5628 - msgid "" - "HPLIP software driving a printer, or the printer function of a multi-" - "function device." - msgstr "HPLIP চালনাজ্ঞানে চলোৱা মুদ্ৰক, বা বিভিন্ন কাৰ্য্যকৰণ থকা যন্ত্ৰৰ মুদ্ৰণ কাৰ্য্য ।" - --#: ../system-config-printer.py:5639 -+#: ../system-config-printer.py:5631 - msgid "" - "HPLIP software driving a fax machine, or the fax function of a multi-" - "function device." - msgstr "" - "HPLIP চালনাজ্ঞানে চলোৱা ফেক্স যন্ত্ৰ, বা বিভিন্ন কাৰ্য্যকৰণ থকা যন্ত্ৰৰ ফেক্স কাৰ্য্য ।" - --#: ../system-config-printer.py:5642 -+#: ../system-config-printer.py:5634 - msgid "Local printer detected by the Hardware Abstraction Layer (HAL)." - msgstr "" - "হাৰ্ডৱেৰ এব্সট্ৰেক্সন লেয়াৰ (যান্ত্ৰিক সামগ্ৰীৰ নিৰ্য্যাস বাহিৰ কৰা স্তৰ)(HAL)-এ " - "উদ্ঘাটন কৰা স্থানীয় মুদ্ৰক ।" - --#: ../system-config-printer.py:5799 --msgid "HPLIP cannot find the device." --msgstr "" -- --#: ../system-config-printer.py:5881 -+#: ../system-config-printer.py:5831 - msgid "No printer was found at that address." - msgstr "" - --#: ../system-config-printer.py:6020 -+#: ../system-config-printer.py:5968 - #, fuzzy - msgid "-- Select from search results --" - msgstr "-- মূদ্ৰকৰ মডেল নিৰ্ব্বাচন কৰক --" - --#: ../system-config-printer.py:6022 -+#: ../system-config-printer.py:5970 - msgid "-- No matches found --" - msgstr "না" - --#: ../system-config-printer.py:6203 -+#: ../system-config-printer.py:6151 - msgid " (recommended)" - msgstr " (উপদেশ দিয়া হয়)" - --#: ../system-config-printer.py:6217 -+#: ../system-config-printer.py:6165 - msgid "This PPD is generated by foomatic." - msgstr "এই PPD foomatic ৰ দ্বাৰা উৎপন্ন কৰা হৈছে ।" - --#: ../system-config-printer.py:6241 -+#: ../system-config-printer.py:6189 - msgid "OpenPrinting" - msgstr "মুদ্ৰণ কৰা কাৰ্য্য" - --#: ../system-config-printer.py:6252 -+#: ../system-config-printer.py:6200 - msgid "Distributable" - msgstr "বিতৰণ কৰিব পৰা" - --#: ../system-config-printer.py:6293 -+#: ../system-config-printer.py:6241 - #, fuzzy - msgid ", " - msgstr " " - --#: ../system-config-printer.py:6298 -+#: ../system-config-printer.py:6246 - #, python-format - msgid "" - "\n" - "(%s)" - msgstr "" - --#: ../system-config-printer.py:6303 -+#: ../system-config-printer.py:6251 - msgid "No support contacts known" - msgstr "" - --#: ../system-config-printer.py:6307 ../system-config-printer.py:6320 -+#: ../system-config-printer.py:6255 ../system-config-printer.py:6268 - msgid "Not specified." - msgstr "" - - #. Foomatic database problem of some sort. --#: ../system-config-printer.py:6360 -+#: ../system-config-printer.py:6308 - msgid "Database error" - msgstr "তথ্য ভঁৰালত ভুল" - --#: ../system-config-printer.py:6361 -+#: ../system-config-printer.py:6309 - #, python-format - msgid "The '%s' driver cannot be used with printer '%s %s'." - msgstr "'%s' চালক '%s %s' মুদ্ৰকৰ সৈতে ব্যৱহাৰ কৰিব পৰা নাযাব ।" -@@ -1510,61 +1511,61 @@ msgstr "'%s' চালক '%s %s' মু - #. This printer references some XML that is not - #. installed by default. Point the user at the - #. package they need to install. --#: ../system-config-printer.py:6371 -+#: ../system-config-printer.py:6319 - #, python-format - msgid "You will need to install the '%s' package in order to use this driver." - msgstr "এই চালক ব্যৱহাৰ কৰিব'লৈ আপুনি '%s' সৰঞ্জাম সংস্থাপন কৰিব লাগিব ।" - - #. This error came from trying to open the PPD file. --#: ../system-config-printer.py:6378 -+#: ../system-config-printer.py:6326 - msgid "PPD error" - msgstr "PPD ভুল" - --#: ../system-config-printer.py:6380 -+#: ../system-config-printer.py:6328 - msgid "Failed to read PPD file. Possible reason follows:" - msgstr "PPD নথিপত্ৰ পঢ়াত অক্ষম । সম্ভৱপৰ কাৰণ এনে ধৰণৰ:" - - #. Failed to get PPD downloaded from OpenPrinting XXX --#: ../system-config-printer.py:6397 -+#: ../system-config-printer.py:6345 - msgid "Downloadable drivers" - msgstr "ডাউন্‌লোড কৰিব পৰা চালক" - --#: ../system-config-printer.py:6398 -+#: ../system-config-printer.py:6346 - msgid "Failed to download PPD." - msgstr "" - --#: ../system-config-printer.py:6405 -+#: ../system-config-printer.py:6353 - msgid "fetching PPD" - msgstr "" - --#: ../system-config-printer.py:6434 ../system-config-printer.py:6472 -+#: ../system-config-printer.py:6382 ../system-config-printer.py:6420 - msgid "No Installable Options" - msgstr "না অপশন" - --#: ../system-config-printer.py:6520 -+#: ../system-config-printer.py:6468 - #, fuzzy, python-format - msgid "adding printer %s" - msgstr "মুদ্ৰকৰ বিন্যাস কৰক" - --#: ../system-config-printer.py:6669 -+#: ../system-config-printer.py:6617 - msgid "Would you like to print a test page?" - msgstr "" - --#: ../system-config-printer.py:6722 -+#: ../system-config-printer.py:6670 - msgid "Install driver" - msgstr "সন্ধানহীন চালক" - --#: ../system-config-printer.py:6723 ../troubleshoot/CheckPPDSanity.py:131 -+#: ../system-config-printer.py:6671 ../troubleshoot/CheckPPDSanity.py:131 - #, python-format - msgid "Printer '%s' requires the %s package but it is not currently installed." - msgstr "" - "Printer '%s' requires the %s package but it is not currently installed." - --#: ../system-config-printer.py:6739 -+#: ../system-config-printer.py:6687 - msgid "Missing driver" - msgstr "সন্ধানহীন চালক" - --#: ../system-config-printer.py:6740 -+#: ../system-config-printer.py:6688 - #, python-format - msgid "" - "Printer '%s' requires the '%s' program but it is not currently installed. " -@@ -1700,128 +1701,123 @@ msgid "Enter device URI" - msgstr "যন্ত্ৰৰ URI দিয়ক" - - #: ../glade/NewPrinterWindow.glade.h:5 --#, fuzzy --msgid "HP Printer (HPLIP) via network" --msgstr "মুদ্ৰকৰ নাম" -- --#: ../glade/NewPrinterWindow.glade.h:6 - msgid "IPP Printer" - msgstr " IPP প্ৰিন্টাৰ" - --#: ../glade/NewPrinterWindow.glade.h:7 -+#: ../glade/NewPrinterWindow.glade.h:6 - msgid "License Terms" - msgstr "মুদ্ৰকৰ নাম" - --#: ../glade/NewPrinterWindow.glade.h:8 -+#: ../glade/NewPrinterWindow.glade.h:7 - msgid "Location of the LPD network printer" - msgstr "LPD নে'টৱৰ্ক মুদ্ৰকৰ স্থান" - --#: ../glade/NewPrinterWindow.glade.h:9 -+#: ../glade/NewPrinterWindow.glade.h:8 - msgid "Location of the network printer" - msgstr "নে'টৱৰ্ক মুদ্ৰকৰ স্থান" - --#: ../glade/NewPrinterWindow.glade.h:10 -+#: ../glade/NewPrinterWindow.glade.h:9 - msgid "Location (optional)" - msgstr "স্থান (বৈকল্পিক)" - --#: ../glade/NewPrinterWindow.glade.h:11 -+#: ../glade/NewPrinterWindow.glade.h:10 - #, fuzzy - msgid "Network Printer" - msgstr "নতুন মুদ্ৰক" - --#: ../glade/NewPrinterWindow.glade.h:12 -+#: ../glade/NewPrinterWindow.glade.h:11 - msgid "Note" - msgstr " নোট" - --#: ../glade/NewPrinterWindow.glade.h:13 -+#: ../glade/NewPrinterWindow.glade.h:12 - #, fuzzy - msgid "Output Quality" - msgstr "অৱস্থা" - --#: ../glade/NewPrinterWindow.glade.h:14 -+#: ../glade/NewPrinterWindow.glade.h:13 - msgid "Printer Name" - msgstr "মুদ্ৰকৰ নাম" - --#: ../glade/NewPrinterWindow.glade.h:15 -+#: ../glade/NewPrinterWindow.glade.h:14 - msgid "SMB Printer" - msgstr " SMB প্ৰিন্টাৰ" - --#: ../glade/NewPrinterWindow.glade.h:16 -+#: ../glade/NewPrinterWindow.glade.h:15 - msgid "Select Driver" - msgstr " চালক" - --#: ../glade/NewPrinterWindow.glade.h:17 -+#: ../glade/NewPrinterWindow.glade.h:16 - msgid "Settings of the serial port" - msgstr "চিৰিয়েল প'ৰ্টৰ পটভুমি" - --#: ../glade/NewPrinterWindow.glade.h:18 -+#: ../glade/NewPrinterWindow.glade.h:17 - msgid "smb://[workgroup/]server[:port]/printer" - msgstr "smb://[workgroup/]server[:port]/printer" - --#: ../glade/NewPrinterWindow.glade.h:19 -+#: ../glade/NewPrinterWindow.glade.h:18 - #, fuzzy - msgid "Choose Class Members" - msgstr "" - "গুপ্তশব্দৰ প্ৰয়োজন\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:20 -+#: ../glade/NewPrinterWindow.glade.h:19 - #, fuzzy - msgid "Choose Driver" - msgstr "" - "গুপ্তশব্দৰ প্ৰয়োজন\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:21 -+#: ../glade/NewPrinterWindow.glade.h:20 - #, fuzzy - msgid "Describe Printer" - msgstr "" - "গুপ্তশব্দৰ প্ৰয়োজন\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:22 -+#: ../glade/NewPrinterWindow.glade.h:21 - #, fuzzy - msgid "Existing Settings" - msgstr "" - "গুপ্তশব্দৰ প্ৰয়োজন\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:23 -+#: ../glade/NewPrinterWindow.glade.h:22 - #, fuzzy - msgid "Installable Options" - msgstr "" - "গুপ্তশব্দৰ প্ৰয়োজন\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:24 -+#: ../glade/NewPrinterWindow.glade.h:23 - #, fuzzy - msgid "Select Device" - msgstr "" - "গুপ্তশব্দৰ প্ৰয়োজন\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:25 -+#: ../glade/NewPrinterWindow.glade.h:24 - msgid "Baud Rate" - msgstr "ব'ওড হাৰ" - --#: ../glade/NewPrinterWindow.glade.h:26 -+#: ../glade/NewPrinterWindow.glade.h:25 - msgid "Browse..." - msgstr "ব্ৰাউজ কৰক..." - --#: ../glade/NewPrinterWindow.glade.h:27 -+#: ../glade/NewPrinterWindow.glade.h:26 - msgid "Comments..." - msgstr "মন্তব্য" - --#: ../glade/NewPrinterWindow.glade.h:28 -+#: ../glade/NewPrinterWindow.glade.h:27 - #, fuzzy - msgid "Connection" - msgstr "সংযোগ কৰা হৈছে" - --#: ../glade/NewPrinterWindow.glade.h:29 -+#: ../glade/NewPrinterWindow.glade.h:28 - msgid "Data Bits" - msgstr "তথ্যৰ বিট" - --#: ../glade/NewPrinterWindow.glade.h:30 -+#: ../glade/NewPrinterWindow.glade.h:29 - msgid "" - "Default\n" - "1200\n" -@@ -1843,7 +1839,7 @@ msgstr "" - "57600\n" - "115200" - --#: ../glade/NewPrinterWindow.glade.h:39 -+#: ../glade/NewPrinterWindow.glade.h:38 - msgid "" - "Default\n" - "8\n" -@@ -1853,7 +1849,7 @@ msgstr "" - "8\n" - "7" - --#: ../glade/NewPrinterWindow.glade.h:42 -+#: ../glade/NewPrinterWindow.glade.h:41 - msgid "" - "Default\n" - "None\n" -@@ -1865,7 +1861,7 @@ msgstr "" - "অযুগ্ম সংখ্যা\n" - "যুগ্ম সংখ্যা" - --#: ../glade/NewPrinterWindow.glade.h:46 -+#: ../glade/NewPrinterWindow.glade.h:45 - msgid "" - "Default\n" - "None\n" -@@ -1879,197 +1875,197 @@ msgstr "" - "RTS/CTS (যন্ত্ৰ)\n" - "DTR/DSR (যন্ত্ৰ)" - --#: ../glade/NewPrinterWindow.glade.h:51 -+#: ../glade/NewPrinterWindow.glade.h:50 - #: ../glade/PrinterPropertiesDialog.glade.h:35 - msgid "Description:" - msgstr "বিৱৰণ:" - --#: ../glade/NewPrinterWindow.glade.h:52 ../troubleshoot/DeviceListed.py:40 -+#: ../glade/NewPrinterWindow.glade.h:51 ../troubleshoot/DeviceListed.py:40 - msgid "Device URI" - msgstr "যন্ত্ৰ URI" - --#: ../glade/NewPrinterWindow.glade.h:53 -+#: ../glade/NewPrinterWindow.glade.h:52 - msgid "Device description." - msgstr "যন্ত্ৰৰ বিৱৰণ:" - --#: ../glade/NewPrinterWindow.glade.h:54 -+#: ../glade/NewPrinterWindow.glade.h:53 - msgid "DirectJet" - msgstr "DirectJet" - --#: ../glade/NewPrinterWindow.glade.h:56 -+#: ../glade/NewPrinterWindow.glade.h:55 - msgid "Driver details" - msgstr "চালক" - --#: ../glade/NewPrinterWindow.glade.h:57 -+#: ../glade/NewPrinterWindow.glade.h:56 - msgid "Empty" - msgstr "ৰিক্ত" - --#: ../glade/NewPrinterWindow.glade.h:58 -+#: ../glade/NewPrinterWindow.glade.h:57 - msgid "Find _Queue..." - msgstr "অনুসন্ধান." - --#: ../glade/NewPrinterWindow.glade.h:59 -+#: ../glade/NewPrinterWindow.glade.h:58 - msgid "Flow Control" - msgstr "ধাৰা নিয়ন্ত্ৰণ" - --#: ../glade/NewPrinterWindow.glade.h:60 -+#: ../glade/NewPrinterWindow.glade.h:59 - msgid "" - "For the printer you have selected there are drivers available for download." - msgstr "উল্লিখিত সময় অৱধি." - --#: ../glade/NewPrinterWindow.glade.h:61 -+#: ../glade/NewPrinterWindow.glade.h:60 - msgid "Free software" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:62 -+#: ../glade/NewPrinterWindow.glade.h:61 - msgid "Graphics:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:63 -+#: ../glade/NewPrinterWindow.glade.h:62 - msgid "Host:" - msgstr "গৃহস্থ:" - --#: ../glade/NewPrinterWindow.glade.h:64 -+#: ../glade/NewPrinterWindow.glade.h:63 - msgid "Human-readable description such as \"HP LaserJet with Duplexer\"" - msgstr "মানুহে পঢ়িব পৰা বিৱৰণ যেনে \"HP LaserJet Duplexer ৰ সৈতে\"" - --#: ../glade/NewPrinterWindow.glade.h:65 -+#: ../glade/NewPrinterWindow.glade.h:64 - msgid "Human-readable location such as \"Lab 1\"" - msgstr "মানুহে পঢ়িব পৰা স্থান যেনে \"লেব ১\"" - --#: ../glade/NewPrinterWindow.glade.h:67 -+#: ../glade/NewPrinterWindow.glade.h:66 - msgid "LPD" - msgstr "LPD" - --#: ../glade/NewPrinterWindow.glade.h:68 -+#: ../glade/NewPrinterWindow.glade.h:67 - #, fuzzy - msgid "License:" - msgstr "প্ৰমাণপত্ৰ:" - --#: ../glade/NewPrinterWindow.glade.h:69 -+#: ../glade/NewPrinterWindow.glade.h:68 - #, fuzzy - msgid "Line art:" - msgstr "মুদ্ৰকৰ অৱস্থা:" - --#: ../glade/NewPrinterWindow.glade.h:70 -+#: ../glade/NewPrinterWindow.glade.h:69 - msgid "Local Driver" - msgstr "স্থানীয় চালক" - --#: ../glade/NewPrinterWindow.glade.h:71 -+#: ../glade/NewPrinterWindow.glade.h:70 - #, fuzzy - msgid "Make and model:" - msgstr "নিৰ্মাণ আৰু প্ৰতিমান:" - --#: ../glade/NewPrinterWindow.glade.h:72 -+#: ../glade/NewPrinterWindow.glade.h:71 - msgid "Manufacturer" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:73 -+#: ../glade/NewPrinterWindow.glade.h:72 - #, fuzzy - msgid "Network" - msgstr "নতুন মুদ্ৰক" - --#: ../glade/NewPrinterWindow.glade.h:75 -+#: ../glade/NewPrinterWindow.glade.h:74 - msgid "No, I do not accept this license" - msgstr "না প্ৰথম" - --#: ../glade/NewPrinterWindow.glade.h:76 -+#: ../glade/NewPrinterWindow.glade.h:75 - msgid "Parity" - msgstr "সমমানতা" - --#: ../glade/NewPrinterWindow.glade.h:78 -+#: ../glade/NewPrinterWindow.glade.h:77 - msgid "Patented algorithms" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:79 -+#: ../glade/NewPrinterWindow.glade.h:78 - msgid "Photo:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:80 -+#: ../glade/NewPrinterWindow.glade.h:79 - msgid "Port number:" - msgstr "পোৰ্ট সংখ্যা:" - --#: ../glade/NewPrinterWindow.glade.h:81 -+#: ../glade/NewPrinterWindow.glade.h:80 - msgid "" - "PostScript Printer Description (PPD) files can often be found on the driver " - "disk that comes with the printer. For PostScript printers they are often " - "part of the Windows® driver." - msgstr "প্ৰিন্টাৰ বিৱৰণ চলি আছে সৰ্বমোট." - --#: ../glade/NewPrinterWindow.glade.h:82 -+#: ../glade/NewPrinterWindow.glade.h:81 - msgid "Printer model:" - msgstr "প্ৰিন্টাৰ:" - --#: ../glade/NewPrinterWindow.glade.h:83 -+#: ../glade/NewPrinterWindow.glade.h:82 - msgid "Probe" - msgstr "অনুসন্ধান" - --#: ../glade/NewPrinterWindow.glade.h:84 -+#: ../glade/NewPrinterWindow.glade.h:83 - #, fuzzy - msgid "Prompt user if authentication is required" - msgstr "অনুমোদন ব্যবস্থা" - --#: ../glade/NewPrinterWindow.glade.h:85 -+#: ../glade/NewPrinterWindow.glade.h:84 - msgid "Provide PPD file" - msgstr "ফাইল" - --#: ../glade/NewPrinterWindow.glade.h:86 -+#: ../glade/NewPrinterWindow.glade.h:85 - msgid "Queue:" - msgstr "Queue:" - --#: ../glade/NewPrinterWindow.glade.h:87 -+#: ../glade/NewPrinterWindow.glade.h:86 - msgid "SCSI" - msgstr "SCSI" - --#: ../glade/NewPrinterWindow.glade.h:88 -+#: ../glade/NewPrinterWindow.glade.h:87 - msgid "SMB" - msgstr "SMB" - --#: ../glade/NewPrinterWindow.glade.h:89 -+#: ../glade/NewPrinterWindow.glade.h:88 - msgid "Search for a printer driver to download" - msgstr "উল্লিখিত সময় অৱধি" - --#: ../glade/NewPrinterWindow.glade.h:90 -+#: ../glade/NewPrinterWindow.glade.h:89 - #, fuzzy - msgid "Searching..." - msgstr "অনুসন্ধান" - --#: ../glade/NewPrinterWindow.glade.h:91 -+#: ../glade/NewPrinterWindow.glade.h:90 - msgid "Select A File" - msgstr "নথিপত্ৰ এখন নিৰ্ব্বাচন কৰক" - --#: ../glade/NewPrinterWindow.glade.h:92 -+#: ../glade/NewPrinterWindow.glade.h:91 - msgid "Select printer from database" - msgstr "তথ্যসংগ্ৰহৰ পৰা মুদ্ৰক নিৰ্ব্বাচন কৰক" - --#: ../glade/NewPrinterWindow.glade.h:93 -+#: ../glade/NewPrinterWindow.glade.h:92 - msgid "Serial" - msgstr "ক্ৰমিক" - --#: ../glade/NewPrinterWindow.glade.h:94 -+#: ../glade/NewPrinterWindow.glade.h:93 - #, fuzzy - msgid "Set authentication details now" - msgstr "অনুমোদন ব্যবস্থা" - --#: ../glade/NewPrinterWindow.glade.h:95 -+#: ../glade/NewPrinterWindow.glade.h:94 - msgid "Short name for this printer such as \"laserjet\"" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:96 -+#: ../glade/NewPrinterWindow.glade.h:95 - msgid "Supplier:" - msgstr "Supplier:" - --#: ../glade/NewPrinterWindow.glade.h:97 -+#: ../glade/NewPrinterWindow.glade.h:96 - #, fuzzy - msgid "Support:" - msgstr "Supplier:" - --#: ../glade/NewPrinterWindow.glade.h:98 -+#: ../glade/NewPrinterWindow.glade.h:97 - #, fuzzy - msgid "Text:" - msgstr "পুনৰায় নিৰ্ধাৰণ" - --#: ../glade/NewPrinterWindow.glade.h:99 -+#: ../glade/NewPrinterWindow.glade.h:98 - msgid "" - "The foomatic printer database contains various manufacturer provided " - "PostScript Printer Description (PPD) files and also can generate PPD files " -@@ -2082,14 +2078,14 @@ msgstr "" - "পাৰে । কিন্তু সাদাৰণতে উদ্যোগপতিয়ে যোগান ধৰা PPD নথিপত্ৰৰ দ্বাৰা মুদ্ৰকৰ নিৰ্দ্দিষ্ট " - "বৈশিষ্টৰ উন্নত অভিগমন কৰিব পাৰি ।" - --#: ../glade/NewPrinterWindow.glade.h:100 -+#: ../glade/NewPrinterWindow.glade.h:99 - msgid "" - "These drivers do not come from your operating system supplier and will not " - "be covered by their commercial support. See the support and license terms " - "of the driver's supplier." - msgstr "সৰ্বমোট." - --#: ../glade/NewPrinterWindow.glade.h:101 -+#: ../glade/NewPrinterWindow.glade.h:100 - msgid "" - "This driver supports additional hardware that may be installed in the " - "printer." -@@ -2097,7 +2093,7 @@ msgstr "" - "This driver supports additional hardware that may be installed in the " - "printer." - --#: ../glade/NewPrinterWindow.glade.h:102 -+#: ../glade/NewPrinterWindow.glade.h:101 - msgid "" - "This is done by assuming that options with the same name do have the same " - "meaning. Settings of options that are not present in the new PPD will be " -@@ -2107,7 +2103,7 @@ msgstr "" - "বিকল্পৰ পটভুমি হেৰুৱা যাব আৰু অকল নতুন PPD ত থকা বিকল্পসমূহহে অৱিকল্পিত ভাবে " - "নিৰ্দ্দিষ্ট কৰা যাব ।" - --#: ../glade/NewPrinterWindow.glade.h:103 -+#: ../glade/NewPrinterWindow.glade.h:102 - msgid "" - "This way all current option settings will be lost. The default settings of " - "the new PPD will be used. " -@@ -2115,19 +2111,19 @@ msgstr "" - "এই ধৰণে সকলো বৰ্ত্তমানৰ বিকল্পৰ পটভুমি হেৰুৱা যাব । নতুন PPDৰ অৱিকল্পত পটভুমি ব্যৱহাৰ " - "কৰা যাব ।" - --#: ../glade/NewPrinterWindow.glade.h:104 -+#: ../glade/NewPrinterWindow.glade.h:103 - msgid "Try to copy the option settings over from the old PPD. " - msgstr "পূৰণি PPD ৰ পৰা বিকল্পৰ বিন্যাস নকল কৰিব'লৈ চেষ্টা কৰক ।" - --#: ../glade/NewPrinterWindow.glade.h:105 -+#: ../glade/NewPrinterWindow.glade.h:104 - msgid "URI:" - msgstr "URI:" - --#: ../glade/NewPrinterWindow.glade.h:107 -+#: ../glade/NewPrinterWindow.glade.h:106 - msgid "Use the new PPD (Postscript Printer Description) as is." - msgstr "যিদৰে আছে, তেনেকেই নতুন PPD (পোচ্-চ্‌ক্ৰিপ্‌ট মুদ্ৰক বিৱৰণ)ব্যৱহাৰ কৰক ।" - --#: ../glade/NewPrinterWindow.glade.h:109 -+#: ../glade/NewPrinterWindow.glade.h:108 - msgid "" - "With this choice no driver download will be performed. In the next steps a " - "locally installed driver will be selected." -@@ -2135,24 +2131,24 @@ msgstr "" - "With this choice no driver download will be performed. In the next steps a " - "locally installed driver will be selected." - --#: ../glade/NewPrinterWindow.glade.h:110 -+#: ../glade/NewPrinterWindow.glade.h:109 - msgid "Yes, I accept this license" - msgstr "হ্যাঁ প্ৰথম" - --#: ../glade/NewPrinterWindow.glade.h:111 -+#: ../glade/NewPrinterWindow.glade.h:110 - msgid "_Search" - msgstr "অনুসন্ধান কৰুন (_S)" - --#: ../glade/NewPrinterWindow.glade.h:112 -+#: ../glade/NewPrinterWindow.glade.h:111 - msgid "_Verify..." - msgstr "সত্যাখ্যান কৰক(_V)..." - --#: ../glade/NewPrinterWindow.glade.h:113 -+#: ../glade/NewPrinterWindow.glade.h:112 - #: ../glade/PrinterPropertiesDialog.glade.h:128 - msgid "move left" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:114 -+#: ../glade/NewPrinterWindow.glade.h:113 - #: ../glade/PrinterPropertiesDialog.glade.h:129 - msgid "move right" - msgstr "" -@@ -3090,7 +3086,7 @@ msgstr "" - msgid "Remember to load paper of type '%s' into the printer first." - msgstr "" - --#: ../troubleshoot/PrintTestPage.py:399 -+#: ../troubleshoot/PrintTestPage.py:416 - msgid "Error submitting test page" - msgstr "" - -@@ -3282,6 +3278,10 @@ msgid "Select default printer" - msgstr "অৱিকল্পিত" - - #, fuzzy -+#~ msgid "HP Printer (HPLIP) via network" -+#~ msgstr "মুদ্ৰকৰ নাম" -+ -+#, fuzzy - #~ msgid "Not Found" - #~ msgstr "বিচাৰি পোৱা নাই" - -diff -up system-config-printer-1.1.5/po/bg.po.git-1.1.x system-config-printer-1.1.5/po/bg.po ---- system-config-printer-1.1.5/po/bg.po.git-1.1.x 2009-03-03 22:21:46.000000000 +0000 -+++ system-config-printer-1.1.5/po/bg.po 2009-03-10 17:43:31.000000000 +0000 -@@ -12,7 +12,7 @@ msgid "" - msgstr "" - "Project-Id-Version: bg\n" - "Report-Msgid-Bugs-To: https://bugzilla.redhat.com/bugzilla\n" --"POT-Creation-Date: 2009-03-02 23:22+0000\n" -+"POT-Creation-Date: 2009-03-10 16:51+0000\n" - "PO-Revision-Date: 2007-09-28 18:24+0300\n" - "Last-Translator: Doncho N. Gunchev \n" - "Language-Team: Bulgarian \n" -@@ -59,11 +59,11 @@ msgstr "" - msgid "Enter IP address" - msgstr "Принтера бе добавен" - --#: ../authconn.py:35 ../glade/NewPrinterWindow.glade.h:108 -+#: ../authconn.py:35 ../glade/NewPrinterWindow.glade.h:107 - msgid "Username:" - msgstr "Потребителско име:" - --#: ../authconn.py:36 ../glade/NewPrinterWindow.glade.h:77 -+#: ../authconn.py:36 ../glade/NewPrinterWindow.glade.h:76 - msgid "Password:" - msgstr "Парола:" - -@@ -72,7 +72,7 @@ msgstr "Парола:" - msgid "Domain:" - msgstr "Горна граница:" - --#: ../authconn.py:46 -+#: ../authconn.py:46 ../authconn.py:409 - #, fuzzy - msgid "Authentication" - msgstr "Изисква се удостоверяване" -@@ -81,45 +81,54 @@ msgstr "Изисква се удосто - msgid "Remember password" - msgstr "" - --#: ../authconn.py:211 ../authconn.py:232 -+#: ../authconn.py:208 -+#, python-format -+msgid "Unauthorized request (%s)" -+msgstr "" -+ -+#: ../authconn.py:209 -+msgid "You are not authorized to carry out therequested action." -+msgstr "" -+ -+#: ../authconn.py:212 ../authconn.py:233 - #, fuzzy - msgid "Operation canceled" - msgstr "Политика на работа:" - --#: ../authconn.py:253 -+#: ../authconn.py:250 - #, fuzzy, python-format - msgid "CUPS server error (%s)" - msgstr "Грешка на CUPS сървъра" - --#: ../authconn.py:255 ../errordialogs.py:57 --#: ../troubleshoot/PrintTestPage.py:400 -+#: ../authconn.py:252 ../errordialogs.py:56 ../errordialogs.py:70 -+msgid "CUPS server error" -+msgstr "Грешка на CUPS сървъра" -+ -+#: ../authconn.py:261 ../errordialogs.py:57 -+#: ../troubleshoot/PrintTestPage.py:417 - #, python-format - msgid "There was an error during the CUPS operation: '%s'." - msgstr "Възникна грешка при по време на CUPS операцията: '%s'." - --#: ../authconn.py:258 -+#: ../authconn.py:264 - #, fuzzy - msgid "Retry" - msgstr "Установяване наново" - --#: ../authconn.py:379 ../authconn.py:381 ../errordialogs.py:65 ../pysmb.py:75 -+#: ../authconn.py:385 ../authconn.py:387 ../errordialogs.py:65 ../pysmb.py:75 - #: ../pysmb.py:77 - msgid "Not authorized" - msgstr "Не оторизиран" - --#: ../authconn.py:382 ../pysmb.py:78 -+#: ../authconn.py:388 ../pysmb.py:78 - msgid "The password may be incorrect." - msgstr "Паролата може да не е вярна." - --#: ../authconn.py:400 -+#: ../authconn.py:407 - #, fuzzy, python-format - msgid "Authentication (%s)" - msgstr "Изисква се удостоверяване" - --#: ../errordialogs.py:56 ../errordialogs.py:70 --msgid "CUPS server error" --msgstr "Грешка на CUPS сървъра" -- - #: ../errordialogs.py:66 - msgid "" - "The password may be incorrect, or the server may be configured to deny " -@@ -148,7 +157,7 @@ msgstr "Изисква се обновя - msgid "Server error" - msgstr "Сървърна грешка" - --#: ../errordialogs.py:82 ../system-config-printer.py:1219 -+#: ../errordialogs.py:82 ../system-config-printer.py:1223 - msgid "Not connected" - msgstr "Няма връзка" - -@@ -170,7 +179,7 @@ msgstr "" - msgid "_New Group from Selection" - msgstr "" - --#: ../GroupsPane.py:98 ../system-config-printer.py:393 -+#: ../GroupsPane.py:98 ../system-config-printer.py:397 - #, fuzzy - msgid "_Rename" - msgstr "_Установяване наново" -@@ -239,7 +248,7 @@ msgid "Document" - msgstr "Документ" - - #: ../jobviewer.py:212 ../my-default-printer.py:153 --#: ../system-config-printer.py:366 ../system-config-printer.py:1367 -+#: ../system-config-printer.py:370 ../system-config-printer.py:1371 - #: ../troubleshoot/PrintTestPage.py:84 - msgid "Printer" - msgstr "Принтер" -@@ -276,8 +285,8 @@ msgstr "Статус на докумен - - #: ../jobviewer.py:386 ../jobviewer.py:451 ../jobviewer.py:452 - #: ../jobviewer.py:492 ../jobviewer.py:600 ../jobviewer.py:727 --#: ../jobviewer.py:1196 ../jobviewer.py:1222 ../system-config-printer.py:2546 --#: ../glade/NewPrinterWindow.glade.h:106 -+#: ../jobviewer.py:1196 ../jobviewer.py:1222 ../system-config-printer.py:2556 -+#: ../glade/NewPrinterWindow.glade.h:105 - #: ../troubleshoot/ChooseNetworkPrinter.py:101 - #: ../troubleshoot/ChooseNetworkPrinter.py:102 - #: ../troubleshoot/ChooseNetworkPrinter.py:105 -@@ -370,12 +379,12 @@ msgstr "Задържане до:" - msgid "Pending" - msgstr "Предстоящ" - --#: ../jobviewer.py:591 ../system-config-printer.py:186 -+#: ../jobviewer.py:591 ../system-config-printer.py:190 - #: ../troubleshoot/PrintTestPage.py:43 - msgid "Processing" - msgstr "Обработва" - --#: ../jobviewer.py:592 ../system-config-printer.py:188 -+#: ../jobviewer.py:592 ../system-config-printer.py:192 - #: ../troubleshoot/PrintTestPage.py:44 - msgid "Stopped" - msgstr "Спрян" -@@ -489,8 +498,8 @@ msgstr "_Ползване на сист - msgid "_Set Default" - msgstr "_Да бъде по подразбиране" - --#: ../my-default-printer.py:158 ../system-config-printer.py:423 --#: ../system-config-printer.py:3660 ../troubleshoot/ChooseNetworkPrinter.py:37 -+#: ../my-default-printer.py:158 ../system-config-printer.py:427 -+#: ../system-config-printer.py:3675 ../troubleshoot/ChooseNetworkPrinter.py:37 - #: ../troubleshoot/ChoosePrinter.py:38 - msgid "Location" - msgstr "Местоположение" -@@ -523,7 +532,7 @@ msgstr "По подразбиране" - msgid "Authenticated" - msgstr "Изисква се удостоверяване" - --#: ../ppdippstr.py:50 ../system-config-printer.py:6259 -+#: ../ppdippstr.py:50 ../system-config-printer.py:6207 - #, fuzzy - msgid "None" - msgstr "няма" -@@ -743,132 +752,132 @@ msgstr "" - msgid "1200 dpi, photo, black + color cartridge, photo paper" - msgstr "" - --#: ../system-config-printer.py:127 -+#: ../system-config-printer.py:131 - msgid "To do this, select System->Administration->Firewall from the main menu." - msgstr "" - --#: ../system-config-printer.py:185 -+#: ../system-config-printer.py:189 - msgid "Idle" - msgstr "Свободен" - --#: ../system-config-printer.py:187 -+#: ../system-config-printer.py:191 - msgid "Busy" - msgstr "Зает" - --#: ../system-config-printer.py:372 ../system-config-printer.py:1373 -+#: ../system-config-printer.py:376 ../system-config-printer.py:1377 - #, fuzzy - msgid "Class" - msgstr "Нов клас" - --#: ../system-config-printer.py:399 -+#: ../system-config-printer.py:403 - #, fuzzy - msgid "Set As De_fault" - msgstr "_Да бъде по подразбиране" - --#: ../system-config-printer.py:403 -+#: ../system-config-printer.py:407 - #, fuzzy - msgid "_Create class" - msgstr "Отдалечен клас" - --#: ../system-config-printer.py:405 -+#: ../system-config-printer.py:409 - #, fuzzy - msgid "View Print _Queue" - msgstr "Нов принтер" - --#: ../system-config-printer.py:407 -+#: ../system-config-printer.py:411 - msgid "_Add to Group" - msgstr "" - --#: ../system-config-printer.py:409 -+#: ../system-config-printer.py:413 - msgid "Save Results as _Group" - msgstr "" - --#: ../system-config-printer.py:411 -+#: ../system-config-printer.py:415 - msgid "Save Filter as _Search Group" - msgstr "" - --#: ../system-config-printer.py:415 -+#: ../system-config-printer.py:419 - #, fuzzy - msgid "E_nabled" - msgstr "Разрешен" - --#: ../system-config-printer.py:417 -+#: ../system-config-printer.py:421 - #, fuzzy - msgid "_Shared" - msgstr "Споделен" - --#: ../system-config-printer.py:421 ../troubleshoot/ChooseNetworkPrinter.py:35 -+#: ../system-config-printer.py:425 ../troubleshoot/ChooseNetworkPrinter.py:35 - #: ../troubleshoot/ChoosePrinter.py:36 ../troubleshoot/DeviceListed.py:36 - msgid "Name" - msgstr "" - --#: ../system-config-printer.py:422 -+#: ../system-config-printer.py:426 - #, fuzzy - msgid "Description" - msgstr "Описание:" - --#: ../system-config-printer.py:424 -+#: ../system-config-printer.py:428 - msgid "Manufacturer / Model" - msgstr "" - - #. Printer state reasons list --#: ../system-config-printer.py:499 -+#: ../system-config-printer.py:503 - msgid "Message" - msgstr "Съобщение" - --#: ../system-config-printer.py:534 -+#: ../system-config-printer.py:538 - #, fuzzy - msgid "Problems?" - msgstr "Проба" - --#: ../system-config-printer.py:637 ../system-config-printer.py:639 -+#: ../system-config-printer.py:641 ../system-config-printer.py:643 - msgid "Members of this class" - msgstr "Членове на този клас" - --#: ../system-config-printer.py:638 ../system-config-printer.py:640 -+#: ../system-config-printer.py:642 ../system-config-printer.py:644 - msgid "Others" - msgstr "Други" - --#: ../system-config-printer.py:641 -+#: ../system-config-printer.py:645 - msgid "Devices" - msgstr "Устройства" - --#: ../system-config-printer.py:642 -+#: ../system-config-printer.py:646 - #, fuzzy - msgid "Connections" - msgstr "Свързване" - --#: ../system-config-printer.py:643 -+#: ../system-config-printer.py:647 - msgid "Makes" - msgstr "Производители" - --#: ../system-config-printer.py:644 -+#: ../system-config-printer.py:648 - msgid "Models" - msgstr "Модели" - --#: ../system-config-printer.py:645 -+#: ../system-config-printer.py:649 - msgid "Drivers" - msgstr "Драйвери" - --#: ../system-config-printer.py:646 ../glade/NewPrinterWindow.glade.h:55 -+#: ../system-config-printer.py:650 ../glade/NewPrinterWindow.glade.h:54 - msgid "Downloadable Drivers" - msgstr "" - --#: ../system-config-printer.py:647 -+#: ../system-config-printer.py:651 - msgid "Users" - msgstr "Потребители" - --#: ../system-config-printer.py:682 -+#: ../system-config-printer.py:686 - msgid "Automatic rotation" - msgstr "" - --#: ../system-config-printer.py:989 -+#: ../system-config-printer.py:993 - #, fuzzy, python-format - msgid "Printer Properties - '%s' on %s" - msgstr "Доклад на принтера" - - #. The Conflict button was pressed. --#: ../system-config-printer.py:996 -+#: ../system-config-printer.py:1000 - msgid "" - "There are conflicting options.\n" - "Changes can only be applied after\n" -@@ -878,81 +887,81 @@ msgstr "" - "Промените могат да бъдат приложени\n" - "само след като той бъде разрешен." - --#: ../system-config-printer.py:1214 -+#: ../system-config-printer.py:1218 - #, python-format - msgid "Printer configuration - %s" - msgstr "Конфигуриране на принтер - %s" - --#: ../system-config-printer.py:1217 -+#: ../system-config-printer.py:1221 - #, python-format - msgid "Connected to %s" - msgstr "Свързан към %s" - - #. Update our copy of the printer's settings. --#: ../system-config-printer.py:1257 ../system-config-printer.py:2042 -+#: ../system-config-printer.py:1261 ../system-config-printer.py:2046 - msgid "obtaining queue details" - msgstr "" - --#: ../system-config-printer.py:1295 -+#: ../system-config-printer.py:1299 - msgid "Remove from Group" - msgstr "" - --#: ../system-config-printer.py:1361 -+#: ../system-config-printer.py:1365 - #, fuzzy - msgid "Network printer (discovered)" - msgstr "Нов принтер" - --#: ../system-config-printer.py:1364 -+#: ../system-config-printer.py:1368 - msgid "Network class (discovered)" - msgstr "" - --#: ../system-config-printer.py:1370 ../system-config-printer.py:5524 --#: ../system-config-printer.py:5594 ../system-config-printer.py:5596 -+#: ../system-config-printer.py:1374 ../system-config-printer.py:5519 -+#: ../system-config-printer.py:5589 ../system-config-printer.py:5591 - msgid "Fax" - msgstr "" - --#: ../system-config-printer.py:1376 ../system-config-printer.py:1382 -+#: ../system-config-printer.py:1380 ../system-config-printer.py:1386 - #: ../troubleshoot/LocalOrRemote.py:30 - #, fuzzy - msgid "Network printer" - msgstr "Нов принтер" - --#: ../system-config-printer.py:1379 -+#: ../system-config-printer.py:1383 - #, fuzzy - msgid "Network print share" - msgstr "Нов принтер" - --#: ../system-config-printer.py:1508 ../glade/ConnectingDialog.glade.h:2 -+#: ../system-config-printer.py:1512 ../glade/ConnectingDialog.glade.h:2 - #, no-c-format, python-format - msgid "Opening connection to %s" - msgstr "" - --#: ../system-config-printer.py:1887 -+#: ../system-config-printer.py:1891 - msgid "Installable Options" - msgstr "Допълнителни опции" - --#: ../system-config-printer.py:1888 -+#: ../system-config-printer.py:1892 - #: ../glade/PrinterPropertiesDialog.glade.h:109 - msgid "Printer Options" - msgstr "Настройки на принтера" - --#: ../system-config-printer.py:1924 -+#: ../system-config-printer.py:1928 - #, python-format - msgid "modifying class %s" - msgstr "" - --#: ../system-config-printer.py:1926 ../system-config-printer.py:3019 --#: ../system-config-printer.py:3044 ../system-config-printer.py:6547 --#: ../system-config-printer.py:6559 ../system-config-printer.py:6581 -+#: ../system-config-printer.py:1930 ../system-config-printer.py:3037 -+#: ../system-config-printer.py:3062 ../system-config-printer.py:6495 -+#: ../system-config-printer.py:6507 ../system-config-printer.py:6529 - #, fuzzy, python-format - msgid "modifying printer %s" - msgstr "Добавяне на принтер" - --#: ../system-config-printer.py:1941 -+#: ../system-config-printer.py:1945 - msgid "This will delete this class!" - msgstr "Това ще изтрие класа!" - --#: ../system-config-printer.py:1942 -+#: ../system-config-printer.py:1946 - msgid "Proceed anyway?" - msgstr "Продължение въпреки това?" - -@@ -960,50 +969,50 @@ msgstr "Продължение въпр - #. but we have never fetched the server settings to see whether - #. the server is publishing shared printers. Fetch the settings - #. now so that we can update the "not published" label if necessary. --#: ../system-config-printer.py:2030 ../system-config-printer.py:3203 -+#: ../system-config-printer.py:2034 ../system-config-printer.py:3221 - #, fuzzy - msgid "fetching server settings" - msgstr "Основни настройки на сървъра" - --#: ../system-config-printer.py:2100 -+#: ../system-config-printer.py:2104 - #, fuzzy - msgid "Set Default Printer" - msgstr "По подразбиране" - --#: ../system-config-printer.py:2102 -+#: ../system-config-printer.py:2106 - msgid "Do you want to set this as the system-wide default printer?" - msgstr "" - --#: ../system-config-printer.py:2104 -+#: ../system-config-printer.py:2108 - #, fuzzy - msgid "Set as the _system-wide default printer" - msgstr "Това е подразбиращия се принтер" - --#: ../system-config-printer.py:2106 -+#: ../system-config-printer.py:2110 - msgid "_Clear my personal default setting" - msgstr "" - --#: ../system-config-printer.py:2107 -+#: ../system-config-printer.py:2111 - #, fuzzy - msgid "Set as my _personal default printer" - msgstr "Избор на принтер по подразбиране" - --#: ../system-config-printer.py:2112 -+#: ../system-config-printer.py:2116 - #, fuzzy - msgid "setting default printer" - msgstr "Избор на принтер по подразбиране" - --#: ../system-config-printer.py:2169 -+#: ../system-config-printer.py:2173 - #, fuzzy - msgid "printing test page" - msgstr "Печат на тестова страница" - --#: ../system-config-printer.py:2182 ../system-config-printer.py:2217 --#: ../system-config-printer.py:5418 -+#: ../system-config-printer.py:2186 ../system-config-printer.py:2221 -+#: ../system-config-printer.py:5413 - msgid "Not possible" - msgstr "Не възможно" - --#: ../system-config-printer.py:2183 ../system-config-printer.py:2218 -+#: ../system-config-printer.py:2187 ../system-config-printer.py:2222 - msgid "" - "The remote server did not accept the print job, most likely because the " - "printer is not shared." -@@ -1011,20 +1020,20 @@ msgstr "" - "Отдалечения сървър отказа задачата за печат, по всяка вероятност защото " - "принтера не е споделен." - --#: ../system-config-printer.py:2195 ../system-config-printer.py:2210 -+#: ../system-config-printer.py:2199 ../system-config-printer.py:2214 - msgid "Submitted" - msgstr "Предадено" - --#: ../system-config-printer.py:2196 -+#: ../system-config-printer.py:2200 - #, python-format - msgid "Test page submitted as job %d" - msgstr "Тестовата страница бе изпратена като задача %d" - --#: ../system-config-printer.py:2203 -+#: ../system-config-printer.py:2207 - msgid "sending maintenance command" - msgstr "" - --#: ../system-config-printer.py:2211 -+#: ../system-config-printer.py:2215 - #, python-format - msgid "Maintenance command submitted as job %d" - msgstr "Команда по поддръжката бе изпратена като задача %d" -@@ -1032,75 +1041,75 @@ msgstr "Команда по поддръ - #. The underlying cupsGetPPD2() function returned NULL without - #. setting an IPP error, so it'll be something like a failed - #. connection. --#: ../system-config-printer.py:2285 ../system-config-printer.py:2381 -+#: ../system-config-printer.py:2289 ../system-config-printer.py:2385 - msgid "Error" - msgstr "Грешка" - --#: ../system-config-printer.py:2286 -+#: ../system-config-printer.py:2290 - msgid "There was a problem connecting to the CUPS server." - msgstr "Възникна проблем при свързване към CUPS сървъра." - --#: ../system-config-printer.py:2382 -+#: ../system-config-printer.py:2386 - #, python-format - msgid "Option '%s' has value '%s' and cannot be edited." - msgstr "" - --#: ../system-config-printer.py:2466 -+#: ../system-config-printer.py:2476 - msgid "Marker levels are not reported for this printer." - msgstr "" - --#: ../system-config-printer.py:2763 -+#: ../system-config-printer.py:2773 - #, fuzzy - msgid "Cannot Rename" - msgstr "_Установяване наново" - --#: ../system-config-printer.py:2764 -+#: ../system-config-printer.py:2774 - msgid "There are queued jobs." - msgstr "" - --#: ../system-config-printer.py:2822 -+#: ../system-config-printer.py:2840 - #, fuzzy - msgid "renaming printer" - msgstr "Добавяне на принтер" - - #. for classes make sure all members - #. will get added --#: ../system-config-printer.py:2907 -+#: ../system-config-printer.py:2925 - #, fuzzy - msgid "copying printer" - msgstr "Добавяне на принтер" - --#: ../system-config-printer.py:2971 -+#: ../system-config-printer.py:2989 - #, fuzzy, python-format - msgid "Really delete class '%s'?" - msgstr "Наистина изтриване на клас %s?" - --#: ../system-config-printer.py:2973 -+#: ../system-config-printer.py:2991 - #, fuzzy, python-format - msgid "Really delete printer '%s'?" - msgstr "Наистина изтриване на принтер %s?" - --#: ../system-config-printer.py:2975 -+#: ../system-config-printer.py:2993 - #, fuzzy - msgid "Really delete selected destinations?" - msgstr "Наистина изтриване на принтер %s?" - --#: ../system-config-printer.py:2996 -+#: ../system-config-printer.py:3014 - #, fuzzy, python-format - msgid "deleting printer %s" - msgstr "Добавяне на принтер" - --#: ../system-config-printer.py:3070 -+#: ../system-config-printer.py:3088 - msgid "Publish Shared Printers" - msgstr "" - --#: ../system-config-printer.py:3071 -+#: ../system-config-printer.py:3089 - msgid "" - "Shared printers are not available to other people unless the 'Publish shared " - "printers' option is enabled in the server settings." - msgstr "" - --#: ../system-config-printer.py:3264 -+#: ../system-config-printer.py:3282 - #, fuzzy - msgid "modifying server settings" - msgstr "Основни настройки на сървъра" -@@ -1111,104 +1120,104 @@ msgstr "Основни настрой - #. be unblocked. Unfortunately, this is not yet possible - #. (bug #440469). However, we can display a dialog to suggest - #. that now might be a good time to review the firewall settings. --#: ../system-config-printer.py:3289 -+#: ../system-config-printer.py:3307 - msgid "Review Firewall" - msgstr "" - --#: ../system-config-printer.py:3290 -+#: ../system-config-printer.py:3308 - msgid "" - "You may need to adjust the firewall to allow network printing to this " - "computer." - msgstr "" - --#: ../system-config-printer.py:3623 -+#: ../system-config-printer.py:3638 - msgid "Browsing not available (pysmbc not installed)" - msgstr "" - - #. SMB list columns --#: ../system-config-printer.py:3629 -+#: ../system-config-printer.py:3644 - msgid "Share" - msgstr "Споделен" - --#: ../system-config-printer.py:3635 -+#: ../system-config-printer.py:3650 - msgid "Comment" - msgstr "Коментар" - - #. IPP list columns --#: ../system-config-printer.py:3654 -+#: ../system-config-printer.py:3669 - msgid "Queue" - msgstr "" - --#: ../system-config-printer.py:3668 -+#: ../system-config-printer.py:3683 - #, fuzzy - msgid "" - "PostScript Printer Description files (*.ppd, *.PPD, *.ppd.gz, *.PPD.gz, *." - "PPD.GZ)" - msgstr "PostScript Описание на Принтера (*.ppd[.gz])" - --#: ../system-config-printer.py:3677 -+#: ../system-config-printer.py:3692 - msgid "All files (*)" - msgstr "" - --#: ../system-config-printer.py:3713 ../system-config-printer.py:5970 --#: ../system-config-printer.py:6008 ../applet.py:124 -+#: ../system-config-printer.py:3728 ../system-config-printer.py:5918 -+#: ../system-config-printer.py:5956 ../applet.py:124 - #, fuzzy - msgid "Search" - msgstr "Търсене" - --#: ../system-config-printer.py:3736 ../system-config-printer.py:3760 --#: ../glade/NewPrinterWindow.glade.h:74 -+#: ../system-config-printer.py:3751 ../system-config-printer.py:3775 -+#: ../glade/NewPrinterWindow.glade.h:73 - msgid "New Printer" - msgstr "Нов принтер" - --#: ../system-config-printer.py:3747 -+#: ../system-config-printer.py:3762 - msgid "New Class" - msgstr "Нов клас" - --#: ../system-config-printer.py:3752 -+#: ../system-config-printer.py:3767 - msgid "Change Device URI" - msgstr "Промяна URI на устройството" - --#: ../system-config-printer.py:3758 -+#: ../system-config-printer.py:3773 - msgid "Change Driver" - msgstr "Смяна на драйвер" - --#: ../system-config-printer.py:3927 ../system-config-printer.py:3993 --#: ../system-config-printer.py:4289 ../system-config-printer.py:4487 --#: ../system-config-printer.py:5772 ../system-config-printer.py:5995 -+#: ../system-config-printer.py:3942 ../system-config-printer.py:4008 -+#: ../system-config-printer.py:4304 ../system-config-printer.py:4502 -+#: ../system-config-printer.py:5762 ../system-config-printer.py:5943 - msgid "Searching" - msgstr "Търсене" - --#: ../system-config-printer.py:3928 -+#: ../system-config-printer.py:3943 - #, fuzzy - msgid "Searching for downloadable drivers" - msgstr "Търсене на драйвери" - --#: ../system-config-printer.py:3994 ../system-config-printer.py:4290 -+#: ../system-config-printer.py:4009 ../system-config-printer.py:4305 - msgid "Searching for drivers" - msgstr "Търсене на драйвери" - --#: ../system-config-printer.py:4488 ../system-config-printer.py:5773 -+#: ../system-config-printer.py:4503 ../system-config-printer.py:5763 - msgid "Searching for printers" - msgstr "Търсене на принтери" - --#: ../system-config-printer.py:4497 -+#: ../system-config-printer.py:4512 - #, fuzzy - msgid "fetching device list" - msgstr "Основни настройки на сървъра" - - #. Tell the user why he needs the plugin --#: ../system-config-printer.py:4579 -+#: ../system-config-printer.py:4594 - msgid "For this printer a proprietary driver plugin from HP is available.\n" - msgstr "" - --#: ../system-config-printer.py:4582 -+#: ../system-config-printer.py:4597 - msgid "" - "The installation of the plugin is required for your printer to work.\n" - "\n" - msgstr "" - --#: ../system-config-printer.py:4585 -+#: ../system-config-printer.py:4600 - msgid "" - "Installing the plugin is optional, it completes or enhances the " - "functionality\n" -@@ -1216,219 +1225,215 @@ msgid "" - "\n" - msgstr "" - --#: ../system-config-printer.py:4589 -+#: ../system-config-printer.py:4604 - msgid "The plugin provides the following features:\n" - msgstr "" - --#: ../system-config-printer.py:4592 -+#: ../system-config-printer.py:4607 - msgid " - Printing support\n" - msgstr "" - --#: ../system-config-printer.py:4595 -+#: ../system-config-printer.py:4610 - msgid " - Faster printing\n" - msgstr "" - --#: ../system-config-printer.py:4598 -+#: ../system-config-printer.py:4613 - msgid " - Better printout quality\n" - msgstr "" - --#: ../system-config-printer.py:4601 -+#: ../system-config-printer.py:4616 - msgid " - Extra printing features\n" - msgstr "" - --#: ../system-config-printer.py:4604 -+#: ../system-config-printer.py:4619 - msgid " - Scanning support\n" - msgstr "" - --#: ../system-config-printer.py:4607 -+#: ../system-config-printer.py:4622 - msgid " - Faster scanning\n" - msgstr "" - --#: ../system-config-printer.py:4610 -+#: ../system-config-printer.py:4625 - msgid " - Better scanning image quality\n" - msgstr "" - --#: ../system-config-printer.py:4613 -+#: ../system-config-printer.py:4628 - msgid " - Faxing support\n" - msgstr "" - --#: ../system-config-printer.py:4616 -+#: ../system-config-printer.py:4631 - msgid " - Extra fax features\n" - msgstr "" - --#: ../system-config-printer.py:4619 -+#: ../system-config-printer.py:4634 - msgid " - Better Input/Output support\n" - msgstr "" - --#: ../system-config-printer.py:4622 -+#: ../system-config-printer.py:4637 - msgid " - Extra user interface features\n" - msgstr "" - --#: ../system-config-printer.py:4625 -+#: ../system-config-printer.py:4640 - msgid " - Other extra features\n" - msgstr "" - --#: ../system-config-printer.py:4630 -+#: ../system-config-printer.py:4645 - #, fuzzy - msgid "Install plugin" - msgstr "Инсталирани опции" - --#: ../system-config-printer.py:4631 -+#: ../system-config-printer.py:4646 - #, fuzzy - msgid "Do not set up printer" - msgstr "Копиране на принтер" - --#: ../system-config-printer.py:4632 -+#: ../system-config-printer.py:4647 - msgid "Set up without plugin" - msgstr "" - --#: ../system-config-printer.py:4634 ../troubleshoot/PrintTestPage.py:118 -+#: ../system-config-printer.py:4649 ../troubleshoot/PrintTestPage.py:118 - msgid "Yes" - msgstr "" - --#: ../system-config-printer.py:4635 ../troubleshoot/PrintTestPage.py:119 -+#: ../system-config-printer.py:4650 ../troubleshoot/PrintTestPage.py:119 - msgid "No" - msgstr "" - --#: ../system-config-printer.py:4809 ../system-config-printer.py:4813 -+#: ../system-config-printer.py:4824 ../system-config-printer.py:4828 - msgid " (Current)" - msgstr " (Текущ)" - --#: ../system-config-printer.py:4845 --msgid "HP Printer (HPLIP)" --msgstr "" -- --#: ../system-config-printer.py:4886 -+#: ../system-config-printer.py:4881 - msgid "Other" - msgstr "Друго" - - #. device-info - #. PhysicalDevice obj - #. Separator? --#: ../system-config-printer.py:4902 -+#: ../system-config-printer.py:4897 - #, fuzzy - msgid "Network Printer" - msgstr "Нов принтер" - --#: ../system-config-printer.py:4906 -+#: ../system-config-printer.py:4901 - #, fuzzy - msgid "Find Network Printer" - msgstr "Нов принтер" - --#: ../system-config-printer.py:4979 ../system-config-printer.py:5376 -+#: ../system-config-printer.py:4974 ../system-config-printer.py:5371 - #, fuzzy - msgid "Scanning..." - msgstr "Мащабиране:" - --#: ../system-config-printer.py:5034 ../system-config-printer.py:5798 -+#: ../system-config-printer.py:5029 - #, fuzzy - msgid "No Print Shares" - msgstr "Нов принтер" - --#: ../system-config-printer.py:5035 -+#: ../system-config-printer.py:5030 - msgid "" - "There were no print shares found. Please check that the Samba service is " - "marked as trusted in your firewall configuration." - msgstr "" - --#: ../system-config-printer.py:5296 ../system-config-printer.py:5357 -+#: ../system-config-printer.py:5291 ../system-config-printer.py:5352 - msgid "Print Share Verified" - msgstr "" - --#: ../system-config-printer.py:5297 ../system-config-printer.py:5358 -+#: ../system-config-printer.py:5292 ../system-config-printer.py:5353 - msgid "This print share is accessible." - msgstr "Споделения принтер е достъпен." - --#: ../system-config-printer.py:5302 ../system-config-printer.py:5362 -+#: ../system-config-printer.py:5297 ../system-config-printer.py:5357 - msgid "This print share is not accessible." - msgstr "Споделения принтер е недостъпен." - --#: ../system-config-printer.py:5305 -+#: ../system-config-printer.py:5300 - #, fuzzy - msgid "Print Share Inaccessible" - msgstr "Споделения принтер е достъпен." - --#: ../system-config-printer.py:5361 -+#: ../system-config-printer.py:5356 - msgid "Inaccessible" - msgstr "Недостъпен" - --#: ../system-config-printer.py:5419 -+#: ../system-config-printer.py:5414 - #, fuzzy, python-format - msgid "It is not possible to obtain a list of queues from '%s'." - msgstr "Възникна проблем при свързване към CUPS сървъра." - --#: ../system-config-printer.py:5421 -+#: ../system-config-printer.py:5416 - msgid "" - "Obtaining a list of queues is a CUPS extension to IPP. Network printers do " - "not support it." - msgstr "" - --#: ../system-config-printer.py:5424 -+#: ../system-config-printer.py:5419 - msgid "No queues" - msgstr "" - --#: ../system-config-printer.py:5425 -+#: ../system-config-printer.py:5420 - msgid "There are no queues available." - msgstr "" - --#: ../system-config-printer.py:5516 -+#: ../system-config-printer.py:5511 - msgid "Parallel Port" - msgstr "" - --#: ../system-config-printer.py:5518 -+#: ../system-config-printer.py:5513 - #, fuzzy - msgid "Serial Port" - msgstr "Сериен" - --#: ../system-config-printer.py:5520 -+#: ../system-config-printer.py:5515 - #, fuzzy - msgid "USB" - msgstr "SMB" - --#: ../system-config-printer.py:5522 ../system-config-printer.py:5525 -+#: ../system-config-printer.py:5517 ../system-config-printer.py:5520 - msgid "HP Linux Imaging and Printing (HPLIP)" - msgstr "" - --#: ../system-config-printer.py:5527 -+#: ../system-config-printer.py:5522 - #, fuzzy - msgid "Hardware Abstraction Layer (HAL)" - msgstr "Локален принтер открит от Хардуерния Слой на Абстракция (HAL)." - --#: ../system-config-printer.py:5529 -+#: ../system-config-printer.py:5524 - msgid "AppSocket/HP JetDirect" - msgstr "" - --#: ../system-config-printer.py:5538 -+#: ../system-config-printer.py:5533 - #, python-format - msgid "LPD/LPR queue '%s'" - msgstr "" - --#: ../system-config-printer.py:5540 -+#: ../system-config-printer.py:5535 - #, fuzzy - msgid "LPD/LPR queue" - msgstr "LPD" - --#: ../system-config-printer.py:5543 -+#: ../system-config-printer.py:5538 - msgid "Windows Printer via SAMBA" - msgstr "" - --#: ../system-config-printer.py:5545 ../glade/NewPrinterWindow.glade.h:66 -+#: ../system-config-printer.py:5540 ../glade/NewPrinterWindow.glade.h:65 - msgid "IPP" - msgstr "IPP" - --#: ../system-config-printer.py:5547 -+#: ../system-config-printer.py:5542 - msgid "HTTP" - msgstr "" - --#: ../system-config-printer.py:5632 -+#: ../system-config-printer.py:5624 - msgid "A printer connected to the parallel port." - msgstr "Принтер свързан на паралелния порт." - --#: ../system-config-printer.py:5634 -+#: ../system-config-printer.py:5626 - msgid "A printer connected to a USB port." - msgstr "Принтер свързан на USB порт." - --#: ../system-config-printer.py:5636 -+#: ../system-config-printer.py:5628 - msgid "" - "HPLIP software driving a printer, or the printer function of a multi-" - "function device." -@@ -1436,7 +1441,7 @@ msgstr "" - "HPLIP софтуерно управляван принтер или принтер функция на мултифункционално " - "устройство." - --#: ../system-config-printer.py:5639 -+#: ../system-config-printer.py:5631 - msgid "" - "HPLIP software driving a fax machine, or the fax function of a multi-" - "function device." -@@ -1444,70 +1449,66 @@ msgstr "" - "HPLIP софтуерно управлявана факс машина или факс функция на " - "мултифункционално устройство." - --#: ../system-config-printer.py:5642 -+#: ../system-config-printer.py:5634 - msgid "Local printer detected by the Hardware Abstraction Layer (HAL)." - msgstr "Локален принтер открит от Хардуерния Слой на Абстракция (HAL)." - --#: ../system-config-printer.py:5799 --msgid "HPLIP cannot find the device." --msgstr "" -- --#: ../system-config-printer.py:5881 -+#: ../system-config-printer.py:5831 - msgid "No printer was found at that address." - msgstr "" - --#: ../system-config-printer.py:6020 -+#: ../system-config-printer.py:5968 - #, fuzzy - msgid "-- Select from search results --" - msgstr "Изберете принтер от базата данни" - --#: ../system-config-printer.py:6022 -+#: ../system-config-printer.py:5970 - msgid "-- No matches found --" - msgstr "" - --#: ../system-config-printer.py:6203 -+#: ../system-config-printer.py:6151 - msgid " (recommended)" - msgstr "(препоръчан)" - --#: ../system-config-printer.py:6217 -+#: ../system-config-printer.py:6165 - msgid "This PPD is generated by foomatic." - msgstr "Този PPD файл е генериран от foomatic." - --#: ../system-config-printer.py:6241 -+#: ../system-config-printer.py:6189 - #, fuzzy - msgid "OpenPrinting" - msgstr "Печатане" - --#: ../system-config-printer.py:6252 -+#: ../system-config-printer.py:6200 - msgid "Distributable" - msgstr "" - --#: ../system-config-printer.py:6293 -+#: ../system-config-printer.py:6241 - #, fuzzy - msgid ", " - msgstr " " - --#: ../system-config-printer.py:6298 -+#: ../system-config-printer.py:6246 - #, python-format - msgid "" - "\n" - "(%s)" - msgstr "" - --#: ../system-config-printer.py:6303 -+#: ../system-config-printer.py:6251 - msgid "No support contacts known" - msgstr "" - --#: ../system-config-printer.py:6307 ../system-config-printer.py:6320 -+#: ../system-config-printer.py:6255 ../system-config-printer.py:6268 - msgid "Not specified." - msgstr "" - - #. Foomatic database problem of some sort. --#: ../system-config-printer.py:6360 -+#: ../system-config-printer.py:6308 - msgid "Database error" - msgstr "Грешка в базата данни" - --#: ../system-config-printer.py:6361 -+#: ../system-config-printer.py:6309 - #, python-format - msgid "The '%s' driver cannot be used with printer '%s %s'." - msgstr "Драйвера '%s' не може да се ползва с принтер '%s %s'." -@@ -1515,7 +1516,7 @@ msgstr "Драйвера '%s' не мо - #. This printer references some XML that is not - #. installed by default. Point the user at the - #. package they need to install. --#: ../system-config-printer.py:6371 -+#: ../system-config-printer.py:6319 - #, python-format - msgid "You will need to install the '%s' package in order to use this driver." - msgstr "" -@@ -1523,54 +1524,54 @@ msgstr "" - "драйвер." - - #. This error came from trying to open the PPD file. --#: ../system-config-printer.py:6378 -+#: ../system-config-printer.py:6326 - msgid "PPD error" - msgstr "PPD грешка" - --#: ../system-config-printer.py:6380 -+#: ../system-config-printer.py:6328 - msgid "Failed to read PPD file. Possible reason follows:" - msgstr "Неуспешно генериране на PPD файл. Следват възможните причини:" - - #. Failed to get PPD downloaded from OpenPrinting XXX --#: ../system-config-printer.py:6397 -+#: ../system-config-printer.py:6345 - msgid "Downloadable drivers" - msgstr "" - --#: ../system-config-printer.py:6398 -+#: ../system-config-printer.py:6346 - msgid "Failed to download PPD." - msgstr "" - --#: ../system-config-printer.py:6405 -+#: ../system-config-printer.py:6353 - msgid "fetching PPD" - msgstr "" - --#: ../system-config-printer.py:6434 ../system-config-printer.py:6472 -+#: ../system-config-printer.py:6382 ../system-config-printer.py:6420 - msgid "No Installable Options" - msgstr "Неинсталируеми опции" - --#: ../system-config-printer.py:6520 -+#: ../system-config-printer.py:6468 - #, fuzzy, python-format - msgid "adding printer %s" - msgstr "Добавяне на принтер" - --#: ../system-config-printer.py:6669 -+#: ../system-config-printer.py:6617 - msgid "Would you like to print a test page?" - msgstr "" - --#: ../system-config-printer.py:6722 -+#: ../system-config-printer.py:6670 - msgid "Install driver" - msgstr "Инсталиране на драйвер" - --#: ../system-config-printer.py:6723 ../troubleshoot/CheckPPDSanity.py:131 -+#: ../system-config-printer.py:6671 ../troubleshoot/CheckPPDSanity.py:131 - #, python-format - msgid "Printer '%s' requires the %s package but it is not currently installed." - msgstr "Принтера '%s' изисква пакета %s, който не е инсталиран в момента." - --#: ../system-config-printer.py:6739 -+#: ../system-config-printer.py:6687 - msgid "Missing driver" - msgstr "Липсващ драйвер" - --#: ../system-config-printer.py:6740 -+#: ../system-config-printer.py:6688 - #, python-format - msgid "" - "Printer '%s' requires the '%s' program but it is not currently installed. " -@@ -1717,131 +1718,126 @@ msgstr "Въведете URI на у - - #: ../glade/NewPrinterWindow.glade.h:5 - #, fuzzy --msgid "HP Printer (HPLIP) via network" --msgstr "Име на принтера" -- --#: ../glade/NewPrinterWindow.glade.h:6 --#, fuzzy - msgid "IPP Printer" - msgstr "SMB Принтер" - --#: ../glade/NewPrinterWindow.glade.h:7 -+#: ../glade/NewPrinterWindow.glade.h:6 - #, fuzzy - msgid "License Terms" - msgstr "Име на принтера" - --#: ../glade/NewPrinterWindow.glade.h:8 -+#: ../glade/NewPrinterWindow.glade.h:7 - msgid "Location of the LPD network printer" - msgstr "Местоположение на LPD мрежовия принтер" - --#: ../glade/NewPrinterWindow.glade.h:9 -+#: ../glade/NewPrinterWindow.glade.h:8 - msgid "Location of the network printer" - msgstr "Местоположение на мрежовия принтер" - --#: ../glade/NewPrinterWindow.glade.h:10 -+#: ../glade/NewPrinterWindow.glade.h:9 - msgid "Location (optional)" - msgstr "Местоположение (опционално)" - --#: ../glade/NewPrinterWindow.glade.h:11 -+#: ../glade/NewPrinterWindow.glade.h:10 - #, fuzzy - msgid "Network Printer" - msgstr "Нов принтер" - --#: ../glade/NewPrinterWindow.glade.h:12 -+#: ../glade/NewPrinterWindow.glade.h:11 - #, fuzzy - msgid "Note" - msgstr "Състояние" - --#: ../glade/NewPrinterWindow.glade.h:13 -+#: ../glade/NewPrinterWindow.glade.h:12 - #, fuzzy - msgid "Output Quality" - msgstr "Състояние" - --#: ../glade/NewPrinterWindow.glade.h:14 -+#: ../glade/NewPrinterWindow.glade.h:13 - msgid "Printer Name" - msgstr "Име на принтера" - --#: ../glade/NewPrinterWindow.glade.h:15 -+#: ../glade/NewPrinterWindow.glade.h:14 - msgid "SMB Printer" - msgstr "SMB Принтер" - --#: ../glade/NewPrinterWindow.glade.h:16 -+#: ../glade/NewPrinterWindow.glade.h:15 - #, fuzzy - msgid "Select Driver" - msgstr "SMB Принтер" - --#: ../glade/NewPrinterWindow.glade.h:17 -+#: ../glade/NewPrinterWindow.glade.h:16 - msgid "Settings of the serial port" - msgstr "Настройки на серийния порт" - --#: ../glade/NewPrinterWindow.glade.h:18 -+#: ../glade/NewPrinterWindow.glade.h:17 - msgid "smb://[workgroup/]server[:port]/printer" - msgstr "smb://[работна група/]сървър[:порт]/принтер" - --#: ../glade/NewPrinterWindow.glade.h:19 -+#: ../glade/NewPrinterWindow.glade.h:18 - #, fuzzy - msgid "Choose Class Members" - msgstr "" - "Изисква се парола\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:20 -+#: ../glade/NewPrinterWindow.glade.h:19 - #, fuzzy - msgid "Choose Driver" - msgstr "" - "Изисква се парола\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:21 -+#: ../glade/NewPrinterWindow.glade.h:20 - #, fuzzy - msgid "Describe Printer" - msgstr "" - "Изисква се парола\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:22 -+#: ../glade/NewPrinterWindow.glade.h:21 - #, fuzzy - msgid "Existing Settings" - msgstr "" - "Изисква се парола\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:23 -+#: ../glade/NewPrinterWindow.glade.h:22 - #, fuzzy - msgid "Installable Options" - msgstr "" - "Изисква се парола\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:24 -+#: ../glade/NewPrinterWindow.glade.h:23 - #, fuzzy - msgid "Select Device" - msgstr "" - "Изисква се парола\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:25 -+#: ../glade/NewPrinterWindow.glade.h:24 - msgid "Baud Rate" - msgstr "Битова честота" - --#: ../glade/NewPrinterWindow.glade.h:26 -+#: ../glade/NewPrinterWindow.glade.h:25 - msgid "Browse..." - msgstr "Преглед..." - --#: ../glade/NewPrinterWindow.glade.h:27 -+#: ../glade/NewPrinterWindow.glade.h:26 - msgid "Comments..." - msgstr "Коментари..." - --#: ../glade/NewPrinterWindow.glade.h:28 -+#: ../glade/NewPrinterWindow.glade.h:27 - #, fuzzy - msgid "Connection" - msgstr "Свързване" - --#: ../glade/NewPrinterWindow.glade.h:29 -+#: ../glade/NewPrinterWindow.glade.h:28 - msgid "Data Bits" - msgstr "Битове данни" - --#: ../glade/NewPrinterWindow.glade.h:30 -+#: ../glade/NewPrinterWindow.glade.h:29 - msgid "" - "Default\n" - "1200\n" -@@ -1863,7 +1859,7 @@ msgstr "" - "57600\n" - "115200" - --#: ../glade/NewPrinterWindow.glade.h:39 -+#: ../glade/NewPrinterWindow.glade.h:38 - msgid "" - "Default\n" - "8\n" -@@ -1873,7 +1869,7 @@ msgstr "" - "8\n" - "7" - --#: ../glade/NewPrinterWindow.glade.h:42 -+#: ../glade/NewPrinterWindow.glade.h:41 - msgid "" - "Default\n" - "None\n" -@@ -1885,7 +1881,7 @@ msgstr "" - "Нечетен\n" - "Четен" - --#: ../glade/NewPrinterWindow.glade.h:46 -+#: ../glade/NewPrinterWindow.glade.h:45 - msgid "" - "Default\n" - "None\n" -@@ -1899,120 +1895,120 @@ msgstr "" - "RTS/CTS (Хардуерен)\n" - "DTR/DSR (Хардуерен)" - --#: ../glade/NewPrinterWindow.glade.h:51 -+#: ../glade/NewPrinterWindow.glade.h:50 - #: ../glade/PrinterPropertiesDialog.glade.h:35 - msgid "Description:" - msgstr "Описание:" - --#: ../glade/NewPrinterWindow.glade.h:52 ../troubleshoot/DeviceListed.py:40 -+#: ../glade/NewPrinterWindow.glade.h:51 ../troubleshoot/DeviceListed.py:40 - msgid "Device URI" - msgstr "URI на устройството" - --#: ../glade/NewPrinterWindow.glade.h:53 -+#: ../glade/NewPrinterWindow.glade.h:52 - msgid "Device description." - msgstr "Описание на устройството." - --#: ../glade/NewPrinterWindow.glade.h:54 -+#: ../glade/NewPrinterWindow.glade.h:53 - msgid "DirectJet" - msgstr "DirectJet" - --#: ../glade/NewPrinterWindow.glade.h:56 -+#: ../glade/NewPrinterWindow.glade.h:55 - #, fuzzy - msgid "Driver details" - msgstr "Драйвери" - --#: ../glade/NewPrinterWindow.glade.h:57 -+#: ../glade/NewPrinterWindow.glade.h:56 - msgid "Empty" - msgstr "Празен" - --#: ../glade/NewPrinterWindow.glade.h:58 -+#: ../glade/NewPrinterWindow.glade.h:57 - msgid "Find _Queue..." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:59 -+#: ../glade/NewPrinterWindow.glade.h:58 - msgid "Flow Control" - msgstr "Контрол на потока" - --#: ../glade/NewPrinterWindow.glade.h:60 -+#: ../glade/NewPrinterWindow.glade.h:59 - msgid "" - "For the printer you have selected there are drivers available for download." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:61 -+#: ../glade/NewPrinterWindow.glade.h:60 - msgid "Free software" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:62 -+#: ../glade/NewPrinterWindow.glade.h:61 - msgid "Graphics:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:63 -+#: ../glade/NewPrinterWindow.glade.h:62 - #, fuzzy - msgid "Host:" - msgstr "Име на хост" - --#: ../glade/NewPrinterWindow.glade.h:64 -+#: ../glade/NewPrinterWindow.glade.h:63 - msgid "Human-readable description such as \"HP LaserJet with Duplexer\"" - msgstr "Разбираемо за човек описание като \"HP LaserJet с Duplexer\"" - --#: ../glade/NewPrinterWindow.glade.h:65 -+#: ../glade/NewPrinterWindow.glade.h:64 - msgid "Human-readable location such as \"Lab 1\"" - msgstr "Разбираемо за човек местоположение като \"Лаборатория 1\"" - --#: ../glade/NewPrinterWindow.glade.h:67 -+#: ../glade/NewPrinterWindow.glade.h:66 - msgid "LPD" - msgstr "LPD" - --#: ../glade/NewPrinterWindow.glade.h:68 -+#: ../glade/NewPrinterWindow.glade.h:67 - msgid "License:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:69 -+#: ../glade/NewPrinterWindow.glade.h:68 - #, fuzzy - msgid "Line art:" - msgstr "Състояние на принтера:" - --#: ../glade/NewPrinterWindow.glade.h:70 -+#: ../glade/NewPrinterWindow.glade.h:69 - #, fuzzy - msgid "Local Driver" - msgstr "Локални принтери" - --#: ../glade/NewPrinterWindow.glade.h:71 -+#: ../glade/NewPrinterWindow.glade.h:70 - #, fuzzy - msgid "Make and model:" - msgstr "Производител и модел:" - --#: ../glade/NewPrinterWindow.glade.h:72 -+#: ../glade/NewPrinterWindow.glade.h:71 - msgid "Manufacturer" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:73 -+#: ../glade/NewPrinterWindow.glade.h:72 - #, fuzzy - msgid "Network" - msgstr "Нов принтер" - --#: ../glade/NewPrinterWindow.glade.h:75 -+#: ../glade/NewPrinterWindow.glade.h:74 - msgid "No, I do not accept this license" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:76 -+#: ../glade/NewPrinterWindow.glade.h:75 - msgid "Parity" - msgstr "Четност" - --#: ../glade/NewPrinterWindow.glade.h:78 -+#: ../glade/NewPrinterWindow.glade.h:77 - msgid "Patented algorithms" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:79 -+#: ../glade/NewPrinterWindow.glade.h:78 - msgid "Photo:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:80 -+#: ../glade/NewPrinterWindow.glade.h:79 - #, fuzzy - msgid "Port number:" - msgstr "Номер на порт" - --#: ../glade/NewPrinterWindow.glade.h:81 -+#: ../glade/NewPrinterWindow.glade.h:80 - #, fuzzy - msgid "" - "PostScript Printer Description (PPD) files can often be found on the driver " -@@ -2023,82 +2019,82 @@ msgstr "" - "с драйвери идващ с принтера. За PostScript принтерите те често са част от " - "Windows® драйвера." - --#: ../glade/NewPrinterWindow.glade.h:82 -+#: ../glade/NewPrinterWindow.glade.h:81 - #, fuzzy - msgid "Printer model:" - msgstr "Принтера бе добавен" - --#: ../glade/NewPrinterWindow.glade.h:83 -+#: ../glade/NewPrinterWindow.glade.h:82 - msgid "Probe" - msgstr "Проба" - --#: ../glade/NewPrinterWindow.glade.h:84 -+#: ../glade/NewPrinterWindow.glade.h:83 - #, fuzzy - msgid "Prompt user if authentication is required" - msgstr "Изисква се удостоверяване" - --#: ../glade/NewPrinterWindow.glade.h:85 -+#: ../glade/NewPrinterWindow.glade.h:84 - #, fuzzy - msgid "Provide PPD file" - msgstr "Предоставяне на PPD файл" - --#: ../glade/NewPrinterWindow.glade.h:86 -+#: ../glade/NewPrinterWindow.glade.h:85 - msgid "Queue:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:87 -+#: ../glade/NewPrinterWindow.glade.h:86 - msgid "SCSI" - msgstr "SCSI" - --#: ../glade/NewPrinterWindow.glade.h:88 -+#: ../glade/NewPrinterWindow.glade.h:87 - msgid "SMB" - msgstr "SMB" - --#: ../glade/NewPrinterWindow.glade.h:89 -+#: ../glade/NewPrinterWindow.glade.h:88 - msgid "Search for a printer driver to download" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:90 -+#: ../glade/NewPrinterWindow.glade.h:89 - #, fuzzy - msgid "Searching..." - msgstr "Търсене" - --#: ../glade/NewPrinterWindow.glade.h:91 -+#: ../glade/NewPrinterWindow.glade.h:90 - msgid "Select A File" - msgstr "Избор на файл" - --#: ../glade/NewPrinterWindow.glade.h:92 -+#: ../glade/NewPrinterWindow.glade.h:91 - #, fuzzy - msgid "Select printer from database" - msgstr "Изберете принтер от базата данни" - --#: ../glade/NewPrinterWindow.glade.h:93 -+#: ../glade/NewPrinterWindow.glade.h:92 - msgid "Serial" - msgstr "Сериен" - --#: ../glade/NewPrinterWindow.glade.h:94 -+#: ../glade/NewPrinterWindow.glade.h:93 - #, fuzzy - msgid "Set authentication details now" - msgstr "Изисква се удостоверяване" - --#: ../glade/NewPrinterWindow.glade.h:95 -+#: ../glade/NewPrinterWindow.glade.h:94 - msgid "Short name for this printer such as \"laserjet\"" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:96 -+#: ../glade/NewPrinterWindow.glade.h:95 - msgid "Supplier:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:97 -+#: ../glade/NewPrinterWindow.glade.h:96 - msgid "Support:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:98 -+#: ../glade/NewPrinterWindow.glade.h:97 - #, fuzzy - msgid "Text:" - msgstr "Установяване наново" - --#: ../glade/NewPrinterWindow.glade.h:99 -+#: ../glade/NewPrinterWindow.glade.h:98 - msgid "" - "The foomatic printer database contains various manufacturer provided " - "PostScript Printer Description (PPD) files and also can generate PPD files " -@@ -2112,14 +2108,14 @@ msgstr "" - "предоставените от производителя PPD файлове предлагат по-добър достъп до " - "специфични свойства на принтера." - --#: ../glade/NewPrinterWindow.glade.h:100 -+#: ../glade/NewPrinterWindow.glade.h:99 - msgid "" - "These drivers do not come from your operating system supplier and will not " - "be covered by their commercial support. See the support and license terms " - "of the driver's supplier." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:101 -+#: ../glade/NewPrinterWindow.glade.h:100 - msgid "" - "This driver supports additional hardware that may be installed in the " - "printer." -@@ -2127,7 +2123,7 @@ msgstr "" - "Този драйвер поддържа допълнителен хардуер, който може да бъде инсталиран в " - "принтера." - --#: ../glade/NewPrinterWindow.glade.h:102 -+#: ../glade/NewPrinterWindow.glade.h:101 - msgid "" - "This is done by assuming that options with the same name do have the same " - "meaning. Settings of options that are not present in the new PPD will be " -@@ -2138,7 +2134,7 @@ msgstr "" - "за настройките налични само в новия PPD файл ще бъдат взети стойностите по " - "подразбиране." - --#: ../glade/NewPrinterWindow.glade.h:103 -+#: ../glade/NewPrinterWindow.glade.h:102 - msgid "" - "This way all current option settings will be lost. The default settings of " - "the new PPD will be used. " -@@ -2146,45 +2142,45 @@ msgstr "" - "По този начин всички сегашни опции ще бъдат загубени. Ще бъдат ползвани " - "подразбиращите се настройки от нови PPD файл. " - --#: ../glade/NewPrinterWindow.glade.h:104 -+#: ../glade/NewPrinterWindow.glade.h:103 - msgid "Try to copy the option settings over from the old PPD. " - msgstr "Да се опита копиране на опциите от стария PPD файл. " - --#: ../glade/NewPrinterWindow.glade.h:105 -+#: ../glade/NewPrinterWindow.glade.h:104 - msgid "URI:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:107 -+#: ../glade/NewPrinterWindow.glade.h:106 - msgid "Use the new PPD (Postscript Printer Description) as is." - msgstr "" - "Ползване на новия PPD (PostScript Описание на Принтера) файла без промени." - --#: ../glade/NewPrinterWindow.glade.h:109 -+#: ../glade/NewPrinterWindow.glade.h:108 - msgid "" - "With this choice no driver download will be performed. In the next steps a " - "locally installed driver will be selected." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:110 -+#: ../glade/NewPrinterWindow.glade.h:109 - #, fuzzy - msgid "Yes, I accept this license" - msgstr "Приема задачи" - --#: ../glade/NewPrinterWindow.glade.h:111 -+#: ../glade/NewPrinterWindow.glade.h:110 - #, fuzzy - msgid "_Search" - msgstr "Търсене" - --#: ../glade/NewPrinterWindow.glade.h:112 -+#: ../glade/NewPrinterWindow.glade.h:111 - msgid "_Verify..." - msgstr "_Проверка..." - --#: ../glade/NewPrinterWindow.glade.h:113 -+#: ../glade/NewPrinterWindow.glade.h:112 - #: ../glade/PrinterPropertiesDialog.glade.h:128 - msgid "move left" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:114 -+#: ../glade/NewPrinterWindow.glade.h:113 - #: ../glade/PrinterPropertiesDialog.glade.h:129 - msgid "move right" - msgstr "" -@@ -3123,7 +3119,7 @@ msgstr "" - msgid "Remember to load paper of type '%s' into the printer first." - msgstr "" - --#: ../troubleshoot/PrintTestPage.py:399 -+#: ../troubleshoot/PrintTestPage.py:416 - msgid "Error submitting test page" - msgstr "" - -@@ -3316,6 +3312,10 @@ msgid "Select default printer" - msgstr "Избор на принтер по подразбиране" - - #, fuzzy -+#~ msgid "HP Printer (HPLIP) via network" -+#~ msgstr "Име на принтера" -+ -+#, fuzzy - #~ msgid "Not Found" - #~ msgstr "Не намерен" - -diff -up system-config-printer-1.1.5/po/bn_IN.po.git-1.1.x system-config-printer-1.1.5/po/bn_IN.po ---- system-config-printer-1.1.5/po/bn_IN.po.git-1.1.x 2009-03-03 22:21:46.000000000 +0000 -+++ system-config-printer-1.1.5/po/bn_IN.po 2009-03-10 17:43:31.000000000 +0000 -@@ -8,7 +8,7 @@ msgid "" - msgstr "" - "Project-Id-Version: bn_IN\n" - "Report-Msgid-Bugs-To: https://bugzilla.redhat.com/bugzilla\n" --"POT-Creation-Date: 2009-03-02 23:22+0000\n" -+"POT-Creation-Date: 2009-03-10 16:51+0000\n" - "PO-Revision-Date: 2007-04-17 10:19+0530\n" - "Last-Translator: Runa Bhattacharjee \n" - "Language-Team: Bengali \n" -@@ -65,11 +65,11 @@ msgstr "" - msgid "Enter IP address" - msgstr "প্রিন্টারের নাম" - --#: ../authconn.py:35 ../glade/NewPrinterWindow.glade.h:108 -+#: ../authconn.py:35 ../glade/NewPrinterWindow.glade.h:107 - msgid "Username:" - msgstr "ব্যবহারকারীর নাম:" - --#: ../authconn.py:36 ../glade/NewPrinterWindow.glade.h:77 -+#: ../authconn.py:36 ../glade/NewPrinterWindow.glade.h:76 - msgid "Password:" - msgstr "পাসওয়ার্ড:" - -@@ -78,7 +78,7 @@ msgstr "পাসওয়ার্ড:" - msgid "Domain:" - msgstr "উপরের প্রান্তরেখা" - --#: ../authconn.py:46 -+#: ../authconn.py:46 ../authconn.py:409 - #, fuzzy - msgid "Authentication" - msgstr "অনুমোদন" -@@ -87,45 +87,54 @@ msgstr "অনুমোদন" - msgid "Remember password" - msgstr "" - --#: ../authconn.py:211 ../authconn.py:232 -+#: ../authconn.py:208 -+#, python-format -+msgid "Unauthorized request (%s)" -+msgstr "" -+ -+#: ../authconn.py:209 -+msgid "You are not authorized to carry out therequested action." -+msgstr "" -+ -+#: ../authconn.py:212 ../authconn.py:233 - #, fuzzy - msgid "Operation canceled" - msgstr "কর্ম সংক্রান্ত নিয়মনীতি:" - --#: ../authconn.py:253 -+#: ../authconn.py:250 - #, fuzzy, python-format - msgid "CUPS server error (%s)" - msgstr "CUPS সার্ভারের সমস্যা" - --#: ../authconn.py:255 ../errordialogs.py:57 --#: ../troubleshoot/PrintTestPage.py:400 -+#: ../authconn.py:252 ../errordialogs.py:56 ../errordialogs.py:70 -+msgid "CUPS server error" -+msgstr "CUPS সার্ভারের সমস্যা" -+ -+#: ../authconn.py:261 ../errordialogs.py:57 -+#: ../troubleshoot/PrintTestPage.py:417 - #, python-format - msgid "There was an error during the CUPS operation: '%s'." - msgstr "CUPS'র কর্ম চলাকালীন সমস্যা হয়েছে: '%s'।" - --#: ../authconn.py:258 -+#: ../authconn.py:264 - #, fuzzy - msgid "Retry" - msgstr "পুনরায় নির্ধারণ" - --#: ../authconn.py:379 ../authconn.py:381 ../errordialogs.py:65 ../pysmb.py:75 -+#: ../authconn.py:385 ../authconn.py:387 ../errordialogs.py:65 ../pysmb.py:75 - #: ../pysmb.py:77 - msgid "Not authorized" - msgstr "অনুমোদিত নয়" - --#: ../authconn.py:382 ../pysmb.py:78 -+#: ../authconn.py:388 ../pysmb.py:78 - msgid "The password may be incorrect." - msgstr "পাসওয়ার্ড সম্ভবত সঠিক নয়।" - --#: ../authconn.py:400 -+#: ../authconn.py:407 - #, fuzzy, python-format - msgid "Authentication (%s)" - msgstr "অনুমোদন" - --#: ../errordialogs.py:56 ../errordialogs.py:70 --msgid "CUPS server error" --msgstr "CUPS সার্ভারের সমস্যা" -- - #: ../errordialogs.py:66 - msgid "" - "The password may be incorrect, or the server may be configured to deny " -@@ -154,7 +163,7 @@ msgstr "উন্নীত করা আ - msgid "Server error" - msgstr "সার্ভারের সমস্যা" - --#: ../errordialogs.py:82 ../system-config-printer.py:1219 -+#: ../errordialogs.py:82 ../system-config-printer.py:1223 - msgid "Not connected" - msgstr "সংযোগ বিহীন" - -@@ -176,7 +185,7 @@ msgstr "" - msgid "_New Group from Selection" - msgstr "" - --#: ../GroupsPane.py:98 ../system-config-printer.py:393 -+#: ../GroupsPane.py:98 ../system-config-printer.py:397 - #, fuzzy - msgid "_Rename" - msgstr "মুক্ত করা হবে (_R)" -@@ -245,7 +254,7 @@ msgid "Document" - msgstr "নথি" - - #: ../jobviewer.py:212 ../my-default-printer.py:153 --#: ../system-config-printer.py:366 ../system-config-printer.py:1367 -+#: ../system-config-printer.py:370 ../system-config-printer.py:1371 - #: ../troubleshoot/PrintTestPage.py:84 - msgid "Printer" - msgstr "প্রিন্টার" -@@ -282,8 +291,8 @@ msgstr "নথি প্রিন্ট - - #: ../jobviewer.py:386 ../jobviewer.py:451 ../jobviewer.py:452 - #: ../jobviewer.py:492 ../jobviewer.py:600 ../jobviewer.py:727 --#: ../jobviewer.py:1196 ../jobviewer.py:1222 ../system-config-printer.py:2546 --#: ../glade/NewPrinterWindow.glade.h:106 -+#: ../jobviewer.py:1196 ../jobviewer.py:1222 ../system-config-printer.py:2556 -+#: ../glade/NewPrinterWindow.glade.h:105 - #: ../troubleshoot/ChooseNetworkPrinter.py:101 - #: ../troubleshoot/ChooseNetworkPrinter.py:102 - #: ../troubleshoot/ChooseNetworkPrinter.py:105 -@@ -373,12 +382,12 @@ msgstr "" - msgid "Pending" - msgstr "অসমাপ্ত কর্ম" - --#: ../jobviewer.py:591 ../system-config-printer.py:186 -+#: ../jobviewer.py:591 ../system-config-printer.py:190 - #: ../troubleshoot/PrintTestPage.py:43 - msgid "Processing" - msgstr "কর্মরত" - --#: ../jobviewer.py:592 ../system-config-printer.py:188 -+#: ../jobviewer.py:592 ../system-config-printer.py:192 - #: ../troubleshoot/PrintTestPage.py:44 - msgid "Stopped" - msgstr "স্থগিত" -@@ -495,8 +504,8 @@ msgstr "সিস্টেমের ড - msgid "_Set Default" - msgstr "ডিফল্ট" - --#: ../my-default-printer.py:158 ../system-config-printer.py:423 --#: ../system-config-printer.py:3660 ../troubleshoot/ChooseNetworkPrinter.py:37 -+#: ../my-default-printer.py:158 ../system-config-printer.py:427 -+#: ../system-config-printer.py:3675 ../troubleshoot/ChooseNetworkPrinter.py:37 - #: ../troubleshoot/ChoosePrinter.py:38 - #, fuzzy - msgid "Location" -@@ -530,7 +539,7 @@ msgstr "ডিফল্ট প্রি - msgid "Authenticated" - msgstr "অনুমোদন" - --#: ../ppdippstr.py:50 ../system-config-printer.py:6259 -+#: ../ppdippstr.py:50 ../system-config-printer.py:6207 - #, fuzzy - msgid "None" - msgstr "শূণ্য" -@@ -750,132 +759,132 @@ msgstr "" - msgid "1200 dpi, photo, black + color cartridge, photo paper" - msgstr "" - --#: ../system-config-printer.py:127 -+#: ../system-config-printer.py:131 - msgid "To do this, select System->Administration->Firewall from the main menu." - msgstr "" - --#: ../system-config-printer.py:185 -+#: ../system-config-printer.py:189 - msgid "Idle" - msgstr "কর্মবিহীন" - --#: ../system-config-printer.py:187 -+#: ../system-config-printer.py:191 - msgid "Busy" - msgstr "ব্যস্ত" - --#: ../system-config-printer.py:372 ../system-config-printer.py:1373 -+#: ../system-config-printer.py:376 ../system-config-printer.py:1377 - #, fuzzy - msgid "Class" - msgstr "নতুন শ্রেণী" - --#: ../system-config-printer.py:399 -+#: ../system-config-printer.py:403 - #, fuzzy - msgid "Set As De_fault" - msgstr "ডিফল্ট" - --#: ../system-config-printer.py:403 -+#: ../system-config-printer.py:407 - #, fuzzy - msgid "_Create class" - msgstr "দূরবর্তী শ্রেণী" - --#: ../system-config-printer.py:405 -+#: ../system-config-printer.py:409 - #, fuzzy - msgid "View Print _Queue" - msgstr "নতুন প্রিন্টার" - --#: ../system-config-printer.py:407 -+#: ../system-config-printer.py:411 - msgid "_Add to Group" - msgstr "" - --#: ../system-config-printer.py:409 -+#: ../system-config-printer.py:413 - msgid "Save Results as _Group" - msgstr "" - --#: ../system-config-printer.py:411 -+#: ../system-config-printer.py:415 - msgid "Save Filter as _Search Group" - msgstr "" - --#: ../system-config-printer.py:415 -+#: ../system-config-printer.py:419 - #, fuzzy - msgid "E_nabled" - msgstr "সক্রিয়" - --#: ../system-config-printer.py:417 -+#: ../system-config-printer.py:421 - #, fuzzy - msgid "_Shared" - msgstr "যৌথরূপে ব্যবহৃত" - --#: ../system-config-printer.py:421 ../troubleshoot/ChooseNetworkPrinter.py:35 -+#: ../system-config-printer.py:425 ../troubleshoot/ChooseNetworkPrinter.py:35 - #: ../troubleshoot/ChoosePrinter.py:36 ../troubleshoot/DeviceListed.py:36 - msgid "Name" - msgstr "নাম" - --#: ../system-config-printer.py:422 -+#: ../system-config-printer.py:426 - #, fuzzy - msgid "Description" - msgstr "বিবরণ:" - --#: ../system-config-printer.py:424 -+#: ../system-config-printer.py:428 - msgid "Manufacturer / Model" - msgstr "" - - #. Printer state reasons list --#: ../system-config-printer.py:499 -+#: ../system-config-printer.py:503 - msgid "Message" - msgstr "বার্তা" - --#: ../system-config-printer.py:534 -+#: ../system-config-printer.py:538 - #, fuzzy - msgid "Problems?" - msgstr "অনুসন্ধান" - --#: ../system-config-printer.py:637 ../system-config-printer.py:639 -+#: ../system-config-printer.py:641 ../system-config-printer.py:643 - msgid "Members of this class" - msgstr "চিহ্নিত শ্রেণীর সদস্যবৃন্দ" - --#: ../system-config-printer.py:638 ../system-config-printer.py:640 -+#: ../system-config-printer.py:642 ../system-config-printer.py:644 - msgid "Others" - msgstr "অন্যান্য" - --#: ../system-config-printer.py:641 -+#: ../system-config-printer.py:645 - msgid "Devices" - msgstr "ডিভাইস" - --#: ../system-config-printer.py:642 -+#: ../system-config-printer.py:646 - #, fuzzy - msgid "Connections" - msgstr "সংযোগ স্থাপন করা হচ্ছে" - --#: ../system-config-printer.py:643 -+#: ../system-config-printer.py:647 - msgid "Makes" - msgstr "ধরন" - --#: ../system-config-printer.py:644 -+#: ../system-config-printer.py:648 - msgid "Models" - msgstr "মডেল" - --#: ../system-config-printer.py:645 -+#: ../system-config-printer.py:649 - msgid "Drivers" - msgstr "ড্রাইভার" - --#: ../system-config-printer.py:646 ../glade/NewPrinterWindow.glade.h:55 -+#: ../system-config-printer.py:650 ../glade/NewPrinterWindow.glade.h:54 - msgid "Downloadable Drivers" - msgstr "" - --#: ../system-config-printer.py:647 -+#: ../system-config-printer.py:651 - msgid "Users" - msgstr "ব্যবহারকারী" - --#: ../system-config-printer.py:682 -+#: ../system-config-printer.py:686 - msgid "Automatic rotation" - msgstr "" - --#: ../system-config-printer.py:989 -+#: ../system-config-printer.py:993 - #, fuzzy, python-format - msgid "Printer Properties - '%s' on %s" - msgstr "প্রিন্টার সংক্রান্ত বিবরণ" - - #. The Conflict button was pressed. --#: ../system-config-printer.py:996 -+#: ../system-config-printer.py:1000 - msgid "" - "There are conflicting options.\n" - "Changes can only be applied after\n" -@@ -885,81 +894,81 @@ msgstr "" - "এই সমস্ত দ্বন্দ্ব সমাধান না করা অবধি\n" - "পরিবর্তন প্রয়োগ করা সম্ভব হবে না।" - --#: ../system-config-printer.py:1214 -+#: ../system-config-printer.py:1218 - #, python-format - msgid "Printer configuration - %s" - msgstr "প্রিন্টারের কনফিগারেশন - %s" - --#: ../system-config-printer.py:1217 -+#: ../system-config-printer.py:1221 - #, python-format - msgid "Connected to %s" - msgstr "%s'র সাথে সংযুক্ত" - - #. Update our copy of the printer's settings. --#: ../system-config-printer.py:1257 ../system-config-printer.py:2042 -+#: ../system-config-printer.py:1261 ../system-config-printer.py:2046 - msgid "obtaining queue details" - msgstr "" - --#: ../system-config-printer.py:1295 -+#: ../system-config-printer.py:1299 - msgid "Remove from Group" - msgstr "" - --#: ../system-config-printer.py:1361 -+#: ../system-config-printer.py:1365 - #, fuzzy - msgid "Network printer (discovered)" - msgstr "নতুন প্রিন্টার" - --#: ../system-config-printer.py:1364 -+#: ../system-config-printer.py:1368 - msgid "Network class (discovered)" - msgstr "" - --#: ../system-config-printer.py:1370 ../system-config-printer.py:5524 --#: ../system-config-printer.py:5594 ../system-config-printer.py:5596 -+#: ../system-config-printer.py:1374 ../system-config-printer.py:5519 -+#: ../system-config-printer.py:5589 ../system-config-printer.py:5591 - msgid "Fax" - msgstr "" - --#: ../system-config-printer.py:1376 ../system-config-printer.py:1382 -+#: ../system-config-printer.py:1380 ../system-config-printer.py:1386 - #: ../troubleshoot/LocalOrRemote.py:30 - #, fuzzy - msgid "Network printer" - msgstr "নতুন প্রিন্টার" - --#: ../system-config-printer.py:1379 -+#: ../system-config-printer.py:1383 - #, fuzzy - msgid "Network print share" - msgstr "নতুন প্রিন্টার" - --#: ../system-config-printer.py:1508 ../glade/ConnectingDialog.glade.h:2 -+#: ../system-config-printer.py:1512 ../glade/ConnectingDialog.glade.h:2 - #, no-c-format, python-format - msgid "Opening connection to %s" - msgstr "" - --#: ../system-config-printer.py:1887 -+#: ../system-config-printer.py:1891 - msgid "Installable Options" - msgstr "ইনস্টল করার যোগ্য বিকল্প" - --#: ../system-config-printer.py:1888 -+#: ../system-config-printer.py:1892 - #: ../glade/PrinterPropertiesDialog.glade.h:109 - msgid "Printer Options" - msgstr "প্রিন্টার সংক্রান্ত বিকল্প" - --#: ../system-config-printer.py:1924 -+#: ../system-config-printer.py:1928 - #, python-format - msgid "modifying class %s" - msgstr "" - --#: ../system-config-printer.py:1926 ../system-config-printer.py:3019 --#: ../system-config-printer.py:3044 ../system-config-printer.py:6547 --#: ../system-config-printer.py:6559 ../system-config-printer.py:6581 -+#: ../system-config-printer.py:1930 ../system-config-printer.py:3037 -+#: ../system-config-printer.py:3062 ../system-config-printer.py:6495 -+#: ../system-config-printer.py:6507 ../system-config-printer.py:6529 - #, fuzzy, python-format - msgid "modifying printer %s" - msgstr "প্রিন্টার কনফিগার করুন" - --#: ../system-config-printer.py:1941 -+#: ../system-config-printer.py:1945 - msgid "This will delete this class!" - msgstr "এর ফলে চিহ্নিত শ্রেণী মুছে ফেলা হবে!" - --#: ../system-config-printer.py:1942 -+#: ../system-config-printer.py:1946 - msgid "Proceed anyway?" - msgstr "তথাপি এগিয়ে চলা হবে কি?" - -@@ -967,50 +976,50 @@ msgstr "তথাপি এগিয়ে - #. but we have never fetched the server settings to see whether - #. the server is publishing shared printers. Fetch the settings - #. now so that we can update the "not published" label if necessary. --#: ../system-config-printer.py:2030 ../system-config-printer.py:3203 -+#: ../system-config-printer.py:2034 ../system-config-printer.py:3221 - #, fuzzy - msgid "fetching server settings" - msgstr "সার্ভার সংক্রান্ত মৌলিক বৈশিষ্ট্য" - --#: ../system-config-printer.py:2100 -+#: ../system-config-printer.py:2104 - #, fuzzy - msgid "Set Default Printer" - msgstr "ডিফল্ট প্রিন্টার রূপে চিহ্নিত করা হবে" - --#: ../system-config-printer.py:2102 -+#: ../system-config-printer.py:2106 - msgid "Do you want to set this as the system-wide default printer?" - msgstr "" - --#: ../system-config-printer.py:2104 -+#: ../system-config-printer.py:2108 - #, fuzzy - msgid "Set as the _system-wide default printer" - msgstr "ডিফল্ট প্রিন্টার রূপে চিহ্নিত" - --#: ../system-config-printer.py:2106 -+#: ../system-config-printer.py:2110 - msgid "_Clear my personal default setting" - msgstr "" - --#: ../system-config-printer.py:2107 -+#: ../system-config-printer.py:2111 - #, fuzzy - msgid "Set as my _personal default printer" - msgstr "ডিফল্ট প্রিন্টার রূপে চিহ্নিত করা হবে" - --#: ../system-config-printer.py:2112 -+#: ../system-config-printer.py:2116 - #, fuzzy - msgid "setting default printer" - msgstr "ডিফল্ট প্রিন্টার রূপে চিহ্নিত করা হবে" - --#: ../system-config-printer.py:2169 -+#: ../system-config-printer.py:2173 - #, fuzzy - msgid "printing test page" - msgstr "পরীক্ষামূলক পৃষ্ঠা প্রিন্ট করুন" - --#: ../system-config-printer.py:2182 ../system-config-printer.py:2217 --#: ../system-config-printer.py:5418 -+#: ../system-config-printer.py:2186 ../system-config-printer.py:2221 -+#: ../system-config-printer.py:5413 - msgid "Not possible" - msgstr "সম্ভব নয়" - --#: ../system-config-printer.py:2183 ../system-config-printer.py:2218 -+#: ../system-config-printer.py:2187 ../system-config-printer.py:2222 - msgid "" - "The remote server did not accept the print job, most likely because the " - "printer is not shared." -@@ -1018,20 +1027,20 @@ msgstr "" - "সম্ভবত যৌথরূপে ব্যবহারের উদ্দেশ্যে প্রিন্টার চিহ্নিত না হওয়ার ফলে দূরবর্তী সার্ভারের " - "দ্বারা প্রিন্ট কর্ম গৃহীত হয়নি।" - --#: ../system-config-printer.py:2195 ../system-config-printer.py:2210 -+#: ../system-config-printer.py:2199 ../system-config-printer.py:2214 - msgid "Submitted" - msgstr "প্রেরিত" - --#: ../system-config-printer.py:2196 -+#: ../system-config-printer.py:2200 - #, python-format - msgid "Test page submitted as job %d" - msgstr "কর্ম %d রূপে পরিক্ষামূলক পৃষ্ঠা প্রেরিত হয়েছে" - --#: ../system-config-printer.py:2203 -+#: ../system-config-printer.py:2207 - msgid "sending maintenance command" - msgstr "" - --#: ../system-config-printer.py:2211 -+#: ../system-config-printer.py:2215 - #, fuzzy, python-format - msgid "Maintenance command submitted as job %d" - msgstr "কর্ম %d রূপে পরিক্ষামূলক পৃষ্ঠা প্রেরিত হয়েছে" -@@ -1039,75 +1048,75 @@ msgstr "কর্ম %d রূপে প - #. The underlying cupsGetPPD2() function returned NULL without - #. setting an IPP error, so it'll be something like a failed - #. connection. --#: ../system-config-printer.py:2285 ../system-config-printer.py:2381 -+#: ../system-config-printer.py:2289 ../system-config-printer.py:2385 - msgid "Error" - msgstr "ত্রুটি" - --#: ../system-config-printer.py:2286 -+#: ../system-config-printer.py:2290 - msgid "There was a problem connecting to the CUPS server." - msgstr "CUPS সার্ভারের সাথে সংযোগ করতে সমস্যা হয়েছে: '%s'।" - --#: ../system-config-printer.py:2382 -+#: ../system-config-printer.py:2386 - #, python-format - msgid "Option '%s' has value '%s' and cannot be edited." - msgstr "" - --#: ../system-config-printer.py:2466 -+#: ../system-config-printer.py:2476 - msgid "Marker levels are not reported for this printer." - msgstr "" - --#: ../system-config-printer.py:2763 -+#: ../system-config-printer.py:2773 - #, fuzzy - msgid "Cannot Rename" - msgstr "মুক্ত করা হবে (_R)" - --#: ../system-config-printer.py:2764 -+#: ../system-config-printer.py:2774 - msgid "There are queued jobs." - msgstr "" - --#: ../system-config-printer.py:2822 -+#: ../system-config-printer.py:2840 - #, fuzzy - msgid "renaming printer" - msgstr "প্রিন্টার কনফিগার করুন" - - #. for classes make sure all members - #. will get added --#: ../system-config-printer.py:2907 -+#: ../system-config-printer.py:2925 - #, fuzzy - msgid "copying printer" - msgstr "প্রিন্টার কনফিগার করুন" - --#: ../system-config-printer.py:2971 -+#: ../system-config-printer.py:2989 - #, fuzzy, python-format - msgid "Really delete class '%s'?" - msgstr "%s বিভাগ নিশ্চিতরূপে মুছে ফেলা হবে কি?" - --#: ../system-config-printer.py:2973 -+#: ../system-config-printer.py:2991 - #, fuzzy, python-format - msgid "Really delete printer '%s'?" - msgstr "%s প্রিন্টার নিশ্চিতরূপে মুছে ফেলা হবে কি?" - --#: ../system-config-printer.py:2975 -+#: ../system-config-printer.py:2993 - #, fuzzy - msgid "Really delete selected destinations?" - msgstr "%s প্রিন্টার নিশ্চিতরূপে মুছে ফেলা হবে কি?" - --#: ../system-config-printer.py:2996 -+#: ../system-config-printer.py:3014 - #, fuzzy, python-format - msgid "deleting printer %s" - msgstr "প্রিন্টার কনফিগার করুন" - --#: ../system-config-printer.py:3070 -+#: ../system-config-printer.py:3088 - msgid "Publish Shared Printers" - msgstr "" - --#: ../system-config-printer.py:3071 -+#: ../system-config-printer.py:3089 - msgid "" - "Shared printers are not available to other people unless the 'Publish shared " - "printers' option is enabled in the server settings." - msgstr "" - --#: ../system-config-printer.py:3264 -+#: ../system-config-printer.py:3282 - #, fuzzy - msgid "modifying server settings" - msgstr "সার্ভার সংক্রান্ত মৌলিক বৈশিষ্ট্য" -@@ -1118,105 +1127,105 @@ msgstr "সার্ভার সং - #. be unblocked. Unfortunately, this is not yet possible - #. (bug #440469). However, we can display a dialog to suggest - #. that now might be a good time to review the firewall settings. --#: ../system-config-printer.py:3289 -+#: ../system-config-printer.py:3307 - msgid "Review Firewall" - msgstr "" - --#: ../system-config-printer.py:3290 -+#: ../system-config-printer.py:3308 - msgid "" - "You may need to adjust the firewall to allow network printing to this " - "computer." - msgstr "" - --#: ../system-config-printer.py:3623 -+#: ../system-config-printer.py:3638 - msgid "Browsing not available (pysmbc not installed)" - msgstr "" - - #. SMB list columns --#: ../system-config-printer.py:3629 -+#: ../system-config-printer.py:3644 - msgid "Share" - msgstr "শেয়ার করুন" - --#: ../system-config-printer.py:3635 -+#: ../system-config-printer.py:3650 - msgid "Comment" - msgstr "বক্তব্য" - - #. IPP list columns --#: ../system-config-printer.py:3654 -+#: ../system-config-printer.py:3669 - msgid "Queue" - msgstr "" - --#: ../system-config-printer.py:3668 -+#: ../system-config-printer.py:3683 - #, fuzzy - msgid "" - "PostScript Printer Description files (*.ppd, *.PPD, *.ppd.gz, *.PPD.gz, *." - "PPD.GZ)" - msgstr "PostScript Printer Description (*.ppd[.gz])" - --#: ../system-config-printer.py:3677 -+#: ../system-config-printer.py:3692 - msgid "All files (*)" - msgstr "" - --#: ../system-config-printer.py:3713 ../system-config-printer.py:5970 --#: ../system-config-printer.py:6008 ../applet.py:124 -+#: ../system-config-printer.py:3728 ../system-config-printer.py:5918 -+#: ../system-config-printer.py:5956 ../applet.py:124 - #, fuzzy - msgid "Search" - msgstr "প্রিন্টারের নতুন নাম" - --#: ../system-config-printer.py:3736 ../system-config-printer.py:3760 --#: ../glade/NewPrinterWindow.glade.h:74 -+#: ../system-config-printer.py:3751 ../system-config-printer.py:3775 -+#: ../glade/NewPrinterWindow.glade.h:73 - msgid "New Printer" - msgstr "নতুন প্রিন্টার" - --#: ../system-config-printer.py:3747 -+#: ../system-config-printer.py:3762 - msgid "New Class" - msgstr "নতুন শ্রেণী" - --#: ../system-config-printer.py:3752 -+#: ../system-config-printer.py:3767 - msgid "Change Device URI" - msgstr "ডিভাইস URI পরিবর্তন করুন" - --#: ../system-config-printer.py:3758 -+#: ../system-config-printer.py:3773 - msgid "Change Driver" - msgstr "ড্রাইভার পরিবর্তন করুন" - --#: ../system-config-printer.py:3927 ../system-config-printer.py:3993 --#: ../system-config-printer.py:4289 ../system-config-printer.py:4487 --#: ../system-config-printer.py:5772 ../system-config-printer.py:5995 -+#: ../system-config-printer.py:3942 ../system-config-printer.py:4008 -+#: ../system-config-printer.py:4304 ../system-config-printer.py:4502 -+#: ../system-config-printer.py:5762 ../system-config-printer.py:5943 - msgid "Searching" - msgstr "" - --#: ../system-config-printer.py:3928 -+#: ../system-config-printer.py:3943 - #, fuzzy - msgid "Searching for downloadable drivers" - msgstr "প্রিন্টারের নতুন নাম" - --#: ../system-config-printer.py:3994 ../system-config-printer.py:4290 -+#: ../system-config-printer.py:4009 ../system-config-printer.py:4305 - msgid "Searching for drivers" - msgstr "" - --#: ../system-config-printer.py:4488 ../system-config-printer.py:5773 -+#: ../system-config-printer.py:4503 ../system-config-printer.py:5763 - #, fuzzy - msgid "Searching for printers" - msgstr "প্রিন্টারের নতুন নাম" - --#: ../system-config-printer.py:4497 -+#: ../system-config-printer.py:4512 - #, fuzzy - msgid "fetching device list" - msgstr "সার্ভার সংক্রান্ত মৌলিক বৈশিষ্ট্য" - - #. Tell the user why he needs the plugin --#: ../system-config-printer.py:4579 -+#: ../system-config-printer.py:4594 - msgid "For this printer a proprietary driver plugin from HP is available.\n" - msgstr "" - --#: ../system-config-printer.py:4582 -+#: ../system-config-printer.py:4597 - msgid "" - "The installation of the plugin is required for your printer to work.\n" - "\n" - msgstr "" - --#: ../system-config-printer.py:4585 -+#: ../system-config-printer.py:4600 - msgid "" - "Installing the plugin is optional, it completes or enhances the " - "functionality\n" -@@ -1224,294 +1233,286 @@ msgid "" - "\n" - msgstr "" - --#: ../system-config-printer.py:4589 -+#: ../system-config-printer.py:4604 - msgid "The plugin provides the following features:\n" - msgstr "" - --#: ../system-config-printer.py:4592 -+#: ../system-config-printer.py:4607 - msgid " - Printing support\n" - msgstr "" - --#: ../system-config-printer.py:4595 -+#: ../system-config-printer.py:4610 - msgid " - Faster printing\n" - msgstr "" - --#: ../system-config-printer.py:4598 -+#: ../system-config-printer.py:4613 - msgid " - Better printout quality\n" - msgstr "" - --#: ../system-config-printer.py:4601 -+#: ../system-config-printer.py:4616 - msgid " - Extra printing features\n" - msgstr "" - --#: ../system-config-printer.py:4604 -+#: ../system-config-printer.py:4619 - msgid " - Scanning support\n" - msgstr "" - --#: ../system-config-printer.py:4607 -+#: ../system-config-printer.py:4622 - msgid " - Faster scanning\n" - msgstr "" - --#: ../system-config-printer.py:4610 -+#: ../system-config-printer.py:4625 - msgid " - Better scanning image quality\n" - msgstr "" - --#: ../system-config-printer.py:4613 -+#: ../system-config-printer.py:4628 - msgid " - Faxing support\n" - msgstr "" - --#: ../system-config-printer.py:4616 -+#: ../system-config-printer.py:4631 - msgid " - Extra fax features\n" - msgstr "" - --#: ../system-config-printer.py:4619 -+#: ../system-config-printer.py:4634 - msgid " - Better Input/Output support\n" - msgstr "" - --#: ../system-config-printer.py:4622 -+#: ../system-config-printer.py:4637 - msgid " - Extra user interface features\n" - msgstr "" - --#: ../system-config-printer.py:4625 -+#: ../system-config-printer.py:4640 - msgid " - Other extra features\n" - msgstr "" - --#: ../system-config-printer.py:4630 -+#: ../system-config-printer.py:4645 - #, fuzzy - msgid "Install plugin" - msgstr "ইনস্টল করার যোগ্য বিকল্প" - --#: ../system-config-printer.py:4631 -+#: ../system-config-printer.py:4646 - #, fuzzy - msgid "Do not set up printer" - msgstr "প্রিন্টার কপি করুন" - --#: ../system-config-printer.py:4632 -+#: ../system-config-printer.py:4647 - msgid "Set up without plugin" - msgstr "" - --#: ../system-config-printer.py:4634 ../troubleshoot/PrintTestPage.py:118 -+#: ../system-config-printer.py:4649 ../troubleshoot/PrintTestPage.py:118 - msgid "Yes" - msgstr "" - --#: ../system-config-printer.py:4635 ../troubleshoot/PrintTestPage.py:119 -+#: ../system-config-printer.py:4650 ../troubleshoot/PrintTestPage.py:119 - msgid "No" - msgstr "" - --#: ../system-config-printer.py:4809 ../system-config-printer.py:4813 -+#: ../system-config-printer.py:4824 ../system-config-printer.py:4828 - msgid " (Current)" - msgstr " (বর্তমান)" - --#: ../system-config-printer.py:4845 --msgid "HP Printer (HPLIP)" --msgstr "" -- --#: ../system-config-printer.py:4886 -+#: ../system-config-printer.py:4881 - msgid "Other" - msgstr "অন্যান্য" - - #. device-info - #. PhysicalDevice obj - #. Separator? --#: ../system-config-printer.py:4902 -+#: ../system-config-printer.py:4897 - #, fuzzy - msgid "Network Printer" - msgstr "নতুন প্রিন্টার" - --#: ../system-config-printer.py:4906 -+#: ../system-config-printer.py:4901 - #, fuzzy - msgid "Find Network Printer" - msgstr "নতুন প্রিন্টার" - --#: ../system-config-printer.py:4979 ../system-config-printer.py:5376 -+#: ../system-config-printer.py:4974 ../system-config-printer.py:5371 - #, fuzzy - msgid "Scanning..." - msgstr "মাপ পরিবর্তন:" - --#: ../system-config-printer.py:5034 ../system-config-printer.py:5798 -+#: ../system-config-printer.py:5029 - #, fuzzy - msgid "No Print Shares" - msgstr "নতুন প্রিন্টার" - --#: ../system-config-printer.py:5035 -+#: ../system-config-printer.py:5030 - msgid "" - "There were no print shares found. Please check that the Samba service is " - "marked as trusted in your firewall configuration." - msgstr "" - --#: ../system-config-printer.py:5296 ../system-config-printer.py:5357 -+#: ../system-config-printer.py:5291 ../system-config-printer.py:5352 - msgid "Print Share Verified" - msgstr "" - --#: ../system-config-printer.py:5297 ../system-config-printer.py:5358 -+#: ../system-config-printer.py:5292 ../system-config-printer.py:5353 - msgid "This print share is accessible." - msgstr "চিহ্নিত প্রিন্ট শেয়ারটি ব্যবহার করা যাবে।" - --#: ../system-config-printer.py:5302 ../system-config-printer.py:5362 -+#: ../system-config-printer.py:5297 ../system-config-printer.py:5357 - msgid "This print share is not accessible." - msgstr "চিহ্নিত প্রিন্ট শেয়ারটি ব্যবহারযোগ্য নয়।" - --#: ../system-config-printer.py:5305 -+#: ../system-config-printer.py:5300 - #, fuzzy - msgid "Print Share Inaccessible" - msgstr "চিহ্নিত প্রিন্ট শেয়ারটি ব্যবহার করা যাবে।" - --#: ../system-config-printer.py:5361 -+#: ../system-config-printer.py:5356 - msgid "Inaccessible" - msgstr "ব্যবহারযোগ্য নয়" - --#: ../system-config-printer.py:5419 -+#: ../system-config-printer.py:5414 - #, fuzzy, python-format - msgid "It is not possible to obtain a list of queues from '%s'." - msgstr "CUPS সার্ভারের সাথে সংযোগ করতে সমস্যা হয়েছে: '%s'।" - --#: ../system-config-printer.py:5421 -+#: ../system-config-printer.py:5416 - msgid "" - "Obtaining a list of queues is a CUPS extension to IPP. Network printers do " - "not support it." - msgstr "" - --#: ../system-config-printer.py:5424 -+#: ../system-config-printer.py:5419 - msgid "No queues" - msgstr "" - --#: ../system-config-printer.py:5425 -+#: ../system-config-printer.py:5420 - msgid "There are no queues available." - msgstr "" - --#: ../system-config-printer.py:5516 -+#: ../system-config-printer.py:5511 - msgid "Parallel Port" - msgstr "" - --#: ../system-config-printer.py:5518 -+#: ../system-config-printer.py:5513 - #, fuzzy - msgid "Serial Port" - msgstr "সিরিয়াল" - --#: ../system-config-printer.py:5520 -+#: ../system-config-printer.py:5515 - #, fuzzy - msgid "USB" - msgstr "SMB" - --#: ../system-config-printer.py:5522 ../system-config-printer.py:5525 -+#: ../system-config-printer.py:5517 ../system-config-printer.py:5520 - msgid "HP Linux Imaging and Printing (HPLIP)" - msgstr "" - --#: ../system-config-printer.py:5527 -+#: ../system-config-printer.py:5522 - #, fuzzy - msgid "Hardware Abstraction Layer (HAL)" - msgstr "হার্ডওয়্যার অ্যাবস্ট্র্যাকশান লেয়ার (HAL) দ্বারা সনাক্ত স্থানীয় প্রিন্টার।" - --#: ../system-config-printer.py:5529 -+#: ../system-config-printer.py:5524 - msgid "AppSocket/HP JetDirect" - msgstr "" - --#: ../system-config-printer.py:5538 -+#: ../system-config-printer.py:5533 - #, python-format - msgid "LPD/LPR queue '%s'" - msgstr "" - --#: ../system-config-printer.py:5540 -+#: ../system-config-printer.py:5535 - #, fuzzy - msgid "LPD/LPR queue" - msgstr "LPD" - --#: ../system-config-printer.py:5543 -+#: ../system-config-printer.py:5538 - msgid "Windows Printer via SAMBA" - msgstr "" - --#: ../system-config-printer.py:5545 ../glade/NewPrinterWindow.glade.h:66 -+#: ../system-config-printer.py:5540 ../glade/NewPrinterWindow.glade.h:65 - msgid "IPP" - msgstr "IPP" - --#: ../system-config-printer.py:5547 -+#: ../system-config-printer.py:5542 - msgid "HTTP" - msgstr "" - --#: ../system-config-printer.py:5632 -+#: ../system-config-printer.py:5624 - msgid "A printer connected to the parallel port." - msgstr "প্যারালাল পোর্টে সংযুক্ত প্রিন্টার।" - --#: ../system-config-printer.py:5634 -+#: ../system-config-printer.py:5626 - msgid "A printer connected to a USB port." - msgstr "USB পোর্টে সংযুক্ত প্রিন্টার।" - --#: ../system-config-printer.py:5636 -+#: ../system-config-printer.py:5628 - msgid "" - "HPLIP software driving a printer, or the printer function of a multi-" - "function device." - msgstr "প্রিন্টার অথবা একাধিক কর্মের ডিভাইসে ফ্যাক্স কর্ম চালনাকারী HPLIP সফ্টওয়্যার।" - --#: ../system-config-printer.py:5639 -+#: ../system-config-printer.py:5631 - msgid "" - "HPLIP software driving a fax machine, or the fax function of a multi-" - "function device." - msgstr "ফ্যাক্স অথবা একাধিক কর্মের ডিভাইসে ফ্যাক্স কর্ম চালনাকারী HPLIP সফ্টওয়্যার।" - --#: ../system-config-printer.py:5642 -+#: ../system-config-printer.py:5634 - msgid "Local printer detected by the Hardware Abstraction Layer (HAL)." - msgstr "হার্ডওয়্যার অ্যাবস্ট্র্যাকশান লেয়ার (HAL) দ্বারা সনাক্ত স্থানীয় প্রিন্টার।" - --#: ../system-config-printer.py:5799 --msgid "HPLIP cannot find the device." --msgstr "" -- --#: ../system-config-printer.py:5881 -+#: ../system-config-printer.py:5831 - msgid "No printer was found at that address." - msgstr "" - --#: ../system-config-printer.py:6020 -+#: ../system-config-printer.py:5968 - #, fuzzy - msgid "-- Select from search results --" - msgstr "ডাটাবেস থেকে প্রিন্টার নির্বাচন করুন" - --#: ../system-config-printer.py:6022 -+#: ../system-config-printer.py:5970 - msgid "-- No matches found --" - msgstr "" - --#: ../system-config-printer.py:6203 -+#: ../system-config-printer.py:6151 - msgid " (recommended)" - msgstr " (বাঞ্ছনীয়)" - --#: ../system-config-printer.py:6217 -+#: ../system-config-printer.py:6165 - msgid "This PPD is generated by foomatic." - msgstr "চিহ্নিত PPD-টি foomatic'র সাহায্যে নির্মিত হয়েছে।" - --#: ../system-config-printer.py:6241 -+#: ../system-config-printer.py:6189 - #, fuzzy - msgid "OpenPrinting" - msgstr "প্রিন্ট ব্যবস্থা" - --#: ../system-config-printer.py:6252 -+#: ../system-config-printer.py:6200 - msgid "Distributable" - msgstr "" - --#: ../system-config-printer.py:6293 -+#: ../system-config-printer.py:6241 - #, fuzzy - msgid ", " - msgstr " " - --#: ../system-config-printer.py:6298 -+#: ../system-config-printer.py:6246 - #, python-format - msgid "" - "\n" - "(%s)" - msgstr "" - --#: ../system-config-printer.py:6303 -+#: ../system-config-printer.py:6251 - msgid "No support contacts known" - msgstr "" - --#: ../system-config-printer.py:6307 ../system-config-printer.py:6320 -+#: ../system-config-printer.py:6255 ../system-config-printer.py:6268 - msgid "Not specified." - msgstr "" - - #. Foomatic database problem of some sort. --#: ../system-config-printer.py:6360 -+#: ../system-config-printer.py:6308 - msgid "Database error" - msgstr "ডাটাবেস সংক্রান্ত ত্রুটি" - --#: ../system-config-printer.py:6361 -+#: ../system-config-printer.py:6309 - #, python-format - msgid "The '%s' driver cannot be used with printer '%s %s'." - msgstr "'%s' ড্রাইভারটি '%s %s' প্রিন্টারের সাথে ব্যবহার করা সম্ভব নয়।" -@@ -1519,65 +1520,65 @@ msgstr "'%s' ড্রাইভারট - #. This printer references some XML that is not - #. installed by default. Point the user at the - #. package they need to install. --#: ../system-config-printer.py:6371 -+#: ../system-config-printer.py:6319 - #, python-format - msgid "You will need to install the '%s' package in order to use this driver." - msgstr "এই ড্রাইভার ব্যবহারের জন্য '%s' প্যাকেজটি ইনস্টল করা আবশ্যক।" - - #. This error came from trying to open the PPD file. --#: ../system-config-printer.py:6378 -+#: ../system-config-printer.py:6326 - msgid "PPD error" - msgstr "PPD সংক্রান্ত ত্রুটি" - --#: ../system-config-printer.py:6380 -+#: ../system-config-printer.py:6328 - msgid "Failed to read PPD file. Possible reason follows:" - msgstr "PPD ফঅইল পড়তে ব্যর্থ। সম্ভাব্য সমস্যাগুলি হল:" - - #. Failed to get PPD downloaded from OpenPrinting XXX --#: ../system-config-printer.py:6397 -+#: ../system-config-printer.py:6345 - msgid "Downloadable drivers" - msgstr "" - --#: ../system-config-printer.py:6398 -+#: ../system-config-printer.py:6346 - msgid "Failed to download PPD." - msgstr "" - --#: ../system-config-printer.py:6405 -+#: ../system-config-printer.py:6353 - #, fuzzy - msgid "fetching PPD" - msgstr "PPD পরিবর্তন করুন" - --#: ../system-config-printer.py:6434 ../system-config-printer.py:6472 -+#: ../system-config-printer.py:6382 ../system-config-printer.py:6420 - #, fuzzy - msgid "No Installable Options" - msgstr "ইনস্টল করার যোগ্য বিকল্প" - --#: ../system-config-printer.py:6520 -+#: ../system-config-printer.py:6468 - #, fuzzy, python-format - msgid "adding printer %s" - msgstr "প্রিন্টার কনফিগার করুন" - --#: ../system-config-printer.py:6669 -+#: ../system-config-printer.py:6617 - msgid "Would you like to print a test page?" - msgstr "" - --#: ../system-config-printer.py:6722 -+#: ../system-config-printer.py:6670 - #, fuzzy - msgid "Install driver" - msgstr "অনুপস্থিত ড্রাইভার" - --#: ../system-config-printer.py:6723 ../troubleshoot/CheckPPDSanity.py:131 -+#: ../system-config-printer.py:6671 ../troubleshoot/CheckPPDSanity.py:131 - #, fuzzy, python-format - msgid "Printer '%s' requires the %s package but it is not currently installed." - msgstr "" - "'%s' প্রিন্টারের জন্য %s প্যাকেজের উপস্থিতি আবশ্যক হলেও এটি বর্তমানে ইনস্টল করা " - "নেই। অনুগ্রহ করে প্রিন্টার ব্যবহারের পূর্বে এটি ইনস্টল করুন।" - --#: ../system-config-printer.py:6739 -+#: ../system-config-printer.py:6687 - msgid "Missing driver" - msgstr "অনুপস্থিত ড্রাইভার" - --#: ../system-config-printer.py:6740 -+#: ../system-config-printer.py:6688 - #, python-format - msgid "" - "Printer '%s' requires the '%s' program but it is not currently installed. " -@@ -1707,133 +1708,128 @@ msgstr "ডিভাইস URI উল্ - - #: ../glade/NewPrinterWindow.glade.h:5 - #, fuzzy --msgid "HP Printer (HPLIP) via network" --msgstr "প্রিন্টারের নাম" -- --#: ../glade/NewPrinterWindow.glade.h:6 --#, fuzzy - msgid "IPP Printer" - msgstr "প্রিন্টারের নাম" - --#: ../glade/NewPrinterWindow.glade.h:7 -+#: ../glade/NewPrinterWindow.glade.h:6 - #, fuzzy - msgid "License Terms" - msgstr "প্রিন্টারের নাম" - --#: ../glade/NewPrinterWindow.glade.h:8 -+#: ../glade/NewPrinterWindow.glade.h:7 - msgid "Location of the LPD network printer" - msgstr "LPD নেটওয়ার্ক প্রিন্টারের অবস্থান" - --#: ../glade/NewPrinterWindow.glade.h:9 -+#: ../glade/NewPrinterWindow.glade.h:8 - msgid "Location of the network printer" - msgstr "নেটওয়ার্ক প্রিন্টারের অবস্থান" - --#: ../glade/NewPrinterWindow.glade.h:10 -+#: ../glade/NewPrinterWindow.glade.h:9 - msgid "Location (optional)" - msgstr "অবস্থান (ঐচ্ছিক)" - --#: ../glade/NewPrinterWindow.glade.h:11 -+#: ../glade/NewPrinterWindow.glade.h:10 - #, fuzzy - msgid "Network Printer" - msgstr "নতুন প্রিন্টার" - --#: ../glade/NewPrinterWindow.glade.h:12 -+#: ../glade/NewPrinterWindow.glade.h:11 - #, fuzzy - msgid "Note" - msgstr "অবস্থা" - --#: ../glade/NewPrinterWindow.glade.h:13 -+#: ../glade/NewPrinterWindow.glade.h:12 - #, fuzzy - msgid "Output Quality" - msgstr "অবস্থা" - --#: ../glade/NewPrinterWindow.glade.h:14 -+#: ../glade/NewPrinterWindow.glade.h:13 - msgid "Printer Name" - msgstr "প্রিন্টারের নাম" - --#: ../glade/NewPrinterWindow.glade.h:15 -+#: ../glade/NewPrinterWindow.glade.h:14 - #, fuzzy - msgid "SMB Printer" - msgstr "প্রিন্টারের নাম" - --#: ../glade/NewPrinterWindow.glade.h:16 -+#: ../glade/NewPrinterWindow.glade.h:15 - #, fuzzy - msgid "Select Driver" - msgstr "ডিফল্ট প্রিন্টার" - --#: ../glade/NewPrinterWindow.glade.h:17 -+#: ../glade/NewPrinterWindow.glade.h:16 - msgid "Settings of the serial port" - msgstr "সিরিয়াল পোর্টের বৈশিষ্ট্য" - --#: ../glade/NewPrinterWindow.glade.h:18 -+#: ../glade/NewPrinterWindow.glade.h:17 - msgid "smb://[workgroup/]server[:port]/printer" - msgstr "smb://[workgroup/]server[:port]/printer" - --#: ../glade/NewPrinterWindow.glade.h:19 -+#: ../glade/NewPrinterWindow.glade.h:18 - #, fuzzy - msgid "Choose Class Members" - msgstr "" - "পাসওয়ার্ড আবশ্যক\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:20 -+#: ../glade/NewPrinterWindow.glade.h:19 - #, fuzzy - msgid "Choose Driver" - msgstr "" - "পাসওয়ার্ড আবশ্যক\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:21 -+#: ../glade/NewPrinterWindow.glade.h:20 - #, fuzzy - msgid "Describe Printer" - msgstr "" - "পাসওয়ার্ড আবশ্যক\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:22 -+#: ../glade/NewPrinterWindow.glade.h:21 - #, fuzzy - msgid "Existing Settings" - msgstr "" - "পাসওয়ার্ড আবশ্যক\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:23 -+#: ../glade/NewPrinterWindow.glade.h:22 - #, fuzzy - msgid "Installable Options" - msgstr "" - "পাসওয়ার্ড আবশ্যক\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:24 -+#: ../glade/NewPrinterWindow.glade.h:23 - #, fuzzy - msgid "Select Device" - msgstr "" - "পাসওয়ার্ড আবশ্যক\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:25 -+#: ../glade/NewPrinterWindow.glade.h:24 - msgid "Baud Rate" - msgstr "Baud Rate" - --#: ../glade/NewPrinterWindow.glade.h:26 -+#: ../glade/NewPrinterWindow.glade.h:25 - msgid "Browse..." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:27 -+#: ../glade/NewPrinterWindow.glade.h:26 - #, fuzzy - msgid "Comments..." - msgstr "বক্তব্য" - --#: ../glade/NewPrinterWindow.glade.h:28 -+#: ../glade/NewPrinterWindow.glade.h:27 - #, fuzzy - msgid "Connection" - msgstr "সংযোগ স্থাপন করা হচ্ছে" - --#: ../glade/NewPrinterWindow.glade.h:29 -+#: ../glade/NewPrinterWindow.glade.h:28 - msgid "Data Bits" - msgstr "ডাটা বিট" - --#: ../glade/NewPrinterWindow.glade.h:30 -+#: ../glade/NewPrinterWindow.glade.h:29 - msgid "" - "Default\n" - "1200\n" -@@ -1855,7 +1851,7 @@ msgstr "" - "৫৭৬০০\n" - "১১৫২০০" - --#: ../glade/NewPrinterWindow.glade.h:39 -+#: ../glade/NewPrinterWindow.glade.h:38 - msgid "" - "Default\n" - "8\n" -@@ -1865,7 +1861,7 @@ msgstr "" - "৮\n" - "৭" - --#: ../glade/NewPrinterWindow.glade.h:42 -+#: ../glade/NewPrinterWindow.glade.h:41 - msgid "" - "Default\n" - "None\n" -@@ -1877,7 +1873,7 @@ msgstr "" - "বেজোড়\n" - "জোড়" - --#: ../glade/NewPrinterWindow.glade.h:46 -+#: ../glade/NewPrinterWindow.glade.h:45 - msgid "" - "Default\n" - "None\n" -@@ -1891,120 +1887,120 @@ msgstr "" - "RTS/CTS (হার্ডওয়্যার)\n" - "DTR/DSR (হার্ডওয়্যার)" - --#: ../glade/NewPrinterWindow.glade.h:51 -+#: ../glade/NewPrinterWindow.glade.h:50 - #: ../glade/PrinterPropertiesDialog.glade.h:35 - msgid "Description:" - msgstr "বিবরণ:" - --#: ../glade/NewPrinterWindow.glade.h:52 ../troubleshoot/DeviceListed.py:40 -+#: ../glade/NewPrinterWindow.glade.h:51 ../troubleshoot/DeviceListed.py:40 - msgid "Device URI" - msgstr "ডিভাইস URI" - --#: ../glade/NewPrinterWindow.glade.h:53 -+#: ../glade/NewPrinterWindow.glade.h:52 - msgid "Device description." - msgstr "ডিভাইসের বিবরণ:" - --#: ../glade/NewPrinterWindow.glade.h:54 -+#: ../glade/NewPrinterWindow.glade.h:53 - msgid "DirectJet" - msgstr "DirectJet" - --#: ../glade/NewPrinterWindow.glade.h:56 -+#: ../glade/NewPrinterWindow.glade.h:55 - #, fuzzy - msgid "Driver details" - msgstr "ড্রাইভার" - --#: ../glade/NewPrinterWindow.glade.h:57 -+#: ../glade/NewPrinterWindow.glade.h:56 - msgid "Empty" - msgstr "ফাঁকা" - --#: ../glade/NewPrinterWindow.glade.h:58 -+#: ../glade/NewPrinterWindow.glade.h:57 - msgid "Find _Queue..." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:59 -+#: ../glade/NewPrinterWindow.glade.h:58 - msgid "Flow Control" - msgstr "স্রোত নিয়ন্ত্রণ" - --#: ../glade/NewPrinterWindow.glade.h:60 -+#: ../glade/NewPrinterWindow.glade.h:59 - msgid "" - "For the printer you have selected there are drivers available for download." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:61 -+#: ../glade/NewPrinterWindow.glade.h:60 - msgid "Free software" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:62 -+#: ../glade/NewPrinterWindow.glade.h:61 - msgid "Graphics:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:63 -+#: ../glade/NewPrinterWindow.glade.h:62 - #, fuzzy - msgid "Host:" - msgstr "হোস্ট-নেম" - --#: ../glade/NewPrinterWindow.glade.h:64 -+#: ../glade/NewPrinterWindow.glade.h:63 - msgid "Human-readable description such as \"HP LaserJet with Duplexer\"" - msgstr "সাধারণ রূপে পাঠযোগ্য বিবরণ যেমন \"HP LaserJet with Duplexer\"" - --#: ../glade/NewPrinterWindow.glade.h:65 -+#: ../glade/NewPrinterWindow.glade.h:64 - msgid "Human-readable location such as \"Lab 1\"" - msgstr "সাধারণ রূপে পাঠযোগ্য অবস্থানের নাম যেমন \"Lab 1\"" - --#: ../glade/NewPrinterWindow.glade.h:67 -+#: ../glade/NewPrinterWindow.glade.h:66 - msgid "LPD" - msgstr "LPD" - --#: ../glade/NewPrinterWindow.glade.h:68 -+#: ../glade/NewPrinterWindow.glade.h:67 - msgid "License:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:69 -+#: ../glade/NewPrinterWindow.glade.h:68 - #, fuzzy - msgid "Line art:" - msgstr "প্রিন্টারের অবস্থা:" - --#: ../glade/NewPrinterWindow.glade.h:70 -+#: ../glade/NewPrinterWindow.glade.h:69 - #, fuzzy - msgid "Local Driver" - msgstr "স্থানীয় প্রিন্টার" - --#: ../glade/NewPrinterWindow.glade.h:71 -+#: ../glade/NewPrinterWindow.glade.h:70 - #, fuzzy - msgid "Make and model:" - msgstr "ধরন ও মডেল:" - --#: ../glade/NewPrinterWindow.glade.h:72 -+#: ../glade/NewPrinterWindow.glade.h:71 - msgid "Manufacturer" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:73 -+#: ../glade/NewPrinterWindow.glade.h:72 - #, fuzzy - msgid "Network" - msgstr "নতুন প্রিন্টার" - --#: ../glade/NewPrinterWindow.glade.h:75 -+#: ../glade/NewPrinterWindow.glade.h:74 - msgid "No, I do not accept this license" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:76 -+#: ../glade/NewPrinterWindow.glade.h:75 - msgid "Parity" - msgstr "প্যারিটি" - --#: ../glade/NewPrinterWindow.glade.h:78 -+#: ../glade/NewPrinterWindow.glade.h:77 - msgid "Patented algorithms" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:79 -+#: ../glade/NewPrinterWindow.glade.h:78 - msgid "Photo:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:80 -+#: ../glade/NewPrinterWindow.glade.h:79 - #, fuzzy - msgid "Port number:" - msgstr "পোর্ট সংখ্যা" - --#: ../glade/NewPrinterWindow.glade.h:81 -+#: ../glade/NewPrinterWindow.glade.h:80 - #, fuzzy - msgid "" - "PostScript Printer Description (PPD) files can often be found on the driver " -@@ -2015,82 +2011,82 @@ msgstr "" - "ড্রাইভার ডিস্কের মধ্যে উপস্থিত থাকে। PostScript প্রিন্টারের ক্ষেত্রে সেগুলি " - "Windows® ড্রাইভারের অংশ।" - --#: ../glade/NewPrinterWindow.glade.h:82 -+#: ../glade/NewPrinterWindow.glade.h:81 - #, fuzzy - msgid "Printer model:" - msgstr "প্রিন্টারের নাম" - --#: ../glade/NewPrinterWindow.glade.h:83 -+#: ../glade/NewPrinterWindow.glade.h:82 - msgid "Probe" - msgstr "অনুসন্ধান" - --#: ../glade/NewPrinterWindow.glade.h:84 -+#: ../glade/NewPrinterWindow.glade.h:83 - #, fuzzy - msgid "Prompt user if authentication is required" - msgstr "অনুমোদন" - --#: ../glade/NewPrinterWindow.glade.h:85 -+#: ../glade/NewPrinterWindow.glade.h:84 - #, fuzzy - msgid "Provide PPD file" - msgstr "PPD ফাইল উপলব্ধ করুন" - --#: ../glade/NewPrinterWindow.glade.h:86 -+#: ../glade/NewPrinterWindow.glade.h:85 - msgid "Queue:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:87 -+#: ../glade/NewPrinterWindow.glade.h:86 - msgid "SCSI" - msgstr "SCSI" - --#: ../glade/NewPrinterWindow.glade.h:88 -+#: ../glade/NewPrinterWindow.glade.h:87 - msgid "SMB" - msgstr "SMB" - --#: ../glade/NewPrinterWindow.glade.h:89 -+#: ../glade/NewPrinterWindow.glade.h:88 - msgid "Search for a printer driver to download" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:90 -+#: ../glade/NewPrinterWindow.glade.h:89 - #, fuzzy - msgid "Searching..." - msgstr "মাপ পরিবর্তন:" - --#: ../glade/NewPrinterWindow.glade.h:91 -+#: ../glade/NewPrinterWindow.glade.h:90 - msgid "Select A File" - msgstr "একটি ফাইল নির্বাচন করুন" - --#: ../glade/NewPrinterWindow.glade.h:92 -+#: ../glade/NewPrinterWindow.glade.h:91 - #, fuzzy - msgid "Select printer from database" - msgstr "ডাটাবেস থেকে প্রিন্টার নির্বাচন করুন" - --#: ../glade/NewPrinterWindow.glade.h:93 -+#: ../glade/NewPrinterWindow.glade.h:92 - msgid "Serial" - msgstr "সিরিয়াল" - --#: ../glade/NewPrinterWindow.glade.h:94 -+#: ../glade/NewPrinterWindow.glade.h:93 - #, fuzzy - msgid "Set authentication details now" - msgstr "অনুমোদন" - --#: ../glade/NewPrinterWindow.glade.h:95 -+#: ../glade/NewPrinterWindow.glade.h:94 - msgid "Short name for this printer such as \"laserjet\"" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:96 -+#: ../glade/NewPrinterWindow.glade.h:95 - msgid "Supplier:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:97 -+#: ../glade/NewPrinterWindow.glade.h:96 - msgid "Support:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:98 -+#: ../glade/NewPrinterWindow.glade.h:97 - #, fuzzy - msgid "Text:" - msgstr "পুনরায় নির্ধারণ" - --#: ../glade/NewPrinterWindow.glade.h:99 -+#: ../glade/NewPrinterWindow.glade.h:98 - msgid "" - "The foomatic printer database contains various manufacturer provided " - "PostScript Printer Description (PPD) files and also can generate PPD files " -@@ -2104,20 +2100,20 @@ msgstr "" - "বিশেষ বৈশিষ্ট্যগুলি ব্যবহারের জন্য সাধারণত প্রিন্টার নির্মাতাদের দ্বারা উপলব্ধ ফাইলগুলি " - "তুলনামূলকভাবে অধিক সহায়ক।" - --#: ../glade/NewPrinterWindow.glade.h:100 -+#: ../glade/NewPrinterWindow.glade.h:99 - msgid "" - "These drivers do not come from your operating system supplier and will not " - "be covered by their commercial support. See the support and license terms " - "of the driver's supplier." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:101 -+#: ../glade/NewPrinterWindow.glade.h:100 - msgid "" - "This driver supports additional hardware that may be installed in the " - "printer." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:102 -+#: ../glade/NewPrinterWindow.glade.h:101 - msgid "" - "This is done by assuming that options with the same name do have the same " - "meaning. Settings of options that are not present in the new PPD will be " -@@ -2127,7 +2123,7 @@ msgstr "" - "অনুপস্থিত বিকল্পের বৈশিষ্ট্য মুছে যাবে এবং শুধুমাত্র নতুন PPD'র মধ্যে উপস্থিত বিকল্পগুলির " - "ডিফল্ট মান স্থাপন করা হবে।" - --#: ../glade/NewPrinterWindow.glade.h:103 -+#: ../glade/NewPrinterWindow.glade.h:102 - msgid "" - "This way all current option settings will be lost. The default settings of " - "the new PPD will be used. " -@@ -2135,43 +2131,43 @@ msgstr "" - "এর ফলে বর্তমানে উপস্থিত সমস্ত বিকল্পের বৈশিষ্ট্য মুছে যাবে। নতুন PPD'র ডিফল্ট বৈশিষ্ট্য " - "প্রয়োগ করা হবে। " - --#: ../glade/NewPrinterWindow.glade.h:104 -+#: ../glade/NewPrinterWindow.glade.h:103 - msgid "Try to copy the option settings over from the old PPD. " - msgstr "পুরোনো PPD থেকে বিকল্পের বৈশিষ্ট্য কপি করার প্রচেষ্টা করুন। " - --#: ../glade/NewPrinterWindow.glade.h:105 -+#: ../glade/NewPrinterWindow.glade.h:104 - msgid "URI:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:107 -+#: ../glade/NewPrinterWindow.glade.h:106 - msgid "Use the new PPD (Postscript Printer Description) as is." - msgstr "নতু PPD (Postscript Printer Description) মূল অবস্থায় ব্যবহার করুন।" - --#: ../glade/NewPrinterWindow.glade.h:109 -+#: ../glade/NewPrinterWindow.glade.h:108 - msgid "" - "With this choice no driver download will be performed. In the next steps a " - "locally installed driver will be selected." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:110 -+#: ../glade/NewPrinterWindow.glade.h:109 - #, fuzzy - msgid "Yes, I accept this license" - msgstr "কর্ম গ্রহণ করা হচ্ছে" - --#: ../glade/NewPrinterWindow.glade.h:111 -+#: ../glade/NewPrinterWindow.glade.h:110 - msgid "_Search" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:112 -+#: ../glade/NewPrinterWindow.glade.h:111 - msgid "_Verify..." - msgstr "পরীক্ষা করুন...(_V)" - --#: ../glade/NewPrinterWindow.glade.h:113 -+#: ../glade/NewPrinterWindow.glade.h:112 - #: ../glade/PrinterPropertiesDialog.glade.h:128 - msgid "move left" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:114 -+#: ../glade/NewPrinterWindow.glade.h:113 - #: ../glade/PrinterPropertiesDialog.glade.h:129 - #, fuzzy - msgid "move right" -@@ -3119,7 +3115,7 @@ msgstr "" - msgid "Remember to load paper of type '%s' into the printer first." - msgstr "" - --#: ../troubleshoot/PrintTestPage.py:399 -+#: ../troubleshoot/PrintTestPage.py:416 - msgid "Error submitting test page" - msgstr "" - -@@ -3319,6 +3315,10 @@ msgid "Select default printer" - msgstr "ডিফল্ট প্রিন্টার রূপে চিহ্নিত করা হবে" - - #, fuzzy -+#~ msgid "HP Printer (HPLIP) via network" -+#~ msgstr "প্রিন্টারের নাম" -+ -+#, fuzzy - #~ msgid "Not Found" - #~ msgstr "পাওয়া যায়নি" - -diff -up system-config-printer-1.1.5/po/bn.po.git-1.1.x system-config-printer-1.1.5/po/bn.po ---- system-config-printer-1.1.5/po/bn.po.git-1.1.x 2009-03-03 22:21:46.000000000 +0000 -+++ system-config-printer-1.1.5/po/bn.po 2009-03-10 17:43:31.000000000 +0000 -@@ -7,7 +7,7 @@ msgid "" - msgstr "" - "Project-Id-Version: Printconf\n" - "Report-Msgid-Bugs-To: https://bugzilla.redhat.com/bugzilla\n" --"POT-Creation-Date: 2009-03-02 23:22+0000\n" -+"POT-Creation-Date: 2009-03-10 16:51+0000\n" - "PO-Revision-Date: 2004-10-12 19:29+0530\n" - "Last-Translator: Runa Bhattacharjee \n" - "Language-Team: bangla \n" -@@ -56,13 +56,13 @@ msgstr "" - msgid "Enter IP address" - msgstr "সার্ভারের হোস্টেরনাম অথবা IP অ্যাড্রেস:" - --#: ../authconn.py:35 ../glade/NewPrinterWindow.glade.h:108 -+#: ../authconn.py:35 ../glade/NewPrinterWindow.glade.h:107 - #, fuzzy - msgid "Username:" - msgstr "ব্যবহারকারীর নাম:" - - # Advanced = অগ্রসর --#: ../authconn.py:36 ../glade/NewPrinterWindow.glade.h:77 -+#: ../authconn.py:36 ../glade/NewPrinterWindow.glade.h:76 - msgid "Password:" - msgstr "পাসওয়ার্ড:" - -@@ -71,7 +71,7 @@ msgstr "পাসওয়ার্ড:" - msgid "Domain:" - msgstr "উপরের প্রান্ত (পয়েন্ট):" - --#: ../authconn.py:46 -+#: ../authconn.py:46 ../authconn.py:409 - #, fuzzy - msgid "Authentication" - msgstr "অনুমোদন" -@@ -80,46 +80,55 @@ msgstr "অনুমোদন" - msgid "Remember password" - msgstr "" - --#: ../authconn.py:211 ../authconn.py:232 -+#: ../authconn.py:208 -+#, python-format -+msgid "Unauthorized request (%s)" -+msgstr "" -+ -+#: ../authconn.py:209 -+msgid "You are not authorized to carry out therequested action." -+msgstr "" -+ -+#: ../authconn.py:212 ../authconn.py:233 - #, fuzzy - msgid "Operation canceled" - msgstr "অপশনের নাম" - --#: ../authconn.py:253 -+#: ../authconn.py:250 - #, fuzzy, python-format - msgid "CUPS server error (%s)" - msgstr "সার্ভার:" - --#: ../authconn.py:255 ../errordialogs.py:57 --#: ../troubleshoot/PrintTestPage.py:400 -+#: ../authconn.py:252 ../errordialogs.py:56 ../errordialogs.py:70 -+#, fuzzy -+msgid "CUPS server error" -+msgstr "সার্ভার:" -+ -+#: ../authconn.py:261 ../errordialogs.py:57 -+#: ../troubleshoot/PrintTestPage.py:417 - #, fuzzy, python-format - msgid "There was an error during the CUPS operation: '%s'." - msgstr "পরীক্ষামূলক পৃষ্ঠা প্রিন্ট করতে সমস্যা দেখা দিয়েছে।" - --#: ../authconn.py:258 -+#: ../authconn.py:264 - #, fuzzy - msgid "Retry" - msgstr "পরীক্ষা" - --#: ../authconn.py:379 ../authconn.py:381 ../errordialogs.py:65 ../pysmb.py:75 -+#: ../authconn.py:385 ../authconn.py:387 ../errordialogs.py:65 ../pysmb.py:75 - #: ../pysmb.py:77 - msgid "Not authorized" - msgstr "" - --#: ../authconn.py:382 ../pysmb.py:78 -+#: ../authconn.py:388 ../pysmb.py:78 - msgid "The password may be incorrect." - msgstr "" - --#: ../authconn.py:400 -+#: ../authconn.py:407 - #, fuzzy, python-format - msgid "Authentication (%s)" - msgstr "অনুমোদন" - --#: ../errordialogs.py:56 ../errordialogs.py:70 --#, fuzzy --msgid "CUPS server error" --msgstr "সার্ভার:" -- - #: ../errordialogs.py:66 - msgid "" - "The password may be incorrect, or the server may be configured to deny " -@@ -150,7 +159,7 @@ msgstr "পাসওয়ার্ড:" - msgid "Server error" - msgstr "প্রিন্টার: " - --#: ../errordialogs.py:82 ../system-config-printer.py:1219 -+#: ../errordialogs.py:82 ../system-config-printer.py:1223 - #, fuzzy - msgid "Not connected" - msgstr "স্থানীয়ভাবে-যুক্ত(_থ)" -@@ -173,7 +182,7 @@ msgstr "" - msgid "_New Group from Selection" - msgstr "" - --#: ../GroupsPane.py:98 ../system-config-printer.py:393 -+#: ../GroupsPane.py:98 ../system-config-printer.py:397 - #, fuzzy - msgid "_Rename" - msgstr "সরিয়ে ফেলো(_স)" -@@ -245,7 +254,7 @@ msgid "Document" - msgstr "বক্তব্য" - - #: ../jobviewer.py:212 ../my-default-printer.py:153 --#: ../system-config-printer.py:366 ../system-config-printer.py:1367 -+#: ../system-config-printer.py:370 ../system-config-printer.py:1371 - #: ../troubleshoot/PrintTestPage.py:84 - #, fuzzy - msgid "Printer" -@@ -284,8 +293,8 @@ msgstr "" - - #: ../jobviewer.py:386 ../jobviewer.py:451 ../jobviewer.py:452 - #: ../jobviewer.py:492 ../jobviewer.py:600 ../jobviewer.py:727 --#: ../jobviewer.py:1196 ../jobviewer.py:1222 ../system-config-printer.py:2546 --#: ../glade/NewPrinterWindow.glade.h:106 -+#: ../jobviewer.py:1196 ../jobviewer.py:1222 ../system-config-printer.py:2556 -+#: ../glade/NewPrinterWindow.glade.h:105 - #: ../troubleshoot/ChooseNetworkPrinter.py:101 - #: ../troubleshoot/ChooseNetworkPrinter.py:102 - #: ../troubleshoot/ChooseNetworkPrinter.py:105 -@@ -377,12 +386,12 @@ msgstr "" - msgid "Pending" - msgstr "প্রিন্ট করা হচ্ছে" - --#: ../jobviewer.py:591 ../system-config-printer.py:186 -+#: ../jobviewer.py:591 ../system-config-printer.py:190 - #: ../troubleshoot/PrintTestPage.py:43 - msgid "Processing" - msgstr "" - --#: ../jobviewer.py:592 ../system-config-printer.py:188 -+#: ../jobviewer.py:592 ../system-config-printer.py:192 - #: ../troubleshoot/PrintTestPage.py:44 - msgid "Stopped" - msgstr "" -@@ -506,8 +515,8 @@ msgstr "ডিফল্ট হিসে - msgid "_Set Default" - msgstr "ডিফল্ট(_ড)" - --#: ../my-default-printer.py:158 ../system-config-printer.py:423 --#: ../system-config-printer.py:3660 ../troubleshoot/ChooseNetworkPrinter.py:37 -+#: ../my-default-printer.py:158 ../system-config-printer.py:427 -+#: ../system-config-printer.py:3675 ../troubleshoot/ChooseNetworkPrinter.py:37 - #: ../troubleshoot/ChoosePrinter.py:38 - #, fuzzy - msgid "Location" -@@ -541,7 +550,7 @@ msgstr "এটি একটি প্র - msgid "Authenticated" - msgstr "অনুমোদন" - --#: ../ppdippstr.py:50 ../system-config-printer.py:6259 -+#: ../ppdippstr.py:50 ../system-config-printer.py:6207 - msgid "None" - msgstr "একটিও নয়" - -@@ -764,218 +773,218 @@ msgstr "" - msgid "1200 dpi, photo, black + color cartridge, photo paper" - msgstr "" - --#: ../system-config-printer.py:127 -+#: ../system-config-printer.py:131 - msgid "To do this, select System->Administration->Firewall from the main menu." - msgstr "" - --#: ../system-config-printer.py:185 -+#: ../system-config-printer.py:189 - msgid "Idle" - msgstr "" - --#: ../system-config-printer.py:187 -+#: ../system-config-printer.py:191 - msgid "Busy" - msgstr "" - --#: ../system-config-printer.py:372 ../system-config-printer.py:1373 -+#: ../system-config-printer.py:376 ../system-config-printer.py:1377 - #, fuzzy - msgid "Class" - msgstr "উপনামসমূহ" - --#: ../system-config-printer.py:399 -+#: ../system-config-printer.py:403 - #, fuzzy - msgid "Set As De_fault" - msgstr "ডিফল্ট(_ড)" - --#: ../system-config-printer.py:403 -+#: ../system-config-printer.py:407 - #, fuzzy - msgid "_Create class" - msgstr "জেটডায়রেক্ট প্রিন্টার" - --#: ../system-config-printer.py:405 -+#: ../system-config-printer.py:409 - #, fuzzy - msgid "View Print _Queue" - msgstr "অরূপান্তরিত (Raw) প্রিন্ট সারি (Queue)" - --#: ../system-config-printer.py:407 -+#: ../system-config-printer.py:411 - msgid "_Add to Group" - msgstr "" - --#: ../system-config-printer.py:409 -+#: ../system-config-printer.py:413 - msgid "Save Results as _Group" - msgstr "" - --#: ../system-config-printer.py:411 -+#: ../system-config-printer.py:415 - msgid "Save Filter as _Search Group" - msgstr "" - --#: ../system-config-printer.py:415 -+#: ../system-config-printer.py:419 - msgid "E_nabled" - msgstr "" - --#: ../system-config-printer.py:417 -+#: ../system-config-printer.py:421 - #, fuzzy - msgid "_Shared" - msgstr "শেয়ারকৃত" - --#: ../system-config-printer.py:421 ../troubleshoot/ChooseNetworkPrinter.py:35 -+#: ../system-config-printer.py:425 ../troubleshoot/ChooseNetworkPrinter.py:35 - #: ../troubleshoot/ChoosePrinter.py:36 ../troubleshoot/DeviceListed.py:36 - msgid "Name" - msgstr "নাম" - --#: ../system-config-printer.py:422 -+#: ../system-config-printer.py:426 - #, fuzzy - msgid "Description" - msgstr "বিবরণ" - --#: ../system-config-printer.py:424 -+#: ../system-config-printer.py:428 - msgid "Manufacturer / Model" - msgstr "" - - #. Printer state reasons list --#: ../system-config-printer.py:499 -+#: ../system-config-printer.py:503 - msgid "Message" - msgstr "" - --#: ../system-config-printer.py:534 -+#: ../system-config-printer.py:538 - msgid "Problems?" - msgstr "" - --#: ../system-config-printer.py:637 ../system-config-printer.py:639 -+#: ../system-config-printer.py:641 ../system-config-printer.py:643 - msgid "Members of this class" - msgstr "" - --#: ../system-config-printer.py:638 ../system-config-printer.py:640 -+#: ../system-config-printer.py:642 ../system-config-printer.py:644 - msgid "Others" - msgstr "" - --#: ../system-config-printer.py:641 -+#: ../system-config-printer.py:645 - #, fuzzy - msgid "Devices" - msgstr "ডিভাইস" - - # Error log = ভুল তালিকা --#: ../system-config-printer.py:642 -+#: ../system-config-printer.py:646 - #, fuzzy - msgid "Connections" - msgstr "বক্তব্য" - --#: ../system-config-printer.py:643 -+#: ../system-config-printer.py:647 - msgid "Makes" - msgstr "" - --#: ../system-config-printer.py:644 -+#: ../system-config-printer.py:648 - #, fuzzy - msgid "Models" - msgstr "মডেল" - --#: ../system-config-printer.py:645 -+#: ../system-config-printer.py:649 - #, fuzzy - msgid "Drivers" - msgstr "ড্রাইভার" - --#: ../system-config-printer.py:646 ../glade/NewPrinterWindow.glade.h:55 -+#: ../system-config-printer.py:650 ../glade/NewPrinterWindow.glade.h:54 - #, fuzzy - msgid "Downloadable Drivers" - msgstr "উপস্থিত ড্রাইভার:" - --#: ../system-config-printer.py:647 -+#: ../system-config-printer.py:651 - #, fuzzy - msgid "Users" - msgstr "ব্যবহারকারী" - --#: ../system-config-printer.py:682 -+#: ../system-config-printer.py:686 - msgid "Automatic rotation" - msgstr "" - --#: ../system-config-printer.py:989 -+#: ../system-config-printer.py:993 - #, fuzzy, python-format - msgid "Printer Properties - '%s' on %s" - msgstr "ফিল্টারের অপশন" - - #. The Conflict button was pressed. --#: ../system-config-printer.py:996 -+#: ../system-config-printer.py:1000 - msgid "" - "There are conflicting options.\n" - "Changes can only be applied after\n" - "these conflicts are resolved." - msgstr "" - --#: ../system-config-printer.py:1214 -+#: ../system-config-printer.py:1218 - #, python-format - msgid "Printer configuration - %s" - msgstr "প্রিন্টারের কনফিগারেশন - %s" - --#: ../system-config-printer.py:1217 -+#: ../system-config-printer.py:1221 - #, python-format - msgid "Connected to %s" - msgstr "" - - #. Update our copy of the printer's settings. --#: ../system-config-printer.py:1257 ../system-config-printer.py:2042 -+#: ../system-config-printer.py:1261 ../system-config-printer.py:2046 - msgid "obtaining queue details" - msgstr "" - --#: ../system-config-printer.py:1295 -+#: ../system-config-printer.py:1299 - msgid "Remove from Group" - msgstr "" - --#: ../system-config-printer.py:1361 -+#: ../system-config-printer.py:1365 - #, fuzzy - msgid "Network printer (discovered)" - msgstr "প্রিন্টার:" - --#: ../system-config-printer.py:1364 -+#: ../system-config-printer.py:1368 - msgid "Network class (discovered)" - msgstr "" - --#: ../system-config-printer.py:1370 ../system-config-printer.py:5524 --#: ../system-config-printer.py:5594 ../system-config-printer.py:5596 -+#: ../system-config-printer.py:1374 ../system-config-printer.py:5519 -+#: ../system-config-printer.py:5589 ../system-config-printer.py:5591 - msgid "Fax" - msgstr "" - --#: ../system-config-printer.py:1376 ../system-config-printer.py:1382 -+#: ../system-config-printer.py:1380 ../system-config-printer.py:1386 - #: ../troubleshoot/LocalOrRemote.py:30 - #, fuzzy - msgid "Network printer" - msgstr "প্রিন্টার:" - --#: ../system-config-printer.py:1379 -+#: ../system-config-printer.py:1383 - #, fuzzy - msgid "Network print share" - msgstr "প্রিন্টার:" - --#: ../system-config-printer.py:1508 ../glade/ConnectingDialog.glade.h:2 -+#: ../system-config-printer.py:1512 ../glade/ConnectingDialog.glade.h:2 - #, no-c-format, python-format - msgid "Opening connection to %s" - msgstr "" - --#: ../system-config-printer.py:1887 -+#: ../system-config-printer.py:1891 - msgid "Installable Options" - msgstr "" - --#: ../system-config-printer.py:1888 -+#: ../system-config-printer.py:1892 - #: ../glade/PrinterPropertiesDialog.glade.h:109 - #, fuzzy - msgid "Printer Options" - msgstr "ফিল্টারের অপশন" - --#: ../system-config-printer.py:1924 -+#: ../system-config-printer.py:1928 - #, python-format - msgid "modifying class %s" - msgstr "" - --#: ../system-config-printer.py:1926 ../system-config-printer.py:3019 --#: ../system-config-printer.py:3044 ../system-config-printer.py:6547 --#: ../system-config-printer.py:6559 ../system-config-printer.py:6581 -+#: ../system-config-printer.py:1930 ../system-config-printer.py:3037 -+#: ../system-config-printer.py:3062 ../system-config-printer.py:6495 -+#: ../system-config-printer.py:6507 ../system-config-printer.py:6529 - #, fuzzy, python-format - msgid "modifying printer %s" - msgstr "একটি নতুন প্রিন্টের সারি যোগ করো" - --#: ../system-config-printer.py:1941 -+#: ../system-config-printer.py:1945 - msgid "This will delete this class!" - msgstr "" - --#: ../system-config-printer.py:1942 -+#: ../system-config-printer.py:1946 - msgid "Proceed anyway?" - msgstr "" - -@@ -983,72 +992,72 @@ msgstr "" - #. but we have never fetched the server settings to see whether - #. the server is publishing shared printers. Fetch the settings - #. now so that we can update the "not published" label if necessary. --#: ../system-config-printer.py:2030 ../system-config-printer.py:3203 -+#: ../system-config-printer.py:2034 ../system-config-printer.py:3221 - #, fuzzy - msgid "fetching server settings" - msgstr "ড্রাইভারের অপশন" - --#: ../system-config-printer.py:2100 -+#: ../system-config-printer.py:2104 - #, fuzzy - msgid "Set Default Printer" - msgstr "এটি একটি প্রিন্টারের বিবরণ।" - --#: ../system-config-printer.py:2102 -+#: ../system-config-printer.py:2106 - #, fuzzy - msgid "Do you want to set this as the system-wide default printer?" - msgstr "" - "আপনি প্রিন্টারের কনফিগারেশনে যে পরিবর্তনগুলো করেছেন\n" - "সেগুলি কি সংরক্ষণ করতে ইচ্ছুক?" - --#: ../system-config-printer.py:2104 -+#: ../system-config-printer.py:2108 - #, fuzzy - msgid "Set as the _system-wide default printer" - msgstr "এটি একটি প্রিন্টারের বিবরণ।" - --#: ../system-config-printer.py:2106 -+#: ../system-config-printer.py:2110 - msgid "_Clear my personal default setting" - msgstr "" - --#: ../system-config-printer.py:2107 -+#: ../system-config-printer.py:2111 - #, fuzzy - msgid "Set as my _personal default printer" - msgstr "এটি একটি প্রিন্টারের বিবরণ।" - --#: ../system-config-printer.py:2112 -+#: ../system-config-printer.py:2116 - #, fuzzy - msgid "setting default printer" - msgstr "এটি একটি প্রিন্টারের বিবরণ।" - --#: ../system-config-printer.py:2169 -+#: ../system-config-printer.py:2173 - #, fuzzy - msgid "printing test page" - msgstr "প্রিন্টার সম্বন্ধীয় নোট:" - --#: ../system-config-printer.py:2182 ../system-config-printer.py:2217 --#: ../system-config-printer.py:5418 -+#: ../system-config-printer.py:2186 ../system-config-printer.py:2221 -+#: ../system-config-printer.py:5413 - msgid "Not possible" - msgstr "" - --#: ../system-config-printer.py:2183 ../system-config-printer.py:2218 -+#: ../system-config-printer.py:2187 ../system-config-printer.py:2222 - msgid "" - "The remote server did not accept the print job, most likely because the " - "printer is not shared." - msgstr "" - --#: ../system-config-printer.py:2195 ../system-config-printer.py:2210 -+#: ../system-config-printer.py:2199 ../system-config-printer.py:2214 - msgid "Submitted" - msgstr "" - --#: ../system-config-printer.py:2196 -+#: ../system-config-printer.py:2200 - #, python-format - msgid "Test page submitted as job %d" - msgstr "" - --#: ../system-config-printer.py:2203 -+#: ../system-config-printer.py:2207 - msgid "sending maintenance command" - msgstr "" - --#: ../system-config-printer.py:2211 -+#: ../system-config-printer.py:2215 - #, python-format - msgid "Maintenance command submitted as job %d" - msgstr "" -@@ -1097,11 +1106,11 @@ msgstr "" - #. The underlying cupsGetPPD2() function returned NULL without - #. setting an IPP error, so it'll be something like a failed - #. connection. --#: ../system-config-printer.py:2285 ../system-config-printer.py:2381 -+#: ../system-config-printer.py:2289 ../system-config-printer.py:2385 - msgid "Error" - msgstr "সমস্যা" - --#: ../system-config-printer.py:2286 -+#: ../system-config-printer.py:2290 - #, fuzzy - msgid "There was a problem connecting to the CUPS server." - msgstr "" -@@ -1109,68 +1118,68 @@ msgstr "" - "সমস্যা হয়েছে:\n" - "\n" - --#: ../system-config-printer.py:2382 -+#: ../system-config-printer.py:2386 - #, python-format - msgid "Option '%s' has value '%s' and cannot be edited." - msgstr "" - --#: ../system-config-printer.py:2466 -+#: ../system-config-printer.py:2476 - msgid "Marker levels are not reported for this printer." - msgstr "" - --#: ../system-config-printer.py:2763 -+#: ../system-config-printer.py:2773 - #, fuzzy - msgid "Cannot Rename" - msgstr "সরিয়ে ফেলো(_স)" - --#: ../system-config-printer.py:2764 -+#: ../system-config-printer.py:2774 - #, fuzzy - msgid "There are queued jobs." - msgstr "এই ড্রাইভারটির জন্য বর্তমানে কোন অপশন উপলব্ধ নেই।" - --#: ../system-config-printer.py:2822 -+#: ../system-config-printer.py:2840 - #, fuzzy - msgid "renaming printer" - msgstr "একটি নতুন প্রিন্টের সারি যোগ করো" - - #. for classes make sure all members - #. will get added --#: ../system-config-printer.py:2907 -+#: ../system-config-printer.py:2925 - #, fuzzy - msgid "copying printer" - msgstr "একটি নতুন প্রিন্টের সারি যোগ করো" - --#: ../system-config-printer.py:2971 -+#: ../system-config-printer.py:2989 - #, fuzzy, python-format - msgid "Really delete class '%s'?" - msgstr "\"%s\" কি সত্যি মুছে ফেলা হবে?" - --#: ../system-config-printer.py:2973 -+#: ../system-config-printer.py:2991 - #, fuzzy, python-format - msgid "Really delete printer '%s'?" - msgstr "\"%s\" কি সত্যি মুছে ফেলা হবে?" - --#: ../system-config-printer.py:2975 -+#: ../system-config-printer.py:2993 - #, fuzzy - msgid "Really delete selected destinations?" - msgstr "\"%s\" কি সত্যি মুছে ফেলা হবে?" - --#: ../system-config-printer.py:2996 -+#: ../system-config-printer.py:3014 - #, fuzzy, python-format - msgid "deleting printer %s" - msgstr "একটি নতুন প্রিন্টের সারি যোগ করো" - --#: ../system-config-printer.py:3070 -+#: ../system-config-printer.py:3088 - msgid "Publish Shared Printers" - msgstr "" - --#: ../system-config-printer.py:3071 -+#: ../system-config-printer.py:3089 - msgid "" - "Shared printers are not available to other people unless the 'Publish shared " - "printers' option is enabled in the server settings." - msgstr "" - --#: ../system-config-printer.py:3264 -+#: ../system-config-printer.py:3282 - #, fuzzy - msgid "modifying server settings" - msgstr "ড্রাইভারের অপশন" -@@ -1181,110 +1190,110 @@ msgstr "ড্রাইভারের - #. be unblocked. Unfortunately, this is not yet possible - #. (bug #440469). However, we can display a dialog to suggest - #. that now might be a good time to review the firewall settings. --#: ../system-config-printer.py:3289 -+#: ../system-config-printer.py:3307 - #, fuzzy - msgid "Review Firewall" - msgstr "ডিভাইসের ফাইল" - --#: ../system-config-printer.py:3290 -+#: ../system-config-printer.py:3308 - msgid "" - "You may need to adjust the firewall to allow network printing to this " - "computer." - msgstr "" - --#: ../system-config-printer.py:3623 -+#: ../system-config-printer.py:3638 - msgid "Browsing not available (pysmbc not installed)" - msgstr "" - - #. SMB list columns --#: ../system-config-printer.py:3629 -+#: ../system-config-printer.py:3644 - msgid "Share" - msgstr "শেয়ার" - - # Error log = ভুল তালিকা --#: ../system-config-printer.py:3635 -+#: ../system-config-printer.py:3650 - msgid "Comment" - msgstr "বক্তব্য" - - #. IPP list columns --#: ../system-config-printer.py:3654 -+#: ../system-config-printer.py:3669 - msgid "Queue" - msgstr "সারি" - --#: ../system-config-printer.py:3668 -+#: ../system-config-printer.py:3683 - msgid "" - "PostScript Printer Description files (*.ppd, *.PPD, *.ppd.gz, *.PPD.gz, *." - "PPD.GZ)" - msgstr "" - --#: ../system-config-printer.py:3677 -+#: ../system-config-printer.py:3692 - msgid "All files (*)" - msgstr "" - --#: ../system-config-printer.py:3713 ../system-config-printer.py:5970 --#: ../system-config-printer.py:6008 ../applet.py:124 -+#: ../system-config-printer.py:3728 ../system-config-printer.py:5918 -+#: ../system-config-printer.py:5956 ../applet.py:124 - #, fuzzy - msgid "Search" - msgstr "সতর্কবাণী" - --#: ../system-config-printer.py:3736 ../system-config-printer.py:3760 --#: ../glade/NewPrinterWindow.glade.h:74 -+#: ../system-config-printer.py:3751 ../system-config-printer.py:3775 -+#: ../glade/NewPrinterWindow.glade.h:73 - #, fuzzy - msgid "New Printer" - msgstr "প্রিন্টার:" - --#: ../system-config-printer.py:3747 -+#: ../system-config-printer.py:3762 - msgid "New Class" - msgstr "" - --#: ../system-config-printer.py:3752 -+#: ../system-config-printer.py:3767 - msgid "Change Device URI" - msgstr "" - --#: ../system-config-printer.py:3758 -+#: ../system-config-printer.py:3773 - #, fuzzy - msgid "Change Driver" - msgstr "ধরন পরিবর্তন করো" - --#: ../system-config-printer.py:3927 ../system-config-printer.py:3993 --#: ../system-config-printer.py:4289 ../system-config-printer.py:4487 --#: ../system-config-printer.py:5772 ../system-config-printer.py:5995 -+#: ../system-config-printer.py:3942 ../system-config-printer.py:4008 -+#: ../system-config-printer.py:4304 ../system-config-printer.py:4502 -+#: ../system-config-printer.py:5762 ../system-config-printer.py:5943 - #, fuzzy - msgid "Searching" - msgstr "সতর্কবাণী" - --#: ../system-config-printer.py:3928 -+#: ../system-config-printer.py:3943 - #, fuzzy - msgid "Searching for downloadable drivers" - msgstr "শেয়ার প্রক্রিয়ার বৈশিষ্ট্যাবলী" - --#: ../system-config-printer.py:3994 ../system-config-printer.py:4290 -+#: ../system-config-printer.py:4009 ../system-config-printer.py:4305 - #, fuzzy - msgid "Searching for drivers" - msgstr "শেয়ার প্রক্রিয়ার বৈশিষ্ট্যাবলী" - --#: ../system-config-printer.py:4488 ../system-config-printer.py:5773 -+#: ../system-config-printer.py:4503 ../system-config-printer.py:5763 - #, fuzzy - msgid "Searching for printers" - msgstr "শেয়ার প্রক্রিয়ার বৈশিষ্ট্যাবলী" - --#: ../system-config-printer.py:4497 -+#: ../system-config-printer.py:4512 - #, fuzzy - msgid "fetching device list" - msgstr "ড্রাইভারের অপশন" - - #. Tell the user why he needs the plugin --#: ../system-config-printer.py:4579 -+#: ../system-config-printer.py:4594 - msgid "For this printer a proprietary driver plugin from HP is available.\n" - msgstr "" - --#: ../system-config-printer.py:4582 -+#: ../system-config-printer.py:4597 - msgid "" - "The installation of the plugin is required for your printer to work.\n" - "\n" - msgstr "" - --#: ../system-config-printer.py:4585 -+#: ../system-config-printer.py:4600 - msgid "" - "Installing the plugin is optional, it completes or enhances the " - "functionality\n" -@@ -1292,141 +1301,137 @@ msgid "" - "\n" - msgstr "" - --#: ../system-config-printer.py:4589 -+#: ../system-config-printer.py:4604 - msgid "The plugin provides the following features:\n" - msgstr "" - --#: ../system-config-printer.py:4592 -+#: ../system-config-printer.py:4607 - msgid " - Printing support\n" - msgstr "" - --#: ../system-config-printer.py:4595 -+#: ../system-config-printer.py:4610 - msgid " - Faster printing\n" - msgstr "" - --#: ../system-config-printer.py:4598 -+#: ../system-config-printer.py:4613 - msgid " - Better printout quality\n" - msgstr "" - --#: ../system-config-printer.py:4601 -+#: ../system-config-printer.py:4616 - msgid " - Extra printing features\n" - msgstr "" - --#: ../system-config-printer.py:4604 -+#: ../system-config-printer.py:4619 - msgid " - Scanning support\n" - msgstr "" - --#: ../system-config-printer.py:4607 -+#: ../system-config-printer.py:4622 - msgid " - Faster scanning\n" - msgstr "" - --#: ../system-config-printer.py:4610 -+#: ../system-config-printer.py:4625 - msgid " - Better scanning image quality\n" - msgstr "" - --#: ../system-config-printer.py:4613 -+#: ../system-config-printer.py:4628 - msgid " - Faxing support\n" - msgstr "" - --#: ../system-config-printer.py:4616 -+#: ../system-config-printer.py:4631 - msgid " - Extra fax features\n" - msgstr "" - --#: ../system-config-printer.py:4619 -+#: ../system-config-printer.py:4634 - msgid " - Better Input/Output support\n" - msgstr "" - --#: ../system-config-printer.py:4622 -+#: ../system-config-printer.py:4637 - msgid " - Extra user interface features\n" - msgstr "" - --#: ../system-config-printer.py:4625 -+#: ../system-config-printer.py:4640 - msgid " - Other extra features\n" - msgstr "" - --#: ../system-config-printer.py:4630 -+#: ../system-config-printer.py:4645 - #, fuzzy - msgid "Install plugin" - msgstr "ফিল্টারের অপশন" - --#: ../system-config-printer.py:4631 -+#: ../system-config-printer.py:4646 - #, fuzzy - msgid "Do not set up printer" - msgstr "প্রিন্টার:" - --#: ../system-config-printer.py:4632 -+#: ../system-config-printer.py:4647 - msgid "Set up without plugin" - msgstr "" - --#: ../system-config-printer.py:4634 ../troubleshoot/PrintTestPage.py:118 -+#: ../system-config-printer.py:4649 ../troubleshoot/PrintTestPage.py:118 - msgid "Yes" - msgstr "হ্যাঁ" - --#: ../system-config-printer.py:4635 ../troubleshoot/PrintTestPage.py:119 -+#: ../system-config-printer.py:4650 ../troubleshoot/PrintTestPage.py:119 - msgid "No" - msgstr "না" - --#: ../system-config-printer.py:4809 ../system-config-printer.py:4813 -+#: ../system-config-printer.py:4824 ../system-config-printer.py:4828 - msgid " (Current)" - msgstr "" - --#: ../system-config-printer.py:4845 --msgid "HP Printer (HPLIP)" --msgstr "" -- --#: ../system-config-printer.py:4886 -+#: ../system-config-printer.py:4881 - msgid "Other" - msgstr "" - - #. device-info - #. PhysicalDevice obj - #. Separator? --#: ../system-config-printer.py:4902 -+#: ../system-config-printer.py:4897 - #, fuzzy - msgid "Network Printer" - msgstr "প্রিন্টার:" - --#: ../system-config-printer.py:4906 -+#: ../system-config-printer.py:4901 - #, fuzzy - msgid "Find Network Printer" - msgstr "প্রিন্টার:" - --#: ../system-config-printer.py:4979 ../system-config-printer.py:5376 -+#: ../system-config-printer.py:4974 ../system-config-printer.py:5371 - msgid "Scanning..." - msgstr "" - --#: ../system-config-printer.py:5034 ../system-config-printer.py:5798 -+#: ../system-config-printer.py:5029 - #, fuzzy - msgid "No Print Shares" - msgstr "প্রিন্টার:" - --#: ../system-config-printer.py:5035 -+#: ../system-config-printer.py:5030 - msgid "" - "There were no print shares found. Please check that the Samba service is " - "marked as trusted in your firewall configuration." - msgstr "" - --#: ../system-config-printer.py:5296 ../system-config-printer.py:5357 -+#: ../system-config-printer.py:5291 ../system-config-printer.py:5352 - msgid "Print Share Verified" - msgstr "" - --#: ../system-config-printer.py:5297 ../system-config-printer.py:5358 -+#: ../system-config-printer.py:5292 ../system-config-printer.py:5353 - msgid "This print share is accessible." - msgstr "" - --#: ../system-config-printer.py:5302 ../system-config-printer.py:5362 -+#: ../system-config-printer.py:5297 ../system-config-printer.py:5357 - msgid "This print share is not accessible." - msgstr "" - --#: ../system-config-printer.py:5305 -+#: ../system-config-printer.py:5300 - msgid "Print Share Inaccessible" - msgstr "" - --#: ../system-config-printer.py:5361 -+#: ../system-config-printer.py:5356 - msgid "Inaccessible" - msgstr "" - --#: ../system-config-printer.py:5419 -+#: ../system-config-printer.py:5414 - #, fuzzy, python-format - msgid "It is not possible to obtain a list of queues from '%s'." - msgstr "" -@@ -1434,158 +1439,154 @@ msgstr "" - "সমস্যা হয়েছে:\n" - "\n" - --#: ../system-config-printer.py:5421 -+#: ../system-config-printer.py:5416 - msgid "" - "Obtaining a list of queues is a CUPS extension to IPP. Network printers do " - "not support it." - msgstr "" - --#: ../system-config-printer.py:5424 -+#: ../system-config-printer.py:5419 - #, fuzzy - msgid "No queues" - msgstr "নতুন সারি(_ন)" - --#: ../system-config-printer.py:5425 -+#: ../system-config-printer.py:5420 - #, fuzzy - msgid "There are no queues available." - msgstr "এই ড্রাইভারটির জন্য বর্তমানে কোন অপশন উপলব্ধ নেই।" - --#: ../system-config-printer.py:5516 -+#: ../system-config-printer.py:5511 - msgid "Parallel Port" - msgstr "" - --#: ../system-config-printer.py:5518 -+#: ../system-config-printer.py:5513 - #, fuzzy - msgid "Serial Port" - msgstr "সাধারণ" - --#: ../system-config-printer.py:5520 -+#: ../system-config-printer.py:5515 - msgid "USB" - msgstr "" - --#: ../system-config-printer.py:5522 ../system-config-printer.py:5525 -+#: ../system-config-printer.py:5517 ../system-config-printer.py:5520 - msgid "HP Linux Imaging and Printing (HPLIP)" - msgstr "" - --#: ../system-config-printer.py:5527 -+#: ../system-config-printer.py:5522 - msgid "Hardware Abstraction Layer (HAL)" - msgstr "" - --#: ../system-config-printer.py:5529 -+#: ../system-config-printer.py:5524 - #, fuzzy - msgid "AppSocket/HP JetDirect" - msgstr "নেটওয়ার্কে সংযুক্ত করা জেটডায়রেক্ট(_জ)" - --#: ../system-config-printer.py:5538 -+#: ../system-config-printer.py:5533 - #, python-format - msgid "LPD/LPR queue '%s'" - msgstr "" - --#: ../system-config-printer.py:5540 -+#: ../system-config-printer.py:5535 - msgid "LPD/LPR queue" - msgstr "" - --#: ../system-config-printer.py:5543 -+#: ../system-config-printer.py:5538 - #, fuzzy - msgid "Windows Printer via SAMBA" - msgstr "উইন্ডোজ প্রিন্টার (SMB) ডাটা" - --#: ../system-config-printer.py:5545 ../glade/NewPrinterWindow.glade.h:66 -+#: ../system-config-printer.py:5540 ../glade/NewPrinterWindow.glade.h:65 - #, fuzzy - msgid "IPP" - msgstr "IP:" - --#: ../system-config-printer.py:5547 -+#: ../system-config-printer.py:5542 - msgid "HTTP" - msgstr "" - --#: ../system-config-printer.py:5632 -+#: ../system-config-printer.py:5624 - msgid "A printer connected to the parallel port." - msgstr "" - --#: ../system-config-printer.py:5634 -+#: ../system-config-printer.py:5626 - msgid "A printer connected to a USB port." - msgstr "" - --#: ../system-config-printer.py:5636 -+#: ../system-config-printer.py:5628 - msgid "" - "HPLIP software driving a printer, or the printer function of a multi-" - "function device." - msgstr "" - --#: ../system-config-printer.py:5639 -+#: ../system-config-printer.py:5631 - msgid "" - "HPLIP software driving a fax machine, or the fax function of a multi-" - "function device." - msgstr "" - --#: ../system-config-printer.py:5642 -+#: ../system-config-printer.py:5634 - msgid "Local printer detected by the Hardware Abstraction Layer (HAL)." - msgstr "" - --#: ../system-config-printer.py:5799 --msgid "HPLIP cannot find the device." --msgstr "" -- --#: ../system-config-printer.py:5881 -+#: ../system-config-printer.py:5831 - msgid "No printer was found at that address." - msgstr "" - --#: ../system-config-printer.py:6020 -+#: ../system-config-printer.py:5968 - #, fuzzy - msgid "-- Select from search results --" - msgstr "আপনাকে একটি প্রিন্টারের মডেল বাছাই করতে হবে।" - --#: ../system-config-printer.py:6022 -+#: ../system-config-printer.py:5970 - msgid "-- No matches found --" - msgstr "" - --#: ../system-config-printer.py:6203 -+#: ../system-config-printer.py:6151 - #, fuzzy - msgid " (recommended)" - msgstr "" - "(যে ড্রাইভারটি ব্যবহারের পরামর্শ দেওয়া\n" - "হচ্ছে তা হল %s)" - --#: ../system-config-printer.py:6217 -+#: ../system-config-printer.py:6165 - msgid "This PPD is generated by foomatic." - msgstr "" - --#: ../system-config-printer.py:6241 -+#: ../system-config-printer.py:6189 - #, fuzzy - msgid "OpenPrinting" - msgstr "প্রিন্ট করা হচ্ছে" - --#: ../system-config-printer.py:6252 -+#: ../system-config-printer.py:6200 - msgid "Distributable" - msgstr "" - --#: ../system-config-printer.py:6293 -+#: ../system-config-printer.py:6241 - msgid ", " - msgstr "" - --#: ../system-config-printer.py:6298 -+#: ../system-config-printer.py:6246 - #, python-format - msgid "" - "\n" - "(%s)" - msgstr "" - --#: ../system-config-printer.py:6303 -+#: ../system-config-printer.py:6251 - msgid "No support contacts known" - msgstr "" - --#: ../system-config-printer.py:6307 ../system-config-printer.py:6320 -+#: ../system-config-printer.py:6255 ../system-config-printer.py:6268 - #, fuzzy - msgid "Not specified." - msgstr "আপনাকে একটি ডিভাইস অবশ্যই উল্লেখ করতে হবে।" - - #. Foomatic database problem of some sort. --#: ../system-config-printer.py:6360 -+#: ../system-config-printer.py:6308 - msgid "Database error" - msgstr "" - --#: ../system-config-printer.py:6361 -+#: ../system-config-printer.py:6309 - #, python-format - msgid "The '%s' driver cannot be used with printer '%s %s'." - msgstr "" -@@ -1593,65 +1594,65 @@ msgstr "" - #. This printer references some XML that is not - #. installed by default. Point the user at the - #. package they need to install. --#: ../system-config-printer.py:6371 -+#: ../system-config-printer.py:6319 - #, python-format - msgid "You will need to install the '%s' package in order to use this driver." - msgstr "" - - #. This error came from trying to open the PPD file. --#: ../system-config-printer.py:6378 -+#: ../system-config-printer.py:6326 - msgid "PPD error" - msgstr "" - --#: ../system-config-printer.py:6380 -+#: ../system-config-printer.py:6328 - msgid "Failed to read PPD file. Possible reason follows:" - msgstr "" - - #. Failed to get PPD downloaded from OpenPrinting XXX --#: ../system-config-printer.py:6397 -+#: ../system-config-printer.py:6345 - #, fuzzy - msgid "Downloadable drivers" - msgstr "উপস্থিত ড্রাইভার:" - --#: ../system-config-printer.py:6398 -+#: ../system-config-printer.py:6346 - msgid "Failed to download PPD." - msgstr "" - --#: ../system-config-printer.py:6405 -+#: ../system-config-printer.py:6353 - #, fuzzy - msgid "fetching PPD" - msgstr "ধরন পরিবর্তন করো" - --#: ../system-config-printer.py:6434 ../system-config-printer.py:6472 -+#: ../system-config-printer.py:6382 ../system-config-printer.py:6420 - msgid "No Installable Options" - msgstr "" - --#: ../system-config-printer.py:6520 -+#: ../system-config-printer.py:6468 - #, fuzzy, python-format - msgid "adding printer %s" - msgstr "একটি নতুন প্রিন্টের সারি যোগ করো" - --#: ../system-config-printer.py:6669 -+#: ../system-config-printer.py:6617 - #, fuzzy - msgid "Would you like to print a test page?" - msgstr "আপনি কি একটি পরীক্ষামুলক পৃষ্ঠা প্রিন্ট করতে ইচ্ছুক?" - --#: ../system-config-printer.py:6722 -+#: ../system-config-printer.py:6670 - #, fuzzy - msgid "Install driver" - msgstr "প্রিন্টার ডিভাইস" - --#: ../system-config-printer.py:6723 ../troubleshoot/CheckPPDSanity.py:131 -+#: ../system-config-printer.py:6671 ../troubleshoot/CheckPPDSanity.py:131 - #, python-format - msgid "Printer '%s' requires the %s package but it is not currently installed." - msgstr "" - --#: ../system-config-printer.py:6739 -+#: ../system-config-printer.py:6687 - #, fuzzy - msgid "Missing driver" - msgstr "প্রিন্টার ডিভাইস" - --#: ../system-config-printer.py:6740 -+#: ../system-config-printer.py:6688 - #, python-format - msgid "" - "Printer '%s' requires the '%s' program but it is not currently installed. " -@@ -1780,117 +1781,112 @@ msgstr "প্রিন্টার ড - - #: ../glade/NewPrinterWindow.glade.h:5 - #, fuzzy --msgid "HP Printer (HPLIP) via network" --msgstr "প্রিন্টারের মডেল" -- --#: ../glade/NewPrinterWindow.glade.h:6 --#, fuzzy - msgid "IPP Printer" - msgstr "প্রিন্টারের মডেল" - --#: ../glade/NewPrinterWindow.glade.h:7 -+#: ../glade/NewPrinterWindow.glade.h:6 - #, fuzzy - msgid "License Terms" - msgstr "প্রিন্টারের মডেল" - --#: ../glade/NewPrinterWindow.glade.h:8 -+#: ../glade/NewPrinterWindow.glade.h:7 - msgid "Location of the LPD network printer" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:9 -+#: ../glade/NewPrinterWindow.glade.h:8 - msgid "Location of the network printer" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:10 -+#: ../glade/NewPrinterWindow.glade.h:9 - msgid "Location (optional)" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:11 -+#: ../glade/NewPrinterWindow.glade.h:10 - #, fuzzy - msgid "Network Printer" - msgstr "প্রিন্টার:" - --#: ../glade/NewPrinterWindow.glade.h:12 -+#: ../glade/NewPrinterWindow.glade.h:11 - #, fuzzy - msgid "Note" - msgstr "প্রিন্টারের মডেল" - --#: ../glade/NewPrinterWindow.glade.h:13 -+#: ../glade/NewPrinterWindow.glade.h:12 - msgid "Output Quality" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:14 -+#: ../glade/NewPrinterWindow.glade.h:13 - #, fuzzy - msgid "Printer Name" - msgstr "প্রিন্টারের মডেল" - --#: ../glade/NewPrinterWindow.glade.h:15 -+#: ../glade/NewPrinterWindow.glade.h:14 - #, fuzzy - msgid "SMB Printer" - msgstr "প্রিন্টারের মডেল" - --#: ../glade/NewPrinterWindow.glade.h:16 -+#: ../glade/NewPrinterWindow.glade.h:15 - #, fuzzy - msgid "Select Driver" - msgstr "প্রিন্টারের মডেল" - --#: ../glade/NewPrinterWindow.glade.h:17 -+#: ../glade/NewPrinterWindow.glade.h:16 - msgid "Settings of the serial port" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:18 -+#: ../glade/NewPrinterWindow.glade.h:17 - msgid "smb://[workgroup/]server[:port]/printer" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:19 -+#: ../glade/NewPrinterWindow.glade.h:18 - msgid "Choose Class Members" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:20 -+#: ../glade/NewPrinterWindow.glade.h:19 - msgid "Choose Driver" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:21 -+#: ../glade/NewPrinterWindow.glade.h:20 - msgid "Describe Printer" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:22 -+#: ../glade/NewPrinterWindow.glade.h:21 - msgid "Existing Settings" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:23 -+#: ../glade/NewPrinterWindow.glade.h:22 - msgid "Installable Options" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:24 -+#: ../glade/NewPrinterWindow.glade.h:23 - msgid "Select Device" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:25 -+#: ../glade/NewPrinterWindow.glade.h:24 - msgid "Baud Rate" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:26 -+#: ../glade/NewPrinterWindow.glade.h:25 - msgid "Browse..." - msgstr "" - - # Error log = ভুল তালিকা --#: ../glade/NewPrinterWindow.glade.h:27 -+#: ../glade/NewPrinterWindow.glade.h:26 - #, fuzzy - msgid "Comments..." - msgstr "বক্তব্য" - --#: ../glade/NewPrinterWindow.glade.h:28 -+#: ../glade/NewPrinterWindow.glade.h:27 - #, fuzzy - msgid "Connection" - msgstr "কার্য(_ক)" - --#: ../glade/NewPrinterWindow.glade.h:29 -+#: ../glade/NewPrinterWindow.glade.h:28 - #, fuzzy - msgid "Data Bits" - msgstr "বিবরণ" - --#: ../glade/NewPrinterWindow.glade.h:30 -+#: ../glade/NewPrinterWindow.glade.h:29 - msgid "" - "Default\n" - "1200\n" -@@ -1903,7 +1899,7 @@ msgid "" - "115200" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:39 -+#: ../glade/NewPrinterWindow.glade.h:38 - #, fuzzy - msgid "" - "Default\n" -@@ -1911,7 +1907,7 @@ msgid "" - "7" - msgstr "ডিফল্ট" - --#: ../glade/NewPrinterWindow.glade.h:42 -+#: ../glade/NewPrinterWindow.glade.h:41 - msgid "" - "Default\n" - "None\n" -@@ -1919,7 +1915,7 @@ msgid "" - "Even" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:46 -+#: ../glade/NewPrinterWindow.glade.h:45 - msgid "" - "Default\n" - "None\n" -@@ -1928,205 +1924,205 @@ msgid "" - "DTR/DSR (Hardware)" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:51 -+#: ../glade/NewPrinterWindow.glade.h:50 - #: ../glade/PrinterPropertiesDialog.glade.h:35 - #, fuzzy - msgid "Description:" - msgstr "বিবরণ" - --#: ../glade/NewPrinterWindow.glade.h:52 ../troubleshoot/DeviceListed.py:40 -+#: ../glade/NewPrinterWindow.glade.h:51 ../troubleshoot/DeviceListed.py:40 - #, fuzzy - msgid "Device URI" - msgstr "ডিভাইস: " - --#: ../glade/NewPrinterWindow.glade.h:53 -+#: ../glade/NewPrinterWindow.glade.h:52 - #, fuzzy - msgid "Device description." - msgstr "বিবরণ" - --#: ../glade/NewPrinterWindow.glade.h:54 -+#: ../glade/NewPrinterWindow.glade.h:53 - msgid "DirectJet" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:56 -+#: ../glade/NewPrinterWindow.glade.h:55 - #, fuzzy - msgid "Driver details" - msgstr "ড্রাইভার" - --#: ../glade/NewPrinterWindow.glade.h:57 -+#: ../glade/NewPrinterWindow.glade.h:56 - msgid "Empty" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:58 -+#: ../glade/NewPrinterWindow.glade.h:57 - msgid "Find _Queue..." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:59 -+#: ../glade/NewPrinterWindow.glade.h:58 - msgid "Flow Control" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:60 -+#: ../glade/NewPrinterWindow.glade.h:59 - msgid "" - "For the printer you have selected there are drivers available for download." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:61 -+#: ../glade/NewPrinterWindow.glade.h:60 - msgid "Free software" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:62 -+#: ../glade/NewPrinterWindow.glade.h:61 - msgid "Graphics:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:63 -+#: ../glade/NewPrinterWindow.glade.h:62 - #, fuzzy - msgid "Host:" - msgstr "হোস্টের IP" - --#: ../glade/NewPrinterWindow.glade.h:64 -+#: ../glade/NewPrinterWindow.glade.h:63 - msgid "Human-readable description such as \"HP LaserJet with Duplexer\"" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:65 -+#: ../glade/NewPrinterWindow.glade.h:64 - msgid "Human-readable location such as \"Lab 1\"" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:67 -+#: ../glade/NewPrinterWindow.glade.h:66 - msgid "LPD" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:68 -+#: ../glade/NewPrinterWindow.glade.h:67 - msgid "License:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:69 -+#: ../glade/NewPrinterWindow.glade.h:68 - #, fuzzy - msgid "Line art:" - msgstr "প্রিন্টার সম্বন্ধীয় নোট:" - --#: ../glade/NewPrinterWindow.glade.h:70 -+#: ../glade/NewPrinterWindow.glade.h:69 - #, fuzzy - msgid "Local Driver" - msgstr "স্থানীয় প্রিন্টার সম্পাদন" - --#: ../glade/NewPrinterWindow.glade.h:71 -+#: ../glade/NewPrinterWindow.glade.h:70 - #, fuzzy - msgid "Make and model:" - msgstr "গঠন এবং মডেলের তথ্য প্রয়োজন।\n" - --#: ../glade/NewPrinterWindow.glade.h:72 -+#: ../glade/NewPrinterWindow.glade.h:71 - msgid "Manufacturer" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:73 -+#: ../glade/NewPrinterWindow.glade.h:72 - #, fuzzy - msgid "Network" - msgstr "প্রিন্টার:" - --#: ../glade/NewPrinterWindow.glade.h:75 -+#: ../glade/NewPrinterWindow.glade.h:74 - msgid "No, I do not accept this license" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:76 -+#: ../glade/NewPrinterWindow.glade.h:75 - msgid "Parity" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:78 -+#: ../glade/NewPrinterWindow.glade.h:77 - msgid "Patented algorithms" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:79 -+#: ../glade/NewPrinterWindow.glade.h:78 - #, fuzzy - msgid "Photo:" - msgstr "পোর্ট: " - --#: ../glade/NewPrinterWindow.glade.h:80 -+#: ../glade/NewPrinterWindow.glade.h:79 - msgid "Port number:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:81 -+#: ../glade/NewPrinterWindow.glade.h:80 - msgid "" - "PostScript Printer Description (PPD) files can often be found on the driver " - "disk that comes with the printer. For PostScript printers they are often " - "part of the Windows® driver." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:82 -+#: ../glade/NewPrinterWindow.glade.h:81 - #, fuzzy - msgid "Printer model:" - msgstr "প্রিন্টারের মডেল" - --#: ../glade/NewPrinterWindow.glade.h:83 -+#: ../glade/NewPrinterWindow.glade.h:82 - msgid "Probe" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:84 -+#: ../glade/NewPrinterWindow.glade.h:83 - #, fuzzy - msgid "Prompt user if authentication is required" - msgstr "অনুমোদন" - --#: ../glade/NewPrinterWindow.glade.h:85 -+#: ../glade/NewPrinterWindow.glade.h:84 - msgid "Provide PPD file" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:86 -+#: ../glade/NewPrinterWindow.glade.h:85 - msgid "Queue:" - msgstr "সারি:" - --#: ../glade/NewPrinterWindow.glade.h:87 -+#: ../glade/NewPrinterWindow.glade.h:86 - msgid "SCSI" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:88 -+#: ../glade/NewPrinterWindow.glade.h:87 - msgid "SMB" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:89 -+#: ../glade/NewPrinterWindow.glade.h:88 - msgid "Search for a printer driver to download" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:90 -+#: ../glade/NewPrinterWindow.glade.h:89 - #, fuzzy - msgid "Searching..." - msgstr "সতর্কবাণী" - --#: ../glade/NewPrinterWindow.glade.h:91 -+#: ../glade/NewPrinterWindow.glade.h:90 - msgid "Select A File" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:92 -+#: ../glade/NewPrinterWindow.glade.h:91 - msgid "Select printer from database" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:93 -+#: ../glade/NewPrinterWindow.glade.h:92 - #, fuzzy - msgid "Serial" - msgstr "সাধারণ" - --#: ../glade/NewPrinterWindow.glade.h:94 -+#: ../glade/NewPrinterWindow.glade.h:93 - #, fuzzy - msgid "Set authentication details now" - msgstr "অনুমোদন" - --#: ../glade/NewPrinterWindow.glade.h:95 -+#: ../glade/NewPrinterWindow.glade.h:94 - msgid "Short name for this printer such as \"laserjet\"" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:96 -+#: ../glade/NewPrinterWindow.glade.h:95 - msgid "Supplier:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:97 -+#: ../glade/NewPrinterWindow.glade.h:96 - #, fuzzy - msgid "Support:" - msgstr "পোর্ট:" - --#: ../glade/NewPrinterWindow.glade.h:98 -+#: ../glade/NewPrinterWindow.glade.h:97 - #, fuzzy - msgid "Text:" - msgstr "পরীক্ষা (_প)" - --#: ../glade/NewPrinterWindow.glade.h:99 -+#: ../glade/NewPrinterWindow.glade.h:98 - msgid "" - "The foomatic printer database contains various manufacturer provided " - "PostScript Printer Description (PPD) files and also can generate PPD files " -@@ -2135,70 +2131,70 @@ msgid "" - "printer." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:100 -+#: ../glade/NewPrinterWindow.glade.h:99 - msgid "" - "These drivers do not come from your operating system supplier and will not " - "be covered by their commercial support. See the support and license terms " - "of the driver's supplier." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:101 -+#: ../glade/NewPrinterWindow.glade.h:100 - msgid "" - "This driver supports additional hardware that may be installed in the " - "printer." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:102 -+#: ../glade/NewPrinterWindow.glade.h:101 - msgid "" - "This is done by assuming that options with the same name do have the same " - "meaning. Settings of options that are not present in the new PPD will be " - "lost and options only present in the new PPD will be set to default." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:103 -+#: ../glade/NewPrinterWindow.glade.h:102 - msgid "" - "This way all current option settings will be lost. The default settings of " - "the new PPD will be used. " - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:104 -+#: ../glade/NewPrinterWindow.glade.h:103 - msgid "Try to copy the option settings over from the old PPD. " - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:105 -+#: ../glade/NewPrinterWindow.glade.h:104 - msgid "URI:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:107 -+#: ../glade/NewPrinterWindow.glade.h:106 - msgid "Use the new PPD (Postscript Printer Description) as is." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:109 -+#: ../glade/NewPrinterWindow.glade.h:108 - msgid "" - "With this choice no driver download will be performed. In the next steps a " - "locally installed driver will be selected." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:110 -+#: ../glade/NewPrinterWindow.glade.h:109 - msgid "Yes, I accept this license" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:111 -+#: ../glade/NewPrinterWindow.glade.h:110 - #, fuzzy - msgid "_Search" - msgstr "সতর্কবাণী" - --#: ../glade/NewPrinterWindow.glade.h:112 -+#: ../glade/NewPrinterWindow.glade.h:111 - #, fuzzy - msgid "_Verify..." - msgstr "উল্লেখ করুন..." - --#: ../glade/NewPrinterWindow.glade.h:113 -+#: ../glade/NewPrinterWindow.glade.h:112 - #: ../glade/PrinterPropertiesDialog.glade.h:128 - msgid "move left" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:114 -+#: ../glade/NewPrinterWindow.glade.h:113 - #: ../glade/PrinterPropertiesDialog.glade.h:129 - msgid "move right" - msgstr "" -@@ -3158,7 +3154,7 @@ msgstr "" - msgid "Remember to load paper of type '%s' into the printer first." - msgstr "" - --#: ../troubleshoot/PrintTestPage.py:399 -+#: ../troubleshoot/PrintTestPage.py:416 - msgid "Error submitting test page" - msgstr "" - -@@ -3363,6 +3359,10 @@ msgid "Select default printer" - msgstr "এটি একটি প্রিন্টারের বিবরণ।" - - #, fuzzy -+#~ msgid "HP Printer (HPLIP) via network" -+#~ msgstr "প্রিন্টারের মডেল" -+ -+#, fuzzy - #~ msgid "Not Found" - #~ msgstr "স্থানীয়ভাবে-যুক্ত(_থ)" - -diff -up system-config-printer-1.1.5/po/bs.po.git-1.1.x system-config-printer-1.1.5/po/bs.po ---- system-config-printer-1.1.5/po/bs.po.git-1.1.x 2009-03-03 22:21:46.000000000 +0000 -+++ system-config-printer-1.1.5/po/bs.po 2009-03-10 17:43:31.000000000 +0000 -@@ -4,7 +4,7 @@ msgid "" - msgstr "" - "Project-Id-Version: bs\n" - "Report-Msgid-Bugs-To: https://bugzilla.redhat.com/bugzilla\n" --"POT-Creation-Date: 2009-03-02 23:22+0000\n" -+"POT-Creation-Date: 2009-03-10 16:51+0000\n" - "PO-Revision-Date: 2007-01-24 17:21+0100\n" - "Last-Translator: Adnan Hodzic \n" - "Language-Team: Bosnian \n" -@@ -50,11 +50,11 @@ msgstr "" - msgid "Enter IP address" - msgstr "Naziv pisača" - --#: ../authconn.py:35 ../glade/NewPrinterWindow.glade.h:108 -+#: ../authconn.py:35 ../glade/NewPrinterWindow.glade.h:107 - msgid "Username:" - msgstr "Korisničko ime:" - --#: ../authconn.py:36 ../glade/NewPrinterWindow.glade.h:77 -+#: ../authconn.py:36 ../glade/NewPrinterWindow.glade.h:76 - msgid "Password:" - msgstr "Lozinka:" - -@@ -63,7 +63,7 @@ msgstr "Lozinka:" - msgid "Domain:" - msgstr "Lokacija:" - --#: ../authconn.py:46 -+#: ../authconn.py:46 ../authconn.py:409 - #, fuzzy - msgid "Authentication" - msgstr "Autentifikacija" -@@ -72,44 +72,53 @@ msgstr "Autentifikacija" - msgid "Remember password" - msgstr "" - --#: ../authconn.py:211 ../authconn.py:232 -+#: ../authconn.py:208 -+#, python-format -+msgid "Unauthorized request (%s)" -+msgstr "" -+ -+#: ../authconn.py:209 -+msgid "You are not authorized to carry out therequested action." -+msgstr "" -+ -+#: ../authconn.py:212 ../authconn.py:233 - #, fuzzy - msgid "Operation canceled" - msgstr "Pravila postupaka:" - --#: ../authconn.py:253 -+#: ../authconn.py:250 - #, fuzzy, python-format - msgid "CUPS server error (%s)" - msgstr "Pogreška CUPS poslužitelja" - --#: ../authconn.py:255 ../errordialogs.py:57 --#: ../troubleshoot/PrintTestPage.py:400 -+#: ../authconn.py:252 ../errordialogs.py:56 ../errordialogs.py:70 -+msgid "CUPS server error" -+msgstr "Pogreška CUPS poslužitelja" -+ -+#: ../authconn.py:261 ../errordialogs.py:57 -+#: ../troubleshoot/PrintTestPage.py:417 - #, python-format - msgid "There was an error during the CUPS operation: '%s'." - msgstr "Došlo je do pogreške tijekom CUPS postupka: '%s'." - --#: ../authconn.py:258 -+#: ../authconn.py:264 - msgid "Retry" - msgstr "" - --#: ../authconn.py:379 ../authconn.py:381 ../errordialogs.py:65 ../pysmb.py:75 -+#: ../authconn.py:385 ../authconn.py:387 ../errordialogs.py:65 ../pysmb.py:75 - #: ../pysmb.py:77 - msgid "Not authorized" - msgstr "Nema dopuštenja" - --#: ../authconn.py:382 ../pysmb.py:78 -+#: ../authconn.py:388 ../pysmb.py:78 - msgid "The password may be incorrect." - msgstr "Lozinka nije ispravna" - --#: ../authconn.py:400 -+#: ../authconn.py:407 - #, fuzzy, python-format - msgid "Authentication (%s)" - msgstr "Autentifikacija" - --#: ../errordialogs.py:56 ../errordialogs.py:70 --msgid "CUPS server error" --msgstr "Pogreška CUPS poslužitelja" -- - #: ../errordialogs.py:66 - msgid "" - "The password may be incorrect, or the server may be configured to deny " -@@ -138,7 +147,7 @@ msgstr "Potrebna je nadogradnja" - msgid "Server error" - msgstr "Pogreška poslužitelja" - --#: ../errordialogs.py:82 ../system-config-printer.py:1219 -+#: ../errordialogs.py:82 ../system-config-printer.py:1223 - msgid "Not connected" - msgstr "Nije povezan" - -@@ -160,7 +169,7 @@ msgstr "" - msgid "_New Group from Selection" - msgstr "" - --#: ../GroupsPane.py:98 ../system-config-printer.py:393 -+#: ../GroupsPane.py:98 ../system-config-printer.py:397 - #, fuzzy - msgid "_Rename" - msgstr "Korisničko ime:" -@@ -230,7 +239,7 @@ msgid "Document" - msgstr "Komentar" - - #: ../jobviewer.py:212 ../my-default-printer.py:153 --#: ../system-config-printer.py:366 ../system-config-printer.py:1367 -+#: ../system-config-printer.py:370 ../system-config-printer.py:1371 - #: ../troubleshoot/PrintTestPage.py:84 - msgid "Printer" - msgstr "Pisač" -@@ -269,8 +278,8 @@ msgstr "" - - #: ../jobviewer.py:386 ../jobviewer.py:451 ../jobviewer.py:452 - #: ../jobviewer.py:492 ../jobviewer.py:600 ../jobviewer.py:727 --#: ../jobviewer.py:1196 ../jobviewer.py:1222 ../system-config-printer.py:2546 --#: ../glade/NewPrinterWindow.glade.h:106 -+#: ../jobviewer.py:1196 ../jobviewer.py:1222 ../system-config-printer.py:2556 -+#: ../glade/NewPrinterWindow.glade.h:105 - #: ../troubleshoot/ChooseNetworkPrinter.py:101 - #: ../troubleshoot/ChooseNetworkPrinter.py:102 - #: ../troubleshoot/ChooseNetworkPrinter.py:105 -@@ -361,12 +370,12 @@ msgstr "" - msgid "Pending" - msgstr "Ispisivanje" - --#: ../jobviewer.py:591 ../system-config-printer.py:186 -+#: ../jobviewer.py:591 ../system-config-printer.py:190 - #: ../troubleshoot/PrintTestPage.py:43 - msgid "Processing" - msgstr "Obrada" - --#: ../jobviewer.py:592 ../system-config-printer.py:188 -+#: ../jobviewer.py:592 ../system-config-printer.py:192 - #: ../troubleshoot/PrintTestPage.py:44 - msgid "Stopped" - msgstr "Zaustavljeno " -@@ -485,8 +494,8 @@ msgstr "" - msgid "_Set Default" - msgstr "zadano" - --#: ../my-default-printer.py:158 ../system-config-printer.py:423 --#: ../system-config-printer.py:3660 ../troubleshoot/ChooseNetworkPrinter.py:37 -+#: ../my-default-printer.py:158 ../system-config-printer.py:427 -+#: ../system-config-printer.py:3675 ../troubleshoot/ChooseNetworkPrinter.py:37 - #: ../troubleshoot/ChoosePrinter.py:38 - #, fuzzy - msgid "Location" -@@ -520,7 +529,7 @@ msgstr "Učini zadanim pisačem" - msgid "Authenticated" - msgstr "Autentifikacija" - --#: ../ppdippstr.py:50 ../system-config-printer.py:6259 -+#: ../ppdippstr.py:50 ../system-config-printer.py:6207 - #, fuzzy - msgid "None" - msgstr "bez" -@@ -739,132 +748,132 @@ msgstr "" - msgid "1200 dpi, photo, black + color cartridge, photo paper" - msgstr "" - --#: ../system-config-printer.py:127 -+#: ../system-config-printer.py:131 - msgid "To do this, select System->Administration->Firewall from the main menu." - msgstr "" - --#: ../system-config-printer.py:185 -+#: ../system-config-printer.py:189 - msgid "Idle" - msgstr "Neaktivno" - --#: ../system-config-printer.py:187 -+#: ../system-config-printer.py:191 - msgid "Busy" - msgstr "Zauzeto" - --#: ../system-config-printer.py:372 ../system-config-printer.py:1373 -+#: ../system-config-printer.py:376 ../system-config-printer.py:1377 - #, fuzzy - msgid "Class" - msgstr "Nova klasa" - --#: ../system-config-printer.py:399 -+#: ../system-config-printer.py:403 - #, fuzzy - msgid "Set As De_fault" - msgstr "zadano" - --#: ../system-config-printer.py:403 -+#: ../system-config-printer.py:407 - #, fuzzy - msgid "_Create class" - msgstr "Udaljene klase" - --#: ../system-config-printer.py:405 -+#: ../system-config-printer.py:409 - #, fuzzy - msgid "View Print _Queue" - msgstr "Novi pisač" - --#: ../system-config-printer.py:407 -+#: ../system-config-printer.py:411 - msgid "_Add to Group" - msgstr "" - --#: ../system-config-printer.py:409 -+#: ../system-config-printer.py:413 - msgid "Save Results as _Group" - msgstr "" - --#: ../system-config-printer.py:411 -+#: ../system-config-printer.py:415 - msgid "Save Filter as _Search Group" - msgstr "" - --#: ../system-config-printer.py:415 -+#: ../system-config-printer.py:419 - #, fuzzy - msgid "E_nabled" - msgstr "Omogućeno" - --#: ../system-config-printer.py:417 -+#: ../system-config-printer.py:421 - #, fuzzy - msgid "_Shared" - msgstr "Dijeljenje" - --#: ../system-config-printer.py:421 ../troubleshoot/ChooseNetworkPrinter.py:35 -+#: ../system-config-printer.py:425 ../troubleshoot/ChooseNetworkPrinter.py:35 - #: ../troubleshoot/ChoosePrinter.py:36 ../troubleshoot/DeviceListed.py:36 - msgid "Name" - msgstr "Naziv" - --#: ../system-config-printer.py:422 -+#: ../system-config-printer.py:426 - #, fuzzy - msgid "Description" - msgstr "Opis:" - --#: ../system-config-printer.py:424 -+#: ../system-config-printer.py:428 - msgid "Manufacturer / Model" - msgstr "" - - #. Printer state reasons list --#: ../system-config-printer.py:499 -+#: ../system-config-printer.py:503 - msgid "Message" - msgstr "" - --#: ../system-config-printer.py:534 -+#: ../system-config-printer.py:538 - #, fuzzy - msgid "Problems?" - msgstr "Ispitaj" - --#: ../system-config-printer.py:637 ../system-config-printer.py:639 -+#: ../system-config-printer.py:641 ../system-config-printer.py:643 - msgid "Members of this class" - msgstr "Članovi ove klase" - --#: ../system-config-printer.py:638 ../system-config-printer.py:640 -+#: ../system-config-printer.py:642 ../system-config-printer.py:644 - msgid "Others" - msgstr "Ostali" - --#: ../system-config-printer.py:641 -+#: ../system-config-printer.py:645 - msgid "Devices" - msgstr "Uređaji" - --#: ../system-config-printer.py:642 -+#: ../system-config-printer.py:646 - #, fuzzy - msgid "Connections" - msgstr "Povezivanje" - --#: ../system-config-printer.py:643 -+#: ../system-config-printer.py:647 - msgid "Makes" - msgstr "Makes" - --#: ../system-config-printer.py:644 -+#: ../system-config-printer.py:648 - msgid "Models" - msgstr "Modeli" - --#: ../system-config-printer.py:645 -+#: ../system-config-printer.py:649 - msgid "Drivers" - msgstr "Upravljački programi" - --#: ../system-config-printer.py:646 ../glade/NewPrinterWindow.glade.h:55 -+#: ../system-config-printer.py:650 ../glade/NewPrinterWindow.glade.h:54 - msgid "Downloadable Drivers" - msgstr "" - --#: ../system-config-printer.py:647 -+#: ../system-config-printer.py:651 - msgid "Users" - msgstr "Korisnici" - --#: ../system-config-printer.py:682 -+#: ../system-config-printer.py:686 - msgid "Automatic rotation" - msgstr "" - --#: ../system-config-printer.py:989 -+#: ../system-config-printer.py:993 - #, fuzzy, python-format - msgid "Printer Properties - '%s' on %s" - msgstr "Opcije pisača" - - #. The Conflict button was pressed. --#: ../system-config-printer.py:996 -+#: ../system-config-printer.py:1000 - msgid "" - "There are conflicting options.\n" - "Changes can only be applied after\n" -@@ -874,81 +883,81 @@ msgstr "" - "Izmjene mogu biti primijenjene\n" - "tek nakon razrješavanja sukoba." - --#: ../system-config-printer.py:1214 -+#: ../system-config-printer.py:1218 - #, python-format - msgid "Printer configuration - %s" - msgstr "Konfiguracija pisača - %s" - --#: ../system-config-printer.py:1217 -+#: ../system-config-printer.py:1221 - #, python-format - msgid "Connected to %s" - msgstr "Povezan s %s" - - #. Update our copy of the printer's settings. --#: ../system-config-printer.py:1257 ../system-config-printer.py:2042 -+#: ../system-config-printer.py:1261 ../system-config-printer.py:2046 - msgid "obtaining queue details" - msgstr "" - --#: ../system-config-printer.py:1295 -+#: ../system-config-printer.py:1299 - msgid "Remove from Group" - msgstr "" - --#: ../system-config-printer.py:1361 -+#: ../system-config-printer.py:1365 - #, fuzzy - msgid "Network printer (discovered)" - msgstr "Novi pisač" - --#: ../system-config-printer.py:1364 -+#: ../system-config-printer.py:1368 - msgid "Network class (discovered)" - msgstr "" - --#: ../system-config-printer.py:1370 ../system-config-printer.py:5524 --#: ../system-config-printer.py:5594 ../system-config-printer.py:5596 -+#: ../system-config-printer.py:1374 ../system-config-printer.py:5519 -+#: ../system-config-printer.py:5589 ../system-config-printer.py:5591 - msgid "Fax" - msgstr "" - --#: ../system-config-printer.py:1376 ../system-config-printer.py:1382 -+#: ../system-config-printer.py:1380 ../system-config-printer.py:1386 - #: ../troubleshoot/LocalOrRemote.py:30 - #, fuzzy - msgid "Network printer" - msgstr "Novi pisač" - --#: ../system-config-printer.py:1379 -+#: ../system-config-printer.py:1383 - #, fuzzy - msgid "Network print share" - msgstr "Novi pisač" - --#: ../system-config-printer.py:1508 ../glade/ConnectingDialog.glade.h:2 -+#: ../system-config-printer.py:1512 ../glade/ConnectingDialog.glade.h:2 - #, no-c-format, python-format - msgid "Opening connection to %s" - msgstr "" - --#: ../system-config-printer.py:1887 -+#: ../system-config-printer.py:1891 - msgid "Installable Options" - msgstr "Opcije instaliranja" - --#: ../system-config-printer.py:1888 -+#: ../system-config-printer.py:1892 - #: ../glade/PrinterPropertiesDialog.glade.h:109 - msgid "Printer Options" - msgstr "Opcije pisača" - --#: ../system-config-printer.py:1924 -+#: ../system-config-printer.py:1928 - #, python-format - msgid "modifying class %s" - msgstr "" - --#: ../system-config-printer.py:1926 ../system-config-printer.py:3019 --#: ../system-config-printer.py:3044 ../system-config-printer.py:6547 --#: ../system-config-printer.py:6559 ../system-config-printer.py:6581 -+#: ../system-config-printer.py:1930 ../system-config-printer.py:3037 -+#: ../system-config-printer.py:3062 ../system-config-printer.py:6495 -+#: ../system-config-printer.py:6507 ../system-config-printer.py:6529 - #, fuzzy, python-format - msgid "modifying printer %s" - msgstr "Konfiguriranje pisača" - --#: ../system-config-printer.py:1941 -+#: ../system-config-printer.py:1945 - msgid "This will delete this class!" - msgstr "Izbrisat ćete klasu!" - --#: ../system-config-printer.py:1942 -+#: ../system-config-printer.py:1946 - msgid "Proceed anyway?" - msgstr "Ipak nastaviti?" - -@@ -956,50 +965,50 @@ msgstr "Ipak nastaviti?" - #. but we have never fetched the server settings to see whether - #. the server is publishing shared printers. Fetch the settings - #. now so that we can update the "not published" label if necessary. --#: ../system-config-printer.py:2030 ../system-config-printer.py:3203 -+#: ../system-config-printer.py:2034 ../system-config-printer.py:3221 - #, fuzzy - msgid "fetching server settings" - msgstr "Osnovne postavke poslužitelja" - --#: ../system-config-printer.py:2100 -+#: ../system-config-printer.py:2104 - #, fuzzy - msgid "Set Default Printer" - msgstr "Učini zadanim pisačem" - --#: ../system-config-printer.py:2102 -+#: ../system-config-printer.py:2106 - msgid "Do you want to set this as the system-wide default printer?" - msgstr "" - --#: ../system-config-printer.py:2104 -+#: ../system-config-printer.py:2108 - #, fuzzy - msgid "Set as the _system-wide default printer" - msgstr "Ovo je zadani pisač" - --#: ../system-config-printer.py:2106 -+#: ../system-config-printer.py:2110 - msgid "_Clear my personal default setting" - msgstr "" - --#: ../system-config-printer.py:2107 -+#: ../system-config-printer.py:2111 - #, fuzzy - msgid "Set as my _personal default printer" - msgstr "Učini zadanim pisačem" - --#: ../system-config-printer.py:2112 -+#: ../system-config-printer.py:2116 - #, fuzzy - msgid "setting default printer" - msgstr "Učini zadanim pisačem" - --#: ../system-config-printer.py:2169 -+#: ../system-config-printer.py:2173 - #, fuzzy - msgid "printing test page" - msgstr "Ispiši probnu stranicu" - --#: ../system-config-printer.py:2182 ../system-config-printer.py:2217 --#: ../system-config-printer.py:5418 -+#: ../system-config-printer.py:2186 ../system-config-printer.py:2221 -+#: ../system-config-printer.py:5413 - msgid "Not possible" - msgstr "Nije ostvarivo" - --#: ../system-config-printer.py:2183 ../system-config-printer.py:2218 -+#: ../system-config-printer.py:2187 ../system-config-printer.py:2222 - msgid "" - "The remote server did not accept the print job, most likely because the " - "printer is not shared." -@@ -1007,20 +1016,20 @@ msgstr "" - "Udaljeni poslužitelj nije prihvatio ispisni zadatak. Najvjerojatniji razlog " - "je da pisač nije dijeljen." - --#: ../system-config-printer.py:2195 ../system-config-printer.py:2210 -+#: ../system-config-printer.py:2199 ../system-config-printer.py:2214 - msgid "Submitted" - msgstr "Podneseno" - --#: ../system-config-printer.py:2196 -+#: ../system-config-printer.py:2200 - #, python-format - msgid "Test page submitted as job %d" - msgstr "Probna stranica je podnesena kao zadatak %d" - --#: ../system-config-printer.py:2203 -+#: ../system-config-printer.py:2207 - msgid "sending maintenance command" - msgstr "" - --#: ../system-config-printer.py:2211 -+#: ../system-config-printer.py:2215 - #, fuzzy, python-format - msgid "Maintenance command submitted as job %d" - msgstr "Probna stranica je podnesena kao zadatak %d" -@@ -1028,76 +1037,76 @@ msgstr "Probna stranica je podnesena kao - #. The underlying cupsGetPPD2() function returned NULL without - #. setting an IPP error, so it'll be something like a failed - #. connection. --#: ../system-config-printer.py:2285 ../system-config-printer.py:2381 -+#: ../system-config-printer.py:2289 ../system-config-printer.py:2385 - msgid "Error" - msgstr "" - --#: ../system-config-printer.py:2286 -+#: ../system-config-printer.py:2290 - #, fuzzy - msgid "There was a problem connecting to the CUPS server." - msgstr "Došlo je do pogreške tijekom CUPS postupka: '%s'." - --#: ../system-config-printer.py:2382 -+#: ../system-config-printer.py:2386 - #, python-format - msgid "Option '%s' has value '%s' and cannot be edited." - msgstr "" - --#: ../system-config-printer.py:2466 -+#: ../system-config-printer.py:2476 - msgid "Marker levels are not reported for this printer." - msgstr "" - --#: ../system-config-printer.py:2763 -+#: ../system-config-printer.py:2773 - #, fuzzy - msgid "Cannot Rename" - msgstr "Korisničko ime:" - --#: ../system-config-printer.py:2764 -+#: ../system-config-printer.py:2774 - msgid "There are queued jobs." - msgstr "" - --#: ../system-config-printer.py:2822 -+#: ../system-config-printer.py:2840 - #, fuzzy - msgid "renaming printer" - msgstr "Konfiguriranje pisača" - - #. for classes make sure all members - #. will get added --#: ../system-config-printer.py:2907 -+#: ../system-config-printer.py:2925 - #, fuzzy - msgid "copying printer" - msgstr "Konfiguriranje pisača" - --#: ../system-config-printer.py:2971 -+#: ../system-config-printer.py:2989 - #, fuzzy, python-format - msgid "Really delete class '%s'?" - msgstr "Zaista izbrisati klasu %s?" - --#: ../system-config-printer.py:2973 -+#: ../system-config-printer.py:2991 - #, fuzzy, python-format - msgid "Really delete printer '%s'?" - msgstr "Zaista izbrisati pisač %s?" - --#: ../system-config-printer.py:2975 -+#: ../system-config-printer.py:2993 - #, fuzzy - msgid "Really delete selected destinations?" - msgstr "Zaista izbrisati pisač %s?" - --#: ../system-config-printer.py:2996 -+#: ../system-config-printer.py:3014 - #, fuzzy, python-format - msgid "deleting printer %s" - msgstr "Konfiguriranje pisača" - --#: ../system-config-printer.py:3070 -+#: ../system-config-printer.py:3088 - msgid "Publish Shared Printers" - msgstr "" - --#: ../system-config-printer.py:3071 -+#: ../system-config-printer.py:3089 - msgid "" - "Shared printers are not available to other people unless the 'Publish shared " - "printers' option is enabled in the server settings." - msgstr "" - --#: ../system-config-printer.py:3264 -+#: ../system-config-printer.py:3282 - #, fuzzy - msgid "modifying server settings" - msgstr "Osnovne postavke poslužitelja" -@@ -1108,105 +1117,105 @@ msgstr "Osnovne postavke poslužitelj - #. be unblocked. Unfortunately, this is not yet possible - #. (bug #440469). However, we can display a dialog to suggest - #. that now might be a good time to review the firewall settings. --#: ../system-config-printer.py:3289 -+#: ../system-config-printer.py:3307 - msgid "Review Firewall" - msgstr "" - --#: ../system-config-printer.py:3290 -+#: ../system-config-printer.py:3308 - msgid "" - "You may need to adjust the firewall to allow network printing to this " - "computer." - msgstr "" - --#: ../system-config-printer.py:3623 -+#: ../system-config-printer.py:3638 - msgid "Browsing not available (pysmbc not installed)" - msgstr "" - - #. SMB list columns --#: ../system-config-printer.py:3629 -+#: ../system-config-printer.py:3644 - msgid "Share" - msgstr "Dijeljenje" - --#: ../system-config-printer.py:3635 -+#: ../system-config-printer.py:3650 - msgid "Comment" - msgstr "Komentar" - - #. IPP list columns --#: ../system-config-printer.py:3654 -+#: ../system-config-printer.py:3669 - msgid "Queue" - msgstr "" - --#: ../system-config-printer.py:3668 -+#: ../system-config-printer.py:3683 - #, fuzzy - msgid "" - "PostScript Printer Description files (*.ppd, *.PPD, *.ppd.gz, *.PPD.gz, *." - "PPD.GZ)" - msgstr "PostScript opis pisača (*.ppd[.gz])" - --#: ../system-config-printer.py:3677 -+#: ../system-config-printer.py:3692 - msgid "All files (*)" - msgstr "" - --#: ../system-config-printer.py:3713 ../system-config-printer.py:5970 --#: ../system-config-printer.py:6008 ../applet.py:124 -+#: ../system-config-printer.py:3728 ../system-config-printer.py:5918 -+#: ../system-config-printer.py:5956 ../applet.py:124 - #, fuzzy - msgid "Search" - msgstr "Novi naziv za pisači" - --#: ../system-config-printer.py:3736 ../system-config-printer.py:3760 --#: ../glade/NewPrinterWindow.glade.h:74 -+#: ../system-config-printer.py:3751 ../system-config-printer.py:3775 -+#: ../glade/NewPrinterWindow.glade.h:73 - msgid "New Printer" - msgstr "Novi pisač" - --#: ../system-config-printer.py:3747 -+#: ../system-config-printer.py:3762 - msgid "New Class" - msgstr "Nova klasa" - --#: ../system-config-printer.py:3752 -+#: ../system-config-printer.py:3767 - msgid "Change Device URI" - msgstr "Promjeni URI uređaja" - --#: ../system-config-printer.py:3758 -+#: ../system-config-printer.py:3773 - msgid "Change Driver" - msgstr "Promijeni upr. program" - --#: ../system-config-printer.py:3927 ../system-config-printer.py:3993 --#: ../system-config-printer.py:4289 ../system-config-printer.py:4487 --#: ../system-config-printer.py:5772 ../system-config-printer.py:5995 -+#: ../system-config-printer.py:3942 ../system-config-printer.py:4008 -+#: ../system-config-printer.py:4304 ../system-config-printer.py:4502 -+#: ../system-config-printer.py:5762 ../system-config-printer.py:5943 - msgid "Searching" - msgstr "" - --#: ../system-config-printer.py:3928 -+#: ../system-config-printer.py:3943 - #, fuzzy - msgid "Searching for downloadable drivers" - msgstr "Novi naziv za pisači" - --#: ../system-config-printer.py:3994 ../system-config-printer.py:4290 -+#: ../system-config-printer.py:4009 ../system-config-printer.py:4305 - msgid "Searching for drivers" - msgstr "" - --#: ../system-config-printer.py:4488 ../system-config-printer.py:5773 -+#: ../system-config-printer.py:4503 ../system-config-printer.py:5763 - #, fuzzy - msgid "Searching for printers" - msgstr "Novi naziv za pisači" - --#: ../system-config-printer.py:4497 -+#: ../system-config-printer.py:4512 - #, fuzzy - msgid "fetching device list" - msgstr "Osnovne postavke poslužitelja" - - #. Tell the user why he needs the plugin --#: ../system-config-printer.py:4579 -+#: ../system-config-printer.py:4594 - msgid "For this printer a proprietary driver plugin from HP is available.\n" - msgstr "" - --#: ../system-config-printer.py:4582 -+#: ../system-config-printer.py:4597 - msgid "" - "The installation of the plugin is required for your printer to work.\n" - "\n" - msgstr "" - --#: ../system-config-printer.py:4585 -+#: ../system-config-printer.py:4600 - msgid "" - "Installing the plugin is optional, it completes or enhances the " - "functionality\n" -@@ -1214,297 +1223,289 @@ msgid "" - "\n" - msgstr "" - --#: ../system-config-printer.py:4589 -+#: ../system-config-printer.py:4604 - msgid "The plugin provides the following features:\n" - msgstr "" - --#: ../system-config-printer.py:4592 -+#: ../system-config-printer.py:4607 - msgid " - Printing support\n" - msgstr "" - --#: ../system-config-printer.py:4595 -+#: ../system-config-printer.py:4610 - msgid " - Faster printing\n" - msgstr "" - --#: ../system-config-printer.py:4598 -+#: ../system-config-printer.py:4613 - msgid " - Better printout quality\n" - msgstr "" - --#: ../system-config-printer.py:4601 -+#: ../system-config-printer.py:4616 - msgid " - Extra printing features\n" - msgstr "" - --#: ../system-config-printer.py:4604 -+#: ../system-config-printer.py:4619 - msgid " - Scanning support\n" - msgstr "" - --#: ../system-config-printer.py:4607 -+#: ../system-config-printer.py:4622 - msgid " - Faster scanning\n" - msgstr "" - --#: ../system-config-printer.py:4610 -+#: ../system-config-printer.py:4625 - msgid " - Better scanning image quality\n" - msgstr "" - --#: ../system-config-printer.py:4613 -+#: ../system-config-printer.py:4628 - msgid " - Faxing support\n" - msgstr "" - --#: ../system-config-printer.py:4616 -+#: ../system-config-printer.py:4631 - msgid " - Extra fax features\n" - msgstr "" - --#: ../system-config-printer.py:4619 -+#: ../system-config-printer.py:4634 - msgid " - Better Input/Output support\n" - msgstr "" - --#: ../system-config-printer.py:4622 -+#: ../system-config-printer.py:4637 - msgid " - Extra user interface features\n" - msgstr "" - --#: ../system-config-printer.py:4625 -+#: ../system-config-printer.py:4640 - msgid " - Other extra features\n" - msgstr "" - --#: ../system-config-printer.py:4630 -+#: ../system-config-printer.py:4645 - #, fuzzy - msgid "Install plugin" - msgstr "Opcije instaliranja" - --#: ../system-config-printer.py:4631 -+#: ../system-config-printer.py:4646 - #, fuzzy - msgid "Do not set up printer" - msgstr "Kopiraj pisač" - --#: ../system-config-printer.py:4632 -+#: ../system-config-printer.py:4647 - msgid "Set up without plugin" - msgstr "" - --#: ../system-config-printer.py:4634 ../troubleshoot/PrintTestPage.py:118 -+#: ../system-config-printer.py:4649 ../troubleshoot/PrintTestPage.py:118 - msgid "Yes" - msgstr "" - --#: ../system-config-printer.py:4635 ../troubleshoot/PrintTestPage.py:119 -+#: ../system-config-printer.py:4650 ../troubleshoot/PrintTestPage.py:119 - msgid "No" - msgstr "" - --#: ../system-config-printer.py:4809 ../system-config-printer.py:4813 -+#: ../system-config-printer.py:4824 ../system-config-printer.py:4828 - msgid " (Current)" - msgstr " (Trenutan)" - --#: ../system-config-printer.py:4845 --msgid "HP Printer (HPLIP)" --msgstr "" -- --#: ../system-config-printer.py:4886 -+#: ../system-config-printer.py:4881 - msgid "Other" - msgstr "Ostalo" - - #. device-info - #. PhysicalDevice obj - #. Separator? --#: ../system-config-printer.py:4902 -+#: ../system-config-printer.py:4897 - #, fuzzy - msgid "Network Printer" - msgstr "Novi pisač" - --#: ../system-config-printer.py:4906 -+#: ../system-config-printer.py:4901 - #, fuzzy - msgid "Find Network Printer" - msgstr "Novi pisač" - --#: ../system-config-printer.py:4979 ../system-config-printer.py:5376 -+#: ../system-config-printer.py:4974 ../system-config-printer.py:5371 - msgid "Scanning..." - msgstr "" - --#: ../system-config-printer.py:5034 ../system-config-printer.py:5798 -+#: ../system-config-printer.py:5029 - #, fuzzy - msgid "No Print Shares" - msgstr "Novi pisač" - --#: ../system-config-printer.py:5035 -+#: ../system-config-printer.py:5030 - msgid "" - "There were no print shares found. Please check that the Samba service is " - "marked as trusted in your firewall configuration." - msgstr "" - --#: ../system-config-printer.py:5296 ../system-config-printer.py:5357 -+#: ../system-config-printer.py:5291 ../system-config-printer.py:5352 - msgid "Print Share Verified" - msgstr "" - --#: ../system-config-printer.py:5297 ../system-config-printer.py:5358 -+#: ../system-config-printer.py:5292 ../system-config-printer.py:5353 - msgid "This print share is accessible." - msgstr "Ovo je dijeljenje ispisa dostupno." - --#: ../system-config-printer.py:5302 ../system-config-printer.py:5362 -+#: ../system-config-printer.py:5297 ../system-config-printer.py:5357 - msgid "This print share is not accessible." - msgstr "Ovo dijeljenje ispisa nije dostupno." - --#: ../system-config-printer.py:5305 -+#: ../system-config-printer.py:5300 - #, fuzzy - msgid "Print Share Inaccessible" - msgstr "Ovo je dijeljenje ispisa dostupno." - --#: ../system-config-printer.py:5361 -+#: ../system-config-printer.py:5356 - msgid "Inaccessible" - msgstr "Nedostupno" - --#: ../system-config-printer.py:5419 -+#: ../system-config-printer.py:5414 - #, fuzzy, python-format - msgid "It is not possible to obtain a list of queues from '%s'." - msgstr "Došlo je do pogreške tijekom CUPS postupka: '%s'." - --#: ../system-config-printer.py:5421 -+#: ../system-config-printer.py:5416 - msgid "" - "Obtaining a list of queues is a CUPS extension to IPP. Network printers do " - "not support it." - msgstr "" - --#: ../system-config-printer.py:5424 -+#: ../system-config-printer.py:5419 - msgid "No queues" - msgstr "" - --#: ../system-config-printer.py:5425 -+#: ../system-config-printer.py:5420 - msgid "There are no queues available." - msgstr "" - --#: ../system-config-printer.py:5516 -+#: ../system-config-printer.py:5511 - msgid "Parallel Port" - msgstr "" - --#: ../system-config-printer.py:5518 -+#: ../system-config-printer.py:5513 - #, fuzzy - msgid "Serial Port" - msgstr "Serijski" - --#: ../system-config-printer.py:5520 -+#: ../system-config-printer.py:5515 - #, fuzzy - msgid "USB" - msgstr "SMB" - --#: ../system-config-printer.py:5522 ../system-config-printer.py:5525 -+#: ../system-config-printer.py:5517 ../system-config-printer.py:5520 - msgid "HP Linux Imaging and Printing (HPLIP)" - msgstr "" - --#: ../system-config-printer.py:5527 -+#: ../system-config-printer.py:5522 - #, fuzzy - msgid "Hardware Abstraction Layer (HAL)" - msgstr "" - "Lokalni pisač otrkiven pomoću Hardverskog apsraktnog sloja (HAL - Hardware " - "Abstraction Layer)." - --#: ../system-config-printer.py:5529 -+#: ../system-config-printer.py:5524 - msgid "AppSocket/HP JetDirect" - msgstr "" - --#: ../system-config-printer.py:5538 -+#: ../system-config-printer.py:5533 - #, python-format - msgid "LPD/LPR queue '%s'" - msgstr "" - --#: ../system-config-printer.py:5540 -+#: ../system-config-printer.py:5535 - #, fuzzy - msgid "LPD/LPR queue" - msgstr "LPD" - --#: ../system-config-printer.py:5543 -+#: ../system-config-printer.py:5538 - msgid "Windows Printer via SAMBA" - msgstr "" - --#: ../system-config-printer.py:5545 ../glade/NewPrinterWindow.glade.h:66 -+#: ../system-config-printer.py:5540 ../glade/NewPrinterWindow.glade.h:65 - msgid "IPP" - msgstr "IPP" - --#: ../system-config-printer.py:5547 -+#: ../system-config-printer.py:5542 - msgid "HTTP" - msgstr "" - --#: ../system-config-printer.py:5632 -+#: ../system-config-printer.py:5624 - msgid "A printer connected to the parallel port." - msgstr "Pisač povezan na paralelan port." - --#: ../system-config-printer.py:5634 -+#: ../system-config-printer.py:5626 - msgid "A printer connected to a USB port." - msgstr "Pisač povezan na USB port." - --#: ../system-config-printer.py:5636 -+#: ../system-config-printer.py:5628 - msgid "" - "HPLIP software driving a printer, or the printer function of a multi-" - "function device." - msgstr "HPLIP softverski pisač ili funkcija pisača višenamjenskog uređaja." - --#: ../system-config-printer.py:5639 -+#: ../system-config-printer.py:5631 - msgid "" - "HPLIP software driving a fax machine, or the fax function of a multi-" - "function device." - msgstr "" - "HPLIP softverski faks uređaj ili funkcija faksa višenamjenskog uređaja." - --#: ../system-config-printer.py:5642 -+#: ../system-config-printer.py:5634 - msgid "Local printer detected by the Hardware Abstraction Layer (HAL)." - msgstr "" - "Lokalni pisač otrkiven pomoću Hardverskog apsraktnog sloja (HAL - Hardware " - "Abstraction Layer)." - --#: ../system-config-printer.py:5799 --msgid "HPLIP cannot find the device." --msgstr "" -- --#: ../system-config-printer.py:5881 -+#: ../system-config-printer.py:5831 - msgid "No printer was found at that address." - msgstr "" - --#: ../system-config-printer.py:6020 -+#: ../system-config-printer.py:5968 - #, fuzzy - msgid "-- Select from search results --" - msgstr "Pisač odaberi iz beze podataka" - --#: ../system-config-printer.py:6022 -+#: ../system-config-printer.py:5970 - msgid "-- No matches found --" - msgstr "" - --#: ../system-config-printer.py:6203 -+#: ../system-config-printer.py:6151 - msgid " (recommended)" - msgstr "(preporučeni)" - --#: ../system-config-printer.py:6217 -+#: ../system-config-printer.py:6165 - msgid "This PPD is generated by foomatic." - msgstr "Ovu PPD datoteku generirao je foomatic." - --#: ../system-config-printer.py:6241 -+#: ../system-config-printer.py:6189 - #, fuzzy - msgid "OpenPrinting" - msgstr "Ispisivanje" - --#: ../system-config-printer.py:6252 -+#: ../system-config-printer.py:6200 - msgid "Distributable" - msgstr "" - --#: ../system-config-printer.py:6293 -+#: ../system-config-printer.py:6241 - msgid ", " - msgstr "" - --#: ../system-config-printer.py:6298 -+#: ../system-config-printer.py:6246 - #, python-format - msgid "" - "\n" - "(%s)" - msgstr "" - --#: ../system-config-printer.py:6303 -+#: ../system-config-printer.py:6251 - msgid "No support contacts known" - msgstr "" - --#: ../system-config-printer.py:6307 ../system-config-printer.py:6320 -+#: ../system-config-printer.py:6255 ../system-config-printer.py:6268 - msgid "Not specified." - msgstr "" - - #. Foomatic database problem of some sort. --#: ../system-config-printer.py:6360 -+#: ../system-config-printer.py:6308 - msgid "Database error" - msgstr "Pogreška baze podataka" - --#: ../system-config-printer.py:6361 -+#: ../system-config-printer.py:6309 - #, python-format - msgid "The '%s' driver cannot be used with printer '%s %s'." - msgstr "Upravljački program '%s' nije moguće upotrijebiti za pisač '%s %s'." -@@ -1512,7 +1513,7 @@ msgstr "Upravljački program '%s' nije m - #. This printer references some XML that is not - #. installed by default. Point the user at the - #. package they need to install. --#: ../system-config-printer.py:6371 -+#: ../system-config-printer.py:6319 - #, python-format - msgid "You will need to install the '%s' package in order to use this driver." - msgstr "" -@@ -1520,59 +1521,59 @@ msgstr "" - "paket '%s'." - - #. This error came from trying to open the PPD file. --#: ../system-config-printer.py:6378 -+#: ../system-config-printer.py:6326 - msgid "PPD error" - msgstr "Pogreška PPD datoteke" - --#: ../system-config-printer.py:6380 -+#: ../system-config-printer.py:6328 - msgid "Failed to read PPD file. Possible reason follows:" - msgstr "Čitanje PPD datoteke nije uspjelo. Mogući razlozi:" - - #. Failed to get PPD downloaded from OpenPrinting XXX --#: ../system-config-printer.py:6397 -+#: ../system-config-printer.py:6345 - msgid "Downloadable drivers" - msgstr "" - --#: ../system-config-printer.py:6398 -+#: ../system-config-printer.py:6346 - msgid "Failed to download PPD." - msgstr "" - --#: ../system-config-printer.py:6405 -+#: ../system-config-printer.py:6353 - #, fuzzy - msgid "fetching PPD" - msgstr "Promijeni PPD" - --#: ../system-config-printer.py:6434 ../system-config-printer.py:6472 -+#: ../system-config-printer.py:6382 ../system-config-printer.py:6420 - #, fuzzy - msgid "No Installable Options" - msgstr "Opcije instaliranja" - --#: ../system-config-printer.py:6520 -+#: ../system-config-printer.py:6468 - #, fuzzy, python-format - msgid "adding printer %s" - msgstr "Konfiguriranje pisača" - --#: ../system-config-printer.py:6669 -+#: ../system-config-printer.py:6617 - msgid "Would you like to print a test page?" - msgstr "" - --#: ../system-config-printer.py:6722 -+#: ../system-config-printer.py:6670 - #, fuzzy - msgid "Install driver" - msgstr "Nedostaje upravljački program" - --#: ../system-config-printer.py:6723 ../troubleshoot/CheckPPDSanity.py:131 -+#: ../system-config-printer.py:6671 ../troubleshoot/CheckPPDSanity.py:131 - #, fuzzy, python-format - msgid "Printer '%s' requires the %s package but it is not currently installed." - msgstr "" - "Pisač '%s' potražuje paket %s, koji trenutno nije instaliran. Prije upotrebe " - "ovog pisača instalirajte taj paket." - --#: ../system-config-printer.py:6739 -+#: ../system-config-printer.py:6687 - msgid "Missing driver" - msgstr "Nedostaje upravljački program" - --#: ../system-config-printer.py:6740 -+#: ../system-config-printer.py:6688 - #, python-format - msgid "" - "Printer '%s' requires the '%s' program but it is not currently installed. " -@@ -1700,133 +1701,128 @@ msgstr "Unesite URI uređaja" - - #: ../glade/NewPrinterWindow.glade.h:5 - #, fuzzy --msgid "HP Printer (HPLIP) via network" --msgstr "Naziv pisača" -- --#: ../glade/NewPrinterWindow.glade.h:6 --#, fuzzy - msgid "IPP Printer" - msgstr "Naziv pisača" - --#: ../glade/NewPrinterWindow.glade.h:7 -+#: ../glade/NewPrinterWindow.glade.h:6 - #, fuzzy - msgid "License Terms" - msgstr "Naziv pisača" - --#: ../glade/NewPrinterWindow.glade.h:8 -+#: ../glade/NewPrinterWindow.glade.h:7 - msgid "Location of the LPD network printer" - msgstr "Lokacija LPD mrežnog pisača" - --#: ../glade/NewPrinterWindow.glade.h:9 -+#: ../glade/NewPrinterWindow.glade.h:8 - msgid "Location of the network printer" - msgstr "Lokacija mrežnog pisača" - --#: ../glade/NewPrinterWindow.glade.h:10 -+#: ../glade/NewPrinterWindow.glade.h:9 - msgid "Location (optional)" - msgstr "Lokacija (neobavezno)" - --#: ../glade/NewPrinterWindow.glade.h:11 -+#: ../glade/NewPrinterWindow.glade.h:10 - #, fuzzy - msgid "Network Printer" - msgstr "Novi pisač" - --#: ../glade/NewPrinterWindow.glade.h:12 -+#: ../glade/NewPrinterWindow.glade.h:11 - #, fuzzy - msgid "Note" - msgstr "Stanje" - --#: ../glade/NewPrinterWindow.glade.h:13 -+#: ../glade/NewPrinterWindow.glade.h:12 - #, fuzzy - msgid "Output Quality" - msgstr "Stanje" - --#: ../glade/NewPrinterWindow.glade.h:14 -+#: ../glade/NewPrinterWindow.glade.h:13 - msgid "Printer Name" - msgstr "Naziv pisača" - --#: ../glade/NewPrinterWindow.glade.h:15 -+#: ../glade/NewPrinterWindow.glade.h:14 - #, fuzzy - msgid "SMB Printer" - msgstr "Naziv pisača" - --#: ../glade/NewPrinterWindow.glade.h:16 -+#: ../glade/NewPrinterWindow.glade.h:15 - #, fuzzy - msgid "Select Driver" - msgstr "Zadani pisač" - --#: ../glade/NewPrinterWindow.glade.h:17 -+#: ../glade/NewPrinterWindow.glade.h:16 - msgid "Settings of the serial port" - msgstr "Postavke serijskog priključka" - --#: ../glade/NewPrinterWindow.glade.h:18 -+#: ../glade/NewPrinterWindow.glade.h:17 - msgid "smb://[workgroup/]server[:port]/printer" - msgstr "smb://[radnagrupa/]poslužitelj[:port]/pisač" - --#: ../glade/NewPrinterWindow.glade.h:19 -+#: ../glade/NewPrinterWindow.glade.h:18 - #, fuzzy - msgid "Choose Class Members" - msgstr "" - "Potrebna je lozinka\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:20 -+#: ../glade/NewPrinterWindow.glade.h:19 - #, fuzzy - msgid "Choose Driver" - msgstr "" - "Potrebna je lozinka\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:21 -+#: ../glade/NewPrinterWindow.glade.h:20 - #, fuzzy - msgid "Describe Printer" - msgstr "" - "Potrebna je lozinka\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:22 -+#: ../glade/NewPrinterWindow.glade.h:21 - #, fuzzy - msgid "Existing Settings" - msgstr "" - "Potrebna je lozinka\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:23 -+#: ../glade/NewPrinterWindow.glade.h:22 - #, fuzzy - msgid "Installable Options" - msgstr "" - "Potrebna je lozinka\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:24 -+#: ../glade/NewPrinterWindow.glade.h:23 - #, fuzzy - msgid "Select Device" - msgstr "" - "Potrebna je lozinka\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:25 -+#: ../glade/NewPrinterWindow.glade.h:24 - msgid "Baud Rate" - msgstr "Brzina podataka" - --#: ../glade/NewPrinterWindow.glade.h:26 -+#: ../glade/NewPrinterWindow.glade.h:25 - msgid "Browse..." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:27 -+#: ../glade/NewPrinterWindow.glade.h:26 - #, fuzzy - msgid "Comments..." - msgstr "Komentar" - --#: ../glade/NewPrinterWindow.glade.h:28 -+#: ../glade/NewPrinterWindow.glade.h:27 - #, fuzzy - msgid "Connection" - msgstr "Povezivanje" - --#: ../glade/NewPrinterWindow.glade.h:29 -+#: ../glade/NewPrinterWindow.glade.h:28 - msgid "Data Bits" - msgstr "Bitovi" - --#: ../glade/NewPrinterWindow.glade.h:30 -+#: ../glade/NewPrinterWindow.glade.h:29 - msgid "" - "Default\n" - "1200\n" -@@ -1848,7 +1844,7 @@ msgstr "" - "57600\n" - "115200" - --#: ../glade/NewPrinterWindow.glade.h:39 -+#: ../glade/NewPrinterWindow.glade.h:38 - msgid "" - "Default\n" - "8\n" -@@ -1858,7 +1854,7 @@ msgstr "" - "8\n" - "7" - --#: ../glade/NewPrinterWindow.glade.h:42 -+#: ../glade/NewPrinterWindow.glade.h:41 - msgid "" - "Default\n" - "None\n" -@@ -1870,7 +1866,7 @@ msgstr "" - "Neparno\n" - "Parno" - --#: ../glade/NewPrinterWindow.glade.h:46 -+#: ../glade/NewPrinterWindow.glade.h:45 - msgid "" - "Default\n" - "None\n" -@@ -1884,120 +1880,120 @@ msgstr "" - "RTS/CTS (hardverski)\n" - "DTR/DSR (hardverski)" - --#: ../glade/NewPrinterWindow.glade.h:51 -+#: ../glade/NewPrinterWindow.glade.h:50 - #: ../glade/PrinterPropertiesDialog.glade.h:35 - msgid "Description:" - msgstr "Opis:" - --#: ../glade/NewPrinterWindow.glade.h:52 ../troubleshoot/DeviceListed.py:40 -+#: ../glade/NewPrinterWindow.glade.h:51 ../troubleshoot/DeviceListed.py:40 - msgid "Device URI" - msgstr "URI uređaja" - --#: ../glade/NewPrinterWindow.glade.h:53 -+#: ../glade/NewPrinterWindow.glade.h:52 - msgid "Device description." - msgstr "Opis uređaja." - --#: ../glade/NewPrinterWindow.glade.h:54 -+#: ../glade/NewPrinterWindow.glade.h:53 - msgid "DirectJet" - msgstr "DirectJet" - --#: ../glade/NewPrinterWindow.glade.h:56 -+#: ../glade/NewPrinterWindow.glade.h:55 - #, fuzzy - msgid "Driver details" - msgstr "Upravljački programi" - --#: ../glade/NewPrinterWindow.glade.h:57 -+#: ../glade/NewPrinterWindow.glade.h:56 - msgid "Empty" - msgstr "Prazno" - --#: ../glade/NewPrinterWindow.glade.h:58 -+#: ../glade/NewPrinterWindow.glade.h:57 - msgid "Find _Queue..." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:59 -+#: ../glade/NewPrinterWindow.glade.h:58 - msgid "Flow Control" - msgstr "Nadzor protoka" - --#: ../glade/NewPrinterWindow.glade.h:60 -+#: ../glade/NewPrinterWindow.glade.h:59 - msgid "" - "For the printer you have selected there are drivers available for download." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:61 -+#: ../glade/NewPrinterWindow.glade.h:60 - msgid "Free software" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:62 -+#: ../glade/NewPrinterWindow.glade.h:61 - msgid "Graphics:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:63 -+#: ../glade/NewPrinterWindow.glade.h:62 - #, fuzzy - msgid "Host:" - msgstr "Naziv računala" - --#: ../glade/NewPrinterWindow.glade.h:64 -+#: ../glade/NewPrinterWindow.glade.h:63 - msgid "Human-readable description such as \"HP LaserJet with Duplexer\"" - msgstr "Razumljivi opis poput \"HP LaserJet s duplekserom\"" - --#: ../glade/NewPrinterWindow.glade.h:65 -+#: ../glade/NewPrinterWindow.glade.h:64 - msgid "Human-readable location such as \"Lab 1\"" - msgstr "Razumljivi opis lokacije poput \"Ured 1\"" - --#: ../glade/NewPrinterWindow.glade.h:67 -+#: ../glade/NewPrinterWindow.glade.h:66 - msgid "LPD" - msgstr "LPD" - --#: ../glade/NewPrinterWindow.glade.h:68 -+#: ../glade/NewPrinterWindow.glade.h:67 - msgid "License:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:69 -+#: ../glade/NewPrinterWindow.glade.h:68 - #, fuzzy - msgid "Line art:" - msgstr "Stanje pisača:" - --#: ../glade/NewPrinterWindow.glade.h:70 -+#: ../glade/NewPrinterWindow.glade.h:69 - #, fuzzy - msgid "Local Driver" - msgstr "Lokalni pisači" - --#: ../glade/NewPrinterWindow.glade.h:71 -+#: ../glade/NewPrinterWindow.glade.h:70 - #, fuzzy - msgid "Make and model:" - msgstr "Proizvođač i model:" - --#: ../glade/NewPrinterWindow.glade.h:72 -+#: ../glade/NewPrinterWindow.glade.h:71 - msgid "Manufacturer" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:73 -+#: ../glade/NewPrinterWindow.glade.h:72 - #, fuzzy - msgid "Network" - msgstr "Novi pisač" - --#: ../glade/NewPrinterWindow.glade.h:75 -+#: ../glade/NewPrinterWindow.glade.h:74 - msgid "No, I do not accept this license" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:76 -+#: ../glade/NewPrinterWindow.glade.h:75 - msgid "Parity" - msgstr "Paritet" - --#: ../glade/NewPrinterWindow.glade.h:78 -+#: ../glade/NewPrinterWindow.glade.h:77 - msgid "Patented algorithms" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:79 -+#: ../glade/NewPrinterWindow.glade.h:78 - msgid "Photo:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:80 -+#: ../glade/NewPrinterWindow.glade.h:79 - #, fuzzy - msgid "Port number:" - msgstr "Broj porta" - --#: ../glade/NewPrinterWindow.glade.h:81 -+#: ../glade/NewPrinterWindow.glade.h:80 - #, fuzzy - msgid "" - "PostScript Printer Description (PPD) files can often be found on the driver " -@@ -2009,82 +2005,82 @@ msgstr "" - "pisač. Za potrebe PostScript pisača one su često dijelom Windows® " - "upravljačkih programa." - --#: ../glade/NewPrinterWindow.glade.h:82 -+#: ../glade/NewPrinterWindow.glade.h:81 - #, fuzzy - msgid "Printer model:" - msgstr "Naziv pisača" - --#: ../glade/NewPrinterWindow.glade.h:83 -+#: ../glade/NewPrinterWindow.glade.h:82 - msgid "Probe" - msgstr "Ispitaj" - --#: ../glade/NewPrinterWindow.glade.h:84 -+#: ../glade/NewPrinterWindow.glade.h:83 - #, fuzzy - msgid "Prompt user if authentication is required" - msgstr "Autentifikacija" - --#: ../glade/NewPrinterWindow.glade.h:85 -+#: ../glade/NewPrinterWindow.glade.h:84 - #, fuzzy - msgid "Provide PPD file" - msgstr "Pruži PPD datoteku" - --#: ../glade/NewPrinterWindow.glade.h:86 -+#: ../glade/NewPrinterWindow.glade.h:85 - msgid "Queue:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:87 -+#: ../glade/NewPrinterWindow.glade.h:86 - msgid "SCSI" - msgstr "SCSI" - --#: ../glade/NewPrinterWindow.glade.h:88 -+#: ../glade/NewPrinterWindow.glade.h:87 - msgid "SMB" - msgstr "SMB" - --#: ../glade/NewPrinterWindow.glade.h:89 -+#: ../glade/NewPrinterWindow.glade.h:88 - msgid "Search for a printer driver to download" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:90 -+#: ../glade/NewPrinterWindow.glade.h:89 - #, fuzzy - msgid "Searching..." - msgstr "Novi naziv za pisači" - --#: ../glade/NewPrinterWindow.glade.h:91 -+#: ../glade/NewPrinterWindow.glade.h:90 - msgid "Select A File" - msgstr "Odaberi datoteku" - --#: ../glade/NewPrinterWindow.glade.h:92 -+#: ../glade/NewPrinterWindow.glade.h:91 - #, fuzzy - msgid "Select printer from database" - msgstr "Pisač odaberi iz beze podataka" - --#: ../glade/NewPrinterWindow.glade.h:93 -+#: ../glade/NewPrinterWindow.glade.h:92 - msgid "Serial" - msgstr "Serijski" - --#: ../glade/NewPrinterWindow.glade.h:94 -+#: ../glade/NewPrinterWindow.glade.h:93 - #, fuzzy - msgid "Set authentication details now" - msgstr "Autentifikacija" - --#: ../glade/NewPrinterWindow.glade.h:95 -+#: ../glade/NewPrinterWindow.glade.h:94 - msgid "Short name for this printer such as \"laserjet\"" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:96 -+#: ../glade/NewPrinterWindow.glade.h:95 - msgid "Supplier:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:97 -+#: ../glade/NewPrinterWindow.glade.h:96 - msgid "Support:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:98 -+#: ../glade/NewPrinterWindow.glade.h:97 - #, fuzzy - msgid "Text:" - msgstr "Ispiši probnu stranicu" - --#: ../glade/NewPrinterWindow.glade.h:99 -+#: ../glade/NewPrinterWindow.glade.h:98 - msgid "" - "The foomatic printer database contains various manufacturer provided " - "PostScript Printer Description (PPD) files and also can generate PPD files " -@@ -2097,20 +2093,20 @@ msgstr "" - "pisača koji nisu u PostScript standardu. Općenito, PPD datoteke izrađene od " - "strane proizvođača pružaju bolji pristup određenim osobinama pisača." - --#: ../glade/NewPrinterWindow.glade.h:100 -+#: ../glade/NewPrinterWindow.glade.h:99 - msgid "" - "These drivers do not come from your operating system supplier and will not " - "be covered by their commercial support. See the support and license terms " - "of the driver's supplier." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:101 -+#: ../glade/NewPrinterWindow.glade.h:100 - msgid "" - "This driver supports additional hardware that may be installed in the " - "printer." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:102 -+#: ../glade/NewPrinterWindow.glade.h:101 - msgid "" - "This is done by assuming that options with the same name do have the same " - "meaning. Settings of options that are not present in the new PPD will be " -@@ -2121,7 +2117,7 @@ msgstr "" - "izgubljene i opcije prisutne samo u novoj PPD datoteci bit će postavljene " - "kao zadana." - --#: ../glade/NewPrinterWindow.glade.h:103 -+#: ../glade/NewPrinterWindow.glade.h:102 - msgid "" - "This way all current option settings will be lost. The default settings of " - "the new PPD will be used. " -@@ -2129,46 +2125,46 @@ msgstr "" - "Na ovaj će način sve trenutačne opcije postavki biti izgubljene. Bit će " - "upotrijebljene zadana postavke nove PPD datoteke." - --#: ../glade/NewPrinterWindow.glade.h:104 -+#: ../glade/NewPrinterWindow.glade.h:103 - msgid "Try to copy the option settings over from the old PPD. " - msgstr "" - "Pokušajte s kopiranje postavki opcija i lijepljenjem preko stare PPD " - "datoteke." - --#: ../glade/NewPrinterWindow.glade.h:105 -+#: ../glade/NewPrinterWindow.glade.h:104 - msgid "URI:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:107 -+#: ../glade/NewPrinterWindow.glade.h:106 - msgid "Use the new PPD (Postscript Printer Description) as is." - msgstr "" - "Novu PPD datoteku (PostScript opis pisača) upotrijebi u izvornom obliku." - --#: ../glade/NewPrinterWindow.glade.h:109 -+#: ../glade/NewPrinterWindow.glade.h:108 - msgid "" - "With this choice no driver download will be performed. In the next steps a " - "locally installed driver will be selected." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:110 -+#: ../glade/NewPrinterWindow.glade.h:109 - #, fuzzy - msgid "Yes, I accept this license" - msgstr "Prihvaćanje zadataka" - --#: ../glade/NewPrinterWindow.glade.h:111 -+#: ../glade/NewPrinterWindow.glade.h:110 - msgid "_Search" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:112 -+#: ../glade/NewPrinterWindow.glade.h:111 - msgid "_Verify..." - msgstr "_Provjeri..." - --#: ../glade/NewPrinterWindow.glade.h:113 -+#: ../glade/NewPrinterWindow.glade.h:112 - #: ../glade/PrinterPropertiesDialog.glade.h:128 - msgid "move left" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:114 -+#: ../glade/NewPrinterWindow.glade.h:113 - #: ../glade/PrinterPropertiesDialog.glade.h:129 - #, fuzzy - msgid "move right" -@@ -3063,7 +3059,7 @@ msgstr "" - msgid "Remember to load paper of type '%s' into the printer first." - msgstr "" - --#: ../troubleshoot/PrintTestPage.py:399 -+#: ../troubleshoot/PrintTestPage.py:416 - msgid "Error submitting test page" - msgstr "" - -@@ -3262,6 +3258,10 @@ msgid "Select default printer" - msgstr "Učini zadanim pisačem" - - #, fuzzy -+#~ msgid "HP Printer (HPLIP) via network" -+#~ msgstr "Naziv pisača" -+ -+#, fuzzy - #~ msgid "Not Found" - #~ msgstr "Nije pronađen" - -diff -up system-config-printer-1.1.5/po/ca.po.git-1.1.x system-config-printer-1.1.5/po/ca.po ---- system-config-printer-1.1.5/po/ca.po.git-1.1.x 2009-03-03 22:21:46.000000000 +0000 -+++ system-config-printer-1.1.5/po/ca.po 2009-03-10 17:43:31.000000000 +0000 -@@ -8,7 +8,7 @@ msgid "" - msgstr "" - "Project-Id-Version: printconf\n" - "Report-Msgid-Bugs-To: https://bugzilla.redhat.com/bugzilla\n" --"POT-Creation-Date: 2009-03-02 23:22+0000\n" -+"POT-Creation-Date: 2009-03-10 16:51+0000\n" - "PO-Revision-Date: 2008-09-19 20:21+0200\n" - "Last-Translator: Xavier Conde Rueda \n" - "Language-Team: Catalan \n" -@@ -52,11 +52,11 @@ msgstr "" - msgid "Enter IP address" - msgstr "Introduïu l'adreça IP" - --#: ../authconn.py:35 ../glade/NewPrinterWindow.glade.h:108 -+#: ../authconn.py:35 ../glade/NewPrinterWindow.glade.h:107 - msgid "Username:" - msgstr "Nom de l'usuari:" - --#: ../authconn.py:36 ../glade/NewPrinterWindow.glade.h:77 -+#: ../authconn.py:36 ../glade/NewPrinterWindow.glade.h:76 - msgid "Password:" - msgstr "Contrasenya:" - -@@ -64,7 +64,7 @@ msgstr "Contrasenya:" - msgid "Domain:" - msgstr "Domini:" - --#: ../authconn.py:46 -+#: ../authconn.py:46 ../authconn.py:409 - msgid "Authentication" - msgstr "Autenticació" - -@@ -72,45 +72,54 @@ msgstr "Autenticació" - msgid "Remember password" - msgstr "" - --#: ../authconn.py:211 ../authconn.py:232 -+#: ../authconn.py:208 -+#, python-format -+msgid "Unauthorized request (%s)" -+msgstr "" -+ -+#: ../authconn.py:209 -+msgid "You are not authorized to carry out therequested action." -+msgstr "" -+ -+#: ../authconn.py:212 ../authconn.py:233 - #, fuzzy - msgid "Operation canceled" - msgstr "Política d'operacions:" - --#: ../authconn.py:253 -+#: ../authconn.py:250 - #, fuzzy, python-format - msgid "CUPS server error (%s)" - msgstr "Error del servidor CUPS" - --#: ../authconn.py:255 ../errordialogs.py:57 --#: ../troubleshoot/PrintTestPage.py:400 -+#: ../authconn.py:252 ../errordialogs.py:56 ../errordialogs.py:70 -+msgid "CUPS server error" -+msgstr "Error del servidor CUPS" -+ -+#: ../authconn.py:261 ../errordialogs.py:57 -+#: ../troubleshoot/PrintTestPage.py:417 - #, python-format - msgid "There was an error during the CUPS operation: '%s'." - msgstr "S'ha produït un error durant l'operació del CUPS: «%s»." - --#: ../authconn.py:258 -+#: ../authconn.py:264 - #, fuzzy - msgid "Retry" - msgstr "les meves tasques" - --#: ../authconn.py:379 ../authconn.py:381 ../errordialogs.py:65 ../pysmb.py:75 -+#: ../authconn.py:385 ../authconn.py:387 ../errordialogs.py:65 ../pysmb.py:75 - #: ../pysmb.py:77 - msgid "Not authorized" - msgstr "No és permès" - --#: ../authconn.py:382 ../pysmb.py:78 -+#: ../authconn.py:388 ../pysmb.py:78 - msgid "The password may be incorrect." - msgstr "Pot ser que la contrasenya sigui incorrecta." - --#: ../authconn.py:400 -+#: ../authconn.py:407 - #, fuzzy, python-format - msgid "Authentication (%s)" - msgstr "Autenticació" - --#: ../errordialogs.py:56 ../errordialogs.py:70 --msgid "CUPS server error" --msgstr "Error del servidor CUPS" -- - #: ../errordialogs.py:66 - msgid "" - "The password may be incorrect, or the server may be configured to deny " -@@ -139,7 +148,7 @@ msgstr "S'ha de dur a terme una actualit - msgid "Server error" - msgstr "Error del servidor" - --#: ../errordialogs.py:82 ../system-config-printer.py:1219 -+#: ../errordialogs.py:82 ../system-config-printer.py:1223 - msgid "Not connected" - msgstr "Sense connectar" - -@@ -161,7 +170,7 @@ msgstr "" - msgid "_New Group from Selection" - msgstr "" - --#: ../GroupsPane.py:98 ../system-config-printer.py:393 -+#: ../GroupsPane.py:98 ../system-config-printer.py:397 - msgid "_Rename" - msgstr "_Reanomena" - -@@ -228,7 +237,7 @@ msgid "Document" - msgstr "Document" - - #: ../jobviewer.py:212 ../my-default-printer.py:153 --#: ../system-config-printer.py:366 ../system-config-printer.py:1367 -+#: ../system-config-printer.py:370 ../system-config-printer.py:1371 - #: ../troubleshoot/PrintTestPage.py:84 - msgid "Printer" - msgstr "Impressora" -@@ -265,8 +274,8 @@ msgstr "Estat d'impressió dels document - - #: ../jobviewer.py:386 ../jobviewer.py:451 ../jobviewer.py:452 - #: ../jobviewer.py:492 ../jobviewer.py:600 ../jobviewer.py:727 --#: ../jobviewer.py:1196 ../jobviewer.py:1222 ../system-config-printer.py:2546 --#: ../glade/NewPrinterWindow.glade.h:106 -+#: ../jobviewer.py:1196 ../jobviewer.py:1222 ../system-config-printer.py:2556 -+#: ../glade/NewPrinterWindow.glade.h:105 - #: ../troubleshoot/ChooseNetworkPrinter.py:101 - #: ../troubleshoot/ChooseNetworkPrinter.py:102 - #: ../troubleshoot/ChooseNetworkPrinter.py:105 -@@ -358,12 +367,12 @@ msgstr "Suspèn fins:" - msgid "Pending" - msgstr "Pendent" - --#: ../jobviewer.py:591 ../system-config-printer.py:186 -+#: ../jobviewer.py:591 ../system-config-printer.py:190 - #: ../troubleshoot/PrintTestPage.py:43 - msgid "Processing" - msgstr "Processant" - --#: ../jobviewer.py:592 ../system-config-printer.py:188 -+#: ../jobviewer.py:592 ../system-config-printer.py:192 - #: ../troubleshoot/PrintTestPage.py:44 - msgid "Stopped" - msgstr "Aturada" -@@ -478,8 +487,8 @@ msgstr "_Utilitza la del sistema" - msgid "_Set Default" - msgstr "_Fes-la la predeterminada" - --#: ../my-default-printer.py:158 ../system-config-printer.py:423 --#: ../system-config-printer.py:3660 ../troubleshoot/ChooseNetworkPrinter.py:37 -+#: ../my-default-printer.py:158 ../system-config-printer.py:427 -+#: ../system-config-printer.py:3675 ../troubleshoot/ChooseNetworkPrinter.py:37 - #: ../troubleshoot/ChoosePrinter.py:38 - msgid "Location" - msgstr "Ubicació" -@@ -513,7 +522,7 @@ msgstr "Impressora predeterminada" - msgid "Authenticated" - msgstr "Autentica" - --#: ../ppdippstr.py:50 ../system-config-printer.py:6259 -+#: ../ppdippstr.py:50 ../system-config-printer.py:6207 - msgid "None" - msgstr "cap" - -@@ -733,125 +742,125 @@ msgstr "" - msgid "1200 dpi, photo, black + color cartridge, photo paper" - msgstr "" - --#: ../system-config-printer.py:127 -+#: ../system-config-printer.py:131 - msgid "To do this, select System->Administration->Firewall from the main menu." - msgstr "Seleccioneu Sistema->Administració->Tallafoc des del menú principal." - --#: ../system-config-printer.py:185 -+#: ../system-config-printer.py:189 - msgid "Idle" - msgstr "Inactiva" - --#: ../system-config-printer.py:187 -+#: ../system-config-printer.py:191 - msgid "Busy" - msgstr "Ocupada" - --#: ../system-config-printer.py:372 ../system-config-printer.py:1373 -+#: ../system-config-printer.py:376 ../system-config-printer.py:1377 - msgid "Class" - msgstr "Classe" - --#: ../system-config-printer.py:399 -+#: ../system-config-printer.py:403 - msgid "Set As De_fault" - msgstr "_Fes-la la predeterminada" - --#: ../system-config-printer.py:403 -+#: ../system-config-printer.py:407 - #, fuzzy - msgid "_Create class" - msgstr "_Crea una classe" - --#: ../system-config-printer.py:405 -+#: ../system-config-printer.py:409 - msgid "View Print _Queue" - msgstr "Mostra la _cua d'impressió" - --#: ../system-config-printer.py:407 -+#: ../system-config-printer.py:411 - msgid "_Add to Group" - msgstr "" - --#: ../system-config-printer.py:409 -+#: ../system-config-printer.py:413 - msgid "Save Results as _Group" - msgstr "" - --#: ../system-config-printer.py:411 -+#: ../system-config-printer.py:415 - msgid "Save Filter as _Search Group" - msgstr "" - --#: ../system-config-printer.py:415 -+#: ../system-config-printer.py:419 - msgid "E_nabled" - msgstr "Ha_bilitat" - --#: ../system-config-printer.py:417 -+#: ../system-config-printer.py:421 - msgid "_Shared" - msgstr "Co_mpartida" - --#: ../system-config-printer.py:421 ../troubleshoot/ChooseNetworkPrinter.py:35 -+#: ../system-config-printer.py:425 ../troubleshoot/ChooseNetworkPrinter.py:35 - #: ../troubleshoot/ChoosePrinter.py:36 ../troubleshoot/DeviceListed.py:36 - msgid "Name" - msgstr "Nom" - --#: ../system-config-printer.py:422 -+#: ../system-config-printer.py:426 - #, fuzzy - msgid "Description" - msgstr "Descripció:" - --#: ../system-config-printer.py:424 -+#: ../system-config-printer.py:428 - msgid "Manufacturer / Model" - msgstr "" - - #. Printer state reasons list --#: ../system-config-printer.py:499 -+#: ../system-config-printer.py:503 - msgid "Message" - msgstr "Missatge" - --#: ../system-config-printer.py:534 -+#: ../system-config-printer.py:538 - msgid "Problems?" - msgstr "Problemes?" - --#: ../system-config-printer.py:637 ../system-config-printer.py:639 -+#: ../system-config-printer.py:641 ../system-config-printer.py:643 - msgid "Members of this class" - msgstr "Membres d'aquesta classe" - --#: ../system-config-printer.py:638 ../system-config-printer.py:640 -+#: ../system-config-printer.py:642 ../system-config-printer.py:644 - msgid "Others" - msgstr "Altres" - --#: ../system-config-printer.py:641 -+#: ../system-config-printer.py:645 - msgid "Devices" - msgstr "Dispositius" - --#: ../system-config-printer.py:642 -+#: ../system-config-printer.py:646 - msgid "Connections" - msgstr "Connexions" - --#: ../system-config-printer.py:643 -+#: ../system-config-printer.py:647 - msgid "Makes" - msgstr "Fabricants" - --#: ../system-config-printer.py:644 -+#: ../system-config-printer.py:648 - msgid "Models" - msgstr "Models" - --#: ../system-config-printer.py:645 -+#: ../system-config-printer.py:649 - msgid "Drivers" - msgstr "Controladors" - --#: ../system-config-printer.py:646 ../glade/NewPrinterWindow.glade.h:55 -+#: ../system-config-printer.py:650 ../glade/NewPrinterWindow.glade.h:54 - msgid "Downloadable Drivers" - msgstr "Controladors que es poden baixar" - --#: ../system-config-printer.py:647 -+#: ../system-config-printer.py:651 - msgid "Users" - msgstr "Usuaris" - --#: ../system-config-printer.py:682 -+#: ../system-config-printer.py:686 - msgid "Automatic rotation" - msgstr "Rotació automàtica" - --#: ../system-config-printer.py:989 -+#: ../system-config-printer.py:993 - #, fuzzy, python-format - msgid "Printer Properties - '%s' on %s" - msgstr "Propietats de la impressora - «%s» a %s" - - #. The Conflict button was pressed. --#: ../system-config-printer.py:996 -+#: ../system-config-printer.py:1000 - msgid "" - "There are conflicting options.\n" - "Changes can only be applied after\n" -@@ -861,78 +870,78 @@ msgstr "" - "Els canvis només es podran aplicar\n" - "després de resoldre aquests conflictes." - --#: ../system-config-printer.py:1214 -+#: ../system-config-printer.py:1218 - #, python-format - msgid "Printer configuration - %s" - msgstr "Configuració de la impressora - %s" - --#: ../system-config-printer.py:1217 -+#: ../system-config-printer.py:1221 - #, python-format - msgid "Connected to %s" - msgstr "Connectat a %s" - - #. Update our copy of the printer's settings. --#: ../system-config-printer.py:1257 ../system-config-printer.py:2042 -+#: ../system-config-printer.py:1261 ../system-config-printer.py:2046 - msgid "obtaining queue details" - msgstr "" - --#: ../system-config-printer.py:1295 -+#: ../system-config-printer.py:1299 - msgid "Remove from Group" - msgstr "" - --#: ../system-config-printer.py:1361 -+#: ../system-config-printer.py:1365 - msgid "Network printer (discovered)" - msgstr "Impressora de xarxa (descoberta)" - --#: ../system-config-printer.py:1364 -+#: ../system-config-printer.py:1368 - msgid "Network class (discovered)" - msgstr "Classe de xarxa (descoberta)" - --#: ../system-config-printer.py:1370 ../system-config-printer.py:5524 --#: ../system-config-printer.py:5594 ../system-config-printer.py:5596 -+#: ../system-config-printer.py:1374 ../system-config-printer.py:5519 -+#: ../system-config-printer.py:5589 ../system-config-printer.py:5591 - msgid "Fax" - msgstr "Fax" - --#: ../system-config-printer.py:1376 ../system-config-printer.py:1382 -+#: ../system-config-printer.py:1380 ../system-config-printer.py:1386 - #: ../troubleshoot/LocalOrRemote.py:30 - msgid "Network printer" - msgstr "Impressora de xarxa" - --#: ../system-config-printer.py:1379 -+#: ../system-config-printer.py:1383 - msgid "Network print share" - msgstr "Compartició d'impressió de xarxa" - --#: ../system-config-printer.py:1508 ../glade/ConnectingDialog.glade.h:2 -+#: ../system-config-printer.py:1512 ../glade/ConnectingDialog.glade.h:2 - #, no-c-format, python-format - msgid "Opening connection to %s" - msgstr "" - --#: ../system-config-printer.py:1887 -+#: ../system-config-printer.py:1891 - msgid "Installable Options" - msgstr "Opcions instal·lables" - --#: ../system-config-printer.py:1888 -+#: ../system-config-printer.py:1892 - #: ../glade/PrinterPropertiesDialog.glade.h:109 - msgid "Printer Options" - msgstr "Opcions de la impressora" - --#: ../system-config-printer.py:1924 -+#: ../system-config-printer.py:1928 - #, python-format - msgid "modifying class %s" - msgstr "" - --#: ../system-config-printer.py:1926 ../system-config-printer.py:3019 --#: ../system-config-printer.py:3044 ../system-config-printer.py:6547 --#: ../system-config-printer.py:6559 ../system-config-printer.py:6581 -+#: ../system-config-printer.py:1930 ../system-config-printer.py:3037 -+#: ../system-config-printer.py:3062 ../system-config-printer.py:6495 -+#: ../system-config-printer.py:6507 ../system-config-printer.py:6529 - #, fuzzy, python-format - msgid "modifying printer %s" - msgstr "S'està afegint la impressora" - --#: ../system-config-printer.py:1941 -+#: ../system-config-printer.py:1945 - msgid "This will delete this class!" - msgstr "Això farà que se suprimeixi aquesta classe." - --#: ../system-config-printer.py:1942 -+#: ../system-config-printer.py:1946 - msgid "Proceed anyway?" - msgstr "Voleu continuar de totes maneres?" - -@@ -940,47 +949,47 @@ msgstr "Voleu continuar de totes maneres - #. but we have never fetched the server settings to see whether - #. the server is publishing shared printers. Fetch the settings - #. now so that we can update the "not published" label if necessary. --#: ../system-config-printer.py:2030 ../system-config-printer.py:3203 -+#: ../system-config-printer.py:2034 ../system-config-printer.py:3221 - #, fuzzy - msgid "fetching server settings" - msgstr "Ajusta la configuració del servidor" - --#: ../system-config-printer.py:2100 -+#: ../system-config-printer.py:2104 - msgid "Set Default Printer" - msgstr "Estableix la impressora predeterminada" - --#: ../system-config-printer.py:2102 -+#: ../system-config-printer.py:2106 - msgid "Do you want to set this as the system-wide default printer?" - msgstr "Voleu establir-la com a impressora predeterminada del sistema?" - --#: ../system-config-printer.py:2104 -+#: ../system-config-printer.py:2108 - msgid "Set as the _system-wide default printer" - msgstr "_Fes-la impressora predeterminada del sistema" - --#: ../system-config-printer.py:2106 -+#: ../system-config-printer.py:2110 - msgid "_Clear my personal default setting" - msgstr "_Neteja la meva configuració predeterminada" - --#: ../system-config-printer.py:2107 -+#: ../system-config-printer.py:2111 - msgid "Set as my _personal default printer" - msgstr "Estableix com la meva im_pressora predeterminada" - --#: ../system-config-printer.py:2112 -+#: ../system-config-printer.py:2116 - #, fuzzy - msgid "setting default printer" - msgstr "Seleccioneu la impressora predeterminada" - --#: ../system-config-printer.py:2169 -+#: ../system-config-printer.py:2173 - #, fuzzy - msgid "printing test page" - msgstr "Imprimeix una pàgina de prova" - --#: ../system-config-printer.py:2182 ../system-config-printer.py:2217 --#: ../system-config-printer.py:5418 -+#: ../system-config-printer.py:2186 ../system-config-printer.py:2221 -+#: ../system-config-printer.py:5413 - msgid "Not possible" - msgstr "Impossible" - --#: ../system-config-printer.py:2183 ../system-config-printer.py:2218 -+#: ../system-config-printer.py:2187 ../system-config-printer.py:2222 - msgid "" - "The remote server did not accept the print job, most likely because the " - "printer is not shared." -@@ -988,20 +997,20 @@ msgstr "" - "El servidor remot no ha acceptat la tasca d'impressió. Probablement la " - "impressora no s'està compartint." - --#: ../system-config-printer.py:2195 ../system-config-printer.py:2210 -+#: ../system-config-printer.py:2199 ../system-config-printer.py:2214 - msgid "Submitted" - msgstr "Enviat" - --#: ../system-config-printer.py:2196 -+#: ../system-config-printer.py:2200 - #, python-format - msgid "Test page submitted as job %d" - msgstr "La pàgina de prova s'ha enviat com a tasca %d" - --#: ../system-config-printer.py:2203 -+#: ../system-config-printer.py:2207 - msgid "sending maintenance command" - msgstr "" - --#: ../system-config-printer.py:2211 -+#: ../system-config-printer.py:2215 - #, python-format - msgid "Maintenance command submitted as job %d" - msgstr "L'ordre de manteniment s'ha enviat com a tasca %d" -@@ -1009,67 +1018,67 @@ msgstr "L'ordre de manteniment s'ha envi - #. The underlying cupsGetPPD2() function returned NULL without - #. setting an IPP error, so it'll be something like a failed - #. connection. --#: ../system-config-printer.py:2285 ../system-config-printer.py:2381 -+#: ../system-config-printer.py:2289 ../system-config-printer.py:2385 - msgid "Error" - msgstr "Error" - --#: ../system-config-printer.py:2286 -+#: ../system-config-printer.py:2290 - msgid "There was a problem connecting to the CUPS server." - msgstr "Hi ha hagut un problema en connectar-se al servidor CUPS." - --#: ../system-config-printer.py:2382 -+#: ../system-config-printer.py:2386 - #, python-format - msgid "Option '%s' has value '%s' and cannot be edited." - msgstr "L'opció «%s» té el valor «%s» i no es pot editar." - --#: ../system-config-printer.py:2466 -+#: ../system-config-printer.py:2476 - msgid "Marker levels are not reported for this printer." - msgstr "" - --#: ../system-config-printer.py:2763 -+#: ../system-config-printer.py:2773 - msgid "Cannot Rename" - msgstr "No es pot reanomenar" - --#: ../system-config-printer.py:2764 -+#: ../system-config-printer.py:2774 - msgid "There are queued jobs." - msgstr "Hi ha tasques a la cua." - --#: ../system-config-printer.py:2822 -+#: ../system-config-printer.py:2840 - #, fuzzy - msgid "renaming printer" - msgstr "S'està afegint la impressora" - - #. for classes make sure all members - #. will get added --#: ../system-config-printer.py:2907 -+#: ../system-config-printer.py:2925 - #, fuzzy - msgid "copying printer" - msgstr "S'està afegint la impressora" - --#: ../system-config-printer.py:2971 -+#: ../system-config-printer.py:2989 - #, fuzzy, python-format - msgid "Really delete class '%s'?" - msgstr "Esteu segur que voleu suprimir la classe «%s»?" - --#: ../system-config-printer.py:2973 -+#: ../system-config-printer.py:2991 - #, fuzzy, python-format - msgid "Really delete printer '%s'?" - msgstr "Esteu segur que voleu suprimir la impressora «%s»?" - --#: ../system-config-printer.py:2975 -+#: ../system-config-printer.py:2993 - msgid "Really delete selected destinations?" - msgstr "Esteu segur que voleu suprimir les ubicacions seleccionades?" - --#: ../system-config-printer.py:2996 -+#: ../system-config-printer.py:3014 - #, fuzzy, python-format - msgid "deleting printer %s" - msgstr "S'està afegint la impressora" - --#: ../system-config-printer.py:3070 -+#: ../system-config-printer.py:3088 - msgid "Publish Shared Printers" - msgstr "Publica les impressores compartides" - --#: ../system-config-printer.py:3071 -+#: ../system-config-printer.py:3089 - msgid "" - "Shared printers are not available to other people unless the 'Publish shared " - "printers' option is enabled in the server settings." -@@ -1078,7 +1087,7 @@ msgstr "" - "l'opció «Publica les impressores compartides» estigui habilitada en la " - "configuració del servidor." - --#: ../system-config-printer.py:3264 -+#: ../system-config-printer.py:3282 - #, fuzzy - msgid "modifying server settings" - msgstr "Ajusta la configuració del servidor" -@@ -1089,11 +1098,11 @@ msgstr "Ajusta la configuració del serv - #. be unblocked. Unfortunately, this is not yet possible - #. (bug #440469). However, we can display a dialog to suggest - #. that now might be a good time to review the firewall settings. --#: ../system-config-printer.py:3289 -+#: ../system-config-printer.py:3307 - msgid "Review Firewall" - msgstr "Comproveu el tallafoc" - --#: ../system-config-printer.py:3290 -+#: ../system-config-printer.py:3308 - msgid "" - "You may need to adjust the firewall to allow network printing to this " - "computer." -@@ -1101,26 +1110,26 @@ msgstr "" - "Hauríeu d'ajustar el tallafoc per permetre imprimir per xarxa a aquest " - "ordinador." - --#: ../system-config-printer.py:3623 -+#: ../system-config-printer.py:3638 - msgid "Browsing not available (pysmbc not installed)" - msgstr "" - - # Recurs compartit (josep) - #. SMB list columns --#: ../system-config-printer.py:3629 -+#: ../system-config-printer.py:3644 - msgid "Share" - msgstr "Recurs compartit" - --#: ../system-config-printer.py:3635 -+#: ../system-config-printer.py:3650 - msgid "Comment" - msgstr "Comentari" - - #. IPP list columns --#: ../system-config-printer.py:3654 -+#: ../system-config-printer.py:3669 - msgid "Queue" - msgstr "Cua" - --#: ../system-config-printer.py:3668 -+#: ../system-config-printer.py:3683 - msgid "" - "PostScript Printer Description files (*.ppd, *.PPD, *.ppd.gz, *.PPD.gz, *." - "PPD.GZ)" -@@ -1128,68 +1137,68 @@ msgstr "" - "Descripció d'impressora Postscript (*.ppd, *.PPD, *.ppd.gz, *.PPD.gz, *.PPD." - "GZ)" - --#: ../system-config-printer.py:3677 -+#: ../system-config-printer.py:3692 - msgid "All files (*)" - msgstr "Tots els fitxers (*)" - --#: ../system-config-printer.py:3713 ../system-config-printer.py:5970 --#: ../system-config-printer.py:6008 ../applet.py:124 -+#: ../system-config-printer.py:3728 ../system-config-printer.py:5918 -+#: ../system-config-printer.py:5956 ../applet.py:124 - msgid "Search" - msgstr "Cerca" - --#: ../system-config-printer.py:3736 ../system-config-printer.py:3760 --#: ../glade/NewPrinterWindow.glade.h:74 -+#: ../system-config-printer.py:3751 ../system-config-printer.py:3775 -+#: ../glade/NewPrinterWindow.glade.h:73 - msgid "New Printer" - msgstr "Impressora nova" - --#: ../system-config-printer.py:3747 -+#: ../system-config-printer.py:3762 - msgid "New Class" - msgstr "Classe nova" - --#: ../system-config-printer.py:3752 -+#: ../system-config-printer.py:3767 - msgid "Change Device URI" - msgstr "Canvia l'URI del dispositiu" - --#: ../system-config-printer.py:3758 -+#: ../system-config-printer.py:3773 - msgid "Change Driver" - msgstr "Canvia el controlador" - --#: ../system-config-printer.py:3927 ../system-config-printer.py:3993 --#: ../system-config-printer.py:4289 ../system-config-printer.py:4487 --#: ../system-config-printer.py:5772 ../system-config-printer.py:5995 -+#: ../system-config-printer.py:3942 ../system-config-printer.py:4008 -+#: ../system-config-printer.py:4304 ../system-config-printer.py:4502 -+#: ../system-config-printer.py:5762 ../system-config-printer.py:5943 - msgid "Searching" - msgstr "Cerca" - --#: ../system-config-printer.py:3928 -+#: ../system-config-printer.py:3943 - #, fuzzy - msgid "Searching for downloadable drivers" - msgstr "S'estan cercant controladors" - --#: ../system-config-printer.py:3994 ../system-config-printer.py:4290 -+#: ../system-config-printer.py:4009 ../system-config-printer.py:4305 - msgid "Searching for drivers" - msgstr "S'estan cercant controladors" - --#: ../system-config-printer.py:4488 ../system-config-printer.py:5773 -+#: ../system-config-printer.py:4503 ../system-config-printer.py:5763 - msgid "Searching for printers" - msgstr "S'estan cercant impressores" - --#: ../system-config-printer.py:4497 -+#: ../system-config-printer.py:4512 - #, fuzzy - msgid "fetching device list" - msgstr "Ajusta la configuració del servidor" - - #. Tell the user why he needs the plugin --#: ../system-config-printer.py:4579 -+#: ../system-config-printer.py:4594 - msgid "For this printer a proprietary driver plugin from HP is available.\n" - msgstr "" - --#: ../system-config-printer.py:4582 -+#: ../system-config-printer.py:4597 - msgid "" - "The installation of the plugin is required for your printer to work.\n" - "\n" - msgstr "" - --#: ../system-config-printer.py:4585 -+#: ../system-config-printer.py:4600 - msgid "" - "Installing the plugin is optional, it completes or enhances the " - "functionality\n" -@@ -1197,115 +1206,111 @@ msgid "" - "\n" - msgstr "" - --#: ../system-config-printer.py:4589 -+#: ../system-config-printer.py:4604 - msgid "The plugin provides the following features:\n" - msgstr "" - --#: ../system-config-printer.py:4592 -+#: ../system-config-printer.py:4607 - msgid " - Printing support\n" - msgstr "" - --#: ../system-config-printer.py:4595 -+#: ../system-config-printer.py:4610 - #, fuzzy - msgid " - Faster printing\n" - msgstr "Resolució dels problemes de la impressió" - --#: ../system-config-printer.py:4598 -+#: ../system-config-printer.py:4613 - msgid " - Better printout quality\n" - msgstr "" - --#: ../system-config-printer.py:4601 -+#: ../system-config-printer.py:4616 - msgid " - Extra printing features\n" - msgstr "" - --#: ../system-config-printer.py:4604 -+#: ../system-config-printer.py:4619 - msgid " - Scanning support\n" - msgstr "" - --#: ../system-config-printer.py:4607 -+#: ../system-config-printer.py:4622 - msgid " - Faster scanning\n" - msgstr "" - --#: ../system-config-printer.py:4610 -+#: ../system-config-printer.py:4625 - msgid " - Better scanning image quality\n" - msgstr "" - --#: ../system-config-printer.py:4613 -+#: ../system-config-printer.py:4628 - msgid " - Faxing support\n" - msgstr "" - --#: ../system-config-printer.py:4616 -+#: ../system-config-printer.py:4631 - msgid " - Extra fax features\n" - msgstr "" - --#: ../system-config-printer.py:4619 -+#: ../system-config-printer.py:4634 - msgid " - Better Input/Output support\n" - msgstr "" - --#: ../system-config-printer.py:4622 -+#: ../system-config-printer.py:4637 - msgid " - Extra user interface features\n" - msgstr "" - --#: ../system-config-printer.py:4625 -+#: ../system-config-printer.py:4640 - msgid " - Other extra features\n" - msgstr "" - --#: ../system-config-printer.py:4630 -+#: ../system-config-printer.py:4645 - #, fuzzy - msgid "Install plugin" - msgstr "Opcions instal·lades" - --#: ../system-config-printer.py:4631 -+#: ../system-config-printer.py:4646 - #, fuzzy - msgid "Do not set up printer" - msgstr "Escolliu una impressora" - --#: ../system-config-printer.py:4632 -+#: ../system-config-printer.py:4647 - msgid "Set up without plugin" - msgstr "" - --#: ../system-config-printer.py:4634 ../troubleshoot/PrintTestPage.py:118 -+#: ../system-config-printer.py:4649 ../troubleshoot/PrintTestPage.py:118 - msgid "Yes" - msgstr "Sí" - --#: ../system-config-printer.py:4635 ../troubleshoot/PrintTestPage.py:119 -+#: ../system-config-printer.py:4650 ../troubleshoot/PrintTestPage.py:119 - msgid "No" - msgstr "No" - --#: ../system-config-printer.py:4809 ../system-config-printer.py:4813 -+#: ../system-config-printer.py:4824 ../system-config-printer.py:4828 - msgid " (Current)" - msgstr " (Actual)" - --#: ../system-config-printer.py:4845 --msgid "HP Printer (HPLIP)" --msgstr "" -- --#: ../system-config-printer.py:4886 -+#: ../system-config-printer.py:4881 - msgid "Other" - msgstr "Altre" - - #. device-info - #. PhysicalDevice obj - #. Separator? --#: ../system-config-printer.py:4902 -+#: ../system-config-printer.py:4897 - #, fuzzy - msgid "Network Printer" - msgstr "Impressora de xarxa" - --#: ../system-config-printer.py:4906 -+#: ../system-config-printer.py:4901 - #, fuzzy - msgid "Find Network Printer" - msgstr "Impressora de xarxa" - --#: ../system-config-printer.py:4979 ../system-config-printer.py:5376 -+#: ../system-config-printer.py:4974 ../system-config-printer.py:5371 - msgid "Scanning..." - msgstr "S'està analitzant..." - --#: ../system-config-printer.py:5034 ../system-config-printer.py:5798 -+#: ../system-config-printer.py:5029 - msgid "No Print Shares" - msgstr "Cap compartició d'impressió" - --#: ../system-config-printer.py:5035 -+#: ../system-config-printer.py:5030 - msgid "" - "There were no print shares found. Please check that the Samba service is " - "marked as trusted in your firewall configuration." -@@ -1313,32 +1318,32 @@ msgstr "" - "No s'han trobat comparticions d'impressió. Comproveu que el servei Samba " - "està marcat com a confiable en la configuració del tallafoc." - --#: ../system-config-printer.py:5296 ../system-config-printer.py:5357 -+#: ../system-config-printer.py:5291 ../system-config-printer.py:5352 - msgid "Print Share Verified" - msgstr "S'ha verificat el compartit d'impressió" - --#: ../system-config-printer.py:5297 ../system-config-printer.py:5358 -+#: ../system-config-printer.py:5292 ../system-config-printer.py:5353 - msgid "This print share is accessible." - msgstr "Aquesta impressora compartida és accessible." - --#: ../system-config-printer.py:5302 ../system-config-printer.py:5362 -+#: ../system-config-printer.py:5297 ../system-config-printer.py:5357 - msgid "This print share is not accessible." - msgstr "Aquesta impressora compartida no és accessible." - --#: ../system-config-printer.py:5305 -+#: ../system-config-printer.py:5300 - msgid "Print Share Inaccessible" - msgstr "El compartit d'impressió és inaccessible" - --#: ../system-config-printer.py:5361 -+#: ../system-config-printer.py:5356 - msgid "Inaccessible" - msgstr "Inaccessible" - --#: ../system-config-printer.py:5419 -+#: ../system-config-printer.py:5414 - #, fuzzy, python-format - msgid "It is not possible to obtain a list of queues from '%s'." - msgstr "No es pot obtenir una llista de cues de «%s»." - --#: ../system-config-printer.py:5421 -+#: ../system-config-printer.py:5416 - msgid "" - "Obtaining a list of queues is a CUPS extension to IPP. Network printers do " - "not support it." -@@ -1346,73 +1351,73 @@ msgstr "" - "L'obtenció d'una llista de cues és una extensió del CUPS sobre IPP. Les " - "impressores de xarxa no en disposen." - --#: ../system-config-printer.py:5424 -+#: ../system-config-printer.py:5419 - msgid "No queues" - msgstr "Cap cua" - --#: ../system-config-printer.py:5425 -+#: ../system-config-printer.py:5420 - msgid "There are no queues available." - msgstr "No hi ha cap cua disponible." - --#: ../system-config-printer.py:5516 -+#: ../system-config-printer.py:5511 - msgid "Parallel Port" - msgstr "" - --#: ../system-config-printer.py:5518 -+#: ../system-config-printer.py:5513 - #, fuzzy - msgid "Serial Port" - msgstr "Sèrie" - --#: ../system-config-printer.py:5520 -+#: ../system-config-printer.py:5515 - #, fuzzy - msgid "USB" - msgstr "SMB" - --#: ../system-config-printer.py:5522 ../system-config-printer.py:5525 -+#: ../system-config-printer.py:5517 ../system-config-printer.py:5520 - msgid "HP Linux Imaging and Printing (HPLIP)" - msgstr "" - --#: ../system-config-printer.py:5527 -+#: ../system-config-printer.py:5522 - #, fuzzy - msgid "Hardware Abstraction Layer (HAL)" - msgstr "" - "La impressora local detectada per la capa d'abstracció de maquinari (HAL)." - --#: ../system-config-printer.py:5529 -+#: ../system-config-printer.py:5524 - msgid "AppSocket/HP JetDirect" - msgstr "" - --#: ../system-config-printer.py:5538 -+#: ../system-config-printer.py:5533 - #, python-format - msgid "LPD/LPR queue '%s'" - msgstr "" - --#: ../system-config-printer.py:5540 -+#: ../system-config-printer.py:5535 - #, fuzzy - msgid "LPD/LPR queue" - msgstr "LPD" - --#: ../system-config-printer.py:5543 -+#: ../system-config-printer.py:5538 - msgid "Windows Printer via SAMBA" - msgstr "" - --#: ../system-config-printer.py:5545 ../glade/NewPrinterWindow.glade.h:66 -+#: ../system-config-printer.py:5540 ../glade/NewPrinterWindow.glade.h:65 - msgid "IPP" - msgstr "IPP" - --#: ../system-config-printer.py:5547 -+#: ../system-config-printer.py:5542 - msgid "HTTP" - msgstr "" - --#: ../system-config-printer.py:5632 -+#: ../system-config-printer.py:5624 - msgid "A printer connected to the parallel port." - msgstr "Una impressora connectada al port paral·lel." - --#: ../system-config-printer.py:5634 -+#: ../system-config-printer.py:5626 - msgid "A printer connected to a USB port." - msgstr "Una impressora connectada un port USB." - --#: ../system-config-printer.py:5636 -+#: ../system-config-printer.py:5628 - msgid "" - "HPLIP software driving a printer, or the printer function of a multi-" - "function device." -@@ -1420,7 +1425,7 @@ msgstr "" - "El programari HPLIP que controla una impressora, o la funció d'impressió " - "d'un dispositiu multifunció." - --#: ../system-config-printer.py:5639 -+#: ../system-config-printer.py:5631 - msgid "" - "HPLIP software driving a fax machine, or the fax function of a multi-" - "function device." -@@ -1428,70 +1433,66 @@ msgstr "" - "El programari HPLIP que controla un fax, o la funció de fax d'un dispositiu " - "multifunció." - --#: ../system-config-printer.py:5642 -+#: ../system-config-printer.py:5634 - msgid "Local printer detected by the Hardware Abstraction Layer (HAL)." - msgstr "" - "La impressora local detectada per la capa d'abstracció de maquinari (HAL)." - --#: ../system-config-printer.py:5799 --msgid "HPLIP cannot find the device." --msgstr "" -- --#: ../system-config-printer.py:5881 -+#: ../system-config-printer.py:5831 - msgid "No printer was found at that address." - msgstr "" - --#: ../system-config-printer.py:6020 -+#: ../system-config-printer.py:5968 - msgid "-- Select from search results --" - msgstr "-- Seleccioneu dels resultats de la cerca --" - --#: ../system-config-printer.py:6022 -+#: ../system-config-printer.py:5970 - msgid "-- No matches found --" - msgstr "-- No s'ha trobat cap concordança --" - --#: ../system-config-printer.py:6203 -+#: ../system-config-printer.py:6151 - msgid " (recommended)" - msgstr " (recomanat)" - --#: ../system-config-printer.py:6217 -+#: ../system-config-printer.py:6165 - msgid "This PPD is generated by foomatic." - msgstr "Aquest PPD l'ha generat el foomatic." - - # FIXME: (dpm) --#: ../system-config-printer.py:6241 -+#: ../system-config-printer.py:6189 - msgid "OpenPrinting" - msgstr "OpenPrinting" - --#: ../system-config-printer.py:6252 -+#: ../system-config-printer.py:6200 - msgid "Distributable" - msgstr "Distribuïble" - --#: ../system-config-printer.py:6293 -+#: ../system-config-printer.py:6241 - #, fuzzy - msgid ", " - msgstr " " - --#: ../system-config-printer.py:6298 -+#: ../system-config-printer.py:6246 - #, python-format - msgid "" - "\n" - "(%s)" - msgstr "" - --#: ../system-config-printer.py:6303 -+#: ../system-config-printer.py:6251 - msgid "No support contacts known" - msgstr "" - --#: ../system-config-printer.py:6307 ../system-config-printer.py:6320 -+#: ../system-config-printer.py:6255 ../system-config-printer.py:6268 - msgid "Not specified." - msgstr "No especificat." - - #. Foomatic database problem of some sort. --#: ../system-config-printer.py:6360 -+#: ../system-config-printer.py:6308 - msgid "Database error" - msgstr "Error de la base de dades" - --#: ../system-config-printer.py:6361 -+#: ../system-config-printer.py:6309 - #, python-format - msgid "The '%s' driver cannot be used with printer '%s %s'." - msgstr "El controlador «%s» no es pot fer servir amb la impressora «%s %s»." -@@ -1499,62 +1500,62 @@ msgstr "El controlador «%s» no es pot - #. This printer references some XML that is not - #. installed by default. Point the user at the - #. package they need to install. --#: ../system-config-printer.py:6371 -+#: ../system-config-printer.py:6319 - #, python-format - msgid "You will need to install the '%s' package in order to use this driver." - msgstr "" - "Haureu d'instal·lar el paquet «%s» per a poder utilitzar aquest controlador." - - #. This error came from trying to open the PPD file. --#: ../system-config-printer.py:6378 -+#: ../system-config-printer.py:6326 - msgid "PPD error" - msgstr "Error en el PPD" - --#: ../system-config-printer.py:6380 -+#: ../system-config-printer.py:6328 - msgid "Failed to read PPD file. Possible reason follows:" - msgstr "No s'ha pogut llegir el fitxer PPD, aquests en poden ser els motius:" - - #. Failed to get PPD downloaded from OpenPrinting XXX --#: ../system-config-printer.py:6397 -+#: ../system-config-printer.py:6345 - msgid "Downloadable drivers" - msgstr "Controladors que es poden baixar" - --#: ../system-config-printer.py:6398 -+#: ../system-config-printer.py:6346 - msgid "Failed to download PPD." - msgstr "No s'ha pogut baixar el PPD." - --#: ../system-config-printer.py:6405 -+#: ../system-config-printer.py:6353 - #, fuzzy - msgid "fetching PPD" - msgstr "Canvia el PPD" - --#: ../system-config-printer.py:6434 ../system-config-printer.py:6472 -+#: ../system-config-printer.py:6382 ../system-config-printer.py:6420 - msgid "No Installable Options" - msgstr "No hi ha opcions instal·lables" - --#: ../system-config-printer.py:6520 -+#: ../system-config-printer.py:6468 - #, fuzzy, python-format - msgid "adding printer %s" - msgstr "S'està afegint la impressora" - --#: ../system-config-printer.py:6669 -+#: ../system-config-printer.py:6617 - msgid "Would you like to print a test page?" - msgstr "" - --#: ../system-config-printer.py:6722 -+#: ../system-config-printer.py:6670 - msgid "Install driver" - msgstr "Instal·la el controlador" - --#: ../system-config-printer.py:6723 ../troubleshoot/CheckPPDSanity.py:131 -+#: ../system-config-printer.py:6671 ../troubleshoot/CheckPPDSanity.py:131 - #, python-format - msgid "Printer '%s' requires the %s package but it is not currently installed." - msgstr "La impressora «%s» necessita el paquet %s, però no està instal·lat." - --#: ../system-config-printer.py:6739 -+#: ../system-config-printer.py:6687 - msgid "Missing driver" - msgstr "Manca el controlador" - --#: ../system-config-printer.py:6740 -+#: ../system-config-printer.py:6688 - #, python-format - msgid "" - "Printer '%s' requires the '%s' program but it is not currently installed. " -@@ -1691,111 +1692,106 @@ msgid "Enter device URI" - msgstr "Introduïu l'URI del dispositiu" - - #: ../glade/NewPrinterWindow.glade.h:5 --#, fuzzy --msgid "HP Printer (HPLIP) via network" --msgstr "Nom de la impressora" -- --#: ../glade/NewPrinterWindow.glade.h:6 - msgid "IPP Printer" - msgstr "Impressora IPP" - --#: ../glade/NewPrinterWindow.glade.h:7 -+#: ../glade/NewPrinterWindow.glade.h:6 - msgid "License Terms" - msgstr "Condicions de la llicència" - --#: ../glade/NewPrinterWindow.glade.h:8 -+#: ../glade/NewPrinterWindow.glade.h:7 - msgid "Location of the LPD network printer" - msgstr "Ubicació de la impressora de xarxa LPD" - --#: ../glade/NewPrinterWindow.glade.h:9 -+#: ../glade/NewPrinterWindow.glade.h:8 - msgid "Location of the network printer" - msgstr "Ubicació de la impressora de xarxa" - --#: ../glade/NewPrinterWindow.glade.h:10 -+#: ../glade/NewPrinterWindow.glade.h:9 - msgid "Location (optional)" - msgstr "Ubicació (opcional)" - --#: ../glade/NewPrinterWindow.glade.h:11 -+#: ../glade/NewPrinterWindow.glade.h:10 - #, fuzzy - msgid "Network Printer" - msgstr "Impressora de xarxa" - --#: ../glade/NewPrinterWindow.glade.h:12 -+#: ../glade/NewPrinterWindow.glade.h:11 - msgid "Note" - msgstr "Nota" - --#: ../glade/NewPrinterWindow.glade.h:13 -+#: ../glade/NewPrinterWindow.glade.h:12 - #, fuzzy - msgid "Output Quality" - msgstr "Estat" - --#: ../glade/NewPrinterWindow.glade.h:14 -+#: ../glade/NewPrinterWindow.glade.h:13 - msgid "Printer Name" - msgstr "Nom de la impressora" - --#: ../glade/NewPrinterWindow.glade.h:15 -+#: ../glade/NewPrinterWindow.glade.h:14 - msgid "SMB Printer" - msgstr "Impressora SMB" - --#: ../glade/NewPrinterWindow.glade.h:16 -+#: ../glade/NewPrinterWindow.glade.h:15 - msgid "Select Driver" - msgstr "Seleccioneu el controlador" - --#: ../glade/NewPrinterWindow.glade.h:17 -+#: ../glade/NewPrinterWindow.glade.h:16 - msgid "Settings of the serial port" - msgstr "Configuració del port sèrie" - --#: ../glade/NewPrinterWindow.glade.h:18 -+#: ../glade/NewPrinterWindow.glade.h:17 - msgid "smb://[workgroup/]server[:port]/printer" - msgstr "smb://[grup_de_treball/]servidor[:port]/impressora" - --#: ../glade/NewPrinterWindow.glade.h:19 -+#: ../glade/NewPrinterWindow.glade.h:18 - msgid "Choose Class Members" - msgstr "" - "Escolliu els membres de la classe" - --#: ../glade/NewPrinterWindow.glade.h:20 -+#: ../glade/NewPrinterWindow.glade.h:19 - msgid "Choose Driver" - msgstr "Escolliu el controlador" - --#: ../glade/NewPrinterWindow.glade.h:21 -+#: ../glade/NewPrinterWindow.glade.h:20 - msgid "Describe Printer" - msgstr "Describiu la impressora" - --#: ../glade/NewPrinterWindow.glade.h:22 -+#: ../glade/NewPrinterWindow.glade.h:21 - msgid "Existing Settings" - msgstr "Configuració existent" - --#: ../glade/NewPrinterWindow.glade.h:23 -+#: ../glade/NewPrinterWindow.glade.h:22 - msgid "Installable Options" - msgstr "Opcions instal·lables" - --#: ../glade/NewPrinterWindow.glade.h:24 -+#: ../glade/NewPrinterWindow.glade.h:23 - msgid "Select Device" - msgstr "Seleccioneu dispositiu" - --#: ../glade/NewPrinterWindow.glade.h:25 -+#: ../glade/NewPrinterWindow.glade.h:24 - msgid "Baud Rate" - msgstr "Velocitat" - --#: ../glade/NewPrinterWindow.glade.h:26 -+#: ../glade/NewPrinterWindow.glade.h:25 - msgid "Browse..." - msgstr "Navega..." - --#: ../glade/NewPrinterWindow.glade.h:27 -+#: ../glade/NewPrinterWindow.glade.h:26 - msgid "Comments..." - msgstr "Comentaris..." - --#: ../glade/NewPrinterWindow.glade.h:28 -+#: ../glade/NewPrinterWindow.glade.h:27 - msgid "Connection" - msgstr "Connexió" - --#: ../glade/NewPrinterWindow.glade.h:29 -+#: ../glade/NewPrinterWindow.glade.h:28 - msgid "Data Bits" - msgstr "Bits de dades" - --#: ../glade/NewPrinterWindow.glade.h:30 -+#: ../glade/NewPrinterWindow.glade.h:29 - msgid "" - "Default\n" - "1200\n" -@@ -1817,7 +1813,7 @@ msgstr "" - "57600\n" - "115200" - --#: ../glade/NewPrinterWindow.glade.h:39 -+#: ../glade/NewPrinterWindow.glade.h:38 - msgid "" - "Default\n" - "8\n" -@@ -1827,7 +1823,7 @@ msgstr "" - "8\n" - "7" - --#: ../glade/NewPrinterWindow.glade.h:42 -+#: ../glade/NewPrinterWindow.glade.h:41 - msgid "" - "Default\n" - "None\n" -@@ -1839,7 +1835,7 @@ msgstr "" - "Senar\n" - "Parell" - --#: ../glade/NewPrinterWindow.glade.h:46 -+#: ../glade/NewPrinterWindow.glade.h:45 - msgid "" - "Default\n" - "None\n" -@@ -1853,117 +1849,117 @@ msgstr "" - "RTS/CTS (maquinari)\n" - "DTR/DSR (maquinari)" - --#: ../glade/NewPrinterWindow.glade.h:51 -+#: ../glade/NewPrinterWindow.glade.h:50 - #: ../glade/PrinterPropertiesDialog.glade.h:35 - msgid "Description:" - msgstr "Descripció:" - --#: ../glade/NewPrinterWindow.glade.h:52 ../troubleshoot/DeviceListed.py:40 -+#: ../glade/NewPrinterWindow.glade.h:51 ../troubleshoot/DeviceListed.py:40 - msgid "Device URI" - msgstr "URI del dispositiu" - --#: ../glade/NewPrinterWindow.glade.h:53 -+#: ../glade/NewPrinterWindow.glade.h:52 - msgid "Device description." - msgstr "Descripció del dispositiu." - --#: ../glade/NewPrinterWindow.glade.h:54 -+#: ../glade/NewPrinterWindow.glade.h:53 - msgid "DirectJet" - msgstr "DirectJet" - --#: ../glade/NewPrinterWindow.glade.h:56 -+#: ../glade/NewPrinterWindow.glade.h:55 - msgid "Driver details" - msgstr "Detalls del controlador" - --#: ../glade/NewPrinterWindow.glade.h:57 -+#: ../glade/NewPrinterWindow.glade.h:56 - msgid "Empty" - msgstr "Buit" - --#: ../glade/NewPrinterWindow.glade.h:58 -+#: ../glade/NewPrinterWindow.glade.h:57 - msgid "Find _Queue..." - msgstr "Cerca una c_ua..." - --#: ../glade/NewPrinterWindow.glade.h:59 -+#: ../glade/NewPrinterWindow.glade.h:58 - msgid "Flow Control" - msgstr "Control de flux" - --#: ../glade/NewPrinterWindow.glade.h:60 -+#: ../glade/NewPrinterWindow.glade.h:59 - msgid "" - "For the printer you have selected there are drivers available for download." - msgstr "" - "Hi ha controladors que es poden baixar per a la impressora que heu " - "seleccionat." - --#: ../glade/NewPrinterWindow.glade.h:61 -+#: ../glade/NewPrinterWindow.glade.h:60 - msgid "Free software" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:62 -+#: ../glade/NewPrinterWindow.glade.h:61 - msgid "Graphics:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:63 -+#: ../glade/NewPrinterWindow.glade.h:62 - msgid "Host:" - msgstr "Ordinador:" - --#: ../glade/NewPrinterWindow.glade.h:64 -+#: ../glade/NewPrinterWindow.glade.h:63 - msgid "Human-readable description such as \"HP LaserJet with Duplexer\"" - msgstr "Descripció de la impressora, com ara «HP LaserJet amb Duplexer»" - --#: ../glade/NewPrinterWindow.glade.h:65 -+#: ../glade/NewPrinterWindow.glade.h:64 - msgid "Human-readable location such as \"Lab 1\"" - msgstr "Descripció de la ubicació, per exemple «Laboratori 1»" - --#: ../glade/NewPrinterWindow.glade.h:67 -+#: ../glade/NewPrinterWindow.glade.h:66 - msgid "LPD" - msgstr "LPD" - --#: ../glade/NewPrinterWindow.glade.h:68 -+#: ../glade/NewPrinterWindow.glade.h:67 - msgid "License:" - msgstr "Llicència:" - --#: ../glade/NewPrinterWindow.glade.h:69 -+#: ../glade/NewPrinterWindow.glade.h:68 - #, fuzzy - msgid "Line art:" - msgstr "Estat de la impressora:" - --#: ../glade/NewPrinterWindow.glade.h:70 -+#: ../glade/NewPrinterWindow.glade.h:69 - msgid "Local Driver" - msgstr "Controlador local" - --#: ../glade/NewPrinterWindow.glade.h:71 -+#: ../glade/NewPrinterWindow.glade.h:70 - msgid "Make and model:" - msgstr "Fabricant i model:" - --#: ../glade/NewPrinterWindow.glade.h:72 -+#: ../glade/NewPrinterWindow.glade.h:71 - msgid "Manufacturer" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:73 -+#: ../glade/NewPrinterWindow.glade.h:72 - #, fuzzy - msgid "Network" - msgstr "Impressora de xarxa" - --#: ../glade/NewPrinterWindow.glade.h:75 -+#: ../glade/NewPrinterWindow.glade.h:74 - msgid "No, I do not accept this license" - msgstr "No, no accepto aquesta llicència" - --#: ../glade/NewPrinterWindow.glade.h:76 -+#: ../glade/NewPrinterWindow.glade.h:75 - msgid "Parity" - msgstr "Paritat" - --#: ../glade/NewPrinterWindow.glade.h:78 -+#: ../glade/NewPrinterWindow.glade.h:77 - msgid "Patented algorithms" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:79 -+#: ../glade/NewPrinterWindow.glade.h:78 - msgid "Photo:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:80 -+#: ../glade/NewPrinterWindow.glade.h:79 - msgid "Port number:" - msgstr "Número de port:" - --#: ../glade/NewPrinterWindow.glade.h:81 -+#: ../glade/NewPrinterWindow.glade.h:80 - msgid "" - "PostScript Printer Description (PPD) files can often be found on the driver " - "disk that comes with the printer. For PostScript printers they are often " -@@ -1973,78 +1969,78 @@ msgstr "" - "disc dels controladors de la impressora. Per a les impressores PostScript, " - "solen formar part del controlador del Windows®." - --#: ../glade/NewPrinterWindow.glade.h:82 -+#: ../glade/NewPrinterWindow.glade.h:81 - msgid "Printer model:" - msgstr "Model del la impressora:" - --#: ../glade/NewPrinterWindow.glade.h:83 -+#: ../glade/NewPrinterWindow.glade.h:82 - msgid "Probe" - msgstr "Sondeja" - --#: ../glade/NewPrinterWindow.glade.h:84 -+#: ../glade/NewPrinterWindow.glade.h:83 - msgid "Prompt user if authentication is required" - msgstr "Pregunta a l'usuari si cal autenticació" - --#: ../glade/NewPrinterWindow.glade.h:85 -+#: ../glade/NewPrinterWindow.glade.h:84 - msgid "Provide PPD file" - msgstr "Proporcioneu un fitxer PPD" - --#: ../glade/NewPrinterWindow.glade.h:86 -+#: ../glade/NewPrinterWindow.glade.h:85 - msgid "Queue:" - msgstr "Cua:" - --#: ../glade/NewPrinterWindow.glade.h:87 -+#: ../glade/NewPrinterWindow.glade.h:86 - msgid "SCSI" - msgstr "SCSI" - --#: ../glade/NewPrinterWindow.glade.h:88 -+#: ../glade/NewPrinterWindow.glade.h:87 - msgid "SMB" - msgstr "SMB" - --#: ../glade/NewPrinterWindow.glade.h:89 -+#: ../glade/NewPrinterWindow.glade.h:88 - msgid "Search for a printer driver to download" - msgstr "Cerca un controlador d'impressora a baixar" - --#: ../glade/NewPrinterWindow.glade.h:90 -+#: ../glade/NewPrinterWindow.glade.h:89 - #, fuzzy - msgid "Searching..." - msgstr "Cerca" - --#: ../glade/NewPrinterWindow.glade.h:91 -+#: ../glade/NewPrinterWindow.glade.h:90 - msgid "Select A File" - msgstr "Escolliu un fitxer" - --#: ../glade/NewPrinterWindow.glade.h:92 -+#: ../glade/NewPrinterWindow.glade.h:91 - msgid "Select printer from database" - msgstr "Seleccioneu una impressora de la base de dades" - --#: ../glade/NewPrinterWindow.glade.h:93 -+#: ../glade/NewPrinterWindow.glade.h:92 - msgid "Serial" - msgstr "Sèrie" - --#: ../glade/NewPrinterWindow.glade.h:94 -+#: ../glade/NewPrinterWindow.glade.h:93 - msgid "Set authentication details now" - msgstr "Estableix els detalls de l'autenticació" - --#: ../glade/NewPrinterWindow.glade.h:95 -+#: ../glade/NewPrinterWindow.glade.h:94 - msgid "Short name for this printer such as \"laserjet\"" - msgstr "Nom abreujat per a aquesta impressora, com ara «laserjet»" - --#: ../glade/NewPrinterWindow.glade.h:96 -+#: ../glade/NewPrinterWindow.glade.h:95 - msgid "Supplier:" - msgstr "Proveïdor:" - --#: ../glade/NewPrinterWindow.glade.h:97 -+#: ../glade/NewPrinterWindow.glade.h:96 - #, fuzzy - msgid "Support:" - msgstr "Proveïdor:" - --#: ../glade/NewPrinterWindow.glade.h:98 -+#: ../glade/NewPrinterWindow.glade.h:97 - #, fuzzy - msgid "Text:" - msgstr "Prova" - --#: ../glade/NewPrinterWindow.glade.h:99 -+#: ../glade/NewPrinterWindow.glade.h:98 - msgid "" - "The foomatic printer database contains various manufacturer provided " - "PostScript Printer Description (PPD) files and also can generate PPD files " -@@ -2058,7 +2054,7 @@ msgstr "" - "però, els fitxers PPD dels fabricants proporcionen un millor accés a la " - "impressora." - --#: ../glade/NewPrinterWindow.glade.h:100 -+#: ../glade/NewPrinterWindow.glade.h:99 - msgid "" - "These drivers do not come from your operating system supplier and will not " - "be covered by their commercial support. See the support and license terms " -@@ -2068,7 +2064,7 @@ msgstr "" - "no n'obtindreu assistència comercial. Vegeu les condicions d'assistència " - "tècnica i de llicència del proveïdor del controlador." - --#: ../glade/NewPrinterWindow.glade.h:101 -+#: ../glade/NewPrinterWindow.glade.h:100 - msgid "" - "This driver supports additional hardware that may be installed in the " - "printer." -@@ -2076,7 +2072,7 @@ msgstr "" - "Aquest controlador pot funcionar amb maquinari addicional que es pot " - "instal·lar a la impressora." - --#: ../glade/NewPrinterWindow.glade.h:102 -+#: ../glade/NewPrinterWindow.glade.h:101 - msgid "" - "This is done by assuming that options with the same name do have the same " - "meaning. Settings of options that are not present in the new PPD will be " -@@ -2086,7 +2082,7 @@ msgstr "" - "significat. Les opcions que no existeixin en el nou PPD es perdran, i les " - "que només apareguin al nou PPD es faran servir amb el valor predeterminat." - --#: ../glade/NewPrinterWindow.glade.h:103 -+#: ../glade/NewPrinterWindow.glade.h:102 - msgid "" - "This way all current option settings will be lost. The default settings of " - "the new PPD will be used. " -@@ -2094,19 +2090,19 @@ msgstr "" - "Es perdran totes les opcions de configuració actuals. Es farà servir la " - "configuració predeterminada del nou PPD. " - --#: ../glade/NewPrinterWindow.glade.h:104 -+#: ../glade/NewPrinterWindow.glade.h:103 - msgid "Try to copy the option settings over from the old PPD. " - msgstr "Intenta copiar les opcions de configuració de l'antic PPD. " - --#: ../glade/NewPrinterWindow.glade.h:105 -+#: ../glade/NewPrinterWindow.glade.h:104 - msgid "URI:" - msgstr "URI:" - --#: ../glade/NewPrinterWindow.glade.h:107 -+#: ../glade/NewPrinterWindow.glade.h:106 - msgid "Use the new PPD (Postscript Printer Description) as is." - msgstr "Empra el nou PPD (descripció d'impressora Postscript) tal com és." - --#: ../glade/NewPrinterWindow.glade.h:109 -+#: ../glade/NewPrinterWindow.glade.h:108 - msgid "" - "With this choice no driver download will be performed. In the next steps a " - "locally installed driver will be selected." -@@ -2114,24 +2110,24 @@ msgstr "" - "Amb aquesta opció no es baixarà cap controlador. En els passos següents se " - "seleccionarà un controlador instal·lat localment." - --#: ../glade/NewPrinterWindow.glade.h:110 -+#: ../glade/NewPrinterWindow.glade.h:109 - msgid "Yes, I accept this license" - msgstr "Sí, accepto aquesta llicència" - --#: ../glade/NewPrinterWindow.glade.h:111 -+#: ../glade/NewPrinterWindow.glade.h:110 - msgid "_Search" - msgstr "_Cerca" - --#: ../glade/NewPrinterWindow.glade.h:112 -+#: ../glade/NewPrinterWindow.glade.h:111 - msgid "_Verify..." - msgstr "_Verifica..." - --#: ../glade/NewPrinterWindow.glade.h:113 -+#: ../glade/NewPrinterWindow.glade.h:112 - #: ../glade/PrinterPropertiesDialog.glade.h:128 - msgid "move left" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:114 -+#: ../glade/NewPrinterWindow.glade.h:113 - #: ../glade/PrinterPropertiesDialog.glade.h:129 - #, fuzzy - msgid "move right" -@@ -3072,7 +3068,7 @@ msgstr "S'han imprimit correctament les - msgid "Remember to load paper of type '%s' into the printer first." - msgstr "" - --#: ../troubleshoot/PrintTestPage.py:399 -+#: ../troubleshoot/PrintTestPage.py:416 - msgid "Error submitting test page" - msgstr "S'ha produït un error en enviar la pàgina de prova" - -@@ -3284,6 +3280,10 @@ msgid "Select default printer" - msgstr "Seleccioneu la impressora predeterminada" - - #, fuzzy -+#~ msgid "HP Printer (HPLIP) via network" -+#~ msgstr "Nom de la impressora" -+ -+#, fuzzy - #~ msgid "Not Found" - #~ msgstr "No s'ha trobat" - -diff -up system-config-printer-1.1.5/po/cs.po.git-1.1.x system-config-printer-1.1.5/po/cs.po ---- system-config-printer-1.1.5/po/cs.po.git-1.1.x 2009-03-03 22:21:46.000000000 +0000 -+++ system-config-printer-1.1.5/po/cs.po 2009-03-10 17:43:31.000000000 +0000 -@@ -9,7 +9,7 @@ msgid "" - msgstr "" - "Project-Id-Version: printconf\n" - "Report-Msgid-Bugs-To: https://bugzilla.redhat.com/bugzilla\n" --"POT-Creation-Date: 2009-03-02 23:22+0000\n" -+"POT-Creation-Date: 2009-03-10 16:51+0000\n" - "PO-Revision-Date: 2008-03-21 15:45+0100\n" - "Last-Translator: Vojtěch Horký \n" - "Language-Team: Czech \n" -@@ -55,11 +55,11 @@ msgstr "" - msgid "Enter IP address" - msgstr "IP adresa serveru." - --#: ../authconn.py:35 ../glade/NewPrinterWindow.glade.h:108 -+#: ../authconn.py:35 ../glade/NewPrinterWindow.glade.h:107 - msgid "Username:" - msgstr "Jméno uživatele:" - --#: ../authconn.py:36 ../glade/NewPrinterWindow.glade.h:77 -+#: ../authconn.py:36 ../glade/NewPrinterWindow.glade.h:76 - msgid "Password:" - msgstr "Heslo:" - -@@ -68,7 +68,7 @@ msgstr "Heslo:" - msgid "Domain:" - msgstr "Horní okraj:" - --#: ../authconn.py:46 -+#: ../authconn.py:46 ../authconn.py:409 - msgid "Authentication" - msgstr "Autentizace" - -@@ -76,45 +76,54 @@ msgstr "Autentizace" - msgid "Remember password" - msgstr "" - --#: ../authconn.py:211 ../authconn.py:232 -+#: ../authconn.py:208 -+#, python-format -+msgid "Unauthorized request (%s)" -+msgstr "" -+ -+#: ../authconn.py:209 -+msgid "You are not authorized to carry out therequested action." -+msgstr "" -+ -+#: ../authconn.py:212 ../authconn.py:233 - #, fuzzy - msgid "Operation canceled" - msgstr "Operační politika:" - --#: ../authconn.py:253 -+#: ../authconn.py:250 - #, fuzzy, python-format - msgid "CUPS server error (%s)" - msgstr "Chyba serveru CUPS" - --#: ../authconn.py:255 ../errordialogs.py:57 --#: ../troubleshoot/PrintTestPage.py:400 -+#: ../authconn.py:252 ../errordialogs.py:56 ../errordialogs.py:70 -+msgid "CUPS server error" -+msgstr "Chyba serveru CUPS" -+ -+#: ../authconn.py:261 ../errordialogs.py:57 -+#: ../troubleshoot/PrintTestPage.py:417 - #, python-format - msgid "There was an error during the CUPS operation: '%s'." - msgstr "V CUPS se při operaci vyskytla chyba: '%s'." - --#: ../authconn.py:258 -+#: ../authconn.py:264 - #, fuzzy - msgid "Retry" - msgstr "Reset" - --#: ../authconn.py:379 ../authconn.py:381 ../errordialogs.py:65 ../pysmb.py:75 -+#: ../authconn.py:385 ../authconn.py:387 ../errordialogs.py:65 ../pysmb.py:75 - #: ../pysmb.py:77 - msgid "Not authorized" - msgstr "Neautorizován" - --#: ../authconn.py:382 ../pysmb.py:78 -+#: ../authconn.py:388 ../pysmb.py:78 - msgid "The password may be incorrect." - msgstr "Heslo může být nesprávné." - --#: ../authconn.py:400 -+#: ../authconn.py:407 - #, fuzzy, python-format - msgid "Authentication (%s)" - msgstr "Autentizace" - --#: ../errordialogs.py:56 ../errordialogs.py:70 --msgid "CUPS server error" --msgstr "Chyba serveru CUPS" -- - #: ../errordialogs.py:66 - msgid "" - "The password may be incorrect, or the server may be configured to deny " -@@ -143,7 +152,7 @@ msgstr "Je potřeba upgrade" - msgid "Server error" - msgstr "Chyba serveru" - --#: ../errordialogs.py:82 ../system-config-printer.py:1219 -+#: ../errordialogs.py:82 ../system-config-printer.py:1223 - msgid "Not connected" - msgstr "Nepřipojeno" - -@@ -165,7 +174,7 @@ msgstr "" - msgid "_New Group from Selection" - msgstr "" - --#: ../GroupsPane.py:98 ../system-config-printer.py:393 -+#: ../GroupsPane.py:98 ../system-config-printer.py:397 - #, fuzzy - msgid "_Rename" - msgstr "_Uvolnit" -@@ -234,7 +243,7 @@ msgid "Document" - msgstr "Dokument" - - #: ../jobviewer.py:212 ../my-default-printer.py:153 --#: ../system-config-printer.py:366 ../system-config-printer.py:1367 -+#: ../system-config-printer.py:370 ../system-config-printer.py:1371 - #: ../troubleshoot/PrintTestPage.py:84 - msgid "Printer" - msgstr "Tiskárna" -@@ -272,8 +281,8 @@ msgstr "Stav tisku dokumentu" - - #: ../jobviewer.py:386 ../jobviewer.py:451 ../jobviewer.py:452 - #: ../jobviewer.py:492 ../jobviewer.py:600 ../jobviewer.py:727 --#: ../jobviewer.py:1196 ../jobviewer.py:1222 ../system-config-printer.py:2546 --#: ../glade/NewPrinterWindow.glade.h:106 -+#: ../jobviewer.py:1196 ../jobviewer.py:1222 ../system-config-printer.py:2556 -+#: ../glade/NewPrinterWindow.glade.h:105 - #: ../troubleshoot/ChooseNetworkPrinter.py:101 - #: ../troubleshoot/ChooseNetworkPrinter.py:102 - #: ../troubleshoot/ChooseNetworkPrinter.py:105 -@@ -366,12 +375,12 @@ msgstr "Podržet do:" - msgid "Pending" - msgstr "Čekající" - --#: ../jobviewer.py:591 ../system-config-printer.py:186 -+#: ../jobviewer.py:591 ../system-config-printer.py:190 - #: ../troubleshoot/PrintTestPage.py:43 - msgid "Processing" - msgstr "Provádění" - --#: ../jobviewer.py:592 ../system-config-printer.py:188 -+#: ../jobviewer.py:592 ../system-config-printer.py:192 - #: ../troubleshoot/PrintTestPage.py:44 - msgid "Stopped" - msgstr "Zastaveno" -@@ -485,8 +494,8 @@ msgstr "_Použít výchozí nastavení s - msgid "_Set Default" - msgstr "_Nastavit jako výchozí" - --#: ../my-default-printer.py:158 ../system-config-printer.py:423 --#: ../system-config-printer.py:3660 ../troubleshoot/ChooseNetworkPrinter.py:37 -+#: ../my-default-printer.py:158 ../system-config-printer.py:427 -+#: ../system-config-printer.py:3675 ../troubleshoot/ChooseNetworkPrinter.py:37 - #: ../troubleshoot/ChoosePrinter.py:38 - msgid "Location" - msgstr "Umístění" -@@ -519,7 +528,7 @@ msgstr "Výchozí tiskárna" - msgid "Authenticated" - msgstr "Autentizace" - --#: ../ppdippstr.py:50 ../system-config-printer.py:6259 -+#: ../ppdippstr.py:50 ../system-config-printer.py:6207 - msgid "None" - msgstr "Žádný" - -@@ -738,136 +747,136 @@ msgstr "" - msgid "1200 dpi, photo, black + color cartridge, photo paper" - msgstr "" - --#: ../system-config-printer.py:127 -+#: ../system-config-printer.py:131 - #, fuzzy - msgid "To do this, select System->Administration->Firewall from the main menu." - msgstr "" - "Ke spuštění tohoto nástroje, vyberte Systém->Správa->Tisk z hlavního menu." - --#: ../system-config-printer.py:185 -+#: ../system-config-printer.py:189 - msgid "Idle" - msgstr "Nečinný" - --#: ../system-config-printer.py:187 -+#: ../system-config-printer.py:191 - msgid "Busy" - msgstr "V činnosti" - --#: ../system-config-printer.py:372 ../system-config-printer.py:1373 -+#: ../system-config-printer.py:376 ../system-config-printer.py:1377 - #, fuzzy - msgid "Class" - msgstr "Nová třída" - --#: ../system-config-printer.py:399 -+#: ../system-config-printer.py:403 - #, fuzzy - msgid "Set As De_fault" - msgstr "_Nastavit jako výchozí" - --#: ../system-config-printer.py:403 -+#: ../system-config-printer.py:407 - #, fuzzy - msgid "_Create class" - msgstr "Vzdálené síťové třídy" - --#: ../system-config-printer.py:405 -+#: ../system-config-printer.py:409 - #, fuzzy - msgid "View Print _Queue" - msgstr "Nová tiskárna" - --#: ../system-config-printer.py:407 -+#: ../system-config-printer.py:411 - msgid "_Add to Group" - msgstr "" - --#: ../system-config-printer.py:409 -+#: ../system-config-printer.py:413 - msgid "Save Results as _Group" - msgstr "" - --#: ../system-config-printer.py:411 -+#: ../system-config-printer.py:415 - msgid "Save Filter as _Search Group" - msgstr "" - --#: ../system-config-printer.py:415 -+#: ../system-config-printer.py:419 - #, fuzzy - msgid "E_nabled" - msgstr "Povolený" - --#: ../system-config-printer.py:417 -+#: ../system-config-printer.py:421 - #, fuzzy - msgid "_Shared" - msgstr "Sdílená" - --#: ../system-config-printer.py:421 ../troubleshoot/ChooseNetworkPrinter.py:35 -+#: ../system-config-printer.py:425 ../troubleshoot/ChooseNetworkPrinter.py:35 - #: ../troubleshoot/ChoosePrinter.py:36 ../troubleshoot/DeviceListed.py:36 - msgid "Name" - msgstr "Jméno" - --#: ../system-config-printer.py:422 -+#: ../system-config-printer.py:426 - #, fuzzy - msgid "Description" - msgstr "Popis:" - --#: ../system-config-printer.py:424 -+#: ../system-config-printer.py:428 - msgid "Manufacturer / Model" - msgstr "" - - #. Printer state reasons list --#: ../system-config-printer.py:499 -+#: ../system-config-printer.py:503 - msgid "Message" - msgstr "Zpráva" - --#: ../system-config-printer.py:534 -+#: ../system-config-printer.py:538 - #, fuzzy - msgid "Problems?" - msgstr "Detekce" - --#: ../system-config-printer.py:637 ../system-config-printer.py:639 -+#: ../system-config-printer.py:641 ../system-config-printer.py:643 - msgid "Members of this class" - msgstr "Členové této třídy" - --#: ../system-config-printer.py:638 ../system-config-printer.py:640 -+#: ../system-config-printer.py:642 ../system-config-printer.py:644 - msgid "Others" - msgstr "Ostatní" - --#: ../system-config-printer.py:641 -+#: ../system-config-printer.py:645 - msgid "Devices" - msgstr "Zařízení" - --#: ../system-config-printer.py:642 -+#: ../system-config-printer.py:646 - #, fuzzy - msgid "Connections" - msgstr "Připojování" - --#: ../system-config-printer.py:643 -+#: ../system-config-printer.py:647 - msgid "Makes" - msgstr "Umožňuje" - --#: ../system-config-printer.py:644 -+#: ../system-config-printer.py:648 - msgid "Models" - msgstr "Modely" - --#: ../system-config-printer.py:645 -+#: ../system-config-printer.py:649 - msgid "Drivers" - msgstr "Ovladače" - --#: ../system-config-printer.py:646 ../glade/NewPrinterWindow.glade.h:55 -+#: ../system-config-printer.py:650 ../glade/NewPrinterWindow.glade.h:54 - #, fuzzy - msgid "Downloadable Drivers" - msgstr "Stažitelné ovladače" - --#: ../system-config-printer.py:647 -+#: ../system-config-printer.py:651 - msgid "Users" - msgstr "Uživatelé" - --#: ../system-config-printer.py:682 -+#: ../system-config-printer.py:686 - #, fuzzy - msgid "Automatic rotation" - msgstr "Automatická rotace" - --#: ../system-config-printer.py:989 -+#: ../system-config-printer.py:993 - #, fuzzy, python-format - msgid "Printer Properties - '%s' on %s" - msgstr "Přehled o tiskárně" - - #. The Conflict button was pressed. --#: ../system-config-printer.py:996 -+#: ../system-config-printer.py:1000 - msgid "" - "There are conflicting options.\n" - "Changes can only be applied after\n" -@@ -876,80 +885,80 @@ msgstr "" - "Ve zvoleném nastavení jsou některé volby v konfliktu.\n" - "Změny bude možné uložit, až budou konflikty odstraněny." - --#: ../system-config-printer.py:1214 -+#: ../system-config-printer.py:1218 - #, python-format - msgid "Printer configuration - %s" - msgstr "Konfigurace tiskárny - %s" - --#: ../system-config-printer.py:1217 -+#: ../system-config-printer.py:1221 - #, python-format - msgid "Connected to %s" - msgstr "Připojeno k %s" - - #. Update our copy of the printer's settings. --#: ../system-config-printer.py:1257 ../system-config-printer.py:2042 -+#: ../system-config-printer.py:1261 ../system-config-printer.py:2046 - msgid "obtaining queue details" - msgstr "" - --#: ../system-config-printer.py:1295 -+#: ../system-config-printer.py:1299 - msgid "Remove from Group" - msgstr "" - --#: ../system-config-printer.py:1361 -+#: ../system-config-printer.py:1365 - #, fuzzy - msgid "Network printer (discovered)" - msgstr "Síťová tiskárna" - --#: ../system-config-printer.py:1364 -+#: ../system-config-printer.py:1368 - msgid "Network class (discovered)" - msgstr "" - --#: ../system-config-printer.py:1370 ../system-config-printer.py:5524 --#: ../system-config-printer.py:5594 ../system-config-printer.py:5596 -+#: ../system-config-printer.py:1374 ../system-config-printer.py:5519 -+#: ../system-config-printer.py:5589 ../system-config-printer.py:5591 - msgid "Fax" - msgstr "" - --#: ../system-config-printer.py:1376 ../system-config-printer.py:1382 -+#: ../system-config-printer.py:1380 ../system-config-printer.py:1386 - #: ../troubleshoot/LocalOrRemote.py:30 - msgid "Network printer" - msgstr "Síťová tiskárna" - --#: ../system-config-printer.py:1379 -+#: ../system-config-printer.py:1383 - #, fuzzy - msgid "Network print share" - msgstr "Síťová tiskárna" - --#: ../system-config-printer.py:1508 ../glade/ConnectingDialog.glade.h:2 -+#: ../system-config-printer.py:1512 ../glade/ConnectingDialog.glade.h:2 - #, no-c-format, python-format - msgid "Opening connection to %s" - msgstr "" - --#: ../system-config-printer.py:1887 -+#: ../system-config-printer.py:1891 - msgid "Installable Options" - msgstr "Volby instalace" - --#: ../system-config-printer.py:1888 -+#: ../system-config-printer.py:1892 - #: ../glade/PrinterPropertiesDialog.glade.h:109 - msgid "Printer Options" - msgstr "Nastavení tiskárny" - --#: ../system-config-printer.py:1924 -+#: ../system-config-printer.py:1928 - #, python-format - msgid "modifying class %s" - msgstr "" - --#: ../system-config-printer.py:1926 ../system-config-printer.py:3019 --#: ../system-config-printer.py:3044 ../system-config-printer.py:6547 --#: ../system-config-printer.py:6559 ../system-config-printer.py:6581 -+#: ../system-config-printer.py:1930 ../system-config-printer.py:3037 -+#: ../system-config-printer.py:3062 ../system-config-printer.py:6495 -+#: ../system-config-printer.py:6507 ../system-config-printer.py:6529 - #, fuzzy, python-format - msgid "modifying printer %s" - msgstr "Přidávám tiskárnu" - --#: ../system-config-printer.py:1941 -+#: ../system-config-printer.py:1945 - msgid "This will delete this class!" - msgstr "Tato třída bude smazána!" - --#: ../system-config-printer.py:1942 -+#: ../system-config-printer.py:1946 - msgid "Proceed anyway?" - msgstr "Přesto provést?" - -@@ -957,50 +966,50 @@ msgstr "Přesto provést?" - #. but we have never fetched the server settings to see whether - #. the server is publishing shared printers. Fetch the settings - #. now so that we can update the "not published" label if necessary. --#: ../system-config-printer.py:2030 ../system-config-printer.py:3203 -+#: ../system-config-printer.py:2034 ../system-config-printer.py:3221 - #, fuzzy - msgid "fetching server settings" - msgstr "Základní nastavení serveru" - --#: ../system-config-printer.py:2100 -+#: ../system-config-printer.py:2104 - #, fuzzy - msgid "Set Default Printer" - msgstr "Výchozí tiskárna" - --#: ../system-config-printer.py:2102 -+#: ../system-config-printer.py:2106 - msgid "Do you want to set this as the system-wide default printer?" - msgstr "" - --#: ../system-config-printer.py:2104 -+#: ../system-config-printer.py:2108 - #, fuzzy - msgid "Set as the _system-wide default printer" - msgstr "Toto je výchozí tiskárna" - --#: ../system-config-printer.py:2106 -+#: ../system-config-printer.py:2110 - msgid "_Clear my personal default setting" - msgstr "" - --#: ../system-config-printer.py:2107 -+#: ../system-config-printer.py:2111 - #, fuzzy - msgid "Set as my _personal default printer" - msgstr "Vyberte výchozí tiskárnu" - --#: ../system-config-printer.py:2112 -+#: ../system-config-printer.py:2116 - #, fuzzy - msgid "setting default printer" - msgstr "Vyberte výchozí tiskárnu" - --#: ../system-config-printer.py:2169 -+#: ../system-config-printer.py:2173 - #, fuzzy - msgid "printing test page" - msgstr "Tisk testovací stránky" - --#: ../system-config-printer.py:2182 ../system-config-printer.py:2217 --#: ../system-config-printer.py:5418 -+#: ../system-config-printer.py:2186 ../system-config-printer.py:2221 -+#: ../system-config-printer.py:5413 - msgid "Not possible" - msgstr "Není možné" - --#: ../system-config-printer.py:2183 ../system-config-printer.py:2218 -+#: ../system-config-printer.py:2187 ../system-config-printer.py:2222 - msgid "" - "The remote server did not accept the print job, most likely because the " - "printer is not shared." -@@ -1008,20 +1017,20 @@ msgstr "" - "Vzdálený tiskový server tiskovou úlohu nepřevzal. Tiskárna zřejmě není " - "sdílena." - --#: ../system-config-printer.py:2195 ../system-config-printer.py:2210 -+#: ../system-config-printer.py:2199 ../system-config-printer.py:2214 - msgid "Submitted" - msgstr "Odesláno" - --#: ../system-config-printer.py:2196 -+#: ../system-config-printer.py:2200 - #, python-format - msgid "Test page submitted as job %d" - msgstr "Testovací stránka byla odeslána jako úloha %d" - --#: ../system-config-printer.py:2203 -+#: ../system-config-printer.py:2207 - msgid "sending maintenance command" - msgstr "" - --#: ../system-config-printer.py:2211 -+#: ../system-config-printer.py:2215 - #, python-format - msgid "Maintenance command submitted as job %d" - msgstr "Příkaz údržby byl odeslán jako úloha %d" -@@ -1029,76 +1038,76 @@ msgstr "Příkaz údržby byl odeslán j - #. The underlying cupsGetPPD2() function returned NULL without - #. setting an IPP error, so it'll be something like a failed - #. connection. --#: ../system-config-printer.py:2285 ../system-config-printer.py:2381 -+#: ../system-config-printer.py:2289 ../system-config-printer.py:2385 - msgid "Error" - msgstr "Chyba" - --#: ../system-config-printer.py:2286 -+#: ../system-config-printer.py:2290 - msgid "There was a problem connecting to the CUPS server." - msgstr "Při připojování k CUPS serveru nastal problém." - --#: ../system-config-printer.py:2382 -+#: ../system-config-printer.py:2386 - #, python-format - msgid "Option '%s' has value '%s' and cannot be edited." - msgstr "Volba '%s' má hodnotu '%s' a nemůže být změněna." - --#: ../system-config-printer.py:2466 -+#: ../system-config-printer.py:2476 - msgid "Marker levels are not reported for this printer." - msgstr "" - --#: ../system-config-printer.py:2763 -+#: ../system-config-printer.py:2773 - #, fuzzy - msgid "Cannot Rename" - msgstr "_Uvolnit" - --#: ../system-config-printer.py:2764 -+#: ../system-config-printer.py:2774 - #, fuzzy - msgid "There are queued jobs." - msgstr "Nejsou k dispozici žádné fronty" - --#: ../system-config-printer.py:2822 -+#: ../system-config-printer.py:2840 - #, fuzzy - msgid "renaming printer" - msgstr "Přidávám tiskárnu" - - #. for classes make sure all members - #. will get added --#: ../system-config-printer.py:2907 -+#: ../system-config-printer.py:2925 - #, fuzzy - msgid "copying printer" - msgstr "Přidávám tiskárnu" - --#: ../system-config-printer.py:2971 -+#: ../system-config-printer.py:2989 - #, fuzzy, python-format - msgid "Really delete class '%s'?" - msgstr "Skutečně smazat třídu %s?" - --#: ../system-config-printer.py:2973 -+#: ../system-config-printer.py:2991 - #, fuzzy, python-format - msgid "Really delete printer '%s'?" - msgstr "Skutečně smazat tiskárnu %s?" - --#: ../system-config-printer.py:2975 -+#: ../system-config-printer.py:2993 - #, fuzzy - msgid "Really delete selected destinations?" - msgstr "Skutečně smazat tiskárnu %s?" - --#: ../system-config-printer.py:2996 -+#: ../system-config-printer.py:3014 - #, fuzzy, python-format - msgid "deleting printer %s" - msgstr "Přidávám tiskárnu" - --#: ../system-config-printer.py:3070 -+#: ../system-config-printer.py:3088 - msgid "Publish Shared Printers" - msgstr "" - --#: ../system-config-printer.py:3071 -+#: ../system-config-printer.py:3089 - msgid "" - "Shared printers are not available to other people unless the 'Publish shared " - "printers' option is enabled in the server settings." - msgstr "" - --#: ../system-config-printer.py:3264 -+#: ../system-config-printer.py:3282 - #, fuzzy - msgid "modifying server settings" - msgstr "Základní nastavení serveru" -@@ -1109,36 +1118,36 @@ msgstr "Základní nastavení serveru - #. be unblocked. Unfortunately, this is not yet possible - #. (bug #440469). However, we can display a dialog to suggest - #. that now might be a good time to review the firewall settings. --#: ../system-config-printer.py:3289 -+#: ../system-config-printer.py:3307 - #, fuzzy - msgid "Review Firewall" - msgstr "Zkontrolovat firewall na serveru" - --#: ../system-config-printer.py:3290 -+#: ../system-config-printer.py:3308 - msgid "" - "You may need to adjust the firewall to allow network printing to this " - "computer." - msgstr "" - --#: ../system-config-printer.py:3623 -+#: ../system-config-printer.py:3638 - msgid "Browsing not available (pysmbc not installed)" - msgstr "" - - #. SMB list columns --#: ../system-config-printer.py:3629 -+#: ../system-config-printer.py:3644 - msgid "Share" - msgstr "Sdílení" - --#: ../system-config-printer.py:3635 -+#: ../system-config-printer.py:3650 - msgid "Comment" - msgstr "Poznámka" - - #. IPP list columns --#: ../system-config-printer.py:3654 -+#: ../system-config-printer.py:3669 - msgid "Queue" - msgstr "Fronta" - --#: ../system-config-printer.py:3668 -+#: ../system-config-printer.py:3683 - msgid "" - "PostScript Printer Description files (*.ppd, *.PPD, *.ppd.gz, *.PPD.gz, *." - "PPD.GZ)" -@@ -1146,71 +1155,71 @@ msgstr "" - "Tiskové popisy ve formátu PostScript (*.ppd, *.PPD, *.ppd.gz, *.PPD.gz, *." - "PPD.GZ)" - --#: ../system-config-printer.py:3677 -+#: ../system-config-printer.py:3692 - msgid "All files (*)" - msgstr "Všechny soubory (*)" - --#: ../system-config-printer.py:3713 ../system-config-printer.py:5970 --#: ../system-config-printer.py:6008 ../applet.py:124 -+#: ../system-config-printer.py:3728 ../system-config-printer.py:5918 -+#: ../system-config-printer.py:5956 ../applet.py:124 - msgid "Search" - msgstr "Hledat" - --#: ../system-config-printer.py:3736 ../system-config-printer.py:3760 --#: ../glade/NewPrinterWindow.glade.h:74 -+#: ../system-config-printer.py:3751 ../system-config-printer.py:3775 -+#: ../glade/NewPrinterWindow.glade.h:73 - msgid "New Printer" - msgstr "Nová tiskárna" - --#: ../system-config-printer.py:3747 -+#: ../system-config-printer.py:3762 - msgid "New Class" - msgstr "Nová třída" - --#: ../system-config-printer.py:3752 -+#: ../system-config-printer.py:3767 - msgid "Change Device URI" - msgstr "Změnit URI zařízení" - --#: ../system-config-printer.py:3758 -+#: ../system-config-printer.py:3773 - msgid "Change Driver" - msgstr "Jiný ovladač" - --#: ../system-config-printer.py:3927 ../system-config-printer.py:3993 --#: ../system-config-printer.py:4289 ../system-config-printer.py:4487 --#: ../system-config-printer.py:5772 ../system-config-printer.py:5995 -+#: ../system-config-printer.py:3942 ../system-config-printer.py:4008 -+#: ../system-config-printer.py:4304 ../system-config-printer.py:4502 -+#: ../system-config-printer.py:5762 ../system-config-printer.py:5943 - #, fuzzy - msgid "Searching" - msgstr "Vyhledávám" - --#: ../system-config-printer.py:3928 -+#: ../system-config-printer.py:3943 - #, fuzzy - msgid "Searching for downloadable drivers" - msgstr "Vyhledávám ovladače" - --#: ../system-config-printer.py:3994 ../system-config-printer.py:4290 -+#: ../system-config-printer.py:4009 ../system-config-printer.py:4305 - #, fuzzy - msgid "Searching for drivers" - msgstr "Vyhledávám ovladače" - --#: ../system-config-printer.py:4488 ../system-config-printer.py:5773 -+#: ../system-config-printer.py:4503 ../system-config-printer.py:5763 - #, fuzzy - msgid "Searching for printers" - msgstr "Nové jméno pro tiskárnu" - --#: ../system-config-printer.py:4497 -+#: ../system-config-printer.py:4512 - #, fuzzy - msgid "fetching device list" - msgstr "Základní nastavení serveru" - - #. Tell the user why he needs the plugin --#: ../system-config-printer.py:4579 -+#: ../system-config-printer.py:4594 - msgid "For this printer a proprietary driver plugin from HP is available.\n" - msgstr "" - --#: ../system-config-printer.py:4582 -+#: ../system-config-printer.py:4597 - msgid "" - "The installation of the plugin is required for your printer to work.\n" - "\n" - msgstr "" - --#: ../system-config-printer.py:4585 -+#: ../system-config-printer.py:4600 - msgid "" - "Installing the plugin is optional, it completes or enhances the " - "functionality\n" -@@ -1218,295 +1227,287 @@ msgid "" - "\n" - msgstr "" - --#: ../system-config-printer.py:4589 -+#: ../system-config-printer.py:4604 - msgid "The plugin provides the following features:\n" - msgstr "" - --#: ../system-config-printer.py:4592 -+#: ../system-config-printer.py:4607 - msgid " - Printing support\n" - msgstr "" - --#: ../system-config-printer.py:4595 -+#: ../system-config-printer.py:4610 - msgid " - Faster printing\n" - msgstr "" - --#: ../system-config-printer.py:4598 -+#: ../system-config-printer.py:4613 - msgid " - Better printout quality\n" - msgstr "" - --#: ../system-config-printer.py:4601 -+#: ../system-config-printer.py:4616 - msgid " - Extra printing features\n" - msgstr "" - --#: ../system-config-printer.py:4604 -+#: ../system-config-printer.py:4619 - msgid " - Scanning support\n" - msgstr "" - --#: ../system-config-printer.py:4607 -+#: ../system-config-printer.py:4622 - msgid " - Faster scanning\n" - msgstr "" - --#: ../system-config-printer.py:4610 -+#: ../system-config-printer.py:4625 - msgid " - Better scanning image quality\n" - msgstr "" - --#: ../system-config-printer.py:4613 -+#: ../system-config-printer.py:4628 - msgid " - Faxing support\n" - msgstr "" - --#: ../system-config-printer.py:4616 -+#: ../system-config-printer.py:4631 - msgid " - Extra fax features\n" - msgstr "" - --#: ../system-config-printer.py:4619 -+#: ../system-config-printer.py:4634 - msgid " - Better Input/Output support\n" - msgstr "" - --#: ../system-config-printer.py:4622 -+#: ../system-config-printer.py:4637 - msgid " - Extra user interface features\n" - msgstr "" - --#: ../system-config-printer.py:4625 -+#: ../system-config-printer.py:4640 - msgid " - Other extra features\n" - msgstr "" - --#: ../system-config-printer.py:4630 -+#: ../system-config-printer.py:4645 - #, fuzzy - msgid "Install plugin" - msgstr "Volby instalace" - --#: ../system-config-printer.py:4631 -+#: ../system-config-printer.py:4646 - #, fuzzy - msgid "Do not set up printer" - msgstr "Vyberte tiskárnu" - --#: ../system-config-printer.py:4632 -+#: ../system-config-printer.py:4647 - msgid "Set up without plugin" - msgstr "" - --#: ../system-config-printer.py:4634 ../troubleshoot/PrintTestPage.py:118 -+#: ../system-config-printer.py:4649 ../troubleshoot/PrintTestPage.py:118 - msgid "Yes" - msgstr "Ano" - --#: ../system-config-printer.py:4635 ../troubleshoot/PrintTestPage.py:119 -+#: ../system-config-printer.py:4650 ../troubleshoot/PrintTestPage.py:119 - msgid "No" - msgstr "Ne" - --#: ../system-config-printer.py:4809 ../system-config-printer.py:4813 -+#: ../system-config-printer.py:4824 ../system-config-printer.py:4828 - msgid " (Current)" - msgstr " (Aktuální)" - --#: ../system-config-printer.py:4845 --msgid "HP Printer (HPLIP)" --msgstr "" -- --#: ../system-config-printer.py:4886 -+#: ../system-config-printer.py:4881 - msgid "Other" - msgstr "Ostatní" - - #. device-info - #. PhysicalDevice obj - #. Separator? --#: ../system-config-printer.py:4902 -+#: ../system-config-printer.py:4897 - #, fuzzy - msgid "Network Printer" - msgstr "Síťová tiskárna" - --#: ../system-config-printer.py:4906 -+#: ../system-config-printer.py:4901 - #, fuzzy - msgid "Find Network Printer" - msgstr "Síťová tiskárna" - --#: ../system-config-printer.py:4979 ../system-config-printer.py:5376 -+#: ../system-config-printer.py:4974 ../system-config-printer.py:5371 - #, fuzzy - msgid "Scanning..." - msgstr "Prohledávám..." - --#: ../system-config-printer.py:5034 ../system-config-printer.py:5798 -+#: ../system-config-printer.py:5029 - #, fuzzy - msgid "No Print Shares" - msgstr "Síťová tiskárna" - --#: ../system-config-printer.py:5035 -+#: ../system-config-printer.py:5030 - msgid "" - "There were no print shares found. Please check that the Samba service is " - "marked as trusted in your firewall configuration." - msgstr "" - --#: ../system-config-printer.py:5296 ../system-config-printer.py:5357 -+#: ../system-config-printer.py:5291 ../system-config-printer.py:5352 - msgid "Print Share Verified" - msgstr "" - --#: ../system-config-printer.py:5297 ../system-config-printer.py:5358 -+#: ../system-config-printer.py:5292 ../system-config-printer.py:5353 - msgid "This print share is accessible." - msgstr "Tato tiskárna není dostupná." - --#: ../system-config-printer.py:5302 ../system-config-printer.py:5362 -+#: ../system-config-printer.py:5297 ../system-config-printer.py:5357 - msgid "This print share is not accessible." - msgstr "Tato sdílená tiskárna není dostupná." - --#: ../system-config-printer.py:5305 -+#: ../system-config-printer.py:5300 - #, fuzzy - msgid "Print Share Inaccessible" - msgstr "Tato tiskárna není dostupná." - --#: ../system-config-printer.py:5361 -+#: ../system-config-printer.py:5356 - msgid "Inaccessible" - msgstr "Nedostupná" - --#: ../system-config-printer.py:5419 -+#: ../system-config-printer.py:5414 - #, fuzzy, python-format - msgid "It is not possible to obtain a list of queues from '%s'." - msgstr "Od tohoto stroje není možné získat seznam front." - --#: ../system-config-printer.py:5421 -+#: ../system-config-printer.py:5416 - msgid "" - "Obtaining a list of queues is a CUPS extension to IPP. Network printers do " - "not support it." - msgstr "" - --#: ../system-config-printer.py:5424 -+#: ../system-config-printer.py:5419 - msgid "No queues" - msgstr "Žádné fronty" - --#: ../system-config-printer.py:5425 -+#: ../system-config-printer.py:5420 - msgid "There are no queues available." - msgstr "Nejsou k dispozici žádné fronty" - --#: ../system-config-printer.py:5516 -+#: ../system-config-printer.py:5511 - msgid "Parallel Port" - msgstr "" - --#: ../system-config-printer.py:5518 -+#: ../system-config-printer.py:5513 - #, fuzzy - msgid "Serial Port" - msgstr "Sériový" - --#: ../system-config-printer.py:5520 -+#: ../system-config-printer.py:5515 - #, fuzzy - msgid "USB" - msgstr "SMB" - --#: ../system-config-printer.py:5522 ../system-config-printer.py:5525 -+#: ../system-config-printer.py:5517 ../system-config-printer.py:5520 - msgid "HP Linux Imaging and Printing (HPLIP)" - msgstr "" - --#: ../system-config-printer.py:5527 -+#: ../system-config-printer.py:5522 - #, fuzzy - msgid "Hardware Abstraction Layer (HAL)" - msgstr "Pomocí HAL (vrstva abstrakce hardware) byla detekována tiskárna." - --#: ../system-config-printer.py:5529 -+#: ../system-config-printer.py:5524 - msgid "AppSocket/HP JetDirect" - msgstr "" - --#: ../system-config-printer.py:5538 -+#: ../system-config-printer.py:5533 - #, python-format - msgid "LPD/LPR queue '%s'" - msgstr "" - --#: ../system-config-printer.py:5540 -+#: ../system-config-printer.py:5535 - #, fuzzy - msgid "LPD/LPR queue" - msgstr "LPD" - --#: ../system-config-printer.py:5543 -+#: ../system-config-printer.py:5538 - msgid "Windows Printer via SAMBA" - msgstr "" - --#: ../system-config-printer.py:5545 ../glade/NewPrinterWindow.glade.h:66 -+#: ../system-config-printer.py:5540 ../glade/NewPrinterWindow.glade.h:65 - msgid "IPP" - msgstr "IPP" - --#: ../system-config-printer.py:5547 -+#: ../system-config-printer.py:5542 - msgid "HTTP" - msgstr "" - --#: ../system-config-printer.py:5632 -+#: ../system-config-printer.py:5624 - msgid "A printer connected to the parallel port." - msgstr "Tiskárna připojená k paralelnímu portu." - --#: ../system-config-printer.py:5634 -+#: ../system-config-printer.py:5626 - msgid "A printer connected to a USB port." - msgstr "Tiskárna připojená k USB portu." - --#: ../system-config-printer.py:5636 -+#: ../system-config-printer.py:5628 - msgid "" - "HPLIP software driving a printer, or the printer function of a multi-" - "function device." - msgstr "" - "Tiskárna je řízena ovladačem HPLIP nebo je tiskárna mlutifunkčním zařízením." - --#: ../system-config-printer.py:5639 -+#: ../system-config-printer.py:5631 - msgid "" - "HPLIP software driving a fax machine, or the fax function of a multi-" - "function device." - msgstr "Fax je řízen ovladačem HPLIP nebo je fax mlutifunkčním zařízením." - --#: ../system-config-printer.py:5642 -+#: ../system-config-printer.py:5634 - msgid "Local printer detected by the Hardware Abstraction Layer (HAL)." - msgstr "Pomocí HAL (vrstva abstrakce hardware) byla detekována tiskárna." - --#: ../system-config-printer.py:5799 --msgid "HPLIP cannot find the device." --msgstr "" -- --#: ../system-config-printer.py:5881 -+#: ../system-config-printer.py:5831 - msgid "No printer was found at that address." - msgstr "" - --#: ../system-config-printer.py:6020 -+#: ../system-config-printer.py:5968 - #, fuzzy - msgid "-- Select from search results --" - msgstr "-- Vyberte model tiskárny --" - --#: ../system-config-printer.py:6022 -+#: ../system-config-printer.py:5970 - msgid "-- No matches found --" - msgstr "-- Nebyl nalezen žádný záznam --" - --#: ../system-config-printer.py:6203 -+#: ../system-config-printer.py:6151 - msgid " (recommended)" - msgstr "(doporučeno)" - --#: ../system-config-printer.py:6217 -+#: ../system-config-printer.py:6165 - msgid "This PPD is generated by foomatic." - msgstr "Tento PPD byl generován foomaticem." - --#: ../system-config-printer.py:6241 -+#: ../system-config-printer.py:6189 - #, fuzzy - msgid "OpenPrinting" - msgstr "Tisk" - --#: ../system-config-printer.py:6252 -+#: ../system-config-printer.py:6200 - msgid "Distributable" - msgstr "Distribuovatelný " - --#: ../system-config-printer.py:6293 -+#: ../system-config-printer.py:6241 - #, fuzzy - msgid ", " - msgstr " " - --#: ../system-config-printer.py:6298 -+#: ../system-config-printer.py:6246 - #, python-format - msgid "" - "\n" - "(%s)" - msgstr "" - --#: ../system-config-printer.py:6303 -+#: ../system-config-printer.py:6251 - msgid "No support contacts known" - msgstr "" - --#: ../system-config-printer.py:6307 ../system-config-printer.py:6320 -+#: ../system-config-printer.py:6255 ../system-config-printer.py:6268 - msgid "Not specified." - msgstr "Neuvedeno." - - #. Foomatic database problem of some sort. --#: ../system-config-printer.py:6360 -+#: ../system-config-printer.py:6308 - msgid "Database error" - msgstr "Chyba databáze" - --#: ../system-config-printer.py:6361 -+#: ../system-config-printer.py:6309 - #, python-format - msgid "The '%s' driver cannot be used with printer '%s %s'." - msgstr "Ovladač '%s' nemůže být použit pro tiskárnu '%s %s'." -@@ -1514,62 +1515,62 @@ msgstr "Ovladač '%s' nemůže být pou - #. This printer references some XML that is not - #. installed by default. Point the user at the - #. package they need to install. --#: ../system-config-printer.py:6371 -+#: ../system-config-printer.py:6319 - #, python-format - msgid "You will need to install the '%s' package in order to use this driver." - msgstr "Abyste mohli používat tento ovladač, musíte nainstalovat balíček '%s'." - - #. This error came from trying to open the PPD file. --#: ../system-config-printer.py:6378 -+#: ../system-config-printer.py:6326 - msgid "PPD error" - msgstr "Chyba PPD" - --#: ../system-config-printer.py:6380 -+#: ../system-config-printer.py:6328 - msgid "Failed to read PPD file. Possible reason follows:" - msgstr "Čtení PPD selhalo. Pravděpodobný důvod chyby:" - - #. Failed to get PPD downloaded from OpenPrinting XXX --#: ../system-config-printer.py:6397 -+#: ../system-config-printer.py:6345 - #, fuzzy - msgid "Downloadable drivers" - msgstr "Stažitelné ovladače" - --#: ../system-config-printer.py:6398 -+#: ../system-config-printer.py:6346 - msgid "Failed to download PPD." - msgstr "" - --#: ../system-config-printer.py:6405 -+#: ../system-config-printer.py:6353 - #, fuzzy - msgid "fetching PPD" - msgstr "Změnit PPD" - --#: ../system-config-printer.py:6434 ../system-config-printer.py:6472 -+#: ../system-config-printer.py:6382 ../system-config-printer.py:6420 - msgid "No Installable Options" - msgstr "Žádné volby instalace" - --#: ../system-config-printer.py:6520 -+#: ../system-config-printer.py:6468 - #, fuzzy, python-format - msgid "adding printer %s" - msgstr "Přidávám tiskárnu" - --#: ../system-config-printer.py:6669 -+#: ../system-config-printer.py:6617 - msgid "Would you like to print a test page?" - msgstr "" - --#: ../system-config-printer.py:6722 -+#: ../system-config-printer.py:6670 - msgid "Install driver" - msgstr "Nainstalovat ovladač" - --#: ../system-config-printer.py:6723 ../troubleshoot/CheckPPDSanity.py:131 -+#: ../system-config-printer.py:6671 ../troubleshoot/CheckPPDSanity.py:131 - #, python-format - msgid "Printer '%s' requires the %s package but it is not currently installed." - msgstr "Tiskárna '%s' potřebuje balíček '%s', který však není nainstalován." - --#: ../system-config-printer.py:6739 -+#: ../system-config-printer.py:6687 - msgid "Missing driver" - msgstr "Chybí ovladač" - --#: ../system-config-printer.py:6740 -+#: ../system-config-printer.py:6688 - #, python-format - msgid "" - "Printer '%s' requires the '%s' program but it is not currently installed. " -@@ -1698,129 +1699,124 @@ msgstr "Vložte URI zařízení" - - #: ../glade/NewPrinterWindow.glade.h:5 - #, fuzzy --msgid "HP Printer (HPLIP) via network" --msgstr " Jméno tiskárny" -- --#: ../glade/NewPrinterWindow.glade.h:6 --#, fuzzy - msgid "IPP Printer" - msgstr "IPP tiskárna" - --#: ../glade/NewPrinterWindow.glade.h:7 -+#: ../glade/NewPrinterWindow.glade.h:6 - msgid "License Terms" - msgstr "Podmínky licence" - --#: ../glade/NewPrinterWindow.glade.h:8 -+#: ../glade/NewPrinterWindow.glade.h:7 - msgid "Location of the LPD network printer" - msgstr "Umístění síťové tiskárny LPD" - --#: ../glade/NewPrinterWindow.glade.h:9 -+#: ../glade/NewPrinterWindow.glade.h:8 - msgid "Location of the network printer" - msgstr "Umístění síťové tiskárny" - --#: ../glade/NewPrinterWindow.glade.h:10 -+#: ../glade/NewPrinterWindow.glade.h:9 - msgid "Location (optional)" - msgstr "Umístění (volitelné)" - --#: ../glade/NewPrinterWindow.glade.h:11 -+#: ../glade/NewPrinterWindow.glade.h:10 - #, fuzzy - msgid "Network Printer" - msgstr "Síťová tiskárna" - --#: ../glade/NewPrinterWindow.glade.h:12 -+#: ../glade/NewPrinterWindow.glade.h:11 - msgid "Note" - msgstr "Poznámka" - --#: ../glade/NewPrinterWindow.glade.h:13 -+#: ../glade/NewPrinterWindow.glade.h:12 - #, fuzzy - msgid "Output Quality" - msgstr "Stav" - --#: ../glade/NewPrinterWindow.glade.h:14 -+#: ../glade/NewPrinterWindow.glade.h:13 - msgid "Printer Name" - msgstr " Jméno tiskárny" - --#: ../glade/NewPrinterWindow.glade.h:15 -+#: ../glade/NewPrinterWindow.glade.h:14 - #, fuzzy - msgid "SMB Printer" - msgstr "SMB tiskárna" - --#: ../glade/NewPrinterWindow.glade.h:16 -+#: ../glade/NewPrinterWindow.glade.h:15 - msgid "Select Driver" - msgstr "Vyberte ovladač" - --#: ../glade/NewPrinterWindow.glade.h:17 -+#: ../glade/NewPrinterWindow.glade.h:16 - msgid "Settings of the serial port" - msgstr "Nastavení sériového portu" - --#: ../glade/NewPrinterWindow.glade.h:18 -+#: ../glade/NewPrinterWindow.glade.h:17 - msgid "smb://[workgroup/]server[:port]/printer" - msgstr "smb://[skupina/]jménoserveru[:port]/tiskárna" - --#: ../glade/NewPrinterWindow.glade.h:19 -+#: ../glade/NewPrinterWindow.glade.h:18 - #, fuzzy - msgid "Choose Class Members" - msgstr "" - "Vyžadováno heslo\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:20 -+#: ../glade/NewPrinterWindow.glade.h:19 - #, fuzzy - msgid "Choose Driver" - msgstr "" - "Vyžadováno heslo\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:21 -+#: ../glade/NewPrinterWindow.glade.h:20 - #, fuzzy - msgid "Describe Printer" - msgstr "" - "Vyžadováno heslo\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:22 -+#: ../glade/NewPrinterWindow.glade.h:21 - #, fuzzy - msgid "Existing Settings" - msgstr "" - "Vyžadováno heslo\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:23 -+#: ../glade/NewPrinterWindow.glade.h:22 - #, fuzzy - msgid "Installable Options" - msgstr "" - "Vyžadováno heslo\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:24 -+#: ../glade/NewPrinterWindow.glade.h:23 - #, fuzzy - msgid "Select Device" - msgstr "" - "Vyžadováno heslo\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:25 -+#: ../glade/NewPrinterWindow.glade.h:24 - msgid "Baud Rate" - msgstr "Přenosová rychlost" - --#: ../glade/NewPrinterWindow.glade.h:26 -+#: ../glade/NewPrinterWindow.glade.h:25 - msgid "Browse..." - msgstr "Procházet..." - --#: ../glade/NewPrinterWindow.glade.h:27 -+#: ../glade/NewPrinterWindow.glade.h:26 - msgid "Comments..." - msgstr "Poznámka..." - --#: ../glade/NewPrinterWindow.glade.h:28 -+#: ../glade/NewPrinterWindow.glade.h:27 - #, fuzzy - msgid "Connection" - msgstr "Připojování" - --#: ../glade/NewPrinterWindow.glade.h:29 -+#: ../glade/NewPrinterWindow.glade.h:28 - msgid "Data Bits" - msgstr "Datové bity" - --#: ../glade/NewPrinterWindow.glade.h:30 -+#: ../glade/NewPrinterWindow.glade.h:29 - msgid "" - "Default\n" - "1200\n" -@@ -1842,7 +1838,7 @@ msgstr "" - "57600\n" - "115200" - --#: ../glade/NewPrinterWindow.glade.h:39 -+#: ../glade/NewPrinterWindow.glade.h:38 - msgid "" - "Default\n" - "8\n" -@@ -1852,7 +1848,7 @@ msgstr "" - "8\n" - "7" - --#: ../glade/NewPrinterWindow.glade.h:42 -+#: ../glade/NewPrinterWindow.glade.h:41 - msgid "" - "Default\n" - "None\n" -@@ -1864,7 +1860,7 @@ msgstr "" - "Lichý\n" - "Sudý" - --#: ../glade/NewPrinterWindow.glade.h:46 -+#: ../glade/NewPrinterWindow.glade.h:45 - msgid "" - "Default\n" - "None\n" -@@ -1878,118 +1874,118 @@ msgstr "" - "RTS/CTS (Hardwarové)\n" - "DTR/DSR (Hardwarové)" - --#: ../glade/NewPrinterWindow.glade.h:51 -+#: ../glade/NewPrinterWindow.glade.h:50 - #: ../glade/PrinterPropertiesDialog.glade.h:35 - msgid "Description:" - msgstr "Popis:" - --#: ../glade/NewPrinterWindow.glade.h:52 ../troubleshoot/DeviceListed.py:40 -+#: ../glade/NewPrinterWindow.glade.h:51 ../troubleshoot/DeviceListed.py:40 - msgid "Device URI" - msgstr "URI zařízení" - --#: ../glade/NewPrinterWindow.glade.h:53 -+#: ../glade/NewPrinterWindow.glade.h:52 - msgid "Device description." - msgstr "Popis zařízení." - --#: ../glade/NewPrinterWindow.glade.h:54 -+#: ../glade/NewPrinterWindow.glade.h:53 - msgid "DirectJet" - msgstr "DirectJet" - --#: ../glade/NewPrinterWindow.glade.h:56 -+#: ../glade/NewPrinterWindow.glade.h:55 - msgid "Driver details" - msgstr "Podrobnosti o ovladači" - --#: ../glade/NewPrinterWindow.glade.h:57 -+#: ../glade/NewPrinterWindow.glade.h:56 - msgid "Empty" - msgstr "Prázdný" - --#: ../glade/NewPrinterWindow.glade.h:58 -+#: ../glade/NewPrinterWindow.glade.h:57 - msgid "Find _Queue..." - msgstr "Nalézt _frontu..." - --#: ../glade/NewPrinterWindow.glade.h:59 -+#: ../glade/NewPrinterWindow.glade.h:58 - msgid "Flow Control" - msgstr "Řízení přenosu" - --#: ../glade/NewPrinterWindow.glade.h:60 -+#: ../glade/NewPrinterWindow.glade.h:59 - msgid "" - "For the printer you have selected there are drivers available for download." - msgstr "Pro vám zvolenou tiskárnu jsou k dispozici ovladače ke stažení." - --#: ../glade/NewPrinterWindow.glade.h:61 -+#: ../glade/NewPrinterWindow.glade.h:60 - msgid "Free software" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:62 -+#: ../glade/NewPrinterWindow.glade.h:61 - msgid "Graphics:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:63 -+#: ../glade/NewPrinterWindow.glade.h:62 - #, fuzzy - msgid "Host:" - msgstr "Jméno počítače" - --#: ../glade/NewPrinterWindow.glade.h:64 -+#: ../glade/NewPrinterWindow.glade.h:63 - msgid "Human-readable description such as \"HP LaserJet with Duplexer\"" - msgstr "Popis pro uživatele, jako např. \"HP LaserJet s oboustranným tiskem\"" - --#: ../glade/NewPrinterWindow.glade.h:65 -+#: ../glade/NewPrinterWindow.glade.h:64 - msgid "Human-readable location such as \"Lab 1\"" - msgstr "Umístění pro uživatele, jako např. \"Místnost 3\"" - --#: ../glade/NewPrinterWindow.glade.h:67 -+#: ../glade/NewPrinterWindow.glade.h:66 - msgid "LPD" - msgstr "LPD" - --#: ../glade/NewPrinterWindow.glade.h:68 -+#: ../glade/NewPrinterWindow.glade.h:67 - msgid "License:" - msgstr "Licence:" - --#: ../glade/NewPrinterWindow.glade.h:69 -+#: ../glade/NewPrinterWindow.glade.h:68 - #, fuzzy - msgid "Line art:" - msgstr "Stav tiskárny:" - --#: ../glade/NewPrinterWindow.glade.h:70 -+#: ../glade/NewPrinterWindow.glade.h:69 - #, fuzzy - msgid "Local Driver" - msgstr "Místní tiskárny" - --#: ../glade/NewPrinterWindow.glade.h:71 -+#: ../glade/NewPrinterWindow.glade.h:70 - #, fuzzy - msgid "Make and model:" - msgstr "Značka a model:" - --#: ../glade/NewPrinterWindow.glade.h:72 -+#: ../glade/NewPrinterWindow.glade.h:71 - msgid "Manufacturer" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:73 -+#: ../glade/NewPrinterWindow.glade.h:72 - #, fuzzy - msgid "Network" - msgstr "Síťová tiskárna" - --#: ../glade/NewPrinterWindow.glade.h:75 -+#: ../glade/NewPrinterWindow.glade.h:74 - msgid "No, I do not accept this license" - msgstr "Ne, tuto licenci nepřijmu" - --#: ../glade/NewPrinterWindow.glade.h:76 -+#: ../glade/NewPrinterWindow.glade.h:75 - msgid "Parity" - msgstr "Parita" - --#: ../glade/NewPrinterWindow.glade.h:78 -+#: ../glade/NewPrinterWindow.glade.h:77 - msgid "Patented algorithms" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:79 -+#: ../glade/NewPrinterWindow.glade.h:78 - msgid "Photo:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:80 -+#: ../glade/NewPrinterWindow.glade.h:79 - msgid "Port number:" - msgstr "Číslo portu:" - --#: ../glade/NewPrinterWindow.glade.h:81 -+#: ../glade/NewPrinterWindow.glade.h:80 - #, fuzzy - msgid "" - "PostScript Printer Description (PPD) files can often be found on the driver " -@@ -2000,80 +1996,80 @@ msgstr "" - "který jste dostali s tiskárnou. U PostScriptových tiskáren jsou občas " - "součástí ovladače pro Windows®" - --#: ../glade/NewPrinterWindow.glade.h:82 -+#: ../glade/NewPrinterWindow.glade.h:81 - msgid "Printer model:" - msgstr "Model tiskárny:" - --#: ../glade/NewPrinterWindow.glade.h:83 -+#: ../glade/NewPrinterWindow.glade.h:82 - msgid "Probe" - msgstr "Detekce" - --#: ../glade/NewPrinterWindow.glade.h:84 -+#: ../glade/NewPrinterWindow.glade.h:83 - #, fuzzy - msgid "Prompt user if authentication is required" - msgstr "Vyžadována autentizace" - --#: ../glade/NewPrinterWindow.glade.h:85 -+#: ../glade/NewPrinterWindow.glade.h:84 - msgid "Provide PPD file" - msgstr "Dodejte PPD soubor" - --#: ../glade/NewPrinterWindow.glade.h:86 -+#: ../glade/NewPrinterWindow.glade.h:85 - msgid "Queue:" - msgstr "Fronta:" - --#: ../glade/NewPrinterWindow.glade.h:87 -+#: ../glade/NewPrinterWindow.glade.h:86 - msgid "SCSI" - msgstr "SCSI" - --#: ../glade/NewPrinterWindow.glade.h:88 -+#: ../glade/NewPrinterWindow.glade.h:87 - msgid "SMB" - msgstr "SMB" - --#: ../glade/NewPrinterWindow.glade.h:89 -+#: ../glade/NewPrinterWindow.glade.h:88 - msgid "Search for a printer driver to download" - msgstr "Najít ovladač tiskárny ke stažení" - --#: ../glade/NewPrinterWindow.glade.h:90 -+#: ../glade/NewPrinterWindow.glade.h:89 - #, fuzzy - msgid "Searching..." - msgstr "Vyhledávám" - --#: ../glade/NewPrinterWindow.glade.h:91 -+#: ../glade/NewPrinterWindow.glade.h:90 - msgid "Select A File" - msgstr "Vyberte soubor" - --#: ../glade/NewPrinterWindow.glade.h:92 -+#: ../glade/NewPrinterWindow.glade.h:91 - msgid "Select printer from database" - msgstr "Vyberte tiskárnu z databáze" - --#: ../glade/NewPrinterWindow.glade.h:93 -+#: ../glade/NewPrinterWindow.glade.h:92 - msgid "Serial" - msgstr "Sériový" - --#: ../glade/NewPrinterWindow.glade.h:94 -+#: ../glade/NewPrinterWindow.glade.h:93 - #, fuzzy - msgid "Set authentication details now" - msgstr "Vyžadována autentizace" - --#: ../glade/NewPrinterWindow.glade.h:95 -+#: ../glade/NewPrinterWindow.glade.h:94 - msgid "Short name for this printer such as \"laserjet\"" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:96 -+#: ../glade/NewPrinterWindow.glade.h:95 - msgid "Supplier:" - msgstr "Dodavatel:" - --#: ../glade/NewPrinterWindow.glade.h:97 -+#: ../glade/NewPrinterWindow.glade.h:96 - #, fuzzy - msgid "Support:" - msgstr "Dodavatel:" - --#: ../glade/NewPrinterWindow.glade.h:98 -+#: ../glade/NewPrinterWindow.glade.h:97 - #, fuzzy - msgid "Text:" - msgstr "Test" - --#: ../glade/NewPrinterWindow.glade.h:99 -+#: ../glade/NewPrinterWindow.glade.h:98 - msgid "" - "The foomatic printer database contains various manufacturer provided " - "PostScript Printer Description (PPD) files and also can generate PPD files " -@@ -2086,7 +2082,7 @@ msgstr "" - "PostScript neumějí. Výrobce, který PPD soubor poskytuje, umožňuje snadnější " - "využití možností tiskárny." - --#: ../glade/NewPrinterWindow.glade.h:100 -+#: ../glade/NewPrinterWindow.glade.h:99 - msgid "" - "These drivers do not come from your operating system supplier and will not " - "be covered by their commercial support. See the support and license terms " -@@ -2096,7 +2092,7 @@ msgstr "" - "nevztahuje se na ně jeho obchodní podpora. Podívejte se na podmínky podpory " - "a licence dodavatele ovladače." - --#: ../glade/NewPrinterWindow.glade.h:101 -+#: ../glade/NewPrinterWindow.glade.h:100 - #, fuzzy - msgid "" - "This driver supports additional hardware that may be installed in the " -@@ -2105,7 +2101,7 @@ msgstr "" - "Tento ovladač podporuje dodatečný hardware, který může být nainstalován na " - "tiskárně." - --#: ../glade/NewPrinterWindow.glade.h:102 -+#: ../glade/NewPrinterWindow.glade.h:101 - msgid "" - "This is done by assuming that options with the same name do have the same " - "meaning. Settings of options that are not present in the new PPD will be " -@@ -2115,7 +2111,7 @@ msgstr "" - "voleb, které v novém PPD nejsou, bude ztraceno. Volby z nového PPD budou " - "nastevny na výchozí hodnoty." - --#: ../glade/NewPrinterWindow.glade.h:103 -+#: ../glade/NewPrinterWindow.glade.h:102 - msgid "" - "This way all current option settings will be lost. The default settings of " - "the new PPD will be used. " -@@ -2123,19 +2119,19 @@ msgstr "" - "Všechna uživatelská nastavení budou ztracena. Použijí se výchozí hodnoty z " - "nového PPD." - --#: ../glade/NewPrinterWindow.glade.h:104 -+#: ../glade/NewPrinterWindow.glade.h:103 - msgid "Try to copy the option settings over from the old PPD. " - msgstr "Zkusit zkopírovat nastavení ze starého PPD." - --#: ../glade/NewPrinterWindow.glade.h:105 -+#: ../glade/NewPrinterWindow.glade.h:104 - msgid "URI:" - msgstr "URI:" - --#: ../glade/NewPrinterWindow.glade.h:107 -+#: ../glade/NewPrinterWindow.glade.h:106 - msgid "Use the new PPD (Postscript Printer Description) as is." - msgstr "Použít nový PPD (Postscript Printer Description) tak, jak je." - --#: ../glade/NewPrinterWindow.glade.h:109 -+#: ../glade/NewPrinterWindow.glade.h:108 - msgid "" - "With this choice no driver download will be performed. In the next steps a " - "locally installed driver will be selected." -@@ -2143,24 +2139,24 @@ msgstr "" - "Touto volbou nebude stažen žádný ovladač. V dalších krocích bude vybrán " - "lokálně instalovaný ovladač." - --#: ../glade/NewPrinterWindow.glade.h:110 -+#: ../glade/NewPrinterWindow.glade.h:109 - msgid "Yes, I accept this license" - msgstr "Ano, přijímám tuto licenci" - --#: ../glade/NewPrinterWindow.glade.h:111 -+#: ../glade/NewPrinterWindow.glade.h:110 - msgid "_Search" - msgstr "_Hledat" - --#: ../glade/NewPrinterWindow.glade.h:112 -+#: ../glade/NewPrinterWindow.glade.h:111 - msgid "_Verify..." - msgstr "Z_kontrolovat..." - --#: ../glade/NewPrinterWindow.glade.h:113 -+#: ../glade/NewPrinterWindow.glade.h:112 - #: ../glade/PrinterPropertiesDialog.glade.h:128 - msgid "move left" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:114 -+#: ../glade/NewPrinterWindow.glade.h:113 - #: ../glade/PrinterPropertiesDialog.glade.h:129 - #, fuzzy - msgid "move right" -@@ -3108,7 +3104,7 @@ msgstr "Vytiskly se tiskové úlohy v po - msgid "Remember to load paper of type '%s' into the printer first." - msgstr "" - --#: ../troubleshoot/PrintTestPage.py:399 -+#: ../troubleshoot/PrintTestPage.py:416 - msgid "Error submitting test page" - msgstr "" - -@@ -3309,6 +3305,10 @@ msgid "Select default printer" - msgstr "Vyberte výchozí tiskárnu" - - #, fuzzy -+#~ msgid "HP Printer (HPLIP) via network" -+#~ msgstr " Jméno tiskárny" -+ -+#, fuzzy - #~ msgid "Not Found" - #~ msgstr "Nenalezeno" - -diff -up system-config-printer-1.1.5/po/cy.po.git-1.1.x system-config-printer-1.1.5/po/cy.po ---- system-config-printer-1.1.5/po/cy.po.git-1.1.x 2009-03-03 22:21:46.000000000 +0000 -+++ system-config-printer-1.1.5/po/cy.po 2009-03-10 17:43:31.000000000 +0000 -@@ -7,7 +7,7 @@ msgid "" - msgstr "" - "Project-Id-Version: printconf.cy\n" - "Report-Msgid-Bugs-To: https://bugzilla.redhat.com/bugzilla\n" --"POT-Creation-Date: 2009-03-02 23:22+0000\n" -+"POT-Creation-Date: 2009-03-10 16:51+0000\n" - "PO-Revision-Date: 2004-02-24 12:29+0000\n" - "Last-Translator: Alan Cox \n" - "Language-Team: Cymraeg \n" -@@ -53,12 +53,12 @@ msgstr "" - msgid "Enter IP address" - msgstr "Enw gwesteiwr neu gyfeiriad IP gweinydd:" - --#: ../authconn.py:35 ../glade/NewPrinterWindow.glade.h:108 -+#: ../authconn.py:35 ../glade/NewPrinterWindow.glade.h:107 - #, fuzzy - msgid "Username:" - msgstr "Enw defnyddiwr:" - --#: ../authconn.py:36 ../glade/NewPrinterWindow.glade.h:77 -+#: ../authconn.py:36 ../glade/NewPrinterWindow.glade.h:76 - msgid "Password:" - msgstr "Cyfrinair:" - -@@ -67,7 +67,7 @@ msgstr "Cyfrinair:" - msgid "Domain:" - msgstr "Ymyl uchaf (pt):" - --#: ../authconn.py:46 -+#: ../authconn.py:46 ../authconn.py:409 - #, fuzzy - msgid "Authentication" - msgstr "Dilysiant" -@@ -76,46 +76,55 @@ msgstr "Dilysiant" - msgid "Remember password" - msgstr "" - --#: ../authconn.py:211 ../authconn.py:232 -+#: ../authconn.py:208 -+#, python-format -+msgid "Unauthorized request (%s)" -+msgstr "" -+ -+#: ../authconn.py:209 -+msgid "You are not authorized to carry out therequested action." -+msgstr "" -+ -+#: ../authconn.py:212 ../authconn.py:233 - #, fuzzy - msgid "Operation canceled" - msgstr "Enw dewisiad" - --#: ../authconn.py:253 -+#: ../authconn.py:250 - #, fuzzy, python-format - msgid "CUPS server error (%s)" - msgstr "Gweinydd:" - --#: ../authconn.py:255 ../errordialogs.py:57 --#: ../troubleshoot/PrintTestPage.py:400 -+#: ../authconn.py:252 ../errordialogs.py:56 ../errordialogs.py:70 -+#, fuzzy -+msgid "CUPS server error" -+msgstr "Gweinydd:" -+ -+#: ../authconn.py:261 ../errordialogs.py:57 -+#: ../troubleshoot/PrintTestPage.py:417 - #, fuzzy, python-format - msgid "There was an error during the CUPS operation: '%s'." - msgstr "Bu gwall wrth geisio argraffu'r dudalen brawf." - --#: ../authconn.py:258 -+#: ../authconn.py:264 - #, fuzzy - msgid "Retry" - msgstr "Profi" - --#: ../authconn.py:379 ../authconn.py:381 ../errordialogs.py:65 ../pysmb.py:75 -+#: ../authconn.py:385 ../authconn.py:387 ../errordialogs.py:65 ../pysmb.py:75 - #: ../pysmb.py:77 - msgid "Not authorized" - msgstr "" - --#: ../authconn.py:382 ../pysmb.py:78 -+#: ../authconn.py:388 ../pysmb.py:78 - msgid "The password may be incorrect." - msgstr "" - --#: ../authconn.py:400 -+#: ../authconn.py:407 - #, fuzzy, python-format - msgid "Authentication (%s)" - msgstr "Dilysiant" - --#: ../errordialogs.py:56 ../errordialogs.py:70 --#, fuzzy --msgid "CUPS server error" --msgstr "Gweinydd:" -- - #: ../errordialogs.py:66 - msgid "" - "The password may be incorrect, or the server may be configured to deny " -@@ -145,7 +154,7 @@ msgstr "Cyfrinair:" - msgid "Server error" - msgstr "Argraffyd: " - --#: ../errordialogs.py:82 ../system-config-printer.py:1219 -+#: ../errordialogs.py:82 ../system-config-printer.py:1223 - #, fuzzy - msgid "Not connected" - msgstr "Cysylltiedig yn _lleol" -@@ -168,7 +177,7 @@ msgstr "" - msgid "_New Group from Selection" - msgstr "" - --#: ../GroupsPane.py:98 ../system-config-printer.py:393 -+#: ../GroupsPane.py:98 ../system-config-printer.py:397 - #, fuzzy - msgid "_Rename" - msgstr "_Gwaredu" -@@ -239,7 +248,7 @@ msgid "Document" - msgstr "Sylw" - - #: ../jobviewer.py:212 ../my-default-printer.py:153 --#: ../system-config-printer.py:366 ../system-config-printer.py:1367 -+#: ../system-config-printer.py:370 ../system-config-printer.py:1371 - #: ../troubleshoot/PrintTestPage.py:84 - #, fuzzy - msgid "Printer" -@@ -278,8 +287,8 @@ msgstr "" - - #: ../jobviewer.py:386 ../jobviewer.py:451 ../jobviewer.py:452 - #: ../jobviewer.py:492 ../jobviewer.py:600 ../jobviewer.py:727 --#: ../jobviewer.py:1196 ../jobviewer.py:1222 ../system-config-printer.py:2546 --#: ../glade/NewPrinterWindow.glade.h:106 -+#: ../jobviewer.py:1196 ../jobviewer.py:1222 ../system-config-printer.py:2556 -+#: ../glade/NewPrinterWindow.glade.h:105 - #: ../troubleshoot/ChooseNetworkPrinter.py:101 - #: ../troubleshoot/ChooseNetworkPrinter.py:102 - #: ../troubleshoot/ChooseNetworkPrinter.py:105 -@@ -371,12 +380,12 @@ msgstr "" - msgid "Pending" - msgstr "Yn argraffu" - --#: ../jobviewer.py:591 ../system-config-printer.py:186 -+#: ../jobviewer.py:591 ../system-config-printer.py:190 - #: ../troubleshoot/PrintTestPage.py:43 - msgid "Processing" - msgstr "" - --#: ../jobviewer.py:592 ../system-config-printer.py:188 -+#: ../jobviewer.py:592 ../system-config-printer.py:192 - #: ../troubleshoot/PrintTestPage.py:44 - msgid "Stopped" - msgstr "" -@@ -498,8 +507,8 @@ msgstr "Gosod yn _ragosodyn" - msgid "_Set Default" - msgstr "_Rhagosodion" - --#: ../my-default-printer.py:158 ../system-config-printer.py:423 --#: ../system-config-printer.py:3660 ../troubleshoot/ChooseNetworkPrinter.py:37 -+#: ../my-default-printer.py:158 ../system-config-printer.py:427 -+#: ../system-config-printer.py:3675 ../troubleshoot/ChooseNetworkPrinter.py:37 - #: ../troubleshoot/ChoosePrinter.py:38 - #, fuzzy - msgid "Location" -@@ -533,7 +542,7 @@ msgstr "Dyma ddisgrifiad yr argraffydd." - msgid "Authenticated" - msgstr "Dilysiant" - --#: ../ppdippstr.py:50 ../system-config-printer.py:6259 -+#: ../ppdippstr.py:50 ../system-config-printer.py:6207 - msgid "None" - msgstr "Dim" - -@@ -756,217 +765,217 @@ msgstr "" - msgid "1200 dpi, photo, black + color cartridge, photo paper" - msgstr "" - --#: ../system-config-printer.py:127 -+#: ../system-config-printer.py:131 - msgid "To do this, select System->Administration->Firewall from the main menu." - msgstr "" - --#: ../system-config-printer.py:185 -+#: ../system-config-printer.py:189 - msgid "Idle" - msgstr "" - --#: ../system-config-printer.py:187 -+#: ../system-config-printer.py:191 - msgid "Busy" - msgstr "" - --#: ../system-config-printer.py:372 ../system-config-printer.py:1373 -+#: ../system-config-printer.py:376 ../system-config-printer.py:1377 - #, fuzzy - msgid "Class" - msgstr "Ffugenwau" - --#: ../system-config-printer.py:399 -+#: ../system-config-printer.py:403 - #, fuzzy - msgid "Set As De_fault" - msgstr "_Rhagosodion" - --#: ../system-config-printer.py:403 -+#: ../system-config-printer.py:407 - #, fuzzy - msgid "_Create class" - msgstr "Argraffydd Jetdirect" - --#: ../system-config-printer.py:405 -+#: ../system-config-printer.py:409 - #, fuzzy - msgid "View Print _Queue" - msgstr "Ciw Argraffu Amrwd" - --#: ../system-config-printer.py:407 -+#: ../system-config-printer.py:411 - msgid "_Add to Group" - msgstr "" - --#: ../system-config-printer.py:409 -+#: ../system-config-printer.py:413 - msgid "Save Results as _Group" - msgstr "" - --#: ../system-config-printer.py:411 -+#: ../system-config-printer.py:415 - msgid "Save Filter as _Search Group" - msgstr "" - --#: ../system-config-printer.py:415 -+#: ../system-config-printer.py:419 - msgid "E_nabled" - msgstr "" - --#: ../system-config-printer.py:417 -+#: ../system-config-printer.py:421 - #, fuzzy - msgid "_Shared" - msgstr "Rhaniad" - --#: ../system-config-printer.py:421 ../troubleshoot/ChooseNetworkPrinter.py:35 -+#: ../system-config-printer.py:425 ../troubleshoot/ChooseNetworkPrinter.py:35 - #: ../troubleshoot/ChoosePrinter.py:36 ../troubleshoot/DeviceListed.py:36 - msgid "Name" - msgstr "Enw" - --#: ../system-config-printer.py:422 -+#: ../system-config-printer.py:426 - #, fuzzy - msgid "Description" - msgstr "Disgrifiad" - --#: ../system-config-printer.py:424 -+#: ../system-config-printer.py:428 - msgid "Manufacturer / Model" - msgstr "" - - #. Printer state reasons list --#: ../system-config-printer.py:499 -+#: ../system-config-printer.py:503 - msgid "Message" - msgstr "" - --#: ../system-config-printer.py:534 -+#: ../system-config-printer.py:538 - msgid "Problems?" - msgstr "" - --#: ../system-config-printer.py:637 ../system-config-printer.py:639 -+#: ../system-config-printer.py:641 ../system-config-printer.py:643 - msgid "Members of this class" - msgstr "" - --#: ../system-config-printer.py:638 ../system-config-printer.py:640 -+#: ../system-config-printer.py:642 ../system-config-printer.py:644 - msgid "Others" - msgstr "" - --#: ../system-config-printer.py:641 -+#: ../system-config-printer.py:645 - #, fuzzy - msgid "Devices" - msgstr "Dyfais" - --#: ../system-config-printer.py:642 -+#: ../system-config-printer.py:646 - #, fuzzy - msgid "Connections" - msgstr "Sylw" - --#: ../system-config-printer.py:643 -+#: ../system-config-printer.py:647 - msgid "Makes" - msgstr "" - --#: ../system-config-printer.py:644 -+#: ../system-config-printer.py:648 - #, fuzzy - msgid "Models" - msgstr "Model" - --#: ../system-config-printer.py:645 -+#: ../system-config-printer.py:649 - #, fuzzy - msgid "Drivers" - msgstr "Gyrrydd" - --#: ../system-config-printer.py:646 ../glade/NewPrinterWindow.glade.h:55 -+#: ../system-config-printer.py:650 ../glade/NewPrinterWindow.glade.h:54 - #, fuzzy - msgid "Downloadable Drivers" - msgstr "Gyryddion ar gael:" - --#: ../system-config-printer.py:647 -+#: ../system-config-printer.py:651 - #, fuzzy - msgid "Users" - msgstr "Defnyddiwr" - --#: ../system-config-printer.py:682 -+#: ../system-config-printer.py:686 - msgid "Automatic rotation" - msgstr "" - --#: ../system-config-printer.py:989 -+#: ../system-config-printer.py:993 - #, fuzzy, python-format - msgid "Printer Properties - '%s' on %s" - msgstr "Dewisiadau hidlen" - - #. The Conflict button was pressed. --#: ../system-config-printer.py:996 -+#: ../system-config-printer.py:1000 - msgid "" - "There are conflicting options.\n" - "Changes can only be applied after\n" - "these conflicts are resolved." - msgstr "" - --#: ../system-config-printer.py:1214 -+#: ../system-config-printer.py:1218 - #, python-format - msgid "Printer configuration - %s" - msgstr "Cyfluniad argraffydd - %s" - --#: ../system-config-printer.py:1217 -+#: ../system-config-printer.py:1221 - #, python-format - msgid "Connected to %s" - msgstr "" - - #. Update our copy of the printer's settings. --#: ../system-config-printer.py:1257 ../system-config-printer.py:2042 -+#: ../system-config-printer.py:1261 ../system-config-printer.py:2046 - msgid "obtaining queue details" - msgstr "" - --#: ../system-config-printer.py:1295 -+#: ../system-config-printer.py:1299 - msgid "Remove from Group" - msgstr "" - --#: ../system-config-printer.py:1361 -+#: ../system-config-printer.py:1365 - #, fuzzy - msgid "Network printer (discovered)" - msgstr "Argraffydd:" - --#: ../system-config-printer.py:1364 -+#: ../system-config-printer.py:1368 - msgid "Network class (discovered)" - msgstr "" - --#: ../system-config-printer.py:1370 ../system-config-printer.py:5524 --#: ../system-config-printer.py:5594 ../system-config-printer.py:5596 -+#: ../system-config-printer.py:1374 ../system-config-printer.py:5519 -+#: ../system-config-printer.py:5589 ../system-config-printer.py:5591 - msgid "Fax" - msgstr "" - --#: ../system-config-printer.py:1376 ../system-config-printer.py:1382 -+#: ../system-config-printer.py:1380 ../system-config-printer.py:1386 - #: ../troubleshoot/LocalOrRemote.py:30 - #, fuzzy - msgid "Network printer" - msgstr "Argraffydd:" - --#: ../system-config-printer.py:1379 -+#: ../system-config-printer.py:1383 - #, fuzzy - msgid "Network print share" - msgstr "Argraffydd:" - --#: ../system-config-printer.py:1508 ../glade/ConnectingDialog.glade.h:2 -+#: ../system-config-printer.py:1512 ../glade/ConnectingDialog.glade.h:2 - #, no-c-format, python-format - msgid "Opening connection to %s" - msgstr "" - --#: ../system-config-printer.py:1887 -+#: ../system-config-printer.py:1891 - msgid "Installable Options" - msgstr "" - --#: ../system-config-printer.py:1888 -+#: ../system-config-printer.py:1892 - #: ../glade/PrinterPropertiesDialog.glade.h:109 - #, fuzzy - msgid "Printer Options" - msgstr "Dewisiadau hidlen" - --#: ../system-config-printer.py:1924 -+#: ../system-config-printer.py:1928 - #, python-format - msgid "modifying class %s" - msgstr "" - --#: ../system-config-printer.py:1926 ../system-config-printer.py:3019 --#: ../system-config-printer.py:3044 ../system-config-printer.py:6547 --#: ../system-config-printer.py:6559 ../system-config-printer.py:6581 -+#: ../system-config-printer.py:1930 ../system-config-printer.py:3037 -+#: ../system-config-printer.py:3062 ../system-config-printer.py:6495 -+#: ../system-config-printer.py:6507 ../system-config-printer.py:6529 - #, fuzzy, python-format - msgid "modifying printer %s" - msgstr "Ychwanegu ciw argraffu newydd" - --#: ../system-config-printer.py:1941 -+#: ../system-config-printer.py:1945 - msgid "This will delete this class!" - msgstr "" - --#: ../system-config-printer.py:1942 -+#: ../system-config-printer.py:1946 - msgid "Proceed anyway?" - msgstr "" - -@@ -974,72 +983,72 @@ msgstr "" - #. but we have never fetched the server settings to see whether - #. the server is publishing shared printers. Fetch the settings - #. now so that we can update the "not published" label if necessary. --#: ../system-config-printer.py:2030 ../system-config-printer.py:3203 -+#: ../system-config-printer.py:2034 ../system-config-printer.py:3221 - #, fuzzy - msgid "fetching server settings" - msgstr "Dewisiadau gyrrydd" - --#: ../system-config-printer.py:2100 -+#: ../system-config-printer.py:2104 - #, fuzzy - msgid "Set Default Printer" - msgstr "Dyma ddisgrifiad yr argraffydd." - --#: ../system-config-printer.py:2102 -+#: ../system-config-printer.py:2106 - #, fuzzy - msgid "Do you want to set this as the system-wide default printer?" - msgstr "" - "A ydych am gadw'r newidiadau\n" - "y gwnaethoch i'ch cyfluniad argraffydd?" - --#: ../system-config-printer.py:2104 -+#: ../system-config-printer.py:2108 - #, fuzzy - msgid "Set as the _system-wide default printer" - msgstr "Dyma ddisgrifiad yr argraffydd." - --#: ../system-config-printer.py:2106 -+#: ../system-config-printer.py:2110 - msgid "_Clear my personal default setting" - msgstr "" - --#: ../system-config-printer.py:2107 -+#: ../system-config-printer.py:2111 - #, fuzzy - msgid "Set as my _personal default printer" - msgstr "Dyma ddisgrifiad yr argraffydd." - --#: ../system-config-printer.py:2112 -+#: ../system-config-printer.py:2116 - #, fuzzy - msgid "setting default printer" - msgstr "Dyma ddisgrifiad yr argraffydd." - --#: ../system-config-printer.py:2169 -+#: ../system-config-printer.py:2173 - #, fuzzy - msgid "printing test page" - msgstr "Nodiadau argraffydd:" - --#: ../system-config-printer.py:2182 ../system-config-printer.py:2217 --#: ../system-config-printer.py:5418 -+#: ../system-config-printer.py:2186 ../system-config-printer.py:2221 -+#: ../system-config-printer.py:5413 - msgid "Not possible" - msgstr "" - --#: ../system-config-printer.py:2183 ../system-config-printer.py:2218 -+#: ../system-config-printer.py:2187 ../system-config-printer.py:2222 - msgid "" - "The remote server did not accept the print job, most likely because the " - "printer is not shared." - msgstr "" - --#: ../system-config-printer.py:2195 ../system-config-printer.py:2210 -+#: ../system-config-printer.py:2199 ../system-config-printer.py:2214 - msgid "Submitted" - msgstr "" - --#: ../system-config-printer.py:2196 -+#: ../system-config-printer.py:2200 - #, python-format - msgid "Test page submitted as job %d" - msgstr "" - --#: ../system-config-printer.py:2203 -+#: ../system-config-printer.py:2207 - msgid "sending maintenance command" - msgstr "" - --#: ../system-config-printer.py:2211 -+#: ../system-config-printer.py:2215 - #, python-format - msgid "Maintenance command submitted as job %d" - msgstr "" -@@ -1047,11 +1056,11 @@ msgstr "" - #. The underlying cupsGetPPD2() function returned NULL without - #. setting an IPP error, so it'll be something like a failed - #. connection. --#: ../system-config-printer.py:2285 ../system-config-printer.py:2381 -+#: ../system-config-printer.py:2289 ../system-config-printer.py:2385 - msgid "Error" - msgstr "Gwall" - --#: ../system-config-printer.py:2286 -+#: ../system-config-printer.py:2290 - #, fuzzy - msgid "There was a problem connecting to the CUPS server." - msgstr "" -@@ -1059,68 +1068,68 @@ msgstr "" - "at y ciw '%s':\n" - "\n" - --#: ../system-config-printer.py:2382 -+#: ../system-config-printer.py:2386 - #, python-format - msgid "Option '%s' has value '%s' and cannot be edited." - msgstr "" - --#: ../system-config-printer.py:2466 -+#: ../system-config-printer.py:2476 - msgid "Marker levels are not reported for this printer." - msgstr "" - --#: ../system-config-printer.py:2763 -+#: ../system-config-printer.py:2773 - #, fuzzy - msgid "Cannot Rename" - msgstr "_Gwaredu" - --#: ../system-config-printer.py:2764 -+#: ../system-config-printer.py:2774 - #, fuzzy - msgid "There are queued jobs." - msgstr "Nid oes dewisiadau ar gael ar gyfer y gyrrydd yma." - --#: ../system-config-printer.py:2822 -+#: ../system-config-printer.py:2840 - #, fuzzy - msgid "renaming printer" - msgstr "Ychwanegu ciw argraffu newydd" - - #. for classes make sure all members - #. will get added --#: ../system-config-printer.py:2907 -+#: ../system-config-printer.py:2925 - #, fuzzy - msgid "copying printer" - msgstr "Ychwanegu ciw argraffu newydd" - --#: ../system-config-printer.py:2971 -+#: ../system-config-printer.py:2989 - #, fuzzy, python-format - msgid "Really delete class '%s'?" - msgstr "Dileu \"%s\" wir?" - --#: ../system-config-printer.py:2973 -+#: ../system-config-printer.py:2991 - #, fuzzy, python-format - msgid "Really delete printer '%s'?" - msgstr "Dileu \"%s\" wir?" - --#: ../system-config-printer.py:2975 -+#: ../system-config-printer.py:2993 - #, fuzzy - msgid "Really delete selected destinations?" - msgstr "Dileu \"%s\" wir?" - --#: ../system-config-printer.py:2996 -+#: ../system-config-printer.py:3014 - #, fuzzy, python-format - msgid "deleting printer %s" - msgstr "Ychwanegu ciw argraffu newydd" - --#: ../system-config-printer.py:3070 -+#: ../system-config-printer.py:3088 - msgid "Publish Shared Printers" - msgstr "" - --#: ../system-config-printer.py:3071 -+#: ../system-config-printer.py:3089 - msgid "" - "Shared printers are not available to other people unless the 'Publish shared " - "printers' option is enabled in the server settings." - msgstr "" - --#: ../system-config-printer.py:3264 -+#: ../system-config-printer.py:3282 - #, fuzzy - msgid "modifying server settings" - msgstr "Dewisiadau gyrrydd" -@@ -1131,109 +1140,109 @@ msgstr "Dewisiadau gyrrydd" - #. be unblocked. Unfortunately, this is not yet possible - #. (bug #440469). However, we can display a dialog to suggest - #. that now might be a good time to review the firewall settings. --#: ../system-config-printer.py:3289 -+#: ../system-config-printer.py:3307 - #, fuzzy - msgid "Review Firewall" - msgstr "Ffeil Ddyfais" - --#: ../system-config-printer.py:3290 -+#: ../system-config-printer.py:3308 - msgid "" - "You may need to adjust the firewall to allow network printing to this " - "computer." - msgstr "" - --#: ../system-config-printer.py:3623 -+#: ../system-config-printer.py:3638 - msgid "Browsing not available (pysmbc not installed)" - msgstr "" - - #. SMB list columns --#: ../system-config-printer.py:3629 -+#: ../system-config-printer.py:3644 - msgid "Share" - msgstr "Rhaniad" - --#: ../system-config-printer.py:3635 -+#: ../system-config-printer.py:3650 - msgid "Comment" - msgstr "Sylw" - - #. IPP list columns --#: ../system-config-printer.py:3654 -+#: ../system-config-printer.py:3669 - msgid "Queue" - msgstr "Ciw" - --#: ../system-config-printer.py:3668 -+#: ../system-config-printer.py:3683 - msgid "" - "PostScript Printer Description files (*.ppd, *.PPD, *.ppd.gz, *.PPD.gz, *." - "PPD.GZ)" - msgstr "" - --#: ../system-config-printer.py:3677 -+#: ../system-config-printer.py:3692 - msgid "All files (*)" - msgstr "" - --#: ../system-config-printer.py:3713 ../system-config-printer.py:5970 --#: ../system-config-printer.py:6008 ../applet.py:124 -+#: ../system-config-printer.py:3728 ../system-config-printer.py:5918 -+#: ../system-config-printer.py:5956 ../applet.py:124 - #, fuzzy - msgid "Search" - msgstr "Rhybudd" - --#: ../system-config-printer.py:3736 ../system-config-printer.py:3760 --#: ../glade/NewPrinterWindow.glade.h:74 -+#: ../system-config-printer.py:3751 ../system-config-printer.py:3775 -+#: ../glade/NewPrinterWindow.glade.h:73 - #, fuzzy - msgid "New Printer" - msgstr "Argraffydd:" - --#: ../system-config-printer.py:3747 -+#: ../system-config-printer.py:3762 - msgid "New Class" - msgstr "" - --#: ../system-config-printer.py:3752 -+#: ../system-config-printer.py:3767 - msgid "Change Device URI" - msgstr "" - --#: ../system-config-printer.py:3758 -+#: ../system-config-printer.py:3773 - #, fuzzy - msgid "Change Driver" - msgstr "Newid Math" - --#: ../system-config-printer.py:3927 ../system-config-printer.py:3993 --#: ../system-config-printer.py:4289 ../system-config-printer.py:4487 --#: ../system-config-printer.py:5772 ../system-config-printer.py:5995 -+#: ../system-config-printer.py:3942 ../system-config-printer.py:4008 -+#: ../system-config-printer.py:4304 ../system-config-printer.py:4502 -+#: ../system-config-printer.py:5762 ../system-config-printer.py:5943 - #, fuzzy - msgid "Searching" - msgstr "Rhybudd" - --#: ../system-config-printer.py:3928 -+#: ../system-config-printer.py:3943 - #, fuzzy - msgid "Searching for downloadable drivers" - msgstr "Priodweddau rhannu" - --#: ../system-config-printer.py:3994 ../system-config-printer.py:4290 -+#: ../system-config-printer.py:4009 ../system-config-printer.py:4305 - #, fuzzy - msgid "Searching for drivers" - msgstr "Priodweddau rhannu" - --#: ../system-config-printer.py:4488 ../system-config-printer.py:5773 -+#: ../system-config-printer.py:4503 ../system-config-printer.py:5763 - #, fuzzy - msgid "Searching for printers" - msgstr "Priodweddau rhannu" - --#: ../system-config-printer.py:4497 -+#: ../system-config-printer.py:4512 - #, fuzzy - msgid "fetching device list" - msgstr "Dewisiadau gyrrydd" - - #. Tell the user why he needs the plugin --#: ../system-config-printer.py:4579 -+#: ../system-config-printer.py:4594 - msgid "For this printer a proprietary driver plugin from HP is available.\n" - msgstr "" - --#: ../system-config-printer.py:4582 -+#: ../system-config-printer.py:4597 - msgid "" - "The installation of the plugin is required for your printer to work.\n" - "\n" - msgstr "" - --#: ../system-config-printer.py:4585 -+#: ../system-config-printer.py:4600 - msgid "" - "Installing the plugin is optional, it completes or enhances the " - "functionality\n" -@@ -1241,141 +1250,137 @@ msgid "" - "\n" - msgstr "" - --#: ../system-config-printer.py:4589 -+#: ../system-config-printer.py:4604 - msgid "The plugin provides the following features:\n" - msgstr "" - --#: ../system-config-printer.py:4592 -+#: ../system-config-printer.py:4607 - msgid " - Printing support\n" - msgstr "" - --#: ../system-config-printer.py:4595 -+#: ../system-config-printer.py:4610 - msgid " - Faster printing\n" - msgstr "" - --#: ../system-config-printer.py:4598 -+#: ../system-config-printer.py:4613 - msgid " - Better printout quality\n" - msgstr "" - --#: ../system-config-printer.py:4601 -+#: ../system-config-printer.py:4616 - msgid " - Extra printing features\n" - msgstr "" - --#: ../system-config-printer.py:4604 -+#: ../system-config-printer.py:4619 - msgid " - Scanning support\n" - msgstr "" - --#: ../system-config-printer.py:4607 -+#: ../system-config-printer.py:4622 - msgid " - Faster scanning\n" - msgstr "" - --#: ../system-config-printer.py:4610 -+#: ../system-config-printer.py:4625 - msgid " - Better scanning image quality\n" - msgstr "" - --#: ../system-config-printer.py:4613 -+#: ../system-config-printer.py:4628 - msgid " - Faxing support\n" - msgstr "" - --#: ../system-config-printer.py:4616 -+#: ../system-config-printer.py:4631 - msgid " - Extra fax features\n" - msgstr "" - --#: ../system-config-printer.py:4619 -+#: ../system-config-printer.py:4634 - msgid " - Better Input/Output support\n" - msgstr "" - --#: ../system-config-printer.py:4622 -+#: ../system-config-printer.py:4637 - msgid " - Extra user interface features\n" - msgstr "" - --#: ../system-config-printer.py:4625 -+#: ../system-config-printer.py:4640 - msgid " - Other extra features\n" - msgstr "" - --#: ../system-config-printer.py:4630 -+#: ../system-config-printer.py:4645 - #, fuzzy - msgid "Install plugin" - msgstr "Dewisiadau hidlen" - --#: ../system-config-printer.py:4631 -+#: ../system-config-printer.py:4646 - #, fuzzy - msgid "Do not set up printer" - msgstr "Argraffydd:" - --#: ../system-config-printer.py:4632 -+#: ../system-config-printer.py:4647 - msgid "Set up without plugin" - msgstr "" - --#: ../system-config-printer.py:4634 ../troubleshoot/PrintTestPage.py:118 -+#: ../system-config-printer.py:4649 ../troubleshoot/PrintTestPage.py:118 - msgid "Yes" - msgstr "Ïe" - --#: ../system-config-printer.py:4635 ../troubleshoot/PrintTestPage.py:119 -+#: ../system-config-printer.py:4650 ../troubleshoot/PrintTestPage.py:119 - msgid "No" - msgstr "Na" - --#: ../system-config-printer.py:4809 ../system-config-printer.py:4813 -+#: ../system-config-printer.py:4824 ../system-config-printer.py:4828 - msgid " (Current)" - msgstr "" - --#: ../system-config-printer.py:4845 --msgid "HP Printer (HPLIP)" --msgstr "" -- --#: ../system-config-printer.py:4886 -+#: ../system-config-printer.py:4881 - msgid "Other" - msgstr "" - - #. device-info - #. PhysicalDevice obj - #. Separator? --#: ../system-config-printer.py:4902 -+#: ../system-config-printer.py:4897 - #, fuzzy - msgid "Network Printer" - msgstr "Argraffydd:" - --#: ../system-config-printer.py:4906 -+#: ../system-config-printer.py:4901 - #, fuzzy - msgid "Find Network Printer" - msgstr "Argraffydd:" - --#: ../system-config-printer.py:4979 ../system-config-printer.py:5376 -+#: ../system-config-printer.py:4974 ../system-config-printer.py:5371 - msgid "Scanning..." - msgstr "" - --#: ../system-config-printer.py:5034 ../system-config-printer.py:5798 -+#: ../system-config-printer.py:5029 - #, fuzzy - msgid "No Print Shares" - msgstr "Argraffydd:" - --#: ../system-config-printer.py:5035 -+#: ../system-config-printer.py:5030 - msgid "" - "There were no print shares found. Please check that the Samba service is " - "marked as trusted in your firewall configuration." - msgstr "" - --#: ../system-config-printer.py:5296 ../system-config-printer.py:5357 -+#: ../system-config-printer.py:5291 ../system-config-printer.py:5352 - msgid "Print Share Verified" - msgstr "" - --#: ../system-config-printer.py:5297 ../system-config-printer.py:5358 -+#: ../system-config-printer.py:5292 ../system-config-printer.py:5353 - msgid "This print share is accessible." - msgstr "" - --#: ../system-config-printer.py:5302 ../system-config-printer.py:5362 -+#: ../system-config-printer.py:5297 ../system-config-printer.py:5357 - msgid "This print share is not accessible." - msgstr "" - --#: ../system-config-printer.py:5305 -+#: ../system-config-printer.py:5300 - msgid "Print Share Inaccessible" - msgstr "" - --#: ../system-config-printer.py:5361 -+#: ../system-config-printer.py:5356 - msgid "Inaccessible" - msgstr "" - --#: ../system-config-printer.py:5419 -+#: ../system-config-printer.py:5414 - #, fuzzy, python-format - msgid "It is not possible to obtain a list of queues from '%s'." - msgstr "" -@@ -1383,158 +1388,154 @@ msgstr "" - "at y ciw '%s':\n" - "\n" - --#: ../system-config-printer.py:5421 -+#: ../system-config-printer.py:5416 - msgid "" - "Obtaining a list of queues is a CUPS extension to IPP. Network printers do " - "not support it." - msgstr "" - --#: ../system-config-printer.py:5424 -+#: ../system-config-printer.py:5419 - #, fuzzy - msgid "No queues" - msgstr "Ciw _newydd" - --#: ../system-config-printer.py:5425 -+#: ../system-config-printer.py:5420 - #, fuzzy - msgid "There are no queues available." - msgstr "Nid oes dewisiadau ar gael ar gyfer y gyrrydd yma." - --#: ../system-config-printer.py:5516 -+#: ../system-config-printer.py:5511 - msgid "Parallel Port" - msgstr "" - --#: ../system-config-printer.py:5518 -+#: ../system-config-printer.py:5513 - #, fuzzy - msgid "Serial Port" - msgstr "Cyffredinol" - --#: ../system-config-printer.py:5520 -+#: ../system-config-printer.py:5515 - msgid "USB" - msgstr "" - --#: ../system-config-printer.py:5522 ../system-config-printer.py:5525 -+#: ../system-config-printer.py:5517 ../system-config-printer.py:5520 - msgid "HP Linux Imaging and Printing (HPLIP)" - msgstr "" - --#: ../system-config-printer.py:5527 -+#: ../system-config-printer.py:5522 - msgid "Hardware Abstraction Layer (HAL)" - msgstr "" - --#: ../system-config-printer.py:5529 -+#: ../system-config-printer.py:5524 - #, fuzzy - msgid "AppSocket/HP JetDirect" - msgstr "_JetDirect Rhwydweithiol" - --#: ../system-config-printer.py:5538 -+#: ../system-config-printer.py:5533 - #, python-format - msgid "LPD/LPR queue '%s'" - msgstr "" - --#: ../system-config-printer.py:5540 -+#: ../system-config-printer.py:5535 - msgid "LPD/LPR queue" - msgstr "" - --#: ../system-config-printer.py:5543 -+#: ../system-config-printer.py:5538 - #, fuzzy - msgid "Windows Printer via SAMBA" - msgstr "Data Argraffydd Windows (SMB)" - --#: ../system-config-printer.py:5545 ../glade/NewPrinterWindow.glade.h:66 -+#: ../system-config-printer.py:5540 ../glade/NewPrinterWindow.glade.h:65 - #, fuzzy - msgid "IPP" - msgstr "IP:" - --#: ../system-config-printer.py:5547 -+#: ../system-config-printer.py:5542 - msgid "HTTP" - msgstr "" - --#: ../system-config-printer.py:5632 -+#: ../system-config-printer.py:5624 - msgid "A printer connected to the parallel port." - msgstr "" - --#: ../system-config-printer.py:5634 -+#: ../system-config-printer.py:5626 - msgid "A printer connected to a USB port." - msgstr "" - --#: ../system-config-printer.py:5636 -+#: ../system-config-printer.py:5628 - msgid "" - "HPLIP software driving a printer, or the printer function of a multi-" - "function device." - msgstr "" - --#: ../system-config-printer.py:5639 -+#: ../system-config-printer.py:5631 - msgid "" - "HPLIP software driving a fax machine, or the fax function of a multi-" - "function device." - msgstr "" - --#: ../system-config-printer.py:5642 -+#: ../system-config-printer.py:5634 - msgid "Local printer detected by the Hardware Abstraction Layer (HAL)." - msgstr "" - --#: ../system-config-printer.py:5799 --msgid "HPLIP cannot find the device." --msgstr "" -- --#: ../system-config-printer.py:5881 -+#: ../system-config-printer.py:5831 - msgid "No printer was found at that address." - msgstr "" - --#: ../system-config-printer.py:6020 -+#: ../system-config-printer.py:5968 - #, fuzzy - msgid "-- Select from search results --" - msgstr "Rhaid i chi benodi model argraffydd." - --#: ../system-config-printer.py:6022 -+#: ../system-config-printer.py:5970 - msgid "-- No matches found --" - msgstr "" - --#: ../system-config-printer.py:6203 -+#: ../system-config-printer.py:6151 - #, fuzzy - msgid " (recommended)" - msgstr "" - "(%s yw'r\n" - "gyrrydd argymelledig)" - --#: ../system-config-printer.py:6217 -+#: ../system-config-printer.py:6165 - msgid "This PPD is generated by foomatic." - msgstr "" - --#: ../system-config-printer.py:6241 -+#: ../system-config-printer.py:6189 - #, fuzzy - msgid "OpenPrinting" - msgstr "Yn argraffu" - --#: ../system-config-printer.py:6252 -+#: ../system-config-printer.py:6200 - msgid "Distributable" - msgstr "" - --#: ../system-config-printer.py:6293 -+#: ../system-config-printer.py:6241 - msgid ", " - msgstr "" - --#: ../system-config-printer.py:6298 -+#: ../system-config-printer.py:6246 - #, python-format - msgid "" - "\n" - "(%s)" - msgstr "" - --#: ../system-config-printer.py:6303 -+#: ../system-config-printer.py:6251 - msgid "No support contacts known" - msgstr "" - --#: ../system-config-printer.py:6307 ../system-config-printer.py:6320 -+#: ../system-config-printer.py:6255 ../system-config-printer.py:6268 - #, fuzzy - msgid "Not specified." - msgstr "Rhaid i chi benodi dyfais." - - #. Foomatic database problem of some sort. --#: ../system-config-printer.py:6360 -+#: ../system-config-printer.py:6308 - msgid "Database error" - msgstr "" - --#: ../system-config-printer.py:6361 -+#: ../system-config-printer.py:6309 - #, python-format - msgid "The '%s' driver cannot be used with printer '%s %s'." - msgstr "" -@@ -1542,65 +1543,65 @@ msgstr "" - #. This printer references some XML that is not - #. installed by default. Point the user at the - #. package they need to install. --#: ../system-config-printer.py:6371 -+#: ../system-config-printer.py:6319 - #, python-format - msgid "You will need to install the '%s' package in order to use this driver." - msgstr "" - - #. This error came from trying to open the PPD file. --#: ../system-config-printer.py:6378 -+#: ../system-config-printer.py:6326 - msgid "PPD error" - msgstr "" - --#: ../system-config-printer.py:6380 -+#: ../system-config-printer.py:6328 - msgid "Failed to read PPD file. Possible reason follows:" - msgstr "" - - #. Failed to get PPD downloaded from OpenPrinting XXX --#: ../system-config-printer.py:6397 -+#: ../system-config-printer.py:6345 - #, fuzzy - msgid "Downloadable drivers" - msgstr "Gyryddion ar gael:" - --#: ../system-config-printer.py:6398 -+#: ../system-config-printer.py:6346 - msgid "Failed to download PPD." - msgstr "" - --#: ../system-config-printer.py:6405 -+#: ../system-config-printer.py:6353 - #, fuzzy - msgid "fetching PPD" - msgstr "Newid Math" - --#: ../system-config-printer.py:6434 ../system-config-printer.py:6472 -+#: ../system-config-printer.py:6382 ../system-config-printer.py:6420 - msgid "No Installable Options" - msgstr "" - --#: ../system-config-printer.py:6520 -+#: ../system-config-printer.py:6468 - #, fuzzy, python-format - msgid "adding printer %s" - msgstr "Ychwanegu ciw argraffu newydd" - --#: ../system-config-printer.py:6669 -+#: ../system-config-printer.py:6617 - #, fuzzy - msgid "Would you like to print a test page?" - msgstr "A hoffech chi argraffu tudalen brawf?" - --#: ../system-config-printer.py:6722 -+#: ../system-config-printer.py:6670 - #, fuzzy - msgid "Install driver" - msgstr "Gyrrydd argraffydd" - --#: ../system-config-printer.py:6723 ../troubleshoot/CheckPPDSanity.py:131 -+#: ../system-config-printer.py:6671 ../troubleshoot/CheckPPDSanity.py:131 - #, python-format - msgid "Printer '%s' requires the %s package but it is not currently installed." - msgstr "" - --#: ../system-config-printer.py:6739 -+#: ../system-config-printer.py:6687 - #, fuzzy - msgid "Missing driver" - msgstr "Gyrrydd argraffydd" - --#: ../system-config-printer.py:6740 -+#: ../system-config-printer.py:6688 - #, python-format - msgid "" - "Printer '%s' requires the '%s' program but it is not currently installed. " -@@ -1729,116 +1730,111 @@ msgstr "Dyfais Argraffydd" - - #: ../glade/NewPrinterWindow.glade.h:5 - #, fuzzy --msgid "HP Printer (HPLIP) via network" --msgstr "Model argraffydd" -- --#: ../glade/NewPrinterWindow.glade.h:6 --#, fuzzy - msgid "IPP Printer" - msgstr "Model argraffydd" - --#: ../glade/NewPrinterWindow.glade.h:7 -+#: ../glade/NewPrinterWindow.glade.h:6 - #, fuzzy - msgid "License Terms" - msgstr "Model argraffydd" - --#: ../glade/NewPrinterWindow.glade.h:8 -+#: ../glade/NewPrinterWindow.glade.h:7 - msgid "Location of the LPD network printer" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:9 -+#: ../glade/NewPrinterWindow.glade.h:8 - msgid "Location of the network printer" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:10 -+#: ../glade/NewPrinterWindow.glade.h:9 - msgid "Location (optional)" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:11 -+#: ../glade/NewPrinterWindow.glade.h:10 - #, fuzzy - msgid "Network Printer" - msgstr "Argraffydd:" - --#: ../glade/NewPrinterWindow.glade.h:12 -+#: ../glade/NewPrinterWindow.glade.h:11 - #, fuzzy - msgid "Note" - msgstr "Model argraffydd" - --#: ../glade/NewPrinterWindow.glade.h:13 -+#: ../glade/NewPrinterWindow.glade.h:12 - msgid "Output Quality" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:14 -+#: ../glade/NewPrinterWindow.glade.h:13 - #, fuzzy - msgid "Printer Name" - msgstr "Model argraffydd" - --#: ../glade/NewPrinterWindow.glade.h:15 -+#: ../glade/NewPrinterWindow.glade.h:14 - #, fuzzy - msgid "SMB Printer" - msgstr "Model argraffydd" - --#: ../glade/NewPrinterWindow.glade.h:16 -+#: ../glade/NewPrinterWindow.glade.h:15 - #, fuzzy - msgid "Select Driver" - msgstr "Model argraffydd" - --#: ../glade/NewPrinterWindow.glade.h:17 -+#: ../glade/NewPrinterWindow.glade.h:16 - msgid "Settings of the serial port" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:18 -+#: ../glade/NewPrinterWindow.glade.h:17 - msgid "smb://[workgroup/]server[:port]/printer" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:19 -+#: ../glade/NewPrinterWindow.glade.h:18 - msgid "Choose Class Members" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:20 -+#: ../glade/NewPrinterWindow.glade.h:19 - msgid "Choose Driver" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:21 -+#: ../glade/NewPrinterWindow.glade.h:20 - msgid "Describe Printer" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:22 -+#: ../glade/NewPrinterWindow.glade.h:21 - msgid "Existing Settings" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:23 -+#: ../glade/NewPrinterWindow.glade.h:22 - msgid "Installable Options" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:24 -+#: ../glade/NewPrinterWindow.glade.h:23 - msgid "Select Device" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:25 -+#: ../glade/NewPrinterWindow.glade.h:24 - msgid "Baud Rate" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:26 -+#: ../glade/NewPrinterWindow.glade.h:25 - msgid "Browse..." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:27 -+#: ../glade/NewPrinterWindow.glade.h:26 - #, fuzzy - msgid "Comments..." - msgstr "Sylw" - --#: ../glade/NewPrinterWindow.glade.h:28 -+#: ../glade/NewPrinterWindow.glade.h:27 - #, fuzzy - msgid "Connection" - msgstr "_Gweithred" - --#: ../glade/NewPrinterWindow.glade.h:29 -+#: ../glade/NewPrinterWindow.glade.h:28 - #, fuzzy - msgid "Data Bits" - msgstr "Manylion" - --#: ../glade/NewPrinterWindow.glade.h:30 -+#: ../glade/NewPrinterWindow.glade.h:29 - msgid "" - "Default\n" - "1200\n" -@@ -1851,7 +1847,7 @@ msgid "" - "115200" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:39 -+#: ../glade/NewPrinterWindow.glade.h:38 - #, fuzzy - msgid "" - "Default\n" -@@ -1859,7 +1855,7 @@ msgid "" - "7" - msgstr "Rhagosodyn" - --#: ../glade/NewPrinterWindow.glade.h:42 -+#: ../glade/NewPrinterWindow.glade.h:41 - msgid "" - "Default\n" - "None\n" -@@ -1867,7 +1863,7 @@ msgid "" - "Even" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:46 -+#: ../glade/NewPrinterWindow.glade.h:45 - msgid "" - "Default\n" - "None\n" -@@ -1876,205 +1872,205 @@ msgid "" - "DTR/DSR (Hardware)" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:51 -+#: ../glade/NewPrinterWindow.glade.h:50 - #: ../glade/PrinterPropertiesDialog.glade.h:35 - #, fuzzy - msgid "Description:" - msgstr "Disgrifiad" - --#: ../glade/NewPrinterWindow.glade.h:52 ../troubleshoot/DeviceListed.py:40 -+#: ../glade/NewPrinterWindow.glade.h:51 ../troubleshoot/DeviceListed.py:40 - #, fuzzy - msgid "Device URI" - msgstr "Dyfais: " - --#: ../glade/NewPrinterWindow.glade.h:53 -+#: ../glade/NewPrinterWindow.glade.h:52 - #, fuzzy - msgid "Device description." - msgstr "Disgrifiad" - --#: ../glade/NewPrinterWindow.glade.h:54 -+#: ../glade/NewPrinterWindow.glade.h:53 - msgid "DirectJet" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:56 -+#: ../glade/NewPrinterWindow.glade.h:55 - #, fuzzy - msgid "Driver details" - msgstr "Gyrrydd" - --#: ../glade/NewPrinterWindow.glade.h:57 -+#: ../glade/NewPrinterWindow.glade.h:56 - msgid "Empty" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:58 -+#: ../glade/NewPrinterWindow.glade.h:57 - msgid "Find _Queue..." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:59 -+#: ../glade/NewPrinterWindow.glade.h:58 - msgid "Flow Control" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:60 -+#: ../glade/NewPrinterWindow.glade.h:59 - msgid "" - "For the printer you have selected there are drivers available for download." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:61 -+#: ../glade/NewPrinterWindow.glade.h:60 - msgid "Free software" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:62 -+#: ../glade/NewPrinterWindow.glade.h:61 - msgid "Graphics:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:63 -+#: ../glade/NewPrinterWindow.glade.h:62 - #, fuzzy - msgid "Host:" - msgstr "IP Gwesteiwr" - --#: ../glade/NewPrinterWindow.glade.h:64 -+#: ../glade/NewPrinterWindow.glade.h:63 - msgid "Human-readable description such as \"HP LaserJet with Duplexer\"" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:65 -+#: ../glade/NewPrinterWindow.glade.h:64 - msgid "Human-readable location such as \"Lab 1\"" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:67 -+#: ../glade/NewPrinterWindow.glade.h:66 - msgid "LPD" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:68 -+#: ../glade/NewPrinterWindow.glade.h:67 - msgid "License:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:69 -+#: ../glade/NewPrinterWindow.glade.h:68 - #, fuzzy - msgid "Line art:" - msgstr "Nodiadau argraffydd:" - --#: ../glade/NewPrinterWindow.glade.h:70 -+#: ../glade/NewPrinterWindow.glade.h:69 - #, fuzzy - msgid "Local Driver" - msgstr "Golygu Argraffydd Lleol" - --#: ../glade/NewPrinterWindow.glade.h:71 -+#: ../glade/NewPrinterWindow.glade.h:70 - #, fuzzy - msgid "Make and model:" - msgstr "Mae angen gwneuthurwr a model.\n" - --#: ../glade/NewPrinterWindow.glade.h:72 -+#: ../glade/NewPrinterWindow.glade.h:71 - msgid "Manufacturer" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:73 -+#: ../glade/NewPrinterWindow.glade.h:72 - #, fuzzy - msgid "Network" - msgstr "Argraffydd:" - --#: ../glade/NewPrinterWindow.glade.h:75 -+#: ../glade/NewPrinterWindow.glade.h:74 - msgid "No, I do not accept this license" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:76 -+#: ../glade/NewPrinterWindow.glade.h:75 - msgid "Parity" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:78 -+#: ../glade/NewPrinterWindow.glade.h:77 - msgid "Patented algorithms" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:79 -+#: ../glade/NewPrinterWindow.glade.h:78 - #, fuzzy - msgid "Photo:" - msgstr "Porth: " - --#: ../glade/NewPrinterWindow.glade.h:80 -+#: ../glade/NewPrinterWindow.glade.h:79 - msgid "Port number:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:81 -+#: ../glade/NewPrinterWindow.glade.h:80 - msgid "" - "PostScript Printer Description (PPD) files can often be found on the driver " - "disk that comes with the printer. For PostScript printers they are often " - "part of the Windows® driver." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:82 -+#: ../glade/NewPrinterWindow.glade.h:81 - #, fuzzy - msgid "Printer model:" - msgstr "Model argraffydd" - --#: ../glade/NewPrinterWindow.glade.h:83 -+#: ../glade/NewPrinterWindow.glade.h:82 - msgid "Probe" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:84 -+#: ../glade/NewPrinterWindow.glade.h:83 - #, fuzzy - msgid "Prompt user if authentication is required" - msgstr "Dilysiant" - --#: ../glade/NewPrinterWindow.glade.h:85 -+#: ../glade/NewPrinterWindow.glade.h:84 - msgid "Provide PPD file" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:86 -+#: ../glade/NewPrinterWindow.glade.h:85 - msgid "Queue:" - msgstr "Ciw:" - --#: ../glade/NewPrinterWindow.glade.h:87 -+#: ../glade/NewPrinterWindow.glade.h:86 - msgid "SCSI" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:88 -+#: ../glade/NewPrinterWindow.glade.h:87 - msgid "SMB" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:89 -+#: ../glade/NewPrinterWindow.glade.h:88 - msgid "Search for a printer driver to download" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:90 -+#: ../glade/NewPrinterWindow.glade.h:89 - #, fuzzy - msgid "Searching..." - msgstr "Rhybudd" - --#: ../glade/NewPrinterWindow.glade.h:91 -+#: ../glade/NewPrinterWindow.glade.h:90 - msgid "Select A File" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:92 -+#: ../glade/NewPrinterWindow.glade.h:91 - msgid "Select printer from database" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:93 -+#: ../glade/NewPrinterWindow.glade.h:92 - #, fuzzy - msgid "Serial" - msgstr "Cyffredinol" - --#: ../glade/NewPrinterWindow.glade.h:94 -+#: ../glade/NewPrinterWindow.glade.h:93 - #, fuzzy - msgid "Set authentication details now" - msgstr "Dilysiant" - --#: ../glade/NewPrinterWindow.glade.h:95 -+#: ../glade/NewPrinterWindow.glade.h:94 - msgid "Short name for this printer such as \"laserjet\"" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:96 -+#: ../glade/NewPrinterWindow.glade.h:95 - msgid "Supplier:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:97 -+#: ../glade/NewPrinterWindow.glade.h:96 - #, fuzzy - msgid "Support:" - msgstr "Porth:" - --#: ../glade/NewPrinterWindow.glade.h:98 -+#: ../glade/NewPrinterWindow.glade.h:97 - #, fuzzy - msgid "Text:" - msgstr "_Profi" - --#: ../glade/NewPrinterWindow.glade.h:99 -+#: ../glade/NewPrinterWindow.glade.h:98 - msgid "" - "The foomatic printer database contains various manufacturer provided " - "PostScript Printer Description (PPD) files and also can generate PPD files " -@@ -2083,70 +2079,70 @@ msgid "" - "printer." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:100 -+#: ../glade/NewPrinterWindow.glade.h:99 - msgid "" - "These drivers do not come from your operating system supplier and will not " - "be covered by their commercial support. See the support and license terms " - "of the driver's supplier." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:101 -+#: ../glade/NewPrinterWindow.glade.h:100 - msgid "" - "This driver supports additional hardware that may be installed in the " - "printer." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:102 -+#: ../glade/NewPrinterWindow.glade.h:101 - msgid "" - "This is done by assuming that options with the same name do have the same " - "meaning. Settings of options that are not present in the new PPD will be " - "lost and options only present in the new PPD will be set to default." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:103 -+#: ../glade/NewPrinterWindow.glade.h:102 - msgid "" - "This way all current option settings will be lost. The default settings of " - "the new PPD will be used. " - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:104 -+#: ../glade/NewPrinterWindow.glade.h:103 - msgid "Try to copy the option settings over from the old PPD. " - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:105 -+#: ../glade/NewPrinterWindow.glade.h:104 - msgid "URI:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:107 -+#: ../glade/NewPrinterWindow.glade.h:106 - msgid "Use the new PPD (Postscript Printer Description) as is." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:109 -+#: ../glade/NewPrinterWindow.glade.h:108 - msgid "" - "With this choice no driver download will be performed. In the next steps a " - "locally installed driver will be selected." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:110 -+#: ../glade/NewPrinterWindow.glade.h:109 - msgid "Yes, I accept this license" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:111 -+#: ../glade/NewPrinterWindow.glade.h:110 - #, fuzzy - msgid "_Search" - msgstr "Rhybudd" - --#: ../glade/NewPrinterWindow.glade.h:112 -+#: ../glade/NewPrinterWindow.glade.h:111 - #, fuzzy - msgid "_Verify..." - msgstr "Penodi..." - --#: ../glade/NewPrinterWindow.glade.h:113 -+#: ../glade/NewPrinterWindow.glade.h:112 - #: ../glade/PrinterPropertiesDialog.glade.h:128 - msgid "move left" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:114 -+#: ../glade/NewPrinterWindow.glade.h:113 - #: ../glade/PrinterPropertiesDialog.glade.h:129 - msgid "move right" - msgstr "" -@@ -3060,7 +3056,7 @@ msgstr "" - msgid "Remember to load paper of type '%s' into the printer first." - msgstr "" - --#: ../troubleshoot/PrintTestPage.py:399 -+#: ../troubleshoot/PrintTestPage.py:416 - msgid "Error submitting test page" - msgstr "" - -@@ -3265,6 +3261,10 @@ msgid "Select default printer" - msgstr "Dyma ddisgrifiad yr argraffydd." - - #, fuzzy -+#~ msgid "HP Printer (HPLIP) via network" -+#~ msgstr "Model argraffydd" -+ -+#, fuzzy - #~ msgid "Not Found" - #~ msgstr "Cysylltiedig yn _lleol" - -diff -up system-config-printer-1.1.5/po/da.po.git-1.1.x system-config-printer-1.1.5/po/da.po ---- system-config-printer-1.1.5/po/da.po.git-1.1.x 2009-03-03 22:21:46.000000000 +0000 -+++ system-config-printer-1.1.5/po/da.po 2009-03-10 17:43:31.000000000 +0000 -@@ -7,7 +7,7 @@ msgid "" - msgstr "" - "Project-Id-Version: printconf\n" - "Report-Msgid-Bugs-To: https://bugzilla.redhat.com/bugzilla\n" --"POT-Creation-Date: 2009-03-02 23:22+0000\n" -+"POT-Creation-Date: 2009-03-10 16:51+0000\n" - "PO-Revision-Date: 2006-10-05 20:43-0400\n" - "Last-Translator: Keld Simonsen \n" - "Language-Team: dansk \n" -@@ -52,11 +52,11 @@ msgstr "" - msgid "Enter IP address" - msgstr "Printernavn" - --#: ../authconn.py:35 ../glade/NewPrinterWindow.glade.h:108 -+#: ../authconn.py:35 ../glade/NewPrinterWindow.glade.h:107 - msgid "Username:" - msgstr "Brugernavn:" - --#: ../authconn.py:36 ../glade/NewPrinterWindow.glade.h:77 -+#: ../authconn.py:36 ../glade/NewPrinterWindow.glade.h:76 - msgid "Password:" - msgstr "Adgangskode:" - -@@ -65,7 +65,7 @@ msgstr "Adgangskode:" - msgid "Domain:" - msgstr "Placering:" - --#: ../authconn.py:46 -+#: ../authconn.py:46 ../authconn.py:409 - #, fuzzy - msgid "Authentication" - msgstr "Autentificering" -@@ -74,44 +74,53 @@ msgstr "Autentificering" - msgid "Remember password" - msgstr "" - --#: ../authconn.py:211 ../authconn.py:232 -+#: ../authconn.py:208 -+#, python-format -+msgid "Unauthorized request (%s)" -+msgstr "" -+ -+#: ../authconn.py:209 -+msgid "You are not authorized to carry out therequested action." -+msgstr "" -+ -+#: ../authconn.py:212 ../authconn.py:233 - #, fuzzy - msgid "Operation canceled" - msgstr "Operationspolicy:" - --#: ../authconn.py:253 -+#: ../authconn.py:250 - #, fuzzy, python-format - msgid "CUPS server error (%s)" - msgstr "CUPS-server fejl" - --#: ../authconn.py:255 ../errordialogs.py:57 --#: ../troubleshoot/PrintTestPage.py:400 -+#: ../authconn.py:252 ../errordialogs.py:56 ../errordialogs.py:70 -+msgid "CUPS server error" -+msgstr "CUPS-server fejl" -+ -+#: ../authconn.py:261 ../errordialogs.py:57 -+#: ../troubleshoot/PrintTestPage.py:417 - #, python-format - msgid "There was an error during the CUPS operation: '%s'." - msgstr "Der var en fejl ved CUPS-operationen '%s'." - --#: ../authconn.py:258 -+#: ../authconn.py:264 - msgid "Retry" - msgstr "" - --#: ../authconn.py:379 ../authconn.py:381 ../errordialogs.py:65 ../pysmb.py:75 -+#: ../authconn.py:385 ../authconn.py:387 ../errordialogs.py:65 ../pysmb.py:75 - #: ../pysmb.py:77 - msgid "Not authorized" - msgstr "Ikke tilladt" - --#: ../authconn.py:382 ../pysmb.py:78 -+#: ../authconn.py:388 ../pysmb.py:78 - msgid "The password may be incorrect." - msgstr "Adgangskoden kan være forkert." - --#: ../authconn.py:400 -+#: ../authconn.py:407 - #, fuzzy, python-format - msgid "Authentication (%s)" - msgstr "Autentificering" - --#: ../errordialogs.py:56 ../errordialogs.py:70 --msgid "CUPS server error" --msgstr "CUPS-server fejl" -- - #: ../errordialogs.py:66 - msgid "" - "The password may be incorrect, or the server may be configured to deny " -@@ -140,7 +149,7 @@ msgstr "Opgradering kræves" - msgid "Server error" - msgstr "Serverfejl" - --#: ../errordialogs.py:82 ../system-config-printer.py:1219 -+#: ../errordialogs.py:82 ../system-config-printer.py:1223 - msgid "Not connected" - msgstr "Ikke tilsluttet" - -@@ -162,7 +171,7 @@ msgstr "" - msgid "_New Group from Selection" - msgstr "" - --#: ../GroupsPane.py:98 ../system-config-printer.py:393 -+#: ../GroupsPane.py:98 ../system-config-printer.py:397 - #, fuzzy - msgid "_Rename" - msgstr "Brugernavn:" -@@ -232,7 +241,7 @@ msgid "Document" - msgstr "Kommentar" - - #: ../jobviewer.py:212 ../my-default-printer.py:153 --#: ../system-config-printer.py:366 ../system-config-printer.py:1367 -+#: ../system-config-printer.py:370 ../system-config-printer.py:1371 - #: ../troubleshoot/PrintTestPage.py:84 - msgid "Printer" - msgstr "Printer" -@@ -271,8 +280,8 @@ msgstr "" - - #: ../jobviewer.py:386 ../jobviewer.py:451 ../jobviewer.py:452 - #: ../jobviewer.py:492 ../jobviewer.py:600 ../jobviewer.py:727 --#: ../jobviewer.py:1196 ../jobviewer.py:1222 ../system-config-printer.py:2546 --#: ../glade/NewPrinterWindow.glade.h:106 -+#: ../jobviewer.py:1196 ../jobviewer.py:1222 ../system-config-printer.py:2556 -+#: ../glade/NewPrinterWindow.glade.h:105 - #: ../troubleshoot/ChooseNetworkPrinter.py:101 - #: ../troubleshoot/ChooseNetworkPrinter.py:102 - #: ../troubleshoot/ChooseNetworkPrinter.py:105 -@@ -363,12 +372,12 @@ msgstr "" - msgid "Pending" - msgstr "Udskrift" - --#: ../jobviewer.py:591 ../system-config-printer.py:186 -+#: ../jobviewer.py:591 ../system-config-printer.py:190 - #: ../troubleshoot/PrintTestPage.py:43 - msgid "Processing" - msgstr "Arbejder" - --#: ../jobviewer.py:592 ../system-config-printer.py:188 -+#: ../jobviewer.py:592 ../system-config-printer.py:192 - #: ../troubleshoot/PrintTestPage.py:44 - msgid "Stopped" - msgstr "Stoppet" -@@ -485,8 +494,8 @@ msgstr "" - msgid "_Set Default" - msgstr "standard" - --#: ../my-default-printer.py:158 ../system-config-printer.py:423 --#: ../system-config-printer.py:3660 ../troubleshoot/ChooseNetworkPrinter.py:37 -+#: ../my-default-printer.py:158 ../system-config-printer.py:427 -+#: ../system-config-printer.py:3675 ../troubleshoot/ChooseNetworkPrinter.py:37 - #: ../troubleshoot/ChoosePrinter.py:38 - #, fuzzy - msgid "Location" -@@ -520,7 +529,7 @@ msgstr "Gør til standardprintere" - msgid "Authenticated" - msgstr "Autentificering" - --#: ../ppdippstr.py:50 ../system-config-printer.py:6259 -+#: ../ppdippstr.py:50 ../system-config-printer.py:6207 - #, fuzzy - msgid "None" - msgstr "ingen" -@@ -739,133 +748,133 @@ msgstr "" - msgid "1200 dpi, photo, black + color cartridge, photo paper" - msgstr "" - --#: ../system-config-printer.py:127 -+#: ../system-config-printer.py:131 - msgid "To do this, select System->Administration->Firewall from the main menu." - msgstr "" - --#: ../system-config-printer.py:185 -+#: ../system-config-printer.py:189 - msgid "Idle" - msgstr "Hviler" - --#: ../system-config-printer.py:187 -+#: ../system-config-printer.py:191 - msgid "Busy" - msgstr "Optaget" - --#: ../system-config-printer.py:372 ../system-config-printer.py:1373 -+#: ../system-config-printer.py:376 ../system-config-printer.py:1377 - #, fuzzy - msgid "Class" - msgstr "Ny klasse" - --#: ../system-config-printer.py:399 -+#: ../system-config-printer.py:403 - #, fuzzy - msgid "Set As De_fault" - msgstr "standard" - --#: ../system-config-printer.py:403 -+#: ../system-config-printer.py:407 - #, fuzzy - msgid "_Create class" - msgstr "Fjernklasser" - --#: ../system-config-printer.py:405 -+#: ../system-config-printer.py:409 - #, fuzzy - msgid "View Print _Queue" - msgstr "Ny printer" - --#: ../system-config-printer.py:407 -+#: ../system-config-printer.py:411 - msgid "_Add to Group" - msgstr "" - --#: ../system-config-printer.py:409 -+#: ../system-config-printer.py:413 - msgid "Save Results as _Group" - msgstr "" - --#: ../system-config-printer.py:411 -+#: ../system-config-printer.py:415 - msgid "Save Filter as _Search Group" - msgstr "" - --#: ../system-config-printer.py:415 -+#: ../system-config-printer.py:419 - #, fuzzy - msgid "E_nabled" - msgstr "Aktiv" - --#: ../system-config-printer.py:417 -+#: ../system-config-printer.py:421 - #, fuzzy - msgid "_Shared" - msgstr "Delt" - --#: ../system-config-printer.py:421 ../troubleshoot/ChooseNetworkPrinter.py:35 -+#: ../system-config-printer.py:425 ../troubleshoot/ChooseNetworkPrinter.py:35 - #: ../troubleshoot/ChoosePrinter.py:36 ../troubleshoot/DeviceListed.py:36 - msgid "Name" - msgstr "Navn" - --#: ../system-config-printer.py:422 -+#: ../system-config-printer.py:426 - #, fuzzy - msgid "Description" - msgstr "Beskrivelse:" - --#: ../system-config-printer.py:424 -+#: ../system-config-printer.py:428 - msgid "Manufacturer / Model" - msgstr "" - - #. Printer state reasons list --#: ../system-config-printer.py:499 -+#: ../system-config-printer.py:503 - msgid "Message" - msgstr "" - --#: ../system-config-printer.py:534 -+#: ../system-config-printer.py:538 - #, fuzzy - msgid "Problems?" - msgstr "Prøv" - --#: ../system-config-printer.py:637 ../system-config-printer.py:639 -+#: ../system-config-printer.py:641 ../system-config-printer.py:643 - #, fuzzy - msgid "Members of this class" - msgstr "Medlemmer af denne klasse" - --#: ../system-config-printer.py:638 ../system-config-printer.py:640 -+#: ../system-config-printer.py:642 ../system-config-printer.py:644 - msgid "Others" - msgstr "Øvrige" - --#: ../system-config-printer.py:641 -+#: ../system-config-printer.py:645 - msgid "Devices" - msgstr "Enheder" - --#: ../system-config-printer.py:642 -+#: ../system-config-printer.py:646 - #, fuzzy - msgid "Connections" - msgstr "Forbinder" - --#: ../system-config-printer.py:643 -+#: ../system-config-printer.py:647 - msgid "Makes" - msgstr "Fremstiller" - --#: ../system-config-printer.py:644 -+#: ../system-config-printer.py:648 - msgid "Models" - msgstr "Modeller" - --#: ../system-config-printer.py:645 -+#: ../system-config-printer.py:649 - msgid "Drivers" - msgstr "Drivrutiner" - --#: ../system-config-printer.py:646 ../glade/NewPrinterWindow.glade.h:55 -+#: ../system-config-printer.py:650 ../glade/NewPrinterWindow.glade.h:54 - msgid "Downloadable Drivers" - msgstr "" - --#: ../system-config-printer.py:647 -+#: ../system-config-printer.py:651 - msgid "Users" - msgstr "Brugere" - --#: ../system-config-printer.py:682 -+#: ../system-config-printer.py:686 - msgid "Automatic rotation" - msgstr "" - --#: ../system-config-printer.py:989 -+#: ../system-config-printer.py:993 - #, fuzzy, python-format - msgid "Printer Properties - '%s' on %s" - msgstr "Printer-alternativer" - - #. The Conflict button was pressed. --#: ../system-config-printer.py:996 -+#: ../system-config-printer.py:1000 - #, fuzzy - msgid "" - "There are conflicting options.\n" -@@ -876,81 +885,81 @@ msgstr "" - "Ændringer kan kun gemmes efter\n" - "disse konflikter er løst." - --#: ../system-config-printer.py:1214 -+#: ../system-config-printer.py:1218 - #, python-format - msgid "Printer configuration - %s" - msgstr "Printerkonfiguration - %s" - --#: ../system-config-printer.py:1217 -+#: ../system-config-printer.py:1221 - #, python-format - msgid "Connected to %s" - msgstr "Tilsluttet %s" - - #. Update our copy of the printer's settings. --#: ../system-config-printer.py:1257 ../system-config-printer.py:2042 -+#: ../system-config-printer.py:1261 ../system-config-printer.py:2046 - msgid "obtaining queue details" - msgstr "" - --#: ../system-config-printer.py:1295 -+#: ../system-config-printer.py:1299 - msgid "Remove from Group" - msgstr "" - --#: ../system-config-printer.py:1361 -+#: ../system-config-printer.py:1365 - #, fuzzy - msgid "Network printer (discovered)" - msgstr "Ny printer" - --#: ../system-config-printer.py:1364 -+#: ../system-config-printer.py:1368 - msgid "Network class (discovered)" - msgstr "" - --#: ../system-config-printer.py:1370 ../system-config-printer.py:5524 --#: ../system-config-printer.py:5594 ../system-config-printer.py:5596 -+#: ../system-config-printer.py:1374 ../system-config-printer.py:5519 -+#: ../system-config-printer.py:5589 ../system-config-printer.py:5591 - msgid "Fax" - msgstr "" - --#: ../system-config-printer.py:1376 ../system-config-printer.py:1382 -+#: ../system-config-printer.py:1380 ../system-config-printer.py:1386 - #: ../troubleshoot/LocalOrRemote.py:30 - #, fuzzy - msgid "Network printer" - msgstr "Ny printer" - --#: ../system-config-printer.py:1379 -+#: ../system-config-printer.py:1383 - #, fuzzy - msgid "Network print share" - msgstr "Ny printer" - --#: ../system-config-printer.py:1508 ../glade/ConnectingDialog.glade.h:2 -+#: ../system-config-printer.py:1512 ../glade/ConnectingDialog.glade.h:2 - #, no-c-format, python-format - msgid "Opening connection to %s" - msgstr "" - --#: ../system-config-printer.py:1887 -+#: ../system-config-printer.py:1891 - msgid "Installable Options" - msgstr "Installerbare alternativer" - --#: ../system-config-printer.py:1888 -+#: ../system-config-printer.py:1892 - #: ../glade/PrinterPropertiesDialog.glade.h:109 - msgid "Printer Options" - msgstr "Printer-alternativer" - --#: ../system-config-printer.py:1924 -+#: ../system-config-printer.py:1928 - #, python-format - msgid "modifying class %s" - msgstr "" - --#: ../system-config-printer.py:1926 ../system-config-printer.py:3019 --#: ../system-config-printer.py:3044 ../system-config-printer.py:6547 --#: ../system-config-printer.py:6559 ../system-config-printer.py:6581 -+#: ../system-config-printer.py:1930 ../system-config-printer.py:3037 -+#: ../system-config-printer.py:3062 ../system-config-printer.py:6495 -+#: ../system-config-printer.py:6507 ../system-config-printer.py:6529 - #, fuzzy, python-format - msgid "modifying printer %s" - msgstr "Konfigurér printere" - --#: ../system-config-printer.py:1941 -+#: ../system-config-printer.py:1945 - msgid "This will delete this class!" - msgstr "Dette vil fjerne denne klasse!" - --#: ../system-config-printer.py:1942 -+#: ../system-config-printer.py:1946 - msgid "Proceed anyway?" - msgstr "Fortsæt alligevel?" - -@@ -958,50 +967,50 @@ msgstr "Fortsæt alligevel?" - #. but we have never fetched the server settings to see whether - #. the server is publishing shared printers. Fetch the settings - #. now so that we can update the "not published" label if necessary. --#: ../system-config-printer.py:2030 ../system-config-printer.py:3203 -+#: ../system-config-printer.py:2034 ../system-config-printer.py:3221 - #, fuzzy - msgid "fetching server settings" - msgstr "Grundlæggende serverindstillinger" - --#: ../system-config-printer.py:2100 -+#: ../system-config-printer.py:2104 - #, fuzzy - msgid "Set Default Printer" - msgstr "Gør til standardprintere" - --#: ../system-config-printer.py:2102 -+#: ../system-config-printer.py:2106 - msgid "Do you want to set this as the system-wide default printer?" - msgstr "" - --#: ../system-config-printer.py:2104 -+#: ../system-config-printer.py:2108 - #, fuzzy - msgid "Set as the _system-wide default printer" - msgstr "Dette er standardprinteren." - --#: ../system-config-printer.py:2106 -+#: ../system-config-printer.py:2110 - msgid "_Clear my personal default setting" - msgstr "" - --#: ../system-config-printer.py:2107 -+#: ../system-config-printer.py:2111 - #, fuzzy - msgid "Set as my _personal default printer" - msgstr "Gør til standardprintere" - --#: ../system-config-printer.py:2112 -+#: ../system-config-printer.py:2116 - #, fuzzy - msgid "setting default printer" - msgstr "Gør til standardprintere" - --#: ../system-config-printer.py:2169 -+#: ../system-config-printer.py:2173 - #, fuzzy - msgid "printing test page" - msgstr "Udskriv testside" - --#: ../system-config-printer.py:2182 ../system-config-printer.py:2217 --#: ../system-config-printer.py:5418 -+#: ../system-config-printer.py:2186 ../system-config-printer.py:2221 -+#: ../system-config-printer.py:5413 - msgid "Not possible" - msgstr "Ikke muligt" - --#: ../system-config-printer.py:2183 ../system-config-printer.py:2218 -+#: ../system-config-printer.py:2187 ../system-config-printer.py:2222 - msgid "" - "The remote server did not accept the print job, most likely because the " - "printer is not shared." -@@ -1009,20 +1018,20 @@ msgstr "" - "Fjern-serveren accepterede ikke printerjobbet, nok på grund af at printeren " - "ikke er uddelt." - --#: ../system-config-printer.py:2195 ../system-config-printer.py:2210 -+#: ../system-config-printer.py:2199 ../system-config-printer.py:2214 - msgid "Submitted" - msgstr "Sendt" - --#: ../system-config-printer.py:2196 -+#: ../system-config-printer.py:2200 - #, python-format - msgid "Test page submitted as job %d" - msgstr "Testside sendt som job %d" - --#: ../system-config-printer.py:2203 -+#: ../system-config-printer.py:2207 - msgid "sending maintenance command" - msgstr "" - --#: ../system-config-printer.py:2211 -+#: ../system-config-printer.py:2215 - #, fuzzy, python-format - msgid "Maintenance command submitted as job %d" - msgstr "Testside sendt som job %d" -@@ -1030,76 +1039,76 @@ msgstr "Testside sendt som job %d" - #. The underlying cupsGetPPD2() function returned NULL without - #. setting an IPP error, so it'll be something like a failed - #. connection. --#: ../system-config-printer.py:2285 ../system-config-printer.py:2381 -+#: ../system-config-printer.py:2289 ../system-config-printer.py:2385 - msgid "Error" - msgstr "" - --#: ../system-config-printer.py:2286 -+#: ../system-config-printer.py:2290 - #, fuzzy - msgid "There was a problem connecting to the CUPS server." - msgstr "Der var en fejl ved CUPS-operationen '%s'." - --#: ../system-config-printer.py:2382 -+#: ../system-config-printer.py:2386 - #, python-format - msgid "Option '%s' has value '%s' and cannot be edited." - msgstr "" - --#: ../system-config-printer.py:2466 -+#: ../system-config-printer.py:2476 - msgid "Marker levels are not reported for this printer." - msgstr "" - --#: ../system-config-printer.py:2763 -+#: ../system-config-printer.py:2773 - #, fuzzy - msgid "Cannot Rename" - msgstr "Brugernavn:" - --#: ../system-config-printer.py:2764 -+#: ../system-config-printer.py:2774 - msgid "There are queued jobs." - msgstr "" - --#: ../system-config-printer.py:2822 -+#: ../system-config-printer.py:2840 - #, fuzzy - msgid "renaming printer" - msgstr "Konfigurér printere" - - #. for classes make sure all members - #. will get added --#: ../system-config-printer.py:2907 -+#: ../system-config-printer.py:2925 - #, fuzzy - msgid "copying printer" - msgstr "Konfigurér printere" - --#: ../system-config-printer.py:2971 -+#: ../system-config-printer.py:2989 - #, fuzzy, python-format - msgid "Really delete class '%s'?" - msgstr "Skal \"%s %s\" virkelig fjernes?" - --#: ../system-config-printer.py:2973 -+#: ../system-config-printer.py:2991 - #, fuzzy, python-format - msgid "Really delete printer '%s'?" - msgstr "Skal \"%s %s\" virkelig fjernes?" - --#: ../system-config-printer.py:2975 -+#: ../system-config-printer.py:2993 - #, fuzzy - msgid "Really delete selected destinations?" - msgstr "Skal \"%s %s\" virkelig fjernes?" - --#: ../system-config-printer.py:2996 -+#: ../system-config-printer.py:3014 - #, fuzzy, python-format - msgid "deleting printer %s" - msgstr "Konfigurér printere" - --#: ../system-config-printer.py:3070 -+#: ../system-config-printer.py:3088 - msgid "Publish Shared Printers" - msgstr "" - --#: ../system-config-printer.py:3071 -+#: ../system-config-printer.py:3089 - msgid "" - "Shared printers are not available to other people unless the 'Publish shared " - "printers' option is enabled in the server settings." - msgstr "" - --#: ../system-config-printer.py:3264 -+#: ../system-config-printer.py:3282 - #, fuzzy - msgid "modifying server settings" - msgstr "Grundlæggende serverindstillinger" -@@ -1110,105 +1119,105 @@ msgstr "Grundlæggende serverindstill - #. be unblocked. Unfortunately, this is not yet possible - #. (bug #440469). However, we can display a dialog to suggest - #. that now might be a good time to review the firewall settings. --#: ../system-config-printer.py:3289 -+#: ../system-config-printer.py:3307 - msgid "Review Firewall" - msgstr "" - --#: ../system-config-printer.py:3290 -+#: ../system-config-printer.py:3308 - msgid "" - "You may need to adjust the firewall to allow network printing to this " - "computer." - msgstr "" - --#: ../system-config-printer.py:3623 -+#: ../system-config-printer.py:3638 - msgid "Browsing not available (pysmbc not installed)" - msgstr "" - - #. SMB list columns --#: ../system-config-printer.py:3629 -+#: ../system-config-printer.py:3644 - msgid "Share" - msgstr "Uddeling" - --#: ../system-config-printer.py:3635 -+#: ../system-config-printer.py:3650 - msgid "Comment" - msgstr "Kommentar" - - #. IPP list columns --#: ../system-config-printer.py:3654 -+#: ../system-config-printer.py:3669 - msgid "Queue" - msgstr "" - --#: ../system-config-printer.py:3668 -+#: ../system-config-printer.py:3683 - #, fuzzy - msgid "" - "PostScript Printer Description files (*.ppd, *.PPD, *.ppd.gz, *.PPD.gz, *." - "PPD.GZ)" - msgstr "PostScript-printere beskrivelse (*.ppd[.gz])" - --#: ../system-config-printer.py:3677 -+#: ../system-config-printer.py:3692 - msgid "All files (*)" - msgstr "" - --#: ../system-config-printer.py:3713 ../system-config-printer.py:5970 --#: ../system-config-printer.py:6008 ../applet.py:124 -+#: ../system-config-printer.py:3728 ../system-config-printer.py:5918 -+#: ../system-config-printer.py:5956 ../applet.py:124 - #, fuzzy - msgid "Search" - msgstr "Nyt navn for printeren" - --#: ../system-config-printer.py:3736 ../system-config-printer.py:3760 --#: ../glade/NewPrinterWindow.glade.h:74 -+#: ../system-config-printer.py:3751 ../system-config-printer.py:3775 -+#: ../glade/NewPrinterWindow.glade.h:73 - msgid "New Printer" - msgstr "Ny printer" - --#: ../system-config-printer.py:3747 -+#: ../system-config-printer.py:3762 - msgid "New Class" - msgstr "Ny klasse" - --#: ../system-config-printer.py:3752 -+#: ../system-config-printer.py:3767 - msgid "Change Device URI" - msgstr "Ændr enheds-URI" - --#: ../system-config-printer.py:3758 -+#: ../system-config-printer.py:3773 - msgid "Change Driver" - msgstr "Ændr drivrutine" - --#: ../system-config-printer.py:3927 ../system-config-printer.py:3993 --#: ../system-config-printer.py:4289 ../system-config-printer.py:4487 --#: ../system-config-printer.py:5772 ../system-config-printer.py:5995 -+#: ../system-config-printer.py:3942 ../system-config-printer.py:4008 -+#: ../system-config-printer.py:4304 ../system-config-printer.py:4502 -+#: ../system-config-printer.py:5762 ../system-config-printer.py:5943 - msgid "Searching" - msgstr "" - --#: ../system-config-printer.py:3928 -+#: ../system-config-printer.py:3943 - #, fuzzy - msgid "Searching for downloadable drivers" - msgstr "Nyt navn for printeren" - --#: ../system-config-printer.py:3994 ../system-config-printer.py:4290 -+#: ../system-config-printer.py:4009 ../system-config-printer.py:4305 - msgid "Searching for drivers" - msgstr "" - --#: ../system-config-printer.py:4488 ../system-config-printer.py:5773 -+#: ../system-config-printer.py:4503 ../system-config-printer.py:5763 - #, fuzzy - msgid "Searching for printers" - msgstr "Nyt navn for printeren" - --#: ../system-config-printer.py:4497 -+#: ../system-config-printer.py:4512 - #, fuzzy - msgid "fetching device list" - msgstr "Grundlæggende serverindstillinger" - - #. Tell the user why he needs the plugin --#: ../system-config-printer.py:4579 -+#: ../system-config-printer.py:4594 - msgid "For this printer a proprietary driver plugin from HP is available.\n" - msgstr "" - --#: ../system-config-printer.py:4582 -+#: ../system-config-printer.py:4597 - msgid "" - "The installation of the plugin is required for your printer to work.\n" - "\n" - msgstr "" - --#: ../system-config-printer.py:4585 -+#: ../system-config-printer.py:4600 - msgid "" - "Installing the plugin is optional, it completes or enhances the " - "functionality\n" -@@ -1216,291 +1225,283 @@ msgid "" - "\n" - msgstr "" - --#: ../system-config-printer.py:4589 -+#: ../system-config-printer.py:4604 - msgid "The plugin provides the following features:\n" - msgstr "" - --#: ../system-config-printer.py:4592 -+#: ../system-config-printer.py:4607 - msgid " - Printing support\n" - msgstr "" - --#: ../system-config-printer.py:4595 -+#: ../system-config-printer.py:4610 - msgid " - Faster printing\n" - msgstr "" - --#: ../system-config-printer.py:4598 -+#: ../system-config-printer.py:4613 - msgid " - Better printout quality\n" - msgstr "" - --#: ../system-config-printer.py:4601 -+#: ../system-config-printer.py:4616 - msgid " - Extra printing features\n" - msgstr "" - --#: ../system-config-printer.py:4604 -+#: ../system-config-printer.py:4619 - msgid " - Scanning support\n" - msgstr "" - --#: ../system-config-printer.py:4607 -+#: ../system-config-printer.py:4622 - msgid " - Faster scanning\n" - msgstr "" - --#: ../system-config-printer.py:4610 -+#: ../system-config-printer.py:4625 - msgid " - Better scanning image quality\n" - msgstr "" - --#: ../system-config-printer.py:4613 -+#: ../system-config-printer.py:4628 - msgid " - Faxing support\n" - msgstr "" - --#: ../system-config-printer.py:4616 -+#: ../system-config-printer.py:4631 - msgid " - Extra fax features\n" - msgstr "" - --#: ../system-config-printer.py:4619 -+#: ../system-config-printer.py:4634 - msgid " - Better Input/Output support\n" - msgstr "" - --#: ../system-config-printer.py:4622 -+#: ../system-config-printer.py:4637 - msgid " - Extra user interface features\n" - msgstr "" - --#: ../system-config-printer.py:4625 -+#: ../system-config-printer.py:4640 - msgid " - Other extra features\n" - msgstr "" - --#: ../system-config-printer.py:4630 -+#: ../system-config-printer.py:4645 - #, fuzzy - msgid "Install plugin" - msgstr "Installerbare alternativer" - --#: ../system-config-printer.py:4631 -+#: ../system-config-printer.py:4646 - #, fuzzy - msgid "Do not set up printer" - msgstr "Kopiér printer:" - --#: ../system-config-printer.py:4632 -+#: ../system-config-printer.py:4647 - msgid "Set up without plugin" - msgstr "" - --#: ../system-config-printer.py:4634 ../troubleshoot/PrintTestPage.py:118 -+#: ../system-config-printer.py:4649 ../troubleshoot/PrintTestPage.py:118 - msgid "Yes" - msgstr "" - --#: ../system-config-printer.py:4635 ../troubleshoot/PrintTestPage.py:119 -+#: ../system-config-printer.py:4650 ../troubleshoot/PrintTestPage.py:119 - msgid "No" - msgstr "" - --#: ../system-config-printer.py:4809 ../system-config-printer.py:4813 -+#: ../system-config-printer.py:4824 ../system-config-printer.py:4828 - msgid " (Current)" - msgstr " (Nuværende)" - --#: ../system-config-printer.py:4845 --msgid "HP Printer (HPLIP)" --msgstr "" -- --#: ../system-config-printer.py:4886 -+#: ../system-config-printer.py:4881 - msgid "Other" - msgstr "Øvrige" - - #. device-info - #. PhysicalDevice obj - #. Separator? --#: ../system-config-printer.py:4902 -+#: ../system-config-printer.py:4897 - #, fuzzy - msgid "Network Printer" - msgstr "Ny printer" - --#: ../system-config-printer.py:4906 -+#: ../system-config-printer.py:4901 - #, fuzzy - msgid "Find Network Printer" - msgstr "Ny printer" - --#: ../system-config-printer.py:4979 ../system-config-printer.py:5376 -+#: ../system-config-printer.py:4974 ../system-config-printer.py:5371 - msgid "Scanning..." - msgstr "" - --#: ../system-config-printer.py:5034 ../system-config-printer.py:5798 -+#: ../system-config-printer.py:5029 - #, fuzzy - msgid "No Print Shares" - msgstr "Ny printer" - --#: ../system-config-printer.py:5035 -+#: ../system-config-printer.py:5030 - msgid "" - "There were no print shares found. Please check that the Samba service is " - "marked as trusted in your firewall configuration." - msgstr "" - --#: ../system-config-printer.py:5296 ../system-config-printer.py:5357 -+#: ../system-config-printer.py:5291 ../system-config-printer.py:5352 - msgid "Print Share Verified" - msgstr "" - --#: ../system-config-printer.py:5297 ../system-config-printer.py:5358 -+#: ../system-config-printer.py:5292 ../system-config-printer.py:5353 - msgid "This print share is accessible." - msgstr "Denne delte printer er tilgængelig" - --#: ../system-config-printer.py:5302 ../system-config-printer.py:5362 -+#: ../system-config-printer.py:5297 ../system-config-printer.py:5357 - msgid "This print share is not accessible." - msgstr "Den delte printer er ikke tilgængelig." - --#: ../system-config-printer.py:5305 -+#: ../system-config-printer.py:5300 - #, fuzzy - msgid "Print Share Inaccessible" - msgstr "Denne delte printer er tilgængelig" - --#: ../system-config-printer.py:5361 -+#: ../system-config-printer.py:5356 - msgid "Inaccessible" - msgstr "utilgængelig" - --#: ../system-config-printer.py:5419 -+#: ../system-config-printer.py:5414 - #, fuzzy, python-format - msgid "It is not possible to obtain a list of queues from '%s'." - msgstr "Der var en fejl ved CUPS-operationen '%s'." - --#: ../system-config-printer.py:5421 -+#: ../system-config-printer.py:5416 - msgid "" - "Obtaining a list of queues is a CUPS extension to IPP. Network printers do " - "not support it." - msgstr "" - --#: ../system-config-printer.py:5424 -+#: ../system-config-printer.py:5419 - msgid "No queues" - msgstr "" - --#: ../system-config-printer.py:5425 -+#: ../system-config-printer.py:5420 - msgid "There are no queues available." - msgstr "" - --#: ../system-config-printer.py:5516 -+#: ../system-config-printer.py:5511 - msgid "Parallel Port" - msgstr "" - --#: ../system-config-printer.py:5518 -+#: ../system-config-printer.py:5513 - #, fuzzy - msgid "Serial Port" - msgstr "Seriel" - --#: ../system-config-printer.py:5520 -+#: ../system-config-printer.py:5515 - #, fuzzy - msgid "USB" - msgstr "SMB" - --#: ../system-config-printer.py:5522 ../system-config-printer.py:5525 -+#: ../system-config-printer.py:5517 ../system-config-printer.py:5520 - msgid "HP Linux Imaging and Printing (HPLIP)" - msgstr "" - --#: ../system-config-printer.py:5527 -+#: ../system-config-printer.py:5522 - msgid "Hardware Abstraction Layer (HAL)" - msgstr "" - --#: ../system-config-printer.py:5529 -+#: ../system-config-printer.py:5524 - msgid "AppSocket/HP JetDirect" - msgstr "" - --#: ../system-config-printer.py:5538 -+#: ../system-config-printer.py:5533 - #, python-format - msgid "LPD/LPR queue '%s'" - msgstr "" - --#: ../system-config-printer.py:5540 -+#: ../system-config-printer.py:5535 - #, fuzzy - msgid "LPD/LPR queue" - msgstr "LPD" - --#: ../system-config-printer.py:5543 -+#: ../system-config-printer.py:5538 - msgid "Windows Printer via SAMBA" - msgstr "" - --#: ../system-config-printer.py:5545 ../glade/NewPrinterWindow.glade.h:66 -+#: ../system-config-printer.py:5540 ../glade/NewPrinterWindow.glade.h:65 - msgid "IPP" - msgstr "IPP" - --#: ../system-config-printer.py:5547 -+#: ../system-config-printer.py:5542 - msgid "HTTP" - msgstr "" - --#: ../system-config-printer.py:5632 -+#: ../system-config-printer.py:5624 - msgid "A printer connected to the parallel port." - msgstr "" - --#: ../system-config-printer.py:5634 -+#: ../system-config-printer.py:5626 - msgid "A printer connected to a USB port." - msgstr "" - --#: ../system-config-printer.py:5636 -+#: ../system-config-printer.py:5628 - msgid "" - "HPLIP software driving a printer, or the printer function of a multi-" - "function device." - msgstr "" - --#: ../system-config-printer.py:5639 -+#: ../system-config-printer.py:5631 - msgid "" - "HPLIP software driving a fax machine, or the fax function of a multi-" - "function device." - msgstr "" - --#: ../system-config-printer.py:5642 -+#: ../system-config-printer.py:5634 - msgid "Local printer detected by the Hardware Abstraction Layer (HAL)." - msgstr "" - --#: ../system-config-printer.py:5799 --msgid "HPLIP cannot find the device." --msgstr "" -- --#: ../system-config-printer.py:5881 -+#: ../system-config-printer.py:5831 - msgid "No printer was found at that address." - msgstr "" - --#: ../system-config-printer.py:6020 -+#: ../system-config-printer.py:5968 - #, fuzzy - msgid "-- Select from search results --" - msgstr "Vælg en printer fra databasen" - --#: ../system-config-printer.py:6022 -+#: ../system-config-printer.py:5970 - msgid "-- No matches found --" - msgstr "" - --#: ../system-config-printer.py:6203 -+#: ../system-config-printer.py:6151 - msgid " (recommended)" - msgstr "(anbefalet)" - --#: ../system-config-printer.py:6217 -+#: ../system-config-printer.py:6165 - msgid "This PPD is generated by foomatic." - msgstr "Denne PPD er genereret af foomatic." - --#: ../system-config-printer.py:6241 -+#: ../system-config-printer.py:6189 - #, fuzzy - msgid "OpenPrinting" - msgstr "Udskrift" - --#: ../system-config-printer.py:6252 -+#: ../system-config-printer.py:6200 - msgid "Distributable" - msgstr "" - --#: ../system-config-printer.py:6293 -+#: ../system-config-printer.py:6241 - msgid ", " - msgstr "" - --#: ../system-config-printer.py:6298 -+#: ../system-config-printer.py:6246 - #, python-format - msgid "" - "\n" - "(%s)" - msgstr "" - --#: ../system-config-printer.py:6303 -+#: ../system-config-printer.py:6251 - msgid "No support contacts known" - msgstr "" - --#: ../system-config-printer.py:6307 ../system-config-printer.py:6320 -+#: ../system-config-printer.py:6255 ../system-config-printer.py:6268 - msgid "Not specified." - msgstr "" - - #. Foomatic database problem of some sort. --#: ../system-config-printer.py:6360 -+#: ../system-config-printer.py:6308 - msgid "Database error" - msgstr "" - --#: ../system-config-printer.py:6361 -+#: ../system-config-printer.py:6309 - #, python-format - msgid "The '%s' driver cannot be used with printer '%s %s'." - msgstr "" -@@ -1508,62 +1509,62 @@ msgstr "" - #. This printer references some XML that is not - #. installed by default. Point the user at the - #. package they need to install. --#: ../system-config-printer.py:6371 -+#: ../system-config-printer.py:6319 - #, python-format - msgid "You will need to install the '%s' package in order to use this driver." - msgstr "" - - #. This error came from trying to open the PPD file. --#: ../system-config-printer.py:6378 -+#: ../system-config-printer.py:6326 - msgid "PPD error" - msgstr "" - --#: ../system-config-printer.py:6380 -+#: ../system-config-printer.py:6328 - msgid "Failed to read PPD file. Possible reason follows:" - msgstr "" - - #. Failed to get PPD downloaded from OpenPrinting XXX --#: ../system-config-printer.py:6397 -+#: ../system-config-printer.py:6345 - msgid "Downloadable drivers" - msgstr "" - --#: ../system-config-printer.py:6398 -+#: ../system-config-printer.py:6346 - msgid "Failed to download PPD." - msgstr "" - --#: ../system-config-printer.py:6405 -+#: ../system-config-printer.py:6353 - #, fuzzy - msgid "fetching PPD" - msgstr "Ændr PPD" - --#: ../system-config-printer.py:6434 ../system-config-printer.py:6472 -+#: ../system-config-printer.py:6382 ../system-config-printer.py:6420 - #, fuzzy - msgid "No Installable Options" - msgstr "Installerbare alternativer" - --#: ../system-config-printer.py:6520 -+#: ../system-config-printer.py:6468 - #, fuzzy, python-format - msgid "adding printer %s" - msgstr "Konfigurér printere" - --#: ../system-config-printer.py:6669 -+#: ../system-config-printer.py:6617 - msgid "Would you like to print a test page?" - msgstr "" - --#: ../system-config-printer.py:6722 -+#: ../system-config-printer.py:6670 - msgid "Install driver" - msgstr "" - --#: ../system-config-printer.py:6723 ../troubleshoot/CheckPPDSanity.py:131 -+#: ../system-config-printer.py:6671 ../troubleshoot/CheckPPDSanity.py:131 - #, python-format - msgid "Printer '%s' requires the %s package but it is not currently installed." - msgstr "" - --#: ../system-config-printer.py:6739 -+#: ../system-config-printer.py:6687 - msgid "Missing driver" - msgstr "" - --#: ../system-config-printer.py:6740 -+#: ../system-config-printer.py:6688 - #, python-format - msgid "" - "Printer '%s' requires the '%s' program but it is not currently installed. " -@@ -1690,133 +1691,128 @@ msgstr "Angiv enheds-URI" - - #: ../glade/NewPrinterWindow.glade.h:5 - #, fuzzy --msgid "HP Printer (HPLIP) via network" --msgstr "Printernavn" -- --#: ../glade/NewPrinterWindow.glade.h:6 --#, fuzzy - msgid "IPP Printer" - msgstr "Printernavn" - --#: ../glade/NewPrinterWindow.glade.h:7 -+#: ../glade/NewPrinterWindow.glade.h:6 - #, fuzzy - msgid "License Terms" - msgstr "Printernavn" - --#: ../glade/NewPrinterWindow.glade.h:8 -+#: ../glade/NewPrinterWindow.glade.h:7 - msgid "Location of the LPD network printer" - msgstr "Placering af LPD-netværksprinteren" - --#: ../glade/NewPrinterWindow.glade.h:9 -+#: ../glade/NewPrinterWindow.glade.h:8 - msgid "Location of the network printer" - msgstr "Placering af netværksprinteren" - --#: ../glade/NewPrinterWindow.glade.h:10 -+#: ../glade/NewPrinterWindow.glade.h:9 - msgid "Location (optional)" - msgstr "Placering (eventuelt)" - --#: ../glade/NewPrinterWindow.glade.h:11 -+#: ../glade/NewPrinterWindow.glade.h:10 - #, fuzzy - msgid "Network Printer" - msgstr "Ny printer" - --#: ../glade/NewPrinterWindow.glade.h:12 -+#: ../glade/NewPrinterWindow.glade.h:11 - #, fuzzy - msgid "Note" - msgstr "Tilstand" - --#: ../glade/NewPrinterWindow.glade.h:13 -+#: ../glade/NewPrinterWindow.glade.h:12 - #, fuzzy - msgid "Output Quality" - msgstr "Tilstand" - --#: ../glade/NewPrinterWindow.glade.h:14 -+#: ../glade/NewPrinterWindow.glade.h:13 - msgid "Printer Name" - msgstr "Printernavn" - --#: ../glade/NewPrinterWindow.glade.h:15 -+#: ../glade/NewPrinterWindow.glade.h:14 - #, fuzzy - msgid "SMB Printer" - msgstr "Printernavn" - --#: ../glade/NewPrinterWindow.glade.h:16 -+#: ../glade/NewPrinterWindow.glade.h:15 - #, fuzzy - msgid "Select Driver" - msgstr "Standardprinter" - --#: ../glade/NewPrinterWindow.glade.h:17 -+#: ../glade/NewPrinterWindow.glade.h:16 - msgid "Settings of the serial port" - msgstr "Indstillinger for serielporten" - --#: ../glade/NewPrinterWindow.glade.h:18 -+#: ../glade/NewPrinterWindow.glade.h:17 - msgid "smb://[workgroup/]server[:port]/printer" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:19 -+#: ../glade/NewPrinterWindow.glade.h:18 - #, fuzzy - msgid "Choose Class Members" - msgstr "" - "Adgangskode kræves\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:20 -+#: ../glade/NewPrinterWindow.glade.h:19 - #, fuzzy - msgid "Choose Driver" - msgstr "" - "Adgangskode kræves\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:21 -+#: ../glade/NewPrinterWindow.glade.h:20 - #, fuzzy - msgid "Describe Printer" - msgstr "" - "Adgangskode kræves\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:22 -+#: ../glade/NewPrinterWindow.glade.h:21 - #, fuzzy - msgid "Existing Settings" - msgstr "" - "Adgangskode kræves\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:23 -+#: ../glade/NewPrinterWindow.glade.h:22 - #, fuzzy - msgid "Installable Options" - msgstr "" - "Adgangskode kræves\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:24 -+#: ../glade/NewPrinterWindow.glade.h:23 - #, fuzzy - msgid "Select Device" - msgstr "" - "Adgangskode kræves\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:25 -+#: ../glade/NewPrinterWindow.glade.h:24 - msgid "Baud Rate" - msgstr "Baud-hastighed" - --#: ../glade/NewPrinterWindow.glade.h:26 -+#: ../glade/NewPrinterWindow.glade.h:25 - msgid "Browse..." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:27 -+#: ../glade/NewPrinterWindow.glade.h:26 - #, fuzzy - msgid "Comments..." - msgstr "Kommentar" - --#: ../glade/NewPrinterWindow.glade.h:28 -+#: ../glade/NewPrinterWindow.glade.h:27 - #, fuzzy - msgid "Connection" - msgstr "Forbinder" - --#: ../glade/NewPrinterWindow.glade.h:29 -+#: ../glade/NewPrinterWindow.glade.h:28 - msgid "Data Bits" - msgstr "Databit" - --#: ../glade/NewPrinterWindow.glade.h:30 -+#: ../glade/NewPrinterWindow.glade.h:29 - msgid "" - "Default\n" - "1200\n" -@@ -1838,7 +1834,7 @@ msgstr "" - "57600\n" - "115200" - --#: ../glade/NewPrinterWindow.glade.h:39 -+#: ../glade/NewPrinterWindow.glade.h:38 - msgid "" - "Default\n" - "8\n" -@@ -1848,7 +1844,7 @@ msgstr "" - "8\n" - "7" - --#: ../glade/NewPrinterWindow.glade.h:42 -+#: ../glade/NewPrinterWindow.glade.h:41 - msgid "" - "Default\n" - "None\n" -@@ -1860,7 +1856,7 @@ msgstr "" - "Ulige\n" - "Lige" - --#: ../glade/NewPrinterWindow.glade.h:46 -+#: ../glade/NewPrinterWindow.glade.h:45 - msgid "" - "Default\n" - "None\n" -@@ -1874,121 +1870,121 @@ msgstr "" - "RTS/CTS (Maskinel)\n" - "DTR/DSR (Maskinel)" - --#: ../glade/NewPrinterWindow.glade.h:51 -+#: ../glade/NewPrinterWindow.glade.h:50 - #: ../glade/PrinterPropertiesDialog.glade.h:35 - msgid "Description:" - msgstr "Beskrivelse:" - --#: ../glade/NewPrinterWindow.glade.h:52 ../troubleshoot/DeviceListed.py:40 -+#: ../glade/NewPrinterWindow.glade.h:51 ../troubleshoot/DeviceListed.py:40 - msgid "Device URI" - msgstr "Enheds-URI" - --#: ../glade/NewPrinterWindow.glade.h:53 -+#: ../glade/NewPrinterWindow.glade.h:52 - #, fuzzy - msgid "Device description." - msgstr "Beskrivelse:" - --#: ../glade/NewPrinterWindow.glade.h:54 -+#: ../glade/NewPrinterWindow.glade.h:53 - msgid "DirectJet" - msgstr "DirectJet" - --#: ../glade/NewPrinterWindow.glade.h:56 -+#: ../glade/NewPrinterWindow.glade.h:55 - #, fuzzy - msgid "Driver details" - msgstr "Drivrutiner" - --#: ../glade/NewPrinterWindow.glade.h:57 -+#: ../glade/NewPrinterWindow.glade.h:56 - msgid "Empty" - msgstr "Tom" - --#: ../glade/NewPrinterWindow.glade.h:58 -+#: ../glade/NewPrinterWindow.glade.h:57 - msgid "Find _Queue..." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:59 -+#: ../glade/NewPrinterWindow.glade.h:58 - msgid "Flow Control" - msgstr "Flydningskontrol" - --#: ../glade/NewPrinterWindow.glade.h:60 -+#: ../glade/NewPrinterWindow.glade.h:59 - msgid "" - "For the printer you have selected there are drivers available for download." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:61 -+#: ../glade/NewPrinterWindow.glade.h:60 - msgid "Free software" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:62 -+#: ../glade/NewPrinterWindow.glade.h:61 - msgid "Graphics:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:63 -+#: ../glade/NewPrinterWindow.glade.h:62 - #, fuzzy - msgid "Host:" - msgstr "Værtsnavn:" - --#: ../glade/NewPrinterWindow.glade.h:64 -+#: ../glade/NewPrinterWindow.glade.h:63 - msgid "Human-readable description such as \"HP LaserJet with Duplexer\"" - msgstr "Læsbar beskrivelse som fx \"HP LaserJet med Duplexer\"" - --#: ../glade/NewPrinterWindow.glade.h:65 -+#: ../glade/NewPrinterWindow.glade.h:64 - msgid "Human-readable location such as \"Lab 1\"" - msgstr "Læsbar placering, som fx \"Lab 3 \"" - --#: ../glade/NewPrinterWindow.glade.h:67 -+#: ../glade/NewPrinterWindow.glade.h:66 - msgid "LPD" - msgstr "LPD" - --#: ../glade/NewPrinterWindow.glade.h:68 -+#: ../glade/NewPrinterWindow.glade.h:67 - msgid "License:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:69 -+#: ../glade/NewPrinterWindow.glade.h:68 - #, fuzzy - msgid "Line art:" - msgstr "Printerstatus:" - --#: ../glade/NewPrinterWindow.glade.h:70 -+#: ../glade/NewPrinterWindow.glade.h:69 - #, fuzzy - msgid "Local Driver" - msgstr "Lokale printere" - --#: ../glade/NewPrinterWindow.glade.h:71 -+#: ../glade/NewPrinterWindow.glade.h:70 - #, fuzzy - msgid "Make and model:" - msgstr "Producent og model." - --#: ../glade/NewPrinterWindow.glade.h:72 -+#: ../glade/NewPrinterWindow.glade.h:71 - msgid "Manufacturer" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:73 -+#: ../glade/NewPrinterWindow.glade.h:72 - #, fuzzy - msgid "Network" - msgstr "Ny printer" - --#: ../glade/NewPrinterWindow.glade.h:75 -+#: ../glade/NewPrinterWindow.glade.h:74 - msgid "No, I do not accept this license" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:76 -+#: ../glade/NewPrinterWindow.glade.h:75 - msgid "Parity" - msgstr "Paritet" - --#: ../glade/NewPrinterWindow.glade.h:78 -+#: ../glade/NewPrinterWindow.glade.h:77 - msgid "Patented algorithms" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:79 -+#: ../glade/NewPrinterWindow.glade.h:78 - msgid "Photo:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:80 -+#: ../glade/NewPrinterWindow.glade.h:79 - #, fuzzy - msgid "Port number:" - msgstr "Portnummer" - --#: ../glade/NewPrinterWindow.glade.h:81 -+#: ../glade/NewPrinterWindow.glade.h:80 - #, fuzzy - msgid "" - "PostScript Printer Description (PPD) files can often be found on the driver " -@@ -1999,82 +1995,82 @@ msgstr "" - "drivrutinedisketten som kom med printeren. For PostScript-printere er de " - "ofte en del af Windows® drivrutinen." - --#: ../glade/NewPrinterWindow.glade.h:82 -+#: ../glade/NewPrinterWindow.glade.h:81 - #, fuzzy - msgid "Printer model:" - msgstr "Printernavn" - --#: ../glade/NewPrinterWindow.glade.h:83 -+#: ../glade/NewPrinterWindow.glade.h:82 - msgid "Probe" - msgstr "Prøv" - --#: ../glade/NewPrinterWindow.glade.h:84 -+#: ../glade/NewPrinterWindow.glade.h:83 - #, fuzzy - msgid "Prompt user if authentication is required" - msgstr "Autentificering" - --#: ../glade/NewPrinterWindow.glade.h:85 -+#: ../glade/NewPrinterWindow.glade.h:84 - #, fuzzy - msgid "Provide PPD file" - msgstr "Leveret PPD-fil" - --#: ../glade/NewPrinterWindow.glade.h:86 -+#: ../glade/NewPrinterWindow.glade.h:85 - msgid "Queue:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:87 -+#: ../glade/NewPrinterWindow.glade.h:86 - msgid "SCSI" - msgstr "SCSI" - --#: ../glade/NewPrinterWindow.glade.h:88 -+#: ../glade/NewPrinterWindow.glade.h:87 - msgid "SMB" - msgstr "SMB" - --#: ../glade/NewPrinterWindow.glade.h:89 -+#: ../glade/NewPrinterWindow.glade.h:88 - msgid "Search for a printer driver to download" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:90 -+#: ../glade/NewPrinterWindow.glade.h:89 - #, fuzzy - msgid "Searching..." - msgstr "Nyt navn for printeren" - --#: ../glade/NewPrinterWindow.glade.h:91 -+#: ../glade/NewPrinterWindow.glade.h:90 - msgid "Select A File" - msgstr "Vælg en fil" - --#: ../glade/NewPrinterWindow.glade.h:92 -+#: ../glade/NewPrinterWindow.glade.h:91 - #, fuzzy - msgid "Select printer from database" - msgstr "Vælg en printer fra databasen" - --#: ../glade/NewPrinterWindow.glade.h:93 -+#: ../glade/NewPrinterWindow.glade.h:92 - msgid "Serial" - msgstr "Seriel" - --#: ../glade/NewPrinterWindow.glade.h:94 -+#: ../glade/NewPrinterWindow.glade.h:93 - #, fuzzy - msgid "Set authentication details now" - msgstr "Autentificering" - --#: ../glade/NewPrinterWindow.glade.h:95 -+#: ../glade/NewPrinterWindow.glade.h:94 - msgid "Short name for this printer such as \"laserjet\"" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:96 -+#: ../glade/NewPrinterWindow.glade.h:95 - msgid "Supplier:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:97 -+#: ../glade/NewPrinterWindow.glade.h:96 - msgid "Support:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:98 -+#: ../glade/NewPrinterWindow.glade.h:97 - #, fuzzy - msgid "Text:" - msgstr "Udskriv testside" - --#: ../glade/NewPrinterWindow.glade.h:99 -+#: ../glade/NewPrinterWindow.glade.h:98 - msgid "" - "The foomatic printer database contains various manufacturer provided " - "PostScript Printer Description (PPD) files and also can generate PPD files " -@@ -2088,20 +2084,20 @@ msgstr "" - "producenternes egne PPD filer bedre adgang til specifikke funktioner for den " - "pågældende printer." - --#: ../glade/NewPrinterWindow.glade.h:100 -+#: ../glade/NewPrinterWindow.glade.h:99 - msgid "" - "These drivers do not come from your operating system supplier and will not " - "be covered by their commercial support. See the support and license terms " - "of the driver's supplier." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:101 -+#: ../glade/NewPrinterWindow.glade.h:100 - msgid "" - "This driver supports additional hardware that may be installed in the " - "printer." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:102 -+#: ../glade/NewPrinterWindow.glade.h:101 - msgid "" - "This is done by assuming that options with the same name do have the same " - "meaning. Settings of options that are not present in the new PPD will be " -@@ -2111,7 +2107,7 @@ msgstr "" - "betydning. Indstillinger af alternativer som ikke findes i den nye PPD går " - "tabt og alternativer som kun findes i den nye PPD vil blive sat som standard." - --#: ../glade/NewPrinterWindow.glade.h:103 -+#: ../glade/NewPrinterWindow.glade.h:102 - msgid "" - "This way all current option settings will be lost. The default settings of " - "the new PPD will be used. " -@@ -2119,43 +2115,43 @@ msgstr "" - "På denne måde vil alle nuværende alternativ-indstillinger gå tabt. " - "Standardindstillinger for den nye PPD vil blive brugt. " - --#: ../glade/NewPrinterWindow.glade.h:104 -+#: ../glade/NewPrinterWindow.glade.h:103 - msgid "Try to copy the option settings over from the old PPD. " - msgstr "Forsøg at kopiere options-indstillingerne over fra den gamle PPD. " - --#: ../glade/NewPrinterWindow.glade.h:105 -+#: ../glade/NewPrinterWindow.glade.h:104 - msgid "URI:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:107 -+#: ../glade/NewPrinterWindow.glade.h:106 - msgid "Use the new PPD (Postscript Printer Description) as is." - msgstr "Brug den nye PPD (Postscript Printer Description) som den er." - --#: ../glade/NewPrinterWindow.glade.h:109 -+#: ../glade/NewPrinterWindow.glade.h:108 - msgid "" - "With this choice no driver download will be performed. In the next steps a " - "locally installed driver will be selected." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:110 -+#: ../glade/NewPrinterWindow.glade.h:109 - #, fuzzy - msgid "Yes, I accept this license" - msgstr "Accepterer job" - --#: ../glade/NewPrinterWindow.glade.h:111 -+#: ../glade/NewPrinterWindow.glade.h:110 - msgid "_Search" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:112 -+#: ../glade/NewPrinterWindow.glade.h:111 - msgid "_Verify..." - msgstr "_Verificér..." - --#: ../glade/NewPrinterWindow.glade.h:113 -+#: ../glade/NewPrinterWindow.glade.h:112 - #: ../glade/PrinterPropertiesDialog.glade.h:128 - msgid "move left" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:114 -+#: ../glade/NewPrinterWindow.glade.h:113 - #: ../glade/PrinterPropertiesDialog.glade.h:129 - #, fuzzy - msgid "move right" -@@ -3046,7 +3042,7 @@ msgstr "" - msgid "Remember to load paper of type '%s' into the printer first." - msgstr "" - --#: ../troubleshoot/PrintTestPage.py:399 -+#: ../troubleshoot/PrintTestPage.py:416 - msgid "Error submitting test page" - msgstr "" - -@@ -3242,6 +3238,10 @@ msgid "Select default printer" - msgstr "Gør til standardprintere" - - #, fuzzy -+#~ msgid "HP Printer (HPLIP) via network" -+#~ msgstr "Printernavn" -+ -+#, fuzzy - #~ msgid "Not Found" - #~ msgstr "Ikke fundet" - -diff -up system-config-printer-1.1.5/po/de.po.git-1.1.x system-config-printer-1.1.5/po/de.po ---- system-config-printer-1.1.5/po/de.po.git-1.1.x 2009-03-03 22:21:46.000000000 +0000 -+++ system-config-printer-1.1.5/po/de.po 2009-03-10 17:43:31.000000000 +0000 -@@ -15,7 +15,7 @@ msgid "" - msgstr "" - "Project-Id-Version: system-config-printer 0.7.81\n" - "Report-Msgid-Bugs-To: https://bugzilla.redhat.com/bugzilla\n" --"POT-Creation-Date: 2009-03-02 23:22+0000\n" -+"POT-Creation-Date: 2009-03-10 16:51+0000\n" - "PO-Revision-Date: 2009-02-24 00:53+0100\n" - "Last-Translator: Marcus Nitzschke \n" - "Language-Team: German \n" -@@ -63,11 +63,11 @@ msgstr "" - msgid "Enter IP address" - msgstr "Geben Sie IP-Adresse ein" - --#: ../authconn.py:35 ../glade/NewPrinterWindow.glade.h:108 -+#: ../authconn.py:35 ../glade/NewPrinterWindow.glade.h:107 - msgid "Username:" - msgstr "Benutzername:" - --#: ../authconn.py:36 ../glade/NewPrinterWindow.glade.h:77 -+#: ../authconn.py:36 ../glade/NewPrinterWindow.glade.h:76 - msgid "Password:" - msgstr "Passwort:" - -@@ -75,7 +75,7 @@ msgstr "Passwort:" - msgid "Domain:" - msgstr "Domain:" - --#: ../authconn.py:46 -+#: ../authconn.py:46 ../authconn.py:409 - msgid "Authentication" - msgstr "Authentifizierung" - -@@ -83,43 +83,52 @@ msgstr "Authentifizierung" - msgid "Remember password" - msgstr "Passwort merken" - --#: ../authconn.py:211 ../authconn.py:232 -+#: ../authconn.py:208 -+#, python-format -+msgid "Unauthorized request (%s)" -+msgstr "" -+ -+#: ../authconn.py:209 -+msgid "You are not authorized to carry out therequested action." -+msgstr "" -+ -+#: ../authconn.py:212 ../authconn.py:233 - msgid "Operation canceled" - msgstr "Operation abgebrochen:" - --#: ../authconn.py:253 -+#: ../authconn.py:250 - #, python-format - msgid "CUPS server error (%s)" - msgstr "CUPS-Server-Fehler (%s)" - --#: ../authconn.py:255 ../errordialogs.py:57 --#: ../troubleshoot/PrintTestPage.py:400 -+#: ../authconn.py:252 ../errordialogs.py:56 ../errordialogs.py:70 -+msgid "CUPS server error" -+msgstr "Fehlder des CUPS-Servers" -+ -+#: ../authconn.py:261 ../errordialogs.py:57 -+#: ../troubleshoot/PrintTestPage.py:417 - #, python-format - msgid "There was an error during the CUPS operation: '%s'." - msgstr "Beim Betrieb von CUPS trat ein Fehler auf: '%s'." - --#: ../authconn.py:258 -+#: ../authconn.py:264 - msgid "Retry" - msgstr "Wiederaufnehmen" - --#: ../authconn.py:379 ../authconn.py:381 ../errordialogs.py:65 ../pysmb.py:75 -+#: ../authconn.py:385 ../authconn.py:387 ../errordialogs.py:65 ../pysmb.py:75 - #: ../pysmb.py:77 - msgid "Not authorized" - msgstr "Nicht berechtigt" - --#: ../authconn.py:382 ../pysmb.py:78 -+#: ../authconn.py:388 ../pysmb.py:78 - msgid "The password may be incorrect." - msgstr "Das Passwort ist möglicherweise falsch." - --#: ../authconn.py:400 -+#: ../authconn.py:407 - #, python-format - msgid "Authentication (%s)" - msgstr "Authentifizierung (%s)" - --#: ../errordialogs.py:56 ../errordialogs.py:70 --msgid "CUPS server error" --msgstr "Fehlder des CUPS-Servers" -- - #: ../errordialogs.py:66 - msgid "" - "The password may be incorrect, or the server may be configured to deny " -@@ -148,7 +157,7 @@ msgstr "Upgrade erforderlich" - msgid "Server error" - msgstr "Serverfehler" - --#: ../errordialogs.py:82 ../system-config-printer.py:1219 -+#: ../errordialogs.py:82 ../system-config-printer.py:1223 - msgid "Not connected" - msgstr "Nicht verbunden" - -@@ -170,7 +179,7 @@ msgstr "_Neue Gruppe" - msgid "_New Group from Selection" - msgstr "_Neue Gruppe von Auswahl" - --#: ../GroupsPane.py:98 ../system-config-printer.py:393 -+#: ../GroupsPane.py:98 ../system-config-printer.py:397 - msgid "_Rename" - msgstr "_Umbenennen" - -@@ -238,7 +247,7 @@ msgid "Document" - msgstr "Dokument" - - #: ../jobviewer.py:212 ../my-default-printer.py:153 --#: ../system-config-printer.py:366 ../system-config-printer.py:1367 -+#: ../system-config-printer.py:370 ../system-config-printer.py:1371 - #: ../troubleshoot/PrintTestPage.py:84 - msgid "Printer" - msgstr "Drucker" -@@ -275,8 +284,8 @@ msgstr "Druckstatus des Dokuments (%s)" - - #: ../jobviewer.py:386 ../jobviewer.py:451 ../jobviewer.py:452 - #: ../jobviewer.py:492 ../jobviewer.py:600 ../jobviewer.py:727 --#: ../jobviewer.py:1196 ../jobviewer.py:1222 ../system-config-printer.py:2546 --#: ../glade/NewPrinterWindow.glade.h:106 -+#: ../jobviewer.py:1196 ../jobviewer.py:1222 ../system-config-printer.py:2556 -+#: ../glade/NewPrinterWindow.glade.h:105 - #: ../troubleshoot/ChooseNetworkPrinter.py:101 - #: ../troubleshoot/ChooseNetworkPrinter.py:102 - #: ../troubleshoot/ChooseNetworkPrinter.py:105 -@@ -364,12 +373,12 @@ msgstr "Angehalten bis zum Wochenende" - msgid "Pending" - msgstr "Ausstehend" - --#: ../jobviewer.py:591 ../system-config-printer.py:186 -+#: ../jobviewer.py:591 ../system-config-printer.py:190 - #: ../troubleshoot/PrintTestPage.py:43 - msgid "Processing" - msgstr "Ausführend" - --#: ../jobviewer.py:592 ../system-config-printer.py:188 -+#: ../jobviewer.py:592 ../system-config-printer.py:192 - #: ../troubleshoot/PrintTestPage.py:44 - msgid "Stopped" - msgstr "Angehalten" -@@ -480,8 +489,8 @@ msgstr "Standardeinstell_ung des Systems - msgid "_Set Default" - msgstr "_Standard setzen" - --#: ../my-default-printer.py:158 ../system-config-printer.py:423 --#: ../system-config-printer.py:3660 ../troubleshoot/ChooseNetworkPrinter.py:37 -+#: ../my-default-printer.py:158 ../system-config-printer.py:427 -+#: ../system-config-printer.py:3675 ../troubleshoot/ChooseNetworkPrinter.py:37 - #: ../troubleshoot/ChoosePrinter.py:38 - msgid "Location" - msgstr "Ort" -@@ -510,7 +519,7 @@ msgstr "Standardverhalten" - msgid "Authenticated" - msgstr "Authentifiziere" - --#: ../ppdippstr.py:50 ../system-config-printer.py:6259 -+#: ../ppdippstr.py:50 ../system-config-printer.py:6207 - msgid "None" - msgstr "Keine" - -@@ -724,125 +733,125 @@ msgstr "600 dpi, farbig, Schwarz + Farb- - msgid "1200 dpi, photo, black + color cartridge, photo paper" - msgstr "1200 dpi, Foto, Schwarz + Farb-Patrone, Fotopapier" - --#: ../system-config-printer.py:127 -+#: ../system-config-printer.py:131 - msgid "To do this, select System->Administration->Firewall from the main menu." - msgstr "" - "Um dies zu tun, wählen Sie System->Administration->Firewall aus dem " - "Hauptmenü." - --#: ../system-config-printer.py:185 -+#: ../system-config-printer.py:189 - msgid "Idle" - msgstr "Untätig" - --#: ../system-config-printer.py:187 -+#: ../system-config-printer.py:191 - msgid "Busy" - msgstr "Beschäftigt" - --#: ../system-config-printer.py:372 ../system-config-printer.py:1373 -+#: ../system-config-printer.py:376 ../system-config-printer.py:1377 - msgid "Class" - msgstr "Klasse" - --#: ../system-config-printer.py:399 -+#: ../system-config-printer.py:403 - msgid "Set As De_fault" - msgstr "Als St_andard setzen" - --#: ../system-config-printer.py:403 -+#: ../system-config-printer.py:407 - msgid "_Create class" - msgstr "_Erzeuge Klasse" - --#: ../system-config-printer.py:405 -+#: ../system-config-printer.py:409 - msgid "View Print _Queue" - msgstr "Zeige Drucker-_Warteschlage" - --#: ../system-config-printer.py:407 -+#: ../system-config-printer.py:411 - msgid "_Add to Group" - msgstr "_Hinzufügen zu Gruppe" - --#: ../system-config-printer.py:409 -+#: ../system-config-printer.py:413 - msgid "Save Results as _Group" - msgstr "Speichere Resultat als _Gruppe" - --#: ../system-config-printer.py:411 -+#: ../system-config-printer.py:415 - msgid "Save Filter as _Search Group" - msgstr "Speichere Filter als _Such-Gruppe" - --#: ../system-config-printer.py:415 -+#: ../system-config-printer.py:419 - msgid "E_nabled" - msgstr "A_ktiviert" - --#: ../system-config-printer.py:417 -+#: ../system-config-printer.py:421 - msgid "_Shared" - msgstr "_Freigegeben" - --#: ../system-config-printer.py:421 ../troubleshoot/ChooseNetworkPrinter.py:35 -+#: ../system-config-printer.py:425 ../troubleshoot/ChooseNetworkPrinter.py:35 - #: ../troubleshoot/ChoosePrinter.py:36 ../troubleshoot/DeviceListed.py:36 - msgid "Name" - msgstr "Name" - --#: ../system-config-printer.py:422 -+#: ../system-config-printer.py:426 - msgid "Description" - msgstr "Beschreibung" - --#: ../system-config-printer.py:424 -+#: ../system-config-printer.py:428 - msgid "Manufacturer / Model" - msgstr "Hersteller / Modell" - - #. Printer state reasons list --#: ../system-config-printer.py:499 -+#: ../system-config-printer.py:503 - msgid "Message" - msgstr "Nachricht" - --#: ../system-config-printer.py:534 -+#: ../system-config-printer.py:538 - msgid "Problems?" - msgstr "Probleme?" - --#: ../system-config-printer.py:637 ../system-config-printer.py:639 -+#: ../system-config-printer.py:641 ../system-config-printer.py:643 - msgid "Members of this class" - msgstr "Mitglieder dieser Klasse" - --#: ../system-config-printer.py:638 ../system-config-printer.py:640 -+#: ../system-config-printer.py:642 ../system-config-printer.py:644 - msgid "Others" - msgstr "Andere" - --#: ../system-config-printer.py:641 -+#: ../system-config-printer.py:645 - msgid "Devices" - msgstr "Geräte" - --#: ../system-config-printer.py:642 -+#: ../system-config-printer.py:646 - msgid "Connections" - msgstr "Verbindungen" - --#: ../system-config-printer.py:643 -+#: ../system-config-printer.py:647 - msgid "Makes" - msgstr "Erstellt" - --#: ../system-config-printer.py:644 -+#: ../system-config-printer.py:648 - msgid "Models" - msgstr "Modelle" - --#: ../system-config-printer.py:645 -+#: ../system-config-printer.py:649 - msgid "Drivers" - msgstr "Treiber" - --#: ../system-config-printer.py:646 ../glade/NewPrinterWindow.glade.h:55 -+#: ../system-config-printer.py:650 ../glade/NewPrinterWindow.glade.h:54 - msgid "Downloadable Drivers" - msgstr "Herunterladbare Treiber" - --#: ../system-config-printer.py:647 -+#: ../system-config-printer.py:651 - msgid "Users" - msgstr "Benutzer" - --#: ../system-config-printer.py:682 -+#: ../system-config-printer.py:686 - msgid "Automatic rotation" - msgstr "Automatische Drehung" - --#: ../system-config-printer.py:989 -+#: ../system-config-printer.py:993 - #, python-format - msgid "Printer Properties - '%s' on %s" - msgstr "Drucker-Eigenschaften - '%s' auf %s" - - #. The Conflict button was pressed. --#: ../system-config-printer.py:996 -+#: ../system-config-printer.py:1000 - msgid "" - "There are conflicting options.\n" - "Changes can only be applied after\n" -@@ -852,78 +861,78 @@ msgstr "" - "Änderungen können nur übernommen werden,\n" - "nachdem diese Konflikte gelöst wurden." - --#: ../system-config-printer.py:1214 -+#: ../system-config-printer.py:1218 - #, python-format - msgid "Printer configuration - %s" - msgstr "Druckerkonfiguration - %s" - --#: ../system-config-printer.py:1217 -+#: ../system-config-printer.py:1221 - #, python-format - msgid "Connected to %s" - msgstr "Verbunden mit %s" - - #. Update our copy of the printer's settings. --#: ../system-config-printer.py:1257 ../system-config-printer.py:2042 -+#: ../system-config-printer.py:1261 ../system-config-printer.py:2046 - msgid "obtaining queue details" - msgstr "Warteschlangen-Details werden ermittelt" - --#: ../system-config-printer.py:1295 -+#: ../system-config-printer.py:1299 - msgid "Remove from Group" - msgstr "Entferne aus Gruppe" - --#: ../system-config-printer.py:1361 -+#: ../system-config-printer.py:1365 - msgid "Network printer (discovered)" - msgstr "Netzwerk-Drucker (entdeckt)" - --#: ../system-config-printer.py:1364 -+#: ../system-config-printer.py:1368 - msgid "Network class (discovered)" - msgstr "Netzwerk-Klasse (entdeckt)" - --#: ../system-config-printer.py:1370 ../system-config-printer.py:5524 --#: ../system-config-printer.py:5594 ../system-config-printer.py:5596 -+#: ../system-config-printer.py:1374 ../system-config-printer.py:5519 -+#: ../system-config-printer.py:5589 ../system-config-printer.py:5591 - msgid "Fax" - msgstr "Fax" - --#: ../system-config-printer.py:1376 ../system-config-printer.py:1382 -+#: ../system-config-printer.py:1380 ../system-config-printer.py:1386 - #: ../troubleshoot/LocalOrRemote.py:30 - msgid "Network printer" - msgstr "Netzwerk-Drucker" - --#: ../system-config-printer.py:1379 -+#: ../system-config-printer.py:1383 - msgid "Network print share" - msgstr "Netzwerk-Drucker-Freigabe" - --#: ../system-config-printer.py:1508 ../glade/ConnectingDialog.glade.h:2 -+#: ../system-config-printer.py:1512 ../glade/ConnectingDialog.glade.h:2 - #, no-c-format, python-format - msgid "Opening connection to %s" - msgstr "Verbindung zu %s wird geöffnet" - --#: ../system-config-printer.py:1887 -+#: ../system-config-printer.py:1891 - msgid "Installable Options" - msgstr "Installierbare Optionen" - --#: ../system-config-printer.py:1888 -+#: ../system-config-printer.py:1892 - #: ../glade/PrinterPropertiesDialog.glade.h:109 - msgid "Printer Options" - msgstr "Druckeroptionen" - --#: ../system-config-printer.py:1924 -+#: ../system-config-printer.py:1928 - #, python-format - msgid "modifying class %s" - msgstr "Klasse %s wird geändert" - --#: ../system-config-printer.py:1926 ../system-config-printer.py:3019 --#: ../system-config-printer.py:3044 ../system-config-printer.py:6547 --#: ../system-config-printer.py:6559 ../system-config-printer.py:6581 -+#: ../system-config-printer.py:1930 ../system-config-printer.py:3037 -+#: ../system-config-printer.py:3062 ../system-config-printer.py:6495 -+#: ../system-config-printer.py:6507 ../system-config-printer.py:6529 - #, python-format - msgid "modifying printer %s" - msgstr "Drucker anpassen %s" - --#: ../system-config-printer.py:1941 -+#: ../system-config-printer.py:1945 - msgid "This will delete this class!" - msgstr "Damit wird diese Klasse gelöscht!" - --#: ../system-config-printer.py:1942 -+#: ../system-config-printer.py:1946 - msgid "Proceed anyway?" - msgstr "Trotzdem durchführen?" - -@@ -931,45 +940,45 @@ msgstr "Trotzdem durchführen?" - #. but we have never fetched the server settings to see whether - #. the server is publishing shared printers. Fetch the settings - #. now so that we can update the "not published" label if necessary. --#: ../system-config-printer.py:2030 ../system-config-printer.py:3203 -+#: ../system-config-printer.py:2034 ../system-config-printer.py:3221 - #, fuzzy - msgid "fetching server settings" - msgstr "Server-Einstellungen anpassen" - --#: ../system-config-printer.py:2100 -+#: ../system-config-printer.py:2104 - msgid "Set Default Printer" - msgstr "Setze Standarddrucker" - --#: ../system-config-printer.py:2102 -+#: ../system-config-printer.py:2106 - msgid "Do you want to set this as the system-wide default printer?" - msgstr "Wollen Sie diesen als systemweiten Standard-Drucker setzen?" - --#: ../system-config-printer.py:2104 -+#: ../system-config-printer.py:2108 - msgid "Set as the _system-wide default printer" - msgstr "Als systemweiten Standard-Drucker setzen" - --#: ../system-config-printer.py:2106 -+#: ../system-config-printer.py:2110 - msgid "_Clear my personal default setting" - msgstr "_Lösche meine Standard-Einstellungen" - --#: ../system-config-printer.py:2107 -+#: ../system-config-printer.py:2111 - msgid "Set as my _personal default printer" - msgstr "Als _persönlichen Standarddrucker setzen" - --#: ../system-config-printer.py:2112 -+#: ../system-config-printer.py:2116 - msgid "setting default printer" - msgstr "Standarddrucker setzen" - --#: ../system-config-printer.py:2169 -+#: ../system-config-printer.py:2173 - msgid "printing test page" - msgstr "Drucke eine Testseite " - --#: ../system-config-printer.py:2182 ../system-config-printer.py:2217 --#: ../system-config-printer.py:5418 -+#: ../system-config-printer.py:2186 ../system-config-printer.py:2221 -+#: ../system-config-printer.py:5413 - msgid "Not possible" - msgstr "Nicht möglich" - --#: ../system-config-printer.py:2183 ../system-config-printer.py:2218 -+#: ../system-config-printer.py:2187 ../system-config-printer.py:2222 - msgid "" - "The remote server did not accept the print job, most likely because the " - "printer is not shared." -@@ -977,20 +986,20 @@ msgstr "" - "Der entfernte Server akzeptiert keine Aufträge. Wahrscheinlich liegt es " - "daran, dass der Drucker nicht freigegeben ist." - --#: ../system-config-printer.py:2195 ../system-config-printer.py:2210 -+#: ../system-config-printer.py:2199 ../system-config-printer.py:2214 - msgid "Submitted" - msgstr "Übertragen" - --#: ../system-config-printer.py:2196 -+#: ../system-config-printer.py:2200 - #, python-format - msgid "Test page submitted as job %d" - msgstr "Testseite als Auftrag %d übertragen" - --#: ../system-config-printer.py:2203 -+#: ../system-config-printer.py:2207 - msgid "sending maintenance command" - msgstr "" - --#: ../system-config-printer.py:2211 -+#: ../system-config-printer.py:2215 - #, python-format - msgid "Maintenance command submitted as job %d" - msgstr "Wartungsbefehl als Auftrag %d übertragen" -@@ -998,71 +1007,71 @@ msgstr "Wartungsbefehl als Auftrag %d ü - #. The underlying cupsGetPPD2() function returned NULL without - #. setting an IPP error, so it'll be something like a failed - #. connection. --#: ../system-config-printer.py:2285 ../system-config-printer.py:2381 -+#: ../system-config-printer.py:2289 ../system-config-printer.py:2385 - msgid "Error" - msgstr "Fehler" - --#: ../system-config-printer.py:2286 -+#: ../system-config-printer.py:2290 - msgid "There was a problem connecting to the CUPS server." - msgstr "Bei der Verbindung mit dem CUPS-Server trat ein Fehler auf." - --#: ../system-config-printer.py:2382 -+#: ../system-config-printer.py:2386 - #, python-format - msgid "Option '%s' has value '%s' and cannot be edited." - msgstr "Option »%s« hat den Wert »%s« und kann nicht bearbeitet werden." - --#: ../system-config-printer.py:2466 -+#: ../system-config-printer.py:2476 - msgid "Marker levels are not reported for this printer." - msgstr "" - --#: ../system-config-printer.py:2763 -+#: ../system-config-printer.py:2773 - msgid "Cannot Rename" - msgstr "Kann nicht umbenennen" - --#: ../system-config-printer.py:2764 -+#: ../system-config-printer.py:2774 - msgid "There are queued jobs." - msgstr "Es gibt Aufträge in der Warteschlange." - --#: ../system-config-printer.py:2822 -+#: ../system-config-printer.py:2840 - msgid "renaming printer" - msgstr "Drucker umbenennen" - - #. for classes make sure all members - #. will get added --#: ../system-config-printer.py:2907 -+#: ../system-config-printer.py:2925 - msgid "copying printer" - msgstr "Drucker kopieren" - --#: ../system-config-printer.py:2971 -+#: ../system-config-printer.py:2989 - #, python-format - msgid "Really delete class '%s'?" - msgstr "Möchten Sie die Klasse '%s' wirklich löschen?" - --#: ../system-config-printer.py:2973 -+#: ../system-config-printer.py:2991 - #, python-format - msgid "Really delete printer '%s'?" - msgstr "Möchten Sie den Drucker '%s' wirklich löschen?" - --#: ../system-config-printer.py:2975 -+#: ../system-config-printer.py:2993 - msgid "Really delete selected destinations?" - msgstr "Möchten Sie gewählten Ziele wirklich löschen?" - --#: ../system-config-printer.py:2996 -+#: ../system-config-printer.py:3014 - #, python-format - msgid "deleting printer %s" - msgstr "Drucker löschen %s" - --#: ../system-config-printer.py:3070 -+#: ../system-config-printer.py:3088 - msgid "Publish Shared Printers" - msgstr "Öffentliche freigegebene Drucker" - --#: ../system-config-printer.py:3071 -+#: ../system-config-printer.py:3089 - msgid "" - "Shared printers are not available to other people unless the 'Publish shared " - "printers' option is enabled in the server settings." - msgstr "" - --#: ../system-config-printer.py:3264 -+#: ../system-config-printer.py:3282 - msgid "modifying server settings" - msgstr "Server-Einstellungen anpassen" - -@@ -1072,11 +1081,11 @@ msgstr "Server-Einstellungen anpassen" - #. be unblocked. Unfortunately, this is not yet possible - #. (bug #440469). However, we can display a dialog to suggest - #. that now might be a good time to review the firewall settings. --#: ../system-config-printer.py:3289 -+#: ../system-config-printer.py:3307 - msgid "Review Firewall" - msgstr "Firewall überprüfen" - --#: ../system-config-printer.py:3290 -+#: ../system-config-printer.py:3308 - msgid "" - "You may need to adjust the firewall to allow network printing to this " - "computer." -@@ -1084,25 +1093,25 @@ msgstr "" - "Sie müssen die Firewall anpassen, um Drucken über das Netzwerk für diesen " - "Computer zuzulassen." - --#: ../system-config-printer.py:3623 -+#: ../system-config-printer.py:3638 - msgid "Browsing not available (pysmbc not installed)" - msgstr "Durchsuchen nicht verfügbar (pysmbc nicht installiert)" - - #. SMB list columns --#: ../system-config-printer.py:3629 -+#: ../system-config-printer.py:3644 - msgid "Share" - msgstr "Freigabe" - --#: ../system-config-printer.py:3635 -+#: ../system-config-printer.py:3650 - msgid "Comment" - msgstr "Kommentar" - - #. IPP list columns --#: ../system-config-printer.py:3654 -+#: ../system-config-printer.py:3669 - msgid "Queue" - msgstr "Warteschlange" - --#: ../system-config-printer.py:3668 -+#: ../system-config-printer.py:3683 - msgid "" - "PostScript Printer Description files (*.ppd, *.PPD, *.ppd.gz, *.PPD.gz, *." - "PPD.GZ)" -@@ -1110,62 +1119,62 @@ msgstr "" - "PostScript Drucker-Beschreibungsdatei (*.ppd, *.PPD, *.ppd.gz, *.PPD.gz, *." - "PPD.GZ)" - --#: ../system-config-printer.py:3677 -+#: ../system-config-printer.py:3692 - msgid "All files (*)" - msgstr "Alle Dateien (*)" - --#: ../system-config-printer.py:3713 ../system-config-printer.py:5970 --#: ../system-config-printer.py:6008 ../applet.py:124 -+#: ../system-config-printer.py:3728 ../system-config-printer.py:5918 -+#: ../system-config-printer.py:5956 ../applet.py:124 - msgid "Search" - msgstr "Suche" - --#: ../system-config-printer.py:3736 ../system-config-printer.py:3760 --#: ../glade/NewPrinterWindow.glade.h:74 -+#: ../system-config-printer.py:3751 ../system-config-printer.py:3775 -+#: ../glade/NewPrinterWindow.glade.h:73 - msgid "New Printer" - msgstr "Neuer Drucker" - --#: ../system-config-printer.py:3747 -+#: ../system-config-printer.py:3762 - msgid "New Class" - msgstr "Neue Klasse" - --#: ../system-config-printer.py:3752 -+#: ../system-config-printer.py:3767 - msgid "Change Device URI" - msgstr "Geräte-URI ändern" - --#: ../system-config-printer.py:3758 -+#: ../system-config-printer.py:3773 - msgid "Change Driver" - msgstr "Treiber ändern" - --#: ../system-config-printer.py:3927 ../system-config-printer.py:3993 --#: ../system-config-printer.py:4289 ../system-config-printer.py:4487 --#: ../system-config-printer.py:5772 ../system-config-printer.py:5995 -+#: ../system-config-printer.py:3942 ../system-config-printer.py:4008 -+#: ../system-config-printer.py:4304 ../system-config-printer.py:4502 -+#: ../system-config-printer.py:5762 ../system-config-printer.py:5943 - msgid "Searching" - msgstr "Suchen" - --#: ../system-config-printer.py:3928 -+#: ../system-config-printer.py:3943 - msgid "Searching for downloadable drivers" - msgstr "Suche nach herunterladbaren Treibern" - --#: ../system-config-printer.py:3994 ../system-config-printer.py:4290 -+#: ../system-config-printer.py:4009 ../system-config-printer.py:4305 - msgid "Searching for drivers" - msgstr "Suche nach Treibern" - --#: ../system-config-printer.py:4488 ../system-config-printer.py:5773 -+#: ../system-config-printer.py:4503 ../system-config-printer.py:5763 - msgid "Searching for printers" - msgstr "Suche nach Druckern" - --#: ../system-config-printer.py:4497 -+#: ../system-config-printer.py:4512 - #, fuzzy - msgid "fetching device list" - msgstr "Server-Einstellungen anpassen" - - #. Tell the user why he needs the plugin --#: ../system-config-printer.py:4579 -+#: ../system-config-printer.py:4594 - msgid "For this printer a proprietary driver plugin from HP is available.\n" - msgstr "" - "Für diesen Drucker ist ein proprietäres Treiber-Plugin von HP verfügbar.\n" - --#: ../system-config-printer.py:4582 -+#: ../system-config-printer.py:4597 - msgid "" - "The installation of the plugin is required for your printer to work.\n" - "\n" -@@ -1174,7 +1183,7 @@ msgstr "" - "funktioniert.\n" - "\n" - --#: ../system-config-printer.py:4585 -+#: ../system-config-printer.py:4600 - msgid "" - "Installing the plugin is optional, it completes or enhances the " - "functionality\n" -@@ -1185,110 +1194,106 @@ msgstr "" - "von Ihrem Drucker. Ohne Plugin stehen die Basisfunktionen zur Verfügung.\n" - "\n" - --#: ../system-config-printer.py:4589 -+#: ../system-config-printer.py:4604 - msgid "The plugin provides the following features:\n" - msgstr "Das Plugin enthält folgende Funktionen:\n" - --#: ../system-config-printer.py:4592 -+#: ../system-config-printer.py:4607 - msgid " - Printing support\n" - msgstr " - Druck-Unterstützung\n" - --#: ../system-config-printer.py:4595 -+#: ../system-config-printer.py:4610 - msgid " - Faster printing\n" - msgstr " - Schnelleres Drucken\n" - --#: ../system-config-printer.py:4598 -+#: ../system-config-printer.py:4613 - msgid " - Better printout quality\n" - msgstr " - Bessere Ausdruck-Qualität\n" - --#: ../system-config-printer.py:4601 -+#: ../system-config-printer.py:4616 - msgid " - Extra printing features\n" - msgstr " - Extra Druckeigenschaften\n" - --#: ../system-config-printer.py:4604 -+#: ../system-config-printer.py:4619 - msgid " - Scanning support\n" - msgstr " - Scan-Unterstützung\n" - --#: ../system-config-printer.py:4607 -+#: ../system-config-printer.py:4622 - msgid " - Faster scanning\n" - msgstr " - Schnelleres Scannen\n" - --#: ../system-config-printer.py:4610 -+#: ../system-config-printer.py:4625 - msgid " - Better scanning image quality\n" - msgstr " - Bessere Scan-Qualität\n" - --#: ../system-config-printer.py:4613 -+#: ../system-config-printer.py:4628 - msgid " - Faxing support\n" - msgstr " - Fax-Unterstützung\n" - --#: ../system-config-printer.py:4616 -+#: ../system-config-printer.py:4631 - msgid " - Extra fax features\n" - msgstr " - Extra Fax-Eigenschaften\n" - --#: ../system-config-printer.py:4619 -+#: ../system-config-printer.py:4634 - msgid " - Better Input/Output support\n" - msgstr " - Bessere Eingabe-/Ausgabe-Unterstützung\n" - --#: ../system-config-printer.py:4622 -+#: ../system-config-printer.py:4637 - msgid " - Extra user interface features\n" - msgstr " - zusätzliche Funktionen für Benutzeroberfläche\n" - --#: ../system-config-printer.py:4625 -+#: ../system-config-printer.py:4640 - msgid " - Other extra features\n" - msgstr " - Weitere Zusatzfunktionen\n" - --#: ../system-config-printer.py:4630 -+#: ../system-config-printer.py:4645 - msgid "Install plugin" - msgstr "Plugin installieren" - --#: ../system-config-printer.py:4631 -+#: ../system-config-printer.py:4646 - msgid "Do not set up printer" - msgstr "Drucker nicht einrichten" - --#: ../system-config-printer.py:4632 -+#: ../system-config-printer.py:4647 - msgid "Set up without plugin" - msgstr "Einrichten ohne Plugin" - --#: ../system-config-printer.py:4634 ../troubleshoot/PrintTestPage.py:118 -+#: ../system-config-printer.py:4649 ../troubleshoot/PrintTestPage.py:118 - msgid "Yes" - msgstr "Ja" - --#: ../system-config-printer.py:4635 ../troubleshoot/PrintTestPage.py:119 -+#: ../system-config-printer.py:4650 ../troubleshoot/PrintTestPage.py:119 - msgid "No" - msgstr "Nein" - --#: ../system-config-printer.py:4809 ../system-config-printer.py:4813 -+#: ../system-config-printer.py:4824 ../system-config-printer.py:4828 - msgid " (Current)" - msgstr " (aktuell)" - --#: ../system-config-printer.py:4845 --msgid "HP Printer (HPLIP)" --msgstr "HP-Drucker (HPLIP)" -- --#: ../system-config-printer.py:4886 -+#: ../system-config-printer.py:4881 - msgid "Other" - msgstr "Sonstiges" - - #. device-info - #. PhysicalDevice obj - #. Separator? --#: ../system-config-printer.py:4902 -+#: ../system-config-printer.py:4897 - msgid "Network Printer" - msgstr "Netzwerk-Drucker" - --#: ../system-config-printer.py:4906 -+#: ../system-config-printer.py:4901 - msgid "Find Network Printer" - msgstr "Finde Netzwerk-Drucker" - --#: ../system-config-printer.py:4979 ../system-config-printer.py:5376 -+#: ../system-config-printer.py:4974 ../system-config-printer.py:5371 - msgid "Scanning..." - msgstr "Absuchen …" - --#: ../system-config-printer.py:5034 ../system-config-printer.py:5798 -+#: ../system-config-printer.py:5029 - msgid "No Print Shares" - msgstr "Keine freigegebenen Drucker" - --#: ../system-config-printer.py:5035 -+#: ../system-config-printer.py:5030 - msgid "" - "There were no print shares found. Please check that the Samba service is " - "marked as trusted in your firewall configuration." -@@ -1296,101 +1301,101 @@ msgstr "" - "Es wurden keine Drucker-Freigaben gefunden. Bitte prüfen Sie, ob der Samba-" - "Dienst als 'trusted' gewählt ist in Ihrer Firewall-Konfiguration." - --#: ../system-config-printer.py:5296 ../system-config-printer.py:5357 -+#: ../system-config-printer.py:5291 ../system-config-printer.py:5352 - msgid "Print Share Verified" - msgstr "Drucker-Freigabe verifiziert" - --#: ../system-config-printer.py:5297 ../system-config-printer.py:5358 -+#: ../system-config-printer.py:5292 ../system-config-printer.py:5353 - msgid "This print share is accessible." - msgstr "Auf diese Drucker-Freigabe kann zugegriffen werden." - --#: ../system-config-printer.py:5302 ../system-config-printer.py:5362 -+#: ../system-config-printer.py:5297 ../system-config-printer.py:5357 - msgid "This print share is not accessible." - msgstr "Auf diese Drucker-Freigabe kann nicht zugegriffen werden." - --#: ../system-config-printer.py:5305 -+#: ../system-config-printer.py:5300 - msgid "Print Share Inaccessible" - msgstr "Auf Drucker-Freigabe kann zugegriffen werden" - --#: ../system-config-printer.py:5361 -+#: ../system-config-printer.py:5356 - msgid "Inaccessible" - msgstr "Zugriff verweigert" - --#: ../system-config-printer.py:5419 -+#: ../system-config-printer.py:5414 - #, python-format - msgid "It is not possible to obtain a list of queues from '%s'." - msgstr "" - "Es ist nicht möglich, von '%s' eine Liste der Warteschlangen zu erhalten." - --#: ../system-config-printer.py:5421 -+#: ../system-config-printer.py:5416 - msgid "" - "Obtaining a list of queues is a CUPS extension to IPP. Network printers do " - "not support it." - msgstr "" - --#: ../system-config-printer.py:5424 -+#: ../system-config-printer.py:5419 - msgid "No queues" - msgstr "Keine Warteschlangen" - --#: ../system-config-printer.py:5425 -+#: ../system-config-printer.py:5420 - msgid "There are no queues available." - msgstr "Es sind keine Warteschlangen verfügbar." - --#: ../system-config-printer.py:5516 -+#: ../system-config-printer.py:5511 - msgid "Parallel Port" - msgstr "Parallele Schnittstelle" - --#: ../system-config-printer.py:5518 -+#: ../system-config-printer.py:5513 - msgid "Serial Port" - msgstr "Serielle Schnittstelle" - --#: ../system-config-printer.py:5520 -+#: ../system-config-printer.py:5515 - msgid "USB" - msgstr "USB" - --#: ../system-config-printer.py:5522 ../system-config-printer.py:5525 -+#: ../system-config-printer.py:5517 ../system-config-printer.py:5520 - msgid "HP Linux Imaging and Printing (HPLIP)" - msgstr "HP Linux Imaging and Printing (HPLIP)" - --#: ../system-config-printer.py:5527 -+#: ../system-config-printer.py:5522 - msgid "Hardware Abstraction Layer (HAL)" - msgstr "Hardware Abstraction Layer (HAL)" - --#: ../system-config-printer.py:5529 -+#: ../system-config-printer.py:5524 - msgid "AppSocket/HP JetDirect" - msgstr "AppSocket/HP JetDirect" - --#: ../system-config-printer.py:5538 -+#: ../system-config-printer.py:5533 - #, python-format - msgid "LPD/LPR queue '%s'" - msgstr "" - --#: ../system-config-printer.py:5540 -+#: ../system-config-printer.py:5535 - #, fuzzy - msgid "LPD/LPR queue" - msgstr "LPD/LPR" - --#: ../system-config-printer.py:5543 -+#: ../system-config-printer.py:5538 - msgid "Windows Printer via SAMBA" - msgstr "Windows-Drucker über SAMBA" - --#: ../system-config-printer.py:5545 ../glade/NewPrinterWindow.glade.h:66 -+#: ../system-config-printer.py:5540 ../glade/NewPrinterWindow.glade.h:65 - msgid "IPP" - msgstr "IPP" - --#: ../system-config-printer.py:5547 -+#: ../system-config-printer.py:5542 - msgid "HTTP" - msgstr "HTTP" - --#: ../system-config-printer.py:5632 -+#: ../system-config-printer.py:5624 - msgid "A printer connected to the parallel port." - msgstr "Ein am Parallelport angeschlossener Drucker." - --#: ../system-config-printer.py:5634 -+#: ../system-config-printer.py:5626 - msgid "A printer connected to a USB port." - msgstr "Ein am USB-Port angeschlossener Drucker." - --#: ../system-config-printer.py:5636 -+#: ../system-config-printer.py:5628 - msgid "" - "HPLIP software driving a printer, or the printer function of a multi-" - "function device." -@@ -1398,7 +1403,7 @@ msgstr "" - "HPLIP-Software, die einen Drucker betreibt oder die Druckerfunktion eines " - "multifunktionalen Geräts." - --#: ../system-config-printer.py:5639 -+#: ../system-config-printer.py:5631 - msgid "" - "HPLIP software driving a fax machine, or the fax function of a multi-" - "function device." -@@ -1406,48 +1411,44 @@ msgstr "" - "HPLIP-Software, die eine Fax-Maschine betreibt oder die Fax-Funktion eines " - "multifunktionalen Geräts." - --#: ../system-config-printer.py:5642 -+#: ../system-config-printer.py:5634 - msgid "Local printer detected by the Hardware Abstraction Layer (HAL)." - msgstr "" - "Lokaler Drucker, der vom Hardware Abstraction Layer (HAL) erkannt wurde." - --#: ../system-config-printer.py:5799 --msgid "HPLIP cannot find the device." --msgstr "HPLIP kann kein Gerät finden." -- --#: ../system-config-printer.py:5881 -+#: ../system-config-printer.py:5831 - msgid "No printer was found at that address." - msgstr "Kein Drucker gefunden an dieser Adresse." - --#: ../system-config-printer.py:6020 -+#: ../system-config-printer.py:5968 - msgid "-- Select from search results --" - msgstr "-- Wähle aus Such-Resultate --" - --#: ../system-config-printer.py:6022 -+#: ../system-config-printer.py:5970 - msgid "-- No matches found --" - msgstr "-- Kein Übereinstimmung gefunden --" - --#: ../system-config-printer.py:6203 -+#: ../system-config-printer.py:6151 - msgid " (recommended)" - msgstr " (empfohlen)" - --#: ../system-config-printer.py:6217 -+#: ../system-config-printer.py:6165 - msgid "This PPD is generated by foomatic." - msgstr "PPD wird von foomatic erstellt." - --#: ../system-config-printer.py:6241 -+#: ../system-config-printer.py:6189 - msgid "OpenPrinting" - msgstr "OpenPrinting" - --#: ../system-config-printer.py:6252 -+#: ../system-config-printer.py:6200 - msgid "Distributable" - msgstr "Verteilbar" - --#: ../system-config-printer.py:6293 -+#: ../system-config-printer.py:6241 - msgid ", " - msgstr ", " - --#: ../system-config-printer.py:6298 -+#: ../system-config-printer.py:6246 - #, python-format - msgid "" - "\n" -@@ -1456,20 +1457,20 @@ msgstr "" - "\n" - "(%s)" - --#: ../system-config-printer.py:6303 -+#: ../system-config-printer.py:6251 - msgid "No support contacts known" - msgstr "" - --#: ../system-config-printer.py:6307 ../system-config-printer.py:6320 -+#: ../system-config-printer.py:6255 ../system-config-printer.py:6268 - msgid "Not specified." - msgstr "Nicht angegeben" - - #. Foomatic database problem of some sort. --#: ../system-config-printer.py:6360 -+#: ../system-config-printer.py:6308 - msgid "Database error" - msgstr "Datenbankfehler" - --#: ../system-config-printer.py:6361 -+#: ../system-config-printer.py:6309 - #, python-format - msgid "The '%s' driver cannot be used with printer '%s %s'." - msgstr "Der Treiber »%s« kann nicht mit Drucker »%s %s« verwendet werden." -@@ -1477,62 +1478,62 @@ msgstr "Der Treiber »%s« kann nicht mi - #. This printer references some XML that is not - #. installed by default. Point the user at the - #. package they need to install. --#: ../system-config-printer.py:6371 -+#: ../system-config-printer.py:6319 - #, python-format - msgid "You will need to install the '%s' package in order to use this driver." - msgstr "Sie müssen das Paket »%s« installieren, um diesen Treiber zu benutzen." - - #. This error came from trying to open the PPD file. --#: ../system-config-printer.py:6378 -+#: ../system-config-printer.py:6326 - msgid "PPD error" - msgstr "PPD-Fehler" - --#: ../system-config-printer.py:6380 -+#: ../system-config-printer.py:6328 - msgid "Failed to read PPD file. Possible reason follows:" - msgstr "Konnte PPD-Dateien nicht lesen. Mögliche Ursache:" - - #. Failed to get PPD downloaded from OpenPrinting XXX --#: ../system-config-printer.py:6397 -+#: ../system-config-printer.py:6345 - msgid "Downloadable drivers" - msgstr "Herunterladbare Treiber" - --#: ../system-config-printer.py:6398 -+#: ../system-config-printer.py:6346 - msgid "Failed to download PPD." - msgstr "Herunterladen von PPD fehlgeschlagen." - --#: ../system-config-printer.py:6405 -+#: ../system-config-printer.py:6353 - msgid "fetching PPD" - msgstr "PPD beziehen" - --#: ../system-config-printer.py:6434 ../system-config-printer.py:6472 -+#: ../system-config-printer.py:6382 ../system-config-printer.py:6420 - msgid "No Installable Options" - msgstr "Keine installierbaren Optionen" - --#: ../system-config-printer.py:6520 -+#: ../system-config-printer.py:6468 - #, python-format - msgid "adding printer %s" - msgstr "Drucker hinzufügen %s" - --#: ../system-config-printer.py:6669 -+#: ../system-config-printer.py:6617 - msgid "Would you like to print a test page?" - msgstr "Möchten Sie eine Testseite drucken?" - --#: ../system-config-printer.py:6722 -+#: ../system-config-printer.py:6670 - msgid "Install driver" - msgstr "Treiber installieren" - --#: ../system-config-printer.py:6723 ../troubleshoot/CheckPPDSanity.py:131 -+#: ../system-config-printer.py:6671 ../troubleshoot/CheckPPDSanity.py:131 - #, python-format - msgid "Printer '%s' requires the %s package but it is not currently installed." - msgstr "" - "Der Drucker '%s' benötigt das Paket %s, welches derzeit nicht installiert " - "ist." - --#: ../system-config-printer.py:6739 -+#: ../system-config-printer.py:6687 - msgid "Missing driver" - msgstr "Fehlender Treiber" - --#: ../system-config-printer.py:6740 -+#: ../system-config-printer.py:6688 - #, python-format - msgid "" - "Printer '%s' requires the '%s' program but it is not currently installed. " -@@ -1675,106 +1676,102 @@ msgid "Enter device URI" - msgstr "Geräte-URI eingeben" - - #: ../glade/NewPrinterWindow.glade.h:5 --msgid "HP Printer (HPLIP) via network" --msgstr "HP-Drucker (HPLIP) über das Netzwerk" -- --#: ../glade/NewPrinterWindow.glade.h:6 - msgid "IPP Printer" - msgstr "IPP-Drucker" - --#: ../glade/NewPrinterWindow.glade.h:7 -+#: ../glade/NewPrinterWindow.glade.h:6 - msgid "License Terms" - msgstr "Lizenzbedingungen" - --#: ../glade/NewPrinterWindow.glade.h:8 -+#: ../glade/NewPrinterWindow.glade.h:7 - msgid "Location of the LPD network printer" - msgstr "Ort des LPD-Netzwerkdruckers" - --#: ../glade/NewPrinterWindow.glade.h:9 -+#: ../glade/NewPrinterWindow.glade.h:8 - msgid "Location of the network printer" - msgstr "Ort des Netzwerkdruckers" - --#: ../glade/NewPrinterWindow.glade.h:10 -+#: ../glade/NewPrinterWindow.glade.h:9 - msgid "Location (optional)" - msgstr "Ort (optional)" - --#: ../glade/NewPrinterWindow.glade.h:11 -+#: ../glade/NewPrinterWindow.glade.h:10 - msgid "Network Printer" - msgstr "Netzwerk-Drucker" - --#: ../glade/NewPrinterWindow.glade.h:12 -+#: ../glade/NewPrinterWindow.glade.h:11 - msgid "Note" - msgstr "Hinweis" - --#: ../glade/NewPrinterWindow.glade.h:13 -+#: ../glade/NewPrinterWindow.glade.h:12 - msgid "Output Quality" - msgstr "Ausgabe-Qualität" - --#: ../glade/NewPrinterWindow.glade.h:14 -+#: ../glade/NewPrinterWindow.glade.h:13 - msgid "Printer Name" - msgstr "Druckername" - --#: ../glade/NewPrinterWindow.glade.h:15 -+#: ../glade/NewPrinterWindow.glade.h:14 - msgid "SMB Printer" - msgstr "SMB-Drucker" - --#: ../glade/NewPrinterWindow.glade.h:16 -+#: ../glade/NewPrinterWindow.glade.h:15 - msgid "Select Driver" - msgstr "Treiber auswählen" - --#: ../glade/NewPrinterWindow.glade.h:17 -+#: ../glade/NewPrinterWindow.glade.h:16 - msgid "Settings of the serial port" - msgstr "Einstellungen der seriellen Schnittstelle" - --#: ../glade/NewPrinterWindow.glade.h:18 -+#: ../glade/NewPrinterWindow.glade.h:17 - msgid "smb://[workgroup/]server[:port]/printer" - msgstr "smb://[workgroup/]server[:port]/printer" - --#: ../glade/NewPrinterWindow.glade.h:19 -+#: ../glade/NewPrinterWindow.glade.h:18 - msgid "Choose Class Members" - msgstr "Wähle Klassen-Mitglied" - --#: ../glade/NewPrinterWindow.glade.h:20 -+#: ../glade/NewPrinterWindow.glade.h:19 - msgid "Choose Driver" - msgstr "Wähle Treiber" - --#: ../glade/NewPrinterWindow.glade.h:21 -+#: ../glade/NewPrinterWindow.glade.h:20 - msgid "Describe Printer" - msgstr "Beschreibe Drucker" - --#: ../glade/NewPrinterWindow.glade.h:22 -+#: ../glade/NewPrinterWindow.glade.h:21 - msgid "Existing Settings" - msgstr "Vorhandene Einstellungen" - --#: ../glade/NewPrinterWindow.glade.h:23 -+#: ../glade/NewPrinterWindow.glade.h:22 - msgid "Installable Options" - msgstr "Installierbare Optionen" - --#: ../glade/NewPrinterWindow.glade.h:24 -+#: ../glade/NewPrinterWindow.glade.h:23 - msgid "Select Device" - msgstr "Wähle Gerät" - --#: ../glade/NewPrinterWindow.glade.h:25 -+#: ../glade/NewPrinterWindow.glade.h:24 - msgid "Baud Rate" - msgstr "Baud-Rate" - --#: ../glade/NewPrinterWindow.glade.h:26 -+#: ../glade/NewPrinterWindow.glade.h:25 - msgid "Browse..." - msgstr "Durchsuche ..." - --#: ../glade/NewPrinterWindow.glade.h:27 -+#: ../glade/NewPrinterWindow.glade.h:26 - msgid "Comments..." - msgstr "Kommentare ..." - --#: ../glade/NewPrinterWindow.glade.h:28 -+#: ../glade/NewPrinterWindow.glade.h:27 - msgid "Connection" - msgstr "Verbindung" - --#: ../glade/NewPrinterWindow.glade.h:29 -+#: ../glade/NewPrinterWindow.glade.h:28 - msgid "Data Bits" - msgstr "Datenbits" - --#: ../glade/NewPrinterWindow.glade.h:30 -+#: ../glade/NewPrinterWindow.glade.h:29 - msgid "" - "Default\n" - "1200\n" -@@ -1796,7 +1793,7 @@ msgstr "" - "57600\n" - "115200" - --#: ../glade/NewPrinterWindow.glade.h:39 -+#: ../glade/NewPrinterWindow.glade.h:38 - msgid "" - "Default\n" - "8\n" -@@ -1806,7 +1803,7 @@ msgstr "" - "8\n" - "7" - --#: ../glade/NewPrinterWindow.glade.h:42 -+#: ../glade/NewPrinterWindow.glade.h:41 - msgid "" - "Default\n" - "None\n" -@@ -1818,7 +1815,7 @@ msgstr "" - "Ungerade\n" - "Gerade" - --#: ../glade/NewPrinterWindow.glade.h:46 -+#: ../glade/NewPrinterWindow.glade.h:45 - msgid "" - "Default\n" - "None\n" -@@ -1832,115 +1829,115 @@ msgstr "" - "RTS/CTS (Hardware)\n" - "DTR/DSR (Hardware)" - --#: ../glade/NewPrinterWindow.glade.h:51 -+#: ../glade/NewPrinterWindow.glade.h:50 - #: ../glade/PrinterPropertiesDialog.glade.h:35 - msgid "Description:" - msgstr "Beschreibung:" - --#: ../glade/NewPrinterWindow.glade.h:52 ../troubleshoot/DeviceListed.py:40 -+#: ../glade/NewPrinterWindow.glade.h:51 ../troubleshoot/DeviceListed.py:40 - msgid "Device URI" - msgstr "Geräte-URI" - --#: ../glade/NewPrinterWindow.glade.h:53 -+#: ../glade/NewPrinterWindow.glade.h:52 - msgid "Device description." - msgstr "Beschreibung des Gerätes." - --#: ../glade/NewPrinterWindow.glade.h:54 -+#: ../glade/NewPrinterWindow.glade.h:53 - msgid "DirectJet" - msgstr "DirectJet" - --#: ../glade/NewPrinterWindow.glade.h:56 -+#: ../glade/NewPrinterWindow.glade.h:55 - msgid "Driver details" - msgstr "Treiber-Details" - --#: ../glade/NewPrinterWindow.glade.h:57 -+#: ../glade/NewPrinterWindow.glade.h:56 - msgid "Empty" - msgstr "Leer" - --#: ../glade/NewPrinterWindow.glade.h:58 -+#: ../glade/NewPrinterWindow.glade.h:57 - msgid "Find _Queue..." - msgstr "Suche _Warteschlange..." - --#: ../glade/NewPrinterWindow.glade.h:59 -+#: ../glade/NewPrinterWindow.glade.h:58 - msgid "Flow Control" - msgstr "Ablaufsteuerung" - --#: ../glade/NewPrinterWindow.glade.h:60 -+#: ../glade/NewPrinterWindow.glade.h:59 - msgid "" - "For the printer you have selected there are drivers available for download." - msgstr "" - "Für den von Ihnen gewählten Drucker sind herunterladbare Treiber verfügbar." - --#: ../glade/NewPrinterWindow.glade.h:61 -+#: ../glade/NewPrinterWindow.glade.h:60 - msgid "Free software" - msgstr "Freie Software" - --#: ../glade/NewPrinterWindow.glade.h:62 -+#: ../glade/NewPrinterWindow.glade.h:61 - msgid "Graphics:" - msgstr "Grafiken:" - --#: ../glade/NewPrinterWindow.glade.h:63 -+#: ../glade/NewPrinterWindow.glade.h:62 - msgid "Host:" - msgstr "Host:" - --#: ../glade/NewPrinterWindow.glade.h:64 -+#: ../glade/NewPrinterWindow.glade.h:63 - msgid "Human-readable description such as \"HP LaserJet with Duplexer\"" - msgstr "Normal lesbare Beschreibung, wie zum Beispiel »HP LaserJet mit Duplex«" - --#: ../glade/NewPrinterWindow.glade.h:65 -+#: ../glade/NewPrinterWindow.glade.h:64 - msgid "Human-readable location such as \"Lab 1\"" - msgstr "Normal lesbarer Ort, wie zum Beispiel »Lab 1«" - --#: ../glade/NewPrinterWindow.glade.h:67 -+#: ../glade/NewPrinterWindow.glade.h:66 - msgid "LPD" - msgstr "LPD" - --#: ../glade/NewPrinterWindow.glade.h:68 -+#: ../glade/NewPrinterWindow.glade.h:67 - msgid "License:" - msgstr "Lizenz:" - --#: ../glade/NewPrinterWindow.glade.h:69 -+#: ../glade/NewPrinterWindow.glade.h:68 - #, fuzzy - msgid "Line art:" - msgstr "Druckerstatus:" - --#: ../glade/NewPrinterWindow.glade.h:70 -+#: ../glade/NewPrinterWindow.glade.h:69 - msgid "Local Driver" - msgstr "Lokaler Treiber" - --#: ../glade/NewPrinterWindow.glade.h:71 -+#: ../glade/NewPrinterWindow.glade.h:70 - msgid "Make and model:" - msgstr "Marke und Modell:" - --#: ../glade/NewPrinterWindow.glade.h:72 -+#: ../glade/NewPrinterWindow.glade.h:71 - msgid "Manufacturer" - msgstr "Hersteller" - --#: ../glade/NewPrinterWindow.glade.h:73 -+#: ../glade/NewPrinterWindow.glade.h:72 - msgid "Network" - msgstr "Netzwerk" - --#: ../glade/NewPrinterWindow.glade.h:75 -+#: ../glade/NewPrinterWindow.glade.h:74 - msgid "No, I do not accept this license" - msgstr "Nein, ich akzeptiere diese Lizenz nicht" - --#: ../glade/NewPrinterWindow.glade.h:76 -+#: ../glade/NewPrinterWindow.glade.h:75 - msgid "Parity" - msgstr "Parität" - --#: ../glade/NewPrinterWindow.glade.h:78 -+#: ../glade/NewPrinterWindow.glade.h:77 - msgid "Patented algorithms" - msgstr "Patentierte Algorithmen" - --#: ../glade/NewPrinterWindow.glade.h:79 -+#: ../glade/NewPrinterWindow.glade.h:78 - msgid "Photo:" - msgstr "Photo:" - --#: ../glade/NewPrinterWindow.glade.h:80 -+#: ../glade/NewPrinterWindow.glade.h:79 - msgid "Port number:" - msgstr "Port-Nummer" - --#: ../glade/NewPrinterWindow.glade.h:81 -+#: ../glade/NewPrinterWindow.glade.h:80 - msgid "" - "PostScript Printer Description (PPD) files can often be found on the driver " - "disk that comes with the printer. For PostScript printers they are often " -@@ -1950,77 +1947,77 @@ msgstr "" - "zu finden, die dem Drucker beiliegt. Für PostScript-Drucker sind sie häufig " - "Teil der Windows®-Treiber." - --#: ../glade/NewPrinterWindow.glade.h:82 -+#: ../glade/NewPrinterWindow.glade.h:81 - msgid "Printer model:" - msgstr "Druckermodell:" - --#: ../glade/NewPrinterWindow.glade.h:83 -+#: ../glade/NewPrinterWindow.glade.h:82 - msgid "Probe" - msgstr "Erkennung" - --#: ../glade/NewPrinterWindow.glade.h:84 -+#: ../glade/NewPrinterWindow.glade.h:83 - #, fuzzy - msgid "Prompt user if authentication is required" - msgstr "Authentifizierung erforderlich" - --#: ../glade/NewPrinterWindow.glade.h:85 -+#: ../glade/NewPrinterWindow.glade.h:84 - msgid "Provide PPD file" - msgstr "PPD-Datei bereitstellen" - --#: ../glade/NewPrinterWindow.glade.h:86 -+#: ../glade/NewPrinterWindow.glade.h:85 - msgid "Queue:" - msgstr "Warteschlange:" - --#: ../glade/NewPrinterWindow.glade.h:87 -+#: ../glade/NewPrinterWindow.glade.h:86 - msgid "SCSI" - msgstr "SCSI" - --#: ../glade/NewPrinterWindow.glade.h:88 -+#: ../glade/NewPrinterWindow.glade.h:87 - msgid "SMB" - msgstr "SMB" - --#: ../glade/NewPrinterWindow.glade.h:89 -+#: ../glade/NewPrinterWindow.glade.h:88 - msgid "Search for a printer driver to download" - msgstr "Suche nach herunterladbaren Drucker-Treibern" - --#: ../glade/NewPrinterWindow.glade.h:90 -+#: ../glade/NewPrinterWindow.glade.h:89 - #, fuzzy - msgid "Searching..." - msgstr "Suchen" - --#: ../glade/NewPrinterWindow.glade.h:91 -+#: ../glade/NewPrinterWindow.glade.h:90 - msgid "Select A File" - msgstr "Wählen Sie eine Datei" - --#: ../glade/NewPrinterWindow.glade.h:92 -+#: ../glade/NewPrinterWindow.glade.h:91 - msgid "Select printer from database" - msgstr "Drucker aus Datenbank auswählen" - --#: ../glade/NewPrinterWindow.glade.h:93 -+#: ../glade/NewPrinterWindow.glade.h:92 - msgid "Serial" - msgstr "Seriell" - --#: ../glade/NewPrinterWindow.glade.h:94 -+#: ../glade/NewPrinterWindow.glade.h:93 - msgid "Set authentication details now" - msgstr "Setze Authentifizierung-Detail jetzt" - --#: ../glade/NewPrinterWindow.glade.h:95 -+#: ../glade/NewPrinterWindow.glade.h:94 - msgid "Short name for this printer such as \"laserjet\"" - msgstr "Kurzname für diesen Drucker, wie \"laserjet\"" - --#: ../glade/NewPrinterWindow.glade.h:96 -+#: ../glade/NewPrinterWindow.glade.h:95 - msgid "Supplier:" - msgstr "Anbieter:" - --#: ../glade/NewPrinterWindow.glade.h:97 -+#: ../glade/NewPrinterWindow.glade.h:96 - msgid "Support:" - msgstr "Unterstützung:" - --#: ../glade/NewPrinterWindow.glade.h:98 -+#: ../glade/NewPrinterWindow.glade.h:97 - msgid "Text:" - msgstr "Text:" - --#: ../glade/NewPrinterWindow.glade.h:99 -+#: ../glade/NewPrinterWindow.glade.h:98 - msgid "" - "The foomatic printer database contains various manufacturer provided " - "PostScript Printer Description (PPD) files and also can generate PPD files " -@@ -2035,7 +2032,7 @@ msgstr "" - "zur Verfügung gestellten Dateien im Allgemeinen einen besseren Zugriff zu " - "bestimmten Funktionen des Druckers." - --#: ../glade/NewPrinterWindow.glade.h:100 -+#: ../glade/NewPrinterWindow.glade.h:99 - msgid "" - "These drivers do not come from your operating system supplier and will not " - "be covered by their commercial support. See the support and license terms " -@@ -2045,7 +2042,7 @@ msgstr "" - "durch dessen kommerzielle Unterstützung abgedeckt. Lesen Sie die " - "Unterstützungs- und Lizenzbedingungen der Treiberherstellers." - --#: ../glade/NewPrinterWindow.glade.h:101 -+#: ../glade/NewPrinterWindow.glade.h:100 - msgid "" - "This driver supports additional hardware that may be installed in the " - "printer." -@@ -2053,7 +2050,7 @@ msgstr "" - "Dieser Treiber unterstützt zusätzliche Hardware, welche im Drucker " - "installiert sein könnte." - --#: ../glade/NewPrinterWindow.glade.h:102 -+#: ../glade/NewPrinterWindow.glade.h:101 - msgid "" - "This is done by assuming that options with the same name do have the same " - "meaning. Settings of options that are not present in the new PPD will be " -@@ -2064,7 +2061,7 @@ msgstr "" - "vorhanden sind, gehen verloren und nur Optionen, die im neuen PPD vorhanden " - "sind, werden als Standard gesetzt." - --#: ../glade/NewPrinterWindow.glade.h:103 -+#: ../glade/NewPrinterWindow.glade.h:102 - msgid "" - "This way all current option settings will be lost. The default settings of " - "the new PPD will be used. " -@@ -2072,19 +2069,19 @@ msgstr "" - "Auf diesem Weg gehen alle derzeitigen Einstellungsoptionen verloren. Die " - "Voreinstellungen der neuen PPD werden verwendet." - --#: ../glade/NewPrinterWindow.glade.h:104 -+#: ../glade/NewPrinterWindow.glade.h:103 - msgid "Try to copy the option settings over from the old PPD. " - msgstr "Versuche, die Einstellungsoptionen der alten PPD zu kopieren. " - --#: ../glade/NewPrinterWindow.glade.h:105 -+#: ../glade/NewPrinterWindow.glade.h:104 - msgid "URI:" - msgstr "URI:" - --#: ../glade/NewPrinterWindow.glade.h:107 -+#: ../glade/NewPrinterWindow.glade.h:106 - msgid "Use the new PPD (Postscript Printer Description) as is." - msgstr "Die neue PPD (Postscript Printer Description) verwenden, wie sie ist." - --#: ../glade/NewPrinterWindow.glade.h:109 -+#: ../glade/NewPrinterWindow.glade.h:108 - msgid "" - "With this choice no driver download will be performed. In the next steps a " - "locally installed driver will be selected." -@@ -2092,24 +2089,24 @@ msgstr "" - "Mit dieser Wahl werden keine Treiber heruntergeladen. Im nächsten Schritt " - "wird ein lokal-installierter Treiber ausgewählt." - --#: ../glade/NewPrinterWindow.glade.h:110 -+#: ../glade/NewPrinterWindow.glade.h:109 - msgid "Yes, I accept this license" - msgstr "Ja, ich akzeptiere diese Lizenz" - --#: ../glade/NewPrinterWindow.glade.h:111 -+#: ../glade/NewPrinterWindow.glade.h:110 - msgid "_Search" - msgstr "_Suche" - --#: ../glade/NewPrinterWindow.glade.h:112 -+#: ../glade/NewPrinterWindow.glade.h:111 - msgid "_Verify..." - msgstr "_Verifizieren..." - --#: ../glade/NewPrinterWindow.glade.h:113 -+#: ../glade/NewPrinterWindow.glade.h:112 - #: ../glade/PrinterPropertiesDialog.glade.h:128 - msgid "move left" - msgstr "Bewege nach links" - --#: ../glade/NewPrinterWindow.glade.h:114 -+#: ../glade/NewPrinterWindow.glade.h:113 - #: ../glade/PrinterPropertiesDialog.glade.h:129 - msgid "move right" - msgstr "Bewege nach rechts" -@@ -3043,7 +3040,7 @@ msgstr "War der Ausdruck des markierten - msgid "Remember to load paper of type '%s' into the printer first." - msgstr "Legen Sie bitte zunächst Papier vom Typ '%s' in den Drucker." - --#: ../troubleshoot/PrintTestPage.py:399 -+#: ../troubleshoot/PrintTestPage.py:416 - msgid "Error submitting test page" - msgstr "Fehler beim Übermitteln der Test-Seite" - -@@ -3249,6 +3246,15 @@ msgstr "Druckaufträge verwalten" - msgid "Select default printer" - msgstr "Standarddrucker wählen" - -+#~ msgid "HP Printer (HPLIP)" -+#~ msgstr "HP-Drucker (HPLIP)" -+ -+#~ msgid "HPLIP cannot find the device." -+#~ msgstr "HPLIP kann kein Gerät finden." -+ -+#~ msgid "HP Printer (HPLIP) via network" -+#~ msgstr "HP-Drucker (HPLIP) über das Netzwerk" -+ - #~ msgid "Not Found" - #~ msgstr "Nicht gefunden" - -diff -up system-config-printer-1.1.5/po/el.po.git-1.1.x system-config-printer-1.1.5/po/el.po ---- system-config-printer-1.1.5/po/el.po.git-1.1.x 2009-03-03 22:21:46.000000000 +0000 -+++ system-config-printer-1.1.5/po/el.po 2009-03-10 17:43:31.000000000 +0000 -@@ -12,7 +12,7 @@ msgid "" - msgstr "" - "Project-Id-Version: el\n" - "Report-Msgid-Bugs-To: https://bugzilla.redhat.com/bugzilla\n" --"POT-Creation-Date: 2009-03-02 23:22+0000\n" -+"POT-Creation-Date: 2009-03-10 16:51+0000\n" - "PO-Revision-Date: 2007-09-24 20:29+0100\n" - "Last-Translator: Dimitris Glezos \n" - "Language-Team: Greek \n" -@@ -60,11 +60,11 @@ msgstr "" - msgid "Enter IP address" - msgstr "Ο εκτυπωτής προστέθηκε" - --#: ../authconn.py:35 ../glade/NewPrinterWindow.glade.h:108 -+#: ../authconn.py:35 ../glade/NewPrinterWindow.glade.h:107 - msgid "Username:" - msgstr "Όνομα χρήστη:" - --#: ../authconn.py:36 ../glade/NewPrinterWindow.glade.h:77 -+#: ../authconn.py:36 ../glade/NewPrinterWindow.glade.h:76 - msgid "Password:" - msgstr "Συνθηματικό:" - -@@ -73,7 +73,7 @@ msgstr "Συνθηματικό:" - msgid "Domain:" - msgstr "Πάνω περιθώριο:" - --#: ../authconn.py:46 -+#: ../authconn.py:46 ../authconn.py:409 - #, fuzzy - msgid "Authentication" - msgstr "Πιστοποίηση" -@@ -82,45 +82,54 @@ msgstr "Πιστοποίηση" - msgid "Remember password" - msgstr "" - --#: ../authconn.py:211 ../authconn.py:232 -+#: ../authconn.py:208 -+#, python-format -+msgid "Unauthorized request (%s)" -+msgstr "" -+ -+#: ../authconn.py:209 -+msgid "You are not authorized to carry out therequested action." -+msgstr "" -+ -+#: ../authconn.py:212 ../authconn.py:233 - #, fuzzy - msgid "Operation canceled" - msgstr "Πολιτική λειτουργίας:" - --#: ../authconn.py:253 -+#: ../authconn.py:250 - #, fuzzy, python-format - msgid "CUPS server error (%s)" - msgstr "σφάλμα εξυπηρετητή CUPS" - --#: ../authconn.py:255 ../errordialogs.py:57 --#: ../troubleshoot/PrintTestPage.py:400 -+#: ../authconn.py:252 ../errordialogs.py:56 ../errordialogs.py:70 -+msgid "CUPS server error" -+msgstr "σφάλμα εξυπηρετητή CUPS" -+ -+#: ../authconn.py:261 ../errordialogs.py:57 -+#: ../troubleshoot/PrintTestPage.py:417 - #, python-format - msgid "There was an error during the CUPS operation: '%s'." - msgstr "Διαπιστώθηκε σφάλμα κατά τη λειτουργία CUPS: '%s'." - --#: ../authconn.py:258 -+#: ../authconn.py:264 - #, fuzzy - msgid "Retry" - msgstr "Επαναφορά" - --#: ../authconn.py:379 ../authconn.py:381 ../errordialogs.py:65 ../pysmb.py:75 -+#: ../authconn.py:385 ../authconn.py:387 ../errordialogs.py:65 ../pysmb.py:75 - #: ../pysmb.py:77 - msgid "Not authorized" - msgstr "Χωρίς εξουσιοδότηση" - --#: ../authconn.py:382 ../pysmb.py:78 -+#: ../authconn.py:388 ../pysmb.py:78 - msgid "The password may be incorrect." - msgstr "Το συνθηματικό μπορεί να μην είναι σωστό." - --#: ../authconn.py:400 -+#: ../authconn.py:407 - #, fuzzy, python-format - msgid "Authentication (%s)" - msgstr "Πιστοποίηση" - --#: ../errordialogs.py:56 ../errordialogs.py:70 --msgid "CUPS server error" --msgstr "σφάλμα εξυπηρετητή CUPS" -- - #: ../errordialogs.py:66 - msgid "" - "The password may be incorrect, or the server may be configured to deny " -@@ -149,7 +158,7 @@ msgstr "Απαιτείται αναβά - msgid "Server error" - msgstr "Σφάλμα εξυπηρετητή" - --#: ../errordialogs.py:82 ../system-config-printer.py:1219 -+#: ../errordialogs.py:82 ../system-config-printer.py:1223 - msgid "Not connected" - msgstr "Χωρίς σύνδεση" - -@@ -171,7 +180,7 @@ msgstr "" - msgid "_New Group from Selection" - msgstr "" - --#: ../GroupsPane.py:98 ../system-config-printer.py:393 -+#: ../GroupsPane.py:98 ../system-config-printer.py:397 - #, fuzzy - msgid "_Rename" - msgstr "Απελευ_θέρωση" -@@ -240,7 +249,7 @@ msgid "Document" - msgstr "Έγγραφο" - - #: ../jobviewer.py:212 ../my-default-printer.py:153 --#: ../system-config-printer.py:366 ../system-config-printer.py:1367 -+#: ../system-config-printer.py:370 ../system-config-printer.py:1371 - #: ../troubleshoot/PrintTestPage.py:84 - msgid "Printer" - msgstr "Εκτυπωτής" -@@ -277,8 +286,8 @@ msgstr "Κατάσταση εκτύπω - - #: ../jobviewer.py:386 ../jobviewer.py:451 ../jobviewer.py:452 - #: ../jobviewer.py:492 ../jobviewer.py:600 ../jobviewer.py:727 --#: ../jobviewer.py:1196 ../jobviewer.py:1222 ../system-config-printer.py:2546 --#: ../glade/NewPrinterWindow.glade.h:106 -+#: ../jobviewer.py:1196 ../jobviewer.py:1222 ../system-config-printer.py:2556 -+#: ../glade/NewPrinterWindow.glade.h:105 - #: ../troubleshoot/ChooseNetworkPrinter.py:101 - #: ../troubleshoot/ChooseNetworkPrinter.py:102 - #: ../troubleshoot/ChooseNetworkPrinter.py:105 -@@ -371,12 +380,12 @@ msgstr "Σε αναμονή μέχρι:" - msgid "Pending" - msgstr "Σε αναμονή" - --#: ../jobviewer.py:591 ../system-config-printer.py:186 -+#: ../jobviewer.py:591 ../system-config-printer.py:190 - #: ../troubleshoot/PrintTestPage.py:43 - msgid "Processing" - msgstr "Γίνεται επεξεργασία" - --#: ../jobviewer.py:592 ../system-config-printer.py:188 -+#: ../jobviewer.py:592 ../system-config-printer.py:192 - #: ../troubleshoot/PrintTestPage.py:44 - msgid "Stopped" - msgstr "Σταματημένος" -@@ -490,8 +499,8 @@ msgstr "Ε_παναφορά στην π - msgid "_Set Default" - msgstr "_Προεπιλογή" - --#: ../my-default-printer.py:158 ../system-config-printer.py:423 --#: ../system-config-printer.py:3660 ../troubleshoot/ChooseNetworkPrinter.py:37 -+#: ../my-default-printer.py:158 ../system-config-printer.py:427 -+#: ../system-config-printer.py:3675 ../troubleshoot/ChooseNetworkPrinter.py:37 - #: ../troubleshoot/ChoosePrinter.py:38 - msgid "Location" - msgstr "Τοποθεσία" -@@ -524,7 +533,7 @@ msgstr "Προεπιλεγμένος ε - msgid "Authenticated" - msgstr "Πιστοποίηση" - --#: ../ppdippstr.py:50 ../system-config-printer.py:6259 -+#: ../ppdippstr.py:50 ../system-config-printer.py:6207 - #, fuzzy - msgid "None" - msgstr "Κανένας" -@@ -744,132 +753,132 @@ msgstr "" - msgid "1200 dpi, photo, black + color cartridge, photo paper" - msgstr "" - --#: ../system-config-printer.py:127 -+#: ../system-config-printer.py:131 - msgid "To do this, select System->Administration->Firewall from the main menu." - msgstr "" - --#: ../system-config-printer.py:185 -+#: ../system-config-printer.py:189 - msgid "Idle" - msgstr "Αδρανής" - --#: ../system-config-printer.py:187 -+#: ../system-config-printer.py:191 - msgid "Busy" - msgstr "Απασχολημένος" - --#: ../system-config-printer.py:372 ../system-config-printer.py:1373 -+#: ../system-config-printer.py:376 ../system-config-printer.py:1377 - #, fuzzy - msgid "Class" - msgstr "Νέα κλάση(*.ppd[.gz])" - --#: ../system-config-printer.py:399 -+#: ../system-config-printer.py:403 - #, fuzzy - msgid "Set As De_fault" - msgstr "_Προεπιλογή" - --#: ../system-config-printer.py:403 -+#: ../system-config-printer.py:407 - #, fuzzy - msgid "_Create class" - msgstr "Απομακρυσμένες κλάσεις" - --#: ../system-config-printer.py:405 -+#: ../system-config-printer.py:409 - #, fuzzy - msgid "View Print _Queue" - msgstr "Νέος εκτυπωτής" - --#: ../system-config-printer.py:407 -+#: ../system-config-printer.py:411 - msgid "_Add to Group" - msgstr "" - --#: ../system-config-printer.py:409 -+#: ../system-config-printer.py:413 - msgid "Save Results as _Group" - msgstr "" - --#: ../system-config-printer.py:411 -+#: ../system-config-printer.py:415 - msgid "Save Filter as _Search Group" - msgstr "" - --#: ../system-config-printer.py:415 -+#: ../system-config-printer.py:419 - #, fuzzy - msgid "E_nabled" - msgstr "Ενεργό" - --#: ../system-config-printer.py:417 -+#: ../system-config-printer.py:421 - #, fuzzy - msgid "_Shared" - msgstr "Κοινή χρήση" - --#: ../system-config-printer.py:421 ../troubleshoot/ChooseNetworkPrinter.py:35 -+#: ../system-config-printer.py:425 ../troubleshoot/ChooseNetworkPrinter.py:35 - #: ../troubleshoot/ChoosePrinter.py:36 ../troubleshoot/DeviceListed.py:36 - msgid "Name" - msgstr "Όνομα" - --#: ../system-config-printer.py:422 -+#: ../system-config-printer.py:426 - #, fuzzy - msgid "Description" - msgstr "Περιγραφή:" - --#: ../system-config-printer.py:424 -+#: ../system-config-printer.py:428 - msgid "Manufacturer / Model" - msgstr "" - - #. Printer state reasons list --#: ../system-config-printer.py:499 -+#: ../system-config-printer.py:503 - msgid "Message" - msgstr "Μήνυμα" - --#: ../system-config-printer.py:534 -+#: ../system-config-printer.py:538 - #, fuzzy - msgid "Problems?" - msgstr "Αναζήτηση" - --#: ../system-config-printer.py:637 ../system-config-printer.py:639 -+#: ../system-config-printer.py:641 ../system-config-printer.py:643 - msgid "Members of this class" - msgstr "Μέλη αυτής της κλάσης" - --#: ../system-config-printer.py:638 ../system-config-printer.py:640 -+#: ../system-config-printer.py:642 ../system-config-printer.py:644 - msgid "Others" - msgstr "Άλλα" - --#: ../system-config-printer.py:641 -+#: ../system-config-printer.py:645 - msgid "Devices" - msgstr "Συσκευές" - --#: ../system-config-printer.py:642 -+#: ../system-config-printer.py:646 - #, fuzzy - msgid "Connections" - msgstr "Σύνδεση" - --#: ../system-config-printer.py:643 -+#: ../system-config-printer.py:647 - msgid "Makes" - msgstr "Δημιουργεί" - --#: ../system-config-printer.py:644 -+#: ../system-config-printer.py:648 - msgid "Models" - msgstr "Μοντέλο" - --#: ../system-config-printer.py:645 -+#: ../system-config-printer.py:649 - msgid "Drivers" - msgstr "Οδηγοί" - --#: ../system-config-printer.py:646 ../glade/NewPrinterWindow.glade.h:55 -+#: ../system-config-printer.py:650 ../glade/NewPrinterWindow.glade.h:54 - msgid "Downloadable Drivers" - msgstr "" - --#: ../system-config-printer.py:647 -+#: ../system-config-printer.py:651 - msgid "Users" - msgstr "Χρήστες" - --#: ../system-config-printer.py:682 -+#: ../system-config-printer.py:686 - msgid "Automatic rotation" - msgstr "" - --#: ../system-config-printer.py:989 -+#: ../system-config-printer.py:993 - #, fuzzy, python-format - msgid "Printer Properties - '%s' on %s" - msgstr "Αναφορά εκτυπωτή" - - #. The Conflict button was pressed. --#: ../system-config-printer.py:996 -+#: ../system-config-printer.py:1000 - msgid "" - "There are conflicting options.\n" - "Changes can only be applied after\n" -@@ -879,81 +888,81 @@ msgstr "" - "Οι αλλαγές μπορούν να εφαρμοστούν\n" - "μετά την επίλυση των συγκρούσεων." - --#: ../system-config-printer.py:1214 -+#: ../system-config-printer.py:1218 - #, python-format - msgid "Printer configuration - %s" - msgstr "Ρύθμιση εκτυπωτή - %s" - --#: ../system-config-printer.py:1217 -+#: ../system-config-printer.py:1221 - #, python-format - msgid "Connected to %s" - msgstr "Συνδέθηκε στο %s" - - #. Update our copy of the printer's settings. --#: ../system-config-printer.py:1257 ../system-config-printer.py:2042 -+#: ../system-config-printer.py:1261 ../system-config-printer.py:2046 - msgid "obtaining queue details" - msgstr "" - --#: ../system-config-printer.py:1295 -+#: ../system-config-printer.py:1299 - msgid "Remove from Group" - msgstr "" - --#: ../system-config-printer.py:1361 -+#: ../system-config-printer.py:1365 - #, fuzzy - msgid "Network printer (discovered)" - msgstr "Νέος εκτυπωτής" - --#: ../system-config-printer.py:1364 -+#: ../system-config-printer.py:1368 - msgid "Network class (discovered)" - msgstr "" - --#: ../system-config-printer.py:1370 ../system-config-printer.py:5524 --#: ../system-config-printer.py:5594 ../system-config-printer.py:5596 -+#: ../system-config-printer.py:1374 ../system-config-printer.py:5519 -+#: ../system-config-printer.py:5589 ../system-config-printer.py:5591 - msgid "Fax" - msgstr "" - --#: ../system-config-printer.py:1376 ../system-config-printer.py:1382 -+#: ../system-config-printer.py:1380 ../system-config-printer.py:1386 - #: ../troubleshoot/LocalOrRemote.py:30 - #, fuzzy - msgid "Network printer" - msgstr "Νέος εκτυπωτής" - --#: ../system-config-printer.py:1379 -+#: ../system-config-printer.py:1383 - #, fuzzy - msgid "Network print share" - msgstr "Νέος εκτυπωτής" - --#: ../system-config-printer.py:1508 ../glade/ConnectingDialog.glade.h:2 -+#: ../system-config-printer.py:1512 ../glade/ConnectingDialog.glade.h:2 - #, no-c-format, python-format - msgid "Opening connection to %s" - msgstr "" - --#: ../system-config-printer.py:1887 -+#: ../system-config-printer.py:1891 - msgid "Installable Options" - msgstr "Επιλογές για εγκατάσταση" - --#: ../system-config-printer.py:1888 -+#: ../system-config-printer.py:1892 - #: ../glade/PrinterPropertiesDialog.glade.h:109 - msgid "Printer Options" - msgstr "Επιλογές εκτυπωτή" - --#: ../system-config-printer.py:1924 -+#: ../system-config-printer.py:1928 - #, python-format - msgid "modifying class %s" - msgstr "" - --#: ../system-config-printer.py:1926 ../system-config-printer.py:3019 --#: ../system-config-printer.py:3044 ../system-config-printer.py:6547 --#: ../system-config-printer.py:6559 ../system-config-printer.py:6581 -+#: ../system-config-printer.py:1930 ../system-config-printer.py:3037 -+#: ../system-config-printer.py:3062 ../system-config-printer.py:6495 -+#: ../system-config-printer.py:6507 ../system-config-printer.py:6529 - #, fuzzy, python-format - msgid "modifying printer %s" - msgstr "Προσθήκη εκτυπωτή" - --#: ../system-config-printer.py:1941 -+#: ../system-config-printer.py:1945 - msgid "This will delete this class!" - msgstr "Αυτό θα διαγράψει την κλάση!" - --#: ../system-config-printer.py:1942 -+#: ../system-config-printer.py:1946 - msgid "Proceed anyway?" - msgstr "Συνέχεια ούτως ή άλλως;" - -@@ -961,50 +970,50 @@ msgstr "Συνέχεια ούτως ή - #. but we have never fetched the server settings to see whether - #. the server is publishing shared printers. Fetch the settings - #. now so that we can update the "not published" label if necessary. --#: ../system-config-printer.py:2030 ../system-config-printer.py:3203 -+#: ../system-config-printer.py:2034 ../system-config-printer.py:3221 - #, fuzzy - msgid "fetching server settings" - msgstr "Βασικές επιλογές οδηγού" - --#: ../system-config-printer.py:2100 -+#: ../system-config-printer.py:2104 - #, fuzzy - msgid "Set Default Printer" - msgstr "Προεπιλεγμένος εκτυπωτή" - --#: ../system-config-printer.py:2102 -+#: ../system-config-printer.py:2106 - msgid "Do you want to set this as the system-wide default printer?" - msgstr "" - --#: ../system-config-printer.py:2104 -+#: ../system-config-printer.py:2108 - #, fuzzy - msgid "Set as the _system-wide default printer" - msgstr "Αυτός είναι ο προεπιλεγμένος εκτυπωτής" - --#: ../system-config-printer.py:2106 -+#: ../system-config-printer.py:2110 - msgid "_Clear my personal default setting" - msgstr "" - --#: ../system-config-printer.py:2107 -+#: ../system-config-printer.py:2111 - #, fuzzy - msgid "Set as my _personal default printer" - msgstr "Επιλογή προεπιλεγμένου εκτυπωτή" - --#: ../system-config-printer.py:2112 -+#: ../system-config-printer.py:2116 - #, fuzzy - msgid "setting default printer" - msgstr "Επιλογή προεπιλεγμένου εκτυπωτή" - --#: ../system-config-printer.py:2169 -+#: ../system-config-printer.py:2173 - #, fuzzy - msgid "printing test page" - msgstr "Εκτύπωση δοκιμαστικής σελίδας" - --#: ../system-config-printer.py:2182 ../system-config-printer.py:2217 --#: ../system-config-printer.py:5418 -+#: ../system-config-printer.py:2186 ../system-config-printer.py:2221 -+#: ../system-config-printer.py:5413 - msgid "Not possible" - msgstr "Δεν είναι εφικτό" - --#: ../system-config-printer.py:2183 ../system-config-printer.py:2218 -+#: ../system-config-printer.py:2187 ../system-config-printer.py:2222 - msgid "" - "The remote server did not accept the print job, most likely because the " - "printer is not shared." -@@ -1012,20 +1021,20 @@ msgstr "" - "Ο απομακρυσμένος διακομιστής δε δέχθηκε την εκτύπωση, κατά πάσα πιθανότητα ο " - "εκτυπωτής δε διατίθεται για κοινή χρίση." - --#: ../system-config-printer.py:2195 ../system-config-printer.py:2210 -+#: ../system-config-printer.py:2199 ../system-config-printer.py:2214 - msgid "Submitted" - msgstr "Καταχωρήθηκε" - --#: ../system-config-printer.py:2196 -+#: ../system-config-printer.py:2200 - #, python-format - msgid "Test page submitted as job %d" - msgstr "Η δοκιμαστική σελίδα καταχωρήθηκε σαν εργασία %d" - --#: ../system-config-printer.py:2203 -+#: ../system-config-printer.py:2207 - msgid "sending maintenance command" - msgstr "" - --#: ../system-config-printer.py:2211 -+#: ../system-config-printer.py:2215 - #, fuzzy, python-format - msgid "Maintenance command submitted as job %d" - msgstr "Η δοκιμαστική σελίδα καταχωρήθηκε σαν εργασία %d" -@@ -1033,75 +1042,75 @@ msgstr "Η δοκιμαστική σελ - #. The underlying cupsGetPPD2() function returned NULL without - #. setting an IPP error, so it'll be something like a failed - #. connection. --#: ../system-config-printer.py:2285 ../system-config-printer.py:2381 -+#: ../system-config-printer.py:2289 ../system-config-printer.py:2385 - msgid "Error" - msgstr "Σφάλμα" - --#: ../system-config-printer.py:2286 -+#: ../system-config-printer.py:2290 - msgid "There was a problem connecting to the CUPS server." - msgstr "Διαπιστώθηκε σφάλμα κατά τη λειτουργία του εξυπηρετητή CUPS." - --#: ../system-config-printer.py:2382 -+#: ../system-config-printer.py:2386 - #, python-format - msgid "Option '%s' has value '%s' and cannot be edited." - msgstr "" - --#: ../system-config-printer.py:2466 -+#: ../system-config-printer.py:2476 - msgid "Marker levels are not reported for this printer." - msgstr "" - --#: ../system-config-printer.py:2763 -+#: ../system-config-printer.py:2773 - #, fuzzy - msgid "Cannot Rename" - msgstr "Απελευ_θέρωση" - --#: ../system-config-printer.py:2764 -+#: ../system-config-printer.py:2774 - msgid "There are queued jobs." - msgstr "" - --#: ../system-config-printer.py:2822 -+#: ../system-config-printer.py:2840 - #, fuzzy - msgid "renaming printer" - msgstr "Προσθήκη εκτυπωτή" - - #. for classes make sure all members - #. will get added --#: ../system-config-printer.py:2907 -+#: ../system-config-printer.py:2925 - #, fuzzy - msgid "copying printer" - msgstr "Προσθήκη εκτυπωτή" - --#: ../system-config-printer.py:2971 -+#: ../system-config-printer.py:2989 - #, fuzzy, python-format - msgid "Really delete class '%s'?" - msgstr "Σίγουρα να διαγραφεί η κλάση %s;" - --#: ../system-config-printer.py:2973 -+#: ../system-config-printer.py:2991 - #, fuzzy, python-format - msgid "Really delete printer '%s'?" - msgstr "Σίγουρα να διαγραφεί ο εκτυπωτής %s;" - --#: ../system-config-printer.py:2975 -+#: ../system-config-printer.py:2993 - #, fuzzy - msgid "Really delete selected destinations?" - msgstr "Σίγουρα να διαγραφεί ο εκτυπωτής %s;" - --#: ../system-config-printer.py:2996 -+#: ../system-config-printer.py:3014 - #, fuzzy, python-format - msgid "deleting printer %s" - msgstr "Προσθήκη εκτυπωτή" - --#: ../system-config-printer.py:3070 -+#: ../system-config-printer.py:3088 - msgid "Publish Shared Printers" - msgstr "" - --#: ../system-config-printer.py:3071 -+#: ../system-config-printer.py:3089 - msgid "" - "Shared printers are not available to other people unless the 'Publish shared " - "printers' option is enabled in the server settings." - msgstr "" - --#: ../system-config-printer.py:3264 -+#: ../system-config-printer.py:3282 - #, fuzzy - msgid "modifying server settings" - msgstr "Βασικές επιλογές οδηγού" -@@ -1112,104 +1121,104 @@ msgstr "Βασικές επιλογέ - #. be unblocked. Unfortunately, this is not yet possible - #. (bug #440469). However, we can display a dialog to suggest - #. that now might be a good time to review the firewall settings. --#: ../system-config-printer.py:3289 -+#: ../system-config-printer.py:3307 - msgid "Review Firewall" - msgstr "" - --#: ../system-config-printer.py:3290 -+#: ../system-config-printer.py:3308 - msgid "" - "You may need to adjust the firewall to allow network printing to this " - "computer." - msgstr "" - --#: ../system-config-printer.py:3623 -+#: ../system-config-printer.py:3638 - msgid "Browsing not available (pysmbc not installed)" - msgstr "" - - #. SMB list columns --#: ../system-config-printer.py:3629 -+#: ../system-config-printer.py:3644 - msgid "Share" - msgstr "Κοινή χρήση" - --#: ../system-config-printer.py:3635 -+#: ../system-config-printer.py:3650 - msgid "Comment" - msgstr "Σχόλιο" - - #. IPP list columns --#: ../system-config-printer.py:3654 -+#: ../system-config-printer.py:3669 - msgid "Queue" - msgstr "" - --#: ../system-config-printer.py:3668 -+#: ../system-config-printer.py:3683 - #, fuzzy - msgid "" - "PostScript Printer Description files (*.ppd, *.PPD, *.ppd.gz, *.PPD.gz, *." - "PPD.GZ)" - msgstr "Περιγραφή εκτυπωτή PostScript (*.ppd[.gz])" - --#: ../system-config-printer.py:3677 -+#: ../system-config-printer.py:3692 - msgid "All files (*)" - msgstr "" - --#: ../system-config-printer.py:3713 ../system-config-printer.py:5970 --#: ../system-config-printer.py:6008 ../applet.py:124 -+#: ../system-config-printer.py:3728 ../system-config-printer.py:5918 -+#: ../system-config-printer.py:5956 ../applet.py:124 - #, fuzzy - msgid "Search" - msgstr "Εκτελείται αναζήτηση" - --#: ../system-config-printer.py:3736 ../system-config-printer.py:3760 --#: ../glade/NewPrinterWindow.glade.h:74 -+#: ../system-config-printer.py:3751 ../system-config-printer.py:3775 -+#: ../glade/NewPrinterWindow.glade.h:73 - msgid "New Printer" - msgstr "Νέος εκτυπωτής" - --#: ../system-config-printer.py:3747 -+#: ../system-config-printer.py:3762 - msgid "New Class" - msgstr "Νέα κλάση(*.ppd[.gz])" - --#: ../system-config-printer.py:3752 -+#: ../system-config-printer.py:3767 - msgid "Change Device URI" - msgstr "Αλλαγή URI συσκευής" - --#: ../system-config-printer.py:3758 -+#: ../system-config-printer.py:3773 - msgid "Change Driver" - msgstr "Αλλαγή οδηγού" - --#: ../system-config-printer.py:3927 ../system-config-printer.py:3993 --#: ../system-config-printer.py:4289 ../system-config-printer.py:4487 --#: ../system-config-printer.py:5772 ../system-config-printer.py:5995 -+#: ../system-config-printer.py:3942 ../system-config-printer.py:4008 -+#: ../system-config-printer.py:4304 ../system-config-printer.py:4502 -+#: ../system-config-printer.py:5762 ../system-config-printer.py:5943 - msgid "Searching" - msgstr "Εκτελείται αναζήτηση" - --#: ../system-config-printer.py:3928 -+#: ../system-config-printer.py:3943 - #, fuzzy - msgid "Searching for downloadable drivers" - msgstr "Εκτελείται αναζήτηση για οδηγούς" - --#: ../system-config-printer.py:3994 ../system-config-printer.py:4290 -+#: ../system-config-printer.py:4009 ../system-config-printer.py:4305 - msgid "Searching for drivers" - msgstr "Εκτελείται αναζήτηση για οδηγούς" - --#: ../system-config-printer.py:4488 ../system-config-printer.py:5773 -+#: ../system-config-printer.py:4503 ../system-config-printer.py:5763 - msgid "Searching for printers" - msgstr "Εκτελείται αναζήτηση για εκτυπωτές" - --#: ../system-config-printer.py:4497 -+#: ../system-config-printer.py:4512 - #, fuzzy - msgid "fetching device list" - msgstr "Βασικές επιλογές οδηγού" - - #. Tell the user why he needs the plugin --#: ../system-config-printer.py:4579 -+#: ../system-config-printer.py:4594 - msgid "For this printer a proprietary driver plugin from HP is available.\n" - msgstr "" - --#: ../system-config-printer.py:4582 -+#: ../system-config-printer.py:4597 - msgid "" - "The installation of the plugin is required for your printer to work.\n" - "\n" - msgstr "" - --#: ../system-config-printer.py:4585 -+#: ../system-config-printer.py:4600 - msgid "" - "Installing the plugin is optional, it completes or enhances the " - "functionality\n" -@@ -1217,220 +1226,216 @@ msgid "" - "\n" - msgstr "" - --#: ../system-config-printer.py:4589 -+#: ../system-config-printer.py:4604 - msgid "The plugin provides the following features:\n" - msgstr "" - --#: ../system-config-printer.py:4592 -+#: ../system-config-printer.py:4607 - msgid " - Printing support\n" - msgstr "" - --#: ../system-config-printer.py:4595 -+#: ../system-config-printer.py:4610 - msgid " - Faster printing\n" - msgstr "" - --#: ../system-config-printer.py:4598 -+#: ../system-config-printer.py:4613 - msgid " - Better printout quality\n" - msgstr "" - --#: ../system-config-printer.py:4601 -+#: ../system-config-printer.py:4616 - msgid " - Extra printing features\n" - msgstr "" - --#: ../system-config-printer.py:4604 -+#: ../system-config-printer.py:4619 - msgid " - Scanning support\n" - msgstr "" - --#: ../system-config-printer.py:4607 -+#: ../system-config-printer.py:4622 - msgid " - Faster scanning\n" - msgstr "" - --#: ../system-config-printer.py:4610 -+#: ../system-config-printer.py:4625 - msgid " - Better scanning image quality\n" - msgstr "" - --#: ../system-config-printer.py:4613 -+#: ../system-config-printer.py:4628 - msgid " - Faxing support\n" - msgstr "" - --#: ../system-config-printer.py:4616 -+#: ../system-config-printer.py:4631 - msgid " - Extra fax features\n" - msgstr "" - --#: ../system-config-printer.py:4619 -+#: ../system-config-printer.py:4634 - msgid " - Better Input/Output support\n" - msgstr "" - --#: ../system-config-printer.py:4622 -+#: ../system-config-printer.py:4637 - msgid " - Extra user interface features\n" - msgstr "" - --#: ../system-config-printer.py:4625 -+#: ../system-config-printer.py:4640 - msgid " - Other extra features\n" - msgstr "" - --#: ../system-config-printer.py:4630 -+#: ../system-config-printer.py:4645 - #, fuzzy - msgid "Install plugin" - msgstr "Επιλογές για εγκατάσταση" - --#: ../system-config-printer.py:4631 -+#: ../system-config-printer.py:4646 - #, fuzzy - msgid "Do not set up printer" - msgstr "Αντιγραφή εκτυπωτή" - --#: ../system-config-printer.py:4632 -+#: ../system-config-printer.py:4647 - msgid "Set up without plugin" - msgstr "" - --#: ../system-config-printer.py:4634 ../troubleshoot/PrintTestPage.py:118 -+#: ../system-config-printer.py:4649 ../troubleshoot/PrintTestPage.py:118 - msgid "Yes" - msgstr "" - --#: ../system-config-printer.py:4635 ../troubleshoot/PrintTestPage.py:119 -+#: ../system-config-printer.py:4650 ../troubleshoot/PrintTestPage.py:119 - msgid "No" - msgstr "" - --#: ../system-config-printer.py:4809 ../system-config-printer.py:4813 -+#: ../system-config-printer.py:4824 ../system-config-printer.py:4828 - msgid " (Current)" - msgstr " (Τρέχον)" - --#: ../system-config-printer.py:4845 --msgid "HP Printer (HPLIP)" --msgstr "" -- --#: ../system-config-printer.py:4886 -+#: ../system-config-printer.py:4881 - msgid "Other" - msgstr "Άλλο" - - #. device-info - #. PhysicalDevice obj - #. Separator? --#: ../system-config-printer.py:4902 -+#: ../system-config-printer.py:4897 - #, fuzzy - msgid "Network Printer" - msgstr "Νέος εκτυπωτής" - --#: ../system-config-printer.py:4906 -+#: ../system-config-printer.py:4901 - #, fuzzy - msgid "Find Network Printer" - msgstr "Νέος εκτυπωτής" - --#: ../system-config-printer.py:4979 ../system-config-printer.py:5376 -+#: ../system-config-printer.py:4974 ../system-config-printer.py:5371 - #, fuzzy - msgid "Scanning..." - msgstr "Μεγέθυνση:" - --#: ../system-config-printer.py:5034 ../system-config-printer.py:5798 -+#: ../system-config-printer.py:5029 - #, fuzzy - msgid "No Print Shares" - msgstr "Νέος εκτυπωτής" - --#: ../system-config-printer.py:5035 -+#: ../system-config-printer.py:5030 - msgid "" - "There were no print shares found. Please check that the Samba service is " - "marked as trusted in your firewall configuration." - msgstr "" - --#: ../system-config-printer.py:5296 ../system-config-printer.py:5357 -+#: ../system-config-printer.py:5291 ../system-config-printer.py:5352 - msgid "Print Share Verified" - msgstr "" - --#: ../system-config-printer.py:5297 ../system-config-printer.py:5358 -+#: ../system-config-printer.py:5292 ../system-config-printer.py:5353 - msgid "This print share is accessible." - msgstr "Ο κοινόχρηστος εκτυπωτής είναι προσβάσιμος." - --#: ../system-config-printer.py:5302 ../system-config-printer.py:5362 -+#: ../system-config-printer.py:5297 ../system-config-printer.py:5357 - msgid "This print share is not accessible." - msgstr "Ο κοινόχρηστος εκτυπωτής δεν είναι προσβάσιμος." - --#: ../system-config-printer.py:5305 -+#: ../system-config-printer.py:5300 - #, fuzzy - msgid "Print Share Inaccessible" - msgstr "Ο κοινόχρηστος εκτυπωτής είναι προσβάσιμος." - --#: ../system-config-printer.py:5361 -+#: ../system-config-printer.py:5356 - msgid "Inaccessible" - msgstr "Μη προσβάσιμο" - --#: ../system-config-printer.py:5419 -+#: ../system-config-printer.py:5414 - #, fuzzy, python-format - msgid "It is not possible to obtain a list of queues from '%s'." - msgstr "Διαπιστώθηκε σφάλμα κατά τη λειτουργία του εξυπηρετητή CUPS." - --#: ../system-config-printer.py:5421 -+#: ../system-config-printer.py:5416 - msgid "" - "Obtaining a list of queues is a CUPS extension to IPP. Network printers do " - "not support it." - msgstr "" - --#: ../system-config-printer.py:5424 -+#: ../system-config-printer.py:5419 - msgid "No queues" - msgstr "" - --#: ../system-config-printer.py:5425 -+#: ../system-config-printer.py:5420 - msgid "There are no queues available." - msgstr "" - --#: ../system-config-printer.py:5516 -+#: ../system-config-printer.py:5511 - msgid "Parallel Port" - msgstr "" - --#: ../system-config-printer.py:5518 -+#: ../system-config-printer.py:5513 - #, fuzzy - msgid "Serial Port" - msgstr "Σειριακός" - --#: ../system-config-printer.py:5520 -+#: ../system-config-printer.py:5515 - #, fuzzy - msgid "USB" - msgstr "SMB" - --#: ../system-config-printer.py:5522 ../system-config-printer.py:5525 -+#: ../system-config-printer.py:5517 ../system-config-printer.py:5520 - msgid "HP Linux Imaging and Printing (HPLIP)" - msgstr "" - --#: ../system-config-printer.py:5527 -+#: ../system-config-printer.py:5522 - #, fuzzy - msgid "Hardware Abstraction Layer (HAL)" - msgstr "" - "Τοπικός εκτυπωτής που ανιχνεύτηκε από το Hardware Abstraction Layer (HAL)." - --#: ../system-config-printer.py:5529 -+#: ../system-config-printer.py:5524 - msgid "AppSocket/HP JetDirect" - msgstr "" - --#: ../system-config-printer.py:5538 -+#: ../system-config-printer.py:5533 - #, python-format - msgid "LPD/LPR queue '%s'" - msgstr "" - --#: ../system-config-printer.py:5540 -+#: ../system-config-printer.py:5535 - #, fuzzy - msgid "LPD/LPR queue" - msgstr "LPD" - --#: ../system-config-printer.py:5543 -+#: ../system-config-printer.py:5538 - msgid "Windows Printer via SAMBA" - msgstr "" - --#: ../system-config-printer.py:5545 ../glade/NewPrinterWindow.glade.h:66 -+#: ../system-config-printer.py:5540 ../glade/NewPrinterWindow.glade.h:65 - msgid "IPP" - msgstr "IPP" - --#: ../system-config-printer.py:5547 -+#: ../system-config-printer.py:5542 - msgid "HTTP" - msgstr "" - --#: ../system-config-printer.py:5632 -+#: ../system-config-printer.py:5624 - msgid "A printer connected to the parallel port." - msgstr "Ένας εκτυπωτής συνδεδεμένος στην παράλληλη θύρα." - --#: ../system-config-printer.py:5634 -+#: ../system-config-printer.py:5626 - msgid "A printer connected to a USB port." - msgstr "Ένας εκτυπωτής συνδεδεμένος στη θύρα USB." - --#: ../system-config-printer.py:5636 -+#: ../system-config-printer.py:5628 - msgid "" - "HPLIP software driving a printer, or the printer function of a multi-" - "function device." -@@ -1438,7 +1443,7 @@ msgstr "" - "Λογισμικό HPLIP για οδήγηση εκτυπωτή ή η λειτουργία εκτύπωσης μιας πολυ-" - "λειτουργικής συσκευής." - --#: ../system-config-printer.py:5639 -+#: ../system-config-printer.py:5631 - msgid "" - "HPLIP software driving a fax machine, or the fax function of a multi-" - "function device." -@@ -1446,71 +1451,67 @@ msgstr "" - "Λογισμικό HPLIP για οδήγηση φαξ ή η λειτουργία φαξμιας πολυ-λειτουργικής " - "συσκευής." - --#: ../system-config-printer.py:5642 -+#: ../system-config-printer.py:5634 - msgid "Local printer detected by the Hardware Abstraction Layer (HAL)." - msgstr "" - "Τοπικός εκτυπωτής που ανιχνεύτηκε από το Hardware Abstraction Layer (HAL)." - --#: ../system-config-printer.py:5799 --msgid "HPLIP cannot find the device." --msgstr "" -- --#: ../system-config-printer.py:5881 -+#: ../system-config-printer.py:5831 - msgid "No printer was found at that address." - msgstr "" - --#: ../system-config-printer.py:6020 -+#: ../system-config-printer.py:5968 - #, fuzzy - msgid "-- Select from search results --" - msgstr "Επιλογή εκτυπωτή από βάση δεδομένων" - --#: ../system-config-printer.py:6022 -+#: ../system-config-printer.py:5970 - msgid "-- No matches found --" - msgstr "" - --#: ../system-config-printer.py:6203 -+#: ../system-config-printer.py:6151 - msgid " (recommended)" - msgstr " (προτεινόμενος)" - --#: ../system-config-printer.py:6217 -+#: ../system-config-printer.py:6165 - msgid "This PPD is generated by foomatic." - msgstr "Αυτό το PPD δημιουργήθηκε από το foomatic." - --#: ../system-config-printer.py:6241 -+#: ../system-config-printer.py:6189 - #, fuzzy - msgid "OpenPrinting" - msgstr "Εκτύπωση" - --#: ../system-config-printer.py:6252 -+#: ../system-config-printer.py:6200 - msgid "Distributable" - msgstr "" - --#: ../system-config-printer.py:6293 -+#: ../system-config-printer.py:6241 - #, fuzzy - msgid ", " - msgstr " " - --#: ../system-config-printer.py:6298 -+#: ../system-config-printer.py:6246 - #, python-format - msgid "" - "\n" - "(%s)" - msgstr "" - --#: ../system-config-printer.py:6303 -+#: ../system-config-printer.py:6251 - msgid "No support contacts known" - msgstr "" - --#: ../system-config-printer.py:6307 ../system-config-printer.py:6320 -+#: ../system-config-printer.py:6255 ../system-config-printer.py:6268 - msgid "Not specified." - msgstr "" - - #. Foomatic database problem of some sort. --#: ../system-config-printer.py:6360 -+#: ../system-config-printer.py:6308 - msgid "Database error" - msgstr "Σφάλμα βάσης δεδομένων" - --#: ../system-config-printer.py:6361 -+#: ../system-config-printer.py:6309 - #, python-format - msgid "The '%s' driver cannot be used with printer '%s %s'." - msgstr "Ο οδηγός '%s' δε μπορεί να χρησιμοποιηθεί με τον εκτυπωτή '%s %s'." -@@ -1518,7 +1519,7 @@ msgstr "Ο οδηγός '%s' δε μπο - #. This printer references some XML that is not - #. installed by default. Point the user at the - #. package they need to install. --#: ../system-config-printer.py:6371 -+#: ../system-config-printer.py:6319 - #, python-format - msgid "You will need to install the '%s' package in order to use this driver." - msgstr "" -@@ -1526,57 +1527,57 @@ msgstr "" - "τον οδηγό." - - #. This error came from trying to open the PPD file. --#: ../system-config-printer.py:6378 -+#: ../system-config-printer.py:6326 - msgid "PPD error" - msgstr "Σφάλμα PPD" - --#: ../system-config-printer.py:6380 -+#: ../system-config-printer.py:6328 - msgid "Failed to read PPD file. Possible reason follows:" - msgstr "Αποτυχία ανάγνωσης αρχείου PPD. Πιθανή αιτία ακολουθεί:" - - #. Failed to get PPD downloaded from OpenPrinting XXX --#: ../system-config-printer.py:6397 -+#: ../system-config-printer.py:6345 - msgid "Downloadable drivers" - msgstr "" - --#: ../system-config-printer.py:6398 -+#: ../system-config-printer.py:6346 - msgid "Failed to download PPD." - msgstr "" - --#: ../system-config-printer.py:6405 -+#: ../system-config-printer.py:6353 - #, fuzzy - msgid "fetching PPD" - msgstr "Αλλαγή PPD" - --#: ../system-config-printer.py:6434 ../system-config-printer.py:6472 -+#: ../system-config-printer.py:6382 ../system-config-printer.py:6420 - #, fuzzy - msgid "No Installable Options" - msgstr "Επιλογές για εγκατάσταση" - --#: ../system-config-printer.py:6520 -+#: ../system-config-printer.py:6468 - #, fuzzy, python-format - msgid "adding printer %s" - msgstr "Προσθήκη εκτυπωτή" - --#: ../system-config-printer.py:6669 -+#: ../system-config-printer.py:6617 - msgid "Would you like to print a test page?" - msgstr "" - --#: ../system-config-printer.py:6722 -+#: ../system-config-printer.py:6670 - msgid "Install driver" - msgstr "Εγκατάσταση οδηγού" - --#: ../system-config-printer.py:6723 ../troubleshoot/CheckPPDSanity.py:131 -+#: ../system-config-printer.py:6671 ../troubleshoot/CheckPPDSanity.py:131 - #, python-format - msgid "Printer '%s' requires the %s package but it is not currently installed." - msgstr "" - "Ο εκτυπωτής '%s' απαιτεί το πακέτο %s, το οποίο όμως δεν είναι εγκατεστημένο." - --#: ../system-config-printer.py:6739 -+#: ../system-config-printer.py:6687 - msgid "Missing driver" - msgstr "Λείπει οδηγός" - --#: ../system-config-printer.py:6740 -+#: ../system-config-printer.py:6688 - #, python-format - msgid "" - "Printer '%s' requires the '%s' program but it is not currently installed. " -@@ -1706,132 +1707,127 @@ msgstr "Εισαγωγή URI συσκ - - #: ../glade/NewPrinterWindow.glade.h:5 - #, fuzzy --msgid "HP Printer (HPLIP) via network" --msgstr "Όνομα εκτυπωτή" -- --#: ../glade/NewPrinterWindow.glade.h:6 --#, fuzzy - msgid "IPP Printer" - msgstr "Εκτυπωτής SMB" - --#: ../glade/NewPrinterWindow.glade.h:7 -+#: ../glade/NewPrinterWindow.glade.h:6 - #, fuzzy - msgid "License Terms" - msgstr "Όνομα εκτυπωτή" - --#: ../glade/NewPrinterWindow.glade.h:8 -+#: ../glade/NewPrinterWindow.glade.h:7 - msgid "Location of the LPD network printer" - msgstr "Τοποθεσία LPD δικτυακού εκτυπωτή" - --#: ../glade/NewPrinterWindow.glade.h:9 -+#: ../glade/NewPrinterWindow.glade.h:8 - msgid "Location of the network printer" - msgstr "Τοποθεσία δικτυακού εκτυπωτή" - --#: ../glade/NewPrinterWindow.glade.h:10 -+#: ../glade/NewPrinterWindow.glade.h:9 - msgid "Location (optional)" - msgstr "Τοποθεσία (προαιρετική)" - --#: ../glade/NewPrinterWindow.glade.h:11 -+#: ../glade/NewPrinterWindow.glade.h:10 - #, fuzzy - msgid "Network Printer" - msgstr "Νέος εκτυπωτής" - --#: ../glade/NewPrinterWindow.glade.h:12 -+#: ../glade/NewPrinterWindow.glade.h:11 - #, fuzzy - msgid "Note" - msgstr "Κατάσταση" - --#: ../glade/NewPrinterWindow.glade.h:13 -+#: ../glade/NewPrinterWindow.glade.h:12 - #, fuzzy - msgid "Output Quality" - msgstr "Κατάσταση" - --#: ../glade/NewPrinterWindow.glade.h:14 -+#: ../glade/NewPrinterWindow.glade.h:13 - msgid "Printer Name" - msgstr "Όνομα εκτυπωτή" - --#: ../glade/NewPrinterWindow.glade.h:15 -+#: ../glade/NewPrinterWindow.glade.h:14 - msgid "SMB Printer" - msgstr "Εκτυπωτής SMB" - --#: ../glade/NewPrinterWindow.glade.h:16 -+#: ../glade/NewPrinterWindow.glade.h:15 - #, fuzzy - msgid "Select Driver" - msgstr "Προεπιλεγμένος εκτυπωτής" - --#: ../glade/NewPrinterWindow.glade.h:17 -+#: ../glade/NewPrinterWindow.glade.h:16 - msgid "Settings of the serial port" - msgstr "Ρυθμίσεις σειριακής θύρας" - --#: ../glade/NewPrinterWindow.glade.h:18 -+#: ../glade/NewPrinterWindow.glade.h:17 - msgid "smb://[workgroup/]server[:port]/printer" - msgstr "smb://[ομάδα_εργασίας/]εξυπηρετητής[:θύρα]/εκτυπωτής" - --#: ../glade/NewPrinterWindow.glade.h:19 -+#: ../glade/NewPrinterWindow.glade.h:18 - #, fuzzy - msgid "Choose Class Members" - msgstr "" - "Απαιτείται συνθηματικό\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:20 -+#: ../glade/NewPrinterWindow.glade.h:19 - #, fuzzy - msgid "Choose Driver" - msgstr "" - "Απαιτείται συνθηματικό\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:21 -+#: ../glade/NewPrinterWindow.glade.h:20 - #, fuzzy - msgid "Describe Printer" - msgstr "" - "Απαιτείται συνθηματικό\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:22 -+#: ../glade/NewPrinterWindow.glade.h:21 - #, fuzzy - msgid "Existing Settings" - msgstr "" - "Απαιτείται συνθηματικό\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:23 -+#: ../glade/NewPrinterWindow.glade.h:22 - #, fuzzy - msgid "Installable Options" - msgstr "" - "Απαιτείται συνθηματικό\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:24 -+#: ../glade/NewPrinterWindow.glade.h:23 - #, fuzzy - msgid "Select Device" - msgstr "" - "Απαιτείται συνθηματικό\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:25 -+#: ../glade/NewPrinterWindow.glade.h:24 - msgid "Baud Rate" - msgstr "Baud Rate" - --#: ../glade/NewPrinterWindow.glade.h:26 -+#: ../glade/NewPrinterWindow.glade.h:25 - msgid "Browse..." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:27 -+#: ../glade/NewPrinterWindow.glade.h:26 - #, fuzzy - msgid "Comments..." - msgstr "Σχόλιο" - --#: ../glade/NewPrinterWindow.glade.h:28 -+#: ../glade/NewPrinterWindow.glade.h:27 - #, fuzzy - msgid "Connection" - msgstr "Σύνδεση" - --#: ../glade/NewPrinterWindow.glade.h:29 -+#: ../glade/NewPrinterWindow.glade.h:28 - msgid "Data Bits" - msgstr "Data Bits" - --#: ../glade/NewPrinterWindow.glade.h:30 -+#: ../glade/NewPrinterWindow.glade.h:29 - msgid "" - "Default\n" - "1200\n" -@@ -1853,7 +1849,7 @@ msgstr "" - "57600\n" - "115200" - --#: ../glade/NewPrinterWindow.glade.h:39 -+#: ../glade/NewPrinterWindow.glade.h:38 - msgid "" - "Default\n" - "8\n" -@@ -1863,7 +1859,7 @@ msgstr "" - "8\n" - "7" - --#: ../glade/NewPrinterWindow.glade.h:42 -+#: ../glade/NewPrinterWindow.glade.h:41 - msgid "" - "Default\n" - "None\n" -@@ -1875,7 +1871,7 @@ msgstr "" - "Περιττές\n" - "Άρτιες" - --#: ../glade/NewPrinterWindow.glade.h:46 -+#: ../glade/NewPrinterWindow.glade.h:45 - msgid "" - "Default\n" - "None\n" -@@ -1889,120 +1885,120 @@ msgstr "" - "RTS/CTS (υλικό)\n" - "DTR/DSR (υλικό)" - --#: ../glade/NewPrinterWindow.glade.h:51 -+#: ../glade/NewPrinterWindow.glade.h:50 - #: ../glade/PrinterPropertiesDialog.glade.h:35 - msgid "Description:" - msgstr "Περιγραφή:" - --#: ../glade/NewPrinterWindow.glade.h:52 ../troubleshoot/DeviceListed.py:40 -+#: ../glade/NewPrinterWindow.glade.h:51 ../troubleshoot/DeviceListed.py:40 - msgid "Device URI" - msgstr "URI Συσκευής" - --#: ../glade/NewPrinterWindow.glade.h:53 -+#: ../glade/NewPrinterWindow.glade.h:52 - msgid "Device description." - msgstr "Περιγραφή συσκευής." - --#: ../glade/NewPrinterWindow.glade.h:54 -+#: ../glade/NewPrinterWindow.glade.h:53 - msgid "DirectJet" - msgstr "DirectJet" - --#: ../glade/NewPrinterWindow.glade.h:56 -+#: ../glade/NewPrinterWindow.glade.h:55 - #, fuzzy - msgid "Driver details" - msgstr "Οδηγοί" - --#: ../glade/NewPrinterWindow.glade.h:57 -+#: ../glade/NewPrinterWindow.glade.h:56 - msgid "Empty" - msgstr "Άδειο" - --#: ../glade/NewPrinterWindow.glade.h:58 -+#: ../glade/NewPrinterWindow.glade.h:57 - msgid "Find _Queue..." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:59 -+#: ../glade/NewPrinterWindow.glade.h:58 - msgid "Flow Control" - msgstr "Έλεγχος ροής" - --#: ../glade/NewPrinterWindow.glade.h:60 -+#: ../glade/NewPrinterWindow.glade.h:59 - msgid "" - "For the printer you have selected there are drivers available for download." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:61 -+#: ../glade/NewPrinterWindow.glade.h:60 - msgid "Free software" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:62 -+#: ../glade/NewPrinterWindow.glade.h:61 - msgid "Graphics:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:63 -+#: ../glade/NewPrinterWindow.glade.h:62 - #, fuzzy - msgid "Host:" - msgstr "Όνομα συστήματος" - --#: ../glade/NewPrinterWindow.glade.h:64 -+#: ../glade/NewPrinterWindow.glade.h:63 - msgid "Human-readable description such as \"HP LaserJet with Duplexer\"" - msgstr "Εύκολα αναγνώσιμη περιγραφή όπως \"HP LaserJet με Duplexer\"" - --#: ../glade/NewPrinterWindow.glade.h:65 -+#: ../glade/NewPrinterWindow.glade.h:64 - msgid "Human-readable location such as \"Lab 1\"" - msgstr "Εύκολα αναγνώσιμη τοποθεσία όπως \"Εργαστήριο 1\"" - --#: ../glade/NewPrinterWindow.glade.h:67 -+#: ../glade/NewPrinterWindow.glade.h:66 - msgid "LPD" - msgstr "LPD" - --#: ../glade/NewPrinterWindow.glade.h:68 -+#: ../glade/NewPrinterWindow.glade.h:67 - msgid "License:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:69 -+#: ../glade/NewPrinterWindow.glade.h:68 - #, fuzzy - msgid "Line art:" - msgstr "Κατάσταση εκτυπωτή:" - --#: ../glade/NewPrinterWindow.glade.h:70 -+#: ../glade/NewPrinterWindow.glade.h:69 - #, fuzzy - msgid "Local Driver" - msgstr "Τοπικος εκτυπωτής" - --#: ../glade/NewPrinterWindow.glade.h:71 -+#: ../glade/NewPrinterWindow.glade.h:70 - #, fuzzy - msgid "Make and model:" - msgstr "Κατασκευή και μοντέλο:" - --#: ../glade/NewPrinterWindow.glade.h:72 -+#: ../glade/NewPrinterWindow.glade.h:71 - msgid "Manufacturer" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:73 -+#: ../glade/NewPrinterWindow.glade.h:72 - #, fuzzy - msgid "Network" - msgstr "Νέος εκτυπωτής" - --#: ../glade/NewPrinterWindow.glade.h:75 -+#: ../glade/NewPrinterWindow.glade.h:74 - msgid "No, I do not accept this license" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:76 -+#: ../glade/NewPrinterWindow.glade.h:75 - msgid "Parity" - msgstr "Parity" - --#: ../glade/NewPrinterWindow.glade.h:78 -+#: ../glade/NewPrinterWindow.glade.h:77 - msgid "Patented algorithms" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:79 -+#: ../glade/NewPrinterWindow.glade.h:78 - msgid "Photo:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:80 -+#: ../glade/NewPrinterWindow.glade.h:79 - #, fuzzy - msgid "Port number:" - msgstr "Αριθμός θύρας" - --#: ../glade/NewPrinterWindow.glade.h:81 -+#: ../glade/NewPrinterWindow.glade.h:80 - #, fuzzy - msgid "" - "PostScript Printer Description (PPD) files can often be found on the driver " -@@ -2013,82 +2009,82 @@ msgstr "" - "δίσκο που έρχεται μαζί με τον εκτυπωτή. Για εκτυπωτές PostScript αυτά είναι " - "συχνά κομμάτι του οδηγού Windows®." - --#: ../glade/NewPrinterWindow.glade.h:82 -+#: ../glade/NewPrinterWindow.glade.h:81 - #, fuzzy - msgid "Printer model:" - msgstr "Ο εκτυπωτής προστέθηκε" - --#: ../glade/NewPrinterWindow.glade.h:83 -+#: ../glade/NewPrinterWindow.glade.h:82 - msgid "Probe" - msgstr "Αναζήτηση" - --#: ../glade/NewPrinterWindow.glade.h:84 -+#: ../glade/NewPrinterWindow.glade.h:83 - #, fuzzy - msgid "Prompt user if authentication is required" - msgstr "Πιστοποίηση" - --#: ../glade/NewPrinterWindow.glade.h:85 -+#: ../glade/NewPrinterWindow.glade.h:84 - #, fuzzy - msgid "Provide PPD file" - msgstr "Παροχή PPD αρχείου" - --#: ../glade/NewPrinterWindow.glade.h:86 -+#: ../glade/NewPrinterWindow.glade.h:85 - msgid "Queue:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:87 -+#: ../glade/NewPrinterWindow.glade.h:86 - msgid "SCSI" - msgstr "SCSI" - --#: ../glade/NewPrinterWindow.glade.h:88 -+#: ../glade/NewPrinterWindow.glade.h:87 - msgid "SMB" - msgstr "SMB" - --#: ../glade/NewPrinterWindow.glade.h:89 -+#: ../glade/NewPrinterWindow.glade.h:88 - msgid "Search for a printer driver to download" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:90 -+#: ../glade/NewPrinterWindow.glade.h:89 - #, fuzzy - msgid "Searching..." - msgstr "Εκτελείται αναζήτηση" - --#: ../glade/NewPrinterWindow.glade.h:91 -+#: ../glade/NewPrinterWindow.glade.h:90 - msgid "Select A File" - msgstr "Επιλογή αρχείου" - --#: ../glade/NewPrinterWindow.glade.h:92 -+#: ../glade/NewPrinterWindow.glade.h:91 - #, fuzzy - msgid "Select printer from database" - msgstr "Επιλογή εκτυπωτή από βάση δεδομένων" - --#: ../glade/NewPrinterWindow.glade.h:93 -+#: ../glade/NewPrinterWindow.glade.h:92 - msgid "Serial" - msgstr "Σειριακός" - --#: ../glade/NewPrinterWindow.glade.h:94 -+#: ../glade/NewPrinterWindow.glade.h:93 - #, fuzzy - msgid "Set authentication details now" - msgstr "Πιστοποίηση" - --#: ../glade/NewPrinterWindow.glade.h:95 -+#: ../glade/NewPrinterWindow.glade.h:94 - msgid "Short name for this printer such as \"laserjet\"" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:96 -+#: ../glade/NewPrinterWindow.glade.h:95 - msgid "Supplier:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:97 -+#: ../glade/NewPrinterWindow.glade.h:96 - msgid "Support:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:98 -+#: ../glade/NewPrinterWindow.glade.h:97 - #, fuzzy - msgid "Text:" - msgstr "Επαναφορά" - --#: ../glade/NewPrinterWindow.glade.h:99 -+#: ../glade/NewPrinterWindow.glade.h:98 - msgid "" - "The foomatic printer database contains various manufacturer provided " - "PostScript Printer Description (PPD) files and also can generate PPD files " -@@ -2102,20 +2098,20 @@ msgstr "" - "PostScript). Αλλά γενικά, αρχεία PPD που προσφέρονται από κατασκευαστές " - "παρέχουν καλύτερη πρόσβαση στις συγκεκριμένες ιδιότητες του εκτυπωτή." - --#: ../glade/NewPrinterWindow.glade.h:100 -+#: ../glade/NewPrinterWindow.glade.h:99 - msgid "" - "These drivers do not come from your operating system supplier and will not " - "be covered by their commercial support. See the support and license terms " - "of the driver's supplier." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:101 -+#: ../glade/NewPrinterWindow.glade.h:100 - msgid "" - "This driver supports additional hardware that may be installed in the " - "printer." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:102 -+#: ../glade/NewPrinterWindow.glade.h:101 - msgid "" - "This is done by assuming that options with the same name do have the same " - "meaning. Settings of options that are not present in the new PPD will be " -@@ -2126,7 +2122,7 @@ msgstr "" - "νέο PPD θα χαθούν και μόνο επιλογές που βρίσκονται στο νέο PPD θα τεθούν ως " - "προεπιλογή." - --#: ../glade/NewPrinterWindow.glade.h:103 -+#: ../glade/NewPrinterWindow.glade.h:102 - msgid "" - "This way all current option settings will be lost. The default settings of " - "the new PPD will be used. " -@@ -2134,44 +2130,44 @@ msgstr "" - "Με αυτόν τον τρόπο οι τρέχουσες επιλογές ρυθμίσεων θα χαθούν. Οι " - "προεπιλεγμένες ρυθμίσεις για το νέο PPD θα χρησιμοποιηθούν. " - --#: ../glade/NewPrinterWindow.glade.h:104 -+#: ../glade/NewPrinterWindow.glade.h:103 - msgid "Try to copy the option settings over from the old PPD. " - msgstr "Προσπάθεια αντιγραφής των επιλογών ρυθμίσεων από το παλιό PPD. " - --#: ../glade/NewPrinterWindow.glade.h:105 -+#: ../glade/NewPrinterWindow.glade.h:104 - msgid "URI:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:107 -+#: ../glade/NewPrinterWindow.glade.h:106 - msgid "Use the new PPD (Postscript Printer Description) as is." - msgstr "Χρήση των νέων PPD (Περιγραφές Εκτυπωτών Postscript) όπως είναι." - --#: ../glade/NewPrinterWindow.glade.h:109 -+#: ../glade/NewPrinterWindow.glade.h:108 - msgid "" - "With this choice no driver download will be performed. In the next steps a " - "locally installed driver will be selected." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:110 -+#: ../glade/NewPrinterWindow.glade.h:109 - #, fuzzy - msgid "Yes, I accept this license" - msgstr "Λήψη εργασιών" - --#: ../glade/NewPrinterWindow.glade.h:111 -+#: ../glade/NewPrinterWindow.glade.h:110 - #, fuzzy - msgid "_Search" - msgstr "Εκτελείται αναζήτηση" - --#: ../glade/NewPrinterWindow.glade.h:112 -+#: ../glade/NewPrinterWindow.glade.h:111 - msgid "_Verify..." - msgstr "E_παλήθευση..." - --#: ../glade/NewPrinterWindow.glade.h:113 -+#: ../glade/NewPrinterWindow.glade.h:112 - #: ../glade/PrinterPropertiesDialog.glade.h:128 - msgid "move left" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:114 -+#: ../glade/NewPrinterWindow.glade.h:113 - #: ../glade/PrinterPropertiesDialog.glade.h:129 - #, fuzzy - msgid "move right" -@@ -3118,7 +3114,7 @@ msgstr "" - msgid "Remember to load paper of type '%s' into the printer first." - msgstr "" - --#: ../troubleshoot/PrintTestPage.py:399 -+#: ../troubleshoot/PrintTestPage.py:416 - msgid "Error submitting test page" - msgstr "" - -@@ -3311,6 +3307,10 @@ msgid "Select default printer" - msgstr "Επιλογή προεπιλεγμένου εκτυπωτή" - - #, fuzzy -+#~ msgid "HP Printer (HPLIP) via network" -+#~ msgstr "Όνομα εκτυπωτή" -+ -+#, fuzzy - #~ msgid "Not Found" - #~ msgstr "Δε βρέθηκε" - -diff -up system-config-printer-1.1.5/po/en_GB.po.git-1.1.x system-config-printer-1.1.5/po/en_GB.po ---- system-config-printer-1.1.5/po/en_GB.po.git-1.1.x 2009-03-03 22:21:46.000000000 +0000 -+++ system-config-printer-1.1.5/po/en_GB.po 2009-03-10 17:43:31.000000000 +0000 -@@ -8,7 +8,7 @@ msgid "" - msgstr "" - "Project-Id-Version: system-config-printer\n" - "Report-Msgid-Bugs-To: https://bugzilla.redhat.com/bugzilla\n" --"POT-Creation-Date: 2009-03-02 23:22+0000\n" -+"POT-Creation-Date: 2009-03-10 16:51+0000\n" - "PO-Revision-Date: 2009-03-02 23:27+0000\n" - "Last-Translator: Tim Waugh \n" - "Language-Team: \n" -@@ -52,11 +52,11 @@ msgstr "" - msgid "Enter IP address" - msgstr "Enter IP address" - --#: ../authconn.py:35 ../glade/NewPrinterWindow.glade.h:108 -+#: ../authconn.py:35 ../glade/NewPrinterWindow.glade.h:107 - msgid "Username:" - msgstr "Username:" - --#: ../authconn.py:36 ../glade/NewPrinterWindow.glade.h:77 -+#: ../authconn.py:36 ../glade/NewPrinterWindow.glade.h:76 - msgid "Password:" - msgstr "Password:" - -@@ -64,7 +64,7 @@ msgstr "Password:" - msgid "Domain:" - msgstr "Domain:" - --#: ../authconn.py:46 -+#: ../authconn.py:46 ../authconn.py:409 - msgid "Authentication" - msgstr "Authentication" - -@@ -72,43 +72,52 @@ msgstr "Authentication" - msgid "Remember password" - msgstr "Remember password" - --#: ../authconn.py:211 ../authconn.py:232 -+#: ../authconn.py:208 -+#, python-format -+msgid "Unauthorized request (%s)" -+msgstr "" -+ -+#: ../authconn.py:209 -+msgid "You are not authorized to carry out therequested action." -+msgstr "" -+ -+#: ../authconn.py:212 ../authconn.py:233 - msgid "Operation canceled" - msgstr "Operation cancelled" - --#: ../authconn.py:253 -+#: ../authconn.py:250 - #, python-format - msgid "CUPS server error (%s)" - msgstr "CUPS server error (%s)" - --#: ../authconn.py:255 ../errordialogs.py:57 --#: ../troubleshoot/PrintTestPage.py:400 -+#: ../authconn.py:252 ../errordialogs.py:56 ../errordialogs.py:70 -+msgid "CUPS server error" -+msgstr "CUPS server error" -+ -+#: ../authconn.py:261 ../errordialogs.py:57 -+#: ../troubleshoot/PrintTestPage.py:417 - #, python-format - msgid "There was an error during the CUPS operation: '%s'." - msgstr "There was an error during the CUPS operation: '%s'." - --#: ../authconn.py:258 -+#: ../authconn.py:264 - msgid "Retry" - msgstr "Retry" - --#: ../authconn.py:379 ../authconn.py:381 ../errordialogs.py:65 ../pysmb.py:75 -+#: ../authconn.py:385 ../authconn.py:387 ../errordialogs.py:65 ../pysmb.py:75 - #: ../pysmb.py:77 - msgid "Not authorized" - msgstr "Not authorized" - --#: ../authconn.py:382 ../pysmb.py:78 -+#: ../authconn.py:388 ../pysmb.py:78 - msgid "The password may be incorrect." - msgstr "The password may be incorrect." - --#: ../authconn.py:400 -+#: ../authconn.py:407 - #, python-format - msgid "Authentication (%s)" - msgstr "Authentication (%s)" - --#: ../errordialogs.py:56 ../errordialogs.py:70 --msgid "CUPS server error" --msgstr "CUPS server error" -- - #: ../errordialogs.py:66 - msgid "" - "The password may be incorrect, or the server may be configured to deny " -@@ -137,7 +146,7 @@ msgstr "Upgrade required" - msgid "Server error" - msgstr "Server error" - --#: ../errordialogs.py:82 ../system-config-printer.py:1219 -+#: ../errordialogs.py:82 ../system-config-printer.py:1223 - msgid "Not connected" - msgstr "Not connected" - -@@ -159,7 +168,7 @@ msgstr "_New Group" - msgid "_New Group from Selection" - msgstr "_New Group from Selection" - --#: ../GroupsPane.py:98 ../system-config-printer.py:393 -+#: ../GroupsPane.py:98 ../system-config-printer.py:397 - msgid "_Rename" - msgstr "_Rename" - -@@ -226,7 +235,7 @@ msgid "Document" - msgstr "Document" - - #: ../jobviewer.py:212 ../my-default-printer.py:153 --#: ../system-config-printer.py:366 ../system-config-printer.py:1367 -+#: ../system-config-printer.py:370 ../system-config-printer.py:1371 - #: ../troubleshoot/PrintTestPage.py:84 - msgid "Printer" - msgstr "Printer" -@@ -263,8 +272,8 @@ msgstr "Document Print Status (%s)" - - #: ../jobviewer.py:386 ../jobviewer.py:451 ../jobviewer.py:452 - #: ../jobviewer.py:492 ../jobviewer.py:600 ../jobviewer.py:727 --#: ../jobviewer.py:1196 ../jobviewer.py:1222 ../system-config-printer.py:2546 --#: ../glade/NewPrinterWindow.glade.h:106 -+#: ../jobviewer.py:1196 ../jobviewer.py:1222 ../system-config-printer.py:2556 -+#: ../glade/NewPrinterWindow.glade.h:105 - #: ../troubleshoot/ChooseNetworkPrinter.py:101 - #: ../troubleshoot/ChooseNetworkPrinter.py:102 - #: ../troubleshoot/ChooseNetworkPrinter.py:105 -@@ -352,12 +361,12 @@ msgstr "Held until weekend" - msgid "Pending" - msgstr "Pending" - --#: ../jobviewer.py:591 ../system-config-printer.py:186 -+#: ../jobviewer.py:591 ../system-config-printer.py:190 - #: ../troubleshoot/PrintTestPage.py:43 - msgid "Processing" - msgstr "Processing" - --#: ../jobviewer.py:592 ../system-config-printer.py:188 -+#: ../jobviewer.py:592 ../system-config-printer.py:192 - #: ../troubleshoot/PrintTestPage.py:44 - msgid "Stopped" - msgstr "Stopped" -@@ -467,8 +476,8 @@ msgstr "_Use System Default" - msgid "_Set Default" - msgstr "_Set Default" - --#: ../my-default-printer.py:158 ../system-config-printer.py:423 --#: ../system-config-printer.py:3660 ../troubleshoot/ChooseNetworkPrinter.py:37 -+#: ../my-default-printer.py:158 ../system-config-printer.py:427 -+#: ../system-config-printer.py:3675 ../troubleshoot/ChooseNetworkPrinter.py:37 - #: ../troubleshoot/ChoosePrinter.py:38 - msgid "Location" - msgstr "Location" -@@ -497,7 +506,7 @@ msgstr "Default behaviour" - msgid "Authenticated" - msgstr "Authenticated" - --#: ../ppdippstr.py:50 ../system-config-printer.py:6259 -+#: ../ppdippstr.py:50 ../system-config-printer.py:6207 - msgid "None" - msgstr "None" - -@@ -710,124 +719,124 @@ msgstr "600 dpi, colour, black + colour - msgid "1200 dpi, photo, black + color cartridge, photo paper" - msgstr "1200 dpi, photo, black + colour cartridge, photo paper" - --#: ../system-config-printer.py:127 -+#: ../system-config-printer.py:131 - msgid "To do this, select System->Administration->Firewall from the main menu." - msgstr "" - "To do this, select System->Administration->Firewall from the main menu." - --#: ../system-config-printer.py:185 -+#: ../system-config-printer.py:189 - msgid "Idle" - msgstr "Idle" - --#: ../system-config-printer.py:187 -+#: ../system-config-printer.py:191 - msgid "Busy" - msgstr "Busy" - --#: ../system-config-printer.py:372 ../system-config-printer.py:1373 -+#: ../system-config-printer.py:376 ../system-config-printer.py:1377 - msgid "Class" - msgstr "Class" - --#: ../system-config-printer.py:399 -+#: ../system-config-printer.py:403 - msgid "Set As De_fault" - msgstr "Set As De_fault" - --#: ../system-config-printer.py:403 -+#: ../system-config-printer.py:407 - msgid "_Create class" - msgstr "_Create class" - --#: ../system-config-printer.py:405 -+#: ../system-config-printer.py:409 - msgid "View Print _Queue" - msgstr "View Print _Queue" - --#: ../system-config-printer.py:407 -+#: ../system-config-printer.py:411 - msgid "_Add to Group" - msgstr "_Add to Group" - --#: ../system-config-printer.py:409 -+#: ../system-config-printer.py:413 - msgid "Save Results as _Group" - msgstr "Save Results as _Group" - --#: ../system-config-printer.py:411 -+#: ../system-config-printer.py:415 - msgid "Save Filter as _Search Group" - msgstr "Save Filter as _Search Group" - --#: ../system-config-printer.py:415 -+#: ../system-config-printer.py:419 - msgid "E_nabled" - msgstr "E_nabled" - --#: ../system-config-printer.py:417 -+#: ../system-config-printer.py:421 - msgid "_Shared" - msgstr "_Shared" - --#: ../system-config-printer.py:421 ../troubleshoot/ChooseNetworkPrinter.py:35 -+#: ../system-config-printer.py:425 ../troubleshoot/ChooseNetworkPrinter.py:35 - #: ../troubleshoot/ChoosePrinter.py:36 ../troubleshoot/DeviceListed.py:36 - msgid "Name" - msgstr "Name" - --#: ../system-config-printer.py:422 -+#: ../system-config-printer.py:426 - msgid "Description" - msgstr "Description" - --#: ../system-config-printer.py:424 -+#: ../system-config-printer.py:428 - msgid "Manufacturer / Model" - msgstr "Manufacturer / Model" - - #. Printer state reasons list --#: ../system-config-printer.py:499 -+#: ../system-config-printer.py:503 - msgid "Message" - msgstr "Message" - --#: ../system-config-printer.py:534 -+#: ../system-config-printer.py:538 - msgid "Problems?" - msgstr "Problems?" - --#: ../system-config-printer.py:637 ../system-config-printer.py:639 -+#: ../system-config-printer.py:641 ../system-config-printer.py:643 - msgid "Members of this class" - msgstr "Members of this class" - --#: ../system-config-printer.py:638 ../system-config-printer.py:640 -+#: ../system-config-printer.py:642 ../system-config-printer.py:644 - msgid "Others" - msgstr "Others" - --#: ../system-config-printer.py:641 -+#: ../system-config-printer.py:645 - msgid "Devices" - msgstr "Devices" - --#: ../system-config-printer.py:642 -+#: ../system-config-printer.py:646 - msgid "Connections" - msgstr "Connections" - --#: ../system-config-printer.py:643 -+#: ../system-config-printer.py:647 - msgid "Makes" - msgstr "Makes" - --#: ../system-config-printer.py:644 -+#: ../system-config-printer.py:648 - msgid "Models" - msgstr "Models" - --#: ../system-config-printer.py:645 -+#: ../system-config-printer.py:649 - msgid "Drivers" - msgstr "Drivers" - --#: ../system-config-printer.py:646 ../glade/NewPrinterWindow.glade.h:55 -+#: ../system-config-printer.py:650 ../glade/NewPrinterWindow.glade.h:54 - msgid "Downloadable Drivers" - msgstr "Downloadable Drivers" - --#: ../system-config-printer.py:647 -+#: ../system-config-printer.py:651 - msgid "Users" - msgstr "Users" - --#: ../system-config-printer.py:682 -+#: ../system-config-printer.py:686 - msgid "Automatic rotation" - msgstr "Automatic rotation" - --#: ../system-config-printer.py:989 -+#: ../system-config-printer.py:993 - #, python-format - msgid "Printer Properties - '%s' on %s" - msgstr "Printer Properties - '%s' on %s" - - #. The Conflict button was pressed. --#: ../system-config-printer.py:996 -+#: ../system-config-printer.py:1000 - msgid "" - "There are conflicting options.\n" - "Changes can only be applied after\n" -@@ -837,78 +846,78 @@ msgstr "" - "Changes can only be applied after\n" - "these conflicts are resolved." - --#: ../system-config-printer.py:1214 -+#: ../system-config-printer.py:1218 - #, python-format - msgid "Printer configuration - %s" - msgstr "Printer configuration - %s" - --#: ../system-config-printer.py:1217 -+#: ../system-config-printer.py:1221 - #, python-format - msgid "Connected to %s" - msgstr "Connected to %s" - - #. Update our copy of the printer's settings. --#: ../system-config-printer.py:1257 ../system-config-printer.py:2042 -+#: ../system-config-printer.py:1261 ../system-config-printer.py:2046 - msgid "obtaining queue details" - msgstr "obtaining queue details" - --#: ../system-config-printer.py:1295 -+#: ../system-config-printer.py:1299 - msgid "Remove from Group" - msgstr "Remove from Group" - --#: ../system-config-printer.py:1361 -+#: ../system-config-printer.py:1365 - msgid "Network printer (discovered)" - msgstr "Network printer (discovered)" - --#: ../system-config-printer.py:1364 -+#: ../system-config-printer.py:1368 - msgid "Network class (discovered)" - msgstr "Network class (discovered)" - --#: ../system-config-printer.py:1370 ../system-config-printer.py:5524 --#: ../system-config-printer.py:5594 ../system-config-printer.py:5596 -+#: ../system-config-printer.py:1374 ../system-config-printer.py:5519 -+#: ../system-config-printer.py:5589 ../system-config-printer.py:5591 - msgid "Fax" - msgstr "Fax" - --#: ../system-config-printer.py:1376 ../system-config-printer.py:1382 -+#: ../system-config-printer.py:1380 ../system-config-printer.py:1386 - #: ../troubleshoot/LocalOrRemote.py:30 - msgid "Network printer" - msgstr "Network printer" - --#: ../system-config-printer.py:1379 -+#: ../system-config-printer.py:1383 - msgid "Network print share" - msgstr "Network print share" - --#: ../system-config-printer.py:1508 ../glade/ConnectingDialog.glade.h:2 -+#: ../system-config-printer.py:1512 ../glade/ConnectingDialog.glade.h:2 - #, no-c-format, python-format - msgid "Opening connection to %s" - msgstr "Opening connection to %s" - --#: ../system-config-printer.py:1887 -+#: ../system-config-printer.py:1891 - msgid "Installable Options" - msgstr "Installable Options" - --#: ../system-config-printer.py:1888 -+#: ../system-config-printer.py:1892 - #: ../glade/PrinterPropertiesDialog.glade.h:109 - msgid "Printer Options" - msgstr "Printer Options" - --#: ../system-config-printer.py:1924 -+#: ../system-config-printer.py:1928 - #, python-format - msgid "modifying class %s" - msgstr "modifying class %s" - --#: ../system-config-printer.py:1926 ../system-config-printer.py:3019 --#: ../system-config-printer.py:3044 ../system-config-printer.py:6547 --#: ../system-config-printer.py:6559 ../system-config-printer.py:6581 -+#: ../system-config-printer.py:1930 ../system-config-printer.py:3037 -+#: ../system-config-printer.py:3062 ../system-config-printer.py:6495 -+#: ../system-config-printer.py:6507 ../system-config-printer.py:6529 - #, python-format - msgid "modifying printer %s" - msgstr "modifying printer %s" - --#: ../system-config-printer.py:1941 -+#: ../system-config-printer.py:1945 - msgid "This will delete this class!" - msgstr "This will delete this class!" - --#: ../system-config-printer.py:1942 -+#: ../system-config-printer.py:1946 - msgid "Proceed anyway?" - msgstr "Proceed anyway?" - -@@ -916,44 +925,44 @@ msgstr "Proceed anyway?" - #. but we have never fetched the server settings to see whether - #. the server is publishing shared printers. Fetch the settings - #. now so that we can update the "not published" label if necessary. --#: ../system-config-printer.py:2030 ../system-config-printer.py:3203 -+#: ../system-config-printer.py:2034 ../system-config-printer.py:3221 - msgid "fetching server settings" - msgstr "fetching server settings" - --#: ../system-config-printer.py:2100 -+#: ../system-config-printer.py:2104 - msgid "Set Default Printer" - msgstr "Set Default Printer" - --#: ../system-config-printer.py:2102 -+#: ../system-config-printer.py:2106 - msgid "Do you want to set this as the system-wide default printer?" - msgstr "Do you want to set this as the system-wide default printer?" - --#: ../system-config-printer.py:2104 -+#: ../system-config-printer.py:2108 - msgid "Set as the _system-wide default printer" - msgstr "Set as the _system-wide default printer" - --#: ../system-config-printer.py:2106 -+#: ../system-config-printer.py:2110 - msgid "_Clear my personal default setting" - msgstr "_Clear my personal default setting" - --#: ../system-config-printer.py:2107 -+#: ../system-config-printer.py:2111 - msgid "Set as my _personal default printer" - msgstr "Set as my _personal default printer" - --#: ../system-config-printer.py:2112 -+#: ../system-config-printer.py:2116 - msgid "setting default printer" - msgstr "setting default printer" - --#: ../system-config-printer.py:2169 -+#: ../system-config-printer.py:2173 - msgid "printing test page" - msgstr "printing test page" - --#: ../system-config-printer.py:2182 ../system-config-printer.py:2217 --#: ../system-config-printer.py:5418 -+#: ../system-config-printer.py:2186 ../system-config-printer.py:2221 -+#: ../system-config-printer.py:5413 - msgid "Not possible" - msgstr "Not possible" - --#: ../system-config-printer.py:2183 ../system-config-printer.py:2218 -+#: ../system-config-printer.py:2187 ../system-config-printer.py:2222 - msgid "" - "The remote server did not accept the print job, most likely because the " - "printer is not shared." -@@ -961,20 +970,20 @@ msgstr "" - "The remote server did not accept the print job, most likely because the " - "printer is not shared." - --#: ../system-config-printer.py:2195 ../system-config-printer.py:2210 -+#: ../system-config-printer.py:2199 ../system-config-printer.py:2214 - msgid "Submitted" - msgstr "Submitted" - --#: ../system-config-printer.py:2196 -+#: ../system-config-printer.py:2200 - #, python-format - msgid "Test page submitted as job %d" - msgstr "Test page submitted as job %d" - --#: ../system-config-printer.py:2203 -+#: ../system-config-printer.py:2207 - msgid "sending maintenance command" - msgstr "sending maintenance command" - --#: ../system-config-printer.py:2211 -+#: ../system-config-printer.py:2215 - #, python-format - msgid "Maintenance command submitted as job %d" - msgstr "Maintenance command submitted as job %d" -@@ -982,65 +991,65 @@ msgstr "Maintenance command submitted as - #. The underlying cupsGetPPD2() function returned NULL without - #. setting an IPP error, so it'll be something like a failed - #. connection. --#: ../system-config-printer.py:2285 ../system-config-printer.py:2381 -+#: ../system-config-printer.py:2289 ../system-config-printer.py:2385 - msgid "Error" - msgstr "Error" - --#: ../system-config-printer.py:2286 -+#: ../system-config-printer.py:2290 - msgid "There was a problem connecting to the CUPS server." - msgstr "There was a problem connecting to the CUPS server." - --#: ../system-config-printer.py:2382 -+#: ../system-config-printer.py:2386 - #, python-format - msgid "Option '%s' has value '%s' and cannot be edited." - msgstr "Option '%s' has value '%s' and cannot be edited." - --#: ../system-config-printer.py:2466 -+#: ../system-config-printer.py:2476 - msgid "Marker levels are not reported for this printer." - msgstr "Marker levels are not reported for this printer." - --#: ../system-config-printer.py:2763 -+#: ../system-config-printer.py:2773 - msgid "Cannot Rename" - msgstr "Cannot Rename" - --#: ../system-config-printer.py:2764 -+#: ../system-config-printer.py:2774 - msgid "There are queued jobs." - msgstr "There are queued jobs." - --#: ../system-config-printer.py:2822 -+#: ../system-config-printer.py:2840 - msgid "renaming printer" - msgstr "renaming printer" - - #. for classes make sure all members - #. will get added --#: ../system-config-printer.py:2907 -+#: ../system-config-printer.py:2925 - msgid "copying printer" - msgstr "copying printer" - --#: ../system-config-printer.py:2971 -+#: ../system-config-printer.py:2989 - #, python-format - msgid "Really delete class '%s'?" - msgstr "Really delete class '%s'?" - --#: ../system-config-printer.py:2973 -+#: ../system-config-printer.py:2991 - #, python-format - msgid "Really delete printer '%s'?" - msgstr "Really delete printer '%s'?" - --#: ../system-config-printer.py:2975 -+#: ../system-config-printer.py:2993 - msgid "Really delete selected destinations?" - msgstr "Really delete selected destinations?" - --#: ../system-config-printer.py:2996 -+#: ../system-config-printer.py:3014 - #, python-format - msgid "deleting printer %s" - msgstr "deleting printer %s" - --#: ../system-config-printer.py:3070 -+#: ../system-config-printer.py:3088 - msgid "Publish Shared Printers" - msgstr "Publish Shared Printers" - --#: ../system-config-printer.py:3071 -+#: ../system-config-printer.py:3089 - msgid "" - "Shared printers are not available to other people unless the 'Publish shared " - "printers' option is enabled in the server settings." -@@ -1048,7 +1057,7 @@ msgstr "" - "Shared printers are not available to other people unless the 'Publish shared " - "printers' option is enabled in the server settings." - --#: ../system-config-printer.py:3264 -+#: ../system-config-printer.py:3282 - msgid "modifying server settings" - msgstr "modifying server settings" - -@@ -1058,11 +1067,11 @@ msgstr "modifying server settings" - #. be unblocked. Unfortunately, this is not yet possible - #. (bug #440469). However, we can display a dialog to suggest - #. that now might be a good time to review the firewall settings. --#: ../system-config-printer.py:3289 -+#: ../system-config-printer.py:3307 - msgid "Review Firewall" - msgstr "Review Firewall" - --#: ../system-config-printer.py:3290 -+#: ../system-config-printer.py:3308 - msgid "" - "You may need to adjust the firewall to allow network printing to this " - "computer." -@@ -1070,25 +1079,25 @@ msgstr "" - "You may need to adjust the firewall to allow network printing to this " - "computer." - --#: ../system-config-printer.py:3623 -+#: ../system-config-printer.py:3638 - msgid "Browsing not available (pysmbc not installed)" - msgstr "Browsing not available (pysmbc not installed)" - - #. SMB list columns --#: ../system-config-printer.py:3629 -+#: ../system-config-printer.py:3644 - msgid "Share" - msgstr "Share" - --#: ../system-config-printer.py:3635 -+#: ../system-config-printer.py:3650 - msgid "Comment" - msgstr "Comment" - - #. IPP list columns --#: ../system-config-printer.py:3654 -+#: ../system-config-printer.py:3669 - msgid "Queue" - msgstr "Queue" - --#: ../system-config-printer.py:3668 -+#: ../system-config-printer.py:3683 - msgid "" - "PostScript Printer Description files (*.ppd, *.PPD, *.ppd.gz, *.PPD.gz, *." - "PPD.GZ)" -@@ -1096,60 +1105,60 @@ msgstr "" - "PostScript Printer Description files (*.ppd, *.PPD, *.ppd.gz, *.PPD.gz, *." - "PPD.GZ)" - --#: ../system-config-printer.py:3677 -+#: ../system-config-printer.py:3692 - msgid "All files (*)" - msgstr "All files (*)" - --#: ../system-config-printer.py:3713 ../system-config-printer.py:5970 --#: ../system-config-printer.py:6008 ../applet.py:124 -+#: ../system-config-printer.py:3728 ../system-config-printer.py:5918 -+#: ../system-config-printer.py:5956 ../applet.py:124 - msgid "Search" - msgstr "Search" - --#: ../system-config-printer.py:3736 ../system-config-printer.py:3760 --#: ../glade/NewPrinterWindow.glade.h:74 -+#: ../system-config-printer.py:3751 ../system-config-printer.py:3775 -+#: ../glade/NewPrinterWindow.glade.h:73 - msgid "New Printer" - msgstr "New Printer" - --#: ../system-config-printer.py:3747 -+#: ../system-config-printer.py:3762 - msgid "New Class" - msgstr "New Class" - --#: ../system-config-printer.py:3752 -+#: ../system-config-printer.py:3767 - msgid "Change Device URI" - msgstr "Change Device URI" - --#: ../system-config-printer.py:3758 -+#: ../system-config-printer.py:3773 - msgid "Change Driver" - msgstr "Change Driver" - --#: ../system-config-printer.py:3927 ../system-config-printer.py:3993 --#: ../system-config-printer.py:4289 ../system-config-printer.py:4487 --#: ../system-config-printer.py:5772 ../system-config-printer.py:5995 -+#: ../system-config-printer.py:3942 ../system-config-printer.py:4008 -+#: ../system-config-printer.py:4304 ../system-config-printer.py:4502 -+#: ../system-config-printer.py:5762 ../system-config-printer.py:5943 - msgid "Searching" - msgstr "Searching" - --#: ../system-config-printer.py:3928 -+#: ../system-config-printer.py:3943 - msgid "Searching for downloadable drivers" - msgstr "Searching for downloadable drivers" - --#: ../system-config-printer.py:3994 ../system-config-printer.py:4290 -+#: ../system-config-printer.py:4009 ../system-config-printer.py:4305 - msgid "Searching for drivers" - msgstr "Searching for drivers" - --#: ../system-config-printer.py:4488 ../system-config-printer.py:5773 -+#: ../system-config-printer.py:4503 ../system-config-printer.py:5763 - msgid "Searching for printers" - msgstr "Searching for printers" - --#: ../system-config-printer.py:4497 -+#: ../system-config-printer.py:4512 - msgid "fetching device list" - msgstr "fetching device list" - - #. Tell the user why he needs the plugin --#: ../system-config-printer.py:4579 -+#: ../system-config-printer.py:4594 - msgid "For this printer a proprietary driver plugin from HP is available.\n" - msgstr "For this printer a proprietary driver plugin from HP is available.\n" - --#: ../system-config-printer.py:4582 -+#: ../system-config-printer.py:4597 - msgid "" - "The installation of the plugin is required for your printer to work.\n" - "\n" -@@ -1157,7 +1166,7 @@ msgstr "" - "The installation of the plugin is required for your printer to work.\n" - "\n" - --#: ../system-config-printer.py:4585 -+#: ../system-config-printer.py:4600 - msgid "" - "Installing the plugin is optional, it completes or enhances the " - "functionality\n" -@@ -1169,110 +1178,106 @@ msgstr "" - "of your printer. Without the plugin basic operations will work.\n" - "\n" - --#: ../system-config-printer.py:4589 -+#: ../system-config-printer.py:4604 - msgid "The plugin provides the following features:\n" - msgstr "The plugin provides the following features:\n" - --#: ../system-config-printer.py:4592 -+#: ../system-config-printer.py:4607 - msgid " - Printing support\n" - msgstr " - Printing support\n" - --#: ../system-config-printer.py:4595 -+#: ../system-config-printer.py:4610 - msgid " - Faster printing\n" - msgstr " - Faster printing\n" - --#: ../system-config-printer.py:4598 -+#: ../system-config-printer.py:4613 - msgid " - Better printout quality\n" - msgstr " - Better printout quality\n" - --#: ../system-config-printer.py:4601 -+#: ../system-config-printer.py:4616 - msgid " - Extra printing features\n" - msgstr " - Extra printing features\n" - --#: ../system-config-printer.py:4604 -+#: ../system-config-printer.py:4619 - msgid " - Scanning support\n" - msgstr " - Scanning support\n" - --#: ../system-config-printer.py:4607 -+#: ../system-config-printer.py:4622 - msgid " - Faster scanning\n" - msgstr " - Faster scanning\n" - --#: ../system-config-printer.py:4610 -+#: ../system-config-printer.py:4625 - msgid " - Better scanning image quality\n" - msgstr " - Better scanning image quality\n" - --#: ../system-config-printer.py:4613 -+#: ../system-config-printer.py:4628 - msgid " - Faxing support\n" - msgstr " - Faxing support\n" - --#: ../system-config-printer.py:4616 -+#: ../system-config-printer.py:4631 - msgid " - Extra fax features\n" - msgstr " - Extra fax features\n" - --#: ../system-config-printer.py:4619 -+#: ../system-config-printer.py:4634 - msgid " - Better Input/Output support\n" - msgstr " - Better Input/Output support\n" - --#: ../system-config-printer.py:4622 -+#: ../system-config-printer.py:4637 - msgid " - Extra user interface features\n" - msgstr " - Extra user interface features\n" - --#: ../system-config-printer.py:4625 -+#: ../system-config-printer.py:4640 - msgid " - Other extra features\n" - msgstr " - Other extra features\n" - --#: ../system-config-printer.py:4630 -+#: ../system-config-printer.py:4645 - msgid "Install plugin" - msgstr "Install plugin" - --#: ../system-config-printer.py:4631 -+#: ../system-config-printer.py:4646 - msgid "Do not set up printer" - msgstr "Do not set up printer" - --#: ../system-config-printer.py:4632 -+#: ../system-config-printer.py:4647 - msgid "Set up without plugin" - msgstr "Set up without plugin" - --#: ../system-config-printer.py:4634 ../troubleshoot/PrintTestPage.py:118 -+#: ../system-config-printer.py:4649 ../troubleshoot/PrintTestPage.py:118 - msgid "Yes" - msgstr "Yes" - --#: ../system-config-printer.py:4635 ../troubleshoot/PrintTestPage.py:119 -+#: ../system-config-printer.py:4650 ../troubleshoot/PrintTestPage.py:119 - msgid "No" - msgstr "No" - --#: ../system-config-printer.py:4809 ../system-config-printer.py:4813 -+#: ../system-config-printer.py:4824 ../system-config-printer.py:4828 - msgid " (Current)" - msgstr " (Current)" - --#: ../system-config-printer.py:4845 --msgid "HP Printer (HPLIP)" --msgstr "HP Printer (HPLIP)" -- --#: ../system-config-printer.py:4886 -+#: ../system-config-printer.py:4881 - msgid "Other" - msgstr "Other" - - #. device-info - #. PhysicalDevice obj - #. Separator? --#: ../system-config-printer.py:4902 -+#: ../system-config-printer.py:4897 - msgid "Network Printer" - msgstr "Network Printer" - --#: ../system-config-printer.py:4906 -+#: ../system-config-printer.py:4901 - msgid "Find Network Printer" - msgstr "Find Network Printer" - --#: ../system-config-printer.py:4979 ../system-config-printer.py:5376 -+#: ../system-config-printer.py:4974 ../system-config-printer.py:5371 - msgid "Scanning..." - msgstr "Scanning..." - --#: ../system-config-printer.py:5034 ../system-config-printer.py:5798 -+#: ../system-config-printer.py:5029 - msgid "No Print Shares" - msgstr "No Print Shares" - --#: ../system-config-printer.py:5035 -+#: ../system-config-printer.py:5030 - msgid "" - "There were no print shares found. Please check that the Samba service is " - "marked as trusted in your firewall configuration." -@@ -1280,32 +1285,32 @@ msgstr "" - "There were no print shares found. Please check that the Samba service is " - "marked as trusted in your firewall configuration." - --#: ../system-config-printer.py:5296 ../system-config-printer.py:5357 -+#: ../system-config-printer.py:5291 ../system-config-printer.py:5352 - msgid "Print Share Verified" - msgstr "Print Share Verified" - --#: ../system-config-printer.py:5297 ../system-config-printer.py:5358 -+#: ../system-config-printer.py:5292 ../system-config-printer.py:5353 - msgid "This print share is accessible." - msgstr "This print share is accessible." - --#: ../system-config-printer.py:5302 ../system-config-printer.py:5362 -+#: ../system-config-printer.py:5297 ../system-config-printer.py:5357 - msgid "This print share is not accessible." - msgstr "This print share is not accessible." - --#: ../system-config-printer.py:5305 -+#: ../system-config-printer.py:5300 - msgid "Print Share Inaccessible" - msgstr "Print Share Inaccessible" - --#: ../system-config-printer.py:5361 -+#: ../system-config-printer.py:5356 - msgid "Inaccessible" - msgstr "Inaccessible" - --#: ../system-config-printer.py:5419 -+#: ../system-config-printer.py:5414 - #, python-format - msgid "It is not possible to obtain a list of queues from '%s'." - msgstr "It is not possible to obtain a list of queues from '%s'." - --#: ../system-config-printer.py:5421 -+#: ../system-config-printer.py:5416 - msgid "" - "Obtaining a list of queues is a CUPS extension to IPP. Network printers do " - "not support it." -@@ -1313,68 +1318,68 @@ msgstr "" - "Obtaining a list of queues is a CUPS extension to IPP. Network printers do " - "not support it." - --#: ../system-config-printer.py:5424 -+#: ../system-config-printer.py:5419 - msgid "No queues" - msgstr "No queues" - --#: ../system-config-printer.py:5425 -+#: ../system-config-printer.py:5420 - msgid "There are no queues available." - msgstr "There are no queues available." - --#: ../system-config-printer.py:5516 -+#: ../system-config-printer.py:5511 - msgid "Parallel Port" - msgstr "Parallel Port" - --#: ../system-config-printer.py:5518 -+#: ../system-config-printer.py:5513 - msgid "Serial Port" - msgstr "Serial Port" - --#: ../system-config-printer.py:5520 -+#: ../system-config-printer.py:5515 - msgid "USB" - msgstr "USB" - --#: ../system-config-printer.py:5522 ../system-config-printer.py:5525 -+#: ../system-config-printer.py:5517 ../system-config-printer.py:5520 - msgid "HP Linux Imaging and Printing (HPLIP)" - msgstr "HP Linux Imaging and Printing (HPLIP)" - --#: ../system-config-printer.py:5527 -+#: ../system-config-printer.py:5522 - msgid "Hardware Abstraction Layer (HAL)" - msgstr "Hardware Abstraction Layer (HAL)" - --#: ../system-config-printer.py:5529 -+#: ../system-config-printer.py:5524 - msgid "AppSocket/HP JetDirect" - msgstr "AppSocket/HP JetDirect" - --#: ../system-config-printer.py:5538 -+#: ../system-config-printer.py:5533 - #, python-format - msgid "LPD/LPR queue '%s'" - msgstr "LPD/LPR queue '%s'" - --#: ../system-config-printer.py:5540 -+#: ../system-config-printer.py:5535 - msgid "LPD/LPR queue" - msgstr "LPD/LPR queue" - --#: ../system-config-printer.py:5543 -+#: ../system-config-printer.py:5538 - msgid "Windows Printer via SAMBA" - msgstr "Windows Printer via SAMBA" - --#: ../system-config-printer.py:5545 ../glade/NewPrinterWindow.glade.h:66 -+#: ../system-config-printer.py:5540 ../glade/NewPrinterWindow.glade.h:65 - msgid "IPP" - msgstr "IPP" - --#: ../system-config-printer.py:5547 -+#: ../system-config-printer.py:5542 - msgid "HTTP" - msgstr "HTTP" - --#: ../system-config-printer.py:5632 -+#: ../system-config-printer.py:5624 - msgid "A printer connected to the parallel port." - msgstr "A printer connected to the parallel port." - --#: ../system-config-printer.py:5634 -+#: ../system-config-printer.py:5626 - msgid "A printer connected to a USB port." - msgstr "A printer connected to a USB port." - --#: ../system-config-printer.py:5636 -+#: ../system-config-printer.py:5628 - msgid "" - "HPLIP software driving a printer, or the printer function of a multi-" - "function device." -@@ -1382,7 +1387,7 @@ msgstr "" - "HPLIP software driving a printer, or the printer function of a multi-" - "function device." - --#: ../system-config-printer.py:5639 -+#: ../system-config-printer.py:5631 - msgid "" - "HPLIP software driving a fax machine, or the fax function of a multi-" - "function device." -@@ -1390,47 +1395,43 @@ msgstr "" - "HPLIP software driving a fax machine, or the fax function of a multi-" - "function device." - --#: ../system-config-printer.py:5642 -+#: ../system-config-printer.py:5634 - msgid "Local printer detected by the Hardware Abstraction Layer (HAL)." - msgstr "Local printer detected by the Hardware Abstraction Layer (HAL)." - --#: ../system-config-printer.py:5799 --msgid "HPLIP cannot find the device." --msgstr "HPLIP cannot find the device." -- --#: ../system-config-printer.py:5881 -+#: ../system-config-printer.py:5831 - msgid "No printer was found at that address." - msgstr "No printer was found at that address." - --#: ../system-config-printer.py:6020 -+#: ../system-config-printer.py:5968 - msgid "-- Select from search results --" - msgstr "-- Select from search results --" - --#: ../system-config-printer.py:6022 -+#: ../system-config-printer.py:5970 - msgid "-- No matches found --" - msgstr "-- No matches found --" - --#: ../system-config-printer.py:6203 -+#: ../system-config-printer.py:6151 - msgid " (recommended)" - msgstr " (recommended)" - --#: ../system-config-printer.py:6217 -+#: ../system-config-printer.py:6165 - msgid "This PPD is generated by foomatic." - msgstr "This PPD is generated by foomatic." - --#: ../system-config-printer.py:6241 -+#: ../system-config-printer.py:6189 - msgid "OpenPrinting" - msgstr "OpenPrinting" - --#: ../system-config-printer.py:6252 -+#: ../system-config-printer.py:6200 - msgid "Distributable" - msgstr "Distributable" - --#: ../system-config-printer.py:6293 -+#: ../system-config-printer.py:6241 - msgid ", " - msgstr ", " - --#: ../system-config-printer.py:6298 -+#: ../system-config-printer.py:6246 - #, python-format - msgid "" - "\n" -@@ -1439,20 +1440,20 @@ msgstr "" - "\n" - "(%s)" - --#: ../system-config-printer.py:6303 -+#: ../system-config-printer.py:6251 - msgid "No support contacts known" - msgstr "No support contacts known" - --#: ../system-config-printer.py:6307 ../system-config-printer.py:6320 -+#: ../system-config-printer.py:6255 ../system-config-printer.py:6268 - msgid "Not specified." - msgstr "Not specified." - - #. Foomatic database problem of some sort. --#: ../system-config-printer.py:6360 -+#: ../system-config-printer.py:6308 - msgid "Database error" - msgstr "Database error" - --#: ../system-config-printer.py:6361 -+#: ../system-config-printer.py:6309 - #, python-format - msgid "The '%s' driver cannot be used with printer '%s %s'." - msgstr "The '%s' driver cannot be used with printer '%s %s'." -@@ -1460,61 +1461,61 @@ msgstr "The '%s' driver cannot be used w - #. This printer references some XML that is not - #. installed by default. Point the user at the - #. package they need to install. --#: ../system-config-printer.py:6371 -+#: ../system-config-printer.py:6319 - #, python-format - msgid "You will need to install the '%s' package in order to use this driver." - msgstr "You will need to install the '%s' package in order to use this driver." - - #. This error came from trying to open the PPD file. --#: ../system-config-printer.py:6378 -+#: ../system-config-printer.py:6326 - msgid "PPD error" - msgstr "PPD error" - --#: ../system-config-printer.py:6380 -+#: ../system-config-printer.py:6328 - msgid "Failed to read PPD file. Possible reason follows:" - msgstr "Failed to read PPD file. Possible reason follows:" - - #. Failed to get PPD downloaded from OpenPrinting XXX --#: ../system-config-printer.py:6397 -+#: ../system-config-printer.py:6345 - msgid "Downloadable drivers" - msgstr "Downloadable drivers" - --#: ../system-config-printer.py:6398 -+#: ../system-config-printer.py:6346 - msgid "Failed to download PPD." - msgstr "Failed to download PPD." - --#: ../system-config-printer.py:6405 -+#: ../system-config-printer.py:6353 - msgid "fetching PPD" - msgstr "fetching PPD" - --#: ../system-config-printer.py:6434 ../system-config-printer.py:6472 -+#: ../system-config-printer.py:6382 ../system-config-printer.py:6420 - msgid "No Installable Options" - msgstr "No Installable Options" - --#: ../system-config-printer.py:6520 -+#: ../system-config-printer.py:6468 - #, python-format - msgid "adding printer %s" - msgstr "adding printer %s" - --#: ../system-config-printer.py:6669 -+#: ../system-config-printer.py:6617 - msgid "Would you like to print a test page?" - msgstr "Would you like to print a test page?" - --#: ../system-config-printer.py:6722 -+#: ../system-config-printer.py:6670 - msgid "Install driver" - msgstr "Install driver" - --#: ../system-config-printer.py:6723 ../troubleshoot/CheckPPDSanity.py:131 -+#: ../system-config-printer.py:6671 ../troubleshoot/CheckPPDSanity.py:131 - #, python-format - msgid "Printer '%s' requires the %s package but it is not currently installed." - msgstr "" - "Printer '%s' requires the %s package but it is not currently installed." - --#: ../system-config-printer.py:6739 -+#: ../system-config-printer.py:6687 - msgid "Missing driver" - msgstr "Missing driver" - --#: ../system-config-printer.py:6740 -+#: ../system-config-printer.py:6688 - #, python-format - msgid "" - "Printer '%s' requires the '%s' program but it is not currently installed. " -@@ -1643,106 +1644,102 @@ msgid "Enter device URI" - msgstr "Enter device URI" - - #: ../glade/NewPrinterWindow.glade.h:5 --msgid "HP Printer (HPLIP) via network" --msgstr "HP Printer (HPLIP) via network" -- --#: ../glade/NewPrinterWindow.glade.h:6 - msgid "IPP Printer" - msgstr "IPP Printer" - --#: ../glade/NewPrinterWindow.glade.h:7 -+#: ../glade/NewPrinterWindow.glade.h:6 - msgid "License Terms" - msgstr "Licence Terms" - --#: ../glade/NewPrinterWindow.glade.h:8 -+#: ../glade/NewPrinterWindow.glade.h:7 - msgid "Location of the LPD network printer" - msgstr "Location of the LPD network printer" - --#: ../glade/NewPrinterWindow.glade.h:9 -+#: ../glade/NewPrinterWindow.glade.h:8 - msgid "Location of the network printer" - msgstr "Location of the network printer" - --#: ../glade/NewPrinterWindow.glade.h:10 -+#: ../glade/NewPrinterWindow.glade.h:9 - msgid "Location (optional)" - msgstr "Location (optional)" - --#: ../glade/NewPrinterWindow.glade.h:11 -+#: ../glade/NewPrinterWindow.glade.h:10 - msgid "Network Printer" - msgstr "Network Printer" - --#: ../glade/NewPrinterWindow.glade.h:12 -+#: ../glade/NewPrinterWindow.glade.h:11 - msgid "Note" - msgstr "Note" - --#: ../glade/NewPrinterWindow.glade.h:13 -+#: ../glade/NewPrinterWindow.glade.h:12 - msgid "Output Quality" - msgstr "Output Quality" - --#: ../glade/NewPrinterWindow.glade.h:14 -+#: ../glade/NewPrinterWindow.glade.h:13 - msgid "Printer Name" - msgstr "Printer Name" - --#: ../glade/NewPrinterWindow.glade.h:15 -+#: ../glade/NewPrinterWindow.glade.h:14 - msgid "SMB Printer" - msgstr "SMB Printer" - --#: ../glade/NewPrinterWindow.glade.h:16 -+#: ../glade/NewPrinterWindow.glade.h:15 - msgid "Select Driver" - msgstr "Select Driver" - --#: ../glade/NewPrinterWindow.glade.h:17 -+#: ../glade/NewPrinterWindow.glade.h:16 - msgid "Settings of the serial port" - msgstr "Settings of the serial port" - --#: ../glade/NewPrinterWindow.glade.h:18 -+#: ../glade/NewPrinterWindow.glade.h:17 - msgid "smb://[workgroup/]server[:port]/printer" - msgstr "smb://[workgroup/]server[:port]/printer" - --#: ../glade/NewPrinterWindow.glade.h:19 -+#: ../glade/NewPrinterWindow.glade.h:18 - msgid "Choose Class Members" - msgstr "Choose Class Members" - --#: ../glade/NewPrinterWindow.glade.h:20 -+#: ../glade/NewPrinterWindow.glade.h:19 - msgid "Choose Driver" - msgstr "Choose Driver" - --#: ../glade/NewPrinterWindow.glade.h:21 -+#: ../glade/NewPrinterWindow.glade.h:20 - msgid "Describe Printer" - msgstr "Describe Printer" - --#: ../glade/NewPrinterWindow.glade.h:22 -+#: ../glade/NewPrinterWindow.glade.h:21 - msgid "Existing Settings" - msgstr "Existing Settings" - --#: ../glade/NewPrinterWindow.glade.h:23 -+#: ../glade/NewPrinterWindow.glade.h:22 - msgid "Installable Options" - msgstr "Installable Options" - --#: ../glade/NewPrinterWindow.glade.h:24 -+#: ../glade/NewPrinterWindow.glade.h:23 - msgid "Select Device" - msgstr "Select Device" - --#: ../glade/NewPrinterWindow.glade.h:25 -+#: ../glade/NewPrinterWindow.glade.h:24 - msgid "Baud Rate" - msgstr "Baud Rate" - --#: ../glade/NewPrinterWindow.glade.h:26 -+#: ../glade/NewPrinterWindow.glade.h:25 - msgid "Browse..." - msgstr "Browse..." - --#: ../glade/NewPrinterWindow.glade.h:27 -+#: ../glade/NewPrinterWindow.glade.h:26 - msgid "Comments..." - msgstr "Comments..." - --#: ../glade/NewPrinterWindow.glade.h:28 -+#: ../glade/NewPrinterWindow.glade.h:27 - msgid "Connection" - msgstr "Connection" - --#: ../glade/NewPrinterWindow.glade.h:29 -+#: ../glade/NewPrinterWindow.glade.h:28 - msgid "Data Bits" - msgstr "Data Bits" - --#: ../glade/NewPrinterWindow.glade.h:30 -+#: ../glade/NewPrinterWindow.glade.h:29 - msgid "" - "Default\n" - "1200\n" -@@ -1764,7 +1761,7 @@ msgstr "" - "57600\n" - "115200" - --#: ../glade/NewPrinterWindow.glade.h:39 -+#: ../glade/NewPrinterWindow.glade.h:38 - msgid "" - "Default\n" - "8\n" -@@ -1774,7 +1771,7 @@ msgstr "" - "8\n" - "7" - --#: ../glade/NewPrinterWindow.glade.h:42 -+#: ../glade/NewPrinterWindow.glade.h:41 - msgid "" - "Default\n" - "None\n" -@@ -1786,7 +1783,7 @@ msgstr "" - "Odd\n" - "Even" - --#: ../glade/NewPrinterWindow.glade.h:46 -+#: ../glade/NewPrinterWindow.glade.h:45 - msgid "" - "Default\n" - "None\n" -@@ -1800,114 +1797,114 @@ msgstr "" - "RTS/CTS (Hardware)\n" - "DTR/DSR (Hardware)" - --#: ../glade/NewPrinterWindow.glade.h:51 -+#: ../glade/NewPrinterWindow.glade.h:50 - #: ../glade/PrinterPropertiesDialog.glade.h:35 - msgid "Description:" - msgstr "Description:" - --#: ../glade/NewPrinterWindow.glade.h:52 ../troubleshoot/DeviceListed.py:40 -+#: ../glade/NewPrinterWindow.glade.h:51 ../troubleshoot/DeviceListed.py:40 - msgid "Device URI" - msgstr "Device URI" - --#: ../glade/NewPrinterWindow.glade.h:53 -+#: ../glade/NewPrinterWindow.glade.h:52 - msgid "Device description." - msgstr "Device description." - --#: ../glade/NewPrinterWindow.glade.h:54 -+#: ../glade/NewPrinterWindow.glade.h:53 - msgid "DirectJet" - msgstr "DirectJet" - --#: ../glade/NewPrinterWindow.glade.h:56 -+#: ../glade/NewPrinterWindow.glade.h:55 - msgid "Driver details" - msgstr "Driver details" - --#: ../glade/NewPrinterWindow.glade.h:57 -+#: ../glade/NewPrinterWindow.glade.h:56 - msgid "Empty" - msgstr "Empty" - --#: ../glade/NewPrinterWindow.glade.h:58 -+#: ../glade/NewPrinterWindow.glade.h:57 - msgid "Find _Queue..." - msgstr "Find _Queue..." - --#: ../glade/NewPrinterWindow.glade.h:59 -+#: ../glade/NewPrinterWindow.glade.h:58 - msgid "Flow Control" - msgstr "Flow Control" - --#: ../glade/NewPrinterWindow.glade.h:60 -+#: ../glade/NewPrinterWindow.glade.h:59 - msgid "" - "For the printer you have selected there are drivers available for download." - msgstr "" - "For the printer you have selected there are drivers available for download." - --#: ../glade/NewPrinterWindow.glade.h:61 -+#: ../glade/NewPrinterWindow.glade.h:60 - msgid "Free software" - msgstr "Free software" - --#: ../glade/NewPrinterWindow.glade.h:62 -+#: ../glade/NewPrinterWindow.glade.h:61 - msgid "Graphics:" - msgstr "Graphics:" - --#: ../glade/NewPrinterWindow.glade.h:63 -+#: ../glade/NewPrinterWindow.glade.h:62 - msgid "Host:" - msgstr "Host:" - --#: ../glade/NewPrinterWindow.glade.h:64 -+#: ../glade/NewPrinterWindow.glade.h:63 - msgid "Human-readable description such as \"HP LaserJet with Duplexer\"" - msgstr "Human-readable description such as \"HP LaserJet with Duplexer\"" - --#: ../glade/NewPrinterWindow.glade.h:65 -+#: ../glade/NewPrinterWindow.glade.h:64 - msgid "Human-readable location such as \"Lab 1\"" - msgstr "Human-readable location such as \"Lab 1\"" - --#: ../glade/NewPrinterWindow.glade.h:67 -+#: ../glade/NewPrinterWindow.glade.h:66 - msgid "LPD" - msgstr "LPD" - --#: ../glade/NewPrinterWindow.glade.h:68 -+#: ../glade/NewPrinterWindow.glade.h:67 - msgid "License:" - msgstr "Licence:" - --#: ../glade/NewPrinterWindow.glade.h:69 -+#: ../glade/NewPrinterWindow.glade.h:68 - msgid "Line art:" - msgstr "Line art:" - --#: ../glade/NewPrinterWindow.glade.h:70 -+#: ../glade/NewPrinterWindow.glade.h:69 - msgid "Local Driver" - msgstr "Local Driver" - --#: ../glade/NewPrinterWindow.glade.h:71 -+#: ../glade/NewPrinterWindow.glade.h:70 - msgid "Make and model:" - msgstr "Make and model:" - --#: ../glade/NewPrinterWindow.glade.h:72 -+#: ../glade/NewPrinterWindow.glade.h:71 - msgid "Manufacturer" - msgstr "Manufacturer" - --#: ../glade/NewPrinterWindow.glade.h:73 -+#: ../glade/NewPrinterWindow.glade.h:72 - msgid "Network" - msgstr "Network" - --#: ../glade/NewPrinterWindow.glade.h:75 -+#: ../glade/NewPrinterWindow.glade.h:74 - msgid "No, I do not accept this license" - msgstr "No, I do not accept this licence" - --#: ../glade/NewPrinterWindow.glade.h:76 -+#: ../glade/NewPrinterWindow.glade.h:75 - msgid "Parity" - msgstr "Parity" - --#: ../glade/NewPrinterWindow.glade.h:78 -+#: ../glade/NewPrinterWindow.glade.h:77 - msgid "Patented algorithms" - msgstr "Patented algorithms" - --#: ../glade/NewPrinterWindow.glade.h:79 -+#: ../glade/NewPrinterWindow.glade.h:78 - msgid "Photo:" - msgstr "Photo:" - --#: ../glade/NewPrinterWindow.glade.h:80 -+#: ../glade/NewPrinterWindow.glade.h:79 - msgid "Port number:" - msgstr "Port number:" - --#: ../glade/NewPrinterWindow.glade.h:81 -+#: ../glade/NewPrinterWindow.glade.h:80 - msgid "" - "PostScript Printer Description (PPD) files can often be found on the driver " - "disk that comes with the printer. For PostScript printers they are often " -@@ -1917,75 +1914,75 @@ msgstr "" - "disk that comes with the printer. For PostScript printers they are often " - "part of the Windows® driver." - --#: ../glade/NewPrinterWindow.glade.h:82 -+#: ../glade/NewPrinterWindow.glade.h:81 - msgid "Printer model:" - msgstr "Printer model:" - --#: ../glade/NewPrinterWindow.glade.h:83 -+#: ../glade/NewPrinterWindow.glade.h:82 - msgid "Probe" - msgstr "Probe" - --#: ../glade/NewPrinterWindow.glade.h:84 -+#: ../glade/NewPrinterWindow.glade.h:83 - msgid "Prompt user if authentication is required" - msgstr "Prompt user if authentication is required" - --#: ../glade/NewPrinterWindow.glade.h:85 -+#: ../glade/NewPrinterWindow.glade.h:84 - msgid "Provide PPD file" - msgstr "Provide PPD file" - --#: ../glade/NewPrinterWindow.glade.h:86 -+#: ../glade/NewPrinterWindow.glade.h:85 - msgid "Queue:" - msgstr "Queue:" - --#: ../glade/NewPrinterWindow.glade.h:87 -+#: ../glade/NewPrinterWindow.glade.h:86 - msgid "SCSI" - msgstr "SCSI" - --#: ../glade/NewPrinterWindow.glade.h:88 -+#: ../glade/NewPrinterWindow.glade.h:87 - msgid "SMB" - msgstr "SMB" - --#: ../glade/NewPrinterWindow.glade.h:89 -+#: ../glade/NewPrinterWindow.glade.h:88 - msgid "Search for a printer driver to download" - msgstr "Search for a printer driver to download" - --#: ../glade/NewPrinterWindow.glade.h:90 -+#: ../glade/NewPrinterWindow.glade.h:89 - msgid "Searching..." - msgstr "Searching..." - --#: ../glade/NewPrinterWindow.glade.h:91 -+#: ../glade/NewPrinterWindow.glade.h:90 - msgid "Select A File" - msgstr "Select A File" - --#: ../glade/NewPrinterWindow.glade.h:92 -+#: ../glade/NewPrinterWindow.glade.h:91 - msgid "Select printer from database" - msgstr "Select printer from database" - --#: ../glade/NewPrinterWindow.glade.h:93 -+#: ../glade/NewPrinterWindow.glade.h:92 - msgid "Serial" - msgstr "Serial" - --#: ../glade/NewPrinterWindow.glade.h:94 -+#: ../glade/NewPrinterWindow.glade.h:93 - msgid "Set authentication details now" - msgstr "Set authentication details now" - --#: ../glade/NewPrinterWindow.glade.h:95 -+#: ../glade/NewPrinterWindow.glade.h:94 - msgid "Short name for this printer such as \"laserjet\"" - msgstr "Short name for this printer such as \"laserjet\"" - --#: ../glade/NewPrinterWindow.glade.h:96 -+#: ../glade/NewPrinterWindow.glade.h:95 - msgid "Supplier:" - msgstr "Supplier:" - --#: ../glade/NewPrinterWindow.glade.h:97 -+#: ../glade/NewPrinterWindow.glade.h:96 - msgid "Support:" - msgstr "Support:" - --#: ../glade/NewPrinterWindow.glade.h:98 -+#: ../glade/NewPrinterWindow.glade.h:97 - msgid "Text:" - msgstr "Text:" - --#: ../glade/NewPrinterWindow.glade.h:99 -+#: ../glade/NewPrinterWindow.glade.h:98 - msgid "" - "The foomatic printer database contains various manufacturer provided " - "PostScript Printer Description (PPD) files and also can generate PPD files " -@@ -1999,7 +1996,7 @@ msgstr "" - "provided PPD files provide better access to the specific features of the " - "printer." - --#: ../glade/NewPrinterWindow.glade.h:100 -+#: ../glade/NewPrinterWindow.glade.h:99 - msgid "" - "These drivers do not come from your operating system supplier and will not " - "be covered by their commercial support. See the support and license terms " -@@ -2009,7 +2006,7 @@ msgstr "" - "be covered by their commercial support. See the support and licence terms " - "of the driver's supplier." - --#: ../glade/NewPrinterWindow.glade.h:101 -+#: ../glade/NewPrinterWindow.glade.h:100 - msgid "" - "This driver supports additional hardware that may be installed in the " - "printer." -@@ -2017,7 +2014,7 @@ msgstr "" - "This driver supports additional hardware that may be installed in the " - "printer." - --#: ../glade/NewPrinterWindow.glade.h:102 -+#: ../glade/NewPrinterWindow.glade.h:101 - msgid "" - "This is done by assuming that options with the same name do have the same " - "meaning. Settings of options that are not present in the new PPD will be " -@@ -2027,7 +2024,7 @@ msgstr "" - "meaning. Settings of options that are not present in the new PPD will be " - "lost and options only present in the new PPD will be set to default." - --#: ../glade/NewPrinterWindow.glade.h:103 -+#: ../glade/NewPrinterWindow.glade.h:102 - msgid "" - "This way all current option settings will be lost. The default settings of " - "the new PPD will be used. " -@@ -2035,19 +2032,19 @@ msgstr "" - "This way all current option settings will be lost. The default settings of " - "the new PPD will be used. " - --#: ../glade/NewPrinterWindow.glade.h:104 -+#: ../glade/NewPrinterWindow.glade.h:103 - msgid "Try to copy the option settings over from the old PPD. " - msgstr "Try to copy the option settings over from the old PPD. " - --#: ../glade/NewPrinterWindow.glade.h:105 -+#: ../glade/NewPrinterWindow.glade.h:104 - msgid "URI:" - msgstr "URI:" - --#: ../glade/NewPrinterWindow.glade.h:107 -+#: ../glade/NewPrinterWindow.glade.h:106 - msgid "Use the new PPD (Postscript Printer Description) as is." - msgstr "Use the new PPD (Postscript Printer Description) as is." - --#: ../glade/NewPrinterWindow.glade.h:109 -+#: ../glade/NewPrinterWindow.glade.h:108 - msgid "" - "With this choice no driver download will be performed. In the next steps a " - "locally installed driver will be selected." -@@ -2055,24 +2052,24 @@ msgstr "" - "With this choice no driver download will be performed. In the next steps a " - "locally installed driver will be selected." - --#: ../glade/NewPrinterWindow.glade.h:110 -+#: ../glade/NewPrinterWindow.glade.h:109 - msgid "Yes, I accept this license" - msgstr "Yes, I accept this licence" - --#: ../glade/NewPrinterWindow.glade.h:111 -+#: ../glade/NewPrinterWindow.glade.h:110 - msgid "_Search" - msgstr "_Search" - --#: ../glade/NewPrinterWindow.glade.h:112 -+#: ../glade/NewPrinterWindow.glade.h:111 - msgid "_Verify..." - msgstr "_Verify..." - --#: ../glade/NewPrinterWindow.glade.h:113 -+#: ../glade/NewPrinterWindow.glade.h:112 - #: ../glade/PrinterPropertiesDialog.glade.h:128 - msgid "move left" - msgstr "move left" - --#: ../glade/NewPrinterWindow.glade.h:114 -+#: ../glade/NewPrinterWindow.glade.h:113 - #: ../glade/PrinterPropertiesDialog.glade.h:129 - msgid "move right" - msgstr "move right" -@@ -2987,7 +2984,7 @@ msgstr "Did the marked print jobs print - msgid "Remember to load paper of type '%s' into the printer first." - msgstr "Remember to load paper of type '%s' into the printer first." - --#: ../troubleshoot/PrintTestPage.py:399 -+#: ../troubleshoot/PrintTestPage.py:416 - msgid "Error submitting test page" - msgstr "Error submitting test page" - -@@ -3188,6 +3185,15 @@ msgstr "Manage Print Jobs" - msgid "Select default printer" - msgstr "Select default printer" - -+#~ msgid "HP Printer (HPLIP)" -+#~ msgstr "HP Printer (HPLIP)" -+ -+#~ msgid "HPLIP cannot find the device." -+#~ msgstr "HPLIP cannot find the device." -+ -+#~ msgid "HP Printer (HPLIP) via network" -+#~ msgstr "HP Printer (HPLIP) via network" -+ - #~ msgid "Not Found" - #~ msgstr "Not Found" - -diff -up system-config-printer-1.1.5/po/es.po.git-1.1.x system-config-printer-1.1.5/po/es.po ---- system-config-printer-1.1.5/po/es.po.git-1.1.x 2009-03-03 22:21:46.000000000 +0000 -+++ system-config-printer-1.1.5/po/es.po 2009-03-10 17:43:31.000000000 +0000 -@@ -16,15 +16,13 @@ msgid "" - msgstr "" - "Project-Id-Version: system-config-printer.trunk.es\n" - "Report-Msgid-Bugs-To: https://bugzilla.redhat.com/bugzilla\n" --"POT-Creation-Date: 2009-03-02 23:22+0000\n" --"PO-Revision-Date: 2009-02-21 02:49-0300\n" -+"POT-Creation-Date: 2009-03-10 16:51+0000\n" -+"PO-Revision-Date: 2009-03-04 00:41-0600\n" - "Last-Translator: Domingo Becker \n" - "Language-Team: Spanish \n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" --"X-Poedit-Language: Spanish\n" --"X-Generator: KBabel 1.11.4\n" - - # ../gui/printconf-gui.glade.str:82 - # ../gui/printconf-gui.glade.str:88 -@@ -66,11 +64,11 @@ msgstr "" - msgid "Enter IP address" - msgstr "Ingrese la dirección IP" - --#: ../authconn.py:35 ../glade/NewPrinterWindow.glade.h:108 -+#: ../authconn.py:35 ../glade/NewPrinterWindow.glade.h:107 - msgid "Username:" - msgstr "Nombre de Usuario:" - --#: ../authconn.py:36 ../glade/NewPrinterWindow.glade.h:77 -+#: ../authconn.py:36 ../glade/NewPrinterWindow.glade.h:76 - msgid "Password:" - msgstr "Contraseña:" - -@@ -78,7 +76,7 @@ msgstr "Contraseña:" - msgid "Domain:" - msgstr "Dominio:" - --#: ../authconn.py:46 -+#: ../authconn.py:46 ../authconn.py:409 - msgid "Authentication" - msgstr "Autenticación" - -@@ -86,48 +84,57 @@ msgstr "Autenticación" - msgid "Remember password" - msgstr "Recordar contraseña" - --#: ../authconn.py:211 ../authconn.py:232 -+#: ../authconn.py:208 -+#, python-format -+msgid "Unauthorized request (%s)" -+msgstr "" -+ -+#: ../authconn.py:209 -+msgid "You are not authorized to carry out therequested action." -+msgstr "" -+ -+#: ../authconn.py:212 ../authconn.py:233 - msgid "Operation canceled" - msgstr "Operación cancelada" - --#: ../authconn.py:253 -+#: ../authconn.py:250 - #, python-format - msgid "CUPS server error (%s)" - msgstr "Error del servidor CUPS (%s)" - -+#: ../authconn.py:252 ../errordialogs.py:56 ../errordialogs.py:70 -+msgid "CUPS server error" -+msgstr "Error del servidor CUPS" -+ - # ../util/printconf_gui.py:1721 ../util/printconf_gui.py:1738 - # ../util/printconf_gui.py:1755 ../util/printconf_tui.py:1715 - # ../util/printconf_gui.py:1812 ../util/printconf_gui.py:1829 - # ../util/printconf_gui.py:1863 ../util/printconf_tui.py:1805 - # ../util/printconf_gui.py:1942 ../util/printconf_tui.py:1834 --#: ../authconn.py:255 ../errordialogs.py:57 --#: ../troubleshoot/PrintTestPage.py:400 -+#: ../authconn.py:261 ../errordialogs.py:57 -+#: ../troubleshoot/PrintTestPage.py:417 - #, python-format - msgid "There was an error during the CUPS operation: '%s'." - msgstr "Se ha producido un error en CUPS durante la operación: '%s'." - --#: ../authconn.py:258 -+#: ../authconn.py:264 - msgid "Retry" - msgstr "Reintentar" - --#: ../authconn.py:379 ../authconn.py:381 ../errordialogs.py:65 ../pysmb.py:75 -+#: ../authconn.py:385 ../authconn.py:387 ../errordialogs.py:65 ../pysmb.py:75 - #: ../pysmb.py:77 - msgid "Not authorized" - msgstr "No autorizado" - --#: ../authconn.py:382 ../pysmb.py:78 -+#: ../authconn.py:388 ../pysmb.py:78 - msgid "The password may be incorrect." - msgstr "La contraseña puede ser incorrecta." - --#: ../authconn.py:400 -+#: ../authconn.py:407 - #, python-format - msgid "Authentication (%s)" - msgstr "Autenticación (%s)" - --#: ../errordialogs.py:56 ../errordialogs.py:70 --msgid "CUPS server error" --msgstr "Error del servidor CUPS" -- - #: ../errordialogs.py:66 - msgid "" - "The password may be incorrect, or the server may be configured to deny " -@@ -156,7 +163,7 @@ msgstr "Se requiere actualización" - msgid "Server error" - msgstr "Error del servidor" - --#: ../errordialogs.py:82 ../system-config-printer.py:1219 -+#: ../errordialogs.py:82 ../system-config-printer.py:1223 - msgid "Not connected" - msgstr "No conectado" - -@@ -178,7 +185,7 @@ msgstr "_Nuevo Grupo" - msgid "_New Group from Selection" - msgstr "_Nuevo Grupo desde la Selección" - --#: ../GroupsPane.py:98 ../system-config-printer.py:393 -+#: ../GroupsPane.py:98 ../system-config-printer.py:397 - msgid "_Rename" - msgstr "_Renombrar" - -@@ -258,7 +265,7 @@ msgstr "Documento" - # ../gui/printconf-gui.glade.str:153 - # ../gui/printconf-gui.glade.str:153 - #: ../jobviewer.py:212 ../my-default-printer.py:153 --#: ../system-config-printer.py:366 ../system-config-printer.py:1367 -+#: ../system-config-printer.py:370 ../system-config-printer.py:1371 - #: ../troubleshoot/PrintTestPage.py:84 - msgid "Printer" - msgstr "Impresora" -@@ -295,8 +302,8 @@ msgstr "Estado de impresión del documen - - #: ../jobviewer.py:386 ../jobviewer.py:451 ../jobviewer.py:452 - #: ../jobviewer.py:492 ../jobviewer.py:600 ../jobviewer.py:727 --#: ../jobviewer.py:1196 ../jobviewer.py:1222 ../system-config-printer.py:2546 --#: ../glade/NewPrinterWindow.glade.h:106 -+#: ../jobviewer.py:1196 ../jobviewer.py:1222 ../system-config-printer.py:2556 -+#: ../glade/NewPrinterWindow.glade.h:105 - #: ../troubleshoot/ChooseNetworkPrinter.py:101 - #: ../troubleshoot/ChooseNetworkPrinter.py:102 - #: ../troubleshoot/ChooseNetworkPrinter.py:105 -@@ -387,12 +394,12 @@ msgstr "Mantenido hasta el fin de semana - msgid "Pending" - msgstr "Pendiente" - --#: ../jobviewer.py:591 ../system-config-printer.py:186 -+#: ../jobviewer.py:591 ../system-config-printer.py:190 - #: ../troubleshoot/PrintTestPage.py:43 - msgid "Processing" - msgstr "Procesando" - --#: ../jobviewer.py:592 ../system-config-printer.py:188 -+#: ../jobviewer.py:592 ../system-config-printer.py:192 - #: ../troubleshoot/PrintTestPage.py:44 - msgid "Stopped" - msgstr "Detenido" -@@ -509,8 +516,8 @@ msgstr "_Usar los valores por defecto de - msgid "_Set Default" - msgstr "_Poner por defecto" - --#: ../my-default-printer.py:158 ../system-config-printer.py:423 --#: ../system-config-printer.py:3660 ../troubleshoot/ChooseNetworkPrinter.py:37 -+#: ../my-default-printer.py:158 ../system-config-printer.py:427 -+#: ../system-config-printer.py:3675 ../troubleshoot/ChooseNetworkPrinter.py:37 - #: ../troubleshoot/ChoosePrinter.py:38 - msgid "Location" - msgstr "Ubicación" -@@ -542,7 +549,7 @@ msgstr "Comportamiento predeterminado" - msgid "Authenticated" - msgstr "Autenticado" - --#: ../ppdippstr.py:50 ../system-config-printer.py:6259 -+#: ../ppdippstr.py:50 ../system-config-printer.py:6207 - msgid "None" - msgstr "Ninguno" - -@@ -761,119 +768,119 @@ msgstr "600 ppp, color, cartucho negro + - msgid "1200 dpi, photo, black + color cartridge, photo paper" - msgstr "1200 ppp, foto, cartucho negro + color, papel para fotos" - --#: ../system-config-printer.py:127 -+#: ../system-config-printer.py:131 - msgid "To do this, select System->Administration->Firewall from the main menu." - msgstr "" - "Para hacer esto, seleccione Sistema->Administración->Cortafuego desde el " - "menú principal." - --#: ../system-config-printer.py:185 -+#: ../system-config-printer.py:189 - msgid "Idle" - msgstr "Listo" - --#: ../system-config-printer.py:187 -+#: ../system-config-printer.py:191 - msgid "Busy" - msgstr "Ocupado" - --#: ../system-config-printer.py:372 ../system-config-printer.py:1373 -+#: ../system-config-printer.py:376 ../system-config-printer.py:1377 - msgid "Class" - msgstr "Clase" - --#: ../system-config-printer.py:399 -+#: ../system-config-printer.py:403 - msgid "Set As De_fault" - msgstr "_Poner como Predeterminada" - --#: ../system-config-printer.py:403 -+#: ../system-config-printer.py:407 - msgid "_Create class" - msgstr "_Crear Clase" - - # ../gui/printconf-gui.glade.str:141 - # ../gui/printconf-gui.glade.str:153 - # ../gui/printconf-gui.glade.str:153 --#: ../system-config-printer.py:405 -+#: ../system-config-printer.py:409 - msgid "View Print _Queue" - msgstr "Ver la Cola de _Impresión" - --#: ../system-config-printer.py:407 -+#: ../system-config-printer.py:411 - msgid "_Add to Group" - msgstr "_Añadir al Grupo" - --#: ../system-config-printer.py:409 -+#: ../system-config-printer.py:413 - msgid "Save Results as _Group" - msgstr "Guardar Resultados como _Grupo" - --#: ../system-config-printer.py:411 -+#: ../system-config-printer.py:415 - msgid "Save Filter as _Search Group" - msgstr "Guarda el Filtro como Grupo de Büsqueda" - --#: ../system-config-printer.py:415 -+#: ../system-config-printer.py:419 - msgid "E_nabled" - msgstr "_Activado" - --#: ../system-config-printer.py:417 -+#: ../system-config-printer.py:421 - msgid "_Shared" - msgstr "_Compartido" - --#: ../system-config-printer.py:421 ../troubleshoot/ChooseNetworkPrinter.py:35 -+#: ../system-config-printer.py:425 ../troubleshoot/ChooseNetworkPrinter.py:35 - #: ../troubleshoot/ChoosePrinter.py:36 ../troubleshoot/DeviceListed.py:36 - msgid "Name" - msgstr "Nombre" - --#: ../system-config-printer.py:422 -+#: ../system-config-printer.py:426 - msgid "Description" - msgstr "Descripción" - --#: ../system-config-printer.py:424 -+#: ../system-config-printer.py:428 - msgid "Manufacturer / Model" - msgstr "Fabricante / Modelo" - - #. Printer state reasons list --#: ../system-config-printer.py:499 -+#: ../system-config-printer.py:503 - msgid "Message" - msgstr "Mensaje" - --#: ../system-config-printer.py:534 -+#: ../system-config-printer.py:538 - msgid "Problems?" - msgstr "¿Problemas?" - --#: ../system-config-printer.py:637 ../system-config-printer.py:639 -+#: ../system-config-printer.py:641 ../system-config-printer.py:643 - msgid "Members of this class" - msgstr "Miembros de esta clase" - --#: ../system-config-printer.py:638 ../system-config-printer.py:640 -+#: ../system-config-printer.py:642 ../system-config-printer.py:644 - msgid "Others" - msgstr "Otros" - - # ../gui/printconf-gui.glade.str:76 ../util/printconf_tui.py:361 - # ../gui/printconf-gui.glade.str:82 ../util/printconf_tui.py:383 - # ../gui/printconf-gui.glade.str:82 ../util/printconf_tui.py:376 --#: ../system-config-printer.py:641 -+#: ../system-config-printer.py:645 - msgid "Devices" - msgstr "Dispositivos" - --#: ../system-config-printer.py:642 -+#: ../system-config-printer.py:646 - msgid "Connections" - msgstr "Conexiones" - --#: ../system-config-printer.py:643 -+#: ../system-config-printer.py:647 - msgid "Makes" - msgstr "Marcas" - - # ../gui/printconf-gui.glade.str:129 - # ../gui/printconf-gui.glade.str:141 - # ../gui/printconf-gui.glade.str:141 --#: ../system-config-printer.py:644 -+#: ../system-config-printer.py:648 - msgid "Models" - msgstr "Modelos" - - # ../gui/printconf-gui.glade.str:79 - # ../gui/printconf-gui.glade.str:85 ../util/printconf_tui.py:812 - # ../gui/printconf-gui.glade.str:85 ../util/printconf_tui.py:805 --#: ../system-config-printer.py:645 -+#: ../system-config-printer.py:649 - msgid "Drivers" - msgstr "Controladores" - --#: ../system-config-printer.py:646 ../glade/NewPrinterWindow.glade.h:55 -+#: ../system-config-printer.py:650 ../glade/NewPrinterWindow.glade.h:54 - msgid "Downloadable Drivers" - msgstr "Controladores Descargables" - -@@ -883,21 +890,21 @@ msgstr "Controladores Descargables" - # ../util/printconf_tui.py:1198 ../util/printconf_tui.py:1257 - # ../util/printconf_tui.py:533 ../util/printconf_tui.py:591 - # ../util/printconf_tui.py:1195 ../util/printconf_tui.py:1254 --#: ../system-config-printer.py:647 -+#: ../system-config-printer.py:651 - msgid "Users" - msgstr "Usuarios" - --#: ../system-config-printer.py:682 -+#: ../system-config-printer.py:686 - msgid "Automatic rotation" - msgstr "Rotación automática" - --#: ../system-config-printer.py:989 -+#: ../system-config-printer.py:993 - #, python-format - msgid "Printer Properties - '%s' on %s" - msgstr "Propiedades de la Impresora - '%s' en %s" - - #. The Conflict button was pressed. --#: ../system-config-printer.py:996 -+#: ../system-config-printer.py:1000 - msgid "" - "There are conflicting options.\n" - "Changes can only be applied after\n" -@@ -907,45 +914,45 @@ msgstr "" - "cambios podrán ser aplicados\n" - "después que sean resueltos." - --#: ../system-config-printer.py:1214 -+#: ../system-config-printer.py:1218 - #, python-format - msgid "Printer configuration - %s" - msgstr "Configuracion de la impresora - %s" - --#: ../system-config-printer.py:1217 -+#: ../system-config-printer.py:1221 - #, python-format - msgid "Connected to %s" - msgstr "Conectado a %s" - - #. Update our copy of the printer's settings. --#: ../system-config-printer.py:1257 ../system-config-printer.py:2042 -+#: ../system-config-printer.py:1261 ../system-config-printer.py:2046 - msgid "obtaining queue details" - msgstr "obteniendo los detalles de la cola" - --#: ../system-config-printer.py:1295 -+#: ../system-config-printer.py:1299 - msgid "Remove from Group" - msgstr "Eliminar del Grupo" - - # ../gui/printconf-gui.glade.str:141 - # ../gui/printconf-gui.glade.str:153 - # ../gui/printconf-gui.glade.str:153 --#: ../system-config-printer.py:1361 -+#: ../system-config-printer.py:1365 - msgid "Network printer (discovered)" - msgstr "Impresora de red (descubierta)" - --#: ../system-config-printer.py:1364 -+#: ../system-config-printer.py:1368 - msgid "Network class (discovered)" - msgstr "Clase de red (descubierta)" - --#: ../system-config-printer.py:1370 ../system-config-printer.py:5524 --#: ../system-config-printer.py:5594 ../system-config-printer.py:5596 -+#: ../system-config-printer.py:1374 ../system-config-printer.py:5519 -+#: ../system-config-printer.py:5589 ../system-config-printer.py:5591 - msgid "Fax" - msgstr "Fax" - - # ../gui/printconf-gui.glade.str:141 - # ../gui/printconf-gui.glade.str:153 - # ../gui/printconf-gui.glade.str:153 --#: ../system-config-printer.py:1376 ../system-config-printer.py:1382 -+#: ../system-config-printer.py:1380 ../system-config-printer.py:1386 - #: ../troubleshoot/LocalOrRemote.py:30 - msgid "Network printer" - msgstr "Impresora de red" -@@ -953,41 +960,41 @@ msgstr "Impresora de red" - # ../gui/printconf-gui.glade.str:141 - # ../gui/printconf-gui.glade.str:153 - # ../gui/printconf-gui.glade.str:153 --#: ../system-config-printer.py:1379 -+#: ../system-config-printer.py:1383 - msgid "Network print share" - msgstr "Impresora de red compartida" - --#: ../system-config-printer.py:1508 ../glade/ConnectingDialog.glade.h:2 -+#: ../system-config-printer.py:1512 ../glade/ConnectingDialog.glade.h:2 - #, no-c-format, python-format - msgid "Opening connection to %s" - msgstr "Abriendo conexión a %s" - --#: ../system-config-printer.py:1887 -+#: ../system-config-printer.py:1891 - msgid "Installable Options" - msgstr "Opciones Instalables" - --#: ../system-config-printer.py:1888 -+#: ../system-config-printer.py:1892 - #: ../glade/PrinterPropertiesDialog.glade.h:109 - msgid "Printer Options" - msgstr "Opciones de la Impresora" - --#: ../system-config-printer.py:1924 -+#: ../system-config-printer.py:1928 - #, python-format - msgid "modifying class %s" - msgstr "modificando clase %s" - --#: ../system-config-printer.py:1926 ../system-config-printer.py:3019 --#: ../system-config-printer.py:3044 ../system-config-printer.py:6547 --#: ../system-config-printer.py:6559 ../system-config-printer.py:6581 -+#: ../system-config-printer.py:1930 ../system-config-printer.py:3037 -+#: ../system-config-printer.py:3062 ../system-config-printer.py:6495 -+#: ../system-config-printer.py:6507 ../system-config-printer.py:6529 - #, python-format - msgid "modifying printer %s" - msgstr "modificando impresora %s" - --#: ../system-config-printer.py:1941 -+#: ../system-config-printer.py:1945 - msgid "This will delete this class!" - msgstr "Esto eliminará esta clase!" - --#: ../system-config-printer.py:1942 -+#: ../system-config-printer.py:1946 - msgid "Proceed anyway?" - msgstr "¿Proceder de todos modos?" - -@@ -998,45 +1005,45 @@ msgstr "¿Proceder de todos modos?" - #. but we have never fetched the server settings to see whether - #. the server is publishing shared printers. Fetch the settings - #. now so that we can update the "not published" label if necessary. --#: ../system-config-printer.py:2030 ../system-config-printer.py:3203 -+#: ../system-config-printer.py:2034 ../system-config-printer.py:3221 - msgid "fetching server settings" - msgstr "obteniendo la configuración del servidor" - --#: ../system-config-printer.py:2100 -+#: ../system-config-printer.py:2104 - msgid "Set Default Printer" - msgstr "Poner como Impresora Predeterminada" - --#: ../system-config-printer.py:2102 -+#: ../system-config-printer.py:2106 - msgid "Do you want to set this as the system-wide default printer?" - msgstr "" - "¿Quiere poner a ésta como la impresora predeterminada para todo el sistema?" - --#: ../system-config-printer.py:2104 -+#: ../system-config-printer.py:2108 - msgid "Set as the _system-wide default printer" - msgstr "Poner como la impresora predeterminada para todo el _sistema" - --#: ../system-config-printer.py:2106 -+#: ../system-config-printer.py:2110 - msgid "_Clear my personal default setting" - msgstr "Limpiar mi configuración predeterminada personal" - --#: ../system-config-printer.py:2107 -+#: ../system-config-printer.py:2111 - msgid "Set as my _personal default printer" - msgstr "Poner como mi impresora _predeterminada" - --#: ../system-config-printer.py:2112 -+#: ../system-config-printer.py:2116 - msgid "setting default printer" - msgstr "poniendo la impresora predeterminada" - --#: ../system-config-printer.py:2169 -+#: ../system-config-printer.py:2173 - msgid "printing test page" - msgstr "imprimiendo página de prueba" - --#: ../system-config-printer.py:2182 ../system-config-printer.py:2217 --#: ../system-config-printer.py:5418 -+#: ../system-config-printer.py:2186 ../system-config-printer.py:2221 -+#: ../system-config-printer.py:5413 - msgid "Not possible" - msgstr "Imposible" - --#: ../system-config-printer.py:2183 ../system-config-printer.py:2218 -+#: ../system-config-printer.py:2187 ../system-config-printer.py:2222 - msgid "" - "The remote server did not accept the print job, most likely because the " - "printer is not shared." -@@ -1044,20 +1051,20 @@ msgstr "" - "El servidor remoto no aceptó el trabajo de impresión, muy probablemente " - "debido a que la impresora no es compartida." - --#: ../system-config-printer.py:2195 ../system-config-printer.py:2210 -+#: ../system-config-printer.py:2199 ../system-config-printer.py:2214 - msgid "Submitted" - msgstr "Enviado" - --#: ../system-config-printer.py:2196 -+#: ../system-config-printer.py:2200 - #, python-format - msgid "Test page submitted as job %d" - msgstr "Página de prueba enviada como trabajo %d" - --#: ../system-config-printer.py:2203 -+#: ../system-config-printer.py:2207 - msgid "sending maintenance command" - msgstr "enviando comando de mantenimiento" - --#: ../system-config-printer.py:2211 -+#: ../system-config-printer.py:2215 - #, python-format - msgid "Maintenance command submitted as job %d" - msgstr "Comando de mantenimiento enviado como trabajo %d" -@@ -1065,7 +1072,7 @@ msgstr "Comando de mantenimiento enviado - #. The underlying cupsGetPPD2() function returned NULL without - #. setting an IPP error, so it'll be something like a failed - #. connection. --#: ../system-config-printer.py:2285 ../system-config-printer.py:2381 -+#: ../system-config-printer.py:2289 ../system-config-printer.py:2385 - msgid "Error" - msgstr "Error" - -@@ -1074,41 +1081,41 @@ msgstr "Error" - # ../util/printconf_gui.py:1812 ../util/printconf_gui.py:1829 - # ../util/printconf_gui.py:1863 ../util/printconf_tui.py:1805 - # ../util/printconf_gui.py:1942 ../util/printconf_tui.py:1834 --#: ../system-config-printer.py:2286 -+#: ../system-config-printer.py:2290 - msgid "There was a problem connecting to the CUPS server." - msgstr "Hubo un problema al conectar al servidor CUPS." - --#: ../system-config-printer.py:2382 -+#: ../system-config-printer.py:2386 - #, python-format - msgid "Option '%s' has value '%s' and cannot be edited." - msgstr "La opción '%s' tiene el valor '%s' y no se puede editar." - --#: ../system-config-printer.py:2466 -+#: ../system-config-printer.py:2476 - msgid "Marker levels are not reported for this printer." - msgstr "Los niveles de tinta no son informados por esta impresora." - --#: ../system-config-printer.py:2763 -+#: ../system-config-printer.py:2773 - msgid "Cannot Rename" - msgstr "No se puede Renombrar" - --#: ../system-config-printer.py:2764 -+#: ../system-config-printer.py:2774 - msgid "There are queued jobs." - msgstr "Hay trabajos encolados." - --#: ../system-config-printer.py:2822 -+#: ../system-config-printer.py:2840 - msgid "renaming printer" - msgstr "renombrando la impresora" - - #. for classes make sure all members - #. will get added --#: ../system-config-printer.py:2907 -+#: ../system-config-printer.py:2925 - msgid "copying printer" - msgstr "copiando impresora" - - # ../util/printconf_tui.py:1740 - # ../util/printconf_tui.py:1830 - # ../util/printconf_tui.py:1859 --#: ../system-config-printer.py:2971 -+#: ../system-config-printer.py:2989 - #, python-format - msgid "Really delete class '%s'?" - msgstr "¿Realmente eliminar la clase '%s'? " -@@ -1116,7 +1123,7 @@ msgstr "¿Realmente eliminar la clase '% - # ../util/printconf_tui.py:1740 - # ../util/printconf_tui.py:1830 - # ../util/printconf_tui.py:1859 --#: ../system-config-printer.py:2973 -+#: ../system-config-printer.py:2991 - #, python-format - msgid "Really delete printer '%s'?" - msgstr "¿Realmente eliminar la impresora '%s'? " -@@ -1124,20 +1131,20 @@ msgstr "¿Realmente eliminar la impresor - # ../util/printconf_tui.py:1740 - # ../util/printconf_tui.py:1830 - # ../util/printconf_tui.py:1859 --#: ../system-config-printer.py:2975 -+#: ../system-config-printer.py:2993 - msgid "Really delete selected destinations?" - msgstr "¿Realmente eliminar los destinos seleccionados? " - --#: ../system-config-printer.py:2996 -+#: ../system-config-printer.py:3014 - #, python-format - msgid "deleting printer %s" - msgstr "eliminando impresora %s" - --#: ../system-config-printer.py:3070 -+#: ../system-config-printer.py:3088 - msgid "Publish Shared Printers" - msgstr "Publicar Impresoras Compartidas" - --#: ../system-config-printer.py:3071 -+#: ../system-config-printer.py:3089 - msgid "" - "Shared printers are not available to other people unless the 'Publish shared " - "printers' option is enabled in the server settings." -@@ -1148,7 +1155,7 @@ msgstr "" - # ../gui/printconf-gui.glade.str:82 - # ../gui/printconf-gui.glade.str:88 - # ../gui/printconf-gui.glade.str:88 --#: ../system-config-printer.py:3264 -+#: ../system-config-printer.py:3282 - msgid "modifying server settings" - msgstr "modificando la configuración del servidor" - -@@ -1158,11 +1165,11 @@ msgstr "modificando la configuración de - #. be unblocked. Unfortunately, this is not yet possible - #. (bug #440469). However, we can display a dialog to suggest - #. that now might be a good time to review the firewall settings. --#: ../system-config-printer.py:3289 -+#: ../system-config-printer.py:3307 - msgid "Review Firewall" - msgstr "Revisar el Cortafuegos" - --#: ../system-config-printer.py:3290 -+#: ../system-config-printer.py:3308 - msgid "" - "You may need to adjust the firewall to allow network printing to this " - "computer." -@@ -1170,25 +1177,25 @@ msgstr "" - "Puede necesitar ajustar el cortafuejo para permitir la impresión en esta " - "computadora." - --#: ../system-config-printer.py:3623 -+#: ../system-config-printer.py:3638 - msgid "Browsing not available (pysmbc not installed)" - msgstr "Navegación no disponible (no se instaló pysmbc)" - - #. SMB list columns --#: ../system-config-printer.py:3629 -+#: ../system-config-printer.py:3644 - msgid "Share" - msgstr "Compartir" - --#: ../system-config-printer.py:3635 -+#: ../system-config-printer.py:3650 - msgid "Comment" - msgstr "Comentario" - - #. IPP list columns --#: ../system-config-printer.py:3654 -+#: ../system-config-printer.py:3669 - msgid "Queue" - msgstr "Cola" - --#: ../system-config-printer.py:3668 -+#: ../system-config-printer.py:3683 - msgid "" - "PostScript Printer Description files (*.ppd, *.PPD, *.ppd.gz, *.PPD.gz, *." - "PPD.GZ)" -@@ -1196,74 +1203,74 @@ msgstr "" - "Archivo de Descripción de Impresora PostScript (*.ppd, *.PPD, *.ppd.gz, *." - "PPD.gz, *.PPD.GZ)" - --#: ../system-config-printer.py:3677 -+#: ../system-config-printer.py:3692 - msgid "All files (*)" - msgstr "Todos los archivos (*)" - --#: ../system-config-printer.py:3713 ../system-config-printer.py:5970 --#: ../system-config-printer.py:6008 ../applet.py:124 -+#: ../system-config-printer.py:3728 ../system-config-printer.py:5918 -+#: ../system-config-printer.py:5956 ../applet.py:124 - msgid "Search" - msgstr "Buscar" - - # ../gui/printconf-gui.glade.str:141 - # ../gui/printconf-gui.glade.str:153 - # ../gui/printconf-gui.glade.str:153 --#: ../system-config-printer.py:3736 ../system-config-printer.py:3760 --#: ../glade/NewPrinterWindow.glade.h:74 -+#: ../system-config-printer.py:3751 ../system-config-printer.py:3775 -+#: ../glade/NewPrinterWindow.glade.h:73 - msgid "New Printer" - msgstr "Impresora Nueva" - --#: ../system-config-printer.py:3747 -+#: ../system-config-printer.py:3762 - msgid "New Class" - msgstr "Clase nueva" - --#: ../system-config-printer.py:3752 -+#: ../system-config-printer.py:3767 - msgid "Change Device URI" - msgstr "Cambiar el URI del Dispositivo" - - # ../util/printconf_tui.py:1002 - # ../util/printconf_tui.py:1053 - # ../util/printconf_tui.py:1050 --#: ../system-config-printer.py:3758 -+#: ../system-config-printer.py:3773 - msgid "Change Driver" - msgstr "Cambiar controlador" - --#: ../system-config-printer.py:3927 ../system-config-printer.py:3993 --#: ../system-config-printer.py:4289 ../system-config-printer.py:4487 --#: ../system-config-printer.py:5772 ../system-config-printer.py:5995 -+#: ../system-config-printer.py:3942 ../system-config-printer.py:4008 -+#: ../system-config-printer.py:4304 ../system-config-printer.py:4502 -+#: ../system-config-printer.py:5762 ../system-config-printer.py:5943 - msgid "Searching" - msgstr "Buscando" - --#: ../system-config-printer.py:3928 -+#: ../system-config-printer.py:3943 - msgid "Searching for downloadable drivers" - msgstr "Buscando controladores descargables" - --#: ../system-config-printer.py:3994 ../system-config-printer.py:4290 -+#: ../system-config-printer.py:4009 ../system-config-printer.py:4305 - msgid "Searching for drivers" - msgstr "Buscando controladores" - - # ../gui/printconf-gui.glade.str:141 - # ../gui/printconf-gui.glade.str:153 - # ../gui/printconf-gui.glade.str:153 --#: ../system-config-printer.py:4488 ../system-config-printer.py:5773 -+#: ../system-config-printer.py:4503 ../system-config-printer.py:5763 - msgid "Searching for printers" - msgstr "Buscando impresoras" - - # ../gui/printconf-gui.glade.str:82 - # ../gui/printconf-gui.glade.str:88 - # ../gui/printconf-gui.glade.str:88 --#: ../system-config-printer.py:4497 -+#: ../system-config-printer.py:4512 - msgid "fetching device list" - msgstr "obteniendo la lista de dispositivos" - - #. Tell the user why he needs the plugin --#: ../system-config-printer.py:4579 -+#: ../system-config-printer.py:4594 - msgid "For this printer a proprietary driver plugin from HP is available.\n" - msgstr "" - "Para esta impresora hay disponible un complemento controlador propietario de " - "HP.\n" - --#: ../system-config-printer.py:4582 -+#: ../system-config-printer.py:4597 - msgid "" - "The installation of the plugin is required for your printer to work.\n" - "\n" -@@ -1271,7 +1278,7 @@ msgstr "" - "La instalación del complemento se requiere para que su impresora funcione.\n" - "\n" - --#: ../system-config-printer.py:4585 -+#: ../system-config-printer.py:4600 - msgid "" - "Installing the plugin is optional, it completes or enhances the " - "functionality\n" -@@ -1284,90 +1291,86 @@ msgstr "" - "funcionarán.\n" - "\n" - --#: ../system-config-printer.py:4589 -+#: ../system-config-printer.py:4604 - msgid "The plugin provides the following features:\n" - msgstr "El complemento provee las siguientes características:\n" - --#: ../system-config-printer.py:4592 -+#: ../system-config-printer.py:4607 - msgid " - Printing support\n" - msgstr " - Soporte de impresión\n" - --#: ../system-config-printer.py:4595 -+#: ../system-config-printer.py:4610 - msgid " - Faster printing\n" - msgstr " - Impresión más rápida\n" - --#: ../system-config-printer.py:4598 -+#: ../system-config-printer.py:4613 - msgid " - Better printout quality\n" - msgstr " - Mejor calidad de salida\n" - --#: ../system-config-printer.py:4601 -+#: ../system-config-printer.py:4616 - msgid " - Extra printing features\n" - msgstr " - Características de impresión extras\n" - --#: ../system-config-printer.py:4604 -+#: ../system-config-printer.py:4619 - msgid " - Scanning support\n" - msgstr " - Soporte para escaneo\n" - --#: ../system-config-printer.py:4607 -+#: ../system-config-printer.py:4622 - msgid " - Faster scanning\n" - msgstr " - Escaneo más rápido\n" - --#: ../system-config-printer.py:4610 -+#: ../system-config-printer.py:4625 - msgid " - Better scanning image quality\n" - msgstr " - Mejor calidad de imágen escaneada\n" - --#: ../system-config-printer.py:4613 -+#: ../system-config-printer.py:4628 - msgid " - Faxing support\n" - msgstr " - Soporte para fax\n" - --#: ../system-config-printer.py:4616 -+#: ../system-config-printer.py:4631 - msgid " - Extra fax features\n" - msgstr " - Características de fax extras\n" - --#: ../system-config-printer.py:4619 -+#: ../system-config-printer.py:4634 - msgid " - Better Input/Output support\n" - msgstr " - Mejor soporte de Entrada/Salida\n" - --#: ../system-config-printer.py:4622 -+#: ../system-config-printer.py:4637 - msgid " - Extra user interface features\n" - msgstr " - Características extras de la interfase con el usuario\n" - --#: ../system-config-printer.py:4625 -+#: ../system-config-printer.py:4640 - msgid " - Other extra features\n" - msgstr " - Otras características extras\n" - --#: ../system-config-printer.py:4630 -+#: ../system-config-printer.py:4645 - msgid "Install plugin" - msgstr "Instalar complemento" - - # ../gui/printconf-gui.glade.str:141 - # ../gui/printconf-gui.glade.str:153 - # ../gui/printconf-gui.glade.str:153 --#: ../system-config-printer.py:4631 -+#: ../system-config-printer.py:4646 - msgid "Do not set up printer" - msgstr "No configurar la impresora" - --#: ../system-config-printer.py:4632 -+#: ../system-config-printer.py:4647 - msgid "Set up without plugin" - msgstr "Configurar sin el complemento" - --#: ../system-config-printer.py:4634 ../troubleshoot/PrintTestPage.py:118 -+#: ../system-config-printer.py:4649 ../troubleshoot/PrintTestPage.py:118 - msgid "Yes" - msgstr "Si" - --#: ../system-config-printer.py:4635 ../troubleshoot/PrintTestPage.py:119 -+#: ../system-config-printer.py:4650 ../troubleshoot/PrintTestPage.py:119 - msgid "No" - msgstr "No" - --#: ../system-config-printer.py:4809 ../system-config-printer.py:4813 -+#: ../system-config-printer.py:4824 ../system-config-printer.py:4828 - msgid " (Current)" - msgstr "(Actual)" - --#: ../system-config-printer.py:4845 --msgid "HP Printer (HPLIP)" --msgstr "Impresora HP (HPLIP)" -- --#: ../system-config-printer.py:4886 -+#: ../system-config-printer.py:4881 - msgid "Other" - msgstr "Otro" - -@@ -1377,29 +1380,29 @@ msgstr "Otro" - #. device-info - #. PhysicalDevice obj - #. Separator? --#: ../system-config-printer.py:4902 -+#: ../system-config-printer.py:4897 - msgid "Network Printer" - msgstr "Impresora de red" - - # ../gui/printconf-gui.glade.str:141 - # ../gui/printconf-gui.glade.str:153 - # ../gui/printconf-gui.glade.str:153 --#: ../system-config-printer.py:4906 -+#: ../system-config-printer.py:4901 - msgid "Find Network Printer" - msgstr "Buscar Impresora de Red" - --#: ../system-config-printer.py:4979 ../system-config-printer.py:5376 -+#: ../system-config-printer.py:4974 ../system-config-printer.py:5371 - msgid "Scanning..." - msgstr "Examinando..." - - # ../gui/printconf-gui.glade.str:141 - # ../gui/printconf-gui.glade.str:153 - # ../gui/printconf-gui.glade.str:153 --#: ../system-config-printer.py:5034 ../system-config-printer.py:5798 -+#: ../system-config-printer.py:5029 - msgid "No Print Shares" - msgstr "No hay Impresoras Compartidas" - --#: ../system-config-printer.py:5035 -+#: ../system-config-printer.py:5030 - msgid "" - "There were no print shares found. Please check that the Samba service is " - "marked as trusted in your firewall configuration." -@@ -1408,32 +1411,32 @@ msgstr "" - "servicio Samba está marcado como confiable en la configuración de su " - "cortafuego." - --#: ../system-config-printer.py:5296 ../system-config-printer.py:5357 -+#: ../system-config-printer.py:5291 ../system-config-printer.py:5352 - msgid "Print Share Verified" - msgstr "Impresora Compartida Verificada" - --#: ../system-config-printer.py:5297 ../system-config-printer.py:5358 -+#: ../system-config-printer.py:5292 ../system-config-printer.py:5353 - msgid "This print share is accessible." - msgstr "Esta impresora compartida es accesible." - --#: ../system-config-printer.py:5302 ../system-config-printer.py:5362 -+#: ../system-config-printer.py:5297 ../system-config-printer.py:5357 - msgid "This print share is not accessible." - msgstr "Esta impresora compartida no es accesible." - --#: ../system-config-printer.py:5305 -+#: ../system-config-printer.py:5300 - msgid "Print Share Inaccessible" - msgstr "Impresora Compartida Inaccesible" - --#: ../system-config-printer.py:5361 -+#: ../system-config-printer.py:5356 - msgid "Inaccessible" - msgstr "Inaccesible" - --#: ../system-config-printer.py:5419 -+#: ../system-config-printer.py:5414 - #, python-format - msgid "It is not possible to obtain a list of queues from '%s'." - msgstr "No es posible obtener una lista de las colas desde '%s'." - --#: ../system-config-printer.py:5421 -+#: ../system-config-printer.py:5416 - msgid "" - "Obtaining a list of queues is a CUPS extension to IPP. Network printers do " - "not support it." -@@ -1441,69 +1444,68 @@ msgstr "" - "La obtención de la lista de colas es una extensión de CUPS a IPP. Las " - "impresoras de red no dan este soporte." - --#: ../system-config-printer.py:5424 -+#: ../system-config-printer.py:5419 - msgid "No queues" - msgstr "No hay colas" - --#: ../system-config-printer.py:5425 -+#: ../system-config-printer.py:5420 - msgid "There are no queues available." - msgstr "No hay colas disponibles." - --#: ../system-config-printer.py:5516 -+#: ../system-config-printer.py:5511 - msgid "Parallel Port" - msgstr "Puerto Paralelo" - --#: ../system-config-printer.py:5518 -+#: ../system-config-printer.py:5513 - msgid "Serial Port" - msgstr "Puerto Serie" - --#: ../system-config-printer.py:5520 -+#: ../system-config-printer.py:5515 - msgid "USB" - msgstr "USB" - --#: ../system-config-printer.py:5522 ../system-config-printer.py:5525 -+#: ../system-config-printer.py:5517 ../system-config-printer.py:5520 - msgid "HP Linux Imaging and Printing (HPLIP)" - msgstr "Imagen e Impresión en Linux de HP (HPLIP)" - --#: ../system-config-printer.py:5527 -+#: ../system-config-printer.py:5522 - msgid "Hardware Abstraction Layer (HAL)" - msgstr "Capa de Abstracción de Hardware (HAL)" - --#: ../system-config-printer.py:5529 -+#: ../system-config-printer.py:5524 - msgid "AppSocket/HP JetDirect" - msgstr "AppSocket/HP JetDirect" - --#: ../system-config-printer.py:5538 -+#: ../system-config-printer.py:5533 - #, python-format - msgid "LPD/LPR queue '%s'" --msgstr "" -+msgstr "Cola '%s' LPD/LPR" - --#: ../system-config-printer.py:5540 --#, fuzzy -+#: ../system-config-printer.py:5535 - msgid "LPD/LPR queue" --msgstr "LPD/LPR" -+msgstr "Cola LPD/LPR" - --#: ../system-config-printer.py:5543 -+#: ../system-config-printer.py:5538 - msgid "Windows Printer via SAMBA" - msgstr "Impresora de Windows vía SAMBA" - --#: ../system-config-printer.py:5545 ../glade/NewPrinterWindow.glade.h:66 -+#: ../system-config-printer.py:5540 ../glade/NewPrinterWindow.glade.h:65 - msgid "IPP" - msgstr "IPP" - --#: ../system-config-printer.py:5547 -+#: ../system-config-printer.py:5542 - msgid "HTTP" - msgstr "HTTP" - --#: ../system-config-printer.py:5632 -+#: ../system-config-printer.py:5624 - msgid "A printer connected to the parallel port." - msgstr "Una impresora conectada al puerto paralelo." - --#: ../system-config-printer.py:5634 -+#: ../system-config-printer.py:5626 - msgid "A printer connected to a USB port." - msgstr "Una impresora conectada a un puerto USB." - --#: ../system-config-printer.py:5636 -+#: ../system-config-printer.py:5628 - msgid "" - "HPLIP software driving a printer, or the printer function of a multi-" - "function device." -@@ -1511,58 +1513,54 @@ msgstr "" - "Software HPLIP manejando una impresora, o la impresora de un dispositivo " - "multifunción." - --#: ../system-config-printer.py:5639 -+#: ../system-config-printer.py:5631 - msgid "" - "HPLIP software driving a fax machine, or the fax function of a multi-" - "function device." - msgstr "" - "Software HPLIP manejando un fax, o el fax de un dispositivo multifunción." - --#: ../system-config-printer.py:5642 -+#: ../system-config-printer.py:5634 - msgid "Local printer detected by the Hardware Abstraction Layer (HAL)." - msgstr "" - "Impresora local detectada por la Capa de Abstracción de Hardware (HAL)." - --#: ../system-config-printer.py:5799 --msgid "HPLIP cannot find the device." --msgstr "HPLIP no pueden encontrar el dispositivo." -- --#: ../system-config-printer.py:5881 -+#: ../system-config-printer.py:5831 - msgid "No printer was found at that address." - msgstr "No se encontró ninguna impresora en esa dirección." - --#: ../system-config-printer.py:6020 -+#: ../system-config-printer.py:5968 - msgid "-- Select from search results --" - msgstr "-- Seleccione desde el resultado de la búsqueda --" - --#: ../system-config-printer.py:6022 -+#: ../system-config-printer.py:5970 - msgid "-- No matches found --" - msgstr "-- No se encontraron coincidencias --" - --#: ../system-config-printer.py:6203 -+#: ../system-config-printer.py:6151 - msgid " (recommended)" - msgstr "(recomendado)" - --#: ../system-config-printer.py:6217 -+#: ../system-config-printer.py:6165 - msgid "This PPD is generated by foomatic." - msgstr "Este PPD es generado por foomatic." - - # ../gui/printconf-gui.glade.str:141 - # ../gui/printconf-gui.glade.str:153 - # ../gui/printconf-gui.glade.str:153 --#: ../system-config-printer.py:6241 -+#: ../system-config-printer.py:6189 - msgid "OpenPrinting" - msgstr "OpenPrinting" - --#: ../system-config-printer.py:6252 -+#: ../system-config-printer.py:6200 - msgid "Distributable" - msgstr "Distribuible" - --#: ../system-config-printer.py:6293 -+#: ../system-config-printer.py:6241 - msgid ", " - msgstr ", " - --#: ../system-config-printer.py:6298 -+#: ../system-config-printer.py:6246 - #, python-format - msgid "" - "\n" -@@ -1571,20 +1569,20 @@ msgstr "" - "\n" - "(%s)" - --#: ../system-config-printer.py:6303 -+#: ../system-config-printer.py:6251 - msgid "No support contacts known" - msgstr "No hay contactos de soporte conocidos" - --#: ../system-config-printer.py:6307 ../system-config-printer.py:6320 -+#: ../system-config-printer.py:6255 ../system-config-printer.py:6268 - msgid "Not specified." - msgstr "No especificado." - - #. Foomatic database problem of some sort. --#: ../system-config-printer.py:6360 -+#: ../system-config-printer.py:6308 - msgid "Database error" - msgstr "Error en la base de datos" - --#: ../system-config-printer.py:6361 -+#: ../system-config-printer.py:6309 - #, python-format - msgid "The '%s' driver cannot be used with printer '%s %s'." - msgstr "El controlador '%s' no se puede usar con la impresora '%s %s'." -@@ -1592,60 +1590,60 @@ msgstr "El controlador '%s' no se puede - #. This printer references some XML that is not - #. installed by default. Point the user at the - #. package they need to install. --#: ../system-config-printer.py:6371 -+#: ../system-config-printer.py:6319 - #, python-format - msgid "You will need to install the '%s' package in order to use this driver." - msgstr "Necesitará instalar el paquete '%s' para poder usar este controlador." - - #. This error came from trying to open the PPD file. --#: ../system-config-printer.py:6378 -+#: ../system-config-printer.py:6326 - msgid "PPD error" - msgstr "Error del PPD" - --#: ../system-config-printer.py:6380 -+#: ../system-config-printer.py:6328 - msgid "Failed to read PPD file. Possible reason follows:" - msgstr "Falló la lectura del archivo PPD. Las posibles razones son:" - - #. Failed to get PPD downloaded from OpenPrinting XXX --#: ../system-config-printer.py:6397 -+#: ../system-config-printer.py:6345 - msgid "Downloadable drivers" - msgstr "Controladores descargables" - --#: ../system-config-printer.py:6398 -+#: ../system-config-printer.py:6346 - msgid "Failed to download PPD." - msgstr "Falló al descargar el PPD." - --#: ../system-config-printer.py:6405 -+#: ../system-config-printer.py:6353 - msgid "fetching PPD" - msgstr "obteniendo el PPD" - --#: ../system-config-printer.py:6434 ../system-config-printer.py:6472 -+#: ../system-config-printer.py:6382 ../system-config-printer.py:6420 - msgid "No Installable Options" - msgstr "No hay Opciones Instalables" - --#: ../system-config-printer.py:6520 -+#: ../system-config-printer.py:6468 - #, python-format - msgid "adding printer %s" - msgstr "agregando impresora %s" - --#: ../system-config-printer.py:6669 -+#: ../system-config-printer.py:6617 - msgid "Would you like to print a test page?" - msgstr "¿Desea imprimir una página de prueba?" - --#: ../system-config-printer.py:6722 -+#: ../system-config-printer.py:6670 - msgid "Install driver" - msgstr "Instalar controlador" - --#: ../system-config-printer.py:6723 ../troubleshoot/CheckPPDSanity.py:131 -+#: ../system-config-printer.py:6671 ../troubleshoot/CheckPPDSanity.py:131 - #, python-format - msgid "Printer '%s' requires the %s package but it is not currently installed." - msgstr "La impresora '%s' necesita el paquete %s que no está instalado." - --#: ../system-config-printer.py:6739 -+#: ../system-config-printer.py:6687 - msgid "Missing driver" - msgstr "Falta el controlador" - --#: ../system-config-printer.py:6740 -+#: ../system-config-printer.py:6688 - #, python-format - msgid "" - "Printer '%s' requires the '%s' program but it is not currently installed. " -@@ -1781,110 +1779,106 @@ msgid "Enter device URI" - msgstr "Ingrese el URI del Dispositivo" - - #: ../glade/NewPrinterWindow.glade.h:5 --msgid "HP Printer (HPLIP) via network" --msgstr "Impresora HP (HPLIP) vía red" -- --#: ../glade/NewPrinterWindow.glade.h:6 - msgid "IPP Printer" - msgstr "Impresora IPP" - --#: ../glade/NewPrinterWindow.glade.h:7 -+#: ../glade/NewPrinterWindow.glade.h:6 - msgid "License Terms" - msgstr "Términos de la Licencia" - --#: ../glade/NewPrinterWindow.glade.h:8 -+#: ../glade/NewPrinterWindow.glade.h:7 - msgid "Location of the LPD network printer" - msgstr "Ubicación de la impresora de red LPD" - --#: ../glade/NewPrinterWindow.glade.h:9 -+#: ../glade/NewPrinterWindow.glade.h:8 - msgid "Location of the network printer" - msgstr "Ubicación de la impresora de red" - --#: ../glade/NewPrinterWindow.glade.h:10 -+#: ../glade/NewPrinterWindow.glade.h:9 - msgid "Location (optional)" - msgstr "Ubicación (opcional)" - - # ../gui/printconf-gui.glade.str:141 - # ../gui/printconf-gui.glade.str:153 - # ../gui/printconf-gui.glade.str:153 --#: ../glade/NewPrinterWindow.glade.h:11 -+#: ../glade/NewPrinterWindow.glade.h:10 - msgid "Network Printer" - msgstr "Impresora de red" - --#: ../glade/NewPrinterWindow.glade.h:12 -+#: ../glade/NewPrinterWindow.glade.h:11 - msgid "Note" - msgstr "Nota" - --#: ../glade/NewPrinterWindow.glade.h:13 -+#: ../glade/NewPrinterWindow.glade.h:12 - msgid "Output Quality" - msgstr "Calidad de salida" - --#: ../glade/NewPrinterWindow.glade.h:14 -+#: ../glade/NewPrinterWindow.glade.h:13 - msgid "Printer Name" - msgstr "Nombre de Impresora" - --#: ../glade/NewPrinterWindow.glade.h:15 -+#: ../glade/NewPrinterWindow.glade.h:14 - msgid "SMB Printer" - msgstr "Impresora SMB" - --#: ../glade/NewPrinterWindow.glade.h:16 -+#: ../glade/NewPrinterWindow.glade.h:15 - msgid "Select Driver" - msgstr "Seleccione Controlador" - --#: ../glade/NewPrinterWindow.glade.h:17 -+#: ../glade/NewPrinterWindow.glade.h:16 - msgid "Settings of the serial port" - msgstr "Configuración del puerto serie" - --#: ../glade/NewPrinterWindow.glade.h:18 -+#: ../glade/NewPrinterWindow.glade.h:17 - msgid "smb://[workgroup/]server[:port]/printer" - msgstr "smb://[grupo_trabajo/]servidor[:puerto]/impresora" - --#: ../glade/NewPrinterWindow.glade.h:19 -+#: ../glade/NewPrinterWindow.glade.h:18 - msgid "Choose Class Members" - msgstr "" - "Elija los Miembros de la Clase" - --#: ../glade/NewPrinterWindow.glade.h:20 -+#: ../glade/NewPrinterWindow.glade.h:19 - msgid "Choose Driver" - msgstr "Elija un Controlador" - --#: ../glade/NewPrinterWindow.glade.h:21 -+#: ../glade/NewPrinterWindow.glade.h:20 - msgid "Describe Printer" - msgstr "Describa la Impresora" - --#: ../glade/NewPrinterWindow.glade.h:22 -+#: ../glade/NewPrinterWindow.glade.h:21 - msgid "Existing Settings" - msgstr "Configuración Existente" - --#: ../glade/NewPrinterWindow.glade.h:23 -+#: ../glade/NewPrinterWindow.glade.h:22 - msgid "Installable Options" - msgstr "Opciones Instalables" - --#: ../glade/NewPrinterWindow.glade.h:24 -+#: ../glade/NewPrinterWindow.glade.h:23 - msgid "Select Device" - msgstr "Seleccione Dispositivo" - --#: ../glade/NewPrinterWindow.glade.h:25 -+#: ../glade/NewPrinterWindow.glade.h:24 - msgid "Baud Rate" - msgstr "Tasa de Baudios" - --#: ../glade/NewPrinterWindow.glade.h:26 -+#: ../glade/NewPrinterWindow.glade.h:25 - msgid "Browse..." - msgstr "Navegar..." - --#: ../glade/NewPrinterWindow.glade.h:27 -+#: ../glade/NewPrinterWindow.glade.h:26 - msgid "Comments..." - msgstr "Comentarios..." - --#: ../glade/NewPrinterWindow.glade.h:28 -+#: ../glade/NewPrinterWindow.glade.h:27 - msgid "Connection" - msgstr "Conexión" - --#: ../glade/NewPrinterWindow.glade.h:29 -+#: ../glade/NewPrinterWindow.glade.h:28 - msgid "Data Bits" - msgstr "Bits de Datos" - --#: ../glade/NewPrinterWindow.glade.h:30 -+#: ../glade/NewPrinterWindow.glade.h:29 - msgid "" - "Default\n" - "1200\n" -@@ -1906,7 +1900,7 @@ msgstr "" - "57600\n" - "115200" - --#: ../glade/NewPrinterWindow.glade.h:39 -+#: ../glade/NewPrinterWindow.glade.h:38 - msgid "" - "Default\n" - "8\n" -@@ -1916,7 +1910,7 @@ msgstr "" - "8\n" - "7" - --#: ../glade/NewPrinterWindow.glade.h:42 -+#: ../glade/NewPrinterWindow.glade.h:41 - msgid "" - "Default\n" - "None\n" -@@ -1928,7 +1922,7 @@ msgstr "" - "Impar\n" - "Par" - --#: ../glade/NewPrinterWindow.glade.h:46 -+#: ../glade/NewPrinterWindow.glade.h:45 - msgid "" - "Default\n" - "None\n" -@@ -1942,124 +1936,124 @@ msgstr "" - "RTS/CTS (Hardware)\n" - "DTR/DSR (Hardware)" - --#: ../glade/NewPrinterWindow.glade.h:51 -+#: ../glade/NewPrinterWindow.glade.h:50 - #: ../glade/PrinterPropertiesDialog.glade.h:35 - msgid "Description:" - msgstr "Descripción:" - --#: ../glade/NewPrinterWindow.glade.h:52 ../troubleshoot/DeviceListed.py:40 -+#: ../glade/NewPrinterWindow.glade.h:51 ../troubleshoot/DeviceListed.py:40 - msgid "Device URI" - msgstr "URI del Dispositivo" - --#: ../glade/NewPrinterWindow.glade.h:53 -+#: ../glade/NewPrinterWindow.glade.h:52 - msgid "Device description." - msgstr "Descripción del dispositivo." - --#: ../glade/NewPrinterWindow.glade.h:54 -+#: ../glade/NewPrinterWindow.glade.h:53 - msgid "DirectJet" - msgstr "DirectJet" - - # ../gui/printconf-gui.glade.str:79 - # ../gui/printconf-gui.glade.str:85 ../util/printconf_tui.py:812 - # ../gui/printconf-gui.glade.str:85 ../util/printconf_tui.py:805 --#: ../glade/NewPrinterWindow.glade.h:56 -+#: ../glade/NewPrinterWindow.glade.h:55 - msgid "Driver details" - msgstr "Detalles del controlador" - --#: ../glade/NewPrinterWindow.glade.h:57 -+#: ../glade/NewPrinterWindow.glade.h:56 - msgid "Empty" - msgstr "Vacío" - --#: ../glade/NewPrinterWindow.glade.h:58 -+#: ../glade/NewPrinterWindow.glade.h:57 - msgid "Find _Queue..." - msgstr "Encontrar _Cola..." - --#: ../glade/NewPrinterWindow.glade.h:59 -+#: ../glade/NewPrinterWindow.glade.h:58 - msgid "Flow Control" - msgstr "Control de Flujo" - --#: ../glade/NewPrinterWindow.glade.h:60 -+#: ../glade/NewPrinterWindow.glade.h:59 - msgid "" - "For the printer you have selected there are drivers available for download." - msgstr "" - "Para la impresora que ha seleccionado hay controladores disponibles para " - "descargar." - --#: ../glade/NewPrinterWindow.glade.h:61 -+#: ../glade/NewPrinterWindow.glade.h:60 - msgid "Free software" - msgstr "Software libre" - --#: ../glade/NewPrinterWindow.glade.h:62 -+#: ../glade/NewPrinterWindow.glade.h:61 - msgid "Graphics:" - msgstr "Gráficos:" - --#: ../glade/NewPrinterWindow.glade.h:63 -+#: ../glade/NewPrinterWindow.glade.h:62 - msgid "Host:" - msgstr "Equipo:" - --#: ../glade/NewPrinterWindow.glade.h:64 -+#: ../glade/NewPrinterWindow.glade.h:63 - msgid "Human-readable description such as \"HP LaserJet with Duplexer\"" - msgstr "Descripción legible para humanos tal como \"HP LaserJet con Duplex\"" - --#: ../glade/NewPrinterWindow.glade.h:65 -+#: ../glade/NewPrinterWindow.glade.h:64 - msgid "Human-readable location such as \"Lab 1\"" - msgstr "Ubicación legible al humano tal como \"Lab 1\"" - --#: ../glade/NewPrinterWindow.glade.h:67 -+#: ../glade/NewPrinterWindow.glade.h:66 - msgid "LPD" - msgstr "LPD" - --#: ../glade/NewPrinterWindow.glade.h:68 -+#: ../glade/NewPrinterWindow.glade.h:67 - msgid "License:" - msgstr "Licencia:" - --#: ../glade/NewPrinterWindow.glade.h:69 -+#: ../glade/NewPrinterWindow.glade.h:68 - msgid "Line art:" - msgstr "Arte lineal:" - - # ../gui/printconf-gui.glade.str:126 - # ../gui/printconf-gui.glade.str:138 - # ../gui/printconf-gui.glade.str:138 --#: ../glade/NewPrinterWindow.glade.h:70 -+#: ../glade/NewPrinterWindow.glade.h:69 - msgid "Local Driver" - msgstr "Controlador Local" - --#: ../glade/NewPrinterWindow.glade.h:71 -+#: ../glade/NewPrinterWindow.glade.h:70 - msgid "Make and model:" - msgstr "Marca y modelo:" - --#: ../glade/NewPrinterWindow.glade.h:72 -+#: ../glade/NewPrinterWindow.glade.h:71 - msgid "Manufacturer" - msgstr "Fabricante" - - # ../gui/printconf-gui.glade.str:141 - # ../gui/printconf-gui.glade.str:153 - # ../gui/printconf-gui.glade.str:153 --#: ../glade/NewPrinterWindow.glade.h:73 -+#: ../glade/NewPrinterWindow.glade.h:72 - msgid "Network" - msgstr "Red" - --#: ../glade/NewPrinterWindow.glade.h:75 -+#: ../glade/NewPrinterWindow.glade.h:74 - msgid "No, I do not accept this license" - msgstr "No, no acepto esta licencia" - --#: ../glade/NewPrinterWindow.glade.h:76 -+#: ../glade/NewPrinterWindow.glade.h:75 - msgid "Parity" - msgstr "Paridad" - --#: ../glade/NewPrinterWindow.glade.h:78 -+#: ../glade/NewPrinterWindow.glade.h:77 - msgid "Patented algorithms" - msgstr "Algoritmos patentados" - --#: ../glade/NewPrinterWindow.glade.h:79 -+#: ../glade/NewPrinterWindow.glade.h:78 - msgid "Photo:" - msgstr "Foto:" - --#: ../glade/NewPrinterWindow.glade.h:80 -+#: ../glade/NewPrinterWindow.glade.h:79 - msgid "Port number:" - msgstr "Número de puerto:" - --#: ../glade/NewPrinterWindow.glade.h:81 -+#: ../glade/NewPrinterWindow.glade.h:80 - msgid "" - "PostScript Printer Description (PPD) files can often be found on the driver " - "disk that comes with the printer. For PostScript printers they are often " -@@ -2073,76 +2067,75 @@ msgstr "" - # ../gui/printconf-gui.glade.str:141 - # ../gui/printconf-gui.glade.str:153 - # ../gui/printconf-gui.glade.str:153 --#: ../glade/NewPrinterWindow.glade.h:82 -+#: ../glade/NewPrinterWindow.glade.h:81 - msgid "Printer model:" - msgstr "Modelo de impresora:" - --#: ../glade/NewPrinterWindow.glade.h:83 -+#: ../glade/NewPrinterWindow.glade.h:82 - msgid "Probe" - msgstr "Probar" - --#: ../glade/NewPrinterWindow.glade.h:84 -+#: ../glade/NewPrinterWindow.glade.h:83 - msgid "Prompt user if authentication is required" - msgstr "Preguntar al usuario si se pedirá autenticación" - --#: ../glade/NewPrinterWindow.glade.h:85 -+#: ../glade/NewPrinterWindow.glade.h:84 - msgid "Provide PPD file" - msgstr "Proveer archivo PPD" - --#: ../glade/NewPrinterWindow.glade.h:86 -+#: ../glade/NewPrinterWindow.glade.h:85 - msgid "Queue:" - msgstr "Cola:" - --#: ../glade/NewPrinterWindow.glade.h:87 -+#: ../glade/NewPrinterWindow.glade.h:86 - msgid "SCSI" - msgstr "SCSI" - --#: ../glade/NewPrinterWindow.glade.h:88 -+#: ../glade/NewPrinterWindow.glade.h:87 - msgid "SMB" - msgstr "SMB" - --#: ../glade/NewPrinterWindow.glade.h:89 -+#: ../glade/NewPrinterWindow.glade.h:88 - msgid "Search for a printer driver to download" - msgstr "Buscar un controlador de impresora para descargar" - --#: ../glade/NewPrinterWindow.glade.h:90 --#, fuzzy -+#: ../glade/NewPrinterWindow.glade.h:89 - msgid "Searching..." --msgstr "Buscando" -+msgstr "Buscando..." - --#: ../glade/NewPrinterWindow.glade.h:91 -+#: ../glade/NewPrinterWindow.glade.h:90 - msgid "Select A File" - msgstr "Seleccionar Un Archivo" - --#: ../glade/NewPrinterWindow.glade.h:92 -+#: ../glade/NewPrinterWindow.glade.h:91 - msgid "Select printer from database" - msgstr "Seleccionar impresora desde la base de datos" - --#: ../glade/NewPrinterWindow.glade.h:93 -+#: ../glade/NewPrinterWindow.glade.h:92 - msgid "Serial" - msgstr "Serie" - --#: ../glade/NewPrinterWindow.glade.h:94 -+#: ../glade/NewPrinterWindow.glade.h:93 - msgid "Set authentication details now" - msgstr "Poner los detalles de la autenticación ahora" - --#: ../glade/NewPrinterWindow.glade.h:95 -+#: ../glade/NewPrinterWindow.glade.h:94 - msgid "Short name for this printer such as \"laserjet\"" - msgstr "Nombre corto para esta impresora, ejemplo \"laserjet\"" - --#: ../glade/NewPrinterWindow.glade.h:96 -+#: ../glade/NewPrinterWindow.glade.h:95 - msgid "Supplier:" - msgstr "Proveedor:" - --#: ../glade/NewPrinterWindow.glade.h:97 -+#: ../glade/NewPrinterWindow.glade.h:96 - msgid "Support:" - msgstr "Soporte:" - --#: ../glade/NewPrinterWindow.glade.h:98 -+#: ../glade/NewPrinterWindow.glade.h:97 - msgid "Text:" - msgstr "Texto:" - --#: ../glade/NewPrinterWindow.glade.h:99 -+#: ../glade/NewPrinterWindow.glade.h:98 - msgid "" - "The foomatic printer database contains various manufacturer provided " - "PostScript Printer Description (PPD) files and also can generate PPD files " -@@ -2157,7 +2150,7 @@ msgstr "" - "fabricantes dan un mejor acceso a las características específicas de las " - "impresoras." - --#: ../glade/NewPrinterWindow.glade.h:100 -+#: ../glade/NewPrinterWindow.glade.h:99 - msgid "" - "These drivers do not come from your operating system supplier and will not " - "be covered by their commercial support. See the support and license terms " -@@ -2167,7 +2160,7 @@ msgstr "" - "no serán cubiertos por su soporte comercial. Vea los términos de la licencia " - "y soporte del proveedor del controlador." - --#: ../glade/NewPrinterWindow.glade.h:101 -+#: ../glade/NewPrinterWindow.glade.h:100 - msgid "" - "This driver supports additional hardware that may be installed in the " - "printer." -@@ -2175,7 +2168,7 @@ msgstr "" - "Este controlador provee soporte para hardware adicional y se puede instalar " - "en la impresora." - --#: ../glade/NewPrinterWindow.glade.h:102 -+#: ../glade/NewPrinterWindow.glade.h:101 - msgid "" - "This is done by assuming that options with the same name do have the same " - "meaning. Settings of options that are not present in the new PPD will be " -@@ -2187,7 +2180,7 @@ msgstr "" - "solamente se encuentren presente en el nuevo archivo PPD se configurarán con " - "valores por defecto." - --#: ../glade/NewPrinterWindow.glade.h:103 -+#: ../glade/NewPrinterWindow.glade.h:102 - msgid "" - "This way all current option settings will be lost. The default settings of " - "the new PPD will be used. " -@@ -2195,21 +2188,21 @@ msgstr "" - "De esta manera todas las opciones actualmente configuradas se perderán. Se " - "usarán los valores por defecto del archivo PPD nuevo." - --#: ../glade/NewPrinterWindow.glade.h:104 -+#: ../glade/NewPrinterWindow.glade.h:103 - msgid "Try to copy the option settings over from the old PPD. " - msgstr "" - "Intente copiar los valores de configuración desde el viejo archivo PPD." - --#: ../glade/NewPrinterWindow.glade.h:105 -+#: ../glade/NewPrinterWindow.glade.h:104 - msgid "URI:" - msgstr "URI:" - --#: ../glade/NewPrinterWindow.glade.h:107 -+#: ../glade/NewPrinterWindow.glade.h:106 - msgid "Use the new PPD (Postscript Printer Description) as is." - msgstr "" - "Usar el archivo PPD nuevo como está (PPD es PostScript Printer Description)." - --#: ../glade/NewPrinterWindow.glade.h:109 -+#: ../glade/NewPrinterWindow.glade.h:108 - msgid "" - "With this choice no driver download will be performed. In the next steps a " - "locally installed driver will be selected." -@@ -2217,24 +2210,24 @@ msgstr "" - "Con esta selección, no se descargarán controladores. En los siguientes " - "pasos, se seleccionará un controlador instalado localmente." - --#: ../glade/NewPrinterWindow.glade.h:110 -+#: ../glade/NewPrinterWindow.glade.h:109 - msgid "Yes, I accept this license" - msgstr "Si, acepto esta licencia" - --#: ../glade/NewPrinterWindow.glade.h:111 -+#: ../glade/NewPrinterWindow.glade.h:110 - msgid "_Search" - msgstr "_Buscar" - --#: ../glade/NewPrinterWindow.glade.h:112 -+#: ../glade/NewPrinterWindow.glade.h:111 - msgid "_Verify..." - msgstr "_Verificar..." - --#: ../glade/NewPrinterWindow.glade.h:113 -+#: ../glade/NewPrinterWindow.glade.h:112 - #: ../glade/PrinterPropertiesDialog.glade.h:128 - msgid "move left" - msgstr "moverse a la izquierda" - --#: ../glade/NewPrinterWindow.glade.h:114 -+#: ../glade/NewPrinterWindow.glade.h:113 - #: ../glade/PrinterPropertiesDialog.glade.h:129 - msgid "move right" - msgstr "moverse a la derecha" -@@ -3192,7 +3185,7 @@ msgstr "¿Los trabajos de impresión mar - msgid "Remember to load paper of type '%s' into the printer first." - msgstr "Recuerde primero cargar papel del tipo '%s' en la impresora." - --#: ../troubleshoot/PrintTestPage.py:399 -+#: ../troubleshoot/PrintTestPage.py:416 - msgid "Error submitting test page" - msgstr "Error al enviar la página de prueba" - -@@ -3409,6 +3402,15 @@ msgstr "Administrar Trabajos de Impresi - msgid "Select default printer" - msgstr "Elegir impresora predeterminada" - -+#~ msgid "HP Printer (HPLIP)" -+#~ msgstr "Impresora HP (HPLIP)" -+ -+#~ msgid "HPLIP cannot find the device." -+#~ msgstr "HPLIP no pueden encontrar el dispositivo." -+ -+#~ msgid "HP Printer (HPLIP) via network" -+#~ msgstr "Impresora HP (HPLIP) vía red" -+ - #~ msgid "Not Found" - #~ msgstr "No Encontrado" - -diff -up system-config-printer-1.1.5/po/et.po.git-1.1.x system-config-printer-1.1.5/po/et.po ---- system-config-printer-1.1.5/po/et.po.git-1.1.x 2009-03-03 22:21:46.000000000 +0000 -+++ system-config-printer-1.1.5/po/et.po 2009-03-10 17:43:31.000000000 +0000 -@@ -8,7 +8,7 @@ msgid "" - msgstr "" - "Project-Id-Version: et\n" - "Report-Msgid-Bugs-To: https://bugzilla.redhat.com/bugzilla\n" --"POT-Creation-Date: 2009-03-02 23:22+0000\n" -+"POT-Creation-Date: 2009-03-10 16:51+0000\n" - "PO-Revision-Date: 2005-02-03 23:56+0200\n" - "Last-Translator: Allan Sims \n" - "Language-Team: Estonian \n" -@@ -54,12 +54,12 @@ msgstr "" - msgid "Enter IP address" - msgstr "Serveri arvutinimi või IP aadress:" - --#: ../authconn.py:35 ../glade/NewPrinterWindow.glade.h:108 -+#: ../authconn.py:35 ../glade/NewPrinterWindow.glade.h:107 - #, fuzzy - msgid "Username:" - msgstr "Kasutajanimi:" - --#: ../authconn.py:36 ../glade/NewPrinterWindow.glade.h:77 -+#: ../authconn.py:36 ../glade/NewPrinterWindow.glade.h:76 - msgid "Password:" - msgstr "Parool:" - -@@ -68,7 +68,7 @@ msgstr "Parool:" - msgid "Domain:" - msgstr "Ülemine ääris (pt):" - --#: ../authconn.py:46 -+#: ../authconn.py:46 ../authconn.py:409 - #, fuzzy - msgid "Authentication" - msgstr "Tuvastamine" -@@ -77,46 +77,55 @@ msgstr "Tuvastamine" - msgid "Remember password" - msgstr "" - --#: ../authconn.py:211 ../authconn.py:232 -+#: ../authconn.py:208 -+#, python-format -+msgid "Unauthorized request (%s)" -+msgstr "" -+ -+#: ../authconn.py:209 -+msgid "You are not authorized to carry out therequested action." -+msgstr "" -+ -+#: ../authconn.py:212 ../authconn.py:233 - #, fuzzy - msgid "Operation canceled" - msgstr "Valiku nimi" - --#: ../authconn.py:253 -+#: ../authconn.py:250 - #, fuzzy, python-format - msgid "CUPS server error (%s)" - msgstr "Server:" - --#: ../authconn.py:255 ../errordialogs.py:57 --#: ../troubleshoot/PrintTestPage.py:400 -+#: ../authconn.py:252 ../errordialogs.py:56 ../errordialogs.py:70 -+#, fuzzy -+msgid "CUPS server error" -+msgstr "Server:" -+ -+#: ../authconn.py:261 ../errordialogs.py:57 -+#: ../troubleshoot/PrintTestPage.py:417 - #, fuzzy, python-format - msgid "There was an error during the CUPS operation: '%s'." - msgstr "Juhtus viga testlehe printimisel." - --#: ../authconn.py:258 -+#: ../authconn.py:264 - #, fuzzy - msgid "Retry" - msgstr "Testimine" - --#: ../authconn.py:379 ../authconn.py:381 ../errordialogs.py:65 ../pysmb.py:75 -+#: ../authconn.py:385 ../authconn.py:387 ../errordialogs.py:65 ../pysmb.py:75 - #: ../pysmb.py:77 - msgid "Not authorized" - msgstr "" - --#: ../authconn.py:382 ../pysmb.py:78 -+#: ../authconn.py:388 ../pysmb.py:78 - msgid "The password may be incorrect." - msgstr "" - --#: ../authconn.py:400 -+#: ../authconn.py:407 - #, fuzzy, python-format - msgid "Authentication (%s)" - msgstr "Tuvastamine" - --#: ../errordialogs.py:56 ../errordialogs.py:70 --#, fuzzy --msgid "CUPS server error" --msgstr "Server:" -- - #: ../errordialogs.py:66 - msgid "" - "The password may be incorrect, or the server may be configured to deny " -@@ -146,7 +155,7 @@ msgstr "Parool:" - msgid "Server error" - msgstr "Printer: " - --#: ../errordialogs.py:82 ../system-config-printer.py:1219 -+#: ../errordialogs.py:82 ../system-config-printer.py:1223 - #, fuzzy - msgid "Not connected" - msgstr "_Kohalik ühendus" -@@ -169,7 +178,7 @@ msgstr "" - msgid "_New Group from Selection" - msgstr "" - --#: ../GroupsPane.py:98 ../system-config-printer.py:393 -+#: ../GroupsPane.py:98 ../system-config-printer.py:397 - #, fuzzy - msgid "_Rename" - msgstr "_Eemalda" -@@ -240,7 +249,7 @@ msgid "Document" - msgstr "Kommentaar" - - #: ../jobviewer.py:212 ../my-default-printer.py:153 --#: ../system-config-printer.py:366 ../system-config-printer.py:1367 -+#: ../system-config-printer.py:370 ../system-config-printer.py:1371 - #: ../troubleshoot/PrintTestPage.py:84 - #, fuzzy - msgid "Printer" -@@ -279,8 +288,8 @@ msgstr "" - - #: ../jobviewer.py:386 ../jobviewer.py:451 ../jobviewer.py:452 - #: ../jobviewer.py:492 ../jobviewer.py:600 ../jobviewer.py:727 --#: ../jobviewer.py:1196 ../jobviewer.py:1222 ../system-config-printer.py:2546 --#: ../glade/NewPrinterWindow.glade.h:106 -+#: ../jobviewer.py:1196 ../jobviewer.py:1222 ../system-config-printer.py:2556 -+#: ../glade/NewPrinterWindow.glade.h:105 - #: ../troubleshoot/ChooseNetworkPrinter.py:101 - #: ../troubleshoot/ChooseNetworkPrinter.py:102 - #: ../troubleshoot/ChooseNetworkPrinter.py:105 -@@ -372,12 +381,12 @@ msgstr "" - msgid "Pending" - msgstr "Printimine" - --#: ../jobviewer.py:591 ../system-config-printer.py:186 -+#: ../jobviewer.py:591 ../system-config-printer.py:190 - #: ../troubleshoot/PrintTestPage.py:43 - msgid "Processing" - msgstr "" - --#: ../jobviewer.py:592 ../system-config-printer.py:188 -+#: ../jobviewer.py:592 ../system-config-printer.py:192 - #: ../troubleshoot/PrintTestPage.py:44 - msgid "Stopped" - msgstr "" -@@ -498,8 +507,8 @@ msgstr "Sea _vaikimisi" - msgid "_Set Default" - msgstr "_Vaikimisi" - --#: ../my-default-printer.py:158 ../system-config-printer.py:423 --#: ../system-config-printer.py:3660 ../troubleshoot/ChooseNetworkPrinter.py:37 -+#: ../my-default-printer.py:158 ../system-config-printer.py:427 -+#: ../system-config-printer.py:3675 ../troubleshoot/ChooseNetworkPrinter.py:37 - #: ../troubleshoot/ChoosePrinter.py:38 - #, fuzzy - msgid "Location" -@@ -533,7 +542,7 @@ msgstr "See on printeri kirjeldus." - msgid "Authenticated" - msgstr "Tuvastamine" - --#: ../ppdippstr.py:50 ../system-config-printer.py:6259 -+#: ../ppdippstr.py:50 ../system-config-printer.py:6207 - msgid "None" - msgstr "MItte ükski" - -@@ -756,217 +765,217 @@ msgstr "" - msgid "1200 dpi, photo, black + color cartridge, photo paper" - msgstr "" - --#: ../system-config-printer.py:127 -+#: ../system-config-printer.py:131 - msgid "To do this, select System->Administration->Firewall from the main menu." - msgstr "" - --#: ../system-config-printer.py:185 -+#: ../system-config-printer.py:189 - msgid "Idle" - msgstr "" - --#: ../system-config-printer.py:187 -+#: ../system-config-printer.py:191 - msgid "Busy" - msgstr "" - --#: ../system-config-printer.py:372 ../system-config-printer.py:1373 -+#: ../system-config-printer.py:376 ../system-config-printer.py:1377 - #, fuzzy - msgid "Class" - msgstr "Pseudonüümid" - --#: ../system-config-printer.py:399 -+#: ../system-config-printer.py:403 - #, fuzzy - msgid "Set As De_fault" - msgstr "_Vaikimisi" - --#: ../system-config-printer.py:403 -+#: ../system-config-printer.py:407 - #, fuzzy - msgid "_Create class" - msgstr "Jetdirect Printer" - --#: ../system-config-printer.py:405 -+#: ../system-config-printer.py:409 - #, fuzzy - msgid "View Print _Queue" - msgstr "Toor printimise ootejärjekord" - --#: ../system-config-printer.py:407 -+#: ../system-config-printer.py:411 - msgid "_Add to Group" - msgstr "" - --#: ../system-config-printer.py:409 -+#: ../system-config-printer.py:413 - msgid "Save Results as _Group" - msgstr "" - --#: ../system-config-printer.py:411 -+#: ../system-config-printer.py:415 - msgid "Save Filter as _Search Group" - msgstr "" - --#: ../system-config-printer.py:415 -+#: ../system-config-printer.py:419 - msgid "E_nabled" - msgstr "" - --#: ../system-config-printer.py:417 -+#: ../system-config-printer.py:421 - #, fuzzy - msgid "_Shared" - msgstr "Jagatud" - --#: ../system-config-printer.py:421 ../troubleshoot/ChooseNetworkPrinter.py:35 -+#: ../system-config-printer.py:425 ../troubleshoot/ChooseNetworkPrinter.py:35 - #: ../troubleshoot/ChoosePrinter.py:36 ../troubleshoot/DeviceListed.py:36 - msgid "Name" - msgstr "Nimi" - --#: ../system-config-printer.py:422 -+#: ../system-config-printer.py:426 - #, fuzzy - msgid "Description" - msgstr "Kirjeldus" - --#: ../system-config-printer.py:424 -+#: ../system-config-printer.py:428 - msgid "Manufacturer / Model" - msgstr "" - - #. Printer state reasons list --#: ../system-config-printer.py:499 -+#: ../system-config-printer.py:503 - msgid "Message" - msgstr "" - --#: ../system-config-printer.py:534 -+#: ../system-config-printer.py:538 - msgid "Problems?" - msgstr "" - --#: ../system-config-printer.py:637 ../system-config-printer.py:639 -+#: ../system-config-printer.py:641 ../system-config-printer.py:643 - msgid "Members of this class" - msgstr "" - --#: ../system-config-printer.py:638 ../system-config-printer.py:640 -+#: ../system-config-printer.py:642 ../system-config-printer.py:644 - msgid "Others" - msgstr "" - --#: ../system-config-printer.py:641 -+#: ../system-config-printer.py:645 - #, fuzzy - msgid "Devices" - msgstr "Seade" - --#: ../system-config-printer.py:642 -+#: ../system-config-printer.py:646 - #, fuzzy - msgid "Connections" - msgstr "Kommentaar" - --#: ../system-config-printer.py:643 -+#: ../system-config-printer.py:647 - msgid "Makes" - msgstr "" - --#: ../system-config-printer.py:644 -+#: ../system-config-printer.py:648 - #, fuzzy - msgid "Models" - msgstr "Mudel" - --#: ../system-config-printer.py:645 -+#: ../system-config-printer.py:649 - #, fuzzy - msgid "Drivers" - msgstr "Draiver" - --#: ../system-config-printer.py:646 ../glade/NewPrinterWindow.glade.h:55 -+#: ../system-config-printer.py:650 ../glade/NewPrinterWindow.glade.h:54 - #, fuzzy - msgid "Downloadable Drivers" - msgstr "Kättesaadavad draiverid" - --#: ../system-config-printer.py:647 -+#: ../system-config-printer.py:651 - #, fuzzy - msgid "Users" - msgstr "Kasutaja" - --#: ../system-config-printer.py:682 -+#: ../system-config-printer.py:686 - msgid "Automatic rotation" - msgstr "" - --#: ../system-config-printer.py:989 -+#: ../system-config-printer.py:993 - #, fuzzy, python-format - msgid "Printer Properties - '%s' on %s" - msgstr "Filtri valikud" - - #. The Conflict button was pressed. --#: ../system-config-printer.py:996 -+#: ../system-config-printer.py:1000 - msgid "" - "There are conflicting options.\n" - "Changes can only be applied after\n" - "these conflicts are resolved." - msgstr "" - --#: ../system-config-printer.py:1214 -+#: ../system-config-printer.py:1218 - #, python-format - msgid "Printer configuration - %s" - msgstr "Printeri seadistus - %s" - --#: ../system-config-printer.py:1217 -+#: ../system-config-printer.py:1221 - #, python-format - msgid "Connected to %s" - msgstr "" - - #. Update our copy of the printer's settings. --#: ../system-config-printer.py:1257 ../system-config-printer.py:2042 -+#: ../system-config-printer.py:1261 ../system-config-printer.py:2046 - msgid "obtaining queue details" - msgstr "" - --#: ../system-config-printer.py:1295 -+#: ../system-config-printer.py:1299 - msgid "Remove from Group" - msgstr "" - --#: ../system-config-printer.py:1361 -+#: ../system-config-printer.py:1365 - #, fuzzy - msgid "Network printer (discovered)" - msgstr "Printer:" - --#: ../system-config-printer.py:1364 -+#: ../system-config-printer.py:1368 - msgid "Network class (discovered)" - msgstr "" - --#: ../system-config-printer.py:1370 ../system-config-printer.py:5524 --#: ../system-config-printer.py:5594 ../system-config-printer.py:5596 -+#: ../system-config-printer.py:1374 ../system-config-printer.py:5519 -+#: ../system-config-printer.py:5589 ../system-config-printer.py:5591 - msgid "Fax" - msgstr "" - --#: ../system-config-printer.py:1376 ../system-config-printer.py:1382 -+#: ../system-config-printer.py:1380 ../system-config-printer.py:1386 - #: ../troubleshoot/LocalOrRemote.py:30 - #, fuzzy - msgid "Network printer" - msgstr "Printer:" - --#: ../system-config-printer.py:1379 -+#: ../system-config-printer.py:1383 - #, fuzzy - msgid "Network print share" - msgstr "Printer:" - --#: ../system-config-printer.py:1508 ../glade/ConnectingDialog.glade.h:2 -+#: ../system-config-printer.py:1512 ../glade/ConnectingDialog.glade.h:2 - #, no-c-format, python-format - msgid "Opening connection to %s" - msgstr "" - --#: ../system-config-printer.py:1887 -+#: ../system-config-printer.py:1891 - msgid "Installable Options" - msgstr "" - --#: ../system-config-printer.py:1888 -+#: ../system-config-printer.py:1892 - #: ../glade/PrinterPropertiesDialog.glade.h:109 - #, fuzzy - msgid "Printer Options" - msgstr "Filtri valikud" - --#: ../system-config-printer.py:1924 -+#: ../system-config-printer.py:1928 - #, python-format - msgid "modifying class %s" - msgstr "" - --#: ../system-config-printer.py:1926 ../system-config-printer.py:3019 --#: ../system-config-printer.py:3044 ../system-config-printer.py:6547 --#: ../system-config-printer.py:6559 ../system-config-printer.py:6581 -+#: ../system-config-printer.py:1930 ../system-config-printer.py:3037 -+#: ../system-config-printer.py:3062 ../system-config-printer.py:6495 -+#: ../system-config-printer.py:6507 ../system-config-printer.py:6529 - #, fuzzy, python-format - msgid "modifying printer %s" - msgstr "Lisa uus printimise ootejärjekord" - --#: ../system-config-printer.py:1941 -+#: ../system-config-printer.py:1945 - msgid "This will delete this class!" - msgstr "" - --#: ../system-config-printer.py:1942 -+#: ../system-config-printer.py:1946 - msgid "Proceed anyway?" - msgstr "" - -@@ -974,72 +983,72 @@ msgstr "" - #. but we have never fetched the server settings to see whether - #. the server is publishing shared printers. Fetch the settings - #. now so that we can update the "not published" label if necessary. --#: ../system-config-printer.py:2030 ../system-config-printer.py:3203 -+#: ../system-config-printer.py:2034 ../system-config-printer.py:3221 - #, fuzzy - msgid "fetching server settings" - msgstr "Draiveri valikud" - --#: ../system-config-printer.py:2100 -+#: ../system-config-printer.py:2104 - #, fuzzy - msgid "Set Default Printer" - msgstr "See on printeri kirjeldus." - --#: ../system-config-printer.py:2102 -+#: ../system-config-printer.py:2106 - #, fuzzy - msgid "Do you want to set this as the system-wide default printer?" - msgstr "" - "Soovid sa salvestada muutusi,\n" - "mis tehti printeri seadistustes?" - --#: ../system-config-printer.py:2104 -+#: ../system-config-printer.py:2108 - #, fuzzy - msgid "Set as the _system-wide default printer" - msgstr "See on printeri kirjeldus." - --#: ../system-config-printer.py:2106 -+#: ../system-config-printer.py:2110 - msgid "_Clear my personal default setting" - msgstr "" - --#: ../system-config-printer.py:2107 -+#: ../system-config-printer.py:2111 - #, fuzzy - msgid "Set as my _personal default printer" - msgstr "See on printeri kirjeldus." - --#: ../system-config-printer.py:2112 -+#: ../system-config-printer.py:2116 - #, fuzzy - msgid "setting default printer" - msgstr "See on printeri kirjeldus." - --#: ../system-config-printer.py:2169 -+#: ../system-config-printer.py:2173 - #, fuzzy - msgid "printing test page" - msgstr "Printeri kommentaar:" - --#: ../system-config-printer.py:2182 ../system-config-printer.py:2217 --#: ../system-config-printer.py:5418 -+#: ../system-config-printer.py:2186 ../system-config-printer.py:2221 -+#: ../system-config-printer.py:5413 - msgid "Not possible" - msgstr "" - --#: ../system-config-printer.py:2183 ../system-config-printer.py:2218 -+#: ../system-config-printer.py:2187 ../system-config-printer.py:2222 - msgid "" - "The remote server did not accept the print job, most likely because the " - "printer is not shared." - msgstr "" - --#: ../system-config-printer.py:2195 ../system-config-printer.py:2210 -+#: ../system-config-printer.py:2199 ../system-config-printer.py:2214 - msgid "Submitted" - msgstr "" - --#: ../system-config-printer.py:2196 -+#: ../system-config-printer.py:2200 - #, python-format - msgid "Test page submitted as job %d" - msgstr "" - --#: ../system-config-printer.py:2203 -+#: ../system-config-printer.py:2207 - msgid "sending maintenance command" - msgstr "" - --#: ../system-config-printer.py:2211 -+#: ../system-config-printer.py:2215 - #, python-format - msgid "Maintenance command submitted as job %d" - msgstr "" -@@ -1047,79 +1056,79 @@ msgstr "" - #. The underlying cupsGetPPD2() function returned NULL without - #. setting an IPP error, so it'll be something like a failed - #. connection. --#: ../system-config-printer.py:2285 ../system-config-printer.py:2381 -+#: ../system-config-printer.py:2289 ../system-config-printer.py:2385 - msgid "Error" - msgstr "Viga" - --#: ../system-config-printer.py:2286 -+#: ../system-config-printer.py:2290 - #, fuzzy - msgid "There was a problem connecting to the CUPS server." - msgstr "" - "%s saatmisega ootejärjekorda '%s'\tekkis probleem\n" - "\n" - --#: ../system-config-printer.py:2382 -+#: ../system-config-printer.py:2386 - #, python-format - msgid "Option '%s' has value '%s' and cannot be edited." - msgstr "" - --#: ../system-config-printer.py:2466 -+#: ../system-config-printer.py:2476 - msgid "Marker levels are not reported for this printer." - msgstr "" - --#: ../system-config-printer.py:2763 -+#: ../system-config-printer.py:2773 - #, fuzzy - msgid "Cannot Rename" - msgstr "_Eemalda" - --#: ../system-config-printer.py:2764 -+#: ../system-config-printer.py:2774 - #, fuzzy - msgid "There are queued jobs." - msgstr "Antud draiveri jaoks puuduvad valikud." - --#: ../system-config-printer.py:2822 -+#: ../system-config-printer.py:2840 - #, fuzzy - msgid "renaming printer" - msgstr "Lisa uus printimise ootejärjekord" - - #. for classes make sure all members - #. will get added --#: ../system-config-printer.py:2907 -+#: ../system-config-printer.py:2925 - #, fuzzy - msgid "copying printer" - msgstr "Lisa uus printimise ootejärjekord" - --#: ../system-config-printer.py:2971 -+#: ../system-config-printer.py:2989 - #, fuzzy, python-format - msgid "Really delete class '%s'?" - msgstr "Kas tõesti kustutada \"%s\"?" - --#: ../system-config-printer.py:2973 -+#: ../system-config-printer.py:2991 - #, fuzzy, python-format - msgid "Really delete printer '%s'?" - msgstr "Kas tõesti kustutada \"%s\"?" - --#: ../system-config-printer.py:2975 -+#: ../system-config-printer.py:2993 - #, fuzzy - msgid "Really delete selected destinations?" - msgstr "Kas tõesti kustutada \"%s\"?" - --#: ../system-config-printer.py:2996 -+#: ../system-config-printer.py:3014 - #, fuzzy, python-format - msgid "deleting printer %s" - msgstr "Lisa uus printimise ootejärjekord" - --#: ../system-config-printer.py:3070 -+#: ../system-config-printer.py:3088 - msgid "Publish Shared Printers" - msgstr "" - --#: ../system-config-printer.py:3071 -+#: ../system-config-printer.py:3089 - msgid "" - "Shared printers are not available to other people unless the 'Publish shared " - "printers' option is enabled in the server settings." - msgstr "" - --#: ../system-config-printer.py:3264 -+#: ../system-config-printer.py:3282 - #, fuzzy - msgid "modifying server settings" - msgstr "Draiveri valikud" -@@ -1130,109 +1139,109 @@ msgstr "Draiveri valikud" - #. be unblocked. Unfortunately, this is not yet possible - #. (bug #440469). However, we can display a dialog to suggest - #. that now might be a good time to review the firewall settings. --#: ../system-config-printer.py:3289 -+#: ../system-config-printer.py:3307 - #, fuzzy - msgid "Review Firewall" - msgstr "Seadmefail" - --#: ../system-config-printer.py:3290 -+#: ../system-config-printer.py:3308 - msgid "" - "You may need to adjust the firewall to allow network printing to this " - "computer." - msgstr "" - --#: ../system-config-printer.py:3623 -+#: ../system-config-printer.py:3638 - msgid "Browsing not available (pysmbc not installed)" - msgstr "" - - #. SMB list columns --#: ../system-config-printer.py:3629 -+#: ../system-config-printer.py:3644 - msgid "Share" - msgstr "Jagamine" - --#: ../system-config-printer.py:3635 -+#: ../system-config-printer.py:3650 - msgid "Comment" - msgstr "Kommentaar" - - #. IPP list columns --#: ../system-config-printer.py:3654 -+#: ../system-config-printer.py:3669 - msgid "Queue" - msgstr "Ootejärjekord" - --#: ../system-config-printer.py:3668 -+#: ../system-config-printer.py:3683 - msgid "" - "PostScript Printer Description files (*.ppd, *.PPD, *.ppd.gz, *.PPD.gz, *." - "PPD.GZ)" - msgstr "" - --#: ../system-config-printer.py:3677 -+#: ../system-config-printer.py:3692 - msgid "All files (*)" - msgstr "" - --#: ../system-config-printer.py:3713 ../system-config-printer.py:5970 --#: ../system-config-printer.py:6008 ../applet.py:124 -+#: ../system-config-printer.py:3728 ../system-config-printer.py:5918 -+#: ../system-config-printer.py:5956 ../applet.py:124 - #, fuzzy - msgid "Search" - msgstr "Hoiatus" - --#: ../system-config-printer.py:3736 ../system-config-printer.py:3760 --#: ../glade/NewPrinterWindow.glade.h:74 -+#: ../system-config-printer.py:3751 ../system-config-printer.py:3775 -+#: ../glade/NewPrinterWindow.glade.h:73 - #, fuzzy - msgid "New Printer" - msgstr "Printer:" - --#: ../system-config-printer.py:3747 -+#: ../system-config-printer.py:3762 - msgid "New Class" - msgstr "" - --#: ../system-config-printer.py:3752 -+#: ../system-config-printer.py:3767 - msgid "Change Device URI" - msgstr "" - --#: ../system-config-printer.py:3758 -+#: ../system-config-printer.py:3773 - #, fuzzy - msgid "Change Driver" - msgstr "Muuda tüüp" - --#: ../system-config-printer.py:3927 ../system-config-printer.py:3993 --#: ../system-config-printer.py:4289 ../system-config-printer.py:4487 --#: ../system-config-printer.py:5772 ../system-config-printer.py:5995 -+#: ../system-config-printer.py:3942 ../system-config-printer.py:4008 -+#: ../system-config-printer.py:4304 ../system-config-printer.py:4502 -+#: ../system-config-printer.py:5762 ../system-config-printer.py:5943 - #, fuzzy - msgid "Searching" - msgstr "Hoiatus" - --#: ../system-config-printer.py:3928 -+#: ../system-config-printer.py:3943 - #, fuzzy - msgid "Searching for downloadable drivers" - msgstr "Jagamise omadused" - --#: ../system-config-printer.py:3994 ../system-config-printer.py:4290 -+#: ../system-config-printer.py:4009 ../system-config-printer.py:4305 - #, fuzzy - msgid "Searching for drivers" - msgstr "Jagamise omadused" - --#: ../system-config-printer.py:4488 ../system-config-printer.py:5773 -+#: ../system-config-printer.py:4503 ../system-config-printer.py:5763 - #, fuzzy - msgid "Searching for printers" - msgstr "Jagamise omadused" - --#: ../system-config-printer.py:4497 -+#: ../system-config-printer.py:4512 - #, fuzzy - msgid "fetching device list" - msgstr "Draiveri valikud" - - #. Tell the user why he needs the plugin --#: ../system-config-printer.py:4579 -+#: ../system-config-printer.py:4594 - msgid "For this printer a proprietary driver plugin from HP is available.\n" - msgstr "" - --#: ../system-config-printer.py:4582 -+#: ../system-config-printer.py:4597 - msgid "" - "The installation of the plugin is required for your printer to work.\n" - "\n" - msgstr "" - --#: ../system-config-printer.py:4585 -+#: ../system-config-printer.py:4600 - msgid "" - "Installing the plugin is optional, it completes or enhances the " - "functionality\n" -@@ -1240,299 +1249,291 @@ msgid "" - "\n" - msgstr "" - --#: ../system-config-printer.py:4589 -+#: ../system-config-printer.py:4604 - msgid "The plugin provides the following features:\n" - msgstr "" - --#: ../system-config-printer.py:4592 -+#: ../system-config-printer.py:4607 - msgid " - Printing support\n" - msgstr "" - --#: ../system-config-printer.py:4595 -+#: ../system-config-printer.py:4610 - msgid " - Faster printing\n" - msgstr "" - --#: ../system-config-printer.py:4598 -+#: ../system-config-printer.py:4613 - msgid " - Better printout quality\n" - msgstr "" - --#: ../system-config-printer.py:4601 -+#: ../system-config-printer.py:4616 - msgid " - Extra printing features\n" - msgstr "" - --#: ../system-config-printer.py:4604 -+#: ../system-config-printer.py:4619 - msgid " - Scanning support\n" - msgstr "" - --#: ../system-config-printer.py:4607 -+#: ../system-config-printer.py:4622 - msgid " - Faster scanning\n" - msgstr "" - --#: ../system-config-printer.py:4610 -+#: ../system-config-printer.py:4625 - msgid " - Better scanning image quality\n" - msgstr "" - --#: ../system-config-printer.py:4613 -+#: ../system-config-printer.py:4628 - msgid " - Faxing support\n" - msgstr "" - --#: ../system-config-printer.py:4616 -+#: ../system-config-printer.py:4631 - msgid " - Extra fax features\n" - msgstr "" - --#: ../system-config-printer.py:4619 -+#: ../system-config-printer.py:4634 - msgid " - Better Input/Output support\n" - msgstr "" - --#: ../system-config-printer.py:4622 -+#: ../system-config-printer.py:4637 - msgid " - Extra user interface features\n" - msgstr "" - --#: ../system-config-printer.py:4625 -+#: ../system-config-printer.py:4640 - msgid " - Other extra features\n" - msgstr "" - --#: ../system-config-printer.py:4630 -+#: ../system-config-printer.py:4645 - #, fuzzy - msgid "Install plugin" - msgstr "Filtri valikud" - --#: ../system-config-printer.py:4631 -+#: ../system-config-printer.py:4646 - #, fuzzy - msgid "Do not set up printer" - msgstr "Printer:" - --#: ../system-config-printer.py:4632 -+#: ../system-config-printer.py:4647 - msgid "Set up without plugin" - msgstr "" - --#: ../system-config-printer.py:4634 ../troubleshoot/PrintTestPage.py:118 -+#: ../system-config-printer.py:4649 ../troubleshoot/PrintTestPage.py:118 - msgid "Yes" - msgstr "Jah" - --#: ../system-config-printer.py:4635 ../troubleshoot/PrintTestPage.py:119 -+#: ../system-config-printer.py:4650 ../troubleshoot/PrintTestPage.py:119 - msgid "No" - msgstr "Ei" - --#: ../system-config-printer.py:4809 ../system-config-printer.py:4813 -+#: ../system-config-printer.py:4824 ../system-config-printer.py:4828 - msgid " (Current)" - msgstr "" - --#: ../system-config-printer.py:4845 --msgid "HP Printer (HPLIP)" --msgstr "" -- --#: ../system-config-printer.py:4886 -+#: ../system-config-printer.py:4881 - msgid "Other" - msgstr "" - - #. device-info - #. PhysicalDevice obj - #. Separator? --#: ../system-config-printer.py:4902 -+#: ../system-config-printer.py:4897 - #, fuzzy - msgid "Network Printer" - msgstr "Printer:" - --#: ../system-config-printer.py:4906 -+#: ../system-config-printer.py:4901 - #, fuzzy - msgid "Find Network Printer" - msgstr "Printer:" - --#: ../system-config-printer.py:4979 ../system-config-printer.py:5376 -+#: ../system-config-printer.py:4974 ../system-config-printer.py:5371 - msgid "Scanning..." - msgstr "" - --#: ../system-config-printer.py:5034 ../system-config-printer.py:5798 -+#: ../system-config-printer.py:5029 - #, fuzzy - msgid "No Print Shares" - msgstr "Printer:" - --#: ../system-config-printer.py:5035 -+#: ../system-config-printer.py:5030 - msgid "" - "There were no print shares found. Please check that the Samba service is " - "marked as trusted in your firewall configuration." - msgstr "" - --#: ../system-config-printer.py:5296 ../system-config-printer.py:5357 -+#: ../system-config-printer.py:5291 ../system-config-printer.py:5352 - msgid "Print Share Verified" - msgstr "" - --#: ../system-config-printer.py:5297 ../system-config-printer.py:5358 -+#: ../system-config-printer.py:5292 ../system-config-printer.py:5353 - msgid "This print share is accessible." - msgstr "" - --#: ../system-config-printer.py:5302 ../system-config-printer.py:5362 -+#: ../system-config-printer.py:5297 ../system-config-printer.py:5357 - msgid "This print share is not accessible." - msgstr "" - --#: ../system-config-printer.py:5305 -+#: ../system-config-printer.py:5300 - msgid "Print Share Inaccessible" - msgstr "" - --#: ../system-config-printer.py:5361 -+#: ../system-config-printer.py:5356 - msgid "Inaccessible" - msgstr "" - --#: ../system-config-printer.py:5419 -+#: ../system-config-printer.py:5414 - #, fuzzy, python-format - msgid "It is not possible to obtain a list of queues from '%s'." - msgstr "" - "%s saatmisega ootejärjekorda '%s'\tekkis probleem\n" - "\n" - --#: ../system-config-printer.py:5421 -+#: ../system-config-printer.py:5416 - msgid "" - "Obtaining a list of queues is a CUPS extension to IPP. Network printers do " - "not support it." - msgstr "" - --#: ../system-config-printer.py:5424 -+#: ../system-config-printer.py:5419 - #, fuzzy - msgid "No queues" - msgstr "_Uus ootejärjekord" - --#: ../system-config-printer.py:5425 -+#: ../system-config-printer.py:5420 - #, fuzzy - msgid "There are no queues available." - msgstr "Antud draiveri jaoks puuduvad valikud." - --#: ../system-config-printer.py:5516 -+#: ../system-config-printer.py:5511 - msgid "Parallel Port" - msgstr "" - --#: ../system-config-printer.py:5518 -+#: ../system-config-printer.py:5513 - #, fuzzy - msgid "Serial Port" - msgstr "Üldine" - --#: ../system-config-printer.py:5520 -+#: ../system-config-printer.py:5515 - msgid "USB" - msgstr "" - --#: ../system-config-printer.py:5522 ../system-config-printer.py:5525 -+#: ../system-config-printer.py:5517 ../system-config-printer.py:5520 - msgid "HP Linux Imaging and Printing (HPLIP)" - msgstr "" - --#: ../system-config-printer.py:5527 -+#: ../system-config-printer.py:5522 - msgid "Hardware Abstraction Layer (HAL)" - msgstr "" - --#: ../system-config-printer.py:5529 -+#: ../system-config-printer.py:5524 - #, fuzzy - msgid "AppSocket/HP JetDirect" - msgstr "Võrgu _JetDirect" - --#: ../system-config-printer.py:5538 -+#: ../system-config-printer.py:5533 - #, python-format - msgid "LPD/LPR queue '%s'" - msgstr "" - --#: ../system-config-printer.py:5540 -+#: ../system-config-printer.py:5535 - msgid "LPD/LPR queue" - msgstr "" - --#: ../system-config-printer.py:5543 -+#: ../system-config-printer.py:5538 - #, fuzzy - msgid "Windows Printer via SAMBA" - msgstr "Windowsi printeri (SMB) andmed" - --#: ../system-config-printer.py:5545 ../glade/NewPrinterWindow.glade.h:66 -+#: ../system-config-printer.py:5540 ../glade/NewPrinterWindow.glade.h:65 - #, fuzzy - msgid "IPP" - msgstr "IP:" - --#: ../system-config-printer.py:5547 -+#: ../system-config-printer.py:5542 - msgid "HTTP" - msgstr "" - --#: ../system-config-printer.py:5632 -+#: ../system-config-printer.py:5624 - msgid "A printer connected to the parallel port." - msgstr "" - --#: ../system-config-printer.py:5634 -+#: ../system-config-printer.py:5626 - msgid "A printer connected to a USB port." - msgstr "" - --#: ../system-config-printer.py:5636 -+#: ../system-config-printer.py:5628 - msgid "" - "HPLIP software driving a printer, or the printer function of a multi-" - "function device." - msgstr "" - --#: ../system-config-printer.py:5639 -+#: ../system-config-printer.py:5631 - msgid "" - "HPLIP software driving a fax machine, or the fax function of a multi-" - "function device." - msgstr "" - --#: ../system-config-printer.py:5642 -+#: ../system-config-printer.py:5634 - msgid "Local printer detected by the Hardware Abstraction Layer (HAL)." - msgstr "" - --#: ../system-config-printer.py:5799 --msgid "HPLIP cannot find the device." --msgstr "" -- --#: ../system-config-printer.py:5881 -+#: ../system-config-printer.py:5831 - msgid "No printer was found at that address." - msgstr "" - --#: ../system-config-printer.py:6020 -+#: ../system-config-printer.py:5968 - #, fuzzy - msgid "-- Select from search results --" - msgstr "Printeri mudeli valimine on vajalik." - --#: ../system-config-printer.py:6022 -+#: ../system-config-printer.py:5970 - msgid "-- No matches found --" - msgstr "" - --#: ../system-config-printer.py:6203 -+#: ../system-config-printer.py:6151 - #, fuzzy - msgid " (recommended)" - msgstr "" - "(soovitatud\n" - "draiver on %s)" - --#: ../system-config-printer.py:6217 -+#: ../system-config-printer.py:6165 - msgid "This PPD is generated by foomatic." - msgstr "" - --#: ../system-config-printer.py:6241 -+#: ../system-config-printer.py:6189 - #, fuzzy - msgid "OpenPrinting" - msgstr "Printimine" - --#: ../system-config-printer.py:6252 -+#: ../system-config-printer.py:6200 - msgid "Distributable" - msgstr "" - --#: ../system-config-printer.py:6293 -+#: ../system-config-printer.py:6241 - msgid ", " - msgstr "" - --#: ../system-config-printer.py:6298 -+#: ../system-config-printer.py:6246 - #, python-format - msgid "" - "\n" - "(%s)" - msgstr "" - --#: ../system-config-printer.py:6303 -+#: ../system-config-printer.py:6251 - msgid "No support contacts known" - msgstr "" - --#: ../system-config-printer.py:6307 ../system-config-printer.py:6320 -+#: ../system-config-printer.py:6255 ../system-config-printer.py:6268 - #, fuzzy - msgid "Not specified." - msgstr "Seadme määramine on vajalik." - - #. Foomatic database problem of some sort. --#: ../system-config-printer.py:6360 -+#: ../system-config-printer.py:6308 - msgid "Database error" - msgstr "" - --#: ../system-config-printer.py:6361 -+#: ../system-config-printer.py:6309 - #, python-format - msgid "The '%s' driver cannot be used with printer '%s %s'." - msgstr "" -@@ -1540,65 +1541,65 @@ msgstr "" - #. This printer references some XML that is not - #. installed by default. Point the user at the - #. package they need to install. --#: ../system-config-printer.py:6371 -+#: ../system-config-printer.py:6319 - #, python-format - msgid "You will need to install the '%s' package in order to use this driver." - msgstr "" - - #. This error came from trying to open the PPD file. --#: ../system-config-printer.py:6378 -+#: ../system-config-printer.py:6326 - msgid "PPD error" - msgstr "" - --#: ../system-config-printer.py:6380 -+#: ../system-config-printer.py:6328 - msgid "Failed to read PPD file. Possible reason follows:" - msgstr "" - - #. Failed to get PPD downloaded from OpenPrinting XXX --#: ../system-config-printer.py:6397 -+#: ../system-config-printer.py:6345 - #, fuzzy - msgid "Downloadable drivers" - msgstr "Kättesaadavad draiverid" - --#: ../system-config-printer.py:6398 -+#: ../system-config-printer.py:6346 - msgid "Failed to download PPD." - msgstr "" - --#: ../system-config-printer.py:6405 -+#: ../system-config-printer.py:6353 - #, fuzzy - msgid "fetching PPD" - msgstr "Muuda tüüp" - --#: ../system-config-printer.py:6434 ../system-config-printer.py:6472 -+#: ../system-config-printer.py:6382 ../system-config-printer.py:6420 - msgid "No Installable Options" - msgstr "" - --#: ../system-config-printer.py:6520 -+#: ../system-config-printer.py:6468 - #, fuzzy, python-format - msgid "adding printer %s" - msgstr "Lisa uus printimise ootejärjekord" - --#: ../system-config-printer.py:6669 -+#: ../system-config-printer.py:6617 - #, fuzzy - msgid "Would you like to print a test page?" - msgstr "Soovid sa printida testlehte?" - --#: ../system-config-printer.py:6722 -+#: ../system-config-printer.py:6670 - #, fuzzy - msgid "Install driver" - msgstr "Printeri draiver" - --#: ../system-config-printer.py:6723 ../troubleshoot/CheckPPDSanity.py:131 -+#: ../system-config-printer.py:6671 ../troubleshoot/CheckPPDSanity.py:131 - #, python-format - msgid "Printer '%s' requires the %s package but it is not currently installed." - msgstr "" - --#: ../system-config-printer.py:6739 -+#: ../system-config-printer.py:6687 - #, fuzzy - msgid "Missing driver" - msgstr "Printeri draiver" - --#: ../system-config-printer.py:6740 -+#: ../system-config-printer.py:6688 - #, python-format - msgid "" - "Printer '%s' requires the '%s' program but it is not currently installed. " -@@ -1726,116 +1727,111 @@ msgstr "Printeriseade" - - #: ../glade/NewPrinterWindow.glade.h:5 - #, fuzzy --msgid "HP Printer (HPLIP) via network" --msgstr "Printeri mudel" -- --#: ../glade/NewPrinterWindow.glade.h:6 --#, fuzzy - msgid "IPP Printer" - msgstr "Printeri mudel" - --#: ../glade/NewPrinterWindow.glade.h:7 -+#: ../glade/NewPrinterWindow.glade.h:6 - #, fuzzy - msgid "License Terms" - msgstr "Printeri mudel" - --#: ../glade/NewPrinterWindow.glade.h:8 -+#: ../glade/NewPrinterWindow.glade.h:7 - msgid "Location of the LPD network printer" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:9 -+#: ../glade/NewPrinterWindow.glade.h:8 - msgid "Location of the network printer" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:10 -+#: ../glade/NewPrinterWindow.glade.h:9 - msgid "Location (optional)" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:11 -+#: ../glade/NewPrinterWindow.glade.h:10 - #, fuzzy - msgid "Network Printer" - msgstr "Printer:" - --#: ../glade/NewPrinterWindow.glade.h:12 -+#: ../glade/NewPrinterWindow.glade.h:11 - #, fuzzy - msgid "Note" - msgstr "Printeri mudel" - --#: ../glade/NewPrinterWindow.glade.h:13 -+#: ../glade/NewPrinterWindow.glade.h:12 - msgid "Output Quality" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:14 -+#: ../glade/NewPrinterWindow.glade.h:13 - #, fuzzy - msgid "Printer Name" - msgstr "Printeri mudel" - --#: ../glade/NewPrinterWindow.glade.h:15 -+#: ../glade/NewPrinterWindow.glade.h:14 - #, fuzzy - msgid "SMB Printer" - msgstr "Printeri mudel" - --#: ../glade/NewPrinterWindow.glade.h:16 -+#: ../glade/NewPrinterWindow.glade.h:15 - #, fuzzy - msgid "Select Driver" - msgstr "Printeri mudel" - --#: ../glade/NewPrinterWindow.glade.h:17 -+#: ../glade/NewPrinterWindow.glade.h:16 - msgid "Settings of the serial port" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:18 -+#: ../glade/NewPrinterWindow.glade.h:17 - msgid "smb://[workgroup/]server[:port]/printer" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:19 -+#: ../glade/NewPrinterWindow.glade.h:18 - msgid "Choose Class Members" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:20 -+#: ../glade/NewPrinterWindow.glade.h:19 - msgid "Choose Driver" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:21 -+#: ../glade/NewPrinterWindow.glade.h:20 - msgid "Describe Printer" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:22 -+#: ../glade/NewPrinterWindow.glade.h:21 - msgid "Existing Settings" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:23 -+#: ../glade/NewPrinterWindow.glade.h:22 - msgid "Installable Options" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:24 -+#: ../glade/NewPrinterWindow.glade.h:23 - msgid "Select Device" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:25 -+#: ../glade/NewPrinterWindow.glade.h:24 - msgid "Baud Rate" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:26 -+#: ../glade/NewPrinterWindow.glade.h:25 - msgid "Browse..." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:27 -+#: ../glade/NewPrinterWindow.glade.h:26 - #, fuzzy - msgid "Comments..." - msgstr "Kommentaar" - --#: ../glade/NewPrinterWindow.glade.h:28 -+#: ../glade/NewPrinterWindow.glade.h:27 - #, fuzzy - msgid "Connection" - msgstr "_Tegevus" - --#: ../glade/NewPrinterWindow.glade.h:29 -+#: ../glade/NewPrinterWindow.glade.h:28 - #, fuzzy - msgid "Data Bits" - msgstr "Detailid" - --#: ../glade/NewPrinterWindow.glade.h:30 -+#: ../glade/NewPrinterWindow.glade.h:29 - msgid "" - "Default\n" - "1200\n" -@@ -1848,7 +1844,7 @@ msgid "" - "115200" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:39 -+#: ../glade/NewPrinterWindow.glade.h:38 - #, fuzzy - msgid "" - "Default\n" -@@ -1856,7 +1852,7 @@ msgid "" - "7" - msgstr "Vaikimisi" - --#: ../glade/NewPrinterWindow.glade.h:42 -+#: ../glade/NewPrinterWindow.glade.h:41 - msgid "" - "Default\n" - "None\n" -@@ -1864,7 +1860,7 @@ msgid "" - "Even" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:46 -+#: ../glade/NewPrinterWindow.glade.h:45 - msgid "" - "Default\n" - "None\n" -@@ -1873,205 +1869,205 @@ msgid "" - "DTR/DSR (Hardware)" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:51 -+#: ../glade/NewPrinterWindow.glade.h:50 - #: ../glade/PrinterPropertiesDialog.glade.h:35 - #, fuzzy - msgid "Description:" - msgstr "Kirjeldus" - --#: ../glade/NewPrinterWindow.glade.h:52 ../troubleshoot/DeviceListed.py:40 -+#: ../glade/NewPrinterWindow.glade.h:51 ../troubleshoot/DeviceListed.py:40 - #, fuzzy - msgid "Device URI" - msgstr "Seade:" - --#: ../glade/NewPrinterWindow.glade.h:53 -+#: ../glade/NewPrinterWindow.glade.h:52 - #, fuzzy - msgid "Device description." - msgstr "Kirjeldus" - --#: ../glade/NewPrinterWindow.glade.h:54 -+#: ../glade/NewPrinterWindow.glade.h:53 - msgid "DirectJet" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:56 -+#: ../glade/NewPrinterWindow.glade.h:55 - #, fuzzy - msgid "Driver details" - msgstr "Draiver" - --#: ../glade/NewPrinterWindow.glade.h:57 -+#: ../glade/NewPrinterWindow.glade.h:56 - msgid "Empty" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:58 -+#: ../glade/NewPrinterWindow.glade.h:57 - msgid "Find _Queue..." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:59 -+#: ../glade/NewPrinterWindow.glade.h:58 - msgid "Flow Control" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:60 -+#: ../glade/NewPrinterWindow.glade.h:59 - msgid "" - "For the printer you have selected there are drivers available for download." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:61 -+#: ../glade/NewPrinterWindow.glade.h:60 - msgid "Free software" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:62 -+#: ../glade/NewPrinterWindow.glade.h:61 - msgid "Graphics:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:63 -+#: ../glade/NewPrinterWindow.glade.h:62 - #, fuzzy - msgid "Host:" - msgstr "Arvuti IP" - --#: ../glade/NewPrinterWindow.glade.h:64 -+#: ../glade/NewPrinterWindow.glade.h:63 - msgid "Human-readable description such as \"HP LaserJet with Duplexer\"" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:65 -+#: ../glade/NewPrinterWindow.glade.h:64 - msgid "Human-readable location such as \"Lab 1\"" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:67 -+#: ../glade/NewPrinterWindow.glade.h:66 - msgid "LPD" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:68 -+#: ../glade/NewPrinterWindow.glade.h:67 - msgid "License:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:69 -+#: ../glade/NewPrinterWindow.glade.h:68 - #, fuzzy - msgid "Line art:" - msgstr "Printeri kommentaar:" - --#: ../glade/NewPrinterWindow.glade.h:70 -+#: ../glade/NewPrinterWindow.glade.h:69 - #, fuzzy - msgid "Local Driver" - msgstr "Redigeeri kohalikku printerit" - --#: ../glade/NewPrinterWindow.glade.h:71 -+#: ../glade/NewPrinterWindow.glade.h:70 - #, fuzzy - msgid "Make and model:" - msgstr "Vajalik on toode ja mudel.\n" - --#: ../glade/NewPrinterWindow.glade.h:72 -+#: ../glade/NewPrinterWindow.glade.h:71 - msgid "Manufacturer" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:73 -+#: ../glade/NewPrinterWindow.glade.h:72 - #, fuzzy - msgid "Network" - msgstr "Printer:" - --#: ../glade/NewPrinterWindow.glade.h:75 -+#: ../glade/NewPrinterWindow.glade.h:74 - msgid "No, I do not accept this license" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:76 -+#: ../glade/NewPrinterWindow.glade.h:75 - msgid "Parity" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:78 -+#: ../glade/NewPrinterWindow.glade.h:77 - msgid "Patented algorithms" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:79 -+#: ../glade/NewPrinterWindow.glade.h:78 - #, fuzzy - msgid "Photo:" - msgstr "Port: " - --#: ../glade/NewPrinterWindow.glade.h:80 -+#: ../glade/NewPrinterWindow.glade.h:79 - msgid "Port number:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:81 -+#: ../glade/NewPrinterWindow.glade.h:80 - msgid "" - "PostScript Printer Description (PPD) files can often be found on the driver " - "disk that comes with the printer. For PostScript printers they are often " - "part of the Windows® driver." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:82 -+#: ../glade/NewPrinterWindow.glade.h:81 - #, fuzzy - msgid "Printer model:" - msgstr "Printeri mudel" - --#: ../glade/NewPrinterWindow.glade.h:83 -+#: ../glade/NewPrinterWindow.glade.h:82 - msgid "Probe" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:84 -+#: ../glade/NewPrinterWindow.glade.h:83 - #, fuzzy - msgid "Prompt user if authentication is required" - msgstr "Tuvastamine" - --#: ../glade/NewPrinterWindow.glade.h:85 -+#: ../glade/NewPrinterWindow.glade.h:84 - msgid "Provide PPD file" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:86 -+#: ../glade/NewPrinterWindow.glade.h:85 - msgid "Queue:" - msgstr "Ootejärjekord:" - --#: ../glade/NewPrinterWindow.glade.h:87 -+#: ../glade/NewPrinterWindow.glade.h:86 - msgid "SCSI" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:88 -+#: ../glade/NewPrinterWindow.glade.h:87 - msgid "SMB" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:89 -+#: ../glade/NewPrinterWindow.glade.h:88 - msgid "Search for a printer driver to download" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:90 -+#: ../glade/NewPrinterWindow.glade.h:89 - #, fuzzy - msgid "Searching..." - msgstr "Hoiatus" - --#: ../glade/NewPrinterWindow.glade.h:91 -+#: ../glade/NewPrinterWindow.glade.h:90 - msgid "Select A File" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:92 -+#: ../glade/NewPrinterWindow.glade.h:91 - msgid "Select printer from database" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:93 -+#: ../glade/NewPrinterWindow.glade.h:92 - #, fuzzy - msgid "Serial" - msgstr "Üldine" - --#: ../glade/NewPrinterWindow.glade.h:94 -+#: ../glade/NewPrinterWindow.glade.h:93 - #, fuzzy - msgid "Set authentication details now" - msgstr "Tuvastamine" - --#: ../glade/NewPrinterWindow.glade.h:95 -+#: ../glade/NewPrinterWindow.glade.h:94 - msgid "Short name for this printer such as \"laserjet\"" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:96 -+#: ../glade/NewPrinterWindow.glade.h:95 - msgid "Supplier:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:97 -+#: ../glade/NewPrinterWindow.glade.h:96 - #, fuzzy - msgid "Support:" - msgstr "Port:" - --#: ../glade/NewPrinterWindow.glade.h:98 -+#: ../glade/NewPrinterWindow.glade.h:97 - #, fuzzy - msgid "Text:" - msgstr "_Testimine" - --#: ../glade/NewPrinterWindow.glade.h:99 -+#: ../glade/NewPrinterWindow.glade.h:98 - msgid "" - "The foomatic printer database contains various manufacturer provided " - "PostScript Printer Description (PPD) files and also can generate PPD files " -@@ -2080,70 +2076,70 @@ msgid "" - "printer." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:100 -+#: ../glade/NewPrinterWindow.glade.h:99 - msgid "" - "These drivers do not come from your operating system supplier and will not " - "be covered by their commercial support. See the support and license terms " - "of the driver's supplier." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:101 -+#: ../glade/NewPrinterWindow.glade.h:100 - msgid "" - "This driver supports additional hardware that may be installed in the " - "printer." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:102 -+#: ../glade/NewPrinterWindow.glade.h:101 - msgid "" - "This is done by assuming that options with the same name do have the same " - "meaning. Settings of options that are not present in the new PPD will be " - "lost and options only present in the new PPD will be set to default." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:103 -+#: ../glade/NewPrinterWindow.glade.h:102 - msgid "" - "This way all current option settings will be lost. The default settings of " - "the new PPD will be used. " - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:104 -+#: ../glade/NewPrinterWindow.glade.h:103 - msgid "Try to copy the option settings over from the old PPD. " - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:105 -+#: ../glade/NewPrinterWindow.glade.h:104 - msgid "URI:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:107 -+#: ../glade/NewPrinterWindow.glade.h:106 - msgid "Use the new PPD (Postscript Printer Description) as is." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:109 -+#: ../glade/NewPrinterWindow.glade.h:108 - msgid "" - "With this choice no driver download will be performed. In the next steps a " - "locally installed driver will be selected." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:110 -+#: ../glade/NewPrinterWindow.glade.h:109 - msgid "Yes, I accept this license" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:111 -+#: ../glade/NewPrinterWindow.glade.h:110 - #, fuzzy - msgid "_Search" - msgstr "Hoiatus" - --#: ../glade/NewPrinterWindow.glade.h:112 -+#: ../glade/NewPrinterWindow.glade.h:111 - #, fuzzy - msgid "_Verify..." - msgstr "Täpsusta..." - --#: ../glade/NewPrinterWindow.glade.h:113 -+#: ../glade/NewPrinterWindow.glade.h:112 - #: ../glade/PrinterPropertiesDialog.glade.h:128 - msgid "move left" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:114 -+#: ../glade/NewPrinterWindow.glade.h:113 - #: ../glade/PrinterPropertiesDialog.glade.h:129 - msgid "move right" - msgstr "" -@@ -3055,7 +3051,7 @@ msgstr "" - msgid "Remember to load paper of type '%s' into the printer first." - msgstr "" - --#: ../troubleshoot/PrintTestPage.py:399 -+#: ../troubleshoot/PrintTestPage.py:416 - msgid "Error submitting test page" - msgstr "" - -@@ -3259,6 +3255,10 @@ msgid "Select default printer" - msgstr "See on printeri kirjeldus." - - #, fuzzy -+#~ msgid "HP Printer (HPLIP) via network" -+#~ msgstr "Printeri mudel" -+ -+#, fuzzy - #~ msgid "Not Found" - #~ msgstr "_Kohalik ühendus" - -diff -up system-config-printer-1.1.5/po/fa.po.git-1.1.x system-config-printer-1.1.5/po/fa.po ---- system-config-printer-1.1.5/po/fa.po.git-1.1.x 2009-03-03 22:21:46.000000000 +0000 -+++ system-config-printer-1.1.5/po/fa.po 2009-03-10 17:43:31.000000000 +0000 -@@ -10,7 +10,7 @@ msgid "" - msgstr "" - "Project-Id-Version: printconf\n" - "Report-Msgid-Bugs-To: https://bugzilla.redhat.com/bugzilla\n" --"POT-Creation-Date: 2009-03-02 23:22+0000\n" -+"POT-Creation-Date: 2009-03-10 16:51+0000\n" - "PO-Revision-Date: 2005-04-18 12:02+0430\n" - "Last-Translator: Meelad Zakaria \n" - "Language-Team: Persian \n" -@@ -55,12 +55,12 @@ msgstr "" - msgid "Enter IP address" - msgstr "نام میزبان یا نشانی IP کارگزار:" - --#: ../authconn.py:35 ../glade/NewPrinterWindow.glade.h:108 -+#: ../authconn.py:35 ../glade/NewPrinterWindow.glade.h:107 - #, fuzzy - msgid "Username:" - msgstr "نام کاربر:" - --#: ../authconn.py:36 ../glade/NewPrinterWindow.glade.h:77 -+#: ../authconn.py:36 ../glade/NewPrinterWindow.glade.h:76 - msgid "Password:" - msgstr "گذرواژه:" - -@@ -69,7 +69,7 @@ msgstr "گذرواژه:" - msgid "Domain:" - msgstr "حاشیه‌ی بالا (پونت):‏" - --#: ../authconn.py:46 -+#: ../authconn.py:46 ../authconn.py:409 - #, fuzzy - msgid "Authentication" - msgstr "تأیید هویت" -@@ -78,46 +78,55 @@ msgstr "تأیید هویت" - msgid "Remember password" - msgstr "" - --#: ../authconn.py:211 ../authconn.py:232 -+#: ../authconn.py:208 -+#, python-format -+msgid "Unauthorized request (%s)" -+msgstr "" -+ -+#: ../authconn.py:209 -+msgid "You are not authorized to carry out therequested action." -+msgstr "" -+ -+#: ../authconn.py:212 ../authconn.py:233 - #, fuzzy - msgid "Operation canceled" - msgstr "نام گزینه" - --#: ../authconn.py:253 -+#: ../authconn.py:250 - #, fuzzy, python-format - msgid "CUPS server error (%s)" - msgstr "کارگزار:" - --#: ../authconn.py:255 ../errordialogs.py:57 --#: ../troubleshoot/PrintTestPage.py:400 -+#: ../authconn.py:252 ../errordialogs.py:56 ../errordialogs.py:70 -+#, fuzzy -+msgid "CUPS server error" -+msgstr "کارگزار:" -+ -+#: ../authconn.py:261 ../errordialogs.py:57 -+#: ../troubleshoot/PrintTestPage.py:417 - #, fuzzy, python-format - msgid "There was an error during the CUPS operation: '%s'." - msgstr "هنگام تلاش برای چاپ صفحه‌ی آزمایشی، خطایی پیش آمد." - --#: ../authconn.py:258 -+#: ../authconn.py:264 - #, fuzzy - msgid "Retry" - msgstr "آزمایش" - --#: ../authconn.py:379 ../authconn.py:381 ../errordialogs.py:65 ../pysmb.py:75 -+#: ../authconn.py:385 ../authconn.py:387 ../errordialogs.py:65 ../pysmb.py:75 - #: ../pysmb.py:77 - msgid "Not authorized" - msgstr "" - --#: ../authconn.py:382 ../pysmb.py:78 -+#: ../authconn.py:388 ../pysmb.py:78 - msgid "The password may be incorrect." - msgstr "" - --#: ../authconn.py:400 -+#: ../authconn.py:407 - #, fuzzy, python-format - msgid "Authentication (%s)" - msgstr "تأیید هویت" - --#: ../errordialogs.py:56 ../errordialogs.py:70 --#, fuzzy --msgid "CUPS server error" --msgstr "کارگزار:" -- - #: ../errordialogs.py:66 - msgid "" - "The password may be incorrect, or the server may be configured to deny " -@@ -147,7 +156,7 @@ msgstr "گذرواژه:" - msgid "Server error" - msgstr "چاپگر: " - --#: ../errordialogs.py:82 ../system-config-printer.py:1219 -+#: ../errordialogs.py:82 ../system-config-printer.py:1223 - #, fuzzy - msgid "Not connected" - msgstr "متصل به _طور محلی" -@@ -170,7 +179,7 @@ msgstr "" - msgid "_New Group from Selection" - msgstr "" - --#: ../GroupsPane.py:98 ../system-config-printer.py:393 -+#: ../GroupsPane.py:98 ../system-config-printer.py:397 - #, fuzzy - msgid "_Rename" - msgstr "_حذف" -@@ -241,7 +250,7 @@ msgid "Document" - msgstr "توضیح" - - #: ../jobviewer.py:212 ../my-default-printer.py:153 --#: ../system-config-printer.py:366 ../system-config-printer.py:1367 -+#: ../system-config-printer.py:370 ../system-config-printer.py:1371 - #: ../troubleshoot/PrintTestPage.py:84 - #, fuzzy - msgid "Printer" -@@ -280,8 +289,8 @@ msgstr "" - - #: ../jobviewer.py:386 ../jobviewer.py:451 ../jobviewer.py:452 - #: ../jobviewer.py:492 ../jobviewer.py:600 ../jobviewer.py:727 --#: ../jobviewer.py:1196 ../jobviewer.py:1222 ../system-config-printer.py:2546 --#: ../glade/NewPrinterWindow.glade.h:106 -+#: ../jobviewer.py:1196 ../jobviewer.py:1222 ../system-config-printer.py:2556 -+#: ../glade/NewPrinterWindow.glade.h:105 - #: ../troubleshoot/ChooseNetworkPrinter.py:101 - #: ../troubleshoot/ChooseNetworkPrinter.py:102 - #: ../troubleshoot/ChooseNetworkPrinter.py:105 -@@ -373,12 +382,12 @@ msgstr "" - msgid "Pending" - msgstr "در حال چاپ" - --#: ../jobviewer.py:591 ../system-config-printer.py:186 -+#: ../jobviewer.py:591 ../system-config-printer.py:190 - #: ../troubleshoot/PrintTestPage.py:43 - msgid "Processing" - msgstr "" - --#: ../jobviewer.py:592 ../system-config-printer.py:188 -+#: ../jobviewer.py:592 ../system-config-printer.py:192 - #: ../troubleshoot/PrintTestPage.py:44 - msgid "Stopped" - msgstr "" -@@ -500,8 +509,8 @@ msgstr "تنظیم به عنوان _پی - msgid "_Set Default" - msgstr "_پیش‌فرض‌ها" - --#: ../my-default-printer.py:158 ../system-config-printer.py:423 --#: ../system-config-printer.py:3660 ../troubleshoot/ChooseNetworkPrinter.py:37 -+#: ../my-default-printer.py:158 ../system-config-printer.py:427 -+#: ../system-config-printer.py:3675 ../troubleshoot/ChooseNetworkPrinter.py:37 - #: ../troubleshoot/ChoosePrinter.py:38 - #, fuzzy - msgid "Location" -@@ -535,7 +544,7 @@ msgstr "این شرح چاپگر است. - msgid "Authenticated" - msgstr "تأیید هویت" - --#: ../ppdippstr.py:50 ../system-config-printer.py:6259 -+#: ../ppdippstr.py:50 ../system-config-printer.py:6207 - msgid "None" - msgstr "هیچ‌کدام" - -@@ -758,217 +767,217 @@ msgstr "" - msgid "1200 dpi, photo, black + color cartridge, photo paper" - msgstr "" - --#: ../system-config-printer.py:127 -+#: ../system-config-printer.py:131 - msgid "To do this, select System->Administration->Firewall from the main menu." - msgstr "" - --#: ../system-config-printer.py:185 -+#: ../system-config-printer.py:189 - msgid "Idle" - msgstr "" - --#: ../system-config-printer.py:187 -+#: ../system-config-printer.py:191 - msgid "Busy" - msgstr "" - --#: ../system-config-printer.py:372 ../system-config-printer.py:1373 -+#: ../system-config-printer.py:376 ../system-config-printer.py:1377 - #, fuzzy - msgid "Class" - msgstr "نام‌های مستعار" - --#: ../system-config-printer.py:399 -+#: ../system-config-printer.py:403 - #, fuzzy - msgid "Set As De_fault" - msgstr "_پیش‌فرض‌ها" - --#: ../system-config-printer.py:403 -+#: ../system-config-printer.py:407 - #, fuzzy - msgid "_Create class" - msgstr "چاپگر Jetdirect" - --#: ../system-config-printer.py:405 -+#: ../system-config-printer.py:409 - #, fuzzy - msgid "View Print _Queue" - msgstr "صف چاپ خام" - --#: ../system-config-printer.py:407 -+#: ../system-config-printer.py:411 - msgid "_Add to Group" - msgstr "" - --#: ../system-config-printer.py:409 -+#: ../system-config-printer.py:413 - msgid "Save Results as _Group" - msgstr "" - --#: ../system-config-printer.py:411 -+#: ../system-config-printer.py:415 - msgid "Save Filter as _Search Group" - msgstr "" - --#: ../system-config-printer.py:415 -+#: ../system-config-printer.py:419 - msgid "E_nabled" - msgstr "" - --#: ../system-config-printer.py:417 -+#: ../system-config-printer.py:421 - #, fuzzy - msgid "_Shared" - msgstr "اشتراکی" - --#: ../system-config-printer.py:421 ../troubleshoot/ChooseNetworkPrinter.py:35 -+#: ../system-config-printer.py:425 ../troubleshoot/ChooseNetworkPrinter.py:35 - #: ../troubleshoot/ChoosePrinter.py:36 ../troubleshoot/DeviceListed.py:36 - msgid "Name" - msgstr "نام" - --#: ../system-config-printer.py:422 -+#: ../system-config-printer.py:426 - #, fuzzy - msgid "Description" - msgstr "شرح" - --#: ../system-config-printer.py:424 -+#: ../system-config-printer.py:428 - msgid "Manufacturer / Model" - msgstr "" - - #. Printer state reasons list --#: ../system-config-printer.py:499 -+#: ../system-config-printer.py:503 - msgid "Message" - msgstr "" - --#: ../system-config-printer.py:534 -+#: ../system-config-printer.py:538 - msgid "Problems?" - msgstr "" - --#: ../system-config-printer.py:637 ../system-config-printer.py:639 -+#: ../system-config-printer.py:641 ../system-config-printer.py:643 - msgid "Members of this class" - msgstr "" - --#: ../system-config-printer.py:638 ../system-config-printer.py:640 -+#: ../system-config-printer.py:642 ../system-config-printer.py:644 - msgid "Others" - msgstr "" - --#: ../system-config-printer.py:641 -+#: ../system-config-printer.py:645 - #, fuzzy - msgid "Devices" - msgstr "دستگاه" - --#: ../system-config-printer.py:642 -+#: ../system-config-printer.py:646 - #, fuzzy - msgid "Connections" - msgstr "توضیح" - --#: ../system-config-printer.py:643 -+#: ../system-config-printer.py:647 - msgid "Makes" - msgstr "" - --#: ../system-config-printer.py:644 -+#: ../system-config-printer.py:648 - #, fuzzy - msgid "Models" - msgstr "مدل" - --#: ../system-config-printer.py:645 -+#: ../system-config-printer.py:649 - #, fuzzy - msgid "Drivers" - msgstr "گرداننده" - --#: ../system-config-printer.py:646 ../glade/NewPrinterWindow.glade.h:55 -+#: ../system-config-printer.py:650 ../glade/NewPrinterWindow.glade.h:54 - #, fuzzy - msgid "Downloadable Drivers" - msgstr "گرداننده‌های موجود:" - --#: ../system-config-printer.py:647 -+#: ../system-config-printer.py:651 - #, fuzzy - msgid "Users" - msgstr "کاربر" - --#: ../system-config-printer.py:682 -+#: ../system-config-printer.py:686 - msgid "Automatic rotation" - msgstr "" - --#: ../system-config-printer.py:989 -+#: ../system-config-printer.py:993 - #, fuzzy, python-format - msgid "Printer Properties - '%s' on %s" - msgstr "گزینه‌های صافی" - - #. The Conflict button was pressed. --#: ../system-config-printer.py:996 -+#: ../system-config-printer.py:1000 - msgid "" - "There are conflicting options.\n" - "Changes can only be applied after\n" - "these conflicts are resolved." - msgstr "" - --#: ../system-config-printer.py:1214 -+#: ../system-config-printer.py:1218 - #, python-format - msgid "Printer configuration - %s" - msgstr "پیکربندی چاپگر ـ %s" - --#: ../system-config-printer.py:1217 -+#: ../system-config-printer.py:1221 - #, python-format - msgid "Connected to %s" - msgstr "" - - #. Update our copy of the printer's settings. --#: ../system-config-printer.py:1257 ../system-config-printer.py:2042 -+#: ../system-config-printer.py:1261 ../system-config-printer.py:2046 - msgid "obtaining queue details" - msgstr "" - --#: ../system-config-printer.py:1295 -+#: ../system-config-printer.py:1299 - msgid "Remove from Group" - msgstr "" - --#: ../system-config-printer.py:1361 -+#: ../system-config-printer.py:1365 - #, fuzzy - msgid "Network printer (discovered)" - msgstr "چاپگر:" - --#: ../system-config-printer.py:1364 -+#: ../system-config-printer.py:1368 - msgid "Network class (discovered)" - msgstr "" - --#: ../system-config-printer.py:1370 ../system-config-printer.py:5524 --#: ../system-config-printer.py:5594 ../system-config-printer.py:5596 -+#: ../system-config-printer.py:1374 ../system-config-printer.py:5519 -+#: ../system-config-printer.py:5589 ../system-config-printer.py:5591 - msgid "Fax" - msgstr "" - --#: ../system-config-printer.py:1376 ../system-config-printer.py:1382 -+#: ../system-config-printer.py:1380 ../system-config-printer.py:1386 - #: ../troubleshoot/LocalOrRemote.py:30 - #, fuzzy - msgid "Network printer" - msgstr "چاپگر:" - --#: ../system-config-printer.py:1379 -+#: ../system-config-printer.py:1383 - #, fuzzy - msgid "Network print share" - msgstr "چاپگر:" - --#: ../system-config-printer.py:1508 ../glade/ConnectingDialog.glade.h:2 -+#: ../system-config-printer.py:1512 ../glade/ConnectingDialog.glade.h:2 - #, no-c-format, python-format - msgid "Opening connection to %s" - msgstr "" - --#: ../system-config-printer.py:1887 -+#: ../system-config-printer.py:1891 - msgid "Installable Options" - msgstr "" - --#: ../system-config-printer.py:1888 -+#: ../system-config-printer.py:1892 - #: ../glade/PrinterPropertiesDialog.glade.h:109 - #, fuzzy - msgid "Printer Options" - msgstr "گزینه‌های صافی" - --#: ../system-config-printer.py:1924 -+#: ../system-config-printer.py:1928 - #, python-format - msgid "modifying class %s" - msgstr "" - --#: ../system-config-printer.py:1926 ../system-config-printer.py:3019 --#: ../system-config-printer.py:3044 ../system-config-printer.py:6547 --#: ../system-config-printer.py:6559 ../system-config-printer.py:6581 -+#: ../system-config-printer.py:1930 ../system-config-printer.py:3037 -+#: ../system-config-printer.py:3062 ../system-config-printer.py:6495 -+#: ../system-config-printer.py:6507 ../system-config-printer.py:6529 - #, fuzzy, python-format - msgid "modifying printer %s" - msgstr "اضافه کردن یک صف چاپ جدید" - --#: ../system-config-printer.py:1941 -+#: ../system-config-printer.py:1945 - msgid "This will delete this class!" - msgstr "" - --#: ../system-config-printer.py:1942 -+#: ../system-config-printer.py:1946 - msgid "Proceed anyway?" - msgstr "" - -@@ -976,72 +985,72 @@ msgstr "" - #. but we have never fetched the server settings to see whether - #. the server is publishing shared printers. Fetch the settings - #. now so that we can update the "not published" label if necessary. --#: ../system-config-printer.py:2030 ../system-config-printer.py:3203 -+#: ../system-config-printer.py:2034 ../system-config-printer.py:3221 - #, fuzzy - msgid "fetching server settings" - msgstr "گزینه‌های گرداننده" - --#: ../system-config-printer.py:2100 -+#: ../system-config-printer.py:2104 - #, fuzzy - msgid "Set Default Printer" - msgstr "این شرح چاپگر است." - --#: ../system-config-printer.py:2102 -+#: ../system-config-printer.py:2106 - #, fuzzy - msgid "Do you want to set this as the system-wide default printer?" - msgstr "" - "آیا می‌خواهید تغییراتی را که در\n" - "پیکربندی چاپگر خود داده‌اید ذخیره کنید؟" - --#: ../system-config-printer.py:2104 -+#: ../system-config-printer.py:2108 - #, fuzzy - msgid "Set as the _system-wide default printer" - msgstr "این شرح چاپگر است." - --#: ../system-config-printer.py:2106 -+#: ../system-config-printer.py:2110 - msgid "_Clear my personal default setting" - msgstr "" - --#: ../system-config-printer.py:2107 -+#: ../system-config-printer.py:2111 - #, fuzzy - msgid "Set as my _personal default printer" - msgstr "این شرح چاپگر است." - --#: ../system-config-printer.py:2112 -+#: ../system-config-printer.py:2116 - #, fuzzy - msgid "setting default printer" - msgstr "این شرح چاپگر است." - --#: ../system-config-printer.py:2169 -+#: ../system-config-printer.py:2173 - #, fuzzy - msgid "printing test page" - msgstr "یادداشت‌های چاپگر:" - --#: ../system-config-printer.py:2182 ../system-config-printer.py:2217 --#: ../system-config-printer.py:5418 -+#: ../system-config-printer.py:2186 ../system-config-printer.py:2221 -+#: ../system-config-printer.py:5413 - msgid "Not possible" - msgstr "" - --#: ../system-config-printer.py:2183 ../system-config-printer.py:2218 -+#: ../system-config-printer.py:2187 ../system-config-printer.py:2222 - msgid "" - "The remote server did not accept the print job, most likely because the " - "printer is not shared." - msgstr "" - --#: ../system-config-printer.py:2195 ../system-config-printer.py:2210 -+#: ../system-config-printer.py:2199 ../system-config-printer.py:2214 - msgid "Submitted" - msgstr "" - --#: ../system-config-printer.py:2196 -+#: ../system-config-printer.py:2200 - #, python-format - msgid "Test page submitted as job %d" - msgstr "" - --#: ../system-config-printer.py:2203 -+#: ../system-config-printer.py:2207 - msgid "sending maintenance command" - msgstr "" - --#: ../system-config-printer.py:2211 -+#: ../system-config-printer.py:2215 - #, python-format - msgid "Maintenance command submitted as job %d" - msgstr "" -@@ -1049,11 +1058,11 @@ msgstr "" - #. The underlying cupsGetPPD2() function returned NULL without - #. setting an IPP error, so it'll be something like a failed - #. connection. --#: ../system-config-printer.py:2285 ../system-config-printer.py:2381 -+#: ../system-config-printer.py:2289 ../system-config-printer.py:2385 - msgid "Error" - msgstr "خطا" - --#: ../system-config-printer.py:2286 -+#: ../system-config-printer.py:2290 - #, fuzzy - msgid "There was a problem connecting to the CUPS server." - msgstr "" -@@ -1061,68 +1070,68 @@ msgstr "" - "صف «%s» وجود داشت:\n" - "\n" - --#: ../system-config-printer.py:2382 -+#: ../system-config-printer.py:2386 - #, python-format - msgid "Option '%s' has value '%s' and cannot be edited." - msgstr "" - --#: ../system-config-printer.py:2466 -+#: ../system-config-printer.py:2476 - msgid "Marker levels are not reported for this printer." - msgstr "" - --#: ../system-config-printer.py:2763 -+#: ../system-config-printer.py:2773 - #, fuzzy - msgid "Cannot Rename" - msgstr "_حذف" - --#: ../system-config-printer.py:2764 -+#: ../system-config-printer.py:2774 - #, fuzzy - msgid "There are queued jobs." - msgstr "هیچ گزینه‌ای برای این گرداننده موجود نیست." - --#: ../system-config-printer.py:2822 -+#: ../system-config-printer.py:2840 - #, fuzzy - msgid "renaming printer" - msgstr "اضافه کردن یک صف چاپ جدید" - - #. for classes make sure all members - #. will get added --#: ../system-config-printer.py:2907 -+#: ../system-config-printer.py:2925 - #, fuzzy - msgid "copying printer" - msgstr "اضافه کردن یک صف چاپ جدید" - --#: ../system-config-printer.py:2971 -+#: ../system-config-printer.py:2989 - #, fuzzy, python-format - msgid "Really delete class '%s'?" - msgstr "واقعاً «%s» حذف شود؟" - --#: ../system-config-printer.py:2973 -+#: ../system-config-printer.py:2991 - #, fuzzy, python-format - msgid "Really delete printer '%s'?" - msgstr "واقعاً «%s» حذف شود؟" - --#: ../system-config-printer.py:2975 -+#: ../system-config-printer.py:2993 - #, fuzzy - msgid "Really delete selected destinations?" - msgstr "واقعاً «%s» حذف شود؟" - --#: ../system-config-printer.py:2996 -+#: ../system-config-printer.py:3014 - #, fuzzy, python-format - msgid "deleting printer %s" - msgstr "اضافه کردن یک صف چاپ جدید" - --#: ../system-config-printer.py:3070 -+#: ../system-config-printer.py:3088 - msgid "Publish Shared Printers" - msgstr "" - --#: ../system-config-printer.py:3071 -+#: ../system-config-printer.py:3089 - msgid "" - "Shared printers are not available to other people unless the 'Publish shared " - "printers' option is enabled in the server settings." - msgstr "" - --#: ../system-config-printer.py:3264 -+#: ../system-config-printer.py:3282 - #, fuzzy - msgid "modifying server settings" - msgstr "گزینه‌های گرداننده" -@@ -1133,109 +1142,109 @@ msgstr "گزینه‌های گردانن - #. be unblocked. Unfortunately, this is not yet possible - #. (bug #440469). However, we can display a dialog to suggest - #. that now might be a good time to review the firewall settings. --#: ../system-config-printer.py:3289 -+#: ../system-config-printer.py:3307 - #, fuzzy - msgid "Review Firewall" - msgstr "پرونده‌ی دستگاه" - --#: ../system-config-printer.py:3290 -+#: ../system-config-printer.py:3308 - msgid "" - "You may need to adjust the firewall to allow network printing to this " - "computer." - msgstr "" - --#: ../system-config-printer.py:3623 -+#: ../system-config-printer.py:3638 - msgid "Browsing not available (pysmbc not installed)" - msgstr "" - - #. SMB list columns --#: ../system-config-printer.py:3629 -+#: ../system-config-printer.py:3644 - msgid "Share" - msgstr "اشتراک" - --#: ../system-config-printer.py:3635 -+#: ../system-config-printer.py:3650 - msgid "Comment" - msgstr "توضیح" - - #. IPP list columns --#: ../system-config-printer.py:3654 -+#: ../system-config-printer.py:3669 - msgid "Queue" - msgstr "صف" - --#: ../system-config-printer.py:3668 -+#: ../system-config-printer.py:3683 - msgid "" - "PostScript Printer Description files (*.ppd, *.PPD, *.ppd.gz, *.PPD.gz, *." - "PPD.GZ)" - msgstr "" - --#: ../system-config-printer.py:3677 -+#: ../system-config-printer.py:3692 - msgid "All files (*)" - msgstr "" - --#: ../system-config-printer.py:3713 ../system-config-printer.py:5970 --#: ../system-config-printer.py:6008 ../applet.py:124 -+#: ../system-config-printer.py:3728 ../system-config-printer.py:5918 -+#: ../system-config-printer.py:5956 ../applet.py:124 - #, fuzzy - msgid "Search" - msgstr "هشدار" - --#: ../system-config-printer.py:3736 ../system-config-printer.py:3760 --#: ../glade/NewPrinterWindow.glade.h:74 -+#: ../system-config-printer.py:3751 ../system-config-printer.py:3775 -+#: ../glade/NewPrinterWindow.glade.h:73 - #, fuzzy - msgid "New Printer" - msgstr "چاپگر:" - --#: ../system-config-printer.py:3747 -+#: ../system-config-printer.py:3762 - msgid "New Class" - msgstr "" - --#: ../system-config-printer.py:3752 -+#: ../system-config-printer.py:3767 - msgid "Change Device URI" - msgstr "" - --#: ../system-config-printer.py:3758 -+#: ../system-config-printer.py:3773 - #, fuzzy - msgid "Change Driver" - msgstr "تغییر نوع" - --#: ../system-config-printer.py:3927 ../system-config-printer.py:3993 --#: ../system-config-printer.py:4289 ../system-config-printer.py:4487 --#: ../system-config-printer.py:5772 ../system-config-printer.py:5995 -+#: ../system-config-printer.py:3942 ../system-config-printer.py:4008 -+#: ../system-config-printer.py:4304 ../system-config-printer.py:4502 -+#: ../system-config-printer.py:5762 ../system-config-printer.py:5943 - #, fuzzy - msgid "Searching" - msgstr "هشدار" - --#: ../system-config-printer.py:3928 -+#: ../system-config-printer.py:3943 - #, fuzzy - msgid "Searching for downloadable drivers" - msgstr "مشخصات به‌اشتراک‌گذاری" - --#: ../system-config-printer.py:3994 ../system-config-printer.py:4290 -+#: ../system-config-printer.py:4009 ../system-config-printer.py:4305 - #, fuzzy - msgid "Searching for drivers" - msgstr "مشخصات به‌اشتراک‌گذاری" - --#: ../system-config-printer.py:4488 ../system-config-printer.py:5773 -+#: ../system-config-printer.py:4503 ../system-config-printer.py:5763 - #, fuzzy - msgid "Searching for printers" - msgstr "مشخصات به‌اشتراک‌گذاری" - --#: ../system-config-printer.py:4497 -+#: ../system-config-printer.py:4512 - #, fuzzy - msgid "fetching device list" - msgstr "گزینه‌های گرداننده" - - #. Tell the user why he needs the plugin --#: ../system-config-printer.py:4579 -+#: ../system-config-printer.py:4594 - msgid "For this printer a proprietary driver plugin from HP is available.\n" - msgstr "" - --#: ../system-config-printer.py:4582 -+#: ../system-config-printer.py:4597 - msgid "" - "The installation of the plugin is required for your printer to work.\n" - "\n" - msgstr "" - --#: ../system-config-printer.py:4585 -+#: ../system-config-printer.py:4600 - msgid "" - "Installing the plugin is optional, it completes or enhances the " - "functionality\n" -@@ -1243,141 +1252,137 @@ msgid "" - "\n" - msgstr "" - --#: ../system-config-printer.py:4589 -+#: ../system-config-printer.py:4604 - msgid "The plugin provides the following features:\n" - msgstr "" - --#: ../system-config-printer.py:4592 -+#: ../system-config-printer.py:4607 - msgid " - Printing support\n" - msgstr "" - --#: ../system-config-printer.py:4595 -+#: ../system-config-printer.py:4610 - msgid " - Faster printing\n" - msgstr "" - --#: ../system-config-printer.py:4598 -+#: ../system-config-printer.py:4613 - msgid " - Better printout quality\n" - msgstr "" - --#: ../system-config-printer.py:4601 -+#: ../system-config-printer.py:4616 - msgid " - Extra printing features\n" - msgstr "" - --#: ../system-config-printer.py:4604 -+#: ../system-config-printer.py:4619 - msgid " - Scanning support\n" - msgstr "" - --#: ../system-config-printer.py:4607 -+#: ../system-config-printer.py:4622 - msgid " - Faster scanning\n" - msgstr "" - --#: ../system-config-printer.py:4610 -+#: ../system-config-printer.py:4625 - msgid " - Better scanning image quality\n" - msgstr "" - --#: ../system-config-printer.py:4613 -+#: ../system-config-printer.py:4628 - msgid " - Faxing support\n" - msgstr "" - --#: ../system-config-printer.py:4616 -+#: ../system-config-printer.py:4631 - msgid " - Extra fax features\n" - msgstr "" - --#: ../system-config-printer.py:4619 -+#: ../system-config-printer.py:4634 - msgid " - Better Input/Output support\n" - msgstr "" - --#: ../system-config-printer.py:4622 -+#: ../system-config-printer.py:4637 - msgid " - Extra user interface features\n" - msgstr "" - --#: ../system-config-printer.py:4625 -+#: ../system-config-printer.py:4640 - msgid " - Other extra features\n" - msgstr "" - --#: ../system-config-printer.py:4630 -+#: ../system-config-printer.py:4645 - #, fuzzy - msgid "Install plugin" - msgstr "گزینه‌های صافی" - --#: ../system-config-printer.py:4631 -+#: ../system-config-printer.py:4646 - #, fuzzy - msgid "Do not set up printer" - msgstr "چاپگر:" - --#: ../system-config-printer.py:4632 -+#: ../system-config-printer.py:4647 - msgid "Set up without plugin" - msgstr "" - --#: ../system-config-printer.py:4634 ../troubleshoot/PrintTestPage.py:118 -+#: ../system-config-printer.py:4649 ../troubleshoot/PrintTestPage.py:118 - msgid "Yes" - msgstr "بله" - --#: ../system-config-printer.py:4635 ../troubleshoot/PrintTestPage.py:119 -+#: ../system-config-printer.py:4650 ../troubleshoot/PrintTestPage.py:119 - msgid "No" - msgstr "نه" - --#: ../system-config-printer.py:4809 ../system-config-printer.py:4813 -+#: ../system-config-printer.py:4824 ../system-config-printer.py:4828 - msgid " (Current)" - msgstr "" - --#: ../system-config-printer.py:4845 --msgid "HP Printer (HPLIP)" --msgstr "" -- --#: ../system-config-printer.py:4886 -+#: ../system-config-printer.py:4881 - msgid "Other" - msgstr "" - - #. device-info - #. PhysicalDevice obj - #. Separator? --#: ../system-config-printer.py:4902 -+#: ../system-config-printer.py:4897 - #, fuzzy - msgid "Network Printer" - msgstr "چاپگر:" - --#: ../system-config-printer.py:4906 -+#: ../system-config-printer.py:4901 - #, fuzzy - msgid "Find Network Printer" - msgstr "چاپگر:" - --#: ../system-config-printer.py:4979 ../system-config-printer.py:5376 -+#: ../system-config-printer.py:4974 ../system-config-printer.py:5371 - msgid "Scanning..." - msgstr "" - --#: ../system-config-printer.py:5034 ../system-config-printer.py:5798 -+#: ../system-config-printer.py:5029 - #, fuzzy - msgid "No Print Shares" - msgstr "چاپگر:" - --#: ../system-config-printer.py:5035 -+#: ../system-config-printer.py:5030 - msgid "" - "There were no print shares found. Please check that the Samba service is " - "marked as trusted in your firewall configuration." - msgstr "" - --#: ../system-config-printer.py:5296 ../system-config-printer.py:5357 -+#: ../system-config-printer.py:5291 ../system-config-printer.py:5352 - msgid "Print Share Verified" - msgstr "" - --#: ../system-config-printer.py:5297 ../system-config-printer.py:5358 -+#: ../system-config-printer.py:5292 ../system-config-printer.py:5353 - msgid "This print share is accessible." - msgstr "" - --#: ../system-config-printer.py:5302 ../system-config-printer.py:5362 -+#: ../system-config-printer.py:5297 ../system-config-printer.py:5357 - msgid "This print share is not accessible." - msgstr "" - --#: ../system-config-printer.py:5305 -+#: ../system-config-printer.py:5300 - msgid "Print Share Inaccessible" - msgstr "" - --#: ../system-config-printer.py:5361 -+#: ../system-config-printer.py:5356 - msgid "Inaccessible" - msgstr "" - --#: ../system-config-printer.py:5419 -+#: ../system-config-printer.py:5414 - #, fuzzy, python-format - msgid "It is not possible to obtain a list of queues from '%s'." - msgstr "" -@@ -1385,158 +1390,154 @@ msgstr "" - "صف «%s» وجود داشت:\n" - "\n" - --#: ../system-config-printer.py:5421 -+#: ../system-config-printer.py:5416 - msgid "" - "Obtaining a list of queues is a CUPS extension to IPP. Network printers do " - "not support it." - msgstr "" - --#: ../system-config-printer.py:5424 -+#: ../system-config-printer.py:5419 - #, fuzzy - msgid "No queues" - msgstr "صف _جدید" - --#: ../system-config-printer.py:5425 -+#: ../system-config-printer.py:5420 - #, fuzzy - msgid "There are no queues available." - msgstr "هیچ گزینه‌ای برای این گرداننده موجود نیست." - --#: ../system-config-printer.py:5516 -+#: ../system-config-printer.py:5511 - msgid "Parallel Port" - msgstr "" - --#: ../system-config-printer.py:5518 -+#: ../system-config-printer.py:5513 - #, fuzzy - msgid "Serial Port" - msgstr "عمومی" - --#: ../system-config-printer.py:5520 -+#: ../system-config-printer.py:5515 - msgid "USB" - msgstr "" - --#: ../system-config-printer.py:5522 ../system-config-printer.py:5525 -+#: ../system-config-printer.py:5517 ../system-config-printer.py:5520 - msgid "HP Linux Imaging and Printing (HPLIP)" - msgstr "" - --#: ../system-config-printer.py:5527 -+#: ../system-config-printer.py:5522 - msgid "Hardware Abstraction Layer (HAL)" - msgstr "" - --#: ../system-config-printer.py:5529 -+#: ../system-config-printer.py:5524 - #, fuzzy - msgid "AppSocket/HP JetDirect" - msgstr "‏JetDirect شبکه‌ای" - --#: ../system-config-printer.py:5538 -+#: ../system-config-printer.py:5533 - #, python-format - msgid "LPD/LPR queue '%s'" - msgstr "" - --#: ../system-config-printer.py:5540 -+#: ../system-config-printer.py:5535 - msgid "LPD/LPR queue" - msgstr "" - --#: ../system-config-printer.py:5543 -+#: ../system-config-printer.py:5538 - #, fuzzy - msgid "Windows Printer via SAMBA" - msgstr "داده‌های چاپگر ویندوزی (SMB)" - --#: ../system-config-printer.py:5545 ../glade/NewPrinterWindow.glade.h:66 -+#: ../system-config-printer.py:5540 ../glade/NewPrinterWindow.glade.h:65 - #, fuzzy - msgid "IPP" - msgstr "‏IP:" - --#: ../system-config-printer.py:5547 -+#: ../system-config-printer.py:5542 - msgid "HTTP" - msgstr "" - --#: ../system-config-printer.py:5632 -+#: ../system-config-printer.py:5624 - msgid "A printer connected to the parallel port." - msgstr "" - --#: ../system-config-printer.py:5634 -+#: ../system-config-printer.py:5626 - msgid "A printer connected to a USB port." - msgstr "" - --#: ../system-config-printer.py:5636 -+#: ../system-config-printer.py:5628 - msgid "" - "HPLIP software driving a printer, or the printer function of a multi-" - "function device." - msgstr "" - --#: ../system-config-printer.py:5639 -+#: ../system-config-printer.py:5631 - msgid "" - "HPLIP software driving a fax machine, or the fax function of a multi-" - "function device." - msgstr "" - --#: ../system-config-printer.py:5642 -+#: ../system-config-printer.py:5634 - msgid "Local printer detected by the Hardware Abstraction Layer (HAL)." - msgstr "" - --#: ../system-config-printer.py:5799 --msgid "HPLIP cannot find the device." --msgstr "" -- --#: ../system-config-printer.py:5881 -+#: ../system-config-printer.py:5831 - msgid "No printer was found at that address." - msgstr "" - --#: ../system-config-printer.py:6020 -+#: ../system-config-printer.py:5968 - #, fuzzy - msgid "-- Select from search results --" - msgstr "شما باید یک مدل چاپگر انتخاب کنید." - --#: ../system-config-printer.py:6022 -+#: ../system-config-printer.py:5970 - msgid "-- No matches found --" - msgstr "" - --#: ../system-config-printer.py:6203 -+#: ../system-config-printer.py:6151 - #, fuzzy - msgid " (recommended)" - msgstr "" - "(گرداننده‌ی توصیه شده\n" - "‏%s است)" - --#: ../system-config-printer.py:6217 -+#: ../system-config-printer.py:6165 - msgid "This PPD is generated by foomatic." - msgstr "" - --#: ../system-config-printer.py:6241 -+#: ../system-config-printer.py:6189 - #, fuzzy - msgid "OpenPrinting" - msgstr "در حال چاپ" - --#: ../system-config-printer.py:6252 -+#: ../system-config-printer.py:6200 - msgid "Distributable" - msgstr "" - --#: ../system-config-printer.py:6293 -+#: ../system-config-printer.py:6241 - msgid ", " - msgstr "" - --#: ../system-config-printer.py:6298 -+#: ../system-config-printer.py:6246 - #, python-format - msgid "" - "\n" - "(%s)" - msgstr "" - --#: ../system-config-printer.py:6303 -+#: ../system-config-printer.py:6251 - msgid "No support contacts known" - msgstr "" - --#: ../system-config-printer.py:6307 ../system-config-printer.py:6320 -+#: ../system-config-printer.py:6255 ../system-config-printer.py:6268 - #, fuzzy - msgid "Not specified." - msgstr "باید یک دستگاه مشخص کنید." - - #. Foomatic database problem of some sort. --#: ../system-config-printer.py:6360 -+#: ../system-config-printer.py:6308 - msgid "Database error" - msgstr "" - --#: ../system-config-printer.py:6361 -+#: ../system-config-printer.py:6309 - #, python-format - msgid "The '%s' driver cannot be used with printer '%s %s'." - msgstr "" -@@ -1544,65 +1545,65 @@ msgstr "" - #. This printer references some XML that is not - #. installed by default. Point the user at the - #. package they need to install. --#: ../system-config-printer.py:6371 -+#: ../system-config-printer.py:6319 - #, python-format - msgid "You will need to install the '%s' package in order to use this driver." - msgstr "" - - #. This error came from trying to open the PPD file. --#: ../system-config-printer.py:6378 -+#: ../system-config-printer.py:6326 - msgid "PPD error" - msgstr "" - --#: ../system-config-printer.py:6380 -+#: ../system-config-printer.py:6328 - msgid "Failed to read PPD file. Possible reason follows:" - msgstr "" - - #. Failed to get PPD downloaded from OpenPrinting XXX --#: ../system-config-printer.py:6397 -+#: ../system-config-printer.py:6345 - #, fuzzy - msgid "Downloadable drivers" - msgstr "گرداننده‌های موجود:" - --#: ../system-config-printer.py:6398 -+#: ../system-config-printer.py:6346 - msgid "Failed to download PPD." - msgstr "" - --#: ../system-config-printer.py:6405 -+#: ../system-config-printer.py:6353 - #, fuzzy - msgid "fetching PPD" - msgstr "تغییر نوع" - --#: ../system-config-printer.py:6434 ../system-config-printer.py:6472 -+#: ../system-config-printer.py:6382 ../system-config-printer.py:6420 - msgid "No Installable Options" - msgstr "" - --#: ../system-config-printer.py:6520 -+#: ../system-config-printer.py:6468 - #, fuzzy, python-format - msgid "adding printer %s" - msgstr "اضافه کردن یک صف چاپ جدید" - --#: ../system-config-printer.py:6669 -+#: ../system-config-printer.py:6617 - #, fuzzy - msgid "Would you like to print a test page?" - msgstr "آیا می‌خواهید یک صفحه‌ی آزمایشی چاپ کنید؟" - --#: ../system-config-printer.py:6722 -+#: ../system-config-printer.py:6670 - #, fuzzy - msgid "Install driver" - msgstr "گرداننده‌ی چاپگر" - --#: ../system-config-printer.py:6723 ../troubleshoot/CheckPPDSanity.py:131 -+#: ../system-config-printer.py:6671 ../troubleshoot/CheckPPDSanity.py:131 - #, python-format - msgid "Printer '%s' requires the %s package but it is not currently installed." - msgstr "" - --#: ../system-config-printer.py:6739 -+#: ../system-config-printer.py:6687 - #, fuzzy - msgid "Missing driver" - msgstr "گرداننده‌ی چاپگر" - --#: ../system-config-printer.py:6740 -+#: ../system-config-printer.py:6688 - #, python-format - msgid "" - "Printer '%s' requires the '%s' program but it is not currently installed. " -@@ -1731,116 +1732,111 @@ msgstr "دستگاه چاپگر" - - #: ../glade/NewPrinterWindow.glade.h:5 - #, fuzzy --msgid "HP Printer (HPLIP) via network" --msgstr "مدل چاپگر" -- --#: ../glade/NewPrinterWindow.glade.h:6 --#, fuzzy - msgid "IPP Printer" - msgstr "مدل چاپگر" - --#: ../glade/NewPrinterWindow.glade.h:7 -+#: ../glade/NewPrinterWindow.glade.h:6 - #, fuzzy - msgid "License Terms" - msgstr "مدل چاپگر" - --#: ../glade/NewPrinterWindow.glade.h:8 -+#: ../glade/NewPrinterWindow.glade.h:7 - msgid "Location of the LPD network printer" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:9 -+#: ../glade/NewPrinterWindow.glade.h:8 - msgid "Location of the network printer" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:10 -+#: ../glade/NewPrinterWindow.glade.h:9 - msgid "Location (optional)" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:11 -+#: ../glade/NewPrinterWindow.glade.h:10 - #, fuzzy - msgid "Network Printer" - msgstr "چاپگر:" - --#: ../glade/NewPrinterWindow.glade.h:12 -+#: ../glade/NewPrinterWindow.glade.h:11 - #, fuzzy - msgid "Note" - msgstr "مدل چاپگر" - --#: ../glade/NewPrinterWindow.glade.h:13 -+#: ../glade/NewPrinterWindow.glade.h:12 - msgid "Output Quality" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:14 -+#: ../glade/NewPrinterWindow.glade.h:13 - #, fuzzy - msgid "Printer Name" - msgstr "مدل چاپگر" - --#: ../glade/NewPrinterWindow.glade.h:15 -+#: ../glade/NewPrinterWindow.glade.h:14 - #, fuzzy - msgid "SMB Printer" - msgstr "مدل چاپگر" - --#: ../glade/NewPrinterWindow.glade.h:16 -+#: ../glade/NewPrinterWindow.glade.h:15 - #, fuzzy - msgid "Select Driver" - msgstr "مدل چاپگر" - --#: ../glade/NewPrinterWindow.glade.h:17 -+#: ../glade/NewPrinterWindow.glade.h:16 - msgid "Settings of the serial port" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:18 -+#: ../glade/NewPrinterWindow.glade.h:17 - msgid "smb://[workgroup/]server[:port]/printer" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:19 -+#: ../glade/NewPrinterWindow.glade.h:18 - msgid "Choose Class Members" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:20 -+#: ../glade/NewPrinterWindow.glade.h:19 - msgid "Choose Driver" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:21 -+#: ../glade/NewPrinterWindow.glade.h:20 - msgid "Describe Printer" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:22 -+#: ../glade/NewPrinterWindow.glade.h:21 - msgid "Existing Settings" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:23 -+#: ../glade/NewPrinterWindow.glade.h:22 - msgid "Installable Options" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:24 -+#: ../glade/NewPrinterWindow.glade.h:23 - msgid "Select Device" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:25 -+#: ../glade/NewPrinterWindow.glade.h:24 - msgid "Baud Rate" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:26 -+#: ../glade/NewPrinterWindow.glade.h:25 - msgid "Browse..." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:27 -+#: ../glade/NewPrinterWindow.glade.h:26 - #, fuzzy - msgid "Comments..." - msgstr "توضیح" - --#: ../glade/NewPrinterWindow.glade.h:28 -+#: ../glade/NewPrinterWindow.glade.h:27 - #, fuzzy - msgid "Connection" - msgstr "_کنش" - --#: ../glade/NewPrinterWindow.glade.h:29 -+#: ../glade/NewPrinterWindow.glade.h:28 - #, fuzzy - msgid "Data Bits" - msgstr "جزئیات" - --#: ../glade/NewPrinterWindow.glade.h:30 -+#: ../glade/NewPrinterWindow.glade.h:29 - msgid "" - "Default\n" - "1200\n" -@@ -1853,7 +1849,7 @@ msgid "" - "115200" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:39 -+#: ../glade/NewPrinterWindow.glade.h:38 - #, fuzzy - msgid "" - "Default\n" -@@ -1861,7 +1857,7 @@ msgid "" - "7" - msgstr "پیش‌فرض" - --#: ../glade/NewPrinterWindow.glade.h:42 -+#: ../glade/NewPrinterWindow.glade.h:41 - msgid "" - "Default\n" - "None\n" -@@ -1869,7 +1865,7 @@ msgid "" - "Even" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:46 -+#: ../glade/NewPrinterWindow.glade.h:45 - msgid "" - "Default\n" - "None\n" -@@ -1878,205 +1874,205 @@ msgid "" - "DTR/DSR (Hardware)" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:51 -+#: ../glade/NewPrinterWindow.glade.h:50 - #: ../glade/PrinterPropertiesDialog.glade.h:35 - #, fuzzy - msgid "Description:" - msgstr "شرح" - --#: ../glade/NewPrinterWindow.glade.h:52 ../troubleshoot/DeviceListed.py:40 -+#: ../glade/NewPrinterWindow.glade.h:51 ../troubleshoot/DeviceListed.py:40 - #, fuzzy - msgid "Device URI" - msgstr "دستگاه: " - --#: ../glade/NewPrinterWindow.glade.h:53 -+#: ../glade/NewPrinterWindow.glade.h:52 - #, fuzzy - msgid "Device description." - msgstr "شرح" - --#: ../glade/NewPrinterWindow.glade.h:54 -+#: ../glade/NewPrinterWindow.glade.h:53 - msgid "DirectJet" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:56 -+#: ../glade/NewPrinterWindow.glade.h:55 - #, fuzzy - msgid "Driver details" - msgstr "گرداننده" - --#: ../glade/NewPrinterWindow.glade.h:57 -+#: ../glade/NewPrinterWindow.glade.h:56 - msgid "Empty" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:58 -+#: ../glade/NewPrinterWindow.glade.h:57 - msgid "Find _Queue..." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:59 -+#: ../glade/NewPrinterWindow.glade.h:58 - msgid "Flow Control" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:60 -+#: ../glade/NewPrinterWindow.glade.h:59 - msgid "" - "For the printer you have selected there are drivers available for download." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:61 -+#: ../glade/NewPrinterWindow.glade.h:60 - msgid "Free software" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:62 -+#: ../glade/NewPrinterWindow.glade.h:61 - msgid "Graphics:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:63 -+#: ../glade/NewPrinterWindow.glade.h:62 - #, fuzzy - msgid "Host:" - msgstr "‏IP میزبان" - --#: ../glade/NewPrinterWindow.glade.h:64 -+#: ../glade/NewPrinterWindow.glade.h:63 - msgid "Human-readable description such as \"HP LaserJet with Duplexer\"" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:65 -+#: ../glade/NewPrinterWindow.glade.h:64 - msgid "Human-readable location such as \"Lab 1\"" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:67 -+#: ../glade/NewPrinterWindow.glade.h:66 - msgid "LPD" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:68 -+#: ../glade/NewPrinterWindow.glade.h:67 - msgid "License:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:69 -+#: ../glade/NewPrinterWindow.glade.h:68 - #, fuzzy - msgid "Line art:" - msgstr "یادداشت‌های چاپگر:" - --#: ../glade/NewPrinterWindow.glade.h:70 -+#: ../glade/NewPrinterWindow.glade.h:69 - #, fuzzy - msgid "Local Driver" - msgstr "ویرایش چاپگر محلی" - --#: ../glade/NewPrinterWindow.glade.h:71 -+#: ../glade/NewPrinterWindow.glade.h:70 - #, fuzzy - msgid "Make and model:" - msgstr "سازنده و مدل لازم است.\n" - --#: ../glade/NewPrinterWindow.glade.h:72 -+#: ../glade/NewPrinterWindow.glade.h:71 - msgid "Manufacturer" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:73 -+#: ../glade/NewPrinterWindow.glade.h:72 - #, fuzzy - msgid "Network" - msgstr "چاپگر:" - --#: ../glade/NewPrinterWindow.glade.h:75 -+#: ../glade/NewPrinterWindow.glade.h:74 - msgid "No, I do not accept this license" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:76 -+#: ../glade/NewPrinterWindow.glade.h:75 - msgid "Parity" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:78 -+#: ../glade/NewPrinterWindow.glade.h:77 - msgid "Patented algorithms" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:79 -+#: ../glade/NewPrinterWindow.glade.h:78 - #, fuzzy - msgid "Photo:" - msgstr "درگاه: " - --#: ../glade/NewPrinterWindow.glade.h:80 -+#: ../glade/NewPrinterWindow.glade.h:79 - msgid "Port number:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:81 -+#: ../glade/NewPrinterWindow.glade.h:80 - msgid "" - "PostScript Printer Description (PPD) files can often be found on the driver " - "disk that comes with the printer. For PostScript printers they are often " - "part of the Windows® driver." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:82 -+#: ../glade/NewPrinterWindow.glade.h:81 - #, fuzzy - msgid "Printer model:" - msgstr "مدل چاپگر" - --#: ../glade/NewPrinterWindow.glade.h:83 -+#: ../glade/NewPrinterWindow.glade.h:82 - msgid "Probe" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:84 -+#: ../glade/NewPrinterWindow.glade.h:83 - #, fuzzy - msgid "Prompt user if authentication is required" - msgstr "تأیید هویت" - --#: ../glade/NewPrinterWindow.glade.h:85 -+#: ../glade/NewPrinterWindow.glade.h:84 - msgid "Provide PPD file" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:86 -+#: ../glade/NewPrinterWindow.glade.h:85 - msgid "Queue:" - msgstr "صف:" - --#: ../glade/NewPrinterWindow.glade.h:87 -+#: ../glade/NewPrinterWindow.glade.h:86 - msgid "SCSI" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:88 -+#: ../glade/NewPrinterWindow.glade.h:87 - msgid "SMB" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:89 -+#: ../glade/NewPrinterWindow.glade.h:88 - msgid "Search for a printer driver to download" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:90 -+#: ../glade/NewPrinterWindow.glade.h:89 - #, fuzzy - msgid "Searching..." - msgstr "هشدار" - --#: ../glade/NewPrinterWindow.glade.h:91 -+#: ../glade/NewPrinterWindow.glade.h:90 - msgid "Select A File" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:92 -+#: ../glade/NewPrinterWindow.glade.h:91 - msgid "Select printer from database" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:93 -+#: ../glade/NewPrinterWindow.glade.h:92 - #, fuzzy - msgid "Serial" - msgstr "عمومی" - --#: ../glade/NewPrinterWindow.glade.h:94 -+#: ../glade/NewPrinterWindow.glade.h:93 - #, fuzzy - msgid "Set authentication details now" - msgstr "تأیید هویت" - --#: ../glade/NewPrinterWindow.glade.h:95 -+#: ../glade/NewPrinterWindow.glade.h:94 - msgid "Short name for this printer such as \"laserjet\"" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:96 -+#: ../glade/NewPrinterWindow.glade.h:95 - msgid "Supplier:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:97 -+#: ../glade/NewPrinterWindow.glade.h:96 - #, fuzzy - msgid "Support:" - msgstr "درگاه:" - --#: ../glade/NewPrinterWindow.glade.h:98 -+#: ../glade/NewPrinterWindow.glade.h:97 - #, fuzzy - msgid "Text:" - msgstr "_آزمایش" - --#: ../glade/NewPrinterWindow.glade.h:99 -+#: ../glade/NewPrinterWindow.glade.h:98 - msgid "" - "The foomatic printer database contains various manufacturer provided " - "PostScript Printer Description (PPD) files and also can generate PPD files " -@@ -2085,70 +2081,70 @@ msgid "" - "printer." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:100 -+#: ../glade/NewPrinterWindow.glade.h:99 - msgid "" - "These drivers do not come from your operating system supplier and will not " - "be covered by their commercial support. See the support and license terms " - "of the driver's supplier." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:101 -+#: ../glade/NewPrinterWindow.glade.h:100 - msgid "" - "This driver supports additional hardware that may be installed in the " - "printer." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:102 -+#: ../glade/NewPrinterWindow.glade.h:101 - msgid "" - "This is done by assuming that options with the same name do have the same " - "meaning. Settings of options that are not present in the new PPD will be " - "lost and options only present in the new PPD will be set to default." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:103 -+#: ../glade/NewPrinterWindow.glade.h:102 - msgid "" - "This way all current option settings will be lost. The default settings of " - "the new PPD will be used. " - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:104 -+#: ../glade/NewPrinterWindow.glade.h:103 - msgid "Try to copy the option settings over from the old PPD. " - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:105 -+#: ../glade/NewPrinterWindow.glade.h:104 - msgid "URI:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:107 -+#: ../glade/NewPrinterWindow.glade.h:106 - msgid "Use the new PPD (Postscript Printer Description) as is." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:109 -+#: ../glade/NewPrinterWindow.glade.h:108 - msgid "" - "With this choice no driver download will be performed. In the next steps a " - "locally installed driver will be selected." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:110 -+#: ../glade/NewPrinterWindow.glade.h:109 - msgid "Yes, I accept this license" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:111 -+#: ../glade/NewPrinterWindow.glade.h:110 - #, fuzzy - msgid "_Search" - msgstr "هشدار" - --#: ../glade/NewPrinterWindow.glade.h:112 -+#: ../glade/NewPrinterWindow.glade.h:111 - #, fuzzy - msgid "_Verify..." - msgstr "مشخص کردن..." - --#: ../glade/NewPrinterWindow.glade.h:113 -+#: ../glade/NewPrinterWindow.glade.h:112 - #: ../glade/PrinterPropertiesDialog.glade.h:128 - msgid "move left" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:114 -+#: ../glade/NewPrinterWindow.glade.h:113 - #: ../glade/PrinterPropertiesDialog.glade.h:129 - msgid "move right" - msgstr "" -@@ -3061,7 +3057,7 @@ msgstr "" - msgid "Remember to load paper of type '%s' into the printer first." - msgstr "" - --#: ../troubleshoot/PrintTestPage.py:399 -+#: ../troubleshoot/PrintTestPage.py:416 - msgid "Error submitting test page" - msgstr "" - -@@ -3266,6 +3262,10 @@ msgid "Select default printer" - msgstr "این شرح چاپگر است." - - #, fuzzy -+#~ msgid "HP Printer (HPLIP) via network" -+#~ msgstr "مدل چاپگر" -+ -+#, fuzzy - #~ msgid "Not Found" - #~ msgstr "متصل به _طور محلی" - -diff -up system-config-printer-1.1.5/po/fi.po.git-1.1.x system-config-printer-1.1.5/po/fi.po ---- system-config-printer-1.1.5/po/fi.po.git-1.1.x 2009-03-03 22:21:46.000000000 +0000 -+++ system-config-printer-1.1.5/po/fi.po 2009-03-10 17:43:31.000000000 +0000 -@@ -10,8 +10,8 @@ msgid "" - msgstr "" - "Project-Id-Version: system-config-printer\n" - "Report-Msgid-Bugs-To: https://bugzilla.redhat.com/bugzilla\n" --"POT-Creation-Date: 2009-03-02 23:22+0000\n" --"PO-Revision-Date: 2009-02-04 13:20+0200\n" -+"POT-Creation-Date: 2009-03-10 16:51+0000\n" -+"PO-Revision-Date: 2009-03-08 23:42+0200\n" - "Last-Translator: Ville-Pekka Vainio \n" - "Language-Team: Finnish \n" - "MIME-Version: 1.0\n" -@@ -56,11 +56,11 @@ msgstr "" - msgid "Enter IP address" - msgstr "Anna IP-osoite:" - --#: ../authconn.py:35 ../glade/NewPrinterWindow.glade.h:108 -+#: ../authconn.py:35 ../glade/NewPrinterWindow.glade.h:107 - msgid "Username:" - msgstr "Käyttäjätunnus:" - --#: ../authconn.py:36 ../glade/NewPrinterWindow.glade.h:77 -+#: ../authconn.py:36 ../glade/NewPrinterWindow.glade.h:76 - msgid "Password:" - msgstr "Salasana:" - -@@ -68,7 +68,7 @@ msgstr "Salasana:" - msgid "Domain:" - msgstr "Verkkoalue:" - --#: ../authconn.py:46 -+#: ../authconn.py:46 ../authconn.py:409 - msgid "Authentication" - msgstr "Tunnistautuminen" - -@@ -76,43 +76,52 @@ msgstr "Tunnistautuminen" - msgid "Remember password" - msgstr "Muista salasana" - --#: ../authconn.py:211 ../authconn.py:232 -+#: ../authconn.py:208 -+#, python-format -+msgid "Unauthorized request (%s)" -+msgstr "" -+ -+#: ../authconn.py:209 -+msgid "You are not authorized to carry out therequested action." -+msgstr "" -+ -+#: ../authconn.py:212 ../authconn.py:233 - msgid "Operation canceled" --msgstr "Toiminto peruutettu" -+msgstr "Toiminto peruttu" - --#: ../authconn.py:253 -+#: ../authconn.py:250 - #, python-format - msgid "CUPS server error (%s)" - msgstr "CUPS-palvelimen virhe (%s)" - --#: ../authconn.py:255 ../errordialogs.py:57 --#: ../troubleshoot/PrintTestPage.py:400 -+#: ../authconn.py:252 ../errordialogs.py:56 ../errordialogs.py:70 -+msgid "CUPS server error" -+msgstr "CUPS-palvelimen virhe" -+ -+#: ../authconn.py:261 ../errordialogs.py:57 -+#: ../troubleshoot/PrintTestPage.py:417 - #, python-format - msgid "There was an error during the CUPS operation: '%s'." - msgstr "CUPS-toiminnon ”%s” aikana tapahtui virhe." - --#: ../authconn.py:258 -+#: ../authconn.py:264 - msgid "Retry" - msgstr "Yritä uudelleen" - --#: ../authconn.py:379 ../authconn.py:381 ../errordialogs.py:65 ../pysmb.py:75 -+#: ../authconn.py:385 ../authconn.py:387 ../errordialogs.py:65 ../pysmb.py:75 - #: ../pysmb.py:77 - msgid "Not authorized" - msgstr "Ei käyttöoikeutta" - --#: ../authconn.py:382 ../pysmb.py:78 -+#: ../authconn.py:388 ../pysmb.py:78 - msgid "The password may be incorrect." - msgstr "Salasana voi olla virheellinen." - --#: ../authconn.py:400 -+#: ../authconn.py:407 - #, python-format - msgid "Authentication (%s)" - msgstr "Tunnistautuminen (%s)" - --#: ../errordialogs.py:56 ../errordialogs.py:70 --msgid "CUPS server error" --msgstr "CUPS-palvelimen virhe" -- - #: ../errordialogs.py:66 - msgid "" - "The password may be incorrect, or the server may be configured to deny " -@@ -140,7 +149,7 @@ msgstr "Tarvitaan päivitys" - msgid "Server error" - msgstr "Palvelinvirhe" - --#: ../errordialogs.py:82 ../system-config-printer.py:1219 -+#: ../errordialogs.py:82 ../system-config-printer.py:1223 - msgid "Not connected" - msgstr "Ei kytketty" - -@@ -162,7 +171,7 @@ msgstr "_Uusi ryhmä" - msgid "_New Group from Selection" - msgstr "_Uusi ryhmä valinnasta" - --#: ../GroupsPane.py:98 ../system-config-printer.py:393 -+#: ../GroupsPane.py:98 ../system-config-printer.py:397 - msgid "_Rename" - msgstr "_Nimeä uudelleen" - -@@ -229,7 +238,7 @@ msgid "Document" - msgstr "Asiakirja" - - #: ../jobviewer.py:212 ../my-default-printer.py:153 --#: ../system-config-printer.py:366 ../system-config-printer.py:1367 -+#: ../system-config-printer.py:370 ../system-config-printer.py:1371 - #: ../troubleshoot/PrintTestPage.py:84 - msgid "Printer" - msgstr "Tulostin" -@@ -266,8 +275,8 @@ msgstr "Tulostustyön tila (%s)" - - #: ../jobviewer.py:386 ../jobviewer.py:451 ../jobviewer.py:452 - #: ../jobviewer.py:492 ../jobviewer.py:600 ../jobviewer.py:727 --#: ../jobviewer.py:1196 ../jobviewer.py:1222 ../system-config-printer.py:2546 --#: ../glade/NewPrinterWindow.glade.h:106 -+#: ../jobviewer.py:1196 ../jobviewer.py:1222 ../system-config-printer.py:2556 -+#: ../glade/NewPrinterWindow.glade.h:105 - #: ../troubleshoot/ChooseNetworkPrinter.py:101 - #: ../troubleshoot/ChooseNetworkPrinter.py:102 - #: ../troubleshoot/ChooseNetworkPrinter.py:105 -@@ -325,49 +334,49 @@ msgstr "Pysäytetty" - #: ../jobviewer.py:573 - #, python-format - msgid "Held until %s" --msgstr "Pidetään pysäytettynä %s asti" -+msgstr "Pysäytetty %s asti" - - #: ../jobviewer.py:577 - msgid "Held until day-time" --msgstr "Pidetään pysäytettynä päiväaikaan asti" -+msgstr "Pysäytetty päivään asti" - - #: ../jobviewer.py:579 - msgid "Held until evening" --msgstr "Pidetään pysäytettynä iltaan asti" -+msgstr "Pysäytetty iltaan asti" - - #: ../jobviewer.py:581 - msgid "Held until night-time" --msgstr "Pidetään pysäytettynä yöhön asti" -+msgstr "Pysäytetty yöhön asti" - - #: ../jobviewer.py:583 - msgid "Held until second shift" --msgstr "Pidetään pysäytettynä toiseen vuoroon asti" -+msgstr "Pysäytetty toiseen vuoroon asti" - - #: ../jobviewer.py:585 - msgid "Held until third shift" --msgstr "Pidetään pysäytettynä kolmanteen vuoroon asti" -+msgstr "Pysäytetty kolmanteen vuoroon asti" - - #: ../jobviewer.py:587 - msgid "Held until weekend" --msgstr "Pidetään pysäytettynä viikonloppuun asti" -+msgstr "Pysäytetty viikonloppuun asti" - - #: ../jobviewer.py:590 ../troubleshoot/PrintTestPage.py:41 - msgid "Pending" - msgstr "Odottaa vuoroa" - --#: ../jobviewer.py:591 ../system-config-printer.py:186 -+#: ../jobviewer.py:591 ../system-config-printer.py:190 - #: ../troubleshoot/PrintTestPage.py:43 - msgid "Processing" - msgstr "Käsittelee" - --#: ../jobviewer.py:592 ../system-config-printer.py:188 -+#: ../jobviewer.py:592 ../system-config-printer.py:192 - #: ../troubleshoot/PrintTestPage.py:44 - msgid "Stopped" - msgstr "Pysäytetty" - - #: ../jobviewer.py:593 ../troubleshoot/PrintTestPage.py:45 - msgid "Canceled" --msgstr "Peruutettu" -+msgstr "Peruttu" - - #: ../jobviewer.py:594 ../troubleshoot/PrintTestPage.py:46 - msgid "Aborted" -@@ -400,7 +409,7 @@ msgstr "perutaan työ" - - #: ../jobviewer.py:962 - msgid "holding job" --msgstr "pidetään työ" -+msgstr "pidetään työ pysäytettynä" - - #: ../jobviewer.py:986 - msgid "releasing job" -@@ -470,8 +479,8 @@ msgstr "_Käytä järjestelmän oletusar - msgid "_Set Default" - msgstr "_Aseta oletustulostimeksi" - --#: ../my-default-printer.py:158 ../system-config-printer.py:423 --#: ../system-config-printer.py:3660 ../troubleshoot/ChooseNetworkPrinter.py:37 -+#: ../my-default-printer.py:158 ../system-config-printer.py:427 -+#: ../system-config-printer.py:3675 ../troubleshoot/ChooseNetworkPrinter.py:37 - #: ../troubleshoot/ChoosePrinter.py:38 - msgid "Location" - msgstr "Sijainti" -@@ -500,7 +509,7 @@ msgstr "Oletustoiminta" - msgid "Authenticated" - msgstr "Tunnistauduttu" - --#: ../ppdippstr.py:50 ../system-config-printer.py:6259 -+#: ../ppdippstr.py:50 ../system-config-printer.py:6207 - msgid "None" - msgstr "Ei yhtään" - -@@ -576,10 +585,9 @@ msgstr "Paras laatu (värituloste valoku - msgid "Normal quality (color on photo paper)" - msgstr "Tavallinen laatu (värituloste valokuvapaperille)" - --# TODO: paremmin? - #: ../ppdippstr.py:85 - msgid "Media source" --msgstr "Medialähde" -+msgstr "Tulostusmateriaalin lähde" - - #: ../ppdippstr.py:86 - msgid "Printer default" -@@ -717,124 +725,124 @@ msgstr "600 dpi, väri, musta + väri -k - msgid "1200 dpi, photo, black + color cartridge, photo paper" - msgstr "1200 dpi, valokuva, musta + väri -kasetti, valokuvapaperi" - --#: ../system-config-printer.py:127 -+#: ../system-config-printer.py:131 - msgid "To do this, select System->Administration->Firewall from the main menu." - msgstr "" - "Se voidaan tehdä valitsemalla päävalikosta Järjestelmä→Ylläpito→Palomuuri." - --#: ../system-config-printer.py:185 -+#: ../system-config-printer.py:189 - msgid "Idle" - msgstr "Jouten" - --#: ../system-config-printer.py:187 -+#: ../system-config-printer.py:191 - msgid "Busy" - msgstr "Varattu" - --#: ../system-config-printer.py:372 ../system-config-printer.py:1373 -+#: ../system-config-printer.py:376 ../system-config-printer.py:1377 - msgid "Class" - msgstr "Luokka" - --#: ../system-config-printer.py:399 -+#: ../system-config-printer.py:403 - msgid "Set As De_fault" - msgstr "_Aseta oletukseksi" - --#: ../system-config-printer.py:403 -+#: ../system-config-printer.py:407 - msgid "_Create class" - msgstr "_Luo luokka" - --#: ../system-config-printer.py:405 -+#: ../system-config-printer.py:409 - msgid "View Print _Queue" - msgstr "_Näytä tulostusjono" - --#: ../system-config-printer.py:407 -+#: ../system-config-printer.py:411 - msgid "_Add to Group" - msgstr "_Lisää ryhmään" - --#: ../system-config-printer.py:409 -+#: ../system-config-printer.py:413 - msgid "Save Results as _Group" - msgstr "Tallenna tulokset _ryhmänä" - --#: ../system-config-printer.py:411 -+#: ../system-config-printer.py:415 - msgid "Save Filter as _Search Group" - msgstr "Tallenna suodin _hakuryhmänä" - --#: ../system-config-printer.py:415 -+#: ../system-config-printer.py:419 - msgid "E_nabled" - msgstr "_Käytössä" - --#: ../system-config-printer.py:417 -+#: ../system-config-printer.py:421 - msgid "_Shared" - msgstr "_Jaettu" - --#: ../system-config-printer.py:421 ../troubleshoot/ChooseNetworkPrinter.py:35 -+#: ../system-config-printer.py:425 ../troubleshoot/ChooseNetworkPrinter.py:35 - #: ../troubleshoot/ChoosePrinter.py:36 ../troubleshoot/DeviceListed.py:36 - msgid "Name" - msgstr "Nimi" - --#: ../system-config-printer.py:422 -+#: ../system-config-printer.py:426 - msgid "Description" - msgstr "Kuvaus" - --#: ../system-config-printer.py:424 -+#: ../system-config-printer.py:428 - msgid "Manufacturer / Model" - msgstr "Valmistaja / Malli" - - #. Printer state reasons list --#: ../system-config-printer.py:499 -+#: ../system-config-printer.py:503 - msgid "Message" - msgstr "Viesti" - --#: ../system-config-printer.py:534 -+#: ../system-config-printer.py:538 - msgid "Problems?" - msgstr "Ongelmia?" - --#: ../system-config-printer.py:637 ../system-config-printer.py:639 -+#: ../system-config-printer.py:641 ../system-config-printer.py:643 - msgid "Members of this class" - msgstr "Tämän luokan jäsenet" - --#: ../system-config-printer.py:638 ../system-config-printer.py:640 -+#: ../system-config-printer.py:642 ../system-config-printer.py:644 - msgid "Others" - msgstr "Muut" - --#: ../system-config-printer.py:641 -+#: ../system-config-printer.py:645 - msgid "Devices" - msgstr "Laitteet" - --#: ../system-config-printer.py:642 -+#: ../system-config-printer.py:646 - msgid "Connections" - msgstr "Yhteydet" - --#: ../system-config-printer.py:643 -+#: ../system-config-printer.py:647 - msgid "Makes" - msgstr "Merkit" - --#: ../system-config-printer.py:644 -+#: ../system-config-printer.py:648 - msgid "Models" - msgstr "Mallit" - --#: ../system-config-printer.py:645 -+#: ../system-config-printer.py:649 - msgid "Drivers" - msgstr "Ajurit" - --#: ../system-config-printer.py:646 ../glade/NewPrinterWindow.glade.h:55 -+#: ../system-config-printer.py:650 ../glade/NewPrinterWindow.glade.h:54 - msgid "Downloadable Drivers" - msgstr "Ladattavissa olevat ajurit" - --#: ../system-config-printer.py:647 -+#: ../system-config-printer.py:651 - msgid "Users" - msgstr "Käyttäjät" - --#: ../system-config-printer.py:682 -+#: ../system-config-printer.py:686 - msgid "Automatic rotation" - msgstr "Automaattinen kääntö" - --#: ../system-config-printer.py:989 --#, fuzzy, python-format -+#: ../system-config-printer.py:993 -+#, python-format - msgid "Printer Properties - '%s' on %s" --msgstr "Tulostimen ominaisuudet – ”%s” koneella ”%s”" -+msgstr "Tulostimen ominaisuudet – ”%s” koneella %s" - - #. The Conflict button was pressed. --#: ../system-config-printer.py:996 -+#: ../system-config-printer.py:1000 - msgid "" - "There are conflicting options.\n" - "Changes can only be applied after\n" -@@ -844,78 +852,78 @@ msgstr "" - "Muutokset voidaan ottaa käyttöön\n" - "vasta kun ristiriidat on ratkaistu." - --#: ../system-config-printer.py:1214 -+#: ../system-config-printer.py:1218 - #, python-format - msgid "Printer configuration - %s" - msgstr "Tulostimen asetukset – %s" - --#: ../system-config-printer.py:1217 -+#: ../system-config-printer.py:1221 - #, python-format - msgid "Connected to %s" - msgstr "Yhdistetty kohteeseen %s" - - #. Update our copy of the printer's settings. --#: ../system-config-printer.py:1257 ../system-config-printer.py:2042 -+#: ../system-config-printer.py:1261 ../system-config-printer.py:2046 - msgid "obtaining queue details" - msgstr "hae jonon tiedot" - --#: ../system-config-printer.py:1295 -+#: ../system-config-printer.py:1299 - msgid "Remove from Group" - msgstr "Poista ryhmästä" - --#: ../system-config-printer.py:1361 -+#: ../system-config-printer.py:1365 - msgid "Network printer (discovered)" - msgstr "Verkkotulostin (löydetty)" - --#: ../system-config-printer.py:1364 -+#: ../system-config-printer.py:1368 - msgid "Network class (discovered)" - msgstr "Verkkoluokka (löydetty)" - --#: ../system-config-printer.py:1370 ../system-config-printer.py:5524 --#: ../system-config-printer.py:5594 ../system-config-printer.py:5596 -+#: ../system-config-printer.py:1374 ../system-config-printer.py:5519 -+#: ../system-config-printer.py:5589 ../system-config-printer.py:5591 - msgid "Fax" - msgstr "Faksi" - --#: ../system-config-printer.py:1376 ../system-config-printer.py:1382 -+#: ../system-config-printer.py:1380 ../system-config-printer.py:1386 - #: ../troubleshoot/LocalOrRemote.py:30 - msgid "Network printer" - msgstr "Verkkotulostin" - --#: ../system-config-printer.py:1379 -+#: ../system-config-printer.py:1383 - msgid "Network print share" - msgstr "Verkkotulostusjako" - --#: ../system-config-printer.py:1508 ../glade/ConnectingDialog.glade.h:2 -+#: ../system-config-printer.py:1512 ../glade/ConnectingDialog.glade.h:2 - #, no-c-format, python-format - msgid "Opening connection to %s" - msgstr "Avataan yhteys palvelimelle %s" - --#: ../system-config-printer.py:1887 -+#: ../system-config-printer.py:1891 - msgid "Installable Options" - msgstr "Asennettavissa olevat valinnat" - --#: ../system-config-printer.py:1888 -+#: ../system-config-printer.py:1892 - #: ../glade/PrinterPropertiesDialog.glade.h:109 - msgid "Printer Options" - msgstr "Tulostimen asetukset" - --#: ../system-config-printer.py:1924 -+#: ../system-config-printer.py:1928 - #, python-format - msgid "modifying class %s" - msgstr "muoktataan luokkaa %s" - --#: ../system-config-printer.py:1926 ../system-config-printer.py:3019 --#: ../system-config-printer.py:3044 ../system-config-printer.py:6547 --#: ../system-config-printer.py:6559 ../system-config-printer.py:6581 -+#: ../system-config-printer.py:1930 ../system-config-printer.py:3037 -+#: ../system-config-printer.py:3062 ../system-config-printer.py:6495 -+#: ../system-config-printer.py:6507 ../system-config-printer.py:6529 - #, python-format - msgid "modifying printer %s" - msgstr "muokataan tulostinta %s" - --#: ../system-config-printer.py:1941 -+#: ../system-config-printer.py:1945 - msgid "This will delete this class!" - msgstr "Tämä luokka poistetaan!" - --#: ../system-config-printer.py:1942 -+#: ../system-config-printer.py:1946 - msgid "Proceed anyway?" - msgstr "Jatketaanko silti?" - -@@ -923,44 +931,44 @@ msgstr "Jatketaanko silti?" - #. but we have never fetched the server settings to see whether - #. the server is publishing shared printers. Fetch the settings - #. now so that we can update the "not published" label if necessary. --#: ../system-config-printer.py:2030 ../system-config-printer.py:3203 -+#: ../system-config-printer.py:2034 ../system-config-printer.py:3221 - msgid "fetching server settings" - msgstr "haetaan palvelinasetuksia" - --#: ../system-config-printer.py:2100 -+#: ../system-config-printer.py:2104 - msgid "Set Default Printer" - msgstr "Aseta oletustulostin" - --#: ../system-config-printer.py:2102 -+#: ../system-config-printer.py:2106 - msgid "Do you want to set this as the system-wide default printer?" - msgstr "Haluatko asettaa tämän järjestelmänlaajuisesti oletustulostimeksi?" - --#: ../system-config-printer.py:2104 -+#: ../system-config-printer.py:2108 - msgid "Set as the _system-wide default printer" - msgstr "Aseta _järjestelmänlaajuisesti oletustulostimeksi" - --#: ../system-config-printer.py:2106 -+#: ../system-config-printer.py:2110 - msgid "_Clear my personal default setting" - msgstr "_Poista henkilökohtainen oletusasetukseni" - --#: ../system-config-printer.py:2107 -+#: ../system-config-printer.py:2111 - msgid "Set as my _personal default printer" - msgstr "Aseta _henkilökohtaiseksi oletustulostimekseni" - --#: ../system-config-printer.py:2112 -+#: ../system-config-printer.py:2116 - msgid "setting default printer" - msgstr "asetetaan oletustulostinta" - --#: ../system-config-printer.py:2169 -+#: ../system-config-printer.py:2173 - msgid "printing test page" - msgstr "tulostetaan testisivu" - --#: ../system-config-printer.py:2182 ../system-config-printer.py:2217 --#: ../system-config-printer.py:5418 -+#: ../system-config-printer.py:2186 ../system-config-printer.py:2221 -+#: ../system-config-printer.py:5413 - msgid "Not possible" - msgstr "Ei mahdollista" - --#: ../system-config-printer.py:2183 ../system-config-printer.py:2218 -+#: ../system-config-printer.py:2187 ../system-config-printer.py:2222 - msgid "" - "The remote server did not accept the print job, most likely because the " - "printer is not shared." -@@ -968,20 +976,20 @@ msgstr "" - "Etäpalvelin ei hyväksynyt tulostustyötä, luultavasti koska tulostinta ei ole " - "jaettu." - --#: ../system-config-printer.py:2195 ../system-config-printer.py:2210 -+#: ../system-config-printer.py:2199 ../system-config-printer.py:2214 - msgid "Submitted" - msgstr "Lähetetty" - --#: ../system-config-printer.py:2196 -+#: ../system-config-printer.py:2200 - #, python-format - msgid "Test page submitted as job %d" - msgstr "Testisivu lähetetty työnä %d" - --#: ../system-config-printer.py:2203 -+#: ../system-config-printer.py:2207 - msgid "sending maintenance command" - msgstr "lähetetään huoltokomentoa" - --#: ../system-config-printer.py:2211 -+#: ../system-config-printer.py:2215 - #, python-format - msgid "Maintenance command submitted as job %d" - msgstr "Huoltokomento lähetetty työnä %d" -@@ -989,65 +997,65 @@ msgstr "Huoltokomento lähetetty työnä - #. The underlying cupsGetPPD2() function returned NULL without - #. setting an IPP error, so it'll be something like a failed - #. connection. --#: ../system-config-printer.py:2285 ../system-config-printer.py:2381 -+#: ../system-config-printer.py:2289 ../system-config-printer.py:2385 - msgid "Error" - msgstr "Virhe" - --#: ../system-config-printer.py:2286 -+#: ../system-config-printer.py:2290 - msgid "There was a problem connecting to the CUPS server." - msgstr "CUPS-palvelimeen yhdistämisessä ilmeni ongelma." - --#: ../system-config-printer.py:2382 -+#: ../system-config-printer.py:2386 - #, python-format - msgid "Option '%s' has value '%s' and cannot be edited." - msgstr "Asetuksella ”%s” on arvo ”%s” eikä sitä voi muokata." - --#: ../system-config-printer.py:2466 -+#: ../system-config-printer.py:2476 - msgid "Marker levels are not reported for this printer." - msgstr "Tämä tulostin ei ilmoita väriaineen määrää." - --#: ../system-config-printer.py:2763 -+#: ../system-config-printer.py:2773 - msgid "Cannot Rename" - msgstr "Ei voida nimetä uudelleen" - --#: ../system-config-printer.py:2764 -+#: ../system-config-printer.py:2774 - msgid "There are queued jobs." - msgstr "Töitä on jonossa." - --#: ../system-config-printer.py:2822 -+#: ../system-config-printer.py:2840 - msgid "renaming printer" - msgstr "nimetään tulostinta uudelleen" - - #. for classes make sure all members - #. will get added --#: ../system-config-printer.py:2907 -+#: ../system-config-printer.py:2925 - msgid "copying printer" - msgstr "kopioidaan tulostin" - --#: ../system-config-printer.py:2971 --#, fuzzy, python-format -+#: ../system-config-printer.py:2989 -+#, python-format - msgid "Really delete class '%s'?" - msgstr "Haluatko varmasti poistaa luokan ”%s”?" - --#: ../system-config-printer.py:2973 --#, fuzzy, python-format -+#: ../system-config-printer.py:2991 -+#, python-format - msgid "Really delete printer '%s'?" - msgstr "Haluatko varmasti poistaa tulostimen ”%s”?" - --#: ../system-config-printer.py:2975 -+#: ../system-config-printer.py:2993 - msgid "Really delete selected destinations?" - msgstr "Haluatko varmasti poistaa valitut kohteet?" - --#: ../system-config-printer.py:2996 -+#: ../system-config-printer.py:3014 - #, python-format - msgid "deleting printer %s" - msgstr "poistetaan tulostin %s" - --#: ../system-config-printer.py:3070 -+#: ../system-config-printer.py:3088 - msgid "Publish Shared Printers" - msgstr "Julkaise jaetut tulostimet" - --#: ../system-config-printer.py:3071 -+#: ../system-config-printer.py:3089 - msgid "" - "Shared printers are not available to other people unless the 'Publish shared " - "printers' option is enabled in the server settings." -@@ -1055,7 +1063,7 @@ msgstr "" - "Jaetut tulostimet eivät ole muiden käytettävissä ellei ”Julkaise jaetut " - "tulostimet” -valinta ole käytössä palvelinasetuksissa." - --#: ../system-config-printer.py:3264 -+#: ../system-config-printer.py:3282 - msgid "modifying server settings" - msgstr "muokataan palvelinasetuksia" - -@@ -1065,11 +1073,11 @@ msgstr "muokataan palvelinasetuksia" - #. be unblocked. Unfortunately, this is not yet possible - #. (bug #440469). However, we can display a dialog to suggest - #. that now might be a good time to review the firewall settings. --#: ../system-config-printer.py:3289 -+#: ../system-config-printer.py:3307 - msgid "Review Firewall" - msgstr "Tarkista palomuuri" - --#: ../system-config-printer.py:3290 -+#: ../system-config-printer.py:3308 - msgid "" - "You may need to adjust the firewall to allow network printing to this " - "computer." -@@ -1077,25 +1085,25 @@ msgstr "" - "Palomuurin asetuksia on ehkä muutettava, jotta tulostaminen verkosta tälle " - "koneelle olisi mahdollista." - --#: ../system-config-printer.py:3623 -+#: ../system-config-printer.py:3638 - msgid "Browsing not available (pysmbc not installed)" - msgstr "Selaaminen ei ole mahdollista (pysmbc:tä ei ole asennettu)" - - #. SMB list columns --#: ../system-config-printer.py:3629 -+#: ../system-config-printer.py:3644 - msgid "Share" - msgstr "Jako" - --#: ../system-config-printer.py:3635 -+#: ../system-config-printer.py:3650 - msgid "Comment" - msgstr "Kommentti" - - #. IPP list columns --#: ../system-config-printer.py:3654 -+#: ../system-config-printer.py:3669 - msgid "Queue" - msgstr "Jono" - --#: ../system-config-printer.py:3668 -+#: ../system-config-printer.py:3683 - msgid "" - "PostScript Printer Description files (*.ppd, *.PPD, *.ppd.gz, *.PPD.gz, *." - "PPD.GZ)" -@@ -1103,180 +1111,180 @@ msgstr "" - "Postscript Printer Description -tiedostot (*.ppd, *.PPD, *.ppd.gz, *.PPD.gz, " - "*.PPD.GZ)" - --#: ../system-config-printer.py:3677 -+#: ../system-config-printer.py:3692 - msgid "All files (*)" - msgstr "Kaikki tiedostot (*)" - --#: ../system-config-printer.py:3713 ../system-config-printer.py:5970 --#: ../system-config-printer.py:6008 ../applet.py:124 -+#: ../system-config-printer.py:3728 ../system-config-printer.py:5918 -+#: ../system-config-printer.py:5956 ../applet.py:124 - msgid "Search" - msgstr "Haku" - --#: ../system-config-printer.py:3736 ../system-config-printer.py:3760 --#: ../glade/NewPrinterWindow.glade.h:74 -+#: ../system-config-printer.py:3751 ../system-config-printer.py:3775 -+#: ../glade/NewPrinterWindow.glade.h:73 - msgid "New Printer" - msgstr "Uusi tulostin" - --#: ../system-config-printer.py:3747 -+#: ../system-config-printer.py:3762 - msgid "New Class" - msgstr "Uusi luokka" - --#: ../system-config-printer.py:3752 -+#: ../system-config-printer.py:3767 - msgid "Change Device URI" - msgstr "Vaihda laitteen osoitetta" - --#: ../system-config-printer.py:3758 -+#: ../system-config-printer.py:3773 - msgid "Change Driver" - msgstr "Vaihda ajuria" - --#: ../system-config-printer.py:3927 ../system-config-printer.py:3993 --#: ../system-config-printer.py:4289 ../system-config-printer.py:4487 --#: ../system-config-printer.py:5772 ../system-config-printer.py:5995 -+#: ../system-config-printer.py:3942 ../system-config-printer.py:4008 -+#: ../system-config-printer.py:4304 ../system-config-printer.py:4502 -+#: ../system-config-printer.py:5762 ../system-config-printer.py:5943 - msgid "Searching" - msgstr "Etsitään" - --#: ../system-config-printer.py:3928 -+#: ../system-config-printer.py:3943 - msgid "Searching for downloadable drivers" - msgstr "Etsitään verkosta ladattavia ajureita" - --#: ../system-config-printer.py:3994 ../system-config-printer.py:4290 -+#: ../system-config-printer.py:4009 ../system-config-printer.py:4305 - msgid "Searching for drivers" - msgstr "Etsitään ajureita" - --#: ../system-config-printer.py:4488 ../system-config-printer.py:5773 -+#: ../system-config-printer.py:4503 ../system-config-printer.py:5763 - msgid "Searching for printers" - msgstr "Etsitään tulostimia" - --#: ../system-config-printer.py:4497 -+#: ../system-config-printer.py:4512 - msgid "fetching device list" - msgstr "haetaan laiteluetteloa" - - #. Tell the user why he needs the plugin --#: ../system-config-printer.py:4579 -+#: ../system-config-printer.py:4594 - msgid "For this printer a proprietary driver plugin from HP is available.\n" - msgstr "" -+"Tälle tulostimelle on saatavissa suljetun lähdekoodin liitännäinen HP:lta.\n" - --#: ../system-config-printer.py:4582 -+#: ../system-config-printer.py:4597 - msgid "" - "The installation of the plugin is required for your printer to work.\n" - "\n" - msgstr "" -+"Liitännäinen on asennettava, jotta tulostin toimii.\n" -+"\n" - --#: ../system-config-printer.py:4585 -+#: ../system-config-printer.py:4600 - msgid "" - "Installing the plugin is optional, it completes or enhances the " - "functionality\n" - "of your printer. Without plugin at least basic operations work.\n" - "\n" - msgstr "" -+"Liitännäistä ei ole pakko asentaa, mutta se täydentää tai kehittää " -+"tulostimen ominaisuuksia.\n" -+"Ainakin perusominaisuudet toimivat myös ilman liitännäistä.\n" -+"\n" - --#: ../system-config-printer.py:4589 -+#: ../system-config-printer.py:4604 - msgid "The plugin provides the following features:\n" --msgstr "" -+msgstr "Liitännäinen sisältää seuraavat ominaisuudet:\n" - --#: ../system-config-printer.py:4592 -+#: ../system-config-printer.py:4607 - msgid " - Printing support\n" --msgstr "" -+msgstr " – Tulostustuki\n" - --#: ../system-config-printer.py:4595 --#, fuzzy -+#: ../system-config-printer.py:4610 - msgid " - Faster printing\n" --msgstr "Kaksipuolinen tulostus" -+msgstr " – Nopeampi tulostus\n" - --#: ../system-config-printer.py:4598 -+#: ../system-config-printer.py:4613 - msgid " - Better printout quality\n" --msgstr "" -+msgstr " – Parempi tulosteen laatu\n" - --#: ../system-config-printer.py:4601 -+#: ../system-config-printer.py:4616 - msgid " - Extra printing features\n" --msgstr "" -+msgstr " – Tulostuksen lisäominaisuudet\n" - --#: ../system-config-printer.py:4604 -+#: ../system-config-printer.py:4619 - msgid " - Scanning support\n" --msgstr "" -+msgstr " – Skannaustuki\n" - --#: ../system-config-printer.py:4607 -+#: ../system-config-printer.py:4622 - msgid " - Faster scanning\n" --msgstr "" -+msgstr " – Nopeampi skannaus\n" - --#: ../system-config-printer.py:4610 -+#: ../system-config-printer.py:4625 - msgid " - Better scanning image quality\n" --msgstr "" -+msgstr " – Parempi skannatun kuvan laatu\n" - --#: ../system-config-printer.py:4613 -+#: ../system-config-printer.py:4628 - msgid " - Faxing support\n" --msgstr "" -+msgstr " – Faksituki\n" - --#: ../system-config-printer.py:4616 -+#: ../system-config-printer.py:4631 - msgid " - Extra fax features\n" --msgstr "" -+msgstr " – Faksin lisäominaisuudet\n" - --#: ../system-config-printer.py:4619 -+#: ../system-config-printer.py:4634 - msgid " - Better Input/Output support\n" --msgstr "" -+msgstr " – Parempi siirräntätuki\n" - --#: ../system-config-printer.py:4622 -+#: ../system-config-printer.py:4637 - msgid " - Extra user interface features\n" --msgstr "" -+msgstr " – Käyttöliittymän lisäominaisuudet\n" - --#: ../system-config-printer.py:4625 -+#: ../system-config-printer.py:4640 - msgid " - Other extra features\n" --msgstr "" -+msgstr " – Muita lisäominaisuuksia\n" - --#: ../system-config-printer.py:4630 --#, fuzzy -+#: ../system-config-printer.py:4645 - msgid "Install plugin" --msgstr "Asennetut valinnat" -+msgstr "Asenna liitännäinen" - --#: ../system-config-printer.py:4631 --#, fuzzy -+#: ../system-config-printer.py:4646 - msgid "Do not set up printer" --msgstr "Valitse tulostin" -+msgstr "Älä tee tulostinasetuksia" - --#: ../system-config-printer.py:4632 -+#: ../system-config-printer.py:4647 - msgid "Set up without plugin" --msgstr "" -+msgstr "Tee tulostinasetukset ilman liitännäistä" - --#: ../system-config-printer.py:4634 ../troubleshoot/PrintTestPage.py:118 -+#: ../system-config-printer.py:4649 ../troubleshoot/PrintTestPage.py:118 - msgid "Yes" - msgstr "Kyllä" - --#: ../system-config-printer.py:4635 ../troubleshoot/PrintTestPage.py:119 -+#: ../system-config-printer.py:4650 ../troubleshoot/PrintTestPage.py:119 - msgid "No" - msgstr "Ei" - --#: ../system-config-printer.py:4809 ../system-config-printer.py:4813 -+#: ../system-config-printer.py:4824 ../system-config-printer.py:4828 - msgid " (Current)" - msgstr " (Nykyinen)" - --#: ../system-config-printer.py:4845 --msgid "HP Printer (HPLIP)" --msgstr "HP-tulostin (HPLIP)" -- --#: ../system-config-printer.py:4886 -+#: ../system-config-printer.py:4881 - msgid "Other" - msgstr "Muu" - - #. device-info - #. PhysicalDevice obj - #. Separator? --#: ../system-config-printer.py:4902 -+#: ../system-config-printer.py:4897 - msgid "Network Printer" - msgstr "Verkkotulostin" - --#: ../system-config-printer.py:4906 -+#: ../system-config-printer.py:4901 - msgid "Find Network Printer" - msgstr "Etsi verkkotulostin" - --#: ../system-config-printer.py:4979 ../system-config-printer.py:5376 -+#: ../system-config-printer.py:4974 ../system-config-printer.py:5371 - msgid "Scanning..." - msgstr "Haetaan..." - --#: ../system-config-printer.py:5034 ../system-config-printer.py:5798 -+#: ../system-config-printer.py:5029 - msgid "No Print Shares" - msgstr "Ei tulostinjakoja" - --#: ../system-config-printer.py:5035 -+#: ../system-config-printer.py:5030 - msgid "" - "There were no print shares found. Please check that the Samba service is " - "marked as trusted in your firewall configuration." -@@ -1284,32 +1292,32 @@ msgstr "" - "Tulostinjakoja ei löytynyt. Tarkista että Samba-palvelu on merkitty " - "luotetuksi palomuuriasetuksissa." - --#: ../system-config-printer.py:5296 ../system-config-printer.py:5357 -+#: ../system-config-printer.py:5291 ../system-config-printer.py:5352 - msgid "Print Share Verified" - msgstr "Tulostinjako varmennettu" - --#: ../system-config-printer.py:5297 ../system-config-printer.py:5358 -+#: ../system-config-printer.py:5292 ../system-config-printer.py:5353 - msgid "This print share is accessible." - msgstr "Tämä tulostinjako on käytettävissä." - --#: ../system-config-printer.py:5302 ../system-config-printer.py:5362 -+#: ../system-config-printer.py:5297 ../system-config-printer.py:5357 - msgid "This print share is not accessible." - msgstr "Tämä tulostinjako ei ole käytettävissä." - --#: ../system-config-printer.py:5305 -+#: ../system-config-printer.py:5300 - msgid "Print Share Inaccessible" - msgstr "Tämä tulostinjako ei ole käytettävissä" - --#: ../system-config-printer.py:5361 -+#: ../system-config-printer.py:5356 - msgid "Inaccessible" - msgstr "Ei käytettävissä" - --#: ../system-config-printer.py:5419 --#, fuzzy, python-format -+#: ../system-config-printer.py:5414 -+#, python-format - msgid "It is not possible to obtain a list of queues from '%s'." - msgstr "Koneelta ”%s” ei voi saada luetteloa jonoista." - --#: ../system-config-printer.py:5421 -+#: ../system-config-printer.py:5416 - msgid "" - "Obtaining a list of queues is a CUPS extension to IPP. Network printers do " - "not support it." -@@ -1317,125 +1325,117 @@ msgstr "" - "Jonoluettelon saaminen on IPP:n CUPS-laajennos. Verkkotulostimet eivät tue " - "sitä." - --#: ../system-config-printer.py:5424 -+#: ../system-config-printer.py:5419 - msgid "No queues" - msgstr "Ei jonoja" - --#: ../system-config-printer.py:5425 -+#: ../system-config-printer.py:5420 - msgid "There are no queues available." - msgstr "Yhtään jonoa ei ole saatavilla." - --#: ../system-config-printer.py:5516 -+#: ../system-config-printer.py:5511 - msgid "Parallel Port" --msgstr "" -+msgstr "Rinnakkaisportti" - --#: ../system-config-printer.py:5518 --#, fuzzy -+#: ../system-config-printer.py:5513 - msgid "Serial Port" --msgstr "Sarja" -+msgstr "Sarjaportti" - --#: ../system-config-printer.py:5520 --#, fuzzy -+#: ../system-config-printer.py:5515 - msgid "USB" --msgstr "SMB" -+msgstr "USB" - --#: ../system-config-printer.py:5522 ../system-config-printer.py:5525 -+#: ../system-config-printer.py:5517 ../system-config-printer.py:5520 - msgid "HP Linux Imaging and Printing (HPLIP)" --msgstr "" -+msgstr "HP Linux Imaging and Printing (HPLIP)" - --#: ../system-config-printer.py:5527 --#, fuzzy -+#: ../system-config-printer.py:5522 - msgid "Hardware Abstraction Layer (HAL)" --msgstr "Hardware Abstraction Layerin (HAL) tunnistama paikallinen tulostin." -+msgstr "Hardware Abstraction Layer (HAL)" - --#: ../system-config-printer.py:5529 -+#: ../system-config-printer.py:5524 - msgid "AppSocket/HP JetDirect" --msgstr "" -+msgstr "AppSocket/HP JetDirect" - --#: ../system-config-printer.py:5538 -+#: ../system-config-printer.py:5533 - #, python-format - msgid "LPD/LPR queue '%s'" --msgstr "" -+msgstr "LPD/LPR-jono ”%s”" - --#: ../system-config-printer.py:5540 --#, fuzzy -+#: ../system-config-printer.py:5535 - msgid "LPD/LPR queue" --msgstr "LPD" -+msgstr "LPD/LPR-jono" - --#: ../system-config-printer.py:5543 -+#: ../system-config-printer.py:5538 - msgid "Windows Printer via SAMBA" --msgstr "" -+msgstr "Windows-tulostin SAMBAn kautta" - --#: ../system-config-printer.py:5545 ../glade/NewPrinterWindow.glade.h:66 -+#: ../system-config-printer.py:5540 ../glade/NewPrinterWindow.glade.h:65 - msgid "IPP" - msgstr "IPP" - --#: ../system-config-printer.py:5547 -+#: ../system-config-printer.py:5542 - msgid "HTTP" --msgstr "" -+msgstr "HTTP" - --#: ../system-config-printer.py:5632 -+#: ../system-config-printer.py:5624 - msgid "A printer connected to the parallel port." - msgstr "Rinnakkaisporttiin liitetty tulostin." - --#: ../system-config-printer.py:5634 -+#: ../system-config-printer.py:5626 - msgid "A printer connected to a USB port." - msgstr "USB-porttiin liitetty tulostin" - --#: ../system-config-printer.py:5636 -+#: ../system-config-printer.py:5628 - msgid "" - "HPLIP software driving a printer, or the printer function of a multi-" - "function device." - msgstr "" - "Tulostinta tai monitoimilaitteen tulostinosaa käyttävä HPLIP-ohjelmisto." - --#: ../system-config-printer.py:5639 -+#: ../system-config-printer.py:5631 - msgid "" - "HPLIP software driving a fax machine, or the fax function of a multi-" - "function device." - msgstr "Faksia tai monitoimilaitteen faksiosaa käyttävä HPLIP-ohjelmisto." - --#: ../system-config-printer.py:5642 -+#: ../system-config-printer.py:5634 - msgid "Local printer detected by the Hardware Abstraction Layer (HAL)." - msgstr "Hardware Abstraction Layerin (HAL) tunnistama paikallinen tulostin." - --#: ../system-config-printer.py:5799 --msgid "HPLIP cannot find the device." --msgstr "HPLIP ei löydä laitetta." -- --#: ../system-config-printer.py:5881 -+#: ../system-config-printer.py:5831 - msgid "No printer was found at that address." - msgstr "Tulostinta ei löytynyt annetusta osoitteesta." - --#: ../system-config-printer.py:6020 -+#: ../system-config-printer.py:5968 - msgid "-- Select from search results --" - msgstr "-- Valitse hakutuloksista --" - --#: ../system-config-printer.py:6022 -+#: ../system-config-printer.py:5970 - msgid "-- No matches found --" - msgstr "-- Ei osumia --" - --#: ../system-config-printer.py:6203 -+#: ../system-config-printer.py:6151 - msgid " (recommended)" - msgstr " (suositeltu)" - --#: ../system-config-printer.py:6217 -+#: ../system-config-printer.py:6165 - msgid "This PPD is generated by foomatic." - msgstr "Tämän PPD:n on luonut foomatic." - --#: ../system-config-printer.py:6241 -+#: ../system-config-printer.py:6189 - msgid "OpenPrinting" - msgstr "OpenPrinting" - --#: ../system-config-printer.py:6252 -+#: ../system-config-printer.py:6200 - msgid "Distributable" - msgstr "Jaettava" - --#: ../system-config-printer.py:6293 -+#: ../system-config-printer.py:6241 - msgid ", " - msgstr ", " - --#: ../system-config-printer.py:6298 -+#: ../system-config-printer.py:6246 - #, python-format - msgid "" - "\n" -@@ -1444,20 +1444,20 @@ msgstr "" - "\n" - "(%s)" - --#: ../system-config-printer.py:6303 -+#: ../system-config-printer.py:6251 - msgid "No support contacts known" - msgstr "Ei tunnettua tukisopimusta" - --#: ../system-config-printer.py:6307 ../system-config-printer.py:6320 -+#: ../system-config-printer.py:6255 ../system-config-printer.py:6268 - msgid "Not specified." - msgstr "Ei määritelty." - - #. Foomatic database problem of some sort. --#: ../system-config-printer.py:6360 -+#: ../system-config-printer.py:6308 - msgid "Database error" - msgstr "Tietokantavirhe" - --#: ../system-config-printer.py:6361 -+#: ../system-config-printer.py:6309 - #, python-format - msgid "The '%s' driver cannot be used with printer '%s %s'." - msgstr "Ajuria ”%s” ei voida käyttää tulostimen ”%s %s” kanssa." -@@ -1465,61 +1465,60 @@ msgstr "Ajuria ”%s” ei voida käytt - #. This printer references some XML that is not - #. installed by default. Point the user at the - #. package they need to install. --#: ../system-config-printer.py:6371 -+#: ../system-config-printer.py:6319 - #, python-format - msgid "You will need to install the '%s' package in order to use this driver." - msgstr "Tämän ajurin käyttö vaatii paketin ”%s” asentamista." - - #. This error came from trying to open the PPD file. --#: ../system-config-printer.py:6378 -+#: ../system-config-printer.py:6326 - msgid "PPD error" - msgstr "PPD-virhe" - --#: ../system-config-printer.py:6380 -+#: ../system-config-printer.py:6328 - msgid "Failed to read PPD file. Possible reason follows:" - msgstr "PPD-tiedoston lukeminen epäonnistui. Mahdollinen syy:" - - #. Failed to get PPD downloaded from OpenPrinting XXX --#: ../system-config-printer.py:6397 -+#: ../system-config-printer.py:6345 - msgid "Downloadable drivers" - msgstr "Ladattavissa olevat ajurit" - --#: ../system-config-printer.py:6398 -+#: ../system-config-printer.py:6346 - msgid "Failed to download PPD." - msgstr "PPD-tiedoston lataaminen epäonnistui." - --#: ../system-config-printer.py:6405 --#, fuzzy -+#: ../system-config-printer.py:6353 - msgid "fetching PPD" --msgstr "Vaihda PPD" -+msgstr "noudetaan PPD:tä" - --#: ../system-config-printer.py:6434 ../system-config-printer.py:6472 -+#: ../system-config-printer.py:6382 ../system-config-printer.py:6420 - msgid "No Installable Options" - msgstr "Ei asennettavia valintoja" - --#: ../system-config-printer.py:6520 -+#: ../system-config-printer.py:6468 - #, python-format - msgid "adding printer %s" - msgstr "lisätään tulostin %s" - --#: ../system-config-printer.py:6669 -+#: ../system-config-printer.py:6617 - msgid "Would you like to print a test page?" - msgstr "Haluatko tulostaa testisivun?" - --#: ../system-config-printer.py:6722 -+#: ../system-config-printer.py:6670 - msgid "Install driver" - msgstr "Asenna ajuri" - --#: ../system-config-printer.py:6723 ../troubleshoot/CheckPPDSanity.py:131 -+#: ../system-config-printer.py:6671 ../troubleshoot/CheckPPDSanity.py:131 - #, python-format - msgid "Printer '%s' requires the %s package but it is not currently installed." - msgstr "Tulostin ”%s” vaatii paketin ”%s”, mutta se ei ole asennettuna." - --#: ../system-config-printer.py:6739 -+#: ../system-config-printer.py:6687 - msgid "Missing driver" - msgstr "Puuttuva ajuri" - --#: ../system-config-printer.py:6740 -+#: ../system-config-printer.py:6688 - #, python-format - msgid "" - "Printer '%s' requires the '%s' program but it is not currently installed. " -@@ -1654,106 +1653,102 @@ msgid "Enter device URI" - msgstr "Syötä laitteen osoite" - - #: ../glade/NewPrinterWindow.glade.h:5 --msgid "HP Printer (HPLIP) via network" --msgstr "HP-tulostin (HPLIP) verkon kautta" -- --#: ../glade/NewPrinterWindow.glade.h:6 - msgid "IPP Printer" - msgstr "IPP-tulostin" - --#: ../glade/NewPrinterWindow.glade.h:7 -+#: ../glade/NewPrinterWindow.glade.h:6 - msgid "License Terms" - msgstr "Lisenssiehdot" - --#: ../glade/NewPrinterWindow.glade.h:8 -+#: ../glade/NewPrinterWindow.glade.h:7 - msgid "Location of the LPD network printer" - msgstr "LPD-verkkokirjoittimen sijainti" - --#: ../glade/NewPrinterWindow.glade.h:9 -+#: ../glade/NewPrinterWindow.glade.h:8 - msgid "Location of the network printer" - msgstr "Verkkokirjoittimen sijainti" - --#: ../glade/NewPrinterWindow.glade.h:10 -+#: ../glade/NewPrinterWindow.glade.h:9 - msgid "Location (optional)" - msgstr "Sijainti (valinnainen)" - --#: ../glade/NewPrinterWindow.glade.h:11 -+#: ../glade/NewPrinterWindow.glade.h:10 - msgid "Network Printer" - msgstr "Verkkotulostin" - --#: ../glade/NewPrinterWindow.glade.h:12 -+#: ../glade/NewPrinterWindow.glade.h:11 - msgid "Note" - msgstr "Huomautus" - --#: ../glade/NewPrinterWindow.glade.h:13 -+#: ../glade/NewPrinterWindow.glade.h:12 - msgid "Output Quality" - msgstr "Tulosteen laatu" - --#: ../glade/NewPrinterWindow.glade.h:14 -+#: ../glade/NewPrinterWindow.glade.h:13 - msgid "Printer Name" - msgstr "Tulostimen nimi" - --#: ../glade/NewPrinterWindow.glade.h:15 -+#: ../glade/NewPrinterWindow.glade.h:14 - msgid "SMB Printer" - msgstr "SMB-tulostin" - --#: ../glade/NewPrinterWindow.glade.h:16 -+#: ../glade/NewPrinterWindow.glade.h:15 - msgid "Select Driver" - msgstr "Valittu ajuri" - --#: ../glade/NewPrinterWindow.glade.h:17 -+#: ../glade/NewPrinterWindow.glade.h:16 - msgid "Settings of the serial port" - msgstr "Sarjaportin asetukset" - --#: ../glade/NewPrinterWindow.glade.h:18 -+#: ../glade/NewPrinterWindow.glade.h:17 - msgid "smb://[workgroup/]server[:port]/printer" - msgstr "smb://[työryhmä/]palvelin[:portti]/tulostin" - --#: ../glade/NewPrinterWindow.glade.h:19 -+#: ../glade/NewPrinterWindow.glade.h:18 - msgid "Choose Class Members" - msgstr "Valitse luokan jäsenet" - --#: ../glade/NewPrinterWindow.glade.h:20 -+#: ../glade/NewPrinterWindow.glade.h:19 - msgid "Choose Driver" - msgstr "Valitse ajuri" - --#: ../glade/NewPrinterWindow.glade.h:21 -+#: ../glade/NewPrinterWindow.glade.h:20 - msgid "Describe Printer" - msgstr "Kuvaile tulostinta" - --#: ../glade/NewPrinterWindow.glade.h:22 -+#: ../glade/NewPrinterWindow.glade.h:21 - msgid "Existing Settings" - msgstr "Nykyiset asetukset" - --#: ../glade/NewPrinterWindow.glade.h:23 -+#: ../glade/NewPrinterWindow.glade.h:22 - msgid "Installable Options" - msgstr "Asennettavat valinnat" - --#: ../glade/NewPrinterWindow.glade.h:24 -+#: ../glade/NewPrinterWindow.glade.h:23 - msgid "Select Device" - msgstr "Valitse ajuri" - --#: ../glade/NewPrinterWindow.glade.h:25 -+#: ../glade/NewPrinterWindow.glade.h:24 - msgid "Baud Rate" - msgstr "Nopeus (baud)" - --#: ../glade/NewPrinterWindow.glade.h:26 -+#: ../glade/NewPrinterWindow.glade.h:25 - msgid "Browse..." - msgstr "Selaa..." - --#: ../glade/NewPrinterWindow.glade.h:27 -+#: ../glade/NewPrinterWindow.glade.h:26 - msgid "Comments..." - msgstr "Kommentit..." - --#: ../glade/NewPrinterWindow.glade.h:28 -+#: ../glade/NewPrinterWindow.glade.h:27 - msgid "Connection" - msgstr "Yhteys" - --#: ../glade/NewPrinterWindow.glade.h:29 -+#: ../glade/NewPrinterWindow.glade.h:28 - msgid "Data Bits" - msgstr "Databitit" - --#: ../glade/NewPrinterWindow.glade.h:30 -+#: ../glade/NewPrinterWindow.glade.h:29 - msgid "" - "Default\n" - "1200\n" -@@ -1775,7 +1770,7 @@ msgstr "" - "57600\n" - "115200" - --#: ../glade/NewPrinterWindow.glade.h:39 -+#: ../glade/NewPrinterWindow.glade.h:38 - msgid "" - "Default\n" - "8\n" -@@ -1785,7 +1780,7 @@ msgstr "" - "8\n" - "7" - --#: ../glade/NewPrinterWindow.glade.h:42 -+#: ../glade/NewPrinterWindow.glade.h:41 - msgid "" - "Default\n" - "None\n" -@@ -1797,7 +1792,7 @@ msgstr "" - "Parittomat\n" - "Parilliset" - --#: ../glade/NewPrinterWindow.glade.h:46 -+#: ../glade/NewPrinterWindow.glade.h:45 - msgid "" - "Default\n" - "None\n" -@@ -1811,114 +1806,113 @@ msgstr "" - "RTS/CTS (Laitteisto)\n" - "DTR/DSR (Laitteisto)" - --#: ../glade/NewPrinterWindow.glade.h:51 -+#: ../glade/NewPrinterWindow.glade.h:50 - #: ../glade/PrinterPropertiesDialog.glade.h:35 - msgid "Description:" - msgstr "Kuvaus:" - --#: ../glade/NewPrinterWindow.glade.h:52 ../troubleshoot/DeviceListed.py:40 -+#: ../glade/NewPrinterWindow.glade.h:51 ../troubleshoot/DeviceListed.py:40 - msgid "Device URI" - msgstr "Laitteen osoite" - --#: ../glade/NewPrinterWindow.glade.h:53 -+#: ../glade/NewPrinterWindow.glade.h:52 - msgid "Device description." - msgstr "Laitteen kuvaus." - --#: ../glade/NewPrinterWindow.glade.h:54 -+#: ../glade/NewPrinterWindow.glade.h:53 - msgid "DirectJet" - msgstr "DirectJet" - --#: ../glade/NewPrinterWindow.glade.h:56 -+#: ../glade/NewPrinterWindow.glade.h:55 - msgid "Driver details" - msgstr "Ajurin tiedot" - --#: ../glade/NewPrinterWindow.glade.h:57 -+#: ../glade/NewPrinterWindow.glade.h:56 - msgid "Empty" - msgstr "Tyhjä" - --#: ../glade/NewPrinterWindow.glade.h:58 -+#: ../glade/NewPrinterWindow.glade.h:57 - msgid "Find _Queue..." - msgstr "Etsi _jono..." - --#: ../glade/NewPrinterWindow.glade.h:59 -+#: ../glade/NewPrinterWindow.glade.h:58 - msgid "Flow Control" - msgstr "Vuonhallinta" - --#: ../glade/NewPrinterWindow.glade.h:60 -+#: ../glade/NewPrinterWindow.glade.h:59 - msgid "" - "For the printer you have selected there are drivers available for download." - msgstr "Valitulle tulostimelle on ladattavissa ajurit." - --#: ../glade/NewPrinterWindow.glade.h:61 -+#: ../glade/NewPrinterWindow.glade.h:60 - msgid "Free software" - msgstr "Vapaa ohjelmisto" - --#: ../glade/NewPrinterWindow.glade.h:62 -+#: ../glade/NewPrinterWindow.glade.h:61 - msgid "Graphics:" - msgstr "Grafiikka:" - --#: ../glade/NewPrinterWindow.glade.h:63 -+#: ../glade/NewPrinterWindow.glade.h:62 - msgid "Host:" - msgstr "Tietokone:" - --#: ../glade/NewPrinterWindow.glade.h:64 -+#: ../glade/NewPrinterWindow.glade.h:63 - msgid "Human-readable description such as \"HP LaserJet with Duplexer\"" - msgstr "Selväkielinen kuvaus, kuten ”HP LaserJet”" - --#: ../glade/NewPrinterWindow.glade.h:65 -+#: ../glade/NewPrinterWindow.glade.h:64 - msgid "Human-readable location such as \"Lab 1\"" - msgstr "Selväkielinen sijainti, kuten ”Huone 1”" - --#: ../glade/NewPrinterWindow.glade.h:67 -+#: ../glade/NewPrinterWindow.glade.h:66 - msgid "LPD" - msgstr "LPD" - --#: ../glade/NewPrinterWindow.glade.h:68 -+#: ../glade/NewPrinterWindow.glade.h:67 - msgid "License:" - msgstr "Lisenssi:" - --#: ../glade/NewPrinterWindow.glade.h:69 --#, fuzzy -+#: ../glade/NewPrinterWindow.glade.h:68 - msgid "Line art:" --msgstr "Tulostimen tila:" -+msgstr "Viivapiirto:" - --#: ../glade/NewPrinterWindow.glade.h:70 -+#: ../glade/NewPrinterWindow.glade.h:69 - msgid "Local Driver" - msgstr "Paikallinen ajuri" - --#: ../glade/NewPrinterWindow.glade.h:71 -+#: ../glade/NewPrinterWindow.glade.h:70 - msgid "Make and model:" - msgstr "Merkki ja malli:" - --#: ../glade/NewPrinterWindow.glade.h:72 -+#: ../glade/NewPrinterWindow.glade.h:71 - msgid "Manufacturer" - msgstr "Valmistaja" - --#: ../glade/NewPrinterWindow.glade.h:73 -+#: ../glade/NewPrinterWindow.glade.h:72 - msgid "Network" - msgstr "Verkko" - --#: ../glade/NewPrinterWindow.glade.h:75 -+#: ../glade/NewPrinterWindow.glade.h:74 - msgid "No, I do not accept this license" - msgstr "Ei, en hyväksy tätä lisenssiä" - --#: ../glade/NewPrinterWindow.glade.h:76 -+#: ../glade/NewPrinterWindow.glade.h:75 - msgid "Parity" - msgstr "Pariteetti" - --#: ../glade/NewPrinterWindow.glade.h:78 -+#: ../glade/NewPrinterWindow.glade.h:77 - msgid "Patented algorithms" - msgstr "Patentoituja algoritmeja" - --#: ../glade/NewPrinterWindow.glade.h:79 -+#: ../glade/NewPrinterWindow.glade.h:78 - msgid "Photo:" - msgstr "Valokuva:" - --#: ../glade/NewPrinterWindow.glade.h:80 -+#: ../glade/NewPrinterWindow.glade.h:79 - msgid "Port number:" - msgstr "Porttinumero:" - --#: ../glade/NewPrinterWindow.glade.h:81 -+#: ../glade/NewPrinterWindow.glade.h:80 - msgid "" - "PostScript Printer Description (PPD) files can often be found on the driver " - "disk that comes with the printer. For PostScript printers they are often " -@@ -1928,76 +1922,75 @@ msgstr "" - "mukana tulevalla ajurilevyllä. PostScript-kirjoittimien PPD-tiedostot ovat " - "yleensä osa Windows®-ajuria." - --#: ../glade/NewPrinterWindow.glade.h:82 -+#: ../glade/NewPrinterWindow.glade.h:81 - msgid "Printer model:" - msgstr "Tulostimen malli:" - --#: ../glade/NewPrinterWindow.glade.h:83 -+#: ../glade/NewPrinterWindow.glade.h:82 - msgid "Probe" - msgstr "Tunnista" - --#: ../glade/NewPrinterWindow.glade.h:84 -+#: ../glade/NewPrinterWindow.glade.h:83 - msgid "Prompt user if authentication is required" - msgstr "Kysy käyttäjältä, jos vaaditaan tunnistautumista" - --#: ../glade/NewPrinterWindow.glade.h:85 -+#: ../glade/NewPrinterWindow.glade.h:84 - msgid "Provide PPD file" - msgstr "Anna PPD-tiedosto" - --#: ../glade/NewPrinterWindow.glade.h:86 -+#: ../glade/NewPrinterWindow.glade.h:85 - msgid "Queue:" - msgstr "Jono:" - --#: ../glade/NewPrinterWindow.glade.h:87 -+#: ../glade/NewPrinterWindow.glade.h:86 - msgid "SCSI" - msgstr "SCSI" - --#: ../glade/NewPrinterWindow.glade.h:88 -+#: ../glade/NewPrinterWindow.glade.h:87 - msgid "SMB" - msgstr "SMB" - --#: ../glade/NewPrinterWindow.glade.h:89 -+#: ../glade/NewPrinterWindow.glade.h:88 - msgid "Search for a printer driver to download" - msgstr "Hae ladattavaa tulostinajuria" - --#: ../glade/NewPrinterWindow.glade.h:90 --#, fuzzy -+#: ../glade/NewPrinterWindow.glade.h:89 - msgid "Searching..." --msgstr "Etsitään" -+msgstr "Etsitään..." - --#: ../glade/NewPrinterWindow.glade.h:91 -+#: ../glade/NewPrinterWindow.glade.h:90 - msgid "Select A File" - msgstr "Valitse tiedosto" - --#: ../glade/NewPrinterWindow.glade.h:92 -+#: ../glade/NewPrinterWindow.glade.h:91 - msgid "Select printer from database" - msgstr "Valitse tulostin tietokannasta" - --#: ../glade/NewPrinterWindow.glade.h:93 -+#: ../glade/NewPrinterWindow.glade.h:92 - msgid "Serial" - msgstr "Sarja" - --#: ../glade/NewPrinterWindow.glade.h:94 -+#: ../glade/NewPrinterWindow.glade.h:93 - msgid "Set authentication details now" - msgstr "Aseta tunnistautumistiedot nyt" - --#: ../glade/NewPrinterWindow.glade.h:95 -+#: ../glade/NewPrinterWindow.glade.h:94 - msgid "Short name for this printer such as \"laserjet\"" - msgstr "Tämän tulostimen lyhyt nimi, kuten ”laserjet”" - --#: ../glade/NewPrinterWindow.glade.h:96 -+#: ../glade/NewPrinterWindow.glade.h:95 - msgid "Supplier:" - msgstr "Toimittaja:" - --#: ../glade/NewPrinterWindow.glade.h:97 -+#: ../glade/NewPrinterWindow.glade.h:96 - msgid "Support:" - msgstr "Tuki:" - --#: ../glade/NewPrinterWindow.glade.h:98 -+#: ../glade/NewPrinterWindow.glade.h:97 - msgid "Text:" - msgstr "Teksti:" - --#: ../glade/NewPrinterWindow.glade.h:99 -+#: ../glade/NewPrinterWindow.glade.h:98 - msgid "" - "The foomatic printer database contains various manufacturer provided " - "PostScript Printer Description (PPD) files and also can generate PPD files " -@@ -2011,7 +2004,7 @@ msgstr "" - "valmistajien toimittamat PPD-tiedostot tarjoavat paremman tuen kirjoittimen " - "ominaisuuksille." - --#: ../glade/NewPrinterWindow.glade.h:100 -+#: ../glade/NewPrinterWindow.glade.h:99 - msgid "" - "These drivers do not come from your operating system supplier and will not " - "be covered by their commercial support. See the support and license terms " -@@ -2020,13 +2013,13 @@ msgstr "" - "Nämä ajurit eivät tule käyttöjärjestelmän toimittajalta eikä toimittajan " - "kaupallinen tuki kata niitä. Katso ajurin toimittajan tuki- ja lisenssiehdot." - --#: ../glade/NewPrinterWindow.glade.h:101 -+#: ../glade/NewPrinterWindow.glade.h:100 - msgid "" - "This driver supports additional hardware that may be installed in the " - "printer." - msgstr "Tämä ajuri tukee tulostimeen asennettavia lisälaitteita." - --#: ../glade/NewPrinterWindow.glade.h:102 -+#: ../glade/NewPrinterWindow.glade.h:101 - msgid "" - "This is done by assuming that options with the same name do have the same " - "meaning. Settings of options that are not present in the new PPD will be " -@@ -2036,7 +2029,7 @@ msgstr "" - "Asetukset, joita ei ole uudessa PPD:ssä menetetään ja asetukset, jotka ovat " - "vain uudessa PPD:ssä asetetaan oletusarvoonsa." - --#: ../glade/NewPrinterWindow.glade.h:103 -+#: ../glade/NewPrinterWindow.glade.h:102 - msgid "" - "This way all current option settings will be lost. The default settings of " - "the new PPD will be used. " -@@ -2044,20 +2037,20 @@ msgstr "" - "Näin kaikki nykyiset asetukset menetetään. Uuden PPD:n oletusasetukset " - "otetaan käyttöön." - --#: ../glade/NewPrinterWindow.glade.h:104 -+#: ../glade/NewPrinterWindow.glade.h:103 - msgid "Try to copy the option settings over from the old PPD. " - msgstr "Yritä kopioida asetukset vanhasta PPD:stä." - --#: ../glade/NewPrinterWindow.glade.h:105 -+#: ../glade/NewPrinterWindow.glade.h:104 - msgid "URI:" - msgstr "URI:" - --#: ../glade/NewPrinterWindow.glade.h:107 -+#: ../glade/NewPrinterWindow.glade.h:106 - msgid "Use the new PPD (Postscript Printer Description) as is." - msgstr "" - "Käytä uutta PPD (Postscript Printer Description) -tiedostoa sellaisenaan." - --#: ../glade/NewPrinterWindow.glade.h:109 -+#: ../glade/NewPrinterWindow.glade.h:108 - msgid "" - "With this choice no driver download will be performed. In the next steps a " - "locally installed driver will be selected." -@@ -2065,24 +2058,24 @@ msgstr "" - "Tämän valinnan vuoksi ajuria ei ladata. Seuraavissa vaiheissa valitaan " - "paikallisesti asennettu ajuri." - --#: ../glade/NewPrinterWindow.glade.h:110 -+#: ../glade/NewPrinterWindow.glade.h:109 - msgid "Yes, I accept this license" - msgstr "Kyllä, hyväksyn tämän lisenssin" - --#: ../glade/NewPrinterWindow.glade.h:111 -+#: ../glade/NewPrinterWindow.glade.h:110 - msgid "_Search" - msgstr "_Hae" - --#: ../glade/NewPrinterWindow.glade.h:112 -+#: ../glade/NewPrinterWindow.glade.h:111 - msgid "_Verify..." - msgstr "_Varmenna..." - --#: ../glade/NewPrinterWindow.glade.h:113 -+#: ../glade/NewPrinterWindow.glade.h:112 - #: ../glade/PrinterPropertiesDialog.glade.h:128 - msgid "move left" - msgstr "siirrä vasemmalle" - --#: ../glade/NewPrinterWindow.glade.h:114 -+#: ../glade/NewPrinterWindow.glade.h:113 - #: ../glade/PrinterPropertiesDialog.glade.h:129 - msgid "move right" - msgstr "siirrä oikealle" -@@ -2597,8 +2590,7 @@ msgstr "Salli _etäylläpito" - - #: ../glade/ServerSettingsDialog.glade.h:3 - msgid "Allow _users to cancel any job (not just their own)" --msgstr "" --"Salli _käyttäjien peruuttaa mikä tahansa työ (ei pelkästään heidän omiaan)" -+msgstr "Salli _käyttäjien perua mikä tahansa työ (ei pelkästään heidän omiaan)" - - #: ../glade/ServerSettingsDialog.glade.h:4 - msgid "Allow printing from the _Internet" -@@ -2721,9 +2713,9 @@ msgid "Printer off-line" - msgstr "Ei yhteyttä tulostimeen" - - #: ../statereason.py:102 --#, fuzzy, python-format -+#, python-format - msgid "Printer '%s' is currently off-line." --msgstr "Tulostimeen ”%s” saada tällä hetkellä yhteyttä." -+msgstr "Tulostimeen ”%s” ei saada tällä hetkellä yhteyttä." - - #: ../statereason.py:103 - msgid "Not connected?" -@@ -2739,7 +2731,7 @@ msgid "Printer error" - msgstr "Tulostinvirhe" - - #: ../statereason.py:106 --#, fuzzy, python-format -+#, python-format - msgid "There is a problem on printer '%s'." - msgstr "Tulostimessa ”%s” on ongelma." - -@@ -2809,7 +2801,7 @@ msgid "Invalid PPD File" - msgstr "Virheellinen PPD-tiedosto" - - #: ../troubleshoot/CheckPPDSanity.py:106 --#, fuzzy, python-format -+#, python-format - msgid "" - "The PPD file for printer '%s' does not conform to the specification. " - "Possible reason follows:" -@@ -2817,7 +2809,7 @@ msgstr "Tulostimen ”%s” PPD-tiedosto - - #. Perhaps cupstestppd is not in the path. - #: ../troubleshoot/CheckPPDSanity.py:112 --#, fuzzy, python-format -+#, python-format - msgid "There is a problem with the PPD file for printer '%s'." - msgstr "Tulostimen ”%s” PPD-tiedostossa on ongelma." - -@@ -2826,7 +2818,7 @@ msgid "Missing Printer Driver" - msgstr "Tulostinajuri puuttuu" - - #: ../troubleshoot/CheckPPDSanity.py:136 --#, fuzzy, python-format -+#, python-format - msgid "" - "Printer '%s' requires the '%s' program but it is not currently installed." - msgstr "Tulostin ”%s” vaatii ohjelman ”%s”, mutta se ei ole asennettuna." -@@ -2960,7 +2952,7 @@ msgid "There are status messages associa - msgstr "Tähän jonoon liittyy tilaviestejä." - - #: ../troubleshoot/PrinterStateReasons.py:58 --#, fuzzy, python-format -+#, python-format - msgid "The printer's state message is: '%s'." - msgstr "Tulostimen tilaviesti on: ”%s”." - -@@ -3001,15 +2993,15 @@ msgstr "Tulostuivatko merkityt tulostust - msgid "Remember to load paper of type '%s' into the printer first." - msgstr "Muista ladata ”%s” -tyyppistä paperia ensin tulostimeen." - --#: ../troubleshoot/PrintTestPage.py:399 -+#: ../troubleshoot/PrintTestPage.py:416 - msgid "Error submitting test page" - msgstr "Virhe lähetettäessä testisivua" - - #: ../troubleshoot/QueueNotEnabled.py:56 - #: ../troubleshoot/QueueRejectingJobs.py:66 --#, fuzzy, python-format -+#, python-format - msgid "The reason given is: '%s'." --msgstr "Annettu syy oli: ”%s”." -+msgstr "Annettu syy on: ”%s”." - - #: ../troubleshoot/QueueNotEnabled.py:58 - msgid "This may be due to the printer being disconnected or switched off." -@@ -3022,12 +3014,11 @@ msgid "Queue Not Enabled" - msgstr "Jono ei käytössä" - - #: ../troubleshoot/QueueNotEnabled.py:63 --#, fuzzy, python-format -+#, python-format - msgid "The queue '%s' is not enabled." - msgstr "Jono ”%s” ei ole käytössä." - - #: ../troubleshoot/QueueNotEnabled.py:71 --#, fuzzy - msgid "" - "To enable it, select the 'Enabled' checkbox in the 'Policies' tab for the " - "printer in the printer administration tool." -@@ -3040,12 +3031,11 @@ msgid "Queue Rejecting Jobs" - msgstr "Jono ei ota vastaan töitä" - - #: ../troubleshoot/QueueRejectingJobs.py:63 --#, fuzzy, python-format -+#, python-format - msgid "The queue '%s' is rejecting jobs." - msgstr "Jono ”%s” ei ota töitä vastaan." - - #: ../troubleshoot/QueueRejectingJobs.py:70 --#, fuzzy - msgid "" - "To make the queue accept jobs, select the 'Accepting Jobs' checkbox in the " - "'Policies' tab for the printer in the printer administration tool." -@@ -3078,7 +3068,6 @@ msgid "CUPS Service Stopped" - msgstr "CUPS-palvelu pysäytettynä" - - #: ../troubleshoot/SchedulerNotRunning.py:29 --#, fuzzy - msgid "" - "The CUPS print spooler does not appear to be running. To correct this, " - "choose System->Administration->Services from the main menu and look for the " -@@ -3096,7 +3085,7 @@ msgid "It is not possible to connect to - msgstr "Palvelimeen ei voida ottaa yhteyttä." - - #: ../troubleshoot/ServerFirewalled.py:42 --#, fuzzy, python-format -+#, python-format - msgid "" - "Please check to see if a firewall or router configuration is blocking TCP " - "port %d on server '%s'." -@@ -3144,14 +3133,13 @@ msgid "Missing printer driver" - msgstr "Tulostinajuri puuttuu" - - #: ../applet.py:119 --#, fuzzy, python-format -+#, python-format - msgid "No printer driver for %s." --msgstr "Tulostinajuri puuttuu" -+msgstr "Tulostimelle ”%s” ei ole ajuria." - - #: ../applet.py:121 --#, fuzzy - msgid "No driver for this printer." --msgstr "Tulostimen uusi nimi" -+msgstr "Tälle tulostimelle ei ole ajuria." - - #: ../applet.py:156 - msgid "Printer added" -@@ -3198,7 +3186,7 @@ msgstr "Ilmoitusalueen kuvake tulostust - - #: ../manage-print-jobs.desktop.in.h:1 - msgid "Cancel, pause, resume or reprint jobs" --msgstr "Peruuta, aseta tauolle, jatka tai tulosta uudelleen töitä" -+msgstr "Peru, aseta tauolle, jatka tai tulosta uudelleen töitä" - - #: ../manage-print-jobs.desktop.in.h:2 - msgid "Manage Print Jobs" -@@ -3208,6 +3196,15 @@ msgstr "Hallitse tulostustöitä" - msgid "Select default printer" - msgstr "Valitse oletustulostin" - -+#~ msgid "HP Printer (HPLIP)" -+#~ msgstr "HP-tulostin (HPLIP)" -+ -+#~ msgid "HPLIP cannot find the device." -+#~ msgstr "HPLIP ei löydä laitetta." -+ -+#~ msgid "HP Printer (HPLIP) via network" -+#~ msgstr "HP-tulostin (HPLIP) verkon kautta" -+ - #~ msgid "Not Found" - #~ msgstr "Ei löytynyt" - -diff -up system-config-printer-1.1.5/po/fr.po.git-1.1.x system-config-printer-1.1.5/po/fr.po ---- system-config-printer-1.1.5/po/fr.po.git-1.1.x 2009-03-03 22:21:46.000000000 +0000 -+++ system-config-printer-1.1.5/po/fr.po 2009-03-10 17:43:31.000000000 +0000 -@@ -20,7 +20,7 @@ msgid "" - msgstr "" - "Project-Id-Version: s-c-printer.trunk._2_\n" - "Report-Msgid-Bugs-To: https://bugzilla.redhat.com/bugzilla\n" --"POT-Creation-Date: 2009-03-02 23:22+0000\n" -+"POT-Creation-Date: 2009-03-10 16:51+0000\n" - "PO-Revision-Date: 2008-06-30 22:35+0200\n" - "Last-Translator: Mathieu Schopfer \n" - "Language-Team: French \n" -@@ -68,11 +68,11 @@ msgstr "" - msgid "Enter IP address" - msgstr "Adresse IP du serveur :" - --#: ../authconn.py:35 ../glade/NewPrinterWindow.glade.h:108 -+#: ../authconn.py:35 ../glade/NewPrinterWindow.glade.h:107 - msgid "Username:" - msgstr "Nom d'utilisateur :" - --#: ../authconn.py:36 ../glade/NewPrinterWindow.glade.h:77 -+#: ../authconn.py:36 ../glade/NewPrinterWindow.glade.h:76 - msgid "Password:" - msgstr "Mot de passe :" - -@@ -80,7 +80,7 @@ msgstr "Mot de passe :" - msgid "Domain:" - msgstr "Domaine :" - --#: ../authconn.py:46 -+#: ../authconn.py:46 ../authconn.py:409 - msgid "Authentication" - msgstr "Authentification" - -@@ -88,45 +88,54 @@ msgstr "Authentification" - msgid "Remember password" - msgstr "" - --#: ../authconn.py:211 ../authconn.py:232 -+#: ../authconn.py:208 -+#, python-format -+msgid "Unauthorized request (%s)" -+msgstr "" -+ -+#: ../authconn.py:209 -+msgid "You are not authorized to carry out therequested action." -+msgstr "" -+ -+#: ../authconn.py:212 ../authconn.py:233 - #, fuzzy - msgid "Operation canceled" - msgstr "Comportement par défaut" - --#: ../authconn.py:253 -+#: ../authconn.py:250 - #, fuzzy, python-format - msgid "CUPS server error (%s)" - msgstr "Erreur du serveur CUPS" - --#: ../authconn.py:255 ../errordialogs.py:57 --#: ../troubleshoot/PrintTestPage.py:400 -+#: ../authconn.py:252 ../errordialogs.py:56 ../errordialogs.py:70 -+msgid "CUPS server error" -+msgstr "Erreur du serveur CUPS" -+ -+#: ../authconn.py:261 ../errordialogs.py:57 -+#: ../troubleshoot/PrintTestPage.py:417 - #, python-format - msgid "There was an error during the CUPS operation: '%s'." - msgstr "Une erreur s'est produite lors de l'opération CUPS : « %s »." - --#: ../authconn.py:258 -+#: ../authconn.py:264 - #, fuzzy - msgid "Retry" - msgstr "mes tâches" - --#: ../authconn.py:379 ../authconn.py:381 ../errordialogs.py:65 ../pysmb.py:75 -+#: ../authconn.py:385 ../authconn.py:387 ../errordialogs.py:65 ../pysmb.py:75 - #: ../pysmb.py:77 - msgid "Not authorized" - msgstr "Non autorisé" - --#: ../authconn.py:382 ../pysmb.py:78 -+#: ../authconn.py:388 ../pysmb.py:78 - msgid "The password may be incorrect." - msgstr "Le mot de passe est peut-être incorrect." - --#: ../authconn.py:400 -+#: ../authconn.py:407 - #, fuzzy, python-format - msgid "Authentication (%s)" - msgstr "Authentification" - --#: ../errordialogs.py:56 ../errordialogs.py:70 --msgid "CUPS server error" --msgstr "Erreur du serveur CUPS" -- - #: ../errordialogs.py:66 - msgid "" - "The password may be incorrect, or the server may be configured to deny " -@@ -155,7 +164,7 @@ msgstr "Mise à jour requise" - msgid "Server error" - msgstr "Erreur serveur" - --#: ../errordialogs.py:82 ../system-config-printer.py:1219 -+#: ../errordialogs.py:82 ../system-config-printer.py:1223 - msgid "Not connected" - msgstr "Non connecté(e)" - -@@ -177,7 +186,7 @@ msgstr "" - msgid "_New Group from Selection" - msgstr "" - --#: ../GroupsPane.py:98 ../system-config-printer.py:393 -+#: ../GroupsPane.py:98 ../system-config-printer.py:397 - msgid "_Rename" - msgstr "_Renommer" - -@@ -244,7 +253,7 @@ msgid "Document" - msgstr "Document" - - #: ../jobviewer.py:212 ../my-default-printer.py:153 --#: ../system-config-printer.py:366 ../system-config-printer.py:1367 -+#: ../system-config-printer.py:370 ../system-config-printer.py:1371 - #: ../troubleshoot/PrintTestPage.py:84 - msgid "Printer" - msgstr "Imprimante" -@@ -281,8 +290,8 @@ msgstr "État d'impression du document ( - - #: ../jobviewer.py:386 ../jobviewer.py:451 ../jobviewer.py:452 - #: ../jobviewer.py:492 ../jobviewer.py:600 ../jobviewer.py:727 --#: ../jobviewer.py:1196 ../jobviewer.py:1222 ../system-config-printer.py:2546 --#: ../glade/NewPrinterWindow.glade.h:106 -+#: ../jobviewer.py:1196 ../jobviewer.py:1222 ../system-config-printer.py:2556 -+#: ../glade/NewPrinterWindow.glade.h:105 - #: ../troubleshoot/ChooseNetworkPrinter.py:101 - #: ../troubleshoot/ChooseNetworkPrinter.py:102 - #: ../troubleshoot/ChooseNetworkPrinter.py:105 -@@ -375,12 +384,12 @@ msgstr "Maintenir jusqu'à :" - msgid "Pending" - msgstr "En attente" - --#: ../jobviewer.py:591 ../system-config-printer.py:186 -+#: ../jobviewer.py:591 ../system-config-printer.py:190 - #: ../troubleshoot/PrintTestPage.py:43 - msgid "Processing" - msgstr "Traitement en cours" - --#: ../jobviewer.py:592 ../system-config-printer.py:188 -+#: ../jobviewer.py:592 ../system-config-printer.py:192 - #: ../troubleshoot/PrintTestPage.py:44 - msgid "Stopped" - msgstr "Arrêté" -@@ -497,8 +506,8 @@ msgstr "_Utiliser la valeur par défaut" - msgid "_Set Default" - msgstr "_Définir la valeur par défaut" - --#: ../my-default-printer.py:158 ../system-config-printer.py:423 --#: ../system-config-printer.py:3660 ../troubleshoot/ChooseNetworkPrinter.py:37 -+#: ../my-default-printer.py:158 ../system-config-printer.py:427 -+#: ../system-config-printer.py:3675 ../troubleshoot/ChooseNetworkPrinter.py:37 - #: ../troubleshoot/ChoosePrinter.py:38 - msgid "Location" - msgstr "Emplacement" -@@ -532,7 +541,7 @@ msgstr "Imprimante par défaut" - msgid "Authenticated" - msgstr "Authentification" - --#: ../ppdippstr.py:50 ../system-config-printer.py:6259 -+#: ../ppdippstr.py:50 ../system-config-printer.py:6207 - msgid "None" - msgstr "Aucune" - -@@ -752,128 +761,128 @@ msgstr "" - msgid "1200 dpi, photo, black + color cartridge, photo paper" - msgstr "" - --#: ../system-config-printer.py:127 -+#: ../system-config-printer.py:131 - msgid "To do this, select System->Administration->Firewall from the main menu." - msgstr "" - "Pour ce faire, choisissez Système -> Administration -> Pare-feudans le menu " - "principal." - --#: ../system-config-printer.py:185 -+#: ../system-config-printer.py:189 - msgid "Idle" - msgstr "Inactif" - --#: ../system-config-printer.py:187 -+#: ../system-config-printer.py:191 - msgid "Busy" - msgstr "Occupé" - --#: ../system-config-printer.py:372 ../system-config-printer.py:1373 -+#: ../system-config-printer.py:376 ../system-config-printer.py:1377 - msgid "Class" - msgstr "Classe" - --#: ../system-config-printer.py:399 -+#: ../system-config-printer.py:403 - msgid "Set As De_fault" - msgstr "Définir par dé_faut" - --#: ../system-config-printer.py:403 -+#: ../system-config-printer.py:407 - #, fuzzy - msgid "_Create class" - msgstr "_Créer une classe" - --#: ../system-config-printer.py:405 -+#: ../system-config-printer.py:409 - msgid "View Print _Queue" - msgstr "Voir la _file d'attente" - --#: ../system-config-printer.py:407 -+#: ../system-config-printer.py:411 - msgid "_Add to Group" - msgstr "" - --#: ../system-config-printer.py:409 -+#: ../system-config-printer.py:413 - msgid "Save Results as _Group" - msgstr "" - --#: ../system-config-printer.py:411 -+#: ../system-config-printer.py:415 - msgid "Save Filter as _Search Group" - msgstr "" - --#: ../system-config-printer.py:415 -+#: ../system-config-printer.py:419 - msgid "E_nabled" - msgstr "Ac_tivée" - --#: ../system-config-printer.py:417 -+#: ../system-config-printer.py:421 - msgid "_Shared" - msgstr "_Partagée" - --#: ../system-config-printer.py:421 ../troubleshoot/ChooseNetworkPrinter.py:35 -+#: ../system-config-printer.py:425 ../troubleshoot/ChooseNetworkPrinter.py:35 - #: ../troubleshoot/ChoosePrinter.py:36 ../troubleshoot/DeviceListed.py:36 - msgid "Name" - msgstr "Nom" - --#: ../system-config-printer.py:422 -+#: ../system-config-printer.py:426 - #, fuzzy - msgid "Description" - msgstr "Description :" - --#: ../system-config-printer.py:424 -+#: ../system-config-printer.py:428 - msgid "Manufacturer / Model" - msgstr "" - - #. Printer state reasons list --#: ../system-config-printer.py:499 -+#: ../system-config-printer.py:503 - msgid "Message" - msgstr "Message" - --#: ../system-config-printer.py:534 -+#: ../system-config-printer.py:538 - msgid "Problems?" - msgstr "Problèmes ?" - --#: ../system-config-printer.py:637 ../system-config-printer.py:639 -+#: ../system-config-printer.py:641 ../system-config-printer.py:643 - msgid "Members of this class" - msgstr "Membres de ce groupe" - --#: ../system-config-printer.py:638 ../system-config-printer.py:640 -+#: ../system-config-printer.py:642 ../system-config-printer.py:644 - msgid "Others" - msgstr "Autres" - --#: ../system-config-printer.py:641 -+#: ../system-config-printer.py:645 - msgid "Devices" - msgstr "Périphériques" - --#: ../system-config-printer.py:642 -+#: ../system-config-printer.py:646 - #, fuzzy - msgid "Connections" - msgstr "Connexion" - --#: ../system-config-printer.py:643 -+#: ../system-config-printer.py:647 - msgid "Makes" - msgstr "Fabricants" - --#: ../system-config-printer.py:644 -+#: ../system-config-printer.py:648 - msgid "Models" - msgstr "Modèles" - --#: ../system-config-printer.py:645 -+#: ../system-config-printer.py:649 - msgid "Drivers" - msgstr "Pilotes" - --#: ../system-config-printer.py:646 ../glade/NewPrinterWindow.glade.h:55 -+#: ../system-config-printer.py:650 ../glade/NewPrinterWindow.glade.h:54 - msgid "Downloadable Drivers" - msgstr "Pilotes téléchargeables" - --#: ../system-config-printer.py:647 -+#: ../system-config-printer.py:651 - msgid "Users" - msgstr "Utilisateurs" - --#: ../system-config-printer.py:682 -+#: ../system-config-printer.py:686 - msgid "Automatic rotation" - msgstr "Rotation automatique" - --#: ../system-config-printer.py:989 -+#: ../system-config-printer.py:993 - #, fuzzy, python-format - msgid "Printer Properties - '%s' on %s" - msgstr "Propriétés de l'imprimante - « %s » sur %s" - - #. The Conflict button was pressed. --#: ../system-config-printer.py:996 -+#: ../system-config-printer.py:1000 - msgid "" - "There are conflicting options.\n" - "Changes can only be applied after\n" -@@ -883,78 +892,78 @@ msgstr "" - "Les modifications ne pourront être validées qu'après \n" - "avoir résolu ces conflits." - --#: ../system-config-printer.py:1214 -+#: ../system-config-printer.py:1218 - #, python-format - msgid "Printer configuration - %s" - msgstr "Configuration de l'imprimante - %s" - --#: ../system-config-printer.py:1217 -+#: ../system-config-printer.py:1221 - #, python-format - msgid "Connected to %s" - msgstr "Connecté(e) à %s" - - #. Update our copy of the printer's settings. --#: ../system-config-printer.py:1257 ../system-config-printer.py:2042 -+#: ../system-config-printer.py:1261 ../system-config-printer.py:2046 - msgid "obtaining queue details" - msgstr "" - --#: ../system-config-printer.py:1295 -+#: ../system-config-printer.py:1299 - msgid "Remove from Group" - msgstr "" - --#: ../system-config-printer.py:1361 -+#: ../system-config-printer.py:1365 - msgid "Network printer (discovered)" - msgstr "Imprimante réseau (trouvée)" - --#: ../system-config-printer.py:1364 -+#: ../system-config-printer.py:1368 - msgid "Network class (discovered)" - msgstr "Classe réseau (trouvée)" - --#: ../system-config-printer.py:1370 ../system-config-printer.py:5524 --#: ../system-config-printer.py:5594 ../system-config-printer.py:5596 -+#: ../system-config-printer.py:1374 ../system-config-printer.py:5519 -+#: ../system-config-printer.py:5589 ../system-config-printer.py:5591 - msgid "Fax" - msgstr "Fax" - --#: ../system-config-printer.py:1376 ../system-config-printer.py:1382 -+#: ../system-config-printer.py:1380 ../system-config-printer.py:1386 - #: ../troubleshoot/LocalOrRemote.py:30 - msgid "Network printer" - msgstr "Imprimante réseau" - --#: ../system-config-printer.py:1379 -+#: ../system-config-printer.py:1383 - msgid "Network print share" - msgstr "Partage d'imprimante en réseau" - --#: ../system-config-printer.py:1508 ../glade/ConnectingDialog.glade.h:2 -+#: ../system-config-printer.py:1512 ../glade/ConnectingDialog.glade.h:2 - #, no-c-format, python-format - msgid "Opening connection to %s" - msgstr "" - --#: ../system-config-printer.py:1887 -+#: ../system-config-printer.py:1891 - msgid "Installable Options" - msgstr "Extensions de l'imprimante" - --#: ../system-config-printer.py:1888 -+#: ../system-config-printer.py:1892 - #: ../glade/PrinterPropertiesDialog.glade.h:109 - msgid "Printer Options" - msgstr "Options de l'imprimante" - --#: ../system-config-printer.py:1924 -+#: ../system-config-printer.py:1928 - #, python-format - msgid "modifying class %s" - msgstr "" - --#: ../system-config-printer.py:1926 ../system-config-printer.py:3019 --#: ../system-config-printer.py:3044 ../system-config-printer.py:6547 --#: ../system-config-printer.py:6559 ../system-config-printer.py:6581 -+#: ../system-config-printer.py:1930 ../system-config-printer.py:3037 -+#: ../system-config-printer.py:3062 ../system-config-printer.py:6495 -+#: ../system-config-printer.py:6507 ../system-config-printer.py:6529 - #, fuzzy, python-format - msgid "modifying printer %s" - msgstr "Ajout de l'imprimante" - --#: ../system-config-printer.py:1941 -+#: ../system-config-printer.py:1945 - msgid "This will delete this class!" - msgstr "Ceci effacera le groupe !" - --#: ../system-config-printer.py:1942 -+#: ../system-config-printer.py:1946 - msgid "Proceed anyway?" - msgstr "Êtes-vous sûr de vouloir continuer ?" - -@@ -962,47 +971,47 @@ msgstr "Êtes-vous sûr de vouloir conti - #. but we have never fetched the server settings to see whether - #. the server is publishing shared printers. Fetch the settings - #. now so that we can update the "not published" label if necessary. --#: ../system-config-printer.py:2030 ../system-config-printer.py:3203 -+#: ../system-config-printer.py:2034 ../system-config-printer.py:3221 - #, fuzzy - msgid "fetching server settings" - msgstr "Modifier les propriétés du serveur" - --#: ../system-config-printer.py:2100 -+#: ../system-config-printer.py:2104 - msgid "Set Default Printer" - msgstr "Définir l'imprimante par défaut" - --#: ../system-config-printer.py:2102 -+#: ../system-config-printer.py:2106 - msgid "Do you want to set this as the system-wide default printer?" - msgstr "Voulez-vous la définir comme imprimante par défaut du système ?" - --#: ../system-config-printer.py:2104 -+#: ../system-config-printer.py:2108 - msgid "Set as the _system-wide default printer" - msgstr "Définir comme imprimante par défaut du _système" - --#: ../system-config-printer.py:2106 -+#: ../system-config-printer.py:2110 - msgid "_Clear my personal default setting" - msgstr "Effa_cer mes paramètres par défaut personnels" - --#: ../system-config-printer.py:2107 -+#: ../system-config-printer.py:2111 - msgid "Set as my _personal default printer" - msgstr "Définir comme mon imprimante _personnelle par défaut" - --#: ../system-config-printer.py:2112 -+#: ../system-config-printer.py:2116 - #, fuzzy - msgid "setting default printer" - msgstr "Sélectionner l'imprimante par défaut" - --#: ../system-config-printer.py:2169 -+#: ../system-config-printer.py:2173 - #, fuzzy - msgid "printing test page" - msgstr "Imprimer la page de test" - --#: ../system-config-printer.py:2182 ../system-config-printer.py:2217 --#: ../system-config-printer.py:5418 -+#: ../system-config-printer.py:2186 ../system-config-printer.py:2221 -+#: ../system-config-printer.py:5413 - msgid "Not possible" - msgstr "Impossible" - --#: ../system-config-printer.py:2183 ../system-config-printer.py:2218 -+#: ../system-config-printer.py:2187 ../system-config-printer.py:2222 - msgid "" - "The remote server did not accept the print job, most likely because the " - "printer is not shared." -@@ -1010,20 +1019,20 @@ msgstr "" - "Le serveur distant n'accepte pas cette tâche d'impression, vraisemblablement " - "parce que l'imprimante n'est pas partagée." - --#: ../system-config-printer.py:2195 ../system-config-printer.py:2210 -+#: ../system-config-printer.py:2199 ../system-config-printer.py:2214 - msgid "Submitted" - msgstr "Soumis" - --#: ../system-config-printer.py:2196 -+#: ../system-config-printer.py:2200 - #, python-format - msgid "Test page submitted as job %d" - msgstr "Page de test soumise comme tâche d'impression %d" - --#: ../system-config-printer.py:2203 -+#: ../system-config-printer.py:2207 - msgid "sending maintenance command" - msgstr "" - --#: ../system-config-printer.py:2211 -+#: ../system-config-printer.py:2215 - #, python-format - msgid "Maintenance command submitted as job %d" - msgstr "Commande de maintenance soumise comme tâche d'impression %d" -@@ -1031,69 +1040,69 @@ msgstr "Commande de maintenance soumise - #. The underlying cupsGetPPD2() function returned NULL without - #. setting an IPP error, so it'll be something like a failed - #. connection. --#: ../system-config-printer.py:2285 ../system-config-printer.py:2381 -+#: ../system-config-printer.py:2289 ../system-config-printer.py:2385 - msgid "Error" - msgstr "Erreur" - --#: ../system-config-printer.py:2286 -+#: ../system-config-printer.py:2290 - msgid "There was a problem connecting to the CUPS server." - msgstr "Il y a eu un problème lors de la connexion au serveur CUPS." - --#: ../system-config-printer.py:2382 -+#: ../system-config-printer.py:2386 - #, python-format - msgid "Option '%s' has value '%s' and cannot be edited." - msgstr "L'option « %s » a pour valeur « %s » et ne peut pas être modifiée." - --#: ../system-config-printer.py:2466 -+#: ../system-config-printer.py:2476 - msgid "Marker levels are not reported for this printer." - msgstr "" - --#: ../system-config-printer.py:2763 -+#: ../system-config-printer.py:2773 - #, fuzzy - msgid "Cannot Rename" - msgstr "_Renommer" - --#: ../system-config-printer.py:2764 -+#: ../system-config-printer.py:2774 - #, fuzzy - msgid "There are queued jobs." - msgstr "Aucune file d'attente n'est disponible." - --#: ../system-config-printer.py:2822 -+#: ../system-config-printer.py:2840 - #, fuzzy - msgid "renaming printer" - msgstr "Ajout de l'imprimante" - - #. for classes make sure all members - #. will get added --#: ../system-config-printer.py:2907 -+#: ../system-config-printer.py:2925 - #, fuzzy - msgid "copying printer" - msgstr "Ajout de l'imprimante" - --#: ../system-config-printer.py:2971 -+#: ../system-config-printer.py:2989 - #, fuzzy, python-format - msgid "Really delete class '%s'?" - msgstr "Voulez-vous réellement supprimer la classe « %s » ?" - --#: ../system-config-printer.py:2973 -+#: ../system-config-printer.py:2991 - #, fuzzy, python-format - msgid "Really delete printer '%s'?" - msgstr "Voulez-vous réellement supprimer l'imprimante « %s » ?" - --#: ../system-config-printer.py:2975 -+#: ../system-config-printer.py:2993 - msgid "Really delete selected destinations?" - msgstr "Voulez-vous réellement supprimer les destinations sélectionnées ?" - --#: ../system-config-printer.py:2996 -+#: ../system-config-printer.py:3014 - #, fuzzy, python-format - msgid "deleting printer %s" - msgstr "Ajout de l'imprimante" - --#: ../system-config-printer.py:3070 -+#: ../system-config-printer.py:3088 - msgid "Publish Shared Printers" - msgstr "Publier les imprimantes partagées" - --#: ../system-config-printer.py:3071 -+#: ../system-config-printer.py:3089 - msgid "" - "Shared printers are not available to other people unless the 'Publish shared " - "printers' option is enabled in the server settings." -@@ -1102,7 +1111,7 @@ msgstr "" - "tant que l'option « Publier les imprimantes partagées » n'est pas activée " - "dans les paramètres du serveur." - --#: ../system-config-printer.py:3264 -+#: ../system-config-printer.py:3282 - #, fuzzy - msgid "modifying server settings" - msgstr "Modifier les propriétés du serveur" -@@ -1113,11 +1122,11 @@ msgstr "Modifier les propriétés du ser - #. be unblocked. Unfortunately, this is not yet possible - #. (bug #440469). However, we can display a dialog to suggest - #. that now might be a good time to review the firewall settings. --#: ../system-config-printer.py:3289 -+#: ../system-config-printer.py:3307 - msgid "Review Firewall" - msgstr "Vérifer le pare-feu" - --#: ../system-config-printer.py:3290 -+#: ../system-config-printer.py:3308 - msgid "" - "You may need to adjust the firewall to allow network printing to this " - "computer." -@@ -1125,25 +1134,25 @@ msgstr "" - "Il se peut que vous deviez modifier les paramètres du pare-feu pour " - "autoriser l'impression en réseau sur cet ordinateur." - --#: ../system-config-printer.py:3623 -+#: ../system-config-printer.py:3638 - msgid "Browsing not available (pysmbc not installed)" - msgstr "" - - #. SMB list columns --#: ../system-config-printer.py:3629 -+#: ../system-config-printer.py:3644 - msgid "Share" - msgstr "Partage" - --#: ../system-config-printer.py:3635 -+#: ../system-config-printer.py:3650 - msgid "Comment" - msgstr "Commentaire" - - #. IPP list columns --#: ../system-config-printer.py:3654 -+#: ../system-config-printer.py:3669 - msgid "Queue" - msgstr "File" - --#: ../system-config-printer.py:3668 -+#: ../system-config-printer.py:3683 - msgid "" - "PostScript Printer Description files (*.ppd, *.PPD, *.ppd.gz, *.PPD.gz, *." - "PPD.GZ)" -@@ -1151,68 +1160,68 @@ msgstr "" - "Fichiers de description de l'imprimante PostScript (*.ppd, *.PPD, *.ppd.gz, " - "*.PPD.gz, *.PPD.GZ)" - --#: ../system-config-printer.py:3677 -+#: ../system-config-printer.py:3692 - msgid "All files (*)" - msgstr "Tous les fichiers (*)" - --#: ../system-config-printer.py:3713 ../system-config-printer.py:5970 --#: ../system-config-printer.py:6008 ../applet.py:124 -+#: ../system-config-printer.py:3728 ../system-config-printer.py:5918 -+#: ../system-config-printer.py:5956 ../applet.py:124 - msgid "Search" - msgstr "Rechercher" - --#: ../system-config-printer.py:3736 ../system-config-printer.py:3760 --#: ../glade/NewPrinterWindow.glade.h:74 -+#: ../system-config-printer.py:3751 ../system-config-printer.py:3775 -+#: ../glade/NewPrinterWindow.glade.h:73 - msgid "New Printer" - msgstr "Nouvelle imprimante" - --#: ../system-config-printer.py:3747 -+#: ../system-config-printer.py:3762 - msgid "New Class" - msgstr "Nouveau groupe" - --#: ../system-config-printer.py:3752 -+#: ../system-config-printer.py:3767 - msgid "Change Device URI" - msgstr "Modifier l'URI du périphérique" - --#: ../system-config-printer.py:3758 -+#: ../system-config-printer.py:3773 - msgid "Change Driver" - msgstr "Modifier le pilote" - --#: ../system-config-printer.py:3927 ../system-config-printer.py:3993 --#: ../system-config-printer.py:4289 ../system-config-printer.py:4487 --#: ../system-config-printer.py:5772 ../system-config-printer.py:5995 -+#: ../system-config-printer.py:3942 ../system-config-printer.py:4008 -+#: ../system-config-printer.py:4304 ../system-config-printer.py:4502 -+#: ../system-config-printer.py:5762 ../system-config-printer.py:5943 - msgid "Searching" - msgstr "Recherche" - --#: ../system-config-printer.py:3928 -+#: ../system-config-printer.py:3943 - #, fuzzy - msgid "Searching for downloadable drivers" - msgstr "Recherche de pilotes" - --#: ../system-config-printer.py:3994 ../system-config-printer.py:4290 -+#: ../system-config-printer.py:4009 ../system-config-printer.py:4305 - msgid "Searching for drivers" - msgstr "Recherche de pilotes" - --#: ../system-config-printer.py:4488 ../system-config-printer.py:5773 -+#: ../system-config-printer.py:4503 ../system-config-printer.py:5763 - msgid "Searching for printers" - msgstr "Recherche d'imprimantes" - --#: ../system-config-printer.py:4497 -+#: ../system-config-printer.py:4512 - #, fuzzy - msgid "fetching device list" - msgstr "Modifier les propriétés du serveur" - - #. Tell the user why he needs the plugin --#: ../system-config-printer.py:4579 -+#: ../system-config-printer.py:4594 - msgid "For this printer a proprietary driver plugin from HP is available.\n" - msgstr "" - --#: ../system-config-printer.py:4582 -+#: ../system-config-printer.py:4597 - msgid "" - "The installation of the plugin is required for your printer to work.\n" - "\n" - msgstr "" - --#: ../system-config-printer.py:4585 -+#: ../system-config-printer.py:4600 - msgid "" - "Installing the plugin is optional, it completes or enhances the " - "functionality\n" -@@ -1220,115 +1229,111 @@ msgid "" - "\n" - msgstr "" - --#: ../system-config-printer.py:4589 -+#: ../system-config-printer.py:4604 - msgid "The plugin provides the following features:\n" - msgstr "" - --#: ../system-config-printer.py:4592 -+#: ../system-config-printer.py:4607 - msgid " - Printing support\n" - msgstr "" - --#: ../system-config-printer.py:4595 -+#: ../system-config-printer.py:4610 - #, fuzzy - msgid " - Faster printing\n" - msgstr "Dépannage des problèmes d'impression" - --#: ../system-config-printer.py:4598 -+#: ../system-config-printer.py:4613 - msgid " - Better printout quality\n" - msgstr "" - --#: ../system-config-printer.py:4601 -+#: ../system-config-printer.py:4616 - msgid " - Extra printing features\n" - msgstr "" - --#: ../system-config-printer.py:4604 -+#: ../system-config-printer.py:4619 - msgid " - Scanning support\n" - msgstr "" - --#: ../system-config-printer.py:4607 -+#: ../system-config-printer.py:4622 - msgid " - Faster scanning\n" - msgstr "" - --#: ../system-config-printer.py:4610 -+#: ../system-config-printer.py:4625 - msgid " - Better scanning image quality\n" - msgstr "" - --#: ../system-config-printer.py:4613 -+#: ../system-config-printer.py:4628 - msgid " - Faxing support\n" - msgstr "" - --#: ../system-config-printer.py:4616 -+#: ../system-config-printer.py:4631 - msgid " - Extra fax features\n" - msgstr "" - --#: ../system-config-printer.py:4619 -+#: ../system-config-printer.py:4634 - msgid " - Better Input/Output support\n" - msgstr "" - --#: ../system-config-printer.py:4622 -+#: ../system-config-printer.py:4637 - msgid " - Extra user interface features\n" - msgstr "" - --#: ../system-config-printer.py:4625 -+#: ../system-config-printer.py:4640 - msgid " - Other extra features\n" - msgstr "" - --#: ../system-config-printer.py:4630 -+#: ../system-config-printer.py:4645 - #, fuzzy - msgid "Install plugin" - msgstr "Extensions installées" - --#: ../system-config-printer.py:4631 -+#: ../system-config-printer.py:4646 - #, fuzzy - msgid "Do not set up printer" - msgstr "Choisir une imprimante" - --#: ../system-config-printer.py:4632 -+#: ../system-config-printer.py:4647 - msgid "Set up without plugin" - msgstr "" - --#: ../system-config-printer.py:4634 ../troubleshoot/PrintTestPage.py:118 -+#: ../system-config-printer.py:4649 ../troubleshoot/PrintTestPage.py:118 - msgid "Yes" - msgstr "Oui" - --#: ../system-config-printer.py:4635 ../troubleshoot/PrintTestPage.py:119 -+#: ../system-config-printer.py:4650 ../troubleshoot/PrintTestPage.py:119 - msgid "No" - msgstr "Non" - --#: ../system-config-printer.py:4809 ../system-config-printer.py:4813 -+#: ../system-config-printer.py:4824 ../system-config-printer.py:4828 - msgid " (Current)" - msgstr " (Actuel)" - --#: ../system-config-printer.py:4845 --msgid "HP Printer (HPLIP)" --msgstr "" -- --#: ../system-config-printer.py:4886 -+#: ../system-config-printer.py:4881 - msgid "Other" - msgstr "Autre" - - #. device-info - #. PhysicalDevice obj - #. Separator? --#: ../system-config-printer.py:4902 -+#: ../system-config-printer.py:4897 - #, fuzzy - msgid "Network Printer" - msgstr "Imprimante réseau" - --#: ../system-config-printer.py:4906 -+#: ../system-config-printer.py:4901 - #, fuzzy - msgid "Find Network Printer" - msgstr "Imprimante réseau" - --#: ../system-config-printer.py:4979 ../system-config-printer.py:5376 -+#: ../system-config-printer.py:4974 ../system-config-printer.py:5371 - msgid "Scanning..." - msgstr "Analyse..." - --#: ../system-config-printer.py:5034 ../system-config-printer.py:5798 -+#: ../system-config-printer.py:5029 - msgid "No Print Shares" - msgstr "Pas de partage d'imprimante" - --#: ../system-config-printer.py:5035 -+#: ../system-config-printer.py:5030 - msgid "" - "There were no print shares found. Please check that the Samba service is " - "marked as trusted in your firewall configuration." -@@ -1337,33 +1342,33 @@ msgstr "" - "Samba est marqué comme service de confiance dans la configuration de votre " - "pare-feu." - --#: ../system-config-printer.py:5296 ../system-config-printer.py:5357 -+#: ../system-config-printer.py:5291 ../system-config-printer.py:5352 - msgid "Print Share Verified" - msgstr "Partage d'imprimante vérifié" - --#: ../system-config-printer.py:5297 ../system-config-printer.py:5358 -+#: ../system-config-printer.py:5292 ../system-config-printer.py:5353 - msgid "This print share is accessible." - msgstr "Ce partage d'imprimante est accessible." - --#: ../system-config-printer.py:5302 ../system-config-printer.py:5362 -+#: ../system-config-printer.py:5297 ../system-config-printer.py:5357 - msgid "This print share is not accessible." - msgstr "Ce partage d'imprimante n'est pas accessible." - --#: ../system-config-printer.py:5305 -+#: ../system-config-printer.py:5300 - msgid "Print Share Inaccessible" - msgstr "Partage d'imprimante inaccessible" - --#: ../system-config-printer.py:5361 -+#: ../system-config-printer.py:5356 - msgid "Inaccessible" - msgstr "Inaccessible" - --#: ../system-config-printer.py:5419 -+#: ../system-config-printer.py:5414 - #, fuzzy, python-format - msgid "It is not possible to obtain a list of queues from '%s'." - msgstr "" - "Il est impossible de récupérer une liste de files d'attente depuis « %s »." - --#: ../system-config-printer.py:5421 -+#: ../system-config-printer.py:5416 - msgid "" - "Obtaining a list of queues is a CUPS extension to IPP. Network printers do " - "not support it." -@@ -1371,74 +1376,74 @@ msgstr "" - "L'obtention d'une liste de files d'attente est une extension CUPS à IPP. Les " - "imprimantes réseau ne la prennent pas en charge." - --#: ../system-config-printer.py:5424 -+#: ../system-config-printer.py:5419 - msgid "No queues" - msgstr "Aucune file d'attente" - --#: ../system-config-printer.py:5425 -+#: ../system-config-printer.py:5420 - msgid "There are no queues available." - msgstr "Aucune file d'attente n'est disponible." - --#: ../system-config-printer.py:5516 -+#: ../system-config-printer.py:5511 - msgid "Parallel Port" - msgstr "" - --#: ../system-config-printer.py:5518 -+#: ../system-config-printer.py:5513 - #, fuzzy - msgid "Serial Port" - msgstr "Série" - --#: ../system-config-printer.py:5520 -+#: ../system-config-printer.py:5515 - #, fuzzy - msgid "USB" - msgstr "SMB" - --#: ../system-config-printer.py:5522 ../system-config-printer.py:5525 -+#: ../system-config-printer.py:5517 ../system-config-printer.py:5520 - msgid "HP Linux Imaging and Printing (HPLIP)" - msgstr "" - --#: ../system-config-printer.py:5527 -+#: ../system-config-printer.py:5522 - #, fuzzy - msgid "Hardware Abstraction Layer (HAL)" - msgstr "" - "Imprimante locale détectée par la couche d'abstraction matériel (HAL, de " - "l'anglais Hardware Abstraction Layer)." - --#: ../system-config-printer.py:5529 -+#: ../system-config-printer.py:5524 - msgid "AppSocket/HP JetDirect" - msgstr "" - --#: ../system-config-printer.py:5538 -+#: ../system-config-printer.py:5533 - #, python-format - msgid "LPD/LPR queue '%s'" - msgstr "" - --#: ../system-config-printer.py:5540 -+#: ../system-config-printer.py:5535 - #, fuzzy - msgid "LPD/LPR queue" - msgstr "LPD" - --#: ../system-config-printer.py:5543 -+#: ../system-config-printer.py:5538 - msgid "Windows Printer via SAMBA" - msgstr "" - --#: ../system-config-printer.py:5545 ../glade/NewPrinterWindow.glade.h:66 -+#: ../system-config-printer.py:5540 ../glade/NewPrinterWindow.glade.h:65 - msgid "IPP" - msgstr "IPP" - --#: ../system-config-printer.py:5547 -+#: ../system-config-printer.py:5542 - msgid "HTTP" - msgstr "" - --#: ../system-config-printer.py:5632 -+#: ../system-config-printer.py:5624 - msgid "A printer connected to the parallel port." - msgstr "Une imprimante connectée au port parallèle." - --#: ../system-config-printer.py:5634 -+#: ../system-config-printer.py:5626 - msgid "A printer connected to a USB port." - msgstr "Une imprimante connectée à un port USB." - --#: ../system-config-printer.py:5636 -+#: ../system-config-printer.py:5628 - msgid "" - "HPLIP software driving a printer, or the printer function of a multi-" - "function device." -@@ -1446,7 +1451,7 @@ msgstr "" - "Le logiciel HPLIP pilotant l'imprimante ou la fonction imprimante d'un " - "périphérique multi-fonctions." - --#: ../system-config-printer.py:5639 -+#: ../system-config-printer.py:5631 - msgid "" - "HPLIP software driving a fax machine, or the fax function of a multi-" - "function device." -@@ -1454,71 +1459,67 @@ msgstr "" - "Le logiciel HPLIP pilotant un fax ou la fonction fax d'un périphérique à " - "multi-fonctions." - --#: ../system-config-printer.py:5642 -+#: ../system-config-printer.py:5634 - msgid "Local printer detected by the Hardware Abstraction Layer (HAL)." - msgstr "" - "Imprimante locale détectée par la couche d'abstraction matériel (HAL, de " - "l'anglais Hardware Abstraction Layer)." - --#: ../system-config-printer.py:5799 --msgid "HPLIP cannot find the device." --msgstr "" -- --#: ../system-config-printer.py:5881 -+#: ../system-config-printer.py:5831 - msgid "No printer was found at that address." - msgstr "" - --#: ../system-config-printer.py:6020 -+#: ../system-config-printer.py:5968 - #, fuzzy - msgid "-- Select from search results --" - msgstr "-- Sélectionnez le modèle de l'imprimante --" - --#: ../system-config-printer.py:6022 -+#: ../system-config-printer.py:5970 - msgid "-- No matches found --" - msgstr "-- Aucune correspondance trouvée --" - --#: ../system-config-printer.py:6203 -+#: ../system-config-printer.py:6151 - msgid " (recommended)" - msgstr " (recommandé)" - --#: ../system-config-printer.py:6217 -+#: ../system-config-printer.py:6165 - msgid "This PPD is generated by foomatic." - msgstr "Ce PPD est généré par foomatic." - --#: ../system-config-printer.py:6241 -+#: ../system-config-printer.py:6189 - msgid "OpenPrinting" - msgstr "OpenPrinting" - --#: ../system-config-printer.py:6252 -+#: ../system-config-printer.py:6200 - msgid "Distributable" - msgstr "Distribuable" - --#: ../system-config-printer.py:6293 -+#: ../system-config-printer.py:6241 - #, fuzzy - msgid ", " - msgstr " " - --#: ../system-config-printer.py:6298 -+#: ../system-config-printer.py:6246 - #, python-format - msgid "" - "\n" - "(%s)" - msgstr "" - --#: ../system-config-printer.py:6303 -+#: ../system-config-printer.py:6251 - msgid "No support contacts known" - msgstr "" - --#: ../system-config-printer.py:6307 ../system-config-printer.py:6320 -+#: ../system-config-printer.py:6255 ../system-config-printer.py:6268 - msgid "Not specified." - msgstr "Non spécifié." - - #. Foomatic database problem of some sort. --#: ../system-config-printer.py:6360 -+#: ../system-config-printer.py:6308 - msgid "Database error" - msgstr "Erreur dans la base de données" - --#: ../system-config-printer.py:6361 -+#: ../system-config-printer.py:6309 - #, python-format - msgid "The '%s' driver cannot be used with printer '%s %s'." - msgstr "Le pilote « %s » ne peut pas être utilisé avec l'imprimante « %s %s »." -@@ -1526,63 +1527,63 @@ msgstr "Le pilote « %s » ne peut pas - #. This printer references some XML that is not - #. installed by default. Point the user at the - #. package they need to install. --#: ../system-config-printer.py:6371 -+#: ../system-config-printer.py:6319 - #, python-format - msgid "You will need to install the '%s' package in order to use this driver." - msgstr "Vous devrez installer le paquet « %s » pour utiliser ce pilote." - - #. This error came from trying to open the PPD file. --#: ../system-config-printer.py:6378 -+#: ../system-config-printer.py:6326 - msgid "PPD error" - msgstr "Erreur PPD" - --#: ../system-config-printer.py:6380 -+#: ../system-config-printer.py:6328 - msgid "Failed to read PPD file. Possible reason follows:" - msgstr "" - "Impossible de lire le fichier PPD. Ceci est peut-être dû aux raisons " - "suivantes :" - - #. Failed to get PPD downloaded from OpenPrinting XXX --#: ../system-config-printer.py:6397 -+#: ../system-config-printer.py:6345 - msgid "Downloadable drivers" - msgstr "Pilotes téléchargeables" - --#: ../system-config-printer.py:6398 -+#: ../system-config-printer.py:6346 - msgid "Failed to download PPD." - msgstr "Impossible de télécharger PPD." - --#: ../system-config-printer.py:6405 -+#: ../system-config-printer.py:6353 - msgid "fetching PPD" - msgstr "" - --#: ../system-config-printer.py:6434 ../system-config-printer.py:6472 -+#: ../system-config-printer.py:6382 ../system-config-printer.py:6420 - msgid "No Installable Options" - msgstr "Aucune extension disponible" - --#: ../system-config-printer.py:6520 -+#: ../system-config-printer.py:6468 - #, fuzzy, python-format - msgid "adding printer %s" - msgstr "Ajout de l'imprimante" - --#: ../system-config-printer.py:6669 -+#: ../system-config-printer.py:6617 - msgid "Would you like to print a test page?" - msgstr "" - --#: ../system-config-printer.py:6722 -+#: ../system-config-printer.py:6670 - msgid "Install driver" - msgstr "Installer le pilote" - --#: ../system-config-printer.py:6723 ../troubleshoot/CheckPPDSanity.py:131 -+#: ../system-config-printer.py:6671 ../troubleshoot/CheckPPDSanity.py:131 - #, python-format - msgid "Printer '%s' requires the %s package but it is not currently installed." - msgstr "" - "L'imprimante « %s » a besoin du paquet %s mais celui-ci n'est pas installé." - --#: ../system-config-printer.py:6739 -+#: ../system-config-printer.py:6687 - msgid "Missing driver" - msgstr "Pilote manquant" - --#: ../system-config-printer.py:6740 -+#: ../system-config-printer.py:6688 - #, python-format - msgid "" - "Printer '%s' requires the '%s' program but it is not currently installed. " -@@ -1728,128 +1729,123 @@ msgid "Enter device URI" - msgstr "Indiquer l'URI du périphérique" - - #: ../glade/NewPrinterWindow.glade.h:5 --#, fuzzy --msgid "HP Printer (HPLIP) via network" --msgstr "Nom de l'imprimante" -- --#: ../glade/NewPrinterWindow.glade.h:6 - msgid "IPP Printer" - msgstr "Imprimante IPP" - --#: ../glade/NewPrinterWindow.glade.h:7 -+#: ../glade/NewPrinterWindow.glade.h:6 - msgid "License Terms" - msgstr "Conditions de la licence" - --#: ../glade/NewPrinterWindow.glade.h:8 -+#: ../glade/NewPrinterWindow.glade.h:7 - msgid "Location of the LPD network printer" - msgstr "Emplacement de l'imprimante réseau LPD" - --#: ../glade/NewPrinterWindow.glade.h:9 -+#: ../glade/NewPrinterWindow.glade.h:8 - msgid "Location of the network printer" - msgstr "Emplacement de l'imprimante réseau" - --#: ../glade/NewPrinterWindow.glade.h:10 -+#: ../glade/NewPrinterWindow.glade.h:9 - msgid "Location (optional)" - msgstr "Emplacement (optionnel)" - --#: ../glade/NewPrinterWindow.glade.h:11 -+#: ../glade/NewPrinterWindow.glade.h:10 - #, fuzzy - msgid "Network Printer" - msgstr "Imprimante réseau" - --#: ../glade/NewPrinterWindow.glade.h:12 -+#: ../glade/NewPrinterWindow.glade.h:11 - msgid "Note" - msgstr "Note" - --#: ../glade/NewPrinterWindow.glade.h:13 -+#: ../glade/NewPrinterWindow.glade.h:12 - #, fuzzy - msgid "Output Quality" - msgstr "État" - --#: ../glade/NewPrinterWindow.glade.h:14 -+#: ../glade/NewPrinterWindow.glade.h:13 - msgid "Printer Name" - msgstr "Nom de l'imprimante" - --#: ../glade/NewPrinterWindow.glade.h:15 -+#: ../glade/NewPrinterWindow.glade.h:14 - msgid "SMB Printer" - msgstr "Imprimante SMB" - --#: ../glade/NewPrinterWindow.glade.h:16 -+#: ../glade/NewPrinterWindow.glade.h:15 - msgid "Select Driver" - msgstr "Choisissez un pilote" - --#: ../glade/NewPrinterWindow.glade.h:17 -+#: ../glade/NewPrinterWindow.glade.h:16 - msgid "Settings of the serial port" - msgstr "Paramètres du port série" - --#: ../glade/NewPrinterWindow.glade.h:18 -+#: ../glade/NewPrinterWindow.glade.h:17 - msgid "smb://[workgroup/]server[:port]/printer" - msgstr "smb://[workgroup/]server[:port]/printer" - --#: ../glade/NewPrinterWindow.glade.h:19 -+#: ../glade/NewPrinterWindow.glade.h:18 - #, fuzzy - msgid "Choose Class Members" - msgstr "" - "Mot de passe requis\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:20 -+#: ../glade/NewPrinterWindow.glade.h:19 - #, fuzzy - msgid "Choose Driver" - msgstr "" - "Mot de passe requis\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:21 -+#: ../glade/NewPrinterWindow.glade.h:20 - #, fuzzy - msgid "Describe Printer" - msgstr "" - "Mot de passe requis\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:22 -+#: ../glade/NewPrinterWindow.glade.h:21 - #, fuzzy - msgid "Existing Settings" - msgstr "" - "Mot de passe requis\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:23 -+#: ../glade/NewPrinterWindow.glade.h:22 - #, fuzzy - msgid "Installable Options" - msgstr "" - "Mot de passe requis\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:24 -+#: ../glade/NewPrinterWindow.glade.h:23 - #, fuzzy - msgid "Select Device" - msgstr "" - "Mot de passe requis\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:25 -+#: ../glade/NewPrinterWindow.glade.h:24 - msgid "Baud Rate" - msgstr "Vitesse en bauds" - --#: ../glade/NewPrinterWindow.glade.h:26 -+#: ../glade/NewPrinterWindow.glade.h:25 - msgid "Browse..." - msgstr "Parcourir..." - --#: ../glade/NewPrinterWindow.glade.h:27 -+#: ../glade/NewPrinterWindow.glade.h:26 - msgid "Comments..." - msgstr "Commentaires..." - --#: ../glade/NewPrinterWindow.glade.h:28 -+#: ../glade/NewPrinterWindow.glade.h:27 - #, fuzzy - msgid "Connection" - msgstr "Connexion" - --#: ../glade/NewPrinterWindow.glade.h:29 -+#: ../glade/NewPrinterWindow.glade.h:28 - msgid "Data Bits" - msgstr "Morceaux de données" - --#: ../glade/NewPrinterWindow.glade.h:30 -+#: ../glade/NewPrinterWindow.glade.h:29 - msgid "" - "Default\n" - "1200\n" -@@ -1871,7 +1867,7 @@ msgstr "" - "57600\n" - "115200" - --#: ../glade/NewPrinterWindow.glade.h:39 -+#: ../glade/NewPrinterWindow.glade.h:38 - msgid "" - "Default\n" - "8\n" -@@ -1881,7 +1877,7 @@ msgstr "" - "8\n" - "7" - --#: ../glade/NewPrinterWindow.glade.h:42 -+#: ../glade/NewPrinterWindow.glade.h:41 - msgid "" - "Default\n" - "None\n" -@@ -1893,7 +1889,7 @@ msgstr "" - "Impaires\n" - "Paires" - --#: ../glade/NewPrinterWindow.glade.h:46 -+#: ../glade/NewPrinterWindow.glade.h:45 - msgid "" - "Default\n" - "None\n" -@@ -1907,117 +1903,117 @@ msgstr "" - "RTS/CTS (Matériel)\n" - "DTR/DSR (Matériel)" - --#: ../glade/NewPrinterWindow.glade.h:51 -+#: ../glade/NewPrinterWindow.glade.h:50 - #: ../glade/PrinterPropertiesDialog.glade.h:35 - msgid "Description:" - msgstr "Description :" - --#: ../glade/NewPrinterWindow.glade.h:52 ../troubleshoot/DeviceListed.py:40 -+#: ../glade/NewPrinterWindow.glade.h:51 ../troubleshoot/DeviceListed.py:40 - msgid "Device URI" - msgstr "URI du périphérique :" - --#: ../glade/NewPrinterWindow.glade.h:53 -+#: ../glade/NewPrinterWindow.glade.h:52 - msgid "Device description." - msgstr "Description du périphérique." - --#: ../glade/NewPrinterWindow.glade.h:54 -+#: ../glade/NewPrinterWindow.glade.h:53 - msgid "DirectJet" - msgstr "DirectJet" - --#: ../glade/NewPrinterWindow.glade.h:56 -+#: ../glade/NewPrinterWindow.glade.h:55 - msgid "Driver details" - msgstr "Détails du pilotes" - --#: ../glade/NewPrinterWindow.glade.h:57 -+#: ../glade/NewPrinterWindow.glade.h:56 - msgid "Empty" - msgstr "Vide" - --#: ../glade/NewPrinterWindow.glade.h:58 -+#: ../glade/NewPrinterWindow.glade.h:57 - msgid "Find _Queue..." - msgstr "Trouver la _file d'attente..." - --#: ../glade/NewPrinterWindow.glade.h:59 -+#: ../glade/NewPrinterWindow.glade.h:58 - msgid "Flow Control" - msgstr "Contrôle du flux" - --#: ../glade/NewPrinterWindow.glade.h:60 -+#: ../glade/NewPrinterWindow.glade.h:59 - msgid "" - "For the printer you have selected there are drivers available for download." - msgstr "" - "Des pilotes sont disponibles au téléchargement pour l'imprimante que vous " - "avez sélectionnée." - --#: ../glade/NewPrinterWindow.glade.h:61 -+#: ../glade/NewPrinterWindow.glade.h:60 - msgid "Free software" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:62 -+#: ../glade/NewPrinterWindow.glade.h:61 - msgid "Graphics:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:63 -+#: ../glade/NewPrinterWindow.glade.h:62 - msgid "Host:" - msgstr "Hôte :" - --#: ../glade/NewPrinterWindow.glade.h:64 -+#: ../glade/NewPrinterWindow.glade.h:63 - msgid "Human-readable description such as \"HP LaserJet with Duplexer\"" - msgstr "Description compréhensible telle que \"HP LaserJet avec Duplexer\"" - --#: ../glade/NewPrinterWindow.glade.h:65 -+#: ../glade/NewPrinterWindow.glade.h:64 - msgid "Human-readable location such as \"Lab 1\"" - msgstr "Emplacement lisible tel que \"Lab 1\"" - --#: ../glade/NewPrinterWindow.glade.h:67 -+#: ../glade/NewPrinterWindow.glade.h:66 - msgid "LPD" - msgstr "LPD" - --#: ../glade/NewPrinterWindow.glade.h:68 -+#: ../glade/NewPrinterWindow.glade.h:67 - msgid "License:" - msgstr "Licence :" - --#: ../glade/NewPrinterWindow.glade.h:69 -+#: ../glade/NewPrinterWindow.glade.h:68 - #, fuzzy - msgid "Line art:" - msgstr "État de l'imprimante :" - --#: ../glade/NewPrinterWindow.glade.h:70 -+#: ../glade/NewPrinterWindow.glade.h:69 - msgid "Local Driver" - msgstr "Pilote local" - --#: ../glade/NewPrinterWindow.glade.h:71 -+#: ../glade/NewPrinterWindow.glade.h:70 - msgid "Make and model:" - msgstr "Marque et modèle :" - --#: ../glade/NewPrinterWindow.glade.h:72 -+#: ../glade/NewPrinterWindow.glade.h:71 - msgid "Manufacturer" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:73 -+#: ../glade/NewPrinterWindow.glade.h:72 - #, fuzzy - msgid "Network" - msgstr "Imprimante réseau" - --#: ../glade/NewPrinterWindow.glade.h:75 -+#: ../glade/NewPrinterWindow.glade.h:74 - msgid "No, I do not accept this license" - msgstr "Non, je n'accepte pas cette licence" - --#: ../glade/NewPrinterWindow.glade.h:76 -+#: ../glade/NewPrinterWindow.glade.h:75 - msgid "Parity" - msgstr "Parité" - --#: ../glade/NewPrinterWindow.glade.h:78 -+#: ../glade/NewPrinterWindow.glade.h:77 - msgid "Patented algorithms" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:79 -+#: ../glade/NewPrinterWindow.glade.h:78 - msgid "Photo:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:80 -+#: ../glade/NewPrinterWindow.glade.h:79 - msgid "Port number:" - msgstr "Numéro du port :" - --#: ../glade/NewPrinterWindow.glade.h:81 -+#: ../glade/NewPrinterWindow.glade.h:80 - msgid "" - "PostScript Printer Description (PPD) files can often be found on the driver " - "disk that comes with the printer. For PostScript printers they are often " -@@ -2028,78 +2024,78 @@ msgstr "" - "imprimantes PostScript, ils font souvent partie du pilote Windows ®." - --#: ../glade/NewPrinterWindow.glade.h:82 -+#: ../glade/NewPrinterWindow.glade.h:81 - msgid "Printer model:" - msgstr "Modèle d'imprimante :" - --#: ../glade/NewPrinterWindow.glade.h:83 -+#: ../glade/NewPrinterWindow.glade.h:82 - msgid "Probe" - msgstr "Rechercher" - --#: ../glade/NewPrinterWindow.glade.h:84 -+#: ../glade/NewPrinterWindow.glade.h:83 - msgid "Prompt user if authentication is required" - msgstr "Interroger l'utilisateur, si une authentification est requise" - --#: ../glade/NewPrinterWindow.glade.h:85 -+#: ../glade/NewPrinterWindow.glade.h:84 - msgid "Provide PPD file" - msgstr "Fournir un fichier PPD" - --#: ../glade/NewPrinterWindow.glade.h:86 -+#: ../glade/NewPrinterWindow.glade.h:85 - msgid "Queue:" - msgstr "File :" - --#: ../glade/NewPrinterWindow.glade.h:87 -+#: ../glade/NewPrinterWindow.glade.h:86 - msgid "SCSI" - msgstr "SCSI" - --#: ../glade/NewPrinterWindow.glade.h:88 -+#: ../glade/NewPrinterWindow.glade.h:87 - msgid "SMB" - msgstr "SMB" - --#: ../glade/NewPrinterWindow.glade.h:89 -+#: ../glade/NewPrinterWindow.glade.h:88 - msgid "Search for a printer driver to download" - msgstr "Recherche d'un pilote d'imprimante à télécharger" - --#: ../glade/NewPrinterWindow.glade.h:90 -+#: ../glade/NewPrinterWindow.glade.h:89 - #, fuzzy - msgid "Searching..." - msgstr "Recherche" - --#: ../glade/NewPrinterWindow.glade.h:91 -+#: ../glade/NewPrinterWindow.glade.h:90 - msgid "Select A File" - msgstr "Choisissez un fichier" - --#: ../glade/NewPrinterWindow.glade.h:92 -+#: ../glade/NewPrinterWindow.glade.h:91 - msgid "Select printer from database" - msgstr "Sélectionner une imprimante depuis la base de données" - --#: ../glade/NewPrinterWindow.glade.h:93 -+#: ../glade/NewPrinterWindow.glade.h:92 - msgid "Serial" - msgstr "Série" - --#: ../glade/NewPrinterWindow.glade.h:94 -+#: ../glade/NewPrinterWindow.glade.h:93 - msgid "Set authentication details now" - msgstr "Définir maintenant les détails d'authentification" - --#: ../glade/NewPrinterWindow.glade.h:95 -+#: ../glade/NewPrinterWindow.glade.h:94 - msgid "Short name for this printer such as \"laserjet\"" - msgstr "Nom abrégé pour cette imprimant, comme « laserjet »" - --#: ../glade/NewPrinterWindow.glade.h:96 -+#: ../glade/NewPrinterWindow.glade.h:95 - msgid "Supplier:" - msgstr "Fournisseur :" - --#: ../glade/NewPrinterWindow.glade.h:97 -+#: ../glade/NewPrinterWindow.glade.h:96 - #, fuzzy - msgid "Support:" - msgstr "Fournisseur :" - --#: ../glade/NewPrinterWindow.glade.h:98 -+#: ../glade/NewPrinterWindow.glade.h:97 - #, fuzzy - msgid "Text:" - msgstr "Test" - --#: ../glade/NewPrinterWindow.glade.h:99 -+#: ../glade/NewPrinterWindow.glade.h:98 - msgid "" - "The foomatic printer database contains various manufacturer provided " - "PostScript Printer Description (PPD) files and also can generate PPD files " -@@ -2113,7 +2109,7 @@ msgstr "" - "(non PostScript). Mais en général, les fichiers PPD fournis par les " - "fabricants supportent mieux les fonctions spécifiques des imprimantes." - --#: ../glade/NewPrinterWindow.glade.h:100 -+#: ../glade/NewPrinterWindow.glade.h:99 - msgid "" - "These drivers do not come from your operating system supplier and will not " - "be covered by their commercial support. See the support and license terms " -@@ -2124,7 +2120,7 @@ msgstr "" - "Consultez les conditions de la licence et du support du fournisseur du " - "pilote." - --#: ../glade/NewPrinterWindow.glade.h:101 -+#: ../glade/NewPrinterWindow.glade.h:100 - msgid "" - "This driver supports additional hardware that may be installed in the " - "printer." -@@ -2132,7 +2128,7 @@ msgstr "" - "Ce pilote prend en charge des extensions matérielles qui peuvent être " - "installées dans l'imprimante." - --#: ../glade/NewPrinterWindow.glade.h:102 -+#: ../glade/NewPrinterWindow.glade.h:101 - msgid "" - "This is done by assuming that options with the same name do have the same " - "meaning. Settings of options that are not present in the new PPD will be " -@@ -2143,7 +2139,7 @@ msgstr "" - "dans le nouveau fichier PPD seront perdus et seules les options présentes " - "dans le nouveau fichier PPD seront activées par défaut." - --#: ../glade/NewPrinterWindow.glade.h:103 -+#: ../glade/NewPrinterWindow.glade.h:102 - msgid "" - "This way all current option settings will be lost. The default settings of " - "the new PPD will be used. " -@@ -2151,20 +2147,20 @@ msgstr "" - "Les paramètres de configuration actuels seront perdus. Les paramètres par " - "défaut du nouveau fichier PPD seront utilisés." - --#: ../glade/NewPrinterWindow.glade.h:104 -+#: ../glade/NewPrinterWindow.glade.h:103 - msgid "Try to copy the option settings over from the old PPD. " - msgstr "Essayer de copier les paramètres des options de l'ancien fichier PPD." - --#: ../glade/NewPrinterWindow.glade.h:105 -+#: ../glade/NewPrinterWindow.glade.h:104 - msgid "URI:" - msgstr "URI :" - --#: ../glade/NewPrinterWindow.glade.h:107 -+#: ../glade/NewPrinterWindow.glade.h:106 - msgid "Use the new PPD (Postscript Printer Description) as is." - msgstr "" - "Utiliser le nouveau fichier PPD (Postscript Printer Description) tel quel." - --#: ../glade/NewPrinterWindow.glade.h:109 -+#: ../glade/NewPrinterWindow.glade.h:108 - msgid "" - "With this choice no driver download will be performed. In the next steps a " - "locally installed driver will be selected." -@@ -2172,24 +2168,24 @@ msgstr "" - "Par ce choix, aucun pilote ne sera téléchargé. Dans les étapes suivantes, un " - "pilote installé localement sera sélectionné." - --#: ../glade/NewPrinterWindow.glade.h:110 -+#: ../glade/NewPrinterWindow.glade.h:109 - msgid "Yes, I accept this license" - msgstr "Oui, j'accepte cette licence" - --#: ../glade/NewPrinterWindow.glade.h:111 -+#: ../glade/NewPrinterWindow.glade.h:110 - msgid "_Search" - msgstr "_Recherche" - --#: ../glade/NewPrinterWindow.glade.h:112 -+#: ../glade/NewPrinterWindow.glade.h:111 - msgid "_Verify..." - msgstr "_Vérifier..." - --#: ../glade/NewPrinterWindow.glade.h:113 -+#: ../glade/NewPrinterWindow.glade.h:112 - #: ../glade/PrinterPropertiesDialog.glade.h:128 - msgid "move left" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:114 -+#: ../glade/NewPrinterWindow.glade.h:113 - #: ../glade/PrinterPropertiesDialog.glade.h:129 - msgid "move right" - msgstr "" -@@ -3132,7 +3128,7 @@ msgstr "" - msgid "Remember to load paper of type '%s' into the printer first." - msgstr "" - --#: ../troubleshoot/PrintTestPage.py:399 -+#: ../troubleshoot/PrintTestPage.py:416 - msgid "Error submitting test page" - msgstr "Erreur lors de l'envoi d'une page de test" - -@@ -3344,6 +3340,10 @@ msgid "Select default printer" - msgstr "Sélectionner l'imprimante par défaut" - - #, fuzzy -+#~ msgid "HP Printer (HPLIP) via network" -+#~ msgstr "Nom de l'imprimante" -+ -+#, fuzzy - #~ msgid "Not Found" - #~ msgstr "Non trouvé" - -diff -up system-config-printer-1.1.5/po/gu.po.git-1.1.x system-config-printer-1.1.5/po/gu.po ---- system-config-printer-1.1.5/po/gu.po.git-1.1.x 2009-03-03 22:21:46.000000000 +0000 -+++ system-config-printer-1.1.5/po/gu.po 2009-03-10 17:43:31.000000000 +0000 -@@ -7,7 +7,7 @@ msgid "" - msgstr "" - "Project-Id-Version: system-config-printer.trunk.gu\n" - "Report-Msgid-Bugs-To: https://bugzilla.redhat.com/bugzilla\n" --"POT-Creation-Date: 2009-03-02 23:22+0000\n" -+"POT-Creation-Date: 2009-03-10 16:51+0000\n" - "PO-Revision-Date: 2008-01-08 14:59+0530\n" - "Last-Translator: Ankit Patel \n" - "Language-Team: Gujarati \n" -@@ -58,11 +58,11 @@ msgstr "" - msgid "Enter IP address" - msgstr "પ્રિન્ટર ઉમેરાયું" - --#: ../authconn.py:35 ../glade/NewPrinterWindow.glade.h:108 -+#: ../authconn.py:35 ../glade/NewPrinterWindow.glade.h:107 - msgid "Username:" - msgstr "વપરાશકર્તાનામ:" - --#: ../authconn.py:36 ../glade/NewPrinterWindow.glade.h:77 -+#: ../authconn.py:36 ../glade/NewPrinterWindow.glade.h:76 - msgid "Password:" - msgstr "પાસવર્ડ:" - -@@ -71,7 +71,7 @@ msgstr "પાસવર્ડ:" - msgid "Domain:" - msgstr "ટોચથી અંતર:" - --#: ../authconn.py:46 -+#: ../authconn.py:46 ../authconn.py:409 - #, fuzzy - msgid "Authentication" - msgstr "સત્તાધિકરણ જરૂરી" -@@ -80,45 +80,54 @@ msgstr "સત્તાધિકરણ - msgid "Remember password" - msgstr "" - --#: ../authconn.py:211 ../authconn.py:232 -+#: ../authconn.py:208 -+#, python-format -+msgid "Unauthorized request (%s)" -+msgstr "" -+ -+#: ../authconn.py:209 -+msgid "You are not authorized to carry out therequested action." -+msgstr "" -+ -+#: ../authconn.py:212 ../authconn.py:233 - #, fuzzy - msgid "Operation canceled" - msgstr "પ્રક્રિયા નીતિ:" - --#: ../authconn.py:253 -+#: ../authconn.py:250 - #, fuzzy, python-format - msgid "CUPS server error (%s)" - msgstr "CUPS સર્વર ભૂલ" - --#: ../authconn.py:255 ../errordialogs.py:57 --#: ../troubleshoot/PrintTestPage.py:400 -+#: ../authconn.py:252 ../errordialogs.py:56 ../errordialogs.py:70 -+msgid "CUPS server error" -+msgstr "CUPS સર્વર ભૂલ" -+ -+#: ../authconn.py:261 ../errordialogs.py:57 -+#: ../troubleshoot/PrintTestPage.py:417 - #, python-format - msgid "There was an error during the CUPS operation: '%s'." - msgstr "CUPS પ્રક્રિયા દરમ્યાન ભૂલ હતી: '%s'." - --#: ../authconn.py:258 -+#: ../authconn.py:264 - #, fuzzy - msgid "Retry" - msgstr "પુનઃસુયોજન" - --#: ../authconn.py:379 ../authconn.py:381 ../errordialogs.py:65 ../pysmb.py:75 -+#: ../authconn.py:385 ../authconn.py:387 ../errordialogs.py:65 ../pysmb.py:75 - #: ../pysmb.py:77 - msgid "Not authorized" - msgstr "સત્તાધિકારીત નથી" - --#: ../authconn.py:382 ../pysmb.py:78 -+#: ../authconn.py:388 ../pysmb.py:78 - msgid "The password may be incorrect." - msgstr "પાસવર્ડ કદાચ ખોટો હોઈ શકે." - --#: ../authconn.py:400 -+#: ../authconn.py:407 - #, fuzzy, python-format - msgid "Authentication (%s)" - msgstr "સત્તાધિકરણ જરૂરી" - --#: ../errordialogs.py:56 ../errordialogs.py:70 --msgid "CUPS server error" --msgstr "CUPS સર્વર ભૂલ" -- - #: ../errordialogs.py:66 - msgid "" - "The password may be incorrect, or the server may be configured to deny " -@@ -146,7 +155,7 @@ msgstr "સુધારો જરૂર - msgid "Server error" - msgstr "સર્વર ભૂલ" - --#: ../errordialogs.py:82 ../system-config-printer.py:1219 -+#: ../errordialogs.py:82 ../system-config-printer.py:1223 - msgid "Not connected" - msgstr "જોડાયેલ નથી" - -@@ -168,7 +177,7 @@ msgstr "" - msgid "_New Group from Selection" - msgstr "" - --#: ../GroupsPane.py:98 ../system-config-printer.py:393 -+#: ../GroupsPane.py:98 ../system-config-printer.py:397 - #, fuzzy - msgid "_Rename" - msgstr "પ્રકાશિત કરો (_R)" -@@ -237,7 +246,7 @@ msgid "Document" - msgstr "દસ્તાવેજ" - - #: ../jobviewer.py:212 ../my-default-printer.py:153 --#: ../system-config-printer.py:366 ../system-config-printer.py:1367 -+#: ../system-config-printer.py:370 ../system-config-printer.py:1371 - #: ../troubleshoot/PrintTestPage.py:84 - msgid "Printer" - msgstr "પ્રિન્ટર" -@@ -274,8 +283,8 @@ msgstr "દસ્તાવેજ છા - - #: ../jobviewer.py:386 ../jobviewer.py:451 ../jobviewer.py:452 - #: ../jobviewer.py:492 ../jobviewer.py:600 ../jobviewer.py:727 --#: ../jobviewer.py:1196 ../jobviewer.py:1222 ../system-config-printer.py:2546 --#: ../glade/NewPrinterWindow.glade.h:106 -+#: ../jobviewer.py:1196 ../jobviewer.py:1222 ../system-config-printer.py:2556 -+#: ../glade/NewPrinterWindow.glade.h:105 - #: ../troubleshoot/ChooseNetworkPrinter.py:101 - #: ../troubleshoot/ChooseNetworkPrinter.py:102 - #: ../troubleshoot/ChooseNetworkPrinter.py:105 -@@ -368,12 +377,12 @@ msgstr "ત્યાં સુધી અ - msgid "Pending" - msgstr "બાકી રહેલ" - --#: ../jobviewer.py:591 ../system-config-printer.py:186 -+#: ../jobviewer.py:591 ../system-config-printer.py:190 - #: ../troubleshoot/PrintTestPage.py:43 - msgid "Processing" - msgstr "પ્રક્રિયા કરી રહ્યા છીએ" - --#: ../jobviewer.py:592 ../system-config-printer.py:188 -+#: ../jobviewer.py:592 ../system-config-printer.py:192 - #: ../troubleshoot/PrintTestPage.py:44 - msgid "Stopped" - msgstr "અટકાવાયેલ" -@@ -487,8 +496,8 @@ msgstr "સિસ્ટમ મૂળભ - msgid "_Set Default" - msgstr "મૂળભૂત સુયોજીત કરો (_S)" - --#: ../my-default-printer.py:158 ../system-config-printer.py:423 --#: ../system-config-printer.py:3660 ../troubleshoot/ChooseNetworkPrinter.py:37 -+#: ../my-default-printer.py:158 ../system-config-printer.py:427 -+#: ../system-config-printer.py:3675 ../troubleshoot/ChooseNetworkPrinter.py:37 - #: ../troubleshoot/ChoosePrinter.py:38 - msgid "Location" - msgstr "સ્થાન" -@@ -521,7 +530,7 @@ msgstr "મૂળભૂત પ્રિ - msgid "Authenticated" - msgstr "સત્તાધિકરણ જરૂરી" - --#: ../ppdippstr.py:50 ../system-config-printer.py:6259 -+#: ../ppdippstr.py:50 ../system-config-printer.py:6207 - #, fuzzy - msgid "None" - msgstr "કંઈ નહિં" -@@ -741,132 +750,132 @@ msgstr "" - msgid "1200 dpi, photo, black + color cartridge, photo paper" - msgstr "" - --#: ../system-config-printer.py:127 -+#: ../system-config-printer.py:131 - msgid "To do this, select System->Administration->Firewall from the main menu." - msgstr "" - --#: ../system-config-printer.py:185 -+#: ../system-config-printer.py:189 - msgid "Idle" - msgstr "ફાજલ" - --#: ../system-config-printer.py:187 -+#: ../system-config-printer.py:191 - msgid "Busy" - msgstr "વ્યસ્ત" - --#: ../system-config-printer.py:372 ../system-config-printer.py:1373 -+#: ../system-config-printer.py:376 ../system-config-printer.py:1377 - #, fuzzy - msgid "Class" - msgstr "નવો ક્લાસ" - --#: ../system-config-printer.py:399 -+#: ../system-config-printer.py:403 - #, fuzzy - msgid "Set As De_fault" - msgstr "મૂળભૂત સુયોજીત કરો (_S)" - --#: ../system-config-printer.py:403 -+#: ../system-config-printer.py:407 - #, fuzzy - msgid "_Create class" - msgstr "દૂરસ્થ ક્લાસો" - --#: ../system-config-printer.py:405 -+#: ../system-config-printer.py:409 - #, fuzzy - msgid "View Print _Queue" - msgstr "નવું પ્રિન્ટર" - --#: ../system-config-printer.py:407 -+#: ../system-config-printer.py:411 - msgid "_Add to Group" - msgstr "" - --#: ../system-config-printer.py:409 -+#: ../system-config-printer.py:413 - msgid "Save Results as _Group" - msgstr "" - --#: ../system-config-printer.py:411 -+#: ../system-config-printer.py:415 - msgid "Save Filter as _Search Group" - msgstr "" - --#: ../system-config-printer.py:415 -+#: ../system-config-printer.py:419 - #, fuzzy - msgid "E_nabled" - msgstr "સક્રિયકૃત" - --#: ../system-config-printer.py:417 -+#: ../system-config-printer.py:421 - #, fuzzy - msgid "_Shared" - msgstr "વહેંચાયેલ" - --#: ../system-config-printer.py:421 ../troubleshoot/ChooseNetworkPrinter.py:35 -+#: ../system-config-printer.py:425 ../troubleshoot/ChooseNetworkPrinter.py:35 - #: ../troubleshoot/ChoosePrinter.py:36 ../troubleshoot/DeviceListed.py:36 - msgid "Name" - msgstr "" - --#: ../system-config-printer.py:422 -+#: ../system-config-printer.py:426 - #, fuzzy - msgid "Description" - msgstr "વર્ણન:" - --#: ../system-config-printer.py:424 -+#: ../system-config-printer.py:428 - msgid "Manufacturer / Model" - msgstr "" - - #. Printer state reasons list --#: ../system-config-printer.py:499 -+#: ../system-config-printer.py:503 - msgid "Message" - msgstr "સંદેશો" - --#: ../system-config-printer.py:534 -+#: ../system-config-printer.py:538 - #, fuzzy - msgid "Problems?" - msgstr "ચકાસણી" - --#: ../system-config-printer.py:637 ../system-config-printer.py:639 -+#: ../system-config-printer.py:641 ../system-config-printer.py:643 - msgid "Members of this class" - msgstr "આ ક્લાસના સભ્યો" - --#: ../system-config-printer.py:638 ../system-config-printer.py:640 -+#: ../system-config-printer.py:642 ../system-config-printer.py:644 - msgid "Others" - msgstr "અન્યો" - --#: ../system-config-printer.py:641 -+#: ../system-config-printer.py:645 - msgid "Devices" - msgstr "ઉપકરણો" - --#: ../system-config-printer.py:642 -+#: ../system-config-printer.py:646 - #, fuzzy - msgid "Connections" - msgstr "જોડાઈ રહ્યા છીએ" - --#: ../system-config-printer.py:643 -+#: ../system-config-printer.py:647 - msgid "Makes" - msgstr "બનાવટો" - --#: ../system-config-printer.py:644 -+#: ../system-config-printer.py:648 - msgid "Models" - msgstr "મોડેલો" - --#: ../system-config-printer.py:645 -+#: ../system-config-printer.py:649 - msgid "Drivers" - msgstr "ડ્રાઈવરો" - --#: ../system-config-printer.py:646 ../glade/NewPrinterWindow.glade.h:55 -+#: ../system-config-printer.py:650 ../glade/NewPrinterWindow.glade.h:54 - msgid "Downloadable Drivers" - msgstr "" - --#: ../system-config-printer.py:647 -+#: ../system-config-printer.py:651 - msgid "Users" - msgstr "વપરાશકર્તાઓ" - --#: ../system-config-printer.py:682 -+#: ../system-config-printer.py:686 - msgid "Automatic rotation" - msgstr "આપોઆપ ફેરવવાનું" - --#: ../system-config-printer.py:989 -+#: ../system-config-printer.py:993 - #, fuzzy, python-format - msgid "Printer Properties - '%s' on %s" - msgstr "પ્રિન્ટર અહેવાલ" - - #. The Conflict button was pressed. --#: ../system-config-printer.py:996 -+#: ../system-config-printer.py:1000 - msgid "" - "There are conflicting options.\n" - "Changes can only be applied after\n" -@@ -876,81 +885,81 @@ msgstr "" - "ફેરફારો માત્ર આ તકરારો ઉકેલાઈ જાય પછી જ\n" - "લાગુ કરી શકાય છે." - --#: ../system-config-printer.py:1214 -+#: ../system-config-printer.py:1218 - #, python-format - msgid "Printer configuration - %s" - msgstr "પ્રિન્ટર રુપરેખાંકન - %s" - --#: ../system-config-printer.py:1217 -+#: ../system-config-printer.py:1221 - #, python-format - msgid "Connected to %s" - msgstr "%s સાથે જોડાયેલ છે" - - #. Update our copy of the printer's settings. --#: ../system-config-printer.py:1257 ../system-config-printer.py:2042 -+#: ../system-config-printer.py:1261 ../system-config-printer.py:2046 - msgid "obtaining queue details" - msgstr "" - --#: ../system-config-printer.py:1295 -+#: ../system-config-printer.py:1299 - msgid "Remove from Group" - msgstr "" - --#: ../system-config-printer.py:1361 -+#: ../system-config-printer.py:1365 - #, fuzzy - msgid "Network printer (discovered)" - msgstr "નવું પ્રિન્ટર" - --#: ../system-config-printer.py:1364 -+#: ../system-config-printer.py:1368 - msgid "Network class (discovered)" - msgstr "" - --#: ../system-config-printer.py:1370 ../system-config-printer.py:5524 --#: ../system-config-printer.py:5594 ../system-config-printer.py:5596 -+#: ../system-config-printer.py:1374 ../system-config-printer.py:5519 -+#: ../system-config-printer.py:5589 ../system-config-printer.py:5591 - msgid "Fax" - msgstr "" - --#: ../system-config-printer.py:1376 ../system-config-printer.py:1382 -+#: ../system-config-printer.py:1380 ../system-config-printer.py:1386 - #: ../troubleshoot/LocalOrRemote.py:30 - #, fuzzy - msgid "Network printer" - msgstr "નવું પ્રિન્ટર" - --#: ../system-config-printer.py:1379 -+#: ../system-config-printer.py:1383 - #, fuzzy - msgid "Network print share" - msgstr "નવું પ્રિન્ટર" - --#: ../system-config-printer.py:1508 ../glade/ConnectingDialog.glade.h:2 -+#: ../system-config-printer.py:1512 ../glade/ConnectingDialog.glade.h:2 - #, no-c-format, python-format - msgid "Opening connection to %s" - msgstr "" - --#: ../system-config-printer.py:1887 -+#: ../system-config-printer.py:1891 - msgid "Installable Options" - msgstr "સ્થાપન કરી શકાય તેવા વિકલ્પો" - --#: ../system-config-printer.py:1888 -+#: ../system-config-printer.py:1892 - #: ../glade/PrinterPropertiesDialog.glade.h:109 - msgid "Printer Options" - msgstr "પ્રિન્ટર વિકલ્પો" - --#: ../system-config-printer.py:1924 -+#: ../system-config-printer.py:1928 - #, python-format - msgid "modifying class %s" - msgstr "" - --#: ../system-config-printer.py:1926 ../system-config-printer.py:3019 --#: ../system-config-printer.py:3044 ../system-config-printer.py:6547 --#: ../system-config-printer.py:6559 ../system-config-printer.py:6581 -+#: ../system-config-printer.py:1930 ../system-config-printer.py:3037 -+#: ../system-config-printer.py:3062 ../system-config-printer.py:6495 -+#: ../system-config-printer.py:6507 ../system-config-printer.py:6529 - #, fuzzy, python-format - msgid "modifying printer %s" - msgstr "પ્રિન્ટર ઉમેરી રહ્યા છીએ" - --#: ../system-config-printer.py:1941 -+#: ../system-config-printer.py:1945 - msgid "This will delete this class!" - msgstr "આ તે ક્લાસને કાઢી નાંખશે!" - --#: ../system-config-printer.py:1942 -+#: ../system-config-printer.py:1946 - msgid "Proceed anyway?" - msgstr "શું ગમે તે રીતે પ્રક્રિયા કરવી છે?" - -@@ -958,70 +967,70 @@ msgstr "શું ગમે તે ર - #. but we have never fetched the server settings to see whether - #. the server is publishing shared printers. Fetch the settings - #. now so that we can update the "not published" label if necessary. --#: ../system-config-printer.py:2030 ../system-config-printer.py:3203 -+#: ../system-config-printer.py:2034 ../system-config-printer.py:3221 - #, fuzzy - msgid "fetching server settings" - msgstr "મૂળભૂત સર્વર સુયોજનો" - --#: ../system-config-printer.py:2100 -+#: ../system-config-printer.py:2104 - #, fuzzy - msgid "Set Default Printer" - msgstr "મૂળભૂત પ્રિન્ટર" - --#: ../system-config-printer.py:2102 -+#: ../system-config-printer.py:2106 - msgid "Do you want to set this as the system-wide default printer?" - msgstr "" - --#: ../system-config-printer.py:2104 -+#: ../system-config-printer.py:2108 - #, fuzzy - msgid "Set as the _system-wide default printer" - msgstr "આ મૂળભૂત પ્રિન્ટર છે" - --#: ../system-config-printer.py:2106 -+#: ../system-config-printer.py:2110 - msgid "_Clear my personal default setting" - msgstr "" - --#: ../system-config-printer.py:2107 -+#: ../system-config-printer.py:2111 - #, fuzzy - msgid "Set as my _personal default printer" - msgstr "મૂળભૂત પ્રિન્ટર પસંદ કરો" - --#: ../system-config-printer.py:2112 -+#: ../system-config-printer.py:2116 - #, fuzzy - msgid "setting default printer" - msgstr "મૂળભૂત પ્રિન્ટર પસંદ કરો" - --#: ../system-config-printer.py:2169 -+#: ../system-config-printer.py:2173 - #, fuzzy - msgid "printing test page" - msgstr "ચકાસણી પાનું છાપો" - --#: ../system-config-printer.py:2182 ../system-config-printer.py:2217 --#: ../system-config-printer.py:5418 -+#: ../system-config-printer.py:2186 ../system-config-printer.py:2221 -+#: ../system-config-printer.py:5413 - msgid "Not possible" - msgstr "શક્ય નથી" - --#: ../system-config-printer.py:2183 ../system-config-printer.py:2218 -+#: ../system-config-printer.py:2187 ../system-config-printer.py:2222 - msgid "" - "The remote server did not accept the print job, most likely because the " - "printer is not shared." - msgstr "" - "દૂરસ્થ સર્વર છાપન ક્રિયા સ્વીકારી શકતું ન હતું, મોટે ભાગે પ્રિન્ટર વહેંચાયેલ નહિં હોવાના કારણે." - --#: ../system-config-printer.py:2195 ../system-config-printer.py:2210 -+#: ../system-config-printer.py:2199 ../system-config-printer.py:2214 - msgid "Submitted" - msgstr "જમા કરેલ" - --#: ../system-config-printer.py:2196 -+#: ../system-config-printer.py:2200 - #, python-format - msgid "Test page submitted as job %d" - msgstr "ચકાસણી પાનું ક્રિયા %d તરીકે જમા થઈ ગયું" - --#: ../system-config-printer.py:2203 -+#: ../system-config-printer.py:2207 - msgid "sending maintenance command" - msgstr "" - --#: ../system-config-printer.py:2211 -+#: ../system-config-printer.py:2215 - #, python-format - msgid "Maintenance command submitted as job %d" - msgstr "જાળવણી આદેશ ક્રિયા %d તરીકે જમા થયો" -@@ -1029,76 +1038,76 @@ msgstr "જાળવણી આદેશ - #. The underlying cupsGetPPD2() function returned NULL without - #. setting an IPP error, so it'll be something like a failed - #. connection. --#: ../system-config-printer.py:2285 ../system-config-printer.py:2381 -+#: ../system-config-printer.py:2289 ../system-config-printer.py:2385 - msgid "Error" - msgstr "ભૂલ" - --#: ../system-config-printer.py:2286 -+#: ../system-config-printer.py:2290 - msgid "There was a problem connecting to the CUPS server." - msgstr "CUPS સર્વર સાથે જોડાણ કરવામાં સમસ્યા હતી." - --#: ../system-config-printer.py:2382 -+#: ../system-config-printer.py:2386 - #, python-format - msgid "Option '%s' has value '%s' and cannot be edited." - msgstr "વિકલ્પ '%s' ને કિંમત '%s' છે અને તેમાં ફેરફાર કરી શકાશે નહિં." - --#: ../system-config-printer.py:2466 -+#: ../system-config-printer.py:2476 - msgid "Marker levels are not reported for this printer." - msgstr "" - --#: ../system-config-printer.py:2763 -+#: ../system-config-printer.py:2773 - #, fuzzy - msgid "Cannot Rename" - msgstr "પ્રકાશિત કરો (_R)" - --#: ../system-config-printer.py:2764 -+#: ../system-config-printer.py:2774 - #, fuzzy - msgid "There are queued jobs." - msgstr "ત્યાં કોઈ કતારો ઉપલબ્ધ નથી." - --#: ../system-config-printer.py:2822 -+#: ../system-config-printer.py:2840 - #, fuzzy - msgid "renaming printer" - msgstr "પ્રિન્ટર ઉમેરી રહ્યા છીએ" - - #. for classes make sure all members - #. will get added --#: ../system-config-printer.py:2907 -+#: ../system-config-printer.py:2925 - #, fuzzy - msgid "copying printer" - msgstr "પ્રિન્ટર ઉમેરી રહ્યા છીએ" - --#: ../system-config-printer.py:2971 -+#: ../system-config-printer.py:2989 - #, fuzzy, python-format - msgid "Really delete class '%s'?" - msgstr "શું ખરેખર ક્લાસ %s કાઢી નાંખવું છે?" - --#: ../system-config-printer.py:2973 -+#: ../system-config-printer.py:2991 - #, fuzzy, python-format - msgid "Really delete printer '%s'?" - msgstr "શું ખરેખર પ્રિન્ટર %s કાઢી નાંખવુ છે?" - --#: ../system-config-printer.py:2975 -+#: ../system-config-printer.py:2993 - #, fuzzy - msgid "Really delete selected destinations?" - msgstr "શું ખરેખર પ્રિન્ટર %s કાઢી નાંખવુ છે?" - --#: ../system-config-printer.py:2996 -+#: ../system-config-printer.py:3014 - #, fuzzy, python-format - msgid "deleting printer %s" - msgstr "પ્રિન્ટર ઉમેરી રહ્યા છીએ" - --#: ../system-config-printer.py:3070 -+#: ../system-config-printer.py:3088 - msgid "Publish Shared Printers" - msgstr "" - --#: ../system-config-printer.py:3071 -+#: ../system-config-printer.py:3089 - msgid "" - "Shared printers are not available to other people unless the 'Publish shared " - "printers' option is enabled in the server settings." - msgstr "" - --#: ../system-config-printer.py:3264 -+#: ../system-config-printer.py:3282 - #, fuzzy - msgid "modifying server settings" - msgstr "મૂળભૂત સર્વર સુયોજનો" -@@ -1109,104 +1118,104 @@ msgstr "મૂળભૂત સર્ - #. be unblocked. Unfortunately, this is not yet possible - #. (bug #440469). However, we can display a dialog to suggest - #. that now might be a good time to review the firewall settings. --#: ../system-config-printer.py:3289 -+#: ../system-config-printer.py:3307 - msgid "Review Firewall" - msgstr "" - --#: ../system-config-printer.py:3290 -+#: ../system-config-printer.py:3308 - msgid "" - "You may need to adjust the firewall to allow network printing to this " - "computer." - msgstr "" - --#: ../system-config-printer.py:3623 -+#: ../system-config-printer.py:3638 - msgid "Browsing not available (pysmbc not installed)" - msgstr "" - - #. SMB list columns --#: ../system-config-printer.py:3629 -+#: ../system-config-printer.py:3644 - msgid "Share" - msgstr "વહેંચો" - --#: ../system-config-printer.py:3635 -+#: ../system-config-printer.py:3650 - msgid "Comment" - msgstr "ટિપ્પણી" - - #. IPP list columns --#: ../system-config-printer.py:3654 -+#: ../system-config-printer.py:3669 - msgid "Queue" - msgstr "કતાર" - --#: ../system-config-printer.py:3668 -+#: ../system-config-printer.py:3683 - msgid "" - "PostScript Printer Description files (*.ppd, *.PPD, *.ppd.gz, *.PPD.gz, *." - "PPD.GZ)" - msgstr "" - "PostScript પ્રિન્ટર વર્ણન ફાઈલો (*.ppd, *.PPD, *.ppd.gz, *.PPD.gz, *.PPD.GZ)" - --#: ../system-config-printer.py:3677 -+#: ../system-config-printer.py:3692 - msgid "All files (*)" - msgstr "બધી ફાઈલો (*)" - --#: ../system-config-printer.py:3713 ../system-config-printer.py:5970 --#: ../system-config-printer.py:6008 ../applet.py:124 -+#: ../system-config-printer.py:3728 ../system-config-printer.py:5918 -+#: ../system-config-printer.py:5956 ../applet.py:124 - #, fuzzy - msgid "Search" - msgstr "શોધી રહ્યા છીએ" - --#: ../system-config-printer.py:3736 ../system-config-printer.py:3760 --#: ../glade/NewPrinterWindow.glade.h:74 -+#: ../system-config-printer.py:3751 ../system-config-printer.py:3775 -+#: ../glade/NewPrinterWindow.glade.h:73 - msgid "New Printer" - msgstr "નવું પ્રિન્ટર" - --#: ../system-config-printer.py:3747 -+#: ../system-config-printer.py:3762 - msgid "New Class" - msgstr "નવો ક્લાસ" - --#: ../system-config-printer.py:3752 -+#: ../system-config-printer.py:3767 - msgid "Change Device URI" - msgstr "ઉપકરણ URI બદલો" - --#: ../system-config-printer.py:3758 -+#: ../system-config-printer.py:3773 - msgid "Change Driver" - msgstr "ડ્રાઈવર બદલો" - --#: ../system-config-printer.py:3927 ../system-config-printer.py:3993 --#: ../system-config-printer.py:4289 ../system-config-printer.py:4487 --#: ../system-config-printer.py:5772 ../system-config-printer.py:5995 -+#: ../system-config-printer.py:3942 ../system-config-printer.py:4008 -+#: ../system-config-printer.py:4304 ../system-config-printer.py:4502 -+#: ../system-config-printer.py:5762 ../system-config-printer.py:5943 - msgid "Searching" - msgstr "શોધી રહ્યા છીએ" - --#: ../system-config-printer.py:3928 -+#: ../system-config-printer.py:3943 - #, fuzzy - msgid "Searching for downloadable drivers" - msgstr "ડ્રાઈવરો માટે શોધી રહ્યા છીએ" - --#: ../system-config-printer.py:3994 ../system-config-printer.py:4290 -+#: ../system-config-printer.py:4009 ../system-config-printer.py:4305 - msgid "Searching for drivers" - msgstr "ડ્રાઈવરો માટે શોધી રહ્યા છીએ" - --#: ../system-config-printer.py:4488 ../system-config-printer.py:5773 -+#: ../system-config-printer.py:4503 ../system-config-printer.py:5763 - msgid "Searching for printers" - msgstr "પ્રિન્ટરો માટે શોધી રહ્યા છીએ" - --#: ../system-config-printer.py:4497 -+#: ../system-config-printer.py:4512 - #, fuzzy - msgid "fetching device list" - msgstr "મૂળભૂત સર્વર સુયોજનો" - - #. Tell the user why he needs the plugin --#: ../system-config-printer.py:4579 -+#: ../system-config-printer.py:4594 - msgid "For this printer a proprietary driver plugin from HP is available.\n" - msgstr "" - --#: ../system-config-printer.py:4582 -+#: ../system-config-printer.py:4597 - msgid "" - "The installation of the plugin is required for your printer to work.\n" - "\n" - msgstr "" - --#: ../system-config-printer.py:4585 -+#: ../system-config-printer.py:4600 - msgid "" - "Installing the plugin is optional, it completes or enhances the " - "functionality\n" -@@ -1214,293 +1223,285 @@ msgid "" - "\n" - msgstr "" - --#: ../system-config-printer.py:4589 -+#: ../system-config-printer.py:4604 - msgid "The plugin provides the following features:\n" - msgstr "" - --#: ../system-config-printer.py:4592 -+#: ../system-config-printer.py:4607 - msgid " - Printing support\n" - msgstr "" - --#: ../system-config-printer.py:4595 -+#: ../system-config-printer.py:4610 - msgid " - Faster printing\n" - msgstr "" - --#: ../system-config-printer.py:4598 -+#: ../system-config-printer.py:4613 - msgid " - Better printout quality\n" - msgstr "" - --#: ../system-config-printer.py:4601 -+#: ../system-config-printer.py:4616 - msgid " - Extra printing features\n" - msgstr "" - --#: ../system-config-printer.py:4604 -+#: ../system-config-printer.py:4619 - msgid " - Scanning support\n" - msgstr "" - --#: ../system-config-printer.py:4607 -+#: ../system-config-printer.py:4622 - msgid " - Faster scanning\n" - msgstr "" - --#: ../system-config-printer.py:4610 -+#: ../system-config-printer.py:4625 - msgid " - Better scanning image quality\n" - msgstr "" - --#: ../system-config-printer.py:4613 -+#: ../system-config-printer.py:4628 - msgid " - Faxing support\n" - msgstr "" - --#: ../system-config-printer.py:4616 -+#: ../system-config-printer.py:4631 - msgid " - Extra fax features\n" - msgstr "" - --#: ../system-config-printer.py:4619 -+#: ../system-config-printer.py:4634 - msgid " - Better Input/Output support\n" - msgstr "" - --#: ../system-config-printer.py:4622 -+#: ../system-config-printer.py:4637 - msgid " - Extra user interface features\n" - msgstr "" - --#: ../system-config-printer.py:4625 -+#: ../system-config-printer.py:4640 - msgid " - Other extra features\n" - msgstr "" - --#: ../system-config-printer.py:4630 -+#: ../system-config-printer.py:4645 - #, fuzzy - msgid "Install plugin" - msgstr "સ્થાપિત વિકલ્પો" - --#: ../system-config-printer.py:4631 -+#: ../system-config-printer.py:4646 - #, fuzzy - msgid "Do not set up printer" - msgstr "પ્રિન્ટરની નકલ કરો" - --#: ../system-config-printer.py:4632 -+#: ../system-config-printer.py:4647 - msgid "Set up without plugin" - msgstr "" - --#: ../system-config-printer.py:4634 ../troubleshoot/PrintTestPage.py:118 -+#: ../system-config-printer.py:4649 ../troubleshoot/PrintTestPage.py:118 - msgid "Yes" - msgstr "" - --#: ../system-config-printer.py:4635 ../troubleshoot/PrintTestPage.py:119 -+#: ../system-config-printer.py:4650 ../troubleshoot/PrintTestPage.py:119 - msgid "No" - msgstr "" - --#: ../system-config-printer.py:4809 ../system-config-printer.py:4813 -+#: ../system-config-printer.py:4824 ../system-config-printer.py:4828 - msgid " (Current)" - msgstr " (વર્તમાન)" - --#: ../system-config-printer.py:4845 --msgid "HP Printer (HPLIP)" --msgstr "" -- --#: ../system-config-printer.py:4886 -+#: ../system-config-printer.py:4881 - msgid "Other" - msgstr "અન્ય" - - #. device-info - #. PhysicalDevice obj - #. Separator? --#: ../system-config-printer.py:4902 -+#: ../system-config-printer.py:4897 - #, fuzzy - msgid "Network Printer" - msgstr "નવું પ્રિન્ટર" - --#: ../system-config-printer.py:4906 -+#: ../system-config-printer.py:4901 - #, fuzzy - msgid "Find Network Printer" - msgstr "નવું પ્રિન્ટર" - --#: ../system-config-printer.py:4979 ../system-config-printer.py:5376 -+#: ../system-config-printer.py:4974 ../system-config-printer.py:5371 - msgid "Scanning..." - msgstr "સ્કેન કરી રહ્યા છીએ..." - --#: ../system-config-printer.py:5034 ../system-config-printer.py:5798 -+#: ../system-config-printer.py:5029 - #, fuzzy - msgid "No Print Shares" - msgstr "નવું પ્રિન્ટર" - --#: ../system-config-printer.py:5035 -+#: ../system-config-printer.py:5030 - msgid "" - "There were no print shares found. Please check that the Samba service is " - "marked as trusted in your firewall configuration." - msgstr "" - --#: ../system-config-printer.py:5296 ../system-config-printer.py:5357 -+#: ../system-config-printer.py:5291 ../system-config-printer.py:5352 - msgid "Print Share Verified" - msgstr "" - --#: ../system-config-printer.py:5297 ../system-config-printer.py:5358 -+#: ../system-config-printer.py:5292 ../system-config-printer.py:5353 - msgid "This print share is accessible." - msgstr "આ છાપન ભાગ સુલભ છે." - --#: ../system-config-printer.py:5302 ../system-config-printer.py:5362 -+#: ../system-config-printer.py:5297 ../system-config-printer.py:5357 - msgid "This print share is not accessible." - msgstr "આ છાપન ભાગ સુલભ નથી." - --#: ../system-config-printer.py:5305 -+#: ../system-config-printer.py:5300 - #, fuzzy - msgid "Print Share Inaccessible" - msgstr "આ છાપન ભાગ સુલભ છે." - --#: ../system-config-printer.py:5361 -+#: ../system-config-printer.py:5356 - msgid "Inaccessible" - msgstr "બિનસુલભ" - --#: ../system-config-printer.py:5419 -+#: ../system-config-printer.py:5414 - #, fuzzy, python-format - msgid "It is not possible to obtain a list of queues from '%s'." - msgstr "આ યજમાનમાંથી કતારોની યાદી મેળવવાનું શક્ય નથી." - --#: ../system-config-printer.py:5421 -+#: ../system-config-printer.py:5416 - msgid "" - "Obtaining a list of queues is a CUPS extension to IPP. Network printers do " - "not support it." - msgstr "" - --#: ../system-config-printer.py:5424 -+#: ../system-config-printer.py:5419 - msgid "No queues" - msgstr "કોઈ કતારો નથી" - --#: ../system-config-printer.py:5425 -+#: ../system-config-printer.py:5420 - msgid "There are no queues available." - msgstr "ત્યાં કોઈ કતારો ઉપલબ્ધ નથી." - --#: ../system-config-printer.py:5516 -+#: ../system-config-printer.py:5511 - msgid "Parallel Port" - msgstr "" - --#: ../system-config-printer.py:5518 -+#: ../system-config-printer.py:5513 - #, fuzzy - msgid "Serial Port" - msgstr "સીરીયલ" - --#: ../system-config-printer.py:5520 -+#: ../system-config-printer.py:5515 - #, fuzzy - msgid "USB" - msgstr "SMB" - --#: ../system-config-printer.py:5522 ../system-config-printer.py:5525 -+#: ../system-config-printer.py:5517 ../system-config-printer.py:5520 - msgid "HP Linux Imaging and Printing (HPLIP)" - msgstr "" - --#: ../system-config-printer.py:5527 -+#: ../system-config-printer.py:5522 - #, fuzzy - msgid "Hardware Abstraction Layer (HAL)" - msgstr "Hardware Abstraction Layer (HAL) દ્વારા શોધાયેલ સ્થાનિક પ્રિન્ટર." - --#: ../system-config-printer.py:5529 -+#: ../system-config-printer.py:5524 - msgid "AppSocket/HP JetDirect" - msgstr "" - --#: ../system-config-printer.py:5538 -+#: ../system-config-printer.py:5533 - #, python-format - msgid "LPD/LPR queue '%s'" - msgstr "" - --#: ../system-config-printer.py:5540 -+#: ../system-config-printer.py:5535 - #, fuzzy - msgid "LPD/LPR queue" - msgstr "LPD" - --#: ../system-config-printer.py:5543 -+#: ../system-config-printer.py:5538 - msgid "Windows Printer via SAMBA" - msgstr "" - --#: ../system-config-printer.py:5545 ../glade/NewPrinterWindow.glade.h:66 -+#: ../system-config-printer.py:5540 ../glade/NewPrinterWindow.glade.h:65 - msgid "IPP" - msgstr "IPP" - --#: ../system-config-printer.py:5547 -+#: ../system-config-printer.py:5542 - msgid "HTTP" - msgstr "" - --#: ../system-config-printer.py:5632 -+#: ../system-config-printer.py:5624 - msgid "A printer connected to the parallel port." - msgstr "પેરેલલ પોર્ટ સાથે પ્રિન્ટર જોડાયેલ છે." - --#: ../system-config-printer.py:5634 -+#: ../system-config-printer.py:5626 - msgid "A printer connected to a USB port." - msgstr "USB પોર્ટ સાથે પ્રિન્ટર જોડાયેલ છે." - --#: ../system-config-printer.py:5636 -+#: ../system-config-printer.py:5628 - msgid "" - "HPLIP software driving a printer, or the printer function of a multi-" - "function device." - msgstr "HPLIP સોફ્ટવેર, અથવા વિવિધ-વિધેય ઉપકરણનું પ્રિન્ટર વિધેય પ્રિન્ટર ચલાવી રહ્યું છે." - --#: ../system-config-printer.py:5639 -+#: ../system-config-printer.py:5631 - msgid "" - "HPLIP software driving a fax machine, or the fax function of a multi-" - "function device." - msgstr "HPLIP સોફ્ટવેર, અથવા વિવિધ-વિધેય ઉપકરણનું ફેક્સ વિધેય ફેક્સ મશીન ચલાવી રહ્યું છે." - --#: ../system-config-printer.py:5642 -+#: ../system-config-printer.py:5634 - msgid "Local printer detected by the Hardware Abstraction Layer (HAL)." - msgstr "Hardware Abstraction Layer (HAL) દ્વારા શોધાયેલ સ્થાનિક પ્રિન્ટર." - --#: ../system-config-printer.py:5799 --msgid "HPLIP cannot find the device." --msgstr "" -- --#: ../system-config-printer.py:5881 -+#: ../system-config-printer.py:5831 - msgid "No printer was found at that address." - msgstr "" - --#: ../system-config-printer.py:6020 -+#: ../system-config-printer.py:5968 - #, fuzzy - msgid "-- Select from search results --" - msgstr "ડેટાબેઝમાંથી પ્રિન્ટર પસંદ કરો" - --#: ../system-config-printer.py:6022 -+#: ../system-config-printer.py:5970 - msgid "-- No matches found --" - msgstr "" - --#: ../system-config-printer.py:6203 -+#: ../system-config-printer.py:6151 - msgid " (recommended)" - msgstr " (આગ્રહણીય)" - --#: ../system-config-printer.py:6217 -+#: ../system-config-printer.py:6165 - msgid "This PPD is generated by foomatic." - msgstr "આ PPD એ foomatic દ્વારા બનાવાયેલ છે." - --#: ../system-config-printer.py:6241 -+#: ../system-config-printer.py:6189 - #, fuzzy - msgid "OpenPrinting" - msgstr "છાપન" - --#: ../system-config-printer.py:6252 -+#: ../system-config-printer.py:6200 - msgid "Distributable" - msgstr "" - --#: ../system-config-printer.py:6293 -+#: ../system-config-printer.py:6241 - #, fuzzy - msgid ", " - msgstr " " - --#: ../system-config-printer.py:6298 -+#: ../system-config-printer.py:6246 - #, python-format - msgid "" - "\n" - "(%s)" - msgstr "" - --#: ../system-config-printer.py:6303 -+#: ../system-config-printer.py:6251 - msgid "No support contacts known" - msgstr "" - --#: ../system-config-printer.py:6307 ../system-config-printer.py:6320 -+#: ../system-config-printer.py:6255 ../system-config-printer.py:6268 - msgid "Not specified." - msgstr "" - - #. Foomatic database problem of some sort. --#: ../system-config-printer.py:6360 -+#: ../system-config-printer.py:6308 - msgid "Database error" - msgstr "ડેટાબેઝ ભૂલ" - --#: ../system-config-printer.py:6361 -+#: ../system-config-printer.py:6309 - #, python-format - msgid "The '%s' driver cannot be used with printer '%s %s'." - msgstr "'%s' ડ્રાઈવર એ પ્રિન્ટર '%s %s' સાથે વાપરી શકાશે નહિં." -@@ -1508,60 +1509,60 @@ msgstr "'%s' ડ્રાઈવર એ - #. This printer references some XML that is not - #. installed by default. Point the user at the - #. package they need to install. --#: ../system-config-printer.py:6371 -+#: ../system-config-printer.py:6319 - #, python-format - msgid "You will need to install the '%s' package in order to use this driver." - msgstr "આ ડ્રાઈવર વાપરવા માટે તમારે '%s' પેકેજ સ્થાપિત કરવાની જરૂર રહેશે." - - #. This error came from trying to open the PPD file. --#: ../system-config-printer.py:6378 -+#: ../system-config-printer.py:6326 - msgid "PPD error" - msgstr "PPD ભૂલ" - --#: ../system-config-printer.py:6380 -+#: ../system-config-printer.py:6328 - msgid "Failed to read PPD file. Possible reason follows:" - msgstr "PPD ફાઈલ વાંચવામાં નિષ્ફળ. શક્ય કારણો નીચે પ્રમાણે છે:" - - #. Failed to get PPD downloaded from OpenPrinting XXX --#: ../system-config-printer.py:6397 -+#: ../system-config-printer.py:6345 - msgid "Downloadable drivers" - msgstr "" - --#: ../system-config-printer.py:6398 -+#: ../system-config-printer.py:6346 - msgid "Failed to download PPD." - msgstr "" - --#: ../system-config-printer.py:6405 -+#: ../system-config-printer.py:6353 - msgid "fetching PPD" - msgstr "" - --#: ../system-config-printer.py:6434 ../system-config-printer.py:6472 -+#: ../system-config-printer.py:6382 ../system-config-printer.py:6420 - msgid "No Installable Options" - msgstr "કોઈ સ્થાપનીય વિકલ્પો નથી" - --#: ../system-config-printer.py:6520 -+#: ../system-config-printer.py:6468 - #, fuzzy, python-format - msgid "adding printer %s" - msgstr "પ્રિન્ટર ઉમેરી રહ્યા છીએ" - --#: ../system-config-printer.py:6669 -+#: ../system-config-printer.py:6617 - msgid "Would you like to print a test page?" - msgstr "" - --#: ../system-config-printer.py:6722 -+#: ../system-config-printer.py:6670 - msgid "Install driver" - msgstr "ડ્રાઈવર સ્થાપિત કરો" - --#: ../system-config-printer.py:6723 ../troubleshoot/CheckPPDSanity.py:131 -+#: ../system-config-printer.py:6671 ../troubleshoot/CheckPPDSanity.py:131 - #, python-format - msgid "Printer '%s' requires the %s package but it is not currently installed." - msgstr "પ્રિન્ટર '%s' માટે %s પેકેજ જરૂરી છે પરંતુ તે વર્તમાનમાં સ્થાપિત થયેલ નથી." - --#: ../system-config-printer.py:6739 -+#: ../system-config-printer.py:6687 - msgid "Missing driver" - msgstr "ગુમ થયેલ ડ્રાઈવર" - --#: ../system-config-printer.py:6740 -+#: ../system-config-printer.py:6688 - #, python-format - msgid "" - "Printer '%s' requires the '%s' program but it is not currently installed. " -@@ -1699,131 +1700,126 @@ msgid "Enter device URI" - msgstr "ઉપકરણ URI દાખલ કરો" - - #: ../glade/NewPrinterWindow.glade.h:5 --#, fuzzy --msgid "HP Printer (HPLIP) via network" --msgstr "પ્રિન્ટર નામ" -- --#: ../glade/NewPrinterWindow.glade.h:6 - msgid "IPP Printer" - msgstr "IPP પ્રિન્ટર" - --#: ../glade/NewPrinterWindow.glade.h:7 -+#: ../glade/NewPrinterWindow.glade.h:6 - #, fuzzy - msgid "License Terms" - msgstr "પ્રિન્ટર નામ" - --#: ../glade/NewPrinterWindow.glade.h:8 -+#: ../glade/NewPrinterWindow.glade.h:7 - msgid "Location of the LPD network printer" - msgstr "LPD નેટવર્ક પ્રિન્ટરનું સ્થાન" - --#: ../glade/NewPrinterWindow.glade.h:9 -+#: ../glade/NewPrinterWindow.glade.h:8 - msgid "Location of the network printer" - msgstr "નેટવર્ક પ્રિન્ટરનું સ્થાન" - --#: ../glade/NewPrinterWindow.glade.h:10 -+#: ../glade/NewPrinterWindow.glade.h:9 - msgid "Location (optional)" - msgstr "સ્થાન (વૈકલ્પિક)" - --#: ../glade/NewPrinterWindow.glade.h:11 -+#: ../glade/NewPrinterWindow.glade.h:10 - #, fuzzy - msgid "Network Printer" - msgstr "નવું પ્રિન્ટર" - --#: ../glade/NewPrinterWindow.glade.h:12 -+#: ../glade/NewPrinterWindow.glade.h:11 - #, fuzzy - msgid "Note" - msgstr "પરિસ્થિતિ" - --#: ../glade/NewPrinterWindow.glade.h:13 -+#: ../glade/NewPrinterWindow.glade.h:12 - #, fuzzy - msgid "Output Quality" - msgstr "પરિસ્થિતિ" - --#: ../glade/NewPrinterWindow.glade.h:14 -+#: ../glade/NewPrinterWindow.glade.h:13 - msgid "Printer Name" - msgstr "પ્રિન્ટર નામ" - --#: ../glade/NewPrinterWindow.glade.h:15 -+#: ../glade/NewPrinterWindow.glade.h:14 - msgid "SMB Printer" - msgstr "SMB પ્રિન્ટર" - --#: ../glade/NewPrinterWindow.glade.h:16 -+#: ../glade/NewPrinterWindow.glade.h:15 - #, fuzzy - msgid "Select Driver" - msgstr "SMB પ્રિન્ટર" - --#: ../glade/NewPrinterWindow.glade.h:17 -+#: ../glade/NewPrinterWindow.glade.h:16 - msgid "Settings of the serial port" - msgstr "સીરીયલ પોર્ટના સુયોજનો" - --#: ../glade/NewPrinterWindow.glade.h:18 -+#: ../glade/NewPrinterWindow.glade.h:17 - msgid "smb://[workgroup/]server[:port]/printer" - msgstr "smb://[workgroup/]server[:port]/printer" - --#: ../glade/NewPrinterWindow.glade.h:19 -+#: ../glade/NewPrinterWindow.glade.h:18 - #, fuzzy - msgid "Choose Class Members" - msgstr "" - "પાસવર્ડ જરૂરી છે\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:20 -+#: ../glade/NewPrinterWindow.glade.h:19 - #, fuzzy - msgid "Choose Driver" - msgstr "" - "પાસવર્ડ જરૂરી છે\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:21 -+#: ../glade/NewPrinterWindow.glade.h:20 - #, fuzzy - msgid "Describe Printer" - msgstr "" - "પાસવર્ડ જરૂરી છે\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:22 -+#: ../glade/NewPrinterWindow.glade.h:21 - #, fuzzy - msgid "Existing Settings" - msgstr "" - "પાસવર્ડ જરૂરી છે\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:23 -+#: ../glade/NewPrinterWindow.glade.h:22 - #, fuzzy - msgid "Installable Options" - msgstr "" - "પાસવર્ડ જરૂરી છે\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:24 -+#: ../glade/NewPrinterWindow.glade.h:23 - #, fuzzy - msgid "Select Device" - msgstr "" - "પાસવર્ડ જરૂરી છે\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:25 -+#: ../glade/NewPrinterWindow.glade.h:24 - msgid "Baud Rate" - msgstr "બોડ દર" - --#: ../glade/NewPrinterWindow.glade.h:26 -+#: ../glade/NewPrinterWindow.glade.h:25 - msgid "Browse..." - msgstr "બ્રાઉઝ કરો..." - --#: ../glade/NewPrinterWindow.glade.h:27 -+#: ../glade/NewPrinterWindow.glade.h:26 - msgid "Comments..." - msgstr "ટિપ્પણીઓ..." - --#: ../glade/NewPrinterWindow.glade.h:28 -+#: ../glade/NewPrinterWindow.glade.h:27 - #, fuzzy - msgid "Connection" - msgstr "જોડાઈ રહ્યા છીએ" - --#: ../glade/NewPrinterWindow.glade.h:29 -+#: ../glade/NewPrinterWindow.glade.h:28 - msgid "Data Bits" - msgstr "માહિતી બીટ" - --#: ../glade/NewPrinterWindow.glade.h:30 -+#: ../glade/NewPrinterWindow.glade.h:29 - msgid "" - "Default\n" - "1200\n" -@@ -1845,7 +1841,7 @@ msgstr "" - "57600\n" - "115200" - --#: ../glade/NewPrinterWindow.glade.h:39 -+#: ../glade/NewPrinterWindow.glade.h:38 - msgid "" - "Default\n" - "8\n" -@@ -1855,7 +1851,7 @@ msgstr "" - "8\n" - "7" - --#: ../glade/NewPrinterWindow.glade.h:42 -+#: ../glade/NewPrinterWindow.glade.h:41 - msgid "" - "Default\n" - "None\n" -@@ -1867,7 +1863,7 @@ msgstr "" - "એકી સંખ્યા\n" - "બેકી સંખ્યા" - --#: ../glade/NewPrinterWindow.glade.h:46 -+#: ../glade/NewPrinterWindow.glade.h:45 - msgid "" - "Default\n" - "None\n" -@@ -1881,118 +1877,118 @@ msgstr "" - "RTS/CTS (હાર્ડવેર)\n" - "DTR/DSR (હાર્ડવેર)" - --#: ../glade/NewPrinterWindow.glade.h:51 -+#: ../glade/NewPrinterWindow.glade.h:50 - #: ../glade/PrinterPropertiesDialog.glade.h:35 - msgid "Description:" - msgstr "વર્ણન:" - --#: ../glade/NewPrinterWindow.glade.h:52 ../troubleshoot/DeviceListed.py:40 -+#: ../glade/NewPrinterWindow.glade.h:51 ../troubleshoot/DeviceListed.py:40 - msgid "Device URI" - msgstr "ઉપકરણ URI" - --#: ../glade/NewPrinterWindow.glade.h:53 -+#: ../glade/NewPrinterWindow.glade.h:52 - msgid "Device description." - msgstr "ઉપકરણ વર્ણન." - --#: ../glade/NewPrinterWindow.glade.h:54 -+#: ../glade/NewPrinterWindow.glade.h:53 - msgid "DirectJet" - msgstr "DirectJet" - --#: ../glade/NewPrinterWindow.glade.h:56 -+#: ../glade/NewPrinterWindow.glade.h:55 - #, fuzzy - msgid "Driver details" - msgstr "ડ્રાઈવરો" - --#: ../glade/NewPrinterWindow.glade.h:57 -+#: ../glade/NewPrinterWindow.glade.h:56 - msgid "Empty" - msgstr "ખાલી" - --#: ../glade/NewPrinterWindow.glade.h:58 -+#: ../glade/NewPrinterWindow.glade.h:57 - msgid "Find _Queue..." - msgstr "કતાર શોધો (_Q)..." - --#: ../glade/NewPrinterWindow.glade.h:59 -+#: ../glade/NewPrinterWindow.glade.h:58 - msgid "Flow Control" - msgstr "પ્રવાહ નિયંત્રણ" - --#: ../glade/NewPrinterWindow.glade.h:60 -+#: ../glade/NewPrinterWindow.glade.h:59 - msgid "" - "For the printer you have selected there are drivers available for download." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:61 -+#: ../glade/NewPrinterWindow.glade.h:60 - msgid "Free software" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:62 -+#: ../glade/NewPrinterWindow.glade.h:61 - msgid "Graphics:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:63 -+#: ../glade/NewPrinterWindow.glade.h:62 - msgid "Host:" - msgstr "યજમાન:" - --#: ../glade/NewPrinterWindow.glade.h:64 -+#: ../glade/NewPrinterWindow.glade.h:63 - msgid "Human-readable description such as \"HP LaserJet with Duplexer\"" - msgstr "માનવીય-વાંચનીય વર્ણન જેમ કે \"Duplexer સાથેનું HP LaserJet\"" - --#: ../glade/NewPrinterWindow.glade.h:65 -+#: ../glade/NewPrinterWindow.glade.h:64 - msgid "Human-readable location such as \"Lab 1\"" - msgstr "માનવીય-વાંચનીય સ્થાન જેમ કે \"Lab 1\"" - --#: ../glade/NewPrinterWindow.glade.h:67 -+#: ../glade/NewPrinterWindow.glade.h:66 - msgid "LPD" - msgstr "LPD" - --#: ../glade/NewPrinterWindow.glade.h:68 -+#: ../glade/NewPrinterWindow.glade.h:67 - msgid "License:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:69 -+#: ../glade/NewPrinterWindow.glade.h:68 - #, fuzzy - msgid "Line art:" - msgstr "પ્રિન્ટર સ્થિતિ:" - --#: ../glade/NewPrinterWindow.glade.h:70 -+#: ../glade/NewPrinterWindow.glade.h:69 - #, fuzzy - msgid "Local Driver" - msgstr "સ્થાનિક પ્રિન્ટરો" - --#: ../glade/NewPrinterWindow.glade.h:71 -+#: ../glade/NewPrinterWindow.glade.h:70 - #, fuzzy - msgid "Make and model:" - msgstr "બનાવો અને મોડેલ:" - --#: ../glade/NewPrinterWindow.glade.h:72 -+#: ../glade/NewPrinterWindow.glade.h:71 - msgid "Manufacturer" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:73 -+#: ../glade/NewPrinterWindow.glade.h:72 - #, fuzzy - msgid "Network" - msgstr "નવું પ્રિન્ટર" - --#: ../glade/NewPrinterWindow.glade.h:75 -+#: ../glade/NewPrinterWindow.glade.h:74 - msgid "No, I do not accept this license" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:76 -+#: ../glade/NewPrinterWindow.glade.h:75 - msgid "Parity" - msgstr "પેરીટી" - --#: ../glade/NewPrinterWindow.glade.h:78 -+#: ../glade/NewPrinterWindow.glade.h:77 - msgid "Patented algorithms" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:79 -+#: ../glade/NewPrinterWindow.glade.h:78 - msgid "Photo:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:80 -+#: ../glade/NewPrinterWindow.glade.h:79 - msgid "Port number:" - msgstr "પોર્ટ નંબર:" - --#: ../glade/NewPrinterWindow.glade.h:81 -+#: ../glade/NewPrinterWindow.glade.h:80 - #, fuzzy - msgid "" - "PostScript Printer Description (PPD) files can often be found on the driver " -@@ -2003,82 +1999,82 @@ msgstr "" - "કે જે પ્રિન્ટર સાથે આવે છે. PostScript પ્રિન્ટરો માટે કે જેઓ મોટે ભાગે Windows® " - "ડ્રાઈવરનો ભાગ હોય." - --#: ../glade/NewPrinterWindow.glade.h:82 -+#: ../glade/NewPrinterWindow.glade.h:81 - #, fuzzy - msgid "Printer model:" - msgstr "પ્રિન્ટર ઉમેરાયું" - --#: ../glade/NewPrinterWindow.glade.h:83 -+#: ../glade/NewPrinterWindow.glade.h:82 - msgid "Probe" - msgstr "ચકાસણી" - --#: ../glade/NewPrinterWindow.glade.h:84 -+#: ../glade/NewPrinterWindow.glade.h:83 - #, fuzzy - msgid "Prompt user if authentication is required" - msgstr "સત્તાધિકરણ જરૂરી" - --#: ../glade/NewPrinterWindow.glade.h:85 -+#: ../glade/NewPrinterWindow.glade.h:84 - #, fuzzy - msgid "Provide PPD file" - msgstr "PPD ફાઈલ પૂરી પાડો" - --#: ../glade/NewPrinterWindow.glade.h:86 -+#: ../glade/NewPrinterWindow.glade.h:85 - msgid "Queue:" - msgstr "કતાર:" - --#: ../glade/NewPrinterWindow.glade.h:87 -+#: ../glade/NewPrinterWindow.glade.h:86 - msgid "SCSI" - msgstr "SCSI" - --#: ../glade/NewPrinterWindow.glade.h:88 -+#: ../glade/NewPrinterWindow.glade.h:87 - msgid "SMB" - msgstr "SMB" - --#: ../glade/NewPrinterWindow.glade.h:89 -+#: ../glade/NewPrinterWindow.glade.h:88 - msgid "Search for a printer driver to download" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:90 -+#: ../glade/NewPrinterWindow.glade.h:89 - #, fuzzy - msgid "Searching..." - msgstr "શોધી રહ્યા છીએ" - --#: ../glade/NewPrinterWindow.glade.h:91 -+#: ../glade/NewPrinterWindow.glade.h:90 - msgid "Select A File" - msgstr "ફાઈલ પસંદ કરો" - --#: ../glade/NewPrinterWindow.glade.h:92 -+#: ../glade/NewPrinterWindow.glade.h:91 - #, fuzzy - msgid "Select printer from database" - msgstr "ડેટાબેઝમાંથી પ્રિન્ટર પસંદ કરો" - --#: ../glade/NewPrinterWindow.glade.h:93 -+#: ../glade/NewPrinterWindow.glade.h:92 - msgid "Serial" - msgstr "સીરીયલ" - --#: ../glade/NewPrinterWindow.glade.h:94 -+#: ../glade/NewPrinterWindow.glade.h:93 - #, fuzzy - msgid "Set authentication details now" - msgstr "સત્તાધિકરણ જરૂરી" - --#: ../glade/NewPrinterWindow.glade.h:95 -+#: ../glade/NewPrinterWindow.glade.h:94 - msgid "Short name for this printer such as \"laserjet\"" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:96 -+#: ../glade/NewPrinterWindow.glade.h:95 - msgid "Supplier:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:97 -+#: ../glade/NewPrinterWindow.glade.h:96 - msgid "Support:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:98 -+#: ../glade/NewPrinterWindow.glade.h:97 - #, fuzzy - msgid "Text:" - msgstr "પુનઃસુયોજન" - --#: ../glade/NewPrinterWindow.glade.h:99 -+#: ../glade/NewPrinterWindow.glade.h:98 - msgid "" - "The foomatic printer database contains various manufacturer provided " - "PostScript Printer Description (PPD) files and also can generate PPD files " -@@ -2091,20 +2087,20 @@ msgstr "" - "પણ બનાવી શકે છે. પરંતુ સામાન્ય રીતે ઉત્પાદકે PPD ફાઈલો પૂરી પાડેલ છે પ્રિન્ટરના વિશિષ્ટ " - "લક્ષણોનો વધુ સારો વપરાશ પૂરો પાડવા માટે." - --#: ../glade/NewPrinterWindow.glade.h:100 -+#: ../glade/NewPrinterWindow.glade.h:99 - msgid "" - "These drivers do not come from your operating system supplier and will not " - "be covered by their commercial support. See the support and license terms " - "of the driver's supplier." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:101 -+#: ../glade/NewPrinterWindow.glade.h:100 - msgid "" - "This driver supports additional hardware that may be installed in the " - "printer." - msgstr "આ ડ્રાઈવર વધારાના હાર્ડવેરને આધાર આપે છે કે જે પ્રિન્ટરમાં છાપી શકાશે." - --#: ../glade/NewPrinterWindow.glade.h:102 -+#: ../glade/NewPrinterWindow.glade.h:101 - msgid "" - "This is done by assuming that options with the same name do have the same " - "meaning. Settings of options that are not present in the new PPD will be " -@@ -2114,7 +2110,7 @@ msgstr "" - "જેઓ નવા PPD માં નથી તેઓ નષ્ટ થઈ જશે અને જે વિકલ્પો માત્ર નવા PPD માં હાજર હશે તે જ મૂળભૂત " - "તરીકે સુયોજિત થશે." - --#: ../glade/NewPrinterWindow.glade.h:103 -+#: ../glade/NewPrinterWindow.glade.h:102 - msgid "" - "This way all current option settings will be lost. The default settings of " - "the new PPD will be used. " -@@ -2122,44 +2118,44 @@ msgstr "" - "આ રીતે બધા વર્તમાન વિકલ્પ સુયોજનો નષ્ટ થઈ જશે. નવા PPD ના મૂળભૂત સુયોજનો વાપરવામાં " - "આવશે. " - --#: ../glade/NewPrinterWindow.glade.h:104 -+#: ../glade/NewPrinterWindow.glade.h:103 - msgid "Try to copy the option settings over from the old PPD. " - msgstr "જૂના PPD માંથી વિકલ્પ સુયોજનોની નકલ કરવાનો પ્રયત્ન કરો. " - --#: ../glade/NewPrinterWindow.glade.h:105 -+#: ../glade/NewPrinterWindow.glade.h:104 - msgid "URI:" - msgstr "URI:" - --#: ../glade/NewPrinterWindow.glade.h:107 -+#: ../glade/NewPrinterWindow.glade.h:106 - msgid "Use the new PPD (Postscript Printer Description) as is." - msgstr "નવા PPD (Postscript Printer Description) ને જેમ છે તેમ વાપરો." - --#: ../glade/NewPrinterWindow.glade.h:109 -+#: ../glade/NewPrinterWindow.glade.h:108 - msgid "" - "With this choice no driver download will be performed. In the next steps a " - "locally installed driver will be selected." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:110 -+#: ../glade/NewPrinterWindow.glade.h:109 - #, fuzzy - msgid "Yes, I accept this license" - msgstr "ક્રિયાઓ સ્વીકારી રહ્યું છે" - --#: ../glade/NewPrinterWindow.glade.h:111 -+#: ../glade/NewPrinterWindow.glade.h:110 - #, fuzzy - msgid "_Search" - msgstr "શોધી રહ્યા છીએ" - --#: ../glade/NewPrinterWindow.glade.h:112 -+#: ../glade/NewPrinterWindow.glade.h:111 - msgid "_Verify..." - msgstr "ખાતરી કરો (_V)..." - --#: ../glade/NewPrinterWindow.glade.h:113 -+#: ../glade/NewPrinterWindow.glade.h:112 - #: ../glade/PrinterPropertiesDialog.glade.h:128 - msgid "move left" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:114 -+#: ../glade/NewPrinterWindow.glade.h:113 - #: ../glade/PrinterPropertiesDialog.glade.h:129 - msgid "move right" - msgstr "" -@@ -3097,7 +3093,7 @@ msgstr "" - msgid "Remember to load paper of type '%s' into the printer first." - msgstr "" - --#: ../troubleshoot/PrintTestPage.py:399 -+#: ../troubleshoot/PrintTestPage.py:416 - msgid "Error submitting test page" - msgstr "" - -@@ -3290,6 +3286,10 @@ msgid "Select default printer" - msgstr "મૂળભૂત પ્રિન્ટર પસંદ કરો" - - #, fuzzy -+#~ msgid "HP Printer (HPLIP) via network" -+#~ msgstr "પ્રિન્ટર નામ" -+ -+#, fuzzy - #~ msgid "Not Found" - #~ msgstr "મળ્યું નહિં" - -diff -up system-config-printer-1.1.5/po/he.po.git-1.1.x system-config-printer-1.1.5/po/he.po ---- system-config-printer-1.1.5/po/he.po.git-1.1.x 2009-03-03 22:21:46.000000000 +0000 -+++ system-config-printer-1.1.5/po/he.po 2009-03-10 17:43:31.000000000 +0000 -@@ -8,7 +8,7 @@ msgid "" - msgstr "" - "Project-Id-Version: system-config-printer.1.0.x\n" - "Report-Msgid-Bugs-To: https://bugzilla.redhat.com/bugzilla\n" --"POT-Creation-Date: 2009-03-02 23:22+0000\n" -+"POT-Creation-Date: 2009-03-10 16:51+0000\n" - "PO-Revision-Date: 2008-09-18 17:52GMT\n" - "Last-Translator: Oron Peled \n" - "Language-Team: Hebrew\n" -@@ -73,14 +73,14 @@ msgstr "הכנס כתובת IP" - # - # File: ../authconn.py, line: 30 - # File: ../system-config-printer.glade.h, line: 249 --#: ../authconn.py:35 ../glade/NewPrinterWindow.glade.h:108 -+#: ../authconn.py:35 ../glade/NewPrinterWindow.glade.h:107 - msgid "Username:" - msgstr "משתמש:" - - # - # File: ../authconn.py, line: 31 - # File: ../system-config-printer.glade.h, line: 184 --#: ../authconn.py:36 ../glade/NewPrinterWindow.glade.h:77 -+#: ../authconn.py:36 ../glade/NewPrinterWindow.glade.h:76 - msgid "Password:" - msgstr "ססמה:‏" - -@@ -92,7 +92,7 @@ msgstr "שם מתחם (Domain):" - - # - # File: ../authconn.py, line: 34 --#: ../authconn.py:46 -+#: ../authconn.py:46 ../authconn.py:409 - msgid "Authentication" - msgstr "אימות זהות" - -@@ -100,30 +100,46 @@ msgstr "אימות זהות" - msgid "Remember password" - msgstr "" - --#: ../authconn.py:211 ../authconn.py:232 -+#: ../authconn.py:208 -+#, python-format -+msgid "Unauthorized request (%s)" -+msgstr "" -+ -+#: ../authconn.py:209 -+msgid "You are not authorized to carry out therequested action." -+msgstr "" -+ -+#: ../authconn.py:212 ../authconn.py:233 - msgid "Operation canceled" - msgstr "" - - # - # File: ../errordialogs.py, line: 68 - # File: ../errordialogs.py, line: 82 --#: ../authconn.py:253 -+#: ../authconn.py:250 - #, fuzzy, python-format - msgid "CUPS server error (%s)" - msgstr "שגיאת שרת הדפסה" - - # -+# File: ../errordialogs.py, line: 68 -+# File: ../errordialogs.py, line: 82 -+#: ../authconn.py:252 ../errordialogs.py:56 ../errordialogs.py:70 -+msgid "CUPS server error" -+msgstr "שגיאת שרת הדפסה" -+ -+# - # File: ../errordialogs.py, line: 69 - # File: ../troubleshoot/PrintTestPage.py, line: 322 --#: ../authconn.py:255 ../errordialogs.py:57 --#: ../troubleshoot/PrintTestPage.py:400 -+#: ../authconn.py:261 ../errordialogs.py:57 -+#: ../troubleshoot/PrintTestPage.py:417 - #, python-format - msgid "There was an error during the CUPS operation: '%s'." - msgstr "התרחשה שגיאה בזמן פעילות שרת הדפסות: '%s'." - - # - # File: ../jobviewer.py, line: 226 --#: ../authconn.py:258 -+#: ../authconn.py:264 - #, fuzzy - msgid "Retry" - msgstr "המשימות שלי" -@@ -131,32 +147,25 @@ msgstr "המשימות שלי" - # - # File: ../errordialogs.py, line: 65 - # File: ../errordialogs.py, line: 77 --#: ../authconn.py:379 ../authconn.py:381 ../errordialogs.py:65 ../pysmb.py:75 -+#: ../authconn.py:385 ../authconn.py:387 ../errordialogs.py:65 ../pysmb.py:75 - #: ../pysmb.py:77 - msgid "Not authorized" - msgstr "לא מורשה" - - # - # File: ../errordialogs.py, line: 66 --#: ../authconn.py:382 ../pysmb.py:78 -+#: ../authconn.py:388 ../pysmb.py:78 - msgid "The password may be incorrect." - msgstr "יתכן והססמה שגויה." - - # - # File: ../authconn.py, line: 34 --#: ../authconn.py:400 -+#: ../authconn.py:407 - #, fuzzy, python-format - msgid "Authentication (%s)" - msgstr "אימות זהות" - - # --# File: ../errordialogs.py, line: 68 --# File: ../errordialogs.py, line: 82 --#: ../errordialogs.py:56 ../errordialogs.py:70 --msgid "CUPS server error" --msgstr "שגיאת שרת הדפסה" -- --# - # File: ../errordialogs.py, line: 78 - #: ../errordialogs.py:66 - msgid "" -@@ -197,7 +206,7 @@ msgstr "שגיאת שרת" - # - # File: ../errordialogs.py, line: 94 - # File: ../system-config-printer.py, line: 788 --#: ../errordialogs.py:82 ../system-config-printer.py:1219 -+#: ../errordialogs.py:82 ../system-config-printer.py:1223 - msgid "Not connected" - msgstr "לא מחובר" - -@@ -225,7 +234,7 @@ msgstr "" - - # - # File: ../system-config-printer.glade.h, line: 263 --#: ../GroupsPane.py:98 ../system-config-printer.py:393 -+#: ../GroupsPane.py:98 ../system-config-printer.py:397 - msgid "_Rename" - msgstr "_שינוי שם" - -@@ -324,7 +333,7 @@ msgstr "מסמך" - # File: ../system-config-printer.py, line: 3016 - # File: ../troubleshoot/PrintTestPage.py, line: 79 - #: ../jobviewer.py:212 ../my-default-printer.py:153 --#: ../system-config-printer.py:366 ../system-config-printer.py:1367 -+#: ../system-config-printer.py:370 ../system-config-printer.py:1371 - #: ../troubleshoot/PrintTestPage.py:84 - msgid "Printer" - msgstr "מדפסת" -@@ -394,8 +403,8 @@ msgstr "מצב הדפסת מסמך (%s)" - # File: ../troubleshoot/DeviceListed.py, line: 84 - #: ../jobviewer.py:386 ../jobviewer.py:451 ../jobviewer.py:452 - #: ../jobviewer.py:492 ../jobviewer.py:600 ../jobviewer.py:727 --#: ../jobviewer.py:1196 ../jobviewer.py:1222 ../system-config-printer.py:2546 --#: ../glade/NewPrinterWindow.glade.h:106 -+#: ../jobviewer.py:1196 ../jobviewer.py:1222 ../system-config-printer.py:2556 -+#: ../glade/NewPrinterWindow.glade.h:105 - #: ../troubleshoot/ChooseNetworkPrinter.py:101 - #: ../troubleshoot/ChooseNetworkPrinter.py:102 - #: ../troubleshoot/ChooseNetworkPrinter.py:105 -@@ -520,7 +529,7 @@ msgstr "ממתין" - # File: ../jobviewer.py, line: 501 - # File: ../system-config-printer.py, line: 166 - # File: ../troubleshoot/PrintTestPage.py, line: 41 --#: ../jobviewer.py:591 ../system-config-printer.py:186 -+#: ../jobviewer.py:591 ../system-config-printer.py:190 - #: ../troubleshoot/PrintTestPage.py:43 - msgid "Processing" - msgstr "בתהליך" -@@ -529,7 +538,7 @@ msgstr "בתהליך" - # File: ../jobviewer.py, line: 502 - # File: ../system-config-printer.py, line: 168 - # File: ../troubleshoot/PrintTestPage.py, line: 42 --#: ../jobviewer.py:592 ../system-config-printer.py:188 -+#: ../jobviewer.py:592 ../system-config-printer.py:192 - #: ../troubleshoot/PrintTestPage.py:44 - msgid "Stopped" - msgstr "מופסק" -@@ -695,8 +704,8 @@ msgstr "_קבע כברירת מחדל" - # File: ../system-config-printer.py, line: 2737 - # File: ../troubleshoot/ChooseNetworkPrinter.py, line: 36 - # File: ../troubleshoot/ChoosePrinter.py, line: 37 --#: ../my-default-printer.py:158 ../system-config-printer.py:423 --#: ../system-config-printer.py:3660 ../troubleshoot/ChooseNetworkPrinter.py:37 -+#: ../my-default-printer.py:158 ../system-config-printer.py:427 -+#: ../system-config-printer.py:3675 ../troubleshoot/ChooseNetworkPrinter.py:37 - #: ../troubleshoot/ChoosePrinter.py:38 - msgid "Location" - msgstr "מיקום" -@@ -746,7 +755,7 @@ msgstr "אימות" - - # - # File: ../system-config-printer.py, line: 4852 --#: ../ppdippstr.py:50 ../system-config-printer.py:6259 -+#: ../ppdippstr.py:50 ../system-config-printer.py:6207 - msgid "None" - msgstr "ללא" - -@@ -983,69 +992,69 @@ msgstr "" - - # - # File: ../system-config-printer.py, line: 100 --#: ../system-config-printer.py:127 -+#: ../system-config-printer.py:131 - msgid "To do this, select System->Administration->Firewall from the main menu." - msgstr "כדי לעשות את זה, בחר במערכת->ניהול->חומת אש מהתפריט הראשי." - - # - # File: ../system-config-printer.py, line: 165 --#: ../system-config-printer.py:185 -+#: ../system-config-printer.py:189 - msgid "Idle" - msgstr "בהמתנה" - - # - # File: ../system-config-printer.py, line: 167 --#: ../system-config-printer.py:187 -+#: ../system-config-printer.py:191 - msgid "Busy" - msgstr "תפוס" - - # - # File: ../system-config-printer.py, line: 308 - # File: ../system-config-printer.py, line: 887 --#: ../system-config-printer.py:372 ../system-config-printer.py:1373 -+#: ../system-config-printer.py:376 ../system-config-printer.py:1377 - msgid "Class" - msgstr "מחלקה" - - # - # File: ../system-config-printer.glade.h, line: 222 --#: ../system-config-printer.py:399 -+#: ../system-config-printer.py:403 - msgid "Set As De_fault" - msgstr "קבע כברי_רת מחדל" - - # - # File: ../system-config-printer.glade.h, line: 256 --#: ../system-config-printer.py:403 -+#: ../system-config-printer.py:407 - #, fuzzy - msgid "_Create class" - msgstr "י_צירת מחלקה" - - # - # File: ../system-config-printer.glade.h, line: 250 --#: ../system-config-printer.py:405 -+#: ../system-config-printer.py:409 - msgid "View Print _Queue" - msgstr "ה_צגת תור הדפסה" - --#: ../system-config-printer.py:407 -+#: ../system-config-printer.py:411 - msgid "_Add to Group" - msgstr "" - --#: ../system-config-printer.py:409 -+#: ../system-config-printer.py:413 - msgid "Save Results as _Group" - msgstr "" - --#: ../system-config-printer.py:411 -+#: ../system-config-printer.py:415 - msgid "Save Filter as _Search Group" - msgstr "" - - # - # File: ../system-config-printer.glade.h, line: 105 --#: ../system-config-printer.py:415 -+#: ../system-config-printer.py:419 - msgid "E_nabled" - msgstr "מופ_על" - - # - # File: ../system-config-printer.glade.h, line: 267 --#: ../system-config-printer.py:417 -+#: ../system-config-printer.py:421 - msgid "_Shared" - msgstr "_משותף" - -@@ -1053,101 +1062,101 @@ msgstr "_משותף" - # File: ../troubleshoot/ChooseNetworkPrinter.py, line: 34 - # File: ../troubleshoot/ChoosePrinter.py, line: 35 - # File: ../troubleshoot/DeviceListed.py, line: 35 --#: ../system-config-printer.py:421 ../troubleshoot/ChooseNetworkPrinter.py:35 -+#: ../system-config-printer.py:425 ../troubleshoot/ChooseNetworkPrinter.py:35 - #: ../troubleshoot/ChoosePrinter.py:36 ../troubleshoot/DeviceListed.py:36 - msgid "Name" - msgstr "שם" - - # - # File: ../system-config-printer.glade.h, line: 98 --#: ../system-config-printer.py:422 -+#: ../system-config-printer.py:426 - #, fuzzy - msgid "Description" - msgstr "תיאור:‏" - --#: ../system-config-printer.py:424 -+#: ../system-config-printer.py:428 - msgid "Manufacturer / Model" - msgstr "" - - # - # File: ../jobviewer.py, line: 265 - #. Printer state reasons list --#: ../system-config-printer.py:499 -+#: ../system-config-printer.py:503 - msgid "Message" - msgstr "הודעה" - - # - # File: ../system-config-printer.py, line: 338 --#: ../system-config-printer.py:534 -+#: ../system-config-printer.py:538 - msgid "Problems?" - msgstr "בעיות?" - - # - # File: ../system-config-printer.py, line: 380 - # File: ../system-config-printer.py, line: 382 --#: ../system-config-printer.py:637 ../system-config-printer.py:639 -+#: ../system-config-printer.py:641 ../system-config-printer.py:643 - msgid "Members of this class" - msgstr "חברים במחלקה הזו" - - # - # File: ../system-config-printer.py, line: 381 - # File: ../system-config-printer.py, line: 383 --#: ../system-config-printer.py:638 ../system-config-printer.py:640 -+#: ../system-config-printer.py:642 ../system-config-printer.py:644 - msgid "Others" - msgstr "אחרים" - - # - # File: ../system-config-printer.py, line: 384 --#: ../system-config-printer.py:641 -+#: ../system-config-printer.py:645 - msgid "Devices" - msgstr "התקנים" - - # - # File: ../system-config-printer.py, line: 385 --#: ../system-config-printer.py:642 -+#: ../system-config-printer.py:646 - msgid "Connections" - msgstr "חיבורים" - - # - # File: ../system-config-printer.py, line: 386 --#: ../system-config-printer.py:643 -+#: ../system-config-printer.py:647 - msgid "Makes" - msgstr "יצרנים" - - # - # File: ../system-config-printer.py, line: 387 --#: ../system-config-printer.py:644 -+#: ../system-config-printer.py:648 - msgid "Models" - msgstr "דגמים" - - # - # File: ../system-config-printer.py, line: 388 --#: ../system-config-printer.py:645 -+#: ../system-config-printer.py:649 - msgid "Drivers" - msgstr "מנהלי התקנים" - - # - # File: ../system-config-printer.py, line: 389 - # File: ../system-config-printer.glade.h, line: 103 --#: ../system-config-printer.py:646 ../glade/NewPrinterWindow.glade.h:55 -+#: ../system-config-printer.py:650 ../glade/NewPrinterWindow.glade.h:54 - msgid "Downloadable Drivers" - msgstr "מנהלי התקנים הניתנים להורדה" - - # - # File: ../system-config-printer.py, line: 390 --#: ../system-config-printer.py:647 -+#: ../system-config-printer.py:651 - msgid "Users" - msgstr "משתמשים" - - # - # File: ../system-config-printer.py, line: 431 --#: ../system-config-printer.py:682 -+#: ../system-config-printer.py:686 - msgid "Automatic rotation" - msgstr "הטיה אוטומטית" - - # - # File: ../system-config-printer.py, line: 645 --#: ../system-config-printer.py:989 -+#: ../system-config-printer.py:993 - #, fuzzy, python-format - msgid "Printer Properties - '%s' on %s" - msgstr "מאפייני מדפסת - `%s' על %s" -@@ -1155,7 +1164,7 @@ msgstr "מאפייני מדפסת - `%s' - # - # File: ../system-config-printer.py, line: 1411 - #. The Conflict button was pressed. --#: ../system-config-printer.py:996 -+#: ../system-config-printer.py:1000 - msgid "" - "There are conflicting options.\n" - "Changes can only be applied after\n" -@@ -1167,44 +1176,44 @@ msgstr "" - - # - # File: ../system-config-printer.py, line: 783 --#: ../system-config-printer.py:1214 -+#: ../system-config-printer.py:1218 - #, python-format - msgid "Printer configuration - %s" - msgstr "הגדרות המדפסת - %s" - - # - # File: ../system-config-printer.py, line: 786 --#: ../system-config-printer.py:1217 -+#: ../system-config-printer.py:1221 - #, python-format - msgid "Connected to %s" - msgstr "מחובר אל %s" - - #. Update our copy of the printer's settings. --#: ../system-config-printer.py:1257 ../system-config-printer.py:2042 -+#: ../system-config-printer.py:1261 ../system-config-printer.py:2046 - msgid "obtaining queue details" - msgstr "" - --#: ../system-config-printer.py:1295 -+#: ../system-config-printer.py:1299 - msgid "Remove from Group" - msgstr "" - - # - # File: ../system-config-printer.py, line: 875 --#: ../system-config-printer.py:1361 -+#: ../system-config-printer.py:1365 - msgid "Network printer (discovered)" - msgstr "מדפסות רשת (שהתגלו)" - - # - # File: ../system-config-printer.py, line: 878 --#: ../system-config-printer.py:1364 -+#: ../system-config-printer.py:1368 - msgid "Network class (discovered)" - msgstr "מחלקת רשת (שהתגלו)" - - # - # File: ../system-config-printer.py, line: 884 - # File: ../system-config-printer.py, line: 3017 --#: ../system-config-printer.py:1370 ../system-config-printer.py:5524 --#: ../system-config-printer.py:5594 ../system-config-printer.py:5596 -+#: ../system-config-printer.py:1374 ../system-config-printer.py:5519 -+#: ../system-config-printer.py:5589 ../system-config-printer.py:5591 - msgid "Fax" - msgstr "פקס" - -@@ -1212,59 +1221,59 @@ msgstr "פקס" - # File: ../system-config-printer.py, line: 890 - # File: ../system-config-printer.py, line: 896 - # File: ../troubleshoot/LocalOrRemote.py, line: 30 --#: ../system-config-printer.py:1376 ../system-config-printer.py:1382 -+#: ../system-config-printer.py:1380 ../system-config-printer.py:1386 - #: ../troubleshoot/LocalOrRemote.py:30 - msgid "Network printer" - msgstr "מדפסת רשת" - - # - # File: ../system-config-printer.py, line: 893 --#: ../system-config-printer.py:1379 -+#: ../system-config-printer.py:1383 - msgid "Network print share" - msgstr "מדפסת רשת משותפת" - --#: ../system-config-printer.py:1508 ../glade/ConnectingDialog.glade.h:2 -+#: ../system-config-printer.py:1512 ../glade/ConnectingDialog.glade.h:2 - #, no-c-format, python-format - msgid "Opening connection to %s" - msgstr "" - - # - # File: ../system-config-printer.py, line: 1387 --#: ../system-config-printer.py:1887 -+#: ../system-config-printer.py:1891 - msgid "Installable Options" - msgstr "אפשרויות הניתנות להתקנה" - - # - # File: ../system-config-printer.py, line: 1388 - # File: ../system-config-printer.glade.h, line: 198 --#: ../system-config-printer.py:1888 -+#: ../system-config-printer.py:1892 - #: ../glade/PrinterPropertiesDialog.glade.h:109 - msgid "Printer Options" - msgstr "אפשרויות מדפסת" - --#: ../system-config-printer.py:1924 -+#: ../system-config-printer.py:1928 - #, python-format - msgid "modifying class %s" - msgstr "" - - # - # File: ../system-config-printer.py, line: 5059 --#: ../system-config-printer.py:1926 ../system-config-printer.py:3019 --#: ../system-config-printer.py:3044 ../system-config-printer.py:6547 --#: ../system-config-printer.py:6559 ../system-config-printer.py:6581 -+#: ../system-config-printer.py:1930 ../system-config-printer.py:3037 -+#: ../system-config-printer.py:3062 ../system-config-printer.py:6495 -+#: ../system-config-printer.py:6507 ../system-config-printer.py:6529 - #, fuzzy, python-format - msgid "modifying printer %s" - msgstr "מוסיף מדפסת" - - # - # File: ../system-config-printer.py, line: 1440 --#: ../system-config-printer.py:1941 -+#: ../system-config-printer.py:1945 - msgid "This will delete this class!" - msgstr "המחלקה תימחק!" - - # - # File: ../system-config-printer.py, line: 1441 --#: ../system-config-printer.py:1942 -+#: ../system-config-printer.py:1946 - msgid "Proceed anyway?" - msgstr "להמשיך בכל זאת?" - -@@ -1274,44 +1283,44 @@ msgstr "להמשיך בכל זאת?" - #. but we have never fetched the server settings to see whether - #. the server is publishing shared printers. Fetch the settings - #. now so that we can update the "not published" label if necessary. --#: ../system-config-printer.py:2030 ../system-config-printer.py:3203 -+#: ../system-config-printer.py:2034 ../system-config-printer.py:3221 - #, fuzzy - msgid "fetching server settings" - msgstr "התאמת הגדרות שרת" - - # - # File: ../system-config-printer.py, line: 1582 --#: ../system-config-printer.py:2100 -+#: ../system-config-printer.py:2104 - msgid "Set Default Printer" - msgstr "קביעת מדפסת ברירת מחדל" - - # - # File: ../system-config-printer.py, line: 1584 --#: ../system-config-printer.py:2102 -+#: ../system-config-printer.py:2106 - msgid "Do you want to set this as the system-wide default printer?" - msgstr "האם לקבוע את המדפסת כברירת מחדל לכל המערכת?" - - # - # File: ../system-config-printer.py, line: 1586 --#: ../system-config-printer.py:2104 -+#: ../system-config-printer.py:2108 - msgid "Set as the _system-wide default printer" - msgstr "קביעת המדפסת כברירת מחדל לכל _המערכת" - - # - # File: ../system-config-printer.py, line: 1588 --#: ../system-config-printer.py:2106 -+#: ../system-config-printer.py:2110 - msgid "_Clear my personal default setting" - msgstr "_ניקוי ברירות המחדל האישיות שלי" - - # - # File: ../system-config-printer.py, line: 1589 --#: ../system-config-printer.py:2107 -+#: ../system-config-printer.py:2111 - msgid "Set as my _personal default printer" - msgstr "קביעת המדפסת כברירת מחדל אישית שלי" - - # - # File: ../my-default-printer.desktop.in.h, line: 2 --#: ../system-config-printer.py:2112 -+#: ../system-config-printer.py:2116 - #, fuzzy - msgid "setting default printer" - msgstr "בחירת מדפסת ברירת המחדל" -@@ -1319,7 +1328,7 @@ msgstr "בחירת מדפסת ברירת - # - # File: ../system-config-printer.glade.h, line: 197 - # File: ../troubleshoot/PrintTestPage.py, line: 67 --#: ../system-config-printer.py:2169 -+#: ../system-config-printer.py:2173 - #, fuzzy - msgid "printing test page" - msgstr "הדפסת עמוד ניסיון" -@@ -1328,15 +1337,15 @@ msgstr "הדפסת עמוד ניסיון - # File: ../system-config-printer.py, line: 1648 - # File: ../system-config-printer.py, line: 1676 - # File: ../system-config-printer.py, line: 4260 --#: ../system-config-printer.py:2182 ../system-config-printer.py:2217 --#: ../system-config-printer.py:5418 -+#: ../system-config-printer.py:2186 ../system-config-printer.py:2221 -+#: ../system-config-printer.py:5413 - msgid "Not possible" - msgstr "בלתי אפשרי" - - # - # File: ../system-config-printer.py, line: 1649 - # File: ../system-config-printer.py, line: 1677 --#: ../system-config-printer.py:2183 ../system-config-printer.py:2218 -+#: ../system-config-printer.py:2187 ../system-config-printer.py:2222 - msgid "" - "The remote server did not accept the print job, most likely because the " - "printer is not shared." -@@ -1347,24 +1356,24 @@ msgstr "" - # - # File: ../system-config-printer.py, line: 1641 - # File: ../system-config-printer.py, line: 1669 --#: ../system-config-printer.py:2195 ../system-config-printer.py:2210 -+#: ../system-config-printer.py:2199 ../system-config-printer.py:2214 - msgid "Submitted" - msgstr "נשלח" - - # - # File: ../system-config-printer.py, line: 1642 --#: ../system-config-printer.py:2196 -+#: ../system-config-printer.py:2200 - #, python-format - msgid "Test page submitted as job %d" - msgstr "עמוד ניסיון נשלח כמשימה %d" - --#: ../system-config-printer.py:2203 -+#: ../system-config-printer.py:2207 - msgid "sending maintenance command" - msgstr "" - - # - # File: ../system-config-printer.py, line: 1670 --#: ../system-config-printer.py:2211 -+#: ../system-config-printer.py:2215 - #, python-format - msgid "Maintenance command submitted as job %d" - msgstr "פקודת תחזוקה נשלחה כמשימה %d" -@@ -1375,42 +1384,42 @@ msgstr "פקודת תחזוקה נשלח - #. The underlying cupsGetPPD2() function returned NULL without - #. setting an IPP error, so it'll be something like a failed - #. connection. --#: ../system-config-printer.py:2285 ../system-config-printer.py:2381 -+#: ../system-config-printer.py:2289 ../system-config-printer.py:2385 - msgid "Error" - msgstr "שגיאה" - - # - # File: ../system-config-printer.py, line: 1728 --#: ../system-config-printer.py:2286 -+#: ../system-config-printer.py:2290 - msgid "There was a problem connecting to the CUPS server." - msgstr "הייתה בעיה בהתחברות לשרת המדפסות." - - # - # File: ../system-config-printer.py, line: 1835 --#: ../system-config-printer.py:2382 -+#: ../system-config-printer.py:2386 - #, python-format - msgid "Option '%s' has value '%s' and cannot be edited." - msgstr "לאפשרות '%s' ישנו הערך '%s' ולכן לא ניתן לערוך אותה." - --#: ../system-config-printer.py:2466 -+#: ../system-config-printer.py:2476 - msgid "Marker levels are not reported for this printer." - msgstr "" - - # - # File: ../system-config-printer.py, line: 2100 --#: ../system-config-printer.py:2763 -+#: ../system-config-printer.py:2773 - msgid "Cannot Rename" - msgstr "לא ניתן לשנות שם" - - # - # File: ../system-config-printer.py, line: 2101 --#: ../system-config-printer.py:2764 -+#: ../system-config-printer.py:2774 - msgid "There are queued jobs." - msgstr "יש משימות בתור." - - # - # File: ../system-config-printer.py, line: 5059 --#: ../system-config-printer.py:2822 -+#: ../system-config-printer.py:2840 - #, fuzzy - msgid "renaming printer" - msgstr "מוסיף מדפסת" -@@ -1419,47 +1428,47 @@ msgstr "מוסיף מדפסת" - # File: ../system-config-printer.py, line: 5059 - #. for classes make sure all members - #. will get added --#: ../system-config-printer.py:2907 -+#: ../system-config-printer.py:2925 - #, fuzzy - msgid "copying printer" - msgstr "מוסיף מדפסת" - - # - # File: ../system-config-printer.py, line: 2283 --#: ../system-config-printer.py:2971 -+#: ../system-config-printer.py:2989 - #, fuzzy, python-format - msgid "Really delete class '%s'?" - msgstr "למחוק את המחלקה `%s'?" - - # - # File: ../system-config-printer.py, line: 2285 --#: ../system-config-printer.py:2973 -+#: ../system-config-printer.py:2991 - #, fuzzy, python-format - msgid "Really delete printer '%s'?" - msgstr "למחוק את המדפסת `%s'?" - - # - # File: ../system-config-printer.py, line: 2287 --#: ../system-config-printer.py:2975 -+#: ../system-config-printer.py:2993 - msgid "Really delete selected destinations?" - msgstr "למחוק את היעדים הנבחרים?" - - # - # File: ../system-config-printer.py, line: 5059 --#: ../system-config-printer.py:2996 -+#: ../system-config-printer.py:3014 - #, fuzzy, python-format - msgid "deleting printer %s" - msgstr "מוסיף מדפסת" - - # - # File: ../system-config-printer.py, line: 2353 --#: ../system-config-printer.py:3070 -+#: ../system-config-printer.py:3088 - msgid "Publish Shared Printers" - msgstr "" - - # - # File: ../system-config-printer.py, line: 2354 --#: ../system-config-printer.py:3071 -+#: ../system-config-printer.py:3089 - msgid "" - "Shared printers are not available to other people unless the 'Publish shared " - "printers' option is enabled in the server settings." -@@ -1467,7 +1476,7 @@ msgstr "" - - # - # File: ../system-config-printer.glade.h, line: 46 --#: ../system-config-printer.py:3264 -+#: ../system-config-printer.py:3282 - #, fuzzy - msgid "modifying server settings" - msgstr "התאמת הגדרות שרת" -@@ -1480,19 +1489,19 @@ msgstr "התאמת הגדרות שרת" - #. be unblocked. Unfortunately, this is not yet possible - #. (bug #440469). However, we can display a dialog to suggest - #. that now might be a good time to review the firewall settings. --#: ../system-config-printer.py:3289 -+#: ../system-config-printer.py:3307 - msgid "Review Firewall" - msgstr "" - - # - # File: ../system-config-printer.py, line: 2468 --#: ../system-config-printer.py:3290 -+#: ../system-config-printer.py:3308 - msgid "" - "You may need to adjust the firewall to allow network printing to this " - "computer." - msgstr "" - --#: ../system-config-printer.py:3623 -+#: ../system-config-printer.py:3638 - msgid "Browsing not available (pysmbc not installed)" - msgstr "" - -@@ -1500,27 +1509,27 @@ msgstr "" - # File: ../system-config-printer.py, line: 2696 - # File: ../system-config-printer.py, line: 2706 - #. SMB list columns --#: ../system-config-printer.py:3629 -+#: ../system-config-printer.py:3644 - msgid "Share" - msgstr "שיתוף" - - # - # File: ../system-config-printer.py, line: 2702 - # File: ../system-config-printer.py, line: 2712 --#: ../system-config-printer.py:3635 -+#: ../system-config-printer.py:3650 - msgid "Comment" - msgstr "הערה" - - # - # File: ../system-config-printer.py, line: 2731 - #. IPP list columns --#: ../system-config-printer.py:3654 -+#: ../system-config-printer.py:3669 - msgid "Queue" - msgstr "תור" - - # - # File: ../system-config-printer.py, line: 2745 --#: ../system-config-printer.py:3668 -+#: ../system-config-printer.py:3683 - msgid "" - "PostScript Printer Description files (*.ppd, *.PPD, *.ppd.gz, *.PPD.gz, *." - "PPD.GZ)" -@@ -1529,7 +1538,7 @@ msgstr "" - - # - # File: ../system-config-printer.py, line: 2754 --#: ../system-config-printer.py:3677 -+#: ../system-config-printer.py:3692 - msgid "All files (*)" - msgstr "כל הקבצים (*)" - -@@ -1537,34 +1546,34 @@ msgstr "כל הקבצים (*)" - # File: ../system-config-printer.py, line: 2792 - # File: ../system-config-printer.py, line: 4575 - # File: ../system-config-printer.py, line: 4613 --#: ../system-config-printer.py:3713 ../system-config-printer.py:5970 --#: ../system-config-printer.py:6008 ../applet.py:124 -+#: ../system-config-printer.py:3728 ../system-config-printer.py:5918 -+#: ../system-config-printer.py:5956 ../applet.py:124 - msgid "Search" - msgstr "חיפוש" - - # - # File: ../system-config-printer.py, line: 2806 - # File: ../system-config-printer.glade.h, line: 145 --#: ../system-config-printer.py:3736 ../system-config-printer.py:3760 --#: ../glade/NewPrinterWindow.glade.h:74 -+#: ../system-config-printer.py:3751 ../system-config-printer.py:3775 -+#: ../glade/NewPrinterWindow.glade.h:73 - msgid "New Printer" - msgstr "מדפסת חדשה" - - # - # File: ../system-config-printer.py, line: 2817 --#: ../system-config-printer.py:3747 -+#: ../system-config-printer.py:3762 - msgid "New Class" - msgstr "מחלקה חדשה" - - # - # File: ../system-config-printer.py, line: 2822 --#: ../system-config-printer.py:3752 -+#: ../system-config-printer.py:3767 - msgid "Change Device URI" - msgstr "שינוי כתובת ה-URI של המכשיר" - - # - # File: ../system-config-printer.py, line: 2826 --#: ../system-config-printer.py:3758 -+#: ../system-config-printer.py:3773 - msgid "Change Driver" - msgstr "החלפת מנהל ההתקן" - -@@ -1573,16 +1582,16 @@ msgstr "החלפת מנהל ההתקן" - # File: ../system-config-printer.py, line: 3223 - # File: ../system-config-printer.py, line: 3454 - # File: ../system-config-printer.py, line: 4600 --#: ../system-config-printer.py:3927 ../system-config-printer.py:3993 --#: ../system-config-printer.py:4289 ../system-config-printer.py:4487 --#: ../system-config-printer.py:5772 ../system-config-printer.py:5995 -+#: ../system-config-printer.py:3942 ../system-config-printer.py:4008 -+#: ../system-config-printer.py:4304 ../system-config-printer.py:4502 -+#: ../system-config-printer.py:5762 ../system-config-printer.py:5943 - msgid "Searching" - msgstr "מחפש" - - # - # File: ../system-config-printer.py, line: 2926 - # File: ../system-config-printer.py, line: 3224 --#: ../system-config-printer.py:3928 -+#: ../system-config-printer.py:3943 - #, fuzzy - msgid "Searching for downloadable drivers" - msgstr "חיפוש אחר מנהלי התקנים" -@@ -1590,35 +1599,35 @@ msgstr "חיפוש אחר מנהלי ה - # - # File: ../system-config-printer.py, line: 2926 - # File: ../system-config-printer.py, line: 3224 --#: ../system-config-printer.py:3994 ../system-config-printer.py:4290 -+#: ../system-config-printer.py:4009 ../system-config-printer.py:4305 - msgid "Searching for drivers" - msgstr "חיפוש אחר מנהלי התקנים" - - # - # File: ../system-config-printer.py, line: 3455 --#: ../system-config-printer.py:4488 ../system-config-printer.py:5773 -+#: ../system-config-printer.py:4503 ../system-config-printer.py:5763 - msgid "Searching for printers" - msgstr "מחפש מדפסות" - - # - # File: ../system-config-printer.glade.h, line: 46 --#: ../system-config-printer.py:4497 -+#: ../system-config-printer.py:4512 - #, fuzzy - msgid "fetching device list" - msgstr "התאמת הגדרות שרת" - - #. Tell the user why he needs the plugin --#: ../system-config-printer.py:4579 -+#: ../system-config-printer.py:4594 - msgid "For this printer a proprietary driver plugin from HP is available.\n" - msgstr "" - --#: ../system-config-printer.py:4582 -+#: ../system-config-printer.py:4597 - msgid "" - "The installation of the plugin is required for your printer to work.\n" - "\n" - msgstr "" - --#: ../system-config-printer.py:4585 -+#: ../system-config-printer.py:4600 - msgid "" - "Installing the plugin is optional, it completes or enhances the " - "functionality\n" -@@ -1626,104 +1635,100 @@ msgid "" - "\n" - msgstr "" - --#: ../system-config-printer.py:4589 -+#: ../system-config-printer.py:4604 - msgid "The plugin provides the following features:\n" - msgstr "" - --#: ../system-config-printer.py:4592 -+#: ../system-config-printer.py:4607 - msgid " - Printing support\n" - msgstr "" - - # - # File: ../troubleshoot/Welcome.py, line: 35 --#: ../system-config-printer.py:4595 -+#: ../system-config-printer.py:4610 - #, fuzzy - msgid " - Faster printing\n" - msgstr "אבחון תקלות בהדפסה" - --#: ../system-config-printer.py:4598 -+#: ../system-config-printer.py:4613 - msgid " - Better printout quality\n" - msgstr "" - --#: ../system-config-printer.py:4601 -+#: ../system-config-printer.py:4616 - msgid " - Extra printing features\n" - msgstr "" - --#: ../system-config-printer.py:4604 -+#: ../system-config-printer.py:4619 - msgid " - Scanning support\n" - msgstr "" - --#: ../system-config-printer.py:4607 -+#: ../system-config-printer.py:4622 - msgid " - Faster scanning\n" - msgstr "" - --#: ../system-config-printer.py:4610 -+#: ../system-config-printer.py:4625 - msgid " - Better scanning image quality\n" - msgstr "" - --#: ../system-config-printer.py:4613 -+#: ../system-config-printer.py:4628 - msgid " - Faxing support\n" - msgstr "" - --#: ../system-config-printer.py:4616 -+#: ../system-config-printer.py:4631 - msgid " - Extra fax features\n" - msgstr "" - --#: ../system-config-printer.py:4619 -+#: ../system-config-printer.py:4634 - msgid " - Better Input/Output support\n" - msgstr "" - --#: ../system-config-printer.py:4622 -+#: ../system-config-printer.py:4637 - msgid " - Extra user interface features\n" - msgstr "" - --#: ../system-config-printer.py:4625 -+#: ../system-config-printer.py:4640 - msgid " - Other extra features\n" - msgstr "" - - # - # File: ../system-config-printer.glade.h, line: 122 --#: ../system-config-printer.py:4630 -+#: ../system-config-printer.py:4645 - #, fuzzy - msgid "Install plugin" - msgstr "אפשרויות מותקנות" - - # - # File: ../troubleshoot/ChoosePrinter.py, line: 29 --#: ../system-config-printer.py:4631 -+#: ../system-config-printer.py:4646 - #, fuzzy - msgid "Do not set up printer" - msgstr "יש לבחור מדפסת" - --#: ../system-config-printer.py:4632 -+#: ../system-config-printer.py:4647 - msgid "Set up without plugin" - msgstr "" - - # - # File: ../troubleshoot/PrintTestPage.py, line: 113 --#: ../system-config-printer.py:4634 ../troubleshoot/PrintTestPage.py:118 -+#: ../system-config-printer.py:4649 ../troubleshoot/PrintTestPage.py:118 - msgid "Yes" - msgstr "כן" - - # - # File: ../troubleshoot/PrintTestPage.py, line: 114 --#: ../system-config-printer.py:4635 ../troubleshoot/PrintTestPage.py:119 -+#: ../system-config-printer.py:4650 ../troubleshoot/PrintTestPage.py:119 - msgid "No" - msgstr "לא" - - # - # File: ../system-config-printer.py, line: 3607 --#: ../system-config-printer.py:4809 ../system-config-printer.py:4813 -+#: ../system-config-printer.py:4824 ../system-config-printer.py:4828 - msgid " (Current)" - msgstr " (נוכחי)" - --#: ../system-config-printer.py:4845 --msgid "HP Printer (HPLIP)" --msgstr "" -- - # - # File: ../system-config-printer.py, line: 3680 --#: ../system-config-printer.py:4886 -+#: ../system-config-printer.py:4881 - msgid "Other" - msgstr "אחר" - -@@ -1734,7 +1739,7 @@ msgstr "אחר" - #. device-info - #. PhysicalDevice obj - #. Separator? --#: ../system-config-printer.py:4902 -+#: ../system-config-printer.py:4897 - #, fuzzy - msgid "Network Printer" - msgstr "מדפסת רשת" -@@ -1743,7 +1748,7 @@ msgstr "מדפסת רשת" - # File: ../system-config-printer.py, line: 890 - # File: ../system-config-printer.py, line: 896 - # File: ../troubleshoot/LocalOrRemote.py, line: 30 --#: ../system-config-printer.py:4906 -+#: ../system-config-printer.py:4901 - #, fuzzy - msgid "Find Network Printer" - msgstr "מדפסת רשת" -@@ -1752,19 +1757,19 @@ msgstr "מדפסת רשת" - # File: ../system-config-printer.py, line: 3720 - # File: ../system-config-printer.py, line: 3737 - # File: ../system-config-printer.py, line: 4216 --#: ../system-config-printer.py:4979 ../system-config-printer.py:5376 -+#: ../system-config-printer.py:4974 ../system-config-printer.py:5371 - msgid "Scanning..." - msgstr "סורק..." - - # - # File: ../system-config-printer.py, line: 3792 --#: ../system-config-printer.py:5034 ../system-config-printer.py:5798 -+#: ../system-config-printer.py:5029 - msgid "No Print Shares" - msgstr "אין שיתופי מדפסת" - - # - # File: ../system-config-printer.py, line: 3793 --#: ../system-config-printer.py:5035 -+#: ../system-config-printer.py:5030 - msgid "" - "There were no print shares found. Please check that the Samba service is " - "marked as trusted in your firewall configuration." -@@ -1773,46 +1778,46 @@ msgstr "" - # - # File: ../system-config-printer.py, line: 4128 - # File: ../system-config-printer.py, line: 4198 --#: ../system-config-printer.py:5296 ../system-config-printer.py:5357 -+#: ../system-config-printer.py:5291 ../system-config-printer.py:5352 - msgid "Print Share Verified" - msgstr "שיתוף המדפסת מאומת" - - # - # File: ../system-config-printer.py, line: 4129 - # File: ../system-config-printer.py, line: 4199 --#: ../system-config-printer.py:5297 ../system-config-printer.py:5358 -+#: ../system-config-printer.py:5292 ../system-config-printer.py:5353 - msgid "This print share is accessible." - msgstr "שיתוף המדפסת נגיש." - - # - # File: ../system-config-printer.py, line: 4133 - # File: ../system-config-printer.py, line: 4203 --#: ../system-config-printer.py:5302 ../system-config-printer.py:5362 -+#: ../system-config-printer.py:5297 ../system-config-printer.py:5357 - msgid "This print share is not accessible." - msgstr "שיתוף המדפסת לא נגיש." - - # - # File: ../system-config-printer.py, line: 4136 --#: ../system-config-printer.py:5305 -+#: ../system-config-printer.py:5300 - msgid "Print Share Inaccessible" - msgstr "שיתוף מדפסת לא נגיש" - - # - # File: ../system-config-printer.py, line: 4202 --#: ../system-config-printer.py:5361 -+#: ../system-config-printer.py:5356 - msgid "Inaccessible" - msgstr "לא נגיש" - - # - # File: ../system-config-printer.py, line: 4261 --#: ../system-config-printer.py:5419 -+#: ../system-config-printer.py:5414 - #, fuzzy, python-format - msgid "It is not possible to obtain a list of queues from '%s'." - msgstr "לא ניתן לקבל רשימת תורי הדפסה מ-'%s'." - - # - # File: ../system-config-printer.py, line: 4263 --#: ../system-config-printer.py:5421 -+#: ../system-config-printer.py:5416 - msgid "" - "Obtaining a list of queues is a CUPS extension to IPP. Network printers do " - "not support it." -@@ -1822,91 +1827,91 @@ msgstr "" - - # - # File: ../system-config-printer.py, line: 4266 --#: ../system-config-printer.py:5424 -+#: ../system-config-printer.py:5419 - msgid "No queues" - msgstr "אין תורים" - - # - # File: ../system-config-printer.py, line: 4267 --#: ../system-config-printer.py:5425 -+#: ../system-config-printer.py:5420 - msgid "There are no queues available." - msgstr "אין תורים זמינים." - --#: ../system-config-printer.py:5516 -+#: ../system-config-printer.py:5511 - msgid "Parallel Port" - msgstr "" - - # - # File: ../system-config-printer.glade.h, line: 221 --#: ../system-config-printer.py:5518 -+#: ../system-config-printer.py:5513 - #, fuzzy - msgid "Serial Port" - msgstr "טורי" - - # - # File: ../system-config-printer.glade.h, line: 212 --#: ../system-config-printer.py:5520 -+#: ../system-config-printer.py:5515 - #, fuzzy - msgid "USB" - msgstr "SMB" - --#: ../system-config-printer.py:5522 ../system-config-printer.py:5525 -+#: ../system-config-printer.py:5517 ../system-config-printer.py:5520 - msgid "HP Linux Imaging and Printing (HPLIP)" - msgstr "" - - # - # File: ../system-config-printer.py, line: 4367 --#: ../system-config-printer.py:5527 -+#: ../system-config-printer.py:5522 - #, fuzzy - msgid "Hardware Abstraction Layer (HAL)" - msgstr "" - "המדפסת המקומית מזוהה על ידי שכבת הפשטת חומרה (Hardware Abstraction Layer)." - --#: ../system-config-printer.py:5529 -+#: ../system-config-printer.py:5524 - msgid "AppSocket/HP JetDirect" - msgstr "" - --#: ../system-config-printer.py:5538 -+#: ../system-config-printer.py:5533 - #, python-format - msgid "LPD/LPR queue '%s'" - msgstr "" - - # - # File: ../system-config-printer.glade.h, line: 125 --#: ../system-config-printer.py:5540 -+#: ../system-config-printer.py:5535 - #, fuzzy - msgid "LPD/LPR queue" - msgstr "LPD" - --#: ../system-config-printer.py:5543 -+#: ../system-config-printer.py:5538 - msgid "Windows Printer via SAMBA" - msgstr "" - - # - # File: ../system-config-printer.glade.h, line: 120 --#: ../system-config-printer.py:5545 ../glade/NewPrinterWindow.glade.h:66 -+#: ../system-config-printer.py:5540 ../glade/NewPrinterWindow.glade.h:65 - msgid "IPP" - msgstr "IPP" - --#: ../system-config-printer.py:5547 -+#: ../system-config-printer.py:5542 - msgid "HTTP" - msgstr "" - - # - # File: ../system-config-printer.py, line: 4357 --#: ../system-config-printer.py:5632 -+#: ../system-config-printer.py:5624 - msgid "A printer connected to the parallel port." - msgstr "מדפסת מחוברת ליציאה המקבילית." - - # - # File: ../system-config-printer.py, line: 4359 --#: ../system-config-printer.py:5634 -+#: ../system-config-printer.py:5626 - msgid "A printer connected to a USB port." - msgstr "מדפסת מחוברת ליציאת USB." - - # - # File: ../system-config-printer.py, line: 4361 --#: ../system-config-printer.py:5636 -+#: ../system-config-printer.py:5628 - msgid "" - "HPLIP software driving a printer, or the printer function of a multi-" - "function device." -@@ -1914,7 +1919,7 @@ msgstr "תוכנת ה-HPLIP המפעיל - - # - # File: ../system-config-printer.py, line: 4364 --#: ../system-config-printer.py:5639 -+#: ../system-config-printer.py:5631 - msgid "" - "HPLIP software driving a fax machine, or the fax function of a multi-" - "function device." -@@ -1922,89 +1927,85 @@ msgstr "תוכנת ה-HPLIP המפעיל - - # - # File: ../system-config-printer.py, line: 4367 --#: ../system-config-printer.py:5642 -+#: ../system-config-printer.py:5634 - msgid "Local printer detected by the Hardware Abstraction Layer (HAL)." - msgstr "" - "המדפסת המקומית מזוהה על ידי שכבת הפשטת חומרה (Hardware Abstraction Layer)." - --#: ../system-config-printer.py:5799 --msgid "HPLIP cannot find the device." --msgstr "" -- --#: ../system-config-printer.py:5881 -+#: ../system-config-printer.py:5831 - msgid "No printer was found at that address." - msgstr "" - - # - # File: ../system-config-printer.py, line: 4625 --#: ../system-config-printer.py:6020 -+#: ../system-config-printer.py:5968 - msgid "-- Select from search results --" - msgstr "-- יש לבחור מתוצאות החיפוש --" - - # - # File: ../system-config-printer.py, line: 4627 --#: ../system-config-printer.py:6022 -+#: ../system-config-printer.py:5970 - msgid "-- No matches found --" - msgstr "-- לא נמצאו התאמות --" - - # - # File: ../system-config-printer.py, line: 4808 --#: ../system-config-printer.py:6203 -+#: ../system-config-printer.py:6151 - msgid " (recommended)" - msgstr "(מומלץ)" - - # - # File: ../system-config-printer.py, line: 4822 --#: ../system-config-printer.py:6217 -+#: ../system-config-printer.py:6165 - msgid "This PPD is generated by foomatic." - msgstr "ה-PPD נוצר על ידי foomatic." - - # - # File: ../system-config-printer.py, line: 4848 --#: ../system-config-printer.py:6241 -+#: ../system-config-printer.py:6189 - msgid "OpenPrinting" - msgstr "OpenPrinting" - - # - # File: ../system-config-printer.py, line: 4850 --#: ../system-config-printer.py:6252 -+#: ../system-config-printer.py:6200 - msgid "Distributable" - msgstr "ניתנים להפצה" - - # - # File: ../system-config-printer.glade.h, line: 1 --#: ../system-config-printer.py:6293 -+#: ../system-config-printer.py:6241 - #, fuzzy - msgid ", " - msgstr " " - --#: ../system-config-printer.py:6298 -+#: ../system-config-printer.py:6246 - #, python-format - msgid "" - "\n" - "(%s)" - msgstr "" - --#: ../system-config-printer.py:6303 -+#: ../system-config-printer.py:6251 - msgid "No support contacts known" - msgstr "" - - # - # File: ../system-config-printer.py, line: 4860 --#: ../system-config-printer.py:6307 ../system-config-printer.py:6320 -+#: ../system-config-printer.py:6255 ../system-config-printer.py:6268 - msgid "Not specified." - msgstr "לא מוגדר." - - # - # File: ../system-config-printer.py, line: 4900 - #. Foomatic database problem of some sort. --#: ../system-config-printer.py:6360 -+#: ../system-config-printer.py:6308 - msgid "Database error" - msgstr "שגיאת מסד נתונים" - - # - # File: ../system-config-printer.py, line: 4901 --#: ../system-config-printer.py:6361 -+#: ../system-config-printer.py:6309 - #, python-format - msgid "The '%s' driver cannot be used with printer '%s %s'." - msgstr "לא ניתן להשתמש במנהל ההתקן '%s' עם המדפסת '%s %s'." -@@ -2014,7 +2015,7 @@ msgstr "לא ניתן להשתמש במ - #. This printer references some XML that is not - #. installed by default. Point the user at the - #. package they need to install. --#: ../system-config-printer.py:6371 -+#: ../system-config-printer.py:6319 - #, python-format - msgid "You will need to install the '%s' package in order to use this driver." - msgstr "צריך להתקין את החבילה '%s' כדי להשתמש במנהל התקן זה." -@@ -2022,73 +2023,73 @@ msgstr "צריך להתקין את הח - # - # File: ../system-config-printer.py, line: 4918 - #. This error came from trying to open the PPD file. --#: ../system-config-printer.py:6378 -+#: ../system-config-printer.py:6326 - msgid "PPD error" - msgstr "שגיאת PPD" - - # - # File: ../system-config-printer.py, line: 4920 --#: ../system-config-printer.py:6380 -+#: ../system-config-printer.py:6328 - msgid "Failed to read PPD file. Possible reason follows:" - msgstr "נכשל בקריאת קובץ PPD. סיבות אפשריות:" - - # - # File: ../system-config-printer.py, line: 4937 - #. Failed to get PPD downloaded from OpenPrinting XXX --#: ../system-config-printer.py:6397 -+#: ../system-config-printer.py:6345 - msgid "Downloadable drivers" - msgstr "מנהלי התקנים הניתנים להורדה" - - # - # File: ../system-config-printer.py, line: 4938 --#: ../system-config-printer.py:6398 -+#: ../system-config-printer.py:6346 - msgid "Failed to download PPD." - msgstr "נכשל בהורדת PPD." - --#: ../system-config-printer.py:6405 -+#: ../system-config-printer.py:6353 - msgid "fetching PPD" - msgstr "" - - # - # File: ../system-config-printer.py, line: 4974 - # File: ../system-config-printer.py, line: 5012 --#: ../system-config-printer.py:6434 ../system-config-printer.py:6472 -+#: ../system-config-printer.py:6382 ../system-config-printer.py:6420 - msgid "No Installable Options" - msgstr "אין אפשרויות להתקנה" - - # - # File: ../system-config-printer.py, line: 5059 --#: ../system-config-printer.py:6520 -+#: ../system-config-printer.py:6468 - #, fuzzy, python-format - msgid "adding printer %s" - msgstr "מוסיף מדפסת" - --#: ../system-config-printer.py:6669 -+#: ../system-config-printer.py:6617 - msgid "Would you like to print a test page?" - msgstr "" - - # - # File: ../system-config-printer.py, line: 5220 --#: ../system-config-printer.py:6722 -+#: ../system-config-printer.py:6670 - msgid "Install driver" - msgstr "התקנת מנהל התקן" - - # - # File: ../system-config-printer.py, line: 5221 --#: ../system-config-printer.py:6723 ../troubleshoot/CheckPPDSanity.py:131 -+#: ../system-config-printer.py:6671 ../troubleshoot/CheckPPDSanity.py:131 - #, python-format - msgid "Printer '%s' requires the %s package but it is not currently installed." - msgstr "המדפסת '%s' זקוקה לחבילת ה-%s אבל היא אינה מותקנת כעת." - - # - # File: ../system-config-printer.py, line: 5246 --#: ../system-config-printer.py:6739 -+#: ../system-config-printer.py:6687 - msgid "Missing driver" - msgstr "מנהל התקן חסר" - - # - # File: ../system-config-printer.py, line: 5247 --#: ../system-config-printer.py:6740 -+#: ../system-config-printer.py:6688 - #, python-format - msgid "" - "Printer '%s' requires the '%s' program but it is not currently installed. " -@@ -2273,39 +2274,32 @@ msgid "Enter device URI" - msgstr "הכנסת ה-URI של ההתקן" - - # --# File: ../system-config-printer.glade.h, line: 25 --#: ../glade/NewPrinterWindow.glade.h:5 --#, fuzzy --msgid "HP Printer (HPLIP) via network" --msgstr "שם המדפסת" -- --# - # File: ../system-config-printer.glade.h, line: 16 --#: ../glade/NewPrinterWindow.glade.h:6 -+#: ../glade/NewPrinterWindow.glade.h:5 - msgid "IPP Printer" - msgstr "מדפסת IPP" - - # - # File: ../system-config-printer.glade.h, line: 18 --#: ../glade/NewPrinterWindow.glade.h:7 -+#: ../glade/NewPrinterWindow.glade.h:6 - msgid "License Terms" - msgstr "תנאי הרישיון" - - # - # File: ../system-config-printer.glade.h, line: 19 --#: ../glade/NewPrinterWindow.glade.h:8 -+#: ../glade/NewPrinterWindow.glade.h:7 - msgid "Location of the LPD network printer" - msgstr "המיקום של מדפסת רשת LPD " - - # - # File: ../system-config-printer.glade.h, line: 20 --#: ../glade/NewPrinterWindow.glade.h:9 -+#: ../glade/NewPrinterWindow.glade.h:8 - msgid "Location of the network printer" - msgstr "מיקום מדפסת הרשת" - - # - # File: ../system-config-printer.glade.h, line: 21 --#: ../glade/NewPrinterWindow.glade.h:10 -+#: ../glade/NewPrinterWindow.glade.h:9 - msgid "Location (optional)" - msgstr "מיקום (אופציונלי)" - -@@ -2313,123 +2307,123 @@ msgstr "מיקום (אופציו - # File: ../system-config-printer.py, line: 890 - # File: ../system-config-printer.py, line: 896 - # File: ../troubleshoot/LocalOrRemote.py, line: 30 --#: ../glade/NewPrinterWindow.glade.h:11 -+#: ../glade/NewPrinterWindow.glade.h:10 - #, fuzzy - msgid "Network Printer" - msgstr "מדפסת רשת" - - # - # File: ../system-config-printer.glade.h, line: 22 --#: ../glade/NewPrinterWindow.glade.h:12 -+#: ../glade/NewPrinterWindow.glade.h:11 - msgid "Note" - msgstr "הערה" - - # - # File: ../system-config-printer.glade.h, line: 30 --#: ../glade/NewPrinterWindow.glade.h:13 -+#: ../glade/NewPrinterWindow.glade.h:12 - #, fuzzy - msgid "Output Quality" - msgstr "מצב" - - # - # File: ../system-config-printer.glade.h, line: 25 --#: ../glade/NewPrinterWindow.glade.h:14 -+#: ../glade/NewPrinterWindow.glade.h:13 - msgid "Printer Name" - msgstr "שם המדפסת" - - # - # File: ../system-config-printer.glade.h, line: 26 --#: ../glade/NewPrinterWindow.glade.h:15 -+#: ../glade/NewPrinterWindow.glade.h:14 - msgid "SMB Printer" - msgstr "מדפסת SMB" - - # - # File: ../system-config-printer.glade.h, line: 27 --#: ../glade/NewPrinterWindow.glade.h:16 -+#: ../glade/NewPrinterWindow.glade.h:15 - msgid "Select Driver" - msgstr "בחר מנהל התקן" - - # - # File: ../system-config-printer.glade.h, line: 28 --#: ../glade/NewPrinterWindow.glade.h:17 -+#: ../glade/NewPrinterWindow.glade.h:16 - msgid "Settings of the serial port" - msgstr "הגדרות עבור יציאה טורית" - - # - # File: ../system-config-printer.glade.h, line: 35 --#: ../glade/NewPrinterWindow.glade.h:18 -+#: ../glade/NewPrinterWindow.glade.h:17 - msgid "smb://[workgroup/]server[:port]/printer" - msgstr "smb://[workgroup/]server[:port]/printer" - - # - # File: ../system-config-printer.glade.h, line: 36 --#: ../glade/NewPrinterWindow.glade.h:19 -+#: ../glade/NewPrinterWindow.glade.h:18 - msgid "Choose Class Members" - msgstr "בחירת חברי מחלקה" - - # - # File: ../system-config-printer.glade.h, line: 37 --#: ../glade/NewPrinterWindow.glade.h:20 -+#: ../glade/NewPrinterWindow.glade.h:19 - msgid "Choose Driver" - msgstr "בחירת מנהל התקן" - - # - # File: ../system-config-printer.glade.h, line: 38 --#: ../glade/NewPrinterWindow.glade.h:21 -+#: ../glade/NewPrinterWindow.glade.h:20 - msgid "Describe Printer" - msgstr "תיאור מדפסת" - - # - # File: ../system-config-printer.glade.h, line: 39 --#: ../glade/NewPrinterWindow.glade.h:22 -+#: ../glade/NewPrinterWindow.glade.h:21 - msgid "Existing Settings" - msgstr "הגדרות קיימות" - - # - # File: ../system-config-printer.glade.h, line: 40 --#: ../glade/NewPrinterWindow.glade.h:23 -+#: ../glade/NewPrinterWindow.glade.h:22 - msgid "Installable Options" - msgstr "אפשרויות ניתנות להתקנה" - - # - # File: ../system-config-printer.glade.h, line: 41 --#: ../glade/NewPrinterWindow.glade.h:24 -+#: ../glade/NewPrinterWindow.glade.h:23 - msgid "Select Device" - msgstr "בחירת התקן" - - # - # File: ../system-config-printer.glade.h, line: 52 --#: ../glade/NewPrinterWindow.glade.h:25 -+#: ../glade/NewPrinterWindow.glade.h:24 - msgid "Baud Rate" - msgstr "קצב העברה" - - # - # File: ../system-config-printer.glade.h, line: 55 --#: ../glade/NewPrinterWindow.glade.h:26 -+#: ../glade/NewPrinterWindow.glade.h:25 - msgid "Browse..." - msgstr "עיון..." - - # - # File: ../system-config-printer.glade.h, line: 63 --#: ../glade/NewPrinterWindow.glade.h:27 -+#: ../glade/NewPrinterWindow.glade.h:26 - msgid "Comments..." - msgstr "הערות..." - - # - # File: ../system-config-printer.glade.h, line: 70 --#: ../glade/NewPrinterWindow.glade.h:28 -+#: ../glade/NewPrinterWindow.glade.h:27 - msgid "Connection" - msgstr "חיבור" - - # - # File: ../system-config-printer.glade.h, line: 75 --#: ../glade/NewPrinterWindow.glade.h:29 -+#: ../glade/NewPrinterWindow.glade.h:28 - msgid "Data Bits" - msgstr "" - - # - # File: ../system-config-printer.glade.h, line: 76 --#: ../glade/NewPrinterWindow.glade.h:30 -+#: ../glade/NewPrinterWindow.glade.h:29 - msgid "" - "Default\n" - "1200\n" -@@ -2453,7 +2447,7 @@ msgstr "" - - # - # File: ../system-config-printer.glade.h, line: 85 --#: ../glade/NewPrinterWindow.glade.h:39 -+#: ../glade/NewPrinterWindow.glade.h:38 - msgid "" - "Default\n" - "8\n" -@@ -2465,7 +2459,7 @@ msgstr "" - - # - # File: ../system-config-printer.glade.h, line: 88 --#: ../glade/NewPrinterWindow.glade.h:42 -+#: ../glade/NewPrinterWindow.glade.h:41 - msgid "" - "Default\n" - "None\n" -@@ -2479,7 +2473,7 @@ msgstr "" - - # - # File: ../system-config-printer.glade.h, line: 92 --#: ../glade/NewPrinterWindow.glade.h:46 -+#: ../glade/NewPrinterWindow.glade.h:45 - msgid "" - "Default\n" - "None\n" -@@ -2495,7 +2489,7 @@ msgstr "" - - # - # File: ../system-config-printer.glade.h, line: 98 --#: ../glade/NewPrinterWindow.glade.h:51 -+#: ../glade/NewPrinterWindow.glade.h:50 - #: ../glade/PrinterPropertiesDialog.glade.h:35 - msgid "Description:" - msgstr "תיאור:‏" -@@ -2503,111 +2497,111 @@ msgstr "תיאור:‏" - # - # File: ../system-config-printer.glade.h, line: 99 - # File: ../troubleshoot/DeviceListed.py, line: 39 --#: ../glade/NewPrinterWindow.glade.h:52 ../troubleshoot/DeviceListed.py:40 -+#: ../glade/NewPrinterWindow.glade.h:51 ../troubleshoot/DeviceListed.py:40 - msgid "Device URI" - msgstr "כתובת ה-URI של ההתקן" - - # - # File: ../system-config-printer.glade.h, line: 101 --#: ../glade/NewPrinterWindow.glade.h:53 -+#: ../glade/NewPrinterWindow.glade.h:52 - msgid "Device description." - msgstr "תיאור ההתקן." - - # - # File: ../system-config-printer.glade.h, line: 102 --#: ../glade/NewPrinterWindow.glade.h:54 -+#: ../glade/NewPrinterWindow.glade.h:53 - msgid "DirectJet" - msgstr "DirectJet" - - # - # File: ../system-config-printer.glade.h, line: 104 --#: ../glade/NewPrinterWindow.glade.h:56 -+#: ../glade/NewPrinterWindow.glade.h:55 - msgid "Driver details" - msgstr "פרטי מנהל ההתקן" - - # - # File: ../system-config-printer.glade.h, line: 106 --#: ../glade/NewPrinterWindow.glade.h:57 -+#: ../glade/NewPrinterWindow.glade.h:56 - msgid "Empty" - msgstr "ריק" - - # - # File: ../system-config-printer.glade.h, line: 110 --#: ../glade/NewPrinterWindow.glade.h:58 -+#: ../glade/NewPrinterWindow.glade.h:57 - msgid "Find _Queue..." - msgstr "_חפש תור..." - - # - # File: ../system-config-printer.glade.h, line: 112 --#: ../glade/NewPrinterWindow.glade.h:59 -+#: ../glade/NewPrinterWindow.glade.h:58 - msgid "Flow Control" - msgstr "בקרת זרימה" - - # - # File: ../system-config-printer.glade.h, line: 113 --#: ../glade/NewPrinterWindow.glade.h:60 -+#: ../glade/NewPrinterWindow.glade.h:59 - msgid "" - "For the printer you have selected there are drivers available for download." - msgstr "עבור המדפסת שבחרת נמצאו מנהלי התקנים להורדה." - --#: ../glade/NewPrinterWindow.glade.h:61 -+#: ../glade/NewPrinterWindow.glade.h:60 - msgid "Free software" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:62 -+#: ../glade/NewPrinterWindow.glade.h:61 - msgid "Graphics:" - msgstr "" - - # - # File: ../system-config-printer.glade.h, line: 116 --#: ../glade/NewPrinterWindow.glade.h:63 -+#: ../glade/NewPrinterWindow.glade.h:62 - msgid "Host:" - msgstr "מארח:" - - # - # File: ../system-config-printer.glade.h, line: 118 --#: ../glade/NewPrinterWindow.glade.h:64 -+#: ../glade/NewPrinterWindow.glade.h:63 - msgid "Human-readable description such as \"HP LaserJet with Duplexer\"" - msgstr "תיאור שניתן להבנה על ידי בני אדם כגון \"מדפסת לייזר עם מזין דו-צדדי\"" - - # - # File: ../system-config-printer.glade.h, line: 119 --#: ../glade/NewPrinterWindow.glade.h:65 -+#: ../glade/NewPrinterWindow.glade.h:64 - msgid "Human-readable location such as \"Lab 1\"" - msgstr "מיקום שניתן להבנה על ידי בני אדם כגון \"מעבדה 1\"" - - # - # File: ../system-config-printer.glade.h, line: 125 --#: ../glade/NewPrinterWindow.glade.h:67 -+#: ../glade/NewPrinterWindow.glade.h:66 - msgid "LPD" - msgstr "LPD" - - # - # File: ../system-config-printer.glade.h, line: 135 --#: ../glade/NewPrinterWindow.glade.h:68 -+#: ../glade/NewPrinterWindow.glade.h:67 - msgid "License:" - msgstr "רישיון:" - - # - # File: ../system-config-printer.glade.h, line: 200 --#: ../glade/NewPrinterWindow.glade.h:69 -+#: ../glade/NewPrinterWindow.glade.h:68 - #, fuzzy - msgid "Line art:" - msgstr "מצב המדפסת:" - - # - # File: ../system-config-printer.glade.h, line: 137 --#: ../glade/NewPrinterWindow.glade.h:70 -+#: ../glade/NewPrinterWindow.glade.h:69 - msgid "Local Driver" - msgstr "מנהל התקן מקומי" - - # - # File: ../system-config-printer.glade.h, line: 140 --#: ../glade/NewPrinterWindow.glade.h:71 -+#: ../glade/NewPrinterWindow.glade.h:70 - msgid "Make and model:" - msgstr "יצרן ודגם:" - --#: ../glade/NewPrinterWindow.glade.h:72 -+#: ../glade/NewPrinterWindow.glade.h:71 - msgid "Manufacturer" - msgstr "" - -@@ -2615,40 +2609,40 @@ msgstr "" - # File: ../system-config-printer.py, line: 890 - # File: ../system-config-printer.py, line: 896 - # File: ../troubleshoot/LocalOrRemote.py, line: 30 --#: ../glade/NewPrinterWindow.glade.h:73 -+#: ../glade/NewPrinterWindow.glade.h:72 - #, fuzzy - msgid "Network" - msgstr "מדפסת רשת" - - # - # File: ../system-config-printer.glade.h, line: 147 --#: ../glade/NewPrinterWindow.glade.h:75 -+#: ../glade/NewPrinterWindow.glade.h:74 - msgid "No, I do not accept this license" - msgstr "לא, אני לא מקבל את הרישיון הזה" - - # - # File: ../system-config-printer.glade.h, line: 183 --#: ../glade/NewPrinterWindow.glade.h:76 -+#: ../glade/NewPrinterWindow.glade.h:75 - msgid "Parity" - msgstr "שוויון" - --#: ../glade/NewPrinterWindow.glade.h:78 -+#: ../glade/NewPrinterWindow.glade.h:77 - msgid "Patented algorithms" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:79 -+#: ../glade/NewPrinterWindow.glade.h:78 - msgid "Photo:" - msgstr "" - - # - # File: ../system-config-printer.glade.h, line: 187 --#: ../glade/NewPrinterWindow.glade.h:80 -+#: ../glade/NewPrinterWindow.glade.h:79 - msgid "Port number:" - msgstr "מספר יציאה (port):" - - # - # File: ../system-config-printer.glade.h, line: 192 --#: ../glade/NewPrinterWindow.glade.h:81 -+#: ../glade/NewPrinterWindow.glade.h:80 - msgid "" - "PostScript Printer Description (PPD) files can often be found on the driver " - "disk that comes with the printer. For PostScript printers they are often " -@@ -2660,49 +2654,49 @@ msgstr "" - - # - # File: ../system-config-printer.glade.h, line: 201 --#: ../glade/NewPrinterWindow.glade.h:82 -+#: ../glade/NewPrinterWindow.glade.h:81 - msgid "Printer model:" - msgstr "דגם מדפסת:" - - # - # File: ../system-config-printer.glade.h, line: 202 --#: ../glade/NewPrinterWindow.glade.h:83 -+#: ../glade/NewPrinterWindow.glade.h:82 - msgid "Probe" - msgstr "בדיקה" - - # - # File: ../system-config-printer.glade.h, line: 203 --#: ../glade/NewPrinterWindow.glade.h:84 -+#: ../glade/NewPrinterWindow.glade.h:83 - msgid "Prompt user if authentication is required" - msgstr "" - - # - # File: ../system-config-printer.glade.h, line: 204 --#: ../glade/NewPrinterWindow.glade.h:85 -+#: ../glade/NewPrinterWindow.glade.h:84 - msgid "Provide PPD file" - msgstr "לספק קובץ PPD" - - # - # File: ../system-config-printer.glade.h, line: 206 --#: ../glade/NewPrinterWindow.glade.h:86 -+#: ../glade/NewPrinterWindow.glade.h:85 - msgid "Queue:" - msgstr "תור:" - - # - # File: ../system-config-printer.glade.h, line: 211 --#: ../glade/NewPrinterWindow.glade.h:87 -+#: ../glade/NewPrinterWindow.glade.h:86 - msgid "SCSI" - msgstr "SCSI" - - # - # File: ../system-config-printer.glade.h, line: 212 --#: ../glade/NewPrinterWindow.glade.h:88 -+#: ../glade/NewPrinterWindow.glade.h:87 - msgid "SMB" - msgstr "SMB" - - # - # File: ../system-config-printer.glade.h, line: 218 --#: ../glade/NewPrinterWindow.glade.h:89 -+#: ../glade/NewPrinterWindow.glade.h:88 - msgid "Search for a printer driver to download" - msgstr "חפש מנהל התקן להורדה עבור המדפסת" - -@@ -2711,61 +2705,61 @@ msgstr "חפש מנהל התקן להו - # File: ../system-config-printer.py, line: 3223 - # File: ../system-config-printer.py, line: 3454 - # File: ../system-config-printer.py, line: 4600 --#: ../glade/NewPrinterWindow.glade.h:90 -+#: ../glade/NewPrinterWindow.glade.h:89 - #, fuzzy - msgid "Searching..." - msgstr "מחפש" - - # - # File: ../system-config-printer.glade.h, line: 219 --#: ../glade/NewPrinterWindow.glade.h:91 -+#: ../glade/NewPrinterWindow.glade.h:90 - msgid "Select A File" - msgstr "בחירת קובץ" - - # - # File: ../system-config-printer.glade.h, line: 220 --#: ../glade/NewPrinterWindow.glade.h:92 -+#: ../glade/NewPrinterWindow.glade.h:91 - msgid "Select printer from database" - msgstr "בחר מדפסת ממסד נתונים" - - # - # File: ../system-config-printer.glade.h, line: 221 --#: ../glade/NewPrinterWindow.glade.h:93 -+#: ../glade/NewPrinterWindow.glade.h:92 - msgid "Serial" - msgstr "טורי" - - # - # File: ../system-config-printer.glade.h, line: 224 --#: ../glade/NewPrinterWindow.glade.h:94 -+#: ../glade/NewPrinterWindow.glade.h:93 - msgid "Set authentication details now" - msgstr "קבע את פרטי אימות עכשיו" - - # - # File: ../system-config-printer.glade.h, line: 227 --#: ../glade/NewPrinterWindow.glade.h:95 -+#: ../glade/NewPrinterWindow.glade.h:94 - msgid "Short name for this printer such as \"laserjet\"" - msgstr "שם קצר למדפסת כגון \"laserjet\"" - - # - # File: ../system-config-printer.glade.h, line: 232 --#: ../glade/NewPrinterWindow.glade.h:96 -+#: ../glade/NewPrinterWindow.glade.h:95 - msgid "Supplier:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:97 -+#: ../glade/NewPrinterWindow.glade.h:96 - msgid "Support:" - msgstr "" - - # - # File: ../troubleshoot/PrintTestPage.py, line: 76 --#: ../glade/NewPrinterWindow.glade.h:98 -+#: ../glade/NewPrinterWindow.glade.h:97 - #, fuzzy - msgid "Text:" - msgstr "בדיקה" - - # - # File: ../system-config-printer.glade.h, line: 234 --#: ../glade/NewPrinterWindow.glade.h:99 -+#: ../glade/NewPrinterWindow.glade.h:98 - msgid "" - "The foomatic printer database contains various manufacturer provided " - "PostScript Printer Description (PPD) files and also can generate PPD files " -@@ -2776,7 +2770,7 @@ msgstr "" - - # - # File: ../system-config-printer.glade.h, line: 235 --#: ../glade/NewPrinterWindow.glade.h:100 -+#: ../glade/NewPrinterWindow.glade.h:99 - msgid "" - "These drivers do not come from your operating system supplier and will not " - "be covered by their commercial support. See the support and license terms " -@@ -2785,7 +2779,7 @@ msgstr "" - - # - # File: ../system-config-printer.glade.h, line: 236 --#: ../glade/NewPrinterWindow.glade.h:101 -+#: ../glade/NewPrinterWindow.glade.h:100 - msgid "" - "This driver supports additional hardware that may be installed in the " - "printer." -@@ -2793,7 +2787,7 @@ msgstr "מנהל התקן זה, תומך - - # - # File: ../system-config-printer.glade.h, line: 237 --#: ../glade/NewPrinterWindow.glade.h:102 -+#: ../glade/NewPrinterWindow.glade.h:101 - msgid "" - "This is done by assuming that options with the same name do have the same " - "meaning. Settings of options that are not present in the new PPD will be " -@@ -2802,7 +2796,7 @@ msgstr "" - - # - # File: ../system-config-printer.glade.h, line: 243 --#: ../glade/NewPrinterWindow.glade.h:103 -+#: ../glade/NewPrinterWindow.glade.h:102 - msgid "" - "This way all current option settings will be lost. The default settings of " - "the new PPD will be used. " -@@ -2810,25 +2804,25 @@ msgstr "" - - # - # File: ../system-config-printer.glade.h, line: 246 --#: ../glade/NewPrinterWindow.glade.h:104 -+#: ../glade/NewPrinterWindow.glade.h:103 - msgid "Try to copy the option settings over from the old PPD. " - msgstr "" - - # - # File: ../system-config-printer.glade.h, line: 247 --#: ../glade/NewPrinterWindow.glade.h:105 -+#: ../glade/NewPrinterWindow.glade.h:104 - msgid "URI:" - msgstr "כתובת (URI):" - - # - # File: ../system-config-printer.glade.h, line: 248 --#: ../glade/NewPrinterWindow.glade.h:107 -+#: ../glade/NewPrinterWindow.glade.h:106 - msgid "Use the new PPD (Postscript Printer Description) as is." - msgstr "שיבוש ב-PPD החדש (קובץ Postscript Printer Description) כמו שהוא." - - # - # File: ../system-config-printer.glade.h, line: 251 --#: ../glade/NewPrinterWindow.glade.h:109 -+#: ../glade/NewPrinterWindow.glade.h:108 - msgid "" - "With this choice no driver download will be performed. In the next steps a " - "locally installed driver will be selected." -@@ -2837,28 +2831,28 @@ msgstr "" - - # - # File: ../system-config-printer.glade.h, line: 253 --#: ../glade/NewPrinterWindow.glade.h:110 -+#: ../glade/NewPrinterWindow.glade.h:109 - msgid "Yes, I accept this license" - msgstr "כן, הרשיון מקובל עלי" - - # - # File: ../system-config-printer.glade.h, line: 264 --#: ../glade/NewPrinterWindow.glade.h:111 -+#: ../glade/NewPrinterWindow.glade.h:110 - msgid "_Search" - msgstr "_חיפוש" - - # - # File: ../system-config-printer.glade.h, line: 269 --#: ../glade/NewPrinterWindow.glade.h:112 -+#: ../glade/NewPrinterWindow.glade.h:111 - msgid "_Verify..." - msgstr "_אימות..." - --#: ../glade/NewPrinterWindow.glade.h:113 -+#: ../glade/NewPrinterWindow.glade.h:112 - #: ../glade/PrinterPropertiesDialog.glade.h:128 - msgid "move left" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:114 -+#: ../glade/NewPrinterWindow.glade.h:113 - #: ../glade/PrinterPropertiesDialog.glade.h:129 - msgid "move right" - msgstr "" -@@ -4101,7 +4095,7 @@ msgstr "" - - # - # File: ../troubleshoot/PrintTestPage.py, line: 321 --#: ../troubleshoot/PrintTestPage.py:399 -+#: ../troubleshoot/PrintTestPage.py:416 - msgid "Error submitting test page" - msgstr "שגיאה בשליחת עמוד הבדיקה" - -@@ -4374,6 +4368,12 @@ msgid "Select default printer" - msgstr "בחירת מדפסת ברירת המחדל" - - # -+# File: ../system-config-printer.glade.h, line: 25 -+#, fuzzy -+#~ msgid "HP Printer (HPLIP) via network" -+#~ msgstr "שם המדפסת" -+ -+# - # File: ../errordialogs.py, line: 86 - #, fuzzy - #~ msgid "Not Found" -diff -up system-config-printer-1.1.5/po/hi.po.git-1.1.x system-config-printer-1.1.5/po/hi.po ---- system-config-printer-1.1.5/po/hi.po.git-1.1.x 2009-03-03 22:21:46.000000000 +0000 -+++ system-config-printer-1.1.5/po/hi.po 2009-03-10 17:43:31.000000000 +0000 -@@ -5,7 +5,7 @@ msgid "" - msgstr "" - "Project-Id-Version: hi\n" - "Report-Msgid-Bugs-To: https://bugzilla.redhat.com/bugzilla\n" --"POT-Creation-Date: 2009-03-02 23:22+0000\n" -+"POT-Creation-Date: 2009-03-10 16:51+0000\n" - "PO-Revision-Date: 2007-04-16 12:25+0530\n" - "Last-Translator: hi \n" - "Language-Team: Hindi \n" -@@ -61,11 +61,11 @@ msgstr "" - msgid "Enter IP address" - msgstr "मुद्रक नाम" - --#: ../authconn.py:35 ../glade/NewPrinterWindow.glade.h:108 -+#: ../authconn.py:35 ../glade/NewPrinterWindow.glade.h:107 - msgid "Username:" - msgstr "उपयोक्ता नाम:" - --#: ../authconn.py:36 ../glade/NewPrinterWindow.glade.h:77 -+#: ../authconn.py:36 ../glade/NewPrinterWindow.glade.h:76 - msgid "Password:" - msgstr "शब्दकूट:" - -@@ -74,7 +74,7 @@ msgstr "शब्दकूट:" - msgid "Domain:" - msgstr "शीर्ष हाशिया:" - --#: ../authconn.py:46 -+#: ../authconn.py:46 ../authconn.py:409 - #, fuzzy - msgid "Authentication" - msgstr "सत्यापन" -@@ -83,45 +83,54 @@ msgstr "सत्यापन" - msgid "Remember password" - msgstr "" - --#: ../authconn.py:211 ../authconn.py:232 -+#: ../authconn.py:208 -+#, python-format -+msgid "Unauthorized request (%s)" -+msgstr "" -+ -+#: ../authconn.py:209 -+msgid "You are not authorized to carry out therequested action." -+msgstr "" -+ -+#: ../authconn.py:212 ../authconn.py:233 - #, fuzzy - msgid "Operation canceled" - msgstr "प्रक्रिया नीति:" - --#: ../authconn.py:253 -+#: ../authconn.py:250 - #, fuzzy, python-format - msgid "CUPS server error (%s)" - msgstr "CUPS सर्वर त्रुटि" - --#: ../authconn.py:255 ../errordialogs.py:57 --#: ../troubleshoot/PrintTestPage.py:400 -+#: ../authconn.py:252 ../errordialogs.py:56 ../errordialogs.py:70 -+msgid "CUPS server error" -+msgstr "CUPS सर्वर त्रुटि" -+ -+#: ../authconn.py:261 ../errordialogs.py:57 -+#: ../troubleshoot/PrintTestPage.py:417 - #, python-format - msgid "There was an error during the CUPS operation: '%s'." - msgstr "CUPS संक्रिया के दौरान एक गलती हुई: '%s'." - --#: ../authconn.py:258 -+#: ../authconn.py:264 - #, fuzzy - msgid "Retry" - msgstr "फिर सेट करें" - --#: ../authconn.py:379 ../authconn.py:381 ../errordialogs.py:65 ../pysmb.py:75 -+#: ../authconn.py:385 ../authconn.py:387 ../errordialogs.py:65 ../pysmb.py:75 - #: ../pysmb.py:77 - msgid "Not authorized" - msgstr "अधिकृत नहीं" - --#: ../authconn.py:382 ../pysmb.py:78 -+#: ../authconn.py:388 ../pysmb.py:78 - msgid "The password may be incorrect." - msgstr "शब्दकूट गलत हो सकता है." - --#: ../authconn.py:400 -+#: ../authconn.py:407 - #, fuzzy, python-format - msgid "Authentication (%s)" - msgstr "सत्यापन" - --#: ../errordialogs.py:56 ../errordialogs.py:70 --msgid "CUPS server error" --msgstr "CUPS सर्वर त्रुटि" -- - #: ../errordialogs.py:66 - msgid "" - "The password may be incorrect, or the server may be configured to deny " -@@ -149,7 +158,7 @@ msgstr "उन्नत जरूरी" - msgid "Server error" - msgstr "सर्वर त्रुटि" - --#: ../errordialogs.py:82 ../system-config-printer.py:1219 -+#: ../errordialogs.py:82 ../system-config-printer.py:1223 - msgid "Not connected" - msgstr "संबंधित नहीं" - -@@ -171,7 +180,7 @@ msgstr "" - msgid "_New Group from Selection" - msgstr "" - --#: ../GroupsPane.py:98 ../system-config-printer.py:393 -+#: ../GroupsPane.py:98 ../system-config-printer.py:397 - #, fuzzy - msgid "_Rename" - msgstr "जारी करें (_R)" -@@ -240,7 +249,7 @@ msgid "Document" - msgstr "दस्तावेज" - - #: ../jobviewer.py:212 ../my-default-printer.py:153 --#: ../system-config-printer.py:366 ../system-config-printer.py:1367 -+#: ../system-config-printer.py:370 ../system-config-printer.py:1371 - #: ../troubleshoot/PrintTestPage.py:84 - msgid "Printer" - msgstr "मुद्रक" -@@ -277,8 +286,8 @@ msgstr "दस्तावेज छप - - #: ../jobviewer.py:386 ../jobviewer.py:451 ../jobviewer.py:452 - #: ../jobviewer.py:492 ../jobviewer.py:600 ../jobviewer.py:727 --#: ../jobviewer.py:1196 ../jobviewer.py:1222 ../system-config-printer.py:2546 --#: ../glade/NewPrinterWindow.glade.h:106 -+#: ../jobviewer.py:1196 ../jobviewer.py:1222 ../system-config-printer.py:2556 -+#: ../glade/NewPrinterWindow.glade.h:105 - #: ../troubleshoot/ChooseNetworkPrinter.py:101 - #: ../troubleshoot/ChooseNetworkPrinter.py:102 - #: ../troubleshoot/ChooseNetworkPrinter.py:105 -@@ -368,12 +377,12 @@ msgstr "" - msgid "Pending" - msgstr "स्थगित" - --#: ../jobviewer.py:591 ../system-config-printer.py:186 -+#: ../jobviewer.py:591 ../system-config-printer.py:190 - #: ../troubleshoot/PrintTestPage.py:43 - msgid "Processing" - msgstr "प्रक्रिया कर रहा है" - --#: ../jobviewer.py:592 ../system-config-printer.py:188 -+#: ../jobviewer.py:592 ../system-config-printer.py:192 - #: ../troubleshoot/PrintTestPage.py:44 - msgid "Stopped" - msgstr "रोकें " -@@ -490,8 +499,8 @@ msgstr "सिस्टम मूलभ - msgid "_Set Default" - msgstr "मूलभूत" - --#: ../my-default-printer.py:158 ../system-config-printer.py:423 --#: ../system-config-printer.py:3660 ../troubleshoot/ChooseNetworkPrinter.py:37 -+#: ../my-default-printer.py:158 ../system-config-printer.py:427 -+#: ../system-config-printer.py:3675 ../troubleshoot/ChooseNetworkPrinter.py:37 - #: ../troubleshoot/ChoosePrinter.py:38 - #, fuzzy - msgid "Location" -@@ -525,7 +534,7 @@ msgstr "डिफ़ॉल्ट मु - msgid "Authenticated" - msgstr "सत्यापन" - --#: ../ppdippstr.py:50 ../system-config-printer.py:6259 -+#: ../ppdippstr.py:50 ../system-config-printer.py:6207 - #, fuzzy - msgid "None" - msgstr "कुछ नहीं" -@@ -745,132 +754,132 @@ msgstr "" - msgid "1200 dpi, photo, black + color cartridge, photo paper" - msgstr "" - --#: ../system-config-printer.py:127 -+#: ../system-config-printer.py:131 - msgid "To do this, select System->Administration->Firewall from the main menu." - msgstr "" - --#: ../system-config-printer.py:185 -+#: ../system-config-printer.py:189 - msgid "Idle" - msgstr "निष्क्रिय" - --#: ../system-config-printer.py:187 -+#: ../system-config-printer.py:191 - msgid "Busy" - msgstr "व्यस्त" - --#: ../system-config-printer.py:372 ../system-config-printer.py:1373 -+#: ../system-config-printer.py:376 ../system-config-printer.py:1377 - #, fuzzy - msgid "Class" - msgstr "नया वर्ग" - --#: ../system-config-printer.py:399 -+#: ../system-config-printer.py:403 - #, fuzzy - msgid "Set As De_fault" - msgstr "मूलभूत" - --#: ../system-config-printer.py:403 -+#: ../system-config-printer.py:407 - #, fuzzy - msgid "_Create class" - msgstr "दूरस्थ वर्ग" - --#: ../system-config-printer.py:405 -+#: ../system-config-printer.py:409 - #, fuzzy - msgid "View Print _Queue" - msgstr "नया मुद्रक" - --#: ../system-config-printer.py:407 -+#: ../system-config-printer.py:411 - msgid "_Add to Group" - msgstr "" - --#: ../system-config-printer.py:409 -+#: ../system-config-printer.py:413 - msgid "Save Results as _Group" - msgstr "" - --#: ../system-config-printer.py:411 -+#: ../system-config-printer.py:415 - msgid "Save Filter as _Search Group" - msgstr "" - --#: ../system-config-printer.py:415 -+#: ../system-config-printer.py:419 - #, fuzzy - msgid "E_nabled" - msgstr "सक्षम" - --#: ../system-config-printer.py:417 -+#: ../system-config-printer.py:421 - #, fuzzy - msgid "_Shared" - msgstr "साझा" - --#: ../system-config-printer.py:421 ../troubleshoot/ChooseNetworkPrinter.py:35 -+#: ../system-config-printer.py:425 ../troubleshoot/ChooseNetworkPrinter.py:35 - #: ../troubleshoot/ChoosePrinter.py:36 ../troubleshoot/DeviceListed.py:36 - msgid "Name" - msgstr "नाम" - --#: ../system-config-printer.py:422 -+#: ../system-config-printer.py:426 - #, fuzzy - msgid "Description" - msgstr "विवरणः" - --#: ../system-config-printer.py:424 -+#: ../system-config-printer.py:428 - msgid "Manufacturer / Model" - msgstr "" - - #. Printer state reasons list --#: ../system-config-printer.py:499 -+#: ../system-config-printer.py:503 - msgid "Message" - msgstr "संदेश" - --#: ../system-config-printer.py:534 -+#: ../system-config-printer.py:538 - #, fuzzy - msgid "Problems?" - msgstr "जांच" - --#: ../system-config-printer.py:637 ../system-config-printer.py:639 -+#: ../system-config-printer.py:641 ../system-config-printer.py:643 - msgid "Members of this class" - msgstr "इस वर्ग के सदस्य" - --#: ../system-config-printer.py:638 ../system-config-printer.py:640 -+#: ../system-config-printer.py:642 ../system-config-printer.py:644 - msgid "Others" - msgstr "अन्य" - --#: ../system-config-printer.py:641 -+#: ../system-config-printer.py:645 - msgid "Devices" - msgstr "युक्ति" - --#: ../system-config-printer.py:642 -+#: ../system-config-printer.py:646 - #, fuzzy - msgid "Connections" - msgstr "जोड़ रहा है" - --#: ../system-config-printer.py:643 -+#: ../system-config-printer.py:647 - msgid "Makes" - msgstr "मुखौटा" - --#: ../system-config-printer.py:644 -+#: ../system-config-printer.py:648 - msgid "Models" - msgstr "मॉडल" - --#: ../system-config-printer.py:645 -+#: ../system-config-printer.py:649 - msgid "Drivers" - msgstr "चालक" - --#: ../system-config-printer.py:646 ../glade/NewPrinterWindow.glade.h:55 -+#: ../system-config-printer.py:650 ../glade/NewPrinterWindow.glade.h:54 - msgid "Downloadable Drivers" - msgstr "" - --#: ../system-config-printer.py:647 -+#: ../system-config-printer.py:651 - msgid "Users" - msgstr "उपयोक्ता" - --#: ../system-config-printer.py:682 -+#: ../system-config-printer.py:686 - msgid "Automatic rotation" - msgstr "" - --#: ../system-config-printer.py:989 -+#: ../system-config-printer.py:993 - #, fuzzy, python-format - msgid "Printer Properties - '%s' on %s" - msgstr "मुद्रक रिपोर्ट" - - #. The Conflict button was pressed. --#: ../system-config-printer.py:996 -+#: ../system-config-printer.py:1000 - msgid "" - "There are conflicting options.\n" - "Changes can only be applied after\n" -@@ -880,81 +889,81 @@ msgstr "" - "बदलाव इन विरोधों के समाधान\n" - "के बाद ही लागू हो सकता है." - --#: ../system-config-printer.py:1214 -+#: ../system-config-printer.py:1218 - #, python-format - msgid "Printer configuration - %s" - msgstr "मुद्रक विन्यास - %s" - --#: ../system-config-printer.py:1217 -+#: ../system-config-printer.py:1221 - #, python-format - msgid "Connected to %s" - msgstr "%s से संबंधित" - - #. Update our copy of the printer's settings. --#: ../system-config-printer.py:1257 ../system-config-printer.py:2042 -+#: ../system-config-printer.py:1261 ../system-config-printer.py:2046 - msgid "obtaining queue details" - msgstr "" - --#: ../system-config-printer.py:1295 -+#: ../system-config-printer.py:1299 - msgid "Remove from Group" - msgstr "" - --#: ../system-config-printer.py:1361 -+#: ../system-config-printer.py:1365 - #, fuzzy - msgid "Network printer (discovered)" - msgstr "नया मुद्रक" - --#: ../system-config-printer.py:1364 -+#: ../system-config-printer.py:1368 - msgid "Network class (discovered)" - msgstr "" - --#: ../system-config-printer.py:1370 ../system-config-printer.py:5524 --#: ../system-config-printer.py:5594 ../system-config-printer.py:5596 -+#: ../system-config-printer.py:1374 ../system-config-printer.py:5519 -+#: ../system-config-printer.py:5589 ../system-config-printer.py:5591 - msgid "Fax" - msgstr "" - --#: ../system-config-printer.py:1376 ../system-config-printer.py:1382 -+#: ../system-config-printer.py:1380 ../system-config-printer.py:1386 - #: ../troubleshoot/LocalOrRemote.py:30 - #, fuzzy - msgid "Network printer" - msgstr "नया मुद्रक" - --#: ../system-config-printer.py:1379 -+#: ../system-config-printer.py:1383 - #, fuzzy - msgid "Network print share" - msgstr "नया मुद्रक" - --#: ../system-config-printer.py:1508 ../glade/ConnectingDialog.glade.h:2 -+#: ../system-config-printer.py:1512 ../glade/ConnectingDialog.glade.h:2 - #, no-c-format, python-format - msgid "Opening connection to %s" - msgstr "" - --#: ../system-config-printer.py:1887 -+#: ../system-config-printer.py:1891 - msgid "Installable Options" - msgstr "अधिष्ठापन योग्य विकल्प" - --#: ../system-config-printer.py:1888 -+#: ../system-config-printer.py:1892 - #: ../glade/PrinterPropertiesDialog.glade.h:109 - msgid "Printer Options" - msgstr "मुद्रक विकल्प" - --#: ../system-config-printer.py:1924 -+#: ../system-config-printer.py:1928 - #, python-format - msgid "modifying class %s" - msgstr "" - --#: ../system-config-printer.py:1926 ../system-config-printer.py:3019 --#: ../system-config-printer.py:3044 ../system-config-printer.py:6547 --#: ../system-config-printer.py:6559 ../system-config-printer.py:6581 -+#: ../system-config-printer.py:1930 ../system-config-printer.py:3037 -+#: ../system-config-printer.py:3062 ../system-config-printer.py:6495 -+#: ../system-config-printer.py:6507 ../system-config-printer.py:6529 - #, fuzzy, python-format - msgid "modifying printer %s" - msgstr "मुद्रक विन्यस्त करें" - --#: ../system-config-printer.py:1941 -+#: ../system-config-printer.py:1945 - msgid "This will delete this class!" - msgstr "यह इस वर्ग को मिटा देगा!" - --#: ../system-config-printer.py:1942 -+#: ../system-config-printer.py:1946 - msgid "Proceed anyway?" - msgstr "किसी तरह बढ़ें?" - -@@ -962,50 +971,50 @@ msgstr "किसी तरह बढ़ - #. but we have never fetched the server settings to see whether - #. the server is publishing shared printers. Fetch the settings - #. now so that we can update the "not published" label if necessary. --#: ../system-config-printer.py:2030 ../system-config-printer.py:3203 -+#: ../system-config-printer.py:2034 ../system-config-printer.py:3221 - #, fuzzy - msgid "fetching server settings" - msgstr " मूल सर्वर जमावट" - --#: ../system-config-printer.py:2100 -+#: ../system-config-printer.py:2104 - #, fuzzy - msgid "Set Default Printer" - msgstr "डिफ़ॉल्ट मुद्रक बनायें" - --#: ../system-config-printer.py:2102 -+#: ../system-config-printer.py:2106 - msgid "Do you want to set this as the system-wide default printer?" - msgstr "" - --#: ../system-config-printer.py:2104 -+#: ../system-config-printer.py:2108 - #, fuzzy - msgid "Set as the _system-wide default printer" - msgstr "यह मूलभूत मुद्रक है" - --#: ../system-config-printer.py:2106 -+#: ../system-config-printer.py:2110 - msgid "_Clear my personal default setting" - msgstr "" - --#: ../system-config-printer.py:2107 -+#: ../system-config-printer.py:2111 - #, fuzzy - msgid "Set as my _personal default printer" - msgstr "डिफ़ॉल्ट मुद्रक बनायें" - --#: ../system-config-printer.py:2112 -+#: ../system-config-printer.py:2116 - #, fuzzy - msgid "setting default printer" - msgstr "डिफ़ॉल्ट मुद्रक बनायें" - --#: ../system-config-printer.py:2169 -+#: ../system-config-printer.py:2173 - #, fuzzy - msgid "printing test page" - msgstr "जाँच पृष्ठ छापें" - --#: ../system-config-printer.py:2182 ../system-config-printer.py:2217 --#: ../system-config-printer.py:5418 -+#: ../system-config-printer.py:2186 ../system-config-printer.py:2221 -+#: ../system-config-printer.py:5413 - msgid "Not possible" - msgstr "संभव नहीं" - --#: ../system-config-printer.py:2183 ../system-config-printer.py:2218 -+#: ../system-config-printer.py:2187 ../system-config-printer.py:2222 - msgid "" - "The remote server did not accept the print job, most likely because the " - "printer is not shared." -@@ -1013,20 +1022,20 @@ msgstr "" - "दूरस्थ सर्वर छपाई कार्य स्वीकार नहीं करता है, ज्यादा संभव इस कारण से कि मुद्रक साझाकृत " - "नहीं है." - --#: ../system-config-printer.py:2195 ../system-config-printer.py:2210 -+#: ../system-config-printer.py:2199 ../system-config-printer.py:2214 - msgid "Submitted" - msgstr "सुपुर्द" - --#: ../system-config-printer.py:2196 -+#: ../system-config-printer.py:2200 - #, python-format - msgid "Test page submitted as job %d" - msgstr "%d कार्य के रूप में जांच पृष्ठ सुपुर्द किया गया" - --#: ../system-config-printer.py:2203 -+#: ../system-config-printer.py:2207 - msgid "sending maintenance command" - msgstr "" - --#: ../system-config-printer.py:2211 -+#: ../system-config-printer.py:2215 - #, fuzzy, python-format - msgid "Maintenance command submitted as job %d" - msgstr "%d कार्य के रूप में जांच पृष्ठ सुपुर्द किया गया" -@@ -1034,75 +1043,75 @@ msgstr "%d कार्य के रू - #. The underlying cupsGetPPD2() function returned NULL without - #. setting an IPP error, so it'll be something like a failed - #. connection. --#: ../system-config-printer.py:2285 ../system-config-printer.py:2381 -+#: ../system-config-printer.py:2289 ../system-config-printer.py:2385 - msgid "Error" - msgstr "त्रुटि" - --#: ../system-config-printer.py:2286 -+#: ../system-config-printer.py:2290 - msgid "There was a problem connecting to the CUPS server." - msgstr "CUPS सर्वर में जोड़ने के दौरान समस्या थी." - --#: ../system-config-printer.py:2382 -+#: ../system-config-printer.py:2386 - #, python-format - msgid "Option '%s' has value '%s' and cannot be edited." - msgstr "" - --#: ../system-config-printer.py:2466 -+#: ../system-config-printer.py:2476 - msgid "Marker levels are not reported for this printer." - msgstr "" - --#: ../system-config-printer.py:2763 -+#: ../system-config-printer.py:2773 - #, fuzzy - msgid "Cannot Rename" - msgstr "जारी करें (_R)" - --#: ../system-config-printer.py:2764 -+#: ../system-config-printer.py:2774 - msgid "There are queued jobs." - msgstr "" - --#: ../system-config-printer.py:2822 -+#: ../system-config-printer.py:2840 - #, fuzzy - msgid "renaming printer" - msgstr "मुद्रक विन्यस्त करें" - - #. for classes make sure all members - #. will get added --#: ../system-config-printer.py:2907 -+#: ../system-config-printer.py:2925 - #, fuzzy - msgid "copying printer" - msgstr "मुद्रक विन्यस्त करें" - --#: ../system-config-printer.py:2971 -+#: ../system-config-printer.py:2989 - #, fuzzy, python-format - msgid "Really delete class '%s'?" - msgstr "क्या %s वर्ग को सचमुच मिटाना चाहते हैं?" - --#: ../system-config-printer.py:2973 -+#: ../system-config-printer.py:2991 - #, fuzzy, python-format - msgid "Really delete printer '%s'?" - msgstr "क्या मुद्रक %s को वास्तव मिटाना चाहते हैं?" - --#: ../system-config-printer.py:2975 -+#: ../system-config-printer.py:2993 - #, fuzzy - msgid "Really delete selected destinations?" - msgstr "क्या मुद्रक %s को वास्तव मिटाना चाहते हैं?" - --#: ../system-config-printer.py:2996 -+#: ../system-config-printer.py:3014 - #, fuzzy, python-format - msgid "deleting printer %s" - msgstr "मुद्रक विन्यस्त करें" - --#: ../system-config-printer.py:3070 -+#: ../system-config-printer.py:3088 - msgid "Publish Shared Printers" - msgstr "" - --#: ../system-config-printer.py:3071 -+#: ../system-config-printer.py:3089 - msgid "" - "Shared printers are not available to other people unless the 'Publish shared " - "printers' option is enabled in the server settings." - msgstr "" - --#: ../system-config-printer.py:3264 -+#: ../system-config-printer.py:3282 - #, fuzzy - msgid "modifying server settings" - msgstr " मूल सर्वर जमावट" -@@ -1113,105 +1122,105 @@ msgstr " मूल सर्वर - #. be unblocked. Unfortunately, this is not yet possible - #. (bug #440469). However, we can display a dialog to suggest - #. that now might be a good time to review the firewall settings. --#: ../system-config-printer.py:3289 -+#: ../system-config-printer.py:3307 - msgid "Review Firewall" - msgstr "" - --#: ../system-config-printer.py:3290 -+#: ../system-config-printer.py:3308 - msgid "" - "You may need to adjust the firewall to allow network printing to this " - "computer." - msgstr "" - --#: ../system-config-printer.py:3623 -+#: ../system-config-printer.py:3638 - msgid "Browsing not available (pysmbc not installed)" - msgstr "" - - #. SMB list columns --#: ../system-config-printer.py:3629 -+#: ../system-config-printer.py:3644 - msgid "Share" - msgstr "साझा करें" - --#: ../system-config-printer.py:3635 -+#: ../system-config-printer.py:3650 - msgid "Comment" - msgstr "टिप्पणी" - - #. IPP list columns --#: ../system-config-printer.py:3654 -+#: ../system-config-printer.py:3669 - msgid "Queue" - msgstr "" - --#: ../system-config-printer.py:3668 -+#: ../system-config-printer.py:3683 - #, fuzzy - msgid "" - "PostScript Printer Description files (*.ppd, *.PPD, *.ppd.gz, *.PPD.gz, *." - "PPD.GZ)" - msgstr "पोस्ट स्क्रिप्ट मुद्रक विवरण (*.ppd[.gz])" - --#: ../system-config-printer.py:3677 -+#: ../system-config-printer.py:3692 - msgid "All files (*)" - msgstr "" - --#: ../system-config-printer.py:3713 ../system-config-printer.py:5970 --#: ../system-config-printer.py:6008 ../applet.py:124 -+#: ../system-config-printer.py:3728 ../system-config-printer.py:5918 -+#: ../system-config-printer.py:5956 ../applet.py:124 - #, fuzzy - msgid "Search" - msgstr "मुद्रक के लिये नया नाम" - --#: ../system-config-printer.py:3736 ../system-config-printer.py:3760 --#: ../glade/NewPrinterWindow.glade.h:74 -+#: ../system-config-printer.py:3751 ../system-config-printer.py:3775 -+#: ../glade/NewPrinterWindow.glade.h:73 - msgid "New Printer" - msgstr "नया मुद्रक" - --#: ../system-config-printer.py:3747 -+#: ../system-config-printer.py:3762 - msgid "New Class" - msgstr "नया वर्ग" - --#: ../system-config-printer.py:3752 -+#: ../system-config-printer.py:3767 - msgid "Change Device URI" - msgstr "युक्ति URI बदलें" - --#: ../system-config-printer.py:3758 -+#: ../system-config-printer.py:3773 - msgid "Change Driver" - msgstr "चालक बदलें" - --#: ../system-config-printer.py:3927 ../system-config-printer.py:3993 --#: ../system-config-printer.py:4289 ../system-config-printer.py:4487 --#: ../system-config-printer.py:5772 ../system-config-printer.py:5995 -+#: ../system-config-printer.py:3942 ../system-config-printer.py:4008 -+#: ../system-config-printer.py:4304 ../system-config-printer.py:4502 -+#: ../system-config-printer.py:5762 ../system-config-printer.py:5943 - msgid "Searching" - msgstr "" - --#: ../system-config-printer.py:3928 -+#: ../system-config-printer.py:3943 - #, fuzzy - msgid "Searching for downloadable drivers" - msgstr "मुद्रक के लिये नया नाम" - --#: ../system-config-printer.py:3994 ../system-config-printer.py:4290 -+#: ../system-config-printer.py:4009 ../system-config-printer.py:4305 - msgid "Searching for drivers" - msgstr "" - --#: ../system-config-printer.py:4488 ../system-config-printer.py:5773 -+#: ../system-config-printer.py:4503 ../system-config-printer.py:5763 - #, fuzzy - msgid "Searching for printers" - msgstr "मुद्रक के लिये नया नाम" - --#: ../system-config-printer.py:4497 -+#: ../system-config-printer.py:4512 - #, fuzzy - msgid "fetching device list" - msgstr " मूल सर्वर जमावट" - - #. Tell the user why he needs the plugin --#: ../system-config-printer.py:4579 -+#: ../system-config-printer.py:4594 - msgid "For this printer a proprietary driver plugin from HP is available.\n" - msgstr "" - --#: ../system-config-printer.py:4582 -+#: ../system-config-printer.py:4597 - msgid "" - "The installation of the plugin is required for your printer to work.\n" - "\n" - msgstr "" - --#: ../system-config-printer.py:4585 -+#: ../system-config-printer.py:4600 - msgid "" - "Installing the plugin is optional, it completes or enhances the " - "functionality\n" -@@ -1219,296 +1228,288 @@ msgid "" - "\n" - msgstr "" - --#: ../system-config-printer.py:4589 -+#: ../system-config-printer.py:4604 - msgid "The plugin provides the following features:\n" - msgstr "" - --#: ../system-config-printer.py:4592 -+#: ../system-config-printer.py:4607 - msgid " - Printing support\n" - msgstr "" - --#: ../system-config-printer.py:4595 -+#: ../system-config-printer.py:4610 - msgid " - Faster printing\n" - msgstr "" - --#: ../system-config-printer.py:4598 -+#: ../system-config-printer.py:4613 - msgid " - Better printout quality\n" - msgstr "" - --#: ../system-config-printer.py:4601 -+#: ../system-config-printer.py:4616 - msgid " - Extra printing features\n" - msgstr "" - --#: ../system-config-printer.py:4604 -+#: ../system-config-printer.py:4619 - msgid " - Scanning support\n" - msgstr "" - --#: ../system-config-printer.py:4607 -+#: ../system-config-printer.py:4622 - msgid " - Faster scanning\n" - msgstr "" - --#: ../system-config-printer.py:4610 -+#: ../system-config-printer.py:4625 - msgid " - Better scanning image quality\n" - msgstr "" - --#: ../system-config-printer.py:4613 -+#: ../system-config-printer.py:4628 - msgid " - Faxing support\n" - msgstr "" - --#: ../system-config-printer.py:4616 -+#: ../system-config-printer.py:4631 - msgid " - Extra fax features\n" - msgstr "" - --#: ../system-config-printer.py:4619 -+#: ../system-config-printer.py:4634 - msgid " - Better Input/Output support\n" - msgstr "" - --#: ../system-config-printer.py:4622 -+#: ../system-config-printer.py:4637 - msgid " - Extra user interface features\n" - msgstr "" - --#: ../system-config-printer.py:4625 -+#: ../system-config-printer.py:4640 - msgid " - Other extra features\n" - msgstr "" - --#: ../system-config-printer.py:4630 -+#: ../system-config-printer.py:4645 - #, fuzzy - msgid "Install plugin" - msgstr "अधिष्ठापन योग्य विकल्प" - --#: ../system-config-printer.py:4631 -+#: ../system-config-printer.py:4646 - #, fuzzy - msgid "Do not set up printer" - msgstr "मुद्रक कॉपी करें" - --#: ../system-config-printer.py:4632 -+#: ../system-config-printer.py:4647 - msgid "Set up without plugin" - msgstr "" - --#: ../system-config-printer.py:4634 ../troubleshoot/PrintTestPage.py:118 -+#: ../system-config-printer.py:4649 ../troubleshoot/PrintTestPage.py:118 - msgid "Yes" - msgstr "" - --#: ../system-config-printer.py:4635 ../troubleshoot/PrintTestPage.py:119 -+#: ../system-config-printer.py:4650 ../troubleshoot/PrintTestPage.py:119 - msgid "No" - msgstr "" - --#: ../system-config-printer.py:4809 ../system-config-printer.py:4813 -+#: ../system-config-printer.py:4824 ../system-config-printer.py:4828 - msgid " (Current)" - msgstr " (वर्तमान)" - --#: ../system-config-printer.py:4845 --msgid "HP Printer (HPLIP)" --msgstr "" -- --#: ../system-config-printer.py:4886 -+#: ../system-config-printer.py:4881 - msgid "Other" - msgstr "अन्य" - - #. device-info - #. PhysicalDevice obj - #. Separator? --#: ../system-config-printer.py:4902 -+#: ../system-config-printer.py:4897 - #, fuzzy - msgid "Network Printer" - msgstr "नया मुद्रक" - --#: ../system-config-printer.py:4906 -+#: ../system-config-printer.py:4901 - #, fuzzy - msgid "Find Network Printer" - msgstr "नया मुद्रक" - --#: ../system-config-printer.py:4979 ../system-config-printer.py:5376 -+#: ../system-config-printer.py:4974 ../system-config-printer.py:5371 - #, fuzzy - msgid "Scanning..." - msgstr "माप रहा है:" - --#: ../system-config-printer.py:5034 ../system-config-printer.py:5798 -+#: ../system-config-printer.py:5029 - #, fuzzy - msgid "No Print Shares" - msgstr "नया मुद्रक" - --#: ../system-config-printer.py:5035 -+#: ../system-config-printer.py:5030 - msgid "" - "There were no print shares found. Please check that the Samba service is " - "marked as trusted in your firewall configuration." - msgstr "" - --#: ../system-config-printer.py:5296 ../system-config-printer.py:5357 -+#: ../system-config-printer.py:5291 ../system-config-printer.py:5352 - msgid "Print Share Verified" - msgstr "" - --#: ../system-config-printer.py:5297 ../system-config-printer.py:5358 -+#: ../system-config-printer.py:5292 ../system-config-printer.py:5353 - msgid "This print share is accessible." - msgstr "छपाई साझा अभिगम योग्य है." - --#: ../system-config-printer.py:5302 ../system-config-printer.py:5362 -+#: ../system-config-printer.py:5297 ../system-config-printer.py:5357 - msgid "This print share is not accessible." - msgstr "यह छपाई साझा अभिगम योग्य नहीं है." - --#: ../system-config-printer.py:5305 -+#: ../system-config-printer.py:5300 - #, fuzzy - msgid "Print Share Inaccessible" - msgstr "छपाई साझा अभिगम योग्य है." - --#: ../system-config-printer.py:5361 -+#: ../system-config-printer.py:5356 - msgid "Inaccessible" - msgstr "अनभिगम्य" - --#: ../system-config-printer.py:5419 -+#: ../system-config-printer.py:5414 - #, fuzzy, python-format - msgid "It is not possible to obtain a list of queues from '%s'." - msgstr "CUPS सर्वर में जोड़ने के दौरान समस्या थी." - --#: ../system-config-printer.py:5421 -+#: ../system-config-printer.py:5416 - msgid "" - "Obtaining a list of queues is a CUPS extension to IPP. Network printers do " - "not support it." - msgstr "" - --#: ../system-config-printer.py:5424 -+#: ../system-config-printer.py:5419 - msgid "No queues" - msgstr "" - --#: ../system-config-printer.py:5425 -+#: ../system-config-printer.py:5420 - msgid "There are no queues available." - msgstr "" - --#: ../system-config-printer.py:5516 -+#: ../system-config-printer.py:5511 - msgid "Parallel Port" - msgstr "" - --#: ../system-config-printer.py:5518 -+#: ../system-config-printer.py:5513 - #, fuzzy - msgid "Serial Port" - msgstr "धारावाहिक" - --#: ../system-config-printer.py:5520 -+#: ../system-config-printer.py:5515 - #, fuzzy - msgid "USB" - msgstr "SMB" - --#: ../system-config-printer.py:5522 ../system-config-printer.py:5525 -+#: ../system-config-printer.py:5517 ../system-config-printer.py:5520 - msgid "HP Linux Imaging and Printing (HPLIP)" - msgstr "" - --#: ../system-config-printer.py:5527 -+#: ../system-config-printer.py:5522 - #, fuzzy - msgid "Hardware Abstraction Layer (HAL)" - msgstr "हार्डवेयर सारांश स्तर (HAL) के द्वारा स्थानीय मुद्रक पाया गया." - --#: ../system-config-printer.py:5529 -+#: ../system-config-printer.py:5524 - msgid "AppSocket/HP JetDirect" - msgstr "" - --#: ../system-config-printer.py:5538 -+#: ../system-config-printer.py:5533 - #, python-format - msgid "LPD/LPR queue '%s'" - msgstr "" - --#: ../system-config-printer.py:5540 -+#: ../system-config-printer.py:5535 - #, fuzzy - msgid "LPD/LPR queue" - msgstr "LPD" - --#: ../system-config-printer.py:5543 -+#: ../system-config-printer.py:5538 - msgid "Windows Printer via SAMBA" - msgstr "" - --#: ../system-config-printer.py:5545 ../glade/NewPrinterWindow.glade.h:66 -+#: ../system-config-printer.py:5540 ../glade/NewPrinterWindow.glade.h:65 - msgid "IPP" - msgstr "IPP" - --#: ../system-config-printer.py:5547 -+#: ../system-config-printer.py:5542 - msgid "HTTP" - msgstr "" - --#: ../system-config-printer.py:5632 -+#: ../system-config-printer.py:5624 - msgid "A printer connected to the parallel port." - msgstr "समांतर पोर्ट में एक मुद्रक संबंधित." - --#: ../system-config-printer.py:5634 -+#: ../system-config-printer.py:5626 - msgid "A printer connected to a USB port." - msgstr "USB पोर्ट में एक मुद्रक संबंधित." - --#: ../system-config-printer.py:5636 -+#: ../system-config-printer.py:5628 - msgid "" - "HPLIP software driving a printer, or the printer function of a multi-" - "function device." - msgstr "" - "HPLIP सॉफ्टवेयर जो एक मुद्रक को चलाता है, या बहुल प्रकार्य युक्ति का मुद्रक प्रकार्य." - --#: ../system-config-printer.py:5639 -+#: ../system-config-printer.py:5631 - msgid "" - "HPLIP software driving a fax machine, or the fax function of a multi-" - "function device." - msgstr "" - "HPLIP सॉफ्टवेयर जो एक फैक्स मशीन को चलाता है, या बहुल प्रकार्य युक्ति का फैक्स प्रकार्य." - --#: ../system-config-printer.py:5642 -+#: ../system-config-printer.py:5634 - msgid "Local printer detected by the Hardware Abstraction Layer (HAL)." - msgstr "हार्डवेयर सारांश स्तर (HAL) के द्वारा स्थानीय मुद्रक पाया गया." - --#: ../system-config-printer.py:5799 --msgid "HPLIP cannot find the device." --msgstr "" -- --#: ../system-config-printer.py:5881 -+#: ../system-config-printer.py:5831 - msgid "No printer was found at that address." - msgstr "" - --#: ../system-config-printer.py:6020 -+#: ../system-config-printer.py:5968 - #, fuzzy - msgid "-- Select from search results --" - msgstr "डाटाबेस से मुद्रक चुनें" - --#: ../system-config-printer.py:6022 -+#: ../system-config-printer.py:5970 - msgid "-- No matches found --" - msgstr "" - --#: ../system-config-printer.py:6203 -+#: ../system-config-printer.py:6151 - msgid " (recommended)" - msgstr " (अनुशंसित)" - --#: ../system-config-printer.py:6217 -+#: ../system-config-printer.py:6165 - msgid "This PPD is generated by foomatic." - msgstr "यह PPD foomatic के द्वारा बनाया गया है." - --#: ../system-config-printer.py:6241 -+#: ../system-config-printer.py:6189 - #, fuzzy - msgid "OpenPrinting" - msgstr "छपाई कर रहा है" - --#: ../system-config-printer.py:6252 -+#: ../system-config-printer.py:6200 - msgid "Distributable" - msgstr "" - --#: ../system-config-printer.py:6293 -+#: ../system-config-printer.py:6241 - #, fuzzy - msgid ", " - msgstr " " - --#: ../system-config-printer.py:6298 -+#: ../system-config-printer.py:6246 - #, python-format - msgid "" - "\n" - "(%s)" - msgstr "" - --#: ../system-config-printer.py:6303 -+#: ../system-config-printer.py:6251 - msgid "No support contacts known" - msgstr "" - --#: ../system-config-printer.py:6307 ../system-config-printer.py:6320 -+#: ../system-config-printer.py:6255 ../system-config-printer.py:6268 - msgid "Not specified." - msgstr "" - - #. Foomatic database problem of some sort. --#: ../system-config-printer.py:6360 -+#: ../system-config-printer.py:6308 - msgid "Database error" - msgstr "डाटाबेस त्रुटि" - --#: ../system-config-printer.py:6361 -+#: ../system-config-printer.py:6309 - #, python-format - msgid "The '%s' driver cannot be used with printer '%s %s'." - msgstr "'%s' ड्राइवर '%s %s' मुद्रक के साथ प्रयुक्त नहीं हो सकता है." -@@ -1516,66 +1517,66 @@ msgstr "'%s' ड्राइवर '%s - #. This printer references some XML that is not - #. installed by default. Point the user at the - #. package they need to install. --#: ../system-config-printer.py:6371 -+#: ../system-config-printer.py:6319 - #, python-format - msgid "You will need to install the '%s' package in order to use this driver." - msgstr "" - "आपको '%s' संकुल को अधिष्ठापित करने की जरूरत होगी इस ड्राइवर को प्रयोग करने के लिये." - - #. This error came from trying to open the PPD file. --#: ../system-config-printer.py:6378 -+#: ../system-config-printer.py:6326 - msgid "PPD error" - msgstr "PPD त्रुटि" - --#: ../system-config-printer.py:6380 -+#: ../system-config-printer.py:6328 - msgid "Failed to read PPD file. Possible reason follows:" - msgstr "PPD फाइल को पढ़ने में विफल. संभावित कारण आगे है:" - - #. Failed to get PPD downloaded from OpenPrinting XXX --#: ../system-config-printer.py:6397 -+#: ../system-config-printer.py:6345 - msgid "Downloadable drivers" - msgstr "" - --#: ../system-config-printer.py:6398 -+#: ../system-config-printer.py:6346 - msgid "Failed to download PPD." - msgstr "" - --#: ../system-config-printer.py:6405 -+#: ../system-config-printer.py:6353 - #, fuzzy - msgid "fetching PPD" - msgstr "PPD बदलें" - --#: ../system-config-printer.py:6434 ../system-config-printer.py:6472 -+#: ../system-config-printer.py:6382 ../system-config-printer.py:6420 - #, fuzzy - msgid "No Installable Options" - msgstr "अधिष्ठापन योग्य विकल्प" - --#: ../system-config-printer.py:6520 -+#: ../system-config-printer.py:6468 - #, fuzzy, python-format - msgid "adding printer %s" - msgstr "मुद्रक विन्यस्त करें" - --#: ../system-config-printer.py:6669 -+#: ../system-config-printer.py:6617 - msgid "Would you like to print a test page?" - msgstr "" - --#: ../system-config-printer.py:6722 -+#: ../system-config-printer.py:6670 - #, fuzzy - msgid "Install driver" - msgstr "गुम ड्राइवर" - --#: ../system-config-printer.py:6723 ../troubleshoot/CheckPPDSanity.py:131 -+#: ../system-config-printer.py:6671 ../troubleshoot/CheckPPDSanity.py:131 - #, fuzzy, python-format - msgid "Printer '%s' requires the %s package but it is not currently installed." - msgstr "" - "'%s' मुद्रक %s संकुल की जरूरत होती है लेकिन यह अभी अधिष्ठापित नहीं है. कृपया इस मुद्रक के " - "प्रयोग के पहले इसे अधिष्ठापित करें." - --#: ../system-config-printer.py:6739 -+#: ../system-config-printer.py:6687 - msgid "Missing driver" - msgstr "गुम ड्राइवर" - --#: ../system-config-printer.py:6740 -+#: ../system-config-printer.py:6688 - #, python-format - msgid "" - "Printer '%s' requires the '%s' program but it is not currently installed. " -@@ -1705,133 +1706,128 @@ msgstr "युक्ति URI डाल - - #: ../glade/NewPrinterWindow.glade.h:5 - #, fuzzy --msgid "HP Printer (HPLIP) via network" --msgstr " मुद्रक नाम" -- --#: ../glade/NewPrinterWindow.glade.h:6 --#, fuzzy - msgid "IPP Printer" - msgstr " मुद्रक नाम" - --#: ../glade/NewPrinterWindow.glade.h:7 -+#: ../glade/NewPrinterWindow.glade.h:6 - #, fuzzy - msgid "License Terms" - msgstr " मुद्रक नाम" - --#: ../glade/NewPrinterWindow.glade.h:8 -+#: ../glade/NewPrinterWindow.glade.h:7 - msgid "Location of the LPD network printer" - msgstr "LPD संजाल मुद्रक का स्थान" - --#: ../glade/NewPrinterWindow.glade.h:9 -+#: ../glade/NewPrinterWindow.glade.h:8 - msgid "Location of the network printer" - msgstr "संजाल मुद्रक का स्थान" - --#: ../glade/NewPrinterWindow.glade.h:10 -+#: ../glade/NewPrinterWindow.glade.h:9 - msgid "Location (optional)" - msgstr " स्थान (वैकल्पिक)" - --#: ../glade/NewPrinterWindow.glade.h:11 -+#: ../glade/NewPrinterWindow.glade.h:10 - #, fuzzy - msgid "Network Printer" - msgstr "नया मुद्रक" - --#: ../glade/NewPrinterWindow.glade.h:12 -+#: ../glade/NewPrinterWindow.glade.h:11 - #, fuzzy - msgid "Note" - msgstr " स्थिति" - --#: ../glade/NewPrinterWindow.glade.h:13 -+#: ../glade/NewPrinterWindow.glade.h:12 - #, fuzzy - msgid "Output Quality" - msgstr " स्थिति" - --#: ../glade/NewPrinterWindow.glade.h:14 -+#: ../glade/NewPrinterWindow.glade.h:13 - msgid "Printer Name" - msgstr " मुद्रक नाम" - --#: ../glade/NewPrinterWindow.glade.h:15 -+#: ../glade/NewPrinterWindow.glade.h:14 - #, fuzzy - msgid "SMB Printer" - msgstr " मुद्रक नाम" - --#: ../glade/NewPrinterWindow.glade.h:16 -+#: ../glade/NewPrinterWindow.glade.h:15 - #, fuzzy - msgid "Select Driver" - msgstr " डिफ़ॉल्ट मुद्रक" - --#: ../glade/NewPrinterWindow.glade.h:17 -+#: ../glade/NewPrinterWindow.glade.h:16 - msgid "Settings of the serial port" - msgstr " क्रमिक पोर्ट की जमावट" - --#: ../glade/NewPrinterWindow.glade.h:18 -+#: ../glade/NewPrinterWindow.glade.h:17 - msgid "smb://[workgroup/]server[:port]/printer" - msgstr "smb://[workgroup/]server[:port]/printer" - --#: ../glade/NewPrinterWindow.glade.h:19 -+#: ../glade/NewPrinterWindow.glade.h:18 - #, fuzzy - msgid "Choose Class Members" - msgstr "" - "शब्दकूट जरूरी\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:20 -+#: ../glade/NewPrinterWindow.glade.h:19 - #, fuzzy - msgid "Choose Driver" - msgstr "" - "शब्दकूट जरूरी\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:21 -+#: ../glade/NewPrinterWindow.glade.h:20 - #, fuzzy - msgid "Describe Printer" - msgstr "" - "शब्दकूट जरूरी\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:22 -+#: ../glade/NewPrinterWindow.glade.h:21 - #, fuzzy - msgid "Existing Settings" - msgstr "" - "शब्दकूट जरूरी\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:23 -+#: ../glade/NewPrinterWindow.glade.h:22 - #, fuzzy - msgid "Installable Options" - msgstr "" - "शब्दकूट जरूरी\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:24 -+#: ../glade/NewPrinterWindow.glade.h:23 - #, fuzzy - msgid "Select Device" - msgstr "" - "शब्दकूट जरूरी\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:25 -+#: ../glade/NewPrinterWindow.glade.h:24 - msgid "Baud Rate" - msgstr "बॉड दर" - --#: ../glade/NewPrinterWindow.glade.h:26 -+#: ../glade/NewPrinterWindow.glade.h:25 - msgid "Browse..." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:27 -+#: ../glade/NewPrinterWindow.glade.h:26 - #, fuzzy - msgid "Comments..." - msgstr "टिप्पणी" - --#: ../glade/NewPrinterWindow.glade.h:28 -+#: ../glade/NewPrinterWindow.glade.h:27 - #, fuzzy - msgid "Connection" - msgstr "जोड़ रहा है" - --#: ../glade/NewPrinterWindow.glade.h:29 -+#: ../glade/NewPrinterWindow.glade.h:28 - msgid "Data Bits" - msgstr "डाटा बिट्स" - --#: ../glade/NewPrinterWindow.glade.h:30 -+#: ../glade/NewPrinterWindow.glade.h:29 - msgid "" - "Default\n" - "1200\n" -@@ -1853,7 +1849,7 @@ msgstr "" - "57600\n" - "115200" - --#: ../glade/NewPrinterWindow.glade.h:39 -+#: ../glade/NewPrinterWindow.glade.h:38 - msgid "" - "Default\n" - "8\n" -@@ -1863,7 +1859,7 @@ msgstr "" - "8\n" - "7" - --#: ../glade/NewPrinterWindow.glade.h:42 -+#: ../glade/NewPrinterWindow.glade.h:41 - msgid "" - "Default\n" - "None\n" -@@ -1875,7 +1871,7 @@ msgstr "" - "विसम\n" - "सम" - --#: ../glade/NewPrinterWindow.glade.h:46 -+#: ../glade/NewPrinterWindow.glade.h:45 - msgid "" - "Default\n" - "None\n" -@@ -1889,120 +1885,120 @@ msgstr "" - "RTS/CTS (हार्डवेयर)\n" - "DTR/DSR (हार्डवेयर)" - --#: ../glade/NewPrinterWindow.glade.h:51 -+#: ../glade/NewPrinterWindow.glade.h:50 - #: ../glade/PrinterPropertiesDialog.glade.h:35 - msgid "Description:" - msgstr "विवरणः" - --#: ../glade/NewPrinterWindow.glade.h:52 ../troubleshoot/DeviceListed.py:40 -+#: ../glade/NewPrinterWindow.glade.h:51 ../troubleshoot/DeviceListed.py:40 - msgid "Device URI" - msgstr "युक्ति URI" - --#: ../glade/NewPrinterWindow.glade.h:53 -+#: ../glade/NewPrinterWindow.glade.h:52 - msgid "Device description." - msgstr "युक्ति विवरणः" - --#: ../glade/NewPrinterWindow.glade.h:54 -+#: ../glade/NewPrinterWindow.glade.h:53 - msgid "DirectJet" - msgstr "DirectJet" - --#: ../glade/NewPrinterWindow.glade.h:56 -+#: ../glade/NewPrinterWindow.glade.h:55 - #, fuzzy - msgid "Driver details" - msgstr "चालक" - --#: ../glade/NewPrinterWindow.glade.h:57 -+#: ../glade/NewPrinterWindow.glade.h:56 - msgid "Empty" - msgstr "खाली" - --#: ../glade/NewPrinterWindow.glade.h:58 -+#: ../glade/NewPrinterWindow.glade.h:57 - msgid "Find _Queue..." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:59 -+#: ../glade/NewPrinterWindow.glade.h:58 - msgid "Flow Control" - msgstr "प्रवाह नियंत्रण" - --#: ../glade/NewPrinterWindow.glade.h:60 -+#: ../glade/NewPrinterWindow.glade.h:59 - msgid "" - "For the printer you have selected there are drivers available for download." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:61 -+#: ../glade/NewPrinterWindow.glade.h:60 - msgid "Free software" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:62 -+#: ../glade/NewPrinterWindow.glade.h:61 - msgid "Graphics:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:63 -+#: ../glade/NewPrinterWindow.glade.h:62 - #, fuzzy - msgid "Host:" - msgstr "होस्टनाम" - --#: ../glade/NewPrinterWindow.glade.h:64 -+#: ../glade/NewPrinterWindow.glade.h:63 - msgid "Human-readable description such as \"HP LaserJet with Duplexer\"" - msgstr "मानव पठनीय विवरण जैसे कि \"HP LaserJet with Duplexer\"" - --#: ../glade/NewPrinterWindow.glade.h:65 -+#: ../glade/NewPrinterWindow.glade.h:64 - msgid "Human-readable location such as \"Lab 1\"" - msgstr "मानव पठनीय स्थान जैसे कि \"Lab 1\"" - --#: ../glade/NewPrinterWindow.glade.h:67 -+#: ../glade/NewPrinterWindow.glade.h:66 - msgid "LPD" - msgstr "LPD" - --#: ../glade/NewPrinterWindow.glade.h:68 -+#: ../glade/NewPrinterWindow.glade.h:67 - msgid "License:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:69 -+#: ../glade/NewPrinterWindow.glade.h:68 - #, fuzzy - msgid "Line art:" - msgstr "मुद्रक स्थिति:" - --#: ../glade/NewPrinterWindow.glade.h:70 -+#: ../glade/NewPrinterWindow.glade.h:69 - #, fuzzy - msgid "Local Driver" - msgstr "स्थानीय मुद्रक" - --#: ../glade/NewPrinterWindow.glade.h:71 -+#: ../glade/NewPrinterWindow.glade.h:70 - #, fuzzy - msgid "Make and model:" - msgstr "निर्माण और मॉडल:" - --#: ../glade/NewPrinterWindow.glade.h:72 -+#: ../glade/NewPrinterWindow.glade.h:71 - msgid "Manufacturer" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:73 -+#: ../glade/NewPrinterWindow.glade.h:72 - #, fuzzy - msgid "Network" - msgstr "नया मुद्रक" - --#: ../glade/NewPrinterWindow.glade.h:75 -+#: ../glade/NewPrinterWindow.glade.h:74 - msgid "No, I do not accept this license" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:76 -+#: ../glade/NewPrinterWindow.glade.h:75 - msgid "Parity" - msgstr "समानता" - --#: ../glade/NewPrinterWindow.glade.h:78 -+#: ../glade/NewPrinterWindow.glade.h:77 - msgid "Patented algorithms" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:79 -+#: ../glade/NewPrinterWindow.glade.h:78 - msgid "Photo:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:80 -+#: ../glade/NewPrinterWindow.glade.h:79 - #, fuzzy - msgid "Port number:" - msgstr "पोर्ट संख्या" - --#: ../glade/NewPrinterWindow.glade.h:81 -+#: ../glade/NewPrinterWindow.glade.h:80 - #, fuzzy - msgid "" - "PostScript Printer Description (PPD) files can often be found on the driver " -@@ -2013,82 +2009,82 @@ msgstr "" - "मुद्रक के साथ आता है. पोस्टस्क्रिप्ट मुद्रक के लिये वे हमेशा Windows® चालक का " - "हिस्सा है." - --#: ../glade/NewPrinterWindow.glade.h:82 -+#: ../glade/NewPrinterWindow.glade.h:81 - #, fuzzy - msgid "Printer model:" - msgstr "मुद्रक नाम" - --#: ../glade/NewPrinterWindow.glade.h:83 -+#: ../glade/NewPrinterWindow.glade.h:82 - msgid "Probe" - msgstr "जांच" - --#: ../glade/NewPrinterWindow.glade.h:84 -+#: ../glade/NewPrinterWindow.glade.h:83 - #, fuzzy - msgid "Prompt user if authentication is required" - msgstr "सत्यापन" - --#: ../glade/NewPrinterWindow.glade.h:85 -+#: ../glade/NewPrinterWindow.glade.h:84 - #, fuzzy - msgid "Provide PPD file" - msgstr "PPD फाइल दें" - --#: ../glade/NewPrinterWindow.glade.h:86 -+#: ../glade/NewPrinterWindow.glade.h:85 - msgid "Queue:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:87 -+#: ../glade/NewPrinterWindow.glade.h:86 - msgid "SCSI" - msgstr "SCSI" - --#: ../glade/NewPrinterWindow.glade.h:88 -+#: ../glade/NewPrinterWindow.glade.h:87 - msgid "SMB" - msgstr "SMB" - --#: ../glade/NewPrinterWindow.glade.h:89 -+#: ../glade/NewPrinterWindow.glade.h:88 - msgid "Search for a printer driver to download" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:90 -+#: ../glade/NewPrinterWindow.glade.h:89 - #, fuzzy - msgid "Searching..." - msgstr "माप रहा है:" - --#: ../glade/NewPrinterWindow.glade.h:91 -+#: ../glade/NewPrinterWindow.glade.h:90 - msgid "Select A File" - msgstr "एक फ़ाइल चुनें" - --#: ../glade/NewPrinterWindow.glade.h:92 -+#: ../glade/NewPrinterWindow.glade.h:91 - #, fuzzy - msgid "Select printer from database" - msgstr "डाटाबेस से मुद्रक चुनें" - --#: ../glade/NewPrinterWindow.glade.h:93 -+#: ../glade/NewPrinterWindow.glade.h:92 - msgid "Serial" - msgstr "धारावाहिक" - --#: ../glade/NewPrinterWindow.glade.h:94 -+#: ../glade/NewPrinterWindow.glade.h:93 - #, fuzzy - msgid "Set authentication details now" - msgstr "सत्यापन" - --#: ../glade/NewPrinterWindow.glade.h:95 -+#: ../glade/NewPrinterWindow.glade.h:94 - msgid "Short name for this printer such as \"laserjet\"" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:96 -+#: ../glade/NewPrinterWindow.glade.h:95 - msgid "Supplier:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:97 -+#: ../glade/NewPrinterWindow.glade.h:96 - msgid "Support:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:98 -+#: ../glade/NewPrinterWindow.glade.h:97 - #, fuzzy - msgid "Text:" - msgstr "फिर सेट करें" - --#: ../glade/NewPrinterWindow.glade.h:99 -+#: ../glade/NewPrinterWindow.glade.h:98 - msgid "" - "The foomatic printer database contains various manufacturer provided " - "PostScript Printer Description (PPD) files and also can generate PPD files " -@@ -2100,20 +2096,20 @@ msgstr "" - "और साथ ही PPD फाइल बड़ी संख्या में (गैर पोस्टस्क्रिप्ट) मुद्रक उत्पन्न कर सकता है. लेकिन " - "सामान्य रूप से निर्माता PPD फाइल देता है मुद्रक के विशेष गुण में पहुंच के लिये." - --#: ../glade/NewPrinterWindow.glade.h:100 -+#: ../glade/NewPrinterWindow.glade.h:99 - msgid "" - "These drivers do not come from your operating system supplier and will not " - "be covered by their commercial support. See the support and license terms " - "of the driver's supplier." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:101 -+#: ../glade/NewPrinterWindow.glade.h:100 - msgid "" - "This driver supports additional hardware that may be installed in the " - "printer." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:102 -+#: ../glade/NewPrinterWindow.glade.h:101 - msgid "" - "This is done by assuming that options with the same name do have the same " - "meaning. Settings of options that are not present in the new PPD will be " -@@ -2123,7 +2119,7 @@ msgstr "" - "जमावट जो कि नये PPD में मौजूद नहीं है वह गुम हो जायेगा और नया PPD में सिरफ विकल्प मूलभूत " - "रूप में सेट किया जायेगा." - --#: ../glade/NewPrinterWindow.glade.h:103 -+#: ../glade/NewPrinterWindow.glade.h:102 - msgid "" - "This way all current option settings will be lost. The default settings of " - "the new PPD will be used. " -@@ -2131,43 +2127,43 @@ msgstr "" - "इस तरीके से सारे मौजूदा विकल्प जमावट खत्म हो जायेंगे. नया PPD का मूलभूत जमावट को प्रयोग " - "किया जायेगा." - --#: ../glade/NewPrinterWindow.glade.h:104 -+#: ../glade/NewPrinterWindow.glade.h:103 - msgid "Try to copy the option settings over from the old PPD. " - msgstr "पुराने PPD से विकल्प जमावट कॉपी करने को कोशिश करें. " - --#: ../glade/NewPrinterWindow.glade.h:105 -+#: ../glade/NewPrinterWindow.glade.h:104 - msgid "URI:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:107 -+#: ../glade/NewPrinterWindow.glade.h:106 - msgid "Use the new PPD (Postscript Printer Description) as is." - msgstr "नया PPD (पोस्टस्क्रिप्ट मुद्रक विवरण) का प्रयोग करें जैसा है." - --#: ../glade/NewPrinterWindow.glade.h:109 -+#: ../glade/NewPrinterWindow.glade.h:108 - msgid "" - "With this choice no driver download will be performed. In the next steps a " - "locally installed driver will be selected." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:110 -+#: ../glade/NewPrinterWindow.glade.h:109 - #, fuzzy - msgid "Yes, I accept this license" - msgstr "कार्य स्वीकार कर रहा है" - --#: ../glade/NewPrinterWindow.glade.h:111 -+#: ../glade/NewPrinterWindow.glade.h:110 - msgid "_Search" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:112 -+#: ../glade/NewPrinterWindow.glade.h:111 - msgid "_Verify..." - msgstr "जांचें (_V)..." - --#: ../glade/NewPrinterWindow.glade.h:113 -+#: ../glade/NewPrinterWindow.glade.h:112 - #: ../glade/PrinterPropertiesDialog.glade.h:128 - msgid "move left" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:114 -+#: ../glade/NewPrinterWindow.glade.h:113 - #: ../glade/PrinterPropertiesDialog.glade.h:129 - #, fuzzy - msgid "move right" -@@ -3109,7 +3105,7 @@ msgstr "" - msgid "Remember to load paper of type '%s' into the printer first." - msgstr "" - --#: ../troubleshoot/PrintTestPage.py:399 -+#: ../troubleshoot/PrintTestPage.py:416 - msgid "Error submitting test page" - msgstr "" - -@@ -3309,6 +3305,10 @@ msgid "Select default printer" - msgstr "डिफ़ॉल्ट मुद्रक बनायें" - - #, fuzzy -+#~ msgid "HP Printer (HPLIP) via network" -+#~ msgstr " मुद्रक नाम" -+ -+#, fuzzy - #~ msgid "Not Found" - #~ msgstr "नहीं मिला" - -diff -up system-config-printer-1.1.5/po/hr.po.git-1.1.x system-config-printer-1.1.5/po/hr.po ---- system-config-printer-1.1.5/po/hr.po.git-1.1.x 2009-03-03 22:21:46.000000000 +0000 -+++ system-config-printer-1.1.5/po/hr.po 2009-03-10 17:43:31.000000000 +0000 -@@ -2,7 +2,7 @@ msgid "" - msgstr "" - "Project-Id-Version: printconf 0\n" - "Report-Msgid-Bugs-To: https://bugzilla.redhat.com/bugzilla\n" --"POT-Creation-Date: 2009-03-02 23:22+0000\n" -+"POT-Creation-Date: 2009-03-10 16:51+0000\n" - "PO-Revision-Date: 2007-06-17 20:53+0100\n" - "Last-Translator: Renato Pavicic translator-shop.org>\n" - "Language-Team: Croatian \n" -@@ -49,11 +49,11 @@ msgstr "" - msgid "Enter IP address" - msgstr "Pisač je dodan" - --#: ../authconn.py:35 ../glade/NewPrinterWindow.glade.h:108 -+#: ../authconn.py:35 ../glade/NewPrinterWindow.glade.h:107 - msgid "Username:" - msgstr "Korisničko ime:" - --#: ../authconn.py:36 ../glade/NewPrinterWindow.glade.h:77 -+#: ../authconn.py:36 ../glade/NewPrinterWindow.glade.h:76 - msgid "Password:" - msgstr "Lozinka:" - -@@ -62,7 +62,7 @@ msgstr "Lozinka:" - msgid "Domain:" - msgstr "Gornja margina:" - --#: ../authconn.py:46 -+#: ../authconn.py:46 ../authconn.py:409 - #, fuzzy - msgid "Authentication" - msgstr "Autentifikacija" -@@ -71,45 +71,54 @@ msgstr "Autentifikacija" - msgid "Remember password" - msgstr "" - --#: ../authconn.py:211 ../authconn.py:232 -+#: ../authconn.py:208 -+#, python-format -+msgid "Unauthorized request (%s)" -+msgstr "" -+ -+#: ../authconn.py:209 -+msgid "You are not authorized to carry out therequested action." -+msgstr "" -+ -+#: ../authconn.py:212 ../authconn.py:233 - #, fuzzy - msgid "Operation canceled" - msgstr "Pravila postupaka:" - --#: ../authconn.py:253 -+#: ../authconn.py:250 - #, fuzzy, python-format - msgid "CUPS server error (%s)" - msgstr "Pogreška CUPS poslužitelja" - --#: ../authconn.py:255 ../errordialogs.py:57 --#: ../troubleshoot/PrintTestPage.py:400 -+#: ../authconn.py:252 ../errordialogs.py:56 ../errordialogs.py:70 -+msgid "CUPS server error" -+msgstr "Pogreška CUPS poslužitelja" -+ -+#: ../authconn.py:261 ../errordialogs.py:57 -+#: ../troubleshoot/PrintTestPage.py:417 - #, python-format - msgid "There was an error during the CUPS operation: '%s'." - msgstr "Došlo je do pogreške tijekom CUPS postupka: '%s'." - --#: ../authconn.py:258 -+#: ../authconn.py:264 - #, fuzzy - msgid "Retry" - msgstr "Poništi" - --#: ../authconn.py:379 ../authconn.py:381 ../errordialogs.py:65 ../pysmb.py:75 -+#: ../authconn.py:385 ../authconn.py:387 ../errordialogs.py:65 ../pysmb.py:75 - #: ../pysmb.py:77 - msgid "Not authorized" - msgstr "Nema dopuštenja" - --#: ../authconn.py:382 ../pysmb.py:78 -+#: ../authconn.py:388 ../pysmb.py:78 - msgid "The password may be incorrect." - msgstr "Lozinka nije ispravna" - --#: ../authconn.py:400 -+#: ../authconn.py:407 - #, fuzzy, python-format - msgid "Authentication (%s)" - msgstr "Autentifikacija" - --#: ../errordialogs.py:56 ../errordialogs.py:70 --msgid "CUPS server error" --msgstr "Pogreška CUPS poslužitelja" -- - #: ../errordialogs.py:66 - msgid "" - "The password may be incorrect, or the server may be configured to deny " -@@ -138,7 +147,7 @@ msgstr "Potrebna je nadogradnja" - msgid "Server error" - msgstr "Pogreška poslužitelja" - --#: ../errordialogs.py:82 ../system-config-printer.py:1219 -+#: ../errordialogs.py:82 ../system-config-printer.py:1223 - msgid "Not connected" - msgstr "Nije povezan" - -@@ -160,7 +169,7 @@ msgstr "" - msgid "_New Group from Selection" - msgstr "" - --#: ../GroupsPane.py:98 ../system-config-printer.py:393 -+#: ../GroupsPane.py:98 ../system-config-printer.py:397 - #, fuzzy - msgid "_Rename" - msgstr "_Otpusti" -@@ -229,7 +238,7 @@ msgid "Document" - msgstr "Dokument" - - #: ../jobviewer.py:212 ../my-default-printer.py:153 --#: ../system-config-printer.py:366 ../system-config-printer.py:1367 -+#: ../system-config-printer.py:370 ../system-config-printer.py:1371 - #: ../troubleshoot/PrintTestPage.py:84 - msgid "Printer" - msgstr "Pisač" -@@ -266,8 +275,8 @@ msgstr "Stanje ispisivanja" - - #: ../jobviewer.py:386 ../jobviewer.py:451 ../jobviewer.py:452 - #: ../jobviewer.py:492 ../jobviewer.py:600 ../jobviewer.py:727 --#: ../jobviewer.py:1196 ../jobviewer.py:1222 ../system-config-printer.py:2546 --#: ../glade/NewPrinterWindow.glade.h:106 -+#: ../jobviewer.py:1196 ../jobviewer.py:1222 ../system-config-printer.py:2556 -+#: ../glade/NewPrinterWindow.glade.h:105 - #: ../troubleshoot/ChooseNetworkPrinter.py:101 - #: ../troubleshoot/ChooseNetworkPrinter.py:102 - #: ../troubleshoot/ChooseNetworkPrinter.py:105 -@@ -360,12 +369,12 @@ msgstr "Zadrži do:" - msgid "Pending" - msgstr "Čekanje" - --#: ../jobviewer.py:591 ../system-config-printer.py:186 -+#: ../jobviewer.py:591 ../system-config-printer.py:190 - #: ../troubleshoot/PrintTestPage.py:43 - msgid "Processing" - msgstr "Obrada" - --#: ../jobviewer.py:592 ../system-config-printer.py:188 -+#: ../jobviewer.py:592 ../system-config-printer.py:192 - #: ../troubleshoot/PrintTestPage.py:44 - msgid "Stopped" - msgstr "Zaustavljeno " -@@ -479,8 +488,8 @@ msgstr "_Upotrijebi zadano sustavom" - msgid "_Set Default" - msgstr "_Postavi zadanim" - --#: ../my-default-printer.py:158 ../system-config-printer.py:423 --#: ../system-config-printer.py:3660 ../troubleshoot/ChooseNetworkPrinter.py:37 -+#: ../my-default-printer.py:158 ../system-config-printer.py:427 -+#: ../system-config-printer.py:3675 ../troubleshoot/ChooseNetworkPrinter.py:37 - #: ../troubleshoot/ChoosePrinter.py:38 - msgid "Location" - msgstr "Lokacija" -@@ -513,7 +522,7 @@ msgstr "Zadani pisač" - msgid "Authenticated" - msgstr "Autentifikacija" - --#: ../ppdippstr.py:50 ../system-config-printer.py:6259 -+#: ../ppdippstr.py:50 ../system-config-printer.py:6207 - #, fuzzy - msgid "None" - msgstr "bez" -@@ -733,132 +742,132 @@ msgstr "" - msgid "1200 dpi, photo, black + color cartridge, photo paper" - msgstr "" - --#: ../system-config-printer.py:127 -+#: ../system-config-printer.py:131 - msgid "To do this, select System->Administration->Firewall from the main menu." - msgstr "" - --#: ../system-config-printer.py:185 -+#: ../system-config-printer.py:189 - msgid "Idle" - msgstr "Neaktivno" - --#: ../system-config-printer.py:187 -+#: ../system-config-printer.py:191 - msgid "Busy" - msgstr "Zauzeto" - --#: ../system-config-printer.py:372 ../system-config-printer.py:1373 -+#: ../system-config-printer.py:376 ../system-config-printer.py:1377 - #, fuzzy - msgid "Class" - msgstr "Nova klasa" - --#: ../system-config-printer.py:399 -+#: ../system-config-printer.py:403 - #, fuzzy - msgid "Set As De_fault" - msgstr "_Postavi zadanim" - --#: ../system-config-printer.py:403 -+#: ../system-config-printer.py:407 - #, fuzzy - msgid "_Create class" - msgstr "Udaljene klase" - --#: ../system-config-printer.py:405 -+#: ../system-config-printer.py:409 - #, fuzzy - msgid "View Print _Queue" - msgstr "Novi pisač" - --#: ../system-config-printer.py:407 -+#: ../system-config-printer.py:411 - msgid "_Add to Group" - msgstr "" - --#: ../system-config-printer.py:409 -+#: ../system-config-printer.py:413 - msgid "Save Results as _Group" - msgstr "" - --#: ../system-config-printer.py:411 -+#: ../system-config-printer.py:415 - msgid "Save Filter as _Search Group" - msgstr "" - --#: ../system-config-printer.py:415 -+#: ../system-config-printer.py:419 - #, fuzzy - msgid "E_nabled" - msgstr "Omogućeno" - --#: ../system-config-printer.py:417 -+#: ../system-config-printer.py:421 - #, fuzzy - msgid "_Shared" - msgstr "Dijeljenje" - --#: ../system-config-printer.py:421 ../troubleshoot/ChooseNetworkPrinter.py:35 -+#: ../system-config-printer.py:425 ../troubleshoot/ChooseNetworkPrinter.py:35 - #: ../troubleshoot/ChoosePrinter.py:36 ../troubleshoot/DeviceListed.py:36 - msgid "Name" - msgstr "Naziv" - --#: ../system-config-printer.py:422 -+#: ../system-config-printer.py:426 - #, fuzzy - msgid "Description" - msgstr "Opis:" - --#: ../system-config-printer.py:424 -+#: ../system-config-printer.py:428 - msgid "Manufacturer / Model" - msgstr "" - - #. Printer state reasons list --#: ../system-config-printer.py:499 -+#: ../system-config-printer.py:503 - msgid "Message" - msgstr "Poruka" - --#: ../system-config-printer.py:534 -+#: ../system-config-printer.py:538 - #, fuzzy - msgid "Problems?" - msgstr "Ispitaj" - --#: ../system-config-printer.py:637 ../system-config-printer.py:639 -+#: ../system-config-printer.py:641 ../system-config-printer.py:643 - msgid "Members of this class" - msgstr "Članovi ove klase" - --#: ../system-config-printer.py:638 ../system-config-printer.py:640 -+#: ../system-config-printer.py:642 ../system-config-printer.py:644 - msgid "Others" - msgstr "Ostali" - --#: ../system-config-printer.py:641 -+#: ../system-config-printer.py:645 - msgid "Devices" - msgstr "Uređaji" - --#: ../system-config-printer.py:642 -+#: ../system-config-printer.py:646 - #, fuzzy - msgid "Connections" - msgstr "Povezivanje" - --#: ../system-config-printer.py:643 -+#: ../system-config-printer.py:647 - msgid "Makes" - msgstr "Makes" - --#: ../system-config-printer.py:644 -+#: ../system-config-printer.py:648 - msgid "Models" - msgstr "Modeli" - --#: ../system-config-printer.py:645 -+#: ../system-config-printer.py:649 - msgid "Drivers" - msgstr "Upravljački programi" - --#: ../system-config-printer.py:646 ../glade/NewPrinterWindow.glade.h:55 -+#: ../system-config-printer.py:650 ../glade/NewPrinterWindow.glade.h:54 - msgid "Downloadable Drivers" - msgstr "" - --#: ../system-config-printer.py:647 -+#: ../system-config-printer.py:651 - msgid "Users" - msgstr "Korisnici" - --#: ../system-config-printer.py:682 -+#: ../system-config-printer.py:686 - msgid "Automatic rotation" - msgstr "" - --#: ../system-config-printer.py:989 -+#: ../system-config-printer.py:993 - #, fuzzy, python-format - msgid "Printer Properties - '%s' on %s" - msgstr "Izvještaj pisača" - - #. The Conflict button was pressed. --#: ../system-config-printer.py:996 -+#: ../system-config-printer.py:1000 - msgid "" - "There are conflicting options.\n" - "Changes can only be applied after\n" -@@ -868,81 +877,81 @@ msgstr "" - "Izmjene mogu biti primijenjene\n" - "tek nakon razrješavanja sukoba." - --#: ../system-config-printer.py:1214 -+#: ../system-config-printer.py:1218 - #, python-format - msgid "Printer configuration - %s" - msgstr "Konfiguracija pisača - %s" - --#: ../system-config-printer.py:1217 -+#: ../system-config-printer.py:1221 - #, python-format - msgid "Connected to %s" - msgstr "Povezan s %s" - - #. Update our copy of the printer's settings. --#: ../system-config-printer.py:1257 ../system-config-printer.py:2042 -+#: ../system-config-printer.py:1261 ../system-config-printer.py:2046 - msgid "obtaining queue details" - msgstr "" - --#: ../system-config-printer.py:1295 -+#: ../system-config-printer.py:1299 - msgid "Remove from Group" - msgstr "" - --#: ../system-config-printer.py:1361 -+#: ../system-config-printer.py:1365 - #, fuzzy - msgid "Network printer (discovered)" - msgstr "Novi pisač" - --#: ../system-config-printer.py:1364 -+#: ../system-config-printer.py:1368 - msgid "Network class (discovered)" - msgstr "" - --#: ../system-config-printer.py:1370 ../system-config-printer.py:5524 --#: ../system-config-printer.py:5594 ../system-config-printer.py:5596 -+#: ../system-config-printer.py:1374 ../system-config-printer.py:5519 -+#: ../system-config-printer.py:5589 ../system-config-printer.py:5591 - msgid "Fax" - msgstr "" - --#: ../system-config-printer.py:1376 ../system-config-printer.py:1382 -+#: ../system-config-printer.py:1380 ../system-config-printer.py:1386 - #: ../troubleshoot/LocalOrRemote.py:30 - #, fuzzy - msgid "Network printer" - msgstr "Novi pisač" - --#: ../system-config-printer.py:1379 -+#: ../system-config-printer.py:1383 - #, fuzzy - msgid "Network print share" - msgstr "Novi pisač" - --#: ../system-config-printer.py:1508 ../glade/ConnectingDialog.glade.h:2 -+#: ../system-config-printer.py:1512 ../glade/ConnectingDialog.glade.h:2 - #, no-c-format, python-format - msgid "Opening connection to %s" - msgstr "" - --#: ../system-config-printer.py:1887 -+#: ../system-config-printer.py:1891 - msgid "Installable Options" - msgstr "Opcije instaliranja" - --#: ../system-config-printer.py:1888 -+#: ../system-config-printer.py:1892 - #: ../glade/PrinterPropertiesDialog.glade.h:109 - msgid "Printer Options" - msgstr "Opcije pisača" - --#: ../system-config-printer.py:1924 -+#: ../system-config-printer.py:1928 - #, python-format - msgid "modifying class %s" - msgstr "" - --#: ../system-config-printer.py:1926 ../system-config-printer.py:3019 --#: ../system-config-printer.py:3044 ../system-config-printer.py:6547 --#: ../system-config-printer.py:6559 ../system-config-printer.py:6581 -+#: ../system-config-printer.py:1930 ../system-config-printer.py:3037 -+#: ../system-config-printer.py:3062 ../system-config-printer.py:6495 -+#: ../system-config-printer.py:6507 ../system-config-printer.py:6529 - #, fuzzy, python-format - msgid "modifying printer %s" - msgstr "Konfiguriranje pisača" - --#: ../system-config-printer.py:1941 -+#: ../system-config-printer.py:1945 - msgid "This will delete this class!" - msgstr "Izbrisat ćete klasu!" - --#: ../system-config-printer.py:1942 -+#: ../system-config-printer.py:1946 - msgid "Proceed anyway?" - msgstr "Ipak nastaviti?" - -@@ -950,50 +959,50 @@ msgstr "Ipak nastaviti?" - #. but we have never fetched the server settings to see whether - #. the server is publishing shared printers. Fetch the settings - #. now so that we can update the "not published" label if necessary. --#: ../system-config-printer.py:2030 ../system-config-printer.py:3203 -+#: ../system-config-printer.py:2034 ../system-config-printer.py:3221 - #, fuzzy - msgid "fetching server settings" - msgstr "Osnovne postavke poslužitelja" - --#: ../system-config-printer.py:2100 -+#: ../system-config-printer.py:2104 - #, fuzzy - msgid "Set Default Printer" - msgstr "Zadani pisač" - --#: ../system-config-printer.py:2102 -+#: ../system-config-printer.py:2106 - msgid "Do you want to set this as the system-wide default printer?" - msgstr "" - --#: ../system-config-printer.py:2104 -+#: ../system-config-printer.py:2108 - #, fuzzy - msgid "Set as the _system-wide default printer" - msgstr "Ovo je zadani pisač" - --#: ../system-config-printer.py:2106 -+#: ../system-config-printer.py:2110 - msgid "_Clear my personal default setting" - msgstr "" - --#: ../system-config-printer.py:2107 -+#: ../system-config-printer.py:2111 - #, fuzzy - msgid "Set as my _personal default printer" - msgstr "Odaberi zadani pisač" - --#: ../system-config-printer.py:2112 -+#: ../system-config-printer.py:2116 - #, fuzzy - msgid "setting default printer" - msgstr "Odaberi zadani pisač" - --#: ../system-config-printer.py:2169 -+#: ../system-config-printer.py:2173 - #, fuzzy - msgid "printing test page" - msgstr "Ispiši probnu stranicu" - --#: ../system-config-printer.py:2182 ../system-config-printer.py:2217 --#: ../system-config-printer.py:5418 -+#: ../system-config-printer.py:2186 ../system-config-printer.py:2221 -+#: ../system-config-printer.py:5413 - msgid "Not possible" - msgstr "Nije ostvarivo" - --#: ../system-config-printer.py:2183 ../system-config-printer.py:2218 -+#: ../system-config-printer.py:2187 ../system-config-printer.py:2222 - msgid "" - "The remote server did not accept the print job, most likely because the " - "printer is not shared." -@@ -1001,20 +1010,20 @@ msgstr "" - "Udaljeni poslužitelj nije prihvatio ispisni zadatak. Najvjerojatniji razlog " - "je da pisač nije dijeljen." - --#: ../system-config-printer.py:2195 ../system-config-printer.py:2210 -+#: ../system-config-printer.py:2199 ../system-config-printer.py:2214 - msgid "Submitted" - msgstr "Podneseno" - --#: ../system-config-printer.py:2196 -+#: ../system-config-printer.py:2200 - #, python-format - msgid "Test page submitted as job %d" - msgstr "Probna stranica je podnesena kao zadatak %d" - --#: ../system-config-printer.py:2203 -+#: ../system-config-printer.py:2207 - msgid "sending maintenance command" - msgstr "" - --#: ../system-config-printer.py:2211 -+#: ../system-config-printer.py:2215 - #, fuzzy, python-format - msgid "Maintenance command submitted as job %d" - msgstr "Probna stranica je podnesena kao zadatak %d" -@@ -1022,75 +1031,75 @@ msgstr "Probna stranica je podnesena kao - #. The underlying cupsGetPPD2() function returned NULL without - #. setting an IPP error, so it'll be something like a failed - #. connection. --#: ../system-config-printer.py:2285 ../system-config-printer.py:2381 -+#: ../system-config-printer.py:2289 ../system-config-printer.py:2385 - msgid "Error" - msgstr "Pogreška" - --#: ../system-config-printer.py:2286 -+#: ../system-config-printer.py:2290 - msgid "There was a problem connecting to the CUPS server." - msgstr "Tijekom povezivanja s CUPS poslužiteljem došlo je do problema." - --#: ../system-config-printer.py:2382 -+#: ../system-config-printer.py:2386 - #, python-format - msgid "Option '%s' has value '%s' and cannot be edited." - msgstr "" - --#: ../system-config-printer.py:2466 -+#: ../system-config-printer.py:2476 - msgid "Marker levels are not reported for this printer." - msgstr "" - --#: ../system-config-printer.py:2763 -+#: ../system-config-printer.py:2773 - #, fuzzy - msgid "Cannot Rename" - msgstr "_Otpusti" - --#: ../system-config-printer.py:2764 -+#: ../system-config-printer.py:2774 - msgid "There are queued jobs." - msgstr "" - --#: ../system-config-printer.py:2822 -+#: ../system-config-printer.py:2840 - #, fuzzy - msgid "renaming printer" - msgstr "Konfiguriranje pisača" - - #. for classes make sure all members - #. will get added --#: ../system-config-printer.py:2907 -+#: ../system-config-printer.py:2925 - #, fuzzy - msgid "copying printer" - msgstr "Konfiguriranje pisača" - --#: ../system-config-printer.py:2971 -+#: ../system-config-printer.py:2989 - #, fuzzy, python-format - msgid "Really delete class '%s'?" - msgstr "Zaista izbrisati klasu %s?" - --#: ../system-config-printer.py:2973 -+#: ../system-config-printer.py:2991 - #, fuzzy, python-format - msgid "Really delete printer '%s'?" - msgstr "Zaista izbrisati pisač %s?" - --#: ../system-config-printer.py:2975 -+#: ../system-config-printer.py:2993 - #, fuzzy - msgid "Really delete selected destinations?" - msgstr "Zaista izbrisati pisač %s?" - --#: ../system-config-printer.py:2996 -+#: ../system-config-printer.py:3014 - #, fuzzy, python-format - msgid "deleting printer %s" - msgstr "Konfiguriranje pisača" - --#: ../system-config-printer.py:3070 -+#: ../system-config-printer.py:3088 - msgid "Publish Shared Printers" - msgstr "" - --#: ../system-config-printer.py:3071 -+#: ../system-config-printer.py:3089 - msgid "" - "Shared printers are not available to other people unless the 'Publish shared " - "printers' option is enabled in the server settings." - msgstr "" - --#: ../system-config-printer.py:3264 -+#: ../system-config-printer.py:3282 - #, fuzzy - msgid "modifying server settings" - msgstr "Osnovne postavke poslužitelja" -@@ -1101,105 +1110,105 @@ msgstr "Osnovne postavke poslužitelj - #. be unblocked. Unfortunately, this is not yet possible - #. (bug #440469). However, we can display a dialog to suggest - #. that now might be a good time to review the firewall settings. --#: ../system-config-printer.py:3289 -+#: ../system-config-printer.py:3307 - msgid "Review Firewall" - msgstr "" - --#: ../system-config-printer.py:3290 -+#: ../system-config-printer.py:3308 - msgid "" - "You may need to adjust the firewall to allow network printing to this " - "computer." - msgstr "" - --#: ../system-config-printer.py:3623 -+#: ../system-config-printer.py:3638 - msgid "Browsing not available (pysmbc not installed)" - msgstr "" - - #. SMB list columns --#: ../system-config-printer.py:3629 -+#: ../system-config-printer.py:3644 - msgid "Share" - msgstr "Dijeljenje" - --#: ../system-config-printer.py:3635 -+#: ../system-config-printer.py:3650 - msgid "Comment" - msgstr "Komentar" - - #. IPP list columns --#: ../system-config-printer.py:3654 -+#: ../system-config-printer.py:3669 - msgid "Queue" - msgstr "" - --#: ../system-config-printer.py:3668 -+#: ../system-config-printer.py:3683 - #, fuzzy - msgid "" - "PostScript Printer Description files (*.ppd, *.PPD, *.ppd.gz, *.PPD.gz, *." - "PPD.GZ)" - msgstr "PostScript opis pisača (*.ppd[.gz])" - --#: ../system-config-printer.py:3677 -+#: ../system-config-printer.py:3692 - msgid "All files (*)" - msgstr "" - --#: ../system-config-printer.py:3713 ../system-config-printer.py:5970 --#: ../system-config-printer.py:6008 ../applet.py:124 -+#: ../system-config-printer.py:3728 ../system-config-printer.py:5918 -+#: ../system-config-printer.py:5956 ../applet.py:124 - #, fuzzy - msgid "Search" - msgstr "Novi naziv za pisači" - --#: ../system-config-printer.py:3736 ../system-config-printer.py:3760 --#: ../glade/NewPrinterWindow.glade.h:74 -+#: ../system-config-printer.py:3751 ../system-config-printer.py:3775 -+#: ../glade/NewPrinterWindow.glade.h:73 - msgid "New Printer" - msgstr "Novi pisač" - --#: ../system-config-printer.py:3747 -+#: ../system-config-printer.py:3762 - msgid "New Class" - msgstr "Nova klasa" - --#: ../system-config-printer.py:3752 -+#: ../system-config-printer.py:3767 - msgid "Change Device URI" - msgstr "Promjeni URI uređaja" - --#: ../system-config-printer.py:3758 -+#: ../system-config-printer.py:3773 - msgid "Change Driver" - msgstr "Promijeni upr. program" - --#: ../system-config-printer.py:3927 ../system-config-printer.py:3993 --#: ../system-config-printer.py:4289 ../system-config-printer.py:4487 --#: ../system-config-printer.py:5772 ../system-config-printer.py:5995 -+#: ../system-config-printer.py:3942 ../system-config-printer.py:4008 -+#: ../system-config-printer.py:4304 ../system-config-printer.py:4502 -+#: ../system-config-printer.py:5762 ../system-config-printer.py:5943 - msgid "Searching" - msgstr "" - --#: ../system-config-printer.py:3928 -+#: ../system-config-printer.py:3943 - #, fuzzy - msgid "Searching for downloadable drivers" - msgstr "Novi naziv za pisači" - --#: ../system-config-printer.py:3994 ../system-config-printer.py:4290 -+#: ../system-config-printer.py:4009 ../system-config-printer.py:4305 - msgid "Searching for drivers" - msgstr "" - --#: ../system-config-printer.py:4488 ../system-config-printer.py:5773 -+#: ../system-config-printer.py:4503 ../system-config-printer.py:5763 - #, fuzzy - msgid "Searching for printers" - msgstr "Novi naziv za pisači" - --#: ../system-config-printer.py:4497 -+#: ../system-config-printer.py:4512 - #, fuzzy - msgid "fetching device list" - msgstr "Osnovne postavke poslužitelja" - - #. Tell the user why he needs the plugin --#: ../system-config-printer.py:4579 -+#: ../system-config-printer.py:4594 - msgid "For this printer a proprietary driver plugin from HP is available.\n" - msgstr "" - --#: ../system-config-printer.py:4582 -+#: ../system-config-printer.py:4597 - msgid "" - "The installation of the plugin is required for your printer to work.\n" - "\n" - msgstr "" - --#: ../system-config-printer.py:4585 -+#: ../system-config-printer.py:4600 - msgid "" - "Installing the plugin is optional, it completes or enhances the " - "functionality\n" -@@ -1207,299 +1216,291 @@ msgid "" - "\n" - msgstr "" - --#: ../system-config-printer.py:4589 -+#: ../system-config-printer.py:4604 - msgid "The plugin provides the following features:\n" - msgstr "" - --#: ../system-config-printer.py:4592 -+#: ../system-config-printer.py:4607 - msgid " - Printing support\n" - msgstr "" - --#: ../system-config-printer.py:4595 -+#: ../system-config-printer.py:4610 - msgid " - Faster printing\n" - msgstr "" - --#: ../system-config-printer.py:4598 -+#: ../system-config-printer.py:4613 - msgid " - Better printout quality\n" - msgstr "" - --#: ../system-config-printer.py:4601 -+#: ../system-config-printer.py:4616 - msgid " - Extra printing features\n" - msgstr "" - --#: ../system-config-printer.py:4604 -+#: ../system-config-printer.py:4619 - msgid " - Scanning support\n" - msgstr "" - --#: ../system-config-printer.py:4607 -+#: ../system-config-printer.py:4622 - msgid " - Faster scanning\n" - msgstr "" - --#: ../system-config-printer.py:4610 -+#: ../system-config-printer.py:4625 - msgid " - Better scanning image quality\n" - msgstr "" - --#: ../system-config-printer.py:4613 -+#: ../system-config-printer.py:4628 - msgid " - Faxing support\n" - msgstr "" - --#: ../system-config-printer.py:4616 -+#: ../system-config-printer.py:4631 - msgid " - Extra fax features\n" - msgstr "" - --#: ../system-config-printer.py:4619 -+#: ../system-config-printer.py:4634 - msgid " - Better Input/Output support\n" - msgstr "" - --#: ../system-config-printer.py:4622 -+#: ../system-config-printer.py:4637 - msgid " - Extra user interface features\n" - msgstr "" - --#: ../system-config-printer.py:4625 -+#: ../system-config-printer.py:4640 - msgid " - Other extra features\n" - msgstr "" - --#: ../system-config-printer.py:4630 -+#: ../system-config-printer.py:4645 - #, fuzzy - msgid "Install plugin" - msgstr "Opcije instaliranja" - --#: ../system-config-printer.py:4631 -+#: ../system-config-printer.py:4646 - #, fuzzy - msgid "Do not set up printer" - msgstr "Kopiraj pisač" - --#: ../system-config-printer.py:4632 -+#: ../system-config-printer.py:4647 - msgid "Set up without plugin" - msgstr "" - --#: ../system-config-printer.py:4634 ../troubleshoot/PrintTestPage.py:118 -+#: ../system-config-printer.py:4649 ../troubleshoot/PrintTestPage.py:118 - msgid "Yes" - msgstr "" - --#: ../system-config-printer.py:4635 ../troubleshoot/PrintTestPage.py:119 -+#: ../system-config-printer.py:4650 ../troubleshoot/PrintTestPage.py:119 - msgid "No" - msgstr "" - --#: ../system-config-printer.py:4809 ../system-config-printer.py:4813 -+#: ../system-config-printer.py:4824 ../system-config-printer.py:4828 - msgid " (Current)" - msgstr " (Trenutan)" - --#: ../system-config-printer.py:4845 --msgid "HP Printer (HPLIP)" --msgstr "" -- --#: ../system-config-printer.py:4886 -+#: ../system-config-printer.py:4881 - msgid "Other" - msgstr "Ostalo" - - #. device-info - #. PhysicalDevice obj - #. Separator? --#: ../system-config-printer.py:4902 -+#: ../system-config-printer.py:4897 - #, fuzzy - msgid "Network Printer" - msgstr "Novi pisač" - --#: ../system-config-printer.py:4906 -+#: ../system-config-printer.py:4901 - #, fuzzy - msgid "Find Network Printer" - msgstr "Novi pisač" - --#: ../system-config-printer.py:4979 ../system-config-printer.py:5376 -+#: ../system-config-printer.py:4974 ../system-config-printer.py:5371 - #, fuzzy - msgid "Scanning..." - msgstr "Omjer:" - --#: ../system-config-printer.py:5034 ../system-config-printer.py:5798 -+#: ../system-config-printer.py:5029 - #, fuzzy - msgid "No Print Shares" - msgstr "Novi pisač" - --#: ../system-config-printer.py:5035 -+#: ../system-config-printer.py:5030 - msgid "" - "There were no print shares found. Please check that the Samba service is " - "marked as trusted in your firewall configuration." - msgstr "" - --#: ../system-config-printer.py:5296 ../system-config-printer.py:5357 -+#: ../system-config-printer.py:5291 ../system-config-printer.py:5352 - msgid "Print Share Verified" - msgstr "" - --#: ../system-config-printer.py:5297 ../system-config-printer.py:5358 -+#: ../system-config-printer.py:5292 ../system-config-printer.py:5353 - msgid "This print share is accessible." - msgstr "Ovo je dijeljenje ispisa dostupno." - --#: ../system-config-printer.py:5302 ../system-config-printer.py:5362 -+#: ../system-config-printer.py:5297 ../system-config-printer.py:5357 - msgid "This print share is not accessible." - msgstr "Ovo dijeljenje ispisa nije dostupno." - --#: ../system-config-printer.py:5305 -+#: ../system-config-printer.py:5300 - #, fuzzy - msgid "Print Share Inaccessible" - msgstr "Ovo je dijeljenje ispisa dostupno." - --#: ../system-config-printer.py:5361 -+#: ../system-config-printer.py:5356 - msgid "Inaccessible" - msgstr "Nedostupno" - --#: ../system-config-printer.py:5419 -+#: ../system-config-printer.py:5414 - #, fuzzy, python-format - msgid "It is not possible to obtain a list of queues from '%s'." - msgstr "Tijekom povezivanja s CUPS poslužiteljem došlo je do problema." - --#: ../system-config-printer.py:5421 -+#: ../system-config-printer.py:5416 - msgid "" - "Obtaining a list of queues is a CUPS extension to IPP. Network printers do " - "not support it." - msgstr "" - --#: ../system-config-printer.py:5424 -+#: ../system-config-printer.py:5419 - msgid "No queues" - msgstr "" - --#: ../system-config-printer.py:5425 -+#: ../system-config-printer.py:5420 - msgid "There are no queues available." - msgstr "" - --#: ../system-config-printer.py:5516 -+#: ../system-config-printer.py:5511 - msgid "Parallel Port" - msgstr "" - --#: ../system-config-printer.py:5518 -+#: ../system-config-printer.py:5513 - #, fuzzy - msgid "Serial Port" - msgstr "Serijski" - --#: ../system-config-printer.py:5520 -+#: ../system-config-printer.py:5515 - #, fuzzy - msgid "USB" - msgstr "SMB" - --#: ../system-config-printer.py:5522 ../system-config-printer.py:5525 -+#: ../system-config-printer.py:5517 ../system-config-printer.py:5520 - msgid "HP Linux Imaging and Printing (HPLIP)" - msgstr "" - --#: ../system-config-printer.py:5527 -+#: ../system-config-printer.py:5522 - #, fuzzy - msgid "Hardware Abstraction Layer (HAL)" - msgstr "" - "Lokalni pisač otrkiven pomoću Hardverskog apsraktnog sloja (HAL - Hardware " - "Abstraction Layer)." - --#: ../system-config-printer.py:5529 -+#: ../system-config-printer.py:5524 - msgid "AppSocket/HP JetDirect" - msgstr "" - --#: ../system-config-printer.py:5538 -+#: ../system-config-printer.py:5533 - #, python-format - msgid "LPD/LPR queue '%s'" - msgstr "" - --#: ../system-config-printer.py:5540 -+#: ../system-config-printer.py:5535 - #, fuzzy - msgid "LPD/LPR queue" - msgstr "LPD" - --#: ../system-config-printer.py:5543 -+#: ../system-config-printer.py:5538 - msgid "Windows Printer via SAMBA" - msgstr "" - --#: ../system-config-printer.py:5545 ../glade/NewPrinterWindow.glade.h:66 -+#: ../system-config-printer.py:5540 ../glade/NewPrinterWindow.glade.h:65 - msgid "IPP" - msgstr "IPP" - --#: ../system-config-printer.py:5547 -+#: ../system-config-printer.py:5542 - msgid "HTTP" - msgstr "" - --#: ../system-config-printer.py:5632 -+#: ../system-config-printer.py:5624 - msgid "A printer connected to the parallel port." - msgstr "Pisač povezan na paralelan port." - --#: ../system-config-printer.py:5634 -+#: ../system-config-printer.py:5626 - msgid "A printer connected to a USB port." - msgstr "Pisač povezan na USB port." - --#: ../system-config-printer.py:5636 -+#: ../system-config-printer.py:5628 - msgid "" - "HPLIP software driving a printer, or the printer function of a multi-" - "function device." - msgstr "HPLIP softverski pisač ili funkcija pisača višenamjenskog uređaja." - --#: ../system-config-printer.py:5639 -+#: ../system-config-printer.py:5631 - msgid "" - "HPLIP software driving a fax machine, or the fax function of a multi-" - "function device." - msgstr "" - "HPLIP softverski faks uređaj ili funkcija faksa višenamjenskog uređaja." - --#: ../system-config-printer.py:5642 -+#: ../system-config-printer.py:5634 - msgid "Local printer detected by the Hardware Abstraction Layer (HAL)." - msgstr "" - "Lokalni pisač otrkiven pomoću Hardverskog apsraktnog sloja (HAL - Hardware " - "Abstraction Layer)." - --#: ../system-config-printer.py:5799 --msgid "HPLIP cannot find the device." --msgstr "" -- --#: ../system-config-printer.py:5881 -+#: ../system-config-printer.py:5831 - msgid "No printer was found at that address." - msgstr "" - --#: ../system-config-printer.py:6020 -+#: ../system-config-printer.py:5968 - #, fuzzy - msgid "-- Select from search results --" - msgstr "Pisač odaberi iz beze podataka" - --#: ../system-config-printer.py:6022 -+#: ../system-config-printer.py:5970 - msgid "-- No matches found --" - msgstr "" - --#: ../system-config-printer.py:6203 -+#: ../system-config-printer.py:6151 - msgid " (recommended)" - msgstr "(preporučeni)" - --#: ../system-config-printer.py:6217 -+#: ../system-config-printer.py:6165 - msgid "This PPD is generated by foomatic." - msgstr "Ovu PPD datoteku generirao je foomatic." - --#: ../system-config-printer.py:6241 -+#: ../system-config-printer.py:6189 - #, fuzzy - msgid "OpenPrinting" - msgstr "Ispisivanje" - --#: ../system-config-printer.py:6252 -+#: ../system-config-printer.py:6200 - msgid "Distributable" - msgstr "" - --#: ../system-config-printer.py:6293 -+#: ../system-config-printer.py:6241 - #, fuzzy - msgid ", " - msgstr " " - --#: ../system-config-printer.py:6298 -+#: ../system-config-printer.py:6246 - #, python-format - msgid "" - "\n" - "(%s)" - msgstr "" - --#: ../system-config-printer.py:6303 -+#: ../system-config-printer.py:6251 - msgid "No support contacts known" - msgstr "" - --#: ../system-config-printer.py:6307 ../system-config-printer.py:6320 -+#: ../system-config-printer.py:6255 ../system-config-printer.py:6268 - msgid "Not specified." - msgstr "" - - #. Foomatic database problem of some sort. --#: ../system-config-printer.py:6360 -+#: ../system-config-printer.py:6308 - msgid "Database error" - msgstr "Pogreška baze podataka" - --#: ../system-config-printer.py:6361 -+#: ../system-config-printer.py:6309 - #, python-format - msgid "The '%s' driver cannot be used with printer '%s %s'." - msgstr "Upravljački program '%s' nije moguće upotrijebiti za pisač '%s %s'." -@@ -1507,7 +1508,7 @@ msgstr "Upravljački program '%s' nije m - #. This printer references some XML that is not - #. installed by default. Point the user at the - #. package they need to install. --#: ../system-config-printer.py:6371 -+#: ../system-config-printer.py:6319 - #, python-format - msgid "You will need to install the '%s' package in order to use this driver." - msgstr "" -@@ -1515,59 +1516,59 @@ msgstr "" - "paket '%s'." - - #. This error came from trying to open the PPD file. --#: ../system-config-printer.py:6378 -+#: ../system-config-printer.py:6326 - msgid "PPD error" - msgstr "Pogreška PPD datoteke" - --#: ../system-config-printer.py:6380 -+#: ../system-config-printer.py:6328 - msgid "Failed to read PPD file. Possible reason follows:" - msgstr "Čitanje PPD datoteke nije uspjelo. Mogući razlozi:" - - #. Failed to get PPD downloaded from OpenPrinting XXX --#: ../system-config-printer.py:6397 -+#: ../system-config-printer.py:6345 - msgid "Downloadable drivers" - msgstr "" - --#: ../system-config-printer.py:6398 -+#: ../system-config-printer.py:6346 - msgid "Failed to download PPD." - msgstr "" - --#: ../system-config-printer.py:6405 -+#: ../system-config-printer.py:6353 - #, fuzzy - msgid "fetching PPD" - msgstr "Promijeni PPD" - --#: ../system-config-printer.py:6434 ../system-config-printer.py:6472 -+#: ../system-config-printer.py:6382 ../system-config-printer.py:6420 - #, fuzzy - msgid "No Installable Options" - msgstr "Opcije instaliranja" - --#: ../system-config-printer.py:6520 -+#: ../system-config-printer.py:6468 - #, fuzzy, python-format - msgid "adding printer %s" - msgstr "Konfiguriranje pisača" - --#: ../system-config-printer.py:6669 -+#: ../system-config-printer.py:6617 - msgid "Would you like to print a test page?" - msgstr "" - --#: ../system-config-printer.py:6722 -+#: ../system-config-printer.py:6670 - #, fuzzy - msgid "Install driver" - msgstr "Potraži upravljački program" - --#: ../system-config-printer.py:6723 ../troubleshoot/CheckPPDSanity.py:131 -+#: ../system-config-printer.py:6671 ../troubleshoot/CheckPPDSanity.py:131 - #, fuzzy, python-format - msgid "Printer '%s' requires the %s package but it is not currently installed." - msgstr "" - "Pisač '%s' potražuje paket %s, koji trenutno nije instaliran. Prije upotrebe " - "ovog pisača instalirajte taj paket." - --#: ../system-config-printer.py:6739 -+#: ../system-config-printer.py:6687 - msgid "Missing driver" - msgstr "Nedostaje upravljački program" - --#: ../system-config-printer.py:6740 -+#: ../system-config-printer.py:6688 - #, python-format - msgid "" - "Printer '%s' requires the '%s' program but it is not currently installed. " -@@ -1697,133 +1698,128 @@ msgstr "Unesite URI uređaja" - - #: ../glade/NewPrinterWindow.glade.h:5 - #, fuzzy --msgid "HP Printer (HPLIP) via network" --msgstr "Naziv pisača" -- --#: ../glade/NewPrinterWindow.glade.h:6 --#, fuzzy - msgid "IPP Printer" - msgstr "Naziv pisača" - --#: ../glade/NewPrinterWindow.glade.h:7 -+#: ../glade/NewPrinterWindow.glade.h:6 - #, fuzzy - msgid "License Terms" - msgstr "Naziv pisača" - --#: ../glade/NewPrinterWindow.glade.h:8 -+#: ../glade/NewPrinterWindow.glade.h:7 - msgid "Location of the LPD network printer" - msgstr "Lokacija LPD mrežnog pisača" - --#: ../glade/NewPrinterWindow.glade.h:9 -+#: ../glade/NewPrinterWindow.glade.h:8 - msgid "Location of the network printer" - msgstr "Lokacija mrežnog pisača" - --#: ../glade/NewPrinterWindow.glade.h:10 -+#: ../glade/NewPrinterWindow.glade.h:9 - msgid "Location (optional)" - msgstr "Lokacija (neobavezno)" - --#: ../glade/NewPrinterWindow.glade.h:11 -+#: ../glade/NewPrinterWindow.glade.h:10 - #, fuzzy - msgid "Network Printer" - msgstr "Novi pisač" - --#: ../glade/NewPrinterWindow.glade.h:12 -+#: ../glade/NewPrinterWindow.glade.h:11 - #, fuzzy - msgid "Note" - msgstr "Stanje" - --#: ../glade/NewPrinterWindow.glade.h:13 -+#: ../glade/NewPrinterWindow.glade.h:12 - #, fuzzy - msgid "Output Quality" - msgstr "Stanje" - --#: ../glade/NewPrinterWindow.glade.h:14 -+#: ../glade/NewPrinterWindow.glade.h:13 - msgid "Printer Name" - msgstr "Naziv pisača" - --#: ../glade/NewPrinterWindow.glade.h:15 -+#: ../glade/NewPrinterWindow.glade.h:14 - #, fuzzy - msgid "SMB Printer" - msgstr "Naziv pisača" - --#: ../glade/NewPrinterWindow.glade.h:16 -+#: ../glade/NewPrinterWindow.glade.h:15 - #, fuzzy - msgid "Select Driver" - msgstr "Zadani pisač" - --#: ../glade/NewPrinterWindow.glade.h:17 -+#: ../glade/NewPrinterWindow.glade.h:16 - msgid "Settings of the serial port" - msgstr "Postavke serijskog priključka" - --#: ../glade/NewPrinterWindow.glade.h:18 -+#: ../glade/NewPrinterWindow.glade.h:17 - msgid "smb://[workgroup/]server[:port]/printer" - msgstr "smb://[radnagrupa/]poslužitelj[:port]/pisač" - --#: ../glade/NewPrinterWindow.glade.h:19 -+#: ../glade/NewPrinterWindow.glade.h:18 - #, fuzzy - msgid "Choose Class Members" - msgstr "" - "Potrebna je lozinka\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:20 -+#: ../glade/NewPrinterWindow.glade.h:19 - #, fuzzy - msgid "Choose Driver" - msgstr "" - "Potrebna je lozinka\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:21 -+#: ../glade/NewPrinterWindow.glade.h:20 - #, fuzzy - msgid "Describe Printer" - msgstr "" - "Potrebna je lozinka\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:22 -+#: ../glade/NewPrinterWindow.glade.h:21 - #, fuzzy - msgid "Existing Settings" - msgstr "" - "Potrebna je lozinka\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:23 -+#: ../glade/NewPrinterWindow.glade.h:22 - #, fuzzy - msgid "Installable Options" - msgstr "" - "Potrebna je lozinka\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:24 -+#: ../glade/NewPrinterWindow.glade.h:23 - #, fuzzy - msgid "Select Device" - msgstr "" - "Potrebna je lozinka\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:25 -+#: ../glade/NewPrinterWindow.glade.h:24 - msgid "Baud Rate" - msgstr "Brzina podataka" - --#: ../glade/NewPrinterWindow.glade.h:26 -+#: ../glade/NewPrinterWindow.glade.h:25 - msgid "Browse..." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:27 -+#: ../glade/NewPrinterWindow.glade.h:26 - #, fuzzy - msgid "Comments..." - msgstr "Komentar" - --#: ../glade/NewPrinterWindow.glade.h:28 -+#: ../glade/NewPrinterWindow.glade.h:27 - #, fuzzy - msgid "Connection" - msgstr "Povezivanje" - --#: ../glade/NewPrinterWindow.glade.h:29 -+#: ../glade/NewPrinterWindow.glade.h:28 - msgid "Data Bits" - msgstr "Bitovi" - --#: ../glade/NewPrinterWindow.glade.h:30 -+#: ../glade/NewPrinterWindow.glade.h:29 - msgid "" - "Default\n" - "1200\n" -@@ -1845,7 +1841,7 @@ msgstr "" - "57600\n" - "115200" - --#: ../glade/NewPrinterWindow.glade.h:39 -+#: ../glade/NewPrinterWindow.glade.h:38 - msgid "" - "Default\n" - "8\n" -@@ -1855,7 +1851,7 @@ msgstr "" - "8\n" - "7" - --#: ../glade/NewPrinterWindow.glade.h:42 -+#: ../glade/NewPrinterWindow.glade.h:41 - msgid "" - "Default\n" - "None\n" -@@ -1867,7 +1863,7 @@ msgstr "" - "Neparno\n" - "Parno" - --#: ../glade/NewPrinterWindow.glade.h:46 -+#: ../glade/NewPrinterWindow.glade.h:45 - msgid "" - "Default\n" - "None\n" -@@ -1881,120 +1877,120 @@ msgstr "" - "RTS/CTS (hardverski)\n" - "DTR/DSR (hardverski)" - --#: ../glade/NewPrinterWindow.glade.h:51 -+#: ../glade/NewPrinterWindow.glade.h:50 - #: ../glade/PrinterPropertiesDialog.glade.h:35 - msgid "Description:" - msgstr "Opis:" - --#: ../glade/NewPrinterWindow.glade.h:52 ../troubleshoot/DeviceListed.py:40 -+#: ../glade/NewPrinterWindow.glade.h:51 ../troubleshoot/DeviceListed.py:40 - msgid "Device URI" - msgstr "URI uređaja" - --#: ../glade/NewPrinterWindow.glade.h:53 -+#: ../glade/NewPrinterWindow.glade.h:52 - msgid "Device description." - msgstr "Opis uređaja." - --#: ../glade/NewPrinterWindow.glade.h:54 -+#: ../glade/NewPrinterWindow.glade.h:53 - msgid "DirectJet" - msgstr "DirectJet" - --#: ../glade/NewPrinterWindow.glade.h:56 -+#: ../glade/NewPrinterWindow.glade.h:55 - #, fuzzy - msgid "Driver details" - msgstr "Upravljački programi" - --#: ../glade/NewPrinterWindow.glade.h:57 -+#: ../glade/NewPrinterWindow.glade.h:56 - msgid "Empty" - msgstr "Prazno" - --#: ../glade/NewPrinterWindow.glade.h:58 -+#: ../glade/NewPrinterWindow.glade.h:57 - msgid "Find _Queue..." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:59 -+#: ../glade/NewPrinterWindow.glade.h:58 - msgid "Flow Control" - msgstr "Nadzor protoka" - --#: ../glade/NewPrinterWindow.glade.h:60 -+#: ../glade/NewPrinterWindow.glade.h:59 - msgid "" - "For the printer you have selected there are drivers available for download." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:61 -+#: ../glade/NewPrinterWindow.glade.h:60 - msgid "Free software" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:62 -+#: ../glade/NewPrinterWindow.glade.h:61 - msgid "Graphics:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:63 -+#: ../glade/NewPrinterWindow.glade.h:62 - #, fuzzy - msgid "Host:" - msgstr "Naziv računala" - --#: ../glade/NewPrinterWindow.glade.h:64 -+#: ../glade/NewPrinterWindow.glade.h:63 - msgid "Human-readable description such as \"HP LaserJet with Duplexer\"" - msgstr "Razumljivi opis poput \"HP LaserJet s duplekserom\"" - --#: ../glade/NewPrinterWindow.glade.h:65 -+#: ../glade/NewPrinterWindow.glade.h:64 - msgid "Human-readable location such as \"Lab 1\"" - msgstr "Razumljivi opis lokacije poput \"Ured 1\"" - --#: ../glade/NewPrinterWindow.glade.h:67 -+#: ../glade/NewPrinterWindow.glade.h:66 - msgid "LPD" - msgstr "LPD" - --#: ../glade/NewPrinterWindow.glade.h:68 -+#: ../glade/NewPrinterWindow.glade.h:67 - msgid "License:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:69 -+#: ../glade/NewPrinterWindow.glade.h:68 - #, fuzzy - msgid "Line art:" - msgstr "Stanje pisača:" - --#: ../glade/NewPrinterWindow.glade.h:70 -+#: ../glade/NewPrinterWindow.glade.h:69 - #, fuzzy - msgid "Local Driver" - msgstr "Lokalni pisači" - --#: ../glade/NewPrinterWindow.glade.h:71 -+#: ../glade/NewPrinterWindow.glade.h:70 - #, fuzzy - msgid "Make and model:" - msgstr "Proizvođač i model:" - --#: ../glade/NewPrinterWindow.glade.h:72 -+#: ../glade/NewPrinterWindow.glade.h:71 - msgid "Manufacturer" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:73 -+#: ../glade/NewPrinterWindow.glade.h:72 - #, fuzzy - msgid "Network" - msgstr "Novi pisač" - --#: ../glade/NewPrinterWindow.glade.h:75 -+#: ../glade/NewPrinterWindow.glade.h:74 - msgid "No, I do not accept this license" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:76 -+#: ../glade/NewPrinterWindow.glade.h:75 - msgid "Parity" - msgstr "Paritet" - --#: ../glade/NewPrinterWindow.glade.h:78 -+#: ../glade/NewPrinterWindow.glade.h:77 - msgid "Patented algorithms" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:79 -+#: ../glade/NewPrinterWindow.glade.h:78 - msgid "Photo:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:80 -+#: ../glade/NewPrinterWindow.glade.h:79 - #, fuzzy - msgid "Port number:" - msgstr "Broj porta" - --#: ../glade/NewPrinterWindow.glade.h:81 -+#: ../glade/NewPrinterWindow.glade.h:80 - #, fuzzy - msgid "" - "PostScript Printer Description (PPD) files can often be found on the driver " -@@ -2006,82 +2002,82 @@ msgstr "" - "pisač. Za potrebe PostScript pisača one su često dijelom Windows® " - "upravljačkih programa." - --#: ../glade/NewPrinterWindow.glade.h:82 -+#: ../glade/NewPrinterWindow.glade.h:81 - #, fuzzy - msgid "Printer model:" - msgstr "Pisač je dodan" - --#: ../glade/NewPrinterWindow.glade.h:83 -+#: ../glade/NewPrinterWindow.glade.h:82 - msgid "Probe" - msgstr "Ispitaj" - --#: ../glade/NewPrinterWindow.glade.h:84 -+#: ../glade/NewPrinterWindow.glade.h:83 - #, fuzzy - msgid "Prompt user if authentication is required" - msgstr "Autentifikacija" - --#: ../glade/NewPrinterWindow.glade.h:85 -+#: ../glade/NewPrinterWindow.glade.h:84 - #, fuzzy - msgid "Provide PPD file" - msgstr "Pruži PPD datoteku" - --#: ../glade/NewPrinterWindow.glade.h:86 -+#: ../glade/NewPrinterWindow.glade.h:85 - msgid "Queue:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:87 -+#: ../glade/NewPrinterWindow.glade.h:86 - msgid "SCSI" - msgstr "SCSI" - --#: ../glade/NewPrinterWindow.glade.h:88 -+#: ../glade/NewPrinterWindow.glade.h:87 - msgid "SMB" - msgstr "SMB" - --#: ../glade/NewPrinterWindow.glade.h:89 -+#: ../glade/NewPrinterWindow.glade.h:88 - msgid "Search for a printer driver to download" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:90 -+#: ../glade/NewPrinterWindow.glade.h:89 - #, fuzzy - msgid "Searching..." - msgstr "Omjer:" - --#: ../glade/NewPrinterWindow.glade.h:91 -+#: ../glade/NewPrinterWindow.glade.h:90 - msgid "Select A File" - msgstr "Odaberi datoteku" - --#: ../glade/NewPrinterWindow.glade.h:92 -+#: ../glade/NewPrinterWindow.glade.h:91 - #, fuzzy - msgid "Select printer from database" - msgstr "Pisač odaberi iz beze podataka" - --#: ../glade/NewPrinterWindow.glade.h:93 -+#: ../glade/NewPrinterWindow.glade.h:92 - msgid "Serial" - msgstr "Serijski" - --#: ../glade/NewPrinterWindow.glade.h:94 -+#: ../glade/NewPrinterWindow.glade.h:93 - #, fuzzy - msgid "Set authentication details now" - msgstr "Autentifikacija" - --#: ../glade/NewPrinterWindow.glade.h:95 -+#: ../glade/NewPrinterWindow.glade.h:94 - msgid "Short name for this printer such as \"laserjet\"" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:96 -+#: ../glade/NewPrinterWindow.glade.h:95 - msgid "Supplier:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:97 -+#: ../glade/NewPrinterWindow.glade.h:96 - msgid "Support:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:98 -+#: ../glade/NewPrinterWindow.glade.h:97 - #, fuzzy - msgid "Text:" - msgstr "Poništi" - --#: ../glade/NewPrinterWindow.glade.h:99 -+#: ../glade/NewPrinterWindow.glade.h:98 - msgid "" - "The foomatic printer database contains various manufacturer provided " - "PostScript Printer Description (PPD) files and also can generate PPD files " -@@ -2094,20 +2090,20 @@ msgstr "" - "pisača koji nisu u PostScript standardu. Općenito, PPD datoteke izrađene od " - "strane proizvođača pružaju bolji pristup određenim osobinama pisača." - --#: ../glade/NewPrinterWindow.glade.h:100 -+#: ../glade/NewPrinterWindow.glade.h:99 - msgid "" - "These drivers do not come from your operating system supplier and will not " - "be covered by their commercial support. See the support and license terms " - "of the driver's supplier." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:101 -+#: ../glade/NewPrinterWindow.glade.h:100 - msgid "" - "This driver supports additional hardware that may be installed in the " - "printer." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:102 -+#: ../glade/NewPrinterWindow.glade.h:101 - msgid "" - "This is done by assuming that options with the same name do have the same " - "meaning. Settings of options that are not present in the new PPD will be " -@@ -2118,7 +2114,7 @@ msgstr "" - "izgubljene i opcije prisutne samo u novoj PPD datoteci bit će postavljene " - "kao zadana." - --#: ../glade/NewPrinterWindow.glade.h:103 -+#: ../glade/NewPrinterWindow.glade.h:102 - msgid "" - "This way all current option settings will be lost. The default settings of " - "the new PPD will be used. " -@@ -2126,46 +2122,46 @@ msgstr "" - "Na ovaj će način sve trenutačne opcije postavki biti izgubljene. Bit će " - "upotrijebljene zadana postavke nove PPD datoteke." - --#: ../glade/NewPrinterWindow.glade.h:104 -+#: ../glade/NewPrinterWindow.glade.h:103 - msgid "Try to copy the option settings over from the old PPD. " - msgstr "" - "Pokušajte s kopiranje postavki opcija i lijepljenjem preko stare PPD " - "datoteke." - --#: ../glade/NewPrinterWindow.glade.h:105 -+#: ../glade/NewPrinterWindow.glade.h:104 - msgid "URI:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:107 -+#: ../glade/NewPrinterWindow.glade.h:106 - msgid "Use the new PPD (Postscript Printer Description) as is." - msgstr "" - "Novu PPD datoteku (PostScript opis pisača) upotrijebi u izvornom obliku." - --#: ../glade/NewPrinterWindow.glade.h:109 -+#: ../glade/NewPrinterWindow.glade.h:108 - msgid "" - "With this choice no driver download will be performed. In the next steps a " - "locally installed driver will be selected." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:110 -+#: ../glade/NewPrinterWindow.glade.h:109 - #, fuzzy - msgid "Yes, I accept this license" - msgstr "Prihvaćanje zadataka" - --#: ../glade/NewPrinterWindow.glade.h:111 -+#: ../glade/NewPrinterWindow.glade.h:110 - msgid "_Search" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:112 -+#: ../glade/NewPrinterWindow.glade.h:111 - msgid "_Verify..." - msgstr "_Provjeri..." - --#: ../glade/NewPrinterWindow.glade.h:113 -+#: ../glade/NewPrinterWindow.glade.h:112 - #: ../glade/PrinterPropertiesDialog.glade.h:128 - msgid "move left" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:114 -+#: ../glade/NewPrinterWindow.glade.h:113 - #: ../glade/PrinterPropertiesDialog.glade.h:129 - #, fuzzy - msgid "move right" -@@ -3109,7 +3105,7 @@ msgstr "" - msgid "Remember to load paper of type '%s' into the printer first." - msgstr "" - --#: ../troubleshoot/PrintTestPage.py:399 -+#: ../troubleshoot/PrintTestPage.py:416 - msgid "Error submitting test page" - msgstr "" - -@@ -3302,6 +3298,10 @@ msgid "Select default printer" - msgstr "Odaberi zadani pisač" - - #, fuzzy -+#~ msgid "HP Printer (HPLIP) via network" -+#~ msgstr "Naziv pisača" -+ -+#, fuzzy - #~ msgid "Not Found" - #~ msgstr "Nije pronađen" - -diff -up system-config-printer-1.1.5/po/hu.po.git-1.1.x system-config-printer-1.1.5/po/hu.po ---- system-config-printer-1.1.5/po/hu.po.git-1.1.x 2009-03-03 22:21:46.000000000 +0000 -+++ system-config-printer-1.1.5/po/hu.po 2009-03-10 17:43:31.000000000 +0000 -@@ -9,7 +9,7 @@ msgid "" - msgstr "" - "Project-Id-Version: system-config-printer\n" - "Report-Msgid-Bugs-To: https://bugzilla.redhat.com/bugzilla\n" --"POT-Creation-Date: 2009-03-02 23:22+0000\n" -+"POT-Creation-Date: 2009-03-10 16:51+0000\n" - "PO-Revision-Date: 2009-02-24 10:41+0100\n" - "Last-Translator: KAMI \n" - "Language-Team: Hungarian \n" -@@ -55,11 +55,11 @@ msgstr "" - msgid "Enter IP address" - msgstr "Adja meg az IP címet" - --#: ../authconn.py:35 ../glade/NewPrinterWindow.glade.h:108 -+#: ../authconn.py:35 ../glade/NewPrinterWindow.glade.h:107 - msgid "Username:" - msgstr "Felhasználónév:" - --#: ../authconn.py:36 ../glade/NewPrinterWindow.glade.h:77 -+#: ../authconn.py:36 ../glade/NewPrinterWindow.glade.h:76 - msgid "Password:" - msgstr "Jelszó:" - -@@ -67,7 +67,7 @@ msgstr "Jelszó:" - msgid "Domain:" - msgstr "Tartomány:" - --#: ../authconn.py:46 -+#: ../authconn.py:46 ../authconn.py:409 - msgid "Authentication" - msgstr "Hitelesítés" - -@@ -75,43 +75,52 @@ msgstr "Hitelesítés" - msgid "Remember password" - msgstr "Jelszó megjegyzése" - --#: ../authconn.py:211 ../authconn.py:232 -+#: ../authconn.py:208 -+#, python-format -+msgid "Unauthorized request (%s)" -+msgstr "" -+ -+#: ../authconn.py:209 -+msgid "You are not authorized to carry out therequested action." -+msgstr "" -+ -+#: ../authconn.py:212 ../authconn.py:233 - msgid "Operation canceled" - msgstr "A művelet meg lett szakítva" - --#: ../authconn.py:253 -+#: ../authconn.py:250 - #, python-format - msgid "CUPS server error (%s)" - msgstr "CUPS-kiszolgálóhiba (%s)" - --#: ../authconn.py:255 ../errordialogs.py:57 --#: ../troubleshoot/PrintTestPage.py:400 -+#: ../authconn.py:252 ../errordialogs.py:56 ../errordialogs.py:70 -+msgid "CUPS server error" -+msgstr "CUPS-kiszolgálóhiba" -+ -+#: ../authconn.py:261 ../errordialogs.py:57 -+#: ../troubleshoot/PrintTestPage.py:417 - #, python-format - msgid "There was an error during the CUPS operation: '%s'." - msgstr "Hiba történt a CUPS-művelet közben: „%s”." - --#: ../authconn.py:258 -+#: ../authconn.py:264 - msgid "Retry" - msgstr "Újra" - --#: ../authconn.py:379 ../authconn.py:381 ../errordialogs.py:65 ../pysmb.py:75 -+#: ../authconn.py:385 ../authconn.py:387 ../errordialogs.py:65 ../pysmb.py:75 - #: ../pysmb.py:77 - msgid "Not authorized" - msgstr "Nincs jogosultság" - --#: ../authconn.py:382 ../pysmb.py:78 -+#: ../authconn.py:388 ../pysmb.py:78 - msgid "The password may be incorrect." - msgstr "Lehetséges, hogy helytelen a jelszó." - --#: ../authconn.py:400 -+#: ../authconn.py:407 - #, python-format - msgid "Authentication (%s)" - msgstr "Hitelesítés (%s)" - --#: ../errordialogs.py:56 ../errordialogs.py:70 --msgid "CUPS server error" --msgstr "CUPS-kiszolgálóhiba" -- - #: ../errordialogs.py:66 - msgid "" - "The password may be incorrect, or the server may be configured to deny " -@@ -140,7 +149,7 @@ msgstr "Frissítés szükséges" - msgid "Server error" - msgstr "Kiszolgálóhiba" - --#: ../errordialogs.py:82 ../system-config-printer.py:1219 -+#: ../errordialogs.py:82 ../system-config-printer.py:1223 - msgid "Not connected" - msgstr "Nincs csatlakoztatva" - -@@ -162,7 +171,7 @@ msgstr "Ú_j csoport" - msgid "_New Group from Selection" - msgstr "_Kiválasztásból új csoportot" - --#: ../GroupsPane.py:98 ../system-config-printer.py:393 -+#: ../GroupsPane.py:98 ../system-config-printer.py:397 - msgid "_Rename" - msgstr "Átne_vezés" - -@@ -230,7 +239,7 @@ msgid "Document" - msgstr "Dokumentum" - - #: ../jobviewer.py:212 ../my-default-printer.py:153 --#: ../system-config-printer.py:366 ../system-config-printer.py:1367 -+#: ../system-config-printer.py:370 ../system-config-printer.py:1371 - #: ../troubleshoot/PrintTestPage.py:84 - msgid "Printer" - msgstr "Nyomtató" -@@ -267,8 +276,8 @@ msgstr "Dokumentum nyomtatási állapota - - #: ../jobviewer.py:386 ../jobviewer.py:451 ../jobviewer.py:452 - #: ../jobviewer.py:492 ../jobviewer.py:600 ../jobviewer.py:727 --#: ../jobviewer.py:1196 ../jobviewer.py:1222 ../system-config-printer.py:2546 --#: ../glade/NewPrinterWindow.glade.h:106 -+#: ../jobviewer.py:1196 ../jobviewer.py:1222 ../system-config-printer.py:2556 -+#: ../glade/NewPrinterWindow.glade.h:105 - #: ../troubleshoot/ChooseNetworkPrinter.py:101 - #: ../troubleshoot/ChooseNetworkPrinter.py:102 - #: ../troubleshoot/ChooseNetworkPrinter.py:105 -@@ -356,12 +365,12 @@ msgstr "Visszatartás a hétvégéig" - msgid "Pending" - msgstr "Felfüggesztve" - --#: ../jobviewer.py:591 ../system-config-printer.py:186 -+#: ../jobviewer.py:591 ../system-config-printer.py:190 - #: ../troubleshoot/PrintTestPage.py:43 - msgid "Processing" - msgstr "Feldolgozás" - --#: ../jobviewer.py:592 ../system-config-printer.py:188 -+#: ../jobviewer.py:592 ../system-config-printer.py:192 - #: ../troubleshoot/PrintTestPage.py:44 - msgid "Stopped" - msgstr "Leállítva" -@@ -473,8 +482,8 @@ msgstr "A rendszer _alapértelmezéséne - msgid "_Set Default" - msgstr "_Beállítás alapértelmezettként" - --#: ../my-default-printer.py:158 ../system-config-printer.py:423 --#: ../system-config-printer.py:3660 ../troubleshoot/ChooseNetworkPrinter.py:37 -+#: ../my-default-printer.py:158 ../system-config-printer.py:427 -+#: ../system-config-printer.py:3675 ../troubleshoot/ChooseNetworkPrinter.py:37 - #: ../troubleshoot/ChoosePrinter.py:38 - msgid "Location" - msgstr "Hely" -@@ -503,7 +512,7 @@ msgstr "Alapértelmezett viselkedés" - msgid "Authenticated" - msgstr "Hitelesítve" - --#: ../ppdippstr.py:50 ../system-config-printer.py:6259 -+#: ../ppdippstr.py:50 ../system-config-printer.py:6207 - msgid "None" - msgstr "Nincs" - -@@ -716,125 +725,125 @@ msgstr "600 dpi, színes, fekete és sz - msgid "1200 dpi, photo, black + color cartridge, photo paper" - msgstr "1200 dpi, fotó, fekete és színes tintapatron, fotópapírra" - --#: ../system-config-printer.py:127 -+#: ../system-config-printer.py:131 - msgid "To do this, select System->Administration->Firewall from the main menu." - msgstr "" - "A beállítás elvégzéséhez válassza ki a Rendszer → Adminisztráció → Tűzfal " - "menüpontot a főmenüből." - --#: ../system-config-printer.py:185 -+#: ../system-config-printer.py:189 - msgid "Idle" - msgstr "Üresjárat" - --#: ../system-config-printer.py:187 -+#: ../system-config-printer.py:191 - msgid "Busy" - msgstr "Foglalt" - --#: ../system-config-printer.py:372 ../system-config-printer.py:1373 -+#: ../system-config-printer.py:376 ../system-config-printer.py:1377 - msgid "Class" - msgstr "Osztály" - --#: ../system-config-printer.py:399 -+#: ../system-config-printer.py:403 - msgid "Set As De_fault" - msgstr "_Alapértelmezettnek választ" - --#: ../system-config-printer.py:403 -+#: ../system-config-printer.py:407 - msgid "_Create class" - msgstr "Osztály _létrehozása" - --#: ../system-config-printer.py:405 -+#: ../system-config-printer.py:409 - msgid "View Print _Queue" - msgstr "Nyomtatási _sor megtekintése" - --#: ../system-config-printer.py:407 -+#: ../system-config-printer.py:411 - msgid "_Add to Group" - msgstr "_Hozzáadás csoporthoz" - --#: ../system-config-printer.py:409 -+#: ../system-config-printer.py:413 - msgid "Save Results as _Group" - msgstr "Eredmény mentése _csoportként" - --#: ../system-config-printer.py:411 -+#: ../system-config-printer.py:415 - msgid "Save Filter as _Search Group" - msgstr "Szűrő mentése _keresési _csoportként" - --#: ../system-config-printer.py:415 -+#: ../system-config-printer.py:419 - msgid "E_nabled" - msgstr "E_ngedélyezve" - --#: ../system-config-printer.py:417 -+#: ../system-config-printer.py:421 - msgid "_Shared" - msgstr "Me_gosztva" - --#: ../system-config-printer.py:421 ../troubleshoot/ChooseNetworkPrinter.py:35 -+#: ../system-config-printer.py:425 ../troubleshoot/ChooseNetworkPrinter.py:35 - #: ../troubleshoot/ChoosePrinter.py:36 ../troubleshoot/DeviceListed.py:36 - msgid "Name" - msgstr "Név" - --#: ../system-config-printer.py:422 -+#: ../system-config-printer.py:426 - msgid "Description" - msgstr "_Leírás" - --#: ../system-config-printer.py:424 -+#: ../system-config-printer.py:428 - msgid "Manufacturer / Model" - msgstr "Gyártó / Modell" - - #. Printer state reasons list --#: ../system-config-printer.py:499 -+#: ../system-config-printer.py:503 - msgid "Message" - msgstr "Üzenet" - --#: ../system-config-printer.py:534 -+#: ../system-config-printer.py:538 - msgid "Problems?" - msgstr "Hibaelhárítás" - --#: ../system-config-printer.py:637 ../system-config-printer.py:639 -+#: ../system-config-printer.py:641 ../system-config-printer.py:643 - msgid "Members of this class" - msgstr "Ezen osztály tagjai" - --#: ../system-config-printer.py:638 ../system-config-printer.py:640 -+#: ../system-config-printer.py:642 ../system-config-printer.py:644 - msgid "Others" - msgstr "Többi" - --#: ../system-config-printer.py:641 -+#: ../system-config-printer.py:645 - msgid "Devices" - msgstr "Eszközök" - --#: ../system-config-printer.py:642 -+#: ../system-config-printer.py:646 - msgid "Connections" - msgstr "Kapcsolatok" - --#: ../system-config-printer.py:643 -+#: ../system-config-printer.py:647 - msgid "Makes" - msgstr "Típusok" - --#: ../system-config-printer.py:644 -+#: ../system-config-printer.py:648 - msgid "Models" - msgstr "Modellek" - --#: ../system-config-printer.py:645 -+#: ../system-config-printer.py:649 - msgid "Drivers" - msgstr "Meghajtóprogramok" - --#: ../system-config-printer.py:646 ../glade/NewPrinterWindow.glade.h:55 -+#: ../system-config-printer.py:650 ../glade/NewPrinterWindow.glade.h:54 - msgid "Downloadable Drivers" - msgstr "Letölthető meghajtóprogramok" - --#: ../system-config-printer.py:647 -+#: ../system-config-printer.py:651 - msgid "Users" - msgstr "Felhasználók" - --#: ../system-config-printer.py:682 -+#: ../system-config-printer.py:686 - msgid "Automatic rotation" - msgstr "Önműködő forgatás" - --#: ../system-config-printer.py:989 -+#: ../system-config-printer.py:993 - #, python-format - msgid "Printer Properties - '%s' on %s" - msgstr "Nyomtató tulajdonságok – „%s” – %s" - - #. The Conflict button was pressed. --#: ../system-config-printer.py:996 -+#: ../system-config-printer.py:1000 - msgid "" - "There are conflicting options.\n" - "Changes can only be applied after\n" -@@ -844,78 +853,78 @@ msgstr "" - "A módosítások csak az ütközések\n" - "feloldása után léphetnek életbe." - --#: ../system-config-printer.py:1214 -+#: ../system-config-printer.py:1218 - #, python-format - msgid "Printer configuration - %s" - msgstr "Nyomtató beállítása - %s" - --#: ../system-config-printer.py:1217 -+#: ../system-config-printer.py:1221 - #, python-format - msgid "Connected to %s" - msgstr "Csatlakoztatva ide: %s" - - #. Update our copy of the printer's settings. --#: ../system-config-printer.py:1257 ../system-config-printer.py:2042 -+#: ../system-config-printer.py:1261 ../system-config-printer.py:2046 - msgid "obtaining queue details" - msgstr "Nyomtatási sor részleteinek lekérése" - --#: ../system-config-printer.py:1295 -+#: ../system-config-printer.py:1299 - msgid "Remove from Group" - msgstr "_Eltávolítás a csoportból" - --#: ../system-config-printer.py:1361 -+#: ../system-config-printer.py:1365 - msgid "Network printer (discovered)" - msgstr "Hálózati nyomtató (felfedezett)" - --#: ../system-config-printer.py:1364 -+#: ../system-config-printer.py:1368 - msgid "Network class (discovered)" - msgstr "Hálózati osztály (felfedezett)" - --#: ../system-config-printer.py:1370 ../system-config-printer.py:5524 --#: ../system-config-printer.py:5594 ../system-config-printer.py:5596 -+#: ../system-config-printer.py:1374 ../system-config-printer.py:5519 -+#: ../system-config-printer.py:5589 ../system-config-printer.py:5591 - msgid "Fax" - msgstr "Fax" - --#: ../system-config-printer.py:1376 ../system-config-printer.py:1382 -+#: ../system-config-printer.py:1380 ../system-config-printer.py:1386 - #: ../troubleshoot/LocalOrRemote.py:30 - msgid "Network printer" - msgstr "Hálózati nyomtató" - --#: ../system-config-printer.py:1379 -+#: ../system-config-printer.py:1383 - msgid "Network print share" - msgstr "Hálózati nyomtató-megosztás" - --#: ../system-config-printer.py:1508 ../glade/ConnectingDialog.glade.h:2 -+#: ../system-config-printer.py:1512 ../glade/ConnectingDialog.glade.h:2 - #, no-c-format, python-format - msgid "Opening connection to %s" - msgstr "Kapcsolat létrehozása a következővel: %s" - --#: ../system-config-printer.py:1887 -+#: ../system-config-printer.py:1891 - msgid "Installable Options" - msgstr "Telepíthető opciók" - --#: ../system-config-printer.py:1888 -+#: ../system-config-printer.py:1892 - #: ../glade/PrinterPropertiesDialog.glade.h:109 - msgid "Printer Options" - msgstr "Nyomtatóbeállítások" - --#: ../system-config-printer.py:1924 -+#: ../system-config-printer.py:1928 - #, python-format - msgid "modifying class %s" - msgstr "A(z) %s osztály módosítása" - --#: ../system-config-printer.py:1926 ../system-config-printer.py:3019 --#: ../system-config-printer.py:3044 ../system-config-printer.py:6547 --#: ../system-config-printer.py:6559 ../system-config-printer.py:6581 -+#: ../system-config-printer.py:1930 ../system-config-printer.py:3037 -+#: ../system-config-printer.py:3062 ../system-config-printer.py:6495 -+#: ../system-config-printer.py:6507 ../system-config-printer.py:6529 - #, python-format - msgid "modifying printer %s" - msgstr "%s nyomtató beállítása" - --#: ../system-config-printer.py:1941 -+#: ../system-config-printer.py:1945 - msgid "This will delete this class!" - msgstr "Ez az osztály így törlődni fog." - --#: ../system-config-printer.py:1942 -+#: ../system-config-printer.py:1946 - msgid "Proceed anyway?" - msgstr "Szeretné mégis folytatni?" - -@@ -923,44 +932,44 @@ msgstr "Szeretné mégis folytatni?" - #. but we have never fetched the server settings to see whether - #. the server is publishing shared printers. Fetch the settings - #. now so that we can update the "not published" label if necessary. --#: ../system-config-printer.py:2030 ../system-config-printer.py:3203 -+#: ../system-config-printer.py:2034 ../system-config-printer.py:3221 - msgid "fetching server settings" - msgstr "Kiszolgáló beállítások lekérése" - --#: ../system-config-printer.py:2100 -+#: ../system-config-printer.py:2104 - msgid "Set Default Printer" - msgstr "Alapértelmezett nyomtató" - --#: ../system-config-printer.py:2102 -+#: ../system-config-printer.py:2106 - msgid "Do you want to set this as the system-wide default printer?" - msgstr "Valóban be kívánja állítani a rendszer alapértelmezett nyomtatójaként?" - --#: ../system-config-printer.py:2104 -+#: ../system-config-printer.py:2108 - msgid "Set as the _system-wide default printer" - msgstr "Beállítás _rendszer alapértelmezett nyomtatóként" - --#: ../system-config-printer.py:2106 -+#: ../system-config-printer.py:2110 - msgid "_Clear my personal default setting" - msgstr "Saját alapértelmezett beállítások törlése" - --#: ../system-config-printer.py:2107 -+#: ../system-config-printer.py:2111 - msgid "Set as my _personal default printer" - msgstr "Beállítás _saját alapértelmezett nyomtatóként" - --#: ../system-config-printer.py:2112 -+#: ../system-config-printer.py:2116 - msgid "setting default printer" - msgstr "Alapértelmezett nyomtató kiválasztása" - --#: ../system-config-printer.py:2169 -+#: ../system-config-printer.py:2173 - msgid "printing test page" - msgstr "Tesztoldal nyomtatása" - --#: ../system-config-printer.py:2182 ../system-config-printer.py:2217 --#: ../system-config-printer.py:5418 -+#: ../system-config-printer.py:2186 ../system-config-printer.py:2221 -+#: ../system-config-printer.py:5413 - msgid "Not possible" - msgstr "Nem lehetséges" - --#: ../system-config-printer.py:2183 ../system-config-printer.py:2218 -+#: ../system-config-printer.py:2187 ../system-config-printer.py:2222 - msgid "" - "The remote server did not accept the print job, most likely because the " - "printer is not shared." -@@ -968,20 +977,20 @@ msgstr "" - "A távoli nyomtató nem fogadta el a nyomtatási feladatot – valószínűleg " - "azért, mert nincs megosztva a nyomtató." - --#: ../system-config-printer.py:2195 ../system-config-printer.py:2210 -+#: ../system-config-printer.py:2199 ../system-config-printer.py:2214 - msgid "Submitted" - msgstr "Elküldve" - --#: ../system-config-printer.py:2196 -+#: ../system-config-printer.py:2200 - #, python-format - msgid "Test page submitted as job %d" - msgstr "A tesztoldal elküldve a következő feladat-azonosítóval: %d" - --#: ../system-config-printer.py:2203 -+#: ../system-config-printer.py:2207 - msgid "sending maintenance command" - msgstr "Karbantartási parancs küldése" - --#: ../system-config-printer.py:2211 -+#: ../system-config-printer.py:2215 - #, python-format - msgid "Maintenance command submitted as job %d" - msgstr "A karbantartási feladat elküldve %d. feladatként" -@@ -989,65 +998,65 @@ msgstr "A karbantartási feladat elküld - #. The underlying cupsGetPPD2() function returned NULL without - #. setting an IPP error, so it'll be something like a failed - #. connection. --#: ../system-config-printer.py:2285 ../system-config-printer.py:2381 -+#: ../system-config-printer.py:2289 ../system-config-printer.py:2385 - msgid "Error" - msgstr "Hiba" - --#: ../system-config-printer.py:2286 -+#: ../system-config-printer.py:2290 - msgid "There was a problem connecting to the CUPS server." - msgstr "Hiba történt a CUPS-kiszolgálóhoz történő kapcsolódás közben." - --#: ../system-config-printer.py:2382 -+#: ../system-config-printer.py:2386 - #, python-format - msgid "Option '%s' has value '%s' and cannot be edited." - msgstr "„%s” beállítás „%s” értékkel rendelkezik és nem változtatható meg." - --#: ../system-config-printer.py:2466 -+#: ../system-config-printer.py:2476 - msgid "Marker levels are not reported for this printer." - msgstr "A jelölők szintjét a nyomtató nem jelzi" - --#: ../system-config-printer.py:2763 -+#: ../system-config-printer.py:2773 - msgid "Cannot Rename" - msgstr "Nem nevezhető át" - --#: ../system-config-printer.py:2764 -+#: ../system-config-printer.py:2774 - msgid "There are queued jobs." - msgstr "Dokumentumok vannak a nyomtatási sorban" - --#: ../system-config-printer.py:2822 -+#: ../system-config-printer.py:2840 - msgid "renaming printer" - msgstr "nyomtató átnevezése" - - #. for classes make sure all members - #. will get added --#: ../system-config-printer.py:2907 -+#: ../system-config-printer.py:2925 - msgid "copying printer" - msgstr "nyomtató másolása" - --#: ../system-config-printer.py:2971 -+#: ../system-config-printer.py:2989 - #, python-format - msgid "Really delete class '%s'?" - msgstr "Valóban törli „%s” osztályt?" - --#: ../system-config-printer.py:2973 -+#: ../system-config-printer.py:2991 - #, python-format - msgid "Really delete printer '%s'?" - msgstr "Valóban törli „%s” nyomtatót?" - --#: ../system-config-printer.py:2975 -+#: ../system-config-printer.py:2993 - msgid "Really delete selected destinations?" - msgstr "Valóban törli a kiválasztott célokat?" - --#: ../system-config-printer.py:2996 -+#: ../system-config-printer.py:3014 - #, python-format - msgid "deleting printer %s" - msgstr "„%s” nyomtató törlése" - --#: ../system-config-printer.py:3070 -+#: ../system-config-printer.py:3088 - msgid "Publish Shared Printers" - msgstr "Megosztott nyomtatók közzététele" - --#: ../system-config-printer.py:3071 -+#: ../system-config-printer.py:3089 - msgid "" - "Shared printers are not available to other people unless the 'Publish shared " - "printers' option is enabled in the server settings." -@@ -1056,7 +1065,7 @@ msgstr "" - "nyomtatók közzététele” beállítást nem engedélyezi a kiszolgáló beállítási " - "között." - --#: ../system-config-printer.py:3264 -+#: ../system-config-printer.py:3282 - msgid "modifying server settings" - msgstr "Kiszolgáló beállítások megváltoztatása" - -@@ -1066,11 +1075,11 @@ msgstr "Kiszolgáló beállítások megv - #. be unblocked. Unfortunately, this is not yet possible - #. (bug #440469). However, we can display a dialog to suggest - #. that now might be a good time to review the firewall settings. --#: ../system-config-printer.py:3289 -+#: ../system-config-printer.py:3307 - msgid "Review Firewall" - msgstr "Tűzfal-beállítások ellenőrzése" - --#: ../system-config-printer.py:3290 -+#: ../system-config-printer.py:3308 - msgid "" - "You may need to adjust the firewall to allow network printing to this " - "computer." -@@ -1078,86 +1087,86 @@ msgstr "" - "Esetenként a rendszer tűzfala további beállításokat igényel, hogy a hálózati " - "nyomtatás lehetséges legyen ezen a számítógépen keresztül." - --#: ../system-config-printer.py:3623 -+#: ../system-config-printer.py:3638 - msgid "Browsing not available (pysmbc not installed)" - msgstr "Tallózás nem lehetséges (pysmbc nincs telepítve)" - - #. SMB list columns --#: ../system-config-printer.py:3629 -+#: ../system-config-printer.py:3644 - msgid "Share" - msgstr "Megosztás" - --#: ../system-config-printer.py:3635 -+#: ../system-config-printer.py:3650 - msgid "Comment" - msgstr "Megjegyzés" - - #. IPP list columns --#: ../system-config-printer.py:3654 -+#: ../system-config-printer.py:3669 - msgid "Queue" - msgstr "Nyomtatási sor" - --#: ../system-config-printer.py:3668 -+#: ../system-config-printer.py:3683 - msgid "" - "PostScript Printer Description files (*.ppd, *.PPD, *.ppd.gz, *.PPD.gz, *." - "PPD.GZ)" - msgstr "" - "PostScript nyomtatóleíró-fájlok (*.ppd, *.PPD, *.ppd.gz, *.PPD.gz, *.PPD.GZ)" - --#: ../system-config-printer.py:3677 -+#: ../system-config-printer.py:3692 - msgid "All files (*)" - msgstr "Minden fájl (*)" - --#: ../system-config-printer.py:3713 ../system-config-printer.py:5970 --#: ../system-config-printer.py:6008 ../applet.py:124 -+#: ../system-config-printer.py:3728 ../system-config-printer.py:5918 -+#: ../system-config-printer.py:5956 ../applet.py:124 - msgid "Search" - msgstr "Keresés" - --#: ../system-config-printer.py:3736 ../system-config-printer.py:3760 --#: ../glade/NewPrinterWindow.glade.h:74 -+#: ../system-config-printer.py:3751 ../system-config-printer.py:3775 -+#: ../glade/NewPrinterWindow.glade.h:73 - msgid "New Printer" - msgstr "Új nyomtató" - --#: ../system-config-printer.py:3747 -+#: ../system-config-printer.py:3762 - msgid "New Class" - msgstr "Új osztály" - --#: ../system-config-printer.py:3752 -+#: ../system-config-printer.py:3767 - msgid "Change Device URI" - msgstr "Az eszköz URI azonosítójának módosítása" - --#: ../system-config-printer.py:3758 -+#: ../system-config-printer.py:3773 - msgid "Change Driver" - msgstr "Meghajtóprogram módosítása" - --#: ../system-config-printer.py:3927 ../system-config-printer.py:3993 --#: ../system-config-printer.py:4289 ../system-config-printer.py:4487 --#: ../system-config-printer.py:5772 ../system-config-printer.py:5995 -+#: ../system-config-printer.py:3942 ../system-config-printer.py:4008 -+#: ../system-config-printer.py:4304 ../system-config-printer.py:4502 -+#: ../system-config-printer.py:5762 ../system-config-printer.py:5943 - msgid "Searching" - msgstr "Keresés" - --#: ../system-config-printer.py:3928 -+#: ../system-config-printer.py:3943 - msgid "Searching for downloadable drivers" - msgstr "Letölthető meghajtóprogramok keresése" - --#: ../system-config-printer.py:3994 ../system-config-printer.py:4290 -+#: ../system-config-printer.py:4009 ../system-config-printer.py:4305 - msgid "Searching for drivers" - msgstr "Meghajtóprogramok keresése" - --#: ../system-config-printer.py:4488 ../system-config-printer.py:5773 -+#: ../system-config-printer.py:4503 ../system-config-printer.py:5763 - msgid "Searching for printers" - msgstr "Nyomtatók keresése" - --#: ../system-config-printer.py:4497 -+#: ../system-config-printer.py:4512 - msgid "fetching device list" - msgstr "eszközlista lekérése" - - #. Tell the user why he needs the plugin --#: ../system-config-printer.py:4579 -+#: ../system-config-printer.py:4594 - msgid "For this printer a proprietary driver plugin from HP is available.\n" - msgstr "" - "Ehhez a nyomtatóhoz zárt forráskódú bővítmény is elérhető a HP jóvoltából.\n" - --#: ../system-config-printer.py:4582 -+#: ../system-config-printer.py:4597 - msgid "" - "The installation of the plugin is required for your printer to work.\n" - "\n" -@@ -1165,7 +1174,7 @@ msgstr "" - "A nyomtató működéséhez elengedhetetlenül fontos a bővítmény telepítése.\n" - "\n" - --#: ../system-config-printer.py:4585 -+#: ../system-config-printer.py:4600 - msgid "" - "Installing the plugin is optional, it completes or enhances the " - "functionality\n" -@@ -1179,110 +1188,106 @@ msgstr "" - "lesznek elérhetőek.\n" - "\n" - --#: ../system-config-printer.py:4589 -+#: ../system-config-printer.py:4604 - msgid "The plugin provides the following features:\n" - msgstr "A bővítmény a következő szolgáltatásokat biztosítja:\n" - --#: ../system-config-printer.py:4592 -+#: ../system-config-printer.py:4607 - msgid " - Printing support\n" - msgstr " - Nyomtatás támogatás\n" - --#: ../system-config-printer.py:4595 -+#: ../system-config-printer.py:4610 - msgid " - Faster printing\n" - msgstr " - Gyorsabb nyomtatás\n" - --#: ../system-config-printer.py:4598 -+#: ../system-config-printer.py:4613 - msgid " - Better printout quality\n" - msgstr " - Jobb nyomtatási minőség\n" - --#: ../system-config-printer.py:4601 -+#: ../system-config-printer.py:4616 - msgid " - Extra printing features\n" - msgstr " - További nyomtatási szolgáltatások\n" - --#: ../system-config-printer.py:4604 -+#: ../system-config-printer.py:4619 - msgid " - Scanning support\n" - msgstr " - Lapolvasási képességek\n" - --#: ../system-config-printer.py:4607 -+#: ../system-config-printer.py:4622 - msgid " - Faster scanning\n" - msgstr " - Gyorsabb lapolvasás\n" - --#: ../system-config-printer.py:4610 -+#: ../system-config-printer.py:4625 - msgid " - Better scanning image quality\n" - msgstr " - Jobb lapolvasási képminőség\n" - --#: ../system-config-printer.py:4613 -+#: ../system-config-printer.py:4628 - msgid " - Faxing support\n" - msgstr " - Faxolás támogatása\n" - --#: ../system-config-printer.py:4616 -+#: ../system-config-printer.py:4631 - msgid " - Extra fax features\n" - msgstr " - Extra Faxolási lehetőségek\n" - --#: ../system-config-printer.py:4619 -+#: ../system-config-printer.py:4634 - msgid " - Better Input/Output support\n" - msgstr " - Jobb be- és kimeneti támogatás\n" - --#: ../system-config-printer.py:4622 -+#: ../system-config-printer.py:4637 - msgid " - Extra user interface features\n" - msgstr " - További felhasználói felület szolgáltatások\n" - --#: ../system-config-printer.py:4625 -+#: ../system-config-printer.py:4640 - msgid " - Other extra features\n" - msgstr " - Eszéb extra szolgáltatások\n" - --#: ../system-config-printer.py:4630 -+#: ../system-config-printer.py:4645 - msgid "Install plugin" - msgstr "Bővítmény telepítése" - --#: ../system-config-printer.py:4631 -+#: ../system-config-printer.py:4646 - msgid "Do not set up printer" - msgstr "Nyomtató beállításának kihagyása" - --#: ../system-config-printer.py:4632 -+#: ../system-config-printer.py:4647 - msgid "Set up without plugin" - msgstr "Beállítás bővítmény nélkül" - --#: ../system-config-printer.py:4634 ../troubleshoot/PrintTestPage.py:118 -+#: ../system-config-printer.py:4649 ../troubleshoot/PrintTestPage.py:118 - msgid "Yes" - msgstr "Igen" - --#: ../system-config-printer.py:4635 ../troubleshoot/PrintTestPage.py:119 -+#: ../system-config-printer.py:4650 ../troubleshoot/PrintTestPage.py:119 - msgid "No" - msgstr "Nem" - --#: ../system-config-printer.py:4809 ../system-config-printer.py:4813 -+#: ../system-config-printer.py:4824 ../system-config-printer.py:4828 - msgid " (Current)" - msgstr " (Aktuális)" - --#: ../system-config-printer.py:4845 --msgid "HP Printer (HPLIP)" --msgstr "HP Printer (HPLIP)" -- --#: ../system-config-printer.py:4886 -+#: ../system-config-printer.py:4881 - msgid "Other" - msgstr "Egyéb" - - #. device-info - #. PhysicalDevice obj - #. Separator? --#: ../system-config-printer.py:4902 -+#: ../system-config-printer.py:4897 - msgid "Network Printer" - msgstr "Hálózati nyomtató" - --#: ../system-config-printer.py:4906 -+#: ../system-config-printer.py:4901 - msgid "Find Network Printer" - msgstr "Hálózati nyomtató keresése" - --#: ../system-config-printer.py:4979 ../system-config-printer.py:5376 -+#: ../system-config-printer.py:4974 ../system-config-printer.py:5371 - msgid "Scanning..." - msgstr "Keresés..." - --#: ../system-config-printer.py:5034 ../system-config-printer.py:5798 -+#: ../system-config-printer.py:5029 - msgid "No Print Shares" - msgstr "Nincsenek nyomatómegosztások" - --#: ../system-config-printer.py:5035 -+#: ../system-config-printer.py:5030 - msgid "" - "There were no print shares found. Please check that the Samba service is " - "marked as trusted in your firewall configuration." -@@ -1290,32 +1295,32 @@ msgstr "" - "Nem találhatóak megosztott nyomtatók. Ellenőrizze, hogy a Samba kiszolgáló " - "szolgáltatás megbízhatónak van jelölve a tűzfal beállításaiban." - --#: ../system-config-printer.py:5296 ../system-config-printer.py:5357 -+#: ../system-config-printer.py:5291 ../system-config-printer.py:5352 - msgid "Print Share Verified" - msgstr "Nyomtató-megosztás ellenőrizve" - --#: ../system-config-printer.py:5297 ../system-config-printer.py:5358 -+#: ../system-config-printer.py:5292 ../system-config-printer.py:5353 - msgid "This print share is accessible." - msgstr "Ez a nyomtatási megosztás elérhető." - --#: ../system-config-printer.py:5302 ../system-config-printer.py:5362 -+#: ../system-config-printer.py:5297 ../system-config-printer.py:5357 - msgid "This print share is not accessible." - msgstr "Ez a nyomtatási megosztás nem elérhető." - --#: ../system-config-printer.py:5305 -+#: ../system-config-printer.py:5300 - msgid "Print Share Inaccessible" - msgstr "Nyomatómegosztások elérhetetlenek" - --#: ../system-config-printer.py:5361 -+#: ../system-config-printer.py:5356 - msgid "Inaccessible" - msgstr "Nem elérhető" - --#: ../system-config-printer.py:5419 -+#: ../system-config-printer.py:5414 - #, python-format - msgid "It is not possible to obtain a list of queues from '%s'." - msgstr "A(z) „%s” gépről nem lehet lekérdezni a nyomtatási sorok listáját." - --#: ../system-config-printer.py:5421 -+#: ../system-config-printer.py:5416 - msgid "" - "Obtaining a list of queues is a CUPS extension to IPP. Network printers do " - "not support it." -@@ -1323,69 +1328,69 @@ msgstr "" - "A nyomtatási sorok listájának lekérése egy, az IPP protokollhoz szánt CUPS " - "kiterjesztésen keresztül. A hálózati nyomtatók nem támogatják ezt a funkciót." - --#: ../system-config-printer.py:5424 -+#: ../system-config-printer.py:5419 - msgid "No queues" - msgstr "Nincs nyomtatási sor" - --#: ../system-config-printer.py:5425 -+#: ../system-config-printer.py:5420 - msgid "There are no queues available." - msgstr "Nincsen elérhető nyomtatási sor" - --#: ../system-config-printer.py:5516 -+#: ../system-config-printer.py:5511 - msgid "Parallel Port" - msgstr "Párhuzamos port" - --#: ../system-config-printer.py:5518 -+#: ../system-config-printer.py:5513 - msgid "Serial Port" - msgstr "Soros port" - --#: ../system-config-printer.py:5520 -+#: ../system-config-printer.py:5515 - msgid "USB" - msgstr "USB port" - --#: ../system-config-printer.py:5522 ../system-config-printer.py:5525 -+#: ../system-config-printer.py:5517 ../system-config-printer.py:5520 - msgid "HP Linux Imaging and Printing (HPLIP)" - msgstr "HP Linux Imaging and Printing (HPLIP)" - --#: ../system-config-printer.py:5527 -+#: ../system-config-printer.py:5522 - msgid "Hardware Abstraction Layer (HAL)" - msgstr "Hardverabsztrakciós Réteg (HAL)" - --#: ../system-config-printer.py:5529 -+#: ../system-config-printer.py:5524 - msgid "AppSocket/HP JetDirect" - msgstr "AppSocket/HP JetDirect" - --#: ../system-config-printer.py:5538 -+#: ../system-config-printer.py:5533 - #, python-format - msgid "LPD/LPR queue '%s'" - msgstr "" - --#: ../system-config-printer.py:5540 -+#: ../system-config-printer.py:5535 - #, fuzzy - msgid "LPD/LPR queue" - msgstr "LPD/LPR" - --#: ../system-config-printer.py:5543 -+#: ../system-config-printer.py:5538 - msgid "Windows Printer via SAMBA" - msgstr "Windows nyomtató SAMBA megosztáson" - --#: ../system-config-printer.py:5545 ../glade/NewPrinterWindow.glade.h:66 -+#: ../system-config-printer.py:5540 ../glade/NewPrinterWindow.glade.h:65 - msgid "IPP" - msgstr "IPP" - --#: ../system-config-printer.py:5547 -+#: ../system-config-printer.py:5542 - msgid "HTTP" - msgstr "HTTP" - --#: ../system-config-printer.py:5632 -+#: ../system-config-printer.py:5624 - msgid "A printer connected to the parallel port." - msgstr "A párhuzamos portra kapcsolt nyomtató." - --#: ../system-config-printer.py:5634 -+#: ../system-config-printer.py:5626 - msgid "A printer connected to a USB port." - msgstr "Egy USB-portra kapcsolt nyomtató." - --#: ../system-config-printer.py:5636 -+#: ../system-config-printer.py:5628 - msgid "" - "HPLIP software driving a printer, or the printer function of a multi-" - "function device." -@@ -1393,7 +1398,7 @@ msgstr "" - "Egy nyomtatót vagy egy többfunkciós eszköz nyomtatási funkcióját vezérlő " - "HPLIP meghajtóprogram." - --#: ../system-config-printer.py:5639 -+#: ../system-config-printer.py:5631 - msgid "" - "HPLIP software driving a fax machine, or the fax function of a multi-" - "function device." -@@ -1401,47 +1406,43 @@ msgstr "" - "Egy faxgépet vagy egy többfunkciós eszköz fax-funkcióját vezérlő HPLIP " - "meghajtóprogram." - --#: ../system-config-printer.py:5642 -+#: ../system-config-printer.py:5634 - msgid "Local printer detected by the Hardware Abstraction Layer (HAL)." - msgstr "A hardverabsztrakciós réteg (HAL) egy helyi nyomtatót érzékelt." - --#: ../system-config-printer.py:5799 --msgid "HPLIP cannot find the device." --msgstr "HPLIP nem találja az eszközt." -- --#: ../system-config-printer.py:5881 -+#: ../system-config-printer.py:5831 - msgid "No printer was found at that address." - msgstr "A megadott cymen nyomtató nem található." - --#: ../system-config-printer.py:6020 -+#: ../system-config-printer.py:5968 - msgid "-- Select from search results --" - msgstr "–– Válasszon a keresés eredményéből ––" - --#: ../system-config-printer.py:6022 -+#: ../system-config-printer.py:5970 - msgid "-- No matches found --" - msgstr "–– Nincs találat ––" - --#: ../system-config-printer.py:6203 -+#: ../system-config-printer.py:6151 - msgid " (recommended)" - msgstr " (javasolt)" - --#: ../system-config-printer.py:6217 -+#: ../system-config-printer.py:6165 - msgid "This PPD is generated by foomatic." - msgstr "Ezt a PPD fájlt a Foomatic készítette." - --#: ../system-config-printer.py:6241 -+#: ../system-config-printer.py:6189 - msgid "OpenPrinting" - msgstr "OpenPrinting" - --#: ../system-config-printer.py:6252 -+#: ../system-config-printer.py:6200 - msgid "Distributable" - msgstr "Terjeszthető" - --#: ../system-config-printer.py:6293 -+#: ../system-config-printer.py:6241 - msgid ", " - msgstr ", " - --#: ../system-config-printer.py:6298 -+#: ../system-config-printer.py:6246 - #, python-format - msgid "" - "\n" -@@ -1450,20 +1451,20 @@ msgstr "" - "\n" - "(%s)" - --#: ../system-config-printer.py:6303 -+#: ../system-config-printer.py:6251 - msgid "No support contacts known" - msgstr "Nincs ismert terméktámogatási kapcsolattartó" - --#: ../system-config-printer.py:6307 ../system-config-printer.py:6320 -+#: ../system-config-printer.py:6255 ../system-config-printer.py:6268 - msgid "Not specified." - msgstr "Nincs megadva." - - #. Foomatic database problem of some sort. --#: ../system-config-printer.py:6360 -+#: ../system-config-printer.py:6308 - msgid "Database error" - msgstr "Adatbázis-hiba" - --#: ../system-config-printer.py:6361 -+#: ../system-config-printer.py:6309 - #, python-format - msgid "The '%s' driver cannot be used with printer '%s %s'." - msgstr "„%s” meghajtóprogram nem használható ezzel a nyomtatóval: „%s %s”." -@@ -1471,62 +1472,62 @@ msgstr "„%s” meghajtóprogram nem ha - #. This printer references some XML that is not - #. installed by default. Point the user at the - #. package they need to install. --#: ../system-config-printer.py:6371 -+#: ../system-config-printer.py:6319 - #, python-format - msgid "You will need to install the '%s' package in order to use this driver." - msgstr "A meghajtóprogram használatához telepíteni kell a(z) „%s” csomagot." - - #. This error came from trying to open the PPD file. --#: ../system-config-printer.py:6378 -+#: ../system-config-printer.py:6326 - msgid "PPD error" - msgstr "PPD-fájl hiba" - --#: ../system-config-printer.py:6380 -+#: ../system-config-printer.py:6328 - msgid "Failed to read PPD file. Possible reason follows:" - msgstr "Nem sikerült beolvasni a PPD-fájlt. A lehetséges ok:" - - #. Failed to get PPD downloaded from OpenPrinting XXX --#: ../system-config-printer.py:6397 -+#: ../system-config-printer.py:6345 - msgid "Downloadable drivers" - msgstr "Letölthető meghajtóprogramok" - --#: ../system-config-printer.py:6398 -+#: ../system-config-printer.py:6346 - msgid "Failed to download PPD." - msgstr "Nem sikerült letölteni a PPD-fájlt." - --#: ../system-config-printer.py:6405 -+#: ../system-config-printer.py:6353 - msgid "fetching PPD" - msgstr "PPD-fájl letöltése" - --#: ../system-config-printer.py:6434 ../system-config-printer.py:6472 -+#: ../system-config-printer.py:6382 ../system-config-printer.py:6420 - msgid "No Installable Options" - msgstr "Nincs telepíthető opció" - --#: ../system-config-printer.py:6520 -+#: ../system-config-printer.py:6468 - #, python-format - msgid "adding printer %s" - msgstr "nyomtató hozzáadása: %s" - --#: ../system-config-printer.py:6669 -+#: ../system-config-printer.py:6617 - msgid "Would you like to print a test page?" - msgstr "Szeretne nyomtatni egy teszoldalt?" - --#: ../system-config-printer.py:6722 -+#: ../system-config-printer.py:6670 - msgid "Install driver" - msgstr "Meghajtóprogram telepítése" - --#: ../system-config-printer.py:6723 ../troubleshoot/CheckPPDSanity.py:131 -+#: ../system-config-printer.py:6671 ../troubleshoot/CheckPPDSanity.py:131 - #, python-format - msgid "Printer '%s' requires the %s package but it is not currently installed." - msgstr "" - "A(z) „%s” nyomtatóhoz szükség van a(z) %s csomagra, de az jelenleg nincs " - "telepítve." - --#: ../system-config-printer.py:6739 -+#: ../system-config-printer.py:6687 - msgid "Missing driver" - msgstr "Hiányzó meghajtóprogram" - --#: ../system-config-printer.py:6740 -+#: ../system-config-printer.py:6688 - #, python-format - msgid "" - "Printer '%s' requires the '%s' program but it is not currently installed. " -@@ -1664,108 +1665,104 @@ msgid "Enter device URI" - msgstr "Adja meg az eszköz URI azonosítóját" - - #: ../glade/NewPrinterWindow.glade.h:5 --msgid "HP Printer (HPLIP) via network" --msgstr "HP Printer (HPLIP) halózatra csatlakoztatva" -- --#: ../glade/NewPrinterWindow.glade.h:6 - msgid "IPP Printer" - msgstr "IPP nyomtató" - --#: ../glade/NewPrinterWindow.glade.h:7 -+#: ../glade/NewPrinterWindow.glade.h:6 - msgid "License Terms" - msgstr "Engedély" - --#: ../glade/NewPrinterWindow.glade.h:8 -+#: ../glade/NewPrinterWindow.glade.h:7 - msgid "Location of the LPD network printer" - msgstr "Az LPD hálózati nyomtató helye" - --#: ../glade/NewPrinterWindow.glade.h:9 -+#: ../glade/NewPrinterWindow.glade.h:8 - msgid "Location of the network printer" - msgstr "A hálózati nyomtató helye" - --#: ../glade/NewPrinterWindow.glade.h:10 -+#: ../glade/NewPrinterWindow.glade.h:9 - msgid "Location (optional)" - msgstr "Hely (nem kötelező)" - --#: ../glade/NewPrinterWindow.glade.h:11 -+#: ../glade/NewPrinterWindow.glade.h:10 - msgid "Network Printer" - msgstr "Hálózati nyomtató" - --#: ../glade/NewPrinterWindow.glade.h:12 -+#: ../glade/NewPrinterWindow.glade.h:11 - msgid "Note" - msgstr "Megjegyzés" - --#: ../glade/NewPrinterWindow.glade.h:13 -+#: ../glade/NewPrinterWindow.glade.h:12 - msgid "Output Quality" - msgstr "Nyomtatási minőség" - --#: ../glade/NewPrinterWindow.glade.h:14 -+#: ../glade/NewPrinterWindow.glade.h:13 - msgid "Printer Name" - msgstr "Nyomtatónév" - --#: ../glade/NewPrinterWindow.glade.h:15 -+#: ../glade/NewPrinterWindow.glade.h:14 - msgid "SMB Printer" - msgstr "SMB nyomtató" - --#: ../glade/NewPrinterWindow.glade.h:16 -+#: ../glade/NewPrinterWindow.glade.h:15 - msgid "Select Driver" - msgstr "Meghajtóprogram kiválasztása" - --#: ../glade/NewPrinterWindow.glade.h:17 -+#: ../glade/NewPrinterWindow.glade.h:16 - msgid "Settings of the serial port" - msgstr "A soros port beállításai" - --#: ../glade/NewPrinterWindow.glade.h:18 -+#: ../glade/NewPrinterWindow.glade.h:17 - msgid "smb://[workgroup/]server[:port]/printer" - msgstr "smb://[munkacsoport/]kiszolgáló[:port]/nyomtató" - --#: ../glade/NewPrinterWindow.glade.h:19 -+#: ../glade/NewPrinterWindow.glade.h:18 - msgid "Choose Class Members" - msgstr "" - "Osztály tagjainak kiválasztása" - --#: ../glade/NewPrinterWindow.glade.h:20 -+#: ../glade/NewPrinterWindow.glade.h:19 - msgid "Choose Driver" - msgstr "" - "Meghajtóprogram kiválasztása" - --#: ../glade/NewPrinterWindow.glade.h:21 -+#: ../glade/NewPrinterWindow.glade.h:20 - msgid "Describe Printer" - msgstr "Nyomtató leírása" - --#: ../glade/NewPrinterWindow.glade.h:22 -+#: ../glade/NewPrinterWindow.glade.h:21 - msgid "Existing Settings" - msgstr "Beállítások" - --#: ../glade/NewPrinterWindow.glade.h:23 -+#: ../glade/NewPrinterWindow.glade.h:22 - msgid "Installable Options" - msgstr "Telepíthető kiegészítők" - --#: ../glade/NewPrinterWindow.glade.h:24 -+#: ../glade/NewPrinterWindow.glade.h:23 - msgid "Select Device" - msgstr "Eszköz kiválasztása" - --#: ../glade/NewPrinterWindow.glade.h:25 -+#: ../glade/NewPrinterWindow.glade.h:24 - msgid "Baud Rate" - msgstr "Baud-ráta" - --#: ../glade/NewPrinterWindow.glade.h:26 -+#: ../glade/NewPrinterWindow.glade.h:25 - msgid "Browse..." - msgstr "Tallózás..." - --#: ../glade/NewPrinterWindow.glade.h:27 -+#: ../glade/NewPrinterWindow.glade.h:26 - msgid "Comments..." - msgstr "Megjegyzések..." - --#: ../glade/NewPrinterWindow.glade.h:28 -+#: ../glade/NewPrinterWindow.glade.h:27 - msgid "Connection" - msgstr "Kapcsolódás" - --#: ../glade/NewPrinterWindow.glade.h:29 -+#: ../glade/NewPrinterWindow.glade.h:28 - msgid "Data Bits" - msgstr "Adat beállítások" - --#: ../glade/NewPrinterWindow.glade.h:30 -+#: ../glade/NewPrinterWindow.glade.h:29 - msgid "" - "Default\n" - "1200\n" -@@ -1787,7 +1784,7 @@ msgstr "" - "57600\n" - "115200" - --#: ../glade/NewPrinterWindow.glade.h:39 -+#: ../glade/NewPrinterWindow.glade.h:38 - msgid "" - "Default\n" - "8\n" -@@ -1797,7 +1794,7 @@ msgstr "" - "8\n" - "7" - --#: ../glade/NewPrinterWindow.glade.h:42 -+#: ../glade/NewPrinterWindow.glade.h:41 - msgid "" - "Default\n" - "None\n" -@@ -1809,7 +1806,7 @@ msgstr "" - "Páratlan\n" - "Páros" - --#: ../glade/NewPrinterWindow.glade.h:46 -+#: ../glade/NewPrinterWindow.glade.h:45 - msgid "" - "Default\n" - "None\n" -@@ -1823,117 +1820,117 @@ msgstr "" - "RTS/CTS (hardveres)\n" - "DTR/DSR (hardveres)" - --#: ../glade/NewPrinterWindow.glade.h:51 -+#: ../glade/NewPrinterWindow.glade.h:50 - #: ../glade/PrinterPropertiesDialog.glade.h:35 - msgid "Description:" - msgstr "Leírás:" - --#: ../glade/NewPrinterWindow.glade.h:52 ../troubleshoot/DeviceListed.py:40 -+#: ../glade/NewPrinterWindow.glade.h:51 ../troubleshoot/DeviceListed.py:40 - msgid "Device URI" - msgstr "Az eszköz URI-ja" - --#: ../glade/NewPrinterWindow.glade.h:53 -+#: ../glade/NewPrinterWindow.glade.h:52 - msgid "Device description." - msgstr "Eszközleírás." - --#: ../glade/NewPrinterWindow.glade.h:54 -+#: ../glade/NewPrinterWindow.glade.h:53 - msgid "DirectJet" - msgstr "DirectJet" - --#: ../glade/NewPrinterWindow.glade.h:56 -+#: ../glade/NewPrinterWindow.glade.h:55 - msgid "Driver details" - msgstr "Meghajtóprogram részletei" - --#: ../glade/NewPrinterWindow.glade.h:57 -+#: ../glade/NewPrinterWindow.glade.h:56 - msgid "Empty" - msgstr "Üres" - --#: ../glade/NewPrinterWindow.glade.h:58 -+#: ../glade/NewPrinterWindow.glade.h:57 - msgid "Find _Queue..." - msgstr "Nyomtatási sor _keresése..." - --#: ../glade/NewPrinterWindow.glade.h:59 -+#: ../glade/NewPrinterWindow.glade.h:58 - msgid "Flow Control" - msgstr "Áramlásvezérlés" - --#: ../glade/NewPrinterWindow.glade.h:60 -+#: ../glade/NewPrinterWindow.glade.h:59 - msgid "" - "For the printer you have selected there are drivers available for download." - msgstr "" - "Letölthető az Ön által kiválasztott nyomtatóhoz tartozó meghajtóprogram." - --#: ../glade/NewPrinterWindow.glade.h:61 -+#: ../glade/NewPrinterWindow.glade.h:60 - msgid "Free software" - msgstr "Szabadszoftver" - --#: ../glade/NewPrinterWindow.glade.h:62 -+#: ../glade/NewPrinterWindow.glade.h:61 - msgid "Graphics:" - msgstr "Grafika:" - --#: ../glade/NewPrinterWindow.glade.h:63 -+#: ../glade/NewPrinterWindow.glade.h:62 - msgid "Host:" - msgstr "Kiszolgáló:" - - # duplexer: A component of a printer that - # allows for both sides of a page to be printed - # at the same time. --#: ../glade/NewPrinterWindow.glade.h:64 -+#: ../glade/NewPrinterWindow.glade.h:63 - msgid "Human-readable description such as \"HP LaserJet with Duplexer\"" - msgstr "Közérthető leírás, például: „HP LaserJet kétoldalas nyomtatással”" - --#: ../glade/NewPrinterWindow.glade.h:65 -+#: ../glade/NewPrinterWindow.glade.h:64 - msgid "Human-readable location such as \"Lab 1\"" - msgstr "Közérthető helymegadás, például: „1-es labor”" - --#: ../glade/NewPrinterWindow.glade.h:67 -+#: ../glade/NewPrinterWindow.glade.h:66 - msgid "LPD" - msgstr "LPD" - --#: ../glade/NewPrinterWindow.glade.h:68 -+#: ../glade/NewPrinterWindow.glade.h:67 - msgid "License:" - msgstr "Engedély:" - --#: ../glade/NewPrinterWindow.glade.h:69 -+#: ../glade/NewPrinterWindow.glade.h:68 - msgid "Line art:" - msgstr "Rajz:" - --#: ../glade/NewPrinterWindow.glade.h:70 -+#: ../glade/NewPrinterWindow.glade.h:69 - msgid "Local Driver" - msgstr "Helyi meghajtó" - --#: ../glade/NewPrinterWindow.glade.h:71 -+#: ../glade/NewPrinterWindow.glade.h:70 - msgid "Make and model:" - msgstr "Típus és modell:" - --#: ../glade/NewPrinterWindow.glade.h:72 -+#: ../glade/NewPrinterWindow.glade.h:71 - msgid "Manufacturer" - msgstr "Gyártó" - --#: ../glade/NewPrinterWindow.glade.h:73 -+#: ../glade/NewPrinterWindow.glade.h:72 - msgid "Network" - msgstr "Hálózat" - --#: ../glade/NewPrinterWindow.glade.h:75 -+#: ../glade/NewPrinterWindow.glade.h:74 - msgid "No, I do not accept this license" - msgstr "Nem fogadom el ezt az engedélyt" - --#: ../glade/NewPrinterWindow.glade.h:76 -+#: ../glade/NewPrinterWindow.glade.h:75 - msgid "Parity" - msgstr "Paritás" - --#: ../glade/NewPrinterWindow.glade.h:78 -+#: ../glade/NewPrinterWindow.glade.h:77 - msgid "Patented algorithms" - msgstr "Szabadalmaztatott algoritmus" - --#: ../glade/NewPrinterWindow.glade.h:79 -+#: ../glade/NewPrinterWindow.glade.h:78 - msgid "Photo:" - msgstr "Fotó:" - --#: ../glade/NewPrinterWindow.glade.h:80 -+#: ../glade/NewPrinterWindow.glade.h:79 - msgid "Port number:" - msgstr "Port:" - --#: ../glade/NewPrinterWindow.glade.h:81 -+#: ../glade/NewPrinterWindow.glade.h:80 - msgid "" - "PostScript Printer Description (PPD) files can often be found on the driver " - "disk that comes with the printer. For PostScript printers they are often " -@@ -1943,76 +1940,76 @@ msgstr "" - "mellékelt meghajtóprogram lemezén találhat. PostScript nyomtatók esetén ezek " - "általában a Windows® meghajtóprogram-csomagok részei." - --#: ../glade/NewPrinterWindow.glade.h:82 -+#: ../glade/NewPrinterWindow.glade.h:81 - msgid "Printer model:" - msgstr "Nyomtató típusa:" - --#: ../glade/NewPrinterWindow.glade.h:83 -+#: ../glade/NewPrinterWindow.glade.h:82 - msgid "Probe" - msgstr "Lekérdezés" - --#: ../glade/NewPrinterWindow.glade.h:84 -+#: ../glade/NewPrinterWindow.glade.h:83 - msgid "Prompt user if authentication is required" - msgstr "Felhasználónév kérése, ha hitelesítés szükséges" - --#: ../glade/NewPrinterWindow.glade.h:85 -+#: ../glade/NewPrinterWindow.glade.h:84 - msgid "Provide PPD file" - msgstr "PPD-fájl megadása" - --#: ../glade/NewPrinterWindow.glade.h:86 -+#: ../glade/NewPrinterWindow.glade.h:85 - msgid "Queue:" - msgstr "Nyomtatási sor:" - --#: ../glade/NewPrinterWindow.glade.h:87 -+#: ../glade/NewPrinterWindow.glade.h:86 - msgid "SCSI" - msgstr "SCSI" - --#: ../glade/NewPrinterWindow.glade.h:88 -+#: ../glade/NewPrinterWindow.glade.h:87 - msgid "SMB" - msgstr "SMB" - --#: ../glade/NewPrinterWindow.glade.h:89 -+#: ../glade/NewPrinterWindow.glade.h:88 - msgid "Search for a printer driver to download" - msgstr "Letölthető nyomtatóvezérlő keresése" - --#: ../glade/NewPrinterWindow.glade.h:90 -+#: ../glade/NewPrinterWindow.glade.h:89 - #, fuzzy - msgid "Searching..." - msgstr "Keresés" - --#: ../glade/NewPrinterWindow.glade.h:91 -+#: ../glade/NewPrinterWindow.glade.h:90 - msgid "Select A File" - msgstr "Válasszon egy fájlt" - --#: ../glade/NewPrinterWindow.glade.h:92 -+#: ../glade/NewPrinterWindow.glade.h:91 - msgid "Select printer from database" - msgstr "Nyomtató kiválasztása az adatbázisból" - --#: ../glade/NewPrinterWindow.glade.h:93 -+#: ../glade/NewPrinterWindow.glade.h:92 - msgid "Serial" - msgstr "Soros" - --#: ../glade/NewPrinterWindow.glade.h:94 -+#: ../glade/NewPrinterWindow.glade.h:93 - msgid "Set authentication details now" - msgstr "Hitelesítés beállítások elvégzése" - --#: ../glade/NewPrinterWindow.glade.h:95 -+#: ../glade/NewPrinterWindow.glade.h:94 - msgid "Short name for this printer such as \"laserjet\"" - msgstr "A nyomtató rövid elnevezése, például: „laserjet”" - --#: ../glade/NewPrinterWindow.glade.h:96 -+#: ../glade/NewPrinterWindow.glade.h:95 - msgid "Supplier:" - msgstr "Szállító:" - --#: ../glade/NewPrinterWindow.glade.h:97 -+#: ../glade/NewPrinterWindow.glade.h:96 - msgid "Support:" - msgstr "Technikai támogatás:" - --#: ../glade/NewPrinterWindow.glade.h:98 -+#: ../glade/NewPrinterWindow.glade.h:97 - msgid "Text:" - msgstr "Szöveg:" - --#: ../glade/NewPrinterWindow.glade.h:99 -+#: ../glade/NewPrinterWindow.glade.h:98 - msgid "" - "The foomatic printer database contains various manufacturer provided " - "PostScript Printer Description (PPD) files and also can generate PPD files " -@@ -2025,7 +2022,7 @@ msgstr "" - "PostScript-) nyomtatóhoz tud PPD-fájlt készíteni. Általában a gyártó által " - "adott PPD-fájlok jobban kihasználják a nyomtató képességeit." - --#: ../glade/NewPrinterWindow.glade.h:100 -+#: ../glade/NewPrinterWindow.glade.h:99 - msgid "" - "These drivers do not come from your operating system supplier and will not " - "be covered by their commercial support. See the support and license terms " -@@ -2035,7 +2032,7 @@ msgstr "" - "és nem vonatkoznak rá a kereskedelmi támogatás feltételei. Tekintse meg a " - "meghajtóprogram szállítójának támogatás és engedély leírását." - --#: ../glade/NewPrinterWindow.glade.h:101 -+#: ../glade/NewPrinterWindow.glade.h:100 - msgid "" - "This driver supports additional hardware that may be installed in the " - "printer." -@@ -2043,7 +2040,7 @@ msgstr "" - "Ez a meghajtóprogram további hardver összetevőket támogat, amiket a nyomtató " - "tartalmazhat." - --#: ../glade/NewPrinterWindow.glade.h:102 -+#: ../glade/NewPrinterWindow.glade.h:101 - msgid "" - "This is done by assuming that options with the same name do have the same " - "meaning. Settings of options that are not present in the new PPD will be " -@@ -2054,7 +2051,7 @@ msgstr "" - "fájlban nincsenek jelen; amelyek pedig csak az új PPD fájlban szerepelnek, " - "az alapértelmezett értéket kapják." - --#: ../glade/NewPrinterWindow.glade.h:103 -+#: ../glade/NewPrinterWindow.glade.h:102 - msgid "" - "This way all current option settings will be lost. The default settings of " - "the new PPD will be used. " -@@ -2062,20 +2059,20 @@ msgstr "" - "Így az összes jelenlegi beállítás elvész. Az új PPD alapértelmezett " - "beállításai lesznek használva. " - --#: ../glade/NewPrinterWindow.glade.h:104 -+#: ../glade/NewPrinterWindow.glade.h:103 - msgid "Try to copy the option settings over from the old PPD. " - msgstr "A régi PPD beállításainak átmásolásának megkísérlése. " - --#: ../glade/NewPrinterWindow.glade.h:105 -+#: ../glade/NewPrinterWindow.glade.h:104 - msgid "URI:" - msgstr "URI:" - --#: ../glade/NewPrinterWindow.glade.h:107 -+#: ../glade/NewPrinterWindow.glade.h:106 - msgid "Use the new PPD (Postscript Printer Description) as is." - msgstr "" - "Az új PPD (PostScript-nyomtatóleírás) eredeti formában való használata." - --#: ../glade/NewPrinterWindow.glade.h:109 -+#: ../glade/NewPrinterWindow.glade.h:108 - msgid "" - "With this choice no driver download will be performed. In the next steps a " - "locally installed driver will be selected." -@@ -2083,24 +2080,24 @@ msgstr "" - "Ezzel a választással meghajtóprogram nem kerül letöltésre. A következő " - "lépésekben egy helyben telepített meghajtóprogram lesz kiválasztva." - --#: ../glade/NewPrinterWindow.glade.h:110 -+#: ../glade/NewPrinterWindow.glade.h:109 - msgid "Yes, I accept this license" - msgstr "Engedély elfogadása" - --#: ../glade/NewPrinterWindow.glade.h:111 -+#: ../glade/NewPrinterWindow.glade.h:110 - msgid "_Search" - msgstr "_Keresés" - --#: ../glade/NewPrinterWindow.glade.h:112 -+#: ../glade/NewPrinterWindow.glade.h:111 - msgid "_Verify..." - msgstr "_Ellenőrzés..." - --#: ../glade/NewPrinterWindow.glade.h:113 -+#: ../glade/NewPrinterWindow.glade.h:112 - #: ../glade/PrinterPropertiesDialog.glade.h:128 - msgid "move left" - msgstr "Igazítás balra" - --#: ../glade/NewPrinterWindow.glade.h:114 -+#: ../glade/NewPrinterWindow.glade.h:113 - #: ../glade/PrinterPropertiesDialog.glade.h:129 - msgid "move right" - msgstr "Igazítás jobbra" -@@ -3039,7 +3036,7 @@ msgstr "Jól lettek kinyomtatva a kijel - msgid "Remember to load paper of type '%s' into the printer first." - msgstr "Első lépésként töltse fel a nyomtatót „%s” típusú papírral." - --#: ../troubleshoot/PrintTestPage.py:399 -+#: ../troubleshoot/PrintTestPage.py:416 - msgid "Error submitting test page" - msgstr "Hiba lépett fel a tesztoldal elküldésekor" - -@@ -3241,6 +3238,15 @@ msgstr "Nyomtatási feladatok kezelése" - msgid "Select default printer" - msgstr "Alapértelmezett nyomtató kiválasztása" - -+#~ msgid "HP Printer (HPLIP)" -+#~ msgstr "HP Printer (HPLIP)" -+ -+#~ msgid "HPLIP cannot find the device." -+#~ msgstr "HPLIP nem találja az eszközt." -+ -+#~ msgid "HP Printer (HPLIP) via network" -+#~ msgstr "HP Printer (HPLIP) halózatra csatlakoztatva" -+ - #~ msgid "Not Found" - #~ msgstr "Nem található" - -diff -up system-config-printer-1.1.5/po/hy.po.git-1.1.x system-config-printer-1.1.5/po/hy.po ---- system-config-printer-1.1.5/po/hy.po.git-1.1.x 2009-03-03 22:21:46.000000000 +0000 -+++ system-config-printer-1.1.5/po/hy.po 2009-03-10 17:43:31.000000000 +0000 -@@ -7,7 +7,7 @@ msgid "" - msgstr "" - "Project-Id-Version: printconf\n" - "Report-Msgid-Bugs-To: https://bugzilla.redhat.com/bugzilla\n" --"POT-Creation-Date: 2009-03-02 23:22+0000\n" -+"POT-Creation-Date: 2009-03-10 16:51+0000\n" - "PO-Revision-Date: 2004-10-12 08:57+0100\n" - "Last-Translator: Automatically generated\n" - "Language-Team: none\n" -@@ -49,11 +49,11 @@ msgstr "" - msgid "Enter IP address" - msgstr "" - --#: ../authconn.py:35 ../glade/NewPrinterWindow.glade.h:108 -+#: ../authconn.py:35 ../glade/NewPrinterWindow.glade.h:107 - msgid "Username:" - msgstr "" - --#: ../authconn.py:36 ../glade/NewPrinterWindow.glade.h:77 -+#: ../authconn.py:36 ../glade/NewPrinterWindow.glade.h:76 - msgid "Password:" - msgstr "" - -@@ -61,7 +61,7 @@ msgstr "" - msgid "Domain:" - msgstr "" - --#: ../authconn.py:46 -+#: ../authconn.py:46 ../authconn.py:409 - msgid "Authentication" - msgstr "" - -@@ -69,43 +69,52 @@ msgstr "" - msgid "Remember password" - msgstr "" - --#: ../authconn.py:211 ../authconn.py:232 -+#: ../authconn.py:208 -+#, python-format -+msgid "Unauthorized request (%s)" -+msgstr "" -+ -+#: ../authconn.py:209 -+msgid "You are not authorized to carry out therequested action." -+msgstr "" -+ -+#: ../authconn.py:212 ../authconn.py:233 - msgid "Operation canceled" - msgstr "" - --#: ../authconn.py:253 -+#: ../authconn.py:250 - #, python-format - msgid "CUPS server error (%s)" - msgstr "" - --#: ../authconn.py:255 ../errordialogs.py:57 --#: ../troubleshoot/PrintTestPage.py:400 -+#: ../authconn.py:252 ../errordialogs.py:56 ../errordialogs.py:70 -+msgid "CUPS server error" -+msgstr "" -+ -+#: ../authconn.py:261 ../errordialogs.py:57 -+#: ../troubleshoot/PrintTestPage.py:417 - #, python-format - msgid "There was an error during the CUPS operation: '%s'." - msgstr "" - --#: ../authconn.py:258 -+#: ../authconn.py:264 - msgid "Retry" - msgstr "" - --#: ../authconn.py:379 ../authconn.py:381 ../errordialogs.py:65 ../pysmb.py:75 -+#: ../authconn.py:385 ../authconn.py:387 ../errordialogs.py:65 ../pysmb.py:75 - #: ../pysmb.py:77 - msgid "Not authorized" - msgstr "" - --#: ../authconn.py:382 ../pysmb.py:78 -+#: ../authconn.py:388 ../pysmb.py:78 - msgid "The password may be incorrect." - msgstr "" - --#: ../authconn.py:400 -+#: ../authconn.py:407 - #, python-format - msgid "Authentication (%s)" - msgstr "" - --#: ../errordialogs.py:56 ../errordialogs.py:70 --msgid "CUPS server error" --msgstr "" -- - #: ../errordialogs.py:66 - msgid "" - "The password may be incorrect, or the server may be configured to deny " -@@ -132,7 +141,7 @@ msgstr "" - msgid "Server error" - msgstr "" - --#: ../errordialogs.py:82 ../system-config-printer.py:1219 -+#: ../errordialogs.py:82 ../system-config-printer.py:1223 - msgid "Not connected" - msgstr "" - -@@ -154,7 +163,7 @@ msgstr "" - msgid "_New Group from Selection" - msgstr "" - --#: ../GroupsPane.py:98 ../system-config-printer.py:393 -+#: ../GroupsPane.py:98 ../system-config-printer.py:397 - msgid "_Rename" - msgstr "" - -@@ -219,7 +228,7 @@ msgid "Document" - msgstr "" - - #: ../jobviewer.py:212 ../my-default-printer.py:153 --#: ../system-config-printer.py:366 ../system-config-printer.py:1367 -+#: ../system-config-printer.py:370 ../system-config-printer.py:1371 - #: ../troubleshoot/PrintTestPage.py:84 - msgid "Printer" - msgstr "" -@@ -256,8 +265,8 @@ msgstr "" - - #: ../jobviewer.py:386 ../jobviewer.py:451 ../jobviewer.py:452 - #: ../jobviewer.py:492 ../jobviewer.py:600 ../jobviewer.py:727 --#: ../jobviewer.py:1196 ../jobviewer.py:1222 ../system-config-printer.py:2546 --#: ../glade/NewPrinterWindow.glade.h:106 -+#: ../jobviewer.py:1196 ../jobviewer.py:1222 ../system-config-printer.py:2556 -+#: ../glade/NewPrinterWindow.glade.h:105 - #: ../troubleshoot/ChooseNetworkPrinter.py:101 - #: ../troubleshoot/ChooseNetworkPrinter.py:102 - #: ../troubleshoot/ChooseNetworkPrinter.py:105 -@@ -345,12 +354,12 @@ msgstr "" - msgid "Pending" - msgstr "" - --#: ../jobviewer.py:591 ../system-config-printer.py:186 -+#: ../jobviewer.py:591 ../system-config-printer.py:190 - #: ../troubleshoot/PrintTestPage.py:43 - msgid "Processing" - msgstr "" - --#: ../jobviewer.py:592 ../system-config-printer.py:188 -+#: ../jobviewer.py:592 ../system-config-printer.py:192 - #: ../troubleshoot/PrintTestPage.py:44 - msgid "Stopped" - msgstr "" -@@ -460,8 +469,8 @@ msgstr "" - msgid "_Set Default" - msgstr "" - --#: ../my-default-printer.py:158 ../system-config-printer.py:423 --#: ../system-config-printer.py:3660 ../troubleshoot/ChooseNetworkPrinter.py:37 -+#: ../my-default-printer.py:158 ../system-config-printer.py:427 -+#: ../system-config-printer.py:3675 ../troubleshoot/ChooseNetworkPrinter.py:37 - #: ../troubleshoot/ChoosePrinter.py:38 - msgid "Location" - msgstr "" -@@ -490,7 +499,7 @@ msgstr "" - msgid "Authenticated" - msgstr "" - --#: ../ppdippstr.py:50 ../system-config-printer.py:6259 -+#: ../ppdippstr.py:50 ../system-config-printer.py:6207 - msgid "None" - msgstr "" - -@@ -703,201 +712,201 @@ msgstr "" - msgid "1200 dpi, photo, black + color cartridge, photo paper" - msgstr "" - --#: ../system-config-printer.py:127 -+#: ../system-config-printer.py:131 - msgid "To do this, select System->Administration->Firewall from the main menu." - msgstr "" - --#: ../system-config-printer.py:185 -+#: ../system-config-printer.py:189 - msgid "Idle" - msgstr "" - --#: ../system-config-printer.py:187 -+#: ../system-config-printer.py:191 - msgid "Busy" - msgstr "" - --#: ../system-config-printer.py:372 ../system-config-printer.py:1373 -+#: ../system-config-printer.py:376 ../system-config-printer.py:1377 - msgid "Class" - msgstr "" - --#: ../system-config-printer.py:399 -+#: ../system-config-printer.py:403 - msgid "Set As De_fault" - msgstr "" - --#: ../system-config-printer.py:403 -+#: ../system-config-printer.py:407 - msgid "_Create class" - msgstr "" - --#: ../system-config-printer.py:405 -+#: ../system-config-printer.py:409 - msgid "View Print _Queue" - msgstr "" - --#: ../system-config-printer.py:407 -+#: ../system-config-printer.py:411 - msgid "_Add to Group" - msgstr "" - --#: ../system-config-printer.py:409 -+#: ../system-config-printer.py:413 - msgid "Save Results as _Group" - msgstr "" - --#: ../system-config-printer.py:411 -+#: ../system-config-printer.py:415 - msgid "Save Filter as _Search Group" - msgstr "" - --#: ../system-config-printer.py:415 -+#: ../system-config-printer.py:419 - msgid "E_nabled" - msgstr "" - --#: ../system-config-printer.py:417 -+#: ../system-config-printer.py:421 - msgid "_Shared" - msgstr "" - --#: ../system-config-printer.py:421 ../troubleshoot/ChooseNetworkPrinter.py:35 -+#: ../system-config-printer.py:425 ../troubleshoot/ChooseNetworkPrinter.py:35 - #: ../troubleshoot/ChoosePrinter.py:36 ../troubleshoot/DeviceListed.py:36 - msgid "Name" - msgstr "" - --#: ../system-config-printer.py:422 -+#: ../system-config-printer.py:426 - msgid "Description" - msgstr "" - --#: ../system-config-printer.py:424 -+#: ../system-config-printer.py:428 - msgid "Manufacturer / Model" - msgstr "" - - #. Printer state reasons list --#: ../system-config-printer.py:499 -+#: ../system-config-printer.py:503 - msgid "Message" - msgstr "" - --#: ../system-config-printer.py:534 -+#: ../system-config-printer.py:538 - msgid "Problems?" - msgstr "" - --#: ../system-config-printer.py:637 ../system-config-printer.py:639 -+#: ../system-config-printer.py:641 ../system-config-printer.py:643 - msgid "Members of this class" - msgstr "" - --#: ../system-config-printer.py:638 ../system-config-printer.py:640 -+#: ../system-config-printer.py:642 ../system-config-printer.py:644 - msgid "Others" - msgstr "" - --#: ../system-config-printer.py:641 -+#: ../system-config-printer.py:645 - msgid "Devices" - msgstr "" - --#: ../system-config-printer.py:642 -+#: ../system-config-printer.py:646 - msgid "Connections" - msgstr "" - --#: ../system-config-printer.py:643 -+#: ../system-config-printer.py:647 - msgid "Makes" - msgstr "" - --#: ../system-config-printer.py:644 -+#: ../system-config-printer.py:648 - msgid "Models" - msgstr "" - --#: ../system-config-printer.py:645 -+#: ../system-config-printer.py:649 - msgid "Drivers" - msgstr "" - --#: ../system-config-printer.py:646 ../glade/NewPrinterWindow.glade.h:55 -+#: ../system-config-printer.py:650 ../glade/NewPrinterWindow.glade.h:54 - msgid "Downloadable Drivers" - msgstr "" - --#: ../system-config-printer.py:647 -+#: ../system-config-printer.py:651 - msgid "Users" - msgstr "" - --#: ../system-config-printer.py:682 -+#: ../system-config-printer.py:686 - msgid "Automatic rotation" - msgstr "" - --#: ../system-config-printer.py:989 -+#: ../system-config-printer.py:993 - #, python-format - msgid "Printer Properties - '%s' on %s" - msgstr "" - - #. The Conflict button was pressed. --#: ../system-config-printer.py:996 -+#: ../system-config-printer.py:1000 - msgid "" - "There are conflicting options.\n" - "Changes can only be applied after\n" - "these conflicts are resolved." - msgstr "" - --#: ../system-config-printer.py:1214 -+#: ../system-config-printer.py:1218 - #, python-format - msgid "Printer configuration - %s" - msgstr "" - --#: ../system-config-printer.py:1217 -+#: ../system-config-printer.py:1221 - #, python-format - msgid "Connected to %s" - msgstr "" - - #. Update our copy of the printer's settings. --#: ../system-config-printer.py:1257 ../system-config-printer.py:2042 -+#: ../system-config-printer.py:1261 ../system-config-printer.py:2046 - msgid "obtaining queue details" - msgstr "" - --#: ../system-config-printer.py:1295 -+#: ../system-config-printer.py:1299 - msgid "Remove from Group" - msgstr "" - --#: ../system-config-printer.py:1361 -+#: ../system-config-printer.py:1365 - msgid "Network printer (discovered)" - msgstr "" - --#: ../system-config-printer.py:1364 -+#: ../system-config-printer.py:1368 - msgid "Network class (discovered)" - msgstr "" - --#: ../system-config-printer.py:1370 ../system-config-printer.py:5524 --#: ../system-config-printer.py:5594 ../system-config-printer.py:5596 -+#: ../system-config-printer.py:1374 ../system-config-printer.py:5519 -+#: ../system-config-printer.py:5589 ../system-config-printer.py:5591 - msgid "Fax" - msgstr "" - --#: ../system-config-printer.py:1376 ../system-config-printer.py:1382 -+#: ../system-config-printer.py:1380 ../system-config-printer.py:1386 - #: ../troubleshoot/LocalOrRemote.py:30 - msgid "Network printer" - msgstr "" - --#: ../system-config-printer.py:1379 -+#: ../system-config-printer.py:1383 - msgid "Network print share" - msgstr "" - --#: ../system-config-printer.py:1508 ../glade/ConnectingDialog.glade.h:2 -+#: ../system-config-printer.py:1512 ../glade/ConnectingDialog.glade.h:2 - #, no-c-format, python-format - msgid "Opening connection to %s" - msgstr "" - --#: ../system-config-printer.py:1887 -+#: ../system-config-printer.py:1891 - msgid "Installable Options" - msgstr "" - --#: ../system-config-printer.py:1888 -+#: ../system-config-printer.py:1892 - #: ../glade/PrinterPropertiesDialog.glade.h:109 - msgid "Printer Options" - msgstr "" - --#: ../system-config-printer.py:1924 -+#: ../system-config-printer.py:1928 - #, python-format - msgid "modifying class %s" - msgstr "" - --#: ../system-config-printer.py:1926 ../system-config-printer.py:3019 --#: ../system-config-printer.py:3044 ../system-config-printer.py:6547 --#: ../system-config-printer.py:6559 ../system-config-printer.py:6581 -+#: ../system-config-printer.py:1930 ../system-config-printer.py:3037 -+#: ../system-config-printer.py:3062 ../system-config-printer.py:6495 -+#: ../system-config-printer.py:6507 ../system-config-printer.py:6529 - #, python-format - msgid "modifying printer %s" - msgstr "" - --#: ../system-config-printer.py:1941 -+#: ../system-config-printer.py:1945 - msgid "This will delete this class!" - msgstr "" - --#: ../system-config-printer.py:1942 -+#: ../system-config-printer.py:1946 - msgid "Proceed anyway?" - msgstr "" - -@@ -905,63 +914,63 @@ msgstr "" - #. but we have never fetched the server settings to see whether - #. the server is publishing shared printers. Fetch the settings - #. now so that we can update the "not published" label if necessary. --#: ../system-config-printer.py:2030 ../system-config-printer.py:3203 -+#: ../system-config-printer.py:2034 ../system-config-printer.py:3221 - msgid "fetching server settings" - msgstr "" - --#: ../system-config-printer.py:2100 -+#: ../system-config-printer.py:2104 - msgid "Set Default Printer" - msgstr "" - --#: ../system-config-printer.py:2102 -+#: ../system-config-printer.py:2106 - msgid "Do you want to set this as the system-wide default printer?" - msgstr "" - --#: ../system-config-printer.py:2104 -+#: ../system-config-printer.py:2108 - msgid "Set as the _system-wide default printer" - msgstr "" - --#: ../system-config-printer.py:2106 -+#: ../system-config-printer.py:2110 - msgid "_Clear my personal default setting" - msgstr "" - --#: ../system-config-printer.py:2107 -+#: ../system-config-printer.py:2111 - msgid "Set as my _personal default printer" - msgstr "" - --#: ../system-config-printer.py:2112 -+#: ../system-config-printer.py:2116 - msgid "setting default printer" - msgstr "" - --#: ../system-config-printer.py:2169 -+#: ../system-config-printer.py:2173 - msgid "printing test page" - msgstr "" - --#: ../system-config-printer.py:2182 ../system-config-printer.py:2217 --#: ../system-config-printer.py:5418 -+#: ../system-config-printer.py:2186 ../system-config-printer.py:2221 -+#: ../system-config-printer.py:5413 - msgid "Not possible" - msgstr "" - --#: ../system-config-printer.py:2183 ../system-config-printer.py:2218 -+#: ../system-config-printer.py:2187 ../system-config-printer.py:2222 - msgid "" - "The remote server did not accept the print job, most likely because the " - "printer is not shared." - msgstr "" - --#: ../system-config-printer.py:2195 ../system-config-printer.py:2210 -+#: ../system-config-printer.py:2199 ../system-config-printer.py:2214 - msgid "Submitted" - msgstr "" - --#: ../system-config-printer.py:2196 -+#: ../system-config-printer.py:2200 - #, python-format - msgid "Test page submitted as job %d" - msgstr "" - --#: ../system-config-printer.py:2203 -+#: ../system-config-printer.py:2207 - msgid "sending maintenance command" - msgstr "" - --#: ../system-config-printer.py:2211 -+#: ../system-config-printer.py:2215 - #, python-format - msgid "Maintenance command submitted as job %d" - msgstr "" -@@ -969,71 +978,71 @@ msgstr "" - #. The underlying cupsGetPPD2() function returned NULL without - #. setting an IPP error, so it'll be something like a failed - #. connection. --#: ../system-config-printer.py:2285 ../system-config-printer.py:2381 -+#: ../system-config-printer.py:2289 ../system-config-printer.py:2385 - msgid "Error" - msgstr "" - --#: ../system-config-printer.py:2286 -+#: ../system-config-printer.py:2290 - msgid "There was a problem connecting to the CUPS server." - msgstr "" - --#: ../system-config-printer.py:2382 -+#: ../system-config-printer.py:2386 - #, python-format - msgid "Option '%s' has value '%s' and cannot be edited." - msgstr "" - --#: ../system-config-printer.py:2466 -+#: ../system-config-printer.py:2476 - msgid "Marker levels are not reported for this printer." - msgstr "" - --#: ../system-config-printer.py:2763 -+#: ../system-config-printer.py:2773 - msgid "Cannot Rename" - msgstr "" - --#: ../system-config-printer.py:2764 -+#: ../system-config-printer.py:2774 - msgid "There are queued jobs." - msgstr "" - --#: ../system-config-printer.py:2822 -+#: ../system-config-printer.py:2840 - msgid "renaming printer" - msgstr "" - - #. for classes make sure all members - #. will get added --#: ../system-config-printer.py:2907 -+#: ../system-config-printer.py:2925 - msgid "copying printer" - msgstr "" - --#: ../system-config-printer.py:2971 -+#: ../system-config-printer.py:2989 - #, python-format - msgid "Really delete class '%s'?" - msgstr "" - --#: ../system-config-printer.py:2973 -+#: ../system-config-printer.py:2991 - #, python-format - msgid "Really delete printer '%s'?" - msgstr "" - --#: ../system-config-printer.py:2975 -+#: ../system-config-printer.py:2993 - msgid "Really delete selected destinations?" - msgstr "" - --#: ../system-config-printer.py:2996 -+#: ../system-config-printer.py:3014 - #, python-format - msgid "deleting printer %s" - msgstr "" - --#: ../system-config-printer.py:3070 -+#: ../system-config-printer.py:3088 - msgid "Publish Shared Printers" - msgstr "" - --#: ../system-config-printer.py:3071 -+#: ../system-config-printer.py:3089 - msgid "" - "Shared printers are not available to other people unless the 'Publish shared " - "printers' option is enabled in the server settings." - msgstr "" - --#: ../system-config-printer.py:3264 -+#: ../system-config-printer.py:3282 - msgid "modifying server settings" - msgstr "" - -@@ -1043,100 +1052,100 @@ msgstr "" - #. be unblocked. Unfortunately, this is not yet possible - #. (bug #440469). However, we can display a dialog to suggest - #. that now might be a good time to review the firewall settings. --#: ../system-config-printer.py:3289 -+#: ../system-config-printer.py:3307 - msgid "Review Firewall" - msgstr "" - --#: ../system-config-printer.py:3290 -+#: ../system-config-printer.py:3308 - msgid "" - "You may need to adjust the firewall to allow network printing to this " - "computer." - msgstr "" - --#: ../system-config-printer.py:3623 -+#: ../system-config-printer.py:3638 - msgid "Browsing not available (pysmbc not installed)" - msgstr "" - - #. SMB list columns --#: ../system-config-printer.py:3629 -+#: ../system-config-printer.py:3644 - msgid "Share" - msgstr "" - --#: ../system-config-printer.py:3635 -+#: ../system-config-printer.py:3650 - msgid "Comment" - msgstr "" - - #. IPP list columns --#: ../system-config-printer.py:3654 -+#: ../system-config-printer.py:3669 - msgid "Queue" - msgstr "" - --#: ../system-config-printer.py:3668 -+#: ../system-config-printer.py:3683 - msgid "" - "PostScript Printer Description files (*.ppd, *.PPD, *.ppd.gz, *.PPD.gz, *." - "PPD.GZ)" - msgstr "" - --#: ../system-config-printer.py:3677 -+#: ../system-config-printer.py:3692 - msgid "All files (*)" - msgstr "" - --#: ../system-config-printer.py:3713 ../system-config-printer.py:5970 --#: ../system-config-printer.py:6008 ../applet.py:124 -+#: ../system-config-printer.py:3728 ../system-config-printer.py:5918 -+#: ../system-config-printer.py:5956 ../applet.py:124 - msgid "Search" - msgstr "" - --#: ../system-config-printer.py:3736 ../system-config-printer.py:3760 --#: ../glade/NewPrinterWindow.glade.h:74 -+#: ../system-config-printer.py:3751 ../system-config-printer.py:3775 -+#: ../glade/NewPrinterWindow.glade.h:73 - msgid "New Printer" - msgstr "" - --#: ../system-config-printer.py:3747 -+#: ../system-config-printer.py:3762 - msgid "New Class" - msgstr "" - --#: ../system-config-printer.py:3752 -+#: ../system-config-printer.py:3767 - msgid "Change Device URI" - msgstr "" - --#: ../system-config-printer.py:3758 -+#: ../system-config-printer.py:3773 - msgid "Change Driver" - msgstr "" - --#: ../system-config-printer.py:3927 ../system-config-printer.py:3993 --#: ../system-config-printer.py:4289 ../system-config-printer.py:4487 --#: ../system-config-printer.py:5772 ../system-config-printer.py:5995 -+#: ../system-config-printer.py:3942 ../system-config-printer.py:4008 -+#: ../system-config-printer.py:4304 ../system-config-printer.py:4502 -+#: ../system-config-printer.py:5762 ../system-config-printer.py:5943 - msgid "Searching" - msgstr "" - --#: ../system-config-printer.py:3928 -+#: ../system-config-printer.py:3943 - msgid "Searching for downloadable drivers" - msgstr "" - --#: ../system-config-printer.py:3994 ../system-config-printer.py:4290 -+#: ../system-config-printer.py:4009 ../system-config-printer.py:4305 - msgid "Searching for drivers" - msgstr "" - --#: ../system-config-printer.py:4488 ../system-config-printer.py:5773 -+#: ../system-config-printer.py:4503 ../system-config-printer.py:5763 - msgid "Searching for printers" - msgstr "" - --#: ../system-config-printer.py:4497 -+#: ../system-config-printer.py:4512 - msgid "fetching device list" - msgstr "" - - #. Tell the user why he needs the plugin --#: ../system-config-printer.py:4579 -+#: ../system-config-printer.py:4594 - msgid "For this printer a proprietary driver plugin from HP is available.\n" - msgstr "" - --#: ../system-config-printer.py:4582 -+#: ../system-config-printer.py:4597 - msgid "" - "The installation of the plugin is required for your printer to work.\n" - "\n" - msgstr "" - --#: ../system-config-printer.py:4585 -+#: ../system-config-printer.py:4600 - msgid "" - "Installing the plugin is optional, it completes or enhances the " - "functionality\n" -@@ -1144,280 +1153,272 @@ msgid "" - "\n" - msgstr "" - --#: ../system-config-printer.py:4589 -+#: ../system-config-printer.py:4604 - msgid "The plugin provides the following features:\n" - msgstr "" - --#: ../system-config-printer.py:4592 -+#: ../system-config-printer.py:4607 - msgid " - Printing support\n" - msgstr "" - --#: ../system-config-printer.py:4595 -+#: ../system-config-printer.py:4610 - msgid " - Faster printing\n" - msgstr "" - --#: ../system-config-printer.py:4598 -+#: ../system-config-printer.py:4613 - msgid " - Better printout quality\n" - msgstr "" - --#: ../system-config-printer.py:4601 -+#: ../system-config-printer.py:4616 - msgid " - Extra printing features\n" - msgstr "" - --#: ../system-config-printer.py:4604 -+#: ../system-config-printer.py:4619 - msgid " - Scanning support\n" - msgstr "" - --#: ../system-config-printer.py:4607 -+#: ../system-config-printer.py:4622 - msgid " - Faster scanning\n" - msgstr "" - --#: ../system-config-printer.py:4610 -+#: ../system-config-printer.py:4625 - msgid " - Better scanning image quality\n" - msgstr "" - --#: ../system-config-printer.py:4613 -+#: ../system-config-printer.py:4628 - msgid " - Faxing support\n" - msgstr "" - --#: ../system-config-printer.py:4616 -+#: ../system-config-printer.py:4631 - msgid " - Extra fax features\n" - msgstr "" - --#: ../system-config-printer.py:4619 -+#: ../system-config-printer.py:4634 - msgid " - Better Input/Output support\n" - msgstr "" - --#: ../system-config-printer.py:4622 -+#: ../system-config-printer.py:4637 - msgid " - Extra user interface features\n" - msgstr "" - --#: ../system-config-printer.py:4625 -+#: ../system-config-printer.py:4640 - msgid " - Other extra features\n" - msgstr "" - --#: ../system-config-printer.py:4630 -+#: ../system-config-printer.py:4645 - msgid "Install plugin" - msgstr "" - --#: ../system-config-printer.py:4631 -+#: ../system-config-printer.py:4646 - msgid "Do not set up printer" - msgstr "" - --#: ../system-config-printer.py:4632 -+#: ../system-config-printer.py:4647 - msgid "Set up without plugin" - msgstr "" - --#: ../system-config-printer.py:4634 ../troubleshoot/PrintTestPage.py:118 -+#: ../system-config-printer.py:4649 ../troubleshoot/PrintTestPage.py:118 - msgid "Yes" - msgstr "" - --#: ../system-config-printer.py:4635 ../troubleshoot/PrintTestPage.py:119 -+#: ../system-config-printer.py:4650 ../troubleshoot/PrintTestPage.py:119 - msgid "No" - msgstr "" - --#: ../system-config-printer.py:4809 ../system-config-printer.py:4813 -+#: ../system-config-printer.py:4824 ../system-config-printer.py:4828 - msgid " (Current)" - msgstr "" - --#: ../system-config-printer.py:4845 --msgid "HP Printer (HPLIP)" --msgstr "" -- --#: ../system-config-printer.py:4886 -+#: ../system-config-printer.py:4881 - msgid "Other" - msgstr "" - - #. device-info - #. PhysicalDevice obj - #. Separator? --#: ../system-config-printer.py:4902 -+#: ../system-config-printer.py:4897 - msgid "Network Printer" - msgstr "" - --#: ../system-config-printer.py:4906 -+#: ../system-config-printer.py:4901 - msgid "Find Network Printer" - msgstr "" - --#: ../system-config-printer.py:4979 ../system-config-printer.py:5376 -+#: ../system-config-printer.py:4974 ../system-config-printer.py:5371 - msgid "Scanning..." - msgstr "" - --#: ../system-config-printer.py:5034 ../system-config-printer.py:5798 -+#: ../system-config-printer.py:5029 - msgid "No Print Shares" - msgstr "" - --#: ../system-config-printer.py:5035 -+#: ../system-config-printer.py:5030 - msgid "" - "There were no print shares found. Please check that the Samba service is " - "marked as trusted in your firewall configuration." - msgstr "" - --#: ../system-config-printer.py:5296 ../system-config-printer.py:5357 -+#: ../system-config-printer.py:5291 ../system-config-printer.py:5352 - msgid "Print Share Verified" - msgstr "" - --#: ../system-config-printer.py:5297 ../system-config-printer.py:5358 -+#: ../system-config-printer.py:5292 ../system-config-printer.py:5353 - msgid "This print share is accessible." - msgstr "" - --#: ../system-config-printer.py:5302 ../system-config-printer.py:5362 -+#: ../system-config-printer.py:5297 ../system-config-printer.py:5357 - msgid "This print share is not accessible." - msgstr "" - --#: ../system-config-printer.py:5305 -+#: ../system-config-printer.py:5300 - msgid "Print Share Inaccessible" - msgstr "" - --#: ../system-config-printer.py:5361 -+#: ../system-config-printer.py:5356 - msgid "Inaccessible" - msgstr "" - --#: ../system-config-printer.py:5419 -+#: ../system-config-printer.py:5414 - #, python-format - msgid "It is not possible to obtain a list of queues from '%s'." - msgstr "" - --#: ../system-config-printer.py:5421 -+#: ../system-config-printer.py:5416 - msgid "" - "Obtaining a list of queues is a CUPS extension to IPP. Network printers do " - "not support it." - msgstr "" - --#: ../system-config-printer.py:5424 -+#: ../system-config-printer.py:5419 - msgid "No queues" - msgstr "" - --#: ../system-config-printer.py:5425 -+#: ../system-config-printer.py:5420 - msgid "There are no queues available." - msgstr "" - --#: ../system-config-printer.py:5516 -+#: ../system-config-printer.py:5511 - msgid "Parallel Port" - msgstr "" - --#: ../system-config-printer.py:5518 -+#: ../system-config-printer.py:5513 - msgid "Serial Port" - msgstr "" - --#: ../system-config-printer.py:5520 -+#: ../system-config-printer.py:5515 - msgid "USB" - msgstr "" - --#: ../system-config-printer.py:5522 ../system-config-printer.py:5525 -+#: ../system-config-printer.py:5517 ../system-config-printer.py:5520 - msgid "HP Linux Imaging and Printing (HPLIP)" - msgstr "" - --#: ../system-config-printer.py:5527 -+#: ../system-config-printer.py:5522 - msgid "Hardware Abstraction Layer (HAL)" - msgstr "" - --#: ../system-config-printer.py:5529 -+#: ../system-config-printer.py:5524 - msgid "AppSocket/HP JetDirect" - msgstr "" - --#: ../system-config-printer.py:5538 -+#: ../system-config-printer.py:5533 - #, python-format - msgid "LPD/LPR queue '%s'" - msgstr "" - --#: ../system-config-printer.py:5540 -+#: ../system-config-printer.py:5535 - msgid "LPD/LPR queue" - msgstr "" - --#: ../system-config-printer.py:5543 -+#: ../system-config-printer.py:5538 - msgid "Windows Printer via SAMBA" - msgstr "" - --#: ../system-config-printer.py:5545 ../glade/NewPrinterWindow.glade.h:66 -+#: ../system-config-printer.py:5540 ../glade/NewPrinterWindow.glade.h:65 - msgid "IPP" - msgstr "" - --#: ../system-config-printer.py:5547 -+#: ../system-config-printer.py:5542 - msgid "HTTP" - msgstr "" - --#: ../system-config-printer.py:5632 -+#: ../system-config-printer.py:5624 - msgid "A printer connected to the parallel port." - msgstr "" - --#: ../system-config-printer.py:5634 -+#: ../system-config-printer.py:5626 - msgid "A printer connected to a USB port." - msgstr "" - --#: ../system-config-printer.py:5636 -+#: ../system-config-printer.py:5628 - msgid "" - "HPLIP software driving a printer, or the printer function of a multi-" - "function device." - msgstr "" - --#: ../system-config-printer.py:5639 -+#: ../system-config-printer.py:5631 - msgid "" - "HPLIP software driving a fax machine, or the fax function of a multi-" - "function device." - msgstr "" - --#: ../system-config-printer.py:5642 -+#: ../system-config-printer.py:5634 - msgid "Local printer detected by the Hardware Abstraction Layer (HAL)." - msgstr "" - --#: ../system-config-printer.py:5799 --msgid "HPLIP cannot find the device." --msgstr "" -- --#: ../system-config-printer.py:5881 -+#: ../system-config-printer.py:5831 - msgid "No printer was found at that address." - msgstr "" - --#: ../system-config-printer.py:6020 -+#: ../system-config-printer.py:5968 - msgid "-- Select from search results --" - msgstr "" - --#: ../system-config-printer.py:6022 -+#: ../system-config-printer.py:5970 - msgid "-- No matches found --" - msgstr "" - --#: ../system-config-printer.py:6203 -+#: ../system-config-printer.py:6151 - msgid " (recommended)" - msgstr "" - --#: ../system-config-printer.py:6217 -+#: ../system-config-printer.py:6165 - msgid "This PPD is generated by foomatic." - msgstr "" - --#: ../system-config-printer.py:6241 -+#: ../system-config-printer.py:6189 - msgid "OpenPrinting" - msgstr "" - --#: ../system-config-printer.py:6252 -+#: ../system-config-printer.py:6200 - msgid "Distributable" - msgstr "" - --#: ../system-config-printer.py:6293 -+#: ../system-config-printer.py:6241 - msgid ", " - msgstr "" - --#: ../system-config-printer.py:6298 -+#: ../system-config-printer.py:6246 - #, python-format - msgid "" - "\n" - "(%s)" - msgstr "" - --#: ../system-config-printer.py:6303 -+#: ../system-config-printer.py:6251 - msgid "No support contacts known" - msgstr "" - --#: ../system-config-printer.py:6307 ../system-config-printer.py:6320 -+#: ../system-config-printer.py:6255 ../system-config-printer.py:6268 - msgid "Not specified." - msgstr "" - - #. Foomatic database problem of some sort. --#: ../system-config-printer.py:6360 -+#: ../system-config-printer.py:6308 - msgid "Database error" - msgstr "" - --#: ../system-config-printer.py:6361 -+#: ../system-config-printer.py:6309 - #, python-format - msgid "The '%s' driver cannot be used with printer '%s %s'." - msgstr "" -@@ -1425,60 +1426,60 @@ msgstr "" - #. This printer references some XML that is not - #. installed by default. Point the user at the - #. package they need to install. --#: ../system-config-printer.py:6371 -+#: ../system-config-printer.py:6319 - #, python-format - msgid "You will need to install the '%s' package in order to use this driver." - msgstr "" - - #. This error came from trying to open the PPD file. --#: ../system-config-printer.py:6378 -+#: ../system-config-printer.py:6326 - msgid "PPD error" - msgstr "" - --#: ../system-config-printer.py:6380 -+#: ../system-config-printer.py:6328 - msgid "Failed to read PPD file. Possible reason follows:" - msgstr "" - - #. Failed to get PPD downloaded from OpenPrinting XXX --#: ../system-config-printer.py:6397 -+#: ../system-config-printer.py:6345 - msgid "Downloadable drivers" - msgstr "" - --#: ../system-config-printer.py:6398 -+#: ../system-config-printer.py:6346 - msgid "Failed to download PPD." - msgstr "" - --#: ../system-config-printer.py:6405 -+#: ../system-config-printer.py:6353 - msgid "fetching PPD" - msgstr "" - --#: ../system-config-printer.py:6434 ../system-config-printer.py:6472 -+#: ../system-config-printer.py:6382 ../system-config-printer.py:6420 - msgid "No Installable Options" - msgstr "" - --#: ../system-config-printer.py:6520 -+#: ../system-config-printer.py:6468 - #, python-format - msgid "adding printer %s" - msgstr "" - --#: ../system-config-printer.py:6669 -+#: ../system-config-printer.py:6617 - msgid "Would you like to print a test page?" - msgstr "" - --#: ../system-config-printer.py:6722 -+#: ../system-config-printer.py:6670 - msgid "Install driver" - msgstr "" - --#: ../system-config-printer.py:6723 ../troubleshoot/CheckPPDSanity.py:131 -+#: ../system-config-printer.py:6671 ../troubleshoot/CheckPPDSanity.py:131 - #, python-format - msgid "Printer '%s' requires the %s package but it is not currently installed." - msgstr "" - --#: ../system-config-printer.py:6739 -+#: ../system-config-printer.py:6687 - msgid "Missing driver" - msgstr "" - --#: ../system-config-printer.py:6740 -+#: ../system-config-printer.py:6688 - #, python-format - msgid "" - "Printer '%s' requires the '%s' program but it is not currently installed. " -@@ -1592,106 +1593,102 @@ msgid "Enter device URI" - msgstr "" - - #: ../glade/NewPrinterWindow.glade.h:5 --msgid "HP Printer (HPLIP) via network" --msgstr "" -- --#: ../glade/NewPrinterWindow.glade.h:6 - msgid "IPP Printer" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:7 -+#: ../glade/NewPrinterWindow.glade.h:6 - msgid "License Terms" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:8 -+#: ../glade/NewPrinterWindow.glade.h:7 - msgid "Location of the LPD network printer" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:9 -+#: ../glade/NewPrinterWindow.glade.h:8 - msgid "Location of the network printer" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:10 -+#: ../glade/NewPrinterWindow.glade.h:9 - msgid "Location (optional)" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:11 -+#: ../glade/NewPrinterWindow.glade.h:10 - msgid "Network Printer" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:12 -+#: ../glade/NewPrinterWindow.glade.h:11 - msgid "Note" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:13 -+#: ../glade/NewPrinterWindow.glade.h:12 - msgid "Output Quality" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:14 -+#: ../glade/NewPrinterWindow.glade.h:13 - msgid "Printer Name" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:15 -+#: ../glade/NewPrinterWindow.glade.h:14 - msgid "SMB Printer" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:16 -+#: ../glade/NewPrinterWindow.glade.h:15 - msgid "Select Driver" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:17 -+#: ../glade/NewPrinterWindow.glade.h:16 - msgid "Settings of the serial port" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:18 -+#: ../glade/NewPrinterWindow.glade.h:17 - msgid "smb://[workgroup/]server[:port]/printer" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:19 -+#: ../glade/NewPrinterWindow.glade.h:18 - msgid "Choose Class Members" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:20 -+#: ../glade/NewPrinterWindow.glade.h:19 - msgid "Choose Driver" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:21 -+#: ../glade/NewPrinterWindow.glade.h:20 - msgid "Describe Printer" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:22 -+#: ../glade/NewPrinterWindow.glade.h:21 - msgid "Existing Settings" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:23 -+#: ../glade/NewPrinterWindow.glade.h:22 - msgid "Installable Options" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:24 -+#: ../glade/NewPrinterWindow.glade.h:23 - msgid "Select Device" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:25 -+#: ../glade/NewPrinterWindow.glade.h:24 - msgid "Baud Rate" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:26 -+#: ../glade/NewPrinterWindow.glade.h:25 - msgid "Browse..." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:27 -+#: ../glade/NewPrinterWindow.glade.h:26 - msgid "Comments..." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:28 -+#: ../glade/NewPrinterWindow.glade.h:27 - msgid "Connection" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:29 -+#: ../glade/NewPrinterWindow.glade.h:28 - msgid "Data Bits" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:30 -+#: ../glade/NewPrinterWindow.glade.h:29 - msgid "" - "Default\n" - "1200\n" -@@ -1704,14 +1701,14 @@ msgid "" - "115200" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:39 -+#: ../glade/NewPrinterWindow.glade.h:38 - msgid "" - "Default\n" - "8\n" - "7" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:42 -+#: ../glade/NewPrinterWindow.glade.h:41 - msgid "" - "Default\n" - "None\n" -@@ -1719,7 +1716,7 @@ msgid "" - "Even" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:46 -+#: ../glade/NewPrinterWindow.glade.h:45 - msgid "" - "Default\n" - "None\n" -@@ -1728,188 +1725,188 @@ msgid "" - "DTR/DSR (Hardware)" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:51 -+#: ../glade/NewPrinterWindow.glade.h:50 - #: ../glade/PrinterPropertiesDialog.glade.h:35 - msgid "Description:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:52 ../troubleshoot/DeviceListed.py:40 -+#: ../glade/NewPrinterWindow.glade.h:51 ../troubleshoot/DeviceListed.py:40 - msgid "Device URI" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:53 -+#: ../glade/NewPrinterWindow.glade.h:52 - msgid "Device description." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:54 -+#: ../glade/NewPrinterWindow.glade.h:53 - msgid "DirectJet" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:56 -+#: ../glade/NewPrinterWindow.glade.h:55 - msgid "Driver details" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:57 -+#: ../glade/NewPrinterWindow.glade.h:56 - msgid "Empty" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:58 -+#: ../glade/NewPrinterWindow.glade.h:57 - msgid "Find _Queue..." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:59 -+#: ../glade/NewPrinterWindow.glade.h:58 - msgid "Flow Control" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:60 -+#: ../glade/NewPrinterWindow.glade.h:59 - msgid "" - "For the printer you have selected there are drivers available for download." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:61 -+#: ../glade/NewPrinterWindow.glade.h:60 - msgid "Free software" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:62 -+#: ../glade/NewPrinterWindow.glade.h:61 - msgid "Graphics:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:63 -+#: ../glade/NewPrinterWindow.glade.h:62 - msgid "Host:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:64 -+#: ../glade/NewPrinterWindow.glade.h:63 - msgid "Human-readable description such as \"HP LaserJet with Duplexer\"" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:65 -+#: ../glade/NewPrinterWindow.glade.h:64 - msgid "Human-readable location such as \"Lab 1\"" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:67 -+#: ../glade/NewPrinterWindow.glade.h:66 - msgid "LPD" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:68 -+#: ../glade/NewPrinterWindow.glade.h:67 - msgid "License:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:69 -+#: ../glade/NewPrinterWindow.glade.h:68 - msgid "Line art:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:70 -+#: ../glade/NewPrinterWindow.glade.h:69 - msgid "Local Driver" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:71 -+#: ../glade/NewPrinterWindow.glade.h:70 - msgid "Make and model:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:72 -+#: ../glade/NewPrinterWindow.glade.h:71 - msgid "Manufacturer" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:73 -+#: ../glade/NewPrinterWindow.glade.h:72 - msgid "Network" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:75 -+#: ../glade/NewPrinterWindow.glade.h:74 - msgid "No, I do not accept this license" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:76 -+#: ../glade/NewPrinterWindow.glade.h:75 - msgid "Parity" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:78 -+#: ../glade/NewPrinterWindow.glade.h:77 - msgid "Patented algorithms" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:79 -+#: ../glade/NewPrinterWindow.glade.h:78 - msgid "Photo:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:80 -+#: ../glade/NewPrinterWindow.glade.h:79 - msgid "Port number:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:81 -+#: ../glade/NewPrinterWindow.glade.h:80 - msgid "" - "PostScript Printer Description (PPD) files can often be found on the driver " - "disk that comes with the printer. For PostScript printers they are often " - "part of the Windows® driver." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:82 -+#: ../glade/NewPrinterWindow.glade.h:81 - msgid "Printer model:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:83 -+#: ../glade/NewPrinterWindow.glade.h:82 - msgid "Probe" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:84 -+#: ../glade/NewPrinterWindow.glade.h:83 - msgid "Prompt user if authentication is required" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:85 -+#: ../glade/NewPrinterWindow.glade.h:84 - msgid "Provide PPD file" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:86 -+#: ../glade/NewPrinterWindow.glade.h:85 - msgid "Queue:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:87 -+#: ../glade/NewPrinterWindow.glade.h:86 - msgid "SCSI" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:88 -+#: ../glade/NewPrinterWindow.glade.h:87 - msgid "SMB" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:89 -+#: ../glade/NewPrinterWindow.glade.h:88 - msgid "Search for a printer driver to download" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:90 -+#: ../glade/NewPrinterWindow.glade.h:89 - msgid "Searching..." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:91 -+#: ../glade/NewPrinterWindow.glade.h:90 - msgid "Select A File" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:92 -+#: ../glade/NewPrinterWindow.glade.h:91 - msgid "Select printer from database" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:93 -+#: ../glade/NewPrinterWindow.glade.h:92 - msgid "Serial" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:94 -+#: ../glade/NewPrinterWindow.glade.h:93 - msgid "Set authentication details now" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:95 -+#: ../glade/NewPrinterWindow.glade.h:94 - msgid "Short name for this printer such as \"laserjet\"" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:96 -+#: ../glade/NewPrinterWindow.glade.h:95 - msgid "Supplier:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:97 -+#: ../glade/NewPrinterWindow.glade.h:96 - msgid "Support:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:98 -+#: ../glade/NewPrinterWindow.glade.h:97 - msgid "Text:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:99 -+#: ../glade/NewPrinterWindow.glade.h:98 - msgid "" - "The foomatic printer database contains various manufacturer provided " - "PostScript Printer Description (PPD) files and also can generate PPD files " -@@ -1918,68 +1915,68 @@ msgid "" - "printer." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:100 -+#: ../glade/NewPrinterWindow.glade.h:99 - msgid "" - "These drivers do not come from your operating system supplier and will not " - "be covered by their commercial support. See the support and license terms " - "of the driver's supplier." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:101 -+#: ../glade/NewPrinterWindow.glade.h:100 - msgid "" - "This driver supports additional hardware that may be installed in the " - "printer." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:102 -+#: ../glade/NewPrinterWindow.glade.h:101 - msgid "" - "This is done by assuming that options with the same name do have the same " - "meaning. Settings of options that are not present in the new PPD will be " - "lost and options only present in the new PPD will be set to default." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:103 -+#: ../glade/NewPrinterWindow.glade.h:102 - msgid "" - "This way all current option settings will be lost. The default settings of " - "the new PPD will be used. " - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:104 -+#: ../glade/NewPrinterWindow.glade.h:103 - msgid "Try to copy the option settings over from the old PPD. " - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:105 -+#: ../glade/NewPrinterWindow.glade.h:104 - msgid "URI:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:107 -+#: ../glade/NewPrinterWindow.glade.h:106 - msgid "Use the new PPD (Postscript Printer Description) as is." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:109 -+#: ../glade/NewPrinterWindow.glade.h:108 - msgid "" - "With this choice no driver download will be performed. In the next steps a " - "locally installed driver will be selected." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:110 -+#: ../glade/NewPrinterWindow.glade.h:109 - msgid "Yes, I accept this license" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:111 -+#: ../glade/NewPrinterWindow.glade.h:110 - msgid "_Search" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:112 -+#: ../glade/NewPrinterWindow.glade.h:111 - msgid "_Verify..." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:113 -+#: ../glade/NewPrinterWindow.glade.h:112 - #: ../glade/PrinterPropertiesDialog.glade.h:128 - msgid "move left" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:114 -+#: ../glade/NewPrinterWindow.glade.h:113 - #: ../glade/PrinterPropertiesDialog.glade.h:129 - msgid "move right" - msgstr "" -@@ -2819,7 +2816,7 @@ msgstr "" - msgid "Remember to load paper of type '%s' into the printer first." - msgstr "" - --#: ../troubleshoot/PrintTestPage.py:399 -+#: ../troubleshoot/PrintTestPage.py:416 - msgid "Error submitting test page" - msgstr "" - -diff -up system-config-printer-1.1.5/po/id.po.git-1.1.x system-config-printer-1.1.5/po/id.po ---- system-config-printer-1.1.5/po/id.po.git-1.1.x 2009-03-03 22:21:46.000000000 +0000 -+++ system-config-printer-1.1.5/po/id.po 2009-03-10 17:43:31.000000000 +0000 -@@ -9,7 +9,7 @@ msgid "" - msgstr "" - "Project-Id-Version: printconf\n" - "Report-Msgid-Bugs-To: https://bugzilla.redhat.com/bugzilla\n" --"POT-Creation-Date: 2009-03-02 23:22+0000\n" -+"POT-Creation-Date: 2009-03-10 16:51+0000\n" - "PO-Revision-Date: 2005-10-31 00:38+0700\n" - "Last-Translator: Teguh DC \n" - "Language-Team: Linux Indonesia \n" -@@ -54,12 +54,12 @@ msgstr "" - msgid "Enter IP address" - msgstr "Hostname atau alamat IP Server" - --#: ../authconn.py:35 ../glade/NewPrinterWindow.glade.h:108 -+#: ../authconn.py:35 ../glade/NewPrinterWindow.glade.h:107 - #, fuzzy - msgid "Username:" - msgstr "Nama pengguna:" - --#: ../authconn.py:36 ../glade/NewPrinterWindow.glade.h:77 -+#: ../authconn.py:36 ../glade/NewPrinterWindow.glade.h:76 - msgid "Password:" - msgstr "Password:" - -@@ -68,7 +68,7 @@ msgstr "Password:" - msgid "Domain:" - msgstr "Margin atas (pt):" - --#: ../authconn.py:46 -+#: ../authconn.py:46 ../authconn.py:409 - #, fuzzy - msgid "Authentication" - msgstr "Autentikasi" -@@ -77,46 +77,55 @@ msgstr "Autentikasi" - msgid "Remember password" - msgstr "" - --#: ../authconn.py:211 ../authconn.py:232 -+#: ../authconn.py:208 -+#, python-format -+msgid "Unauthorized request (%s)" -+msgstr "" -+ -+#: ../authconn.py:209 -+msgid "You are not authorized to carry out therequested action." -+msgstr "" -+ -+#: ../authconn.py:212 ../authconn.py:233 - #, fuzzy - msgid "Operation canceled" - msgstr "Nama pilihan" - --#: ../authconn.py:253 -+#: ../authconn.py:250 - #, fuzzy, python-format - msgid "CUPS server error (%s)" - msgstr "Server:" - --#: ../authconn.py:255 ../errordialogs.py:57 --#: ../troubleshoot/PrintTestPage.py:400 -+#: ../authconn.py:252 ../errordialogs.py:56 ../errordialogs.py:70 -+#, fuzzy -+msgid "CUPS server error" -+msgstr "Server:" -+ -+#: ../authconn.py:261 ../errordialogs.py:57 -+#: ../troubleshoot/PrintTestPage.py:417 - #, fuzzy, python-format - msgid "There was an error during the CUPS operation: '%s'." - msgstr "Telah terjadi kesalahan saat mencoba mencetak halaman tes." - --#: ../authconn.py:258 -+#: ../authconn.py:264 - #, fuzzy - msgid "Retry" - msgstr "Tes" - --#: ../authconn.py:379 ../authconn.py:381 ../errordialogs.py:65 ../pysmb.py:75 -+#: ../authconn.py:385 ../authconn.py:387 ../errordialogs.py:65 ../pysmb.py:75 - #: ../pysmb.py:77 - msgid "Not authorized" - msgstr "" - --#: ../authconn.py:382 ../pysmb.py:78 -+#: ../authconn.py:388 ../pysmb.py:78 - msgid "The password may be incorrect." - msgstr "" - --#: ../authconn.py:400 -+#: ../authconn.py:407 - #, fuzzy, python-format - msgid "Authentication (%s)" - msgstr "Autentikasi" - --#: ../errordialogs.py:56 ../errordialogs.py:70 --#, fuzzy --msgid "CUPS server error" --msgstr "Server:" -- - #: ../errordialogs.py:66 - msgid "" - "The password may be incorrect, or the server may be configured to deny " -@@ -146,7 +155,7 @@ msgstr "Password:" - msgid "Server error" - msgstr "Printer:" - --#: ../errordialogs.py:82 ../system-config-printer.py:1219 -+#: ../errordialogs.py:82 ../system-config-printer.py:1223 - #, fuzzy - msgid "Not connected" - msgstr "Terkoneksi secara lokal" -@@ -169,7 +178,7 @@ msgstr "" - msgid "_New Group from Selection" - msgstr "" - --#: ../GroupsPane.py:98 ../system-config-printer.py:393 -+#: ../GroupsPane.py:98 ../system-config-printer.py:397 - #, fuzzy - msgid "_Rename" - msgstr "Hapus" -@@ -240,7 +249,7 @@ msgid "Document" - msgstr "Komentar" - - #: ../jobviewer.py:212 ../my-default-printer.py:153 --#: ../system-config-printer.py:366 ../system-config-printer.py:1367 -+#: ../system-config-printer.py:370 ../system-config-printer.py:1371 - #: ../troubleshoot/PrintTestPage.py:84 - #, fuzzy - msgid "Printer" -@@ -279,8 +288,8 @@ msgstr "" - - #: ../jobviewer.py:386 ../jobviewer.py:451 ../jobviewer.py:452 - #: ../jobviewer.py:492 ../jobviewer.py:600 ../jobviewer.py:727 --#: ../jobviewer.py:1196 ../jobviewer.py:1222 ../system-config-printer.py:2546 --#: ../glade/NewPrinterWindow.glade.h:106 -+#: ../jobviewer.py:1196 ../jobviewer.py:1222 ../system-config-printer.py:2556 -+#: ../glade/NewPrinterWindow.glade.h:105 - #: ../troubleshoot/ChooseNetworkPrinter.py:101 - #: ../troubleshoot/ChooseNetworkPrinter.py:102 - #: ../troubleshoot/ChooseNetworkPrinter.py:105 -@@ -372,12 +381,12 @@ msgstr "" - msgid "Pending" - msgstr "Mencetak" - --#: ../jobviewer.py:591 ../system-config-printer.py:186 -+#: ../jobviewer.py:591 ../system-config-printer.py:190 - #: ../troubleshoot/PrintTestPage.py:43 - msgid "Processing" - msgstr "" - --#: ../jobviewer.py:592 ../system-config-printer.py:188 -+#: ../jobviewer.py:592 ../system-config-printer.py:192 - #: ../troubleshoot/PrintTestPage.py:44 - msgid "Stopped" - msgstr "" -@@ -499,8 +508,8 @@ msgstr "Set sebagai _default" - msgid "_Set Default" - msgstr "Standar" - --#: ../my-default-printer.py:158 ../system-config-printer.py:423 --#: ../system-config-printer.py:3660 ../troubleshoot/ChooseNetworkPrinter.py:37 -+#: ../my-default-printer.py:158 ../system-config-printer.py:427 -+#: ../system-config-printer.py:3675 ../troubleshoot/ChooseNetworkPrinter.py:37 - #: ../troubleshoot/ChoosePrinter.py:38 - #, fuzzy - msgid "Location" -@@ -534,7 +543,7 @@ msgstr "Ini adalah deskripsi printer." - msgid "Authenticated" - msgstr "Autentikasi" - --#: ../ppdippstr.py:50 ../system-config-printer.py:6259 -+#: ../ppdippstr.py:50 ../system-config-printer.py:6207 - msgid "None" - msgstr "Kosong" - -@@ -757,217 +766,217 @@ msgstr "" - msgid "1200 dpi, photo, black + color cartridge, photo paper" - msgstr "" - --#: ../system-config-printer.py:127 -+#: ../system-config-printer.py:131 - msgid "To do this, select System->Administration->Firewall from the main menu." - msgstr "" - --#: ../system-config-printer.py:185 -+#: ../system-config-printer.py:189 - msgid "Idle" - msgstr "" - --#: ../system-config-printer.py:187 -+#: ../system-config-printer.py:191 - msgid "Busy" - msgstr "" - --#: ../system-config-printer.py:372 ../system-config-printer.py:1373 -+#: ../system-config-printer.py:376 ../system-config-printer.py:1377 - #, fuzzy - msgid "Class" - msgstr "Alias" - --#: ../system-config-printer.py:399 -+#: ../system-config-printer.py:403 - #, fuzzy - msgid "Set As De_fault" - msgstr "Standar" - --#: ../system-config-printer.py:403 -+#: ../system-config-printer.py:407 - #, fuzzy - msgid "_Create class" - msgstr "Printer Jetdirect" - --#: ../system-config-printer.py:405 -+#: ../system-config-printer.py:409 - #, fuzzy - msgid "View Print _Queue" - msgstr "Antrian Pencetakan Raw" - --#: ../system-config-printer.py:407 -+#: ../system-config-printer.py:411 - msgid "_Add to Group" - msgstr "" - --#: ../system-config-printer.py:409 -+#: ../system-config-printer.py:413 - msgid "Save Results as _Group" - msgstr "" - --#: ../system-config-printer.py:411 -+#: ../system-config-printer.py:415 - msgid "Save Filter as _Search Group" - msgstr "" - --#: ../system-config-printer.py:415 -+#: ../system-config-printer.py:419 - msgid "E_nabled" - msgstr "" - --#: ../system-config-printer.py:417 -+#: ../system-config-printer.py:421 - #, fuzzy - msgid "_Shared" - msgstr "Shared" - --#: ../system-config-printer.py:421 ../troubleshoot/ChooseNetworkPrinter.py:35 -+#: ../system-config-printer.py:425 ../troubleshoot/ChooseNetworkPrinter.py:35 - #: ../troubleshoot/ChoosePrinter.py:36 ../troubleshoot/DeviceListed.py:36 - msgid "Name" - msgstr "Nama" - --#: ../system-config-printer.py:422 -+#: ../system-config-printer.py:426 - #, fuzzy - msgid "Description" - msgstr "Deskripsi" - --#: ../system-config-printer.py:424 -+#: ../system-config-printer.py:428 - msgid "Manufacturer / Model" - msgstr "" - - #. Printer state reasons list --#: ../system-config-printer.py:499 -+#: ../system-config-printer.py:503 - msgid "Message" - msgstr "" - --#: ../system-config-printer.py:534 -+#: ../system-config-printer.py:538 - msgid "Problems?" - msgstr "" - --#: ../system-config-printer.py:637 ../system-config-printer.py:639 -+#: ../system-config-printer.py:641 ../system-config-printer.py:643 - msgid "Members of this class" - msgstr "" - --#: ../system-config-printer.py:638 ../system-config-printer.py:640 -+#: ../system-config-printer.py:642 ../system-config-printer.py:644 - msgid "Others" - msgstr "" - --#: ../system-config-printer.py:641 -+#: ../system-config-printer.py:645 - #, fuzzy - msgid "Devices" - msgstr "Perangkat" - --#: ../system-config-printer.py:642 -+#: ../system-config-printer.py:646 - #, fuzzy - msgid "Connections" - msgstr "Komentar" - --#: ../system-config-printer.py:643 -+#: ../system-config-printer.py:647 - msgid "Makes" - msgstr "" - --#: ../system-config-printer.py:644 -+#: ../system-config-printer.py:648 - #, fuzzy - msgid "Models" - msgstr "Model" - --#: ../system-config-printer.py:645 -+#: ../system-config-printer.py:649 - #, fuzzy - msgid "Drivers" - msgstr "Driver" - --#: ../system-config-printer.py:646 ../glade/NewPrinterWindow.glade.h:55 -+#: ../system-config-printer.py:650 ../glade/NewPrinterWindow.glade.h:54 - #, fuzzy - msgid "Downloadable Drivers" - msgstr "Driver-driver yang tersedia:" - --#: ../system-config-printer.py:647 -+#: ../system-config-printer.py:651 - #, fuzzy - msgid "Users" - msgstr "Pengguna" - --#: ../system-config-printer.py:682 -+#: ../system-config-printer.py:686 - msgid "Automatic rotation" - msgstr "" - --#: ../system-config-printer.py:989 -+#: ../system-config-printer.py:993 - #, fuzzy, python-format - msgid "Printer Properties - '%s' on %s" - msgstr "Opsi dari filter" - - #. The Conflict button was pressed. --#: ../system-config-printer.py:996 -+#: ../system-config-printer.py:1000 - msgid "" - "There are conflicting options.\n" - "Changes can only be applied after\n" - "these conflicts are resolved." - msgstr "" - --#: ../system-config-printer.py:1214 -+#: ../system-config-printer.py:1218 - #, python-format - msgid "Printer configuration - %s" - msgstr "Konfigurasi Printer - %s" - --#: ../system-config-printer.py:1217 -+#: ../system-config-printer.py:1221 - #, python-format - msgid "Connected to %s" - msgstr "" - - #. Update our copy of the printer's settings. --#: ../system-config-printer.py:1257 ../system-config-printer.py:2042 -+#: ../system-config-printer.py:1261 ../system-config-printer.py:2046 - msgid "obtaining queue details" - msgstr "" - --#: ../system-config-printer.py:1295 -+#: ../system-config-printer.py:1299 - msgid "Remove from Group" - msgstr "" - --#: ../system-config-printer.py:1361 -+#: ../system-config-printer.py:1365 - #, fuzzy - msgid "Network printer (discovered)" - msgstr "Printer:" - --#: ../system-config-printer.py:1364 -+#: ../system-config-printer.py:1368 - msgid "Network class (discovered)" - msgstr "" - --#: ../system-config-printer.py:1370 ../system-config-printer.py:5524 --#: ../system-config-printer.py:5594 ../system-config-printer.py:5596 -+#: ../system-config-printer.py:1374 ../system-config-printer.py:5519 -+#: ../system-config-printer.py:5589 ../system-config-printer.py:5591 - msgid "Fax" - msgstr "" - --#: ../system-config-printer.py:1376 ../system-config-printer.py:1382 -+#: ../system-config-printer.py:1380 ../system-config-printer.py:1386 - #: ../troubleshoot/LocalOrRemote.py:30 - #, fuzzy - msgid "Network printer" - msgstr "Printer:" - --#: ../system-config-printer.py:1379 -+#: ../system-config-printer.py:1383 - #, fuzzy - msgid "Network print share" - msgstr "Printer:" - --#: ../system-config-printer.py:1508 ../glade/ConnectingDialog.glade.h:2 -+#: ../system-config-printer.py:1512 ../glade/ConnectingDialog.glade.h:2 - #, no-c-format, python-format - msgid "Opening connection to %s" - msgstr "" - --#: ../system-config-printer.py:1887 -+#: ../system-config-printer.py:1891 - msgid "Installable Options" - msgstr "" - --#: ../system-config-printer.py:1888 -+#: ../system-config-printer.py:1892 - #: ../glade/PrinterPropertiesDialog.glade.h:109 - #, fuzzy - msgid "Printer Options" - msgstr "Opsi dari filter" - --#: ../system-config-printer.py:1924 -+#: ../system-config-printer.py:1928 - #, python-format - msgid "modifying class %s" - msgstr "" - --#: ../system-config-printer.py:1926 ../system-config-printer.py:3019 --#: ../system-config-printer.py:3044 ../system-config-printer.py:6547 --#: ../system-config-printer.py:6559 ../system-config-printer.py:6581 -+#: ../system-config-printer.py:1930 ../system-config-printer.py:3037 -+#: ../system-config-printer.py:3062 ../system-config-printer.py:6495 -+#: ../system-config-printer.py:6507 ../system-config-printer.py:6529 - #, fuzzy, python-format - msgid "modifying printer %s" - msgstr "Tambah antrian pencetakan baru" - --#: ../system-config-printer.py:1941 -+#: ../system-config-printer.py:1945 - msgid "This will delete this class!" - msgstr "" - --#: ../system-config-printer.py:1942 -+#: ../system-config-printer.py:1946 - msgid "Proceed anyway?" - msgstr "" - -@@ -975,72 +984,72 @@ msgstr "" - #. but we have never fetched the server settings to see whether - #. the server is publishing shared printers. Fetch the settings - #. now so that we can update the "not published" label if necessary. --#: ../system-config-printer.py:2030 ../system-config-printer.py:3203 -+#: ../system-config-printer.py:2034 ../system-config-printer.py:3221 - #, fuzzy - msgid "fetching server settings" - msgstr "Opsi dari Drviver" - --#: ../system-config-printer.py:2100 -+#: ../system-config-printer.py:2104 - #, fuzzy - msgid "Set Default Printer" - msgstr "Ini adalah deskripsi printer." - --#: ../system-config-printer.py:2102 -+#: ../system-config-printer.py:2106 - #, fuzzy - msgid "Do you want to set this as the system-wide default printer?" - msgstr "" - "Apakah anda ingin menyimpan peruahan\n" - "yang anda lakukan terhadap konfigurasi printer?" - --#: ../system-config-printer.py:2104 -+#: ../system-config-printer.py:2108 - #, fuzzy - msgid "Set as the _system-wide default printer" - msgstr "Ini adalah deskripsi printer." - --#: ../system-config-printer.py:2106 -+#: ../system-config-printer.py:2110 - msgid "_Clear my personal default setting" - msgstr "" - --#: ../system-config-printer.py:2107 -+#: ../system-config-printer.py:2111 - #, fuzzy - msgid "Set as my _personal default printer" - msgstr "Ini adalah deskripsi printer." - --#: ../system-config-printer.py:2112 -+#: ../system-config-printer.py:2116 - #, fuzzy - msgid "setting default printer" - msgstr "Ini adalah deskripsi printer." - --#: ../system-config-printer.py:2169 -+#: ../system-config-printer.py:2173 - #, fuzzy - msgid "printing test page" - msgstr "Catatan printer:" - --#: ../system-config-printer.py:2182 ../system-config-printer.py:2217 --#: ../system-config-printer.py:5418 -+#: ../system-config-printer.py:2186 ../system-config-printer.py:2221 -+#: ../system-config-printer.py:5413 - msgid "Not possible" - msgstr "" - --#: ../system-config-printer.py:2183 ../system-config-printer.py:2218 -+#: ../system-config-printer.py:2187 ../system-config-printer.py:2222 - msgid "" - "The remote server did not accept the print job, most likely because the " - "printer is not shared." - msgstr "" - --#: ../system-config-printer.py:2195 ../system-config-printer.py:2210 -+#: ../system-config-printer.py:2199 ../system-config-printer.py:2214 - msgid "Submitted" - msgstr "" - --#: ../system-config-printer.py:2196 -+#: ../system-config-printer.py:2200 - #, python-format - msgid "Test page submitted as job %d" - msgstr "" - --#: ../system-config-printer.py:2203 -+#: ../system-config-printer.py:2207 - msgid "sending maintenance command" - msgstr "" - --#: ../system-config-printer.py:2211 -+#: ../system-config-printer.py:2215 - #, python-format - msgid "Maintenance command submitted as job %d" - msgstr "" -@@ -1048,11 +1057,11 @@ msgstr "" - #. The underlying cupsGetPPD2() function returned NULL without - #. setting an IPP error, so it'll be something like a failed - #. connection. --#: ../system-config-printer.py:2285 ../system-config-printer.py:2381 -+#: ../system-config-printer.py:2289 ../system-config-printer.py:2385 - msgid "Error" - msgstr "Salah" - --#: ../system-config-printer.py:2286 -+#: ../system-config-printer.py:2290 - #, fuzzy - msgid "There was a problem connecting to the CUPS server." - msgstr "" -@@ -1060,68 +1069,68 @@ msgstr "" - "ke antrian '%s':\n" - "\n" - --#: ../system-config-printer.py:2382 -+#: ../system-config-printer.py:2386 - #, python-format - msgid "Option '%s' has value '%s' and cannot be edited." - msgstr "" - --#: ../system-config-printer.py:2466 -+#: ../system-config-printer.py:2476 - msgid "Marker levels are not reported for this printer." - msgstr "" - --#: ../system-config-printer.py:2763 -+#: ../system-config-printer.py:2773 - #, fuzzy - msgid "Cannot Rename" - msgstr "Hapus" - --#: ../system-config-printer.py:2764 -+#: ../system-config-printer.py:2774 - #, fuzzy - msgid "There are queued jobs." - msgstr "Tidak ada pilihan yang tersedia untuk driver ini." - --#: ../system-config-printer.py:2822 -+#: ../system-config-printer.py:2840 - #, fuzzy - msgid "renaming printer" - msgstr "Tambah antrian pencetakan baru" - - #. for classes make sure all members - #. will get added --#: ../system-config-printer.py:2907 -+#: ../system-config-printer.py:2925 - #, fuzzy - msgid "copying printer" - msgstr "Tambah antrian pencetakan baru" - --#: ../system-config-printer.py:2971 -+#: ../system-config-printer.py:2989 - #, fuzzy, python-format - msgid "Really delete class '%s'?" - msgstr "Yakin mau menghapus \"%s\"?" - --#: ../system-config-printer.py:2973 -+#: ../system-config-printer.py:2991 - #, fuzzy, python-format - msgid "Really delete printer '%s'?" - msgstr "Yakin mau menghapus \"%s\"?" - --#: ../system-config-printer.py:2975 -+#: ../system-config-printer.py:2993 - #, fuzzy - msgid "Really delete selected destinations?" - msgstr "Yakin mau menghapus \"%s\"?" - --#: ../system-config-printer.py:2996 -+#: ../system-config-printer.py:3014 - #, fuzzy, python-format - msgid "deleting printer %s" - msgstr "Tambah antrian pencetakan baru" - --#: ../system-config-printer.py:3070 -+#: ../system-config-printer.py:3088 - msgid "Publish Shared Printers" - msgstr "" - --#: ../system-config-printer.py:3071 -+#: ../system-config-printer.py:3089 - msgid "" - "Shared printers are not available to other people unless the 'Publish shared " - "printers' option is enabled in the server settings." - msgstr "" - --#: ../system-config-printer.py:3264 -+#: ../system-config-printer.py:3282 - #, fuzzy - msgid "modifying server settings" - msgstr "Opsi dari Drviver" -@@ -1132,109 +1141,109 @@ msgstr "Opsi dari Drviver" - #. be unblocked. Unfortunately, this is not yet possible - #. (bug #440469). However, we can display a dialog to suggest - #. that now might be a good time to review the firewall settings. --#: ../system-config-printer.py:3289 -+#: ../system-config-printer.py:3307 - #, fuzzy - msgid "Review Firewall" - msgstr "Berkas Perangkat" - --#: ../system-config-printer.py:3290 -+#: ../system-config-printer.py:3308 - msgid "" - "You may need to adjust the firewall to allow network printing to this " - "computer." - msgstr "" - --#: ../system-config-printer.py:3623 -+#: ../system-config-printer.py:3638 - msgid "Browsing not available (pysmbc not installed)" - msgstr "" - - #. SMB list columns --#: ../system-config-printer.py:3629 -+#: ../system-config-printer.py:3644 - msgid "Share" - msgstr "Share" - --#: ../system-config-printer.py:3635 -+#: ../system-config-printer.py:3650 - msgid "Comment" - msgstr "Komentar" - - #. IPP list columns --#: ../system-config-printer.py:3654 -+#: ../system-config-printer.py:3669 - msgid "Queue" - msgstr "Antrian" - --#: ../system-config-printer.py:3668 -+#: ../system-config-printer.py:3683 - msgid "" - "PostScript Printer Description files (*.ppd, *.PPD, *.ppd.gz, *.PPD.gz, *." - "PPD.GZ)" - msgstr "" - --#: ../system-config-printer.py:3677 -+#: ../system-config-printer.py:3692 - msgid "All files (*)" - msgstr "" - --#: ../system-config-printer.py:3713 ../system-config-printer.py:5970 --#: ../system-config-printer.py:6008 ../applet.py:124 -+#: ../system-config-printer.py:3728 ../system-config-printer.py:5918 -+#: ../system-config-printer.py:5956 ../applet.py:124 - #, fuzzy - msgid "Search" - msgstr "Peringatan" - --#: ../system-config-printer.py:3736 ../system-config-printer.py:3760 --#: ../glade/NewPrinterWindow.glade.h:74 -+#: ../system-config-printer.py:3751 ../system-config-printer.py:3775 -+#: ../glade/NewPrinterWindow.glade.h:73 - #, fuzzy - msgid "New Printer" - msgstr "Printer:" - --#: ../system-config-printer.py:3747 -+#: ../system-config-printer.py:3762 - msgid "New Class" - msgstr "" - --#: ../system-config-printer.py:3752 -+#: ../system-config-printer.py:3767 - msgid "Change Device URI" - msgstr "" - --#: ../system-config-printer.py:3758 -+#: ../system-config-printer.py:3773 - #, fuzzy - msgid "Change Driver" - msgstr "Gantilah Tipenya" - --#: ../system-config-printer.py:3927 ../system-config-printer.py:3993 --#: ../system-config-printer.py:4289 ../system-config-printer.py:4487 --#: ../system-config-printer.py:5772 ../system-config-printer.py:5995 -+#: ../system-config-printer.py:3942 ../system-config-printer.py:4008 -+#: ../system-config-printer.py:4304 ../system-config-printer.py:4502 -+#: ../system-config-printer.py:5762 ../system-config-printer.py:5943 - #, fuzzy - msgid "Searching" - msgstr "Peringatan" - --#: ../system-config-printer.py:3928 -+#: ../system-config-printer.py:3943 - #, fuzzy - msgid "Searching for downloadable drivers" - msgstr "Properti sharing" - --#: ../system-config-printer.py:3994 ../system-config-printer.py:4290 -+#: ../system-config-printer.py:4009 ../system-config-printer.py:4305 - #, fuzzy - msgid "Searching for drivers" - msgstr "Properti sharing" - --#: ../system-config-printer.py:4488 ../system-config-printer.py:5773 -+#: ../system-config-printer.py:4503 ../system-config-printer.py:5763 - #, fuzzy - msgid "Searching for printers" - msgstr "Properti sharing" - --#: ../system-config-printer.py:4497 -+#: ../system-config-printer.py:4512 - #, fuzzy - msgid "fetching device list" - msgstr "Opsi dari Drviver" - - #. Tell the user why he needs the plugin --#: ../system-config-printer.py:4579 -+#: ../system-config-printer.py:4594 - msgid "For this printer a proprietary driver plugin from HP is available.\n" - msgstr "" - --#: ../system-config-printer.py:4582 -+#: ../system-config-printer.py:4597 - msgid "" - "The installation of the plugin is required for your printer to work.\n" - "\n" - msgstr "" - --#: ../system-config-printer.py:4585 -+#: ../system-config-printer.py:4600 - msgid "" - "Installing the plugin is optional, it completes or enhances the " - "functionality\n" -@@ -1242,141 +1251,137 @@ msgid "" - "\n" - msgstr "" - --#: ../system-config-printer.py:4589 -+#: ../system-config-printer.py:4604 - msgid "The plugin provides the following features:\n" - msgstr "" - --#: ../system-config-printer.py:4592 -+#: ../system-config-printer.py:4607 - msgid " - Printing support\n" - msgstr "" - --#: ../system-config-printer.py:4595 -+#: ../system-config-printer.py:4610 - msgid " - Faster printing\n" - msgstr "" - --#: ../system-config-printer.py:4598 -+#: ../system-config-printer.py:4613 - msgid " - Better printout quality\n" - msgstr "" - --#: ../system-config-printer.py:4601 -+#: ../system-config-printer.py:4616 - msgid " - Extra printing features\n" - msgstr "" - --#: ../system-config-printer.py:4604 -+#: ../system-config-printer.py:4619 - msgid " - Scanning support\n" - msgstr "" - --#: ../system-config-printer.py:4607 -+#: ../system-config-printer.py:4622 - msgid " - Faster scanning\n" - msgstr "" - --#: ../system-config-printer.py:4610 -+#: ../system-config-printer.py:4625 - msgid " - Better scanning image quality\n" - msgstr "" - --#: ../system-config-printer.py:4613 -+#: ../system-config-printer.py:4628 - msgid " - Faxing support\n" - msgstr "" - --#: ../system-config-printer.py:4616 -+#: ../system-config-printer.py:4631 - msgid " - Extra fax features\n" - msgstr "" - --#: ../system-config-printer.py:4619 -+#: ../system-config-printer.py:4634 - msgid " - Better Input/Output support\n" - msgstr "" - --#: ../system-config-printer.py:4622 -+#: ../system-config-printer.py:4637 - msgid " - Extra user interface features\n" - msgstr "" - --#: ../system-config-printer.py:4625 -+#: ../system-config-printer.py:4640 - msgid " - Other extra features\n" - msgstr "" - --#: ../system-config-printer.py:4630 -+#: ../system-config-printer.py:4645 - #, fuzzy - msgid "Install plugin" - msgstr "Opsi dari filter" - --#: ../system-config-printer.py:4631 -+#: ../system-config-printer.py:4646 - #, fuzzy - msgid "Do not set up printer" - msgstr "Printer:" - --#: ../system-config-printer.py:4632 -+#: ../system-config-printer.py:4647 - msgid "Set up without plugin" - msgstr "" - --#: ../system-config-printer.py:4634 ../troubleshoot/PrintTestPage.py:118 -+#: ../system-config-printer.py:4649 ../troubleshoot/PrintTestPage.py:118 - msgid "Yes" - msgstr "Ya" - --#: ../system-config-printer.py:4635 ../troubleshoot/PrintTestPage.py:119 -+#: ../system-config-printer.py:4650 ../troubleshoot/PrintTestPage.py:119 - msgid "No" - msgstr "Tidak" - --#: ../system-config-printer.py:4809 ../system-config-printer.py:4813 -+#: ../system-config-printer.py:4824 ../system-config-printer.py:4828 - msgid " (Current)" - msgstr "" - --#: ../system-config-printer.py:4845 --msgid "HP Printer (HPLIP)" --msgstr "" -- --#: ../system-config-printer.py:4886 -+#: ../system-config-printer.py:4881 - msgid "Other" - msgstr "" - - #. device-info - #. PhysicalDevice obj - #. Separator? --#: ../system-config-printer.py:4902 -+#: ../system-config-printer.py:4897 - #, fuzzy - msgid "Network Printer" - msgstr "Printer:" - --#: ../system-config-printer.py:4906 -+#: ../system-config-printer.py:4901 - #, fuzzy - msgid "Find Network Printer" - msgstr "Printer:" - --#: ../system-config-printer.py:4979 ../system-config-printer.py:5376 -+#: ../system-config-printer.py:4974 ../system-config-printer.py:5371 - msgid "Scanning..." - msgstr "" - --#: ../system-config-printer.py:5034 ../system-config-printer.py:5798 -+#: ../system-config-printer.py:5029 - #, fuzzy - msgid "No Print Shares" - msgstr "Printer:" - --#: ../system-config-printer.py:5035 -+#: ../system-config-printer.py:5030 - msgid "" - "There were no print shares found. Please check that the Samba service is " - "marked as trusted in your firewall configuration." - msgstr "" - --#: ../system-config-printer.py:5296 ../system-config-printer.py:5357 -+#: ../system-config-printer.py:5291 ../system-config-printer.py:5352 - msgid "Print Share Verified" - msgstr "" - --#: ../system-config-printer.py:5297 ../system-config-printer.py:5358 -+#: ../system-config-printer.py:5292 ../system-config-printer.py:5353 - msgid "This print share is accessible." - msgstr "" - --#: ../system-config-printer.py:5302 ../system-config-printer.py:5362 -+#: ../system-config-printer.py:5297 ../system-config-printer.py:5357 - msgid "This print share is not accessible." - msgstr "" - --#: ../system-config-printer.py:5305 -+#: ../system-config-printer.py:5300 - msgid "Print Share Inaccessible" - msgstr "" - --#: ../system-config-printer.py:5361 -+#: ../system-config-printer.py:5356 - msgid "Inaccessible" - msgstr "" - --#: ../system-config-printer.py:5419 -+#: ../system-config-printer.py:5414 - #, fuzzy, python-format - msgid "It is not possible to obtain a list of queues from '%s'." - msgstr "" -@@ -1384,158 +1389,154 @@ msgstr "" - "ke antrian '%s':\n" - "\n" - --#: ../system-config-printer.py:5421 -+#: ../system-config-printer.py:5416 - msgid "" - "Obtaining a list of queues is a CUPS extension to IPP. Network printers do " - "not support it." - msgstr "" - --#: ../system-config-printer.py:5424 -+#: ../system-config-printer.py:5419 - #, fuzzy - msgid "No queues" - msgstr "A_ntrian baru" - --#: ../system-config-printer.py:5425 -+#: ../system-config-printer.py:5420 - #, fuzzy - msgid "There are no queues available." - msgstr "Tidak ada pilihan yang tersedia untuk driver ini." - --#: ../system-config-printer.py:5516 -+#: ../system-config-printer.py:5511 - msgid "Parallel Port" - msgstr "" - --#: ../system-config-printer.py:5518 -+#: ../system-config-printer.py:5513 - #, fuzzy - msgid "Serial Port" - msgstr "Umum" - --#: ../system-config-printer.py:5520 -+#: ../system-config-printer.py:5515 - msgid "USB" - msgstr "" - --#: ../system-config-printer.py:5522 ../system-config-printer.py:5525 -+#: ../system-config-printer.py:5517 ../system-config-printer.py:5520 - msgid "HP Linux Imaging and Printing (HPLIP)" - msgstr "" - --#: ../system-config-printer.py:5527 -+#: ../system-config-printer.py:5522 - msgid "Hardware Abstraction Layer (HAL)" - msgstr "" - --#: ../system-config-printer.py:5529 -+#: ../system-config-printer.py:5524 - #, fuzzy - msgid "AppSocket/HP JetDirect" - msgstr "_JetDirect dalam jaringan" - --#: ../system-config-printer.py:5538 -+#: ../system-config-printer.py:5533 - #, python-format - msgid "LPD/LPR queue '%s'" - msgstr "" - --#: ../system-config-printer.py:5540 -+#: ../system-config-printer.py:5535 - msgid "LPD/LPR queue" - msgstr "" - --#: ../system-config-printer.py:5543 -+#: ../system-config-printer.py:5538 - #, fuzzy - msgid "Windows Printer via SAMBA" - msgstr "Windows Printer (SMB) Data" - --#: ../system-config-printer.py:5545 ../glade/NewPrinterWindow.glade.h:66 -+#: ../system-config-printer.py:5540 ../glade/NewPrinterWindow.glade.h:65 - #, fuzzy - msgid "IPP" - msgstr "IP:" - --#: ../system-config-printer.py:5547 -+#: ../system-config-printer.py:5542 - msgid "HTTP" - msgstr "" - --#: ../system-config-printer.py:5632 -+#: ../system-config-printer.py:5624 - msgid "A printer connected to the parallel port." - msgstr "" - --#: ../system-config-printer.py:5634 -+#: ../system-config-printer.py:5626 - msgid "A printer connected to a USB port." - msgstr "" - --#: ../system-config-printer.py:5636 -+#: ../system-config-printer.py:5628 - msgid "" - "HPLIP software driving a printer, or the printer function of a multi-" - "function device." - msgstr "" - --#: ../system-config-printer.py:5639 -+#: ../system-config-printer.py:5631 - msgid "" - "HPLIP software driving a fax machine, or the fax function of a multi-" - "function device." - msgstr "" - --#: ../system-config-printer.py:5642 -+#: ../system-config-printer.py:5634 - msgid "Local printer detected by the Hardware Abstraction Layer (HAL)." - msgstr "" - --#: ../system-config-printer.py:5799 --msgid "HPLIP cannot find the device." --msgstr "" -- --#: ../system-config-printer.py:5881 -+#: ../system-config-printer.py:5831 - msgid "No printer was found at that address." - msgstr "" - --#: ../system-config-printer.py:6020 -+#: ../system-config-printer.py:5968 - #, fuzzy - msgid "-- Select from search results --" - msgstr "Anda harus memilih model printer." - --#: ../system-config-printer.py:6022 -+#: ../system-config-printer.py:5970 - msgid "-- No matches found --" - msgstr "" - --#: ../system-config-printer.py:6203 -+#: ../system-config-printer.py:6151 - #, fuzzy - msgid " (recommended)" - msgstr "" - "(driver yang\n" - "disarankan adalah %s)" - --#: ../system-config-printer.py:6217 -+#: ../system-config-printer.py:6165 - msgid "This PPD is generated by foomatic." - msgstr "" - --#: ../system-config-printer.py:6241 -+#: ../system-config-printer.py:6189 - #, fuzzy - msgid "OpenPrinting" - msgstr "Mencetak" - --#: ../system-config-printer.py:6252 -+#: ../system-config-printer.py:6200 - msgid "Distributable" - msgstr "" - --#: ../system-config-printer.py:6293 -+#: ../system-config-printer.py:6241 - msgid ", " - msgstr "" - --#: ../system-config-printer.py:6298 -+#: ../system-config-printer.py:6246 - #, python-format - msgid "" - "\n" - "(%s)" - msgstr "" - --#: ../system-config-printer.py:6303 -+#: ../system-config-printer.py:6251 - msgid "No support contacts known" - msgstr "" - --#: ../system-config-printer.py:6307 ../system-config-printer.py:6320 -+#: ../system-config-printer.py:6255 ../system-config-printer.py:6268 - #, fuzzy - msgid "Not specified." - msgstr "Anda harus menentukan perangkat." - - #. Foomatic database problem of some sort. --#: ../system-config-printer.py:6360 -+#: ../system-config-printer.py:6308 - msgid "Database error" - msgstr "" - --#: ../system-config-printer.py:6361 -+#: ../system-config-printer.py:6309 - #, python-format - msgid "The '%s' driver cannot be used with printer '%s %s'." - msgstr "" -@@ -1543,65 +1544,65 @@ msgstr "" - #. This printer references some XML that is not - #. installed by default. Point the user at the - #. package they need to install. --#: ../system-config-printer.py:6371 -+#: ../system-config-printer.py:6319 - #, python-format - msgid "You will need to install the '%s' package in order to use this driver." - msgstr "" - - #. This error came from trying to open the PPD file. --#: ../system-config-printer.py:6378 -+#: ../system-config-printer.py:6326 - msgid "PPD error" - msgstr "" - --#: ../system-config-printer.py:6380 -+#: ../system-config-printer.py:6328 - msgid "Failed to read PPD file. Possible reason follows:" - msgstr "" - - #. Failed to get PPD downloaded from OpenPrinting XXX --#: ../system-config-printer.py:6397 -+#: ../system-config-printer.py:6345 - #, fuzzy - msgid "Downloadable drivers" - msgstr "Driver-driver yang tersedia:" - --#: ../system-config-printer.py:6398 -+#: ../system-config-printer.py:6346 - msgid "Failed to download PPD." - msgstr "" - --#: ../system-config-printer.py:6405 -+#: ../system-config-printer.py:6353 - #, fuzzy - msgid "fetching PPD" - msgstr "Gantilah Tipenya" - --#: ../system-config-printer.py:6434 ../system-config-printer.py:6472 -+#: ../system-config-printer.py:6382 ../system-config-printer.py:6420 - msgid "No Installable Options" - msgstr "" - --#: ../system-config-printer.py:6520 -+#: ../system-config-printer.py:6468 - #, fuzzy, python-format - msgid "adding printer %s" - msgstr "Tambah antrian pencetakan baru" - --#: ../system-config-printer.py:6669 -+#: ../system-config-printer.py:6617 - #, fuzzy - msgid "Would you like to print a test page?" - msgstr "Apakah anda ingin mencetak halaman tes?" - --#: ../system-config-printer.py:6722 -+#: ../system-config-printer.py:6670 - #, fuzzy - msgid "Install driver" - msgstr "Driver Printer" - --#: ../system-config-printer.py:6723 ../troubleshoot/CheckPPDSanity.py:131 -+#: ../system-config-printer.py:6671 ../troubleshoot/CheckPPDSanity.py:131 - #, python-format - msgid "Printer '%s' requires the %s package but it is not currently installed." - msgstr "" - --#: ../system-config-printer.py:6739 -+#: ../system-config-printer.py:6687 - #, fuzzy - msgid "Missing driver" - msgstr "Driver Printer" - --#: ../system-config-printer.py:6740 -+#: ../system-config-printer.py:6688 - #, python-format - msgid "" - "Printer '%s' requires the '%s' program but it is not currently installed. " -@@ -1730,116 +1731,111 @@ msgstr "Perangkat Printer" - - #: ../glade/NewPrinterWindow.glade.h:5 - #, fuzzy --msgid "HP Printer (HPLIP) via network" --msgstr "Model printer" -- --#: ../glade/NewPrinterWindow.glade.h:6 --#, fuzzy - msgid "IPP Printer" - msgstr "Model printer" - --#: ../glade/NewPrinterWindow.glade.h:7 -+#: ../glade/NewPrinterWindow.glade.h:6 - #, fuzzy - msgid "License Terms" - msgstr "Model printer" - --#: ../glade/NewPrinterWindow.glade.h:8 -+#: ../glade/NewPrinterWindow.glade.h:7 - msgid "Location of the LPD network printer" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:9 -+#: ../glade/NewPrinterWindow.glade.h:8 - msgid "Location of the network printer" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:10 -+#: ../glade/NewPrinterWindow.glade.h:9 - msgid "Location (optional)" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:11 -+#: ../glade/NewPrinterWindow.glade.h:10 - #, fuzzy - msgid "Network Printer" - msgstr "Printer:" - --#: ../glade/NewPrinterWindow.glade.h:12 -+#: ../glade/NewPrinterWindow.glade.h:11 - #, fuzzy - msgid "Note" - msgstr "Model printer" - --#: ../glade/NewPrinterWindow.glade.h:13 -+#: ../glade/NewPrinterWindow.glade.h:12 - msgid "Output Quality" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:14 -+#: ../glade/NewPrinterWindow.glade.h:13 - #, fuzzy - msgid "Printer Name" - msgstr "Model printer" - --#: ../glade/NewPrinterWindow.glade.h:15 -+#: ../glade/NewPrinterWindow.glade.h:14 - #, fuzzy - msgid "SMB Printer" - msgstr "Model printer" - --#: ../glade/NewPrinterWindow.glade.h:16 -+#: ../glade/NewPrinterWindow.glade.h:15 - #, fuzzy - msgid "Select Driver" - msgstr "Model printer" - --#: ../glade/NewPrinterWindow.glade.h:17 -+#: ../glade/NewPrinterWindow.glade.h:16 - msgid "Settings of the serial port" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:18 -+#: ../glade/NewPrinterWindow.glade.h:17 - msgid "smb://[workgroup/]server[:port]/printer" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:19 -+#: ../glade/NewPrinterWindow.glade.h:18 - msgid "Choose Class Members" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:20 -+#: ../glade/NewPrinterWindow.glade.h:19 - msgid "Choose Driver" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:21 -+#: ../glade/NewPrinterWindow.glade.h:20 - msgid "Describe Printer" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:22 -+#: ../glade/NewPrinterWindow.glade.h:21 - msgid "Existing Settings" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:23 -+#: ../glade/NewPrinterWindow.glade.h:22 - msgid "Installable Options" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:24 -+#: ../glade/NewPrinterWindow.glade.h:23 - msgid "Select Device" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:25 -+#: ../glade/NewPrinterWindow.glade.h:24 - msgid "Baud Rate" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:26 -+#: ../glade/NewPrinterWindow.glade.h:25 - msgid "Browse..." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:27 -+#: ../glade/NewPrinterWindow.glade.h:26 - #, fuzzy - msgid "Comments..." - msgstr "Komentar" - --#: ../glade/NewPrinterWindow.glade.h:28 -+#: ../glade/NewPrinterWindow.glade.h:27 - #, fuzzy - msgid "Connection" - msgstr "_Aksi" - --#: ../glade/NewPrinterWindow.glade.h:29 -+#: ../glade/NewPrinterWindow.glade.h:28 - #, fuzzy - msgid "Data Bits" - msgstr "Detil" - --#: ../glade/NewPrinterWindow.glade.h:30 -+#: ../glade/NewPrinterWindow.glade.h:29 - msgid "" - "Default\n" - "1200\n" -@@ -1852,7 +1848,7 @@ msgid "" - "115200" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:39 -+#: ../glade/NewPrinterWindow.glade.h:38 - #, fuzzy - msgid "" - "Default\n" -@@ -1860,7 +1856,7 @@ msgid "" - "7" - msgstr "Default" - --#: ../glade/NewPrinterWindow.glade.h:42 -+#: ../glade/NewPrinterWindow.glade.h:41 - msgid "" - "Default\n" - "None\n" -@@ -1868,7 +1864,7 @@ msgid "" - "Even" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:46 -+#: ../glade/NewPrinterWindow.glade.h:45 - msgid "" - "Default\n" - "None\n" -@@ -1877,205 +1873,205 @@ msgid "" - "DTR/DSR (Hardware)" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:51 -+#: ../glade/NewPrinterWindow.glade.h:50 - #: ../glade/PrinterPropertiesDialog.glade.h:35 - #, fuzzy - msgid "Description:" - msgstr "Deskripsi" - --#: ../glade/NewPrinterWindow.glade.h:52 ../troubleshoot/DeviceListed.py:40 -+#: ../glade/NewPrinterWindow.glade.h:51 ../troubleshoot/DeviceListed.py:40 - #, fuzzy - msgid "Device URI" - msgstr "Perangkat:" - --#: ../glade/NewPrinterWindow.glade.h:53 -+#: ../glade/NewPrinterWindow.glade.h:52 - #, fuzzy - msgid "Device description." - msgstr "Deskripsi" - --#: ../glade/NewPrinterWindow.glade.h:54 -+#: ../glade/NewPrinterWindow.glade.h:53 - msgid "DirectJet" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:56 -+#: ../glade/NewPrinterWindow.glade.h:55 - #, fuzzy - msgid "Driver details" - msgstr "Driver" - --#: ../glade/NewPrinterWindow.glade.h:57 -+#: ../glade/NewPrinterWindow.glade.h:56 - msgid "Empty" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:58 -+#: ../glade/NewPrinterWindow.glade.h:57 - msgid "Find _Queue..." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:59 -+#: ../glade/NewPrinterWindow.glade.h:58 - msgid "Flow Control" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:60 -+#: ../glade/NewPrinterWindow.glade.h:59 - msgid "" - "For the printer you have selected there are drivers available for download." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:61 -+#: ../glade/NewPrinterWindow.glade.h:60 - msgid "Free software" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:62 -+#: ../glade/NewPrinterWindow.glade.h:61 - msgid "Graphics:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:63 -+#: ../glade/NewPrinterWindow.glade.h:62 - #, fuzzy - msgid "Host:" - msgstr "IP HOST" - --#: ../glade/NewPrinterWindow.glade.h:64 -+#: ../glade/NewPrinterWindow.glade.h:63 - msgid "Human-readable description such as \"HP LaserJet with Duplexer\"" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:65 -+#: ../glade/NewPrinterWindow.glade.h:64 - msgid "Human-readable location such as \"Lab 1\"" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:67 -+#: ../glade/NewPrinterWindow.glade.h:66 - msgid "LPD" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:68 -+#: ../glade/NewPrinterWindow.glade.h:67 - msgid "License:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:69 -+#: ../glade/NewPrinterWindow.glade.h:68 - #, fuzzy - msgid "Line art:" - msgstr "Catatan printer:" - --#: ../glade/NewPrinterWindow.glade.h:70 -+#: ../glade/NewPrinterWindow.glade.h:69 - #, fuzzy - msgid "Local Driver" - msgstr "Ubah Printer di Lokal" - --#: ../glade/NewPrinterWindow.glade.h:71 -+#: ../glade/NewPrinterWindow.glade.h:70 - #, fuzzy - msgid "Make and model:" - msgstr "Diperlukan pembuat dan model.\n" - --#: ../glade/NewPrinterWindow.glade.h:72 -+#: ../glade/NewPrinterWindow.glade.h:71 - msgid "Manufacturer" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:73 -+#: ../glade/NewPrinterWindow.glade.h:72 - #, fuzzy - msgid "Network" - msgstr "Printer:" - --#: ../glade/NewPrinterWindow.glade.h:75 -+#: ../glade/NewPrinterWindow.glade.h:74 - msgid "No, I do not accept this license" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:76 -+#: ../glade/NewPrinterWindow.glade.h:75 - msgid "Parity" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:78 -+#: ../glade/NewPrinterWindow.glade.h:77 - msgid "Patented algorithms" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:79 -+#: ../glade/NewPrinterWindow.glade.h:78 - #, fuzzy - msgid "Photo:" - msgstr "Port:" - --#: ../glade/NewPrinterWindow.glade.h:80 -+#: ../glade/NewPrinterWindow.glade.h:79 - msgid "Port number:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:81 -+#: ../glade/NewPrinterWindow.glade.h:80 - msgid "" - "PostScript Printer Description (PPD) files can often be found on the driver " - "disk that comes with the printer. For PostScript printers they are often " - "part of the Windows® driver." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:82 -+#: ../glade/NewPrinterWindow.glade.h:81 - #, fuzzy - msgid "Printer model:" - msgstr "Model printer" - --#: ../glade/NewPrinterWindow.glade.h:83 -+#: ../glade/NewPrinterWindow.glade.h:82 - msgid "Probe" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:84 -+#: ../glade/NewPrinterWindow.glade.h:83 - #, fuzzy - msgid "Prompt user if authentication is required" - msgstr "Autentikasi" - --#: ../glade/NewPrinterWindow.glade.h:85 -+#: ../glade/NewPrinterWindow.glade.h:84 - msgid "Provide PPD file" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:86 -+#: ../glade/NewPrinterWindow.glade.h:85 - msgid "Queue:" - msgstr "Antrian:" - --#: ../glade/NewPrinterWindow.glade.h:87 -+#: ../glade/NewPrinterWindow.glade.h:86 - msgid "SCSI" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:88 -+#: ../glade/NewPrinterWindow.glade.h:87 - msgid "SMB" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:89 -+#: ../glade/NewPrinterWindow.glade.h:88 - msgid "Search for a printer driver to download" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:90 -+#: ../glade/NewPrinterWindow.glade.h:89 - #, fuzzy - msgid "Searching..." - msgstr "Peringatan" - --#: ../glade/NewPrinterWindow.glade.h:91 -+#: ../glade/NewPrinterWindow.glade.h:90 - msgid "Select A File" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:92 -+#: ../glade/NewPrinterWindow.glade.h:91 - msgid "Select printer from database" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:93 -+#: ../glade/NewPrinterWindow.glade.h:92 - #, fuzzy - msgid "Serial" - msgstr "Umum" - --#: ../glade/NewPrinterWindow.glade.h:94 -+#: ../glade/NewPrinterWindow.glade.h:93 - #, fuzzy - msgid "Set authentication details now" - msgstr "Autentikasi" - --#: ../glade/NewPrinterWindow.glade.h:95 -+#: ../glade/NewPrinterWindow.glade.h:94 - msgid "Short name for this printer such as \"laserjet\"" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:96 -+#: ../glade/NewPrinterWindow.glade.h:95 - msgid "Supplier:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:97 -+#: ../glade/NewPrinterWindow.glade.h:96 - #, fuzzy - msgid "Support:" - msgstr "Port:" - --#: ../glade/NewPrinterWindow.glade.h:98 -+#: ../glade/NewPrinterWindow.glade.h:97 - #, fuzzy - msgid "Text:" - msgstr "_Tes" - --#: ../glade/NewPrinterWindow.glade.h:99 -+#: ../glade/NewPrinterWindow.glade.h:98 - msgid "" - "The foomatic printer database contains various manufacturer provided " - "PostScript Printer Description (PPD) files and also can generate PPD files " -@@ -2084,70 +2080,70 @@ msgid "" - "printer." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:100 -+#: ../glade/NewPrinterWindow.glade.h:99 - msgid "" - "These drivers do not come from your operating system supplier and will not " - "be covered by their commercial support. See the support and license terms " - "of the driver's supplier." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:101 -+#: ../glade/NewPrinterWindow.glade.h:100 - msgid "" - "This driver supports additional hardware that may be installed in the " - "printer." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:102 -+#: ../glade/NewPrinterWindow.glade.h:101 - msgid "" - "This is done by assuming that options with the same name do have the same " - "meaning. Settings of options that are not present in the new PPD will be " - "lost and options only present in the new PPD will be set to default." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:103 -+#: ../glade/NewPrinterWindow.glade.h:102 - msgid "" - "This way all current option settings will be lost. The default settings of " - "the new PPD will be used. " - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:104 -+#: ../glade/NewPrinterWindow.glade.h:103 - msgid "Try to copy the option settings over from the old PPD. " - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:105 -+#: ../glade/NewPrinterWindow.glade.h:104 - msgid "URI:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:107 -+#: ../glade/NewPrinterWindow.glade.h:106 - msgid "Use the new PPD (Postscript Printer Description) as is." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:109 -+#: ../glade/NewPrinterWindow.glade.h:108 - msgid "" - "With this choice no driver download will be performed. In the next steps a " - "locally installed driver will be selected." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:110 -+#: ../glade/NewPrinterWindow.glade.h:109 - msgid "Yes, I accept this license" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:111 -+#: ../glade/NewPrinterWindow.glade.h:110 - #, fuzzy - msgid "_Search" - msgstr "Peringatan" - --#: ../glade/NewPrinterWindow.glade.h:112 -+#: ../glade/NewPrinterWindow.glade.h:111 - #, fuzzy - msgid "_Verify..." - msgstr "Tentukan..." - --#: ../glade/NewPrinterWindow.glade.h:113 -+#: ../glade/NewPrinterWindow.glade.h:112 - #: ../glade/PrinterPropertiesDialog.glade.h:128 - msgid "move left" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:114 -+#: ../glade/NewPrinterWindow.glade.h:113 - #: ../glade/PrinterPropertiesDialog.glade.h:129 - msgid "move right" - msgstr "" -@@ -3061,7 +3057,7 @@ msgstr "" - msgid "Remember to load paper of type '%s' into the printer first." - msgstr "" - --#: ../troubleshoot/PrintTestPage.py:399 -+#: ../troubleshoot/PrintTestPage.py:416 - msgid "Error submitting test page" - msgstr "" - -@@ -3266,6 +3262,10 @@ msgid "Select default printer" - msgstr "Ini adalah deskripsi printer." - - #, fuzzy -+#~ msgid "HP Printer (HPLIP) via network" -+#~ msgstr "Model printer" -+ -+#, fuzzy - #~ msgid "Not Found" - #~ msgstr "Terkoneksi secara lokal" - -diff -up system-config-printer-1.1.5/po/is.po.git-1.1.x system-config-printer-1.1.5/po/is.po ---- system-config-printer-1.1.5/po/is.po.git-1.1.x 2009-03-03 22:21:46.000000000 +0000 -+++ system-config-printer-1.1.5/po/is.po 2009-03-10 17:43:31.000000000 +0000 -@@ -6,7 +6,7 @@ msgid "" - msgstr "" - "Project-Id-Version: system-config-printer 1\n" - "Report-Msgid-Bugs-To: https://bugzilla.redhat.com/bugzilla\n" --"POT-Creation-Date: 2009-03-02 23:22+0000\n" -+"POT-Creation-Date: 2009-03-10 16:51+0000\n" - "PO-Revision-Date: 2007-05-01 10:31+0000\n" - "Last-Translator: Richard Allen \n" - "Language-Team: Icelandic \n" -@@ -51,11 +51,11 @@ msgstr "" - msgid "Enter IP address" - msgstr "Heiti prentara" - --#: ../authconn.py:35 ../glade/NewPrinterWindow.glade.h:108 -+#: ../authconn.py:35 ../glade/NewPrinterWindow.glade.h:107 - msgid "Username:" - msgstr "Notandi:" - --#: ../authconn.py:36 ../glade/NewPrinterWindow.glade.h:77 -+#: ../authconn.py:36 ../glade/NewPrinterWindow.glade.h:76 - msgid "Password:" - msgstr "Lykilorð:" - -@@ -64,7 +64,7 @@ msgstr "Lykilorð:" - msgid "Domain:" - msgstr "Efri spássía:" - --#: ../authconn.py:46 -+#: ../authconn.py:46 ../authconn.py:409 - #, fuzzy - msgid "Authentication" - msgstr "Auðkenning" -@@ -73,43 +73,52 @@ msgstr "Auðkenning" - msgid "Remember password" - msgstr "" - --#: ../authconn.py:211 ../authconn.py:232 -+#: ../authconn.py:208 -+#, python-format -+msgid "Unauthorized request (%s)" -+msgstr "" -+ -+#: ../authconn.py:209 -+msgid "You are not authorized to carry out therequested action." -+msgstr "" -+ -+#: ../authconn.py:212 ../authconn.py:233 - msgid "Operation canceled" - msgstr "" - --#: ../authconn.py:253 -+#: ../authconn.py:250 - #, fuzzy, python-format - msgid "CUPS server error (%s)" - msgstr "Villa frá CUPS þjóni" - --#: ../authconn.py:255 ../errordialogs.py:57 --#: ../troubleshoot/PrintTestPage.py:400 -+#: ../authconn.py:252 ../errordialogs.py:56 ../errordialogs.py:70 -+msgid "CUPS server error" -+msgstr "Villa frá CUPS þjóni" -+ -+#: ../authconn.py:261 ../errordialogs.py:57 -+#: ../troubleshoot/PrintTestPage.py:417 - #, python-format - msgid "There was an error during the CUPS operation: '%s'." - msgstr "Það kom upp villa þegar CUPS aðgerðin '%s' var reynd." - --#: ../authconn.py:258 -+#: ../authconn.py:264 - msgid "Retry" - msgstr "" - --#: ../authconn.py:379 ../authconn.py:381 ../errordialogs.py:65 ../pysmb.py:75 -+#: ../authconn.py:385 ../authconn.py:387 ../errordialogs.py:65 ../pysmb.py:75 - #: ../pysmb.py:77 - msgid "Not authorized" - msgstr "Ekki leyfilegt" - --#: ../authconn.py:382 ../pysmb.py:78 -+#: ../authconn.py:388 ../pysmb.py:78 - msgid "The password may be incorrect." - msgstr "Lykilorðið er kanski rangt." - --#: ../authconn.py:400 -+#: ../authconn.py:407 - #, fuzzy, python-format - msgid "Authentication (%s)" - msgstr "Auðkenning" - --#: ../errordialogs.py:56 ../errordialogs.py:70 --msgid "CUPS server error" --msgstr "Villa frá CUPS þjóni" -- - #: ../errordialogs.py:66 - msgid "" - "The password may be incorrect, or the server may be configured to deny " -@@ -136,7 +145,7 @@ msgstr "Uppfærslu er þörf" - msgid "Server error" - msgstr "Villa frá þjóni" - --#: ../errordialogs.py:82 ../system-config-printer.py:1219 -+#: ../errordialogs.py:82 ../system-config-printer.py:1223 - msgid "Not connected" - msgstr "Ekki tengdur" - -@@ -158,7 +167,7 @@ msgstr "" - msgid "_New Group from Selection" - msgstr "" - --#: ../GroupsPane.py:98 ../system-config-printer.py:393 -+#: ../GroupsPane.py:98 ../system-config-printer.py:397 - #, fuzzy - msgid "_Rename" - msgstr "_Sleppa" -@@ -227,7 +236,7 @@ msgid "Document" - msgstr "Skjal" - - #: ../jobviewer.py:212 ../my-default-printer.py:153 --#: ../system-config-printer.py:366 ../system-config-printer.py:1367 -+#: ../system-config-printer.py:370 ../system-config-printer.py:1371 - #: ../troubleshoot/PrintTestPage.py:84 - msgid "Printer" - msgstr "Prentari" -@@ -264,8 +273,8 @@ msgstr "Staða prentverks" - - #: ../jobviewer.py:386 ../jobviewer.py:451 ../jobviewer.py:452 - #: ../jobviewer.py:492 ../jobviewer.py:600 ../jobviewer.py:727 --#: ../jobviewer.py:1196 ../jobviewer.py:1222 ../system-config-printer.py:2546 --#: ../glade/NewPrinterWindow.glade.h:106 -+#: ../jobviewer.py:1196 ../jobviewer.py:1222 ../system-config-printer.py:2556 -+#: ../glade/NewPrinterWindow.glade.h:105 - #: ../troubleshoot/ChooseNetworkPrinter.py:101 - #: ../troubleshoot/ChooseNetworkPrinter.py:102 - #: ../troubleshoot/ChooseNetworkPrinter.py:105 -@@ -355,12 +364,12 @@ msgstr "" - msgid "Pending" - msgstr "Í bið" - --#: ../jobviewer.py:591 ../system-config-printer.py:186 -+#: ../jobviewer.py:591 ../system-config-printer.py:190 - #: ../troubleshoot/PrintTestPage.py:43 - msgid "Processing" - msgstr "Í vinnslu" - --#: ../jobviewer.py:592 ../system-config-printer.py:188 -+#: ../jobviewer.py:592 ../system-config-printer.py:192 - #: ../troubleshoot/PrintTestPage.py:44 - msgid "Stopped" - msgstr "Stöðvaður" -@@ -475,8 +484,8 @@ msgstr "" - msgid "_Set Default" - msgstr "Sjálfgefið" - --#: ../my-default-printer.py:158 ../system-config-printer.py:423 --#: ../system-config-printer.py:3660 ../troubleshoot/ChooseNetworkPrinter.py:37 -+#: ../my-default-printer.py:158 ../system-config-printer.py:427 -+#: ../system-config-printer.py:3675 ../troubleshoot/ChooseNetworkPrinter.py:37 - #: ../troubleshoot/ChoosePrinter.py:38 - #, fuzzy - msgid "Location" -@@ -510,7 +519,7 @@ msgstr "Gera að sjálfgefnum prentara" - msgid "Authenticated" - msgstr "Auðkenning" - --#: ../ppdippstr.py:50 ../system-config-printer.py:6259 -+#: ../ppdippstr.py:50 ../system-config-printer.py:6207 - #, fuzzy - msgid "None" - msgstr "enginn" -@@ -729,213 +738,213 @@ msgstr "" - msgid "1200 dpi, photo, black + color cartridge, photo paper" - msgstr "" - --#: ../system-config-printer.py:127 -+#: ../system-config-printer.py:131 - msgid "To do this, select System->Administration->Firewall from the main menu." - msgstr "" - --#: ../system-config-printer.py:185 -+#: ../system-config-printer.py:189 - msgid "Idle" - msgstr "Óvirkur" - --#: ../system-config-printer.py:187 -+#: ../system-config-printer.py:191 - msgid "Busy" - msgstr "Upptekinn" - --#: ../system-config-printer.py:372 ../system-config-printer.py:1373 -+#: ../system-config-printer.py:376 ../system-config-printer.py:1377 - #, fuzzy - msgid "Class" - msgstr "Nýr flokkur" - --#: ../system-config-printer.py:399 -+#: ../system-config-printer.py:403 - #, fuzzy - msgid "Set As De_fault" - msgstr "Sjálfgefið" - --#: ../system-config-printer.py:403 -+#: ../system-config-printer.py:407 - #, fuzzy - msgid "_Create class" - msgstr "Fjartengdir flokkar" - --#: ../system-config-printer.py:405 -+#: ../system-config-printer.py:409 - #, fuzzy - msgid "View Print _Queue" - msgstr "Nýr prentari" - --#: ../system-config-printer.py:407 -+#: ../system-config-printer.py:411 - msgid "_Add to Group" - msgstr "" - --#: ../system-config-printer.py:409 -+#: ../system-config-printer.py:413 - msgid "Save Results as _Group" - msgstr "" - --#: ../system-config-printer.py:411 -+#: ../system-config-printer.py:415 - msgid "Save Filter as _Search Group" - msgstr "" - --#: ../system-config-printer.py:415 -+#: ../system-config-printer.py:419 - #, fuzzy - msgid "E_nabled" - msgstr "_Skrá" - --#: ../system-config-printer.py:417 -+#: ../system-config-printer.py:421 - #, fuzzy - msgid "_Shared" - msgstr "Netprentari" - --#: ../system-config-printer.py:421 ../troubleshoot/ChooseNetworkPrinter.py:35 -+#: ../system-config-printer.py:425 ../troubleshoot/ChooseNetworkPrinter.py:35 - #: ../troubleshoot/ChoosePrinter.py:36 ../troubleshoot/DeviceListed.py:36 - msgid "Name" - msgstr "Heiti" - --#: ../system-config-printer.py:422 -+#: ../system-config-printer.py:426 - #, fuzzy - msgid "Description" - msgstr "Lýsing" - --#: ../system-config-printer.py:424 -+#: ../system-config-printer.py:428 - msgid "Manufacturer / Model" - msgstr "" - - #. Printer state reasons list --#: ../system-config-printer.py:499 -+#: ../system-config-printer.py:503 - msgid "Message" - msgstr "Skilaboð" - --#: ../system-config-printer.py:534 -+#: ../system-config-printer.py:538 - #, fuzzy - msgid "Problems?" - msgstr "Leita" - --#: ../system-config-printer.py:637 ../system-config-printer.py:639 -+#: ../system-config-printer.py:641 ../system-config-printer.py:643 - msgid "Members of this class" - msgstr "Meðlimir þessa flokks" - --#: ../system-config-printer.py:638 ../system-config-printer.py:640 -+#: ../system-config-printer.py:642 ../system-config-printer.py:644 - msgid "Others" - msgstr "Aðrir" - --#: ../system-config-printer.py:641 -+#: ../system-config-printer.py:645 - msgid "Devices" - msgstr "Tæki" - --#: ../system-config-printer.py:642 -+#: ../system-config-printer.py:646 - #, fuzzy - msgid "Connections" - msgstr "Tengist" - --#: ../system-config-printer.py:643 -+#: ../system-config-printer.py:647 - msgid "Makes" - msgstr "Gerðir" - --#: ../system-config-printer.py:644 -+#: ../system-config-printer.py:648 - msgid "Models" - msgstr "Tegundir" - --#: ../system-config-printer.py:645 -+#: ../system-config-printer.py:649 - msgid "Drivers" - msgstr "Reklar" - --#: ../system-config-printer.py:646 ../glade/NewPrinterWindow.glade.h:55 -+#: ../system-config-printer.py:650 ../glade/NewPrinterWindow.glade.h:54 - msgid "Downloadable Drivers" - msgstr "" - --#: ../system-config-printer.py:647 -+#: ../system-config-printer.py:651 - msgid "Users" - msgstr "Notendur" - --#: ../system-config-printer.py:682 -+#: ../system-config-printer.py:686 - msgid "Automatic rotation" - msgstr "" - --#: ../system-config-printer.py:989 -+#: ../system-config-printer.py:993 - #, fuzzy, python-format - msgid "Printer Properties - '%s' on %s" - msgstr "Prentaraskýrsla" - - #. The Conflict button was pressed. --#: ../system-config-printer.py:996 -+#: ../system-config-printer.py:1000 - msgid "" - "There are conflicting options.\n" - "Changes can only be applied after\n" - "these conflicts are resolved." - msgstr "" - --#: ../system-config-printer.py:1214 -+#: ../system-config-printer.py:1218 - #, python-format - msgid "Printer configuration - %s" - msgstr "Stillingar prentara - %s" - --#: ../system-config-printer.py:1217 -+#: ../system-config-printer.py:1221 - #, python-format - msgid "Connected to %s" - msgstr "Tengdur %s" - - #. Update our copy of the printer's settings. --#: ../system-config-printer.py:1257 ../system-config-printer.py:2042 -+#: ../system-config-printer.py:1261 ../system-config-printer.py:2046 - msgid "obtaining queue details" - msgstr "" - --#: ../system-config-printer.py:1295 -+#: ../system-config-printer.py:1299 - msgid "Remove from Group" - msgstr "" - --#: ../system-config-printer.py:1361 -+#: ../system-config-printer.py:1365 - #, fuzzy - msgid "Network printer (discovered)" - msgstr "Nýr prentari" - --#: ../system-config-printer.py:1364 -+#: ../system-config-printer.py:1368 - msgid "Network class (discovered)" - msgstr "" - --#: ../system-config-printer.py:1370 ../system-config-printer.py:5524 --#: ../system-config-printer.py:5594 ../system-config-printer.py:5596 -+#: ../system-config-printer.py:1374 ../system-config-printer.py:5519 -+#: ../system-config-printer.py:5589 ../system-config-printer.py:5591 - msgid "Fax" - msgstr "" - --#: ../system-config-printer.py:1376 ../system-config-printer.py:1382 -+#: ../system-config-printer.py:1380 ../system-config-printer.py:1386 - #: ../troubleshoot/LocalOrRemote.py:30 - #, fuzzy - msgid "Network printer" - msgstr "Nýr prentari" - --#: ../system-config-printer.py:1379 -+#: ../system-config-printer.py:1383 - #, fuzzy - msgid "Network print share" - msgstr "Nýr prentari" - --#: ../system-config-printer.py:1508 ../glade/ConnectingDialog.glade.h:2 -+#: ../system-config-printer.py:1512 ../glade/ConnectingDialog.glade.h:2 - #, no-c-format, python-format - msgid "Opening connection to %s" - msgstr "" - --#: ../system-config-printer.py:1887 -+#: ../system-config-printer.py:1891 - msgid "Installable Options" - msgstr "Uppsetjanlegir hlutir" - --#: ../system-config-printer.py:1888 -+#: ../system-config-printer.py:1892 - #: ../glade/PrinterPropertiesDialog.glade.h:109 - msgid "Printer Options" - msgstr "Rofar prentara" - --#: ../system-config-printer.py:1924 -+#: ../system-config-printer.py:1928 - #, python-format - msgid "modifying class %s" - msgstr "" - --#: ../system-config-printer.py:1926 ../system-config-printer.py:3019 --#: ../system-config-printer.py:3044 ../system-config-printer.py:6547 --#: ../system-config-printer.py:6559 ../system-config-printer.py:6581 -+#: ../system-config-printer.py:1930 ../system-config-printer.py:3037 -+#: ../system-config-printer.py:3062 ../system-config-printer.py:6495 -+#: ../system-config-printer.py:6507 ../system-config-printer.py:6529 - #, fuzzy, python-format - msgid "modifying printer %s" - msgstr "Stilla prentara" - --#: ../system-config-printer.py:1941 -+#: ../system-config-printer.py:1945 - msgid "This will delete this class!" - msgstr "Þetta mun eyða þessum flokk!" - --#: ../system-config-printer.py:1942 -+#: ../system-config-printer.py:1946 - msgid "Proceed anyway?" - msgstr "Halda samt áfram?" - -@@ -943,50 +952,50 @@ msgstr "Halda samt áfram?" - #. but we have never fetched the server settings to see whether - #. the server is publishing shared printers. Fetch the settings - #. now so that we can update the "not published" label if necessary. --#: ../system-config-printer.py:2030 ../system-config-printer.py:3203 -+#: ../system-config-printer.py:2034 ../system-config-printer.py:3221 - #, fuzzy - msgid "fetching server settings" - msgstr "Rofar rekils" - --#: ../system-config-printer.py:2100 -+#: ../system-config-printer.py:2104 - #, fuzzy - msgid "Set Default Printer" - msgstr "Gera að sjálfgefnum prentara" - --#: ../system-config-printer.py:2102 -+#: ../system-config-printer.py:2106 - msgid "Do you want to set this as the system-wide default printer?" - msgstr "" - --#: ../system-config-printer.py:2104 -+#: ../system-config-printer.py:2108 - #, fuzzy - msgid "Set as the _system-wide default printer" - msgstr "Þetta er sjálfgefni prentarinn" - --#: ../system-config-printer.py:2106 -+#: ../system-config-printer.py:2110 - msgid "_Clear my personal default setting" - msgstr "" - --#: ../system-config-printer.py:2107 -+#: ../system-config-printer.py:2111 - #, fuzzy - msgid "Set as my _personal default printer" - msgstr "Gera að sjálfgefnum prentara" - --#: ../system-config-printer.py:2112 -+#: ../system-config-printer.py:2116 - #, fuzzy - msgid "setting default printer" - msgstr "Gera að sjálfgefnum prentara" - --#: ../system-config-printer.py:2169 -+#: ../system-config-printer.py:2173 - #, fuzzy - msgid "printing test page" - msgstr "Prenta prófunarsíðu" - --#: ../system-config-printer.py:2182 ../system-config-printer.py:2217 --#: ../system-config-printer.py:5418 -+#: ../system-config-printer.py:2186 ../system-config-printer.py:2221 -+#: ../system-config-printer.py:5413 - msgid "Not possible" - msgstr "Ekki mögulegt" - --#: ../system-config-printer.py:2183 ../system-config-printer.py:2218 -+#: ../system-config-printer.py:2187 ../system-config-printer.py:2222 - msgid "" - "The remote server did not accept the print job, most likely because the " - "printer is not shared." -@@ -994,20 +1003,20 @@ msgstr "" - "Þjónninn tók ekki við prentverkinu líkast til vegna þess að prentaranum " - "hefur ekki verið deilt á netinu." - --#: ../system-config-printer.py:2195 ../system-config-printer.py:2210 -+#: ../system-config-printer.py:2199 ../system-config-printer.py:2214 - msgid "Submitted" - msgstr "Sent" - --#: ../system-config-printer.py:2196 -+#: ../system-config-printer.py:2200 - #, python-format - msgid "Test page submitted as job %d" - msgstr "Tilraunasíða send sem verk %d" - --#: ../system-config-printer.py:2203 -+#: ../system-config-printer.py:2207 - msgid "sending maintenance command" - msgstr "" - --#: ../system-config-printer.py:2211 -+#: ../system-config-printer.py:2215 - #, fuzzy, python-format - msgid "Maintenance command submitted as job %d" - msgstr "Tilraunasíða send sem verk %d" -@@ -1015,75 +1024,75 @@ msgstr "Tilraunasíða send sem verk %d" - #. The underlying cupsGetPPD2() function returned NULL without - #. setting an IPP error, so it'll be something like a failed - #. connection. --#: ../system-config-printer.py:2285 ../system-config-printer.py:2381 -+#: ../system-config-printer.py:2289 ../system-config-printer.py:2385 - msgid "Error" - msgstr "Villa" - --#: ../system-config-printer.py:2286 -+#: ../system-config-printer.py:2290 - msgid "There was a problem connecting to the CUPS server." - msgstr "Það kom upp villa þegar tengst var við CUPS þjóninn." - --#: ../system-config-printer.py:2382 -+#: ../system-config-printer.py:2386 - #, python-format - msgid "Option '%s' has value '%s' and cannot be edited." - msgstr "" - --#: ../system-config-printer.py:2466 -+#: ../system-config-printer.py:2476 - msgid "Marker levels are not reported for this printer." - msgstr "" - --#: ../system-config-printer.py:2763 -+#: ../system-config-printer.py:2773 - #, fuzzy - msgid "Cannot Rename" - msgstr "_Sleppa" - --#: ../system-config-printer.py:2764 -+#: ../system-config-printer.py:2774 - msgid "There are queued jobs." - msgstr "" - --#: ../system-config-printer.py:2822 -+#: ../system-config-printer.py:2840 - #, fuzzy - msgid "renaming printer" - msgstr "Stilla prentara" - - #. for classes make sure all members - #. will get added --#: ../system-config-printer.py:2907 -+#: ../system-config-printer.py:2925 - #, fuzzy - msgid "copying printer" - msgstr "Stilla prentara" - --#: ../system-config-printer.py:2971 -+#: ../system-config-printer.py:2989 - #, fuzzy, python-format - msgid "Really delete class '%s'?" - msgstr "Virkilega eyða flokknum %s?" - --#: ../system-config-printer.py:2973 -+#: ../system-config-printer.py:2991 - #, fuzzy, python-format - msgid "Really delete printer '%s'?" - msgstr "Virkilega eyða prentaranum %s?" - --#: ../system-config-printer.py:2975 -+#: ../system-config-printer.py:2993 - #, fuzzy - msgid "Really delete selected destinations?" - msgstr "Virkilega eyða prentaranum %s?" - --#: ../system-config-printer.py:2996 -+#: ../system-config-printer.py:3014 - #, fuzzy, python-format - msgid "deleting printer %s" - msgstr "Stilla prentara" - --#: ../system-config-printer.py:3070 -+#: ../system-config-printer.py:3088 - msgid "Publish Shared Printers" - msgstr "" - --#: ../system-config-printer.py:3071 -+#: ../system-config-printer.py:3089 - msgid "" - "Shared printers are not available to other people unless the 'Publish shared " - "printers' option is enabled in the server settings." - msgstr "" - --#: ../system-config-printer.py:3264 -+#: ../system-config-printer.py:3282 - #, fuzzy - msgid "modifying server settings" - msgstr "Rofar rekils" -@@ -1094,105 +1103,105 @@ msgstr "Rofar rekils" - #. be unblocked. Unfortunately, this is not yet possible - #. (bug #440469). However, we can display a dialog to suggest - #. that now might be a good time to review the firewall settings. --#: ../system-config-printer.py:3289 -+#: ../system-config-printer.py:3307 - msgid "Review Firewall" - msgstr "" - --#: ../system-config-printer.py:3290 -+#: ../system-config-printer.py:3308 - msgid "" - "You may need to adjust the firewall to allow network printing to this " - "computer." - msgstr "" - --#: ../system-config-printer.py:3623 -+#: ../system-config-printer.py:3638 - msgid "Browsing not available (pysmbc not installed)" - msgstr "" - - #. SMB list columns --#: ../system-config-printer.py:3629 -+#: ../system-config-printer.py:3644 - msgid "Share" - msgstr "Netprentari" - --#: ../system-config-printer.py:3635 -+#: ../system-config-printer.py:3650 - msgid "Comment" - msgstr "Athugasemd" - - #. IPP list columns --#: ../system-config-printer.py:3654 -+#: ../system-config-printer.py:3669 - msgid "Queue" - msgstr "" - --#: ../system-config-printer.py:3668 -+#: ../system-config-printer.py:3683 - #, fuzzy - msgid "" - "PostScript Printer Description files (*.ppd, *.PPD, *.ppd.gz, *.PPD.gz, *." - "PPD.GZ)" - msgstr "PostScript Prentaralýsing (*.ppd[.gz])" - --#: ../system-config-printer.py:3677 -+#: ../system-config-printer.py:3692 - msgid "All files (*)" - msgstr "" - --#: ../system-config-printer.py:3713 ../system-config-printer.py:5970 --#: ../system-config-printer.py:6008 ../applet.py:124 -+#: ../system-config-printer.py:3728 ../system-config-printer.py:5918 -+#: ../system-config-printer.py:5956 ../applet.py:124 - #, fuzzy - msgid "Search" - msgstr "Nýtt heiti prentara" - --#: ../system-config-printer.py:3736 ../system-config-printer.py:3760 --#: ../glade/NewPrinterWindow.glade.h:74 -+#: ../system-config-printer.py:3751 ../system-config-printer.py:3775 -+#: ../glade/NewPrinterWindow.glade.h:73 - msgid "New Printer" - msgstr "Nýr prentari" - --#: ../system-config-printer.py:3747 -+#: ../system-config-printer.py:3762 - msgid "New Class" - msgstr "Nýr flokkur" - --#: ../system-config-printer.py:3752 -+#: ../system-config-printer.py:3767 - msgid "Change Device URI" - msgstr "Breyta URI tækis" - --#: ../system-config-printer.py:3758 -+#: ../system-config-printer.py:3773 - msgid "Change Driver" - msgstr "Breyta rekli" - --#: ../system-config-printer.py:3927 ../system-config-printer.py:3993 --#: ../system-config-printer.py:4289 ../system-config-printer.py:4487 --#: ../system-config-printer.py:5772 ../system-config-printer.py:5995 -+#: ../system-config-printer.py:3942 ../system-config-printer.py:4008 -+#: ../system-config-printer.py:4304 ../system-config-printer.py:4502 -+#: ../system-config-printer.py:5762 ../system-config-printer.py:5943 - msgid "Searching" - msgstr "" - --#: ../system-config-printer.py:3928 -+#: ../system-config-printer.py:3943 - #, fuzzy - msgid "Searching for downloadable drivers" - msgstr "Nýtt heiti prentara" - --#: ../system-config-printer.py:3994 ../system-config-printer.py:4290 -+#: ../system-config-printer.py:4009 ../system-config-printer.py:4305 - msgid "Searching for drivers" - msgstr "" - --#: ../system-config-printer.py:4488 ../system-config-printer.py:5773 -+#: ../system-config-printer.py:4503 ../system-config-printer.py:5763 - #, fuzzy - msgid "Searching for printers" - msgstr "Nýtt heiti prentara" - --#: ../system-config-printer.py:4497 -+#: ../system-config-printer.py:4512 - #, fuzzy - msgid "fetching device list" - msgstr "Rofar rekils" - - #. Tell the user why he needs the plugin --#: ../system-config-printer.py:4579 -+#: ../system-config-printer.py:4594 - msgid "For this printer a proprietary driver plugin from HP is available.\n" - msgstr "" - --#: ../system-config-printer.py:4582 -+#: ../system-config-printer.py:4597 - msgid "" - "The installation of the plugin is required for your printer to work.\n" - "\n" - msgstr "" - --#: ../system-config-printer.py:4585 -+#: ../system-config-printer.py:4600 - msgid "" - "Installing the plugin is optional, it completes or enhances the " - "functionality\n" -@@ -1200,292 +1209,284 @@ msgid "" - "\n" - msgstr "" - --#: ../system-config-printer.py:4589 -+#: ../system-config-printer.py:4604 - msgid "The plugin provides the following features:\n" - msgstr "" - --#: ../system-config-printer.py:4592 -+#: ../system-config-printer.py:4607 - msgid " - Printing support\n" - msgstr "" - --#: ../system-config-printer.py:4595 -+#: ../system-config-printer.py:4610 - msgid " - Faster printing\n" - msgstr "" - --#: ../system-config-printer.py:4598 -+#: ../system-config-printer.py:4613 - msgid " - Better printout quality\n" - msgstr "" - --#: ../system-config-printer.py:4601 -+#: ../system-config-printer.py:4616 - msgid " - Extra printing features\n" - msgstr "" - --#: ../system-config-printer.py:4604 -+#: ../system-config-printer.py:4619 - msgid " - Scanning support\n" - msgstr "" - --#: ../system-config-printer.py:4607 -+#: ../system-config-printer.py:4622 - msgid " - Faster scanning\n" - msgstr "" - --#: ../system-config-printer.py:4610 -+#: ../system-config-printer.py:4625 - msgid " - Better scanning image quality\n" - msgstr "" - --#: ../system-config-printer.py:4613 -+#: ../system-config-printer.py:4628 - msgid " - Faxing support\n" - msgstr "" - --#: ../system-config-printer.py:4616 -+#: ../system-config-printer.py:4631 - msgid " - Extra fax features\n" - msgstr "" - --#: ../system-config-printer.py:4619 -+#: ../system-config-printer.py:4634 - msgid " - Better Input/Output support\n" - msgstr "" - --#: ../system-config-printer.py:4622 -+#: ../system-config-printer.py:4637 - msgid " - Extra user interface features\n" - msgstr "" - --#: ../system-config-printer.py:4625 -+#: ../system-config-printer.py:4640 - msgid " - Other extra features\n" - msgstr "" - --#: ../system-config-printer.py:4630 -+#: ../system-config-printer.py:4645 - #, fuzzy - msgid "Install plugin" - msgstr "Uppsetjanlegir hlutir" - --#: ../system-config-printer.py:4631 -+#: ../system-config-printer.py:4646 - #, fuzzy - msgid "Do not set up printer" - msgstr "Afrita prentara" - --#: ../system-config-printer.py:4632 -+#: ../system-config-printer.py:4647 - msgid "Set up without plugin" - msgstr "" - --#: ../system-config-printer.py:4634 ../troubleshoot/PrintTestPage.py:118 -+#: ../system-config-printer.py:4649 ../troubleshoot/PrintTestPage.py:118 - msgid "Yes" - msgstr "" - --#: ../system-config-printer.py:4635 ../troubleshoot/PrintTestPage.py:119 -+#: ../system-config-printer.py:4650 ../troubleshoot/PrintTestPage.py:119 - msgid "No" - msgstr "" - --#: ../system-config-printer.py:4809 ../system-config-printer.py:4813 -+#: ../system-config-printer.py:4824 ../system-config-printer.py:4828 - msgid " (Current)" - msgstr " (núverandi)" - --#: ../system-config-printer.py:4845 --msgid "HP Printer (HPLIP)" --msgstr "" -- --#: ../system-config-printer.py:4886 -+#: ../system-config-printer.py:4881 - msgid "Other" - msgstr "Annað" - - #. device-info - #. PhysicalDevice obj - #. Separator? --#: ../system-config-printer.py:4902 -+#: ../system-config-printer.py:4897 - #, fuzzy - msgid "Network Printer" - msgstr "Nýr prentari" - --#: ../system-config-printer.py:4906 -+#: ../system-config-printer.py:4901 - #, fuzzy - msgid "Find Network Printer" - msgstr "Nýr prentari" - --#: ../system-config-printer.py:4979 ../system-config-printer.py:5376 -+#: ../system-config-printer.py:4974 ../system-config-printer.py:5371 - msgid "Scanning..." - msgstr "" - --#: ../system-config-printer.py:5034 ../system-config-printer.py:5798 -+#: ../system-config-printer.py:5029 - #, fuzzy - msgid "No Print Shares" - msgstr "Nýr prentari" - --#: ../system-config-printer.py:5035 -+#: ../system-config-printer.py:5030 - msgid "" - "There were no print shares found. Please check that the Samba service is " - "marked as trusted in your firewall configuration." - msgstr "" - --#: ../system-config-printer.py:5296 ../system-config-printer.py:5357 -+#: ../system-config-printer.py:5291 ../system-config-printer.py:5352 - msgid "Print Share Verified" - msgstr "" - --#: ../system-config-printer.py:5297 ../system-config-printer.py:5358 -+#: ../system-config-printer.py:5292 ../system-config-printer.py:5353 - msgid "This print share is accessible." - msgstr "Þessi prentdeild er aðgengileg" - --#: ../system-config-printer.py:5302 ../system-config-printer.py:5362 -+#: ../system-config-printer.py:5297 ../system-config-printer.py:5357 - msgid "This print share is not accessible." - msgstr "Þessi prentdeild er ekki aðgengileg" - --#: ../system-config-printer.py:5305 -+#: ../system-config-printer.py:5300 - #, fuzzy - msgid "Print Share Inaccessible" - msgstr "Þessi prentdeild er aðgengileg" - --#: ../system-config-printer.py:5361 -+#: ../system-config-printer.py:5356 - msgid "Inaccessible" - msgstr "Óaðgengilegt" - --#: ../system-config-printer.py:5419 -+#: ../system-config-printer.py:5414 - #, fuzzy, python-format - msgid "It is not possible to obtain a list of queues from '%s'." - msgstr "Það kom upp villa þegar tengst var við CUPS þjóninn." - --#: ../system-config-printer.py:5421 -+#: ../system-config-printer.py:5416 - msgid "" - "Obtaining a list of queues is a CUPS extension to IPP. Network printers do " - "not support it." - msgstr "" - --#: ../system-config-printer.py:5424 -+#: ../system-config-printer.py:5419 - msgid "No queues" - msgstr "" - --#: ../system-config-printer.py:5425 -+#: ../system-config-printer.py:5420 - msgid "There are no queues available." - msgstr "" - --#: ../system-config-printer.py:5516 -+#: ../system-config-printer.py:5511 - msgid "Parallel Port" - msgstr "" - --#: ../system-config-printer.py:5518 -+#: ../system-config-printer.py:5513 - #, fuzzy - msgid "Serial Port" - msgstr "Raðtengdur" - --#: ../system-config-printer.py:5520 -+#: ../system-config-printer.py:5515 - #, fuzzy - msgid "USB" - msgstr "SMB" - --#: ../system-config-printer.py:5522 ../system-config-printer.py:5525 -+#: ../system-config-printer.py:5517 ../system-config-printer.py:5520 - msgid "HP Linux Imaging and Printing (HPLIP)" - msgstr "" - --#: ../system-config-printer.py:5527 -+#: ../system-config-printer.py:5522 - msgid "Hardware Abstraction Layer (HAL)" - msgstr "" - --#: ../system-config-printer.py:5529 -+#: ../system-config-printer.py:5524 - msgid "AppSocket/HP JetDirect" - msgstr "" - --#: ../system-config-printer.py:5538 -+#: ../system-config-printer.py:5533 - #, python-format - msgid "LPD/LPR queue '%s'" - msgstr "" - --#: ../system-config-printer.py:5540 -+#: ../system-config-printer.py:5535 - #, fuzzy - msgid "LPD/LPR queue" - msgstr "LPD" - --#: ../system-config-printer.py:5543 -+#: ../system-config-printer.py:5538 - msgid "Windows Printer via SAMBA" - msgstr "" - --#: ../system-config-printer.py:5545 ../glade/NewPrinterWindow.glade.h:66 -+#: ../system-config-printer.py:5540 ../glade/NewPrinterWindow.glade.h:65 - msgid "IPP" - msgstr "IPP" - --#: ../system-config-printer.py:5547 -+#: ../system-config-printer.py:5542 - msgid "HTTP" - msgstr "" - --#: ../system-config-printer.py:5632 -+#: ../system-config-printer.py:5624 - msgid "A printer connected to the parallel port." - msgstr "Prentari tengdur í raðtengið." - --#: ../system-config-printer.py:5634 -+#: ../system-config-printer.py:5626 - msgid "A printer connected to a USB port." - msgstr "Prentari tengdur í USB tengi." - --#: ../system-config-printer.py:5636 -+#: ../system-config-printer.py:5628 - msgid "" - "HPLIP software driving a printer, or the printer function of a multi-" - "function device." - msgstr "" - --#: ../system-config-printer.py:5639 -+#: ../system-config-printer.py:5631 - msgid "" - "HPLIP software driving a fax machine, or the fax function of a multi-" - "function device." - msgstr "" - --#: ../system-config-printer.py:5642 -+#: ../system-config-printer.py:5634 - msgid "Local printer detected by the Hardware Abstraction Layer (HAL)." - msgstr "" - --#: ../system-config-printer.py:5799 --msgid "HPLIP cannot find the device." --msgstr "" -- --#: ../system-config-printer.py:5881 -+#: ../system-config-printer.py:5831 - msgid "No printer was found at that address." - msgstr "" - --#: ../system-config-printer.py:6020 -+#: ../system-config-printer.py:5968 - #, fuzzy - msgid "-- Select from search results --" - msgstr "Velja prentara úr gagnagrunni" - --#: ../system-config-printer.py:6022 -+#: ../system-config-printer.py:5970 - msgid "-- No matches found --" - msgstr "" - --#: ../system-config-printer.py:6203 -+#: ../system-config-printer.py:6151 - msgid " (recommended)" - msgstr " (mælt er með þessu)" - --#: ../system-config-printer.py:6217 -+#: ../system-config-printer.py:6165 - msgid "This PPD is generated by foomatic." - msgstr "" - --#: ../system-config-printer.py:6241 -+#: ../system-config-printer.py:6189 - #, fuzzy - msgid "OpenPrinting" - msgstr "Prenta" - --#: ../system-config-printer.py:6252 -+#: ../system-config-printer.py:6200 - msgid "Distributable" - msgstr "" - --#: ../system-config-printer.py:6293 -+#: ../system-config-printer.py:6241 - #, fuzzy - msgid ", " - msgstr " " - --#: ../system-config-printer.py:6298 -+#: ../system-config-printer.py:6246 - #, python-format - msgid "" - "\n" - "(%s)" - msgstr "" - --#: ../system-config-printer.py:6303 -+#: ../system-config-printer.py:6251 - msgid "No support contacts known" - msgstr "" - --#: ../system-config-printer.py:6307 ../system-config-printer.py:6320 -+#: ../system-config-printer.py:6255 ../system-config-printer.py:6268 - msgid "Not specified." - msgstr "" - - #. Foomatic database problem of some sort. --#: ../system-config-printer.py:6360 -+#: ../system-config-printer.py:6308 - msgid "Database error" - msgstr "" - --#: ../system-config-printer.py:6361 -+#: ../system-config-printer.py:6309 - #, python-format - msgid "The '%s' driver cannot be used with printer '%s %s'." - msgstr "" -@@ -1493,62 +1494,62 @@ msgstr "" - #. This printer references some XML that is not - #. installed by default. Point the user at the - #. package they need to install. --#: ../system-config-printer.py:6371 -+#: ../system-config-printer.py:6319 - #, python-format - msgid "You will need to install the '%s' package in order to use this driver." - msgstr "" - - #. This error came from trying to open the PPD file. --#: ../system-config-printer.py:6378 -+#: ../system-config-printer.py:6326 - msgid "PPD error" - msgstr "" - --#: ../system-config-printer.py:6380 -+#: ../system-config-printer.py:6328 - msgid "Failed to read PPD file. Possible reason follows:" - msgstr "" - - #. Failed to get PPD downloaded from OpenPrinting XXX --#: ../system-config-printer.py:6397 -+#: ../system-config-printer.py:6345 - msgid "Downloadable drivers" - msgstr "" - --#: ../system-config-printer.py:6398 -+#: ../system-config-printer.py:6346 - msgid "Failed to download PPD." - msgstr "" - --#: ../system-config-printer.py:6405 -+#: ../system-config-printer.py:6353 - #, fuzzy - msgid "fetching PPD" - msgstr "Breyta PPD" - --#: ../system-config-printer.py:6434 ../system-config-printer.py:6472 -+#: ../system-config-printer.py:6382 ../system-config-printer.py:6420 - #, fuzzy - msgid "No Installable Options" - msgstr "Uppsetjanlegir hlutir" - --#: ../system-config-printer.py:6520 -+#: ../system-config-printer.py:6468 - #, fuzzy, python-format - msgid "adding printer %s" - msgstr "Stilla prentara" - --#: ../system-config-printer.py:6669 -+#: ../system-config-printer.py:6617 - msgid "Would you like to print a test page?" - msgstr "" - --#: ../system-config-printer.py:6722 -+#: ../system-config-printer.py:6670 - msgid "Install driver" - msgstr "" - --#: ../system-config-printer.py:6723 ../troubleshoot/CheckPPDSanity.py:131 -+#: ../system-config-printer.py:6671 ../troubleshoot/CheckPPDSanity.py:131 - #, python-format - msgid "Printer '%s' requires the %s package but it is not currently installed." - msgstr "" - --#: ../system-config-printer.py:6739 -+#: ../system-config-printer.py:6687 - msgid "Missing driver" - msgstr "" - --#: ../system-config-printer.py:6740 -+#: ../system-config-printer.py:6688 - #, python-format - msgid "" - "Printer '%s' requires the '%s' program but it is not currently installed. " -@@ -1674,115 +1675,110 @@ msgstr "Sláðu inn URI tækisins" - - #: ../glade/NewPrinterWindow.glade.h:5 - #, fuzzy --msgid "HP Printer (HPLIP) via network" --msgstr "Heiti prentara" -- --#: ../glade/NewPrinterWindow.glade.h:6 --#, fuzzy - msgid "IPP Printer" - msgstr "Heiti prentara" - --#: ../glade/NewPrinterWindow.glade.h:7 -+#: ../glade/NewPrinterWindow.glade.h:6 - #, fuzzy - msgid "License Terms" - msgstr "Heiti prentara" - --#: ../glade/NewPrinterWindow.glade.h:8 -+#: ../glade/NewPrinterWindow.glade.h:7 - msgid "Location of the LPD network printer" - msgstr "Staðsetning LPD netprentara" - --#: ../glade/NewPrinterWindow.glade.h:9 -+#: ../glade/NewPrinterWindow.glade.h:8 - msgid "Location of the network printer" - msgstr "Staðsetning netprentara" - --#: ../glade/NewPrinterWindow.glade.h:10 -+#: ../glade/NewPrinterWindow.glade.h:9 - msgid "Location (optional)" - msgstr "Staðsetning (óþarft)" - --#: ../glade/NewPrinterWindow.glade.h:11 -+#: ../glade/NewPrinterWindow.glade.h:10 - #, fuzzy - msgid "Network Printer" - msgstr "Nýr prentari" - --#: ../glade/NewPrinterWindow.glade.h:12 -+#: ../glade/NewPrinterWindow.glade.h:11 - #, fuzzy - msgid "Note" - msgstr "Heiti prentara" - --#: ../glade/NewPrinterWindow.glade.h:13 -+#: ../glade/NewPrinterWindow.glade.h:12 - msgid "Output Quality" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:14 -+#: ../glade/NewPrinterWindow.glade.h:13 - msgid "Printer Name" - msgstr "Heiti prentara" - --#: ../glade/NewPrinterWindow.glade.h:15 -+#: ../glade/NewPrinterWindow.glade.h:14 - #, fuzzy - msgid "SMB Printer" - msgstr "Heiti prentara" - --#: ../glade/NewPrinterWindow.glade.h:16 -+#: ../glade/NewPrinterWindow.glade.h:15 - #, fuzzy - msgid "Select Driver" - msgstr "Heiti prentara" - --#: ../glade/NewPrinterWindow.glade.h:17 -+#: ../glade/NewPrinterWindow.glade.h:16 - msgid "Settings of the serial port" - msgstr "Stillingar raðtengingar" - --#: ../glade/NewPrinterWindow.glade.h:18 -+#: ../glade/NewPrinterWindow.glade.h:17 - msgid "smb://[workgroup/]server[:port]/printer" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:19 -+#: ../glade/NewPrinterWindow.glade.h:18 - msgid "Choose Class Members" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:20 -+#: ../glade/NewPrinterWindow.glade.h:19 - msgid "Choose Driver" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:21 -+#: ../glade/NewPrinterWindow.glade.h:20 - msgid "Describe Printer" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:22 -+#: ../glade/NewPrinterWindow.glade.h:21 - msgid "Existing Settings" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:23 -+#: ../glade/NewPrinterWindow.glade.h:22 - msgid "Installable Options" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:24 -+#: ../glade/NewPrinterWindow.glade.h:23 - msgid "Select Device" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:25 -+#: ../glade/NewPrinterWindow.glade.h:24 - msgid "Baud Rate" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:26 -+#: ../glade/NewPrinterWindow.glade.h:25 - msgid "Browse..." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:27 -+#: ../glade/NewPrinterWindow.glade.h:26 - #, fuzzy - msgid "Comments..." - msgstr "Athugasemd" - --#: ../glade/NewPrinterWindow.glade.h:28 -+#: ../glade/NewPrinterWindow.glade.h:27 - #, fuzzy - msgid "Connection" - msgstr "Tengist" - --#: ../glade/NewPrinterWindow.glade.h:29 -+#: ../glade/NewPrinterWindow.glade.h:28 - #, fuzzy - msgid "Data Bits" - msgstr "Smáatriði" - --#: ../glade/NewPrinterWindow.glade.h:30 -+#: ../glade/NewPrinterWindow.glade.h:29 - msgid "" - "Default\n" - "1200\n" -@@ -1795,7 +1791,7 @@ msgid "" - "115200" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:39 -+#: ../glade/NewPrinterWindow.glade.h:38 - #, fuzzy - msgid "" - "Default\n" -@@ -1803,7 +1799,7 @@ msgid "" - "7" - msgstr "Sjálfgefið" - --#: ../glade/NewPrinterWindow.glade.h:42 -+#: ../glade/NewPrinterWindow.glade.h:41 - msgid "" - "Default\n" - "None\n" -@@ -1811,7 +1807,7 @@ msgid "" - "Even" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:46 -+#: ../glade/NewPrinterWindow.glade.h:45 - msgid "" - "Default\n" - "None\n" -@@ -1820,204 +1816,204 @@ msgid "" - "DTR/DSR (Hardware)" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:51 -+#: ../glade/NewPrinterWindow.glade.h:50 - #: ../glade/PrinterPropertiesDialog.glade.h:35 - #, fuzzy - msgid "Description:" - msgstr "Lýsing" - --#: ../glade/NewPrinterWindow.glade.h:52 ../troubleshoot/DeviceListed.py:40 -+#: ../glade/NewPrinterWindow.glade.h:51 ../troubleshoot/DeviceListed.py:40 - msgid "Device URI" - msgstr "URI tækis" - --#: ../glade/NewPrinterWindow.glade.h:53 -+#: ../glade/NewPrinterWindow.glade.h:52 - #, fuzzy - msgid "Device description." - msgstr "Lýsing" - --#: ../glade/NewPrinterWindow.glade.h:54 -+#: ../glade/NewPrinterWindow.glade.h:53 - msgid "DirectJet" - msgstr "DirectJet" - --#: ../glade/NewPrinterWindow.glade.h:56 -+#: ../glade/NewPrinterWindow.glade.h:55 - #, fuzzy - msgid "Driver details" - msgstr "Reklar" - --#: ../glade/NewPrinterWindow.glade.h:57 -+#: ../glade/NewPrinterWindow.glade.h:56 - msgid "Empty" - msgstr "Tómt" - --#: ../glade/NewPrinterWindow.glade.h:58 -+#: ../glade/NewPrinterWindow.glade.h:57 - msgid "Find _Queue..." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:59 -+#: ../glade/NewPrinterWindow.glade.h:58 - msgid "Flow Control" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:60 -+#: ../glade/NewPrinterWindow.glade.h:59 - msgid "" - "For the printer you have selected there are drivers available for download." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:61 -+#: ../glade/NewPrinterWindow.glade.h:60 - msgid "Free software" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:62 -+#: ../glade/NewPrinterWindow.glade.h:61 - msgid "Graphics:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:63 -+#: ../glade/NewPrinterWindow.glade.h:62 - #, fuzzy - msgid "Host:" - msgstr "Vélarheiti" - --#: ../glade/NewPrinterWindow.glade.h:64 -+#: ../glade/NewPrinterWindow.glade.h:63 - msgid "Human-readable description such as \"HP LaserJet with Duplexer\"" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:65 -+#: ../glade/NewPrinterWindow.glade.h:64 - msgid "Human-readable location such as \"Lab 1\"" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:67 -+#: ../glade/NewPrinterWindow.glade.h:66 - msgid "LPD" - msgstr "LPD" - --#: ../glade/NewPrinterWindow.glade.h:68 -+#: ../glade/NewPrinterWindow.glade.h:67 - msgid "License:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:69 -+#: ../glade/NewPrinterWindow.glade.h:68 - #, fuzzy - msgid "Line art:" - msgstr "Ástand prentara:" - --#: ../glade/NewPrinterWindow.glade.h:70 -+#: ../glade/NewPrinterWindow.glade.h:69 - #, fuzzy - msgid "Local Driver" - msgstr "Staðbundnir prentarar" - --#: ../glade/NewPrinterWindow.glade.h:71 -+#: ../glade/NewPrinterWindow.glade.h:70 - #, fuzzy - msgid "Make and model:" - msgstr "Framleiðandi og gerð:" - --#: ../glade/NewPrinterWindow.glade.h:72 -+#: ../glade/NewPrinterWindow.glade.h:71 - msgid "Manufacturer" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:73 -+#: ../glade/NewPrinterWindow.glade.h:72 - #, fuzzy - msgid "Network" - msgstr "Nýr prentari" - --#: ../glade/NewPrinterWindow.glade.h:75 -+#: ../glade/NewPrinterWindow.glade.h:74 - msgid "No, I do not accept this license" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:76 -+#: ../glade/NewPrinterWindow.glade.h:75 - msgid "Parity" - msgstr "Parity" - --#: ../glade/NewPrinterWindow.glade.h:78 -+#: ../glade/NewPrinterWindow.glade.h:77 - msgid "Patented algorithms" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:79 -+#: ../glade/NewPrinterWindow.glade.h:78 - msgid "Photo:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:80 -+#: ../glade/NewPrinterWindow.glade.h:79 - #, fuzzy - msgid "Port number:" - msgstr "Gátt" - --#: ../glade/NewPrinterWindow.glade.h:81 -+#: ../glade/NewPrinterWindow.glade.h:80 - msgid "" - "PostScript Printer Description (PPD) files can often be found on the driver " - "disk that comes with the printer. For PostScript printers they are often " - "part of the Windows® driver." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:82 -+#: ../glade/NewPrinterWindow.glade.h:81 - #, fuzzy - msgid "Printer model:" - msgstr "Heiti prentara" - --#: ../glade/NewPrinterWindow.glade.h:83 -+#: ../glade/NewPrinterWindow.glade.h:82 - msgid "Probe" - msgstr "Leita" - --#: ../glade/NewPrinterWindow.glade.h:84 -+#: ../glade/NewPrinterWindow.glade.h:83 - #, fuzzy - msgid "Prompt user if authentication is required" - msgstr "Auðkenning" - --#: ../glade/NewPrinterWindow.glade.h:85 -+#: ../glade/NewPrinterWindow.glade.h:84 - #, fuzzy - msgid "Provide PPD file" - msgstr "Nota PPD skrá" - --#: ../glade/NewPrinterWindow.glade.h:86 -+#: ../glade/NewPrinterWindow.glade.h:85 - msgid "Queue:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:87 -+#: ../glade/NewPrinterWindow.glade.h:86 - msgid "SCSI" - msgstr "SCSI" - --#: ../glade/NewPrinterWindow.glade.h:88 -+#: ../glade/NewPrinterWindow.glade.h:87 - msgid "SMB" - msgstr "SMB" - --#: ../glade/NewPrinterWindow.glade.h:89 -+#: ../glade/NewPrinterWindow.glade.h:88 - msgid "Search for a printer driver to download" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:90 -+#: ../glade/NewPrinterWindow.glade.h:89 - #, fuzzy - msgid "Searching..." - msgstr "Nýtt heiti prentara" - --#: ../glade/NewPrinterWindow.glade.h:91 -+#: ../glade/NewPrinterWindow.glade.h:90 - msgid "Select A File" - msgstr "Veldu skrá" - --#: ../glade/NewPrinterWindow.glade.h:92 -+#: ../glade/NewPrinterWindow.glade.h:91 - #, fuzzy - msgid "Select printer from database" - msgstr "Velja prentara úr gagnagrunni" - --#: ../glade/NewPrinterWindow.glade.h:93 -+#: ../glade/NewPrinterWindow.glade.h:92 - msgid "Serial" - msgstr "Raðtengdur" - --#: ../glade/NewPrinterWindow.glade.h:94 -+#: ../glade/NewPrinterWindow.glade.h:93 - #, fuzzy - msgid "Set authentication details now" - msgstr "Auðkenning" - --#: ../glade/NewPrinterWindow.glade.h:95 -+#: ../glade/NewPrinterWindow.glade.h:94 - msgid "Short name for this printer such as \"laserjet\"" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:96 -+#: ../glade/NewPrinterWindow.glade.h:95 - msgid "Supplier:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:97 -+#: ../glade/NewPrinterWindow.glade.h:96 - msgid "Support:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:98 -+#: ../glade/NewPrinterWindow.glade.h:97 - #, fuzzy - msgid "Text:" - msgstr "Prenta prófunarsíðu" - --#: ../glade/NewPrinterWindow.glade.h:99 -+#: ../glade/NewPrinterWindow.glade.h:98 - msgid "" - "The foomatic printer database contains various manufacturer provided " - "PostScript Printer Description (PPD) files and also can generate PPD files " -@@ -2026,27 +2022,27 @@ msgid "" - "printer." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:100 -+#: ../glade/NewPrinterWindow.glade.h:99 - msgid "" - "These drivers do not come from your operating system supplier and will not " - "be covered by their commercial support. See the support and license terms " - "of the driver's supplier." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:101 -+#: ../glade/NewPrinterWindow.glade.h:100 - msgid "" - "This driver supports additional hardware that may be installed in the " - "printer." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:102 -+#: ../glade/NewPrinterWindow.glade.h:101 - msgid "" - "This is done by assuming that options with the same name do have the same " - "meaning. Settings of options that are not present in the new PPD will be " - "lost and options only present in the new PPD will be set to default." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:103 -+#: ../glade/NewPrinterWindow.glade.h:102 - msgid "" - "This way all current option settings will be lost. The default settings of " - "the new PPD will be used. " -@@ -2054,42 +2050,42 @@ msgstr "" - "Með þessari aðferð týnast allar stillingar. Sjálfgefnar stillingar úr PPD " - "skránni verða virkar." - --#: ../glade/NewPrinterWindow.glade.h:104 -+#: ../glade/NewPrinterWindow.glade.h:103 - msgid "Try to copy the option settings over from the old PPD. " - msgstr "Reyna að afrita rofastillingar úr gömlu PPD skránni." - --#: ../glade/NewPrinterWindow.glade.h:105 -+#: ../glade/NewPrinterWindow.glade.h:104 - msgid "URI:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:107 -+#: ../glade/NewPrinterWindow.glade.h:106 - msgid "Use the new PPD (Postscript Printer Description) as is." - msgstr "Nota nýju PPD (Postscript Printer Description) eins og hún er." - --#: ../glade/NewPrinterWindow.glade.h:109 -+#: ../glade/NewPrinterWindow.glade.h:108 - msgid "" - "With this choice no driver download will be performed. In the next steps a " - "locally installed driver will be selected." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:110 -+#: ../glade/NewPrinterWindow.glade.h:109 - msgid "Yes, I accept this license" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:111 -+#: ../glade/NewPrinterWindow.glade.h:110 - msgid "_Search" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:112 -+#: ../glade/NewPrinterWindow.glade.h:111 - msgid "_Verify..." - msgstr "_Staðfesta..." - --#: ../glade/NewPrinterWindow.glade.h:113 -+#: ../glade/NewPrinterWindow.glade.h:112 - #: ../glade/PrinterPropertiesDialog.glade.h:128 - msgid "move left" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:114 -+#: ../glade/NewPrinterWindow.glade.h:113 - #: ../glade/PrinterPropertiesDialog.glade.h:129 - #, fuzzy - msgid "move right" -@@ -2981,7 +2977,7 @@ msgstr "" - msgid "Remember to load paper of type '%s' into the printer first." - msgstr "" - --#: ../troubleshoot/PrintTestPage.py:399 -+#: ../troubleshoot/PrintTestPage.py:416 - msgid "Error submitting test page" - msgstr "" - -@@ -3178,6 +3174,10 @@ msgid "Select default printer" - msgstr "Gera að sjálfgefnum prentara" - - #, fuzzy -+#~ msgid "HP Printer (HPLIP) via network" -+#~ msgstr "Heiti prentara" -+ -+#, fuzzy - #~ msgid "Not Found" - #~ msgstr "Fannst ekki" - -diff -up system-config-printer-1.1.5/po/it.po.git-1.1.x system-config-printer-1.1.5/po/it.po ---- system-config-printer-1.1.5/po/it.po.git-1.1.x 2009-03-03 22:21:46.000000000 +0000 -+++ system-config-printer-1.1.5/po/it.po 2009-03-10 17:43:31.000000000 +0000 -@@ -11,7 +11,7 @@ msgid "" - msgstr "" - "Project-Id-Version: system-config-printer.master.it\n" - "Report-Msgid-Bugs-To: https://bugzilla.redhat.com/bugzilla\n" --"POT-Creation-Date: 2009-03-02 23:22+0000\n" -+"POT-Creation-Date: 2009-03-10 16:51+0000\n" - "PO-Revision-Date: 2008-11-26 06:16+0100\n" - "Last-Translator: Francesco Tombolini \n" - "Language-Team: Italiano \n" -@@ -58,11 +58,11 @@ msgstr "" - msgid "Enter IP address" - msgstr "Inserire indirizzo IP" - --#: ../authconn.py:35 ../glade/NewPrinterWindow.glade.h:108 -+#: ../authconn.py:35 ../glade/NewPrinterWindow.glade.h:107 - msgid "Username:" - msgstr "Nome utente:" - --#: ../authconn.py:36 ../glade/NewPrinterWindow.glade.h:77 -+#: ../authconn.py:36 ../glade/NewPrinterWindow.glade.h:76 - msgid "Password:" - msgstr "Password:" - -@@ -70,7 +70,7 @@ msgstr "Password:" - msgid "Domain:" - msgstr "Dominio:" - --#: ../authconn.py:46 -+#: ../authconn.py:46 ../authconn.py:409 - msgid "Authentication" - msgstr "Autenticazione" - -@@ -78,43 +78,52 @@ msgstr "Autenticazione" - msgid "Remember password" - msgstr "Ricorda password" - --#: ../authconn.py:211 ../authconn.py:232 -+#: ../authconn.py:208 -+#, python-format -+msgid "Unauthorized request (%s)" -+msgstr "" -+ -+#: ../authconn.py:209 -+msgid "You are not authorized to carry out therequested action." -+msgstr "" -+ -+#: ../authconn.py:212 ../authconn.py:233 - msgid "Operation canceled" - msgstr "Operazione annullata" - --#: ../authconn.py:253 -+#: ../authconn.py:250 - #, fuzzy, python-format - msgid "CUPS server error (%s)" - msgstr "Errore del server CUPS" - --#: ../authconn.py:255 ../errordialogs.py:57 --#: ../troubleshoot/PrintTestPage.py:400 -+#: ../authconn.py:252 ../errordialogs.py:56 ../errordialogs.py:70 -+msgid "CUPS server error" -+msgstr "Errore del server CUPS" -+ -+#: ../authconn.py:261 ../errordialogs.py:57 -+#: ../troubleshoot/PrintTestPage.py:417 - #, python-format - msgid "There was an error during the CUPS operation: '%s'." - msgstr "Si è verificato un errore durante l'operazione CUPS: '%s'." - --#: ../authconn.py:258 -+#: ../authconn.py:264 - msgid "Retry" - msgstr "Riprova" - --#: ../authconn.py:379 ../authconn.py:381 ../errordialogs.py:65 ../pysmb.py:75 -+#: ../authconn.py:385 ../authconn.py:387 ../errordialogs.py:65 ../pysmb.py:75 - #: ../pysmb.py:77 - msgid "Not authorized" - msgstr "Non autorizzato" - --#: ../authconn.py:382 ../pysmb.py:78 -+#: ../authconn.py:388 ../pysmb.py:78 - msgid "The password may be incorrect." - msgstr "La password potrebbe non essere corretta." - --#: ../authconn.py:400 -+#: ../authconn.py:407 - #, python-format - msgid "Authentication (%s)" - msgstr "Autenticazione (%s)" - --#: ../errordialogs.py:56 ../errordialogs.py:70 --msgid "CUPS server error" --msgstr "Errore del server CUPS" -- - #: ../errordialogs.py:66 - msgid "" - "The password may be incorrect, or the server may be configured to deny " -@@ -143,7 +152,7 @@ msgstr "Aggiornamento necessario" - msgid "Server error" - msgstr "Errore del server" - --#: ../errordialogs.py:82 ../system-config-printer.py:1219 -+#: ../errordialogs.py:82 ../system-config-printer.py:1223 - msgid "Not connected" - msgstr "Non connesso" - -@@ -165,7 +174,7 @@ msgstr "_Nuovo gruppo" - msgid "_New Group from Selection" - msgstr "_Nuovo gruppo dalla selezione" - --#: ../GroupsPane.py:98 ../system-config-printer.py:393 -+#: ../GroupsPane.py:98 ../system-config-printer.py:397 - msgid "_Rename" - msgstr "_Rinomina" - -@@ -235,7 +244,7 @@ msgid "Document" - msgstr "Documento" - - #: ../jobviewer.py:212 ../my-default-printer.py:153 --#: ../system-config-printer.py:366 ../system-config-printer.py:1367 -+#: ../system-config-printer.py:370 ../system-config-printer.py:1371 - #: ../troubleshoot/PrintTestPage.py:84 - msgid "Printer" - msgstr "Stampante" -@@ -272,8 +281,8 @@ msgstr "Stato di stampa del documento (% - - #: ../jobviewer.py:386 ../jobviewer.py:451 ../jobviewer.py:452 - #: ../jobviewer.py:492 ../jobviewer.py:600 ../jobviewer.py:727 --#: ../jobviewer.py:1196 ../jobviewer.py:1222 ../system-config-printer.py:2546 --#: ../glade/NewPrinterWindow.glade.h:106 -+#: ../jobviewer.py:1196 ../jobviewer.py:1222 ../system-config-printer.py:2556 -+#: ../glade/NewPrinterWindow.glade.h:105 - #: ../troubleshoot/ChooseNetworkPrinter.py:101 - #: ../troubleshoot/ChooseNetworkPrinter.py:102 - #: ../troubleshoot/ChooseNetworkPrinter.py:105 -@@ -365,12 +374,12 @@ msgstr "Mantieni fino a:" - msgid "Pending" - msgstr "In corso" - --#: ../jobviewer.py:591 ../system-config-printer.py:186 -+#: ../jobviewer.py:591 ../system-config-printer.py:190 - #: ../troubleshoot/PrintTestPage.py:43 - msgid "Processing" - msgstr "In elaborazione" - --#: ../jobviewer.py:592 ../system-config-printer.py:188 -+#: ../jobviewer.py:592 ../system-config-printer.py:192 - #: ../troubleshoot/PrintTestPage.py:44 - msgid "Stopped" - msgstr "Arrestato" -@@ -486,8 +495,8 @@ msgstr "_Usa valori predefiniti" - msgid "_Set Default" - msgstr "Impo_sta predefinita" - --#: ../my-default-printer.py:158 ../system-config-printer.py:423 --#: ../system-config-printer.py:3660 ../troubleshoot/ChooseNetworkPrinter.py:37 -+#: ../my-default-printer.py:158 ../system-config-printer.py:427 -+#: ../system-config-printer.py:3675 ../troubleshoot/ChooseNetworkPrinter.py:37 - #: ../troubleshoot/ChoosePrinter.py:38 - msgid "Location" - msgstr "Locazione" -@@ -517,7 +526,7 @@ msgstr "Comportamento predefinito" - msgid "Authenticated" - msgstr "Autenticare" - --#: ../ppdippstr.py:50 ../system-config-printer.py:6259 -+#: ../ppdippstr.py:50 ../system-config-printer.py:6207 - msgid "None" - msgstr "Nessuna" - -@@ -730,125 +739,125 @@ msgstr "600 dpi, colore, cartridge nero - msgid "1200 dpi, photo, black + color cartridge, photo paper" - msgstr "1200 dpi, foto, cartridge nero + colore, carta fotografica" - --#: ../system-config-printer.py:127 -+#: ../system-config-printer.py:131 - msgid "To do this, select System->Administration->Firewall from the main menu." - msgstr "" - "Per fare questo, selezionare dal menu principale Sistema->Amministrazione-" - ">Firewall." - --#: ../system-config-printer.py:185 -+#: ../system-config-printer.py:189 - msgid "Idle" - msgstr "In attesa" - --#: ../system-config-printer.py:187 -+#: ../system-config-printer.py:191 - msgid "Busy" - msgstr "Occupata" - --#: ../system-config-printer.py:372 ../system-config-printer.py:1373 -+#: ../system-config-printer.py:376 ../system-config-printer.py:1377 - msgid "Class" - msgstr "Classe" - --#: ../system-config-printer.py:399 -+#: ../system-config-printer.py:403 - msgid "Set As De_fault" - msgstr "Imposta come Pr_edefinita" - --#: ../system-config-printer.py:403 -+#: ../system-config-printer.py:407 - msgid "_Create class" - msgstr "_Crea classe" - --#: ../system-config-printer.py:405 -+#: ../system-config-printer.py:409 - msgid "View Print _Queue" - msgstr "Visualizza _Coda di Stampa" - --#: ../system-config-printer.py:407 -+#: ../system-config-printer.py:411 - msgid "_Add to Group" - msgstr "_Aggiungi al gruppo" - --#: ../system-config-printer.py:409 -+#: ../system-config-printer.py:413 - msgid "Save Results as _Group" - msgstr "Salva i risultati come _Gruppo" - --#: ../system-config-printer.py:411 -+#: ../system-config-printer.py:415 - msgid "Save Filter as _Search Group" - msgstr "Salvare i filtri come _Cerca Gruppo" - --#: ../system-config-printer.py:415 -+#: ../system-config-printer.py:419 - msgid "E_nabled" - msgstr "A_bilita" - --#: ../system-config-printer.py:417 -+#: ../system-config-printer.py:421 - msgid "_Shared" - msgstr "_Condivisa" - --#: ../system-config-printer.py:421 ../troubleshoot/ChooseNetworkPrinter.py:35 -+#: ../system-config-printer.py:425 ../troubleshoot/ChooseNetworkPrinter.py:35 - #: ../troubleshoot/ChoosePrinter.py:36 ../troubleshoot/DeviceListed.py:36 - msgid "Name" - msgstr "Nome" - --#: ../system-config-printer.py:422 -+#: ../system-config-printer.py:426 - msgid "Description" - msgstr "Descrizione" - --#: ../system-config-printer.py:424 -+#: ../system-config-printer.py:428 - msgid "Manufacturer / Model" - msgstr "Produttore / Modello" - - #. Printer state reasons list --#: ../system-config-printer.py:499 -+#: ../system-config-printer.py:503 - msgid "Message" - msgstr "Messaggio" - --#: ../system-config-printer.py:534 -+#: ../system-config-printer.py:538 - msgid "Problems?" - msgstr "Problemi?" - --#: ../system-config-printer.py:637 ../system-config-printer.py:639 -+#: ../system-config-printer.py:641 ../system-config-printer.py:643 - msgid "Members of this class" - msgstr "Appartenenti a questa classe" - --#: ../system-config-printer.py:638 ../system-config-printer.py:640 -+#: ../system-config-printer.py:642 ../system-config-printer.py:644 - msgid "Others" - msgstr "Altre" - --#: ../system-config-printer.py:641 -+#: ../system-config-printer.py:645 - msgid "Devices" - msgstr "Dispositivi" - --#: ../system-config-printer.py:642 -+#: ../system-config-printer.py:646 - msgid "Connections" - msgstr "Connessioni" - --#: ../system-config-printer.py:643 -+#: ../system-config-printer.py:647 - msgid "Makes" - msgstr "Produttori" - --#: ../system-config-printer.py:644 -+#: ../system-config-printer.py:648 - msgid "Models" - msgstr "Modelli" - --#: ../system-config-printer.py:645 -+#: ../system-config-printer.py:649 - msgid "Drivers" - msgstr "Driver" - --#: ../system-config-printer.py:646 ../glade/NewPrinterWindow.glade.h:55 -+#: ../system-config-printer.py:650 ../glade/NewPrinterWindow.glade.h:54 - msgid "Downloadable Drivers" - msgstr "Driver disponibili per il download" - --#: ../system-config-printer.py:647 -+#: ../system-config-printer.py:651 - msgid "Users" - msgstr "Utenti" - --#: ../system-config-printer.py:682 -+#: ../system-config-printer.py:686 - msgid "Automatic rotation" - msgstr "Rotazione automatica" - --#: ../system-config-printer.py:989 -+#: ../system-config-printer.py:993 - #, fuzzy, python-format - msgid "Printer Properties - '%s' on %s" - msgstr "Proprietà stampante - `%s' su %s" - - #. The Conflict button was pressed. --#: ../system-config-printer.py:996 -+#: ../system-config-printer.py:1000 - msgid "" - "There are conflicting options.\n" - "Changes can only be applied after\n" -@@ -858,78 +867,78 @@ msgstr "" - "I cambiamenti possono essere applicati solo\n" - "dopo la risoluzione dei conflitti." - --#: ../system-config-printer.py:1214 -+#: ../system-config-printer.py:1218 - #, python-format - msgid "Printer configuration - %s" - msgstr "Configurazione stampante - %s" - --#: ../system-config-printer.py:1217 -+#: ../system-config-printer.py:1221 - #, python-format - msgid "Connected to %s" - msgstr "Connesso a %s" - - #. Update our copy of the printer's settings. --#: ../system-config-printer.py:1257 ../system-config-printer.py:2042 -+#: ../system-config-printer.py:1261 ../system-config-printer.py:2046 - msgid "obtaining queue details" - msgstr "recupero dettagli coda" - --#: ../system-config-printer.py:1295 -+#: ../system-config-printer.py:1299 - msgid "Remove from Group" - msgstr "Rimuovere dal Gruppo" - --#: ../system-config-printer.py:1361 -+#: ../system-config-printer.py:1365 - msgid "Network printer (discovered)" - msgstr "Stampante di rete (scoperta)" - --#: ../system-config-printer.py:1364 -+#: ../system-config-printer.py:1368 - msgid "Network class (discovered)" - msgstr "Classe di rete (scoperta)" - --#: ../system-config-printer.py:1370 ../system-config-printer.py:5524 --#: ../system-config-printer.py:5594 ../system-config-printer.py:5596 -+#: ../system-config-printer.py:1374 ../system-config-printer.py:5519 -+#: ../system-config-printer.py:5589 ../system-config-printer.py:5591 - msgid "Fax" - msgstr "Fax" - --#: ../system-config-printer.py:1376 ../system-config-printer.py:1382 -+#: ../system-config-printer.py:1380 ../system-config-printer.py:1386 - #: ../troubleshoot/LocalOrRemote.py:30 - msgid "Network printer" - msgstr "Stampante di rete" - --#: ../system-config-printer.py:1379 -+#: ../system-config-printer.py:1383 - msgid "Network print share" - msgstr "Condivisione di stampa di rete" - --#: ../system-config-printer.py:1508 ../glade/ConnectingDialog.glade.h:2 -+#: ../system-config-printer.py:1512 ../glade/ConnectingDialog.glade.h:2 - #, no-c-format, python-format - msgid "Opening connection to %s" - msgstr "Apertura connessione a %s" - --#: ../system-config-printer.py:1887 -+#: ../system-config-printer.py:1891 - msgid "Installable Options" - msgstr "Opzioni installabili" - --#: ../system-config-printer.py:1888 -+#: ../system-config-printer.py:1892 - #: ../glade/PrinterPropertiesDialog.glade.h:109 - msgid "Printer Options" - msgstr "Opzioni stampante" - --#: ../system-config-printer.py:1924 -+#: ../system-config-printer.py:1928 - #, python-format - msgid "modifying class %s" - msgstr "modifica classe %s" - --#: ../system-config-printer.py:1926 ../system-config-printer.py:3019 --#: ../system-config-printer.py:3044 ../system-config-printer.py:6547 --#: ../system-config-printer.py:6559 ../system-config-printer.py:6581 -+#: ../system-config-printer.py:1930 ../system-config-printer.py:3037 -+#: ../system-config-printer.py:3062 ../system-config-printer.py:6495 -+#: ../system-config-printer.py:6507 ../system-config-printer.py:6529 - #, python-format - msgid "modifying printer %s" - msgstr "modifica stampante %s" - --#: ../system-config-printer.py:1941 -+#: ../system-config-printer.py:1945 - msgid "This will delete this class!" - msgstr "Questa classe verrà cancellata!" - --#: ../system-config-printer.py:1942 -+#: ../system-config-printer.py:1946 - msgid "Proceed anyway?" - msgstr "Procedere comunque?" - -@@ -937,44 +946,44 @@ msgstr "Procedere comunque?" - #. but we have never fetched the server settings to see whether - #. the server is publishing shared printers. Fetch the settings - #. now so that we can update the "not published" label if necessary. --#: ../system-config-printer.py:2030 ../system-config-printer.py:3203 -+#: ../system-config-printer.py:2034 ../system-config-printer.py:3221 - msgid "fetching server settings" - msgstr "recupero impostazioni del server" - --#: ../system-config-printer.py:2100 -+#: ../system-config-printer.py:2104 - msgid "Set Default Printer" - msgstr "Imposta stampante predefinita" - --#: ../system-config-printer.py:2102 -+#: ../system-config-printer.py:2106 - msgid "Do you want to set this as the system-wide default printer?" - msgstr "Desideri impostarla come stampante predefinita per l'intero sistema?" - --#: ../system-config-printer.py:2104 -+#: ../system-config-printer.py:2108 - msgid "Set as the _system-wide default printer" - msgstr "Imposta come stampante predefinita per l'intero _sistema" - --#: ../system-config-printer.py:2106 -+#: ../system-config-printer.py:2110 - msgid "_Clear my personal default setting" - msgstr "_Resetta le mie impostazioni predefinite personali" - --#: ../system-config-printer.py:2107 -+#: ../system-config-printer.py:2111 - msgid "Set as my _personal default printer" - msgstr "Imposta come mia stampante predefinita _personale" - --#: ../system-config-printer.py:2112 -+#: ../system-config-printer.py:2116 - msgid "setting default printer" - msgstr "impostazione stampante predefinita" - --#: ../system-config-printer.py:2169 -+#: ../system-config-printer.py:2173 - msgid "printing test page" - msgstr "stampa pagina di prova" - --#: ../system-config-printer.py:2182 ../system-config-printer.py:2217 --#: ../system-config-printer.py:5418 -+#: ../system-config-printer.py:2186 ../system-config-printer.py:2221 -+#: ../system-config-printer.py:5413 - msgid "Not possible" - msgstr "Impossibile" - --#: ../system-config-printer.py:2183 ../system-config-printer.py:2218 -+#: ../system-config-printer.py:2187 ../system-config-printer.py:2222 - msgid "" - "The remote server did not accept the print job, most likely because the " - "printer is not shared." -@@ -982,20 +991,20 @@ msgstr "" - "Il server remoto non accetta il lavoro di stampa, molto probabilmente perché " - "la stampante non è condivisa." - --#: ../system-config-printer.py:2195 ../system-config-printer.py:2210 -+#: ../system-config-printer.py:2199 ../system-config-printer.py:2214 - msgid "Submitted" - msgstr "Inviato" - --#: ../system-config-printer.py:2196 -+#: ../system-config-printer.py:2200 - #, python-format - msgid "Test page submitted as job %d" - msgstr "Pagina di prova inviata come lavoro %d" - --#: ../system-config-printer.py:2203 -+#: ../system-config-printer.py:2207 - msgid "sending maintenance command" - msgstr "invio comando di manutenzione" - --#: ../system-config-printer.py:2211 -+#: ../system-config-printer.py:2215 - #, python-format - msgid "Maintenance command submitted as job %d" - msgstr "Comando di manutenzione inviato come lavoro %d" -@@ -1003,65 +1012,65 @@ msgstr "Comando di manutenzione inviato - #. The underlying cupsGetPPD2() function returned NULL without - #. setting an IPP error, so it'll be something like a failed - #. connection. --#: ../system-config-printer.py:2285 ../system-config-printer.py:2381 -+#: ../system-config-printer.py:2289 ../system-config-printer.py:2385 - msgid "Error" - msgstr "Errore" - --#: ../system-config-printer.py:2286 -+#: ../system-config-printer.py:2290 - msgid "There was a problem connecting to the CUPS server." - msgstr "Si è verificato un problema durante la connessione al server CUPS." - --#: ../system-config-printer.py:2382 -+#: ../system-config-printer.py:2386 - #, python-format - msgid "Option '%s' has value '%s' and cannot be edited." - msgstr "L'opzione '%s' con valore '%s' non può essere modificata." - --#: ../system-config-printer.py:2466 -+#: ../system-config-printer.py:2476 - msgid "Marker levels are not reported for this printer." - msgstr "" - --#: ../system-config-printer.py:2763 -+#: ../system-config-printer.py:2773 - msgid "Cannot Rename" - msgstr "Impossibile rinominare" - --#: ../system-config-printer.py:2764 -+#: ../system-config-printer.py:2774 - msgid "There are queued jobs." - msgstr "Ci sono dei lavori nelle code di stampa." - --#: ../system-config-printer.py:2822 -+#: ../system-config-printer.py:2840 - msgid "renaming printer" - msgstr "rinomina stampante" - - #. for classes make sure all members - #. will get added --#: ../system-config-printer.py:2907 -+#: ../system-config-printer.py:2925 - msgid "copying printer" - msgstr "copia stampante" - --#: ../system-config-printer.py:2971 -+#: ../system-config-printer.py:2989 - #, fuzzy, python-format - msgid "Really delete class '%s'?" - msgstr "Si vuole realmente eliminare la classe `%s'?" - --#: ../system-config-printer.py:2973 -+#: ../system-config-printer.py:2991 - #, fuzzy, python-format - msgid "Really delete printer '%s'?" - msgstr "Si vuole realmente eliminare la stampante `%s'?" - --#: ../system-config-printer.py:2975 -+#: ../system-config-printer.py:2993 - msgid "Really delete selected destinations?" - msgstr "Si desidera realmente eliminare le destinazioni selezionate?" - --#: ../system-config-printer.py:2996 -+#: ../system-config-printer.py:3014 - #, python-format - msgid "deleting printer %s" - msgstr "cancellazione stampante %s" - --#: ../system-config-printer.py:3070 -+#: ../system-config-printer.py:3088 - msgid "Publish Shared Printers" - msgstr "Pubblica stampanti condivise" - --#: ../system-config-printer.py:3071 -+#: ../system-config-printer.py:3089 - msgid "" - "Shared printers are not available to other people unless the 'Publish shared " - "printers' option is enabled in the server settings." -@@ -1070,7 +1079,7 @@ msgstr "" - "l'opzione 'Pubblica stampanti condivise' è stata abilitata nelle " - "impostazioni del server." - --#: ../system-config-printer.py:3264 -+#: ../system-config-printer.py:3282 - msgid "modifying server settings" - msgstr "modifica impostazioni del server" - -@@ -1080,11 +1089,11 @@ msgstr "modifica impostazioni del server - #. be unblocked. Unfortunately, this is not yet possible - #. (bug #440469). However, we can display a dialog to suggest - #. that now might be a good time to review the firewall settings. --#: ../system-config-printer.py:3289 -+#: ../system-config-printer.py:3307 - msgid "Review Firewall" - msgstr "Ricontrolla il firewall" - --#: ../system-config-printer.py:3290 -+#: ../system-config-printer.py:3308 - msgid "" - "You may need to adjust the firewall to allow network printing to this " - "computer." -@@ -1092,91 +1101,91 @@ msgstr "" - "Potrebbe esser necessario modificare il firewall per abilitare la stampa di " - "rete su questo computer." - --#: ../system-config-printer.py:3623 -+#: ../system-config-printer.py:3638 - msgid "Browsing not available (pysmbc not installed)" - msgstr "Esplorazione non disponibile (pysmbc non installato)" - - #. SMB list columns --#: ../system-config-printer.py:3629 -+#: ../system-config-printer.py:3644 - msgid "Share" - msgstr "Condivisione" - --#: ../system-config-printer.py:3635 -+#: ../system-config-printer.py:3650 - msgid "Comment" - msgstr "Commento" - - #. IPP list columns --#: ../system-config-printer.py:3654 -+#: ../system-config-printer.py:3669 - msgid "Queue" - msgstr "Coda" - --#: ../system-config-printer.py:3668 -+#: ../system-config-printer.py:3683 - msgid "" - "PostScript Printer Description files (*.ppd, *.PPD, *.ppd.gz, *.PPD.gz, *." - "PPD.GZ)" - msgstr "" - "Descrizione stampante PostScript (*.ppd, *.PPD, *.ppd.gz, *.PPD.gz, *.PPD.GZ)" - --#: ../system-config-printer.py:3677 -+#: ../system-config-printer.py:3692 - msgid "All files (*)" - msgstr "Tutti i file (*)" - --#: ../system-config-printer.py:3713 ../system-config-printer.py:5970 --#: ../system-config-printer.py:6008 ../applet.py:124 -+#: ../system-config-printer.py:3728 ../system-config-printer.py:5918 -+#: ../system-config-printer.py:5956 ../applet.py:124 - msgid "Search" - msgstr "Cerca" - --#: ../system-config-printer.py:3736 ../system-config-printer.py:3760 --#: ../glade/NewPrinterWindow.glade.h:74 -+#: ../system-config-printer.py:3751 ../system-config-printer.py:3775 -+#: ../glade/NewPrinterWindow.glade.h:73 - msgid "New Printer" - msgstr "Nuova stampante" - --#: ../system-config-printer.py:3747 -+#: ../system-config-printer.py:3762 - msgid "New Class" - msgstr "Nuova classe" - --#: ../system-config-printer.py:3752 -+#: ../system-config-printer.py:3767 - msgid "Change Device URI" - msgstr "Cambia URI del dispositivo" - --#: ../system-config-printer.py:3758 -+#: ../system-config-printer.py:3773 - msgid "Change Driver" - msgstr "Cambia driver" - --#: ../system-config-printer.py:3927 ../system-config-printer.py:3993 --#: ../system-config-printer.py:4289 ../system-config-printer.py:4487 --#: ../system-config-printer.py:5772 ../system-config-printer.py:5995 -+#: ../system-config-printer.py:3942 ../system-config-printer.py:4008 -+#: ../system-config-printer.py:4304 ../system-config-printer.py:4502 -+#: ../system-config-printer.py:5762 ../system-config-printer.py:5943 - msgid "Searching" - msgstr "Ricerca in corso" - --#: ../system-config-printer.py:3928 -+#: ../system-config-printer.py:3943 - msgid "Searching for downloadable drivers" - msgstr "Ricerca driver scaricabili in corso" - --#: ../system-config-printer.py:3994 ../system-config-printer.py:4290 -+#: ../system-config-printer.py:4009 ../system-config-printer.py:4305 - msgid "Searching for drivers" - msgstr "Ricerca driver in corso" - --#: ../system-config-printer.py:4488 ../system-config-printer.py:5773 -+#: ../system-config-printer.py:4503 ../system-config-printer.py:5763 - msgid "Searching for printers" - msgstr "Ricerca stampanti in corso" - --#: ../system-config-printer.py:4497 -+#: ../system-config-printer.py:4512 - msgid "fetching device list" - msgstr "recupero elenco dispositivi" - - #. Tell the user why he needs the plugin --#: ../system-config-printer.py:4579 -+#: ../system-config-printer.py:4594 - msgid "For this printer a proprietary driver plugin from HP is available.\n" - msgstr "" - --#: ../system-config-printer.py:4582 -+#: ../system-config-printer.py:4597 - msgid "" - "The installation of the plugin is required for your printer to work.\n" - "\n" - msgstr "" - --#: ../system-config-printer.py:4585 -+#: ../system-config-printer.py:4600 - msgid "" - "Installing the plugin is optional, it completes or enhances the " - "functionality\n" -@@ -1184,115 +1193,111 @@ msgid "" - "\n" - msgstr "" - --#: ../system-config-printer.py:4589 -+#: ../system-config-printer.py:4604 - msgid "The plugin provides the following features:\n" - msgstr "" - --#: ../system-config-printer.py:4592 -+#: ../system-config-printer.py:4607 - msgid " - Printing support\n" - msgstr "" - --#: ../system-config-printer.py:4595 -+#: ../system-config-printer.py:4610 - #, fuzzy - msgid " - Faster printing\n" - msgstr "Stampa su due lati" - --#: ../system-config-printer.py:4598 -+#: ../system-config-printer.py:4613 - msgid " - Better printout quality\n" - msgstr "" - --#: ../system-config-printer.py:4601 -+#: ../system-config-printer.py:4616 - msgid " - Extra printing features\n" - msgstr "" - --#: ../system-config-printer.py:4604 -+#: ../system-config-printer.py:4619 - msgid " - Scanning support\n" - msgstr "" - --#: ../system-config-printer.py:4607 -+#: ../system-config-printer.py:4622 - msgid " - Faster scanning\n" - msgstr "" - --#: ../system-config-printer.py:4610 -+#: ../system-config-printer.py:4625 - msgid " - Better scanning image quality\n" - msgstr "" - --#: ../system-config-printer.py:4613 -+#: ../system-config-printer.py:4628 - msgid " - Faxing support\n" - msgstr "" - --#: ../system-config-printer.py:4616 -+#: ../system-config-printer.py:4631 - msgid " - Extra fax features\n" - msgstr "" - --#: ../system-config-printer.py:4619 -+#: ../system-config-printer.py:4634 - msgid " - Better Input/Output support\n" - msgstr "" - --#: ../system-config-printer.py:4622 -+#: ../system-config-printer.py:4637 - msgid " - Extra user interface features\n" - msgstr "" - --#: ../system-config-printer.py:4625 -+#: ../system-config-printer.py:4640 - msgid " - Other extra features\n" - msgstr "" - --#: ../system-config-printer.py:4630 -+#: ../system-config-printer.py:4645 - #, fuzzy - msgid "Install plugin" - msgstr "Opzioni installate" - --#: ../system-config-printer.py:4631 -+#: ../system-config-printer.py:4646 - #, fuzzy - msgid "Do not set up printer" - msgstr "Selezionare stampante" - --#: ../system-config-printer.py:4632 -+#: ../system-config-printer.py:4647 - msgid "Set up without plugin" - msgstr "" - --#: ../system-config-printer.py:4634 ../troubleshoot/PrintTestPage.py:118 -+#: ../system-config-printer.py:4649 ../troubleshoot/PrintTestPage.py:118 - msgid "Yes" - msgstr "Si" - --#: ../system-config-printer.py:4635 ../troubleshoot/PrintTestPage.py:119 -+#: ../system-config-printer.py:4650 ../troubleshoot/PrintTestPage.py:119 - msgid "No" - msgstr "No" - --#: ../system-config-printer.py:4809 ../system-config-printer.py:4813 -+#: ../system-config-printer.py:4824 ../system-config-printer.py:4828 - msgid " (Current)" - msgstr " (Attuale)" - --#: ../system-config-printer.py:4845 --msgid "HP Printer (HPLIP)" --msgstr "" -- --#: ../system-config-printer.py:4886 -+#: ../system-config-printer.py:4881 - msgid "Other" - msgstr "Altro" - - #. device-info - #. PhysicalDevice obj - #. Separator? --#: ../system-config-printer.py:4902 -+#: ../system-config-printer.py:4897 - #, fuzzy - msgid "Network Printer" - msgstr "Stampante di rete" - --#: ../system-config-printer.py:4906 -+#: ../system-config-printer.py:4901 - #, fuzzy - msgid "Find Network Printer" - msgstr "Stampante di rete" - --#: ../system-config-printer.py:4979 ../system-config-printer.py:5376 -+#: ../system-config-printer.py:4974 ../system-config-printer.py:5371 - msgid "Scanning..." - msgstr "Scansione in corso..." - --#: ../system-config-printer.py:5034 ../system-config-printer.py:5798 -+#: ../system-config-printer.py:5029 - msgid "No Print Shares" - msgstr "Nessuna condivisione di stampa" - --#: ../system-config-printer.py:5035 -+#: ../system-config-printer.py:5030 - msgid "" - "There were no print shares found. Please check that the Samba service is " - "marked as trusted in your firewall configuration." -@@ -1300,32 +1305,32 @@ msgstr "" - "Nessuna condivisione di stampa trovata. Controllare che il servizio Samba " - "sia stato contrassegnato come fidato nella configurazione del firewall." - --#: ../system-config-printer.py:5296 ../system-config-printer.py:5357 -+#: ../system-config-printer.py:5291 ../system-config-printer.py:5352 - msgid "Print Share Verified" - msgstr "Condivisione di stampa verificata" - --#: ../system-config-printer.py:5297 ../system-config-printer.py:5358 -+#: ../system-config-printer.py:5292 ../system-config-printer.py:5353 - msgid "This print share is accessible." - msgstr "Questa stampante condivisa è accessibile." - --#: ../system-config-printer.py:5302 ../system-config-printer.py:5362 -+#: ../system-config-printer.py:5297 ../system-config-printer.py:5357 - msgid "This print share is not accessible." - msgstr "Questa stampante condivisa è inaccessibile." - --#: ../system-config-printer.py:5305 -+#: ../system-config-printer.py:5300 - msgid "Print Share Inaccessible" - msgstr "Condivisione di stampa non accessibile" - --#: ../system-config-printer.py:5361 -+#: ../system-config-printer.py:5356 - msgid "Inaccessible" - msgstr "Inaccessibile" - --#: ../system-config-printer.py:5419 -+#: ../system-config-printer.py:5414 - #, fuzzy, python-format - msgid "It is not possible to obtain a list of queues from '%s'." - msgstr "Non è possibile ottenere l'elenco delle code di stampa da `%s'." - --#: ../system-config-printer.py:5421 -+#: ../system-config-printer.py:5416 - msgid "" - "Obtaining a list of queues is a CUPS extension to IPP. Network printers do " - "not support it." -@@ -1333,72 +1338,72 @@ msgstr "" - "L'ottenimento di un elenco di code di stampa è una estensione CUPS per IPP. " - "Le stampanti di rete non lo supportano." - --#: ../system-config-printer.py:5424 -+#: ../system-config-printer.py:5419 - msgid "No queues" - msgstr "Nessuna coda di stampa" - --#: ../system-config-printer.py:5425 -+#: ../system-config-printer.py:5420 - msgid "There are no queues available." - msgstr "Non ci sono code di stampa disponibili." - --#: ../system-config-printer.py:5516 -+#: ../system-config-printer.py:5511 - msgid "Parallel Port" - msgstr "" - --#: ../system-config-printer.py:5518 -+#: ../system-config-printer.py:5513 - #, fuzzy - msgid "Serial Port" - msgstr "Seriale" - --#: ../system-config-printer.py:5520 -+#: ../system-config-printer.py:5515 - #, fuzzy - msgid "USB" - msgstr "SMB" - --#: ../system-config-printer.py:5522 ../system-config-printer.py:5525 -+#: ../system-config-printer.py:5517 ../system-config-printer.py:5520 - msgid "HP Linux Imaging and Printing (HPLIP)" - msgstr "" - --#: ../system-config-printer.py:5527 -+#: ../system-config-printer.py:5522 - #, fuzzy - msgid "Hardware Abstraction Layer (HAL)" - msgstr "Stampante locale individuata dall'Hardware Abstraction Layer (HAL)." - --#: ../system-config-printer.py:5529 -+#: ../system-config-printer.py:5524 - msgid "AppSocket/HP JetDirect" - msgstr "" - --#: ../system-config-printer.py:5538 -+#: ../system-config-printer.py:5533 - #, python-format - msgid "LPD/LPR queue '%s'" - msgstr "" - --#: ../system-config-printer.py:5540 -+#: ../system-config-printer.py:5535 - #, fuzzy - msgid "LPD/LPR queue" - msgstr "LPD" - --#: ../system-config-printer.py:5543 -+#: ../system-config-printer.py:5538 - msgid "Windows Printer via SAMBA" - msgstr "" - --#: ../system-config-printer.py:5545 ../glade/NewPrinterWindow.glade.h:66 -+#: ../system-config-printer.py:5540 ../glade/NewPrinterWindow.glade.h:65 - msgid "IPP" - msgstr "IPP" - --#: ../system-config-printer.py:5547 -+#: ../system-config-printer.py:5542 - msgid "HTTP" - msgstr "" - --#: ../system-config-printer.py:5632 -+#: ../system-config-printer.py:5624 - msgid "A printer connected to the parallel port." - msgstr "Una stampante connessa alla porta parallela." - --#: ../system-config-printer.py:5634 -+#: ../system-config-printer.py:5626 - msgid "A printer connected to a USB port." - msgstr "Una stampante connessa ad una porta USB." - --#: ../system-config-printer.py:5636 -+#: ../system-config-printer.py:5628 - msgid "" - "HPLIP software driving a printer, or the printer function of a multi-" - "function device." -@@ -1406,7 +1411,7 @@ msgstr "" - "Il software HPLIP gestisce una stampante, o le funzioni di stampa di una " - "periferica multi-funzionale." - --#: ../system-config-printer.py:5639 -+#: ../system-config-printer.py:5631 - msgid "" - "HPLIP software driving a fax machine, or the fax function of a multi-" - "function device." -@@ -1414,47 +1419,43 @@ msgstr "" - "Il software HPLIP gestisce una macchina fax, o le funzionalità fax di una " - "periferica multi-funzionale." - --#: ../system-config-printer.py:5642 -+#: ../system-config-printer.py:5634 - msgid "Local printer detected by the Hardware Abstraction Layer (HAL)." - msgstr "Stampante locale individuata dall'Hardware Abstraction Layer (HAL)." - --#: ../system-config-printer.py:5799 --msgid "HPLIP cannot find the device." --msgstr "" -- --#: ../system-config-printer.py:5881 -+#: ../system-config-printer.py:5831 - msgid "No printer was found at that address." - msgstr "" - --#: ../system-config-printer.py:6020 -+#: ../system-config-printer.py:5968 - msgid "-- Select from search results --" - msgstr "-- Scegliere dai risultati della ricerca --" - --#: ../system-config-printer.py:6022 -+#: ../system-config-printer.py:5970 - msgid "-- No matches found --" - msgstr "-- Nessun risultato --" - --#: ../system-config-printer.py:6203 -+#: ../system-config-printer.py:6151 - msgid " (recommended)" - msgstr " (raccomandato)" - --#: ../system-config-printer.py:6217 -+#: ../system-config-printer.py:6165 - msgid "This PPD is generated by foomatic." - msgstr "Questo PPD è generato da foomatic." - --#: ../system-config-printer.py:6241 -+#: ../system-config-printer.py:6189 - msgid "OpenPrinting" - msgstr "OpenPrinting" - --#: ../system-config-printer.py:6252 -+#: ../system-config-printer.py:6200 - msgid "Distributable" - msgstr "Distribuibile" - --#: ../system-config-printer.py:6293 -+#: ../system-config-printer.py:6241 - msgid ", " - msgstr ", " - --#: ../system-config-printer.py:6298 -+#: ../system-config-printer.py:6246 - #, python-format - msgid "" - "\n" -@@ -1463,20 +1464,20 @@ msgstr "" - "\n" - "(%s)" - --#: ../system-config-printer.py:6303 -+#: ../system-config-printer.py:6251 - msgid "No support contacts known" - msgstr "Nessun contatto di supporto conosciuto" - --#: ../system-config-printer.py:6307 ../system-config-printer.py:6320 -+#: ../system-config-printer.py:6255 ../system-config-printer.py:6268 - msgid "Not specified." - msgstr "Non specificata." - - #. Foomatic database problem of some sort. --#: ../system-config-printer.py:6360 -+#: ../system-config-printer.py:6308 - msgid "Database error" - msgstr "Errore del database" - --#: ../system-config-printer.py:6361 -+#: ../system-config-printer.py:6309 - #, python-format - msgid "The '%s' driver cannot be used with printer '%s %s'." - msgstr "Il driver '%s' non può essere utilizzato con la stampante '%s %s'." -@@ -1484,61 +1485,61 @@ msgstr "Il driver '%s' non può essere u - #. This printer references some XML that is not - #. installed by default. Point the user at the - #. package they need to install. --#: ../system-config-printer.py:6371 -+#: ../system-config-printer.py:6319 - #, python-format - msgid "You will need to install the '%s' package in order to use this driver." - msgstr "" - "Per poter utilizzare questo driver occorre installare il pacchetto '%s'." - - #. This error came from trying to open the PPD file. --#: ../system-config-printer.py:6378 -+#: ../system-config-printer.py:6326 - msgid "PPD error" - msgstr "Errore del file PPD" - --#: ../system-config-printer.py:6380 -+#: ../system-config-printer.py:6328 - msgid "Failed to read PPD file. Possible reason follows:" - msgstr "Lettura file PPD fallita. Seguono possibili ragioni:" - - #. Failed to get PPD downloaded from OpenPrinting XXX --#: ../system-config-printer.py:6397 -+#: ../system-config-printer.py:6345 - msgid "Downloadable drivers" - msgstr "Driver disponibili per il download" - --#: ../system-config-printer.py:6398 -+#: ../system-config-printer.py:6346 - msgid "Failed to download PPD." - msgstr "Errore nel download di PPD." - --#: ../system-config-printer.py:6405 -+#: ../system-config-printer.py:6353 - msgid "fetching PPD" - msgstr "" - --#: ../system-config-printer.py:6434 ../system-config-printer.py:6472 -+#: ../system-config-printer.py:6382 ../system-config-printer.py:6420 - msgid "No Installable Options" - msgstr "Nessuna opzione installabile" - --#: ../system-config-printer.py:6520 -+#: ../system-config-printer.py:6468 - #, python-format - msgid "adding printer %s" - msgstr "aggiunta stampante %s" - --#: ../system-config-printer.py:6669 -+#: ../system-config-printer.py:6617 - msgid "Would you like to print a test page?" - msgstr "Si desidera stampare una pagina di prova?" - --#: ../system-config-printer.py:6722 -+#: ../system-config-printer.py:6670 - msgid "Install driver" - msgstr "Installazione driver" - --#: ../system-config-printer.py:6723 ../troubleshoot/CheckPPDSanity.py:131 -+#: ../system-config-printer.py:6671 ../troubleshoot/CheckPPDSanity.py:131 - #, python-format - msgid "Printer '%s' requires the %s package but it is not currently installed." - msgstr "La stampante '%s' necessita dell'installazione del pacchetto %s." - --#: ../system-config-printer.py:6739 -+#: ../system-config-printer.py:6687 - msgid "Missing driver" - msgstr "Driver mancante" - --#: ../system-config-printer.py:6740 -+#: ../system-config-printer.py:6688 - #, python-format - msgid "" - "Printer '%s' requires the '%s' program but it is not currently installed. " -@@ -1676,109 +1677,104 @@ msgid "Enter device URI" - msgstr "Digitare URI dispositivo" - - #: ../glade/NewPrinterWindow.glade.h:5 --#, fuzzy --msgid "HP Printer (HPLIP) via network" --msgstr "Nome stampante" -- --#: ../glade/NewPrinterWindow.glade.h:6 - msgid "IPP Printer" - msgstr "Stampante IPP" - --#: ../glade/NewPrinterWindow.glade.h:7 -+#: ../glade/NewPrinterWindow.glade.h:6 - msgid "License Terms" - msgstr "Licenza d'uso" - --#: ../glade/NewPrinterWindow.glade.h:8 -+#: ../glade/NewPrinterWindow.glade.h:7 - msgid "Location of the LPD network printer" - msgstr "Locazione della stampante di rete LPD" - --#: ../glade/NewPrinterWindow.glade.h:9 -+#: ../glade/NewPrinterWindow.glade.h:8 - msgid "Location of the network printer" - msgstr "Locazione della stampante di rete" - --#: ../glade/NewPrinterWindow.glade.h:10 -+#: ../glade/NewPrinterWindow.glade.h:9 - msgid "Location (optional)" - msgstr "Locazione (opzionale)" - --#: ../glade/NewPrinterWindow.glade.h:11 -+#: ../glade/NewPrinterWindow.glade.h:10 - #, fuzzy - msgid "Network Printer" - msgstr "Stampante di rete" - --#: ../glade/NewPrinterWindow.glade.h:12 -+#: ../glade/NewPrinterWindow.glade.h:11 - msgid "Note" - msgstr "Nota" - --#: ../glade/NewPrinterWindow.glade.h:13 -+#: ../glade/NewPrinterWindow.glade.h:12 - msgid "Output Quality" - msgstr "Qualità di output" - --#: ../glade/NewPrinterWindow.glade.h:14 -+#: ../glade/NewPrinterWindow.glade.h:13 - msgid "Printer Name" - msgstr "Nome stampante" - --#: ../glade/NewPrinterWindow.glade.h:15 -+#: ../glade/NewPrinterWindow.glade.h:14 - msgid "SMB Printer" - msgstr "Stampante SMB" - --#: ../glade/NewPrinterWindow.glade.h:16 -+#: ../glade/NewPrinterWindow.glade.h:15 - msgid "Select Driver" - msgstr "Selezionare driver" - --#: ../glade/NewPrinterWindow.glade.h:17 -+#: ../glade/NewPrinterWindow.glade.h:16 - msgid "Settings of the serial port" - msgstr "Impostazioni della porta seriale" - --#: ../glade/NewPrinterWindow.glade.h:18 -+#: ../glade/NewPrinterWindow.glade.h:17 - msgid "smb://[workgroup/]server[:port]/printer" - msgstr "smb://[workgroup/]server[:porta]/stampante" - --#: ../glade/NewPrinterWindow.glade.h:19 -+#: ../glade/NewPrinterWindow.glade.h:18 - msgid "Choose Class Members" - msgstr "" - "Scegli i membri della classe" - --#: ../glade/NewPrinterWindow.glade.h:20 -+#: ../glade/NewPrinterWindow.glade.h:19 - msgid "Choose Driver" - msgstr "Scegli Driver" - --#: ../glade/NewPrinterWindow.glade.h:21 -+#: ../glade/NewPrinterWindow.glade.h:20 - msgid "Describe Printer" - msgstr "Descrivi stampante" - --#: ../glade/NewPrinterWindow.glade.h:22 -+#: ../glade/NewPrinterWindow.glade.h:21 - msgid "Existing Settings" - msgstr "Impostazioni esistenti" - --#: ../glade/NewPrinterWindow.glade.h:23 -+#: ../glade/NewPrinterWindow.glade.h:22 - msgid "Installable Options" - msgstr "Opzioni installabili" - --#: ../glade/NewPrinterWindow.glade.h:24 -+#: ../glade/NewPrinterWindow.glade.h:23 - msgid "Select Device" - msgstr "Seleziona dispositivo" - --#: ../glade/NewPrinterWindow.glade.h:25 -+#: ../glade/NewPrinterWindow.glade.h:24 - msgid "Baud Rate" - msgstr "Baud rate" - --#: ../glade/NewPrinterWindow.glade.h:26 -+#: ../glade/NewPrinterWindow.glade.h:25 - msgid "Browse..." - msgstr "Sfoglia..." - --#: ../glade/NewPrinterWindow.glade.h:27 -+#: ../glade/NewPrinterWindow.glade.h:26 - msgid "Comments..." - msgstr "Commenti..." - --#: ../glade/NewPrinterWindow.glade.h:28 -+#: ../glade/NewPrinterWindow.glade.h:27 - msgid "Connection" - msgstr "Connessione" - --#: ../glade/NewPrinterWindow.glade.h:29 -+#: ../glade/NewPrinterWindow.glade.h:28 - msgid "Data Bits" - msgstr "Data bits" - --#: ../glade/NewPrinterWindow.glade.h:30 -+#: ../glade/NewPrinterWindow.glade.h:29 - msgid "" - "Default\n" - "1200\n" -@@ -1800,7 +1796,7 @@ msgstr "" - "57600\n" - "115200" - --#: ../glade/NewPrinterWindow.glade.h:39 -+#: ../glade/NewPrinterWindow.glade.h:38 - msgid "" - "Default\n" - "8\n" -@@ -1810,7 +1806,7 @@ msgstr "" - "8\n" - "7" - --#: ../glade/NewPrinterWindow.glade.h:42 -+#: ../glade/NewPrinterWindow.glade.h:41 - msgid "" - "Default\n" - "None\n" -@@ -1822,7 +1818,7 @@ msgstr "" - "Dispari\n" - "Pari" - --#: ../glade/NewPrinterWindow.glade.h:46 -+#: ../glade/NewPrinterWindow.glade.h:45 - msgid "" - "Default\n" - "None\n" -@@ -1836,114 +1832,114 @@ msgstr "" - "RTS/CTS (Hardware)\n" - "DTR/DSR (Hardware)" - --#: ../glade/NewPrinterWindow.glade.h:51 -+#: ../glade/NewPrinterWindow.glade.h:50 - #: ../glade/PrinterPropertiesDialog.glade.h:35 - msgid "Description:" - msgstr "Descrizione:" - --#: ../glade/NewPrinterWindow.glade.h:52 ../troubleshoot/DeviceListed.py:40 -+#: ../glade/NewPrinterWindow.glade.h:51 ../troubleshoot/DeviceListed.py:40 - msgid "Device URI" - msgstr "URI dispositivo" - --#: ../glade/NewPrinterWindow.glade.h:53 -+#: ../glade/NewPrinterWindow.glade.h:52 - msgid "Device description." - msgstr "Descrizione periferica." - --#: ../glade/NewPrinterWindow.glade.h:54 -+#: ../glade/NewPrinterWindow.glade.h:53 - msgid "DirectJet" - msgstr "DirectJet" - --#: ../glade/NewPrinterWindow.glade.h:56 -+#: ../glade/NewPrinterWindow.glade.h:55 - msgid "Driver details" - msgstr "Dettagli driver" - --#: ../glade/NewPrinterWindow.glade.h:57 -+#: ../glade/NewPrinterWindow.glade.h:56 - msgid "Empty" - msgstr "Vuota" - --#: ../glade/NewPrinterWindow.glade.h:58 -+#: ../glade/NewPrinterWindow.glade.h:57 - msgid "Find _Queue..." - msgstr "Cerca _Coda di stampa..." - --#: ../glade/NewPrinterWindow.glade.h:59 -+#: ../glade/NewPrinterWindow.glade.h:58 - msgid "Flow Control" - msgstr "Controllo di flusso" - --#: ../glade/NewPrinterWindow.glade.h:60 -+#: ../glade/NewPrinterWindow.glade.h:59 - msgid "" - "For the printer you have selected there are drivers available for download." - msgstr "Driver per la stampante scelta disponibili per il download." - --#: ../glade/NewPrinterWindow.glade.h:61 -+#: ../glade/NewPrinterWindow.glade.h:60 - msgid "Free software" - msgstr "Software libero" - --#: ../glade/NewPrinterWindow.glade.h:62 -+#: ../glade/NewPrinterWindow.glade.h:61 - msgid "Graphics:" - msgstr "Grafica:" - --#: ../glade/NewPrinterWindow.glade.h:63 -+#: ../glade/NewPrinterWindow.glade.h:62 - msgid "Host:" - msgstr "Host:" - --#: ../glade/NewPrinterWindow.glade.h:64 -+#: ../glade/NewPrinterWindow.glade.h:63 - msgid "Human-readable description such as \"HP LaserJet with Duplexer\"" - msgstr "Descrizione umanamente leggibile, tipo \"HP LaserJet con Duplexer\"" - --#: ../glade/NewPrinterWindow.glade.h:65 -+#: ../glade/NewPrinterWindow.glade.h:64 - msgid "Human-readable location such as \"Lab 1\"" - msgstr "Locazione umanamente leggibile, tipo \"Laboratorio 1\"" - --#: ../glade/NewPrinterWindow.glade.h:67 -+#: ../glade/NewPrinterWindow.glade.h:66 - msgid "LPD" - msgstr "LPD" - --#: ../glade/NewPrinterWindow.glade.h:68 -+#: ../glade/NewPrinterWindow.glade.h:67 - msgid "License:" - msgstr "Licenza:" - --#: ../glade/NewPrinterWindow.glade.h:69 -+#: ../glade/NewPrinterWindow.glade.h:68 - msgid "Line art:" - msgstr "Line art:" - --#: ../glade/NewPrinterWindow.glade.h:70 -+#: ../glade/NewPrinterWindow.glade.h:69 - msgid "Local Driver" - msgstr "Driver locale" - --#: ../glade/NewPrinterWindow.glade.h:71 -+#: ../glade/NewPrinterWindow.glade.h:70 - msgid "Make and model:" - msgstr "Marca e modello:" - --#: ../glade/NewPrinterWindow.glade.h:72 -+#: ../glade/NewPrinterWindow.glade.h:71 - msgid "Manufacturer" - msgstr "Produttore" - --#: ../glade/NewPrinterWindow.glade.h:73 -+#: ../glade/NewPrinterWindow.glade.h:72 - #, fuzzy - msgid "Network" - msgstr "Stampante di rete" - --#: ../glade/NewPrinterWindow.glade.h:75 -+#: ../glade/NewPrinterWindow.glade.h:74 - msgid "No, I do not accept this license" - msgstr "No, non accetto questa licenza" - --#: ../glade/NewPrinterWindow.glade.h:76 -+#: ../glade/NewPrinterWindow.glade.h:75 - msgid "Parity" - msgstr "Parità" - --#: ../glade/NewPrinterWindow.glade.h:78 -+#: ../glade/NewPrinterWindow.glade.h:77 - msgid "Patented algorithms" - msgstr "Algoritmi proprietari" - --#: ../glade/NewPrinterWindow.glade.h:79 -+#: ../glade/NewPrinterWindow.glade.h:78 - msgid "Photo:" - msgstr "Foto:" - --#: ../glade/NewPrinterWindow.glade.h:80 -+#: ../glade/NewPrinterWindow.glade.h:79 - msgid "Port number:" - msgstr "Numero di porta:" - --#: ../glade/NewPrinterWindow.glade.h:81 -+#: ../glade/NewPrinterWindow.glade.h:80 - msgid "" - "PostScript Printer Description (PPD) files can often be found on the driver " - "disk that comes with the printer. For PostScript printers they are often " -@@ -1953,76 +1949,76 @@ msgstr "" - "sul disco driver venduto assieme alla stampante. Per le stampanti PostScript " - "essi sono spesso parte del driver Windows®." - --#: ../glade/NewPrinterWindow.glade.h:82 -+#: ../glade/NewPrinterWindow.glade.h:81 - msgid "Printer model:" - msgstr "Modello stampante:" - --#: ../glade/NewPrinterWindow.glade.h:83 -+#: ../glade/NewPrinterWindow.glade.h:82 - msgid "Probe" - msgstr "Esamina" - --#: ../glade/NewPrinterWindow.glade.h:84 -+#: ../glade/NewPrinterWindow.glade.h:83 - msgid "Prompt user if authentication is required" - msgstr "Indica all'utente se è necessaria l'autenticazione" - --#: ../glade/NewPrinterWindow.glade.h:85 -+#: ../glade/NewPrinterWindow.glade.h:84 - msgid "Provide PPD file" - msgstr "Specifica un file PPD" - --#: ../glade/NewPrinterWindow.glade.h:86 -+#: ../glade/NewPrinterWindow.glade.h:85 - msgid "Queue:" - msgstr "Coda:" - --#: ../glade/NewPrinterWindow.glade.h:87 -+#: ../glade/NewPrinterWindow.glade.h:86 - msgid "SCSI" - msgstr "SCSI" - --#: ../glade/NewPrinterWindow.glade.h:88 -+#: ../glade/NewPrinterWindow.glade.h:87 - msgid "SMB" - msgstr "SMB" - --#: ../glade/NewPrinterWindow.glade.h:89 -+#: ../glade/NewPrinterWindow.glade.h:88 - msgid "Search for a printer driver to download" - msgstr "Cerca un driver di stampa da scaricare" - --#: ../glade/NewPrinterWindow.glade.h:90 -+#: ../glade/NewPrinterWindow.glade.h:89 - #, fuzzy - msgid "Searching..." - msgstr "Ricerca in corso" - --#: ../glade/NewPrinterWindow.glade.h:91 -+#: ../glade/NewPrinterWindow.glade.h:90 - msgid "Select A File" - msgstr "Selezionare un file" - --#: ../glade/NewPrinterWindow.glade.h:92 -+#: ../glade/NewPrinterWindow.glade.h:91 - msgid "Select printer from database" - msgstr "Selezionare stampante dal database" - --#: ../glade/NewPrinterWindow.glade.h:93 -+#: ../glade/NewPrinterWindow.glade.h:92 - msgid "Serial" - msgstr "Seriale" - --#: ../glade/NewPrinterWindow.glade.h:94 -+#: ../glade/NewPrinterWindow.glade.h:93 - msgid "Set authentication details now" - msgstr "Imposta ora le informazioni sull'autenticazione" - --#: ../glade/NewPrinterWindow.glade.h:95 -+#: ../glade/NewPrinterWindow.glade.h:94 - msgid "Short name for this printer such as \"laserjet\"" - msgstr "Nome abbreviato per questa stampante, ad esempio \"laserjet\"" - --#: ../glade/NewPrinterWindow.glade.h:96 -+#: ../glade/NewPrinterWindow.glade.h:95 - msgid "Supplier:" - msgstr "Fornito da:" - --#: ../glade/NewPrinterWindow.glade.h:97 -+#: ../glade/NewPrinterWindow.glade.h:96 - msgid "Support:" - msgstr "Supporto:" - --#: ../glade/NewPrinterWindow.glade.h:98 -+#: ../glade/NewPrinterWindow.glade.h:97 - msgid "Text:" - msgstr "Testo:" - --#: ../glade/NewPrinterWindow.glade.h:99 -+#: ../glade/NewPrinterWindow.glade.h:98 - msgid "" - "The foomatic printer database contains various manufacturer provided " - "PostScript Printer Description (PPD) files and also can generate PPD files " -@@ -2036,7 +2032,7 @@ msgstr "" - "forniti dai fabbricanti forniscono un miglior accesso alle caratteristiche " - "specifiche della stampante." - --#: ../glade/NewPrinterWindow.glade.h:100 -+#: ../glade/NewPrinterWindow.glade.h:99 - msgid "" - "These drivers do not come from your operating system supplier and will not " - "be covered by their commercial support. See the support and license terms " -@@ -2046,7 +2042,7 @@ msgstr "" - "sono coperti da alcuna garanzia. Per maggiori informazioni consultare i " - "termini d'uso e la licenza utente del produttore." - --#: ../glade/NewPrinterWindow.glade.h:101 -+#: ../glade/NewPrinterWindow.glade.h:100 - msgid "" - "This driver supports additional hardware that may be installed in the " - "printer." -@@ -2054,7 +2050,7 @@ msgstr "" - "Questo driver supporta hardware aggiuntivo eventualmente installato nella " - "stampante." - --#: ../glade/NewPrinterWindow.glade.h:102 -+#: ../glade/NewPrinterWindow.glade.h:101 - msgid "" - "This is done by assuming that options with the same name do have the same " - "meaning. Settings of options that are not present in the new PPD will be " -@@ -2064,7 +2060,7 @@ msgstr "" - "Le impostazioni non presenti nel nuovo PPD saranno perse mentre le opzioni " - "presenti solamente nel nuovo PPD saranno impostate come predefinite." - --#: ../glade/NewPrinterWindow.glade.h:103 -+#: ../glade/NewPrinterWindow.glade.h:102 - msgid "" - "This way all current option settings will be lost. The default settings of " - "the new PPD will be used. " -@@ -2072,19 +2068,19 @@ msgstr "" - "In questo modo tutte le vecchie impostazioni saranno perse. Verranno usate " - "le impostazioni predefinite del nuovo PPD. " - --#: ../glade/NewPrinterWindow.glade.h:104 -+#: ../glade/NewPrinterWindow.glade.h:103 - msgid "Try to copy the option settings over from the old PPD. " - msgstr "Tentativo di copia delle impostazioni dal vecchio PPD. " - --#: ../glade/NewPrinterWindow.glade.h:105 -+#: ../glade/NewPrinterWindow.glade.h:104 - msgid "URI:" - msgstr "URI:" - --#: ../glade/NewPrinterWindow.glade.h:107 -+#: ../glade/NewPrinterWindow.glade.h:106 - msgid "Use the new PPD (Postscript Printer Description) as is." - msgstr "Usa il nuovo PPD (Postscript Printer Description) così com'è." - --#: ../glade/NewPrinterWindow.glade.h:109 -+#: ../glade/NewPrinterWindow.glade.h:108 - msgid "" - "With this choice no driver download will be performed. In the next steps a " - "locally installed driver will be selected." -@@ -2092,24 +2088,24 @@ msgstr "" - "Scegliendo questa opzione non verranno scaricati driver. Nel passo " - "successivo verrà richiesta la selezione di un driver installato in locale." - --#: ../glade/NewPrinterWindow.glade.h:110 -+#: ../glade/NewPrinterWindow.glade.h:109 - msgid "Yes, I accept this license" - msgstr "Si, accetto questa licenza" - --#: ../glade/NewPrinterWindow.glade.h:111 -+#: ../glade/NewPrinterWindow.glade.h:110 - msgid "_Search" - msgstr "_Cerca" - --#: ../glade/NewPrinterWindow.glade.h:112 -+#: ../glade/NewPrinterWindow.glade.h:111 - msgid "_Verify..." - msgstr "_Verifica..." - --#: ../glade/NewPrinterWindow.glade.h:113 -+#: ../glade/NewPrinterWindow.glade.h:112 - #: ../glade/PrinterPropertiesDialog.glade.h:128 - msgid "move left" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:114 -+#: ../glade/NewPrinterWindow.glade.h:113 - #: ../glade/PrinterPropertiesDialog.glade.h:129 - msgid "move right" - msgstr "" -@@ -3035,7 +3031,7 @@ msgstr "I lavori contrassegnati sono sta - msgid "Remember to load paper of type '%s' into the printer first." - msgstr "Ricordarsi prima di caricare la carta di tipo '%s' nella stampante." - --#: ../troubleshoot/PrintTestPage.py:399 -+#: ../troubleshoot/PrintTestPage.py:416 - msgid "Error submitting test page" - msgstr "Errore durante l'invio della pagina di prova" - -@@ -3242,6 +3238,10 @@ msgid "Select default printer" - msgstr "Seleziona stampante predefinita" - - #, fuzzy -+#~ msgid "HP Printer (HPLIP) via network" -+#~ msgstr "Nome stampante" -+ -+#, fuzzy - #~ msgid "Not Found" - #~ msgstr "Non trovato" - -diff -up system-config-printer-1.1.5/po/ja.po.git-1.1.x system-config-printer-1.1.5/po/ja.po ---- system-config-printer-1.1.5/po/ja.po.git-1.1.x 2009-03-03 22:21:46.000000000 +0000 -+++ system-config-printer-1.1.5/po/ja.po 2009-03-10 17:43:31.000000000 +0000 -@@ -16,7 +16,7 @@ msgid "" - msgstr "" - "Project-Id-Version: ja\n" - "Report-Msgid-Bugs-To: https://bugzilla.redhat.com/bugzilla\n" --"POT-Creation-Date: 2009-03-02 23:22+0000\n" -+"POT-Creation-Date: 2009-03-10 16:51+0000\n" - "PO-Revision-Date: 2007-06-30 13:30+0900\n" - "Last-Translator: Hyu_gabaru Ryu_ichi \n" - "Language-Team: Japanese \n" -@@ -63,11 +63,11 @@ msgstr "" - msgid "Enter IP address" - msgstr "追加したプリンター" - --#: ../authconn.py:35 ../glade/NewPrinterWindow.glade.h:108 -+#: ../authconn.py:35 ../glade/NewPrinterWindow.glade.h:107 - msgid "Username:" - msgstr "ユーザー名:" - --#: ../authconn.py:36 ../glade/NewPrinterWindow.glade.h:77 -+#: ../authconn.py:36 ../glade/NewPrinterWindow.glade.h:76 - msgid "Password:" - msgstr "パスワード:" - -@@ -76,7 +76,7 @@ msgstr "パスワード:" - msgid "Domain:" - msgstr "上余白:" - --#: ../authconn.py:46 -+#: ../authconn.py:46 ../authconn.py:409 - #, fuzzy - msgid "Authentication" - msgstr "認証" -@@ -85,45 +85,54 @@ msgstr "認証" - msgid "Remember password" - msgstr "" - --#: ../authconn.py:211 ../authconn.py:232 -+#: ../authconn.py:208 -+#, python-format -+msgid "Unauthorized request (%s)" -+msgstr "" -+ -+#: ../authconn.py:209 -+msgid "You are not authorized to carry out therequested action." -+msgstr "" -+ -+#: ../authconn.py:212 ../authconn.py:233 - #, fuzzy - msgid "Operation canceled" - msgstr "操作ポリシー:" - --#: ../authconn.py:253 -+#: ../authconn.py:250 - #, fuzzy, python-format - msgid "CUPS server error (%s)" - msgstr "CUPS サーバーエラー" - --#: ../authconn.py:255 ../errordialogs.py:57 --#: ../troubleshoot/PrintTestPage.py:400 -+#: ../authconn.py:252 ../errordialogs.py:56 ../errordialogs.py:70 -+msgid "CUPS server error" -+msgstr "CUPS サーバーエラー" -+ -+#: ../authconn.py:261 ../errordialogs.py:57 -+#: ../troubleshoot/PrintTestPage.py:417 - #, python-format - msgid "There was an error during the CUPS operation: '%s'." - msgstr "CUPS 操作中にエラーが発生しました: '%s'." - --#: ../authconn.py:258 -+#: ../authconn.py:264 - #, fuzzy - msgid "Retry" - msgstr "リセット" - --#: ../authconn.py:379 ../authconn.py:381 ../errordialogs.py:65 ../pysmb.py:75 -+#: ../authconn.py:385 ../authconn.py:387 ../errordialogs.py:65 ../pysmb.py:75 - #: ../pysmb.py:77 - msgid "Not authorized" - msgstr "認証されていません" - --#: ../authconn.py:382 ../pysmb.py:78 -+#: ../authconn.py:388 ../pysmb.py:78 - msgid "The password may be incorrect." - msgstr "パスワードが正しくない可能性があります。" - --#: ../authconn.py:400 -+#: ../authconn.py:407 - #, fuzzy, python-format - msgid "Authentication (%s)" - msgstr "認証" - --#: ../errordialogs.py:56 ../errordialogs.py:70 --msgid "CUPS server error" --msgstr "CUPS サーバーエラー" -- - #: ../errordialogs.py:66 - msgid "" - "The password may be incorrect, or the server may be configured to deny " -@@ -152,7 +161,7 @@ msgstr "アップグレードが必要 - msgid "Server error" - msgstr "サーバーのエラーです" - --#: ../errordialogs.py:82 ../system-config-printer.py:1219 -+#: ../errordialogs.py:82 ../system-config-printer.py:1223 - msgid "Not connected" - msgstr "未接続" - -@@ -174,7 +183,7 @@ msgstr "" - msgid "_New Group from Selection" - msgstr "" - --#: ../GroupsPane.py:98 ../system-config-printer.py:393 -+#: ../GroupsPane.py:98 ../system-config-printer.py:397 - #, fuzzy - msgid "_Rename" - msgstr "解放する (_R)" -@@ -243,7 +252,7 @@ msgid "Document" - msgstr "ドキュメント" - - #: ../jobviewer.py:212 ../my-default-printer.py:153 --#: ../system-config-printer.py:366 ../system-config-printer.py:1367 -+#: ../system-config-printer.py:370 ../system-config-printer.py:1371 - #: ../troubleshoot/PrintTestPage.py:84 - msgid "Printer" - msgstr "プリンター" -@@ -280,8 +289,8 @@ msgstr "ドキュメントの印刷状 - - #: ../jobviewer.py:386 ../jobviewer.py:451 ../jobviewer.py:452 - #: ../jobviewer.py:492 ../jobviewer.py:600 ../jobviewer.py:727 --#: ../jobviewer.py:1196 ../jobviewer.py:1222 ../system-config-printer.py:2546 --#: ../glade/NewPrinterWindow.glade.h:106 -+#: ../jobviewer.py:1196 ../jobviewer.py:1222 ../system-config-printer.py:2556 -+#: ../glade/NewPrinterWindow.glade.h:105 - #: ../troubleshoot/ChooseNetworkPrinter.py:101 - #: ../troubleshoot/ChooseNetworkPrinter.py:102 - #: ../troubleshoot/ChooseNetworkPrinter.py:105 -@@ -374,12 +383,12 @@ msgstr "以下まで保留:" - msgid "Pending" - msgstr "保留中" - --#: ../jobviewer.py:591 ../system-config-printer.py:186 -+#: ../jobviewer.py:591 ../system-config-printer.py:190 - #: ../troubleshoot/PrintTestPage.py:43 - msgid "Processing" - msgstr "処理中" - --#: ../jobviewer.py:592 ../system-config-printer.py:188 -+#: ../jobviewer.py:592 ../system-config-printer.py:192 - #: ../troubleshoot/PrintTestPage.py:44 - msgid "Stopped" - msgstr "停止" -@@ -493,8 +502,8 @@ msgstr "システムのデフォルト - msgid "_Set Default" - msgstr "デフォルトに設定" - --#: ../my-default-printer.py:158 ../system-config-printer.py:423 --#: ../system-config-printer.py:3660 ../troubleshoot/ChooseNetworkPrinter.py:37 -+#: ../my-default-printer.py:158 ../system-config-printer.py:427 -+#: ../system-config-printer.py:3675 ../troubleshoot/ChooseNetworkPrinter.py:37 - #: ../troubleshoot/ChoosePrinter.py:38 - msgid "Location" - msgstr "場所" -@@ -527,7 +536,7 @@ msgstr "デフォルトのプリンタ - msgid "Authenticated" - msgstr "認証" - --#: ../ppdippstr.py:50 ../system-config-printer.py:6259 -+#: ../ppdippstr.py:50 ../system-config-printer.py:6207 - #, fuzzy - msgid "None" - msgstr "なし" -@@ -747,132 +756,132 @@ msgstr "" - msgid "1200 dpi, photo, black + color cartridge, photo paper" - msgstr "" - --#: ../system-config-printer.py:127 -+#: ../system-config-printer.py:131 - msgid "To do this, select System->Administration->Firewall from the main menu." - msgstr "" - --#: ../system-config-printer.py:185 -+#: ../system-config-printer.py:189 - msgid "Idle" - msgstr "アイドル状態" - --#: ../system-config-printer.py:187 -+#: ../system-config-printer.py:191 - msgid "Busy" - msgstr "ビジー" - --#: ../system-config-printer.py:372 ../system-config-printer.py:1373 -+#: ../system-config-printer.py:376 ../system-config-printer.py:1377 - #, fuzzy - msgid "Class" - msgstr "新規クラス" - --#: ../system-config-printer.py:399 -+#: ../system-config-printer.py:403 - #, fuzzy - msgid "Set As De_fault" - msgstr "デフォルトに設定" - --#: ../system-config-printer.py:403 -+#: ../system-config-printer.py:407 - #, fuzzy - msgid "_Create class" - msgstr "リモートクラス" - --#: ../system-config-printer.py:405 -+#: ../system-config-printer.py:409 - #, fuzzy - msgid "View Print _Queue" - msgstr "新規プリンター" - --#: ../system-config-printer.py:407 -+#: ../system-config-printer.py:411 - msgid "_Add to Group" - msgstr "" - --#: ../system-config-printer.py:409 -+#: ../system-config-printer.py:413 - msgid "Save Results as _Group" - msgstr "" - --#: ../system-config-printer.py:411 -+#: ../system-config-printer.py:415 - msgid "Save Filter as _Search Group" - msgstr "" - --#: ../system-config-printer.py:415 -+#: ../system-config-printer.py:419 - #, fuzzy - msgid "E_nabled" - msgstr "可能" - --#: ../system-config-printer.py:417 -+#: ../system-config-printer.py:421 - #, fuzzy - msgid "_Shared" - msgstr "共有" - --#: ../system-config-printer.py:421 ../troubleshoot/ChooseNetworkPrinter.py:35 -+#: ../system-config-printer.py:425 ../troubleshoot/ChooseNetworkPrinter.py:35 - #: ../troubleshoot/ChoosePrinter.py:36 ../troubleshoot/DeviceListed.py:36 - msgid "Name" - msgstr "名前" - --#: ../system-config-printer.py:422 -+#: ../system-config-printer.py:426 - #, fuzzy - msgid "Description" - msgstr "説明:" - --#: ../system-config-printer.py:424 -+#: ../system-config-printer.py:428 - msgid "Manufacturer / Model" - msgstr "" - - #. Printer state reasons list --#: ../system-config-printer.py:499 -+#: ../system-config-printer.py:503 - msgid "Message" - msgstr "メッセージ" - --#: ../system-config-printer.py:534 -+#: ../system-config-printer.py:538 - #, fuzzy - msgid "Problems?" - msgstr "プローブ" - --#: ../system-config-printer.py:637 ../system-config-printer.py:639 -+#: ../system-config-printer.py:641 ../system-config-printer.py:643 - msgid "Members of this class" - msgstr "このクラスのメンバー" - --#: ../system-config-printer.py:638 ../system-config-printer.py:640 -+#: ../system-config-printer.py:642 ../system-config-printer.py:644 - msgid "Others" - msgstr "その他" - --#: ../system-config-printer.py:641 -+#: ../system-config-printer.py:645 - msgid "Devices" - msgstr "デバイス" - --#: ../system-config-printer.py:642 -+#: ../system-config-printer.py:646 - #, fuzzy - msgid "Connections" - msgstr "接続中" - --#: ../system-config-printer.py:643 -+#: ../system-config-printer.py:647 - msgid "Makes" - msgstr "製造元" - --#: ../system-config-printer.py:644 -+#: ../system-config-printer.py:648 - msgid "Models" - msgstr "モデル" - --#: ../system-config-printer.py:645 -+#: ../system-config-printer.py:649 - msgid "Drivers" - msgstr "ドライバー" - --#: ../system-config-printer.py:646 ../glade/NewPrinterWindow.glade.h:55 -+#: ../system-config-printer.py:650 ../glade/NewPrinterWindow.glade.h:54 - msgid "Downloadable Drivers" - msgstr "" - --#: ../system-config-printer.py:647 -+#: ../system-config-printer.py:651 - msgid "Users" - msgstr "ユーザー" - --#: ../system-config-printer.py:682 -+#: ../system-config-printer.py:686 - msgid "Automatic rotation" - msgstr "" - --#: ../system-config-printer.py:989 -+#: ../system-config-printer.py:993 - #, fuzzy, python-format - msgid "Printer Properties - '%s' on %s" - msgstr "プリンターレポート" - - #. The Conflict button was pressed. --#: ../system-config-printer.py:996 -+#: ../system-config-printer.py:1000 - msgid "" - "There are conflicting options.\n" - "Changes can only be applied after\n" -@@ -882,81 +891,81 @@ msgstr "" - "あります。競合が解決され\n" - "ないと変更は適用できません。" - --#: ../system-config-printer.py:1214 -+#: ../system-config-printer.py:1218 - #, python-format - msgid "Printer configuration - %s" - msgstr "プリンター設定 - %s" - --#: ../system-config-printer.py:1217 -+#: ../system-config-printer.py:1221 - #, python-format - msgid "Connected to %s" - msgstr "%s に接続" - - #. Update our copy of the printer's settings. --#: ../system-config-printer.py:1257 ../system-config-printer.py:2042 -+#: ../system-config-printer.py:1261 ../system-config-printer.py:2046 - msgid "obtaining queue details" - msgstr "" - --#: ../system-config-printer.py:1295 -+#: ../system-config-printer.py:1299 - msgid "Remove from Group" - msgstr "" - --#: ../system-config-printer.py:1361 -+#: ../system-config-printer.py:1365 - #, fuzzy - msgid "Network printer (discovered)" - msgstr "新規プリンター" - --#: ../system-config-printer.py:1364 -+#: ../system-config-printer.py:1368 - msgid "Network class (discovered)" - msgstr "" - --#: ../system-config-printer.py:1370 ../system-config-printer.py:5524 --#: ../system-config-printer.py:5594 ../system-config-printer.py:5596 -+#: ../system-config-printer.py:1374 ../system-config-printer.py:5519 -+#: ../system-config-printer.py:5589 ../system-config-printer.py:5591 - msgid "Fax" - msgstr "" - --#: ../system-config-printer.py:1376 ../system-config-printer.py:1382 -+#: ../system-config-printer.py:1380 ../system-config-printer.py:1386 - #: ../troubleshoot/LocalOrRemote.py:30 - #, fuzzy - msgid "Network printer" - msgstr "新規プリンター" - --#: ../system-config-printer.py:1379 -+#: ../system-config-printer.py:1383 - #, fuzzy - msgid "Network print share" - msgstr "新規プリンター" - --#: ../system-config-printer.py:1508 ../glade/ConnectingDialog.glade.h:2 -+#: ../system-config-printer.py:1512 ../glade/ConnectingDialog.glade.h:2 - #, no-c-format, python-format - msgid "Opening connection to %s" - msgstr "" - --#: ../system-config-printer.py:1887 -+#: ../system-config-printer.py:1891 - msgid "Installable Options" - msgstr "インストールできるオプション" - --#: ../system-config-printer.py:1888 -+#: ../system-config-printer.py:1892 - #: ../glade/PrinterPropertiesDialog.glade.h:109 - msgid "Printer Options" - msgstr "プリンターオプション" - --#: ../system-config-printer.py:1924 -+#: ../system-config-printer.py:1928 - #, python-format - msgid "modifying class %s" - msgstr "" - --#: ../system-config-printer.py:1926 ../system-config-printer.py:3019 --#: ../system-config-printer.py:3044 ../system-config-printer.py:6547 --#: ../system-config-printer.py:6559 ../system-config-printer.py:6581 -+#: ../system-config-printer.py:1930 ../system-config-printer.py:3037 -+#: ../system-config-printer.py:3062 ../system-config-printer.py:6495 -+#: ../system-config-printer.py:6507 ../system-config-printer.py:6529 - #, fuzzy, python-format - msgid "modifying printer %s" - msgstr "プリンターの設定" - --#: ../system-config-printer.py:1941 -+#: ../system-config-printer.py:1945 - msgid "This will delete this class!" - msgstr "このクラスを削除します!" - --#: ../system-config-printer.py:1942 -+#: ../system-config-printer.py:1946 - msgid "Proceed anyway?" - msgstr "続けますか?" - -@@ -964,50 +973,50 @@ msgstr "続けますか?" - #. but we have never fetched the server settings to see whether - #. the server is publishing shared printers. Fetch the settings - #. now so that we can update the "not published" label if necessary. --#: ../system-config-printer.py:2030 ../system-config-printer.py:3203 -+#: ../system-config-printer.py:2034 ../system-config-printer.py:3221 - #, fuzzy - msgid "fetching server settings" - msgstr "基本サーバー設定" - --#: ../system-config-printer.py:2100 -+#: ../system-config-printer.py:2104 - #, fuzzy - msgid "Set Default Printer" - msgstr "デフォルトのプリンター" - --#: ../system-config-printer.py:2102 -+#: ../system-config-printer.py:2106 - msgid "Do you want to set this as the system-wide default printer?" - msgstr "" - --#: ../system-config-printer.py:2104 -+#: ../system-config-printer.py:2108 - #, fuzzy - msgid "Set as the _system-wide default printer" - msgstr "これはデフォルトのプリンターです" - --#: ../system-config-printer.py:2106 -+#: ../system-config-printer.py:2110 - msgid "_Clear my personal default setting" - msgstr "" - --#: ../system-config-printer.py:2107 -+#: ../system-config-printer.py:2111 - #, fuzzy - msgid "Set as my _personal default printer" - msgstr "デフォルトのプリンターを選択する" - --#: ../system-config-printer.py:2112 -+#: ../system-config-printer.py:2116 - #, fuzzy - msgid "setting default printer" - msgstr "デフォルトのプリンターを選択する" - --#: ../system-config-printer.py:2169 -+#: ../system-config-printer.py:2173 - #, fuzzy - msgid "printing test page" - msgstr "テストページの印刷" - --#: ../system-config-printer.py:2182 ../system-config-printer.py:2217 --#: ../system-config-printer.py:5418 -+#: ../system-config-printer.py:2186 ../system-config-printer.py:2221 -+#: ../system-config-printer.py:5413 - msgid "Not possible" - msgstr "不可能です" - --#: ../system-config-printer.py:2183 ../system-config-printer.py:2218 -+#: ../system-config-printer.py:2187 ../system-config-printer.py:2222 - msgid "" - "The remote server did not accept the print job, most likely because the " - "printer is not shared." -@@ -1015,20 +1024,20 @@ msgstr "" - "リモートサーバーは印刷依頼を受け入れませんでした。多分プリンターが共有されて" - "いないからでしょう。" - --#: ../system-config-printer.py:2195 ../system-config-printer.py:2210 -+#: ../system-config-printer.py:2199 ../system-config-printer.py:2214 - msgid "Submitted" - msgstr "受付られました" - --#: ../system-config-printer.py:2196 -+#: ../system-config-printer.py:2200 - #, python-format - msgid "Test page submitted as job %d" - msgstr "依頼 %d としてテストページが受け入れられました" - --#: ../system-config-printer.py:2203 -+#: ../system-config-printer.py:2207 - msgid "sending maintenance command" - msgstr "" - --#: ../system-config-printer.py:2211 -+#: ../system-config-printer.py:2215 - #, fuzzy, python-format - msgid "Maintenance command submitted as job %d" - msgstr "依頼 %d としてテストページが受け入れられました" -@@ -1036,75 +1045,75 @@ msgstr "依頼 %d としてテストペ - #. The underlying cupsGetPPD2() function returned NULL without - #. setting an IPP error, so it'll be something like a failed - #. connection. --#: ../system-config-printer.py:2285 ../system-config-printer.py:2381 -+#: ../system-config-printer.py:2289 ../system-config-printer.py:2385 - msgid "Error" - msgstr "エラー" - --#: ../system-config-printer.py:2286 -+#: ../system-config-printer.py:2290 - msgid "There was a problem connecting to the CUPS server." - msgstr "CUPS サーバーへの接続に問題があります。" - --#: ../system-config-printer.py:2382 -+#: ../system-config-printer.py:2386 - #, python-format - msgid "Option '%s' has value '%s' and cannot be edited." - msgstr "" - --#: ../system-config-printer.py:2466 -+#: ../system-config-printer.py:2476 - msgid "Marker levels are not reported for this printer." - msgstr "" - --#: ../system-config-printer.py:2763 -+#: ../system-config-printer.py:2773 - #, fuzzy - msgid "Cannot Rename" - msgstr "解放する (_R)" - --#: ../system-config-printer.py:2764 -+#: ../system-config-printer.py:2774 - msgid "There are queued jobs." - msgstr "" - --#: ../system-config-printer.py:2822 -+#: ../system-config-printer.py:2840 - #, fuzzy - msgid "renaming printer" - msgstr "プリンターの設定" - - #. for classes make sure all members - #. will get added --#: ../system-config-printer.py:2907 -+#: ../system-config-printer.py:2925 - #, fuzzy - msgid "copying printer" - msgstr "プリンターの設定" - --#: ../system-config-printer.py:2971 -+#: ../system-config-printer.py:2989 - #, fuzzy, python-format - msgid "Really delete class '%s'?" - msgstr "本当にクラス %s を削除しますか?" - --#: ../system-config-printer.py:2973 -+#: ../system-config-printer.py:2991 - #, fuzzy, python-format - msgid "Really delete printer '%s'?" - msgstr "本当にプリンター %s を削除しますか?" - --#: ../system-config-printer.py:2975 -+#: ../system-config-printer.py:2993 - #, fuzzy - msgid "Really delete selected destinations?" - msgstr "本当にプリンター %s を削除しますか?" - --#: ../system-config-printer.py:2996 -+#: ../system-config-printer.py:3014 - #, fuzzy, python-format - msgid "deleting printer %s" - msgstr "プリンターの設定" - --#: ../system-config-printer.py:3070 -+#: ../system-config-printer.py:3088 - msgid "Publish Shared Printers" - msgstr "" - --#: ../system-config-printer.py:3071 -+#: ../system-config-printer.py:3089 - msgid "" - "Shared printers are not available to other people unless the 'Publish shared " - "printers' option is enabled in the server settings." - msgstr "" - --#: ../system-config-printer.py:3264 -+#: ../system-config-printer.py:3282 - #, fuzzy - msgid "modifying server settings" - msgstr "基本サーバー設定" -@@ -1115,105 +1124,105 @@ msgstr "基本サーバー設定" - #. be unblocked. Unfortunately, this is not yet possible - #. (bug #440469). However, we can display a dialog to suggest - #. that now might be a good time to review the firewall settings. --#: ../system-config-printer.py:3289 -+#: ../system-config-printer.py:3307 - msgid "Review Firewall" - msgstr "" - --#: ../system-config-printer.py:3290 -+#: ../system-config-printer.py:3308 - msgid "" - "You may need to adjust the firewall to allow network printing to this " - "computer." - msgstr "" - --#: ../system-config-printer.py:3623 -+#: ../system-config-printer.py:3638 - msgid "Browsing not available (pysmbc not installed)" - msgstr "" - - #. SMB list columns --#: ../system-config-printer.py:3629 -+#: ../system-config-printer.py:3644 - msgid "Share" - msgstr "共有" - --#: ../system-config-printer.py:3635 -+#: ../system-config-printer.py:3650 - msgid "Comment" - msgstr "コメント" - - #. IPP list columns --#: ../system-config-printer.py:3654 -+#: ../system-config-printer.py:3669 - msgid "Queue" - msgstr "" - --#: ../system-config-printer.py:3668 -+#: ../system-config-printer.py:3683 - #, fuzzy - msgid "" - "PostScript Printer Description files (*.ppd, *.PPD, *.ppd.gz, *.PPD.gz, *." - "PPD.GZ)" - msgstr "PostScript プリンター記述 (*.ppd[.gz])" - --#: ../system-config-printer.py:3677 -+#: ../system-config-printer.py:3692 - msgid "All files (*)" - msgstr "" - --#: ../system-config-printer.py:3713 ../system-config-printer.py:5970 --#: ../system-config-printer.py:6008 ../applet.py:124 -+#: ../system-config-printer.py:3728 ../system-config-printer.py:5918 -+#: ../system-config-printer.py:5956 ../applet.py:124 - #, fuzzy - msgid "Search" - msgstr "プリンターの新規名称" - --#: ../system-config-printer.py:3736 ../system-config-printer.py:3760 --#: ../glade/NewPrinterWindow.glade.h:74 -+#: ../system-config-printer.py:3751 ../system-config-printer.py:3775 -+#: ../glade/NewPrinterWindow.glade.h:73 - msgid "New Printer" - msgstr "新規プリンター" - --#: ../system-config-printer.py:3747 -+#: ../system-config-printer.py:3762 - msgid "New Class" - msgstr "新規クラス" - --#: ../system-config-printer.py:3752 -+#: ../system-config-printer.py:3767 - msgid "Change Device URI" - msgstr "デバイス URI の変更" - --#: ../system-config-printer.py:3758 -+#: ../system-config-printer.py:3773 - msgid "Change Driver" - msgstr "ドライバーの変更" - --#: ../system-config-printer.py:3927 ../system-config-printer.py:3993 --#: ../system-config-printer.py:4289 ../system-config-printer.py:4487 --#: ../system-config-printer.py:5772 ../system-config-printer.py:5995 -+#: ../system-config-printer.py:3942 ../system-config-printer.py:4008 -+#: ../system-config-printer.py:4304 ../system-config-printer.py:4502 -+#: ../system-config-printer.py:5762 ../system-config-printer.py:5943 - msgid "Searching" - msgstr "" - --#: ../system-config-printer.py:3928 -+#: ../system-config-printer.py:3943 - #, fuzzy - msgid "Searching for downloadable drivers" - msgstr "プリンターの新規名称" - --#: ../system-config-printer.py:3994 ../system-config-printer.py:4290 -+#: ../system-config-printer.py:4009 ../system-config-printer.py:4305 - msgid "Searching for drivers" - msgstr "" - --#: ../system-config-printer.py:4488 ../system-config-printer.py:5773 -+#: ../system-config-printer.py:4503 ../system-config-printer.py:5763 - #, fuzzy - msgid "Searching for printers" - msgstr "プリンターの新規名称" - --#: ../system-config-printer.py:4497 -+#: ../system-config-printer.py:4512 - #, fuzzy - msgid "fetching device list" - msgstr "基本サーバー設定" - - #. Tell the user why he needs the plugin --#: ../system-config-printer.py:4579 -+#: ../system-config-printer.py:4594 - msgid "For this printer a proprietary driver plugin from HP is available.\n" - msgstr "" - --#: ../system-config-printer.py:4582 -+#: ../system-config-printer.py:4597 - msgid "" - "The installation of the plugin is required for your printer to work.\n" - "\n" - msgstr "" - --#: ../system-config-printer.py:4585 -+#: ../system-config-printer.py:4600 - msgid "" - "Installing the plugin is optional, it completes or enhances the " - "functionality\n" -@@ -1221,226 +1230,222 @@ msgid "" - "\n" - msgstr "" - --#: ../system-config-printer.py:4589 -+#: ../system-config-printer.py:4604 - msgid "The plugin provides the following features:\n" - msgstr "" - --#: ../system-config-printer.py:4592 -+#: ../system-config-printer.py:4607 - msgid " - Printing support\n" - msgstr "" - --#: ../system-config-printer.py:4595 -+#: ../system-config-printer.py:4610 - msgid " - Faster printing\n" - msgstr "" - --#: ../system-config-printer.py:4598 -+#: ../system-config-printer.py:4613 - msgid " - Better printout quality\n" - msgstr "" - --#: ../system-config-printer.py:4601 -+#: ../system-config-printer.py:4616 - msgid " - Extra printing features\n" - msgstr "" - --#: ../system-config-printer.py:4604 -+#: ../system-config-printer.py:4619 - msgid " - Scanning support\n" - msgstr "" - --#: ../system-config-printer.py:4607 -+#: ../system-config-printer.py:4622 - msgid " - Faster scanning\n" - msgstr "" - --#: ../system-config-printer.py:4610 -+#: ../system-config-printer.py:4625 - msgid " - Better scanning image quality\n" - msgstr "" - --#: ../system-config-printer.py:4613 -+#: ../system-config-printer.py:4628 - msgid " - Faxing support\n" - msgstr "" - --#: ../system-config-printer.py:4616 -+#: ../system-config-printer.py:4631 - msgid " - Extra fax features\n" - msgstr "" - --#: ../system-config-printer.py:4619 -+#: ../system-config-printer.py:4634 - msgid " - Better Input/Output support\n" - msgstr "" - --#: ../system-config-printer.py:4622 -+#: ../system-config-printer.py:4637 - msgid " - Extra user interface features\n" - msgstr "" - --#: ../system-config-printer.py:4625 -+#: ../system-config-printer.py:4640 - msgid " - Other extra features\n" - msgstr "" - --#: ../system-config-printer.py:4630 -+#: ../system-config-printer.py:4645 - #, fuzzy - msgid "Install plugin" - msgstr "インストールできるオプション" - --#: ../system-config-printer.py:4631 -+#: ../system-config-printer.py:4646 - #, fuzzy - msgid "Do not set up printer" - msgstr "プリンターの複製" - --#: ../system-config-printer.py:4632 -+#: ../system-config-printer.py:4647 - msgid "Set up without plugin" - msgstr "" - --#: ../system-config-printer.py:4634 ../troubleshoot/PrintTestPage.py:118 -+#: ../system-config-printer.py:4649 ../troubleshoot/PrintTestPage.py:118 - msgid "Yes" - msgstr "" - --#: ../system-config-printer.py:4635 ../troubleshoot/PrintTestPage.py:119 -+#: ../system-config-printer.py:4650 ../troubleshoot/PrintTestPage.py:119 - msgid "No" - msgstr "" - --#: ../system-config-printer.py:4809 ../system-config-printer.py:4813 -+#: ../system-config-printer.py:4824 ../system-config-printer.py:4828 - msgid " (Current)" - msgstr " (現在の設定)" - --#: ../system-config-printer.py:4845 --msgid "HP Printer (HPLIP)" --msgstr "" -- --#: ../system-config-printer.py:4886 -+#: ../system-config-printer.py:4881 - msgid "Other" - msgstr "その他" - - #. device-info - #. PhysicalDevice obj - #. Separator? --#: ../system-config-printer.py:4902 -+#: ../system-config-printer.py:4897 - #, fuzzy - msgid "Network Printer" - msgstr "新規プリンター" - --#: ../system-config-printer.py:4906 -+#: ../system-config-printer.py:4901 - #, fuzzy - msgid "Find Network Printer" - msgstr "新規プリンター" - --#: ../system-config-printer.py:4979 ../system-config-printer.py:5376 -+#: ../system-config-printer.py:4974 ../system-config-printer.py:5371 - #, fuzzy - msgid "Scanning..." - msgstr "拡大:" - --#: ../system-config-printer.py:5034 ../system-config-printer.py:5798 -+#: ../system-config-printer.py:5029 - #, fuzzy - msgid "No Print Shares" - msgstr "新規プリンター" - --#: ../system-config-printer.py:5035 -+#: ../system-config-printer.py:5030 - msgid "" - "There were no print shares found. Please check that the Samba service is " - "marked as trusted in your firewall configuration." - msgstr "" - --#: ../system-config-printer.py:5296 ../system-config-printer.py:5357 -+#: ../system-config-printer.py:5291 ../system-config-printer.py:5352 - msgid "Print Share Verified" - msgstr "" - --#: ../system-config-printer.py:5297 ../system-config-printer.py:5358 -+#: ../system-config-printer.py:5292 ../system-config-printer.py:5353 - msgid "This print share is accessible." - msgstr "このプリント共有はアクセス可能です。" - --#: ../system-config-printer.py:5302 ../system-config-printer.py:5362 -+#: ../system-config-printer.py:5297 ../system-config-printer.py:5357 - msgid "This print share is not accessible." - msgstr "このプリント共有はアクセスできません。" - --#: ../system-config-printer.py:5305 -+#: ../system-config-printer.py:5300 - #, fuzzy - msgid "Print Share Inaccessible" - msgstr "このプリント共有はアクセス可能です。" - --#: ../system-config-printer.py:5361 -+#: ../system-config-printer.py:5356 - msgid "Inaccessible" - msgstr "アクセス不能" - --#: ../system-config-printer.py:5419 -+#: ../system-config-printer.py:5414 - #, fuzzy, python-format - msgid "It is not possible to obtain a list of queues from '%s'." - msgstr "CUPS サーバーへの接続に問題があります。" - --#: ../system-config-printer.py:5421 -+#: ../system-config-printer.py:5416 - msgid "" - "Obtaining a list of queues is a CUPS extension to IPP. Network printers do " - "not support it." - msgstr "" - --#: ../system-config-printer.py:5424 -+#: ../system-config-printer.py:5419 - msgid "No queues" - msgstr "" - --#: ../system-config-printer.py:5425 -+#: ../system-config-printer.py:5420 - msgid "There are no queues available." - msgstr "" - --#: ../system-config-printer.py:5516 -+#: ../system-config-printer.py:5511 - msgid "Parallel Port" - msgstr "" - --#: ../system-config-printer.py:5518 -+#: ../system-config-printer.py:5513 - #, fuzzy - msgid "Serial Port" - msgstr "シリアル" - --#: ../system-config-printer.py:5520 -+#: ../system-config-printer.py:5515 - #, fuzzy - msgid "USB" - msgstr "SMB" - --#: ../system-config-printer.py:5522 ../system-config-printer.py:5525 -+#: ../system-config-printer.py:5517 ../system-config-printer.py:5520 - msgid "HP Linux Imaging and Printing (HPLIP)" - msgstr "" - --#: ../system-config-printer.py:5527 -+#: ../system-config-printer.py:5522 - #, fuzzy - msgid "Hardware Abstraction Layer (HAL)" - msgstr "HAL (Hardware Abstraction Layer) で検出されたローカルプリンター" - --#: ../system-config-printer.py:5529 -+#: ../system-config-printer.py:5524 - msgid "AppSocket/HP JetDirect" - msgstr "" - --#: ../system-config-printer.py:5538 -+#: ../system-config-printer.py:5533 - #, python-format - msgid "LPD/LPR queue '%s'" - msgstr "" - --#: ../system-config-printer.py:5540 -+#: ../system-config-printer.py:5535 - #, fuzzy - msgid "LPD/LPR queue" - msgstr "LPD" - --#: ../system-config-printer.py:5543 -+#: ../system-config-printer.py:5538 - msgid "Windows Printer via SAMBA" - msgstr "" - --#: ../system-config-printer.py:5545 ../glade/NewPrinterWindow.glade.h:66 -+#: ../system-config-printer.py:5540 ../glade/NewPrinterWindow.glade.h:65 - msgid "IPP" - msgstr "IPP" - --#: ../system-config-printer.py:5547 -+#: ../system-config-printer.py:5542 - msgid "HTTP" - msgstr "" - --#: ../system-config-printer.py:5632 -+#: ../system-config-printer.py:5624 - msgid "A printer connected to the parallel port." - msgstr "パラレルポートに接続されたプリンター" - --#: ../system-config-printer.py:5634 -+#: ../system-config-printer.py:5626 - msgid "A printer connected to a USB port." - msgstr "USB ポートに接続されたプリンター" - --#: ../system-config-printer.py:5636 -+#: ../system-config-printer.py:5628 - msgid "" - "HPLIP software driving a printer, or the printer function of a multi-" - "function device." - msgstr "" - "HPLIP ソフトウェアが動かすプリンター、又はマルチ機能デバイスのプリンター機能" - --#: ../system-config-printer.py:5639 -+#: ../system-config-printer.py:5631 - msgid "" - "HPLIP software driving a fax machine, or the fax function of a multi-" - "function device." -@@ -1448,70 +1453,66 @@ msgstr "" - "HPLIP ソフトウェアが動かすファックスマシン、又はマルチ機能デバイスのファック" - "ス機能" - --#: ../system-config-printer.py:5642 -+#: ../system-config-printer.py:5634 - msgid "Local printer detected by the Hardware Abstraction Layer (HAL)." - msgstr "HAL (Hardware Abstraction Layer) で検出されたローカルプリンター" - --#: ../system-config-printer.py:5799 --msgid "HPLIP cannot find the device." --msgstr "" -- --#: ../system-config-printer.py:5881 -+#: ../system-config-printer.py:5831 - msgid "No printer was found at that address." - msgstr "" - --#: ../system-config-printer.py:6020 -+#: ../system-config-printer.py:5968 - #, fuzzy - msgid "-- Select from search results --" - msgstr "データベースからプリンタードライバーの選択" - --#: ../system-config-printer.py:6022 -+#: ../system-config-printer.py:5970 - msgid "-- No matches found --" - msgstr "" - --#: ../system-config-printer.py:6203 -+#: ../system-config-printer.py:6151 - msgid " (recommended)" - msgstr " (推奨)" - --#: ../system-config-printer.py:6217 -+#: ../system-config-printer.py:6165 - msgid "This PPD is generated by foomatic." - msgstr "この PPD は foomatic で作成されています。" - --#: ../system-config-printer.py:6241 -+#: ../system-config-printer.py:6189 - #, fuzzy - msgid "OpenPrinting" - msgstr "印刷" - --#: ../system-config-printer.py:6252 -+#: ../system-config-printer.py:6200 - msgid "Distributable" - msgstr "" - --#: ../system-config-printer.py:6293 -+#: ../system-config-printer.py:6241 - #, fuzzy - msgid ", " - msgstr " " - --#: ../system-config-printer.py:6298 -+#: ../system-config-printer.py:6246 - #, python-format - msgid "" - "\n" - "(%s)" - msgstr "" - --#: ../system-config-printer.py:6303 -+#: ../system-config-printer.py:6251 - msgid "No support contacts known" - msgstr "" - --#: ../system-config-printer.py:6307 ../system-config-printer.py:6320 -+#: ../system-config-printer.py:6255 ../system-config-printer.py:6268 - msgid "Not specified." - msgstr "" - - #. Foomatic database problem of some sort. --#: ../system-config-printer.py:6360 -+#: ../system-config-printer.py:6308 - msgid "Database error" - msgstr "データベースエラー" - --#: ../system-config-printer.py:6361 -+#: ../system-config-printer.py:6309 - #, python-format - msgid "The '%s' driver cannot be used with printer '%s %s'." - msgstr "'%s' ドライバーはプリンター '%s %s' で使用できません。" -@@ -1519,66 +1520,66 @@ msgstr "'%s' ドライバーはプリン - #. This printer references some XML that is not - #. installed by default. Point the user at the - #. package they need to install. --#: ../system-config-printer.py:6371 -+#: ../system-config-printer.py:6319 - #, python-format - msgid "You will need to install the '%s' package in order to use this driver." - msgstr "" - "このドライバーを使うには '%s' パッケージをインストールする必要があります。" - - #. This error came from trying to open the PPD file. --#: ../system-config-printer.py:6378 -+#: ../system-config-printer.py:6326 - msgid "PPD error" - msgstr "PPD エラー" - --#: ../system-config-printer.py:6380 -+#: ../system-config-printer.py:6328 - msgid "Failed to read PPD file. Possible reason follows:" - msgstr "PPD ファイルの読み込みに失敗しました。次のような理由があります:" - - #. Failed to get PPD downloaded from OpenPrinting XXX --#: ../system-config-printer.py:6397 -+#: ../system-config-printer.py:6345 - msgid "Downloadable drivers" - msgstr "" - --#: ../system-config-printer.py:6398 -+#: ../system-config-printer.py:6346 - msgid "Failed to download PPD." - msgstr "" - --#: ../system-config-printer.py:6405 -+#: ../system-config-printer.py:6353 - #, fuzzy - msgid "fetching PPD" - msgstr "PPD の変更" - --#: ../system-config-printer.py:6434 ../system-config-printer.py:6472 -+#: ../system-config-printer.py:6382 ../system-config-printer.py:6420 - #, fuzzy - msgid "No Installable Options" - msgstr "インストールできるオプション" - --#: ../system-config-printer.py:6520 -+#: ../system-config-printer.py:6468 - #, fuzzy, python-format - msgid "adding printer %s" - msgstr "プリンターの設定" - --#: ../system-config-printer.py:6669 -+#: ../system-config-printer.py:6617 - msgid "Would you like to print a test page?" - msgstr "" - --#: ../system-config-printer.py:6722 -+#: ../system-config-printer.py:6670 - #, fuzzy - msgid "Install driver" - msgstr "ドライバーをさがす" - --#: ../system-config-printer.py:6723 ../troubleshoot/CheckPPDSanity.py:131 -+#: ../system-config-printer.py:6671 ../troubleshoot/CheckPPDSanity.py:131 - #, fuzzy, python-format - msgid "Printer '%s' requires the %s package but it is not currently installed." - msgstr "" - "プリンター '%s' には %s パッケージが必要ですが、現在インストールされていませ" - "ん。このプリンターを使用する前にインストールを行ってください。" - --#: ../system-config-printer.py:6739 -+#: ../system-config-printer.py:6687 - msgid "Missing driver" - msgstr "見つからないドライバー" - --#: ../system-config-printer.py:6740 -+#: ../system-config-printer.py:6688 - #, python-format - msgid "" - "Printer '%s' requires the '%s' program but it is not currently installed. " -@@ -1707,132 +1708,127 @@ msgstr "デバイス URI の入力HP Printer (HPLIP) via network" --msgstr "プリンター名" -- --#: ../glade/NewPrinterWindow.glade.h:6 --#, fuzzy - msgid "IPP Printer" - msgstr "SMB プリンター" - --#: ../glade/NewPrinterWindow.glade.h:7 -+#: ../glade/NewPrinterWindow.glade.h:6 - #, fuzzy - msgid "License Terms" - msgstr "プリンター名" - --#: ../glade/NewPrinterWindow.glade.h:8 -+#: ../glade/NewPrinterWindow.glade.h:7 - msgid "Location of the LPD network printer" - msgstr "LPD ネットワークプリンターの場所" - --#: ../glade/NewPrinterWindow.glade.h:9 -+#: ../glade/NewPrinterWindow.glade.h:8 - msgid "Location of the network printer" - msgstr "ネットワークプリンターの場所" - --#: ../glade/NewPrinterWindow.glade.h:10 -+#: ../glade/NewPrinterWindow.glade.h:9 - msgid "Location (optional)" - msgstr "場所 (オプション)" - --#: ../glade/NewPrinterWindow.glade.h:11 -+#: ../glade/NewPrinterWindow.glade.h:10 - #, fuzzy - msgid "Network Printer" - msgstr "新規プリンター" - --#: ../glade/NewPrinterWindow.glade.h:12 -+#: ../glade/NewPrinterWindow.glade.h:11 - #, fuzzy - msgid "Note" - msgstr "状態" - --#: ../glade/NewPrinterWindow.glade.h:13 -+#: ../glade/NewPrinterWindow.glade.h:12 - #, fuzzy - msgid "Output Quality" - msgstr "状態" - --#: ../glade/NewPrinterWindow.glade.h:14 -+#: ../glade/NewPrinterWindow.glade.h:13 - msgid "Printer Name" - msgstr "プリンター名" - --#: ../glade/NewPrinterWindow.glade.h:15 -+#: ../glade/NewPrinterWindow.glade.h:14 - msgid "SMB Printer" - msgstr "SMB プリンター" - --#: ../glade/NewPrinterWindow.glade.h:16 -+#: ../glade/NewPrinterWindow.glade.h:15 - #, fuzzy - msgid "Select Driver" - msgstr "デフォルトのプリンター" - --#: ../glade/NewPrinterWindow.glade.h:17 -+#: ../glade/NewPrinterWindow.glade.h:16 - msgid "Settings of the serial port" - msgstr "シリアルポートの設定" - --#: ../glade/NewPrinterWindow.glade.h:18 -+#: ../glade/NewPrinterWindow.glade.h:17 - msgid "smb://[workgroup/]server[:port]/printer" - msgstr "smb://[workgroup/]server[:port]/printer" - --#: ../glade/NewPrinterWindow.glade.h:19 -+#: ../glade/NewPrinterWindow.glade.h:18 - #, fuzzy - msgid "Choose Class Members" - msgstr "" - "パスワードが必要です\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:20 -+#: ../glade/NewPrinterWindow.glade.h:19 - #, fuzzy - msgid "Choose Driver" - msgstr "" - "パスワードが必要です\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:21 -+#: ../glade/NewPrinterWindow.glade.h:20 - #, fuzzy - msgid "Describe Printer" - msgstr "" - "パスワードが必要です\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:22 -+#: ../glade/NewPrinterWindow.glade.h:21 - #, fuzzy - msgid "Existing Settings" - msgstr "" - "パスワードが必要です\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:23 -+#: ../glade/NewPrinterWindow.glade.h:22 - #, fuzzy - msgid "Installable Options" - msgstr "" - "パスワードが必要です\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:24 -+#: ../glade/NewPrinterWindow.glade.h:23 - #, fuzzy - msgid "Select Device" - msgstr "" - "パスワードが必要です\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:25 -+#: ../glade/NewPrinterWindow.glade.h:24 - msgid "Baud Rate" - msgstr "通信速度" - --#: ../glade/NewPrinterWindow.glade.h:26 -+#: ../glade/NewPrinterWindow.glade.h:25 - msgid "Browse..." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:27 -+#: ../glade/NewPrinterWindow.glade.h:26 - #, fuzzy - msgid "Comments..." - msgstr "コメント" - --#: ../glade/NewPrinterWindow.glade.h:28 -+#: ../glade/NewPrinterWindow.glade.h:27 - #, fuzzy - msgid "Connection" - msgstr "接続中" - --#: ../glade/NewPrinterWindow.glade.h:29 -+#: ../glade/NewPrinterWindow.glade.h:28 - msgid "Data Bits" - msgstr "データビット" - --#: ../glade/NewPrinterWindow.glade.h:30 -+#: ../glade/NewPrinterWindow.glade.h:29 - msgid "" - "Default\n" - "1200\n" -@@ -1854,7 +1850,7 @@ msgstr "" - "57600\n" - "115200" - --#: ../glade/NewPrinterWindow.glade.h:39 -+#: ../glade/NewPrinterWindow.glade.h:38 - msgid "" - "Default\n" - "8\n" -@@ -1864,7 +1860,7 @@ msgstr "" - "8\n" - "7" - --#: ../glade/NewPrinterWindow.glade.h:42 -+#: ../glade/NewPrinterWindow.glade.h:41 - msgid "" - "Default\n" - "None\n" -@@ -1876,7 +1872,7 @@ msgstr "" - "奇数\n" - "偶数" - --#: ../glade/NewPrinterWindow.glade.h:46 -+#: ../glade/NewPrinterWindow.glade.h:45 - msgid "" - "Default\n" - "None\n" -@@ -1890,120 +1886,120 @@ msgstr "" - "RTS/CTS (ハードウェア)\n" - "DTR/DSR (ハードウェア)" - --#: ../glade/NewPrinterWindow.glade.h:51 -+#: ../glade/NewPrinterWindow.glade.h:50 - #: ../glade/PrinterPropertiesDialog.glade.h:35 - msgid "Description:" - msgstr "説明:" - --#: ../glade/NewPrinterWindow.glade.h:52 ../troubleshoot/DeviceListed.py:40 -+#: ../glade/NewPrinterWindow.glade.h:51 ../troubleshoot/DeviceListed.py:40 - msgid "Device URI" - msgstr "デバイス URI" - --#: ../glade/NewPrinterWindow.glade.h:53 -+#: ../glade/NewPrinterWindow.glade.h:52 - msgid "Device description." - msgstr "デバイスの説明" - --#: ../glade/NewPrinterWindow.glade.h:54 -+#: ../glade/NewPrinterWindow.glade.h:53 - msgid "DirectJet" - msgstr "DirectJet" - --#: ../glade/NewPrinterWindow.glade.h:56 -+#: ../glade/NewPrinterWindow.glade.h:55 - #, fuzzy - msgid "Driver details" - msgstr "ドライバー" - --#: ../glade/NewPrinterWindow.glade.h:57 -+#: ../glade/NewPrinterWindow.glade.h:56 - msgid "Empty" - msgstr "空" - --#: ../glade/NewPrinterWindow.glade.h:58 -+#: ../glade/NewPrinterWindow.glade.h:57 - msgid "Find _Queue..." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:59 -+#: ../glade/NewPrinterWindow.glade.h:58 - msgid "Flow Control" - msgstr "フロー制御" - --#: ../glade/NewPrinterWindow.glade.h:60 -+#: ../glade/NewPrinterWindow.glade.h:59 - msgid "" - "For the printer you have selected there are drivers available for download." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:61 -+#: ../glade/NewPrinterWindow.glade.h:60 - msgid "Free software" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:62 -+#: ../glade/NewPrinterWindow.glade.h:61 - msgid "Graphics:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:63 -+#: ../glade/NewPrinterWindow.glade.h:62 - #, fuzzy - msgid "Host:" - msgstr "ホスト名" - --#: ../glade/NewPrinterWindow.glade.h:64 -+#: ../glade/NewPrinterWindow.glade.h:63 - msgid "Human-readable description such as \"HP LaserJet with Duplexer\"" - msgstr "\"HP LaserJet with Duplexer\" などのようにわかりやすい説明" - --#: ../glade/NewPrinterWindow.glade.h:65 -+#: ../glade/NewPrinterWindow.glade.h:64 - msgid "Human-readable location such as \"Lab 1\"" - msgstr "\"1 研\" などのようにわかりやすい場所" - --#: ../glade/NewPrinterWindow.glade.h:67 -+#: ../glade/NewPrinterWindow.glade.h:66 - msgid "LPD" - msgstr "LPD" - --#: ../glade/NewPrinterWindow.glade.h:68 -+#: ../glade/NewPrinterWindow.glade.h:67 - msgid "License:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:69 -+#: ../glade/NewPrinterWindow.glade.h:68 - #, fuzzy - msgid "Line art:" - msgstr "プリンター状態:" - --#: ../glade/NewPrinterWindow.glade.h:70 -+#: ../glade/NewPrinterWindow.glade.h:69 - #, fuzzy - msgid "Local Driver" - msgstr "ローカルプリンター" - --#: ../glade/NewPrinterWindow.glade.h:71 -+#: ../glade/NewPrinterWindow.glade.h:70 - #, fuzzy - msgid "Make and model:" - msgstr "製造元とモデル:" - --#: ../glade/NewPrinterWindow.glade.h:72 -+#: ../glade/NewPrinterWindow.glade.h:71 - msgid "Manufacturer" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:73 -+#: ../glade/NewPrinterWindow.glade.h:72 - #, fuzzy - msgid "Network" - msgstr "新規プリンター" - --#: ../glade/NewPrinterWindow.glade.h:75 -+#: ../glade/NewPrinterWindow.glade.h:74 - msgid "No, I do not accept this license" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:76 -+#: ../glade/NewPrinterWindow.glade.h:75 - msgid "Parity" - msgstr "パリティ" - --#: ../glade/NewPrinterWindow.glade.h:78 -+#: ../glade/NewPrinterWindow.glade.h:77 - msgid "Patented algorithms" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:79 -+#: ../glade/NewPrinterWindow.glade.h:78 - msgid "Photo:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:80 -+#: ../glade/NewPrinterWindow.glade.h:79 - #, fuzzy - msgid "Port number:" - msgstr "ポート番号" - --#: ../glade/NewPrinterWindow.glade.h:81 -+#: ../glade/NewPrinterWindow.glade.h:80 - #, fuzzy - msgid "" - "PostScript Printer Description (PPD) files can often be found on the driver " -@@ -2014,82 +2010,82 @@ msgstr "" - "イバーディスクに入っていることがよくあります。 PostScript プリンターの場合、 " - "Windows® ドライバーの一部となっていることがよくあります。" - --#: ../glade/NewPrinterWindow.glade.h:82 -+#: ../glade/NewPrinterWindow.glade.h:81 - #, fuzzy - msgid "Printer model:" - msgstr "追加したプリンター" - --#: ../glade/NewPrinterWindow.glade.h:83 -+#: ../glade/NewPrinterWindow.glade.h:82 - msgid "Probe" - msgstr "プローブ" - --#: ../glade/NewPrinterWindow.glade.h:84 -+#: ../glade/NewPrinterWindow.glade.h:83 - #, fuzzy - msgid "Prompt user if authentication is required" - msgstr "認証" - --#: ../glade/NewPrinterWindow.glade.h:85 -+#: ../glade/NewPrinterWindow.glade.h:84 - #, fuzzy - msgid "Provide PPD file" - msgstr "PPD ファイルを提供する" - --#: ../glade/NewPrinterWindow.glade.h:86 -+#: ../glade/NewPrinterWindow.glade.h:85 - msgid "Queue:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:87 -+#: ../glade/NewPrinterWindow.glade.h:86 - msgid "SCSI" - msgstr "SCSI" - --#: ../glade/NewPrinterWindow.glade.h:88 -+#: ../glade/NewPrinterWindow.glade.h:87 - msgid "SMB" - msgstr "SMB" - --#: ../glade/NewPrinterWindow.glade.h:89 -+#: ../glade/NewPrinterWindow.glade.h:88 - msgid "Search for a printer driver to download" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:90 -+#: ../glade/NewPrinterWindow.glade.h:89 - #, fuzzy - msgid "Searching..." - msgstr "拡大:" - --#: ../glade/NewPrinterWindow.glade.h:91 -+#: ../glade/NewPrinterWindow.glade.h:90 - msgid "Select A File" - msgstr "ファイルをひとつ選択する" - --#: ../glade/NewPrinterWindow.glade.h:92 -+#: ../glade/NewPrinterWindow.glade.h:91 - #, fuzzy - msgid "Select printer from database" - msgstr "データベースからプリンタードライバーの選択" - --#: ../glade/NewPrinterWindow.glade.h:93 -+#: ../glade/NewPrinterWindow.glade.h:92 - msgid "Serial" - msgstr "シリアル" - --#: ../glade/NewPrinterWindow.glade.h:94 -+#: ../glade/NewPrinterWindow.glade.h:93 - #, fuzzy - msgid "Set authentication details now" - msgstr "認証" - --#: ../glade/NewPrinterWindow.glade.h:95 -+#: ../glade/NewPrinterWindow.glade.h:94 - msgid "Short name for this printer such as \"laserjet\"" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:96 -+#: ../glade/NewPrinterWindow.glade.h:95 - msgid "Supplier:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:97 -+#: ../glade/NewPrinterWindow.glade.h:96 - msgid "Support:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:98 -+#: ../glade/NewPrinterWindow.glade.h:97 - #, fuzzy - msgid "Text:" - msgstr "リセット" - --#: ../glade/NewPrinterWindow.glade.h:99 -+#: ../glade/NewPrinterWindow.glade.h:98 - msgid "" - "The foomatic printer database contains various manufacturer provided " - "PostScript Printer Description (PPD) files and also can generate PPD files " -@@ -2102,20 +2098,20 @@ msgstr "" - "用 PPD ファイルを生成することもできます。 ただし、一般的には製造元が提供する " - "PPD ファイルの方がプリンターの特定機能に対してはよい手段を提供します。" - --#: ../glade/NewPrinterWindow.glade.h:100 -+#: ../glade/NewPrinterWindow.glade.h:99 - msgid "" - "These drivers do not come from your operating system supplier and will not " - "be covered by their commercial support. See the support and license terms " - "of the driver's supplier." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:101 -+#: ../glade/NewPrinterWindow.glade.h:100 - msgid "" - "This driver supports additional hardware that may be installed in the " - "printer." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:102 -+#: ../glade/NewPrinterWindow.glade.h:101 - msgid "" - "This is done by assuming that options with the same name do have the same " - "meaning. Settings of options that are not present in the new PPD will be " -@@ -2125,7 +2121,7 @@ msgstr "" - "い PPD にないオプション設定は失われ、新しい PPD にあるオプションのみがデフォ" - "ルトに設定されます。" - --#: ../glade/NewPrinterWindow.glade.h:103 -+#: ../glade/NewPrinterWindow.glade.h:102 - msgid "" - "This way all current option settings will be lost. The default settings of " - "the new PPD will be used. " -@@ -2133,43 +2129,43 @@ msgstr "" - "このようにして現在のすべてのオプション設定は失われることになり、 新しい PPD " - "のデフォルト設定が使用されるようになります。" - --#: ../glade/NewPrinterWindow.glade.h:104 -+#: ../glade/NewPrinterWindow.glade.h:103 - msgid "Try to copy the option settings over from the old PPD. " - msgstr "古い PPD からオプション設定をコピーしようとしています。" - --#: ../glade/NewPrinterWindow.glade.h:105 -+#: ../glade/NewPrinterWindow.glade.h:104 - msgid "URI:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:107 -+#: ../glade/NewPrinterWindow.glade.h:106 - msgid "Use the new PPD (Postscript Printer Description) as is." - msgstr "新しい PPD (Postscript Printer Description) のままで使用します。" - --#: ../glade/NewPrinterWindow.glade.h:109 -+#: ../glade/NewPrinterWindow.glade.h:108 - msgid "" - "With this choice no driver download will be performed. In the next steps a " - "locally installed driver will be selected." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:110 -+#: ../glade/NewPrinterWindow.glade.h:109 - #, fuzzy - msgid "Yes, I accept this license" - msgstr "依頼の受け入れ中" - --#: ../glade/NewPrinterWindow.glade.h:111 -+#: ../glade/NewPrinterWindow.glade.h:110 - msgid "_Search" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:112 -+#: ../glade/NewPrinterWindow.glade.h:111 - msgid "_Verify..." - msgstr "確認(_V)..." - --#: ../glade/NewPrinterWindow.glade.h:113 -+#: ../glade/NewPrinterWindow.glade.h:112 - #: ../glade/PrinterPropertiesDialog.glade.h:128 - msgid "move left" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:114 -+#: ../glade/NewPrinterWindow.glade.h:113 - #: ../glade/PrinterPropertiesDialog.glade.h:129 - #, fuzzy - msgid "move right" -@@ -3115,7 +3111,7 @@ msgstr "" - msgid "Remember to load paper of type '%s' into the printer first." - msgstr "" - --#: ../troubleshoot/PrintTestPage.py:399 -+#: ../troubleshoot/PrintTestPage.py:416 - msgid "Error submitting test page" - msgstr "" - -@@ -3308,6 +3304,10 @@ msgid "Select default printer" - msgstr "デフォルトのプリンターを選択する" - - #, fuzzy -+#~ msgid "HP Printer (HPLIP) via network" -+#~ msgstr "プリンター名" -+ -+#, fuzzy - #~ msgid "Not Found" - #~ msgstr "見つかりませんでした" - -diff -up system-config-printer-1.1.5/po/ka.po.git-1.1.x system-config-printer-1.1.5/po/ka.po ---- system-config-printer-1.1.5/po/ka.po.git-1.1.x 2009-03-03 22:21:46.000000000 +0000 -+++ system-config-printer-1.1.5/po/ka.po 2009-03-10 17:43:31.000000000 +0000 -@@ -7,7 +7,7 @@ msgid "" - msgstr "" - "Project-Id-Version: package\n" - "Report-Msgid-Bugs-To: https://bugzilla.redhat.com/bugzilla\n" --"POT-Creation-Date: 2009-03-02 23:22+0000\n" -+"POT-Creation-Date: 2009-03-10 16:51+0000\n" - "PO-Revision-Date: 2003-05-27 18:37+0100\n" - "Last-Translator: Automatically generated\n" - "Language-Team: none\n" -@@ -49,11 +49,11 @@ msgstr "" - msgid "Enter IP address" - msgstr "" - --#: ../authconn.py:35 ../glade/NewPrinterWindow.glade.h:108 -+#: ../authconn.py:35 ../glade/NewPrinterWindow.glade.h:107 - msgid "Username:" - msgstr "" - --#: ../authconn.py:36 ../glade/NewPrinterWindow.glade.h:77 -+#: ../authconn.py:36 ../glade/NewPrinterWindow.glade.h:76 - msgid "Password:" - msgstr "" - -@@ -61,7 +61,7 @@ msgstr "" - msgid "Domain:" - msgstr "" - --#: ../authconn.py:46 -+#: ../authconn.py:46 ../authconn.py:409 - msgid "Authentication" - msgstr "" - -@@ -69,43 +69,52 @@ msgstr "" - msgid "Remember password" - msgstr "" - --#: ../authconn.py:211 ../authconn.py:232 -+#: ../authconn.py:208 -+#, python-format -+msgid "Unauthorized request (%s)" -+msgstr "" -+ -+#: ../authconn.py:209 -+msgid "You are not authorized to carry out therequested action." -+msgstr "" -+ -+#: ../authconn.py:212 ../authconn.py:233 - msgid "Operation canceled" - msgstr "" - --#: ../authconn.py:253 -+#: ../authconn.py:250 - #, python-format - msgid "CUPS server error (%s)" - msgstr "" - --#: ../authconn.py:255 ../errordialogs.py:57 --#: ../troubleshoot/PrintTestPage.py:400 -+#: ../authconn.py:252 ../errordialogs.py:56 ../errordialogs.py:70 -+msgid "CUPS server error" -+msgstr "" -+ -+#: ../authconn.py:261 ../errordialogs.py:57 -+#: ../troubleshoot/PrintTestPage.py:417 - #, python-format - msgid "There was an error during the CUPS operation: '%s'." - msgstr "" - --#: ../authconn.py:258 -+#: ../authconn.py:264 - msgid "Retry" - msgstr "" - --#: ../authconn.py:379 ../authconn.py:381 ../errordialogs.py:65 ../pysmb.py:75 -+#: ../authconn.py:385 ../authconn.py:387 ../errordialogs.py:65 ../pysmb.py:75 - #: ../pysmb.py:77 - msgid "Not authorized" - msgstr "" - --#: ../authconn.py:382 ../pysmb.py:78 -+#: ../authconn.py:388 ../pysmb.py:78 - msgid "The password may be incorrect." - msgstr "" - --#: ../authconn.py:400 -+#: ../authconn.py:407 - #, python-format - msgid "Authentication (%s)" - msgstr "" - --#: ../errordialogs.py:56 ../errordialogs.py:70 --msgid "CUPS server error" --msgstr "" -- - #: ../errordialogs.py:66 - msgid "" - "The password may be incorrect, or the server may be configured to deny " -@@ -132,7 +141,7 @@ msgstr "" - msgid "Server error" - msgstr "" - --#: ../errordialogs.py:82 ../system-config-printer.py:1219 -+#: ../errordialogs.py:82 ../system-config-printer.py:1223 - msgid "Not connected" - msgstr "" - -@@ -154,7 +163,7 @@ msgstr "" - msgid "_New Group from Selection" - msgstr "" - --#: ../GroupsPane.py:98 ../system-config-printer.py:393 -+#: ../GroupsPane.py:98 ../system-config-printer.py:397 - msgid "_Rename" - msgstr "" - -@@ -219,7 +228,7 @@ msgid "Document" - msgstr "" - - #: ../jobviewer.py:212 ../my-default-printer.py:153 --#: ../system-config-printer.py:366 ../system-config-printer.py:1367 -+#: ../system-config-printer.py:370 ../system-config-printer.py:1371 - #: ../troubleshoot/PrintTestPage.py:84 - msgid "Printer" - msgstr "" -@@ -256,8 +265,8 @@ msgstr "" - - #: ../jobviewer.py:386 ../jobviewer.py:451 ../jobviewer.py:452 - #: ../jobviewer.py:492 ../jobviewer.py:600 ../jobviewer.py:727 --#: ../jobviewer.py:1196 ../jobviewer.py:1222 ../system-config-printer.py:2546 --#: ../glade/NewPrinterWindow.glade.h:106 -+#: ../jobviewer.py:1196 ../jobviewer.py:1222 ../system-config-printer.py:2556 -+#: ../glade/NewPrinterWindow.glade.h:105 - #: ../troubleshoot/ChooseNetworkPrinter.py:101 - #: ../troubleshoot/ChooseNetworkPrinter.py:102 - #: ../troubleshoot/ChooseNetworkPrinter.py:105 -@@ -345,12 +354,12 @@ msgstr "" - msgid "Pending" - msgstr "" - --#: ../jobviewer.py:591 ../system-config-printer.py:186 -+#: ../jobviewer.py:591 ../system-config-printer.py:190 - #: ../troubleshoot/PrintTestPage.py:43 - msgid "Processing" - msgstr "" - --#: ../jobviewer.py:592 ../system-config-printer.py:188 -+#: ../jobviewer.py:592 ../system-config-printer.py:192 - #: ../troubleshoot/PrintTestPage.py:44 - msgid "Stopped" - msgstr "" -@@ -460,8 +469,8 @@ msgstr "" - msgid "_Set Default" - msgstr "" - --#: ../my-default-printer.py:158 ../system-config-printer.py:423 --#: ../system-config-printer.py:3660 ../troubleshoot/ChooseNetworkPrinter.py:37 -+#: ../my-default-printer.py:158 ../system-config-printer.py:427 -+#: ../system-config-printer.py:3675 ../troubleshoot/ChooseNetworkPrinter.py:37 - #: ../troubleshoot/ChoosePrinter.py:38 - msgid "Location" - msgstr "" -@@ -490,7 +499,7 @@ msgstr "" - msgid "Authenticated" - msgstr "" - --#: ../ppdippstr.py:50 ../system-config-printer.py:6259 -+#: ../ppdippstr.py:50 ../system-config-printer.py:6207 - msgid "None" - msgstr "" - -@@ -703,201 +712,201 @@ msgstr "" - msgid "1200 dpi, photo, black + color cartridge, photo paper" - msgstr "" - --#: ../system-config-printer.py:127 -+#: ../system-config-printer.py:131 - msgid "To do this, select System->Administration->Firewall from the main menu." - msgstr "" - --#: ../system-config-printer.py:185 -+#: ../system-config-printer.py:189 - msgid "Idle" - msgstr "" - --#: ../system-config-printer.py:187 -+#: ../system-config-printer.py:191 - msgid "Busy" - msgstr "" - --#: ../system-config-printer.py:372 ../system-config-printer.py:1373 -+#: ../system-config-printer.py:376 ../system-config-printer.py:1377 - msgid "Class" - msgstr "" - --#: ../system-config-printer.py:399 -+#: ../system-config-printer.py:403 - msgid "Set As De_fault" - msgstr "" - --#: ../system-config-printer.py:403 -+#: ../system-config-printer.py:407 - msgid "_Create class" - msgstr "" - --#: ../system-config-printer.py:405 -+#: ../system-config-printer.py:409 - msgid "View Print _Queue" - msgstr "" - --#: ../system-config-printer.py:407 -+#: ../system-config-printer.py:411 - msgid "_Add to Group" - msgstr "" - --#: ../system-config-printer.py:409 -+#: ../system-config-printer.py:413 - msgid "Save Results as _Group" - msgstr "" - --#: ../system-config-printer.py:411 -+#: ../system-config-printer.py:415 - msgid "Save Filter as _Search Group" - msgstr "" - --#: ../system-config-printer.py:415 -+#: ../system-config-printer.py:419 - msgid "E_nabled" - msgstr "" - --#: ../system-config-printer.py:417 -+#: ../system-config-printer.py:421 - msgid "_Shared" - msgstr "" - --#: ../system-config-printer.py:421 ../troubleshoot/ChooseNetworkPrinter.py:35 -+#: ../system-config-printer.py:425 ../troubleshoot/ChooseNetworkPrinter.py:35 - #: ../troubleshoot/ChoosePrinter.py:36 ../troubleshoot/DeviceListed.py:36 - msgid "Name" - msgstr "" - --#: ../system-config-printer.py:422 -+#: ../system-config-printer.py:426 - msgid "Description" - msgstr "" - --#: ../system-config-printer.py:424 -+#: ../system-config-printer.py:428 - msgid "Manufacturer / Model" - msgstr "" - - #. Printer state reasons list --#: ../system-config-printer.py:499 -+#: ../system-config-printer.py:503 - msgid "Message" - msgstr "" - --#: ../system-config-printer.py:534 -+#: ../system-config-printer.py:538 - msgid "Problems?" - msgstr "" - --#: ../system-config-printer.py:637 ../system-config-printer.py:639 -+#: ../system-config-printer.py:641 ../system-config-printer.py:643 - msgid "Members of this class" - msgstr "" - --#: ../system-config-printer.py:638 ../system-config-printer.py:640 -+#: ../system-config-printer.py:642 ../system-config-printer.py:644 - msgid "Others" - msgstr "" - --#: ../system-config-printer.py:641 -+#: ../system-config-printer.py:645 - msgid "Devices" - msgstr "" - --#: ../system-config-printer.py:642 -+#: ../system-config-printer.py:646 - msgid "Connections" - msgstr "" - --#: ../system-config-printer.py:643 -+#: ../system-config-printer.py:647 - msgid "Makes" - msgstr "" - --#: ../system-config-printer.py:644 -+#: ../system-config-printer.py:648 - msgid "Models" - msgstr "" - --#: ../system-config-printer.py:645 -+#: ../system-config-printer.py:649 - msgid "Drivers" - msgstr "" - --#: ../system-config-printer.py:646 ../glade/NewPrinterWindow.glade.h:55 -+#: ../system-config-printer.py:650 ../glade/NewPrinterWindow.glade.h:54 - msgid "Downloadable Drivers" - msgstr "" - --#: ../system-config-printer.py:647 -+#: ../system-config-printer.py:651 - msgid "Users" - msgstr "" - --#: ../system-config-printer.py:682 -+#: ../system-config-printer.py:686 - msgid "Automatic rotation" - msgstr "" - --#: ../system-config-printer.py:989 -+#: ../system-config-printer.py:993 - #, python-format - msgid "Printer Properties - '%s' on %s" - msgstr "" - - #. The Conflict button was pressed. --#: ../system-config-printer.py:996 -+#: ../system-config-printer.py:1000 - msgid "" - "There are conflicting options.\n" - "Changes can only be applied after\n" - "these conflicts are resolved." - msgstr "" - --#: ../system-config-printer.py:1214 -+#: ../system-config-printer.py:1218 - #, python-format - msgid "Printer configuration - %s" - msgstr "" - --#: ../system-config-printer.py:1217 -+#: ../system-config-printer.py:1221 - #, python-format - msgid "Connected to %s" - msgstr "" - - #. Update our copy of the printer's settings. --#: ../system-config-printer.py:1257 ../system-config-printer.py:2042 -+#: ../system-config-printer.py:1261 ../system-config-printer.py:2046 - msgid "obtaining queue details" - msgstr "" - --#: ../system-config-printer.py:1295 -+#: ../system-config-printer.py:1299 - msgid "Remove from Group" - msgstr "" - --#: ../system-config-printer.py:1361 -+#: ../system-config-printer.py:1365 - msgid "Network printer (discovered)" - msgstr "" - --#: ../system-config-printer.py:1364 -+#: ../system-config-printer.py:1368 - msgid "Network class (discovered)" - msgstr "" - --#: ../system-config-printer.py:1370 ../system-config-printer.py:5524 --#: ../system-config-printer.py:5594 ../system-config-printer.py:5596 -+#: ../system-config-printer.py:1374 ../system-config-printer.py:5519 -+#: ../system-config-printer.py:5589 ../system-config-printer.py:5591 - msgid "Fax" - msgstr "" - --#: ../system-config-printer.py:1376 ../system-config-printer.py:1382 -+#: ../system-config-printer.py:1380 ../system-config-printer.py:1386 - #: ../troubleshoot/LocalOrRemote.py:30 - msgid "Network printer" - msgstr "" - --#: ../system-config-printer.py:1379 -+#: ../system-config-printer.py:1383 - msgid "Network print share" - msgstr "" - --#: ../system-config-printer.py:1508 ../glade/ConnectingDialog.glade.h:2 -+#: ../system-config-printer.py:1512 ../glade/ConnectingDialog.glade.h:2 - #, no-c-format, python-format - msgid "Opening connection to %s" - msgstr "" - --#: ../system-config-printer.py:1887 -+#: ../system-config-printer.py:1891 - msgid "Installable Options" - msgstr "" - --#: ../system-config-printer.py:1888 -+#: ../system-config-printer.py:1892 - #: ../glade/PrinterPropertiesDialog.glade.h:109 - msgid "Printer Options" - msgstr "" - --#: ../system-config-printer.py:1924 -+#: ../system-config-printer.py:1928 - #, python-format - msgid "modifying class %s" - msgstr "" - --#: ../system-config-printer.py:1926 ../system-config-printer.py:3019 --#: ../system-config-printer.py:3044 ../system-config-printer.py:6547 --#: ../system-config-printer.py:6559 ../system-config-printer.py:6581 -+#: ../system-config-printer.py:1930 ../system-config-printer.py:3037 -+#: ../system-config-printer.py:3062 ../system-config-printer.py:6495 -+#: ../system-config-printer.py:6507 ../system-config-printer.py:6529 - #, python-format - msgid "modifying printer %s" - msgstr "" - --#: ../system-config-printer.py:1941 -+#: ../system-config-printer.py:1945 - msgid "This will delete this class!" - msgstr "" - --#: ../system-config-printer.py:1942 -+#: ../system-config-printer.py:1946 - msgid "Proceed anyway?" - msgstr "" - -@@ -905,63 +914,63 @@ msgstr "" - #. but we have never fetched the server settings to see whether - #. the server is publishing shared printers. Fetch the settings - #. now so that we can update the "not published" label if necessary. --#: ../system-config-printer.py:2030 ../system-config-printer.py:3203 -+#: ../system-config-printer.py:2034 ../system-config-printer.py:3221 - msgid "fetching server settings" - msgstr "" - --#: ../system-config-printer.py:2100 -+#: ../system-config-printer.py:2104 - msgid "Set Default Printer" - msgstr "" - --#: ../system-config-printer.py:2102 -+#: ../system-config-printer.py:2106 - msgid "Do you want to set this as the system-wide default printer?" - msgstr "" - --#: ../system-config-printer.py:2104 -+#: ../system-config-printer.py:2108 - msgid "Set as the _system-wide default printer" - msgstr "" - --#: ../system-config-printer.py:2106 -+#: ../system-config-printer.py:2110 - msgid "_Clear my personal default setting" - msgstr "" - --#: ../system-config-printer.py:2107 -+#: ../system-config-printer.py:2111 - msgid "Set as my _personal default printer" - msgstr "" - --#: ../system-config-printer.py:2112 -+#: ../system-config-printer.py:2116 - msgid "setting default printer" - msgstr "" - --#: ../system-config-printer.py:2169 -+#: ../system-config-printer.py:2173 - msgid "printing test page" - msgstr "" - --#: ../system-config-printer.py:2182 ../system-config-printer.py:2217 --#: ../system-config-printer.py:5418 -+#: ../system-config-printer.py:2186 ../system-config-printer.py:2221 -+#: ../system-config-printer.py:5413 - msgid "Not possible" - msgstr "" - --#: ../system-config-printer.py:2183 ../system-config-printer.py:2218 -+#: ../system-config-printer.py:2187 ../system-config-printer.py:2222 - msgid "" - "The remote server did not accept the print job, most likely because the " - "printer is not shared." - msgstr "" - --#: ../system-config-printer.py:2195 ../system-config-printer.py:2210 -+#: ../system-config-printer.py:2199 ../system-config-printer.py:2214 - msgid "Submitted" - msgstr "" - --#: ../system-config-printer.py:2196 -+#: ../system-config-printer.py:2200 - #, python-format - msgid "Test page submitted as job %d" - msgstr "" - --#: ../system-config-printer.py:2203 -+#: ../system-config-printer.py:2207 - msgid "sending maintenance command" - msgstr "" - --#: ../system-config-printer.py:2211 -+#: ../system-config-printer.py:2215 - #, python-format - msgid "Maintenance command submitted as job %d" - msgstr "" -@@ -969,71 +978,71 @@ msgstr "" - #. The underlying cupsGetPPD2() function returned NULL without - #. setting an IPP error, so it'll be something like a failed - #. connection. --#: ../system-config-printer.py:2285 ../system-config-printer.py:2381 -+#: ../system-config-printer.py:2289 ../system-config-printer.py:2385 - msgid "Error" - msgstr "" - --#: ../system-config-printer.py:2286 -+#: ../system-config-printer.py:2290 - msgid "There was a problem connecting to the CUPS server." - msgstr "" - --#: ../system-config-printer.py:2382 -+#: ../system-config-printer.py:2386 - #, python-format - msgid "Option '%s' has value '%s' and cannot be edited." - msgstr "" - --#: ../system-config-printer.py:2466 -+#: ../system-config-printer.py:2476 - msgid "Marker levels are not reported for this printer." - msgstr "" - --#: ../system-config-printer.py:2763 -+#: ../system-config-printer.py:2773 - msgid "Cannot Rename" - msgstr "" - --#: ../system-config-printer.py:2764 -+#: ../system-config-printer.py:2774 - msgid "There are queued jobs." - msgstr "" - --#: ../system-config-printer.py:2822 -+#: ../system-config-printer.py:2840 - msgid "renaming printer" - msgstr "" - - #. for classes make sure all members - #. will get added --#: ../system-config-printer.py:2907 -+#: ../system-config-printer.py:2925 - msgid "copying printer" - msgstr "" - --#: ../system-config-printer.py:2971 -+#: ../system-config-printer.py:2989 - #, python-format - msgid "Really delete class '%s'?" - msgstr "" - --#: ../system-config-printer.py:2973 -+#: ../system-config-printer.py:2991 - #, python-format - msgid "Really delete printer '%s'?" - msgstr "" - --#: ../system-config-printer.py:2975 -+#: ../system-config-printer.py:2993 - msgid "Really delete selected destinations?" - msgstr "" - --#: ../system-config-printer.py:2996 -+#: ../system-config-printer.py:3014 - #, python-format - msgid "deleting printer %s" - msgstr "" - --#: ../system-config-printer.py:3070 -+#: ../system-config-printer.py:3088 - msgid "Publish Shared Printers" - msgstr "" - --#: ../system-config-printer.py:3071 -+#: ../system-config-printer.py:3089 - msgid "" - "Shared printers are not available to other people unless the 'Publish shared " - "printers' option is enabled in the server settings." - msgstr "" - --#: ../system-config-printer.py:3264 -+#: ../system-config-printer.py:3282 - msgid "modifying server settings" - msgstr "" - -@@ -1043,100 +1052,100 @@ msgstr "" - #. be unblocked. Unfortunately, this is not yet possible - #. (bug #440469). However, we can display a dialog to suggest - #. that now might be a good time to review the firewall settings. --#: ../system-config-printer.py:3289 -+#: ../system-config-printer.py:3307 - msgid "Review Firewall" - msgstr "" - --#: ../system-config-printer.py:3290 -+#: ../system-config-printer.py:3308 - msgid "" - "You may need to adjust the firewall to allow network printing to this " - "computer." - msgstr "" - --#: ../system-config-printer.py:3623 -+#: ../system-config-printer.py:3638 - msgid "Browsing not available (pysmbc not installed)" - msgstr "" - - #. SMB list columns --#: ../system-config-printer.py:3629 -+#: ../system-config-printer.py:3644 - msgid "Share" - msgstr "" - --#: ../system-config-printer.py:3635 -+#: ../system-config-printer.py:3650 - msgid "Comment" - msgstr "" - - #. IPP list columns --#: ../system-config-printer.py:3654 -+#: ../system-config-printer.py:3669 - msgid "Queue" - msgstr "" - --#: ../system-config-printer.py:3668 -+#: ../system-config-printer.py:3683 - msgid "" - "PostScript Printer Description files (*.ppd, *.PPD, *.ppd.gz, *.PPD.gz, *." - "PPD.GZ)" - msgstr "" - --#: ../system-config-printer.py:3677 -+#: ../system-config-printer.py:3692 - msgid "All files (*)" - msgstr "" - --#: ../system-config-printer.py:3713 ../system-config-printer.py:5970 --#: ../system-config-printer.py:6008 ../applet.py:124 -+#: ../system-config-printer.py:3728 ../system-config-printer.py:5918 -+#: ../system-config-printer.py:5956 ../applet.py:124 - msgid "Search" - msgstr "" - --#: ../system-config-printer.py:3736 ../system-config-printer.py:3760 --#: ../glade/NewPrinterWindow.glade.h:74 -+#: ../system-config-printer.py:3751 ../system-config-printer.py:3775 -+#: ../glade/NewPrinterWindow.glade.h:73 - msgid "New Printer" - msgstr "" - --#: ../system-config-printer.py:3747 -+#: ../system-config-printer.py:3762 - msgid "New Class" - msgstr "" - --#: ../system-config-printer.py:3752 -+#: ../system-config-printer.py:3767 - msgid "Change Device URI" - msgstr "" - --#: ../system-config-printer.py:3758 -+#: ../system-config-printer.py:3773 - msgid "Change Driver" - msgstr "" - --#: ../system-config-printer.py:3927 ../system-config-printer.py:3993 --#: ../system-config-printer.py:4289 ../system-config-printer.py:4487 --#: ../system-config-printer.py:5772 ../system-config-printer.py:5995 -+#: ../system-config-printer.py:3942 ../system-config-printer.py:4008 -+#: ../system-config-printer.py:4304 ../system-config-printer.py:4502 -+#: ../system-config-printer.py:5762 ../system-config-printer.py:5943 - msgid "Searching" - msgstr "" - --#: ../system-config-printer.py:3928 -+#: ../system-config-printer.py:3943 - msgid "Searching for downloadable drivers" - msgstr "" - --#: ../system-config-printer.py:3994 ../system-config-printer.py:4290 -+#: ../system-config-printer.py:4009 ../system-config-printer.py:4305 - msgid "Searching for drivers" - msgstr "" - --#: ../system-config-printer.py:4488 ../system-config-printer.py:5773 -+#: ../system-config-printer.py:4503 ../system-config-printer.py:5763 - msgid "Searching for printers" - msgstr "" - --#: ../system-config-printer.py:4497 -+#: ../system-config-printer.py:4512 - msgid "fetching device list" - msgstr "" - - #. Tell the user why he needs the plugin --#: ../system-config-printer.py:4579 -+#: ../system-config-printer.py:4594 - msgid "For this printer a proprietary driver plugin from HP is available.\n" - msgstr "" - --#: ../system-config-printer.py:4582 -+#: ../system-config-printer.py:4597 - msgid "" - "The installation of the plugin is required for your printer to work.\n" - "\n" - msgstr "" - --#: ../system-config-printer.py:4585 -+#: ../system-config-printer.py:4600 - msgid "" - "Installing the plugin is optional, it completes or enhances the " - "functionality\n" -@@ -1144,280 +1153,272 @@ msgid "" - "\n" - msgstr "" - --#: ../system-config-printer.py:4589 -+#: ../system-config-printer.py:4604 - msgid "The plugin provides the following features:\n" - msgstr "" - --#: ../system-config-printer.py:4592 -+#: ../system-config-printer.py:4607 - msgid " - Printing support\n" - msgstr "" - --#: ../system-config-printer.py:4595 -+#: ../system-config-printer.py:4610 - msgid " - Faster printing\n" - msgstr "" - --#: ../system-config-printer.py:4598 -+#: ../system-config-printer.py:4613 - msgid " - Better printout quality\n" - msgstr "" - --#: ../system-config-printer.py:4601 -+#: ../system-config-printer.py:4616 - msgid " - Extra printing features\n" - msgstr "" - --#: ../system-config-printer.py:4604 -+#: ../system-config-printer.py:4619 - msgid " - Scanning support\n" - msgstr "" - --#: ../system-config-printer.py:4607 -+#: ../system-config-printer.py:4622 - msgid " - Faster scanning\n" - msgstr "" - --#: ../system-config-printer.py:4610 -+#: ../system-config-printer.py:4625 - msgid " - Better scanning image quality\n" - msgstr "" - --#: ../system-config-printer.py:4613 -+#: ../system-config-printer.py:4628 - msgid " - Faxing support\n" - msgstr "" - --#: ../system-config-printer.py:4616 -+#: ../system-config-printer.py:4631 - msgid " - Extra fax features\n" - msgstr "" - --#: ../system-config-printer.py:4619 -+#: ../system-config-printer.py:4634 - msgid " - Better Input/Output support\n" - msgstr "" - --#: ../system-config-printer.py:4622 -+#: ../system-config-printer.py:4637 - msgid " - Extra user interface features\n" - msgstr "" - --#: ../system-config-printer.py:4625 -+#: ../system-config-printer.py:4640 - msgid " - Other extra features\n" - msgstr "" - --#: ../system-config-printer.py:4630 -+#: ../system-config-printer.py:4645 - msgid "Install plugin" - msgstr "" - --#: ../system-config-printer.py:4631 -+#: ../system-config-printer.py:4646 - msgid "Do not set up printer" - msgstr "" - --#: ../system-config-printer.py:4632 -+#: ../system-config-printer.py:4647 - msgid "Set up without plugin" - msgstr "" - --#: ../system-config-printer.py:4634 ../troubleshoot/PrintTestPage.py:118 -+#: ../system-config-printer.py:4649 ../troubleshoot/PrintTestPage.py:118 - msgid "Yes" - msgstr "" - --#: ../system-config-printer.py:4635 ../troubleshoot/PrintTestPage.py:119 -+#: ../system-config-printer.py:4650 ../troubleshoot/PrintTestPage.py:119 - msgid "No" - msgstr "" - --#: ../system-config-printer.py:4809 ../system-config-printer.py:4813 -+#: ../system-config-printer.py:4824 ../system-config-printer.py:4828 - msgid " (Current)" - msgstr "" - --#: ../system-config-printer.py:4845 --msgid "HP Printer (HPLIP)" --msgstr "" -- --#: ../system-config-printer.py:4886 -+#: ../system-config-printer.py:4881 - msgid "Other" - msgstr "" - - #. device-info - #. PhysicalDevice obj - #. Separator? --#: ../system-config-printer.py:4902 -+#: ../system-config-printer.py:4897 - msgid "Network Printer" - msgstr "" - --#: ../system-config-printer.py:4906 -+#: ../system-config-printer.py:4901 - msgid "Find Network Printer" - msgstr "" - --#: ../system-config-printer.py:4979 ../system-config-printer.py:5376 -+#: ../system-config-printer.py:4974 ../system-config-printer.py:5371 - msgid "Scanning..." - msgstr "" - --#: ../system-config-printer.py:5034 ../system-config-printer.py:5798 -+#: ../system-config-printer.py:5029 - msgid "No Print Shares" - msgstr "" - --#: ../system-config-printer.py:5035 -+#: ../system-config-printer.py:5030 - msgid "" - "There were no print shares found. Please check that the Samba service is " - "marked as trusted in your firewall configuration." - msgstr "" - --#: ../system-config-printer.py:5296 ../system-config-printer.py:5357 -+#: ../system-config-printer.py:5291 ../system-config-printer.py:5352 - msgid "Print Share Verified" - msgstr "" - --#: ../system-config-printer.py:5297 ../system-config-printer.py:5358 -+#: ../system-config-printer.py:5292 ../system-config-printer.py:5353 - msgid "This print share is accessible." - msgstr "" - --#: ../system-config-printer.py:5302 ../system-config-printer.py:5362 -+#: ../system-config-printer.py:5297 ../system-config-printer.py:5357 - msgid "This print share is not accessible." - msgstr "" - --#: ../system-config-printer.py:5305 -+#: ../system-config-printer.py:5300 - msgid "Print Share Inaccessible" - msgstr "" - --#: ../system-config-printer.py:5361 -+#: ../system-config-printer.py:5356 - msgid "Inaccessible" - msgstr "" - --#: ../system-config-printer.py:5419 -+#: ../system-config-printer.py:5414 - #, python-format - msgid "It is not possible to obtain a list of queues from '%s'." - msgstr "" - --#: ../system-config-printer.py:5421 -+#: ../system-config-printer.py:5416 - msgid "" - "Obtaining a list of queues is a CUPS extension to IPP. Network printers do " - "not support it." - msgstr "" - --#: ../system-config-printer.py:5424 -+#: ../system-config-printer.py:5419 - msgid "No queues" - msgstr "" - --#: ../system-config-printer.py:5425 -+#: ../system-config-printer.py:5420 - msgid "There are no queues available." - msgstr "" - --#: ../system-config-printer.py:5516 -+#: ../system-config-printer.py:5511 - msgid "Parallel Port" - msgstr "" - --#: ../system-config-printer.py:5518 -+#: ../system-config-printer.py:5513 - msgid "Serial Port" - msgstr "" - --#: ../system-config-printer.py:5520 -+#: ../system-config-printer.py:5515 - msgid "USB" - msgstr "" - --#: ../system-config-printer.py:5522 ../system-config-printer.py:5525 -+#: ../system-config-printer.py:5517 ../system-config-printer.py:5520 - msgid "HP Linux Imaging and Printing (HPLIP)" - msgstr "" - --#: ../system-config-printer.py:5527 -+#: ../system-config-printer.py:5522 - msgid "Hardware Abstraction Layer (HAL)" - msgstr "" - --#: ../system-config-printer.py:5529 -+#: ../system-config-printer.py:5524 - msgid "AppSocket/HP JetDirect" - msgstr "" - --#: ../system-config-printer.py:5538 -+#: ../system-config-printer.py:5533 - #, python-format - msgid "LPD/LPR queue '%s'" - msgstr "" - --#: ../system-config-printer.py:5540 -+#: ../system-config-printer.py:5535 - msgid "LPD/LPR queue" - msgstr "" - --#: ../system-config-printer.py:5543 -+#: ../system-config-printer.py:5538 - msgid "Windows Printer via SAMBA" - msgstr "" - --#: ../system-config-printer.py:5545 ../glade/NewPrinterWindow.glade.h:66 -+#: ../system-config-printer.py:5540 ../glade/NewPrinterWindow.glade.h:65 - msgid "IPP" - msgstr "" - --#: ../system-config-printer.py:5547 -+#: ../system-config-printer.py:5542 - msgid "HTTP" - msgstr "" - --#: ../system-config-printer.py:5632 -+#: ../system-config-printer.py:5624 - msgid "A printer connected to the parallel port." - msgstr "" - --#: ../system-config-printer.py:5634 -+#: ../system-config-printer.py:5626 - msgid "A printer connected to a USB port." - msgstr "" - --#: ../system-config-printer.py:5636 -+#: ../system-config-printer.py:5628 - msgid "" - "HPLIP software driving a printer, or the printer function of a multi-" - "function device." - msgstr "" - --#: ../system-config-printer.py:5639 -+#: ../system-config-printer.py:5631 - msgid "" - "HPLIP software driving a fax machine, or the fax function of a multi-" - "function device." - msgstr "" - --#: ../system-config-printer.py:5642 -+#: ../system-config-printer.py:5634 - msgid "Local printer detected by the Hardware Abstraction Layer (HAL)." - msgstr "" - --#: ../system-config-printer.py:5799 --msgid "HPLIP cannot find the device." --msgstr "" -- --#: ../system-config-printer.py:5881 -+#: ../system-config-printer.py:5831 - msgid "No printer was found at that address." - msgstr "" - --#: ../system-config-printer.py:6020 -+#: ../system-config-printer.py:5968 - msgid "-- Select from search results --" - msgstr "" - --#: ../system-config-printer.py:6022 -+#: ../system-config-printer.py:5970 - msgid "-- No matches found --" - msgstr "" - --#: ../system-config-printer.py:6203 -+#: ../system-config-printer.py:6151 - msgid " (recommended)" - msgstr "" - --#: ../system-config-printer.py:6217 -+#: ../system-config-printer.py:6165 - msgid "This PPD is generated by foomatic." - msgstr "" - --#: ../system-config-printer.py:6241 -+#: ../system-config-printer.py:6189 - msgid "OpenPrinting" - msgstr "" - --#: ../system-config-printer.py:6252 -+#: ../system-config-printer.py:6200 - msgid "Distributable" - msgstr "" - --#: ../system-config-printer.py:6293 -+#: ../system-config-printer.py:6241 - msgid ", " - msgstr "" - --#: ../system-config-printer.py:6298 -+#: ../system-config-printer.py:6246 - #, python-format - msgid "" - "\n" - "(%s)" - msgstr "" - --#: ../system-config-printer.py:6303 -+#: ../system-config-printer.py:6251 - msgid "No support contacts known" - msgstr "" - --#: ../system-config-printer.py:6307 ../system-config-printer.py:6320 -+#: ../system-config-printer.py:6255 ../system-config-printer.py:6268 - msgid "Not specified." - msgstr "" - - #. Foomatic database problem of some sort. --#: ../system-config-printer.py:6360 -+#: ../system-config-printer.py:6308 - msgid "Database error" - msgstr "" - --#: ../system-config-printer.py:6361 -+#: ../system-config-printer.py:6309 - #, python-format - msgid "The '%s' driver cannot be used with printer '%s %s'." - msgstr "" -@@ -1425,60 +1426,60 @@ msgstr "" - #. This printer references some XML that is not - #. installed by default. Point the user at the - #. package they need to install. --#: ../system-config-printer.py:6371 -+#: ../system-config-printer.py:6319 - #, python-format - msgid "You will need to install the '%s' package in order to use this driver." - msgstr "" - - #. This error came from trying to open the PPD file. --#: ../system-config-printer.py:6378 -+#: ../system-config-printer.py:6326 - msgid "PPD error" - msgstr "" - --#: ../system-config-printer.py:6380 -+#: ../system-config-printer.py:6328 - msgid "Failed to read PPD file. Possible reason follows:" - msgstr "" - - #. Failed to get PPD downloaded from OpenPrinting XXX --#: ../system-config-printer.py:6397 -+#: ../system-config-printer.py:6345 - msgid "Downloadable drivers" - msgstr "" - --#: ../system-config-printer.py:6398 -+#: ../system-config-printer.py:6346 - msgid "Failed to download PPD." - msgstr "" - --#: ../system-config-printer.py:6405 -+#: ../system-config-printer.py:6353 - msgid "fetching PPD" - msgstr "" - --#: ../system-config-printer.py:6434 ../system-config-printer.py:6472 -+#: ../system-config-printer.py:6382 ../system-config-printer.py:6420 - msgid "No Installable Options" - msgstr "" - --#: ../system-config-printer.py:6520 -+#: ../system-config-printer.py:6468 - #, python-format - msgid "adding printer %s" - msgstr "" - --#: ../system-config-printer.py:6669 -+#: ../system-config-printer.py:6617 - msgid "Would you like to print a test page?" - msgstr "" - --#: ../system-config-printer.py:6722 -+#: ../system-config-printer.py:6670 - msgid "Install driver" - msgstr "" - --#: ../system-config-printer.py:6723 ../troubleshoot/CheckPPDSanity.py:131 -+#: ../system-config-printer.py:6671 ../troubleshoot/CheckPPDSanity.py:131 - #, python-format - msgid "Printer '%s' requires the %s package but it is not currently installed." - msgstr "" - --#: ../system-config-printer.py:6739 -+#: ../system-config-printer.py:6687 - msgid "Missing driver" - msgstr "" - --#: ../system-config-printer.py:6740 -+#: ../system-config-printer.py:6688 - #, python-format - msgid "" - "Printer '%s' requires the '%s' program but it is not currently installed. " -@@ -1592,106 +1593,102 @@ msgid "Enter device URI" - msgstr "" - - #: ../glade/NewPrinterWindow.glade.h:5 --msgid "HP Printer (HPLIP) via network" --msgstr "" -- --#: ../glade/NewPrinterWindow.glade.h:6 - msgid "IPP Printer" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:7 -+#: ../glade/NewPrinterWindow.glade.h:6 - msgid "License Terms" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:8 -+#: ../glade/NewPrinterWindow.glade.h:7 - msgid "Location of the LPD network printer" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:9 -+#: ../glade/NewPrinterWindow.glade.h:8 - msgid "Location of the network printer" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:10 -+#: ../glade/NewPrinterWindow.glade.h:9 - msgid "Location (optional)" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:11 -+#: ../glade/NewPrinterWindow.glade.h:10 - msgid "Network Printer" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:12 -+#: ../glade/NewPrinterWindow.glade.h:11 - msgid "Note" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:13 -+#: ../glade/NewPrinterWindow.glade.h:12 - msgid "Output Quality" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:14 -+#: ../glade/NewPrinterWindow.glade.h:13 - msgid "Printer Name" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:15 -+#: ../glade/NewPrinterWindow.glade.h:14 - msgid "SMB Printer" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:16 -+#: ../glade/NewPrinterWindow.glade.h:15 - msgid "Select Driver" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:17 -+#: ../glade/NewPrinterWindow.glade.h:16 - msgid "Settings of the serial port" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:18 -+#: ../glade/NewPrinterWindow.glade.h:17 - msgid "smb://[workgroup/]server[:port]/printer" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:19 -+#: ../glade/NewPrinterWindow.glade.h:18 - msgid "Choose Class Members" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:20 -+#: ../glade/NewPrinterWindow.glade.h:19 - msgid "Choose Driver" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:21 -+#: ../glade/NewPrinterWindow.glade.h:20 - msgid "Describe Printer" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:22 -+#: ../glade/NewPrinterWindow.glade.h:21 - msgid "Existing Settings" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:23 -+#: ../glade/NewPrinterWindow.glade.h:22 - msgid "Installable Options" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:24 -+#: ../glade/NewPrinterWindow.glade.h:23 - msgid "Select Device" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:25 -+#: ../glade/NewPrinterWindow.glade.h:24 - msgid "Baud Rate" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:26 -+#: ../glade/NewPrinterWindow.glade.h:25 - msgid "Browse..." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:27 -+#: ../glade/NewPrinterWindow.glade.h:26 - msgid "Comments..." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:28 -+#: ../glade/NewPrinterWindow.glade.h:27 - msgid "Connection" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:29 -+#: ../glade/NewPrinterWindow.glade.h:28 - msgid "Data Bits" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:30 -+#: ../glade/NewPrinterWindow.glade.h:29 - msgid "" - "Default\n" - "1200\n" -@@ -1704,14 +1701,14 @@ msgid "" - "115200" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:39 -+#: ../glade/NewPrinterWindow.glade.h:38 - msgid "" - "Default\n" - "8\n" - "7" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:42 -+#: ../glade/NewPrinterWindow.glade.h:41 - msgid "" - "Default\n" - "None\n" -@@ -1719,7 +1716,7 @@ msgid "" - "Even" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:46 -+#: ../glade/NewPrinterWindow.glade.h:45 - msgid "" - "Default\n" - "None\n" -@@ -1728,188 +1725,188 @@ msgid "" - "DTR/DSR (Hardware)" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:51 -+#: ../glade/NewPrinterWindow.glade.h:50 - #: ../glade/PrinterPropertiesDialog.glade.h:35 - msgid "Description:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:52 ../troubleshoot/DeviceListed.py:40 -+#: ../glade/NewPrinterWindow.glade.h:51 ../troubleshoot/DeviceListed.py:40 - msgid "Device URI" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:53 -+#: ../glade/NewPrinterWindow.glade.h:52 - msgid "Device description." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:54 -+#: ../glade/NewPrinterWindow.glade.h:53 - msgid "DirectJet" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:56 -+#: ../glade/NewPrinterWindow.glade.h:55 - msgid "Driver details" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:57 -+#: ../glade/NewPrinterWindow.glade.h:56 - msgid "Empty" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:58 -+#: ../glade/NewPrinterWindow.glade.h:57 - msgid "Find _Queue..." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:59 -+#: ../glade/NewPrinterWindow.glade.h:58 - msgid "Flow Control" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:60 -+#: ../glade/NewPrinterWindow.glade.h:59 - msgid "" - "For the printer you have selected there are drivers available for download." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:61 -+#: ../glade/NewPrinterWindow.glade.h:60 - msgid "Free software" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:62 -+#: ../glade/NewPrinterWindow.glade.h:61 - msgid "Graphics:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:63 -+#: ../glade/NewPrinterWindow.glade.h:62 - msgid "Host:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:64 -+#: ../glade/NewPrinterWindow.glade.h:63 - msgid "Human-readable description such as \"HP LaserJet with Duplexer\"" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:65 -+#: ../glade/NewPrinterWindow.glade.h:64 - msgid "Human-readable location such as \"Lab 1\"" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:67 -+#: ../glade/NewPrinterWindow.glade.h:66 - msgid "LPD" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:68 -+#: ../glade/NewPrinterWindow.glade.h:67 - msgid "License:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:69 -+#: ../glade/NewPrinterWindow.glade.h:68 - msgid "Line art:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:70 -+#: ../glade/NewPrinterWindow.glade.h:69 - msgid "Local Driver" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:71 -+#: ../glade/NewPrinterWindow.glade.h:70 - msgid "Make and model:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:72 -+#: ../glade/NewPrinterWindow.glade.h:71 - msgid "Manufacturer" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:73 -+#: ../glade/NewPrinterWindow.glade.h:72 - msgid "Network" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:75 -+#: ../glade/NewPrinterWindow.glade.h:74 - msgid "No, I do not accept this license" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:76 -+#: ../glade/NewPrinterWindow.glade.h:75 - msgid "Parity" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:78 -+#: ../glade/NewPrinterWindow.glade.h:77 - msgid "Patented algorithms" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:79 -+#: ../glade/NewPrinterWindow.glade.h:78 - msgid "Photo:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:80 -+#: ../glade/NewPrinterWindow.glade.h:79 - msgid "Port number:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:81 -+#: ../glade/NewPrinterWindow.glade.h:80 - msgid "" - "PostScript Printer Description (PPD) files can often be found on the driver " - "disk that comes with the printer. For PostScript printers they are often " - "part of the Windows® driver." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:82 -+#: ../glade/NewPrinterWindow.glade.h:81 - msgid "Printer model:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:83 -+#: ../glade/NewPrinterWindow.glade.h:82 - msgid "Probe" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:84 -+#: ../glade/NewPrinterWindow.glade.h:83 - msgid "Prompt user if authentication is required" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:85 -+#: ../glade/NewPrinterWindow.glade.h:84 - msgid "Provide PPD file" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:86 -+#: ../glade/NewPrinterWindow.glade.h:85 - msgid "Queue:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:87 -+#: ../glade/NewPrinterWindow.glade.h:86 - msgid "SCSI" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:88 -+#: ../glade/NewPrinterWindow.glade.h:87 - msgid "SMB" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:89 -+#: ../glade/NewPrinterWindow.glade.h:88 - msgid "Search for a printer driver to download" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:90 -+#: ../glade/NewPrinterWindow.glade.h:89 - msgid "Searching..." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:91 -+#: ../glade/NewPrinterWindow.glade.h:90 - msgid "Select A File" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:92 -+#: ../glade/NewPrinterWindow.glade.h:91 - msgid "Select printer from database" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:93 -+#: ../glade/NewPrinterWindow.glade.h:92 - msgid "Serial" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:94 -+#: ../glade/NewPrinterWindow.glade.h:93 - msgid "Set authentication details now" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:95 -+#: ../glade/NewPrinterWindow.glade.h:94 - msgid "Short name for this printer such as \"laserjet\"" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:96 -+#: ../glade/NewPrinterWindow.glade.h:95 - msgid "Supplier:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:97 -+#: ../glade/NewPrinterWindow.glade.h:96 - msgid "Support:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:98 -+#: ../glade/NewPrinterWindow.glade.h:97 - msgid "Text:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:99 -+#: ../glade/NewPrinterWindow.glade.h:98 - msgid "" - "The foomatic printer database contains various manufacturer provided " - "PostScript Printer Description (PPD) files and also can generate PPD files " -@@ -1918,68 +1915,68 @@ msgid "" - "printer." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:100 -+#: ../glade/NewPrinterWindow.glade.h:99 - msgid "" - "These drivers do not come from your operating system supplier and will not " - "be covered by their commercial support. See the support and license terms " - "of the driver's supplier." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:101 -+#: ../glade/NewPrinterWindow.glade.h:100 - msgid "" - "This driver supports additional hardware that may be installed in the " - "printer." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:102 -+#: ../glade/NewPrinterWindow.glade.h:101 - msgid "" - "This is done by assuming that options with the same name do have the same " - "meaning. Settings of options that are not present in the new PPD will be " - "lost and options only present in the new PPD will be set to default." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:103 -+#: ../glade/NewPrinterWindow.glade.h:102 - msgid "" - "This way all current option settings will be lost. The default settings of " - "the new PPD will be used. " - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:104 -+#: ../glade/NewPrinterWindow.glade.h:103 - msgid "Try to copy the option settings over from the old PPD. " - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:105 -+#: ../glade/NewPrinterWindow.glade.h:104 - msgid "URI:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:107 -+#: ../glade/NewPrinterWindow.glade.h:106 - msgid "Use the new PPD (Postscript Printer Description) as is." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:109 -+#: ../glade/NewPrinterWindow.glade.h:108 - msgid "" - "With this choice no driver download will be performed. In the next steps a " - "locally installed driver will be selected." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:110 -+#: ../glade/NewPrinterWindow.glade.h:109 - msgid "Yes, I accept this license" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:111 -+#: ../glade/NewPrinterWindow.glade.h:110 - msgid "_Search" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:112 -+#: ../glade/NewPrinterWindow.glade.h:111 - msgid "_Verify..." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:113 -+#: ../glade/NewPrinterWindow.glade.h:112 - #: ../glade/PrinterPropertiesDialog.glade.h:128 - msgid "move left" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:114 -+#: ../glade/NewPrinterWindow.glade.h:113 - #: ../glade/PrinterPropertiesDialog.glade.h:129 - msgid "move right" - msgstr "" -@@ -2819,7 +2816,7 @@ msgstr "" - msgid "Remember to load paper of type '%s' into the printer first." - msgstr "" - --#: ../troubleshoot/PrintTestPage.py:399 -+#: ../troubleshoot/PrintTestPage.py:416 - msgid "Error submitting test page" - msgstr "" - -diff -up system-config-printer-1.1.5/po/kn.po.git-1.1.x system-config-printer-1.1.5/po/kn.po ---- system-config-printer-1.1.5/po/kn.po.git-1.1.x 2009-03-03 22:21:46.000000000 +0000 -+++ system-config-printer-1.1.5/po/kn.po 2009-03-10 17:43:31.000000000 +0000 -@@ -7,7 +7,7 @@ msgid "" - msgstr "" - "Project-Id-Version: kn\n" - "Report-Msgid-Bugs-To: https://bugzilla.redhat.com/bugzilla\n" --"POT-Creation-Date: 2009-03-02 23:22+0000\n" -+"POT-Creation-Date: 2009-03-10 16:51+0000\n" - "PO-Revision-Date: 2007-06-06 15:45+0530\n" - "Last-Translator: Shankar Prasad \n" - "Language-Team: Kannada \n" -@@ -55,11 +55,11 @@ msgstr "" - msgid "Enter IP address" - msgstr "ಸೇರ್ಪಡಿಸಲಾದ ಮುದ್ರಕ" - --#: ../authconn.py:35 ../glade/NewPrinterWindow.glade.h:108 -+#: ../authconn.py:35 ../glade/NewPrinterWindow.glade.h:107 - msgid "Username:" - msgstr "ಬಳಕೆದಾರಹೆಸರು:" - --#: ../authconn.py:36 ../glade/NewPrinterWindow.glade.h:77 -+#: ../authconn.py:36 ../glade/NewPrinterWindow.glade.h:76 - msgid "Password:" - msgstr "ಗುಪ್ತಪದ:" - -@@ -68,7 +68,7 @@ msgstr "ಗುಪ್ತಪದ:" - msgid "Domain:" - msgstr "ಮೇಲಿನ ಅಂಚು:" - --#: ../authconn.py:46 -+#: ../authconn.py:46 ../authconn.py:409 - #, fuzzy - msgid "Authentication" - msgstr "ದೃಢೀಕರಣ" -@@ -77,45 +77,54 @@ msgstr "ದೃಢೀಕರಣ" - msgid "Remember password" - msgstr "" - --#: ../authconn.py:211 ../authconn.py:232 -+#: ../authconn.py:208 -+#, python-format -+msgid "Unauthorized request (%s)" -+msgstr "" -+ -+#: ../authconn.py:209 -+msgid "You are not authorized to carry out therequested action." -+msgstr "" -+ -+#: ../authconn.py:212 ../authconn.py:233 - #, fuzzy - msgid "Operation canceled" - msgstr "ಕಾರ್ಯಕಾರಿತ್ವ ನೀತಿಗಳು:" - --#: ../authconn.py:253 -+#: ../authconn.py:250 - #, fuzzy, python-format - msgid "CUPS server error (%s)" - msgstr "CUPS ಪರಿಚಾರಕದಲ್ಲಿನ ದೋಷ" - --#: ../authconn.py:255 ../errordialogs.py:57 --#: ../troubleshoot/PrintTestPage.py:400 -+#: ../authconn.py:252 ../errordialogs.py:56 ../errordialogs.py:70 -+msgid "CUPS server error" -+msgstr "CUPS ಪರಿಚಾರಕದಲ್ಲಿನ ದೋಷ" -+ -+#: ../authconn.py:261 ../errordialogs.py:57 -+#: ../troubleshoot/PrintTestPage.py:417 - #, python-format - msgid "There was an error during the CUPS operation: '%s'." - msgstr "CUPS ಕಾರ್ಯಚರಣೆಯಲ್ಲಿ ಒಂದು ದೋಷ ಉಂಟಾಗಿದೆ: '%s'." - --#: ../authconn.py:258 -+#: ../authconn.py:264 - #, fuzzy - msgid "Retry" - msgstr "ಪುನಃ ಹೊಂದಿಸು" - --#: ../authconn.py:379 ../authconn.py:381 ../errordialogs.py:65 ../pysmb.py:75 -+#: ../authconn.py:385 ../authconn.py:387 ../errordialogs.py:65 ../pysmb.py:75 - #: ../pysmb.py:77 - msgid "Not authorized" - msgstr "ಅಧೀಕೃತವಲ್ಲ" - --#: ../authconn.py:382 ../pysmb.py:78 -+#: ../authconn.py:388 ../pysmb.py:78 - msgid "The password may be incorrect." - msgstr "ಗುಪ್ತಪದವು ಸರಿಯಾಗಿಲ್ಲದಿರಬಹುದು." - --#: ../authconn.py:400 -+#: ../authconn.py:407 - #, fuzzy, python-format - msgid "Authentication (%s)" - msgstr "ದೃಢೀಕರಣ" - --#: ../errordialogs.py:56 ../errordialogs.py:70 --msgid "CUPS server error" --msgstr "CUPS ಪರಿಚಾರಕದಲ್ಲಿನ ದೋಷ" -- - #: ../errordialogs.py:66 - msgid "" - "The password may be incorrect, or the server may be configured to deny " -@@ -144,7 +153,7 @@ msgstr "ಅಪ್ಗ್ರೇಡಿನ - msgid "Server error" - msgstr "ಪರಿಚಾರಕ ದೋಷ" - --#: ../errordialogs.py:82 ../system-config-printer.py:1219 -+#: ../errordialogs.py:82 ../system-config-printer.py:1223 - msgid "Not connected" - msgstr "ಸಂಪರ್ಕಿತವಾಗಿಲ್ಲ" - -@@ -166,7 +175,7 @@ msgstr "" - msgid "_New Group from Selection" - msgstr "" - --#: ../GroupsPane.py:98 ../system-config-printer.py:393 -+#: ../GroupsPane.py:98 ../system-config-printer.py:397 - #, fuzzy - msgid "_Rename" - msgstr "ಬಿಡುಗಡೆಗೊಳಿಸು (_R)" -@@ -235,7 +244,7 @@ msgid "Document" - msgstr "ದಸ್ತಾವೇಜು" - - #: ../jobviewer.py:212 ../my-default-printer.py:153 --#: ../system-config-printer.py:366 ../system-config-printer.py:1367 -+#: ../system-config-printer.py:370 ../system-config-printer.py:1371 - #: ../troubleshoot/PrintTestPage.py:84 - msgid "Printer" - msgstr "ಮುದ್ರಕ" -@@ -272,8 +281,8 @@ msgstr "ದಸ್ತಾವೇಜು ಮ - - #: ../jobviewer.py:386 ../jobviewer.py:451 ../jobviewer.py:452 - #: ../jobviewer.py:492 ../jobviewer.py:600 ../jobviewer.py:727 --#: ../jobviewer.py:1196 ../jobviewer.py:1222 ../system-config-printer.py:2546 --#: ../glade/NewPrinterWindow.glade.h:106 -+#: ../jobviewer.py:1196 ../jobviewer.py:1222 ../system-config-printer.py:2556 -+#: ../glade/NewPrinterWindow.glade.h:105 - #: ../troubleshoot/ChooseNetworkPrinter.py:101 - #: ../troubleshoot/ChooseNetworkPrinter.py:102 - #: ../troubleshoot/ChooseNetworkPrinter.py:105 -@@ -366,12 +375,12 @@ msgstr "ಇಲ್ಲಿಯವರೆಗ - msgid "Pending" - msgstr "ಬಾಕಿ ಇರುವ" - --#: ../jobviewer.py:591 ../system-config-printer.py:186 -+#: ../jobviewer.py:591 ../system-config-printer.py:190 - #: ../troubleshoot/PrintTestPage.py:43 - msgid "Processing" - msgstr "ಸಂಸ್ಕರಣೆಗೊಳ್ಳುತ್ತಿದೆ" - --#: ../jobviewer.py:592 ../system-config-printer.py:188 -+#: ../jobviewer.py:592 ../system-config-printer.py:192 - #: ../troubleshoot/PrintTestPage.py:44 - msgid "Stopped" - msgstr "ನಿಂತಿದೆ" -@@ -488,8 +497,8 @@ msgstr "ಗಣಕವನ್ನು ಡೀ - msgid "_Set Default" - msgstr "ಡೀಫಾಲ್ಟ್" - --#: ../my-default-printer.py:158 ../system-config-printer.py:423 --#: ../system-config-printer.py:3660 ../troubleshoot/ChooseNetworkPrinter.py:37 -+#: ../my-default-printer.py:158 ../system-config-printer.py:427 -+#: ../system-config-printer.py:3675 ../troubleshoot/ChooseNetworkPrinter.py:37 - #: ../troubleshoot/ChoosePrinter.py:38 - #, fuzzy - msgid "Location" -@@ -523,7 +532,7 @@ msgstr "ಮುದ್ರಕವನ್ನ - msgid "Authenticated" - msgstr "ದೃಢೀಕರಣ" - --#: ../ppdippstr.py:50 ../system-config-printer.py:6259 -+#: ../ppdippstr.py:50 ../system-config-printer.py:6207 - #, fuzzy - msgid "None" - msgstr "ಯಾವುದೂ ಇಲ್ಲ" -@@ -743,132 +752,132 @@ msgstr "" - msgid "1200 dpi, photo, black + color cartridge, photo paper" - msgstr "" - --#: ../system-config-printer.py:127 -+#: ../system-config-printer.py:131 - msgid "To do this, select System->Administration->Firewall from the main menu." - msgstr "" - --#: ../system-config-printer.py:185 -+#: ../system-config-printer.py:189 - msgid "Idle" - msgstr "ನಿಷ್ಕ್ರಿಯ" - --#: ../system-config-printer.py:187 -+#: ../system-config-printer.py:191 - msgid "Busy" - msgstr "ಕಾರ್ಯನಿರತ" - --#: ../system-config-printer.py:372 ../system-config-printer.py:1373 -+#: ../system-config-printer.py:376 ../system-config-printer.py:1377 - #, fuzzy - msgid "Class" - msgstr "ಹೊಸ ವರ್ಗ" - --#: ../system-config-printer.py:399 -+#: ../system-config-printer.py:403 - #, fuzzy - msgid "Set As De_fault" - msgstr "ಡೀಫಾಲ್ಟ್" - --#: ../system-config-printer.py:403 -+#: ../system-config-printer.py:407 - #, fuzzy - msgid "_Create class" - msgstr "ದೂರಸ್ಥ ವರ್ಗಗಳು" - --#: ../system-config-printer.py:405 -+#: ../system-config-printer.py:409 - #, fuzzy - msgid "View Print _Queue" - msgstr "ಹೊಸ ಮುದ್ರಕ" - --#: ../system-config-printer.py:407 -+#: ../system-config-printer.py:411 - msgid "_Add to Group" - msgstr "" - --#: ../system-config-printer.py:409 -+#: ../system-config-printer.py:413 - msgid "Save Results as _Group" - msgstr "" - --#: ../system-config-printer.py:411 -+#: ../system-config-printer.py:415 - msgid "Save Filter as _Search Group" - msgstr "" - --#: ../system-config-printer.py:415 -+#: ../system-config-printer.py:419 - #, fuzzy - msgid "E_nabled" - msgstr "ಶಕ್ತಗೊಂಡಿದೆ" - --#: ../system-config-printer.py:417 -+#: ../system-config-printer.py:421 - #, fuzzy - msgid "_Shared" - msgstr "ಹಂಚಿಕೆಗೊಂಡ" - --#: ../system-config-printer.py:421 ../troubleshoot/ChooseNetworkPrinter.py:35 -+#: ../system-config-printer.py:425 ../troubleshoot/ChooseNetworkPrinter.py:35 - #: ../troubleshoot/ChoosePrinter.py:36 ../troubleshoot/DeviceListed.py:36 - msgid "Name" - msgstr "ಹೆಸರು" - --#: ../system-config-printer.py:422 -+#: ../system-config-printer.py:426 - #, fuzzy - msgid "Description" - msgstr "ವಿವರಣೆ:" - --#: ../system-config-printer.py:424 -+#: ../system-config-printer.py:428 - msgid "Manufacturer / Model" - msgstr "" - - #. Printer state reasons list --#: ../system-config-printer.py:499 -+#: ../system-config-printer.py:503 - msgid "Message" - msgstr "ಸಂದೇಶ" - --#: ../system-config-printer.py:534 -+#: ../system-config-printer.py:538 - #, fuzzy - msgid "Problems?" - msgstr "ತನಿಖೆ" - --#: ../system-config-printer.py:637 ../system-config-printer.py:639 -+#: ../system-config-printer.py:641 ../system-config-printer.py:643 - msgid "Members of this class" - msgstr "ಈ ವರ್ಗದ ಸದಸ್ಯರುಗಳು" - --#: ../system-config-printer.py:638 ../system-config-printer.py:640 -+#: ../system-config-printer.py:642 ../system-config-printer.py:644 - msgid "Others" - msgstr "ಇತರೆ" - --#: ../system-config-printer.py:641 -+#: ../system-config-printer.py:645 - msgid "Devices" - msgstr "ಸಾಧನಗಳು" - --#: ../system-config-printer.py:642 -+#: ../system-config-printer.py:646 - #, fuzzy - msgid "Connections" - msgstr "ಸಂಪರ್ಕ ಕಲ್ಪಿಸುತ್ತಿದೆ" - --#: ../system-config-printer.py:643 -+#: ../system-config-printer.py:647 - msgid "Makes" - msgstr "ತಯಾರಕರು" - --#: ../system-config-printer.py:644 -+#: ../system-config-printer.py:648 - msgid "Models" - msgstr "ಮಾದರಿಗಳು" - --#: ../system-config-printer.py:645 -+#: ../system-config-printer.py:649 - msgid "Drivers" - msgstr "ಚಾಲಕಗಳು" - --#: ../system-config-printer.py:646 ../glade/NewPrinterWindow.glade.h:55 -+#: ../system-config-printer.py:650 ../glade/NewPrinterWindow.glade.h:54 - msgid "Downloadable Drivers" - msgstr "" - --#: ../system-config-printer.py:647 -+#: ../system-config-printer.py:651 - msgid "Users" - msgstr "ಬಳಕೆದಾರರು" - --#: ../system-config-printer.py:682 -+#: ../system-config-printer.py:686 - msgid "Automatic rotation" - msgstr "" - --#: ../system-config-printer.py:989 -+#: ../system-config-printer.py:993 - #, fuzzy, python-format - msgid "Printer Properties - '%s' on %s" - msgstr "ಮುದ್ರಕ ವರದಿ" - - #. The Conflict button was pressed. --#: ../system-config-printer.py:996 -+#: ../system-config-printer.py:1000 - msgid "" - "There are conflicting options.\n" - "Changes can only be applied after\n" -@@ -878,81 +887,81 @@ msgstr "" - "ಈ ಭಿನ್ನಾಭಿಪ್ರಾಯಗಳು ಬಗೆಹರಿದ ನಂತರವಷ್ಟೆ\n" - "ಬದಲಾವಣೆಗಳು ಅನ್ವಯಿಸಲ್ಪಡುತ್ತವೆ." - --#: ../system-config-printer.py:1214 -+#: ../system-config-printer.py:1218 - #, python-format - msgid "Printer configuration - %s" - msgstr "ಮುದ್ರಕ ಸಂರಚನೆ - %s" - --#: ../system-config-printer.py:1217 -+#: ../system-config-printer.py:1221 - #, python-format - msgid "Connected to %s" - msgstr "%s ಗೆ ಸಂಪರ್ಕಿತವಾಗಿದೆ" - - #. Update our copy of the printer's settings. --#: ../system-config-printer.py:1257 ../system-config-printer.py:2042 -+#: ../system-config-printer.py:1261 ../system-config-printer.py:2046 - msgid "obtaining queue details" - msgstr "" - --#: ../system-config-printer.py:1295 -+#: ../system-config-printer.py:1299 - msgid "Remove from Group" - msgstr "" - --#: ../system-config-printer.py:1361 -+#: ../system-config-printer.py:1365 - #, fuzzy - msgid "Network printer (discovered)" - msgstr "ಹೊಸ ಮುದ್ರಕ" - --#: ../system-config-printer.py:1364 -+#: ../system-config-printer.py:1368 - msgid "Network class (discovered)" - msgstr "" - --#: ../system-config-printer.py:1370 ../system-config-printer.py:5524 --#: ../system-config-printer.py:5594 ../system-config-printer.py:5596 -+#: ../system-config-printer.py:1374 ../system-config-printer.py:5519 -+#: ../system-config-printer.py:5589 ../system-config-printer.py:5591 - msgid "Fax" - msgstr "" - --#: ../system-config-printer.py:1376 ../system-config-printer.py:1382 -+#: ../system-config-printer.py:1380 ../system-config-printer.py:1386 - #: ../troubleshoot/LocalOrRemote.py:30 - #, fuzzy - msgid "Network printer" - msgstr "ಹೊಸ ಮುದ್ರಕ" - --#: ../system-config-printer.py:1379 -+#: ../system-config-printer.py:1383 - #, fuzzy - msgid "Network print share" - msgstr "ಹೊಸ ಮುದ್ರಕ" - --#: ../system-config-printer.py:1508 ../glade/ConnectingDialog.glade.h:2 -+#: ../system-config-printer.py:1512 ../glade/ConnectingDialog.glade.h:2 - #, no-c-format, python-format - msgid "Opening connection to %s" - msgstr "" - --#: ../system-config-printer.py:1887 -+#: ../system-config-printer.py:1891 - msgid "Installable Options" - msgstr "ಅನುಸ್ಥಾಪಿಸಬಲ್ಲ ಆಯ್ಕೆಗಳು" - --#: ../system-config-printer.py:1888 -+#: ../system-config-printer.py:1892 - #: ../glade/PrinterPropertiesDialog.glade.h:109 - msgid "Printer Options" - msgstr "ಮುದ್ರಕ ಆಯ್ಕೆಗಳು" - --#: ../system-config-printer.py:1924 -+#: ../system-config-printer.py:1928 - #, python-format - msgid "modifying class %s" - msgstr "" - --#: ../system-config-printer.py:1926 ../system-config-printer.py:3019 --#: ../system-config-printer.py:3044 ../system-config-printer.py:6547 --#: ../system-config-printer.py:6559 ../system-config-printer.py:6581 -+#: ../system-config-printer.py:1930 ../system-config-printer.py:3037 -+#: ../system-config-printer.py:3062 ../system-config-printer.py:6495 -+#: ../system-config-printer.py:6507 ../system-config-printer.py:6529 - #, fuzzy, python-format - msgid "modifying printer %s" - msgstr "ಮುದ್ರಕವನ್ನು ಸ್ವರೂಪಿಸು" - --#: ../system-config-printer.py:1941 -+#: ../system-config-printer.py:1945 - msgid "This will delete this class!" - msgstr "ಇದು ಈ ವರ್ಗವನ್ನು ಅಳಿಸಿಹಾಕುತ್ತದೆ!" - --#: ../system-config-printer.py:1942 -+#: ../system-config-printer.py:1946 - msgid "Proceed anyway?" - msgstr "ಆದಾಗ್ಯೂ ಮುಂದುವರೆಯಬೇಕೆ?" - -@@ -960,50 +969,50 @@ msgstr "ಆದಾಗ್ಯೂ ಮುಂ - #. but we have never fetched the server settings to see whether - #. the server is publishing shared printers. Fetch the settings - #. now so that we can update the "not published" label if necessary. --#: ../system-config-printer.py:2030 ../system-config-printer.py:3203 -+#: ../system-config-printer.py:2034 ../system-config-printer.py:3221 - #, fuzzy - msgid "fetching server settings" - msgstr "ಪರಿಚಾರಕದ ಮೂಲಭೂತ ಸಂಯೋಜನೆಗಳು" - --#: ../system-config-printer.py:2100 -+#: ../system-config-printer.py:2104 - #, fuzzy - msgid "Set Default Printer" - msgstr "ಮುದ್ರಕವನ್ನು ಡೀಫಾಲ್ಟ್ ಆಗಿಸಿ" - --#: ../system-config-printer.py:2102 -+#: ../system-config-printer.py:2106 - msgid "Do you want to set this as the system-wide default printer?" - msgstr "" - --#: ../system-config-printer.py:2104 -+#: ../system-config-printer.py:2108 - #, fuzzy - msgid "Set as the _system-wide default printer" - msgstr "ಇದು ಡೀಫಾಲ್ಟ್ ಮುದ್ರಕ" - --#: ../system-config-printer.py:2106 -+#: ../system-config-printer.py:2110 - msgid "_Clear my personal default setting" - msgstr "" - --#: ../system-config-printer.py:2107 -+#: ../system-config-printer.py:2111 - #, fuzzy - msgid "Set as my _personal default printer" - msgstr "ಮುದ್ರಕವನ್ನು ಡೀಫಾಲ್ಟ್ ಆಗಿಸಿ" - --#: ../system-config-printer.py:2112 -+#: ../system-config-printer.py:2116 - #, fuzzy - msgid "setting default printer" - msgstr "ಮುದ್ರಕವನ್ನು ಡೀಫಾಲ್ಟ್ ಆಗಿಸಿ" - --#: ../system-config-printer.py:2169 -+#: ../system-config-printer.py:2173 - #, fuzzy - msgid "printing test page" - msgstr "ಪರೀಕ್ಷಾರ್ಥ ಪುಟಗಳನ್ನು ಮುದ್ರಿಸು" - --#: ../system-config-printer.py:2182 ../system-config-printer.py:2217 --#: ../system-config-printer.py:5418 -+#: ../system-config-printer.py:2186 ../system-config-printer.py:2221 -+#: ../system-config-printer.py:5413 - msgid "Not possible" - msgstr "ಸಾಧ್ಯವಿಲ್ಲ" - --#: ../system-config-printer.py:2183 ../system-config-printer.py:2218 -+#: ../system-config-printer.py:2187 ../system-config-printer.py:2222 - msgid "" - "The remote server did not accept the print job, most likely because the " - "printer is not shared." -@@ -1011,20 +1020,20 @@ msgstr "" - "ದೂರಸ್ಥ ಪರಿಚಾರಕವು ಮುದ್ರಣ ಕಾರ್ಯವನ್ನು ಸ್ವೀಕರಿಸಲಿಲ್ಲ, ಇದು ಬಹುಷಃ ಮುದ್ರಕವು ಹಂಚಿಕೆಯಲ್ಲಿರದೇ " - "ಇದ್ದುದರ ಕಾರಣದಿಂದ ಆಗಿರಬಹುದು." - --#: ../system-config-printer.py:2195 ../system-config-printer.py:2210 -+#: ../system-config-printer.py:2199 ../system-config-printer.py:2214 - msgid "Submitted" - msgstr "ಸಲ್ಲಿಸಲಾಗಿದೆ" - --#: ../system-config-printer.py:2196 -+#: ../system-config-printer.py:2200 - #, python-format - msgid "Test page submitted as job %d" - msgstr "ಪರೀಕ್ಷಾ ಪುಟವು ಕಾರ್ಯ %d ಆಗಿ ಒಪ್ಪಿಸಲಾಗಿದೆ" - --#: ../system-config-printer.py:2203 -+#: ../system-config-printer.py:2207 - msgid "sending maintenance command" - msgstr "" - --#: ../system-config-printer.py:2211 -+#: ../system-config-printer.py:2215 - #, fuzzy, python-format - msgid "Maintenance command submitted as job %d" - msgstr "ಪರೀಕ್ಷಾ ಪುಟವು ಕಾರ್ಯ %d ಆಗಿ ಒಪ್ಪಿಸಲಾಗಿದೆ" -@@ -1032,75 +1041,75 @@ msgstr "ಪರೀಕ್ಷಾ ಪುಟ - #. The underlying cupsGetPPD2() function returned NULL without - #. setting an IPP error, so it'll be something like a failed - #. connection. --#: ../system-config-printer.py:2285 ../system-config-printer.py:2381 -+#: ../system-config-printer.py:2289 ../system-config-printer.py:2385 - msgid "Error" - msgstr "ದೋಷ" - --#: ../system-config-printer.py:2286 -+#: ../system-config-printer.py:2290 - msgid "There was a problem connecting to the CUPS server." - msgstr "CUPS ಪರಿಚಾರಕಕ್ಕೆ ಸಂಪರ್ಕ ಕಲ್ಪಿಸುವಲ್ಲಿ ಒಂದು ದೋಷ ಉಂಟಾಗಿದೆ." - --#: ../system-config-printer.py:2382 -+#: ../system-config-printer.py:2386 - #, python-format - msgid "Option '%s' has value '%s' and cannot be edited." - msgstr "" - --#: ../system-config-printer.py:2466 -+#: ../system-config-printer.py:2476 - msgid "Marker levels are not reported for this printer." - msgstr "" - --#: ../system-config-printer.py:2763 -+#: ../system-config-printer.py:2773 - #, fuzzy - msgid "Cannot Rename" - msgstr "ಬಿಡುಗಡೆಗೊಳಿಸು (_R)" - --#: ../system-config-printer.py:2764 -+#: ../system-config-printer.py:2774 - msgid "There are queued jobs." - msgstr "" - --#: ../system-config-printer.py:2822 -+#: ../system-config-printer.py:2840 - #, fuzzy - msgid "renaming printer" - msgstr "ಮುದ್ರಕವನ್ನು ಸ್ವರೂಪಿಸು" - - #. for classes make sure all members - #. will get added --#: ../system-config-printer.py:2907 -+#: ../system-config-printer.py:2925 - #, fuzzy - msgid "copying printer" - msgstr "ಮುದ್ರಕವನ್ನು ಸ್ವರೂಪಿಸು" - --#: ../system-config-printer.py:2971 -+#: ../system-config-printer.py:2989 - #, fuzzy, python-format - msgid "Really delete class '%s'?" - msgstr "ನಿಜವಾಗಲು %s ವರ್ಗವನ್ನು ಅಳಿಸಿ ಹಾಕಬೇಕೆ?" - --#: ../system-config-printer.py:2973 -+#: ../system-config-printer.py:2991 - #, fuzzy, python-format - msgid "Really delete printer '%s'?" - msgstr "ನಿಜವಾಗಲು %s ಮುದ್ರಕವನ್ನು ಅಳಿಸಿ ಹಾಕಬೇಕೆ?" - --#: ../system-config-printer.py:2975 -+#: ../system-config-printer.py:2993 - #, fuzzy - msgid "Really delete selected destinations?" - msgstr "ನಿಜವಾಗಲು %s ಮುದ್ರಕವನ್ನು ಅಳಿಸಿ ಹಾಕಬೇಕೆ?" - --#: ../system-config-printer.py:2996 -+#: ../system-config-printer.py:3014 - #, fuzzy, python-format - msgid "deleting printer %s" - msgstr "ಮುದ್ರಕವನ್ನು ಸ್ವರೂಪಿಸು" - --#: ../system-config-printer.py:3070 -+#: ../system-config-printer.py:3088 - msgid "Publish Shared Printers" - msgstr "" - --#: ../system-config-printer.py:3071 -+#: ../system-config-printer.py:3089 - msgid "" - "Shared printers are not available to other people unless the 'Publish shared " - "printers' option is enabled in the server settings." - msgstr "" - --#: ../system-config-printer.py:3264 -+#: ../system-config-printer.py:3282 - #, fuzzy - msgid "modifying server settings" - msgstr "ಪರಿಚಾರಕದ ಮೂಲಭೂತ ಸಂಯೋಜನೆಗಳು" -@@ -1111,105 +1120,105 @@ msgstr "ಪರಿಚಾರಕದ ಮ - #. be unblocked. Unfortunately, this is not yet possible - #. (bug #440469). However, we can display a dialog to suggest - #. that now might be a good time to review the firewall settings. --#: ../system-config-printer.py:3289 -+#: ../system-config-printer.py:3307 - msgid "Review Firewall" - msgstr "" - --#: ../system-config-printer.py:3290 -+#: ../system-config-printer.py:3308 - msgid "" - "You may need to adjust the firewall to allow network printing to this " - "computer." - msgstr "" - --#: ../system-config-printer.py:3623 -+#: ../system-config-printer.py:3638 - msgid "Browsing not available (pysmbc not installed)" - msgstr "" - - #. SMB list columns --#: ../system-config-printer.py:3629 -+#: ../system-config-printer.py:3644 - msgid "Share" - msgstr "ಹಂಚಿಕೆ" - --#: ../system-config-printer.py:3635 -+#: ../system-config-printer.py:3650 - msgid "Comment" - msgstr "ಅಭಿಪ್ರಾಯ" - - #. IPP list columns --#: ../system-config-printer.py:3654 -+#: ../system-config-printer.py:3669 - msgid "Queue" - msgstr "" - --#: ../system-config-printer.py:3668 -+#: ../system-config-printer.py:3683 - #, fuzzy - msgid "" - "PostScript Printer Description files (*.ppd, *.PPD, *.ppd.gz, *.PPD.gz, *." - "PPD.GZ)" - msgstr "PostScript ಮುದ್ರಕ ವಿವರಣೆಗಳು (*.ppd[.gz])" - --#: ../system-config-printer.py:3677 -+#: ../system-config-printer.py:3692 - msgid "All files (*)" - msgstr "" - --#: ../system-config-printer.py:3713 ../system-config-printer.py:5970 --#: ../system-config-printer.py:6008 ../applet.py:124 -+#: ../system-config-printer.py:3728 ../system-config-printer.py:5918 -+#: ../system-config-printer.py:5956 ../applet.py:124 - #, fuzzy - msgid "Search" - msgstr "ಮುದ್ರಕಕ್ಕೆ ಹೊಸ ಹೆಸರು" - --#: ../system-config-printer.py:3736 ../system-config-printer.py:3760 --#: ../glade/NewPrinterWindow.glade.h:74 -+#: ../system-config-printer.py:3751 ../system-config-printer.py:3775 -+#: ../glade/NewPrinterWindow.glade.h:73 - msgid "New Printer" - msgstr "ಹೊಸ ಮುದ್ರಕ" - --#: ../system-config-printer.py:3747 -+#: ../system-config-printer.py:3762 - msgid "New Class" - msgstr "ಹೊಸ ವರ್ಗ" - --#: ../system-config-printer.py:3752 -+#: ../system-config-printer.py:3767 - msgid "Change Device URI" - msgstr "ಸಾಧನ URI ಬದಲಾಯಿಸಿ" - --#: ../system-config-printer.py:3758 -+#: ../system-config-printer.py:3773 - msgid "Change Driver" - msgstr "ಸಾಧನವನ್ನು ಬದಲಾಯಿಸಿ" - --#: ../system-config-printer.py:3927 ../system-config-printer.py:3993 --#: ../system-config-printer.py:4289 ../system-config-printer.py:4487 --#: ../system-config-printer.py:5772 ../system-config-printer.py:5995 -+#: ../system-config-printer.py:3942 ../system-config-printer.py:4008 -+#: ../system-config-printer.py:4304 ../system-config-printer.py:4502 -+#: ../system-config-printer.py:5762 ../system-config-printer.py:5943 - msgid "Searching" - msgstr "" - --#: ../system-config-printer.py:3928 -+#: ../system-config-printer.py:3943 - #, fuzzy - msgid "Searching for downloadable drivers" - msgstr "ಮುದ್ರಕಕ್ಕೆ ಹೊಸ ಹೆಸರು" - --#: ../system-config-printer.py:3994 ../system-config-printer.py:4290 -+#: ../system-config-printer.py:4009 ../system-config-printer.py:4305 - msgid "Searching for drivers" - msgstr "" - --#: ../system-config-printer.py:4488 ../system-config-printer.py:5773 -+#: ../system-config-printer.py:4503 ../system-config-printer.py:5763 - #, fuzzy - msgid "Searching for printers" - msgstr "ಮುದ್ರಕಕ್ಕೆ ಹೊಸ ಹೆಸರು" - --#: ../system-config-printer.py:4497 -+#: ../system-config-printer.py:4512 - #, fuzzy - msgid "fetching device list" - msgstr "ಪರಿಚಾರಕದ ಮೂಲಭೂತ ಸಂಯೋಜನೆಗಳು" - - #. Tell the user why he needs the plugin --#: ../system-config-printer.py:4579 -+#: ../system-config-printer.py:4594 - msgid "For this printer a proprietary driver plugin from HP is available.\n" - msgstr "" - --#: ../system-config-printer.py:4582 -+#: ../system-config-printer.py:4597 - msgid "" - "The installation of the plugin is required for your printer to work.\n" - "\n" - msgstr "" - --#: ../system-config-printer.py:4585 -+#: ../system-config-printer.py:4600 - msgid "" - "Installing the plugin is optional, it completes or enhances the " - "functionality\n" -@@ -1217,220 +1226,216 @@ msgid "" - "\n" - msgstr "" - --#: ../system-config-printer.py:4589 -+#: ../system-config-printer.py:4604 - msgid "The plugin provides the following features:\n" - msgstr "" - --#: ../system-config-printer.py:4592 -+#: ../system-config-printer.py:4607 - msgid " - Printing support\n" - msgstr "" - --#: ../system-config-printer.py:4595 -+#: ../system-config-printer.py:4610 - msgid " - Faster printing\n" - msgstr "" - --#: ../system-config-printer.py:4598 -+#: ../system-config-printer.py:4613 - msgid " - Better printout quality\n" - msgstr "" - --#: ../system-config-printer.py:4601 -+#: ../system-config-printer.py:4616 - msgid " - Extra printing features\n" - msgstr "" - --#: ../system-config-printer.py:4604 -+#: ../system-config-printer.py:4619 - msgid " - Scanning support\n" - msgstr "" - --#: ../system-config-printer.py:4607 -+#: ../system-config-printer.py:4622 - msgid " - Faster scanning\n" - msgstr "" - --#: ../system-config-printer.py:4610 -+#: ../system-config-printer.py:4625 - msgid " - Better scanning image quality\n" - msgstr "" - --#: ../system-config-printer.py:4613 -+#: ../system-config-printer.py:4628 - msgid " - Faxing support\n" - msgstr "" - --#: ../system-config-printer.py:4616 -+#: ../system-config-printer.py:4631 - msgid " - Extra fax features\n" - msgstr "" - --#: ../system-config-printer.py:4619 -+#: ../system-config-printer.py:4634 - msgid " - Better Input/Output support\n" - msgstr "" - --#: ../system-config-printer.py:4622 -+#: ../system-config-printer.py:4637 - msgid " - Extra user interface features\n" - msgstr "" - --#: ../system-config-printer.py:4625 -+#: ../system-config-printer.py:4640 - msgid " - Other extra features\n" - msgstr "" - --#: ../system-config-printer.py:4630 -+#: ../system-config-printer.py:4645 - #, fuzzy - msgid "Install plugin" - msgstr "ಅನುಸ್ಥಾಪಿಸಬಲ್ಲ ಆಯ್ಕೆಗಳು" - --#: ../system-config-printer.py:4631 -+#: ../system-config-printer.py:4646 - #, fuzzy - msgid "Do not set up printer" - msgstr "ಮುದ್ರಕವನ್ನು ನಕಲಿಸು" - --#: ../system-config-printer.py:4632 -+#: ../system-config-printer.py:4647 - msgid "Set up without plugin" - msgstr "" - --#: ../system-config-printer.py:4634 ../troubleshoot/PrintTestPage.py:118 -+#: ../system-config-printer.py:4649 ../troubleshoot/PrintTestPage.py:118 - msgid "Yes" - msgstr "" - --#: ../system-config-printer.py:4635 ../troubleshoot/PrintTestPage.py:119 -+#: ../system-config-printer.py:4650 ../troubleshoot/PrintTestPage.py:119 - msgid "No" - msgstr "" - --#: ../system-config-printer.py:4809 ../system-config-printer.py:4813 -+#: ../system-config-printer.py:4824 ../system-config-printer.py:4828 - msgid " (Current)" - msgstr " (ಪ್ರಸ್ತುತ)" - --#: ../system-config-printer.py:4845 --msgid "HP Printer (HPLIP)" --msgstr "" -- --#: ../system-config-printer.py:4886 -+#: ../system-config-printer.py:4881 - msgid "Other" - msgstr "ಇತರೆ" - - #. device-info - #. PhysicalDevice obj - #. Separator? --#: ../system-config-printer.py:4902 -+#: ../system-config-printer.py:4897 - #, fuzzy - msgid "Network Printer" - msgstr "ಹೊಸ ಮುದ್ರಕ" - --#: ../system-config-printer.py:4906 -+#: ../system-config-printer.py:4901 - #, fuzzy - msgid "Find Network Printer" - msgstr "ಹೊಸ ಮುದ್ರಕ" - --#: ../system-config-printer.py:4979 ../system-config-printer.py:5376 -+#: ../system-config-printer.py:4974 ../system-config-printer.py:5371 - #, fuzzy - msgid "Scanning..." - msgstr "ಗಾತ್ರಿಸುವಿಕೆ:" - --#: ../system-config-printer.py:5034 ../system-config-printer.py:5798 -+#: ../system-config-printer.py:5029 - #, fuzzy - msgid "No Print Shares" - msgstr "ಹೊಸ ಮುದ್ರಕ" - --#: ../system-config-printer.py:5035 -+#: ../system-config-printer.py:5030 - msgid "" - "There were no print shares found. Please check that the Samba service is " - "marked as trusted in your firewall configuration." - msgstr "" - --#: ../system-config-printer.py:5296 ../system-config-printer.py:5357 -+#: ../system-config-printer.py:5291 ../system-config-printer.py:5352 - msgid "Print Share Verified" - msgstr "" - --#: ../system-config-printer.py:5297 ../system-config-printer.py:5358 -+#: ../system-config-printer.py:5292 ../system-config-printer.py:5353 - msgid "This print share is accessible." - msgstr "ಈ ಹಂಚಿಕಾ ಮುದ್ರಣವು ನಿಲುಕಿಸಿಕೊಳ್ಳಬಹುದಾಗಿದೆ." - --#: ../system-config-printer.py:5302 ../system-config-printer.py:5362 -+#: ../system-config-printer.py:5297 ../system-config-printer.py:5357 - msgid "This print share is not accessible." - msgstr "ಈ ಹಂಚಿಕಾ ಮುದ್ರಣವು ನಿಲುಕಿಸಿಕೊಳ್ಳಲಾಗುವುದಿಲ್ಲ." - --#: ../system-config-printer.py:5305 -+#: ../system-config-printer.py:5300 - #, fuzzy - msgid "Print Share Inaccessible" - msgstr "ಈ ಹಂಚಿಕಾ ಮುದ್ರಣವು ನಿಲುಕಿಸಿಕೊಳ್ಳಬಹುದಾಗಿದೆ." - --#: ../system-config-printer.py:5361 -+#: ../system-config-printer.py:5356 - msgid "Inaccessible" - msgstr "ನಿಲುಕುವುದಿಲ್ಲ" - --#: ../system-config-printer.py:5419 -+#: ../system-config-printer.py:5414 - #, fuzzy, python-format - msgid "It is not possible to obtain a list of queues from '%s'." - msgstr "CUPS ಪರಿಚಾರಕಕ್ಕೆ ಸಂಪರ್ಕ ಕಲ್ಪಿಸುವಲ್ಲಿ ಒಂದು ದೋಷ ಉಂಟಾಗಿದೆ." - --#: ../system-config-printer.py:5421 -+#: ../system-config-printer.py:5416 - msgid "" - "Obtaining a list of queues is a CUPS extension to IPP. Network printers do " - "not support it." - msgstr "" - --#: ../system-config-printer.py:5424 -+#: ../system-config-printer.py:5419 - msgid "No queues" - msgstr "" - --#: ../system-config-printer.py:5425 -+#: ../system-config-printer.py:5420 - msgid "There are no queues available." - msgstr "" - --#: ../system-config-printer.py:5516 -+#: ../system-config-printer.py:5511 - msgid "Parallel Port" - msgstr "" - --#: ../system-config-printer.py:5518 -+#: ../system-config-printer.py:5513 - #, fuzzy - msgid "Serial Port" - msgstr "ಸರಣಿ" - --#: ../system-config-printer.py:5520 -+#: ../system-config-printer.py:5515 - #, fuzzy - msgid "USB" - msgstr "SMB" - --#: ../system-config-printer.py:5522 ../system-config-printer.py:5525 -+#: ../system-config-printer.py:5517 ../system-config-printer.py:5520 - msgid "HP Linux Imaging and Printing (HPLIP)" - msgstr "" - --#: ../system-config-printer.py:5527 -+#: ../system-config-printer.py:5522 - #, fuzzy - msgid "Hardware Abstraction Layer (HAL)" - msgstr "" - "Hardware Abstraction Layer (HAL) ನಿಂದ ಒಂದು ಸ್ಥಳೀಯ ಮುದ್ರಕವು ಪತ್ತೆ ಮಾಡಲ್ಪಟ್ಟಿದೆ." - --#: ../system-config-printer.py:5529 -+#: ../system-config-printer.py:5524 - msgid "AppSocket/HP JetDirect" - msgstr "" - --#: ../system-config-printer.py:5538 -+#: ../system-config-printer.py:5533 - #, python-format - msgid "LPD/LPR queue '%s'" - msgstr "" - --#: ../system-config-printer.py:5540 -+#: ../system-config-printer.py:5535 - #, fuzzy - msgid "LPD/LPR queue" - msgstr "LPD" - --#: ../system-config-printer.py:5543 -+#: ../system-config-printer.py:5538 - msgid "Windows Printer via SAMBA" - msgstr "" - --#: ../system-config-printer.py:5545 ../glade/NewPrinterWindow.glade.h:66 -+#: ../system-config-printer.py:5540 ../glade/NewPrinterWindow.glade.h:65 - msgid "IPP" - msgstr "IPP" - --#: ../system-config-printer.py:5547 -+#: ../system-config-printer.py:5542 - msgid "HTTP" - msgstr "" - --#: ../system-config-printer.py:5632 -+#: ../system-config-printer.py:5624 - msgid "A printer connected to the parallel port." - msgstr "ಒಂದು ಮುದ್ರಕವು ಸಮಾನಾಂತರ ಪೋರ್ಟಿಗೆ ಸಂಪರ್ಕಿತಗೊಂಡಿದೆ." - --#: ../system-config-printer.py:5634 -+#: ../system-config-printer.py:5626 - msgid "A printer connected to a USB port." - msgstr "USB ಪೋರ್ಟಿಗೆ ಒಂದು ಮುದ್ರಕವು ಸಂಪರ್ಕಿತಗೊಂಡಿದೆ." - --#: ../system-config-printer.py:5636 -+#: ../system-config-printer.py:5628 - msgid "" - "HPLIP software driving a printer, or the printer function of a multi-" - "function device." -@@ -1438,7 +1443,7 @@ msgstr "" - "HPLIP ತಂತ್ರಾಂಶವು ಒಂದು ಮುದ್ರಕವನ್ನು, ಅಥವ ಒಂದು ಬಹುಕಾರ್ಯ ಸಾಧನದ ಒಂದು ಮುದ್ರಕ ಕಾರ್ಯವನ್ನು " - "ನಡೆಸುತ್ತಿದೆ." - --#: ../system-config-printer.py:5639 -+#: ../system-config-printer.py:5631 - msgid "" - "HPLIP software driving a fax machine, or the fax function of a multi-" - "function device." -@@ -1446,71 +1451,67 @@ msgstr "" - "HPLIP ತಂತ್ರಾಂಶವು ಒಂದು ಫ್ಯಾಕ್ಸ್ ಯಂತ್ರವನ್ನು, ಅಥವ ಒಂದು ಬಹುಕಾರ್ಯ ಸಾಧನದ ಒಂದು ಫಾಕ್ಸ್ " - "ಕಾರ್ಯವನ್ನು ನಡೆಸುತ್ತಿದೆ." - --#: ../system-config-printer.py:5642 -+#: ../system-config-printer.py:5634 - msgid "Local printer detected by the Hardware Abstraction Layer (HAL)." - msgstr "" - "Hardware Abstraction Layer (HAL) ನಿಂದ ಒಂದು ಸ್ಥಳೀಯ ಮುದ್ರಕವು ಪತ್ತೆ ಮಾಡಲ್ಪಟ್ಟಿದೆ." - --#: ../system-config-printer.py:5799 --msgid "HPLIP cannot find the device." --msgstr "" -- --#: ../system-config-printer.py:5881 -+#: ../system-config-printer.py:5831 - msgid "No printer was found at that address." - msgstr "" - --#: ../system-config-printer.py:6020 -+#: ../system-config-printer.py:5968 - #, fuzzy - msgid "-- Select from search results --" - msgstr "ದತ್ತಾಂಶದಿಂದ ಮುದ್ರಕವನ್ನು ಆಯ್ಕೆ ಮಾಡಿ" - --#: ../system-config-printer.py:6022 -+#: ../system-config-printer.py:5970 - msgid "-- No matches found --" - msgstr "" - --#: ../system-config-printer.py:6203 -+#: ../system-config-printer.py:6151 - msgid " (recommended)" - msgstr " (ಶಿಫಾರಸು ಮಾಡಲ್ಪಟ್ಟಿದೆ)" - --#: ../system-config-printer.py:6217 -+#: ../system-config-printer.py:6165 - msgid "This PPD is generated by foomatic." - msgstr "ಈ PPD ಯು foomatic ನಿಂದ ಉಂಟಾಗಿದೆ." - --#: ../system-config-printer.py:6241 -+#: ../system-config-printer.py:6189 - #, fuzzy - msgid "OpenPrinting" - msgstr "ಮುದ್ರಣ" - --#: ../system-config-printer.py:6252 -+#: ../system-config-printer.py:6200 - msgid "Distributable" - msgstr "" - --#: ../system-config-printer.py:6293 -+#: ../system-config-printer.py:6241 - #, fuzzy - msgid ", " - msgstr " " - --#: ../system-config-printer.py:6298 -+#: ../system-config-printer.py:6246 - #, python-format - msgid "" - "\n" - "(%s)" - msgstr "" - --#: ../system-config-printer.py:6303 -+#: ../system-config-printer.py:6251 - msgid "No support contacts known" - msgstr "" - --#: ../system-config-printer.py:6307 ../system-config-printer.py:6320 -+#: ../system-config-printer.py:6255 ../system-config-printer.py:6268 - msgid "Not specified." - msgstr "" - - #. Foomatic database problem of some sort. --#: ../system-config-printer.py:6360 -+#: ../system-config-printer.py:6308 - msgid "Database error" - msgstr "ದತ್ತಾಂಶ ದೋಷ" - --#: ../system-config-printer.py:6361 -+#: ../system-config-printer.py:6309 - #, python-format - msgid "The '%s' driver cannot be used with printer '%s %s'." - msgstr "ಚಾಲಕ '%s' ವು '%s %s' ಮುದ್ರಕದೊಂದಿಗೆ ಬಳಸಲಾಗುವುದಿಲ್ಲ." -@@ -1518,65 +1519,65 @@ msgstr "ಚಾಲಕ '%s' ವು '%s %s' - #. This printer references some XML that is not - #. installed by default. Point the user at the - #. package they need to install. --#: ../system-config-printer.py:6371 -+#: ../system-config-printer.py:6319 - #, python-format - msgid "You will need to install the '%s' package in order to use this driver." - msgstr "ಈ ಚಾಲಕವನ್ನು ಬಳಸಲು ನೀವು '%s' ಪ್ಯಾಕೇಜನ್ನು ಅಗತ್ಯವಾಗಿ ಅನುಸ್ಥಾಪಿಸಬೇಕಾಗುತ್ತದೆ." - - #. This error came from trying to open the PPD file. --#: ../system-config-printer.py:6378 -+#: ../system-config-printer.py:6326 - msgid "PPD error" - msgstr "PPD ದೋಷ" - --#: ../system-config-printer.py:6380 -+#: ../system-config-printer.py:6328 - msgid "Failed to read PPD file. Possible reason follows:" - msgstr "PPD ಕಡತವನ್ನು ಓದಲಾಗಿಲ್ಲ. ಸಂಭಾವ್ಯ ಕಾರಣಗಳು ಈ ಕೆಳಗಿನಂತಿವೆ:" - - #. Failed to get PPD downloaded from OpenPrinting XXX --#: ../system-config-printer.py:6397 -+#: ../system-config-printer.py:6345 - msgid "Downloadable drivers" - msgstr "" - --#: ../system-config-printer.py:6398 -+#: ../system-config-printer.py:6346 - msgid "Failed to download PPD." - msgstr "" - --#: ../system-config-printer.py:6405 -+#: ../system-config-printer.py:6353 - #, fuzzy - msgid "fetching PPD" - msgstr "PPDಯನ್ನು ಬದಲಾಯಿಸಿ" - --#: ../system-config-printer.py:6434 ../system-config-printer.py:6472 -+#: ../system-config-printer.py:6382 ../system-config-printer.py:6420 - #, fuzzy - msgid "No Installable Options" - msgstr "ಅನುಸ್ಥಾಪಿಸಬಲ್ಲ ಆಯ್ಕೆಗಳು" - --#: ../system-config-printer.py:6520 -+#: ../system-config-printer.py:6468 - #, fuzzy, python-format - msgid "adding printer %s" - msgstr "ಮುದ್ರಕವನ್ನು ಸ್ವರೂಪಿಸು" - --#: ../system-config-printer.py:6669 -+#: ../system-config-printer.py:6617 - msgid "Would you like to print a test page?" - msgstr "" - --#: ../system-config-printer.py:6722 -+#: ../system-config-printer.py:6670 - #, fuzzy - msgid "Install driver" - msgstr "ಚಾಲಕವನ್ನು ಪತ್ತೆಹಚ್ಚು" - --#: ../system-config-printer.py:6723 ../troubleshoot/CheckPPDSanity.py:131 -+#: ../system-config-printer.py:6671 ../troubleshoot/CheckPPDSanity.py:131 - #, fuzzy, python-format - msgid "Printer '%s' requires the %s package but it is not currently installed." - msgstr "" - "'%s' ಮುದ್ರಕಕ್ಕೆ %s ಪ್ಯಾಕೇಜಿನ ಅಗತ್ಯವಿದೆ, ಆದರೆ ಪ್ರಸ್ತುತ ಅದು ಅನುಸ್ಥಾಪಿತವಾಗಿಲ್ಲ. " - "ದಯವಿಟ್ಟು ಈ ಮುದ್ರಕವನ್ನು ಬಳಸುವ ಮೊದಲು ಅದನ್ನು ಅನುಸ್ಥಾಪಿಸಿ." - --#: ../system-config-printer.py:6739 -+#: ../system-config-printer.py:6687 - msgid "Missing driver" - msgstr "ಚಾಲಕವು ಕಾಣೆಯಾಗಿದೆ" - --#: ../system-config-printer.py:6740 -+#: ../system-config-printer.py:6688 - #, python-format - msgid "" - "Printer '%s' requires the '%s' program but it is not currently installed. " -@@ -1706,133 +1707,128 @@ msgstr "ಸಾಧನ URI ಅನ್ನು - - #: ../glade/NewPrinterWindow.glade.h:5 - #, fuzzy --msgid "HP Printer (HPLIP) via network" --msgstr "ಗಣಕದ ಹೆಸರು" -- --#: ../glade/NewPrinterWindow.glade.h:6 --#, fuzzy - msgid "IPP Printer" - msgstr "ಗಣಕದ ಹೆಸರು" - --#: ../glade/NewPrinterWindow.glade.h:7 -+#: ../glade/NewPrinterWindow.glade.h:6 - #, fuzzy - msgid "License Terms" - msgstr "ಗಣಕದ ಹೆಸರು" - --#: ../glade/NewPrinterWindow.glade.h:8 -+#: ../glade/NewPrinterWindow.glade.h:7 - msgid "Location of the LPD network printer" - msgstr "LPD ಜಾಲಬಂಧ ಮುದ್ರಕವಿರುವ ತಾಣ" - --#: ../glade/NewPrinterWindow.glade.h:9 -+#: ../glade/NewPrinterWindow.glade.h:8 - msgid "Location of the network printer" - msgstr "ಜಾಲಬಂಧ ಮುದ್ರಕವಿರುವ ತಾಣ" - --#: ../glade/NewPrinterWindow.glade.h:10 -+#: ../glade/NewPrinterWindow.glade.h:9 - msgid "Location (optional)" - msgstr "ತಾಣ (ಐಚ್ಛಿಕ)" - --#: ../glade/NewPrinterWindow.glade.h:11 -+#: ../glade/NewPrinterWindow.glade.h:10 - #, fuzzy - msgid "Network Printer" - msgstr "ಹೊಸ ಮುದ್ರಕ" - --#: ../glade/NewPrinterWindow.glade.h:12 -+#: ../glade/NewPrinterWindow.glade.h:11 - #, fuzzy - msgid "Note" - msgstr "ಸ್ಥಿತಿ" - --#: ../glade/NewPrinterWindow.glade.h:13 -+#: ../glade/NewPrinterWindow.glade.h:12 - #, fuzzy - msgid "Output Quality" - msgstr "ಸ್ಥಿತಿ" - --#: ../glade/NewPrinterWindow.glade.h:14 -+#: ../glade/NewPrinterWindow.glade.h:13 - msgid "Printer Name" - msgstr "ಗಣಕದ ಹೆಸರು" - --#: ../glade/NewPrinterWindow.glade.h:15 -+#: ../glade/NewPrinterWindow.glade.h:14 - #, fuzzy - msgid "SMB Printer" - msgstr "ಗಣಕದ ಹೆಸರು" - --#: ../glade/NewPrinterWindow.glade.h:16 -+#: ../glade/NewPrinterWindow.glade.h:15 - #, fuzzy - msgid "Select Driver" - msgstr "ಡೀಫಾಲ್ಟ್ ಮುದ್ರಕ" - --#: ../glade/NewPrinterWindow.glade.h:17 -+#: ../glade/NewPrinterWindow.glade.h:16 - msgid "Settings of the serial port" - msgstr "ಅನುಕ್ರಮಿತ ಪೋರ್ಟಿನ ಸಂಯೋಜನೆಗಳು" - --#: ../glade/NewPrinterWindow.glade.h:18 -+#: ../glade/NewPrinterWindow.glade.h:17 - msgid "smb://[workgroup/]server[:port]/printer" - msgstr "smb://[workgroup/]server[:port]/printer" - --#: ../glade/NewPrinterWindow.glade.h:19 -+#: ../glade/NewPrinterWindow.glade.h:18 - #, fuzzy - msgid "Choose Class Members" - msgstr "" - "ಗುಪ್ತಪದದ ಅಗತ್ಯವಿದೆ\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:20 -+#: ../glade/NewPrinterWindow.glade.h:19 - #, fuzzy - msgid "Choose Driver" - msgstr "" - "ಗುಪ್ತಪದದ ಅಗತ್ಯವಿದೆ\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:21 -+#: ../glade/NewPrinterWindow.glade.h:20 - #, fuzzy - msgid "Describe Printer" - msgstr "" - "ಗುಪ್ತಪದದ ಅಗತ್ಯವಿದೆ\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:22 -+#: ../glade/NewPrinterWindow.glade.h:21 - #, fuzzy - msgid "Existing Settings" - msgstr "" - "ಗುಪ್ತಪದದ ಅಗತ್ಯವಿದೆ\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:23 -+#: ../glade/NewPrinterWindow.glade.h:22 - #, fuzzy - msgid "Installable Options" - msgstr "" - "ಗುಪ್ತಪದದ ಅಗತ್ಯವಿದೆ\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:24 -+#: ../glade/NewPrinterWindow.glade.h:23 - #, fuzzy - msgid "Select Device" - msgstr "" - "ಗುಪ್ತಪದದ ಅಗತ್ಯವಿದೆ\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:25 -+#: ../glade/NewPrinterWindow.glade.h:24 - msgid "Baud Rate" - msgstr "Baud ದರ" - --#: ../glade/NewPrinterWindow.glade.h:26 -+#: ../glade/NewPrinterWindow.glade.h:25 - msgid "Browse..." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:27 -+#: ../glade/NewPrinterWindow.glade.h:26 - #, fuzzy - msgid "Comments..." - msgstr "ಅಭಿಪ್ರಾಯ" - --#: ../glade/NewPrinterWindow.glade.h:28 -+#: ../glade/NewPrinterWindow.glade.h:27 - #, fuzzy - msgid "Connection" - msgstr "ಸಂಪರ್ಕ ಕಲ್ಪಿಸುತ್ತಿದೆ" - --#: ../glade/NewPrinterWindow.glade.h:29 -+#: ../glade/NewPrinterWindow.glade.h:28 - msgid "Data Bits" - msgstr "ದತ್ತಾಂಶ ಬಿಟ್ಸ್" - --#: ../glade/NewPrinterWindow.glade.h:30 -+#: ../glade/NewPrinterWindow.glade.h:29 - msgid "" - "Default\n" - "1200\n" -@@ -1854,7 +1850,7 @@ msgstr "" - "57600\n" - "115200" - --#: ../glade/NewPrinterWindow.glade.h:39 -+#: ../glade/NewPrinterWindow.glade.h:38 - msgid "" - "Default\n" - "8\n" -@@ -1864,7 +1860,7 @@ msgstr "" - "8\n" - "7" - --#: ../glade/NewPrinterWindow.glade.h:42 -+#: ../glade/NewPrinterWindow.glade.h:41 - msgid "" - "Default\n" - "None\n" -@@ -1876,7 +1872,7 @@ msgstr "" - "ಬೆಸ\n" - "ಸರಿ" - --#: ../glade/NewPrinterWindow.glade.h:46 -+#: ../glade/NewPrinterWindow.glade.h:45 - msgid "" - "Default\n" - "None\n" -@@ -1890,120 +1886,120 @@ msgstr "" - "RTS/CTS (ಯಂತ್ರಾಂಶ)\n" - "DTR/DSR (ಯಂತ್ರಾಂಶ)" - --#: ../glade/NewPrinterWindow.glade.h:51 -+#: ../glade/NewPrinterWindow.glade.h:50 - #: ../glade/PrinterPropertiesDialog.glade.h:35 - msgid "Description:" - msgstr "ವಿವರಣೆ:" - --#: ../glade/NewPrinterWindow.glade.h:52 ../troubleshoot/DeviceListed.py:40 -+#: ../glade/NewPrinterWindow.glade.h:51 ../troubleshoot/DeviceListed.py:40 - msgid "Device URI" - msgstr "ಸಾಧನ URI" - --#: ../glade/NewPrinterWindow.glade.h:53 -+#: ../glade/NewPrinterWindow.glade.h:52 - msgid "Device description." - msgstr "ಸಾಧನ ವಿವರಣೆ." - --#: ../glade/NewPrinterWindow.glade.h:54 -+#: ../glade/NewPrinterWindow.glade.h:53 - msgid "DirectJet" - msgstr "ಡೈರೆಕ್ಟ್-ಜೆಟ್" - --#: ../glade/NewPrinterWindow.glade.h:56 -+#: ../glade/NewPrinterWindow.glade.h:55 - #, fuzzy - msgid "Driver details" - msgstr "ಚಾಲಕಗಳು" - --#: ../glade/NewPrinterWindow.glade.h:57 -+#: ../glade/NewPrinterWindow.glade.h:56 - msgid "Empty" - msgstr "ಖಾಲಿ" - --#: ../glade/NewPrinterWindow.glade.h:58 -+#: ../glade/NewPrinterWindow.glade.h:57 - msgid "Find _Queue..." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:59 -+#: ../glade/NewPrinterWindow.glade.h:58 - msgid "Flow Control" - msgstr "ಹರಿವಿನ ನಿಯಂತ್ರಣ" - --#: ../glade/NewPrinterWindow.glade.h:60 -+#: ../glade/NewPrinterWindow.glade.h:59 - msgid "" - "For the printer you have selected there are drivers available for download." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:61 -+#: ../glade/NewPrinterWindow.glade.h:60 - msgid "Free software" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:62 -+#: ../glade/NewPrinterWindow.glade.h:61 - msgid "Graphics:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:63 -+#: ../glade/NewPrinterWindow.glade.h:62 - #, fuzzy - msgid "Host:" - msgstr "ಸಂಕುಲನಾಮ" - --#: ../glade/NewPrinterWindow.glade.h:64 -+#: ../glade/NewPrinterWindow.glade.h:63 - msgid "Human-readable description such as \"HP LaserJet with Duplexer\"" - msgstr "\"Duplexer ಅನ್ನು ಹೊಂದಿರುವ HP LaserJet\" ನಂತಹ ಮನುಷ್ಯರು ಓದಬಲ್ಲ ವಿವರಣೆಗಳು" - --#: ../glade/NewPrinterWindow.glade.h:65 -+#: ../glade/NewPrinterWindow.glade.h:64 - msgid "Human-readable location such as \"Lab 1\"" - msgstr "\"Lab 1\" ನಂತಹ ಮನುಷ್ಯರು ಓದಬಲ್ಲ ತಾಣಗಳು" - --#: ../glade/NewPrinterWindow.glade.h:67 -+#: ../glade/NewPrinterWindow.glade.h:66 - msgid "LPD" - msgstr "LPD" - --#: ../glade/NewPrinterWindow.glade.h:68 -+#: ../glade/NewPrinterWindow.glade.h:67 - msgid "License:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:69 -+#: ../glade/NewPrinterWindow.glade.h:68 - #, fuzzy - msgid "Line art:" - msgstr "ಮುದ್ರಕದ ಸ್ಥಿತಿ:" - --#: ../glade/NewPrinterWindow.glade.h:70 -+#: ../glade/NewPrinterWindow.glade.h:69 - #, fuzzy - msgid "Local Driver" - msgstr "ಸ್ಥಳೀಯ ಮುದ್ರಕಗಳು" - --#: ../glade/NewPrinterWindow.glade.h:71 -+#: ../glade/NewPrinterWindow.glade.h:70 - #, fuzzy - msgid "Make and model:" - msgstr "ತಯಾರಕರು ಹಾಗು ಮಾದರಿ:" - --#: ../glade/NewPrinterWindow.glade.h:72 -+#: ../glade/NewPrinterWindow.glade.h:71 - msgid "Manufacturer" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:73 -+#: ../glade/NewPrinterWindow.glade.h:72 - #, fuzzy - msgid "Network" - msgstr "ಹೊಸ ಮುದ್ರಕ" - --#: ../glade/NewPrinterWindow.glade.h:75 -+#: ../glade/NewPrinterWindow.glade.h:74 - msgid "No, I do not accept this license" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:76 -+#: ../glade/NewPrinterWindow.glade.h:75 - msgid "Parity" - msgstr "ಅನುರೂಪತೆ" - --#: ../glade/NewPrinterWindow.glade.h:78 -+#: ../glade/NewPrinterWindow.glade.h:77 - msgid "Patented algorithms" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:79 -+#: ../glade/NewPrinterWindow.glade.h:78 - msgid "Photo:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:80 -+#: ../glade/NewPrinterWindow.glade.h:79 - #, fuzzy - msgid "Port number:" - msgstr "ಪೋರ್ಟ್ ಸಂಖ್ಯೆ" - --#: ../glade/NewPrinterWindow.glade.h:81 -+#: ../glade/NewPrinterWindow.glade.h:80 - #, fuzzy - msgid "" - "PostScript Printer Description (PPD) files can often be found on the driver " -@@ -2014,82 +2010,82 @@ msgstr "" - "ಚಾಲಕ ಡಿಸ್ಕಿನಲ್ಲಿ ಕಂಡು ಬರುತ್ತವೆ. ಅವು PostScript ಮುದ್ರಕಕ್ಕೆ ಹೆಚ್ಚಾಗಿ Windows® ಚಾಲಕದ ಒಂದು ಭಾಗವಾಗಿರುತ್ತವೆ." - --#: ../glade/NewPrinterWindow.glade.h:82 -+#: ../glade/NewPrinterWindow.glade.h:81 - #, fuzzy - msgid "Printer model:" - msgstr "ಸೇರ್ಪಡಿಸಲಾದ ಮುದ್ರಕ" - --#: ../glade/NewPrinterWindow.glade.h:83 -+#: ../glade/NewPrinterWindow.glade.h:82 - msgid "Probe" - msgstr "ತನಿಖೆ" - --#: ../glade/NewPrinterWindow.glade.h:84 -+#: ../glade/NewPrinterWindow.glade.h:83 - #, fuzzy - msgid "Prompt user if authentication is required" - msgstr "ದೃಢೀಕರಣ" - --#: ../glade/NewPrinterWindow.glade.h:85 -+#: ../glade/NewPrinterWindow.glade.h:84 - #, fuzzy - msgid "Provide PPD file" - msgstr "PPD ಕಡತವನ್ನು ಒದಗಿಸು" - --#: ../glade/NewPrinterWindow.glade.h:86 -+#: ../glade/NewPrinterWindow.glade.h:85 - msgid "Queue:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:87 -+#: ../glade/NewPrinterWindow.glade.h:86 - msgid "SCSI" - msgstr "SCSI" - --#: ../glade/NewPrinterWindow.glade.h:88 -+#: ../glade/NewPrinterWindow.glade.h:87 - msgid "SMB" - msgstr "SMB" - --#: ../glade/NewPrinterWindow.glade.h:89 -+#: ../glade/NewPrinterWindow.glade.h:88 - msgid "Search for a printer driver to download" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:90 -+#: ../glade/NewPrinterWindow.glade.h:89 - #, fuzzy - msgid "Searching..." - msgstr "ಗಾತ್ರಿಸುವಿಕೆ:" - --#: ../glade/NewPrinterWindow.glade.h:91 -+#: ../glade/NewPrinterWindow.glade.h:90 - msgid "Select A File" - msgstr "ಒಂದು ಕಡತವನ್ನು ಆರಿಸು" - --#: ../glade/NewPrinterWindow.glade.h:92 -+#: ../glade/NewPrinterWindow.glade.h:91 - #, fuzzy - msgid "Select printer from database" - msgstr "ದತ್ತಾಂಶದಿಂದ ಮುದ್ರಕವನ್ನು ಆಯ್ಕೆ ಮಾಡಿ" - --#: ../glade/NewPrinterWindow.glade.h:93 -+#: ../glade/NewPrinterWindow.glade.h:92 - msgid "Serial" - msgstr "ಸರಣಿ" - --#: ../glade/NewPrinterWindow.glade.h:94 -+#: ../glade/NewPrinterWindow.glade.h:93 - #, fuzzy - msgid "Set authentication details now" - msgstr "ದೃಢೀಕರಣ" - --#: ../glade/NewPrinterWindow.glade.h:95 -+#: ../glade/NewPrinterWindow.glade.h:94 - msgid "Short name for this printer such as \"laserjet\"" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:96 -+#: ../glade/NewPrinterWindow.glade.h:95 - msgid "Supplier:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:97 -+#: ../glade/NewPrinterWindow.glade.h:96 - msgid "Support:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:98 -+#: ../glade/NewPrinterWindow.glade.h:97 - #, fuzzy - msgid "Text:" - msgstr "ಪುನಃ ಹೊಂದಿಸು" - --#: ../glade/NewPrinterWindow.glade.h:99 -+#: ../glade/NewPrinterWindow.glade.h:98 - msgid "" - "The foomatic printer database contains various manufacturer provided " - "PostScript Printer Description (PPD) files and also can generate PPD files " -@@ -2102,20 +2098,20 @@ msgstr "" - "ಅಲ್ಲದ) ಮುದ್ರಕಗಳಿಗೆ PPD ಕಡತಗಳನ್ನು ಸಹ ನಿರ್ಮಿಸಬಲ್ಲದು. ಆದರೆ ಸಾಮಾನ್ಯವಾಗಿ ತಯಾರಕರು " - "ಒದಗಿಸಿದ PPD ಕಡತಗಳು ಮುದ್ರಕದ ಕೆಲವೊಂದು ನಿಗದಿತ ಭಾಗಗಳಿಗೆ ಉತ್ತಮ ಪ್ರವೇಶವನ್ನು ಒದಗಿಸುತ್ತವೆ." - --#: ../glade/NewPrinterWindow.glade.h:100 -+#: ../glade/NewPrinterWindow.glade.h:99 - msgid "" - "These drivers do not come from your operating system supplier and will not " - "be covered by their commercial support. See the support and license terms " - "of the driver's supplier." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:101 -+#: ../glade/NewPrinterWindow.glade.h:100 - msgid "" - "This driver supports additional hardware that may be installed in the " - "printer." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:102 -+#: ../glade/NewPrinterWindow.glade.h:101 - msgid "" - "This is done by assuming that options with the same name do have the same " - "meaning. Settings of options that are not present in the new PPD will be " -@@ -2125,7 +2121,7 @@ msgstr "" - "ಮಾಡಲಾಗಿದೆ. ಹೊಸ PPD ಯಲ್ಲಿ ಇರದೇ ಹೋದ ಆಯ್ಕೆಗಳನ್ನು ಹೊಂದಿಸುವುದರೆ ಅವು ಇಲ್ಲವಾಗಿ ಬಿಡುತ್ತವೆ " - "ಹಾಗು ಹೊಸ PPD ಯಲ್ಲಿರುವ ಆಯ್ಕೆಗಳು ಮಾತ್ರ ಡೀಫಾಲ್ಟ್ ಆಗಿ ಸಂಯೋಜಿಸಲ್ಪಡುತ್ತವೆ." - --#: ../glade/NewPrinterWindow.glade.h:103 -+#: ../glade/NewPrinterWindow.glade.h:102 - msgid "" - "This way all current option settings will be lost. The default settings of " - "the new PPD will be used. " -@@ -2133,43 +2129,43 @@ msgstr "" - "ಈ ರೀತಿಯಾಗಿ ಪ್ರಸ್ತುತ ಇರುವ ಎಲ್ಲಾ ಆಯ್ಕೆಗಳು ಇಲ್ಲವಾಗುತ್ತವೆ. ಹೊಸ PPD ಯ ಡೀಫಾಲ್ಟ್ ಸಂಯೋಜನೆಗಳು " - "ಬಳಸಲ್ಪಡುತ್ತವೆ. " - --#: ../glade/NewPrinterWindow.glade.h:104 -+#: ../glade/NewPrinterWindow.glade.h:103 - msgid "Try to copy the option settings over from the old PPD. " - msgstr "ಹಳೆ PPD ಇಂದ ಆಯ್ಕೆಯ ಸಂಯೋಜನೆಗಳನ್ನು ನಕಲಿಸಲು ಪ್ರಯತ್ನಿಸಿ. " - --#: ../glade/NewPrinterWindow.glade.h:105 -+#: ../glade/NewPrinterWindow.glade.h:104 - msgid "URI:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:107 -+#: ../glade/NewPrinterWindow.glade.h:106 - msgid "Use the new PPD (Postscript Printer Description) as is." - msgstr "ಹೊಸ PPD ಯನ್ನು (Postscript Printer Description) ಅದು ಇದ್ದ ಹಾಗೆಯೇ ಬಳಸಿ." - --#: ../glade/NewPrinterWindow.glade.h:109 -+#: ../glade/NewPrinterWindow.glade.h:108 - msgid "" - "With this choice no driver download will be performed. In the next steps a " - "locally installed driver will be selected." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:110 -+#: ../glade/NewPrinterWindow.glade.h:109 - #, fuzzy - msgid "Yes, I accept this license" - msgstr "ಕಾರ್ಯಗಳನ್ನು ಒಪ್ಪಿಕೊಳ್ಳುತ್ತಿದೆ" - --#: ../glade/NewPrinterWindow.glade.h:111 -+#: ../glade/NewPrinterWindow.glade.h:110 - msgid "_Search" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:112 -+#: ../glade/NewPrinterWindow.glade.h:111 - msgid "_Verify..." - msgstr "ಪರೀಕ್ಷಿಸು (_V)..." - --#: ../glade/NewPrinterWindow.glade.h:113 -+#: ../glade/NewPrinterWindow.glade.h:112 - #: ../glade/PrinterPropertiesDialog.glade.h:128 - msgid "move left" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:114 -+#: ../glade/NewPrinterWindow.glade.h:113 - #: ../glade/PrinterPropertiesDialog.glade.h:129 - #, fuzzy - msgid "move right" -@@ -3113,7 +3109,7 @@ msgstr "" - msgid "Remember to load paper of type '%s' into the printer first." - msgstr "" - --#: ../troubleshoot/PrintTestPage.py:399 -+#: ../troubleshoot/PrintTestPage.py:416 - msgid "Error submitting test page" - msgstr "" - -@@ -3309,6 +3305,10 @@ msgid "Select default printer" - msgstr "ಮುದ್ರಕವನ್ನು ಡೀಫಾಲ್ಟ್ ಆಗಿಸಿ" - - #, fuzzy -+#~ msgid "HP Printer (HPLIP) via network" -+#~ msgstr "ಗಣಕದ ಹೆಸರು" -+ -+#, fuzzy - #~ msgid "Not Found" - #~ msgstr "ಕಂಡು ಬಂದಿಲ್ಲ" - -diff -up system-config-printer-1.1.5/po/ko.po.git-1.1.x system-config-printer-1.1.5/po/ko.po ---- system-config-printer-1.1.5/po/ko.po.git-1.1.x 2009-03-03 22:21:46.000000000 +0000 -+++ system-config-printer-1.1.5/po/ko.po 2009-03-10 17:43:31.000000000 +0000 -@@ -7,7 +7,7 @@ msgid "" - msgstr "" - "Project-Id-Version: system-config-printer.1.1.x\n" - "Report-Msgid-Bugs-To: https://bugzilla.redhat.com/bugzilla\n" --"POT-Creation-Date: 2009-03-02 23:22+0000\n" -+"POT-Creation-Date: 2009-03-10 16:51+0000\n" - "PO-Revision-Date: 2009-02-03 15:21+1000\n" - "Last-Translator: Eunju Kim \n" - "Language-Team: Korean \n" -@@ -56,11 +56,11 @@ msgstr "" - msgid "Enter IP address" - msgstr "IP 주소 입력 " - --#: ../authconn.py:35 ../glade/NewPrinterWindow.glade.h:108 -+#: ../authconn.py:35 ../glade/NewPrinterWindow.glade.h:107 - msgid "Username:" - msgstr "사용자 이름:" - --#: ../authconn.py:36 ../glade/NewPrinterWindow.glade.h:77 -+#: ../authconn.py:36 ../glade/NewPrinterWindow.glade.h:76 - msgid "Password:" - msgstr "암호: " - -@@ -68,7 +68,7 @@ msgstr "암호: " - msgid "Domain:" - msgstr "도메인: " - --#: ../authconn.py:46 -+#: ../authconn.py:46 ../authconn.py:409 - msgid "Authentication" - msgstr "인증" - -@@ -76,43 +76,52 @@ msgstr "인증" - msgid "Remember password" - msgstr "암호 기억 " - --#: ../authconn.py:211 ../authconn.py:232 -+#: ../authconn.py:208 -+#, python-format -+msgid "Unauthorized request (%s)" -+msgstr "" -+ -+#: ../authconn.py:209 -+msgid "You are not authorized to carry out therequested action." -+msgstr "" -+ -+#: ../authconn.py:212 ../authconn.py:233 - msgid "Operation canceled" - msgstr "작업 취소 " - --#: ../authconn.py:253 -+#: ../authconn.py:250 - #, python-format - msgid "CUPS server error (%s)" - msgstr "CUPS 서버 오류 (%s) " - --#: ../authconn.py:255 ../errordialogs.py:57 --#: ../troubleshoot/PrintTestPage.py:400 -+#: ../authconn.py:252 ../errordialogs.py:56 ../errordialogs.py:70 -+msgid "CUPS server error" -+msgstr "CUPS 서버 오류 " -+ -+#: ../authconn.py:261 ../errordialogs.py:57 -+#: ../troubleshoot/PrintTestPage.py:417 - #, python-format - msgid "There was an error during the CUPS operation: '%s'." - msgstr "CUPS 가동 도중 오류가 발생했습니다:'%s'." - --#: ../authconn.py:258 -+#: ../authconn.py:264 - msgid "Retry" - msgstr "다시 시도 " - --#: ../authconn.py:379 ../authconn.py:381 ../errordialogs.py:65 ../pysmb.py:75 -+#: ../authconn.py:385 ../authconn.py:387 ../errordialogs.py:65 ../pysmb.py:75 - #: ../pysmb.py:77 - msgid "Not authorized" - msgstr "권한이 없습니다" - --#: ../authconn.py:382 ../pysmb.py:78 -+#: ../authconn.py:388 ../pysmb.py:78 - msgid "The password may be incorrect." - msgstr "암호가 일치하지 않습니다. " - --#: ../authconn.py:400 -+#: ../authconn.py:407 - #, python-format - msgid "Authentication (%s)" - msgstr "인증 (%s) " - --#: ../errordialogs.py:56 ../errordialogs.py:70 --msgid "CUPS server error" --msgstr "CUPS 서버 오류 " -- - #: ../errordialogs.py:66 - msgid "" - "The password may be incorrect, or the server may be configured to deny " -@@ -140,7 +149,7 @@ msgstr "업그레이드 필요" - msgid "Server error" - msgstr "서버 오류" - --#: ../errordialogs.py:82 ../system-config-printer.py:1219 -+#: ../errordialogs.py:82 ../system-config-printer.py:1223 - msgid "Not connected" - msgstr "접속되지 않음" - -@@ -162,7 +171,7 @@ msgstr "새 그룹(_N) " - msgid "_New Group from Selection" - msgstr "" - --#: ../GroupsPane.py:98 ../system-config-printer.py:393 -+#: ../GroupsPane.py:98 ../system-config-printer.py:397 - msgid "_Rename" - msgstr "이름 변경(_R) " - -@@ -228,7 +237,7 @@ msgid "Document" - msgstr "문서" - - #: ../jobviewer.py:212 ../my-default-printer.py:153 --#: ../system-config-printer.py:366 ../system-config-printer.py:1367 -+#: ../system-config-printer.py:370 ../system-config-printer.py:1371 - #: ../troubleshoot/PrintTestPage.py:84 - msgid "Printer" - msgstr "프린터" -@@ -265,8 +274,8 @@ msgstr "문서 인쇄 상태 (%s)" - - #: ../jobviewer.py:386 ../jobviewer.py:451 ../jobviewer.py:452 - #: ../jobviewer.py:492 ../jobviewer.py:600 ../jobviewer.py:727 --#: ../jobviewer.py:1196 ../jobviewer.py:1222 ../system-config-printer.py:2546 --#: ../glade/NewPrinterWindow.glade.h:106 -+#: ../jobviewer.py:1196 ../jobviewer.py:1222 ../system-config-printer.py:2556 -+#: ../glade/NewPrinterWindow.glade.h:105 - #: ../troubleshoot/ChooseNetworkPrinter.py:101 - #: ../troubleshoot/ChooseNetworkPrinter.py:102 - #: ../troubleshoot/ChooseNetworkPrinter.py:105 -@@ -358,12 +367,12 @@ msgstr "대기 (만료 시간):" - msgid "Pending" - msgstr "보류" - --#: ../jobviewer.py:591 ../system-config-printer.py:186 -+#: ../jobviewer.py:591 ../system-config-printer.py:190 - #: ../troubleshoot/PrintTestPage.py:43 - msgid "Processing" - msgstr "처리중" - --#: ../jobviewer.py:592 ../system-config-printer.py:188 -+#: ../jobviewer.py:592 ../system-config-printer.py:192 - #: ../troubleshoot/PrintTestPage.py:44 - msgid "Stopped" - msgstr "정지됨" -@@ -473,8 +482,8 @@ msgstr "시스템의 기본값 사용(_U - msgid "_Set Default" - msgstr "기본 설정(_S)" - --#: ../my-default-printer.py:158 ../system-config-printer.py:423 --#: ../system-config-printer.py:3660 ../troubleshoot/ChooseNetworkPrinter.py:37 -+#: ../my-default-printer.py:158 ../system-config-printer.py:427 -+#: ../system-config-printer.py:3675 ../troubleshoot/ChooseNetworkPrinter.py:37 - #: ../troubleshoot/ChoosePrinter.py:38 - msgid "Location" - msgstr "위치" -@@ -504,7 +513,7 @@ msgstr "기본 프린터" - msgid "Authenticated" - msgstr "인증됨 " - --#: ../ppdippstr.py:50 ../system-config-printer.py:6259 -+#: ../ppdippstr.py:50 ../system-config-printer.py:6207 - msgid "None" - msgstr "없음 " - -@@ -723,126 +732,126 @@ msgstr "" - msgid "1200 dpi, photo, black + color cartridge, photo paper" - msgstr "" - --#: ../system-config-printer.py:127 -+#: ../system-config-printer.py:131 - msgid "To do this, select System->Administration->Firewall from the main menu." - msgstr "" - --#: ../system-config-printer.py:185 -+#: ../system-config-printer.py:189 - msgid "Idle" - msgstr "유휴" - --#: ../system-config-printer.py:187 -+#: ../system-config-printer.py:191 - msgid "Busy" - msgstr "작업중" - --#: ../system-config-printer.py:372 ../system-config-printer.py:1373 -+#: ../system-config-printer.py:376 ../system-config-printer.py:1377 - msgid "Class" - msgstr "클래스 " - --#: ../system-config-printer.py:399 -+#: ../system-config-printer.py:403 - #, fuzzy - msgid "Set As De_fault" - msgstr "기본 설정(_S)" - --#: ../system-config-printer.py:403 -+#: ../system-config-printer.py:407 - msgid "_Create class" - msgstr "클래스 생성(_C) " - --#: ../system-config-printer.py:405 -+#: ../system-config-printer.py:409 - #, fuzzy - msgid "View Print _Queue" - msgstr "새 프린터" - --#: ../system-config-printer.py:407 -+#: ../system-config-printer.py:411 - msgid "_Add to Group" - msgstr "그룹에 추가(_A) " - --#: ../system-config-printer.py:409 -+#: ../system-config-printer.py:413 - msgid "Save Results as _Group" - msgstr "" - --#: ../system-config-printer.py:411 -+#: ../system-config-printer.py:415 - msgid "Save Filter as _Search Group" - msgstr "" - --#: ../system-config-printer.py:415 -+#: ../system-config-printer.py:419 - msgid "E_nabled" - msgstr "활성화(_N) " - --#: ../system-config-printer.py:417 -+#: ../system-config-printer.py:421 - msgid "_Shared" - msgstr "공유(_S) " - --#: ../system-config-printer.py:421 ../troubleshoot/ChooseNetworkPrinter.py:35 -+#: ../system-config-printer.py:425 ../troubleshoot/ChooseNetworkPrinter.py:35 - #: ../troubleshoot/ChoosePrinter.py:36 ../troubleshoot/DeviceListed.py:36 - msgid "Name" - msgstr "이름" - --#: ../system-config-printer.py:422 -+#: ../system-config-printer.py:426 - msgid "Description" - msgstr "설명 " - --#: ../system-config-printer.py:424 -+#: ../system-config-printer.py:428 - msgid "Manufacturer / Model" - msgstr "제조 업체 / 모델 " - - #. Printer state reasons list --#: ../system-config-printer.py:499 -+#: ../system-config-printer.py:503 - msgid "Message" - msgstr "메세지" - --#: ../system-config-printer.py:534 -+#: ../system-config-printer.py:538 - #, fuzzy - msgid "Problems?" - msgstr "추적" - --#: ../system-config-printer.py:637 ../system-config-printer.py:639 -+#: ../system-config-printer.py:641 ../system-config-printer.py:643 - msgid "Members of this class" - msgstr "이 클래스의 멤버" - --#: ../system-config-printer.py:638 ../system-config-printer.py:640 -+#: ../system-config-printer.py:642 ../system-config-printer.py:644 - msgid "Others" - msgstr "기타" - --#: ../system-config-printer.py:641 -+#: ../system-config-printer.py:645 - msgid "Devices" - msgstr "장치 " - --#: ../system-config-printer.py:642 -+#: ../system-config-printer.py:646 - msgid "Connections" - msgstr "연결 " - --#: ../system-config-printer.py:643 -+#: ../system-config-printer.py:647 - msgid "Makes" - msgstr "제조회사" - --#: ../system-config-printer.py:644 -+#: ../system-config-printer.py:648 - msgid "Models" - msgstr "모델 " - --#: ../system-config-printer.py:645 -+#: ../system-config-printer.py:649 - msgid "Drivers" - msgstr "드라이버 " - --#: ../system-config-printer.py:646 ../glade/NewPrinterWindow.glade.h:55 -+#: ../system-config-printer.py:650 ../glade/NewPrinterWindow.glade.h:54 - msgid "Downloadable Drivers" - msgstr "다운로드 가능한 드라이버 " - --#: ../system-config-printer.py:647 -+#: ../system-config-printer.py:651 - msgid "Users" - msgstr "사용자 " - --#: ../system-config-printer.py:682 -+#: ../system-config-printer.py:686 - msgid "Automatic rotation" - msgstr "" - --#: ../system-config-printer.py:989 -+#: ../system-config-printer.py:993 - #, fuzzy, python-format - msgid "Printer Properties - '%s' on %s" - msgstr "프린터 상태 보고" - - #. The Conflict button was pressed. --#: ../system-config-printer.py:996 -+#: ../system-config-printer.py:1000 - msgid "" - "There are conflicting options.\n" - "Changes can only be applied after\n" -@@ -852,79 +861,79 @@ msgstr "" - "충돌이 해결된 후에\n" - "변경할 수 있습니다." - --#: ../system-config-printer.py:1214 -+#: ../system-config-printer.py:1218 - #, python-format - msgid "Printer configuration - %s" - msgstr "프린터 설정 - %s" - --#: ../system-config-printer.py:1217 -+#: ../system-config-printer.py:1221 - #, python-format - msgid "Connected to %s" - msgstr "%s에 접속됨" - - #. Update our copy of the printer's settings. --#: ../system-config-printer.py:1257 ../system-config-printer.py:2042 -+#: ../system-config-printer.py:1261 ../system-config-printer.py:2046 - msgid "obtaining queue details" - msgstr "" - --#: ../system-config-printer.py:1295 -+#: ../system-config-printer.py:1299 - msgid "Remove from Group" - msgstr "그룹에서 제거 " - --#: ../system-config-printer.py:1361 -+#: ../system-config-printer.py:1365 - #, fuzzy - msgid "Network printer (discovered)" - msgstr "새 프린터" - --#: ../system-config-printer.py:1364 -+#: ../system-config-printer.py:1368 - msgid "Network class (discovered)" - msgstr "" - --#: ../system-config-printer.py:1370 ../system-config-printer.py:5524 --#: ../system-config-printer.py:5594 ../system-config-printer.py:5596 -+#: ../system-config-printer.py:1374 ../system-config-printer.py:5519 -+#: ../system-config-printer.py:5589 ../system-config-printer.py:5591 - msgid "Fax" - msgstr "팩스 " - --#: ../system-config-printer.py:1376 ../system-config-printer.py:1382 -+#: ../system-config-printer.py:1380 ../system-config-printer.py:1386 - #: ../troubleshoot/LocalOrRemote.py:30 - msgid "Network printer" - msgstr "네트워크 프린터 " - --#: ../system-config-printer.py:1379 -+#: ../system-config-printer.py:1383 - msgid "Network print share" - msgstr "네트워크 프린터 공유 " - --#: ../system-config-printer.py:1508 ../glade/ConnectingDialog.glade.h:2 -+#: ../system-config-printer.py:1512 ../glade/ConnectingDialog.glade.h:2 - #, no-c-format, python-format - msgid "Opening connection to %s" - msgstr "" - --#: ../system-config-printer.py:1887 -+#: ../system-config-printer.py:1891 - msgid "Installable Options" - msgstr "설치 가능한 옵션 " - --#: ../system-config-printer.py:1888 -+#: ../system-config-printer.py:1892 - #: ../glade/PrinterPropertiesDialog.glade.h:109 - msgid "Printer Options" - msgstr "프린터 옵션" - --#: ../system-config-printer.py:1924 -+#: ../system-config-printer.py:1928 - #, python-format - msgid "modifying class %s" - msgstr "%s 클래스 수정 중 " - --#: ../system-config-printer.py:1926 ../system-config-printer.py:3019 --#: ../system-config-printer.py:3044 ../system-config-printer.py:6547 --#: ../system-config-printer.py:6559 ../system-config-printer.py:6581 -+#: ../system-config-printer.py:1930 ../system-config-printer.py:3037 -+#: ../system-config-printer.py:3062 ../system-config-printer.py:6495 -+#: ../system-config-printer.py:6507 ../system-config-printer.py:6529 - #, python-format - msgid "modifying printer %s" - msgstr "%s 프린터 수정 " - --#: ../system-config-printer.py:1941 -+#: ../system-config-printer.py:1945 - msgid "This will delete this class!" - msgstr "이는 클래스를 삭제하게 됩니다!" - --#: ../system-config-printer.py:1942 -+#: ../system-config-printer.py:1946 - msgid "Proceed anyway?" - msgstr "계속 진행하시겠습니까?" - -@@ -932,65 +941,65 @@ msgstr "계속 진행하시겠습니까? - #. but we have never fetched the server settings to see whether - #. the server is publishing shared printers. Fetch the settings - #. now so that we can update the "not published" label if necessary. --#: ../system-config-printer.py:2030 ../system-config-printer.py:3203 -+#: ../system-config-printer.py:2034 ../system-config-printer.py:3221 - #, fuzzy - msgid "fetching server settings" - msgstr "기본 서버 세팅" - --#: ../system-config-printer.py:2100 -+#: ../system-config-printer.py:2104 - msgid "Set Default Printer" - msgstr "기본 프린터 설정 " - --#: ../system-config-printer.py:2102 -+#: ../system-config-printer.py:2106 - msgid "Do you want to set this as the system-wide default printer?" - msgstr "이를 시스템 전역 기본값 프린터로 설정하시겠습니까? " - --#: ../system-config-printer.py:2104 -+#: ../system-config-printer.py:2108 - msgid "Set as the _system-wide default printer" - msgstr "시스템-전역 기본값 프린터로 설정(_S) " - --#: ../system-config-printer.py:2106 -+#: ../system-config-printer.py:2110 - msgid "_Clear my personal default setting" - msgstr "" - --#: ../system-config-printer.py:2107 -+#: ../system-config-printer.py:2111 - #, fuzzy - msgid "Set as my _personal default printer" - msgstr "기본 프린터 선택" - --#: ../system-config-printer.py:2112 -+#: ../system-config-printer.py:2116 - msgid "setting default printer" - msgstr "기본 프린터 설정 중 " - --#: ../system-config-printer.py:2169 -+#: ../system-config-printer.py:2173 - msgid "printing test page" - msgstr "테스트 페이지 인쇄 중 " - --#: ../system-config-printer.py:2182 ../system-config-printer.py:2217 --#: ../system-config-printer.py:5418 -+#: ../system-config-printer.py:2186 ../system-config-printer.py:2221 -+#: ../system-config-printer.py:5413 - msgid "Not possible" - msgstr "불가능" - --#: ../system-config-printer.py:2183 ../system-config-printer.py:2218 -+#: ../system-config-printer.py:2187 ../system-config-printer.py:2222 - msgid "" - "The remote server did not accept the print job, most likely because the " - "printer is not shared." - msgstr "프린터가 공유되지 않아 원격서버를 통해 인쇄 작업을 실행할 수 없습니다." - --#: ../system-config-printer.py:2195 ../system-config-printer.py:2210 -+#: ../system-config-printer.py:2199 ../system-config-printer.py:2214 - msgid "Submitted" - msgstr "입력됨" - --#: ../system-config-printer.py:2196 -+#: ../system-config-printer.py:2200 - #, python-format - msgid "Test page submitted as job %d" - msgstr "테스트 페이지는 %d 작업으로 입력되었습니다" - --#: ../system-config-printer.py:2203 -+#: ../system-config-printer.py:2207 - msgid "sending maintenance command" - msgstr "" - --#: ../system-config-printer.py:2211 -+#: ../system-config-printer.py:2215 - #, fuzzy, python-format - msgid "Maintenance command submitted as job %d" - msgstr "테스트 페이지는 %d 작업으로 입력되었습니다" -@@ -998,75 +1007,75 @@ msgstr "테스트 페이지는 %d 작업 - #. The underlying cupsGetPPD2() function returned NULL without - #. setting an IPP error, so it'll be something like a failed - #. connection. --#: ../system-config-printer.py:2285 ../system-config-printer.py:2381 -+#: ../system-config-printer.py:2289 ../system-config-printer.py:2385 - msgid "Error" - msgstr "오류" - --#: ../system-config-printer.py:2286 -+#: ../system-config-printer.py:2290 - msgid "There was a problem connecting to the CUPS server." - msgstr "CUPS 서버로 연결하는 도중 오류가 발생했습니다." - --#: ../system-config-printer.py:2382 -+#: ../system-config-printer.py:2386 - #, python-format - msgid "Option '%s' has value '%s' and cannot be edited." - msgstr "" - --#: ../system-config-printer.py:2466 -+#: ../system-config-printer.py:2476 - msgid "Marker levels are not reported for this printer." - msgstr "" - --#: ../system-config-printer.py:2763 -+#: ../system-config-printer.py:2773 - #, fuzzy - msgid "Cannot Rename" - msgstr "취소(_R)" - --#: ../system-config-printer.py:2764 -+#: ../system-config-printer.py:2774 - msgid "There are queued jobs." - msgstr "" - --#: ../system-config-printer.py:2822 -+#: ../system-config-printer.py:2840 - #, fuzzy - msgid "renaming printer" - msgstr "프린터 설정" - - #. for classes make sure all members - #. will get added --#: ../system-config-printer.py:2907 -+#: ../system-config-printer.py:2925 - #, fuzzy - msgid "copying printer" - msgstr "프린터 설정" - --#: ../system-config-printer.py:2971 -+#: ../system-config-printer.py:2989 - #, fuzzy, python-format - msgid "Really delete class '%s'?" - msgstr "정말로 클래스 '%s'(을)를 삭제하시겠습니까?" - --#: ../system-config-printer.py:2973 -+#: ../system-config-printer.py:2991 - #, fuzzy, python-format - msgid "Really delete printer '%s'?" - msgstr "정말로 프린터 '%s'(을)를 삭제하시겠습니까? " - --#: ../system-config-printer.py:2975 -+#: ../system-config-printer.py:2993 - #, fuzzy - msgid "Really delete selected destinations?" - msgstr "정말로 프린터 %s(을)를 삭제하시겠습니까?" - --#: ../system-config-printer.py:2996 -+#: ../system-config-printer.py:3014 - #, fuzzy, python-format - msgid "deleting printer %s" - msgstr "프린터 설정" - --#: ../system-config-printer.py:3070 -+#: ../system-config-printer.py:3088 - msgid "Publish Shared Printers" - msgstr "" - --#: ../system-config-printer.py:3071 -+#: ../system-config-printer.py:3089 - msgid "" - "Shared printers are not available to other people unless the 'Publish shared " - "printers' option is enabled in the server settings." - msgstr "" - --#: ../system-config-printer.py:3264 -+#: ../system-config-printer.py:3282 - #, fuzzy - msgid "modifying server settings" - msgstr "기본 서버 세팅" -@@ -1077,105 +1086,105 @@ msgstr "기본 서버 세팅" - #. be unblocked. Unfortunately, this is not yet possible - #. (bug #440469). However, we can display a dialog to suggest - #. that now might be a good time to review the firewall settings. --#: ../system-config-printer.py:3289 -+#: ../system-config-printer.py:3307 - msgid "Review Firewall" - msgstr "" - --#: ../system-config-printer.py:3290 -+#: ../system-config-printer.py:3308 - msgid "" - "You may need to adjust the firewall to allow network printing to this " - "computer." - msgstr "" - --#: ../system-config-printer.py:3623 -+#: ../system-config-printer.py:3638 - msgid "Browsing not available (pysmbc not installed)" - msgstr "" - - #. SMB list columns --#: ../system-config-printer.py:3629 -+#: ../system-config-printer.py:3644 - msgid "Share" - msgstr "공유" - --#: ../system-config-printer.py:3635 -+#: ../system-config-printer.py:3650 - msgid "Comment" - msgstr "주석" - - #. IPP list columns --#: ../system-config-printer.py:3654 -+#: ../system-config-printer.py:3669 - msgid "Queue" - msgstr "대기열 " - --#: ../system-config-printer.py:3668 -+#: ../system-config-printer.py:3683 - #, fuzzy - msgid "" - "PostScript Printer Description files (*.ppd, *.PPD, *.ppd.gz, *.PPD.gz, *." - "PPD.GZ)" - msgstr "사후 프린터 설명 스크립트 (*.ppd[.gz])" - --#: ../system-config-printer.py:3677 -+#: ../system-config-printer.py:3692 - msgid "All files (*)" - msgstr "모든 파일 (*) " - --#: ../system-config-printer.py:3713 ../system-config-printer.py:5970 --#: ../system-config-printer.py:6008 ../applet.py:124 -+#: ../system-config-printer.py:3728 ../system-config-printer.py:5918 -+#: ../system-config-printer.py:5956 ../applet.py:124 - #, fuzzy - msgid "Search" - msgstr "새 프린터 이름" - --#: ../system-config-printer.py:3736 ../system-config-printer.py:3760 --#: ../glade/NewPrinterWindow.glade.h:74 -+#: ../system-config-printer.py:3751 ../system-config-printer.py:3775 -+#: ../glade/NewPrinterWindow.glade.h:73 - msgid "New Printer" - msgstr "새 프린터" - --#: ../system-config-printer.py:3747 -+#: ../system-config-printer.py:3762 - msgid "New Class" - msgstr "새 클래스" - --#: ../system-config-printer.py:3752 -+#: ../system-config-printer.py:3767 - msgid "Change Device URI" - msgstr "URI 장치 변경" - --#: ../system-config-printer.py:3758 -+#: ../system-config-printer.py:3773 - msgid "Change Driver" - msgstr "드라이버 변경" - --#: ../system-config-printer.py:3927 ../system-config-printer.py:3993 --#: ../system-config-printer.py:4289 ../system-config-printer.py:4487 --#: ../system-config-printer.py:5772 ../system-config-printer.py:5995 -+#: ../system-config-printer.py:3942 ../system-config-printer.py:4008 -+#: ../system-config-printer.py:4304 ../system-config-printer.py:4502 -+#: ../system-config-printer.py:5762 ../system-config-printer.py:5943 - msgid "Searching" - msgstr "" - --#: ../system-config-printer.py:3928 -+#: ../system-config-printer.py:3943 - #, fuzzy - msgid "Searching for downloadable drivers" - msgstr "새 프린터 이름" - --#: ../system-config-printer.py:3994 ../system-config-printer.py:4290 -+#: ../system-config-printer.py:4009 ../system-config-printer.py:4305 - msgid "Searching for drivers" - msgstr "" - --#: ../system-config-printer.py:4488 ../system-config-printer.py:5773 -+#: ../system-config-printer.py:4503 ../system-config-printer.py:5763 - #, fuzzy - msgid "Searching for printers" - msgstr "새 프린터 이름" - --#: ../system-config-printer.py:4497 -+#: ../system-config-printer.py:4512 - #, fuzzy - msgid "fetching device list" - msgstr "기본 서버 세팅" - - #. Tell the user why he needs the plugin --#: ../system-config-printer.py:4579 -+#: ../system-config-printer.py:4594 - msgid "For this printer a proprietary driver plugin from HP is available.\n" - msgstr "" - --#: ../system-config-printer.py:4582 -+#: ../system-config-printer.py:4597 - msgid "" - "The installation of the plugin is required for your printer to work.\n" - "\n" - msgstr "" - --#: ../system-config-printer.py:4585 -+#: ../system-config-printer.py:4600 - msgid "" - "Installing the plugin is optional, it completes or enhances the " - "functionality\n" -@@ -1183,293 +1192,285 @@ msgid "" - "\n" - msgstr "" - --#: ../system-config-printer.py:4589 -+#: ../system-config-printer.py:4604 - msgid "The plugin provides the following features:\n" - msgstr "" - --#: ../system-config-printer.py:4592 -+#: ../system-config-printer.py:4607 - msgid " - Printing support\n" - msgstr "" - --#: ../system-config-printer.py:4595 -+#: ../system-config-printer.py:4610 - msgid " - Faster printing\n" - msgstr "" - --#: ../system-config-printer.py:4598 -+#: ../system-config-printer.py:4613 - msgid " - Better printout quality\n" - msgstr "" - --#: ../system-config-printer.py:4601 -+#: ../system-config-printer.py:4616 - msgid " - Extra printing features\n" - msgstr "" - --#: ../system-config-printer.py:4604 -+#: ../system-config-printer.py:4619 - msgid " - Scanning support\n" - msgstr "" - --#: ../system-config-printer.py:4607 -+#: ../system-config-printer.py:4622 - msgid " - Faster scanning\n" - msgstr "" - --#: ../system-config-printer.py:4610 -+#: ../system-config-printer.py:4625 - msgid " - Better scanning image quality\n" - msgstr "" - --#: ../system-config-printer.py:4613 -+#: ../system-config-printer.py:4628 - msgid " - Faxing support\n" - msgstr "" - --#: ../system-config-printer.py:4616 -+#: ../system-config-printer.py:4631 - msgid " - Extra fax features\n" - msgstr "" - --#: ../system-config-printer.py:4619 -+#: ../system-config-printer.py:4634 - msgid " - Better Input/Output support\n" - msgstr "" - --#: ../system-config-printer.py:4622 -+#: ../system-config-printer.py:4637 - msgid " - Extra user interface features\n" - msgstr "" - --#: ../system-config-printer.py:4625 -+#: ../system-config-printer.py:4640 - msgid " - Other extra features\n" - msgstr "" - --#: ../system-config-printer.py:4630 -+#: ../system-config-printer.py:4645 - #, fuzzy - msgid "Install plugin" - msgstr "설치 가능한 옵션 " - --#: ../system-config-printer.py:4631 -+#: ../system-config-printer.py:4646 - #, fuzzy - msgid "Do not set up printer" - msgstr "프린터 선택 " - --#: ../system-config-printer.py:4632 -+#: ../system-config-printer.py:4647 - msgid "Set up without plugin" - msgstr "" - --#: ../system-config-printer.py:4634 ../troubleshoot/PrintTestPage.py:118 -+#: ../system-config-printer.py:4649 ../troubleshoot/PrintTestPage.py:118 - msgid "Yes" - msgstr "" - --#: ../system-config-printer.py:4635 ../troubleshoot/PrintTestPage.py:119 -+#: ../system-config-printer.py:4650 ../troubleshoot/PrintTestPage.py:119 - msgid "No" - msgstr "" - --#: ../system-config-printer.py:4809 ../system-config-printer.py:4813 -+#: ../system-config-printer.py:4824 ../system-config-printer.py:4828 - msgid " (Current)" - msgstr " (현재)" - --#: ../system-config-printer.py:4845 --msgid "HP Printer (HPLIP)" --msgstr "HP 프린터 (HPLIP) " -- --#: ../system-config-printer.py:4886 -+#: ../system-config-printer.py:4881 - msgid "Other" - msgstr "기타" - - #. device-info - #. PhysicalDevice obj - #. Separator? --#: ../system-config-printer.py:4902 -+#: ../system-config-printer.py:4897 - msgid "Network Printer" - msgstr "네트워크 프린터 " - --#: ../system-config-printer.py:4906 -+#: ../system-config-printer.py:4901 - #, fuzzy - msgid "Find Network Printer" - msgstr "새 프린터" - --#: ../system-config-printer.py:4979 ../system-config-printer.py:5376 -+#: ../system-config-printer.py:4974 ../system-config-printer.py:5371 - #, fuzzy - msgid "Scanning..." - msgstr "비례 축소:" - --#: ../system-config-printer.py:5034 ../system-config-printer.py:5798 -+#: ../system-config-printer.py:5029 - #, fuzzy - msgid "No Print Shares" - msgstr "새 프린터" - --#: ../system-config-printer.py:5035 -+#: ../system-config-printer.py:5030 - msgid "" - "There were no print shares found. Please check that the Samba service is " - "marked as trusted in your firewall configuration." - msgstr "" - --#: ../system-config-printer.py:5296 ../system-config-printer.py:5357 -+#: ../system-config-printer.py:5291 ../system-config-printer.py:5352 - msgid "Print Share Verified" - msgstr "" - --#: ../system-config-printer.py:5297 ../system-config-printer.py:5358 -+#: ../system-config-printer.py:5292 ../system-config-printer.py:5353 - msgid "This print share is accessible." - msgstr "프린터 공유를 액세스할 수 있습니다" - --#: ../system-config-printer.py:5302 ../system-config-printer.py:5362 -+#: ../system-config-printer.py:5297 ../system-config-printer.py:5357 - msgid "This print share is not accessible." - msgstr "프린터 공유를 액세스할 수 없습니다" - --#: ../system-config-printer.py:5305 -+#: ../system-config-printer.py:5300 - #, fuzzy - msgid "Print Share Inaccessible" - msgstr "프린터 공유를 액세스할 수 있습니다" - --#: ../system-config-printer.py:5361 -+#: ../system-config-printer.py:5356 - msgid "Inaccessible" - msgstr "액세스할 수 없음" - --#: ../system-config-printer.py:5419 -+#: ../system-config-printer.py:5414 - #, fuzzy, python-format - msgid "It is not possible to obtain a list of queues from '%s'." - msgstr "CUPS 서버로 연결하는 도중 오류가 발생했습니다." - --#: ../system-config-printer.py:5421 -+#: ../system-config-printer.py:5416 - msgid "" - "Obtaining a list of queues is a CUPS extension to IPP. Network printers do " - "not support it." - msgstr "" - --#: ../system-config-printer.py:5424 -+#: ../system-config-printer.py:5419 - msgid "No queues" - msgstr "" - --#: ../system-config-printer.py:5425 -+#: ../system-config-printer.py:5420 - msgid "There are no queues available." - msgstr "" - --#: ../system-config-printer.py:5516 -+#: ../system-config-printer.py:5511 - msgid "Parallel Port" - msgstr "" - --#: ../system-config-printer.py:5518 -+#: ../system-config-printer.py:5513 - #, fuzzy - msgid "Serial Port" - msgstr "직렬" - --#: ../system-config-printer.py:5520 -+#: ../system-config-printer.py:5515 - #, fuzzy - msgid "USB" - msgstr "SMB" - --#: ../system-config-printer.py:5522 ../system-config-printer.py:5525 -+#: ../system-config-printer.py:5517 ../system-config-printer.py:5520 - msgid "HP Linux Imaging and Printing (HPLIP)" - msgstr "" - --#: ../system-config-printer.py:5527 -+#: ../system-config-printer.py:5522 - #, fuzzy - msgid "Hardware Abstraction Layer (HAL)" - msgstr "HAL (Hardware Abstraction Layer)에 의해 검색된 로컬 프린터." - --#: ../system-config-printer.py:5529 -+#: ../system-config-printer.py:5524 - msgid "AppSocket/HP JetDirect" - msgstr "" - --#: ../system-config-printer.py:5538 -+#: ../system-config-printer.py:5533 - #, python-format - msgid "LPD/LPR queue '%s'" - msgstr "" - --#: ../system-config-printer.py:5540 -+#: ../system-config-printer.py:5535 - #, fuzzy - msgid "LPD/LPR queue" - msgstr "LPD" - --#: ../system-config-printer.py:5543 -+#: ../system-config-printer.py:5538 - msgid "Windows Printer via SAMBA" - msgstr "" - --#: ../system-config-printer.py:5545 ../glade/NewPrinterWindow.glade.h:66 -+#: ../system-config-printer.py:5540 ../glade/NewPrinterWindow.glade.h:65 - msgid "IPP" - msgstr "IPP" - --#: ../system-config-printer.py:5547 -+#: ../system-config-printer.py:5542 - msgid "HTTP" - msgstr "" - --#: ../system-config-printer.py:5632 -+#: ../system-config-printer.py:5624 - msgid "A printer connected to the parallel port." - msgstr "프린터가 병렬 포트에 연결되어 있습니다." - --#: ../system-config-printer.py:5634 -+#: ../system-config-printer.py:5626 - msgid "A printer connected to a USB port." - msgstr "프린터가 USB 포트에 연결되어 있습니다." - --#: ../system-config-printer.py:5636 -+#: ../system-config-printer.py:5628 - msgid "" - "HPLIP software driving a printer, or the printer function of a multi-" - "function device." - msgstr "프린터를 다루는 HPLIP 소프트웨어, 또는 다중 기능 장치의 프린터 기능." - --#: ../system-config-printer.py:5639 -+#: ../system-config-printer.py:5631 - msgid "" - "HPLIP software driving a fax machine, or the fax function of a multi-" - "function device." - msgstr "팩스기를 다루는 HPLIP 소프트웨어, 또는 다중 기능 장치의 팩스 기능." - --#: ../system-config-printer.py:5642 -+#: ../system-config-printer.py:5634 - msgid "Local printer detected by the Hardware Abstraction Layer (HAL)." - msgstr "HAL (Hardware Abstraction Layer)에 의해 검색된 로컬 프린터." - --#: ../system-config-printer.py:5799 --msgid "HPLIP cannot find the device." --msgstr "" -- --#: ../system-config-printer.py:5881 -+#: ../system-config-printer.py:5831 - msgid "No printer was found at that address." - msgstr "" - --#: ../system-config-printer.py:6020 -+#: ../system-config-printer.py:5968 - #, fuzzy - msgid "-- Select from search results --" - msgstr "데이타 베이스에서 프린터 선택" - --#: ../system-config-printer.py:6022 -+#: ../system-config-printer.py:5970 - msgid "-- No matches found --" - msgstr "" - --#: ../system-config-printer.py:6203 -+#: ../system-config-printer.py:6151 - msgid " (recommended)" - msgstr "(권장사항)" - --#: ../system-config-printer.py:6217 -+#: ../system-config-printer.py:6165 - msgid "This PPD is generated by foomatic." - msgstr "이 PPD는 foomatic에 의하여 생성됩니다" - --#: ../system-config-printer.py:6241 -+#: ../system-config-printer.py:6189 - #, fuzzy - msgid "OpenPrinting" - msgstr "인쇄" - --#: ../system-config-printer.py:6252 -+#: ../system-config-printer.py:6200 - msgid "Distributable" - msgstr "" - --#: ../system-config-printer.py:6293 -+#: ../system-config-printer.py:6241 - #, fuzzy - msgid ", " - msgstr " " - --#: ../system-config-printer.py:6298 -+#: ../system-config-printer.py:6246 - #, python-format - msgid "" - "\n" - "(%s)" - msgstr "" - --#: ../system-config-printer.py:6303 -+#: ../system-config-printer.py:6251 - msgid "No support contacts known" - msgstr "" - --#: ../system-config-printer.py:6307 ../system-config-printer.py:6320 -+#: ../system-config-printer.py:6255 ../system-config-printer.py:6268 - msgid "Not specified." - msgstr "" - - #. Foomatic database problem of some sort. --#: ../system-config-printer.py:6360 -+#: ../system-config-printer.py:6308 - msgid "Database error" - msgstr "데이터베이스 오류" - --#: ../system-config-printer.py:6361 -+#: ../system-config-printer.py:6309 - #, python-format - msgid "The '%s' driver cannot be used with printer '%s %s'." - msgstr "'%s' 드라이버는 프린터 '%s %s'와 함께 사용할 수 없습니다." -@@ -1477,61 +1478,61 @@ msgstr "'%s' 드라이버는 프린터 ' - #. This printer references some XML that is not - #. installed by default. Point the user at the - #. package they need to install. --#: ../system-config-printer.py:6371 -+#: ../system-config-printer.py:6319 - #, python-format - msgid "You will need to install the '%s' package in order to use this driver." - msgstr "이 드라이버를 사용하기 위해 '%s' 패키지를 설치하셔야 합니다." - - #. This error came from trying to open the PPD file. --#: ../system-config-printer.py:6378 -+#: ../system-config-printer.py:6326 - msgid "PPD error" - msgstr "PPD 오류" - --#: ../system-config-printer.py:6380 -+#: ../system-config-printer.py:6328 - msgid "Failed to read PPD file. Possible reason follows:" - msgstr "다음과 같은 이유로 PPD 파일 읽기를 실패했습니다:" - - #. Failed to get PPD downloaded from OpenPrinting XXX --#: ../system-config-printer.py:6397 -+#: ../system-config-printer.py:6345 - msgid "Downloadable drivers" - msgstr "" - --#: ../system-config-printer.py:6398 -+#: ../system-config-printer.py:6346 - msgid "Failed to download PPD." - msgstr "" - --#: ../system-config-printer.py:6405 -+#: ../system-config-printer.py:6353 - msgid "fetching PPD" - msgstr "" - --#: ../system-config-printer.py:6434 ../system-config-printer.py:6472 -+#: ../system-config-printer.py:6382 ../system-config-printer.py:6420 - #, fuzzy - msgid "No Installable Options" - msgstr "설치 가능한 옵션 " - --#: ../system-config-printer.py:6520 -+#: ../system-config-printer.py:6468 - #, fuzzy, python-format - msgid "adding printer %s" - msgstr "프린터 설정" - --#: ../system-config-printer.py:6669 -+#: ../system-config-printer.py:6617 - msgid "Would you like to print a test page?" - msgstr "" - --#: ../system-config-printer.py:6722 -+#: ../system-config-printer.py:6670 - msgid "Install driver" - msgstr "드라이버 설치" - --#: ../system-config-printer.py:6723 ../troubleshoot/CheckPPDSanity.py:131 -+#: ../system-config-printer.py:6671 ../troubleshoot/CheckPPDSanity.py:131 - #, python-format - msgid "Printer '%s' requires the %s package but it is not currently installed." - msgstr "프린터 '%s'는 %s 패키지가 필요하나 이는 현재 설치되어 있지 않습니다." - --#: ../system-config-printer.py:6739 -+#: ../system-config-printer.py:6687 - msgid "Missing driver" - msgstr "드라이버가 없음" - --#: ../system-config-printer.py:6740 -+#: ../system-config-printer.py:6688 - #, python-format - msgid "" - "Printer '%s' requires the '%s' program but it is not currently installed. " -@@ -1661,133 +1662,128 @@ msgstr "URI 장치로 들어가기" - - #: ../glade/NewPrinterWindow.glade.h:5 - #, fuzzy --msgid "HP Printer (HPLIP) via network" --msgstr "프린터명" -- --#: ../glade/NewPrinterWindow.glade.h:6 --#, fuzzy - msgid "IPP Printer" - msgstr "프린터명" - --#: ../glade/NewPrinterWindow.glade.h:7 -+#: ../glade/NewPrinterWindow.glade.h:6 - #, fuzzy - msgid "License Terms" - msgstr "프린터명" - --#: ../glade/NewPrinterWindow.glade.h:8 -+#: ../glade/NewPrinterWindow.glade.h:7 - msgid "Location of the LPD network printer" - msgstr "LPD 네트워크 프린터의 위치 " - --#: ../glade/NewPrinterWindow.glade.h:9 -+#: ../glade/NewPrinterWindow.glade.h:8 - msgid "Location of the network printer" - msgstr "네트워크 프린터의 위치 " - --#: ../glade/NewPrinterWindow.glade.h:10 -+#: ../glade/NewPrinterWindow.glade.h:9 - msgid "Location (optional)" - msgstr "위치 (옵션) " - --#: ../glade/NewPrinterWindow.glade.h:11 -+#: ../glade/NewPrinterWindow.glade.h:10 - #, fuzzy - msgid "Network Printer" - msgstr "새 프린터" - --#: ../glade/NewPrinterWindow.glade.h:12 -+#: ../glade/NewPrinterWindow.glade.h:11 - #, fuzzy - msgid "Note" - msgstr "상태" - --#: ../glade/NewPrinterWindow.glade.h:13 -+#: ../glade/NewPrinterWindow.glade.h:12 - #, fuzzy - msgid "Output Quality" - msgstr "상태" - --#: ../glade/NewPrinterWindow.glade.h:14 -+#: ../glade/NewPrinterWindow.glade.h:13 - msgid "Printer Name" - msgstr "프린터명" - --#: ../glade/NewPrinterWindow.glade.h:15 -+#: ../glade/NewPrinterWindow.glade.h:14 - #, fuzzy - msgid "SMB Printer" - msgstr "프린터명" - --#: ../glade/NewPrinterWindow.glade.h:16 -+#: ../glade/NewPrinterWindow.glade.h:15 - #, fuzzy - msgid "Select Driver" - msgstr "기본 프린터 " - --#: ../glade/NewPrinterWindow.glade.h:17 -+#: ../glade/NewPrinterWindow.glade.h:16 - msgid "Settings of the serial port" - msgstr "직렬 포트 설정" - --#: ../glade/NewPrinterWindow.glade.h:18 -+#: ../glade/NewPrinterWindow.glade.h:17 - msgid "smb://[workgroup/]server[:port]/printer" - msgstr "smb://[workgroup/]server[:port]/printer" - --#: ../glade/NewPrinterWindow.glade.h:19 -+#: ../glade/NewPrinterWindow.glade.h:18 - #, fuzzy - msgid "Choose Class Members" - msgstr "" - "패스워드 필요\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:20 -+#: ../glade/NewPrinterWindow.glade.h:19 - #, fuzzy - msgid "Choose Driver" - msgstr "" - "패스워드 필요\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:21 -+#: ../glade/NewPrinterWindow.glade.h:20 - #, fuzzy - msgid "Describe Printer" - msgstr "" - "패스워드 필요\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:22 -+#: ../glade/NewPrinterWindow.glade.h:21 - #, fuzzy - msgid "Existing Settings" - msgstr "" - "패스워드 필요\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:23 -+#: ../glade/NewPrinterWindow.glade.h:22 - #, fuzzy - msgid "Installable Options" - msgstr "" - "패스워드 필요\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:24 -+#: ../glade/NewPrinterWindow.glade.h:23 - #, fuzzy - msgid "Select Device" - msgstr "" - "패스워드 필요\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:25 -+#: ../glade/NewPrinterWindow.glade.h:24 - msgid "Baud Rate" - msgstr "보레이트 " - --#: ../glade/NewPrinterWindow.glade.h:26 -+#: ../glade/NewPrinterWindow.glade.h:25 - msgid "Browse..." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:27 -+#: ../glade/NewPrinterWindow.glade.h:26 - #, fuzzy - msgid "Comments..." - msgstr "주석" - --#: ../glade/NewPrinterWindow.glade.h:28 -+#: ../glade/NewPrinterWindow.glade.h:27 - #, fuzzy - msgid "Connection" - msgstr "연결 중 " - --#: ../glade/NewPrinterWindow.glade.h:29 -+#: ../glade/NewPrinterWindow.glade.h:28 - msgid "Data Bits" - msgstr "데이타 비트" - --#: ../glade/NewPrinterWindow.glade.h:30 -+#: ../glade/NewPrinterWindow.glade.h:29 - msgid "" - "Default\n" - "1200\n" -@@ -1809,7 +1805,7 @@ msgstr "" - "57600\n" - "115200 " - --#: ../glade/NewPrinterWindow.glade.h:39 -+#: ../glade/NewPrinterWindow.glade.h:38 - msgid "" - "Default\n" - "8\n" -@@ -1819,7 +1815,7 @@ msgstr "" - "8\n" - "7" - --#: ../glade/NewPrinterWindow.glade.h:42 -+#: ../glade/NewPrinterWindow.glade.h:41 - msgid "" - "Default\n" - "None\n" -@@ -1831,7 +1827,7 @@ msgstr "" - "홀수\n" - "짝수 " - --#: ../glade/NewPrinterWindow.glade.h:46 -+#: ../glade/NewPrinterWindow.glade.h:45 - msgid "" - "Default\n" - "None\n" -@@ -1845,120 +1841,120 @@ msgstr "" - "RTS/CTS (하드웨어)\n" - "DTR/DSR (하드웨어) " - --#: ../glade/NewPrinterWindow.glade.h:51 -+#: ../glade/NewPrinterWindow.glade.h:50 - #: ../glade/PrinterPropertiesDialog.glade.h:35 - msgid "Description:" - msgstr "설명:" - --#: ../glade/NewPrinterWindow.glade.h:52 ../troubleshoot/DeviceListed.py:40 -+#: ../glade/NewPrinterWindow.glade.h:51 ../troubleshoot/DeviceListed.py:40 - msgid "Device URI" - msgstr "URI 장치: " - --#: ../glade/NewPrinterWindow.glade.h:53 -+#: ../glade/NewPrinterWindow.glade.h:52 - msgid "Device description." - msgstr "장치 설명." - --#: ../glade/NewPrinterWindow.glade.h:54 -+#: ../glade/NewPrinterWindow.glade.h:53 - msgid "DirectJet" - msgstr "다이렉Jet " - --#: ../glade/NewPrinterWindow.glade.h:56 -+#: ../glade/NewPrinterWindow.glade.h:55 - #, fuzzy - msgid "Driver details" - msgstr "드라이버 " - --#: ../glade/NewPrinterWindow.glade.h:57 -+#: ../glade/NewPrinterWindow.glade.h:56 - msgid "Empty" - msgstr "비어있음 " - --#: ../glade/NewPrinterWindow.glade.h:58 -+#: ../glade/NewPrinterWindow.glade.h:57 - msgid "Find _Queue..." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:59 -+#: ../glade/NewPrinterWindow.glade.h:58 - msgid "Flow Control" - msgstr "흐름 제어" - --#: ../glade/NewPrinterWindow.glade.h:60 -+#: ../glade/NewPrinterWindow.glade.h:59 - msgid "" - "For the printer you have selected there are drivers available for download." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:61 -+#: ../glade/NewPrinterWindow.glade.h:60 - msgid "Free software" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:62 -+#: ../glade/NewPrinterWindow.glade.h:61 - msgid "Graphics:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:63 -+#: ../glade/NewPrinterWindow.glade.h:62 - #, fuzzy - msgid "Host:" - msgstr "호스트명:" - --#: ../glade/NewPrinterWindow.glade.h:64 -+#: ../glade/NewPrinterWindow.glade.h:63 - msgid "Human-readable description such as \"HP LaserJet with Duplexer\"" - msgstr "\"HP LaserJet with Duplexer\"와 같이 읽기 쉬운 설명 " - --#: ../glade/NewPrinterWindow.glade.h:65 -+#: ../glade/NewPrinterWindow.glade.h:64 - msgid "Human-readable location such as \"Lab 1\"" - msgstr "\"Lab 1\"와 같이 읽기 쉬운 위치" - --#: ../glade/NewPrinterWindow.glade.h:67 -+#: ../glade/NewPrinterWindow.glade.h:66 - msgid "LPD" - msgstr "LPD" - --#: ../glade/NewPrinterWindow.glade.h:68 -+#: ../glade/NewPrinterWindow.glade.h:67 - msgid "License:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:69 -+#: ../glade/NewPrinterWindow.glade.h:68 - #, fuzzy - msgid "Line art:" - msgstr "프린터 관련사항: " - --#: ../glade/NewPrinterWindow.glade.h:70 -+#: ../glade/NewPrinterWindow.glade.h:69 - #, fuzzy - msgid "Local Driver" - msgstr "로컬 프린터" - --#: ../glade/NewPrinterWindow.glade.h:71 -+#: ../glade/NewPrinterWindow.glade.h:70 - #, fuzzy - msgid "Make and model:" - msgstr "제조회사 및 모델명:" - --#: ../glade/NewPrinterWindow.glade.h:72 -+#: ../glade/NewPrinterWindow.glade.h:71 - msgid "Manufacturer" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:73 -+#: ../glade/NewPrinterWindow.glade.h:72 - #, fuzzy - msgid "Network" - msgstr "새 프린터" - --#: ../glade/NewPrinterWindow.glade.h:75 -+#: ../glade/NewPrinterWindow.glade.h:74 - msgid "No, I do not accept this license" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:76 -+#: ../glade/NewPrinterWindow.glade.h:75 - msgid "Parity" - msgstr "패리티 " - --#: ../glade/NewPrinterWindow.glade.h:78 -+#: ../glade/NewPrinterWindow.glade.h:77 - msgid "Patented algorithms" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:79 -+#: ../glade/NewPrinterWindow.glade.h:78 - msgid "Photo:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:80 -+#: ../glade/NewPrinterWindow.glade.h:79 - #, fuzzy - msgid "Port number:" - msgstr "포트 번호 " - --#: ../glade/NewPrinterWindow.glade.h:81 -+#: ../glade/NewPrinterWindow.glade.h:80 - #, fuzzy - msgid "" - "PostScript Printer Description (PPD) files can often be found on the driver " -@@ -1969,82 +1965,82 @@ msgstr "" - "서 찾을 수 있습니다. 사후 프린트 설명 스크립트는 종종 윈도우® 드라" - "이버의 일부분이 되기도 합니다." - --#: ../glade/NewPrinterWindow.glade.h:82 -+#: ../glade/NewPrinterWindow.glade.h:81 - #, fuzzy - msgid "Printer model:" - msgstr "프린터 추가" - --#: ../glade/NewPrinterWindow.glade.h:83 -+#: ../glade/NewPrinterWindow.glade.h:82 - msgid "Probe" - msgstr "추적" - --#: ../glade/NewPrinterWindow.glade.h:84 -+#: ../glade/NewPrinterWindow.glade.h:83 - #, fuzzy - msgid "Prompt user if authentication is required" - msgstr "인증" - --#: ../glade/NewPrinterWindow.glade.h:85 -+#: ../glade/NewPrinterWindow.glade.h:84 - #, fuzzy - msgid "Provide PPD file" - msgstr "PPD 파일 제공 " - --#: ../glade/NewPrinterWindow.glade.h:86 -+#: ../glade/NewPrinterWindow.glade.h:85 - msgid "Queue:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:87 -+#: ../glade/NewPrinterWindow.glade.h:86 - msgid "SCSI" - msgstr "SCSI " - --#: ../glade/NewPrinterWindow.glade.h:88 -+#: ../glade/NewPrinterWindow.glade.h:87 - msgid "SMB" - msgstr "SMB" - --#: ../glade/NewPrinterWindow.glade.h:89 -+#: ../glade/NewPrinterWindow.glade.h:88 - msgid "Search for a printer driver to download" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:90 -+#: ../glade/NewPrinterWindow.glade.h:89 - #, fuzzy - msgid "Searching..." - msgstr "비례 축소:" - --#: ../glade/NewPrinterWindow.glade.h:91 -+#: ../glade/NewPrinterWindow.glade.h:90 - msgid "Select A File" - msgstr "파일 선택 " - --#: ../glade/NewPrinterWindow.glade.h:92 -+#: ../glade/NewPrinterWindow.glade.h:91 - #, fuzzy - msgid "Select printer from database" - msgstr "데이타 베이스에서 프린터 선택" - --#: ../glade/NewPrinterWindow.glade.h:93 -+#: ../glade/NewPrinterWindow.glade.h:92 - msgid "Serial" - msgstr "직렬" - --#: ../glade/NewPrinterWindow.glade.h:94 -+#: ../glade/NewPrinterWindow.glade.h:93 - #, fuzzy - msgid "Set authentication details now" - msgstr "인증" - --#: ../glade/NewPrinterWindow.glade.h:95 -+#: ../glade/NewPrinterWindow.glade.h:94 - msgid "Short name for this printer such as \"laserjet\"" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:96 -+#: ../glade/NewPrinterWindow.glade.h:95 - msgid "Supplier:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:97 -+#: ../glade/NewPrinterWindow.glade.h:96 - msgid "Support:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:98 -+#: ../glade/NewPrinterWindow.glade.h:97 - #, fuzzy - msgid "Text:" - msgstr "다시 설정" - --#: ../glade/NewPrinterWindow.glade.h:99 -+#: ../glade/NewPrinterWindow.glade.h:98 - msgid "" - "The foomatic printer database contains various manufacturer provided " - "PostScript Printer Description (PPD) files and also can generate PPD files " -@@ -2057,20 +2053,20 @@ msgstr "" - "일을 생성할 수 있습니다. 그러나 일반 제조업자에 의하여 제공되는 PPD 파일은 프" - "린터의 특정한 특징에 더 나은 액세스를 제공합니다." - --#: ../glade/NewPrinterWindow.glade.h:100 -+#: ../glade/NewPrinterWindow.glade.h:99 - msgid "" - "These drivers do not come from your operating system supplier and will not " - "be covered by their commercial support. See the support and license terms " - "of the driver's supplier." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:101 -+#: ../glade/NewPrinterWindow.glade.h:100 - msgid "" - "This driver supports additional hardware that may be installed in the " - "printer." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:102 -+#: ../glade/NewPrinterWindow.glade.h:101 - msgid "" - "This is done by assuming that options with the same name do have the same " - "meaning. Settings of options that are not present in the new PPD will be " -@@ -2079,7 +2075,7 @@ msgstr "" - "이름이 같은 옵션은 같은 의미를 가지고 있다고 간주합니다. 새 PPD에서 제시되지 " - "않는 옵션의 설정은 손실되며 새 PPD에서 제시된 옵션만이 기본으로 설정됩니다." - --#: ../glade/NewPrinterWindow.glade.h:103 -+#: ../glade/NewPrinterWindow.glade.h:102 - msgid "" - "This way all current option settings will be lost. The default settings of " - "the new PPD will be used. " -@@ -2087,43 +2083,43 @@ msgstr "" - "현재 모든 옵션 설정이 손실될 수 있습니다. 새 PPD에 대해 기본 설정을 사용해야 " - "합니다." - --#: ../glade/NewPrinterWindow.glade.h:104 -+#: ../glade/NewPrinterWindow.glade.h:103 - msgid "Try to copy the option settings over from the old PPD. " - msgstr "이전 PPD에서 옵션 설정을 복사해 보십시오 " - --#: ../glade/NewPrinterWindow.glade.h:105 -+#: ../glade/NewPrinterWindow.glade.h:104 - msgid "URI:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:107 -+#: ../glade/NewPrinterWindow.glade.h:106 - msgid "Use the new PPD (Postscript Printer Description) as is." - msgstr "새 PPD (Postscript Printer Description) 사용. " - --#: ../glade/NewPrinterWindow.glade.h:109 -+#: ../glade/NewPrinterWindow.glade.h:108 - msgid "" - "With this choice no driver download will be performed. In the next steps a " - "locally installed driver will be selected." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:110 -+#: ../glade/NewPrinterWindow.glade.h:109 - #, fuzzy - msgid "Yes, I accept this license" - msgstr "작업 수신" - --#: ../glade/NewPrinterWindow.glade.h:111 -+#: ../glade/NewPrinterWindow.glade.h:110 - msgid "_Search" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:112 -+#: ../glade/NewPrinterWindow.glade.h:111 - msgid "_Verify..." - msgstr "확인...(_V)" - --#: ../glade/NewPrinterWindow.glade.h:113 -+#: ../glade/NewPrinterWindow.glade.h:112 - #: ../glade/PrinterPropertiesDialog.glade.h:128 - msgid "move left" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:114 -+#: ../glade/NewPrinterWindow.glade.h:113 - #: ../glade/PrinterPropertiesDialog.glade.h:129 - #, fuzzy - msgid "move right" -@@ -3042,7 +3038,7 @@ msgstr "" - msgid "Remember to load paper of type '%s' into the printer first." - msgstr "" - --#: ../troubleshoot/PrintTestPage.py:399 -+#: ../troubleshoot/PrintTestPage.py:416 - msgid "Error submitting test page" - msgstr "" - -@@ -3229,6 +3225,13 @@ msgstr "인쇄 작업 관리" - msgid "Select default printer" - msgstr "기본 프린터 선택" - -+#~ msgid "HP Printer (HPLIP)" -+#~ msgstr "HP 프린터 (HPLIP) " -+ -+#, fuzzy -+#~ msgid "HP Printer (HPLIP) via network" -+#~ msgstr "프린터명" -+ - #, fuzzy - #~ msgid "Not Found" - #~ msgstr "찾을 수 없음" -diff -up system-config-printer-1.1.5/po/lo.po.git-1.1.x system-config-printer-1.1.5/po/lo.po ---- system-config-printer-1.1.5/po/lo.po.git-1.1.x 2009-03-03 22:21:46.000000000 +0000 -+++ system-config-printer-1.1.5/po/lo.po 2009-03-10 17:43:31.000000000 +0000 -@@ -7,7 +7,7 @@ msgid "" - msgstr "" - "Project-Id-Version: printconf\n" - "Report-Msgid-Bugs-To: https://bugzilla.redhat.com/bugzilla\n" --"POT-Creation-Date: 2009-03-02 23:22+0000\n" -+"POT-Creation-Date: 2009-03-10 16:51+0000\n" - "PO-Revision-Date: 2003-05-27 18:37+0100\n" - "Last-Translator: Automatically generated\n" - "Language-Team: none\n" -@@ -49,11 +49,11 @@ msgstr "" - msgid "Enter IP address" - msgstr "" - --#: ../authconn.py:35 ../glade/NewPrinterWindow.glade.h:108 -+#: ../authconn.py:35 ../glade/NewPrinterWindow.glade.h:107 - msgid "Username:" - msgstr "" - --#: ../authconn.py:36 ../glade/NewPrinterWindow.glade.h:77 -+#: ../authconn.py:36 ../glade/NewPrinterWindow.glade.h:76 - msgid "Password:" - msgstr "" - -@@ -61,7 +61,7 @@ msgstr "" - msgid "Domain:" - msgstr "" - --#: ../authconn.py:46 -+#: ../authconn.py:46 ../authconn.py:409 - msgid "Authentication" - msgstr "" - -@@ -69,43 +69,52 @@ msgstr "" - msgid "Remember password" - msgstr "" - --#: ../authconn.py:211 ../authconn.py:232 -+#: ../authconn.py:208 -+#, python-format -+msgid "Unauthorized request (%s)" -+msgstr "" -+ -+#: ../authconn.py:209 -+msgid "You are not authorized to carry out therequested action." -+msgstr "" -+ -+#: ../authconn.py:212 ../authconn.py:233 - msgid "Operation canceled" - msgstr "" - --#: ../authconn.py:253 -+#: ../authconn.py:250 - #, python-format - msgid "CUPS server error (%s)" - msgstr "" - --#: ../authconn.py:255 ../errordialogs.py:57 --#: ../troubleshoot/PrintTestPage.py:400 -+#: ../authconn.py:252 ../errordialogs.py:56 ../errordialogs.py:70 -+msgid "CUPS server error" -+msgstr "" -+ -+#: ../authconn.py:261 ../errordialogs.py:57 -+#: ../troubleshoot/PrintTestPage.py:417 - #, python-format - msgid "There was an error during the CUPS operation: '%s'." - msgstr "" - --#: ../authconn.py:258 -+#: ../authconn.py:264 - msgid "Retry" - msgstr "" - --#: ../authconn.py:379 ../authconn.py:381 ../errordialogs.py:65 ../pysmb.py:75 -+#: ../authconn.py:385 ../authconn.py:387 ../errordialogs.py:65 ../pysmb.py:75 - #: ../pysmb.py:77 - msgid "Not authorized" - msgstr "" - --#: ../authconn.py:382 ../pysmb.py:78 -+#: ../authconn.py:388 ../pysmb.py:78 - msgid "The password may be incorrect." - msgstr "" - --#: ../authconn.py:400 -+#: ../authconn.py:407 - #, python-format - msgid "Authentication (%s)" - msgstr "" - --#: ../errordialogs.py:56 ../errordialogs.py:70 --msgid "CUPS server error" --msgstr "" -- - #: ../errordialogs.py:66 - msgid "" - "The password may be incorrect, or the server may be configured to deny " -@@ -132,7 +141,7 @@ msgstr "" - msgid "Server error" - msgstr "" - --#: ../errordialogs.py:82 ../system-config-printer.py:1219 -+#: ../errordialogs.py:82 ../system-config-printer.py:1223 - msgid "Not connected" - msgstr "" - -@@ -154,7 +163,7 @@ msgstr "" - msgid "_New Group from Selection" - msgstr "" - --#: ../GroupsPane.py:98 ../system-config-printer.py:393 -+#: ../GroupsPane.py:98 ../system-config-printer.py:397 - msgid "_Rename" - msgstr "" - -@@ -219,7 +228,7 @@ msgid "Document" - msgstr "" - - #: ../jobviewer.py:212 ../my-default-printer.py:153 --#: ../system-config-printer.py:366 ../system-config-printer.py:1367 -+#: ../system-config-printer.py:370 ../system-config-printer.py:1371 - #: ../troubleshoot/PrintTestPage.py:84 - msgid "Printer" - msgstr "" -@@ -256,8 +265,8 @@ msgstr "" - - #: ../jobviewer.py:386 ../jobviewer.py:451 ../jobviewer.py:452 - #: ../jobviewer.py:492 ../jobviewer.py:600 ../jobviewer.py:727 --#: ../jobviewer.py:1196 ../jobviewer.py:1222 ../system-config-printer.py:2546 --#: ../glade/NewPrinterWindow.glade.h:106 -+#: ../jobviewer.py:1196 ../jobviewer.py:1222 ../system-config-printer.py:2556 -+#: ../glade/NewPrinterWindow.glade.h:105 - #: ../troubleshoot/ChooseNetworkPrinter.py:101 - #: ../troubleshoot/ChooseNetworkPrinter.py:102 - #: ../troubleshoot/ChooseNetworkPrinter.py:105 -@@ -345,12 +354,12 @@ msgstr "" - msgid "Pending" - msgstr "" - --#: ../jobviewer.py:591 ../system-config-printer.py:186 -+#: ../jobviewer.py:591 ../system-config-printer.py:190 - #: ../troubleshoot/PrintTestPage.py:43 - msgid "Processing" - msgstr "" - --#: ../jobviewer.py:592 ../system-config-printer.py:188 -+#: ../jobviewer.py:592 ../system-config-printer.py:192 - #: ../troubleshoot/PrintTestPage.py:44 - msgid "Stopped" - msgstr "" -@@ -460,8 +469,8 @@ msgstr "" - msgid "_Set Default" - msgstr "" - --#: ../my-default-printer.py:158 ../system-config-printer.py:423 --#: ../system-config-printer.py:3660 ../troubleshoot/ChooseNetworkPrinter.py:37 -+#: ../my-default-printer.py:158 ../system-config-printer.py:427 -+#: ../system-config-printer.py:3675 ../troubleshoot/ChooseNetworkPrinter.py:37 - #: ../troubleshoot/ChoosePrinter.py:38 - msgid "Location" - msgstr "" -@@ -490,7 +499,7 @@ msgstr "" - msgid "Authenticated" - msgstr "" - --#: ../ppdippstr.py:50 ../system-config-printer.py:6259 -+#: ../ppdippstr.py:50 ../system-config-printer.py:6207 - msgid "None" - msgstr "" - -@@ -703,201 +712,201 @@ msgstr "" - msgid "1200 dpi, photo, black + color cartridge, photo paper" - msgstr "" - --#: ../system-config-printer.py:127 -+#: ../system-config-printer.py:131 - msgid "To do this, select System->Administration->Firewall from the main menu." - msgstr "" - --#: ../system-config-printer.py:185 -+#: ../system-config-printer.py:189 - msgid "Idle" - msgstr "" - --#: ../system-config-printer.py:187 -+#: ../system-config-printer.py:191 - msgid "Busy" - msgstr "" - --#: ../system-config-printer.py:372 ../system-config-printer.py:1373 -+#: ../system-config-printer.py:376 ../system-config-printer.py:1377 - msgid "Class" - msgstr "" - --#: ../system-config-printer.py:399 -+#: ../system-config-printer.py:403 - msgid "Set As De_fault" - msgstr "" - --#: ../system-config-printer.py:403 -+#: ../system-config-printer.py:407 - msgid "_Create class" - msgstr "" - --#: ../system-config-printer.py:405 -+#: ../system-config-printer.py:409 - msgid "View Print _Queue" - msgstr "" - --#: ../system-config-printer.py:407 -+#: ../system-config-printer.py:411 - msgid "_Add to Group" - msgstr "" - --#: ../system-config-printer.py:409 -+#: ../system-config-printer.py:413 - msgid "Save Results as _Group" - msgstr "" - --#: ../system-config-printer.py:411 -+#: ../system-config-printer.py:415 - msgid "Save Filter as _Search Group" - msgstr "" - --#: ../system-config-printer.py:415 -+#: ../system-config-printer.py:419 - msgid "E_nabled" - msgstr "" - --#: ../system-config-printer.py:417 -+#: ../system-config-printer.py:421 - msgid "_Shared" - msgstr "" - --#: ../system-config-printer.py:421 ../troubleshoot/ChooseNetworkPrinter.py:35 -+#: ../system-config-printer.py:425 ../troubleshoot/ChooseNetworkPrinter.py:35 - #: ../troubleshoot/ChoosePrinter.py:36 ../troubleshoot/DeviceListed.py:36 - msgid "Name" - msgstr "" - --#: ../system-config-printer.py:422 -+#: ../system-config-printer.py:426 - msgid "Description" - msgstr "" - --#: ../system-config-printer.py:424 -+#: ../system-config-printer.py:428 - msgid "Manufacturer / Model" - msgstr "" - - #. Printer state reasons list --#: ../system-config-printer.py:499 -+#: ../system-config-printer.py:503 - msgid "Message" - msgstr "" - --#: ../system-config-printer.py:534 -+#: ../system-config-printer.py:538 - msgid "Problems?" - msgstr "" - --#: ../system-config-printer.py:637 ../system-config-printer.py:639 -+#: ../system-config-printer.py:641 ../system-config-printer.py:643 - msgid "Members of this class" - msgstr "" - --#: ../system-config-printer.py:638 ../system-config-printer.py:640 -+#: ../system-config-printer.py:642 ../system-config-printer.py:644 - msgid "Others" - msgstr "" - --#: ../system-config-printer.py:641 -+#: ../system-config-printer.py:645 - msgid "Devices" - msgstr "" - --#: ../system-config-printer.py:642 -+#: ../system-config-printer.py:646 - msgid "Connections" - msgstr "" - --#: ../system-config-printer.py:643 -+#: ../system-config-printer.py:647 - msgid "Makes" - msgstr "" - --#: ../system-config-printer.py:644 -+#: ../system-config-printer.py:648 - msgid "Models" - msgstr "" - --#: ../system-config-printer.py:645 -+#: ../system-config-printer.py:649 - msgid "Drivers" - msgstr "" - --#: ../system-config-printer.py:646 ../glade/NewPrinterWindow.glade.h:55 -+#: ../system-config-printer.py:650 ../glade/NewPrinterWindow.glade.h:54 - msgid "Downloadable Drivers" - msgstr "" - --#: ../system-config-printer.py:647 -+#: ../system-config-printer.py:651 - msgid "Users" - msgstr "" - --#: ../system-config-printer.py:682 -+#: ../system-config-printer.py:686 - msgid "Automatic rotation" - msgstr "" - --#: ../system-config-printer.py:989 -+#: ../system-config-printer.py:993 - #, python-format - msgid "Printer Properties - '%s' on %s" - msgstr "" - - #. The Conflict button was pressed. --#: ../system-config-printer.py:996 -+#: ../system-config-printer.py:1000 - msgid "" - "There are conflicting options.\n" - "Changes can only be applied after\n" - "these conflicts are resolved." - msgstr "" - --#: ../system-config-printer.py:1214 -+#: ../system-config-printer.py:1218 - #, python-format - msgid "Printer configuration - %s" - msgstr "" - --#: ../system-config-printer.py:1217 -+#: ../system-config-printer.py:1221 - #, python-format - msgid "Connected to %s" - msgstr "" - - #. Update our copy of the printer's settings. --#: ../system-config-printer.py:1257 ../system-config-printer.py:2042 -+#: ../system-config-printer.py:1261 ../system-config-printer.py:2046 - msgid "obtaining queue details" - msgstr "" - --#: ../system-config-printer.py:1295 -+#: ../system-config-printer.py:1299 - msgid "Remove from Group" - msgstr "" - --#: ../system-config-printer.py:1361 -+#: ../system-config-printer.py:1365 - msgid "Network printer (discovered)" - msgstr "" - --#: ../system-config-printer.py:1364 -+#: ../system-config-printer.py:1368 - msgid "Network class (discovered)" - msgstr "" - --#: ../system-config-printer.py:1370 ../system-config-printer.py:5524 --#: ../system-config-printer.py:5594 ../system-config-printer.py:5596 -+#: ../system-config-printer.py:1374 ../system-config-printer.py:5519 -+#: ../system-config-printer.py:5589 ../system-config-printer.py:5591 - msgid "Fax" - msgstr "" - --#: ../system-config-printer.py:1376 ../system-config-printer.py:1382 -+#: ../system-config-printer.py:1380 ../system-config-printer.py:1386 - #: ../troubleshoot/LocalOrRemote.py:30 - msgid "Network printer" - msgstr "" - --#: ../system-config-printer.py:1379 -+#: ../system-config-printer.py:1383 - msgid "Network print share" - msgstr "" - --#: ../system-config-printer.py:1508 ../glade/ConnectingDialog.glade.h:2 -+#: ../system-config-printer.py:1512 ../glade/ConnectingDialog.glade.h:2 - #, no-c-format, python-format - msgid "Opening connection to %s" - msgstr "" - --#: ../system-config-printer.py:1887 -+#: ../system-config-printer.py:1891 - msgid "Installable Options" - msgstr "" - --#: ../system-config-printer.py:1888 -+#: ../system-config-printer.py:1892 - #: ../glade/PrinterPropertiesDialog.glade.h:109 - msgid "Printer Options" - msgstr "" - --#: ../system-config-printer.py:1924 -+#: ../system-config-printer.py:1928 - #, python-format - msgid "modifying class %s" - msgstr "" - --#: ../system-config-printer.py:1926 ../system-config-printer.py:3019 --#: ../system-config-printer.py:3044 ../system-config-printer.py:6547 --#: ../system-config-printer.py:6559 ../system-config-printer.py:6581 -+#: ../system-config-printer.py:1930 ../system-config-printer.py:3037 -+#: ../system-config-printer.py:3062 ../system-config-printer.py:6495 -+#: ../system-config-printer.py:6507 ../system-config-printer.py:6529 - #, python-format - msgid "modifying printer %s" - msgstr "" - --#: ../system-config-printer.py:1941 -+#: ../system-config-printer.py:1945 - msgid "This will delete this class!" - msgstr "" - --#: ../system-config-printer.py:1942 -+#: ../system-config-printer.py:1946 - msgid "Proceed anyway?" - msgstr "" - -@@ -905,63 +914,63 @@ msgstr "" - #. but we have never fetched the server settings to see whether - #. the server is publishing shared printers. Fetch the settings - #. now so that we can update the "not published" label if necessary. --#: ../system-config-printer.py:2030 ../system-config-printer.py:3203 -+#: ../system-config-printer.py:2034 ../system-config-printer.py:3221 - msgid "fetching server settings" - msgstr "" - --#: ../system-config-printer.py:2100 -+#: ../system-config-printer.py:2104 - msgid "Set Default Printer" - msgstr "" - --#: ../system-config-printer.py:2102 -+#: ../system-config-printer.py:2106 - msgid "Do you want to set this as the system-wide default printer?" - msgstr "" - --#: ../system-config-printer.py:2104 -+#: ../system-config-printer.py:2108 - msgid "Set as the _system-wide default printer" - msgstr "" - --#: ../system-config-printer.py:2106 -+#: ../system-config-printer.py:2110 - msgid "_Clear my personal default setting" - msgstr "" - --#: ../system-config-printer.py:2107 -+#: ../system-config-printer.py:2111 - msgid "Set as my _personal default printer" - msgstr "" - --#: ../system-config-printer.py:2112 -+#: ../system-config-printer.py:2116 - msgid "setting default printer" - msgstr "" - --#: ../system-config-printer.py:2169 -+#: ../system-config-printer.py:2173 - msgid "printing test page" - msgstr "" - --#: ../system-config-printer.py:2182 ../system-config-printer.py:2217 --#: ../system-config-printer.py:5418 -+#: ../system-config-printer.py:2186 ../system-config-printer.py:2221 -+#: ../system-config-printer.py:5413 - msgid "Not possible" - msgstr "" - --#: ../system-config-printer.py:2183 ../system-config-printer.py:2218 -+#: ../system-config-printer.py:2187 ../system-config-printer.py:2222 - msgid "" - "The remote server did not accept the print job, most likely because the " - "printer is not shared." - msgstr "" - --#: ../system-config-printer.py:2195 ../system-config-printer.py:2210 -+#: ../system-config-printer.py:2199 ../system-config-printer.py:2214 - msgid "Submitted" - msgstr "" - --#: ../system-config-printer.py:2196 -+#: ../system-config-printer.py:2200 - #, python-format - msgid "Test page submitted as job %d" - msgstr "" - --#: ../system-config-printer.py:2203 -+#: ../system-config-printer.py:2207 - msgid "sending maintenance command" - msgstr "" - --#: ../system-config-printer.py:2211 -+#: ../system-config-printer.py:2215 - #, python-format - msgid "Maintenance command submitted as job %d" - msgstr "" -@@ -969,71 +978,71 @@ msgstr "" - #. The underlying cupsGetPPD2() function returned NULL without - #. setting an IPP error, so it'll be something like a failed - #. connection. --#: ../system-config-printer.py:2285 ../system-config-printer.py:2381 -+#: ../system-config-printer.py:2289 ../system-config-printer.py:2385 - msgid "Error" - msgstr "" - --#: ../system-config-printer.py:2286 -+#: ../system-config-printer.py:2290 - msgid "There was a problem connecting to the CUPS server." - msgstr "" - --#: ../system-config-printer.py:2382 -+#: ../system-config-printer.py:2386 - #, python-format - msgid "Option '%s' has value '%s' and cannot be edited." - msgstr "" - --#: ../system-config-printer.py:2466 -+#: ../system-config-printer.py:2476 - msgid "Marker levels are not reported for this printer." - msgstr "" - --#: ../system-config-printer.py:2763 -+#: ../system-config-printer.py:2773 - msgid "Cannot Rename" - msgstr "" - --#: ../system-config-printer.py:2764 -+#: ../system-config-printer.py:2774 - msgid "There are queued jobs." - msgstr "" - --#: ../system-config-printer.py:2822 -+#: ../system-config-printer.py:2840 - msgid "renaming printer" - msgstr "" - - #. for classes make sure all members - #. will get added --#: ../system-config-printer.py:2907 -+#: ../system-config-printer.py:2925 - msgid "copying printer" - msgstr "" - --#: ../system-config-printer.py:2971 -+#: ../system-config-printer.py:2989 - #, python-format - msgid "Really delete class '%s'?" - msgstr "" - --#: ../system-config-printer.py:2973 -+#: ../system-config-printer.py:2991 - #, python-format - msgid "Really delete printer '%s'?" - msgstr "" - --#: ../system-config-printer.py:2975 -+#: ../system-config-printer.py:2993 - msgid "Really delete selected destinations?" - msgstr "" - --#: ../system-config-printer.py:2996 -+#: ../system-config-printer.py:3014 - #, python-format - msgid "deleting printer %s" - msgstr "" - --#: ../system-config-printer.py:3070 -+#: ../system-config-printer.py:3088 - msgid "Publish Shared Printers" - msgstr "" - --#: ../system-config-printer.py:3071 -+#: ../system-config-printer.py:3089 - msgid "" - "Shared printers are not available to other people unless the 'Publish shared " - "printers' option is enabled in the server settings." - msgstr "" - --#: ../system-config-printer.py:3264 -+#: ../system-config-printer.py:3282 - msgid "modifying server settings" - msgstr "" - -@@ -1043,100 +1052,100 @@ msgstr "" - #. be unblocked. Unfortunately, this is not yet possible - #. (bug #440469). However, we can display a dialog to suggest - #. that now might be a good time to review the firewall settings. --#: ../system-config-printer.py:3289 -+#: ../system-config-printer.py:3307 - msgid "Review Firewall" - msgstr "" - --#: ../system-config-printer.py:3290 -+#: ../system-config-printer.py:3308 - msgid "" - "You may need to adjust the firewall to allow network printing to this " - "computer." - msgstr "" - --#: ../system-config-printer.py:3623 -+#: ../system-config-printer.py:3638 - msgid "Browsing not available (pysmbc not installed)" - msgstr "" - - #. SMB list columns --#: ../system-config-printer.py:3629 -+#: ../system-config-printer.py:3644 - msgid "Share" - msgstr "" - --#: ../system-config-printer.py:3635 -+#: ../system-config-printer.py:3650 - msgid "Comment" - msgstr "" - - #. IPP list columns --#: ../system-config-printer.py:3654 -+#: ../system-config-printer.py:3669 - msgid "Queue" - msgstr "" - --#: ../system-config-printer.py:3668 -+#: ../system-config-printer.py:3683 - msgid "" - "PostScript Printer Description files (*.ppd, *.PPD, *.ppd.gz, *.PPD.gz, *." - "PPD.GZ)" - msgstr "" - --#: ../system-config-printer.py:3677 -+#: ../system-config-printer.py:3692 - msgid "All files (*)" - msgstr "" - --#: ../system-config-printer.py:3713 ../system-config-printer.py:5970 --#: ../system-config-printer.py:6008 ../applet.py:124 -+#: ../system-config-printer.py:3728 ../system-config-printer.py:5918 -+#: ../system-config-printer.py:5956 ../applet.py:124 - msgid "Search" - msgstr "" - --#: ../system-config-printer.py:3736 ../system-config-printer.py:3760 --#: ../glade/NewPrinterWindow.glade.h:74 -+#: ../system-config-printer.py:3751 ../system-config-printer.py:3775 -+#: ../glade/NewPrinterWindow.glade.h:73 - msgid "New Printer" - msgstr "" - --#: ../system-config-printer.py:3747 -+#: ../system-config-printer.py:3762 - msgid "New Class" - msgstr "" - --#: ../system-config-printer.py:3752 -+#: ../system-config-printer.py:3767 - msgid "Change Device URI" - msgstr "" - --#: ../system-config-printer.py:3758 -+#: ../system-config-printer.py:3773 - msgid "Change Driver" - msgstr "" - --#: ../system-config-printer.py:3927 ../system-config-printer.py:3993 --#: ../system-config-printer.py:4289 ../system-config-printer.py:4487 --#: ../system-config-printer.py:5772 ../system-config-printer.py:5995 -+#: ../system-config-printer.py:3942 ../system-config-printer.py:4008 -+#: ../system-config-printer.py:4304 ../system-config-printer.py:4502 -+#: ../system-config-printer.py:5762 ../system-config-printer.py:5943 - msgid "Searching" - msgstr "" - --#: ../system-config-printer.py:3928 -+#: ../system-config-printer.py:3943 - msgid "Searching for downloadable drivers" - msgstr "" - --#: ../system-config-printer.py:3994 ../system-config-printer.py:4290 -+#: ../system-config-printer.py:4009 ../system-config-printer.py:4305 - msgid "Searching for drivers" - msgstr "" - --#: ../system-config-printer.py:4488 ../system-config-printer.py:5773 -+#: ../system-config-printer.py:4503 ../system-config-printer.py:5763 - msgid "Searching for printers" - msgstr "" - --#: ../system-config-printer.py:4497 -+#: ../system-config-printer.py:4512 - msgid "fetching device list" - msgstr "" - - #. Tell the user why he needs the plugin --#: ../system-config-printer.py:4579 -+#: ../system-config-printer.py:4594 - msgid "For this printer a proprietary driver plugin from HP is available.\n" - msgstr "" - --#: ../system-config-printer.py:4582 -+#: ../system-config-printer.py:4597 - msgid "" - "The installation of the plugin is required for your printer to work.\n" - "\n" - msgstr "" - --#: ../system-config-printer.py:4585 -+#: ../system-config-printer.py:4600 - msgid "" - "Installing the plugin is optional, it completes or enhances the " - "functionality\n" -@@ -1144,280 +1153,272 @@ msgid "" - "\n" - msgstr "" - --#: ../system-config-printer.py:4589 -+#: ../system-config-printer.py:4604 - msgid "The plugin provides the following features:\n" - msgstr "" - --#: ../system-config-printer.py:4592 -+#: ../system-config-printer.py:4607 - msgid " - Printing support\n" - msgstr "" - --#: ../system-config-printer.py:4595 -+#: ../system-config-printer.py:4610 - msgid " - Faster printing\n" - msgstr "" - --#: ../system-config-printer.py:4598 -+#: ../system-config-printer.py:4613 - msgid " - Better printout quality\n" - msgstr "" - --#: ../system-config-printer.py:4601 -+#: ../system-config-printer.py:4616 - msgid " - Extra printing features\n" - msgstr "" - --#: ../system-config-printer.py:4604 -+#: ../system-config-printer.py:4619 - msgid " - Scanning support\n" - msgstr "" - --#: ../system-config-printer.py:4607 -+#: ../system-config-printer.py:4622 - msgid " - Faster scanning\n" - msgstr "" - --#: ../system-config-printer.py:4610 -+#: ../system-config-printer.py:4625 - msgid " - Better scanning image quality\n" - msgstr "" - --#: ../system-config-printer.py:4613 -+#: ../system-config-printer.py:4628 - msgid " - Faxing support\n" - msgstr "" - --#: ../system-config-printer.py:4616 -+#: ../system-config-printer.py:4631 - msgid " - Extra fax features\n" - msgstr "" - --#: ../system-config-printer.py:4619 -+#: ../system-config-printer.py:4634 - msgid " - Better Input/Output support\n" - msgstr "" - --#: ../system-config-printer.py:4622 -+#: ../system-config-printer.py:4637 - msgid " - Extra user interface features\n" - msgstr "" - --#: ../system-config-printer.py:4625 -+#: ../system-config-printer.py:4640 - msgid " - Other extra features\n" - msgstr "" - --#: ../system-config-printer.py:4630 -+#: ../system-config-printer.py:4645 - msgid "Install plugin" - msgstr "" - --#: ../system-config-printer.py:4631 -+#: ../system-config-printer.py:4646 - msgid "Do not set up printer" - msgstr "" - --#: ../system-config-printer.py:4632 -+#: ../system-config-printer.py:4647 - msgid "Set up without plugin" - msgstr "" - --#: ../system-config-printer.py:4634 ../troubleshoot/PrintTestPage.py:118 -+#: ../system-config-printer.py:4649 ../troubleshoot/PrintTestPage.py:118 - msgid "Yes" - msgstr "" - --#: ../system-config-printer.py:4635 ../troubleshoot/PrintTestPage.py:119 -+#: ../system-config-printer.py:4650 ../troubleshoot/PrintTestPage.py:119 - msgid "No" - msgstr "" - --#: ../system-config-printer.py:4809 ../system-config-printer.py:4813 -+#: ../system-config-printer.py:4824 ../system-config-printer.py:4828 - msgid " (Current)" - msgstr "" - --#: ../system-config-printer.py:4845 --msgid "HP Printer (HPLIP)" --msgstr "" -- --#: ../system-config-printer.py:4886 -+#: ../system-config-printer.py:4881 - msgid "Other" - msgstr "" - - #. device-info - #. PhysicalDevice obj - #. Separator? --#: ../system-config-printer.py:4902 -+#: ../system-config-printer.py:4897 - msgid "Network Printer" - msgstr "" - --#: ../system-config-printer.py:4906 -+#: ../system-config-printer.py:4901 - msgid "Find Network Printer" - msgstr "" - --#: ../system-config-printer.py:4979 ../system-config-printer.py:5376 -+#: ../system-config-printer.py:4974 ../system-config-printer.py:5371 - msgid "Scanning..." - msgstr "" - --#: ../system-config-printer.py:5034 ../system-config-printer.py:5798 -+#: ../system-config-printer.py:5029 - msgid "No Print Shares" - msgstr "" - --#: ../system-config-printer.py:5035 -+#: ../system-config-printer.py:5030 - msgid "" - "There were no print shares found. Please check that the Samba service is " - "marked as trusted in your firewall configuration." - msgstr "" - --#: ../system-config-printer.py:5296 ../system-config-printer.py:5357 -+#: ../system-config-printer.py:5291 ../system-config-printer.py:5352 - msgid "Print Share Verified" - msgstr "" - --#: ../system-config-printer.py:5297 ../system-config-printer.py:5358 -+#: ../system-config-printer.py:5292 ../system-config-printer.py:5353 - msgid "This print share is accessible." - msgstr "" - --#: ../system-config-printer.py:5302 ../system-config-printer.py:5362 -+#: ../system-config-printer.py:5297 ../system-config-printer.py:5357 - msgid "This print share is not accessible." - msgstr "" - --#: ../system-config-printer.py:5305 -+#: ../system-config-printer.py:5300 - msgid "Print Share Inaccessible" - msgstr "" - --#: ../system-config-printer.py:5361 -+#: ../system-config-printer.py:5356 - msgid "Inaccessible" - msgstr "" - --#: ../system-config-printer.py:5419 -+#: ../system-config-printer.py:5414 - #, python-format - msgid "It is not possible to obtain a list of queues from '%s'." - msgstr "" - --#: ../system-config-printer.py:5421 -+#: ../system-config-printer.py:5416 - msgid "" - "Obtaining a list of queues is a CUPS extension to IPP. Network printers do " - "not support it." - msgstr "" - --#: ../system-config-printer.py:5424 -+#: ../system-config-printer.py:5419 - msgid "No queues" - msgstr "" - --#: ../system-config-printer.py:5425 -+#: ../system-config-printer.py:5420 - msgid "There are no queues available." - msgstr "" - --#: ../system-config-printer.py:5516 -+#: ../system-config-printer.py:5511 - msgid "Parallel Port" - msgstr "" - --#: ../system-config-printer.py:5518 -+#: ../system-config-printer.py:5513 - msgid "Serial Port" - msgstr "" - --#: ../system-config-printer.py:5520 -+#: ../system-config-printer.py:5515 - msgid "USB" - msgstr "" - --#: ../system-config-printer.py:5522 ../system-config-printer.py:5525 -+#: ../system-config-printer.py:5517 ../system-config-printer.py:5520 - msgid "HP Linux Imaging and Printing (HPLIP)" - msgstr "" - --#: ../system-config-printer.py:5527 -+#: ../system-config-printer.py:5522 - msgid "Hardware Abstraction Layer (HAL)" - msgstr "" - --#: ../system-config-printer.py:5529 -+#: ../system-config-printer.py:5524 - msgid "AppSocket/HP JetDirect" - msgstr "" - --#: ../system-config-printer.py:5538 -+#: ../system-config-printer.py:5533 - #, python-format - msgid "LPD/LPR queue '%s'" - msgstr "" - --#: ../system-config-printer.py:5540 -+#: ../system-config-printer.py:5535 - msgid "LPD/LPR queue" - msgstr "" - --#: ../system-config-printer.py:5543 -+#: ../system-config-printer.py:5538 - msgid "Windows Printer via SAMBA" - msgstr "" - --#: ../system-config-printer.py:5545 ../glade/NewPrinterWindow.glade.h:66 -+#: ../system-config-printer.py:5540 ../glade/NewPrinterWindow.glade.h:65 - msgid "IPP" - msgstr "" - --#: ../system-config-printer.py:5547 -+#: ../system-config-printer.py:5542 - msgid "HTTP" - msgstr "" - --#: ../system-config-printer.py:5632 -+#: ../system-config-printer.py:5624 - msgid "A printer connected to the parallel port." - msgstr "" - --#: ../system-config-printer.py:5634 -+#: ../system-config-printer.py:5626 - msgid "A printer connected to a USB port." - msgstr "" - --#: ../system-config-printer.py:5636 -+#: ../system-config-printer.py:5628 - msgid "" - "HPLIP software driving a printer, or the printer function of a multi-" - "function device." - msgstr "" - --#: ../system-config-printer.py:5639 -+#: ../system-config-printer.py:5631 - msgid "" - "HPLIP software driving a fax machine, or the fax function of a multi-" - "function device." - msgstr "" - --#: ../system-config-printer.py:5642 -+#: ../system-config-printer.py:5634 - msgid "Local printer detected by the Hardware Abstraction Layer (HAL)." - msgstr "" - --#: ../system-config-printer.py:5799 --msgid "HPLIP cannot find the device." --msgstr "" -- --#: ../system-config-printer.py:5881 -+#: ../system-config-printer.py:5831 - msgid "No printer was found at that address." - msgstr "" - --#: ../system-config-printer.py:6020 -+#: ../system-config-printer.py:5968 - msgid "-- Select from search results --" - msgstr "" - --#: ../system-config-printer.py:6022 -+#: ../system-config-printer.py:5970 - msgid "-- No matches found --" - msgstr "" - --#: ../system-config-printer.py:6203 -+#: ../system-config-printer.py:6151 - msgid " (recommended)" - msgstr "" - --#: ../system-config-printer.py:6217 -+#: ../system-config-printer.py:6165 - msgid "This PPD is generated by foomatic." - msgstr "" - --#: ../system-config-printer.py:6241 -+#: ../system-config-printer.py:6189 - msgid "OpenPrinting" - msgstr "" - --#: ../system-config-printer.py:6252 -+#: ../system-config-printer.py:6200 - msgid "Distributable" - msgstr "" - --#: ../system-config-printer.py:6293 -+#: ../system-config-printer.py:6241 - msgid ", " - msgstr "" - --#: ../system-config-printer.py:6298 -+#: ../system-config-printer.py:6246 - #, python-format - msgid "" - "\n" - "(%s)" - msgstr "" - --#: ../system-config-printer.py:6303 -+#: ../system-config-printer.py:6251 - msgid "No support contacts known" - msgstr "" - --#: ../system-config-printer.py:6307 ../system-config-printer.py:6320 -+#: ../system-config-printer.py:6255 ../system-config-printer.py:6268 - msgid "Not specified." - msgstr "" - - #. Foomatic database problem of some sort. --#: ../system-config-printer.py:6360 -+#: ../system-config-printer.py:6308 - msgid "Database error" - msgstr "" - --#: ../system-config-printer.py:6361 -+#: ../system-config-printer.py:6309 - #, python-format - msgid "The '%s' driver cannot be used with printer '%s %s'." - msgstr "" -@@ -1425,60 +1426,60 @@ msgstr "" - #. This printer references some XML that is not - #. installed by default. Point the user at the - #. package they need to install. --#: ../system-config-printer.py:6371 -+#: ../system-config-printer.py:6319 - #, python-format - msgid "You will need to install the '%s' package in order to use this driver." - msgstr "" - - #. This error came from trying to open the PPD file. --#: ../system-config-printer.py:6378 -+#: ../system-config-printer.py:6326 - msgid "PPD error" - msgstr "" - --#: ../system-config-printer.py:6380 -+#: ../system-config-printer.py:6328 - msgid "Failed to read PPD file. Possible reason follows:" - msgstr "" - - #. Failed to get PPD downloaded from OpenPrinting XXX --#: ../system-config-printer.py:6397 -+#: ../system-config-printer.py:6345 - msgid "Downloadable drivers" - msgstr "" - --#: ../system-config-printer.py:6398 -+#: ../system-config-printer.py:6346 - msgid "Failed to download PPD." - msgstr "" - --#: ../system-config-printer.py:6405 -+#: ../system-config-printer.py:6353 - msgid "fetching PPD" - msgstr "" - --#: ../system-config-printer.py:6434 ../system-config-printer.py:6472 -+#: ../system-config-printer.py:6382 ../system-config-printer.py:6420 - msgid "No Installable Options" - msgstr "" - --#: ../system-config-printer.py:6520 -+#: ../system-config-printer.py:6468 - #, python-format - msgid "adding printer %s" - msgstr "" - --#: ../system-config-printer.py:6669 -+#: ../system-config-printer.py:6617 - msgid "Would you like to print a test page?" - msgstr "" - --#: ../system-config-printer.py:6722 -+#: ../system-config-printer.py:6670 - msgid "Install driver" - msgstr "" - --#: ../system-config-printer.py:6723 ../troubleshoot/CheckPPDSanity.py:131 -+#: ../system-config-printer.py:6671 ../troubleshoot/CheckPPDSanity.py:131 - #, python-format - msgid "Printer '%s' requires the %s package but it is not currently installed." - msgstr "" - --#: ../system-config-printer.py:6739 -+#: ../system-config-printer.py:6687 - msgid "Missing driver" - msgstr "" - --#: ../system-config-printer.py:6740 -+#: ../system-config-printer.py:6688 - #, python-format - msgid "" - "Printer '%s' requires the '%s' program but it is not currently installed. " -@@ -1592,106 +1593,102 @@ msgid "Enter device URI" - msgstr "" - - #: ../glade/NewPrinterWindow.glade.h:5 --msgid "HP Printer (HPLIP) via network" --msgstr "" -- --#: ../glade/NewPrinterWindow.glade.h:6 - msgid "IPP Printer" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:7 -+#: ../glade/NewPrinterWindow.glade.h:6 - msgid "License Terms" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:8 -+#: ../glade/NewPrinterWindow.glade.h:7 - msgid "Location of the LPD network printer" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:9 -+#: ../glade/NewPrinterWindow.glade.h:8 - msgid "Location of the network printer" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:10 -+#: ../glade/NewPrinterWindow.glade.h:9 - msgid "Location (optional)" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:11 -+#: ../glade/NewPrinterWindow.glade.h:10 - msgid "Network Printer" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:12 -+#: ../glade/NewPrinterWindow.glade.h:11 - msgid "Note" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:13 -+#: ../glade/NewPrinterWindow.glade.h:12 - msgid "Output Quality" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:14 -+#: ../glade/NewPrinterWindow.glade.h:13 - msgid "Printer Name" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:15 -+#: ../glade/NewPrinterWindow.glade.h:14 - msgid "SMB Printer" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:16 -+#: ../glade/NewPrinterWindow.glade.h:15 - msgid "Select Driver" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:17 -+#: ../glade/NewPrinterWindow.glade.h:16 - msgid "Settings of the serial port" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:18 -+#: ../glade/NewPrinterWindow.glade.h:17 - msgid "smb://[workgroup/]server[:port]/printer" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:19 -+#: ../glade/NewPrinterWindow.glade.h:18 - msgid "Choose Class Members" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:20 -+#: ../glade/NewPrinterWindow.glade.h:19 - msgid "Choose Driver" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:21 -+#: ../glade/NewPrinterWindow.glade.h:20 - msgid "Describe Printer" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:22 -+#: ../glade/NewPrinterWindow.glade.h:21 - msgid "Existing Settings" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:23 -+#: ../glade/NewPrinterWindow.glade.h:22 - msgid "Installable Options" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:24 -+#: ../glade/NewPrinterWindow.glade.h:23 - msgid "Select Device" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:25 -+#: ../glade/NewPrinterWindow.glade.h:24 - msgid "Baud Rate" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:26 -+#: ../glade/NewPrinterWindow.glade.h:25 - msgid "Browse..." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:27 -+#: ../glade/NewPrinterWindow.glade.h:26 - msgid "Comments..." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:28 -+#: ../glade/NewPrinterWindow.glade.h:27 - msgid "Connection" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:29 -+#: ../glade/NewPrinterWindow.glade.h:28 - msgid "Data Bits" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:30 -+#: ../glade/NewPrinterWindow.glade.h:29 - msgid "" - "Default\n" - "1200\n" -@@ -1704,14 +1701,14 @@ msgid "" - "115200" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:39 -+#: ../glade/NewPrinterWindow.glade.h:38 - msgid "" - "Default\n" - "8\n" - "7" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:42 -+#: ../glade/NewPrinterWindow.glade.h:41 - msgid "" - "Default\n" - "None\n" -@@ -1719,7 +1716,7 @@ msgid "" - "Even" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:46 -+#: ../glade/NewPrinterWindow.glade.h:45 - msgid "" - "Default\n" - "None\n" -@@ -1728,188 +1725,188 @@ msgid "" - "DTR/DSR (Hardware)" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:51 -+#: ../glade/NewPrinterWindow.glade.h:50 - #: ../glade/PrinterPropertiesDialog.glade.h:35 - msgid "Description:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:52 ../troubleshoot/DeviceListed.py:40 -+#: ../glade/NewPrinterWindow.glade.h:51 ../troubleshoot/DeviceListed.py:40 - msgid "Device URI" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:53 -+#: ../glade/NewPrinterWindow.glade.h:52 - msgid "Device description." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:54 -+#: ../glade/NewPrinterWindow.glade.h:53 - msgid "DirectJet" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:56 -+#: ../glade/NewPrinterWindow.glade.h:55 - msgid "Driver details" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:57 -+#: ../glade/NewPrinterWindow.glade.h:56 - msgid "Empty" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:58 -+#: ../glade/NewPrinterWindow.glade.h:57 - msgid "Find _Queue..." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:59 -+#: ../glade/NewPrinterWindow.glade.h:58 - msgid "Flow Control" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:60 -+#: ../glade/NewPrinterWindow.glade.h:59 - msgid "" - "For the printer you have selected there are drivers available for download." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:61 -+#: ../glade/NewPrinterWindow.glade.h:60 - msgid "Free software" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:62 -+#: ../glade/NewPrinterWindow.glade.h:61 - msgid "Graphics:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:63 -+#: ../glade/NewPrinterWindow.glade.h:62 - msgid "Host:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:64 -+#: ../glade/NewPrinterWindow.glade.h:63 - msgid "Human-readable description such as \"HP LaserJet with Duplexer\"" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:65 -+#: ../glade/NewPrinterWindow.glade.h:64 - msgid "Human-readable location such as \"Lab 1\"" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:67 -+#: ../glade/NewPrinterWindow.glade.h:66 - msgid "LPD" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:68 -+#: ../glade/NewPrinterWindow.glade.h:67 - msgid "License:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:69 -+#: ../glade/NewPrinterWindow.glade.h:68 - msgid "Line art:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:70 -+#: ../glade/NewPrinterWindow.glade.h:69 - msgid "Local Driver" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:71 -+#: ../glade/NewPrinterWindow.glade.h:70 - msgid "Make and model:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:72 -+#: ../glade/NewPrinterWindow.glade.h:71 - msgid "Manufacturer" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:73 -+#: ../glade/NewPrinterWindow.glade.h:72 - msgid "Network" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:75 -+#: ../glade/NewPrinterWindow.glade.h:74 - msgid "No, I do not accept this license" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:76 -+#: ../glade/NewPrinterWindow.glade.h:75 - msgid "Parity" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:78 -+#: ../glade/NewPrinterWindow.glade.h:77 - msgid "Patented algorithms" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:79 -+#: ../glade/NewPrinterWindow.glade.h:78 - msgid "Photo:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:80 -+#: ../glade/NewPrinterWindow.glade.h:79 - msgid "Port number:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:81 -+#: ../glade/NewPrinterWindow.glade.h:80 - msgid "" - "PostScript Printer Description (PPD) files can often be found on the driver " - "disk that comes with the printer. For PostScript printers they are often " - "part of the Windows® driver." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:82 -+#: ../glade/NewPrinterWindow.glade.h:81 - msgid "Printer model:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:83 -+#: ../glade/NewPrinterWindow.glade.h:82 - msgid "Probe" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:84 -+#: ../glade/NewPrinterWindow.glade.h:83 - msgid "Prompt user if authentication is required" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:85 -+#: ../glade/NewPrinterWindow.glade.h:84 - msgid "Provide PPD file" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:86 -+#: ../glade/NewPrinterWindow.glade.h:85 - msgid "Queue:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:87 -+#: ../glade/NewPrinterWindow.glade.h:86 - msgid "SCSI" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:88 -+#: ../glade/NewPrinterWindow.glade.h:87 - msgid "SMB" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:89 -+#: ../glade/NewPrinterWindow.glade.h:88 - msgid "Search for a printer driver to download" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:90 -+#: ../glade/NewPrinterWindow.glade.h:89 - msgid "Searching..." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:91 -+#: ../glade/NewPrinterWindow.glade.h:90 - msgid "Select A File" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:92 -+#: ../glade/NewPrinterWindow.glade.h:91 - msgid "Select printer from database" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:93 -+#: ../glade/NewPrinterWindow.glade.h:92 - msgid "Serial" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:94 -+#: ../glade/NewPrinterWindow.glade.h:93 - msgid "Set authentication details now" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:95 -+#: ../glade/NewPrinterWindow.glade.h:94 - msgid "Short name for this printer such as \"laserjet\"" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:96 -+#: ../glade/NewPrinterWindow.glade.h:95 - msgid "Supplier:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:97 -+#: ../glade/NewPrinterWindow.glade.h:96 - msgid "Support:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:98 -+#: ../glade/NewPrinterWindow.glade.h:97 - msgid "Text:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:99 -+#: ../glade/NewPrinterWindow.glade.h:98 - msgid "" - "The foomatic printer database contains various manufacturer provided " - "PostScript Printer Description (PPD) files and also can generate PPD files " -@@ -1918,68 +1915,68 @@ msgid "" - "printer." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:100 -+#: ../glade/NewPrinterWindow.glade.h:99 - msgid "" - "These drivers do not come from your operating system supplier and will not " - "be covered by their commercial support. See the support and license terms " - "of the driver's supplier." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:101 -+#: ../glade/NewPrinterWindow.glade.h:100 - msgid "" - "This driver supports additional hardware that may be installed in the " - "printer." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:102 -+#: ../glade/NewPrinterWindow.glade.h:101 - msgid "" - "This is done by assuming that options with the same name do have the same " - "meaning. Settings of options that are not present in the new PPD will be " - "lost and options only present in the new PPD will be set to default." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:103 -+#: ../glade/NewPrinterWindow.glade.h:102 - msgid "" - "This way all current option settings will be lost. The default settings of " - "the new PPD will be used. " - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:104 -+#: ../glade/NewPrinterWindow.glade.h:103 - msgid "Try to copy the option settings over from the old PPD. " - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:105 -+#: ../glade/NewPrinterWindow.glade.h:104 - msgid "URI:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:107 -+#: ../glade/NewPrinterWindow.glade.h:106 - msgid "Use the new PPD (Postscript Printer Description) as is." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:109 -+#: ../glade/NewPrinterWindow.glade.h:108 - msgid "" - "With this choice no driver download will be performed. In the next steps a " - "locally installed driver will be selected." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:110 -+#: ../glade/NewPrinterWindow.glade.h:109 - msgid "Yes, I accept this license" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:111 -+#: ../glade/NewPrinterWindow.glade.h:110 - msgid "_Search" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:112 -+#: ../glade/NewPrinterWindow.glade.h:111 - msgid "_Verify..." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:113 -+#: ../glade/NewPrinterWindow.glade.h:112 - #: ../glade/PrinterPropertiesDialog.glade.h:128 - msgid "move left" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:114 -+#: ../glade/NewPrinterWindow.glade.h:113 - #: ../glade/PrinterPropertiesDialog.glade.h:129 - msgid "move right" - msgstr "" -@@ -2819,7 +2816,7 @@ msgstr "" - msgid "Remember to load paper of type '%s' into the printer first." - msgstr "" - --#: ../troubleshoot/PrintTestPage.py:399 -+#: ../troubleshoot/PrintTestPage.py:416 - msgid "Error submitting test page" - msgstr "" - -diff -up system-config-printer-1.1.5/po/lv.po.git-1.1.x system-config-printer-1.1.5/po/lv.po ---- system-config-printer-1.1.5/po/lv.po.git-1.1.x 2009-03-03 22:21:46.000000000 +0000 -+++ system-config-printer-1.1.5/po/lv.po 2009-03-10 17:43:31.000000000 +0000 -@@ -9,7 +9,7 @@ msgid "" - msgstr "" - "Project-Id-Version: lv\n" - "Report-Msgid-Bugs-To: https://bugzilla.redhat.com/bugzilla\n" --"POT-Creation-Date: 2009-03-02 23:22+0000\n" -+"POT-Creation-Date: 2009-03-10 16:51+0000\n" - "PO-Revision-Date: 2006-11-22 23:03+0200\n" - "Last-Translator: Gatis Kalnins \n" - "Language-Team: Latvian \n" -@@ -56,11 +56,11 @@ msgstr "" - msgid "Enter IP address" - msgstr "Printera vārds" - --#: ../authconn.py:35 ../glade/NewPrinterWindow.glade.h:108 -+#: ../authconn.py:35 ../glade/NewPrinterWindow.glade.h:107 - msgid "Username:" - msgstr "Lietotājs:" - --#: ../authconn.py:36 ../glade/NewPrinterWindow.glade.h:77 -+#: ../authconn.py:36 ../glade/NewPrinterWindow.glade.h:76 - msgid "Password:" - msgstr "Parole:" - -@@ -69,7 +69,7 @@ msgstr "Parole:" - msgid "Domain:" - msgstr "Izvietojums:" - --#: ../authconn.py:46 -+#: ../authconn.py:46 ../authconn.py:409 - #, fuzzy - msgid "Authentication" - msgstr "Autentifikācija" -@@ -78,44 +78,53 @@ msgstr "Autentifikācija" - msgid "Remember password" - msgstr "" - --#: ../authconn.py:211 ../authconn.py:232 -+#: ../authconn.py:208 -+#, python-format -+msgid "Unauthorized request (%s)" -+msgstr "" -+ -+#: ../authconn.py:209 -+msgid "You are not authorized to carry out therequested action." -+msgstr "" -+ -+#: ../authconn.py:212 ../authconn.py:233 - #, fuzzy - msgid "Operation canceled" - msgstr "Darbības politika:" - --#: ../authconn.py:253 -+#: ../authconn.py:250 - #, fuzzy, python-format - msgid "CUPS server error (%s)" - msgstr "CUPS servera kļūda" - --#: ../authconn.py:255 ../errordialogs.py:57 --#: ../troubleshoot/PrintTestPage.py:400 -+#: ../authconn.py:252 ../errordialogs.py:56 ../errordialogs.py:70 -+msgid "CUPS server error" -+msgstr "CUPS servera kļūda" -+ -+#: ../authconn.py:261 ../errordialogs.py:57 -+#: ../troubleshoot/PrintTestPage.py:417 - #, python-format - msgid "There was an error during the CUPS operation: '%s'." - msgstr "Kļūda CUPS darbības laikā: '%s'." - --#: ../authconn.py:258 -+#: ../authconn.py:264 - msgid "Retry" - msgstr "" - --#: ../authconn.py:379 ../authconn.py:381 ../errordialogs.py:65 ../pysmb.py:75 -+#: ../authconn.py:385 ../authconn.py:387 ../errordialogs.py:65 ../pysmb.py:75 - #: ../pysmb.py:77 - msgid "Not authorized" - msgstr "Nav autorizēts" - --#: ../authconn.py:382 ../pysmb.py:78 -+#: ../authconn.py:388 ../pysmb.py:78 - msgid "The password may be incorrect." - msgstr "Iespējams - nekorekta parole." - --#: ../authconn.py:400 -+#: ../authconn.py:407 - #, fuzzy, python-format - msgid "Authentication (%s)" - msgstr "Autentifikācija" - --#: ../errordialogs.py:56 ../errordialogs.py:70 --msgid "CUPS server error" --msgstr "CUPS servera kļūda" -- - #: ../errordialogs.py:66 - msgid "" - "The password may be incorrect, or the server may be configured to deny " -@@ -144,7 +153,7 @@ msgstr "Nepieciešama jaunināšana" - msgid "Server error" - msgstr "Servera kļūda" - --#: ../errordialogs.py:82 ../system-config-printer.py:1219 -+#: ../errordialogs.py:82 ../system-config-printer.py:1223 - msgid "Not connected" - msgstr "Nav pieslēgts" - -@@ -166,7 +175,7 @@ msgstr "" - msgid "_New Group from Selection" - msgstr "" - --#: ../GroupsPane.py:98 ../system-config-printer.py:393 -+#: ../GroupsPane.py:98 ../system-config-printer.py:397 - #, fuzzy - msgid "_Rename" - msgstr "Lietotājs:" -@@ -236,7 +245,7 @@ msgid "Document" - msgstr "Komentārs" - - #: ../jobviewer.py:212 ../my-default-printer.py:153 --#: ../system-config-printer.py:366 ../system-config-printer.py:1367 -+#: ../system-config-printer.py:370 ../system-config-printer.py:1371 - #: ../troubleshoot/PrintTestPage.py:84 - msgid "Printer" - msgstr "Printeris" -@@ -275,8 +284,8 @@ msgstr "" - - #: ../jobviewer.py:386 ../jobviewer.py:451 ../jobviewer.py:452 - #: ../jobviewer.py:492 ../jobviewer.py:600 ../jobviewer.py:727 --#: ../jobviewer.py:1196 ../jobviewer.py:1222 ../system-config-printer.py:2546 --#: ../glade/NewPrinterWindow.glade.h:106 -+#: ../jobviewer.py:1196 ../jobviewer.py:1222 ../system-config-printer.py:2556 -+#: ../glade/NewPrinterWindow.glade.h:105 - #: ../troubleshoot/ChooseNetworkPrinter.py:101 - #: ../troubleshoot/ChooseNetworkPrinter.py:102 - #: ../troubleshoot/ChooseNetworkPrinter.py:105 -@@ -367,12 +376,12 @@ msgstr "" - msgid "Pending" - msgstr "Drukāšana" - --#: ../jobviewer.py:591 ../system-config-printer.py:186 -+#: ../jobviewer.py:591 ../system-config-printer.py:190 - #: ../troubleshoot/PrintTestPage.py:43 - msgid "Processing" - msgstr "Apstrādā" - --#: ../jobviewer.py:592 ../system-config-printer.py:188 -+#: ../jobviewer.py:592 ../system-config-printer.py:192 - #: ../troubleshoot/PrintTestPage.py:44 - msgid "Stopped" - msgstr "Apturēts" -@@ -491,8 +500,8 @@ msgstr "" - msgid "_Set Default" - msgstr "galvenais" - --#: ../my-default-printer.py:158 ../system-config-printer.py:423 --#: ../system-config-printer.py:3660 ../troubleshoot/ChooseNetworkPrinter.py:37 -+#: ../my-default-printer.py:158 ../system-config-printer.py:427 -+#: ../system-config-printer.py:3675 ../troubleshoot/ChooseNetworkPrinter.py:37 - #: ../troubleshoot/ChoosePrinter.py:38 - #, fuzzy - msgid "Location" -@@ -526,7 +535,7 @@ msgstr "Uzstādīt kā galveno printeri" - msgid "Authenticated" - msgstr "Autentifikācija" - --#: ../ppdippstr.py:50 ../system-config-printer.py:6259 -+#: ../ppdippstr.py:50 ../system-config-printer.py:6207 - #, fuzzy - msgid "None" - msgstr "nekā" -@@ -745,133 +754,133 @@ msgstr "" - msgid "1200 dpi, photo, black + color cartridge, photo paper" - msgstr "" - --#: ../system-config-printer.py:127 -+#: ../system-config-printer.py:131 - msgid "To do this, select System->Administration->Firewall from the main menu." - msgstr "" - --#: ../system-config-printer.py:185 -+#: ../system-config-printer.py:189 - msgid "Idle" - msgstr "Brīvs" - --#: ../system-config-printer.py:187 -+#: ../system-config-printer.py:191 - msgid "Busy" - msgstr "Aizņemts" - --#: ../system-config-printer.py:372 ../system-config-printer.py:1373 -+#: ../system-config-printer.py:376 ../system-config-printer.py:1377 - #, fuzzy - msgid "Class" - msgstr "Jauna klase" - --#: ../system-config-printer.py:399 -+#: ../system-config-printer.py:403 - #, fuzzy - msgid "Set As De_fault" - msgstr "galvenais" - --#: ../system-config-printer.py:403 -+#: ../system-config-printer.py:407 - #, fuzzy - msgid "_Create class" - msgstr "Attālinātās klases" - --#: ../system-config-printer.py:405 -+#: ../system-config-printer.py:409 - #, fuzzy - msgid "View Print _Queue" - msgstr "Jauns printeris" - --#: ../system-config-printer.py:407 -+#: ../system-config-printer.py:411 - msgid "_Add to Group" - msgstr "" - --#: ../system-config-printer.py:409 -+#: ../system-config-printer.py:413 - msgid "Save Results as _Group" - msgstr "" - --#: ../system-config-printer.py:411 -+#: ../system-config-printer.py:415 - msgid "Save Filter as _Search Group" - msgstr "" - --#: ../system-config-printer.py:415 -+#: ../system-config-printer.py:419 - #, fuzzy - msgid "E_nabled" - msgstr "Ieslēgts" - --#: ../system-config-printer.py:417 -+#: ../system-config-printer.py:421 - #, fuzzy - msgid "_Shared" - msgstr "Publisks" - --#: ../system-config-printer.py:421 ../troubleshoot/ChooseNetworkPrinter.py:35 -+#: ../system-config-printer.py:425 ../troubleshoot/ChooseNetworkPrinter.py:35 - #: ../troubleshoot/ChoosePrinter.py:36 ../troubleshoot/DeviceListed.py:36 - msgid "Name" - msgstr "Vārds" - --#: ../system-config-printer.py:422 -+#: ../system-config-printer.py:426 - #, fuzzy - msgid "Description" - msgstr "Apraksts:" - --#: ../system-config-printer.py:424 -+#: ../system-config-printer.py:428 - msgid "Manufacturer / Model" - msgstr "" - - #. Printer state reasons list --#: ../system-config-printer.py:499 -+#: ../system-config-printer.py:503 - msgid "Message" - msgstr "" - --#: ../system-config-printer.py:534 -+#: ../system-config-printer.py:538 - #, fuzzy - msgid "Problems?" - msgstr "Pārbaudīt" - --#: ../system-config-printer.py:637 ../system-config-printer.py:639 -+#: ../system-config-printer.py:641 ../system-config-printer.py:643 - #, fuzzy - msgid "Members of this class" - msgstr "Klases dalībnieki" - --#: ../system-config-printer.py:638 ../system-config-printer.py:640 -+#: ../system-config-printer.py:642 ../system-config-printer.py:644 - msgid "Others" - msgstr "Citi" - --#: ../system-config-printer.py:641 -+#: ../system-config-printer.py:645 - msgid "Devices" - msgstr "Ierīces" - --#: ../system-config-printer.py:642 -+#: ../system-config-printer.py:646 - #, fuzzy - msgid "Connections" - msgstr "Pieslēgšanās" - --#: ../system-config-printer.py:643 -+#: ../system-config-printer.py:647 - msgid "Makes" - msgstr "Ražotāji" - --#: ../system-config-printer.py:644 -+#: ../system-config-printer.py:648 - msgid "Models" - msgstr "Modeļi" - --#: ../system-config-printer.py:645 -+#: ../system-config-printer.py:649 - msgid "Drivers" - msgstr "Draiveri" - --#: ../system-config-printer.py:646 ../glade/NewPrinterWindow.glade.h:55 -+#: ../system-config-printer.py:650 ../glade/NewPrinterWindow.glade.h:54 - msgid "Downloadable Drivers" - msgstr "" - --#: ../system-config-printer.py:647 -+#: ../system-config-printer.py:651 - msgid "Users" - msgstr "Lietotāji" - --#: ../system-config-printer.py:682 -+#: ../system-config-printer.py:686 - msgid "Automatic rotation" - msgstr "" - --#: ../system-config-printer.py:989 -+#: ../system-config-printer.py:993 - #, fuzzy, python-format - msgid "Printer Properties - '%s' on %s" - msgstr "Printera parametri" - - #. The Conflict button was pressed. --#: ../system-config-printer.py:996 -+#: ../system-config-printer.py:1000 - #, fuzzy - msgid "" - "There are conflicting options.\n" -@@ -882,81 +891,81 @@ msgstr "" - "Izmaiņas tiks saglabātas\n" - "tikai pēc konflikta novēršanas." - --#: ../system-config-printer.py:1214 -+#: ../system-config-printer.py:1218 - #, python-format - msgid "Printer configuration - %s" - msgstr "Printera iestatīšana - %s" - --#: ../system-config-printer.py:1217 -+#: ../system-config-printer.py:1221 - #, python-format - msgid "Connected to %s" - msgstr "Pieslēgts pie %s" - - #. Update our copy of the printer's settings. --#: ../system-config-printer.py:1257 ../system-config-printer.py:2042 -+#: ../system-config-printer.py:1261 ../system-config-printer.py:2046 - msgid "obtaining queue details" - msgstr "" - --#: ../system-config-printer.py:1295 -+#: ../system-config-printer.py:1299 - msgid "Remove from Group" - msgstr "" - --#: ../system-config-printer.py:1361 -+#: ../system-config-printer.py:1365 - #, fuzzy - msgid "Network printer (discovered)" - msgstr "Jauns printeris" - --#: ../system-config-printer.py:1364 -+#: ../system-config-printer.py:1368 - msgid "Network class (discovered)" - msgstr "" - --#: ../system-config-printer.py:1370 ../system-config-printer.py:5524 --#: ../system-config-printer.py:5594 ../system-config-printer.py:5596 -+#: ../system-config-printer.py:1374 ../system-config-printer.py:5519 -+#: ../system-config-printer.py:5589 ../system-config-printer.py:5591 - msgid "Fax" - msgstr "" - --#: ../system-config-printer.py:1376 ../system-config-printer.py:1382 -+#: ../system-config-printer.py:1380 ../system-config-printer.py:1386 - #: ../troubleshoot/LocalOrRemote.py:30 - #, fuzzy - msgid "Network printer" - msgstr "Jauns printeris" - --#: ../system-config-printer.py:1379 -+#: ../system-config-printer.py:1383 - #, fuzzy - msgid "Network print share" - msgstr "Jauns printeris" - --#: ../system-config-printer.py:1508 ../glade/ConnectingDialog.glade.h:2 -+#: ../system-config-printer.py:1512 ../glade/ConnectingDialog.glade.h:2 - #, no-c-format, python-format - msgid "Opening connection to %s" - msgstr "" - --#: ../system-config-printer.py:1887 -+#: ../system-config-printer.py:1891 - msgid "Installable Options" - msgstr "Uzstādāmie parametri" - --#: ../system-config-printer.py:1888 -+#: ../system-config-printer.py:1892 - #: ../glade/PrinterPropertiesDialog.glade.h:109 - msgid "Printer Options" - msgstr "Printera parametri" - --#: ../system-config-printer.py:1924 -+#: ../system-config-printer.py:1928 - #, python-format - msgid "modifying class %s" - msgstr "" - --#: ../system-config-printer.py:1926 ../system-config-printer.py:3019 --#: ../system-config-printer.py:3044 ../system-config-printer.py:6547 --#: ../system-config-printer.py:6559 ../system-config-printer.py:6581 -+#: ../system-config-printer.py:1930 ../system-config-printer.py:3037 -+#: ../system-config-printer.py:3062 ../system-config-printer.py:6495 -+#: ../system-config-printer.py:6507 ../system-config-printer.py:6529 - #, fuzzy, python-format - msgid "modifying printer %s" - msgstr "Printeru iestatīšana" - --#: ../system-config-printer.py:1941 -+#: ../system-config-printer.py:1945 - msgid "This will delete this class!" - msgstr "Tiks dzēsta klase!" - --#: ../system-config-printer.py:1942 -+#: ../system-config-printer.py:1946 - msgid "Proceed anyway?" - msgstr "Turpināt?" - -@@ -964,50 +973,50 @@ msgstr "Turpināt?" - #. but we have never fetched the server settings to see whether - #. the server is publishing shared printers. Fetch the settings - #. now so that we can update the "not published" label if necessary. --#: ../system-config-printer.py:2030 ../system-config-printer.py:3203 -+#: ../system-config-printer.py:2034 ../system-config-printer.py:3221 - #, fuzzy - msgid "fetching server settings" - msgstr "Servera pamatparametri" - --#: ../system-config-printer.py:2100 -+#: ../system-config-printer.py:2104 - #, fuzzy - msgid "Set Default Printer" - msgstr "Uzstādīt kā galveno printeri" - --#: ../system-config-printer.py:2102 -+#: ../system-config-printer.py:2106 - msgid "Do you want to set this as the system-wide default printer?" - msgstr "" - --#: ../system-config-printer.py:2104 -+#: ../system-config-printer.py:2108 - #, fuzzy - msgid "Set as the _system-wide default printer" - msgstr "Šis ir galvenais printeris" - --#: ../system-config-printer.py:2106 -+#: ../system-config-printer.py:2110 - msgid "_Clear my personal default setting" - msgstr "" - --#: ../system-config-printer.py:2107 -+#: ../system-config-printer.py:2111 - #, fuzzy - msgid "Set as my _personal default printer" - msgstr "Uzstādīt kā galveno printeri" - --#: ../system-config-printer.py:2112 -+#: ../system-config-printer.py:2116 - #, fuzzy - msgid "setting default printer" - msgstr "Uzstādīt kā galveno printeri" - --#: ../system-config-printer.py:2169 -+#: ../system-config-printer.py:2173 - #, fuzzy - msgid "printing test page" - msgstr "Drukāt testa lapu" - --#: ../system-config-printer.py:2182 ../system-config-printer.py:2217 --#: ../system-config-printer.py:5418 -+#: ../system-config-printer.py:2186 ../system-config-printer.py:2221 -+#: ../system-config-printer.py:5413 - msgid "Not possible" - msgstr "Nav iespējams" - --#: ../system-config-printer.py:2183 ../system-config-printer.py:2218 -+#: ../system-config-printer.py:2187 ../system-config-printer.py:2222 - msgid "" - "The remote server did not accept the print job, most likely because the " - "printer is not shared." -@@ -1015,20 +1024,20 @@ msgstr "" - "Attālinātais serveris nav pieņēmis drukāšanas uzdevumu. Visticamāk, tas " - "noticis tāpēc, ka printeris nav sagatavots attālinātam pieslēgumam." - --#: ../system-config-printer.py:2195 ../system-config-printer.py:2210 -+#: ../system-config-printer.py:2199 ../system-config-printer.py:2214 - msgid "Submitted" - msgstr "Apstiprināts" - --#: ../system-config-printer.py:2196 -+#: ../system-config-printer.py:2200 - #, python-format - msgid "Test page submitted as job %d" - msgstr "Testa lapa ir pieprasījumu rindā kā uzdevums %d" - --#: ../system-config-printer.py:2203 -+#: ../system-config-printer.py:2207 - msgid "sending maintenance command" - msgstr "" - --#: ../system-config-printer.py:2211 -+#: ../system-config-printer.py:2215 - #, fuzzy, python-format - msgid "Maintenance command submitted as job %d" - msgstr "Testa lapa ir pieprasījumu rindā kā uzdevums %d" -@@ -1036,76 +1045,76 @@ msgstr "Testa lapa ir pieprasījumu rind - #. The underlying cupsGetPPD2() function returned NULL without - #. setting an IPP error, so it'll be something like a failed - #. connection. --#: ../system-config-printer.py:2285 ../system-config-printer.py:2381 -+#: ../system-config-printer.py:2289 ../system-config-printer.py:2385 - msgid "Error" - msgstr "" - --#: ../system-config-printer.py:2286 -+#: ../system-config-printer.py:2290 - #, fuzzy - msgid "There was a problem connecting to the CUPS server." - msgstr "Kļūda CUPS darbības laikā: '%s'." - --#: ../system-config-printer.py:2382 -+#: ../system-config-printer.py:2386 - #, python-format - msgid "Option '%s' has value '%s' and cannot be edited." - msgstr "" - --#: ../system-config-printer.py:2466 -+#: ../system-config-printer.py:2476 - msgid "Marker levels are not reported for this printer." - msgstr "" - --#: ../system-config-printer.py:2763 -+#: ../system-config-printer.py:2773 - #, fuzzy - msgid "Cannot Rename" - msgstr "Lietotājs:" - --#: ../system-config-printer.py:2764 -+#: ../system-config-printer.py:2774 - msgid "There are queued jobs." - msgstr "" - --#: ../system-config-printer.py:2822 -+#: ../system-config-printer.py:2840 - #, fuzzy - msgid "renaming printer" - msgstr "Printeru iestatīšana" - - #. for classes make sure all members - #. will get added --#: ../system-config-printer.py:2907 -+#: ../system-config-printer.py:2925 - #, fuzzy - msgid "copying printer" - msgstr "Printeru iestatīšana" - --#: ../system-config-printer.py:2971 -+#: ../system-config-printer.py:2989 - #, fuzzy, python-format - msgid "Really delete class '%s'?" - msgstr "Patiešām dzēst %s %s?" - --#: ../system-config-printer.py:2973 -+#: ../system-config-printer.py:2991 - #, fuzzy, python-format - msgid "Really delete printer '%s'?" - msgstr "Patiešām dzēst %s %s?" - --#: ../system-config-printer.py:2975 -+#: ../system-config-printer.py:2993 - #, fuzzy - msgid "Really delete selected destinations?" - msgstr "Patiešām dzēst %s %s?" - --#: ../system-config-printer.py:2996 -+#: ../system-config-printer.py:3014 - #, fuzzy, python-format - msgid "deleting printer %s" - msgstr "Printeru iestatīšana" - --#: ../system-config-printer.py:3070 -+#: ../system-config-printer.py:3088 - msgid "Publish Shared Printers" - msgstr "" - --#: ../system-config-printer.py:3071 -+#: ../system-config-printer.py:3089 - msgid "" - "Shared printers are not available to other people unless the 'Publish shared " - "printers' option is enabled in the server settings." - msgstr "" - --#: ../system-config-printer.py:3264 -+#: ../system-config-printer.py:3282 - #, fuzzy - msgid "modifying server settings" - msgstr "Servera pamatparametri" -@@ -1116,105 +1125,105 @@ msgstr "Servera pamatparametri" - #. be unblocked. Unfortunately, this is not yet possible - #. (bug #440469). However, we can display a dialog to suggest - #. that now might be a good time to review the firewall settings. --#: ../system-config-printer.py:3289 -+#: ../system-config-printer.py:3307 - msgid "Review Firewall" - msgstr "" - --#: ../system-config-printer.py:3290 -+#: ../system-config-printer.py:3308 - msgid "" - "You may need to adjust the firewall to allow network printing to this " - "computer." - msgstr "" - --#: ../system-config-printer.py:3623 -+#: ../system-config-printer.py:3638 - msgid "Browsing not available (pysmbc not installed)" - msgstr "" - - #. SMB list columns --#: ../system-config-printer.py:3629 -+#: ../system-config-printer.py:3644 - msgid "Share" - msgstr "Resurss" - --#: ../system-config-printer.py:3635 -+#: ../system-config-printer.py:3650 - msgid "Comment" - msgstr "Komentārs" - - #. IPP list columns --#: ../system-config-printer.py:3654 -+#: ../system-config-printer.py:3669 - msgid "Queue" - msgstr "" - --#: ../system-config-printer.py:3668 -+#: ../system-config-printer.py:3683 - #, fuzzy - msgid "" - "PostScript Printer Description files (*.ppd, *.PPD, *.ppd.gz, *.PPD.gz, *." - "PPD.GZ)" - msgstr "PostScript printera apraksts (*.ppd[.gz])" - --#: ../system-config-printer.py:3677 -+#: ../system-config-printer.py:3692 - msgid "All files (*)" - msgstr "" - --#: ../system-config-printer.py:3713 ../system-config-printer.py:5970 --#: ../system-config-printer.py:6008 ../applet.py:124 -+#: ../system-config-printer.py:3728 ../system-config-printer.py:5918 -+#: ../system-config-printer.py:5956 ../applet.py:124 - #, fuzzy - msgid "Search" - msgstr "Printera jaunais vārds" - --#: ../system-config-printer.py:3736 ../system-config-printer.py:3760 --#: ../glade/NewPrinterWindow.glade.h:74 -+#: ../system-config-printer.py:3751 ../system-config-printer.py:3775 -+#: ../glade/NewPrinterWindow.glade.h:73 - msgid "New Printer" - msgstr "Jauns printeris" - --#: ../system-config-printer.py:3747 -+#: ../system-config-printer.py:3762 - msgid "New Class" - msgstr "Jauna klase" - --#: ../system-config-printer.py:3752 -+#: ../system-config-printer.py:3767 - msgid "Change Device URI" - msgstr "Ierīces URI adreses maiņa" - --#: ../system-config-printer.py:3758 -+#: ../system-config-printer.py:3773 - msgid "Change Driver" - msgstr "Draivera maiņa" - --#: ../system-config-printer.py:3927 ../system-config-printer.py:3993 --#: ../system-config-printer.py:4289 ../system-config-printer.py:4487 --#: ../system-config-printer.py:5772 ../system-config-printer.py:5995 -+#: ../system-config-printer.py:3942 ../system-config-printer.py:4008 -+#: ../system-config-printer.py:4304 ../system-config-printer.py:4502 -+#: ../system-config-printer.py:5762 ../system-config-printer.py:5943 - msgid "Searching" - msgstr "" - --#: ../system-config-printer.py:3928 -+#: ../system-config-printer.py:3943 - #, fuzzy - msgid "Searching for downloadable drivers" - msgstr "Printera jaunais vārds" - --#: ../system-config-printer.py:3994 ../system-config-printer.py:4290 -+#: ../system-config-printer.py:4009 ../system-config-printer.py:4305 - msgid "Searching for drivers" - msgstr "" - --#: ../system-config-printer.py:4488 ../system-config-printer.py:5773 -+#: ../system-config-printer.py:4503 ../system-config-printer.py:5763 - #, fuzzy - msgid "Searching for printers" - msgstr "Printera jaunais vārds" - --#: ../system-config-printer.py:4497 -+#: ../system-config-printer.py:4512 - #, fuzzy - msgid "fetching device list" - msgstr "Servera pamatparametri" - - #. Tell the user why he needs the plugin --#: ../system-config-printer.py:4579 -+#: ../system-config-printer.py:4594 - msgid "For this printer a proprietary driver plugin from HP is available.\n" - msgstr "" - --#: ../system-config-printer.py:4582 -+#: ../system-config-printer.py:4597 - msgid "" - "The installation of the plugin is required for your printer to work.\n" - "\n" - msgstr "" - --#: ../system-config-printer.py:4585 -+#: ../system-config-printer.py:4600 - msgid "" - "Installing the plugin is optional, it completes or enhances the " - "functionality\n" -@@ -1222,291 +1231,283 @@ msgid "" - "\n" - msgstr "" - --#: ../system-config-printer.py:4589 -+#: ../system-config-printer.py:4604 - msgid "The plugin provides the following features:\n" - msgstr "" - --#: ../system-config-printer.py:4592 -+#: ../system-config-printer.py:4607 - msgid " - Printing support\n" - msgstr "" - --#: ../system-config-printer.py:4595 -+#: ../system-config-printer.py:4610 - msgid " - Faster printing\n" - msgstr "" - --#: ../system-config-printer.py:4598 -+#: ../system-config-printer.py:4613 - msgid " - Better printout quality\n" - msgstr "" - --#: ../system-config-printer.py:4601 -+#: ../system-config-printer.py:4616 - msgid " - Extra printing features\n" - msgstr "" - --#: ../system-config-printer.py:4604 -+#: ../system-config-printer.py:4619 - msgid " - Scanning support\n" - msgstr "" - --#: ../system-config-printer.py:4607 -+#: ../system-config-printer.py:4622 - msgid " - Faster scanning\n" - msgstr "" - --#: ../system-config-printer.py:4610 -+#: ../system-config-printer.py:4625 - msgid " - Better scanning image quality\n" - msgstr "" - --#: ../system-config-printer.py:4613 -+#: ../system-config-printer.py:4628 - msgid " - Faxing support\n" - msgstr "" - --#: ../system-config-printer.py:4616 -+#: ../system-config-printer.py:4631 - msgid " - Extra fax features\n" - msgstr "" - --#: ../system-config-printer.py:4619 -+#: ../system-config-printer.py:4634 - msgid " - Better Input/Output support\n" - msgstr "" - --#: ../system-config-printer.py:4622 -+#: ../system-config-printer.py:4637 - msgid " - Extra user interface features\n" - msgstr "" - --#: ../system-config-printer.py:4625 -+#: ../system-config-printer.py:4640 - msgid " - Other extra features\n" - msgstr "" - --#: ../system-config-printer.py:4630 -+#: ../system-config-printer.py:4645 - #, fuzzy - msgid "Install plugin" - msgstr "Uzstādāmie parametri" - --#: ../system-config-printer.py:4631 -+#: ../system-config-printer.py:4646 - #, fuzzy - msgid "Do not set up printer" - msgstr "Kopēt printeri" - --#: ../system-config-printer.py:4632 -+#: ../system-config-printer.py:4647 - msgid "Set up without plugin" - msgstr "" - --#: ../system-config-printer.py:4634 ../troubleshoot/PrintTestPage.py:118 -+#: ../system-config-printer.py:4649 ../troubleshoot/PrintTestPage.py:118 - msgid "Yes" - msgstr "" - --#: ../system-config-printer.py:4635 ../troubleshoot/PrintTestPage.py:119 -+#: ../system-config-printer.py:4650 ../troubleshoot/PrintTestPage.py:119 - msgid "No" - msgstr "" - --#: ../system-config-printer.py:4809 ../system-config-printer.py:4813 -+#: ../system-config-printer.py:4824 ../system-config-printer.py:4828 - msgid " (Current)" - msgstr " (patreizējais)" - --#: ../system-config-printer.py:4845 --msgid "HP Printer (HPLIP)" --msgstr "" -- --#: ../system-config-printer.py:4886 -+#: ../system-config-printer.py:4881 - msgid "Other" - msgstr "Cits" - - #. device-info - #. PhysicalDevice obj - #. Separator? --#: ../system-config-printer.py:4902 -+#: ../system-config-printer.py:4897 - #, fuzzy - msgid "Network Printer" - msgstr "Jauns printeris" - --#: ../system-config-printer.py:4906 -+#: ../system-config-printer.py:4901 - #, fuzzy - msgid "Find Network Printer" - msgstr "Jauns printeris" - --#: ../system-config-printer.py:4979 ../system-config-printer.py:5376 -+#: ../system-config-printer.py:4974 ../system-config-printer.py:5371 - msgid "Scanning..." - msgstr "" - --#: ../system-config-printer.py:5034 ../system-config-printer.py:5798 -+#: ../system-config-printer.py:5029 - #, fuzzy - msgid "No Print Shares" - msgstr "Jauns printeris" - --#: ../system-config-printer.py:5035 -+#: ../system-config-printer.py:5030 - msgid "" - "There were no print shares found. Please check that the Samba service is " - "marked as trusted in your firewall configuration." - msgstr "" - --#: ../system-config-printer.py:5296 ../system-config-printer.py:5357 -+#: ../system-config-printer.py:5291 ../system-config-printer.py:5352 - msgid "Print Share Verified" - msgstr "" - --#: ../system-config-printer.py:5297 ../system-config-printer.py:5358 -+#: ../system-config-printer.py:5292 ../system-config-printer.py:5353 - msgid "This print share is accessible." - msgstr "Šis prinēšanas resurss ir pieejams." - --#: ../system-config-printer.py:5302 ../system-config-printer.py:5362 -+#: ../system-config-printer.py:5297 ../system-config-printer.py:5357 - msgid "This print share is not accessible." - msgstr "Šis printēšanas resurss nav pieejams." - --#: ../system-config-printer.py:5305 -+#: ../system-config-printer.py:5300 - #, fuzzy - msgid "Print Share Inaccessible" - msgstr "Šis prinēšanas resurss ir pieejams." - --#: ../system-config-printer.py:5361 -+#: ../system-config-printer.py:5356 - msgid "Inaccessible" - msgstr "Nav pieejams" - --#: ../system-config-printer.py:5419 -+#: ../system-config-printer.py:5414 - #, fuzzy, python-format - msgid "It is not possible to obtain a list of queues from '%s'." - msgstr "Kļūda CUPS darbības laikā: '%s'." - --#: ../system-config-printer.py:5421 -+#: ../system-config-printer.py:5416 - msgid "" - "Obtaining a list of queues is a CUPS extension to IPP. Network printers do " - "not support it." - msgstr "" - --#: ../system-config-printer.py:5424 -+#: ../system-config-printer.py:5419 - msgid "No queues" - msgstr "" - --#: ../system-config-printer.py:5425 -+#: ../system-config-printer.py:5420 - msgid "There are no queues available." - msgstr "" - --#: ../system-config-printer.py:5516 -+#: ../system-config-printer.py:5511 - msgid "Parallel Port" - msgstr "" - --#: ../system-config-printer.py:5518 -+#: ../system-config-printer.py:5513 - #, fuzzy - msgid "Serial Port" - msgstr "Serial" - --#: ../system-config-printer.py:5520 -+#: ../system-config-printer.py:5515 - #, fuzzy - msgid "USB" - msgstr "SMB" - --#: ../system-config-printer.py:5522 ../system-config-printer.py:5525 -+#: ../system-config-printer.py:5517 ../system-config-printer.py:5520 - msgid "HP Linux Imaging and Printing (HPLIP)" - msgstr "" - --#: ../system-config-printer.py:5527 -+#: ../system-config-printer.py:5522 - msgid "Hardware Abstraction Layer (HAL)" - msgstr "" - --#: ../system-config-printer.py:5529 -+#: ../system-config-printer.py:5524 - msgid "AppSocket/HP JetDirect" - msgstr "" - --#: ../system-config-printer.py:5538 -+#: ../system-config-printer.py:5533 - #, python-format - msgid "LPD/LPR queue '%s'" - msgstr "" - --#: ../system-config-printer.py:5540 -+#: ../system-config-printer.py:5535 - #, fuzzy - msgid "LPD/LPR queue" - msgstr "LPD" - --#: ../system-config-printer.py:5543 -+#: ../system-config-printer.py:5538 - msgid "Windows Printer via SAMBA" - msgstr "" - --#: ../system-config-printer.py:5545 ../glade/NewPrinterWindow.glade.h:66 -+#: ../system-config-printer.py:5540 ../glade/NewPrinterWindow.glade.h:65 - msgid "IPP" - msgstr "IPP" - --#: ../system-config-printer.py:5547 -+#: ../system-config-printer.py:5542 - msgid "HTTP" - msgstr "" - --#: ../system-config-printer.py:5632 -+#: ../system-config-printer.py:5624 - msgid "A printer connected to the parallel port." - msgstr "" - --#: ../system-config-printer.py:5634 -+#: ../system-config-printer.py:5626 - msgid "A printer connected to a USB port." - msgstr "" - --#: ../system-config-printer.py:5636 -+#: ../system-config-printer.py:5628 - msgid "" - "HPLIP software driving a printer, or the printer function of a multi-" - "function device." - msgstr "" - --#: ../system-config-printer.py:5639 -+#: ../system-config-printer.py:5631 - msgid "" - "HPLIP software driving a fax machine, or the fax function of a multi-" - "function device." - msgstr "" - --#: ../system-config-printer.py:5642 -+#: ../system-config-printer.py:5634 - msgid "Local printer detected by the Hardware Abstraction Layer (HAL)." - msgstr "" - --#: ../system-config-printer.py:5799 --msgid "HPLIP cannot find the device." --msgstr "" -- --#: ../system-config-printer.py:5881 -+#: ../system-config-printer.py:5831 - msgid "No printer was found at that address." - msgstr "" - --#: ../system-config-printer.py:6020 -+#: ../system-config-printer.py:5968 - #, fuzzy - msgid "-- Select from search results --" - msgstr "Izvēlieties printeri no datu bāzes" - --#: ../system-config-printer.py:6022 -+#: ../system-config-printer.py:5970 - msgid "-- No matches found --" - msgstr "" - --#: ../system-config-printer.py:6203 -+#: ../system-config-printer.py:6151 - msgid " (recommended)" - msgstr " (rekomendējams)" - --#: ../system-config-printer.py:6217 -+#: ../system-config-printer.py:6165 - msgid "This PPD is generated by foomatic." - msgstr "Šis PPD formēts ar foomatic." - --#: ../system-config-printer.py:6241 -+#: ../system-config-printer.py:6189 - #, fuzzy - msgid "OpenPrinting" - msgstr "Drukāšana" - --#: ../system-config-printer.py:6252 -+#: ../system-config-printer.py:6200 - msgid "Distributable" - msgstr "" - --#: ../system-config-printer.py:6293 -+#: ../system-config-printer.py:6241 - msgid ", " - msgstr "" - --#: ../system-config-printer.py:6298 -+#: ../system-config-printer.py:6246 - #, python-format - msgid "" - "\n" - "(%s)" - msgstr "" - --#: ../system-config-printer.py:6303 -+#: ../system-config-printer.py:6251 - msgid "No support contacts known" - msgstr "" - --#: ../system-config-printer.py:6307 ../system-config-printer.py:6320 -+#: ../system-config-printer.py:6255 ../system-config-printer.py:6268 - msgid "Not specified." - msgstr "" - - #. Foomatic database problem of some sort. --#: ../system-config-printer.py:6360 -+#: ../system-config-printer.py:6308 - msgid "Database error" - msgstr "Datu bāzes kļūda" - --#: ../system-config-printer.py:6361 -+#: ../system-config-printer.py:6309 - #, python-format - msgid "The '%s' driver cannot be used with printer '%s %s'." - msgstr "Draiveris '%s' nav izmantojams darbībās ar printeri '%s %s'." -@@ -1514,66 +1515,66 @@ msgstr "Draiveris '%s' nav izmantojams d - #. This printer references some XML that is not - #. installed by default. Point the user at the - #. package they need to install. --#: ../system-config-printer.py:6371 -+#: ../system-config-printer.py:6319 - #, python-format - msgid "You will need to install the '%s' package in order to use this driver." - msgstr "Lai izmantotu šo draiveri, jums jāuzstāda pakotne '%s'." - - #. This error came from trying to open the PPD file. --#: ../system-config-printer.py:6378 -+#: ../system-config-printer.py:6326 - #, fuzzy - msgid "PPD error" - msgstr "Datu bāzes kļūda" - --#: ../system-config-printer.py:6380 -+#: ../system-config-printer.py:6328 - msgid "Failed to read PPD file. Possible reason follows:" - msgstr "" - - #. Failed to get PPD downloaded from OpenPrinting XXX --#: ../system-config-printer.py:6397 -+#: ../system-config-printer.py:6345 - msgid "Downloadable drivers" - msgstr "" - --#: ../system-config-printer.py:6398 -+#: ../system-config-printer.py:6346 - msgid "Failed to download PPD." - msgstr "" - --#: ../system-config-printer.py:6405 -+#: ../system-config-printer.py:6353 - #, fuzzy - msgid "fetching PPD" - msgstr "Mainīt PPD" - --#: ../system-config-printer.py:6434 ../system-config-printer.py:6472 -+#: ../system-config-printer.py:6382 ../system-config-printer.py:6420 - #, fuzzy - msgid "No Installable Options" - msgstr "Uzstādāmie parametri" - --#: ../system-config-printer.py:6520 -+#: ../system-config-printer.py:6468 - #, fuzzy, python-format - msgid "adding printer %s" - msgstr "Printeru iestatīšana" - --#: ../system-config-printer.py:6669 -+#: ../system-config-printer.py:6617 - msgid "Would you like to print a test page?" - msgstr "" - --#: ../system-config-printer.py:6722 -+#: ../system-config-printer.py:6670 - #, fuzzy - msgid "Install driver" - msgstr "Nav draivera" - --#: ../system-config-printer.py:6723 ../troubleshoot/CheckPPDSanity.py:131 -+#: ../system-config-printer.py:6671 ../troubleshoot/CheckPPDSanity.py:131 - #, fuzzy, python-format - msgid "Printer '%s' requires the %s package but it is not currently installed." - msgstr "" - "Printerim '%s' nepieciešama pakotne %s, bet tā nav uzstādīta. Lūdzu, " - "uzstādiet to pirms printera izmantošanas." - --#: ../system-config-printer.py:6739 -+#: ../system-config-printer.py:6687 - msgid "Missing driver" - msgstr "Nav draivera" - --#: ../system-config-printer.py:6740 -+#: ../system-config-printer.py:6688 - #, python-format - msgid "" - "Printer '%s' requires the '%s' program but it is not currently installed. " -@@ -1702,133 +1703,128 @@ msgstr "Norādiet ierīces URI adresi" - - #: ../glade/NewPrinterWindow.glade.h:5 - #, fuzzy --msgid "HP Printer (HPLIP) via network" --msgstr "Printera nosaukums" -- --#: ../glade/NewPrinterWindow.glade.h:6 --#, fuzzy - msgid "IPP Printer" - msgstr "Printera nosaukums" - --#: ../glade/NewPrinterWindow.glade.h:7 -+#: ../glade/NewPrinterWindow.glade.h:6 - #, fuzzy - msgid "License Terms" - msgstr "Printera nosaukums" - --#: ../glade/NewPrinterWindow.glade.h:8 -+#: ../glade/NewPrinterWindow.glade.h:7 - msgid "Location of the LPD network printer" - msgstr "Tīkla LPD printera izvietojums" - --#: ../glade/NewPrinterWindow.glade.h:9 -+#: ../glade/NewPrinterWindow.glade.h:8 - msgid "Location of the network printer" - msgstr "Tīkla printera izvietojums" - --#: ../glade/NewPrinterWindow.glade.h:10 -+#: ../glade/NewPrinterWindow.glade.h:9 - msgid "Location (optional)" - msgstr "Izvietojums (nav obligāts)" - --#: ../glade/NewPrinterWindow.glade.h:11 -+#: ../glade/NewPrinterWindow.glade.h:10 - #, fuzzy - msgid "Network Printer" - msgstr "Jauns printeris" - --#: ../glade/NewPrinterWindow.glade.h:12 -+#: ../glade/NewPrinterWindow.glade.h:11 - #, fuzzy - msgid "Note" - msgstr "Stāvoklis" - --#: ../glade/NewPrinterWindow.glade.h:13 -+#: ../glade/NewPrinterWindow.glade.h:12 - #, fuzzy - msgid "Output Quality" - msgstr "Stāvoklis" - --#: ../glade/NewPrinterWindow.glade.h:14 -+#: ../glade/NewPrinterWindow.glade.h:13 - msgid "Printer Name" - msgstr "Printera nosaukums" - --#: ../glade/NewPrinterWindow.glade.h:15 -+#: ../glade/NewPrinterWindow.glade.h:14 - #, fuzzy - msgid "SMB Printer" - msgstr "Printera nosaukums" - --#: ../glade/NewPrinterWindow.glade.h:16 -+#: ../glade/NewPrinterWindow.glade.h:15 - #, fuzzy - msgid "Select Driver" - msgstr "Galvenais printeris" - --#: ../glade/NewPrinterWindow.glade.h:17 -+#: ../glade/NewPrinterWindow.glade.h:16 - msgid "Settings of the serial port" - msgstr "Norādiet printera ligzdu" - --#: ../glade/NewPrinterWindow.glade.h:18 -+#: ../glade/NewPrinterWindow.glade.h:17 - msgid "smb://[workgroup/]server[:port]/printer" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:19 -+#: ../glade/NewPrinterWindow.glade.h:18 - #, fuzzy - msgid "Choose Class Members" - msgstr "" - "Nepieciešama parole\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:20 -+#: ../glade/NewPrinterWindow.glade.h:19 - #, fuzzy - msgid "Choose Driver" - msgstr "" - "Nepieciešama parole\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:21 -+#: ../glade/NewPrinterWindow.glade.h:20 - #, fuzzy - msgid "Describe Printer" - msgstr "" - "Nepieciešama parole\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:22 -+#: ../glade/NewPrinterWindow.glade.h:21 - #, fuzzy - msgid "Existing Settings" - msgstr "" - "Nepieciešama parole\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:23 -+#: ../glade/NewPrinterWindow.glade.h:22 - #, fuzzy - msgid "Installable Options" - msgstr "" - "Nepieciešama parole\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:24 -+#: ../glade/NewPrinterWindow.glade.h:23 - #, fuzzy - msgid "Select Device" - msgstr "" - "Nepieciešama parole\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:25 -+#: ../glade/NewPrinterWindow.glade.h:24 - msgid "Baud Rate" - msgstr "Pārraides ātrums" - --#: ../glade/NewPrinterWindow.glade.h:26 -+#: ../glade/NewPrinterWindow.glade.h:25 - msgid "Browse..." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:27 -+#: ../glade/NewPrinterWindow.glade.h:26 - #, fuzzy - msgid "Comments..." - msgstr "Komentārs" - --#: ../glade/NewPrinterWindow.glade.h:28 -+#: ../glade/NewPrinterWindow.glade.h:27 - #, fuzzy - msgid "Connection" - msgstr "Pieslēgšanās" - --#: ../glade/NewPrinterWindow.glade.h:29 -+#: ../glade/NewPrinterWindow.glade.h:28 - msgid "Data Bits" - msgstr "Datu biti" - --#: ../glade/NewPrinterWindow.glade.h:30 -+#: ../glade/NewPrinterWindow.glade.h:29 - msgid "" - "Default\n" - "1200\n" -@@ -1850,7 +1846,7 @@ msgstr "" - "57600\n" - "115200" - --#: ../glade/NewPrinterWindow.glade.h:39 -+#: ../glade/NewPrinterWindow.glade.h:38 - msgid "" - "Default\n" - "8\n" -@@ -1860,7 +1856,7 @@ msgstr "" - "8\n" - "7" - --#: ../glade/NewPrinterWindow.glade.h:42 -+#: ../glade/NewPrinterWindow.glade.h:41 - msgid "" - "Default\n" - "None\n" -@@ -1872,7 +1868,7 @@ msgstr "" - "Nepāra\n" - "Pāra" - --#: ../glade/NewPrinterWindow.glade.h:46 -+#: ../glade/NewPrinterWindow.glade.h:45 - msgid "" - "Default\n" - "None\n" -@@ -1886,121 +1882,121 @@ msgstr "" - "RTS/CTS (ierīces)\n" - "DTR/DSR (ierīces)" - --#: ../glade/NewPrinterWindow.glade.h:51 -+#: ../glade/NewPrinterWindow.glade.h:50 - #: ../glade/PrinterPropertiesDialog.glade.h:35 - msgid "Description:" - msgstr "Apraksts:" - --#: ../glade/NewPrinterWindow.glade.h:52 ../troubleshoot/DeviceListed.py:40 -+#: ../glade/NewPrinterWindow.glade.h:51 ../troubleshoot/DeviceListed.py:40 - msgid "Device URI" - msgstr "Ierīces URI adese" - --#: ../glade/NewPrinterWindow.glade.h:53 -+#: ../glade/NewPrinterWindow.glade.h:52 - #, fuzzy - msgid "Device description." - msgstr "Apraksts:" - --#: ../glade/NewPrinterWindow.glade.h:54 -+#: ../glade/NewPrinterWindow.glade.h:53 - msgid "DirectJet" - msgstr "DirectJet" - --#: ../glade/NewPrinterWindow.glade.h:56 -+#: ../glade/NewPrinterWindow.glade.h:55 - #, fuzzy - msgid "Driver details" - msgstr "Draiveri" - --#: ../glade/NewPrinterWindow.glade.h:57 -+#: ../glade/NewPrinterWindow.glade.h:56 - msgid "Empty" - msgstr "Tukšs" - --#: ../glade/NewPrinterWindow.glade.h:58 -+#: ../glade/NewPrinterWindow.glade.h:57 - msgid "Find _Queue..." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:59 -+#: ../glade/NewPrinterWindow.glade.h:58 - msgid "Flow Control" - msgstr "Plūsmas kontrole" - --#: ../glade/NewPrinterWindow.glade.h:60 -+#: ../glade/NewPrinterWindow.glade.h:59 - msgid "" - "For the printer you have selected there are drivers available for download." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:61 -+#: ../glade/NewPrinterWindow.glade.h:60 - msgid "Free software" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:62 -+#: ../glade/NewPrinterWindow.glade.h:61 - msgid "Graphics:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:63 -+#: ../glade/NewPrinterWindow.glade.h:62 - #, fuzzy - msgid "Host:" - msgstr "Datora nosaukums" - --#: ../glade/NewPrinterWindow.glade.h:64 -+#: ../glade/NewPrinterWindow.glade.h:63 - msgid "Human-readable description such as \"HP LaserJet with Duplexer\"" - msgstr "Saprotams apraksts, piemēram, \"HP LaserJet ar apgriezēju\"" - --#: ../glade/NewPrinterWindow.glade.h:65 -+#: ../glade/NewPrinterWindow.glade.h:64 - msgid "Human-readable location such as \"Lab 1\"" - msgstr "Saprotams izvietojums, piemēram, \"1.laboratorija\"" - --#: ../glade/NewPrinterWindow.glade.h:67 -+#: ../glade/NewPrinterWindow.glade.h:66 - msgid "LPD" - msgstr "LPD" - --#: ../glade/NewPrinterWindow.glade.h:68 -+#: ../glade/NewPrinterWindow.glade.h:67 - msgid "License:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:69 -+#: ../glade/NewPrinterWindow.glade.h:68 - #, fuzzy - msgid "Line art:" - msgstr "Printera stāvoklis:" - --#: ../glade/NewPrinterWindow.glade.h:70 -+#: ../glade/NewPrinterWindow.glade.h:69 - #, fuzzy - msgid "Local Driver" - msgstr "Lokālie printeri" - --#: ../glade/NewPrinterWindow.glade.h:71 -+#: ../glade/NewPrinterWindow.glade.h:70 - #, fuzzy - msgid "Make and model:" - msgstr "Ražotājs un modelis:" - --#: ../glade/NewPrinterWindow.glade.h:72 -+#: ../glade/NewPrinterWindow.glade.h:71 - msgid "Manufacturer" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:73 -+#: ../glade/NewPrinterWindow.glade.h:72 - #, fuzzy - msgid "Network" - msgstr "Jauns printeris" - --#: ../glade/NewPrinterWindow.glade.h:75 -+#: ../glade/NewPrinterWindow.glade.h:74 - msgid "No, I do not accept this license" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:76 -+#: ../glade/NewPrinterWindow.glade.h:75 - msgid "Parity" - msgstr "Paritāte" - --#: ../glade/NewPrinterWindow.glade.h:78 -+#: ../glade/NewPrinterWindow.glade.h:77 - msgid "Patented algorithms" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:79 -+#: ../glade/NewPrinterWindow.glade.h:78 - msgid "Photo:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:80 -+#: ../glade/NewPrinterWindow.glade.h:79 - #, fuzzy - msgid "Port number:" - msgstr "Ligzdas numurs" - --#: ../glade/NewPrinterWindow.glade.h:81 -+#: ../glade/NewPrinterWindow.glade.h:80 - #, fuzzy - msgid "" - "PostScript Printer Description (PPD) files can often be found on the driver " -@@ -2011,82 +2007,82 @@ msgstr "" - "atrasties printera draiveru diskā. PostScript printeriem tie bieži vien ir " - "iekļauti Windows® draiverī." - --#: ../glade/NewPrinterWindow.glade.h:82 -+#: ../glade/NewPrinterWindow.glade.h:81 - #, fuzzy - msgid "Printer model:" - msgstr "Printera vārds" - --#: ../glade/NewPrinterWindow.glade.h:83 -+#: ../glade/NewPrinterWindow.glade.h:82 - msgid "Probe" - msgstr "Pārbaudīt" - --#: ../glade/NewPrinterWindow.glade.h:84 -+#: ../glade/NewPrinterWindow.glade.h:83 - #, fuzzy - msgid "Prompt user if authentication is required" - msgstr "Autentifikācija" - --#: ../glade/NewPrinterWindow.glade.h:85 -+#: ../glade/NewPrinterWindow.glade.h:84 - #, fuzzy - msgid "Provide PPD file" - msgstr "Norādiet PPD failu" - --#: ../glade/NewPrinterWindow.glade.h:86 -+#: ../glade/NewPrinterWindow.glade.h:85 - msgid "Queue:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:87 -+#: ../glade/NewPrinterWindow.glade.h:86 - msgid "SCSI" - msgstr "SCSI" - --#: ../glade/NewPrinterWindow.glade.h:88 -+#: ../glade/NewPrinterWindow.glade.h:87 - msgid "SMB" - msgstr "SMB" - --#: ../glade/NewPrinterWindow.glade.h:89 -+#: ../glade/NewPrinterWindow.glade.h:88 - msgid "Search for a printer driver to download" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:90 -+#: ../glade/NewPrinterWindow.glade.h:89 - #, fuzzy - msgid "Searching..." - msgstr "Printera jaunais vārds" - --#: ../glade/NewPrinterWindow.glade.h:91 -+#: ../glade/NewPrinterWindow.glade.h:90 - msgid "Select A File" - msgstr "Norādiet failu" - --#: ../glade/NewPrinterWindow.glade.h:92 -+#: ../glade/NewPrinterWindow.glade.h:91 - #, fuzzy - msgid "Select printer from database" - msgstr "Izvēlieties printeri no datu bāzes" - --#: ../glade/NewPrinterWindow.glade.h:93 -+#: ../glade/NewPrinterWindow.glade.h:92 - msgid "Serial" - msgstr "Serial" - --#: ../glade/NewPrinterWindow.glade.h:94 -+#: ../glade/NewPrinterWindow.glade.h:93 - #, fuzzy - msgid "Set authentication details now" - msgstr "Autentifikācija" - --#: ../glade/NewPrinterWindow.glade.h:95 -+#: ../glade/NewPrinterWindow.glade.h:94 - msgid "Short name for this printer such as \"laserjet\"" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:96 -+#: ../glade/NewPrinterWindow.glade.h:95 - msgid "Supplier:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:97 -+#: ../glade/NewPrinterWindow.glade.h:96 - msgid "Support:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:98 -+#: ../glade/NewPrinterWindow.glade.h:97 - #, fuzzy - msgid "Text:" - msgstr "Drukāt testa lapu" - --#: ../glade/NewPrinterWindow.glade.h:99 -+#: ../glade/NewPrinterWindow.glade.h:98 - msgid "" - "The foomatic printer database contains various manufacturer provided " - "PostScript Printer Description (PPD) files and also can generate PPD files " -@@ -2099,20 +2095,20 @@ msgstr "" - "lielam skaitam (ne PostScript) printeru. Parasti ražotāja piedāvātie PPD " - "faili dod plašāku piekļuvi specifiskām printera iespējām." - --#: ../glade/NewPrinterWindow.glade.h:100 -+#: ../glade/NewPrinterWindow.glade.h:99 - msgid "" - "These drivers do not come from your operating system supplier and will not " - "be covered by their commercial support. See the support and license terms " - "of the driver's supplier." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:101 -+#: ../glade/NewPrinterWindow.glade.h:100 - msgid "" - "This driver supports additional hardware that may be installed in the " - "printer." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:102 -+#: ../glade/NewPrinterWindow.glade.h:101 - msgid "" - "This is done by assuming that options with the same name do have the same " - "meaning. Settings of options that are not present in the new PPD will be " -@@ -2122,7 +2118,7 @@ msgstr "" - "vienāds pielietojums. Parametri, kuru nav jaunajā PPD, tiks zaudēti, bet " - "jaunie parametri tiks uzstādīti pēc noklusējuma." - --#: ../glade/NewPrinterWindow.glade.h:103 -+#: ../glade/NewPrinterWindow.glade.h:102 - msgid "" - "This way all current option settings will be lost. The default settings of " - "the new PPD will be used. " -@@ -2130,43 +2126,43 @@ msgstr "" - "Tādā veidā visi patreizējie iestatījumi tiks zaudēti. Tiks izmantoti jaunā " - "PPD apraksta standarta iestatījumi." - --#: ../glade/NewPrinterWindow.glade.h:104 -+#: ../glade/NewPrinterWindow.glade.h:103 - msgid "Try to copy the option settings over from the old PPD. " - msgstr "Mēģināt kopēt parametrus no vecā PPD. " - --#: ../glade/NewPrinterWindow.glade.h:105 -+#: ../glade/NewPrinterWindow.glade.h:104 - msgid "URI:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:107 -+#: ../glade/NewPrinterWindow.glade.h:106 - msgid "Use the new PPD (Postscript Printer Description) as is." - msgstr "Izmantot jauno PPD (PostScript printera aprakstu) kā ir." - --#: ../glade/NewPrinterWindow.glade.h:109 -+#: ../glade/NewPrinterWindow.glade.h:108 - msgid "" - "With this choice no driver download will be performed. In the next steps a " - "locally installed driver will be selected." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:110 -+#: ../glade/NewPrinterWindow.glade.h:109 - #, fuzzy - msgid "Yes, I accept this license" - msgstr "Izpilda pieprasījumus" - --#: ../glade/NewPrinterWindow.glade.h:111 -+#: ../glade/NewPrinterWindow.glade.h:110 - msgid "_Search" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:112 -+#: ../glade/NewPrinterWindow.glade.h:111 - msgid "_Verify..." - msgstr "_Pārbaudīt..." - --#: ../glade/NewPrinterWindow.glade.h:113 -+#: ../glade/NewPrinterWindow.glade.h:112 - #: ../glade/PrinterPropertiesDialog.glade.h:128 - msgid "move left" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:114 -+#: ../glade/NewPrinterWindow.glade.h:113 - #: ../glade/PrinterPropertiesDialog.glade.h:129 - #, fuzzy - msgid "move right" -@@ -3060,7 +3056,7 @@ msgstr "" - msgid "Remember to load paper of type '%s' into the printer first." - msgstr "" - --#: ../troubleshoot/PrintTestPage.py:399 -+#: ../troubleshoot/PrintTestPage.py:416 - msgid "Error submitting test page" - msgstr "" - -@@ -3259,6 +3255,10 @@ msgid "Select default printer" - msgstr "Uzstādīt kā galveno printeri" - - #, fuzzy -+#~ msgid "HP Printer (HPLIP) via network" -+#~ msgstr "Printera nosaukums" -+ -+#, fuzzy - #~ msgid "Not Found" - #~ msgstr "Nav atrasts" - -diff -up system-config-printer-1.1.5/po/mai.po.git-1.1.x system-config-printer-1.1.5/po/mai.po ---- system-config-printer-1.1.5/po/mai.po.git-1.1.x 2009-03-03 22:21:46.000000000 +0000 -+++ system-config-printer-1.1.5/po/mai.po 2009-03-10 17:43:31.000000000 +0000 -@@ -7,7 +7,7 @@ msgid "" - msgstr "" - "Project-Id-Version: system-config-printer.1.1.x\n" - "Report-Msgid-Bugs-To: https://bugzilla.redhat.com/bugzilla\n" --"POT-Creation-Date: 2009-03-02 23:22+0000\n" -+"POT-Creation-Date: 2009-03-10 16:51+0000\n" - "PO-Revision-Date: 2009-02-27 00:56+0530\n" - "Last-Translator: Sangeeta Kumari \n" - "Language-Team: Maithili \n" -@@ -52,11 +52,11 @@ msgstr "" - msgid "Enter IP address" - msgstr "" - --#: ../authconn.py:35 ../glade/NewPrinterWindow.glade.h:108 -+#: ../authconn.py:35 ../glade/NewPrinterWindow.glade.h:107 - msgid "Username:" - msgstr "" - --#: ../authconn.py:36 ../glade/NewPrinterWindow.glade.h:77 -+#: ../authconn.py:36 ../glade/NewPrinterWindow.glade.h:76 - msgid "Password:" - msgstr "गुड़किल्ली:" - -@@ -64,7 +64,7 @@ msgstr "गुड़किल्ली:" - msgid "Domain:" - msgstr "डोमेन:" - --#: ../authconn.py:46 -+#: ../authconn.py:46 ../authconn.py:409 - msgid "Authentication" - msgstr "सत्यापन" - -@@ -72,43 +72,52 @@ msgstr "सत्यापन" - msgid "Remember password" - msgstr "" - --#: ../authconn.py:211 ../authconn.py:232 -+#: ../authconn.py:208 -+#, python-format -+msgid "Unauthorized request (%s)" -+msgstr "" -+ -+#: ../authconn.py:209 -+msgid "You are not authorized to carry out therequested action." -+msgstr "" -+ -+#: ../authconn.py:212 ../authconn.py:233 - msgid "Operation canceled" - msgstr "" - --#: ../authconn.py:253 -+#: ../authconn.py:250 - #, python-format - msgid "CUPS server error (%s)" - msgstr "" - --#: ../authconn.py:255 ../errordialogs.py:57 --#: ../troubleshoot/PrintTestPage.py:400 -+#: ../authconn.py:252 ../errordialogs.py:56 ../errordialogs.py:70 -+msgid "CUPS server error" -+msgstr "" -+ -+#: ../authconn.py:261 ../errordialogs.py:57 -+#: ../troubleshoot/PrintTestPage.py:417 - #, python-format - msgid "There was an error during the CUPS operation: '%s'." - msgstr "" - --#: ../authconn.py:258 -+#: ../authconn.py:264 - msgid "Retry" - msgstr "" - --#: ../authconn.py:379 ../authconn.py:381 ../errordialogs.py:65 ../pysmb.py:75 -+#: ../authconn.py:385 ../authconn.py:387 ../errordialogs.py:65 ../pysmb.py:75 - #: ../pysmb.py:77 - msgid "Not authorized" - msgstr "" - --#: ../authconn.py:382 ../pysmb.py:78 -+#: ../authconn.py:388 ../pysmb.py:78 - msgid "The password may be incorrect." - msgstr "" - --#: ../authconn.py:400 -+#: ../authconn.py:407 - #, python-format - msgid "Authentication (%s)" - msgstr "" - --#: ../errordialogs.py:56 ../errordialogs.py:70 --msgid "CUPS server error" --msgstr "" -- - #: ../errordialogs.py:66 - msgid "" - "The password may be incorrect, or the server may be configured to deny " -@@ -135,7 +144,7 @@ msgstr "" - msgid "Server error" - msgstr "" - --#: ../errordialogs.py:82 ../system-config-printer.py:1219 -+#: ../errordialogs.py:82 ../system-config-printer.py:1223 - msgid "Not connected" - msgstr "" - -@@ -157,7 +166,7 @@ msgstr "" - msgid "_New Group from Selection" - msgstr "" - --#: ../GroupsPane.py:98 ../system-config-printer.py:393 -+#: ../GroupsPane.py:98 ../system-config-printer.py:397 - msgid "_Rename" - msgstr "" - -@@ -222,7 +231,7 @@ msgid "Document" - msgstr "" - - #: ../jobviewer.py:212 ../my-default-printer.py:153 --#: ../system-config-printer.py:366 ../system-config-printer.py:1367 -+#: ../system-config-printer.py:370 ../system-config-printer.py:1371 - #: ../troubleshoot/PrintTestPage.py:84 - msgid "Printer" - msgstr "" -@@ -259,8 +268,8 @@ msgstr "" - - #: ../jobviewer.py:386 ../jobviewer.py:451 ../jobviewer.py:452 - #: ../jobviewer.py:492 ../jobviewer.py:600 ../jobviewer.py:727 --#: ../jobviewer.py:1196 ../jobviewer.py:1222 ../system-config-printer.py:2546 --#: ../glade/NewPrinterWindow.glade.h:106 -+#: ../jobviewer.py:1196 ../jobviewer.py:1222 ../system-config-printer.py:2556 -+#: ../glade/NewPrinterWindow.glade.h:105 - #: ../troubleshoot/ChooseNetworkPrinter.py:101 - #: ../troubleshoot/ChooseNetworkPrinter.py:102 - #: ../troubleshoot/ChooseNetworkPrinter.py:105 -@@ -348,12 +357,12 @@ msgstr "" - msgid "Pending" - msgstr "" - --#: ../jobviewer.py:591 ../system-config-printer.py:186 -+#: ../jobviewer.py:591 ../system-config-printer.py:190 - #: ../troubleshoot/PrintTestPage.py:43 - msgid "Processing" - msgstr "" - --#: ../jobviewer.py:592 ../system-config-printer.py:188 -+#: ../jobviewer.py:592 ../system-config-printer.py:192 - #: ../troubleshoot/PrintTestPage.py:44 - msgid "Stopped" - msgstr "" -@@ -463,8 +472,8 @@ msgstr "" - msgid "_Set Default" - msgstr "" - --#: ../my-default-printer.py:158 ../system-config-printer.py:423 --#: ../system-config-printer.py:3660 ../troubleshoot/ChooseNetworkPrinter.py:37 -+#: ../my-default-printer.py:158 ../system-config-printer.py:427 -+#: ../system-config-printer.py:3675 ../troubleshoot/ChooseNetworkPrinter.py:37 - #: ../troubleshoot/ChoosePrinter.py:38 - msgid "Location" - msgstr "स्थान" -@@ -493,7 +502,7 @@ msgstr "" - msgid "Authenticated" - msgstr "" - --#: ../ppdippstr.py:50 ../system-config-printer.py:6259 -+#: ../ppdippstr.py:50 ../system-config-printer.py:6207 - msgid "None" - msgstr "किछु नहि" - -@@ -706,201 +715,201 @@ msgstr "600 dpi, color, black + color ca - msgid "1200 dpi, photo, black + color cartridge, photo paper" - msgstr "1200 dpi, photo, black + color cartridge, photo paper" - --#: ../system-config-printer.py:127 -+#: ../system-config-printer.py:131 - msgid "To do this, select System->Administration->Firewall from the main menu." - msgstr "" - --#: ../system-config-printer.py:185 -+#: ../system-config-printer.py:189 - msgid "Idle" - msgstr "" - --#: ../system-config-printer.py:187 -+#: ../system-config-printer.py:191 - msgid "Busy" - msgstr "" - --#: ../system-config-printer.py:372 ../system-config-printer.py:1373 -+#: ../system-config-printer.py:376 ../system-config-printer.py:1377 - msgid "Class" - msgstr "वर्ग" - --#: ../system-config-printer.py:399 -+#: ../system-config-printer.py:403 - msgid "Set As De_fault" - msgstr "" - --#: ../system-config-printer.py:403 -+#: ../system-config-printer.py:407 - msgid "_Create class" - msgstr "" - --#: ../system-config-printer.py:405 -+#: ../system-config-printer.py:409 - msgid "View Print _Queue" - msgstr "" - --#: ../system-config-printer.py:407 -+#: ../system-config-printer.py:411 - msgid "_Add to Group" - msgstr "" - --#: ../system-config-printer.py:409 -+#: ../system-config-printer.py:413 - msgid "Save Results as _Group" - msgstr "" - --#: ../system-config-printer.py:411 -+#: ../system-config-printer.py:415 - msgid "Save Filter as _Search Group" - msgstr "" - --#: ../system-config-printer.py:415 -+#: ../system-config-printer.py:419 - msgid "E_nabled" - msgstr "" - --#: ../system-config-printer.py:417 -+#: ../system-config-printer.py:421 - msgid "_Shared" - msgstr "" - --#: ../system-config-printer.py:421 ../troubleshoot/ChooseNetworkPrinter.py:35 -+#: ../system-config-printer.py:425 ../troubleshoot/ChooseNetworkPrinter.py:35 - #: ../troubleshoot/ChoosePrinter.py:36 ../troubleshoot/DeviceListed.py:36 - msgid "Name" - msgstr "नाम" - --#: ../system-config-printer.py:422 -+#: ../system-config-printer.py:426 - msgid "Description" - msgstr "वर्णन" - --#: ../system-config-printer.py:424 -+#: ../system-config-printer.py:428 - msgid "Manufacturer / Model" - msgstr "" - - #. Printer state reasons list --#: ../system-config-printer.py:499 -+#: ../system-config-printer.py:503 - msgid "Message" - msgstr "" - --#: ../system-config-printer.py:534 -+#: ../system-config-printer.py:538 - msgid "Problems?" - msgstr "" - --#: ../system-config-printer.py:637 ../system-config-printer.py:639 -+#: ../system-config-printer.py:641 ../system-config-printer.py:643 - msgid "Members of this class" - msgstr "" - --#: ../system-config-printer.py:638 ../system-config-printer.py:640 -+#: ../system-config-printer.py:642 ../system-config-printer.py:644 - msgid "Others" - msgstr "" - --#: ../system-config-printer.py:641 -+#: ../system-config-printer.py:645 - msgid "Devices" - msgstr "युक्तिसभ" - --#: ../system-config-printer.py:642 -+#: ../system-config-printer.py:646 - msgid "Connections" - msgstr "" - --#: ../system-config-printer.py:643 -+#: ../system-config-printer.py:647 - msgid "Makes" - msgstr "" - --#: ../system-config-printer.py:644 -+#: ../system-config-printer.py:648 - msgid "Models" - msgstr "" - --#: ../system-config-printer.py:645 -+#: ../system-config-printer.py:649 - msgid "Drivers" - msgstr "" - --#: ../system-config-printer.py:646 ../glade/NewPrinterWindow.glade.h:55 -+#: ../system-config-printer.py:650 ../glade/NewPrinterWindow.glade.h:54 - msgid "Downloadable Drivers" - msgstr "" - --#: ../system-config-printer.py:647 -+#: ../system-config-printer.py:651 - msgid "Users" - msgstr "" - --#: ../system-config-printer.py:682 -+#: ../system-config-printer.py:686 - msgid "Automatic rotation" - msgstr "" - --#: ../system-config-printer.py:989 -+#: ../system-config-printer.py:993 - #, python-format - msgid "Printer Properties - '%s' on %s" - msgstr "" - - #. The Conflict button was pressed. --#: ../system-config-printer.py:996 -+#: ../system-config-printer.py:1000 - msgid "" - "There are conflicting options.\n" - "Changes can only be applied after\n" - "these conflicts are resolved." - msgstr "" - --#: ../system-config-printer.py:1214 -+#: ../system-config-printer.py:1218 - #, python-format - msgid "Printer configuration - %s" - msgstr "" - --#: ../system-config-printer.py:1217 -+#: ../system-config-printer.py:1221 - #, python-format - msgid "Connected to %s" - msgstr "" - - #. Update our copy of the printer's settings. --#: ../system-config-printer.py:1257 ../system-config-printer.py:2042 -+#: ../system-config-printer.py:1261 ../system-config-printer.py:2046 - msgid "obtaining queue details" - msgstr "" - --#: ../system-config-printer.py:1295 -+#: ../system-config-printer.py:1299 - msgid "Remove from Group" - msgstr "" - --#: ../system-config-printer.py:1361 -+#: ../system-config-printer.py:1365 - msgid "Network printer (discovered)" - msgstr "" - --#: ../system-config-printer.py:1364 -+#: ../system-config-printer.py:1368 - msgid "Network class (discovered)" - msgstr "" - --#: ../system-config-printer.py:1370 ../system-config-printer.py:5524 --#: ../system-config-printer.py:5594 ../system-config-printer.py:5596 -+#: ../system-config-printer.py:1374 ../system-config-printer.py:5519 -+#: ../system-config-printer.py:5589 ../system-config-printer.py:5591 - msgid "Fax" - msgstr "" - --#: ../system-config-printer.py:1376 ../system-config-printer.py:1382 -+#: ../system-config-printer.py:1380 ../system-config-printer.py:1386 - #: ../troubleshoot/LocalOrRemote.py:30 - msgid "Network printer" - msgstr "" - --#: ../system-config-printer.py:1379 -+#: ../system-config-printer.py:1383 - msgid "Network print share" - msgstr "" - --#: ../system-config-printer.py:1508 ../glade/ConnectingDialog.glade.h:2 -+#: ../system-config-printer.py:1512 ../glade/ConnectingDialog.glade.h:2 - #, no-c-format, python-format - msgid "Opening connection to %s" - msgstr "" - --#: ../system-config-printer.py:1887 -+#: ../system-config-printer.py:1891 - msgid "Installable Options" - msgstr "" - --#: ../system-config-printer.py:1888 -+#: ../system-config-printer.py:1892 - #: ../glade/PrinterPropertiesDialog.glade.h:109 - msgid "Printer Options" - msgstr "" - --#: ../system-config-printer.py:1924 -+#: ../system-config-printer.py:1928 - #, python-format - msgid "modifying class %s" - msgstr "" - --#: ../system-config-printer.py:1926 ../system-config-printer.py:3019 --#: ../system-config-printer.py:3044 ../system-config-printer.py:6547 --#: ../system-config-printer.py:6559 ../system-config-printer.py:6581 -+#: ../system-config-printer.py:1930 ../system-config-printer.py:3037 -+#: ../system-config-printer.py:3062 ../system-config-printer.py:6495 -+#: ../system-config-printer.py:6507 ../system-config-printer.py:6529 - #, python-format - msgid "modifying printer %s" - msgstr "" - --#: ../system-config-printer.py:1941 -+#: ../system-config-printer.py:1945 - msgid "This will delete this class!" - msgstr "" - --#: ../system-config-printer.py:1942 -+#: ../system-config-printer.py:1946 - msgid "Proceed anyway?" - msgstr "" - -@@ -908,63 +917,63 @@ msgstr "" - #. but we have never fetched the server settings to see whether - #. the server is publishing shared printers. Fetch the settings - #. now so that we can update the "not published" label if necessary. --#: ../system-config-printer.py:2030 ../system-config-printer.py:3203 -+#: ../system-config-printer.py:2034 ../system-config-printer.py:3221 - msgid "fetching server settings" - msgstr "" - --#: ../system-config-printer.py:2100 -+#: ../system-config-printer.py:2104 - msgid "Set Default Printer" - msgstr "" - --#: ../system-config-printer.py:2102 -+#: ../system-config-printer.py:2106 - msgid "Do you want to set this as the system-wide default printer?" - msgstr "" - --#: ../system-config-printer.py:2104 -+#: ../system-config-printer.py:2108 - msgid "Set as the _system-wide default printer" - msgstr "" - --#: ../system-config-printer.py:2106 -+#: ../system-config-printer.py:2110 - msgid "_Clear my personal default setting" - msgstr "" - --#: ../system-config-printer.py:2107 -+#: ../system-config-printer.py:2111 - msgid "Set as my _personal default printer" - msgstr "" - --#: ../system-config-printer.py:2112 -+#: ../system-config-printer.py:2116 - msgid "setting default printer" - msgstr "" - --#: ../system-config-printer.py:2169 -+#: ../system-config-printer.py:2173 - msgid "printing test page" - msgstr "" - --#: ../system-config-printer.py:2182 ../system-config-printer.py:2217 --#: ../system-config-printer.py:5418 -+#: ../system-config-printer.py:2186 ../system-config-printer.py:2221 -+#: ../system-config-printer.py:5413 - msgid "Not possible" - msgstr "" - --#: ../system-config-printer.py:2183 ../system-config-printer.py:2218 -+#: ../system-config-printer.py:2187 ../system-config-printer.py:2222 - msgid "" - "The remote server did not accept the print job, most likely because the " - "printer is not shared." - msgstr "" - --#: ../system-config-printer.py:2195 ../system-config-printer.py:2210 -+#: ../system-config-printer.py:2199 ../system-config-printer.py:2214 - msgid "Submitted" - msgstr "" - --#: ../system-config-printer.py:2196 -+#: ../system-config-printer.py:2200 - #, python-format - msgid "Test page submitted as job %d" - msgstr "" - --#: ../system-config-printer.py:2203 -+#: ../system-config-printer.py:2207 - msgid "sending maintenance command" - msgstr "" - --#: ../system-config-printer.py:2211 -+#: ../system-config-printer.py:2215 - #, python-format - msgid "Maintenance command submitted as job %d" - msgstr "" -@@ -972,71 +981,71 @@ msgstr "" - #. The underlying cupsGetPPD2() function returned NULL without - #. setting an IPP error, so it'll be something like a failed - #. connection. --#: ../system-config-printer.py:2285 ../system-config-printer.py:2381 -+#: ../system-config-printer.py:2289 ../system-config-printer.py:2385 - msgid "Error" - msgstr "त्रुटि" - --#: ../system-config-printer.py:2286 -+#: ../system-config-printer.py:2290 - msgid "There was a problem connecting to the CUPS server." - msgstr "" - --#: ../system-config-printer.py:2382 -+#: ../system-config-printer.py:2386 - #, python-format - msgid "Option '%s' has value '%s' and cannot be edited." - msgstr "" - --#: ../system-config-printer.py:2466 -+#: ../system-config-printer.py:2476 - msgid "Marker levels are not reported for this printer." - msgstr "" - --#: ../system-config-printer.py:2763 -+#: ../system-config-printer.py:2773 - msgid "Cannot Rename" - msgstr "" - --#: ../system-config-printer.py:2764 -+#: ../system-config-printer.py:2774 - msgid "There are queued jobs." - msgstr "" - --#: ../system-config-printer.py:2822 -+#: ../system-config-printer.py:2840 - msgid "renaming printer" - msgstr "" - - #. for classes make sure all members - #. will get added --#: ../system-config-printer.py:2907 -+#: ../system-config-printer.py:2925 - msgid "copying printer" - msgstr "" - --#: ../system-config-printer.py:2971 -+#: ../system-config-printer.py:2989 - #, python-format - msgid "Really delete class '%s'?" - msgstr "" - --#: ../system-config-printer.py:2973 -+#: ../system-config-printer.py:2991 - #, python-format - msgid "Really delete printer '%s'?" - msgstr "" - --#: ../system-config-printer.py:2975 -+#: ../system-config-printer.py:2993 - msgid "Really delete selected destinations?" - msgstr "" - --#: ../system-config-printer.py:2996 -+#: ../system-config-printer.py:3014 - #, python-format - msgid "deleting printer %s" - msgstr "" - --#: ../system-config-printer.py:3070 -+#: ../system-config-printer.py:3088 - msgid "Publish Shared Printers" - msgstr "" - --#: ../system-config-printer.py:3071 -+#: ../system-config-printer.py:3089 - msgid "" - "Shared printers are not available to other people unless the 'Publish shared " - "printers' option is enabled in the server settings." - msgstr "" - --#: ../system-config-printer.py:3264 -+#: ../system-config-printer.py:3282 - msgid "modifying server settings" - msgstr "" - -@@ -1046,100 +1055,100 @@ msgstr "" - #. be unblocked. Unfortunately, this is not yet possible - #. (bug #440469). However, we can display a dialog to suggest - #. that now might be a good time to review the firewall settings. --#: ../system-config-printer.py:3289 -+#: ../system-config-printer.py:3307 - msgid "Review Firewall" - msgstr "" - --#: ../system-config-printer.py:3290 -+#: ../system-config-printer.py:3308 - msgid "" - "You may need to adjust the firewall to allow network printing to this " - "computer." - msgstr "" - --#: ../system-config-printer.py:3623 -+#: ../system-config-printer.py:3638 - msgid "Browsing not available (pysmbc not installed)" - msgstr "" - - #. SMB list columns --#: ../system-config-printer.py:3629 -+#: ../system-config-printer.py:3644 - msgid "Share" - msgstr "साझा" - --#: ../system-config-printer.py:3635 -+#: ../system-config-printer.py:3650 - msgid "Comment" - msgstr "" - - #. IPP list columns --#: ../system-config-printer.py:3654 -+#: ../system-config-printer.py:3669 - msgid "Queue" - msgstr "" - --#: ../system-config-printer.py:3668 -+#: ../system-config-printer.py:3683 - msgid "" - "PostScript Printer Description files (*.ppd, *.PPD, *.ppd.gz, *.PPD.gz, *." - "PPD.GZ)" - msgstr "" - --#: ../system-config-printer.py:3677 -+#: ../system-config-printer.py:3692 - msgid "All files (*)" - msgstr "" - --#: ../system-config-printer.py:3713 ../system-config-printer.py:5970 --#: ../system-config-printer.py:6008 ../applet.py:124 -+#: ../system-config-printer.py:3728 ../system-config-printer.py:5918 -+#: ../system-config-printer.py:5956 ../applet.py:124 - msgid "Search" - msgstr "" - --#: ../system-config-printer.py:3736 ../system-config-printer.py:3760 --#: ../glade/NewPrinterWindow.glade.h:74 -+#: ../system-config-printer.py:3751 ../system-config-printer.py:3775 -+#: ../glade/NewPrinterWindow.glade.h:73 - msgid "New Printer" - msgstr "" - --#: ../system-config-printer.py:3747 -+#: ../system-config-printer.py:3762 - msgid "New Class" - msgstr "" - --#: ../system-config-printer.py:3752 -+#: ../system-config-printer.py:3767 - msgid "Change Device URI" - msgstr "" - --#: ../system-config-printer.py:3758 -+#: ../system-config-printer.py:3773 - msgid "Change Driver" - msgstr "" - --#: ../system-config-printer.py:3927 ../system-config-printer.py:3993 --#: ../system-config-printer.py:4289 ../system-config-printer.py:4487 --#: ../system-config-printer.py:5772 ../system-config-printer.py:5995 -+#: ../system-config-printer.py:3942 ../system-config-printer.py:4008 -+#: ../system-config-printer.py:4304 ../system-config-printer.py:4502 -+#: ../system-config-printer.py:5762 ../system-config-printer.py:5943 - msgid "Searching" - msgstr "" - --#: ../system-config-printer.py:3928 -+#: ../system-config-printer.py:3943 - msgid "Searching for downloadable drivers" - msgstr "" - --#: ../system-config-printer.py:3994 ../system-config-printer.py:4290 -+#: ../system-config-printer.py:4009 ../system-config-printer.py:4305 - msgid "Searching for drivers" - msgstr "" - --#: ../system-config-printer.py:4488 ../system-config-printer.py:5773 -+#: ../system-config-printer.py:4503 ../system-config-printer.py:5763 - msgid "Searching for printers" - msgstr "" - --#: ../system-config-printer.py:4497 -+#: ../system-config-printer.py:4512 - msgid "fetching device list" - msgstr "" - - #. Tell the user why he needs the plugin --#: ../system-config-printer.py:4579 -+#: ../system-config-printer.py:4594 - msgid "For this printer a proprietary driver plugin from HP is available.\n" - msgstr "" - --#: ../system-config-printer.py:4582 -+#: ../system-config-printer.py:4597 - msgid "" - "The installation of the plugin is required for your printer to work.\n" - "\n" - msgstr "" - --#: ../system-config-printer.py:4585 -+#: ../system-config-printer.py:4600 - msgid "" - "Installing the plugin is optional, it completes or enhances the " - "functionality\n" -@@ -1147,261 +1156,253 @@ msgid "" - "\n" - msgstr "" - --#: ../system-config-printer.py:4589 -+#: ../system-config-printer.py:4604 - msgid "The plugin provides the following features:\n" - msgstr "" - --#: ../system-config-printer.py:4592 -+#: ../system-config-printer.py:4607 - msgid " - Printing support\n" - msgstr "" - --#: ../system-config-printer.py:4595 -+#: ../system-config-printer.py:4610 - msgid " - Faster printing\n" - msgstr "" - --#: ../system-config-printer.py:4598 -+#: ../system-config-printer.py:4613 - msgid " - Better printout quality\n" - msgstr "" - --#: ../system-config-printer.py:4601 -+#: ../system-config-printer.py:4616 - msgid " - Extra printing features\n" - msgstr "" - --#: ../system-config-printer.py:4604 -+#: ../system-config-printer.py:4619 - msgid " - Scanning support\n" - msgstr "" - --#: ../system-config-printer.py:4607 -+#: ../system-config-printer.py:4622 - msgid " - Faster scanning\n" - msgstr "" - --#: ../system-config-printer.py:4610 -+#: ../system-config-printer.py:4625 - msgid " - Better scanning image quality\n" - msgstr "" - --#: ../system-config-printer.py:4613 -+#: ../system-config-printer.py:4628 - msgid " - Faxing support\n" - msgstr "" - --#: ../system-config-printer.py:4616 -+#: ../system-config-printer.py:4631 - msgid " - Extra fax features\n" - msgstr "" - --#: ../system-config-printer.py:4619 -+#: ../system-config-printer.py:4634 - msgid " - Better Input/Output support\n" - msgstr "" - --#: ../system-config-printer.py:4622 -+#: ../system-config-printer.py:4637 - msgid " - Extra user interface features\n" - msgstr "" - --#: ../system-config-printer.py:4625 -+#: ../system-config-printer.py:4640 - msgid " - Other extra features\n" - msgstr "" - --#: ../system-config-printer.py:4630 -+#: ../system-config-printer.py:4645 - msgid "Install plugin" - msgstr "" - --#: ../system-config-printer.py:4631 -+#: ../system-config-printer.py:4646 - msgid "Do not set up printer" - msgstr "" - --#: ../system-config-printer.py:4632 -+#: ../system-config-printer.py:4647 - msgid "Set up without plugin" - msgstr "" - --#: ../system-config-printer.py:4634 ../troubleshoot/PrintTestPage.py:118 -+#: ../system-config-printer.py:4649 ../troubleshoot/PrintTestPage.py:118 - msgid "Yes" - msgstr "हँ" - --#: ../system-config-printer.py:4635 ../troubleshoot/PrintTestPage.py:119 -+#: ../system-config-printer.py:4650 ../troubleshoot/PrintTestPage.py:119 - msgid "No" - msgstr "नहि" - --#: ../system-config-printer.py:4809 ../system-config-printer.py:4813 -+#: ../system-config-printer.py:4824 ../system-config-printer.py:4828 - msgid " (Current)" - msgstr "" - --#: ../system-config-printer.py:4845 --msgid "HP Printer (HPLIP)" --msgstr "" -- --#: ../system-config-printer.py:4886 -+#: ../system-config-printer.py:4881 - msgid "Other" - msgstr "" - - #. device-info - #. PhysicalDevice obj - #. Separator? --#: ../system-config-printer.py:4902 -+#: ../system-config-printer.py:4897 - msgid "Network Printer" - msgstr "" - --#: ../system-config-printer.py:4906 -+#: ../system-config-printer.py:4901 - msgid "Find Network Printer" - msgstr "" - --#: ../system-config-printer.py:4979 ../system-config-printer.py:5376 -+#: ../system-config-printer.py:4974 ../system-config-printer.py:5371 - msgid "Scanning..." - msgstr "" - --#: ../system-config-printer.py:5034 ../system-config-printer.py:5798 -+#: ../system-config-printer.py:5029 - msgid "No Print Shares" - msgstr "" - --#: ../system-config-printer.py:5035 -+#: ../system-config-printer.py:5030 - msgid "" - "There were no print shares found. Please check that the Samba service is " - "marked as trusted in your firewall configuration." - msgstr "" - --#: ../system-config-printer.py:5296 ../system-config-printer.py:5357 -+#: ../system-config-printer.py:5291 ../system-config-printer.py:5352 - msgid "Print Share Verified" - msgstr "" - --#: ../system-config-printer.py:5297 ../system-config-printer.py:5358 -+#: ../system-config-printer.py:5292 ../system-config-printer.py:5353 - msgid "This print share is accessible." - msgstr "" - --#: ../system-config-printer.py:5302 ../system-config-printer.py:5362 -+#: ../system-config-printer.py:5297 ../system-config-printer.py:5357 - msgid "This print share is not accessible." - msgstr "" - --#: ../system-config-printer.py:5305 -+#: ../system-config-printer.py:5300 - msgid "Print Share Inaccessible" - msgstr "" - --#: ../system-config-printer.py:5361 -+#: ../system-config-printer.py:5356 - msgid "Inaccessible" - msgstr "" - --#: ../system-config-printer.py:5419 -+#: ../system-config-printer.py:5414 - #, python-format - msgid "It is not possible to obtain a list of queues from '%s'." - msgstr "" - --#: ../system-config-printer.py:5421 -+#: ../system-config-printer.py:5416 - msgid "" - "Obtaining a list of queues is a CUPS extension to IPP. Network printers do " - "not support it." - msgstr "" - --#: ../system-config-printer.py:5424 -+#: ../system-config-printer.py:5419 - msgid "No queues" - msgstr "" - --#: ../system-config-printer.py:5425 -+#: ../system-config-printer.py:5420 - msgid "There are no queues available." - msgstr "" - --#: ../system-config-printer.py:5516 -+#: ../system-config-printer.py:5511 - msgid "Parallel Port" - msgstr "" - --#: ../system-config-printer.py:5518 -+#: ../system-config-printer.py:5513 - msgid "Serial Port" - msgstr "" - --#: ../system-config-printer.py:5520 -+#: ../system-config-printer.py:5515 - msgid "USB" - msgstr "USB" - --#: ../system-config-printer.py:5522 ../system-config-printer.py:5525 -+#: ../system-config-printer.py:5517 ../system-config-printer.py:5520 - msgid "HP Linux Imaging and Printing (HPLIP)" - msgstr "" - --#: ../system-config-printer.py:5527 -+#: ../system-config-printer.py:5522 - msgid "Hardware Abstraction Layer (HAL)" - msgstr "" - --#: ../system-config-printer.py:5529 -+#: ../system-config-printer.py:5524 - msgid "AppSocket/HP JetDirect" - msgstr "" - --#: ../system-config-printer.py:5538 -+#: ../system-config-printer.py:5533 - #, python-format - msgid "LPD/LPR queue '%s'" - msgstr "" - --#: ../system-config-printer.py:5540 -+#: ../system-config-printer.py:5535 - #, fuzzy - msgid "LPD/LPR queue" - msgstr "LPD/LPR" - --#: ../system-config-printer.py:5543 -+#: ../system-config-printer.py:5538 - msgid "Windows Printer via SAMBA" - msgstr "" - --#: ../system-config-printer.py:5545 ../glade/NewPrinterWindow.glade.h:66 -+#: ../system-config-printer.py:5540 ../glade/NewPrinterWindow.glade.h:65 - msgid "IPP" - msgstr "IPP" - --#: ../system-config-printer.py:5547 -+#: ../system-config-printer.py:5542 - msgid "HTTP" - msgstr "HTTP" - --#: ../system-config-printer.py:5632 -+#: ../system-config-printer.py:5624 - msgid "A printer connected to the parallel port." - msgstr "" - --#: ../system-config-printer.py:5634 -+#: ../system-config-printer.py:5626 - msgid "A printer connected to a USB port." - msgstr "" - --#: ../system-config-printer.py:5636 -+#: ../system-config-printer.py:5628 - msgid "" - "HPLIP software driving a printer, or the printer function of a multi-" - "function device." - msgstr "" - --#: ../system-config-printer.py:5639 -+#: ../system-config-printer.py:5631 - msgid "" - "HPLIP software driving a fax machine, or the fax function of a multi-" - "function device." - msgstr "" - --#: ../system-config-printer.py:5642 -+#: ../system-config-printer.py:5634 - msgid "Local printer detected by the Hardware Abstraction Layer (HAL)." - msgstr "" - --#: ../system-config-printer.py:5799 --msgid "HPLIP cannot find the device." --msgstr "" -- --#: ../system-config-printer.py:5881 -+#: ../system-config-printer.py:5831 - msgid "No printer was found at that address." - msgstr "" - --#: ../system-config-printer.py:6020 -+#: ../system-config-printer.py:5968 - msgid "-- Select from search results --" - msgstr "" - --#: ../system-config-printer.py:6022 -+#: ../system-config-printer.py:5970 - msgid "-- No matches found --" - msgstr "" - --#: ../system-config-printer.py:6203 -+#: ../system-config-printer.py:6151 - msgid " (recommended)" - msgstr " (अनुशंसित)" - --#: ../system-config-printer.py:6217 -+#: ../system-config-printer.py:6165 - msgid "This PPD is generated by foomatic." - msgstr "" - --#: ../system-config-printer.py:6241 -+#: ../system-config-printer.py:6189 - msgid "OpenPrinting" - msgstr "" - --#: ../system-config-printer.py:6252 -+#: ../system-config-printer.py:6200 - msgid "Distributable" - msgstr "" - --#: ../system-config-printer.py:6293 -+#: ../system-config-printer.py:6241 - msgid ", " - msgstr "," - --#: ../system-config-printer.py:6298 -+#: ../system-config-printer.py:6246 - #, python-format - msgid "" - "\n" -@@ -1410,20 +1411,20 @@ msgstr "" - "\n" - "(%s)" - --#: ../system-config-printer.py:6303 -+#: ../system-config-printer.py:6251 - msgid "No support contacts known" - msgstr "" - --#: ../system-config-printer.py:6307 ../system-config-printer.py:6320 -+#: ../system-config-printer.py:6255 ../system-config-printer.py:6268 - msgid "Not specified." - msgstr "" - - #. Foomatic database problem of some sort. --#: ../system-config-printer.py:6360 -+#: ../system-config-printer.py:6308 - msgid "Database error" - msgstr "" - --#: ../system-config-printer.py:6361 -+#: ../system-config-printer.py:6309 - #, python-format - msgid "The '%s' driver cannot be used with printer '%s %s'." - msgstr "" -@@ -1431,60 +1432,60 @@ msgstr "" - #. This printer references some XML that is not - #. installed by default. Point the user at the - #. package they need to install. --#: ../system-config-printer.py:6371 -+#: ../system-config-printer.py:6319 - #, python-format - msgid "You will need to install the '%s' package in order to use this driver." - msgstr "" - - #. This error came from trying to open the PPD file. --#: ../system-config-printer.py:6378 -+#: ../system-config-printer.py:6326 - msgid "PPD error" - msgstr "" - --#: ../system-config-printer.py:6380 -+#: ../system-config-printer.py:6328 - msgid "Failed to read PPD file. Possible reason follows:" - msgstr "" - - #. Failed to get PPD downloaded from OpenPrinting XXX --#: ../system-config-printer.py:6397 -+#: ../system-config-printer.py:6345 - msgid "Downloadable drivers" - msgstr "" - --#: ../system-config-printer.py:6398 -+#: ../system-config-printer.py:6346 - msgid "Failed to download PPD." - msgstr "" - --#: ../system-config-printer.py:6405 -+#: ../system-config-printer.py:6353 - msgid "fetching PPD" - msgstr "" - --#: ../system-config-printer.py:6434 ../system-config-printer.py:6472 -+#: ../system-config-printer.py:6382 ../system-config-printer.py:6420 - msgid "No Installable Options" - msgstr "" - --#: ../system-config-printer.py:6520 -+#: ../system-config-printer.py:6468 - #, python-format - msgid "adding printer %s" - msgstr "" - --#: ../system-config-printer.py:6669 -+#: ../system-config-printer.py:6617 - msgid "Would you like to print a test page?" - msgstr "" - --#: ../system-config-printer.py:6722 -+#: ../system-config-printer.py:6670 - msgid "Install driver" - msgstr "" - --#: ../system-config-printer.py:6723 ../troubleshoot/CheckPPDSanity.py:131 -+#: ../system-config-printer.py:6671 ../troubleshoot/CheckPPDSanity.py:131 - #, python-format - msgid "Printer '%s' requires the %s package but it is not currently installed." - msgstr "" - --#: ../system-config-printer.py:6739 -+#: ../system-config-printer.py:6687 - msgid "Missing driver" - msgstr "" - --#: ../system-config-printer.py:6740 -+#: ../system-config-printer.py:6688 - #, python-format - msgid "" - "Printer '%s' requires the '%s' program but it is not currently installed. " -@@ -1611,106 +1612,102 @@ msgid "Enter device URI" - msgstr "" - - #: ../glade/NewPrinterWindow.glade.h:5 --msgid "HP Printer (HPLIP) via network" --msgstr "" -- --#: ../glade/NewPrinterWindow.glade.h:6 - msgid "IPP Printer" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:7 -+#: ../glade/NewPrinterWindow.glade.h:6 - msgid "License Terms" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:8 -+#: ../glade/NewPrinterWindow.glade.h:7 - msgid "Location of the LPD network printer" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:9 -+#: ../glade/NewPrinterWindow.glade.h:8 - msgid "Location of the network printer" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:10 -+#: ../glade/NewPrinterWindow.glade.h:9 - msgid "Location (optional)" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:11 -+#: ../glade/NewPrinterWindow.glade.h:10 - msgid "Network Printer" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:12 -+#: ../glade/NewPrinterWindow.glade.h:11 - msgid "Note" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:13 -+#: ../glade/NewPrinterWindow.glade.h:12 - msgid "Output Quality" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:14 -+#: ../glade/NewPrinterWindow.glade.h:13 - msgid "Printer Name" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:15 -+#: ../glade/NewPrinterWindow.glade.h:14 - msgid "SMB Printer" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:16 -+#: ../glade/NewPrinterWindow.glade.h:15 - msgid "Select Driver" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:17 -+#: ../glade/NewPrinterWindow.glade.h:16 - msgid "Settings of the serial port" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:18 -+#: ../glade/NewPrinterWindow.glade.h:17 - msgid "smb://[workgroup/]server[:port]/printer" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:19 -+#: ../glade/NewPrinterWindow.glade.h:18 - msgid "Choose Class Members" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:20 -+#: ../glade/NewPrinterWindow.glade.h:19 - msgid "Choose Driver" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:21 -+#: ../glade/NewPrinterWindow.glade.h:20 - msgid "Describe Printer" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:22 -+#: ../glade/NewPrinterWindow.glade.h:21 - msgid "Existing Settings" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:23 -+#: ../glade/NewPrinterWindow.glade.h:22 - msgid "Installable Options" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:24 -+#: ../glade/NewPrinterWindow.glade.h:23 - msgid "Select Device" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:25 -+#: ../glade/NewPrinterWindow.glade.h:24 - msgid "Baud Rate" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:26 -+#: ../glade/NewPrinterWindow.glade.h:25 - msgid "Browse..." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:27 -+#: ../glade/NewPrinterWindow.glade.h:26 - msgid "Comments..." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:28 -+#: ../glade/NewPrinterWindow.glade.h:27 - msgid "Connection" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:29 -+#: ../glade/NewPrinterWindow.glade.h:28 - msgid "Data Bits" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:30 -+#: ../glade/NewPrinterWindow.glade.h:29 - msgid "" - "Default\n" - "1200\n" -@@ -1723,14 +1720,14 @@ msgid "" - "115200" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:39 -+#: ../glade/NewPrinterWindow.glade.h:38 - msgid "" - "Default\n" - "8\n" - "7" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:42 -+#: ../glade/NewPrinterWindow.glade.h:41 - msgid "" - "Default\n" - "None\n" -@@ -1738,7 +1735,7 @@ msgid "" - "Even" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:46 -+#: ../glade/NewPrinterWindow.glade.h:45 - msgid "" - "Default\n" - "None\n" -@@ -1747,188 +1744,188 @@ msgid "" - "DTR/DSR (Hardware)" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:51 -+#: ../glade/NewPrinterWindow.glade.h:50 - #: ../glade/PrinterPropertiesDialog.glade.h:35 - msgid "Description:" - msgstr "वर्णनः" - --#: ../glade/NewPrinterWindow.glade.h:52 ../troubleshoot/DeviceListed.py:40 -+#: ../glade/NewPrinterWindow.glade.h:51 ../troubleshoot/DeviceListed.py:40 - msgid "Device URI" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:53 -+#: ../glade/NewPrinterWindow.glade.h:52 - msgid "Device description." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:54 -+#: ../glade/NewPrinterWindow.glade.h:53 - msgid "DirectJet" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:56 -+#: ../glade/NewPrinterWindow.glade.h:55 - msgid "Driver details" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:57 -+#: ../glade/NewPrinterWindow.glade.h:56 - msgid "Empty" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:58 -+#: ../glade/NewPrinterWindow.glade.h:57 - msgid "Find _Queue..." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:59 -+#: ../glade/NewPrinterWindow.glade.h:58 - msgid "Flow Control" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:60 -+#: ../glade/NewPrinterWindow.glade.h:59 - msgid "" - "For the printer you have selected there are drivers available for download." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:61 -+#: ../glade/NewPrinterWindow.glade.h:60 - msgid "Free software" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:62 -+#: ../glade/NewPrinterWindow.glade.h:61 - msgid "Graphics:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:63 -+#: ../glade/NewPrinterWindow.glade.h:62 - msgid "Host:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:64 -+#: ../glade/NewPrinterWindow.glade.h:63 - msgid "Human-readable description such as \"HP LaserJet with Duplexer\"" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:65 -+#: ../glade/NewPrinterWindow.glade.h:64 - msgid "Human-readable location such as \"Lab 1\"" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:67 -+#: ../glade/NewPrinterWindow.glade.h:66 - msgid "LPD" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:68 -+#: ../glade/NewPrinterWindow.glade.h:67 - msgid "License:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:69 -+#: ../glade/NewPrinterWindow.glade.h:68 - msgid "Line art:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:70 -+#: ../glade/NewPrinterWindow.glade.h:69 - msgid "Local Driver" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:71 -+#: ../glade/NewPrinterWindow.glade.h:70 - msgid "Make and model:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:72 -+#: ../glade/NewPrinterWindow.glade.h:71 - msgid "Manufacturer" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:73 -+#: ../glade/NewPrinterWindow.glade.h:72 - msgid "Network" - msgstr "संजाल" - --#: ../glade/NewPrinterWindow.glade.h:75 -+#: ../glade/NewPrinterWindow.glade.h:74 - msgid "No, I do not accept this license" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:76 -+#: ../glade/NewPrinterWindow.glade.h:75 - msgid "Parity" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:78 -+#: ../glade/NewPrinterWindow.glade.h:77 - msgid "Patented algorithms" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:79 -+#: ../glade/NewPrinterWindow.glade.h:78 - msgid "Photo:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:80 -+#: ../glade/NewPrinterWindow.glade.h:79 - msgid "Port number:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:81 -+#: ../glade/NewPrinterWindow.glade.h:80 - msgid "" - "PostScript Printer Description (PPD) files can often be found on the driver " - "disk that comes with the printer. For PostScript printers they are often " - "part of the Windows® driver." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:82 -+#: ../glade/NewPrinterWindow.glade.h:81 - msgid "Printer model:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:83 -+#: ../glade/NewPrinterWindow.glade.h:82 - msgid "Probe" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:84 -+#: ../glade/NewPrinterWindow.glade.h:83 - msgid "Prompt user if authentication is required" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:85 -+#: ../glade/NewPrinterWindow.glade.h:84 - msgid "Provide PPD file" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:86 -+#: ../glade/NewPrinterWindow.glade.h:85 - msgid "Queue:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:87 -+#: ../glade/NewPrinterWindow.glade.h:86 - msgid "SCSI" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:88 -+#: ../glade/NewPrinterWindow.glade.h:87 - msgid "SMB" - msgstr "SMB" - --#: ../glade/NewPrinterWindow.glade.h:89 -+#: ../glade/NewPrinterWindow.glade.h:88 - msgid "Search for a printer driver to download" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:90 -+#: ../glade/NewPrinterWindow.glade.h:89 - msgid "Searching..." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:91 -+#: ../glade/NewPrinterWindow.glade.h:90 - msgid "Select A File" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:92 -+#: ../glade/NewPrinterWindow.glade.h:91 - msgid "Select printer from database" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:93 -+#: ../glade/NewPrinterWindow.glade.h:92 - msgid "Serial" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:94 -+#: ../glade/NewPrinterWindow.glade.h:93 - msgid "Set authentication details now" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:95 -+#: ../glade/NewPrinterWindow.glade.h:94 - msgid "Short name for this printer such as \"laserjet\"" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:96 -+#: ../glade/NewPrinterWindow.glade.h:95 - msgid "Supplier:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:97 -+#: ../glade/NewPrinterWindow.glade.h:96 - msgid "Support:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:98 -+#: ../glade/NewPrinterWindow.glade.h:97 - msgid "Text:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:99 -+#: ../glade/NewPrinterWindow.glade.h:98 - msgid "" - "The foomatic printer database contains various manufacturer provided " - "PostScript Printer Description (PPD) files and also can generate PPD files " -@@ -1937,68 +1934,68 @@ msgid "" - "printer." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:100 -+#: ../glade/NewPrinterWindow.glade.h:99 - msgid "" - "These drivers do not come from your operating system supplier and will not " - "be covered by their commercial support. See the support and license terms " - "of the driver's supplier." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:101 -+#: ../glade/NewPrinterWindow.glade.h:100 - msgid "" - "This driver supports additional hardware that may be installed in the " - "printer." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:102 -+#: ../glade/NewPrinterWindow.glade.h:101 - msgid "" - "This is done by assuming that options with the same name do have the same " - "meaning. Settings of options that are not present in the new PPD will be " - "lost and options only present in the new PPD will be set to default." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:103 -+#: ../glade/NewPrinterWindow.glade.h:102 - msgid "" - "This way all current option settings will be lost. The default settings of " - "the new PPD will be used. " - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:104 -+#: ../glade/NewPrinterWindow.glade.h:103 - msgid "Try to copy the option settings over from the old PPD. " - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:105 -+#: ../glade/NewPrinterWindow.glade.h:104 - msgid "URI:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:107 -+#: ../glade/NewPrinterWindow.glade.h:106 - msgid "Use the new PPD (Postscript Printer Description) as is." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:109 -+#: ../glade/NewPrinterWindow.glade.h:108 - msgid "" - "With this choice no driver download will be performed. In the next steps a " - "locally installed driver will be selected." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:110 -+#: ../glade/NewPrinterWindow.glade.h:109 - msgid "Yes, I accept this license" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:111 -+#: ../glade/NewPrinterWindow.glade.h:110 - msgid "_Search" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:112 -+#: ../glade/NewPrinterWindow.glade.h:111 - msgid "_Verify..." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:113 -+#: ../glade/NewPrinterWindow.glade.h:112 - #: ../glade/PrinterPropertiesDialog.glade.h:128 - msgid "move left" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:114 -+#: ../glade/NewPrinterWindow.glade.h:113 - #: ../glade/PrinterPropertiesDialog.glade.h:129 - msgid "move right" - msgstr "" -@@ -2838,7 +2835,7 @@ msgstr "" - msgid "Remember to load paper of type '%s' into the printer first." - msgstr "" - --#: ../troubleshoot/PrintTestPage.py:399 -+#: ../troubleshoot/PrintTestPage.py:416 - msgid "Error submitting test page" - msgstr "" - -diff -up system-config-printer-1.1.5/po/mk.po.git-1.1.x system-config-printer-1.1.5/po/mk.po ---- system-config-printer-1.1.5/po/mk.po.git-1.1.x 2009-03-03 22:21:46.000000000 +0000 -+++ system-config-printer-1.1.5/po/mk.po 2009-03-10 17:43:31.000000000 +0000 -@@ -11,7 +11,7 @@ msgid "" - msgstr "" - "Project-Id-Version: mk\n" - "Report-Msgid-Bugs-To: https://bugzilla.redhat.com/bugzilla\n" --"POT-Creation-Date: 2009-03-02 23:22+0000\n" -+"POT-Creation-Date: 2009-03-10 16:51+0000\n" - "PO-Revision-Date: 2004-10-18 22:16+0200\n" - "Last-Translator: Arangel Angov \n" - "Language-Team: Macedonian \n" -@@ -56,12 +56,12 @@ msgstr "" - msgid "Enter IP address" - msgstr "Домаќин или IP адреса на серверот:" - --#: ../authconn.py:35 ../glade/NewPrinterWindow.glade.h:108 -+#: ../authconn.py:35 ../glade/NewPrinterWindow.glade.h:107 - #, fuzzy - msgid "Username:" - msgstr "Корисничко име:" - --#: ../authconn.py:36 ../glade/NewPrinterWindow.glade.h:77 -+#: ../authconn.py:36 ../glade/NewPrinterWindow.glade.h:76 - msgid "Password:" - msgstr "Лозинка:" - -@@ -70,7 +70,7 @@ msgstr "Лозинка:" - msgid "Domain:" - msgstr "Горна маргина (поени):" - --#: ../authconn.py:46 -+#: ../authconn.py:46 ../authconn.py:409 - #, fuzzy - msgid "Authentication" - msgstr "Автентикација" -@@ -79,46 +79,55 @@ msgstr "Автентикација" - msgid "Remember password" - msgstr "" - --#: ../authconn.py:211 ../authconn.py:232 -+#: ../authconn.py:208 -+#, python-format -+msgid "Unauthorized request (%s)" -+msgstr "" -+ -+#: ../authconn.py:209 -+msgid "You are not authorized to carry out therequested action." -+msgstr "" -+ -+#: ../authconn.py:212 ../authconn.py:233 - #, fuzzy - msgid "Operation canceled" - msgstr "Име на опција" - --#: ../authconn.py:253 -+#: ../authconn.py:250 - #, fuzzy, python-format - msgid "CUPS server error (%s)" - msgstr "Сервер:" - --#: ../authconn.py:255 ../errordialogs.py:57 --#: ../troubleshoot/PrintTestPage.py:400 -+#: ../authconn.py:252 ../errordialogs.py:56 ../errordialogs.py:70 -+#, fuzzy -+msgid "CUPS server error" -+msgstr "Сервер:" -+ -+#: ../authconn.py:261 ../errordialogs.py:57 -+#: ../troubleshoot/PrintTestPage.py:417 - #, fuzzy, python-format - msgid "There was an error during the CUPS operation: '%s'." - msgstr "Се појави грешка при обидот за печатење на тест страница." - --#: ../authconn.py:258 -+#: ../authconn.py:264 - #, fuzzy - msgid "Retry" - msgstr "Тест" - --#: ../authconn.py:379 ../authconn.py:381 ../errordialogs.py:65 ../pysmb.py:75 -+#: ../authconn.py:385 ../authconn.py:387 ../errordialogs.py:65 ../pysmb.py:75 - #: ../pysmb.py:77 - msgid "Not authorized" - msgstr "" - --#: ../authconn.py:382 ../pysmb.py:78 -+#: ../authconn.py:388 ../pysmb.py:78 - msgid "The password may be incorrect." - msgstr "" - --#: ../authconn.py:400 -+#: ../authconn.py:407 - #, fuzzy, python-format - msgid "Authentication (%s)" - msgstr "Автентикација" - --#: ../errordialogs.py:56 ../errordialogs.py:70 --#, fuzzy --msgid "CUPS server error" --msgstr "Сервер:" -- - #: ../errordialogs.py:66 - msgid "" - "The password may be incorrect, or the server may be configured to deny " -@@ -148,7 +157,7 @@ msgstr "Лозинка:" - msgid "Server error" - msgstr "Печатач: " - --#: ../errordialogs.py:82 ../system-config-printer.py:1219 -+#: ../errordialogs.py:82 ../system-config-printer.py:1223 - #, fuzzy - msgid "Not connected" - msgstr "_Локално врзан" -@@ -171,7 +180,7 @@ msgstr "" - msgid "_New Group from Selection" - msgstr "" - --#: ../GroupsPane.py:98 ../system-config-printer.py:393 -+#: ../GroupsPane.py:98 ../system-config-printer.py:397 - #, fuzzy - msgid "_Rename" - msgstr "_Отстрани" -@@ -242,7 +251,7 @@ msgid "Document" - msgstr "Коментар" - - #: ../jobviewer.py:212 ../my-default-printer.py:153 --#: ../system-config-printer.py:366 ../system-config-printer.py:1367 -+#: ../system-config-printer.py:370 ../system-config-printer.py:1371 - #: ../troubleshoot/PrintTestPage.py:84 - #, fuzzy - msgid "Printer" -@@ -281,8 +290,8 @@ msgstr "" - - #: ../jobviewer.py:386 ../jobviewer.py:451 ../jobviewer.py:452 - #: ../jobviewer.py:492 ../jobviewer.py:600 ../jobviewer.py:727 --#: ../jobviewer.py:1196 ../jobviewer.py:1222 ../system-config-printer.py:2546 --#: ../glade/NewPrinterWindow.glade.h:106 -+#: ../jobviewer.py:1196 ../jobviewer.py:1222 ../system-config-printer.py:2556 -+#: ../glade/NewPrinterWindow.glade.h:105 - #: ../troubleshoot/ChooseNetworkPrinter.py:101 - #: ../troubleshoot/ChooseNetworkPrinter.py:102 - #: ../troubleshoot/ChooseNetworkPrinter.py:105 -@@ -374,12 +383,12 @@ msgstr "" - msgid "Pending" - msgstr "Печатам" - --#: ../jobviewer.py:591 ../system-config-printer.py:186 -+#: ../jobviewer.py:591 ../system-config-printer.py:190 - #: ../troubleshoot/PrintTestPage.py:43 - msgid "Processing" - msgstr "" - --#: ../jobviewer.py:592 ../system-config-printer.py:188 -+#: ../jobviewer.py:592 ../system-config-printer.py:192 - #: ../troubleshoot/PrintTestPage.py:44 - msgid "Stopped" - msgstr "" -@@ -501,8 +510,8 @@ msgstr "Постави како _осн - msgid "_Set Default" - msgstr "_Стандардни" - --#: ../my-default-printer.py:158 ../system-config-printer.py:423 --#: ../system-config-printer.py:3660 ../troubleshoot/ChooseNetworkPrinter.py:37 -+#: ../my-default-printer.py:158 ../system-config-printer.py:427 -+#: ../system-config-printer.py:3675 ../troubleshoot/ChooseNetworkPrinter.py:37 - #: ../troubleshoot/ChoosePrinter.py:38 - #, fuzzy - msgid "Location" -@@ -536,7 +545,7 @@ msgstr "Ова е описот на пе - msgid "Authenticated" - msgstr "Автентикација" - --#: ../ppdippstr.py:50 ../system-config-printer.py:6259 -+#: ../ppdippstr.py:50 ../system-config-printer.py:6207 - msgid "None" - msgstr "Ништо" - -@@ -759,217 +768,217 @@ msgstr "" - msgid "1200 dpi, photo, black + color cartridge, photo paper" - msgstr "" - --#: ../system-config-printer.py:127 -+#: ../system-config-printer.py:131 - msgid "To do this, select System->Administration->Firewall from the main menu." - msgstr "" - --#: ../system-config-printer.py:185 -+#: ../system-config-printer.py:189 - msgid "Idle" - msgstr "" - --#: ../system-config-printer.py:187 -+#: ../system-config-printer.py:191 - msgid "Busy" - msgstr "" - --#: ../system-config-printer.py:372 ../system-config-printer.py:1373 -+#: ../system-config-printer.py:376 ../system-config-printer.py:1377 - #, fuzzy - msgid "Class" - msgstr "Алијасес" - --#: ../system-config-printer.py:399 -+#: ../system-config-printer.py:403 - #, fuzzy - msgid "Set As De_fault" - msgstr "_Стандардни" - --#: ../system-config-printer.py:403 -+#: ../system-config-printer.py:407 - #, fuzzy - msgid "_Create class" - msgstr "Jetdirect печатач" - --#: ../system-config-printer.py:405 -+#: ../system-config-printer.py:409 - #, fuzzy - msgid "View Print _Queue" - msgstr "Задача за печатење" - --#: ../system-config-printer.py:407 -+#: ../system-config-printer.py:411 - msgid "_Add to Group" - msgstr "" - --#: ../system-config-printer.py:409 -+#: ../system-config-printer.py:413 - msgid "Save Results as _Group" - msgstr "" - --#: ../system-config-printer.py:411 -+#: ../system-config-printer.py:415 - msgid "Save Filter as _Search Group" - msgstr "" - --#: ../system-config-printer.py:415 -+#: ../system-config-printer.py:419 - msgid "E_nabled" - msgstr "" - --#: ../system-config-printer.py:417 -+#: ../system-config-printer.py:421 - #, fuzzy - msgid "_Shared" - msgstr "Споделено" - --#: ../system-config-printer.py:421 ../troubleshoot/ChooseNetworkPrinter.py:35 -+#: ../system-config-printer.py:425 ../troubleshoot/ChooseNetworkPrinter.py:35 - #: ../troubleshoot/ChoosePrinter.py:36 ../troubleshoot/DeviceListed.py:36 - msgid "Name" - msgstr "Име" - --#: ../system-config-printer.py:422 -+#: ../system-config-printer.py:426 - #, fuzzy - msgid "Description" - msgstr "Опис" - --#: ../system-config-printer.py:424 -+#: ../system-config-printer.py:428 - msgid "Manufacturer / Model" - msgstr "" - - #. Printer state reasons list --#: ../system-config-printer.py:499 -+#: ../system-config-printer.py:503 - msgid "Message" - msgstr "" - --#: ../system-config-printer.py:534 -+#: ../system-config-printer.py:538 - msgid "Problems?" - msgstr "" - --#: ../system-config-printer.py:637 ../system-config-printer.py:639 -+#: ../system-config-printer.py:641 ../system-config-printer.py:643 - msgid "Members of this class" - msgstr "" - --#: ../system-config-printer.py:638 ../system-config-printer.py:640 -+#: ../system-config-printer.py:642 ../system-config-printer.py:644 - msgid "Others" - msgstr "" - --#: ../system-config-printer.py:641 -+#: ../system-config-printer.py:645 - #, fuzzy - msgid "Devices" - msgstr "Уред" - --#: ../system-config-printer.py:642 -+#: ../system-config-printer.py:646 - #, fuzzy - msgid "Connections" - msgstr "Коментар" - --#: ../system-config-printer.py:643 -+#: ../system-config-printer.py:647 - msgid "Makes" - msgstr "" - --#: ../system-config-printer.py:644 -+#: ../system-config-printer.py:648 - #, fuzzy - msgid "Models" - msgstr "Модел" - --#: ../system-config-printer.py:645 -+#: ../system-config-printer.py:649 - #, fuzzy - msgid "Drivers" - msgstr "Драјвер" - --#: ../system-config-printer.py:646 ../glade/NewPrinterWindow.glade.h:55 -+#: ../system-config-printer.py:650 ../glade/NewPrinterWindow.glade.h:54 - #, fuzzy - msgid "Downloadable Drivers" - msgstr "Достапни драјвери:" - --#: ../system-config-printer.py:647 -+#: ../system-config-printer.py:651 - #, fuzzy - msgid "Users" - msgstr "Корисник" - --#: ../system-config-printer.py:682 -+#: ../system-config-printer.py:686 - msgid "Automatic rotation" - msgstr "" - --#: ../system-config-printer.py:989 -+#: ../system-config-printer.py:993 - #, fuzzy, python-format - msgid "Printer Properties - '%s' on %s" - msgstr "Опции за филтер" - - #. The Conflict button was pressed. --#: ../system-config-printer.py:996 -+#: ../system-config-printer.py:1000 - msgid "" - "There are conflicting options.\n" - "Changes can only be applied after\n" - "these conflicts are resolved." - msgstr "" - --#: ../system-config-printer.py:1214 -+#: ../system-config-printer.py:1218 - #, python-format - msgid "Printer configuration - %s" - msgstr "Конфигурација на печатачот - %s" - --#: ../system-config-printer.py:1217 -+#: ../system-config-printer.py:1221 - #, python-format - msgid "Connected to %s" - msgstr "" - - #. Update our copy of the printer's settings. --#: ../system-config-printer.py:1257 ../system-config-printer.py:2042 -+#: ../system-config-printer.py:1261 ../system-config-printer.py:2046 - msgid "obtaining queue details" - msgstr "" - --#: ../system-config-printer.py:1295 -+#: ../system-config-printer.py:1299 - msgid "Remove from Group" - msgstr "" - --#: ../system-config-printer.py:1361 -+#: ../system-config-printer.py:1365 - #, fuzzy - msgid "Network printer (discovered)" - msgstr "Печатач:" - --#: ../system-config-printer.py:1364 -+#: ../system-config-printer.py:1368 - msgid "Network class (discovered)" - msgstr "" - --#: ../system-config-printer.py:1370 ../system-config-printer.py:5524 --#: ../system-config-printer.py:5594 ../system-config-printer.py:5596 -+#: ../system-config-printer.py:1374 ../system-config-printer.py:5519 -+#: ../system-config-printer.py:5589 ../system-config-printer.py:5591 - msgid "Fax" - msgstr "" - --#: ../system-config-printer.py:1376 ../system-config-printer.py:1382 -+#: ../system-config-printer.py:1380 ../system-config-printer.py:1386 - #: ../troubleshoot/LocalOrRemote.py:30 - #, fuzzy - msgid "Network printer" - msgstr "Печатач:" - --#: ../system-config-printer.py:1379 -+#: ../system-config-printer.py:1383 - #, fuzzy - msgid "Network print share" - msgstr "Печатач:" - --#: ../system-config-printer.py:1508 ../glade/ConnectingDialog.glade.h:2 -+#: ../system-config-printer.py:1512 ../glade/ConnectingDialog.glade.h:2 - #, no-c-format, python-format - msgid "Opening connection to %s" - msgstr "" - --#: ../system-config-printer.py:1887 -+#: ../system-config-printer.py:1891 - msgid "Installable Options" - msgstr "" - --#: ../system-config-printer.py:1888 -+#: ../system-config-printer.py:1892 - #: ../glade/PrinterPropertiesDialog.glade.h:109 - #, fuzzy - msgid "Printer Options" - msgstr "Опции за филтер" - --#: ../system-config-printer.py:1924 -+#: ../system-config-printer.py:1928 - #, python-format - msgid "modifying class %s" - msgstr "" - --#: ../system-config-printer.py:1926 ../system-config-printer.py:3019 --#: ../system-config-printer.py:3044 ../system-config-printer.py:6547 --#: ../system-config-printer.py:6559 ../system-config-printer.py:6581 -+#: ../system-config-printer.py:1930 ../system-config-printer.py:3037 -+#: ../system-config-printer.py:3062 ../system-config-printer.py:6495 -+#: ../system-config-printer.py:6507 ../system-config-printer.py:6529 - #, fuzzy, python-format - msgid "modifying printer %s" - msgstr "Додади нова задача за печатење" - --#: ../system-config-printer.py:1941 -+#: ../system-config-printer.py:1945 - msgid "This will delete this class!" - msgstr "" - --#: ../system-config-printer.py:1942 -+#: ../system-config-printer.py:1946 - msgid "Proceed anyway?" - msgstr "" - -@@ -977,72 +986,72 @@ msgstr "" - #. but we have never fetched the server settings to see whether - #. the server is publishing shared printers. Fetch the settings - #. now so that we can update the "not published" label if necessary. --#: ../system-config-printer.py:2030 ../system-config-printer.py:3203 -+#: ../system-config-printer.py:2034 ../system-config-printer.py:3221 - #, fuzzy - msgid "fetching server settings" - msgstr "Опции за драјверот" - --#: ../system-config-printer.py:2100 -+#: ../system-config-printer.py:2104 - #, fuzzy - msgid "Set Default Printer" - msgstr "Ова е описот на печатачот." - --#: ../system-config-printer.py:2102 -+#: ../system-config-printer.py:2106 - #, fuzzy - msgid "Do you want to set this as the system-wide default printer?" - msgstr "" - "Дали сакате да ги зачувате промените\n" - "кои што ги направивте на Вашата конфигурација за печатач?" - --#: ../system-config-printer.py:2104 -+#: ../system-config-printer.py:2108 - #, fuzzy - msgid "Set as the _system-wide default printer" - msgstr "Ова е описот на печатачот." - --#: ../system-config-printer.py:2106 -+#: ../system-config-printer.py:2110 - msgid "_Clear my personal default setting" - msgstr "" - --#: ../system-config-printer.py:2107 -+#: ../system-config-printer.py:2111 - #, fuzzy - msgid "Set as my _personal default printer" - msgstr "Ова е описот на печатачот." - --#: ../system-config-printer.py:2112 -+#: ../system-config-printer.py:2116 - #, fuzzy - msgid "setting default printer" - msgstr "Ова е описот на печатачот." - --#: ../system-config-printer.py:2169 -+#: ../system-config-printer.py:2173 - #, fuzzy - msgid "printing test page" - msgstr "Забелешки од печатачот:" - --#: ../system-config-printer.py:2182 ../system-config-printer.py:2217 --#: ../system-config-printer.py:5418 -+#: ../system-config-printer.py:2186 ../system-config-printer.py:2221 -+#: ../system-config-printer.py:5413 - msgid "Not possible" - msgstr "" - --#: ../system-config-printer.py:2183 ../system-config-printer.py:2218 -+#: ../system-config-printer.py:2187 ../system-config-printer.py:2222 - msgid "" - "The remote server did not accept the print job, most likely because the " - "printer is not shared." - msgstr "" - --#: ../system-config-printer.py:2195 ../system-config-printer.py:2210 -+#: ../system-config-printer.py:2199 ../system-config-printer.py:2214 - msgid "Submitted" - msgstr "" - --#: ../system-config-printer.py:2196 -+#: ../system-config-printer.py:2200 - #, python-format - msgid "Test page submitted as job %d" - msgstr "" - --#: ../system-config-printer.py:2203 -+#: ../system-config-printer.py:2207 - msgid "sending maintenance command" - msgstr "" - --#: ../system-config-printer.py:2211 -+#: ../system-config-printer.py:2215 - #, python-format - msgid "Maintenance command submitted as job %d" - msgstr "" -@@ -1050,11 +1059,11 @@ msgstr "" - #. The underlying cupsGetPPD2() function returned NULL without - #. setting an IPP error, so it'll be something like a failed - #. connection. --#: ../system-config-printer.py:2285 ../system-config-printer.py:2381 -+#: ../system-config-printer.py:2289 ../system-config-printer.py:2385 - msgid "Error" - msgstr "Грешка" - --#: ../system-config-printer.py:2286 -+#: ../system-config-printer.py:2290 - #, fuzzy - msgid "There was a problem connecting to the CUPS server." - msgstr "" -@@ -1062,68 +1071,68 @@ msgstr "" - "до '%s' задачата:\n" - "\n" - --#: ../system-config-printer.py:2382 -+#: ../system-config-printer.py:2386 - #, python-format - msgid "Option '%s' has value '%s' and cannot be edited." - msgstr "" - --#: ../system-config-printer.py:2466 -+#: ../system-config-printer.py:2476 - msgid "Marker levels are not reported for this printer." - msgstr "" - --#: ../system-config-printer.py:2763 -+#: ../system-config-printer.py:2773 - #, fuzzy - msgid "Cannot Rename" - msgstr "_Отстрани" - --#: ../system-config-printer.py:2764 -+#: ../system-config-printer.py:2774 - #, fuzzy - msgid "There are queued jobs." - msgstr "Нема достапни опции за овој драјвер." - --#: ../system-config-printer.py:2822 -+#: ../system-config-printer.py:2840 - #, fuzzy - msgid "renaming printer" - msgstr "Додади нова задача за печатење" - - #. for classes make sure all members - #. will get added --#: ../system-config-printer.py:2907 -+#: ../system-config-printer.py:2925 - #, fuzzy - msgid "copying printer" - msgstr "Додади нова задача за печатење" - --#: ../system-config-printer.py:2971 -+#: ../system-config-printer.py:2989 - #, fuzzy, python-format - msgid "Really delete class '%s'?" - msgstr "Сигурно да избришам \"%s\"?" - --#: ../system-config-printer.py:2973 -+#: ../system-config-printer.py:2991 - #, fuzzy, python-format - msgid "Really delete printer '%s'?" - msgstr "Сигурно да избришам \"%s\"?" - --#: ../system-config-printer.py:2975 -+#: ../system-config-printer.py:2993 - #, fuzzy - msgid "Really delete selected destinations?" - msgstr "Сигурно да избришам \"%s\"?" - --#: ../system-config-printer.py:2996 -+#: ../system-config-printer.py:3014 - #, fuzzy, python-format - msgid "deleting printer %s" - msgstr "Додади нова задача за печатење" - --#: ../system-config-printer.py:3070 -+#: ../system-config-printer.py:3088 - msgid "Publish Shared Printers" - msgstr "" - --#: ../system-config-printer.py:3071 -+#: ../system-config-printer.py:3089 - msgid "" - "Shared printers are not available to other people unless the 'Publish shared " - "printers' option is enabled in the server settings." - msgstr "" - --#: ../system-config-printer.py:3264 -+#: ../system-config-printer.py:3282 - #, fuzzy - msgid "modifying server settings" - msgstr "Опции за драјверот" -@@ -1134,109 +1143,109 @@ msgstr "Опции за драјверо - #. be unblocked. Unfortunately, this is not yet possible - #. (bug #440469). However, we can display a dialog to suggest - #. that now might be a good time to review the firewall settings. --#: ../system-config-printer.py:3289 -+#: ../system-config-printer.py:3307 - #, fuzzy - msgid "Review Firewall" - msgstr "Уред за датотека" - --#: ../system-config-printer.py:3290 -+#: ../system-config-printer.py:3308 - msgid "" - "You may need to adjust the firewall to allow network printing to this " - "computer." - msgstr "" - --#: ../system-config-printer.py:3623 -+#: ../system-config-printer.py:3638 - msgid "Browsing not available (pysmbc not installed)" - msgstr "" - - #. SMB list columns --#: ../system-config-printer.py:3629 -+#: ../system-config-printer.py:3644 - msgid "Share" - msgstr "Делење" - --#: ../system-config-printer.py:3635 -+#: ../system-config-printer.py:3650 - msgid "Comment" - msgstr "Коментар" - - #. IPP list columns --#: ../system-config-printer.py:3654 -+#: ../system-config-printer.py:3669 - msgid "Queue" - msgstr "Задача" - --#: ../system-config-printer.py:3668 -+#: ../system-config-printer.py:3683 - msgid "" - "PostScript Printer Description files (*.ppd, *.PPD, *.ppd.gz, *.PPD.gz, *." - "PPD.GZ)" - msgstr "" - --#: ../system-config-printer.py:3677 -+#: ../system-config-printer.py:3692 - msgid "All files (*)" - msgstr "" - --#: ../system-config-printer.py:3713 ../system-config-printer.py:5970 --#: ../system-config-printer.py:6008 ../applet.py:124 -+#: ../system-config-printer.py:3728 ../system-config-printer.py:5918 -+#: ../system-config-printer.py:5956 ../applet.py:124 - #, fuzzy - msgid "Search" - msgstr "Предупредување" - --#: ../system-config-printer.py:3736 ../system-config-printer.py:3760 --#: ../glade/NewPrinterWindow.glade.h:74 -+#: ../system-config-printer.py:3751 ../system-config-printer.py:3775 -+#: ../glade/NewPrinterWindow.glade.h:73 - #, fuzzy - msgid "New Printer" - msgstr "Печатач:" - --#: ../system-config-printer.py:3747 -+#: ../system-config-printer.py:3762 - msgid "New Class" - msgstr "" - --#: ../system-config-printer.py:3752 -+#: ../system-config-printer.py:3767 - msgid "Change Device URI" - msgstr "" - --#: ../system-config-printer.py:3758 -+#: ../system-config-printer.py:3773 - #, fuzzy - msgid "Change Driver" - msgstr "Измени тип" - --#: ../system-config-printer.py:3927 ../system-config-printer.py:3993 --#: ../system-config-printer.py:4289 ../system-config-printer.py:4487 --#: ../system-config-printer.py:5772 ../system-config-printer.py:5995 -+#: ../system-config-printer.py:3942 ../system-config-printer.py:4008 -+#: ../system-config-printer.py:4304 ../system-config-printer.py:4502 -+#: ../system-config-printer.py:5762 ../system-config-printer.py:5943 - #, fuzzy - msgid "Searching" - msgstr "Предупредување" - --#: ../system-config-printer.py:3928 -+#: ../system-config-printer.py:3943 - #, fuzzy - msgid "Searching for downloadable drivers" - msgstr "Својства на делење" - --#: ../system-config-printer.py:3994 ../system-config-printer.py:4290 -+#: ../system-config-printer.py:4009 ../system-config-printer.py:4305 - #, fuzzy - msgid "Searching for drivers" - msgstr "Својства на делење" - --#: ../system-config-printer.py:4488 ../system-config-printer.py:5773 -+#: ../system-config-printer.py:4503 ../system-config-printer.py:5763 - #, fuzzy - msgid "Searching for printers" - msgstr "Својства на делење" - --#: ../system-config-printer.py:4497 -+#: ../system-config-printer.py:4512 - #, fuzzy - msgid "fetching device list" - msgstr "Опции за драјверот" - - #. Tell the user why he needs the plugin --#: ../system-config-printer.py:4579 -+#: ../system-config-printer.py:4594 - msgid "For this printer a proprietary driver plugin from HP is available.\n" - msgstr "" - --#: ../system-config-printer.py:4582 -+#: ../system-config-printer.py:4597 - msgid "" - "The installation of the plugin is required for your printer to work.\n" - "\n" - msgstr "" - --#: ../system-config-printer.py:4585 -+#: ../system-config-printer.py:4600 - msgid "" - "Installing the plugin is optional, it completes or enhances the " - "functionality\n" -@@ -1244,141 +1253,137 @@ msgid "" - "\n" - msgstr "" - --#: ../system-config-printer.py:4589 -+#: ../system-config-printer.py:4604 - msgid "The plugin provides the following features:\n" - msgstr "" - --#: ../system-config-printer.py:4592 -+#: ../system-config-printer.py:4607 - msgid " - Printing support\n" - msgstr "" - --#: ../system-config-printer.py:4595 -+#: ../system-config-printer.py:4610 - msgid " - Faster printing\n" - msgstr "" - --#: ../system-config-printer.py:4598 -+#: ../system-config-printer.py:4613 - msgid " - Better printout quality\n" - msgstr "" - --#: ../system-config-printer.py:4601 -+#: ../system-config-printer.py:4616 - msgid " - Extra printing features\n" - msgstr "" - --#: ../system-config-printer.py:4604 -+#: ../system-config-printer.py:4619 - msgid " - Scanning support\n" - msgstr "" - --#: ../system-config-printer.py:4607 -+#: ../system-config-printer.py:4622 - msgid " - Faster scanning\n" - msgstr "" - --#: ../system-config-printer.py:4610 -+#: ../system-config-printer.py:4625 - msgid " - Better scanning image quality\n" - msgstr "" - --#: ../system-config-printer.py:4613 -+#: ../system-config-printer.py:4628 - msgid " - Faxing support\n" - msgstr "" - --#: ../system-config-printer.py:4616 -+#: ../system-config-printer.py:4631 - msgid " - Extra fax features\n" - msgstr "" - --#: ../system-config-printer.py:4619 -+#: ../system-config-printer.py:4634 - msgid " - Better Input/Output support\n" - msgstr "" - --#: ../system-config-printer.py:4622 -+#: ../system-config-printer.py:4637 - msgid " - Extra user interface features\n" - msgstr "" - --#: ../system-config-printer.py:4625 -+#: ../system-config-printer.py:4640 - msgid " - Other extra features\n" - msgstr "" - --#: ../system-config-printer.py:4630 -+#: ../system-config-printer.py:4645 - #, fuzzy - msgid "Install plugin" - msgstr "Опции за филтер" - --#: ../system-config-printer.py:4631 -+#: ../system-config-printer.py:4646 - #, fuzzy - msgid "Do not set up printer" - msgstr "Печатач:" - --#: ../system-config-printer.py:4632 -+#: ../system-config-printer.py:4647 - msgid "Set up without plugin" - msgstr "" - --#: ../system-config-printer.py:4634 ../troubleshoot/PrintTestPage.py:118 -+#: ../system-config-printer.py:4649 ../troubleshoot/PrintTestPage.py:118 - msgid "Yes" - msgstr "Да" - --#: ../system-config-printer.py:4635 ../troubleshoot/PrintTestPage.py:119 -+#: ../system-config-printer.py:4650 ../troubleshoot/PrintTestPage.py:119 - msgid "No" - msgstr "Не" - --#: ../system-config-printer.py:4809 ../system-config-printer.py:4813 -+#: ../system-config-printer.py:4824 ../system-config-printer.py:4828 - msgid " (Current)" - msgstr "" - --#: ../system-config-printer.py:4845 --msgid "HP Printer (HPLIP)" --msgstr "" -- --#: ../system-config-printer.py:4886 -+#: ../system-config-printer.py:4881 - msgid "Other" - msgstr "" - - #. device-info - #. PhysicalDevice obj - #. Separator? --#: ../system-config-printer.py:4902 -+#: ../system-config-printer.py:4897 - #, fuzzy - msgid "Network Printer" - msgstr "Печатач:" - --#: ../system-config-printer.py:4906 -+#: ../system-config-printer.py:4901 - #, fuzzy - msgid "Find Network Printer" - msgstr "Печатач:" - --#: ../system-config-printer.py:4979 ../system-config-printer.py:5376 -+#: ../system-config-printer.py:4974 ../system-config-printer.py:5371 - msgid "Scanning..." - msgstr "" - --#: ../system-config-printer.py:5034 ../system-config-printer.py:5798 -+#: ../system-config-printer.py:5029 - #, fuzzy - msgid "No Print Shares" - msgstr "Печатач:" - --#: ../system-config-printer.py:5035 -+#: ../system-config-printer.py:5030 - msgid "" - "There were no print shares found. Please check that the Samba service is " - "marked as trusted in your firewall configuration." - msgstr "" - --#: ../system-config-printer.py:5296 ../system-config-printer.py:5357 -+#: ../system-config-printer.py:5291 ../system-config-printer.py:5352 - msgid "Print Share Verified" - msgstr "" - --#: ../system-config-printer.py:5297 ../system-config-printer.py:5358 -+#: ../system-config-printer.py:5292 ../system-config-printer.py:5353 - msgid "This print share is accessible." - msgstr "" - --#: ../system-config-printer.py:5302 ../system-config-printer.py:5362 -+#: ../system-config-printer.py:5297 ../system-config-printer.py:5357 - msgid "This print share is not accessible." - msgstr "" - --#: ../system-config-printer.py:5305 -+#: ../system-config-printer.py:5300 - msgid "Print Share Inaccessible" - msgstr "" - --#: ../system-config-printer.py:5361 -+#: ../system-config-printer.py:5356 - msgid "Inaccessible" - msgstr "" - --#: ../system-config-printer.py:5419 -+#: ../system-config-printer.py:5414 - #, fuzzy, python-format - msgid "It is not possible to obtain a list of queues from '%s'." - msgstr "" -@@ -1386,158 +1391,154 @@ msgstr "" - "до '%s' задачата:\n" - "\n" - --#: ../system-config-printer.py:5421 -+#: ../system-config-printer.py:5416 - msgid "" - "Obtaining a list of queues is a CUPS extension to IPP. Network printers do " - "not support it." - msgstr "" - --#: ../system-config-printer.py:5424 -+#: ../system-config-printer.py:5419 - #, fuzzy - msgid "No queues" - msgstr "_Нова задача" - --#: ../system-config-printer.py:5425 -+#: ../system-config-printer.py:5420 - #, fuzzy - msgid "There are no queues available." - msgstr "Нема достапни опции за овој драјвер." - --#: ../system-config-printer.py:5516 -+#: ../system-config-printer.py:5511 - msgid "Parallel Port" - msgstr "" - --#: ../system-config-printer.py:5518 -+#: ../system-config-printer.py:5513 - #, fuzzy - msgid "Serial Port" - msgstr "Општо" - --#: ../system-config-printer.py:5520 -+#: ../system-config-printer.py:5515 - msgid "USB" - msgstr "" - --#: ../system-config-printer.py:5522 ../system-config-printer.py:5525 -+#: ../system-config-printer.py:5517 ../system-config-printer.py:5520 - msgid "HP Linux Imaging and Printing (HPLIP)" - msgstr "" - --#: ../system-config-printer.py:5527 -+#: ../system-config-printer.py:5522 - msgid "Hardware Abstraction Layer (HAL)" - msgstr "" - --#: ../system-config-printer.py:5529 -+#: ../system-config-printer.py:5524 - #, fuzzy - msgid "AppSocket/HP JetDirect" - msgstr "Мрежен _JetDirect" - --#: ../system-config-printer.py:5538 -+#: ../system-config-printer.py:5533 - #, python-format - msgid "LPD/LPR queue '%s'" - msgstr "" - --#: ../system-config-printer.py:5540 -+#: ../system-config-printer.py:5535 - msgid "LPD/LPR queue" - msgstr "" - --#: ../system-config-printer.py:5543 -+#: ../system-config-printer.py:5538 - #, fuzzy - msgid "Windows Printer via SAMBA" - msgstr "Windows податоци (SMB) за печатачот" - --#: ../system-config-printer.py:5545 ../glade/NewPrinterWindow.glade.h:66 -+#: ../system-config-printer.py:5540 ../glade/NewPrinterWindow.glade.h:65 - #, fuzzy - msgid "IPP" - msgstr "IP:" - --#: ../system-config-printer.py:5547 -+#: ../system-config-printer.py:5542 - msgid "HTTP" - msgstr "" - --#: ../system-config-printer.py:5632 -+#: ../system-config-printer.py:5624 - msgid "A printer connected to the parallel port." - msgstr "" - --#: ../system-config-printer.py:5634 -+#: ../system-config-printer.py:5626 - msgid "A printer connected to a USB port." - msgstr "" - --#: ../system-config-printer.py:5636 -+#: ../system-config-printer.py:5628 - msgid "" - "HPLIP software driving a printer, or the printer function of a multi-" - "function device." - msgstr "" - --#: ../system-config-printer.py:5639 -+#: ../system-config-printer.py:5631 - msgid "" - "HPLIP software driving a fax machine, or the fax function of a multi-" - "function device." - msgstr "" - --#: ../system-config-printer.py:5642 -+#: ../system-config-printer.py:5634 - msgid "Local printer detected by the Hardware Abstraction Layer (HAL)." - msgstr "" - --#: ../system-config-printer.py:5799 --msgid "HPLIP cannot find the device." --msgstr "" -- --#: ../system-config-printer.py:5881 -+#: ../system-config-printer.py:5831 - msgid "No printer was found at that address." - msgstr "" - --#: ../system-config-printer.py:6020 -+#: ../system-config-printer.py:5968 - #, fuzzy - msgid "-- Select from search results --" - msgstr "Мора да одберете модел на печатач." - --#: ../system-config-printer.py:6022 -+#: ../system-config-printer.py:5970 - msgid "-- No matches found --" - msgstr "" - --#: ../system-config-printer.py:6203 -+#: ../system-config-printer.py:6151 - #, fuzzy - msgid " (recommended)" - msgstr "" - "(препорачливиот\n" - "драјвер е %s)" - --#: ../system-config-printer.py:6217 -+#: ../system-config-printer.py:6165 - msgid "This PPD is generated by foomatic." - msgstr "" - --#: ../system-config-printer.py:6241 -+#: ../system-config-printer.py:6189 - #, fuzzy - msgid "OpenPrinting" - msgstr "Печатам" - --#: ../system-config-printer.py:6252 -+#: ../system-config-printer.py:6200 - msgid "Distributable" - msgstr "" - --#: ../system-config-printer.py:6293 -+#: ../system-config-printer.py:6241 - msgid ", " - msgstr "" - --#: ../system-config-printer.py:6298 -+#: ../system-config-printer.py:6246 - #, python-format - msgid "" - "\n" - "(%s)" - msgstr "" - --#: ../system-config-printer.py:6303 -+#: ../system-config-printer.py:6251 - msgid "No support contacts known" - msgstr "" - --#: ../system-config-printer.py:6307 ../system-config-printer.py:6320 -+#: ../system-config-printer.py:6255 ../system-config-printer.py:6268 - #, fuzzy - msgid "Not specified." - msgstr "Морате да одредите уред." - - #. Foomatic database problem of some sort. --#: ../system-config-printer.py:6360 -+#: ../system-config-printer.py:6308 - msgid "Database error" - msgstr "" - --#: ../system-config-printer.py:6361 -+#: ../system-config-printer.py:6309 - #, python-format - msgid "The '%s' driver cannot be used with printer '%s %s'." - msgstr "" -@@ -1545,65 +1546,65 @@ msgstr "" - #. This printer references some XML that is not - #. installed by default. Point the user at the - #. package they need to install. --#: ../system-config-printer.py:6371 -+#: ../system-config-printer.py:6319 - #, python-format - msgid "You will need to install the '%s' package in order to use this driver." - msgstr "" - - #. This error came from trying to open the PPD file. --#: ../system-config-printer.py:6378 -+#: ../system-config-printer.py:6326 - msgid "PPD error" - msgstr "" - --#: ../system-config-printer.py:6380 -+#: ../system-config-printer.py:6328 - msgid "Failed to read PPD file. Possible reason follows:" - msgstr "" - - #. Failed to get PPD downloaded from OpenPrinting XXX --#: ../system-config-printer.py:6397 -+#: ../system-config-printer.py:6345 - #, fuzzy - msgid "Downloadable drivers" - msgstr "Достапни драјвери:" - --#: ../system-config-printer.py:6398 -+#: ../system-config-printer.py:6346 - msgid "Failed to download PPD." - msgstr "" - --#: ../system-config-printer.py:6405 -+#: ../system-config-printer.py:6353 - #, fuzzy - msgid "fetching PPD" - msgstr "Измени тип" - --#: ../system-config-printer.py:6434 ../system-config-printer.py:6472 -+#: ../system-config-printer.py:6382 ../system-config-printer.py:6420 - msgid "No Installable Options" - msgstr "" - --#: ../system-config-printer.py:6520 -+#: ../system-config-printer.py:6468 - #, fuzzy, python-format - msgid "adding printer %s" - msgstr "Додади нова задача за печатење" - --#: ../system-config-printer.py:6669 -+#: ../system-config-printer.py:6617 - #, fuzzy - msgid "Would you like to print a test page?" - msgstr "Дали сакате да испечатите тест страница?" - --#: ../system-config-printer.py:6722 -+#: ../system-config-printer.py:6670 - #, fuzzy - msgid "Install driver" - msgstr "Драјвер за печатачот" - --#: ../system-config-printer.py:6723 ../troubleshoot/CheckPPDSanity.py:131 -+#: ../system-config-printer.py:6671 ../troubleshoot/CheckPPDSanity.py:131 - #, python-format - msgid "Printer '%s' requires the %s package but it is not currently installed." - msgstr "" - --#: ../system-config-printer.py:6739 -+#: ../system-config-printer.py:6687 - #, fuzzy - msgid "Missing driver" - msgstr "Драјвер за печатачот" - --#: ../system-config-printer.py:6740 -+#: ../system-config-printer.py:6688 - #, python-format - msgid "" - "Printer '%s' requires the '%s' program but it is not currently installed. " -@@ -1732,116 +1733,111 @@ msgstr "Уред печатач" - - #: ../glade/NewPrinterWindow.glade.h:5 - #, fuzzy --msgid "HP Printer (HPLIP) via network" --msgstr "Модел на печатачот" -- --#: ../glade/NewPrinterWindow.glade.h:6 --#, fuzzy - msgid "IPP Printer" - msgstr "Модел на печатачот" - --#: ../glade/NewPrinterWindow.glade.h:7 -+#: ../glade/NewPrinterWindow.glade.h:6 - #, fuzzy - msgid "License Terms" - msgstr "Модел на печатачот" - --#: ../glade/NewPrinterWindow.glade.h:8 -+#: ../glade/NewPrinterWindow.glade.h:7 - msgid "Location of the LPD network printer" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:9 -+#: ../glade/NewPrinterWindow.glade.h:8 - msgid "Location of the network printer" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:10 -+#: ../glade/NewPrinterWindow.glade.h:9 - msgid "Location (optional)" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:11 -+#: ../glade/NewPrinterWindow.glade.h:10 - #, fuzzy - msgid "Network Printer" - msgstr "Печатач:" - --#: ../glade/NewPrinterWindow.glade.h:12 -+#: ../glade/NewPrinterWindow.glade.h:11 - #, fuzzy - msgid "Note" - msgstr "Модел на печатачот" - --#: ../glade/NewPrinterWindow.glade.h:13 -+#: ../glade/NewPrinterWindow.glade.h:12 - msgid "Output Quality" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:14 -+#: ../glade/NewPrinterWindow.glade.h:13 - #, fuzzy - msgid "Printer Name" - msgstr "Модел на печатачот" - --#: ../glade/NewPrinterWindow.glade.h:15 -+#: ../glade/NewPrinterWindow.glade.h:14 - #, fuzzy - msgid "SMB Printer" - msgstr "Модел на печатачот" - --#: ../glade/NewPrinterWindow.glade.h:16 -+#: ../glade/NewPrinterWindow.glade.h:15 - #, fuzzy - msgid "Select Driver" - msgstr "Модел на печатачот" - --#: ../glade/NewPrinterWindow.glade.h:17 -+#: ../glade/NewPrinterWindow.glade.h:16 - msgid "Settings of the serial port" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:18 -+#: ../glade/NewPrinterWindow.glade.h:17 - msgid "smb://[workgroup/]server[:port]/printer" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:19 -+#: ../glade/NewPrinterWindow.glade.h:18 - msgid "Choose Class Members" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:20 -+#: ../glade/NewPrinterWindow.glade.h:19 - msgid "Choose Driver" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:21 -+#: ../glade/NewPrinterWindow.glade.h:20 - msgid "Describe Printer" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:22 -+#: ../glade/NewPrinterWindow.glade.h:21 - msgid "Existing Settings" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:23 -+#: ../glade/NewPrinterWindow.glade.h:22 - msgid "Installable Options" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:24 -+#: ../glade/NewPrinterWindow.glade.h:23 - msgid "Select Device" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:25 -+#: ../glade/NewPrinterWindow.glade.h:24 - msgid "Baud Rate" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:26 -+#: ../glade/NewPrinterWindow.glade.h:25 - msgid "Browse..." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:27 -+#: ../glade/NewPrinterWindow.glade.h:26 - #, fuzzy - msgid "Comments..." - msgstr "Коментар" - --#: ../glade/NewPrinterWindow.glade.h:28 -+#: ../glade/NewPrinterWindow.glade.h:27 - #, fuzzy - msgid "Connection" - msgstr "_Дејствие" - --#: ../glade/NewPrinterWindow.glade.h:29 -+#: ../glade/NewPrinterWindow.glade.h:28 - #, fuzzy - msgid "Data Bits" - msgstr "Детали" - --#: ../glade/NewPrinterWindow.glade.h:30 -+#: ../glade/NewPrinterWindow.glade.h:29 - msgid "" - "Default\n" - "1200\n" -@@ -1854,7 +1850,7 @@ msgid "" - "115200" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:39 -+#: ../glade/NewPrinterWindow.glade.h:38 - #, fuzzy - msgid "" - "Default\n" -@@ -1862,7 +1858,7 @@ msgid "" - "7" - msgstr "Стандардно" - --#: ../glade/NewPrinterWindow.glade.h:42 -+#: ../glade/NewPrinterWindow.glade.h:41 - msgid "" - "Default\n" - "None\n" -@@ -1870,7 +1866,7 @@ msgid "" - "Even" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:46 -+#: ../glade/NewPrinterWindow.glade.h:45 - msgid "" - "Default\n" - "None\n" -@@ -1879,205 +1875,205 @@ msgid "" - "DTR/DSR (Hardware)" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:51 -+#: ../glade/NewPrinterWindow.glade.h:50 - #: ../glade/PrinterPropertiesDialog.glade.h:35 - #, fuzzy - msgid "Description:" - msgstr "Опис" - --#: ../glade/NewPrinterWindow.glade.h:52 ../troubleshoot/DeviceListed.py:40 -+#: ../glade/NewPrinterWindow.glade.h:51 ../troubleshoot/DeviceListed.py:40 - #, fuzzy - msgid "Device URI" - msgstr "Уред: " - --#: ../glade/NewPrinterWindow.glade.h:53 -+#: ../glade/NewPrinterWindow.glade.h:52 - #, fuzzy - msgid "Device description." - msgstr "Опис" - --#: ../glade/NewPrinterWindow.glade.h:54 -+#: ../glade/NewPrinterWindow.glade.h:53 - msgid "DirectJet" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:56 -+#: ../glade/NewPrinterWindow.glade.h:55 - #, fuzzy - msgid "Driver details" - msgstr "Драјвер" - --#: ../glade/NewPrinterWindow.glade.h:57 -+#: ../glade/NewPrinterWindow.glade.h:56 - msgid "Empty" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:58 -+#: ../glade/NewPrinterWindow.glade.h:57 - msgid "Find _Queue..." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:59 -+#: ../glade/NewPrinterWindow.glade.h:58 - msgid "Flow Control" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:60 -+#: ../glade/NewPrinterWindow.glade.h:59 - msgid "" - "For the printer you have selected there are drivers available for download." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:61 -+#: ../glade/NewPrinterWindow.glade.h:60 - msgid "Free software" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:62 -+#: ../glade/NewPrinterWindow.glade.h:61 - msgid "Graphics:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:63 -+#: ../glade/NewPrinterWindow.glade.h:62 - #, fuzzy - msgid "Host:" - msgstr "IP на хост" - --#: ../glade/NewPrinterWindow.glade.h:64 -+#: ../glade/NewPrinterWindow.glade.h:63 - msgid "Human-readable description such as \"HP LaserJet with Duplexer\"" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:65 -+#: ../glade/NewPrinterWindow.glade.h:64 - msgid "Human-readable location such as \"Lab 1\"" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:67 -+#: ../glade/NewPrinterWindow.glade.h:66 - msgid "LPD" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:68 -+#: ../glade/NewPrinterWindow.glade.h:67 - msgid "License:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:69 -+#: ../glade/NewPrinterWindow.glade.h:68 - #, fuzzy - msgid "Line art:" - msgstr "Забелешки од печатачот:" - --#: ../glade/NewPrinterWindow.glade.h:70 -+#: ../glade/NewPrinterWindow.glade.h:69 - #, fuzzy - msgid "Local Driver" - msgstr "Уреди локален печатач" - --#: ../glade/NewPrinterWindow.glade.h:71 -+#: ../glade/NewPrinterWindow.glade.h:70 - #, fuzzy - msgid "Make and model:" - msgstr "Потребен е модел и серија.\n" - --#: ../glade/NewPrinterWindow.glade.h:72 -+#: ../glade/NewPrinterWindow.glade.h:71 - msgid "Manufacturer" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:73 -+#: ../glade/NewPrinterWindow.glade.h:72 - #, fuzzy - msgid "Network" - msgstr "Печатач:" - --#: ../glade/NewPrinterWindow.glade.h:75 -+#: ../glade/NewPrinterWindow.glade.h:74 - msgid "No, I do not accept this license" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:76 -+#: ../glade/NewPrinterWindow.glade.h:75 - msgid "Parity" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:78 -+#: ../glade/NewPrinterWindow.glade.h:77 - msgid "Patented algorithms" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:79 -+#: ../glade/NewPrinterWindow.glade.h:78 - #, fuzzy - msgid "Photo:" - msgstr "Порта: " - --#: ../glade/NewPrinterWindow.glade.h:80 -+#: ../glade/NewPrinterWindow.glade.h:79 - msgid "Port number:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:81 -+#: ../glade/NewPrinterWindow.glade.h:80 - msgid "" - "PostScript Printer Description (PPD) files can often be found on the driver " - "disk that comes with the printer. For PostScript printers they are often " - "part of the Windows® driver." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:82 -+#: ../glade/NewPrinterWindow.glade.h:81 - #, fuzzy - msgid "Printer model:" - msgstr "Модел на печатачот" - --#: ../glade/NewPrinterWindow.glade.h:83 -+#: ../glade/NewPrinterWindow.glade.h:82 - msgid "Probe" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:84 -+#: ../glade/NewPrinterWindow.glade.h:83 - #, fuzzy - msgid "Prompt user if authentication is required" - msgstr "Автентикација" - --#: ../glade/NewPrinterWindow.glade.h:85 -+#: ../glade/NewPrinterWindow.glade.h:84 - msgid "Provide PPD file" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:86 -+#: ../glade/NewPrinterWindow.glade.h:85 - msgid "Queue:" - msgstr "Задача:" - --#: ../glade/NewPrinterWindow.glade.h:87 -+#: ../glade/NewPrinterWindow.glade.h:86 - msgid "SCSI" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:88 -+#: ../glade/NewPrinterWindow.glade.h:87 - msgid "SMB" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:89 -+#: ../glade/NewPrinterWindow.glade.h:88 - msgid "Search for a printer driver to download" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:90 -+#: ../glade/NewPrinterWindow.glade.h:89 - #, fuzzy - msgid "Searching..." - msgstr "Предупредување" - --#: ../glade/NewPrinterWindow.glade.h:91 -+#: ../glade/NewPrinterWindow.glade.h:90 - msgid "Select A File" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:92 -+#: ../glade/NewPrinterWindow.glade.h:91 - msgid "Select printer from database" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:93 -+#: ../glade/NewPrinterWindow.glade.h:92 - #, fuzzy - msgid "Serial" - msgstr "Општо" - --#: ../glade/NewPrinterWindow.glade.h:94 -+#: ../glade/NewPrinterWindow.glade.h:93 - #, fuzzy - msgid "Set authentication details now" - msgstr "Автентикација" - --#: ../glade/NewPrinterWindow.glade.h:95 -+#: ../glade/NewPrinterWindow.glade.h:94 - msgid "Short name for this printer such as \"laserjet\"" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:96 -+#: ../glade/NewPrinterWindow.glade.h:95 - msgid "Supplier:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:97 -+#: ../glade/NewPrinterWindow.glade.h:96 - #, fuzzy - msgid "Support:" - msgstr "Порта:" - --#: ../glade/NewPrinterWindow.glade.h:98 -+#: ../glade/NewPrinterWindow.glade.h:97 - #, fuzzy - msgid "Text:" - msgstr "_Тест" - --#: ../glade/NewPrinterWindow.glade.h:99 -+#: ../glade/NewPrinterWindow.glade.h:98 - msgid "" - "The foomatic printer database contains various manufacturer provided " - "PostScript Printer Description (PPD) files and also can generate PPD files " -@@ -2086,70 +2082,70 @@ msgid "" - "printer." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:100 -+#: ../glade/NewPrinterWindow.glade.h:99 - msgid "" - "These drivers do not come from your operating system supplier and will not " - "be covered by their commercial support. See the support and license terms " - "of the driver's supplier." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:101 -+#: ../glade/NewPrinterWindow.glade.h:100 - msgid "" - "This driver supports additional hardware that may be installed in the " - "printer." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:102 -+#: ../glade/NewPrinterWindow.glade.h:101 - msgid "" - "This is done by assuming that options with the same name do have the same " - "meaning. Settings of options that are not present in the new PPD will be " - "lost and options only present in the new PPD will be set to default." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:103 -+#: ../glade/NewPrinterWindow.glade.h:102 - msgid "" - "This way all current option settings will be lost. The default settings of " - "the new PPD will be used. " - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:104 -+#: ../glade/NewPrinterWindow.glade.h:103 - msgid "Try to copy the option settings over from the old PPD. " - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:105 -+#: ../glade/NewPrinterWindow.glade.h:104 - msgid "URI:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:107 -+#: ../glade/NewPrinterWindow.glade.h:106 - msgid "Use the new PPD (Postscript Printer Description) as is." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:109 -+#: ../glade/NewPrinterWindow.glade.h:108 - msgid "" - "With this choice no driver download will be performed. In the next steps a " - "locally installed driver will be selected." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:110 -+#: ../glade/NewPrinterWindow.glade.h:109 - msgid "Yes, I accept this license" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:111 -+#: ../glade/NewPrinterWindow.glade.h:110 - #, fuzzy - msgid "_Search" - msgstr "Предупредување" - --#: ../glade/NewPrinterWindow.glade.h:112 -+#: ../glade/NewPrinterWindow.glade.h:111 - #, fuzzy - msgid "_Verify..." - msgstr "Одреди..." - --#: ../glade/NewPrinterWindow.glade.h:113 -+#: ../glade/NewPrinterWindow.glade.h:112 - #: ../glade/PrinterPropertiesDialog.glade.h:128 - msgid "move left" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:114 -+#: ../glade/NewPrinterWindow.glade.h:113 - #: ../glade/PrinterPropertiesDialog.glade.h:129 - msgid "move right" - msgstr "" -@@ -3063,7 +3059,7 @@ msgstr "" - msgid "Remember to load paper of type '%s' into the printer first." - msgstr "" - --#: ../troubleshoot/PrintTestPage.py:399 -+#: ../troubleshoot/PrintTestPage.py:416 - msgid "Error submitting test page" - msgstr "" - -@@ -3268,6 +3264,10 @@ msgid "Select default printer" - msgstr "Ова е описот на печатачот." - - #, fuzzy -+#~ msgid "HP Printer (HPLIP) via network" -+#~ msgstr "Модел на печатачот" -+ -+#, fuzzy - #~ msgid "Not Found" - #~ msgstr "_Локално врзан" - -diff -up system-config-printer-1.1.5/po/ml.po.git-1.1.x system-config-printer-1.1.5/po/ml.po ---- system-config-printer-1.1.5/po/ml.po.git-1.1.x 2009-03-03 22:21:46.000000000 +0000 -+++ system-config-printer-1.1.5/po/ml.po 2009-03-10 17:43:31.000000000 +0000 -@@ -7,7 +7,7 @@ msgid "" - msgstr "" - "Project-Id-Version: ml\n" - "Report-Msgid-Bugs-To: https://bugzilla.redhat.com/bugzilla\n" --"POT-Creation-Date: 2009-03-02 23:22+0000\n" -+"POT-Creation-Date: 2009-03-10 16:51+0000\n" - "PO-Revision-Date: 2007-06-05 16:50+0530\n" - "Last-Translator: Ani Peter \n" - "Language-Team: Malayalam \n" -@@ -63,11 +63,11 @@ msgstr "" - msgid "Enter IP address" - msgstr "പ്രിന്‍ററ്‍ ചേറ്‍ത്തിരിക്കുന്നു" - --#: ../authconn.py:35 ../glade/NewPrinterWindow.glade.h:108 -+#: ../authconn.py:35 ../glade/NewPrinterWindow.glade.h:107 - msgid "Username:" - msgstr "യൂസര്‍നെയിം:" - --#: ../authconn.py:36 ../glade/NewPrinterWindow.glade.h:77 -+#: ../authconn.py:36 ../glade/NewPrinterWindow.glade.h:76 - msgid "Password:" - msgstr "പാസ്‌വേറ്‍ഡ്:" - -@@ -76,7 +76,7 @@ msgstr "പാസ്‌വേറ്‍ - msgid "Domain:" - msgstr "മുകളിലുളള മാറ്‍ജിന്‍:" - --#: ../authconn.py:46 -+#: ../authconn.py:46 ../authconn.py:409 - #, fuzzy - msgid "Authentication" - msgstr "ഓഥന്‍റിക്കേഷന്‍" -@@ -85,45 +85,54 @@ msgstr "ഓഥന്‍റിക് - msgid "Remember password" - msgstr "" - --#: ../authconn.py:211 ../authconn.py:232 -+#: ../authconn.py:208 -+#, python-format -+msgid "Unauthorized request (%s)" -+msgstr "" -+ -+#: ../authconn.py:209 -+msgid "You are not authorized to carry out therequested action." -+msgstr "" -+ -+#: ../authconn.py:212 ../authconn.py:233 - #, fuzzy - msgid "Operation canceled" - msgstr "ഓപ്പറേഷന്‍ പോളിസി:" - --#: ../authconn.py:253 -+#: ../authconn.py:250 - #, fuzzy, python-format - msgid "CUPS server error (%s)" - msgstr "CUPS സര്‍വറില്‍ പിഴവ്" - --#: ../authconn.py:255 ../errordialogs.py:57 --#: ../troubleshoot/PrintTestPage.py:400 -+#: ../authconn.py:252 ../errordialogs.py:56 ../errordialogs.py:70 -+msgid "CUPS server error" -+msgstr "CUPS സര്‍വറില്‍ പിഴവ്" -+ -+#: ../authconn.py:261 ../errordialogs.py:57 -+#: ../troubleshoot/PrintTestPage.py:417 - #, python-format - msgid "There was an error during the CUPS operation: '%s'." - msgstr "CUPS ഓപ്പറേഷനില്‍ ഒരു പിഴവ് ഉണ്ടായിരുമന്നു: '%s'." - --#: ../authconn.py:258 -+#: ../authconn.py:264 - #, fuzzy - msgid "Retry" - msgstr "റീസെറ്റ് ചെയ്യുക" - --#: ../authconn.py:379 ../authconn.py:381 ../errordialogs.py:65 ../pysmb.py:75 -+#: ../authconn.py:385 ../authconn.py:387 ../errordialogs.py:65 ../pysmb.py:75 - #: ../pysmb.py:77 - msgid "Not authorized" - msgstr "അംഗീകാരതയില്ല" - --#: ../authconn.py:382 ../pysmb.py:78 -+#: ../authconn.py:388 ../pysmb.py:78 - msgid "The password may be incorrect." - msgstr "പാസ്വേര്‍ഡ് കൊടുത്തത് തെറ്റാവാം." - --#: ../authconn.py:400 -+#: ../authconn.py:407 - #, fuzzy, python-format - msgid "Authentication (%s)" - msgstr "ഓഥന്‍റിക്കേഷന്‍" - --#: ../errordialogs.py:56 ../errordialogs.py:70 --msgid "CUPS server error" --msgstr "CUPS സര്‍വറില്‍ പിഴവ്" -- - #: ../errordialogs.py:66 - msgid "" - "The password may be incorrect, or the server may be configured to deny " -@@ -152,7 +161,7 @@ msgstr "പുതുക്കല്‍ - msgid "Server error" - msgstr "സര്‍വര്‍ പിശക്" - --#: ../errordialogs.py:82 ../system-config-printer.py:1219 -+#: ../errordialogs.py:82 ../system-config-printer.py:1223 - msgid "Not connected" - msgstr "കണക്റ്റ് ചെയ്തിട്ടില്ല" - -@@ -174,7 +183,7 @@ msgstr "" - msgid "_New Group from Selection" - msgstr "" - --#: ../GroupsPane.py:98 ../system-config-printer.py:393 -+#: ../GroupsPane.py:98 ../system-config-printer.py:397 - #, fuzzy - msgid "_Rename" - msgstr "റിലീസ്(_R)" -@@ -243,7 +252,7 @@ msgid "Document" - msgstr "ഡോക്യുമെന്‍റ്" - - #: ../jobviewer.py:212 ../my-default-printer.py:153 --#: ../system-config-printer.py:366 ../system-config-printer.py:1367 -+#: ../system-config-printer.py:370 ../system-config-printer.py:1371 - #: ../troubleshoot/PrintTestPage.py:84 - msgid "Printer" - msgstr "പ്രിന്‍റര്‍" -@@ -280,8 +289,8 @@ msgstr "ഫയലിന്‍റെ പ - - #: ../jobviewer.py:386 ../jobviewer.py:451 ../jobviewer.py:452 - #: ../jobviewer.py:492 ../jobviewer.py:600 ../jobviewer.py:727 --#: ../jobviewer.py:1196 ../jobviewer.py:1222 ../system-config-printer.py:2546 --#: ../glade/NewPrinterWindow.glade.h:106 -+#: ../jobviewer.py:1196 ../jobviewer.py:1222 ../system-config-printer.py:2556 -+#: ../glade/NewPrinterWindow.glade.h:105 - #: ../troubleshoot/ChooseNetworkPrinter.py:101 - #: ../troubleshoot/ChooseNetworkPrinter.py:102 - #: ../troubleshoot/ChooseNetworkPrinter.py:105 -@@ -371,12 +380,12 @@ msgstr "" - msgid "Pending" - msgstr "ബാക്കിയുളള ജോലി" - --#: ../jobviewer.py:591 ../system-config-printer.py:186 -+#: ../jobviewer.py:591 ../system-config-printer.py:190 - #: ../troubleshoot/PrintTestPage.py:43 - msgid "Processing" - msgstr "പ്രവര്‍ത്തനത്തില്‍" - --#: ../jobviewer.py:592 ../system-config-printer.py:188 -+#: ../jobviewer.py:592 ../system-config-printer.py:192 - #: ../troubleshoot/PrintTestPage.py:44 - msgid "Stopped" - msgstr "നിര്‍ത്തിയിരിക്കുന്നു" -@@ -493,8 +502,8 @@ msgstr "സിസ്റ്റം ഡീ - msgid "_Set Default" - msgstr "ഡീഫോള്‍ട്ട്" - --#: ../my-default-printer.py:158 ../system-config-printer.py:423 --#: ../system-config-printer.py:3660 ../troubleshoot/ChooseNetworkPrinter.py:37 -+#: ../my-default-printer.py:158 ../system-config-printer.py:427 -+#: ../system-config-printer.py:3675 ../troubleshoot/ChooseNetworkPrinter.py:37 - #: ../troubleshoot/ChoosePrinter.py:38 - #, fuzzy - msgid "Location" -@@ -528,7 +537,7 @@ msgstr "ഡീഫോള്‍ട്ട - msgid "Authenticated" - msgstr "ഓഥന്‍റിക്കേഷന്‍" - --#: ../ppdippstr.py:50 ../system-config-printer.py:6259 -+#: ../ppdippstr.py:50 ../system-config-printer.py:6207 - #, fuzzy - msgid "None" - msgstr "ഒന്നുമില്ല" -@@ -747,132 +756,132 @@ msgstr "" - msgid "1200 dpi, photo, black + color cartridge, photo paper" - msgstr "" - --#: ../system-config-printer.py:127 -+#: ../system-config-printer.py:131 - msgid "To do this, select System->Administration->Firewall from the main menu." - msgstr "" - --#: ../system-config-printer.py:185 -+#: ../system-config-printer.py:189 - msgid "Idle" - msgstr "പ്രവര്‍ത്തനത്തിലല്ല" - --#: ../system-config-printer.py:187 -+#: ../system-config-printer.py:191 - msgid "Busy" - msgstr "തിരക്കാണ്" - --#: ../system-config-printer.py:372 ../system-config-printer.py:1373 -+#: ../system-config-printer.py:376 ../system-config-printer.py:1377 - #, fuzzy - msgid "Class" - msgstr "പുതിയ ക്ളാസ്സ്" - --#: ../system-config-printer.py:399 -+#: ../system-config-printer.py:403 - #, fuzzy - msgid "Set As De_fault" - msgstr "ഡീഫോള്‍ട്ട്" - --#: ../system-config-printer.py:403 -+#: ../system-config-printer.py:407 - #, fuzzy - msgid "_Create class" - msgstr "റിമോട്ട് ക്ളാസ്സുകള്‍" - --#: ../system-config-printer.py:405 -+#: ../system-config-printer.py:409 - #, fuzzy - msgid "View Print _Queue" - msgstr "പുതിയ പ്രിന്‍റര്‍" - --#: ../system-config-printer.py:407 -+#: ../system-config-printer.py:411 - msgid "_Add to Group" - msgstr "" - --#: ../system-config-printer.py:409 -+#: ../system-config-printer.py:413 - msgid "Save Results as _Group" - msgstr "" - --#: ../system-config-printer.py:411 -+#: ../system-config-printer.py:415 - msgid "Save Filter as _Search Group" - msgstr "" - --#: ../system-config-printer.py:415 -+#: ../system-config-printer.py:419 - #, fuzzy - msgid "E_nabled" - msgstr "പ്രവര്‍ത്തന സജ്ജമാക്കുക" - --#: ../system-config-printer.py:417 -+#: ../system-config-printer.py:421 - #, fuzzy - msgid "_Shared" - msgstr "ഷെയര്‍ ചെയ്യപ്പെട്ട" - --#: ../system-config-printer.py:421 ../troubleshoot/ChooseNetworkPrinter.py:35 -+#: ../system-config-printer.py:425 ../troubleshoot/ChooseNetworkPrinter.py:35 - #: ../troubleshoot/ChoosePrinter.py:36 ../troubleshoot/DeviceListed.py:36 - msgid "Name" - msgstr "പേര്" - --#: ../system-config-printer.py:422 -+#: ../system-config-printer.py:426 - #, fuzzy - msgid "Description" - msgstr "വിവരണം:" - --#: ../system-config-printer.py:424 -+#: ../system-config-printer.py:428 - msgid "Manufacturer / Model" - msgstr "" - - #. Printer state reasons list --#: ../system-config-printer.py:499 -+#: ../system-config-printer.py:503 - msgid "Message" - msgstr "സന്ദേശം" - --#: ../system-config-printer.py:534 -+#: ../system-config-printer.py:538 - #, fuzzy - msgid "Problems?" - msgstr "തിരയുക" - --#: ../system-config-printer.py:637 ../system-config-printer.py:639 -+#: ../system-config-printer.py:641 ../system-config-printer.py:643 - msgid "Members of this class" - msgstr "ഈ ക്ളാസ്സിലെ അംഗം " - --#: ../system-config-printer.py:638 ../system-config-printer.py:640 -+#: ../system-config-printer.py:642 ../system-config-printer.py:644 - msgid "Others" - msgstr "മറ്റുളളത്" - --#: ../system-config-printer.py:641 -+#: ../system-config-printer.py:645 - msgid "Devices" - msgstr "ഡിവൈസുകള്‍" - --#: ../system-config-printer.py:642 -+#: ../system-config-printer.py:646 - #, fuzzy - msgid "Connections" - msgstr "കണക്ട് ചെയ്യപ്പെടുന്നു" - --#: ../system-config-printer.py:643 -+#: ../system-config-printer.py:647 - msgid "Makes" - msgstr "നിര്‍മ്മാണം" - --#: ../system-config-printer.py:644 -+#: ../system-config-printer.py:648 - msgid "Models" - msgstr "മോഡലുകള്‍" - --#: ../system-config-printer.py:645 -+#: ../system-config-printer.py:649 - msgid "Drivers" - msgstr "ഡ്രൈവറുകള്‍" - --#: ../system-config-printer.py:646 ../glade/NewPrinterWindow.glade.h:55 -+#: ../system-config-printer.py:650 ../glade/NewPrinterWindow.glade.h:54 - msgid "Downloadable Drivers" - msgstr "" - --#: ../system-config-printer.py:647 -+#: ../system-config-printer.py:651 - msgid "Users" - msgstr "യൂസറുകള്‍" - --#: ../system-config-printer.py:682 -+#: ../system-config-printer.py:686 - msgid "Automatic rotation" - msgstr "" - --#: ../system-config-printer.py:989 -+#: ../system-config-printer.py:993 - #, fuzzy, python-format - msgid "Printer Properties - '%s' on %s" - msgstr "പ്രിന്‍റര്‍ റിപോറ്‍ട്ട്" - - #. The Conflict button was pressed. --#: ../system-config-printer.py:996 -+#: ../system-config-printer.py:1000 - msgid "" - "There are conflicting options.\n" - "Changes can only be applied after\n" -@@ -882,81 +891,81 @@ msgstr "" - "ഇവ പരിഹരിച്ചതിന് ശേഷമേ\n" - "മാറ്റങ്ങള്‍ വരുത്താന്‍ പറ്റൂ. " - --#: ../system-config-printer.py:1214 -+#: ../system-config-printer.py:1218 - #, python-format - msgid "Printer configuration - %s" - msgstr "പ്രിന്‍റര്‍ കോണ്‍ഫിഗറേഷന്‍ - %s" - --#: ../system-config-printer.py:1217 -+#: ../system-config-printer.py:1221 - #, python-format - msgid "Connected to %s" - msgstr "%sലേക്ക് കണക്റ്റ് ചെയ്തിരിക്കുന്നു" - - #. Update our copy of the printer's settings. --#: ../system-config-printer.py:1257 ../system-config-printer.py:2042 -+#: ../system-config-printer.py:1261 ../system-config-printer.py:2046 - msgid "obtaining queue details" - msgstr "" - --#: ../system-config-printer.py:1295 -+#: ../system-config-printer.py:1299 - msgid "Remove from Group" - msgstr "" - --#: ../system-config-printer.py:1361 -+#: ../system-config-printer.py:1365 - #, fuzzy - msgid "Network printer (discovered)" - msgstr "പുതിയ പ്രിന്‍റര്‍" - --#: ../system-config-printer.py:1364 -+#: ../system-config-printer.py:1368 - msgid "Network class (discovered)" - msgstr "" - --#: ../system-config-printer.py:1370 ../system-config-printer.py:5524 --#: ../system-config-printer.py:5594 ../system-config-printer.py:5596 -+#: ../system-config-printer.py:1374 ../system-config-printer.py:5519 -+#: ../system-config-printer.py:5589 ../system-config-printer.py:5591 - msgid "Fax" - msgstr "" - --#: ../system-config-printer.py:1376 ../system-config-printer.py:1382 -+#: ../system-config-printer.py:1380 ../system-config-printer.py:1386 - #: ../troubleshoot/LocalOrRemote.py:30 - #, fuzzy - msgid "Network printer" - msgstr "പുതിയ പ്രിന്‍റര്‍" - --#: ../system-config-printer.py:1379 -+#: ../system-config-printer.py:1383 - #, fuzzy - msgid "Network print share" - msgstr "പുതിയ പ്രിന്‍റര്‍" - --#: ../system-config-printer.py:1508 ../glade/ConnectingDialog.glade.h:2 -+#: ../system-config-printer.py:1512 ../glade/ConnectingDialog.glade.h:2 - #, no-c-format, python-format - msgid "Opening connection to %s" - msgstr "" - --#: ../system-config-printer.py:1887 -+#: ../system-config-printer.py:1891 - msgid "Installable Options" - msgstr "ഇന്‍സ്റ്റോള്‍ ചെയ്യാന്‍ പറ്റുന്ന ഉപാധികള്‍" - --#: ../system-config-printer.py:1888 -+#: ../system-config-printer.py:1892 - #: ../glade/PrinterPropertiesDialog.glade.h:109 - msgid "Printer Options" - msgstr "പ്രിന്‍റര്‍ ഉപാധികള്‍" - --#: ../system-config-printer.py:1924 -+#: ../system-config-printer.py:1928 - #, python-format - msgid "modifying class %s" - msgstr "" - --#: ../system-config-printer.py:1926 ../system-config-printer.py:3019 --#: ../system-config-printer.py:3044 ../system-config-printer.py:6547 --#: ../system-config-printer.py:6559 ../system-config-printer.py:6581 -+#: ../system-config-printer.py:1930 ../system-config-printer.py:3037 -+#: ../system-config-printer.py:3062 ../system-config-printer.py:6495 -+#: ../system-config-printer.py:6507 ../system-config-printer.py:6529 - #, fuzzy, python-format - msgid "modifying printer %s" - msgstr "പ്രിന്‍ററുകള്‍ സജ്ജമാക്കുക" - --#: ../system-config-printer.py:1941 -+#: ../system-config-printer.py:1945 - msgid "This will delete this class!" - msgstr "ഈ ക്ളാസ്സിനെ ഇത് നീക്കം ചെയ്യും!" - --#: ../system-config-printer.py:1942 -+#: ../system-config-printer.py:1946 - msgid "Proceed anyway?" - msgstr "എന്തായാലും മുന്നോട്ട് പോകണമോ?" - -@@ -964,50 +973,50 @@ msgstr "എന്തായാലും - #. but we have never fetched the server settings to see whether - #. the server is publishing shared printers. Fetch the settings - #. now so that we can update the "not published" label if necessary. --#: ../system-config-printer.py:2030 ../system-config-printer.py:3203 -+#: ../system-config-printer.py:2034 ../system-config-printer.py:3221 - #, fuzzy - msgid "fetching server settings" - msgstr "ബേസിക്ക് സര്‍വര്‍ സെറ്റിങുകള്‍" - --#: ../system-config-printer.py:2100 -+#: ../system-config-printer.py:2104 - #, fuzzy - msgid "Set Default Printer" - msgstr "ഡീഫോള്‍ട്ട് പ്രിന്‍റര്‍ നിര്‍മ്മിക്കുക" - --#: ../system-config-printer.py:2102 -+#: ../system-config-printer.py:2106 - msgid "Do you want to set this as the system-wide default printer?" - msgstr "" - --#: ../system-config-printer.py:2104 -+#: ../system-config-printer.py:2108 - #, fuzzy - msgid "Set as the _system-wide default printer" - msgstr "ഇതാണ് ഡീഫോള്‍ട്ട് പ്രിന്‍റര്‍" - --#: ../system-config-printer.py:2106 -+#: ../system-config-printer.py:2110 - msgid "_Clear my personal default setting" - msgstr "" - --#: ../system-config-printer.py:2107 -+#: ../system-config-printer.py:2111 - #, fuzzy - msgid "Set as my _personal default printer" - msgstr "ഡീഫോള്‍ട്ട് പ്രിന്‍റര്‍ നിര്‍മ്മിക്കുക" - --#: ../system-config-printer.py:2112 -+#: ../system-config-printer.py:2116 - #, fuzzy - msgid "setting default printer" - msgstr "ഡീഫോള്‍ട്ട് പ്രിന്‍റര്‍ നിര്‍മ്മിക്കുക" - --#: ../system-config-printer.py:2169 -+#: ../system-config-printer.py:2173 - #, fuzzy - msgid "printing test page" - msgstr "പ്രിന്‍ററ് ചെയ്ത് പരീക്ഷിക്കുവാനുളള പേജ്" - --#: ../system-config-printer.py:2182 ../system-config-printer.py:2217 --#: ../system-config-printer.py:5418 -+#: ../system-config-printer.py:2186 ../system-config-printer.py:2221 -+#: ../system-config-printer.py:5413 - msgid "Not possible" - msgstr "സാധ്യമല്ല" - --#: ../system-config-printer.py:2183 ../system-config-printer.py:2218 -+#: ../system-config-printer.py:2187 ../system-config-printer.py:2222 - msgid "" - "The remote server did not accept the print job, most likely because the " - "printer is not shared." -@@ -1015,20 +1024,20 @@ msgstr "" - "റിമോട്ട് സര്‍വര്‍ പ്രിന്‍റ് ജോലി അംഗീകരിച്ചിട്ടില്ല, മിക്കവാറും പ്രിന്‍റര്‍ ഷെയര്‍ " - "ചെയ്തിട്ടില്ലാത്തതാവും ഇതിന് കാരണം." - --#: ../system-config-printer.py:2195 ../system-config-printer.py:2210 -+#: ../system-config-printer.py:2199 ../system-config-printer.py:2214 - msgid "Submitted" - msgstr "ഏല്പിച്ചു കഴിഞ്ഞിരിക്കുന്നു" - --#: ../system-config-printer.py:2196 -+#: ../system-config-printer.py:2200 - #, python-format - msgid "Test page submitted as job %d" - msgstr "%d എന്ന ജോലിയായി ടെസ്റ്റ് പേജ് ഏല്പിച്ചിരിക്കുന്നു" - --#: ../system-config-printer.py:2203 -+#: ../system-config-printer.py:2207 - msgid "sending maintenance command" - msgstr "" - --#: ../system-config-printer.py:2211 -+#: ../system-config-printer.py:2215 - #, fuzzy, python-format - msgid "Maintenance command submitted as job %d" - msgstr "%d എന്ന ജോലിയായി ടെസ്റ്റ് പേജ് ഏല്പിച്ചിരിക്കുന്നു" -@@ -1036,75 +1045,75 @@ msgstr "%d എന്ന ജോലിയ - #. The underlying cupsGetPPD2() function returned NULL without - #. setting an IPP error, so it'll be something like a failed - #. connection. --#: ../system-config-printer.py:2285 ../system-config-printer.py:2381 -+#: ../system-config-printer.py:2289 ../system-config-printer.py:2385 - msgid "Error" - msgstr "പിശക്" - --#: ../system-config-printer.py:2286 -+#: ../system-config-printer.py:2290 - msgid "There was a problem connecting to the CUPS server." - msgstr "CUPS സറ്‍വറിലേക്ക് കണക്ട് ചെയ്യുന്പോള്‍ ഒരു പിശക് ഉണ്ടായിരിക്കുന്നു." - --#: ../system-config-printer.py:2382 -+#: ../system-config-printer.py:2386 - #, python-format - msgid "Option '%s' has value '%s' and cannot be edited." - msgstr "" - --#: ../system-config-printer.py:2466 -+#: ../system-config-printer.py:2476 - msgid "Marker levels are not reported for this printer." - msgstr "" - --#: ../system-config-printer.py:2763 -+#: ../system-config-printer.py:2773 - #, fuzzy - msgid "Cannot Rename" - msgstr "റിലീസ്(_R)" - --#: ../system-config-printer.py:2764 -+#: ../system-config-printer.py:2774 - msgid "There are queued jobs." - msgstr "" - --#: ../system-config-printer.py:2822 -+#: ../system-config-printer.py:2840 - #, fuzzy - msgid "renaming printer" - msgstr "പ്രിന്‍ററുകള്‍ സജ്ജമാക്കുക" - - #. for classes make sure all members - #. will get added --#: ../system-config-printer.py:2907 -+#: ../system-config-printer.py:2925 - #, fuzzy - msgid "copying printer" - msgstr "പ്രിന്‍ററുകള്‍ സജ്ജമാക്കുക" - --#: ../system-config-printer.py:2971 -+#: ../system-config-printer.py:2989 - #, fuzzy, python-format - msgid "Really delete class '%s'?" - msgstr "ക്ളാസ്സ് ഉറപ്പായും നീക്കം ചെയ്യണമോ %s?" - --#: ../system-config-printer.py:2973 -+#: ../system-config-printer.py:2991 - #, fuzzy, python-format - msgid "Really delete printer '%s'?" - msgstr "ഉറപ്പായും നീക്കം ചെയ്യണമോ %s?" - --#: ../system-config-printer.py:2975 -+#: ../system-config-printer.py:2993 - #, fuzzy - msgid "Really delete selected destinations?" - msgstr "ഉറപ്പായും നീക്കം ചെയ്യണമോ %s?" - --#: ../system-config-printer.py:2996 -+#: ../system-config-printer.py:3014 - #, fuzzy, python-format - msgid "deleting printer %s" - msgstr "പ്രിന്‍ററുകള്‍ സജ്ജമാക്കുക" - --#: ../system-config-printer.py:3070 -+#: ../system-config-printer.py:3088 - msgid "Publish Shared Printers" - msgstr "" - --#: ../system-config-printer.py:3071 -+#: ../system-config-printer.py:3089 - msgid "" - "Shared printers are not available to other people unless the 'Publish shared " - "printers' option is enabled in the server settings." - msgstr "" - --#: ../system-config-printer.py:3264 -+#: ../system-config-printer.py:3282 - #, fuzzy - msgid "modifying server settings" - msgstr "ബേസിക്ക് സര്‍വര്‍ സെറ്റിങുകള്‍" -@@ -1115,105 +1124,105 @@ msgstr "ബേസിക്ക് സ - #. be unblocked. Unfortunately, this is not yet possible - #. (bug #440469). However, we can display a dialog to suggest - #. that now might be a good time to review the firewall settings. --#: ../system-config-printer.py:3289 -+#: ../system-config-printer.py:3307 - msgid "Review Firewall" - msgstr "" - --#: ../system-config-printer.py:3290 -+#: ../system-config-printer.py:3308 - msgid "" - "You may need to adjust the firewall to allow network printing to this " - "computer." - msgstr "" - --#: ../system-config-printer.py:3623 -+#: ../system-config-printer.py:3638 - msgid "Browsing not available (pysmbc not installed)" - msgstr "" - - #. SMB list columns --#: ../system-config-printer.py:3629 -+#: ../system-config-printer.py:3644 - msgid "Share" - msgstr "ഷെയര്‍" - --#: ../system-config-printer.py:3635 -+#: ../system-config-printer.py:3650 - msgid "Comment" - msgstr "കമന്‍റ്" - - #. IPP list columns --#: ../system-config-printer.py:3654 -+#: ../system-config-printer.py:3669 - msgid "Queue" - msgstr "" - --#: ../system-config-printer.py:3668 -+#: ../system-config-printer.py:3683 - #, fuzzy - msgid "" - "PostScript Printer Description files (*.ppd, *.PPD, *.ppd.gz, *.PPD.gz, *." - "PPD.GZ)" - msgstr "പോസ്റ്റ്സ്ക്രിപ്റ്റ് പ്രിന്‍റര്‍ വിവരണം (*.ppd[.gz])" - --#: ../system-config-printer.py:3677 -+#: ../system-config-printer.py:3692 - msgid "All files (*)" - msgstr "" - --#: ../system-config-printer.py:3713 ../system-config-printer.py:5970 --#: ../system-config-printer.py:6008 ../applet.py:124 -+#: ../system-config-printer.py:3728 ../system-config-printer.py:5918 -+#: ../system-config-printer.py:5956 ../applet.py:124 - #, fuzzy - msgid "Search" - msgstr "പ്രിന്‍ററിന് പുതിയ പേര്" - --#: ../system-config-printer.py:3736 ../system-config-printer.py:3760 --#: ../glade/NewPrinterWindow.glade.h:74 -+#: ../system-config-printer.py:3751 ../system-config-printer.py:3775 -+#: ../glade/NewPrinterWindow.glade.h:73 - msgid "New Printer" - msgstr "പുതിയ പ്രിന്‍റര്‍" - --#: ../system-config-printer.py:3747 -+#: ../system-config-printer.py:3762 - msgid "New Class" - msgstr "പുതിയ ക്ളാസ്സ്" - --#: ../system-config-printer.py:3752 -+#: ../system-config-printer.py:3767 - msgid "Change Device URI" - msgstr "Device URI ഡിവൈസ് മാറ്റുക" - --#: ../system-config-printer.py:3758 -+#: ../system-config-printer.py:3773 - msgid "Change Driver" - msgstr "ഡ്രൈവര്‍ മാറ്റുക" - --#: ../system-config-printer.py:3927 ../system-config-printer.py:3993 --#: ../system-config-printer.py:4289 ../system-config-printer.py:4487 --#: ../system-config-printer.py:5772 ../system-config-printer.py:5995 -+#: ../system-config-printer.py:3942 ../system-config-printer.py:4008 -+#: ../system-config-printer.py:4304 ../system-config-printer.py:4502 -+#: ../system-config-printer.py:5762 ../system-config-printer.py:5943 - msgid "Searching" - msgstr "" - --#: ../system-config-printer.py:3928 -+#: ../system-config-printer.py:3943 - #, fuzzy - msgid "Searching for downloadable drivers" - msgstr "പ്രിന്‍ററിന് പുതിയ പേര്" - --#: ../system-config-printer.py:3994 ../system-config-printer.py:4290 -+#: ../system-config-printer.py:4009 ../system-config-printer.py:4305 - msgid "Searching for drivers" - msgstr "" - --#: ../system-config-printer.py:4488 ../system-config-printer.py:5773 -+#: ../system-config-printer.py:4503 ../system-config-printer.py:5763 - #, fuzzy - msgid "Searching for printers" - msgstr "പ്രിന്‍ററിന് പുതിയ പേര്" - --#: ../system-config-printer.py:4497 -+#: ../system-config-printer.py:4512 - #, fuzzy - msgid "fetching device list" - msgstr "ബേസിക്ക് സര്‍വര്‍ സെറ്റിങുകള്‍" - - #. Tell the user why he needs the plugin --#: ../system-config-printer.py:4579 -+#: ../system-config-printer.py:4594 - msgid "For this printer a proprietary driver plugin from HP is available.\n" - msgstr "" - --#: ../system-config-printer.py:4582 -+#: ../system-config-printer.py:4597 - msgid "" - "The installation of the plugin is required for your printer to work.\n" - "\n" - msgstr "" - --#: ../system-config-printer.py:4585 -+#: ../system-config-printer.py:4600 - msgid "" - "Installing the plugin is optional, it completes or enhances the " - "functionality\n" -@@ -1221,218 +1230,214 @@ msgid "" - "\n" - msgstr "" - --#: ../system-config-printer.py:4589 -+#: ../system-config-printer.py:4604 - msgid "The plugin provides the following features:\n" - msgstr "" - --#: ../system-config-printer.py:4592 -+#: ../system-config-printer.py:4607 - msgid " - Printing support\n" - msgstr "" - --#: ../system-config-printer.py:4595 -+#: ../system-config-printer.py:4610 - msgid " - Faster printing\n" - msgstr "" - --#: ../system-config-printer.py:4598 -+#: ../system-config-printer.py:4613 - msgid " - Better printout quality\n" - msgstr "" - --#: ../system-config-printer.py:4601 -+#: ../system-config-printer.py:4616 - msgid " - Extra printing features\n" - msgstr "" - --#: ../system-config-printer.py:4604 -+#: ../system-config-printer.py:4619 - msgid " - Scanning support\n" - msgstr "" - --#: ../system-config-printer.py:4607 -+#: ../system-config-printer.py:4622 - msgid " - Faster scanning\n" - msgstr "" - --#: ../system-config-printer.py:4610 -+#: ../system-config-printer.py:4625 - msgid " - Better scanning image quality\n" - msgstr "" - --#: ../system-config-printer.py:4613 -+#: ../system-config-printer.py:4628 - msgid " - Faxing support\n" - msgstr "" - --#: ../system-config-printer.py:4616 -+#: ../system-config-printer.py:4631 - msgid " - Extra fax features\n" - msgstr "" - --#: ../system-config-printer.py:4619 -+#: ../system-config-printer.py:4634 - msgid " - Better Input/Output support\n" - msgstr "" - --#: ../system-config-printer.py:4622 -+#: ../system-config-printer.py:4637 - msgid " - Extra user interface features\n" - msgstr "" - --#: ../system-config-printer.py:4625 -+#: ../system-config-printer.py:4640 - msgid " - Other extra features\n" - msgstr "" - --#: ../system-config-printer.py:4630 -+#: ../system-config-printer.py:4645 - #, fuzzy - msgid "Install plugin" - msgstr "ഇന്‍സ്റ്റോള്‍ ചെയ്യാന്‍ പറ്റുന്ന ഉപാധികള്‍" - --#: ../system-config-printer.py:4631 -+#: ../system-config-printer.py:4646 - #, fuzzy - msgid "Do not set up printer" - msgstr "പ്രിന്‍റര്‍ പകര്‍ത്തുക" - --#: ../system-config-printer.py:4632 -+#: ../system-config-printer.py:4647 - msgid "Set up without plugin" - msgstr "" - --#: ../system-config-printer.py:4634 ../troubleshoot/PrintTestPage.py:118 -+#: ../system-config-printer.py:4649 ../troubleshoot/PrintTestPage.py:118 - msgid "Yes" - msgstr "" - --#: ../system-config-printer.py:4635 ../troubleshoot/PrintTestPage.py:119 -+#: ../system-config-printer.py:4650 ../troubleshoot/PrintTestPage.py:119 - msgid "No" - msgstr "" - --#: ../system-config-printer.py:4809 ../system-config-printer.py:4813 -+#: ../system-config-printer.py:4824 ../system-config-printer.py:4828 - msgid " (Current)" - msgstr " (ഇപ്പോള്‍ നിലവിലുളളത്)" - --#: ../system-config-printer.py:4845 --msgid "HP Printer (HPLIP)" --msgstr "" -- --#: ../system-config-printer.py:4886 -+#: ../system-config-printer.py:4881 - msgid "Other" - msgstr "മറ്റുളളത്" - - #. device-info - #. PhysicalDevice obj - #. Separator? --#: ../system-config-printer.py:4902 -+#: ../system-config-printer.py:4897 - #, fuzzy - msgid "Network Printer" - msgstr "പുതിയ പ്രിന്‍റര്‍" - --#: ../system-config-printer.py:4906 -+#: ../system-config-printer.py:4901 - #, fuzzy - msgid "Find Network Printer" - msgstr "പുതിയ പ്രിന്‍റര്‍" - --#: ../system-config-printer.py:4979 ../system-config-printer.py:5376 -+#: ../system-config-printer.py:4974 ../system-config-printer.py:5371 - msgid "Scanning..." - msgstr "" - --#: ../system-config-printer.py:5034 ../system-config-printer.py:5798 -+#: ../system-config-printer.py:5029 - #, fuzzy - msgid "No Print Shares" - msgstr "പുതിയ പ്രിന്‍റര്‍" - --#: ../system-config-printer.py:5035 -+#: ../system-config-printer.py:5030 - msgid "" - "There were no print shares found. Please check that the Samba service is " - "marked as trusted in your firewall configuration." - msgstr "" - --#: ../system-config-printer.py:5296 ../system-config-printer.py:5357 -+#: ../system-config-printer.py:5291 ../system-config-printer.py:5352 - msgid "Print Share Verified" - msgstr "" - --#: ../system-config-printer.py:5297 ../system-config-printer.py:5358 -+#: ../system-config-printer.py:5292 ../system-config-printer.py:5353 - msgid "This print share is accessible." - msgstr "ഈ പ്രിന്‍റ് ഷെയര്‍ കൈകാര്യം ചെയ്യാവുന്നതാണ്." - --#: ../system-config-printer.py:5302 ../system-config-printer.py:5362 -+#: ../system-config-printer.py:5297 ../system-config-printer.py:5357 - msgid "This print share is not accessible." - msgstr "ഈ പ്രിന്‍റ് ഷെയര്‍ കൈകാര്യം ചെയ്യാവുന്നതല്ല." - --#: ../system-config-printer.py:5305 -+#: ../system-config-printer.py:5300 - #, fuzzy - msgid "Print Share Inaccessible" - msgstr "ഈ പ്രിന്‍റ് ഷെയര്‍ കൈകാര്യം ചെയ്യാവുന്നതാണ്." - --#: ../system-config-printer.py:5361 -+#: ../system-config-printer.py:5356 - msgid "Inaccessible" - msgstr "കൈകാര്യം ചെയ്യുവാന്‍ സാധ്യമല്ല" - --#: ../system-config-printer.py:5419 -+#: ../system-config-printer.py:5414 - #, fuzzy, python-format - msgid "It is not possible to obtain a list of queues from '%s'." - msgstr "CUPS സറ്‍വറിലേക്ക് കണക്ട് ചെയ്യുന്പോള്‍ ഒരു പിശക് ഉണ്ടായിരിക്കുന്നു." - --#: ../system-config-printer.py:5421 -+#: ../system-config-printer.py:5416 - msgid "" - "Obtaining a list of queues is a CUPS extension to IPP. Network printers do " - "not support it." - msgstr "" - --#: ../system-config-printer.py:5424 -+#: ../system-config-printer.py:5419 - msgid "No queues" - msgstr "" - --#: ../system-config-printer.py:5425 -+#: ../system-config-printer.py:5420 - msgid "There are no queues available." - msgstr "" - --#: ../system-config-printer.py:5516 -+#: ../system-config-printer.py:5511 - msgid "Parallel Port" - msgstr "" - --#: ../system-config-printer.py:5518 -+#: ../system-config-printer.py:5513 - #, fuzzy - msgid "Serial Port" - msgstr "സീരിയല്‍" - --#: ../system-config-printer.py:5520 -+#: ../system-config-printer.py:5515 - #, fuzzy - msgid "USB" - msgstr "SMB" - --#: ../system-config-printer.py:5522 ../system-config-printer.py:5525 -+#: ../system-config-printer.py:5517 ../system-config-printer.py:5520 - msgid "HP Linux Imaging and Printing (HPLIP)" - msgstr "" - --#: ../system-config-printer.py:5527 -+#: ../system-config-printer.py:5522 - #, fuzzy - msgid "Hardware Abstraction Layer (HAL)" - msgstr "ഹാര്‍ഡ് വെയര്‍ അബ്സ്ട്രാക്ഷന്‍ ലെയര്‍ (HAL) ലോക്കല്‍ പ്രിന്‍റര്‍ തിരിച്ചറിഞ്ഞിരിക്കുന്നു." - --#: ../system-config-printer.py:5529 -+#: ../system-config-printer.py:5524 - msgid "AppSocket/HP JetDirect" - msgstr "" - --#: ../system-config-printer.py:5538 -+#: ../system-config-printer.py:5533 - #, python-format - msgid "LPD/LPR queue '%s'" - msgstr "" - --#: ../system-config-printer.py:5540 -+#: ../system-config-printer.py:5535 - #, fuzzy - msgid "LPD/LPR queue" - msgstr "LPD" - --#: ../system-config-printer.py:5543 -+#: ../system-config-printer.py:5538 - msgid "Windows Printer via SAMBA" - msgstr "" - --#: ../system-config-printer.py:5545 ../glade/NewPrinterWindow.glade.h:66 -+#: ../system-config-printer.py:5540 ../glade/NewPrinterWindow.glade.h:65 - msgid "IPP" - msgstr "IPP" - --#: ../system-config-printer.py:5547 -+#: ../system-config-printer.py:5542 - msgid "HTTP" - msgstr "" - --#: ../system-config-printer.py:5632 -+#: ../system-config-printer.py:5624 - msgid "A printer connected to the parallel port." - msgstr "പാരലല്‍ പോര്‍ട്ടിലേക്ക് ഒരു പ്രിന്‍റര്‍ കണക്ട് ചെയ്തിരിക്കുന്നു." - --#: ../system-config-printer.py:5634 -+#: ../system-config-printer.py:5626 - msgid "A printer connected to a USB port." - msgstr "USB പോര്‍ട്ടിലേക്ക് ഒരു പ്രിന്‍റര്‍ കണക്ട് ചെയ്തിരിക്കുന്നു." - --#: ../system-config-printer.py:5636 -+#: ../system-config-printer.py:5628 - msgid "" - "HPLIP software driving a printer, or the printer function of a multi-" - "function device." -@@ -1440,7 +1445,7 @@ msgstr "" - "HPLIP സോഫ്റ്റ് വെയര്‍ ഒരു പ്രിന്‍റര്‍, അല്ലെങ്കില്‍ അനവധി പ്രവര്‍ത്തനങ്ങള്‍- ക്കുളള ഡിവൈസിന്‍റെ പ്രിന്‍റ് " - "പ്രക്രിയ പ്രവര്‍ത്തിപ്പിക്കുന്നു." - --#: ../system-config-printer.py:5639 -+#: ../system-config-printer.py:5631 - msgid "" - "HPLIP software driving a fax machine, or the fax function of a multi-" - "function device." -@@ -1448,70 +1453,66 @@ msgstr "" - "HPLIP സോഫ്റ്റ് വെയര്‍ ഒരു ഫാക്സ് മഷീന്‍, അല്ലെങ്കില്‍ അനവധി പ്രവര്‍ത്തനങ്ങള്‍- ക്കുളള ഡിവൈസിന്‍റെ " - "ഫാക്സ് പ്രക്രിയ പ്രവര്‍ത്തിപ്പിക്കുന്നു." - --#: ../system-config-printer.py:5642 -+#: ../system-config-printer.py:5634 - msgid "Local printer detected by the Hardware Abstraction Layer (HAL)." - msgstr "ഹാര്‍ഡ് വെയര്‍ അബ്സ്ട്രാക്ഷന്‍ ലെയര്‍ (HAL) ലോക്കല്‍ പ്രിന്‍റര്‍ തിരിച്ചറിഞ്ഞിരിക്കുന്നു." - --#: ../system-config-printer.py:5799 --msgid "HPLIP cannot find the device." --msgstr "" -- --#: ../system-config-printer.py:5881 -+#: ../system-config-printer.py:5831 - msgid "No printer was found at that address." - msgstr "" - --#: ../system-config-printer.py:6020 -+#: ../system-config-printer.py:5968 - #, fuzzy - msgid "-- Select from search results --" - msgstr "ഡേറ്റാബേയ്സില്‍ നിന്നും പ്രിന്‍റര്‍ തിരഞ്ഞെടുക്കുക" - --#: ../system-config-printer.py:6022 -+#: ../system-config-printer.py:5970 - msgid "-- No matches found --" - msgstr "" - --#: ../system-config-printer.py:6203 -+#: ../system-config-printer.py:6151 - msgid " (recommended)" - msgstr " (recommended)" - --#: ../system-config-printer.py:6217 -+#: ../system-config-printer.py:6165 - msgid "This PPD is generated by foomatic." - msgstr "PPD ഉത്പാദിപ്പിച്ചത് foomatic ആണ്." - --#: ../system-config-printer.py:6241 -+#: ../system-config-printer.py:6189 - #, fuzzy - msgid "OpenPrinting" - msgstr "പ്രിന്‍റ് ചെയ്യുന്നു" - --#: ../system-config-printer.py:6252 -+#: ../system-config-printer.py:6200 - msgid "Distributable" - msgstr "" - --#: ../system-config-printer.py:6293 -+#: ../system-config-printer.py:6241 - #, fuzzy - msgid ", " - msgstr " " - --#: ../system-config-printer.py:6298 -+#: ../system-config-printer.py:6246 - #, python-format - msgid "" - "\n" - "(%s)" - msgstr "" - --#: ../system-config-printer.py:6303 -+#: ../system-config-printer.py:6251 - msgid "No support contacts known" - msgstr "" - --#: ../system-config-printer.py:6307 ../system-config-printer.py:6320 -+#: ../system-config-printer.py:6255 ../system-config-printer.py:6268 - msgid "Not specified." - msgstr "" - - #. Foomatic database problem of some sort. --#: ../system-config-printer.py:6360 -+#: ../system-config-printer.py:6308 - msgid "Database error" - msgstr "ഡേറ്റാബേയ്സില്‍ പിഴവ്" - --#: ../system-config-printer.py:6361 -+#: ../system-config-printer.py:6309 - #, python-format - msgid "The '%s' driver cannot be used with printer '%s %s'." - msgstr "'%s' ഡ്രൈവര്‍ '%s %s' പ്രിന്‍ററിനൊപ്പം ഉപയോഗിക്കുവാന്‍ സാധ്യമല്ല." -@@ -1519,65 +1520,65 @@ msgstr "'%s' ഡ്രൈവര്‍ '% - #. This printer references some XML that is not - #. installed by default. Point the user at the - #. package they need to install. --#: ../system-config-printer.py:6371 -+#: ../system-config-printer.py:6319 - #, python-format - msgid "You will need to install the '%s' package in order to use this driver." - msgstr "ഈ ഡ്രൈവര്‍ ഉപയോഗിക്കുന്നതിനായി നിങ്ങള്‍ക്ക് '%s' പാക്കേജ് ഇന്‍സ്റ്റോള്‍ ചെയ്യേണ്ടതുണ്ട്." - - #. This error came from trying to open the PPD file. --#: ../system-config-printer.py:6378 -+#: ../system-config-printer.py:6326 - msgid "PPD error" - msgstr "PPD പിഴവ്" - --#: ../system-config-printer.py:6380 -+#: ../system-config-printer.py:6328 - msgid "Failed to read PPD file. Possible reason follows:" - msgstr "PPD ഫയല്‍ വായിക്കുവാന്‍ സാധ്യമായില്ല. കാരണങ്ങള്‍ ഇവയാകാം:" - - #. Failed to get PPD downloaded from OpenPrinting XXX --#: ../system-config-printer.py:6397 -+#: ../system-config-printer.py:6345 - msgid "Downloadable drivers" - msgstr "" - --#: ../system-config-printer.py:6398 -+#: ../system-config-printer.py:6346 - msgid "Failed to download PPD." - msgstr "" - --#: ../system-config-printer.py:6405 -+#: ../system-config-printer.py:6353 - #, fuzzy - msgid "fetching PPD" - msgstr "PPD മാറ്റുക" - --#: ../system-config-printer.py:6434 ../system-config-printer.py:6472 -+#: ../system-config-printer.py:6382 ../system-config-printer.py:6420 - #, fuzzy - msgid "No Installable Options" - msgstr "ഇന്‍സ്റ്റോള്‍ ചെയ്യാന്‍ പറ്റുന്ന ഉപാധികള്‍" - --#: ../system-config-printer.py:6520 -+#: ../system-config-printer.py:6468 - #, fuzzy, python-format - msgid "adding printer %s" - msgstr "പ്രിന്‍ററുകള്‍ സജ്ജമാക്കുക" - --#: ../system-config-printer.py:6669 -+#: ../system-config-printer.py:6617 - msgid "Would you like to print a test page?" - msgstr "" - --#: ../system-config-printer.py:6722 -+#: ../system-config-printer.py:6670 - #, fuzzy - msgid "Install driver" - msgstr "ഡ്രൈവര്‍ ലഭ്യമാക്കുക" - --#: ../system-config-printer.py:6723 ../troubleshoot/CheckPPDSanity.py:131 -+#: ../system-config-printer.py:6671 ../troubleshoot/CheckPPDSanity.py:131 - #, fuzzy, python-format - msgid "Printer '%s' requires the %s package but it is not currently installed." - msgstr "" - "പ്രിന്‍റര്‍ '%s'-ന് ആവശ്യമുളള %s പാക്കേജ് നില്‍വില്‍ ഇന്‍സ്റ്റോള്‍ ചെയ്തിട്ടില്ല. ദയവായി ഇത് പ്രിന്‍റര്‍ " - "ഉപയോഗിക്കുന്നതിന് മുന്പായി ഇന്‍സ്റ്റോള്‍ ചെയ്യുക." - --#: ../system-config-printer.py:6739 -+#: ../system-config-printer.py:6687 - msgid "Missing driver" - msgstr "ഡ്രൈവര്‍ ലഭ്യമല്ല" - --#: ../system-config-printer.py:6740 -+#: ../system-config-printer.py:6688 - #, python-format - msgid "" - "Printer '%s' requires the '%s' program but it is not currently installed. " -@@ -1707,133 +1708,128 @@ msgstr "URI ഡിവൈസ് എന് - - #: ../glade/NewPrinterWindow.glade.h:5 - #, fuzzy --msgid "HP Printer (HPLIP) via network" --msgstr "പ്രിന്‍റര്‍ നെയിം" -- --#: ../glade/NewPrinterWindow.glade.h:6 --#, fuzzy - msgid "IPP Printer" - msgstr "പ്രിന്‍റര്‍ നെയിം" - --#: ../glade/NewPrinterWindow.glade.h:7 -+#: ../glade/NewPrinterWindow.glade.h:6 - #, fuzzy - msgid "License Terms" - msgstr "പ്രിന്‍റര്‍ നെയിം" - --#: ../glade/NewPrinterWindow.glade.h:8 -+#: ../glade/NewPrinterWindow.glade.h:7 - msgid "Location of the LPD network printer" - msgstr "LPD നെറ്റ്വര്‍ക്ക് പ്രിന്‍ററിന്‍റെ ലൊക്കേഷന്‍" - --#: ../glade/NewPrinterWindow.glade.h:9 -+#: ../glade/NewPrinterWindow.glade.h:8 - msgid "Location of the network printer" - msgstr "നെറ്റ്വര്‍ക്ക് പ്രിന്‍ററിന്‍റെ ലൊക്കേഷന്‍" - --#: ../glade/NewPrinterWindow.glade.h:10 -+#: ../glade/NewPrinterWindow.glade.h:9 - msgid "Location (optional)" - msgstr "ലൊക്കേഷന്‍ (നിര്‍ബന്ധമില്ല)" - --#: ../glade/NewPrinterWindow.glade.h:11 -+#: ../glade/NewPrinterWindow.glade.h:10 - #, fuzzy - msgid "Network Printer" - msgstr "പുതിയ പ്രിന്‍റര്‍" - --#: ../glade/NewPrinterWindow.glade.h:12 -+#: ../glade/NewPrinterWindow.glade.h:11 - #, fuzzy - msgid "Note" - msgstr "അവ്സ്ഥ" - --#: ../glade/NewPrinterWindow.glade.h:13 -+#: ../glade/NewPrinterWindow.glade.h:12 - #, fuzzy - msgid "Output Quality" - msgstr "അവ്സ്ഥ" - --#: ../glade/NewPrinterWindow.glade.h:14 -+#: ../glade/NewPrinterWindow.glade.h:13 - msgid "Printer Name" - msgstr "പ്രിന്‍റര്‍ നെയിം" - --#: ../glade/NewPrinterWindow.glade.h:15 -+#: ../glade/NewPrinterWindow.glade.h:14 - #, fuzzy - msgid "SMB Printer" - msgstr "പ്രിന്‍റര്‍ നെയിം" - --#: ../glade/NewPrinterWindow.glade.h:16 -+#: ../glade/NewPrinterWindow.glade.h:15 - #, fuzzy - msgid "Select Driver" - msgstr "ഡീഫോള്‍ട്ട് പ്രിന്‍റര്‍" - --#: ../glade/NewPrinterWindow.glade.h:17 -+#: ../glade/NewPrinterWindow.glade.h:16 - msgid "Settings of the serial port" - msgstr "സീരിയല്‍ പോര്‍ട്ടിന്‍റെ സെറ്റിങുകള്‍" - --#: ../glade/NewPrinterWindow.glade.h:18 -+#: ../glade/NewPrinterWindow.glade.h:17 - msgid "smb://[workgroup/]server[:port]/printer" - msgstr "smb://[workgroup/]server[:port]/printer" - --#: ../glade/NewPrinterWindow.glade.h:19 -+#: ../glade/NewPrinterWindow.glade.h:18 - #, fuzzy - msgid "Choose Class Members" - msgstr "" - "പാസ്വേര്‍ഡ് ആവശ്യമുണ്ട്\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:20 -+#: ../glade/NewPrinterWindow.glade.h:19 - #, fuzzy - msgid "Choose Driver" - msgstr "" - "പാസ്വേര്‍ഡ് ആവശ്യമുണ്ട്\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:21 -+#: ../glade/NewPrinterWindow.glade.h:20 - #, fuzzy - msgid "Describe Printer" - msgstr "" - "പാസ്വേര്‍ഡ് ആവശ്യമുണ്ട്\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:22 -+#: ../glade/NewPrinterWindow.glade.h:21 - #, fuzzy - msgid "Existing Settings" - msgstr "" - "പാസ്വേര്‍ഡ് ആവശ്യമുണ്ട്\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:23 -+#: ../glade/NewPrinterWindow.glade.h:22 - #, fuzzy - msgid "Installable Options" - msgstr "" - "പാസ്വേര്‍ഡ് ആവശ്യമുണ്ട്\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:24 -+#: ../glade/NewPrinterWindow.glade.h:23 - #, fuzzy - msgid "Select Device" - msgstr "" - "പാസ്വേര്‍ഡ് ആവശ്യമുണ്ട്\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:25 -+#: ../glade/NewPrinterWindow.glade.h:24 - msgid "Baud Rate" - msgstr "Baud Rate" - --#: ../glade/NewPrinterWindow.glade.h:26 -+#: ../glade/NewPrinterWindow.glade.h:25 - msgid "Browse..." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:27 -+#: ../glade/NewPrinterWindow.glade.h:26 - #, fuzzy - msgid "Comments..." - msgstr "കമന്‍റ്" - --#: ../glade/NewPrinterWindow.glade.h:28 -+#: ../glade/NewPrinterWindow.glade.h:27 - #, fuzzy - msgid "Connection" - msgstr "കണക്ട് ചെയ്യപ്പെടുന്നു" - --#: ../glade/NewPrinterWindow.glade.h:29 -+#: ../glade/NewPrinterWindow.glade.h:28 - msgid "Data Bits" - msgstr "ഡാറ്റാ ബിറ്റുകള്‍" - --#: ../glade/NewPrinterWindow.glade.h:30 -+#: ../glade/NewPrinterWindow.glade.h:29 - msgid "" - "Default\n" - "1200\n" -@@ -1855,7 +1851,7 @@ msgstr "" - "57600\n" - "115200" - --#: ../glade/NewPrinterWindow.glade.h:39 -+#: ../glade/NewPrinterWindow.glade.h:38 - msgid "" - "Default\n" - "8\n" -@@ -1865,7 +1861,7 @@ msgstr "" - "8\n" - "7" - --#: ../glade/NewPrinterWindow.glade.h:42 -+#: ../glade/NewPrinterWindow.glade.h:41 - msgid "" - "Default\n" - "None\n" -@@ -1877,7 +1873,7 @@ msgstr "" - "ഓഡ്\n" - "ഈവന്‍" - --#: ../glade/NewPrinterWindow.glade.h:46 -+#: ../glade/NewPrinterWindow.glade.h:45 - msgid "" - "Default\n" - "None\n" -@@ -1891,120 +1887,120 @@ msgstr "" - "RTS/CTS (ഹാര്‍ഡ്വയര്‍)\n" - "DTR/DSR (ഹാര്‍ഡ്വയര്‍)" - --#: ../glade/NewPrinterWindow.glade.h:51 -+#: ../glade/NewPrinterWindow.glade.h:50 - #: ../glade/PrinterPropertiesDialog.glade.h:35 - msgid "Description:" - msgstr "വിവരണം:" - --#: ../glade/NewPrinterWindow.glade.h:52 ../troubleshoot/DeviceListed.py:40 -+#: ../glade/NewPrinterWindow.glade.h:51 ../troubleshoot/DeviceListed.py:40 - msgid "Device URI" - msgstr "URI ഡിവൈസ് " - --#: ../glade/NewPrinterWindow.glade.h:53 -+#: ../glade/NewPrinterWindow.glade.h:52 - msgid "Device description." - msgstr "ഡിവൈസിന്‍റെ വിവരണം:" - --#: ../glade/NewPrinterWindow.glade.h:54 -+#: ../glade/NewPrinterWindow.glade.h:53 - msgid "DirectJet" - msgstr "DirectJet" - --#: ../glade/NewPrinterWindow.glade.h:56 -+#: ../glade/NewPrinterWindow.glade.h:55 - #, fuzzy - msgid "Driver details" - msgstr "ഡ്രൈവറുകള്‍" - --#: ../glade/NewPrinterWindow.glade.h:57 -+#: ../glade/NewPrinterWindow.glade.h:56 - msgid "Empty" - msgstr "കാലി" - --#: ../glade/NewPrinterWindow.glade.h:58 -+#: ../glade/NewPrinterWindow.glade.h:57 - msgid "Find _Queue..." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:59 -+#: ../glade/NewPrinterWindow.glade.h:58 - msgid "Flow Control" - msgstr "ഫ്ളൊ കണ്ട്രോള്‍" - --#: ../glade/NewPrinterWindow.glade.h:60 -+#: ../glade/NewPrinterWindow.glade.h:59 - msgid "" - "For the printer you have selected there are drivers available for download." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:61 -+#: ../glade/NewPrinterWindow.glade.h:60 - msgid "Free software" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:62 -+#: ../glade/NewPrinterWindow.glade.h:61 - msgid "Graphics:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:63 -+#: ../glade/NewPrinterWindow.glade.h:62 - #, fuzzy - msgid "Host:" - msgstr "ഹോസ്റ്റ്നെയിം" - --#: ../glade/NewPrinterWindow.glade.h:64 -+#: ../glade/NewPrinterWindow.glade.h:63 - msgid "Human-readable description such as \"HP LaserJet with Duplexer\"" - msgstr "\"HP LaserJet with Duplexer\" പോലെയുളള വായിക്കുവാന്‍ സാധ്യമായ വിവരണങ്ങള്‍" - --#: ../glade/NewPrinterWindow.glade.h:65 -+#: ../glade/NewPrinterWindow.glade.h:64 - msgid "Human-readable location such as \"Lab 1\"" - msgstr "\"Lab 1\" പോലെയുളള വായിക്കുവാന്‍ സാധ്യമായ ലൊക്കേഷന്‍" - --#: ../glade/NewPrinterWindow.glade.h:67 -+#: ../glade/NewPrinterWindow.glade.h:66 - msgid "LPD" - msgstr "LPD" - --#: ../glade/NewPrinterWindow.glade.h:68 -+#: ../glade/NewPrinterWindow.glade.h:67 - msgid "License:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:69 -+#: ../glade/NewPrinterWindow.glade.h:68 - #, fuzzy - msgid "Line art:" - msgstr "പ്രിന്‍ററിന്‍റെ അവസ്ഥ:" - --#: ../glade/NewPrinterWindow.glade.h:70 -+#: ../glade/NewPrinterWindow.glade.h:69 - #, fuzzy - msgid "Local Driver" - msgstr "ലോക്കല്‍ പ്രിന്‍ററുകള്‍" - --#: ../glade/NewPrinterWindow.glade.h:71 -+#: ../glade/NewPrinterWindow.glade.h:70 - #, fuzzy - msgid "Make and model:" - msgstr "മെയ്ക്കും മോഡലും:" - --#: ../glade/NewPrinterWindow.glade.h:72 -+#: ../glade/NewPrinterWindow.glade.h:71 - msgid "Manufacturer" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:73 -+#: ../glade/NewPrinterWindow.glade.h:72 - #, fuzzy - msgid "Network" - msgstr "പുതിയ പ്രിന്‍റര്‍" - --#: ../glade/NewPrinterWindow.glade.h:75 -+#: ../glade/NewPrinterWindow.glade.h:74 - msgid "No, I do not accept this license" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:76 -+#: ../glade/NewPrinterWindow.glade.h:75 - msgid "Parity" - msgstr "പാരിറ്റി" - --#: ../glade/NewPrinterWindow.glade.h:78 -+#: ../glade/NewPrinterWindow.glade.h:77 - msgid "Patented algorithms" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:79 -+#: ../glade/NewPrinterWindow.glade.h:78 - msgid "Photo:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:80 -+#: ../glade/NewPrinterWindow.glade.h:79 - #, fuzzy - msgid "Port number:" - msgstr "പോര്‍ട്ട് നംബര്‍" - --#: ../glade/NewPrinterWindow.glade.h:81 -+#: ../glade/NewPrinterWindow.glade.h:80 - #, fuzzy - msgid "" - "PostScript Printer Description (PPD) files can often be found on the driver " -@@ -2015,82 +2011,82 @@ msgstr "" - "disk that comes with the printer. For PostScript printers they are often " - "part of the Windows® driver." - --#: ../glade/NewPrinterWindow.glade.h:82 -+#: ../glade/NewPrinterWindow.glade.h:81 - #, fuzzy - msgid "Printer model:" - msgstr "പ്രിന്‍ററ്‍ ചേറ്‍ത്തിരിക്കുന്നു" - --#: ../glade/NewPrinterWindow.glade.h:83 -+#: ../glade/NewPrinterWindow.glade.h:82 - msgid "Probe" - msgstr "തിരയുക" - --#: ../glade/NewPrinterWindow.glade.h:84 -+#: ../glade/NewPrinterWindow.glade.h:83 - #, fuzzy - msgid "Prompt user if authentication is required" - msgstr "ഓഥന്‍റിക്കേഷന്‍" - --#: ../glade/NewPrinterWindow.glade.h:85 -+#: ../glade/NewPrinterWindow.glade.h:84 - #, fuzzy - msgid "Provide PPD file" - msgstr "PPD ഫൈല്‍ നല്‍കുക" - --#: ../glade/NewPrinterWindow.glade.h:86 -+#: ../glade/NewPrinterWindow.glade.h:85 - msgid "Queue:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:87 -+#: ../glade/NewPrinterWindow.glade.h:86 - msgid "SCSI" - msgstr "SCSI" - --#: ../glade/NewPrinterWindow.glade.h:88 -+#: ../glade/NewPrinterWindow.glade.h:87 - msgid "SMB" - msgstr "SMB" - --#: ../glade/NewPrinterWindow.glade.h:89 -+#: ../glade/NewPrinterWindow.glade.h:88 - msgid "Search for a printer driver to download" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:90 -+#: ../glade/NewPrinterWindow.glade.h:89 - #, fuzzy - msgid "Searching..." - msgstr "പ്രിന്‍ററിന് പുതിയ പേര്" - --#: ../glade/NewPrinterWindow.glade.h:91 -+#: ../glade/NewPrinterWindow.glade.h:90 - msgid "Select A File" - msgstr "ഫൈല്‍ തിരഞ്ഞെടുക്കുക" - --#: ../glade/NewPrinterWindow.glade.h:92 -+#: ../glade/NewPrinterWindow.glade.h:91 - #, fuzzy - msgid "Select printer from database" - msgstr "ഡേറ്റാബേയ്സില്‍ നിന്നും പ്രിന്‍റര്‍ തിരഞ്ഞെടുക്കുക" - --#: ../glade/NewPrinterWindow.glade.h:93 -+#: ../glade/NewPrinterWindow.glade.h:92 - msgid "Serial" - msgstr "സീരിയല്‍" - --#: ../glade/NewPrinterWindow.glade.h:94 -+#: ../glade/NewPrinterWindow.glade.h:93 - #, fuzzy - msgid "Set authentication details now" - msgstr "ഓഥന്‍റിക്കേഷന്‍" - --#: ../glade/NewPrinterWindow.glade.h:95 -+#: ../glade/NewPrinterWindow.glade.h:94 - msgid "Short name for this printer such as \"laserjet\"" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:96 -+#: ../glade/NewPrinterWindow.glade.h:95 - msgid "Supplier:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:97 -+#: ../glade/NewPrinterWindow.glade.h:96 - msgid "Support:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:98 -+#: ../glade/NewPrinterWindow.glade.h:97 - #, fuzzy - msgid "Text:" - msgstr "റീസെറ്റ് ചെയ്യുക" - --#: ../glade/NewPrinterWindow.glade.h:99 -+#: ../glade/NewPrinterWindow.glade.h:98 - msgid "" - "The foomatic printer database contains various manufacturer provided " - "PostScript Printer Description (PPD) files and also can generate PPD files " -@@ -2104,20 +2100,20 @@ msgstr "" - "provided PPD files provide better access to the specific features of the " - "printer." - --#: ../glade/NewPrinterWindow.glade.h:100 -+#: ../glade/NewPrinterWindow.glade.h:99 - msgid "" - "These drivers do not come from your operating system supplier and will not " - "be covered by their commercial support. See the support and license terms " - "of the driver's supplier." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:101 -+#: ../glade/NewPrinterWindow.glade.h:100 - msgid "" - "This driver supports additional hardware that may be installed in the " - "printer." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:102 -+#: ../glade/NewPrinterWindow.glade.h:101 - msgid "" - "This is done by assuming that options with the same name do have the same " - "meaning. Settings of options that are not present in the new PPD will be " -@@ -2127,50 +2123,50 @@ msgstr "" - "meaning. Settings of options that are not present in the new PPD will be " - "lost and options only present in the new PPD will be set to default." - --#: ../glade/NewPrinterWindow.glade.h:103 -+#: ../glade/NewPrinterWindow.glade.h:102 - msgid "" - "This way all current option settings will be lost. The default settings of " - "the new PPD will be used. " - msgstr "" - "ഈ വിധം നിലവിലുളള എല്ലാ സെറ്റിങ്ങുകളും നഷ്ടമാകും. പുതിയ PPDയുടെ സെറ്റിങ് ഉപയോഗത്തില്‍ വരും. " - --#: ../glade/NewPrinterWindow.glade.h:104 -+#: ../glade/NewPrinterWindow.glade.h:103 - msgid "Try to copy the option settings over from the old PPD. " - msgstr "പഴയ PPDയില്‍ നിന്നും സെറ്റിങ്ങുകള്‍ പകര്‍ത്തുവാന്‍ ശ്രമിക്കുക. " - --#: ../glade/NewPrinterWindow.glade.h:105 -+#: ../glade/NewPrinterWindow.glade.h:104 - msgid "URI:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:107 -+#: ../glade/NewPrinterWindow.glade.h:106 - msgid "Use the new PPD (Postscript Printer Description) as is." - msgstr "പുതിയ PPD ഉപയോഗിക്കുക(Postscript Printer Description) ." - --#: ../glade/NewPrinterWindow.glade.h:109 -+#: ../glade/NewPrinterWindow.glade.h:108 - msgid "" - "With this choice no driver download will be performed. In the next steps a " - "locally installed driver will be selected." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:110 -+#: ../glade/NewPrinterWindow.glade.h:109 - #, fuzzy - msgid "Yes, I accept this license" - msgstr "ജോലികള്‍ അംഗീകരിക്കുക" - --#: ../glade/NewPrinterWindow.glade.h:111 -+#: ../glade/NewPrinterWindow.glade.h:110 - msgid "_Search" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:112 -+#: ../glade/NewPrinterWindow.glade.h:111 - msgid "_Verify..." - msgstr "ഉറപ്പ് വരുത്തുക(_V)..." - --#: ../glade/NewPrinterWindow.glade.h:113 -+#: ../glade/NewPrinterWindow.glade.h:112 - #: ../glade/PrinterPropertiesDialog.glade.h:128 - msgid "move left" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:114 -+#: ../glade/NewPrinterWindow.glade.h:113 - #: ../glade/PrinterPropertiesDialog.glade.h:129 - #, fuzzy - msgid "move right" -@@ -3068,7 +3064,7 @@ msgstr "" - msgid "Remember to load paper of type '%s' into the printer first." - msgstr "" - --#: ../troubleshoot/PrintTestPage.py:399 -+#: ../troubleshoot/PrintTestPage.py:416 - msgid "Error submitting test page" - msgstr "" - -@@ -3265,6 +3261,10 @@ msgid "Select default printer" - msgstr "ഡീഫോള്‍ട്ട് പ്രിന്‍റര്‍ നിര്‍മ്മിക്കുക" - - #, fuzzy -+#~ msgid "HP Printer (HPLIP) via network" -+#~ msgstr "പ്രിന്‍റര്‍ നെയിം" -+ -+#, fuzzy - #~ msgid "Not Found" - #~ msgstr "ലഭ്യമല്ല" - -diff -up system-config-printer-1.1.5/po/mr.po.git-1.1.x system-config-printer-1.1.5/po/mr.po ---- system-config-printer-1.1.5/po/mr.po.git-1.1.x 2009-03-03 22:21:46.000000000 +0000 -+++ system-config-printer-1.1.5/po/mr.po 2009-03-10 17:43:31.000000000 +0000 -@@ -7,7 +7,7 @@ msgid "" - msgstr "" - "Project-Id-Version: mr\n" - "Report-Msgid-Bugs-To: https://bugzilla.redhat.com/bugzilla\n" --"POT-Creation-Date: 2009-03-02 23:22+0000\n" -+"POT-Creation-Date: 2009-03-10 16:51+0000\n" - "PO-Revision-Date: 2006-12-11 20:34+0530\n" - "Last-Translator: Rahul Bhalerao \n" - "Language-Team: Marathi\n" -@@ -54,11 +54,11 @@ msgstr "" - msgid "Enter IP address" - msgstr "मुद्रकनाव" - --#: ../authconn.py:35 ../glade/NewPrinterWindow.glade.h:108 -+#: ../authconn.py:35 ../glade/NewPrinterWindow.glade.h:107 - msgid "Username:" - msgstr "वापरकर्त्याचे नाव" - --#: ../authconn.py:36 ../glade/NewPrinterWindow.glade.h:77 -+#: ../authconn.py:36 ../glade/NewPrinterWindow.glade.h:76 - msgid "Password:" - msgstr "गुप्तशब्द:" - -@@ -67,7 +67,7 @@ msgstr "गुप्तशब्द:" - msgid "Domain:" - msgstr "ठिकाण:" - --#: ../authconn.py:46 -+#: ../authconn.py:46 ../authconn.py:409 - #, fuzzy - msgid "Authentication" - msgstr "अधिप्रमाणन" -@@ -76,44 +76,53 @@ msgstr "अधिप्रमाण - msgid "Remember password" - msgstr "" - --#: ../authconn.py:211 ../authconn.py:232 -+#: ../authconn.py:208 -+#, python-format -+msgid "Unauthorized request (%s)" -+msgstr "" -+ -+#: ../authconn.py:209 -+msgid "You are not authorized to carry out therequested action." -+msgstr "" -+ -+#: ../authconn.py:212 ../authconn.py:233 - #, fuzzy - msgid "Operation canceled" - msgstr "कार्य धोरण:" - --#: ../authconn.py:253 -+#: ../authconn.py:250 - #, fuzzy, python-format - msgid "CUPS server error (%s)" - msgstr "CUPS सेवक चूक" - --#: ../authconn.py:255 ../errordialogs.py:57 --#: ../troubleshoot/PrintTestPage.py:400 -+#: ../authconn.py:252 ../errordialogs.py:56 ../errordialogs.py:70 -+msgid "CUPS server error" -+msgstr "CUPS सेवक चूक" -+ -+#: ../authconn.py:261 ../errordialogs.py:57 -+#: ../troubleshoot/PrintTestPage.py:417 - #, python-format - msgid "There was an error during the CUPS operation: '%s'." - msgstr "CUPS क्रियेदरम्यान चूक झाली होती: '%s'" - --#: ../authconn.py:258 -+#: ../authconn.py:264 - msgid "Retry" - msgstr "" - --#: ../authconn.py:379 ../authconn.py:381 ../errordialogs.py:65 ../pysmb.py:75 -+#: ../authconn.py:385 ../authconn.py:387 ../errordialogs.py:65 ../pysmb.py:75 - #: ../pysmb.py:77 - msgid "Not authorized" - msgstr "अधिकृत नाही" - --#: ../authconn.py:382 ../pysmb.py:78 -+#: ../authconn.py:388 ../pysmb.py:78 - msgid "The password may be incorrect." - msgstr "गुप्तशब्द चुकीचा असू शकतो." - --#: ../authconn.py:400 -+#: ../authconn.py:407 - #, fuzzy, python-format - msgid "Authentication (%s)" - msgstr "अधिप्रमाणन" - --#: ../errordialogs.py:56 ../errordialogs.py:70 --msgid "CUPS server error" --msgstr "CUPS सेवक चूक" -- - #: ../errordialogs.py:66 - msgid "" - "The password may be incorrect, or the server may be configured to deny " -@@ -141,7 +150,7 @@ msgstr "सुधारणा आवश - msgid "Server error" - msgstr "सेवक चूक" - --#: ../errordialogs.py:82 ../system-config-printer.py:1219 -+#: ../errordialogs.py:82 ../system-config-printer.py:1223 - msgid "Not connected" - msgstr "जोडले नाही" - -@@ -163,7 +172,7 @@ msgstr "" - msgid "_New Group from Selection" - msgstr "" - --#: ../GroupsPane.py:98 ../system-config-printer.py:393 -+#: ../GroupsPane.py:98 ../system-config-printer.py:397 - #, fuzzy - msgid "_Rename" - msgstr "वापरकर्त्याचे नाव" -@@ -233,7 +242,7 @@ msgid "Document" - msgstr "टिप्पणी" - - #: ../jobviewer.py:212 ../my-default-printer.py:153 --#: ../system-config-printer.py:366 ../system-config-printer.py:1367 -+#: ../system-config-printer.py:370 ../system-config-printer.py:1371 - #: ../troubleshoot/PrintTestPage.py:84 - msgid "Printer" - msgstr "मुद्रक" -@@ -272,8 +281,8 @@ msgstr "" - - #: ../jobviewer.py:386 ../jobviewer.py:451 ../jobviewer.py:452 - #: ../jobviewer.py:492 ../jobviewer.py:600 ../jobviewer.py:727 --#: ../jobviewer.py:1196 ../jobviewer.py:1222 ../system-config-printer.py:2546 --#: ../glade/NewPrinterWindow.glade.h:106 -+#: ../jobviewer.py:1196 ../jobviewer.py:1222 ../system-config-printer.py:2556 -+#: ../glade/NewPrinterWindow.glade.h:105 - #: ../troubleshoot/ChooseNetworkPrinter.py:101 - #: ../troubleshoot/ChooseNetworkPrinter.py:102 - #: ../troubleshoot/ChooseNetworkPrinter.py:105 -@@ -364,12 +373,12 @@ msgstr "" - msgid "Pending" - msgstr "मुद्रण" - --#: ../jobviewer.py:591 ../system-config-printer.py:186 -+#: ../jobviewer.py:591 ../system-config-printer.py:190 - #: ../troubleshoot/PrintTestPage.py:43 - msgid "Processing" - msgstr "प्रक्रीयेत" - --#: ../jobviewer.py:592 ../system-config-printer.py:188 -+#: ../jobviewer.py:592 ../system-config-printer.py:192 - #: ../troubleshoot/PrintTestPage.py:44 - msgid "Stopped" - msgstr "थांबलेले" -@@ -488,8 +497,8 @@ msgstr "" - msgid "_Set Default" - msgstr "मुलभूत" - --#: ../my-default-printer.py:158 ../system-config-printer.py:423 --#: ../system-config-printer.py:3660 ../troubleshoot/ChooseNetworkPrinter.py:37 -+#: ../my-default-printer.py:158 ../system-config-printer.py:427 -+#: ../system-config-printer.py:3675 ../troubleshoot/ChooseNetworkPrinter.py:37 - #: ../troubleshoot/ChoosePrinter.py:38 - #, fuzzy - msgid "Location" -@@ -523,7 +532,7 @@ msgstr "मुलभूत मुद् - msgid "Authenticated" - msgstr "अधिप्रमाणन" - --#: ../ppdippstr.py:50 ../system-config-printer.py:6259 -+#: ../ppdippstr.py:50 ../system-config-printer.py:6207 - #, fuzzy - msgid "None" - msgstr "काही नाही" -@@ -742,133 +751,133 @@ msgstr "" - msgid "1200 dpi, photo, black + color cartridge, photo paper" - msgstr "" - --#: ../system-config-printer.py:127 -+#: ../system-config-printer.py:131 - msgid "To do this, select System->Administration->Firewall from the main menu." - msgstr "" - --#: ../system-config-printer.py:185 -+#: ../system-config-printer.py:189 - msgid "Idle" - msgstr "निष्क्रीय" - --#: ../system-config-printer.py:187 -+#: ../system-config-printer.py:191 - msgid "Busy" - msgstr "व्यस्त" - --#: ../system-config-printer.py:372 ../system-config-printer.py:1373 -+#: ../system-config-printer.py:376 ../system-config-printer.py:1377 - #, fuzzy - msgid "Class" - msgstr "नविन वर्ग" - --#: ../system-config-printer.py:399 -+#: ../system-config-printer.py:403 - #, fuzzy - msgid "Set As De_fault" - msgstr "मुलभूत" - --#: ../system-config-printer.py:403 -+#: ../system-config-printer.py:407 - #, fuzzy - msgid "_Create class" - msgstr "दूरस्थ वर्ग" - --#: ../system-config-printer.py:405 -+#: ../system-config-printer.py:409 - #, fuzzy - msgid "View Print _Queue" - msgstr "नविन मुद्रक" - --#: ../system-config-printer.py:407 -+#: ../system-config-printer.py:411 - msgid "_Add to Group" - msgstr "" - --#: ../system-config-printer.py:409 -+#: ../system-config-printer.py:413 - msgid "Save Results as _Group" - msgstr "" - --#: ../system-config-printer.py:411 -+#: ../system-config-printer.py:415 - msgid "Save Filter as _Search Group" - msgstr "" - --#: ../system-config-printer.py:415 -+#: ../system-config-printer.py:419 - #, fuzzy - msgid "E_nabled" - msgstr "कार्यान्वित" - --#: ../system-config-printer.py:417 -+#: ../system-config-printer.py:421 - #, fuzzy - msgid "_Shared" - msgstr "भागलेले" - --#: ../system-config-printer.py:421 ../troubleshoot/ChooseNetworkPrinter.py:35 -+#: ../system-config-printer.py:425 ../troubleshoot/ChooseNetworkPrinter.py:35 - #: ../troubleshoot/ChoosePrinter.py:36 ../troubleshoot/DeviceListed.py:36 - msgid "Name" - msgstr "नाव" - --#: ../system-config-printer.py:422 -+#: ../system-config-printer.py:426 - #, fuzzy - msgid "Description" - msgstr "वर्णन:" - --#: ../system-config-printer.py:424 -+#: ../system-config-printer.py:428 - msgid "Manufacturer / Model" - msgstr "" - - #. Printer state reasons list --#: ../system-config-printer.py:499 -+#: ../system-config-printer.py:503 - msgid "Message" - msgstr "" - --#: ../system-config-printer.py:534 -+#: ../system-config-printer.py:538 - #, fuzzy - msgid "Problems?" - msgstr "प्रोब" - --#: ../system-config-printer.py:637 ../system-config-printer.py:639 -+#: ../system-config-printer.py:641 ../system-config-printer.py:643 - #, fuzzy - msgid "Members of this class" - msgstr "या वर्गाचे सदस्य" - --#: ../system-config-printer.py:638 ../system-config-printer.py:640 -+#: ../system-config-printer.py:642 ../system-config-printer.py:644 - msgid "Others" - msgstr "इतर" - --#: ../system-config-printer.py:641 -+#: ../system-config-printer.py:645 - msgid "Devices" - msgstr "यंत्रे" - --#: ../system-config-printer.py:642 -+#: ../system-config-printer.py:646 - #, fuzzy - msgid "Connections" - msgstr "जोडत आहे" - --#: ../system-config-printer.py:643 -+#: ../system-config-printer.py:647 - msgid "Makes" - msgstr "बनवते" - --#: ../system-config-printer.py:644 -+#: ../system-config-printer.py:648 - msgid "Models" - msgstr "नमुने" - --#: ../system-config-printer.py:645 -+#: ../system-config-printer.py:649 - msgid "Drivers" - msgstr "ड्राइवर" - --#: ../system-config-printer.py:646 ../glade/NewPrinterWindow.glade.h:55 -+#: ../system-config-printer.py:650 ../glade/NewPrinterWindow.glade.h:54 - msgid "Downloadable Drivers" - msgstr "" - --#: ../system-config-printer.py:647 -+#: ../system-config-printer.py:651 - msgid "Users" - msgstr "उपयोक्ते" - --#: ../system-config-printer.py:682 -+#: ../system-config-printer.py:686 - msgid "Automatic rotation" - msgstr "" - --#: ../system-config-printer.py:989 -+#: ../system-config-printer.py:993 - #, fuzzy, python-format - msgid "Printer Properties - '%s' on %s" - msgstr "मुद्रक पर्याय" - - #. The Conflict button was pressed. --#: ../system-config-printer.py:996 -+#: ../system-config-printer.py:1000 - #, fuzzy - msgid "" - "There are conflicting options.\n" -@@ -879,81 +888,81 @@ msgstr "" - "हे संघर्ष सोडवल्यानंतरच पर्याय\n" - "लागू केले जाऊ शकतात." - --#: ../system-config-printer.py:1214 -+#: ../system-config-printer.py:1218 - #, python-format - msgid "Printer configuration - %s" - msgstr "मुद्रक व्यूहरचना - %s" - --#: ../system-config-printer.py:1217 -+#: ../system-config-printer.py:1221 - #, python-format - msgid "Connected to %s" - msgstr "%s ला जोडले" - - #. Update our copy of the printer's settings. --#: ../system-config-printer.py:1257 ../system-config-printer.py:2042 -+#: ../system-config-printer.py:1261 ../system-config-printer.py:2046 - msgid "obtaining queue details" - msgstr "" - --#: ../system-config-printer.py:1295 -+#: ../system-config-printer.py:1299 - msgid "Remove from Group" - msgstr "" - --#: ../system-config-printer.py:1361 -+#: ../system-config-printer.py:1365 - #, fuzzy - msgid "Network printer (discovered)" - msgstr "नविन मुद्रक" - --#: ../system-config-printer.py:1364 -+#: ../system-config-printer.py:1368 - msgid "Network class (discovered)" - msgstr "" - --#: ../system-config-printer.py:1370 ../system-config-printer.py:5524 --#: ../system-config-printer.py:5594 ../system-config-printer.py:5596 -+#: ../system-config-printer.py:1374 ../system-config-printer.py:5519 -+#: ../system-config-printer.py:5589 ../system-config-printer.py:5591 - msgid "Fax" - msgstr "" - --#: ../system-config-printer.py:1376 ../system-config-printer.py:1382 -+#: ../system-config-printer.py:1380 ../system-config-printer.py:1386 - #: ../troubleshoot/LocalOrRemote.py:30 - #, fuzzy - msgid "Network printer" - msgstr "नविन मुद्रक" - --#: ../system-config-printer.py:1379 -+#: ../system-config-printer.py:1383 - #, fuzzy - msgid "Network print share" - msgstr "नविन मुद्रक" - --#: ../system-config-printer.py:1508 ../glade/ConnectingDialog.glade.h:2 -+#: ../system-config-printer.py:1512 ../glade/ConnectingDialog.glade.h:2 - #, no-c-format, python-format - msgid "Opening connection to %s" - msgstr "" - --#: ../system-config-printer.py:1887 -+#: ../system-config-printer.py:1891 - msgid "Installable Options" - msgstr "प्रतिष्ठापनयोग्य पर्याय" - --#: ../system-config-printer.py:1888 -+#: ../system-config-printer.py:1892 - #: ../glade/PrinterPropertiesDialog.glade.h:109 - msgid "Printer Options" - msgstr "मुद्रक पर्याय" - --#: ../system-config-printer.py:1924 -+#: ../system-config-printer.py:1928 - #, python-format - msgid "modifying class %s" - msgstr "" - --#: ../system-config-printer.py:1926 ../system-config-printer.py:3019 --#: ../system-config-printer.py:3044 ../system-config-printer.py:6547 --#: ../system-config-printer.py:6559 ../system-config-printer.py:6581 -+#: ../system-config-printer.py:1930 ../system-config-printer.py:3037 -+#: ../system-config-printer.py:3062 ../system-config-printer.py:6495 -+#: ../system-config-printer.py:6507 ../system-config-printer.py:6529 - #, fuzzy, python-format - msgid "modifying printer %s" - msgstr "मुद्रक व्यूहरचित करा" - --#: ../system-config-printer.py:1941 -+#: ../system-config-printer.py:1945 - msgid "This will delete this class!" - msgstr "हे या वर्गास नष्ट करेल!" - --#: ../system-config-printer.py:1942 -+#: ../system-config-printer.py:1946 - msgid "Proceed anyway?" - msgstr "तरिही पुढे जावे?" - -@@ -961,69 +970,69 @@ msgstr "तरिही पुढे ज - #. but we have never fetched the server settings to see whether - #. the server is publishing shared printers. Fetch the settings - #. now so that we can update the "not published" label if necessary. --#: ../system-config-printer.py:2030 ../system-config-printer.py:3203 -+#: ../system-config-printer.py:2034 ../system-config-printer.py:3221 - #, fuzzy - msgid "fetching server settings" - msgstr "पायाभूत सेवक रचना" - --#: ../system-config-printer.py:2100 -+#: ../system-config-printer.py:2104 - #, fuzzy - msgid "Set Default Printer" - msgstr "मुलभूत मुद्रक बनवा" - --#: ../system-config-printer.py:2102 -+#: ../system-config-printer.py:2106 - msgid "Do you want to set this as the system-wide default printer?" - msgstr "" - --#: ../system-config-printer.py:2104 -+#: ../system-config-printer.py:2108 - #, fuzzy - msgid "Set as the _system-wide default printer" - msgstr "हा मुलभूत मुद्रक आहे" - --#: ../system-config-printer.py:2106 -+#: ../system-config-printer.py:2110 - msgid "_Clear my personal default setting" - msgstr "" - --#: ../system-config-printer.py:2107 -+#: ../system-config-printer.py:2111 - #, fuzzy - msgid "Set as my _personal default printer" - msgstr "मुलभूत मुद्रक बनवा" - --#: ../system-config-printer.py:2112 -+#: ../system-config-printer.py:2116 - #, fuzzy - msgid "setting default printer" - msgstr "मुलभूत मुद्रक बनवा" - --#: ../system-config-printer.py:2169 -+#: ../system-config-printer.py:2173 - #, fuzzy - msgid "printing test page" - msgstr "कसोटी पृष्ठ छापा" - --#: ../system-config-printer.py:2182 ../system-config-printer.py:2217 --#: ../system-config-printer.py:5418 -+#: ../system-config-printer.py:2186 ../system-config-printer.py:2221 -+#: ../system-config-printer.py:5413 - msgid "Not possible" - msgstr "शक्य नाही" - --#: ../system-config-printer.py:2183 ../system-config-printer.py:2218 -+#: ../system-config-printer.py:2187 ../system-config-printer.py:2222 - msgid "" - "The remote server did not accept the print job, most likely because the " - "printer is not shared." - msgstr "" - --#: ../system-config-printer.py:2195 ../system-config-printer.py:2210 -+#: ../system-config-printer.py:2199 ../system-config-printer.py:2214 - msgid "Submitted" - msgstr "दाखल" - --#: ../system-config-printer.py:2196 -+#: ../system-config-printer.py:2200 - #, fuzzy, python-format - msgid "Test page submitted as job %d" - msgstr "कसोटी" - --#: ../system-config-printer.py:2203 -+#: ../system-config-printer.py:2207 - msgid "sending maintenance command" - msgstr "" - --#: ../system-config-printer.py:2211 -+#: ../system-config-printer.py:2215 - #, fuzzy, python-format - msgid "Maintenance command submitted as job %d" - msgstr "कसोटी" -@@ -1031,76 +1040,76 @@ msgstr "कसोटी" - #. The underlying cupsGetPPD2() function returned NULL without - #. setting an IPP error, so it'll be something like a failed - #. connection. --#: ../system-config-printer.py:2285 ../system-config-printer.py:2381 -+#: ../system-config-printer.py:2289 ../system-config-printer.py:2385 - msgid "Error" - msgstr "" - --#: ../system-config-printer.py:2286 -+#: ../system-config-printer.py:2290 - #, fuzzy - msgid "There was a problem connecting to the CUPS server." - msgstr "CUPS क्रियेदरम्यान चूक झाली होती: '%s'" - --#: ../system-config-printer.py:2382 -+#: ../system-config-printer.py:2386 - #, python-format - msgid "Option '%s' has value '%s' and cannot be edited." - msgstr "" - --#: ../system-config-printer.py:2466 -+#: ../system-config-printer.py:2476 - msgid "Marker levels are not reported for this printer." - msgstr "" - --#: ../system-config-printer.py:2763 -+#: ../system-config-printer.py:2773 - #, fuzzy - msgid "Cannot Rename" - msgstr "वापरकर्त्याचे नाव" - --#: ../system-config-printer.py:2764 -+#: ../system-config-printer.py:2774 - msgid "There are queued jobs." - msgstr "" - --#: ../system-config-printer.py:2822 -+#: ../system-config-printer.py:2840 - #, fuzzy - msgid "renaming printer" - msgstr "मुद्रक व्यूहरचित करा" - - #. for classes make sure all members - #. will get added --#: ../system-config-printer.py:2907 -+#: ../system-config-printer.py:2925 - #, fuzzy - msgid "copying printer" - msgstr "मुद्रक व्यूहरचित करा" - --#: ../system-config-printer.py:2971 -+#: ../system-config-printer.py:2989 - #, fuzzy, python-format - msgid "Really delete class '%s'?" - msgstr "खरच %s %s नष्ट करावे?" - --#: ../system-config-printer.py:2973 -+#: ../system-config-printer.py:2991 - #, fuzzy, python-format - msgid "Really delete printer '%s'?" - msgstr "खरच %s %s नष्ट करावे?" - --#: ../system-config-printer.py:2975 -+#: ../system-config-printer.py:2993 - #, fuzzy - msgid "Really delete selected destinations?" - msgstr "खरच %s %s नष्ट करावे?" - --#: ../system-config-printer.py:2996 -+#: ../system-config-printer.py:3014 - #, fuzzy, python-format - msgid "deleting printer %s" - msgstr "मुद्रक व्यूहरचित करा" - --#: ../system-config-printer.py:3070 -+#: ../system-config-printer.py:3088 - msgid "Publish Shared Printers" - msgstr "" - --#: ../system-config-printer.py:3071 -+#: ../system-config-printer.py:3089 - msgid "" - "Shared printers are not available to other people unless the 'Publish shared " - "printers' option is enabled in the server settings." - msgstr "" - --#: ../system-config-printer.py:3264 -+#: ../system-config-printer.py:3282 - #, fuzzy - msgid "modifying server settings" - msgstr "पायाभूत सेवक रचना" -@@ -1111,105 +1120,105 @@ msgstr "पायाभूत से - #. be unblocked. Unfortunately, this is not yet possible - #. (bug #440469). However, we can display a dialog to suggest - #. that now might be a good time to review the firewall settings. --#: ../system-config-printer.py:3289 -+#: ../system-config-printer.py:3307 - msgid "Review Firewall" - msgstr "" - --#: ../system-config-printer.py:3290 -+#: ../system-config-printer.py:3308 - msgid "" - "You may need to adjust the firewall to allow network printing to this " - "computer." - msgstr "" - --#: ../system-config-printer.py:3623 -+#: ../system-config-printer.py:3638 - msgid "Browsing not available (pysmbc not installed)" - msgstr "" - - #. SMB list columns --#: ../system-config-printer.py:3629 -+#: ../system-config-printer.py:3644 - msgid "Share" - msgstr "भाग" - --#: ../system-config-printer.py:3635 -+#: ../system-config-printer.py:3650 - msgid "Comment" - msgstr "टिप्पणी" - - #. IPP list columns --#: ../system-config-printer.py:3654 -+#: ../system-config-printer.py:3669 - msgid "Queue" - msgstr "" - --#: ../system-config-printer.py:3668 -+#: ../system-config-printer.py:3683 - #, fuzzy - msgid "" - "PostScript Printer Description files (*.ppd, *.PPD, *.ppd.gz, *.PPD.gz, *." - "PPD.GZ)" - msgstr "पोस्टस्क्रिप्ट मुद्रक वर्णन (*.ppd[.gz])" - --#: ../system-config-printer.py:3677 -+#: ../system-config-printer.py:3692 - msgid "All files (*)" - msgstr "" - --#: ../system-config-printer.py:3713 ../system-config-printer.py:5970 --#: ../system-config-printer.py:6008 ../applet.py:124 -+#: ../system-config-printer.py:3728 ../system-config-printer.py:5918 -+#: ../system-config-printer.py:5956 ../applet.py:124 - #, fuzzy - msgid "Search" - msgstr "मुद्रकासाठी नविन नाव" - --#: ../system-config-printer.py:3736 ../system-config-printer.py:3760 --#: ../glade/NewPrinterWindow.glade.h:74 -+#: ../system-config-printer.py:3751 ../system-config-printer.py:3775 -+#: ../glade/NewPrinterWindow.glade.h:73 - msgid "New Printer" - msgstr "नविन मुद्रक" - --#: ../system-config-printer.py:3747 -+#: ../system-config-printer.py:3762 - msgid "New Class" - msgstr "नविन वर्ग" - --#: ../system-config-printer.py:3752 -+#: ../system-config-printer.py:3767 - msgid "Change Device URI" - msgstr "यंत्र URI बदला" - --#: ../system-config-printer.py:3758 -+#: ../system-config-printer.py:3773 - msgid "Change Driver" - msgstr "ड्राइवर बदला" - --#: ../system-config-printer.py:3927 ../system-config-printer.py:3993 --#: ../system-config-printer.py:4289 ../system-config-printer.py:4487 --#: ../system-config-printer.py:5772 ../system-config-printer.py:5995 -+#: ../system-config-printer.py:3942 ../system-config-printer.py:4008 -+#: ../system-config-printer.py:4304 ../system-config-printer.py:4502 -+#: ../system-config-printer.py:5762 ../system-config-printer.py:5943 - msgid "Searching" - msgstr "" - --#: ../system-config-printer.py:3928 -+#: ../system-config-printer.py:3943 - #, fuzzy - msgid "Searching for downloadable drivers" - msgstr "मुद्रकासाठी नविन नाव" - --#: ../system-config-printer.py:3994 ../system-config-printer.py:4290 -+#: ../system-config-printer.py:4009 ../system-config-printer.py:4305 - msgid "Searching for drivers" - msgstr "" - --#: ../system-config-printer.py:4488 ../system-config-printer.py:5773 -+#: ../system-config-printer.py:4503 ../system-config-printer.py:5763 - #, fuzzy - msgid "Searching for printers" - msgstr "मुद्रकासाठी नविन नाव" - --#: ../system-config-printer.py:4497 -+#: ../system-config-printer.py:4512 - #, fuzzy - msgid "fetching device list" - msgstr "पायाभूत सेवक रचना" - - #. Tell the user why he needs the plugin --#: ../system-config-printer.py:4579 -+#: ../system-config-printer.py:4594 - msgid "For this printer a proprietary driver plugin from HP is available.\n" - msgstr "" - --#: ../system-config-printer.py:4582 -+#: ../system-config-printer.py:4597 - msgid "" - "The installation of the plugin is required for your printer to work.\n" - "\n" - msgstr "" - --#: ../system-config-printer.py:4585 -+#: ../system-config-printer.py:4600 - msgid "" - "Installing the plugin is optional, it completes or enhances the " - "functionality\n" -@@ -1217,293 +1226,285 @@ msgid "" - "\n" - msgstr "" - --#: ../system-config-printer.py:4589 -+#: ../system-config-printer.py:4604 - msgid "The plugin provides the following features:\n" - msgstr "" - --#: ../system-config-printer.py:4592 -+#: ../system-config-printer.py:4607 - msgid " - Printing support\n" - msgstr "" - --#: ../system-config-printer.py:4595 -+#: ../system-config-printer.py:4610 - msgid " - Faster printing\n" - msgstr "" - --#: ../system-config-printer.py:4598 -+#: ../system-config-printer.py:4613 - msgid " - Better printout quality\n" - msgstr "" - --#: ../system-config-printer.py:4601 -+#: ../system-config-printer.py:4616 - msgid " - Extra printing features\n" - msgstr "" - --#: ../system-config-printer.py:4604 -+#: ../system-config-printer.py:4619 - msgid " - Scanning support\n" - msgstr "" - --#: ../system-config-printer.py:4607 -+#: ../system-config-printer.py:4622 - msgid " - Faster scanning\n" - msgstr "" - --#: ../system-config-printer.py:4610 -+#: ../system-config-printer.py:4625 - msgid " - Better scanning image quality\n" - msgstr "" - --#: ../system-config-printer.py:4613 -+#: ../system-config-printer.py:4628 - msgid " - Faxing support\n" - msgstr "" - --#: ../system-config-printer.py:4616 -+#: ../system-config-printer.py:4631 - msgid " - Extra fax features\n" - msgstr "" - --#: ../system-config-printer.py:4619 -+#: ../system-config-printer.py:4634 - msgid " - Better Input/Output support\n" - msgstr "" - --#: ../system-config-printer.py:4622 -+#: ../system-config-printer.py:4637 - msgid " - Extra user interface features\n" - msgstr "" - --#: ../system-config-printer.py:4625 -+#: ../system-config-printer.py:4640 - msgid " - Other extra features\n" - msgstr "" - --#: ../system-config-printer.py:4630 -+#: ../system-config-printer.py:4645 - #, fuzzy - msgid "Install plugin" - msgstr "प्रतिष्ठापनयोग्य पर्याय" - --#: ../system-config-printer.py:4631 -+#: ../system-config-printer.py:4646 - #, fuzzy - msgid "Do not set up printer" - msgstr "मुद्रक प्रतिलिपी करा" - --#: ../system-config-printer.py:4632 -+#: ../system-config-printer.py:4647 - msgid "Set up without plugin" - msgstr "" - --#: ../system-config-printer.py:4634 ../troubleshoot/PrintTestPage.py:118 -+#: ../system-config-printer.py:4649 ../troubleshoot/PrintTestPage.py:118 - msgid "Yes" - msgstr "" - --#: ../system-config-printer.py:4635 ../troubleshoot/PrintTestPage.py:119 -+#: ../system-config-printer.py:4650 ../troubleshoot/PrintTestPage.py:119 - msgid "No" - msgstr "" - --#: ../system-config-printer.py:4809 ../system-config-printer.py:4813 -+#: ../system-config-printer.py:4824 ../system-config-printer.py:4828 - msgid " (Current)" - msgstr " (चालू)" - --#: ../system-config-printer.py:4845 --msgid "HP Printer (HPLIP)" --msgstr "" -- --#: ../system-config-printer.py:4886 -+#: ../system-config-printer.py:4881 - msgid "Other" - msgstr "इतर" - - #. device-info - #. PhysicalDevice obj - #. Separator? --#: ../system-config-printer.py:4902 -+#: ../system-config-printer.py:4897 - #, fuzzy - msgid "Network Printer" - msgstr "नविन मुद्रक" - --#: ../system-config-printer.py:4906 -+#: ../system-config-printer.py:4901 - #, fuzzy - msgid "Find Network Printer" - msgstr "नविन मुद्रक" - --#: ../system-config-printer.py:4979 ../system-config-printer.py:5376 -+#: ../system-config-printer.py:4974 ../system-config-printer.py:5371 - msgid "Scanning..." - msgstr "" - --#: ../system-config-printer.py:5034 ../system-config-printer.py:5798 -+#: ../system-config-printer.py:5029 - #, fuzzy - msgid "No Print Shares" - msgstr "नविन मुद्रक" - --#: ../system-config-printer.py:5035 -+#: ../system-config-printer.py:5030 - msgid "" - "There were no print shares found. Please check that the Samba service is " - "marked as trusted in your firewall configuration." - msgstr "" - --#: ../system-config-printer.py:5296 ../system-config-printer.py:5357 -+#: ../system-config-printer.py:5291 ../system-config-printer.py:5352 - msgid "Print Share Verified" - msgstr "" - --#: ../system-config-printer.py:5297 ../system-config-printer.py:5358 -+#: ../system-config-printer.py:5292 ../system-config-printer.py:5353 - msgid "This print share is accessible." - msgstr "हा मुद्रण भाग उपलब्ध आहे." - --#: ../system-config-printer.py:5302 ../system-config-printer.py:5362 -+#: ../system-config-printer.py:5297 ../system-config-printer.py:5357 - msgid "This print share is not accessible." - msgstr "हा मुद्रण भाग उपलब्ध नाही." - --#: ../system-config-printer.py:5305 -+#: ../system-config-printer.py:5300 - #, fuzzy - msgid "Print Share Inaccessible" - msgstr "हा मुद्रण भाग उपलब्ध आहे." - --#: ../system-config-printer.py:5361 -+#: ../system-config-printer.py:5356 - msgid "Inaccessible" - msgstr "अनुपलब्ध" - --#: ../system-config-printer.py:5419 -+#: ../system-config-printer.py:5414 - #, fuzzy, python-format - msgid "It is not possible to obtain a list of queues from '%s'." - msgstr "CUPS क्रियेदरम्यान चूक झाली होती: '%s'" - --#: ../system-config-printer.py:5421 -+#: ../system-config-printer.py:5416 - msgid "" - "Obtaining a list of queues is a CUPS extension to IPP. Network printers do " - "not support it." - msgstr "" - --#: ../system-config-printer.py:5424 -+#: ../system-config-printer.py:5419 - msgid "No queues" - msgstr "" - --#: ../system-config-printer.py:5425 -+#: ../system-config-printer.py:5420 - msgid "There are no queues available." - msgstr "" - --#: ../system-config-printer.py:5516 -+#: ../system-config-printer.py:5511 - msgid "Parallel Port" - msgstr "" - --#: ../system-config-printer.py:5518 -+#: ../system-config-printer.py:5513 - #, fuzzy - msgid "Serial Port" - msgstr "सिरियल" - --#: ../system-config-printer.py:5520 -+#: ../system-config-printer.py:5515 - #, fuzzy - msgid "USB" - msgstr "SMB" - --#: ../system-config-printer.py:5522 ../system-config-printer.py:5525 -+#: ../system-config-printer.py:5517 ../system-config-printer.py:5520 - msgid "HP Linux Imaging and Printing (HPLIP)" - msgstr "" - --#: ../system-config-printer.py:5527 -+#: ../system-config-printer.py:5522 - #, fuzzy - msgid "Hardware Abstraction Layer (HAL)" - msgstr "स्थानिक हार्डवेअर." - --#: ../system-config-printer.py:5529 -+#: ../system-config-printer.py:5524 - msgid "AppSocket/HP JetDirect" - msgstr "" - --#: ../system-config-printer.py:5538 -+#: ../system-config-printer.py:5533 - #, python-format - msgid "LPD/LPR queue '%s'" - msgstr "" - --#: ../system-config-printer.py:5540 -+#: ../system-config-printer.py:5535 - #, fuzzy - msgid "LPD/LPR queue" - msgstr "LPD" - --#: ../system-config-printer.py:5543 -+#: ../system-config-printer.py:5538 - msgid "Windows Printer via SAMBA" - msgstr "" - --#: ../system-config-printer.py:5545 ../glade/NewPrinterWindow.glade.h:66 -+#: ../system-config-printer.py:5540 ../glade/NewPrinterWindow.glade.h:65 - msgid "IPP" - msgstr "IPP" - --#: ../system-config-printer.py:5547 -+#: ../system-config-printer.py:5542 - msgid "HTTP" - msgstr "" - --#: ../system-config-printer.py:5632 -+#: ../system-config-printer.py:5624 - msgid "A printer connected to the parallel port." - msgstr "समांतर पोर्टला जोडलेला मुद्रक." - --#: ../system-config-printer.py:5634 -+#: ../system-config-printer.py:5626 - msgid "A printer connected to a USB port." - msgstr "USB पोर्टला जोडलेला मुद्रक." - --#: ../system-config-printer.py:5636 -+#: ../system-config-printer.py:5628 - msgid "" - "HPLIP software driving a printer, or the printer function of a multi-" - "function device." - msgstr "" - --#: ../system-config-printer.py:5639 -+#: ../system-config-printer.py:5631 - msgid "" - "HPLIP software driving a fax machine, or the fax function of a multi-" - "function device." - msgstr "" - --#: ../system-config-printer.py:5642 -+#: ../system-config-printer.py:5634 - #, fuzzy - msgid "Local printer detected by the Hardware Abstraction Layer (HAL)." - msgstr "स्थानिक हार्डवेअर." - --#: ../system-config-printer.py:5799 --msgid "HPLIP cannot find the device." --msgstr "" -- --#: ../system-config-printer.py:5881 -+#: ../system-config-printer.py:5831 - msgid "No printer was found at that address." - msgstr "" - --#: ../system-config-printer.py:6020 -+#: ../system-config-printer.py:5968 - #, fuzzy - msgid "-- Select from search results --" - msgstr "मुद्रकनाव" - --#: ../system-config-printer.py:6022 -+#: ../system-config-printer.py:5970 - msgid "-- No matches found --" - msgstr "" - --#: ../system-config-printer.py:6203 -+#: ../system-config-printer.py:6151 - msgid " (recommended)" - msgstr " (शिफारसित)" - --#: ../system-config-printer.py:6217 -+#: ../system-config-printer.py:6165 - msgid "This PPD is generated by foomatic." - msgstr "" - --#: ../system-config-printer.py:6241 -+#: ../system-config-printer.py:6189 - #, fuzzy - msgid "OpenPrinting" - msgstr "मुद्रण" - --#: ../system-config-printer.py:6252 -+#: ../system-config-printer.py:6200 - msgid "Distributable" - msgstr "" - --#: ../system-config-printer.py:6293 -+#: ../system-config-printer.py:6241 - msgid ", " - msgstr "" - --#: ../system-config-printer.py:6298 -+#: ../system-config-printer.py:6246 - #, python-format - msgid "" - "\n" - "(%s)" - msgstr "" - --#: ../system-config-printer.py:6303 -+#: ../system-config-printer.py:6251 - msgid "No support contacts known" - msgstr "" - --#: ../system-config-printer.py:6307 ../system-config-printer.py:6320 -+#: ../system-config-printer.py:6255 ../system-config-printer.py:6268 - msgid "Not specified." - msgstr "" - - #. Foomatic database problem of some sort. --#: ../system-config-printer.py:6360 -+#: ../system-config-printer.py:6308 - msgid "Database error" - msgstr "डेटाबेस चूक" - --#: ../system-config-printer.py:6361 -+#: ../system-config-printer.py:6309 - #, python-format - msgid "The '%s' driver cannot be used with printer '%s %s'." - msgstr "" -@@ -1511,64 +1512,64 @@ msgstr "" - #. This printer references some XML that is not - #. installed by default. Point the user at the - #. package they need to install. --#: ../system-config-printer.py:6371 -+#: ../system-config-printer.py:6319 - #, fuzzy, python-format - msgid "You will need to install the '%s' package in order to use this driver." - msgstr "आत." - - #. This error came from trying to open the PPD file. --#: ../system-config-printer.py:6378 -+#: ../system-config-printer.py:6326 - #, fuzzy - msgid "PPD error" - msgstr "डेटाबेस चूक" - --#: ../system-config-printer.py:6380 -+#: ../system-config-printer.py:6328 - msgid "Failed to read PPD file. Possible reason follows:" - msgstr "" - - #. Failed to get PPD downloaded from OpenPrinting XXX --#: ../system-config-printer.py:6397 -+#: ../system-config-printer.py:6345 - msgid "Downloadable drivers" - msgstr "" - --#: ../system-config-printer.py:6398 -+#: ../system-config-printer.py:6346 - msgid "Failed to download PPD." - msgstr "" - --#: ../system-config-printer.py:6405 -+#: ../system-config-printer.py:6353 - #, fuzzy - msgid "fetching PPD" - msgstr "PPD बदला" - --#: ../system-config-printer.py:6434 ../system-config-printer.py:6472 -+#: ../system-config-printer.py:6382 ../system-config-printer.py:6420 - #, fuzzy - msgid "No Installable Options" - msgstr "प्रतिष्ठापनयोग्य पर्याय" - --#: ../system-config-printer.py:6520 -+#: ../system-config-printer.py:6468 - #, fuzzy, python-format - msgid "adding printer %s" - msgstr "मुद्रक व्यूहरचित करा" - --#: ../system-config-printer.py:6669 -+#: ../system-config-printer.py:6617 - msgid "Would you like to print a test page?" - msgstr "" - --#: ../system-config-printer.py:6722 -+#: ../system-config-printer.py:6670 - #, fuzzy - msgid "Install driver" - msgstr "हरवलेला ड्राइवर" - --#: ../system-config-printer.py:6723 ../troubleshoot/CheckPPDSanity.py:131 -+#: ../system-config-printer.py:6671 ../troubleshoot/CheckPPDSanity.py:131 - #, python-format - msgid "Printer '%s' requires the %s package but it is not currently installed." - msgstr "" - --#: ../system-config-printer.py:6739 -+#: ../system-config-printer.py:6687 - msgid "Missing driver" - msgstr "हरवलेला ड्राइवर" - --#: ../system-config-printer.py:6740 -+#: ../system-config-printer.py:6688 - #, python-format - msgid "" - "Printer '%s' requires the '%s' program but it is not currently installed. " -@@ -1694,134 +1695,129 @@ msgstr "यंत्र URI दाखल - - #: ../glade/NewPrinterWindow.glade.h:5 - #, fuzzy --msgid "HP Printer (HPLIP) via network" --msgstr "मुद्रक नाव" -- --#: ../glade/NewPrinterWindow.glade.h:6 --#, fuzzy - msgid "IPP Printer" - msgstr "मुद्रक नाव" - --#: ../glade/NewPrinterWindow.glade.h:7 -+#: ../glade/NewPrinterWindow.glade.h:6 - #, fuzzy - msgid "License Terms" - msgstr "मुद्रक नाव" - --#: ../glade/NewPrinterWindow.glade.h:8 -+#: ../glade/NewPrinterWindow.glade.h:7 - #, fuzzy - msgid "Location of the LPD network printer" - msgstr " ठिकाण" - --#: ../glade/NewPrinterWindow.glade.h:9 -+#: ../glade/NewPrinterWindow.glade.h:8 - msgid "Location of the network printer" - msgstr "संजाळ मुद्रकाचे ठिकाण" - --#: ../glade/NewPrinterWindow.glade.h:10 -+#: ../glade/NewPrinterWindow.glade.h:9 - msgid "Location (optional)" - msgstr " ठिकाण (वैकल्पिक)" - --#: ../glade/NewPrinterWindow.glade.h:11 -+#: ../glade/NewPrinterWindow.glade.h:10 - #, fuzzy - msgid "Network Printer" - msgstr "नविन मुद्रक" - --#: ../glade/NewPrinterWindow.glade.h:12 -+#: ../glade/NewPrinterWindow.glade.h:11 - #, fuzzy - msgid "Note" - msgstr "स्थिती" - --#: ../glade/NewPrinterWindow.glade.h:13 -+#: ../glade/NewPrinterWindow.glade.h:12 - #, fuzzy - msgid "Output Quality" - msgstr "स्थिती" - --#: ../glade/NewPrinterWindow.glade.h:14 -+#: ../glade/NewPrinterWindow.glade.h:13 - msgid "Printer Name" - msgstr "मुद्रक नाव" - --#: ../glade/NewPrinterWindow.glade.h:15 -+#: ../glade/NewPrinterWindow.glade.h:14 - #, fuzzy - msgid "SMB Printer" - msgstr "मुद्रक नाव" - --#: ../glade/NewPrinterWindow.glade.h:16 -+#: ../glade/NewPrinterWindow.glade.h:15 - #, fuzzy - msgid "Select Driver" - msgstr "मुलभूत मुद्रक" - --#: ../glade/NewPrinterWindow.glade.h:17 -+#: ../glade/NewPrinterWindow.glade.h:16 - msgid "Settings of the serial port" - msgstr "सिरीयल पोर्टची रचना" - --#: ../glade/NewPrinterWindow.glade.h:18 -+#: ../glade/NewPrinterWindow.glade.h:17 - msgid "smb://[workgroup/]server[:port]/printer" - msgstr "smb://[workgroup/]server[:port]/printer" - --#: ../glade/NewPrinterWindow.glade.h:19 -+#: ../glade/NewPrinterWindow.glade.h:18 - #, fuzzy - msgid "Choose Class Members" - msgstr "" - "गुप्तशब्द आवश्यक\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:20 -+#: ../glade/NewPrinterWindow.glade.h:19 - #, fuzzy - msgid "Choose Driver" - msgstr "" - "गुप्तशब्द आवश्यक\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:21 -+#: ../glade/NewPrinterWindow.glade.h:20 - #, fuzzy - msgid "Describe Printer" - msgstr "" - "गुप्तशब्द आवश्यक\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:22 -+#: ../glade/NewPrinterWindow.glade.h:21 - #, fuzzy - msgid "Existing Settings" - msgstr "" - "गुप्तशब्द आवश्यक\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:23 -+#: ../glade/NewPrinterWindow.glade.h:22 - #, fuzzy - msgid "Installable Options" - msgstr "" - "गुप्तशब्द आवश्यक\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:24 -+#: ../glade/NewPrinterWindow.glade.h:23 - #, fuzzy - msgid "Select Device" - msgstr "" - "गुप्तशब्द आवश्यक\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:25 -+#: ../glade/NewPrinterWindow.glade.h:24 - msgid "Baud Rate" - msgstr "बाउड दर" - --#: ../glade/NewPrinterWindow.glade.h:26 -+#: ../glade/NewPrinterWindow.glade.h:25 - msgid "Browse..." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:27 -+#: ../glade/NewPrinterWindow.glade.h:26 - #, fuzzy - msgid "Comments..." - msgstr "टिप्पणी" - --#: ../glade/NewPrinterWindow.glade.h:28 -+#: ../glade/NewPrinterWindow.glade.h:27 - #, fuzzy - msgid "Connection" - msgstr "जोडत आहे" - --#: ../glade/NewPrinterWindow.glade.h:29 -+#: ../glade/NewPrinterWindow.glade.h:28 - msgid "Data Bits" - msgstr "डेटा बिट्स" - --#: ../glade/NewPrinterWindow.glade.h:30 -+#: ../glade/NewPrinterWindow.glade.h:29 - msgid "" - "Default\n" - "1200\n" -@@ -1843,7 +1839,7 @@ msgstr "" - "57600\n" - "115200" - --#: ../glade/NewPrinterWindow.glade.h:39 -+#: ../glade/NewPrinterWindow.glade.h:38 - msgid "" - "Default\n" - "8\n" -@@ -1853,7 +1849,7 @@ msgstr "" - "8\n" - "7" - --#: ../glade/NewPrinterWindow.glade.h:42 -+#: ../glade/NewPrinterWindow.glade.h:41 - #, fuzzy - msgid "" - "Default\n" -@@ -1862,7 +1858,7 @@ msgid "" - "Even" - msgstr "मुलभूत" - --#: ../glade/NewPrinterWindow.glade.h:46 -+#: ../glade/NewPrinterWindow.glade.h:45 - #, fuzzy - msgid "" - "Default\n" -@@ -1872,122 +1868,122 @@ msgid "" - "DTR/DSR (Hardware)" - msgstr "मुलभूत हार्डवेअर हार्डवेअर" - --#: ../glade/NewPrinterWindow.glade.h:51 -+#: ../glade/NewPrinterWindow.glade.h:50 - #: ../glade/PrinterPropertiesDialog.glade.h:35 - msgid "Description:" - msgstr "वर्णन:" - --#: ../glade/NewPrinterWindow.glade.h:52 ../troubleshoot/DeviceListed.py:40 -+#: ../glade/NewPrinterWindow.glade.h:51 ../troubleshoot/DeviceListed.py:40 - msgid "Device URI" - msgstr "यंत्र URI" - --#: ../glade/NewPrinterWindow.glade.h:53 -+#: ../glade/NewPrinterWindow.glade.h:52 - msgid "Device description." - msgstr "यंत्र वर्णन." - --#: ../glade/NewPrinterWindow.glade.h:54 -+#: ../glade/NewPrinterWindow.glade.h:53 - msgid "DirectJet" - msgstr "DirectJet" - --#: ../glade/NewPrinterWindow.glade.h:56 -+#: ../glade/NewPrinterWindow.glade.h:55 - #, fuzzy - msgid "Driver details" - msgstr "ड्राइवर" - --#: ../glade/NewPrinterWindow.glade.h:57 -+#: ../glade/NewPrinterWindow.glade.h:56 - msgid "Empty" - msgstr "रिकामे" - --#: ../glade/NewPrinterWindow.glade.h:58 -+#: ../glade/NewPrinterWindow.glade.h:57 - msgid "Find _Queue..." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:59 -+#: ../glade/NewPrinterWindow.glade.h:58 - msgid "Flow Control" - msgstr "प्रवाह नियंत्रण" - --#: ../glade/NewPrinterWindow.glade.h:60 -+#: ../glade/NewPrinterWindow.glade.h:59 - msgid "" - "For the printer you have selected there are drivers available for download." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:61 -+#: ../glade/NewPrinterWindow.glade.h:60 - msgid "Free software" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:62 -+#: ../glade/NewPrinterWindow.glade.h:61 - msgid "Graphics:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:63 -+#: ../glade/NewPrinterWindow.glade.h:62 - #, fuzzy - msgid "Host:" - msgstr "यजमाननाम" - --#: ../glade/NewPrinterWindow.glade.h:64 -+#: ../glade/NewPrinterWindow.glade.h:63 - #, fuzzy - msgid "Human-readable description such as \"HP LaserJet with Duplexer\"" - msgstr "मानवी" - --#: ../glade/NewPrinterWindow.glade.h:65 -+#: ../glade/NewPrinterWindow.glade.h:64 - #, fuzzy - msgid "Human-readable location such as \"Lab 1\"" - msgstr "मानवी" - --#: ../glade/NewPrinterWindow.glade.h:67 -+#: ../glade/NewPrinterWindow.glade.h:66 - msgid "LPD" - msgstr "LPD" - --#: ../glade/NewPrinterWindow.glade.h:68 -+#: ../glade/NewPrinterWindow.glade.h:67 - msgid "License:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:69 -+#: ../glade/NewPrinterWindow.glade.h:68 - #, fuzzy - msgid "Line art:" - msgstr "मुद्रक स्थिती:" - --#: ../glade/NewPrinterWindow.glade.h:70 -+#: ../glade/NewPrinterWindow.glade.h:69 - #, fuzzy - msgid "Local Driver" - msgstr "स्थानिक मुद्रके" - --#: ../glade/NewPrinterWindow.glade.h:71 -+#: ../glade/NewPrinterWindow.glade.h:70 - #, fuzzy - msgid "Make and model:" - msgstr "नमुना:" - --#: ../glade/NewPrinterWindow.glade.h:72 -+#: ../glade/NewPrinterWindow.glade.h:71 - msgid "Manufacturer" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:73 -+#: ../glade/NewPrinterWindow.glade.h:72 - #, fuzzy - msgid "Network" - msgstr "नविन मुद्रक" - --#: ../glade/NewPrinterWindow.glade.h:75 -+#: ../glade/NewPrinterWindow.glade.h:74 - msgid "No, I do not accept this license" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:76 -+#: ../glade/NewPrinterWindow.glade.h:75 - msgid "Parity" - msgstr "पॅरिटी" - --#: ../glade/NewPrinterWindow.glade.h:78 -+#: ../glade/NewPrinterWindow.glade.h:77 - msgid "Patented algorithms" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:79 -+#: ../glade/NewPrinterWindow.glade.h:78 - msgid "Photo:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:80 -+#: ../glade/NewPrinterWindow.glade.h:79 - #, fuzzy - msgid "Port number:" - msgstr "पोर्ट क्रमांक" - --#: ../glade/NewPrinterWindow.glade.h:81 -+#: ../glade/NewPrinterWindow.glade.h:80 - #, fuzzy - msgid "" - "PostScript Printer Description (PPD) files can often be found on the driver " -@@ -1995,81 +1991,81 @@ msgid "" - "part of the Windows® driver." - msgstr "वर्णन चालू." - --#: ../glade/NewPrinterWindow.glade.h:82 -+#: ../glade/NewPrinterWindow.glade.h:81 - #, fuzzy - msgid "Printer model:" - msgstr "मुद्रकनाव" - --#: ../glade/NewPrinterWindow.glade.h:83 -+#: ../glade/NewPrinterWindow.glade.h:82 - msgid "Probe" - msgstr "प्रोब" - --#: ../glade/NewPrinterWindow.glade.h:84 -+#: ../glade/NewPrinterWindow.glade.h:83 - #, fuzzy - msgid "Prompt user if authentication is required" - msgstr "अधिप्रमाणन" - --#: ../glade/NewPrinterWindow.glade.h:85 -+#: ../glade/NewPrinterWindow.glade.h:84 - #, fuzzy - msgid "Provide PPD file" - msgstr "PPD फाइल पुरवा" - --#: ../glade/NewPrinterWindow.glade.h:86 -+#: ../glade/NewPrinterWindow.glade.h:85 - msgid "Queue:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:87 -+#: ../glade/NewPrinterWindow.glade.h:86 - msgid "SCSI" - msgstr "SCSI" - --#: ../glade/NewPrinterWindow.glade.h:88 -+#: ../glade/NewPrinterWindow.glade.h:87 - msgid "SMB" - msgstr "SMB" - --#: ../glade/NewPrinterWindow.glade.h:89 -+#: ../glade/NewPrinterWindow.glade.h:88 - msgid "Search for a printer driver to download" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:90 -+#: ../glade/NewPrinterWindow.glade.h:89 - #, fuzzy - msgid "Searching..." - msgstr "मुद्रकासाठी नविन नाव" - --#: ../glade/NewPrinterWindow.glade.h:91 -+#: ../glade/NewPrinterWindow.glade.h:90 - msgid "Select A File" - msgstr "फाइल निवडा" - --#: ../glade/NewPrinterWindow.glade.h:92 -+#: ../glade/NewPrinterWindow.glade.h:91 - msgid "Select printer from database" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:93 -+#: ../glade/NewPrinterWindow.glade.h:92 - msgid "Serial" - msgstr "सिरियल" - --#: ../glade/NewPrinterWindow.glade.h:94 -+#: ../glade/NewPrinterWindow.glade.h:93 - #, fuzzy - msgid "Set authentication details now" - msgstr "अधिप्रमाणन" - --#: ../glade/NewPrinterWindow.glade.h:95 -+#: ../glade/NewPrinterWindow.glade.h:94 - msgid "Short name for this printer such as \"laserjet\"" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:96 -+#: ../glade/NewPrinterWindow.glade.h:95 - msgid "Supplier:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:97 -+#: ../glade/NewPrinterWindow.glade.h:96 - msgid "Support:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:98 -+#: ../glade/NewPrinterWindow.glade.h:97 - #, fuzzy - msgid "Text:" - msgstr "कसोटी पृष्ठ छापा" - --#: ../glade/NewPrinterWindow.glade.h:99 -+#: ../glade/NewPrinterWindow.glade.h:98 - #, fuzzy - msgid "" - "The foomatic printer database contains various manufacturer provided " -@@ -2079,20 +2075,20 @@ msgid "" - "printer." - msgstr "वर्णन आत." - --#: ../glade/NewPrinterWindow.glade.h:100 -+#: ../glade/NewPrinterWindow.glade.h:99 - msgid "" - "These drivers do not come from your operating system supplier and will not " - "be covered by their commercial support. See the support and license terms " - "of the driver's supplier." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:101 -+#: ../glade/NewPrinterWindow.glade.h:100 - msgid "" - "This driver supports additional hardware that may be installed in the " - "printer." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:102 -+#: ../glade/NewPrinterWindow.glade.h:101 - #, fuzzy - msgid "" - "This is done by assuming that options with the same name do have the same " -@@ -2100,50 +2096,50 @@ msgid "" - "lost and options only present in the new PPD will be set to default." - msgstr "रचना आत आत." - --#: ../glade/NewPrinterWindow.glade.h:103 -+#: ../glade/NewPrinterWindow.glade.h:102 - msgid "" - "This way all current option settings will be lost. The default settings of " - "the new PPD will be used. " - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:104 -+#: ../glade/NewPrinterWindow.glade.h:103 - msgid "Try to copy the option settings over from the old PPD. " - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:105 -+#: ../glade/NewPrinterWindow.glade.h:104 - msgid "URI:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:107 -+#: ../glade/NewPrinterWindow.glade.h:106 - #, fuzzy - msgid "Use the new PPD (Postscript Printer Description) as is." - msgstr "Postscript वर्णन." - --#: ../glade/NewPrinterWindow.glade.h:109 -+#: ../glade/NewPrinterWindow.glade.h:108 - msgid "" - "With this choice no driver download will be performed. In the next steps a " - "locally installed driver will be selected." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:110 -+#: ../glade/NewPrinterWindow.glade.h:109 - #, fuzzy - msgid "Yes, I accept this license" - msgstr "कामे स्विकारत आहे" - --#: ../glade/NewPrinterWindow.glade.h:111 -+#: ../glade/NewPrinterWindow.glade.h:110 - msgid "_Search" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:112 -+#: ../glade/NewPrinterWindow.glade.h:111 - msgid "_Verify..." - msgstr "पडताळा(_V)..." - --#: ../glade/NewPrinterWindow.glade.h:113 -+#: ../glade/NewPrinterWindow.glade.h:112 - #: ../glade/PrinterPropertiesDialog.glade.h:128 - msgid "move left" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:114 -+#: ../glade/NewPrinterWindow.glade.h:113 - #: ../glade/PrinterPropertiesDialog.glade.h:129 - #, fuzzy - msgid "move right" -@@ -3030,7 +3026,7 @@ msgstr "" - msgid "Remember to load paper of type '%s' into the printer first." - msgstr "" - --#: ../troubleshoot/PrintTestPage.py:399 -+#: ../troubleshoot/PrintTestPage.py:416 - msgid "Error submitting test page" - msgstr "" - -@@ -3229,6 +3225,10 @@ msgid "Select default printer" - msgstr "मुलभूत मुद्रक बनवा" - - #, fuzzy -+#~ msgid "HP Printer (HPLIP) via network" -+#~ msgstr "मुद्रक नाव" -+ -+#, fuzzy - #~ msgid "Not Found" - #~ msgstr "सापडले नाही" - -diff -up system-config-printer-1.1.5/po/ms.po.git-1.1.x system-config-printer-1.1.5/po/ms.po ---- system-config-printer-1.1.5/po/ms.po.git-1.1.x 2009-03-03 22:21:46.000000000 +0000 -+++ system-config-printer-1.1.5/po/ms.po 2009-03-10 17:43:31.000000000 +0000 -@@ -6,7 +6,7 @@ msgid "" - msgstr "" - "Project-Id-Version: printconf\n" - "Report-Msgid-Bugs-To: https://bugzilla.redhat.com/bugzilla\n" --"POT-Creation-Date: 2009-03-02 23:22+0000\n" -+"POT-Creation-Date: 2009-03-10 16:51+0000\n" - "PO-Revision-Date: 2007-05-28 23:01+0800\n" - "Last-Translator: Sharuzzaman Ahmat Raslan \n" - "Language-Team: Malay \n" -@@ -54,11 +54,11 @@ msgstr "" - msgid "Enter IP address" - msgstr "Model Keselamatan:" - --#: ../authconn.py:35 ../glade/NewPrinterWindow.glade.h:108 -+#: ../authconn.py:35 ../glade/NewPrinterWindow.glade.h:107 - msgid "Username:" - msgstr "Namapengguna:" - --#: ../authconn.py:36 ../glade/NewPrinterWindow.glade.h:77 -+#: ../authconn.py:36 ../glade/NewPrinterWindow.glade.h:76 - msgid "Password:" - msgstr "Katalaluan:" - -@@ -67,7 +67,7 @@ msgstr "Katalaluan:" - msgid "Domain:" - msgstr "Margin atas (pt):" - --#: ../authconn.py:46 -+#: ../authconn.py:46 ../authconn.py:409 - #, fuzzy - msgid "Authentication" - msgstr "Pengesahan" -@@ -76,48 +76,57 @@ msgstr "Pengesahan" - msgid "Remember password" - msgstr "" - --#: ../authconn.py:211 ../authconn.py:232 -+#: ../authconn.py:208 -+#, python-format -+msgid "Unauthorized request (%s)" -+msgstr "" -+ -+#: ../authconn.py:209 -+msgid "You are not authorized to carry out therequested action." -+msgstr "" -+ -+#: ../authconn.py:212 ../authconn.py:233 - #, fuzzy - msgid "Operation canceled" - msgstr "Menghimpun polisi" - --#: ../authconn.py:253 -+#: ../authconn.py:250 - #, fuzzy, python-format - msgid "CUPS server error (%s)" - msgstr "Ralat Dalaman Pelayan" - --#: ../authconn.py:255 ../errordialogs.py:57 --#: ../troubleshoot/PrintTestPage.py:400 -+#: ../authconn.py:252 ../errordialogs.py:56 ../errordialogs.py:70 -+#, fuzzy -+msgid "CUPS server error" -+msgstr "Ralat Dalaman Pelayan" -+ -+#: ../authconn.py:261 ../errordialogs.py:57 -+#: ../troubleshoot/PrintTestPage.py:417 - #, fuzzy, python-format - msgid "There was an error during the CUPS operation: '%s'." - msgstr "Terdapat ralat ketika cuba mencetak halaman ujian." - --#: ../authconn.py:258 -+#: ../authconn.py:264 - #, fuzzy - msgid "Retry" - msgstr "Ulangtetap" - --#: ../authconn.py:379 ../authconn.py:381 ../errordialogs.py:65 ../pysmb.py:75 -+#: ../authconn.py:385 ../authconn.py:387 ../errordialogs.py:65 ../pysmb.py:75 - #: ../pysmb.py:77 - #, fuzzy - msgid "Not authorized" - msgstr "%s tidak dijumpai" - --#: ../authconn.py:382 ../pysmb.py:78 -+#: ../authconn.py:388 ../pysmb.py:78 - #, fuzzy - msgid "The password may be incorrect." - msgstr "Katalaluan pengguna FTP salah\n" - --#: ../authconn.py:400 -+#: ../authconn.py:407 - #, fuzzy, python-format - msgid "Authentication (%s)" - msgstr "Pengesahan" - --#: ../errordialogs.py:56 ../errordialogs.py:70 --#, fuzzy --msgid "CUPS server error" --msgstr "Ralat Dalaman Pelayan" -- - #: ../errordialogs.py:66 - msgid "" - "The password may be incorrect, or the server may be configured to deny " -@@ -149,7 +158,7 @@ msgstr "Kebenaran Diperlukan" - msgid "Server error" - msgstr "Ralat Dalaman Pelayan" - --#: ../errordialogs.py:82 ../system-config-printer.py:1219 -+#: ../errordialogs.py:82 ../system-config-printer.py:1223 - msgid "Not connected" - msgstr "Tidak disambung" - -@@ -171,7 +180,7 @@ msgstr "" - msgid "_New Group from Selection" - msgstr "" - --#: ../GroupsPane.py:98 ../system-config-printer.py:393 -+#: ../GroupsPane.py:98 ../system-config-printer.py:397 - #, fuzzy - msgid "_Rename" - msgstr "Kelua_ran" -@@ -240,7 +249,7 @@ msgid "Document" - msgstr "Dokumen" - - #: ../jobviewer.py:212 ../my-default-printer.py:153 --#: ../system-config-printer.py:366 ../system-config-printer.py:1367 -+#: ../system-config-printer.py:370 ../system-config-printer.py:1371 - #: ../troubleshoot/PrintTestPage.py:84 - msgid "Printer" - msgstr "Pencetak" -@@ -277,8 +286,8 @@ msgstr "Status cetakan dokumen" - - #: ../jobviewer.py:386 ../jobviewer.py:451 ../jobviewer.py:452 - #: ../jobviewer.py:492 ../jobviewer.py:600 ../jobviewer.py:727 --#: ../jobviewer.py:1196 ../jobviewer.py:1222 ../system-config-printer.py:2546 --#: ../glade/NewPrinterWindow.glade.h:106 -+#: ../jobviewer.py:1196 ../jobviewer.py:1222 ../system-config-printer.py:2556 -+#: ../glade/NewPrinterWindow.glade.h:105 - #: ../troubleshoot/ChooseNetworkPrinter.py:101 - #: ../troubleshoot/ChooseNetworkPrinter.py:102 - #: ../troubleshoot/ChooseNetworkPrinter.py:105 -@@ -373,12 +382,12 @@ msgstr "Kitar sehingga disambung" - msgid "Pending" - msgstr "Tertangguh" - --#: ../jobviewer.py:591 ../system-config-printer.py:186 -+#: ../jobviewer.py:591 ../system-config-printer.py:190 - #: ../troubleshoot/PrintTestPage.py:43 - msgid "Processing" - msgstr "Memproses" - --#: ../jobviewer.py:592 ../system-config-printer.py:188 -+#: ../jobviewer.py:592 ../system-config-printer.py:192 - #: ../troubleshoot/PrintTestPage.py:44 - msgid "Stopped" - msgstr "Dihentikan" -@@ -495,8 +504,8 @@ msgstr "Ulangtetap kepada pilihan defaul - msgid "_Set Default" - msgstr "default" - --#: ../my-default-printer.py:158 ../system-config-printer.py:423 --#: ../system-config-printer.py:3660 ../troubleshoot/ChooseNetworkPrinter.py:37 -+#: ../my-default-printer.py:158 ../system-config-printer.py:427 -+#: ../system-config-printer.py:3675 ../troubleshoot/ChooseNetworkPrinter.py:37 - #: ../troubleshoot/ChoosePrinter.py:38 - #, fuzzy - msgid "Location" -@@ -531,7 +540,7 @@ msgstr "dihantar kepada pencetak default - msgid "Authenticated" - msgstr "Pengesahan" - --#: ../ppdippstr.py:50 ../system-config-printer.py:6259 -+#: ../ppdippstr.py:50 ../system-config-printer.py:6207 - #, fuzzy - msgid "None" - msgstr "tiada" -@@ -751,221 +760,221 @@ msgstr "" - msgid "1200 dpi, photo, black + color cartridge, photo paper" - msgstr "" - --#: ../system-config-printer.py:127 -+#: ../system-config-printer.py:131 - msgid "To do this, select System->Administration->Firewall from the main menu." - msgstr "" - --#: ../system-config-printer.py:185 -+#: ../system-config-printer.py:189 - #, fuzzy - msgid "Idle" - msgstr "LEKA" - --#: ../system-config-printer.py:187 -+#: ../system-config-printer.py:191 - #, fuzzy - msgid "Busy" - msgstr "Saya sibuk" - --#: ../system-config-printer.py:372 ../system-config-printer.py:1373 -+#: ../system-config-printer.py:376 ../system-config-printer.py:1377 - #, fuzzy - msgid "Class" - msgstr "Kelas Java" - --#: ../system-config-printer.py:399 -+#: ../system-config-printer.py:403 - #, fuzzy - msgid "Set As De_fault" - msgstr "default" - --#: ../system-config-printer.py:403 -+#: ../system-config-printer.py:407 - #, fuzzy - msgid "_Create class" - msgstr "Pentadbiran jauh" - --#: ../system-config-printer.py:405 -+#: ../system-config-printer.py:409 - #, fuzzy - msgid "View Print _Queue" - msgstr "Tetapan pencetak" - --#: ../system-config-printer.py:407 -+#: ../system-config-printer.py:411 - msgid "_Add to Group" - msgstr "" - --#: ../system-config-printer.py:409 -+#: ../system-config-printer.py:413 - msgid "Save Results as _Group" - msgstr "" - --#: ../system-config-printer.py:411 -+#: ../system-config-printer.py:415 - msgid "Save Filter as _Search Group" - msgstr "" - --#: ../system-config-printer.py:415 -+#: ../system-config-printer.py:419 - #, fuzzy - msgid "E_nabled" - msgstr "Hidupkan" - --#: ../system-config-printer.py:417 -+#: ../system-config-printer.py:421 - #, fuzzy - msgid "_Shared" - msgstr "Dikongsi" - --#: ../system-config-printer.py:421 ../troubleshoot/ChooseNetworkPrinter.py:35 -+#: ../system-config-printer.py:425 ../troubleshoot/ChooseNetworkPrinter.py:35 - #: ../troubleshoot/ChoosePrinter.py:36 ../troubleshoot/DeviceListed.py:36 - msgid "Name" - msgstr "Nama" - --#: ../system-config-printer.py:422 -+#: ../system-config-printer.py:426 - #, fuzzy - msgid "Description" - msgstr "Huraian:" - --#: ../system-config-printer.py:424 -+#: ../system-config-printer.py:428 - msgid "Manufacturer / Model" - msgstr "" - - #. Printer state reasons list --#: ../system-config-printer.py:499 -+#: ../system-config-printer.py:503 - msgid "Message" - msgstr "Mesej" - --#: ../system-config-printer.py:534 -+#: ../system-config-printer.py:538 - #, fuzzy - msgid "Problems?" - msgstr "Tidak dapat mengesan" - --#: ../system-config-printer.py:637 ../system-config-printer.py:639 -+#: ../system-config-printer.py:641 ../system-config-printer.py:643 - #, fuzzy - msgid "Members of this class" - msgstr "Sunting hos ini" - --#: ../system-config-printer.py:638 ../system-config-printer.py:640 -+#: ../system-config-printer.py:642 ../system-config-printer.py:644 - msgid "Others" - msgstr "Lain-lain" - --#: ../system-config-printer.py:641 -+#: ../system-config-printer.py:645 - msgid "Devices" - msgstr "Peranti" - --#: ../system-config-printer.py:642 -+#: ../system-config-printer.py:646 - #, fuzzy - msgid "Connections" - msgstr "Menyambung..." - --#: ../system-config-printer.py:643 -+#: ../system-config-printer.py:647 - msgid "Makes" - msgstr "" - --#: ../system-config-printer.py:644 -+#: ../system-config-printer.py:648 - msgid "Models" - msgstr "Model" - --#: ../system-config-printer.py:645 -+#: ../system-config-printer.py:649 - msgid "Drivers" - msgstr "Pemandu" - --#: ../system-config-printer.py:646 ../glade/NewPrinterWindow.glade.h:55 -+#: ../system-config-printer.py:650 ../glade/NewPrinterWindow.glade.h:54 - msgid "Downloadable Drivers" - msgstr "" - --#: ../system-config-printer.py:647 -+#: ../system-config-printer.py:651 - msgid "Users" - msgstr "Pengguna" - --#: ../system-config-printer.py:682 -+#: ../system-config-printer.py:686 - msgid "Automatic rotation" - msgstr "" - - # ui/galeon.glade.h:247 --#: ../system-config-printer.py:989 -+#: ../system-config-printer.py:993 - #, fuzzy, python-format - msgid "Printer Properties - '%s' on %s" - msgstr "Laporan pencetak" - - #. The Conflict button was pressed. --#: ../system-config-printer.py:996 -+#: ../system-config-printer.py:1000 - msgid "" - "There are conflicting options.\n" - "Changes can only be applied after\n" - "these conflicts are resolved." - msgstr "" - --#: ../system-config-printer.py:1214 -+#: ../system-config-printer.py:1218 - #, python-format - msgid "Printer configuration - %s" - msgstr "Tetapan pencetak - %s" - --#: ../system-config-printer.py:1217 -+#: ../system-config-printer.py:1221 - #, fuzzy, python-format - msgid "Connected to %s" - msgstr "Tersambung ke %s:%u" - - #. Update our copy of the printer's settings. --#: ../system-config-printer.py:1257 ../system-config-printer.py:2042 -+#: ../system-config-printer.py:1261 ../system-config-printer.py:2046 - msgid "obtaining queue details" - msgstr "" - --#: ../system-config-printer.py:1295 -+#: ../system-config-printer.py:1299 - msgid "Remove from Group" - msgstr "" - --#: ../system-config-printer.py:1361 -+#: ../system-config-printer.py:1365 - #, fuzzy - msgid "Network printer (discovered)" - msgstr "Tetapan pencetak" - --#: ../system-config-printer.py:1364 -+#: ../system-config-printer.py:1368 - msgid "Network class (discovered)" - msgstr "" - --#: ../system-config-printer.py:1370 ../system-config-printer.py:5524 --#: ../system-config-printer.py:5594 ../system-config-printer.py:5596 -+#: ../system-config-printer.py:1374 ../system-config-printer.py:5519 -+#: ../system-config-printer.py:5589 ../system-config-printer.py:5591 - msgid "Fax" - msgstr "" - --#: ../system-config-printer.py:1376 ../system-config-printer.py:1382 -+#: ../system-config-printer.py:1380 ../system-config-printer.py:1386 - #: ../troubleshoot/LocalOrRemote.py:30 - #, fuzzy - msgid "Network printer" - msgstr "Tetapan pencetak" - --#: ../system-config-printer.py:1379 -+#: ../system-config-printer.py:1383 - #, fuzzy - msgid "Network print share" - msgstr "Tetapan pencetak" - --#: ../system-config-printer.py:1508 ../glade/ConnectingDialog.glade.h:2 -+#: ../system-config-printer.py:1512 ../glade/ConnectingDialog.glade.h:2 - #, no-c-format, python-format - msgid "Opening connection to %s" - msgstr "" - --#: ../system-config-printer.py:1887 -+#: ../system-config-printer.py:1891 - #, fuzzy - msgid "Installable Options" - msgstr "Opsyen RAID" - - # ui/galeon.glade.h:247 --#: ../system-config-printer.py:1888 -+#: ../system-config-printer.py:1892 - #: ../glade/PrinterPropertiesDialog.glade.h:109 - #, fuzzy - msgid "Printer Options" - msgstr "Opsyen RAID" - --#: ../system-config-printer.py:1924 -+#: ../system-config-printer.py:1928 - #, python-format - msgid "modifying class %s" - msgstr "" - --#: ../system-config-printer.py:1926 ../system-config-printer.py:3019 --#: ../system-config-printer.py:3044 ../system-config-printer.py:6547 --#: ../system-config-printer.py:6559 ../system-config-printer.py:6581 -+#: ../system-config-printer.py:1930 ../system-config-printer.py:3037 -+#: ../system-config-printer.py:3062 ../system-config-printer.py:6495 -+#: ../system-config-printer.py:6507 ../system-config-printer.py:6529 - #, fuzzy, python-format - msgid "modifying printer %s" - msgstr "Tetapkan pencetak" - --#: ../system-config-printer.py:1941 -+#: ../system-config-printer.py:1945 - #, fuzzy - msgid "This will delete this class!" - msgstr "Padam pad ini?" - --#: ../system-config-printer.py:1942 -+#: ../system-config-printer.py:1946 - #, fuzzy - msgid "Proceed anyway?" - msgstr "_Pasang juga" -@@ -975,70 +984,70 @@ msgstr "_Pasang juga" - #. but we have never fetched the server settings to see whether - #. the server is publishing shared printers. Fetch the settings - #. now so that we can update the "not published" label if necessary. --#: ../system-config-printer.py:2030 ../system-config-printer.py:3203 -+#: ../system-config-printer.py:2034 ../system-config-printer.py:3221 - #, fuzzy - msgid "fetching server settings" - msgstr "Lebih Tetapan Pelayan" - --#: ../system-config-printer.py:2100 -+#: ../system-config-printer.py:2104 - #, fuzzy - msgid "Set Default Printer" - msgstr "dihantar kepada pencetak default" - --#: ../system-config-printer.py:2102 -+#: ../system-config-printer.py:2106 - msgid "Do you want to set this as the system-wide default printer?" - msgstr "" - --#: ../system-config-printer.py:2104 -+#: ../system-config-printer.py:2108 - #, fuzzy - msgid "Set as the _system-wide default printer" - msgstr "Ini adalah huraian bagi pencetak." - --#: ../system-config-printer.py:2106 -+#: ../system-config-printer.py:2110 - msgid "_Clear my personal default setting" - msgstr "" - --#: ../system-config-printer.py:2107 -+#: ../system-config-printer.py:2111 - #, fuzzy - msgid "Set as my _personal default printer" - msgstr "dihantar kepada pencetak default" - --#: ../system-config-printer.py:2112 -+#: ../system-config-printer.py:2116 - #, fuzzy - msgid "setting default printer" - msgstr "dihantar kepada pencetak default" - --#: ../system-config-printer.py:2169 -+#: ../system-config-printer.py:2173 - #, fuzzy - msgid "printing test page" - msgstr "Halaman ujian _CUPS" - --#: ../system-config-printer.py:2182 ../system-config-printer.py:2217 --#: ../system-config-printer.py:5418 -+#: ../system-config-printer.py:2186 ../system-config-printer.py:2221 -+#: ../system-config-printer.py:5413 - #, fuzzy - msgid "Not possible" - msgstr "pembatalan tidak mungkin" - --#: ../system-config-printer.py:2183 ../system-config-printer.py:2218 -+#: ../system-config-printer.py:2187 ../system-config-printer.py:2222 - msgid "" - "The remote server did not accept the print job, most likely because the " - "printer is not shared." - msgstr "" - --#: ../system-config-printer.py:2195 ../system-config-printer.py:2210 -+#: ../system-config-printer.py:2199 ../system-config-printer.py:2214 - msgid "Submitted" - msgstr "" - --#: ../system-config-printer.py:2196 -+#: ../system-config-printer.py:2200 - #, python-format - msgid "Test page submitted as job %d" - msgstr "" - --#: ../system-config-printer.py:2203 -+#: ../system-config-printer.py:2207 - msgid "sending maintenance command" - msgstr "" - --#: ../system-config-printer.py:2211 -+#: ../system-config-printer.py:2215 - #, python-format - msgid "Maintenance command submitted as job %d" - msgstr "" -@@ -1046,77 +1055,77 @@ msgstr "" - #. The underlying cupsGetPPD2() function returned NULL without - #. setting an IPP error, so it'll be something like a failed - #. connection. --#: ../system-config-printer.py:2285 ../system-config-printer.py:2381 -+#: ../system-config-printer.py:2289 ../system-config-printer.py:2385 - msgid "Error" - msgstr "Ralat" - --#: ../system-config-printer.py:2286 -+#: ../system-config-printer.py:2290 - #, fuzzy - msgid "There was a problem connecting to the CUPS server." - msgstr "Terdapat ralat ketika cuba mencetak halaman ujian." - --#: ../system-config-printer.py:2382 -+#: ../system-config-printer.py:2386 - #, python-format - msgid "Option '%s' has value '%s' and cannot be edited." - msgstr "" - --#: ../system-config-printer.py:2466 -+#: ../system-config-printer.py:2476 - msgid "Marker levels are not reported for this printer." - msgstr "" - --#: ../system-config-printer.py:2763 -+#: ../system-config-printer.py:2773 - #, fuzzy - msgid "Cannot Rename" - msgstr "Kelua_ran" - --#: ../system-config-printer.py:2764 -+#: ../system-config-printer.py:2774 - msgid "There are queued jobs." - msgstr "" - --#: ../system-config-printer.py:2822 -+#: ../system-config-printer.py:2840 - #, fuzzy - msgid "renaming printer" - msgstr "Tetapkan pencetak" - - #. for classes make sure all members - #. will get added --#: ../system-config-printer.py:2907 -+#: ../system-config-printer.py:2925 - #, fuzzy - msgid "copying printer" - msgstr "Tetapkan pencetak" - --#: ../system-config-printer.py:2971 -+#: ../system-config-printer.py:2989 - #, fuzzy, python-format - msgid "Really delete class '%s'?" - msgstr "Tidak dapat Dipadam" - --#: ../system-config-printer.py:2973 -+#: ../system-config-printer.py:2991 - #, fuzzy, python-format - msgid "Really delete printer '%s'?" - msgstr "Anda tidak boleh padam pencetak terimport." - --#: ../system-config-printer.py:2975 -+#: ../system-config-printer.py:2993 - #, fuzzy - msgid "Really delete selected destinations?" - msgstr "Anda tidak boleh padam pencetak terimport." - --#: ../system-config-printer.py:2996 -+#: ../system-config-printer.py:3014 - #, fuzzy, python-format - msgid "deleting printer %s" - msgstr "Tetapkan pencetak" - --#: ../system-config-printer.py:3070 -+#: ../system-config-printer.py:3088 - msgid "Publish Shared Printers" - msgstr "" - --#: ../system-config-printer.py:3071 -+#: ../system-config-printer.py:3089 - msgid "" - "Shared printers are not available to other people unless the 'Publish shared " - "printers' option is enabled in the server settings." - msgstr "" - - # ui/galeon.glade.h:247 --#: ../system-config-printer.py:3264 -+#: ../system-config-printer.py:3282 - #, fuzzy - msgid "modifying server settings" - msgstr "Lebih Tetapan Pelayan" -@@ -1127,109 +1136,109 @@ msgstr "Lebih Tetapan Pelayan" - #. be unblocked. Unfortunately, this is not yet possible - #. (bug #440469). However, we can display a dialog to suggest - #. that now might be a good time to review the firewall settings. --#: ../system-config-printer.py:3289 -+#: ../system-config-printer.py:3307 - msgid "Review Firewall" - msgstr "" - --#: ../system-config-printer.py:3290 -+#: ../system-config-printer.py:3308 - msgid "" - "You may need to adjust the firewall to allow network printing to this " - "computer." - msgstr "" - --#: ../system-config-printer.py:3623 -+#: ../system-config-printer.py:3638 - msgid "Browsing not available (pysmbc not installed)" - msgstr "" - - #. SMB list columns --#: ../system-config-printer.py:3629 -+#: ../system-config-printer.py:3644 - msgid "Share" - msgstr "Kongsi" - --#: ../system-config-printer.py:3635 -+#: ../system-config-printer.py:3650 - msgid "Comment" - msgstr "Komen" - - #. IPP list columns --#: ../system-config-printer.py:3654 -+#: ../system-config-printer.py:3669 - msgid "Queue" - msgstr "" - --#: ../system-config-printer.py:3668 -+#: ../system-config-printer.py:3683 - msgid "" - "PostScript Printer Description files (*.ppd, *.PPD, *.ppd.gz, *.PPD.gz, *." - "PPD.GZ)" - msgstr "" - --#: ../system-config-printer.py:3677 -+#: ../system-config-printer.py:3692 - msgid "All files (*)" - msgstr "" - --#: ../system-config-printer.py:3713 ../system-config-printer.py:5970 --#: ../system-config-printer.py:6008 ../applet.py:124 -+#: ../system-config-printer.py:3728 ../system-config-printer.py:5918 -+#: ../system-config-printer.py:5956 ../applet.py:124 - #, fuzzy - msgid "Search" - msgstr "Isi nama kumpulan baru:" - --#: ../system-config-printer.py:3736 ../system-config-printer.py:3760 --#: ../glade/NewPrinterWindow.glade.h:74 -+#: ../system-config-printer.py:3751 ../system-config-printer.py:3775 -+#: ../glade/NewPrinterWindow.glade.h:73 - #, fuzzy - msgid "New Printer" - msgstr "Tetapan pencetak" - --#: ../system-config-printer.py:3747 -+#: ../system-config-printer.py:3762 - #, fuzzy - msgid "New Class" - msgstr "Kelas Java" - --#: ../system-config-printer.py:3752 -+#: ../system-config-printer.py:3767 - #, fuzzy - msgid "Change Device URI" - msgstr "Jadikan Peranti RAID." - --#: ../system-config-printer.py:3758 -+#: ../system-config-printer.py:3773 - #, fuzzy - msgid "Change Driver" - msgstr "Cekera jurupacu" - --#: ../system-config-printer.py:3927 ../system-config-printer.py:3993 --#: ../system-config-printer.py:4289 ../system-config-printer.py:4487 --#: ../system-config-printer.py:5772 ../system-config-printer.py:5995 -+#: ../system-config-printer.py:3942 ../system-config-printer.py:4008 -+#: ../system-config-printer.py:4304 ../system-config-printer.py:4502 -+#: ../system-config-printer.py:5762 ../system-config-printer.py:5943 - msgid "Searching" - msgstr "" - --#: ../system-config-printer.py:3928 -+#: ../system-config-printer.py:3943 - #, fuzzy - msgid "Searching for downloadable drivers" - msgstr "Isi nama kumpulan baru:" - --#: ../system-config-printer.py:3994 ../system-config-printer.py:4290 -+#: ../system-config-printer.py:4009 ../system-config-printer.py:4305 - msgid "Searching for drivers" - msgstr "" - --#: ../system-config-printer.py:4488 ../system-config-printer.py:5773 -+#: ../system-config-printer.py:4503 ../system-config-printer.py:5763 - #, fuzzy - msgid "Searching for printers" - msgstr "Isi nama kumpulan baru:" - - # ui/galeon.glade.h:247 --#: ../system-config-printer.py:4497 -+#: ../system-config-printer.py:4512 - #, fuzzy - msgid "fetching device list" - msgstr "Lebih Tetapan Pelayan" - - #. Tell the user why he needs the plugin --#: ../system-config-printer.py:4579 -+#: ../system-config-printer.py:4594 - msgid "For this printer a proprietary driver plugin from HP is available.\n" - msgstr "" - --#: ../system-config-printer.py:4582 -+#: ../system-config-printer.py:4597 - msgid "" - "The installation of the plugin is required for your printer to work.\n" - "\n" - msgstr "" - --#: ../system-config-printer.py:4585 -+#: ../system-config-printer.py:4600 - msgid "" - "Installing the plugin is optional, it completes or enhances the " - "functionality\n" -@@ -1237,297 +1246,289 @@ msgid "" - "\n" - msgstr "" - --#: ../system-config-printer.py:4589 -+#: ../system-config-printer.py:4604 - msgid "The plugin provides the following features:\n" - msgstr "" - --#: ../system-config-printer.py:4592 -+#: ../system-config-printer.py:4607 - msgid " - Printing support\n" - msgstr "" - --#: ../system-config-printer.py:4595 -+#: ../system-config-printer.py:4610 - msgid " - Faster printing\n" - msgstr "" - --#: ../system-config-printer.py:4598 -+#: ../system-config-printer.py:4613 - msgid " - Better printout quality\n" - msgstr "" - --#: ../system-config-printer.py:4601 -+#: ../system-config-printer.py:4616 - msgid " - Extra printing features\n" - msgstr "" - --#: ../system-config-printer.py:4604 -+#: ../system-config-printer.py:4619 - msgid " - Scanning support\n" - msgstr "" - --#: ../system-config-printer.py:4607 -+#: ../system-config-printer.py:4622 - msgid " - Faster scanning\n" - msgstr "" - --#: ../system-config-printer.py:4610 -+#: ../system-config-printer.py:4625 - msgid " - Better scanning image quality\n" - msgstr "" - --#: ../system-config-printer.py:4613 -+#: ../system-config-printer.py:4628 - msgid " - Faxing support\n" - msgstr "" - --#: ../system-config-printer.py:4616 -+#: ../system-config-printer.py:4631 - msgid " - Extra fax features\n" - msgstr "" - --#: ../system-config-printer.py:4619 -+#: ../system-config-printer.py:4634 - msgid " - Better Input/Output support\n" - msgstr "" - --#: ../system-config-printer.py:4622 -+#: ../system-config-printer.py:4637 - msgid " - Extra user interface features\n" - msgstr "" - --#: ../system-config-printer.py:4625 -+#: ../system-config-printer.py:4640 - msgid " - Other extra features\n" - msgstr "" - --#: ../system-config-printer.py:4630 -+#: ../system-config-printer.py:4645 - #, fuzzy - msgid "Install plugin" - msgstr "Opsyen RAID" - --#: ../system-config-printer.py:4631 -+#: ../system-config-printer.py:4646 - #, fuzzy - msgid "Do not set up printer" - msgstr "Tetapan pencetak" - --#: ../system-config-printer.py:4632 -+#: ../system-config-printer.py:4647 - msgid "Set up without plugin" - msgstr "" - --#: ../system-config-printer.py:4634 ../troubleshoot/PrintTestPage.py:118 -+#: ../system-config-printer.py:4649 ../troubleshoot/PrintTestPage.py:118 - msgid "Yes" - msgstr "" - --#: ../system-config-printer.py:4635 ../troubleshoot/PrintTestPage.py:119 -+#: ../system-config-printer.py:4650 ../troubleshoot/PrintTestPage.py:119 - msgid "No" - msgstr "" - --#: ../system-config-printer.py:4809 ../system-config-printer.py:4813 -+#: ../system-config-printer.py:4824 ../system-config-printer.py:4828 - #, fuzzy - msgid " (Current)" - msgstr "Masa Semasa:" - --#: ../system-config-printer.py:4845 --msgid "HP Printer (HPLIP)" --msgstr "" -- --#: ../system-config-printer.py:4886 -+#: ../system-config-printer.py:4881 - msgid "Other" - msgstr "Lain-lain" - - #. device-info - #. PhysicalDevice obj - #. Separator? --#: ../system-config-printer.py:4902 -+#: ../system-config-printer.py:4897 - #, fuzzy - msgid "Network Printer" - msgstr "Tetapan pencetak" - --#: ../system-config-printer.py:4906 -+#: ../system-config-printer.py:4901 - #, fuzzy - msgid "Find Network Printer" - msgstr "Tetapan pencetak" - --#: ../system-config-printer.py:4979 ../system-config-printer.py:5376 -+#: ../system-config-printer.py:4974 ../system-config-printer.py:5371 - #, fuzzy - msgid "Scanning..." - msgstr "Pengskalaan (peratusan)" - --#: ../system-config-printer.py:5034 ../system-config-printer.py:5798 -+#: ../system-config-printer.py:5029 - #, fuzzy - msgid "No Print Shares" - msgstr "Tetapan pencetak" - --#: ../system-config-printer.py:5035 -+#: ../system-config-printer.py:5030 - msgid "" - "There were no print shares found. Please check that the Samba service is " - "marked as trusted in your firewall configuration." - msgstr "" - --#: ../system-config-printer.py:5296 ../system-config-printer.py:5357 -+#: ../system-config-printer.py:5291 ../system-config-printer.py:5352 - msgid "Print Share Verified" - msgstr "" - --#: ../system-config-printer.py:5297 ../system-config-printer.py:5358 -+#: ../system-config-printer.py:5292 ../system-config-printer.py:5353 - msgid "This print share is accessible." - msgstr "" - --#: ../system-config-printer.py:5302 ../system-config-printer.py:5362 -+#: ../system-config-printer.py:5297 ../system-config-printer.py:5357 - msgid "This print share is not accessible." - msgstr "" - --#: ../system-config-printer.py:5305 -+#: ../system-config-printer.py:5300 - #, fuzzy - msgid "Print Share Inaccessible" - msgstr "`%s' menjadi tidak boleh diakses" - --#: ../system-config-printer.py:5361 -+#: ../system-config-printer.py:5356 - #, fuzzy - msgid "Inaccessible" - msgstr "`%s' menjadi tidak boleh diakses" - --#: ../system-config-printer.py:5419 -+#: ../system-config-printer.py:5414 - #, fuzzy, python-format - msgid "It is not possible to obtain a list of queues from '%s'." - msgstr "Terdapat ralat ketika cuba mencetak halaman ujian." - --#: ../system-config-printer.py:5421 -+#: ../system-config-printer.py:5416 - msgid "" - "Obtaining a list of queues is a CUPS extension to IPP. Network printers do " - "not support it." - msgstr "" - --#: ../system-config-printer.py:5424 -+#: ../system-config-printer.py:5419 - msgid "No queues" - msgstr "" - --#: ../system-config-printer.py:5425 -+#: ../system-config-printer.py:5420 - msgid "There are no queues available." - msgstr "" - --#: ../system-config-printer.py:5516 -+#: ../system-config-printer.py:5511 - msgid "Parallel Port" - msgstr "" - --#: ../system-config-printer.py:5518 -+#: ../system-config-printer.py:5513 - #, fuzzy - msgid "Serial Port" - msgstr "Bersiri" - --#: ../system-config-printer.py:5520 -+#: ../system-config-printer.py:5515 - #, fuzzy - msgid "USB" - msgstr "SMB" - --#: ../system-config-printer.py:5522 ../system-config-printer.py:5525 -+#: ../system-config-printer.py:5517 ../system-config-printer.py:5520 - msgid "HP Linux Imaging and Printing (HPLIP)" - msgstr "" - --#: ../system-config-printer.py:5527 -+#: ../system-config-printer.py:5522 - msgid "Hardware Abstraction Layer (HAL)" - msgstr "" - --#: ../system-config-printer.py:5529 -+#: ../system-config-printer.py:5524 - msgid "AppSocket/HP JetDirect" - msgstr "" - --#: ../system-config-printer.py:5538 -+#: ../system-config-printer.py:5533 - #, python-format - msgid "LPD/LPR queue '%s'" - msgstr "" - --#: ../system-config-printer.py:5540 -+#: ../system-config-printer.py:5535 - #, fuzzy - msgid "LPD/LPR queue" - msgstr "LPD" - --#: ../system-config-printer.py:5543 -+#: ../system-config-printer.py:5538 - msgid "Windows Printer via SAMBA" - msgstr "" - --#: ../system-config-printer.py:5545 ../glade/NewPrinterWindow.glade.h:66 -+#: ../system-config-printer.py:5540 ../glade/NewPrinterWindow.glade.h:65 - msgid "IPP" - msgstr "IPP" - --#: ../system-config-printer.py:5547 -+#: ../system-config-printer.py:5542 - msgid "HTTP" - msgstr "" - --#: ../system-config-printer.py:5632 -+#: ../system-config-printer.py:5624 - msgid "A printer connected to the parallel port." - msgstr "" - --#: ../system-config-printer.py:5634 -+#: ../system-config-printer.py:5626 - msgid "A printer connected to a USB port." - msgstr "" - --#: ../system-config-printer.py:5636 -+#: ../system-config-printer.py:5628 - msgid "" - "HPLIP software driving a printer, or the printer function of a multi-" - "function device." - msgstr "" - --#: ../system-config-printer.py:5639 -+#: ../system-config-printer.py:5631 - msgid "" - "HPLIP software driving a fax machine, or the fax function of a multi-" - "function device." - msgstr "" - --#: ../system-config-printer.py:5642 -+#: ../system-config-printer.py:5634 - msgid "Local printer detected by the Hardware Abstraction Layer (HAL)." - msgstr "" - --#: ../system-config-printer.py:5799 --msgid "HPLIP cannot find the device." --msgstr "" -- --#: ../system-config-printer.py:5881 -+#: ../system-config-printer.py:5831 - msgid "No printer was found at that address." - msgstr "" - --#: ../system-config-printer.py:6020 -+#: ../system-config-printer.py:5968 - #, fuzzy - msgid "-- Select from search results --" - msgstr "Nota daripada Linux Printing Database" - --#: ../system-config-printer.py:6022 -+#: ../system-config-printer.py:5970 - msgid "-- No matches found --" - msgstr "" - --#: ../system-config-printer.py:6203 -+#: ../system-config-printer.py:6151 - #, fuzzy - msgid " (recommended)" - msgstr "dicadangkan" - --#: ../system-config-printer.py:6217 -+#: ../system-config-printer.py:6165 - msgid "This PPD is generated by foomatic." - msgstr "" - - # libgnomeui/gnome-messagebox.c:120 libgnomeui/gnome-messagebox.c:253 --#: ../system-config-printer.py:6241 -+#: ../system-config-printer.py:6189 - #, fuzzy - msgid "OpenPrinting" - msgstr "Mencetak" - --#: ../system-config-printer.py:6252 -+#: ../system-config-printer.py:6200 - msgid "Distributable" - msgstr "" - --#: ../system-config-printer.py:6293 -+#: ../system-config-printer.py:6241 - msgid ", " - msgstr "" - --#: ../system-config-printer.py:6298 -+#: ../system-config-printer.py:6246 - #, python-format - msgid "" - "\n" - "(%s)" - msgstr "" - --#: ../system-config-printer.py:6303 -+#: ../system-config-printer.py:6251 - msgid "No support contacts known" - msgstr "" - --#: ../system-config-printer.py:6307 ../system-config-printer.py:6320 -+#: ../system-config-printer.py:6255 ../system-config-printer.py:6268 - msgid "Not specified." - msgstr "" - - #. Foomatic database problem of some sort. --#: ../system-config-printer.py:6360 -+#: ../system-config-printer.py:6308 - #, fuzzy - msgid "Database error" - msgstr "Ralat pengkalan data" - --#: ../system-config-printer.py:6361 -+#: ../system-config-printer.py:6309 - #, python-format - msgid "The '%s' driver cannot be used with printer '%s %s'." - msgstr "" -@@ -1535,65 +1536,65 @@ msgstr "" - #. This printer references some XML that is not - #. installed by default. Point the user at the - #. package they need to install. --#: ../system-config-printer.py:6371 -+#: ../system-config-printer.py:6319 - #, python-format - msgid "You will need to install the '%s' package in order to use this driver." - msgstr "" - - #. This error came from trying to open the PPD file. --#: ../system-config-printer.py:6378 -+#: ../system-config-printer.py:6326 - #, fuzzy - msgid "PPD error" - msgstr "Ralat Tidak Diketahui" - --#: ../system-config-printer.py:6380 -+#: ../system-config-printer.py:6328 - msgid "Failed to read PPD file. Possible reason follows:" - msgstr "" - - #. Failed to get PPD downloaded from OpenPrinting XXX --#: ../system-config-printer.py:6397 -+#: ../system-config-printer.py:6345 - msgid "Downloadable drivers" - msgstr "" - --#: ../system-config-printer.py:6398 -+#: ../system-config-printer.py:6346 - msgid "Failed to download PPD." - msgstr "" - --#: ../system-config-printer.py:6405 -+#: ../system-config-printer.py:6353 - #, fuzzy - msgid "fetching PPD" - msgstr "PPD diimport." - --#: ../system-config-printer.py:6434 ../system-config-printer.py:6472 -+#: ../system-config-printer.py:6382 ../system-config-printer.py:6420 - #, fuzzy - msgid "No Installable Options" - msgstr "Opsyen RAID" - --#: ../system-config-printer.py:6520 -+#: ../system-config-printer.py:6468 - #, fuzzy, python-format - msgid "adding printer %s" - msgstr "Tetapkan pencetak" - --#: ../system-config-printer.py:6669 -+#: ../system-config-printer.py:6617 - msgid "Would you like to print a test page?" - msgstr "" - --#: ../system-config-printer.py:6722 -+#: ../system-config-printer.py:6670 - #, fuzzy - msgid "Install driver" - msgstr "Cekera jurupacu" - --#: ../system-config-printer.py:6723 ../troubleshoot/CheckPPDSanity.py:131 -+#: ../system-config-printer.py:6671 ../troubleshoot/CheckPPDSanity.py:131 - #, python-format - msgid "Printer '%s' requires the %s package but it is not currently installed." - msgstr "" - --#: ../system-config-printer.py:6739 -+#: ../system-config-printer.py:6687 - #, fuzzy - msgid "Missing driver" - msgstr "Cekera jurupacu" - --#: ../system-config-printer.py:6740 -+#: ../system-config-printer.py:6688 - #, python-format - msgid "" - "Printer '%s' requires the '%s' program but it is not currently installed. " -@@ -1724,127 +1725,122 @@ msgstr "Jadikan Peranti RAID." - - #: ../glade/NewPrinterWindow.glade.h:5 - #, fuzzy --msgid "HP Printer (HPLIP) via network" --msgstr "Nama Pencetak" -- --#: ../glade/NewPrinterWindow.glade.h:6 --#, fuzzy - msgid "IPP Printer" - msgstr "Nama Pencetak" - --#: ../glade/NewPrinterWindow.glade.h:7 -+#: ../glade/NewPrinterWindow.glade.h:6 - #, fuzzy - msgid "License Terms" - msgstr "Nama Pencetak" - --#: ../glade/NewPrinterWindow.glade.h:8 -+#: ../glade/NewPrinterWindow.glade.h:7 - msgid "Location of the LPD network printer" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:9 -+#: ../glade/NewPrinterWindow.glade.h:8 - #, fuzzy - msgid "Location of the network printer" - msgstr "port pencetak rangkaian" - --#: ../glade/NewPrinterWindow.glade.h:10 -+#: ../glade/NewPrinterWindow.glade.h:9 - #, fuzzy - msgid "Location (optional)" - msgstr "Pakej Opsyenal" - --#: ../glade/NewPrinterWindow.glade.h:11 -+#: ../glade/NewPrinterWindow.glade.h:10 - #, fuzzy - msgid "Network Printer" - msgstr "Tetapan pencetak" - --#: ../glade/NewPrinterWindow.glade.h:12 -+#: ../glade/NewPrinterWindow.glade.h:11 - #, fuzzy - msgid "Note" - msgstr "Keadaan" - --#: ../glade/NewPrinterWindow.glade.h:13 -+#: ../glade/NewPrinterWindow.glade.h:12 - #, fuzzy - msgid "Output Quality" - msgstr "Keadaan" - --#: ../glade/NewPrinterWindow.glade.h:14 -+#: ../glade/NewPrinterWindow.glade.h:13 - #, fuzzy - msgid "Printer Name" - msgstr "Nama Pencetak" - --#: ../glade/NewPrinterWindow.glade.h:15 -+#: ../glade/NewPrinterWindow.glade.h:14 - #, fuzzy - msgid "SMB Printer" - msgstr "Nama Pencetak" - --#: ../glade/NewPrinterWindow.glade.h:16 -+#: ../glade/NewPrinterWindow.glade.h:15 - #, fuzzy - msgid "Select Driver" - msgstr "Pencetak Default" - --#: ../glade/NewPrinterWindow.glade.h:17 -+#: ../glade/NewPrinterWindow.glade.h:16 - #, fuzzy - msgid "Settings of the serial port" - msgstr "Amerika/Port_of_Spain" - --#: ../glade/NewPrinterWindow.glade.h:18 -+#: ../glade/NewPrinterWindow.glade.h:17 - msgid "smb://[workgroup/]server[:port]/printer" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:19 -+#: ../glade/NewPrinterWindow.glade.h:18 - #, fuzzy - msgid "Choose Class Members" - msgstr "Selitkan CD berikutnya." - --#: ../glade/NewPrinterWindow.glade.h:20 -+#: ../glade/NewPrinterWindow.glade.h:19 - #, fuzzy - msgid "Choose Driver" - msgstr "Selitkan CD berikutnya." - --#: ../glade/NewPrinterWindow.glade.h:21 -+#: ../glade/NewPrinterWindow.glade.h:20 - #, fuzzy - msgid "Describe Printer" - msgstr "Selitkan CD berikutnya." - --#: ../glade/NewPrinterWindow.glade.h:22 -+#: ../glade/NewPrinterWindow.glade.h:21 - #, fuzzy - msgid "Existing Settings" - msgstr "Selitkan CD berikutnya." - --#: ../glade/NewPrinterWindow.glade.h:23 -+#: ../glade/NewPrinterWindow.glade.h:22 - #, fuzzy - msgid "Installable Options" - msgstr "Selitkan CD berikutnya." - --#: ../glade/NewPrinterWindow.glade.h:24 -+#: ../glade/NewPrinterWindow.glade.h:23 - #, fuzzy - msgid "Select Device" - msgstr "Selitkan CD berikutnya." - --#: ../glade/NewPrinterWindow.glade.h:25 -+#: ../glade/NewPrinterWindow.glade.h:24 - #, fuzzy - msgid "Baud Rate" - msgstr "Kadar HSync: " - --#: ../glade/NewPrinterWindow.glade.h:26 -+#: ../glade/NewPrinterWindow.glade.h:25 - msgid "Browse..." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:27 -+#: ../glade/NewPrinterWindow.glade.h:26 - #, fuzzy - msgid "Comments..." - msgstr "Komen" - --#: ../glade/NewPrinterWindow.glade.h:28 -+#: ../glade/NewPrinterWindow.glade.h:27 - #, fuzzy - msgid "Connection" - msgstr "Menyambung..." - --#: ../glade/NewPrinterWindow.glade.h:29 -+#: ../glade/NewPrinterWindow.glade.h:28 - #, fuzzy - msgid "Data Bits" - msgstr " Modulus: %d bit\n" - --#: ../glade/NewPrinterWindow.glade.h:30 -+#: ../glade/NewPrinterWindow.glade.h:29 - msgid "" - "Default\n" - "1200\n" -@@ -1857,7 +1853,7 @@ msgid "" - "115200" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:39 -+#: ../glade/NewPrinterWindow.glade.h:38 - #, fuzzy - msgid "" - "Default\n" -@@ -1865,7 +1861,7 @@ msgid "" - "7" - msgstr "_Sasaran But Default" - --#: ../glade/NewPrinterWindow.glade.h:42 -+#: ../glade/NewPrinterWindow.glade.h:41 - msgid "" - "Default\n" - "None\n" -@@ -1873,7 +1869,7 @@ msgid "" - "Even" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:46 -+#: ../glade/NewPrinterWindow.glade.h:45 - msgid "" - "Default\n" - "None\n" -@@ -1882,208 +1878,208 @@ msgid "" - "DTR/DSR (Hardware)" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:51 -+#: ../glade/NewPrinterWindow.glade.h:50 - #: ../glade/PrinterPropertiesDialog.glade.h:35 - msgid "Description:" - msgstr "Huraian:" - --#: ../glade/NewPrinterWindow.glade.h:52 ../troubleshoot/DeviceListed.py:40 -+#: ../glade/NewPrinterWindow.glade.h:51 ../troubleshoot/DeviceListed.py:40 - #, fuzzy - msgid "Device URI" - msgstr "Peranti RAID" - --#: ../glade/NewPrinterWindow.glade.h:53 -+#: ../glade/NewPrinterWindow.glade.h:52 - #, fuzzy - msgid "Device description." - msgstr "Penerangan masukan" - --#: ../glade/NewPrinterWindow.glade.h:54 -+#: ../glade/NewPrinterWindow.glade.h:53 - msgid "DirectJet" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:56 -+#: ../glade/NewPrinterWindow.glade.h:55 - #, fuzzy - msgid "Driver details" - msgstr "Pemandu" - --#: ../glade/NewPrinterWindow.glade.h:57 -+#: ../glade/NewPrinterWindow.glade.h:56 - msgid "Empty" - msgstr "Kosong" - --#: ../glade/NewPrinterWindow.glade.h:58 -+#: ../glade/NewPrinterWindow.glade.h:57 - msgid "Find _Queue..." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:59 -+#: ../glade/NewPrinterWindow.glade.h:58 - #, fuzzy - msgid "Flow Control" - msgstr "Kawalan aliran" - --#: ../glade/NewPrinterWindow.glade.h:60 -+#: ../glade/NewPrinterWindow.glade.h:59 - msgid "" - "For the printer you have selected there are drivers available for download." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:61 -+#: ../glade/NewPrinterWindow.glade.h:60 - msgid "Free software" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:62 -+#: ../glade/NewPrinterWindow.glade.h:61 - msgid "Graphics:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:63 -+#: ../glade/NewPrinterWindow.glade.h:62 - #, fuzzy - msgid "Host:" - msgstr "Namahos" - --#: ../glade/NewPrinterWindow.glade.h:64 -+#: ../glade/NewPrinterWindow.glade.h:63 - msgid "Human-readable description such as \"HP LaserJet with Duplexer\"" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:65 -+#: ../glade/NewPrinterWindow.glade.h:64 - msgid "Human-readable location such as \"Lab 1\"" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:67 -+#: ../glade/NewPrinterWindow.glade.h:66 - msgid "LPD" - msgstr "LPD" - --#: ../glade/NewPrinterWindow.glade.h:68 -+#: ../glade/NewPrinterWindow.glade.h:67 - msgid "License:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:69 -+#: ../glade/NewPrinterWindow.glade.h:68 - #, fuzzy - msgid "Line art:" - msgstr "keadaan tidak diketahui" - --#: ../glade/NewPrinterWindow.glade.h:70 -+#: ../glade/NewPrinterWindow.glade.h:69 - #, fuzzy - msgid "Local Driver" - msgstr "Tetapkan pencetak" - --#: ../glade/NewPrinterWindow.glade.h:71 -+#: ../glade/NewPrinterWindow.glade.h:70 - #, fuzzy - msgid "Make and model:" - msgstr "Memerlukan pembuat dan model.\n" - --#: ../glade/NewPrinterWindow.glade.h:72 -+#: ../glade/NewPrinterWindow.glade.h:71 - msgid "Manufacturer" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:73 -+#: ../glade/NewPrinterWindow.glade.h:72 - #, fuzzy - msgid "Network" - msgstr "Tetapan pencetak" - --#: ../glade/NewPrinterWindow.glade.h:75 -+#: ../glade/NewPrinterWindow.glade.h:74 - msgid "No, I do not accept this license" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:76 -+#: ../glade/NewPrinterWindow.glade.h:75 - #, fuzzy - msgid "Parity" - msgstr "Tiada pariti" - --#: ../glade/NewPrinterWindow.glade.h:78 -+#: ../glade/NewPrinterWindow.glade.h:77 - msgid "Patented algorithms" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:79 -+#: ../glade/NewPrinterWindow.glade.h:78 - msgid "Photo:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:80 -+#: ../glade/NewPrinterWindow.glade.h:79 - #, fuzzy - msgid "Port number:" - msgstr "Nombor _Port:" - --#: ../glade/NewPrinterWindow.glade.h:81 -+#: ../glade/NewPrinterWindow.glade.h:80 - msgid "" - "PostScript Printer Description (PPD) files can often be found on the driver " - "disk that comes with the printer. For PostScript printers they are often " - "part of the Windows® driver." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:82 -+#: ../glade/NewPrinterWindow.glade.h:81 - #, fuzzy - msgid "Printer model:" - msgstr "Model Keselamatan:" - --#: ../glade/NewPrinterWindow.glade.h:83 -+#: ../glade/NewPrinterWindow.glade.h:82 - #, fuzzy - msgid "Probe" - msgstr "Tidak dapat mengesan" - --#: ../glade/NewPrinterWindow.glade.h:84 -+#: ../glade/NewPrinterWindow.glade.h:83 - #, fuzzy - msgid "Prompt user if authentication is required" - msgstr "Pengesahan" - --#: ../glade/NewPrinterWindow.glade.h:85 -+#: ../glade/NewPrinterWindow.glade.h:84 - #, fuzzy - msgid "Provide PPD file" - msgstr "Sila Nyatakan Fail Kulit" - --#: ../glade/NewPrinterWindow.glade.h:86 -+#: ../glade/NewPrinterWindow.glade.h:85 - msgid "Queue:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:87 -+#: ../glade/NewPrinterWindow.glade.h:86 - msgid "SCSI" - msgstr "SCSI" - --#: ../glade/NewPrinterWindow.glade.h:88 -+#: ../glade/NewPrinterWindow.glade.h:87 - msgid "SMB" - msgstr "SMB" - --#: ../glade/NewPrinterWindow.glade.h:89 -+#: ../glade/NewPrinterWindow.glade.h:88 - msgid "Search for a printer driver to download" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:90 -+#: ../glade/NewPrinterWindow.glade.h:89 - #, fuzzy - msgid "Searching..." - msgstr "Pengskalaan (peratusan)" - --#: ../glade/NewPrinterWindow.glade.h:91 -+#: ../glade/NewPrinterWindow.glade.h:90 - #, fuzzy - msgid "Select A File" - msgstr "Pilih fail:" - --#: ../glade/NewPrinterWindow.glade.h:92 -+#: ../glade/NewPrinterWindow.glade.h:91 - #, fuzzy - msgid "Select printer from database" - msgstr "Nota daripada Linux Printing Database" - --#: ../glade/NewPrinterWindow.glade.h:93 -+#: ../glade/NewPrinterWindow.glade.h:92 - msgid "Serial" - msgstr "Bersiri" - --#: ../glade/NewPrinterWindow.glade.h:94 -+#: ../glade/NewPrinterWindow.glade.h:93 - #, fuzzy - msgid "Set authentication details now" - msgstr "Pengesahan" - --#: ../glade/NewPrinterWindow.glade.h:95 -+#: ../glade/NewPrinterWindow.glade.h:94 - msgid "Short name for this printer such as \"laserjet\"" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:96 -+#: ../glade/NewPrinterWindow.glade.h:95 - msgid "Supplier:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:97 -+#: ../glade/NewPrinterWindow.glade.h:96 - msgid "Support:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:98 -+#: ../glade/NewPrinterWindow.glade.h:97 - #, fuzzy - msgid "Text:" - msgstr "Ulangtetap" - --#: ../glade/NewPrinterWindow.glade.h:99 -+#: ../glade/NewPrinterWindow.glade.h:98 - msgid "" - "The foomatic printer database contains various manufacturer provided " - "PostScript Printer Description (PPD) files and also can generate PPD files " -@@ -2092,69 +2088,69 @@ msgid "" - "printer." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:100 -+#: ../glade/NewPrinterWindow.glade.h:99 - msgid "" - "These drivers do not come from your operating system supplier and will not " - "be covered by their commercial support. See the support and license terms " - "of the driver's supplier." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:101 -+#: ../glade/NewPrinterWindow.glade.h:100 - msgid "" - "This driver supports additional hardware that may be installed in the " - "printer." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:102 -+#: ../glade/NewPrinterWindow.glade.h:101 - msgid "" - "This is done by assuming that options with the same name do have the same " - "meaning. Settings of options that are not present in the new PPD will be " - "lost and options only present in the new PPD will be set to default." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:103 -+#: ../glade/NewPrinterWindow.glade.h:102 - msgid "" - "This way all current option settings will be lost. The default settings of " - "the new PPD will be used. " - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:104 -+#: ../glade/NewPrinterWindow.glade.h:103 - msgid "Try to copy the option settings over from the old PPD. " - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:105 -+#: ../glade/NewPrinterWindow.glade.h:104 - msgid "URI:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:107 -+#: ../glade/NewPrinterWindow.glade.h:106 - msgid "Use the new PPD (Postscript Printer Description) as is." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:109 -+#: ../glade/NewPrinterWindow.glade.h:108 - msgid "" - "With this choice no driver download will be performed. In the next steps a " - "locally installed driver will be selected." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:110 -+#: ../glade/NewPrinterWindow.glade.h:109 - #, fuzzy - msgid "Yes, I accept this license" - msgstr "Laksana tugas terjadual" - --#: ../glade/NewPrinterWindow.glade.h:111 -+#: ../glade/NewPrinterWindow.glade.h:110 - msgid "_Search" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:112 -+#: ../glade/NewPrinterWindow.glade.h:111 - msgid "_Verify..." - msgstr "_Tentusah..." - --#: ../glade/NewPrinterWindow.glade.h:113 -+#: ../glade/NewPrinterWindow.glade.h:112 - #: ../glade/PrinterPropertiesDialog.glade.h:128 - msgid "move left" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:114 -+#: ../glade/NewPrinterWindow.glade.h:113 - #: ../glade/PrinterPropertiesDialog.glade.h:129 - #, fuzzy - msgid "move right" -@@ -3089,7 +3085,7 @@ msgstr "" - msgid "Remember to load paper of type '%s' into the printer first." - msgstr "" - --#: ../troubleshoot/PrintTestPage.py:399 -+#: ../troubleshoot/PrintTestPage.py:416 - msgid "Error submitting test page" - msgstr "" - -@@ -3289,6 +3285,10 @@ msgid "Select default printer" - msgstr "dihantar kepada pencetak default" - - #, fuzzy -+#~ msgid "HP Printer (HPLIP) via network" -+#~ msgstr "Nama Pencetak" -+ -+#, fuzzy - #~ msgid "Not Found" - #~ msgstr "%s tidak dijumpai" - -diff -up system-config-printer-1.1.5/po/my.po.git-1.1.x system-config-printer-1.1.5/po/my.po ---- system-config-printer-1.1.5/po/my.po.git-1.1.x 2009-03-03 22:21:46.000000000 +0000 -+++ system-config-printer-1.1.5/po/my.po 2009-03-10 17:43:31.000000000 +0000 -@@ -7,7 +7,7 @@ msgid "" - msgstr "" - "Project-Id-Version: printconf\n" - "Report-Msgid-Bugs-To: https://bugzilla.redhat.com/bugzilla\n" --"POT-Creation-Date: 2009-03-02 23:22+0000\n" -+"POT-Creation-Date: 2009-03-10 16:51+0000\n" - "PO-Revision-Date: 2004-10-12 08:57+0100\n" - "Last-Translator: Automatically generated\n" - "Language-Team: none\n" -@@ -49,11 +49,11 @@ msgstr "" - msgid "Enter IP address" - msgstr "" - --#: ../authconn.py:35 ../glade/NewPrinterWindow.glade.h:108 -+#: ../authconn.py:35 ../glade/NewPrinterWindow.glade.h:107 - msgid "Username:" - msgstr "" - --#: ../authconn.py:36 ../glade/NewPrinterWindow.glade.h:77 -+#: ../authconn.py:36 ../glade/NewPrinterWindow.glade.h:76 - msgid "Password:" - msgstr "" - -@@ -61,7 +61,7 @@ msgstr "" - msgid "Domain:" - msgstr "" - --#: ../authconn.py:46 -+#: ../authconn.py:46 ../authconn.py:409 - msgid "Authentication" - msgstr "" - -@@ -69,43 +69,52 @@ msgstr "" - msgid "Remember password" - msgstr "" - --#: ../authconn.py:211 ../authconn.py:232 -+#: ../authconn.py:208 -+#, python-format -+msgid "Unauthorized request (%s)" -+msgstr "" -+ -+#: ../authconn.py:209 -+msgid "You are not authorized to carry out therequested action." -+msgstr "" -+ -+#: ../authconn.py:212 ../authconn.py:233 - msgid "Operation canceled" - msgstr "" - --#: ../authconn.py:253 -+#: ../authconn.py:250 - #, python-format - msgid "CUPS server error (%s)" - msgstr "" - --#: ../authconn.py:255 ../errordialogs.py:57 --#: ../troubleshoot/PrintTestPage.py:400 -+#: ../authconn.py:252 ../errordialogs.py:56 ../errordialogs.py:70 -+msgid "CUPS server error" -+msgstr "" -+ -+#: ../authconn.py:261 ../errordialogs.py:57 -+#: ../troubleshoot/PrintTestPage.py:417 - #, python-format - msgid "There was an error during the CUPS operation: '%s'." - msgstr "" - --#: ../authconn.py:258 -+#: ../authconn.py:264 - msgid "Retry" - msgstr "" - --#: ../authconn.py:379 ../authconn.py:381 ../errordialogs.py:65 ../pysmb.py:75 -+#: ../authconn.py:385 ../authconn.py:387 ../errordialogs.py:65 ../pysmb.py:75 - #: ../pysmb.py:77 - msgid "Not authorized" - msgstr "" - --#: ../authconn.py:382 ../pysmb.py:78 -+#: ../authconn.py:388 ../pysmb.py:78 - msgid "The password may be incorrect." - msgstr "" - --#: ../authconn.py:400 -+#: ../authconn.py:407 - #, python-format - msgid "Authentication (%s)" - msgstr "" - --#: ../errordialogs.py:56 ../errordialogs.py:70 --msgid "CUPS server error" --msgstr "" -- - #: ../errordialogs.py:66 - msgid "" - "The password may be incorrect, or the server may be configured to deny " -@@ -132,7 +141,7 @@ msgstr "" - msgid "Server error" - msgstr "" - --#: ../errordialogs.py:82 ../system-config-printer.py:1219 -+#: ../errordialogs.py:82 ../system-config-printer.py:1223 - msgid "Not connected" - msgstr "" - -@@ -154,7 +163,7 @@ msgstr "" - msgid "_New Group from Selection" - msgstr "" - --#: ../GroupsPane.py:98 ../system-config-printer.py:393 -+#: ../GroupsPane.py:98 ../system-config-printer.py:397 - msgid "_Rename" - msgstr "" - -@@ -219,7 +228,7 @@ msgid "Document" - msgstr "" - - #: ../jobviewer.py:212 ../my-default-printer.py:153 --#: ../system-config-printer.py:366 ../system-config-printer.py:1367 -+#: ../system-config-printer.py:370 ../system-config-printer.py:1371 - #: ../troubleshoot/PrintTestPage.py:84 - msgid "Printer" - msgstr "" -@@ -256,8 +265,8 @@ msgstr "" - - #: ../jobviewer.py:386 ../jobviewer.py:451 ../jobviewer.py:452 - #: ../jobviewer.py:492 ../jobviewer.py:600 ../jobviewer.py:727 --#: ../jobviewer.py:1196 ../jobviewer.py:1222 ../system-config-printer.py:2546 --#: ../glade/NewPrinterWindow.glade.h:106 -+#: ../jobviewer.py:1196 ../jobviewer.py:1222 ../system-config-printer.py:2556 -+#: ../glade/NewPrinterWindow.glade.h:105 - #: ../troubleshoot/ChooseNetworkPrinter.py:101 - #: ../troubleshoot/ChooseNetworkPrinter.py:102 - #: ../troubleshoot/ChooseNetworkPrinter.py:105 -@@ -345,12 +354,12 @@ msgstr "" - msgid "Pending" - msgstr "" - --#: ../jobviewer.py:591 ../system-config-printer.py:186 -+#: ../jobviewer.py:591 ../system-config-printer.py:190 - #: ../troubleshoot/PrintTestPage.py:43 - msgid "Processing" - msgstr "" - --#: ../jobviewer.py:592 ../system-config-printer.py:188 -+#: ../jobviewer.py:592 ../system-config-printer.py:192 - #: ../troubleshoot/PrintTestPage.py:44 - msgid "Stopped" - msgstr "" -@@ -460,8 +469,8 @@ msgstr "" - msgid "_Set Default" - msgstr "" - --#: ../my-default-printer.py:158 ../system-config-printer.py:423 --#: ../system-config-printer.py:3660 ../troubleshoot/ChooseNetworkPrinter.py:37 -+#: ../my-default-printer.py:158 ../system-config-printer.py:427 -+#: ../system-config-printer.py:3675 ../troubleshoot/ChooseNetworkPrinter.py:37 - #: ../troubleshoot/ChoosePrinter.py:38 - msgid "Location" - msgstr "" -@@ -490,7 +499,7 @@ msgstr "" - msgid "Authenticated" - msgstr "" - --#: ../ppdippstr.py:50 ../system-config-printer.py:6259 -+#: ../ppdippstr.py:50 ../system-config-printer.py:6207 - msgid "None" - msgstr "" - -@@ -703,201 +712,201 @@ msgstr "" - msgid "1200 dpi, photo, black + color cartridge, photo paper" - msgstr "" - --#: ../system-config-printer.py:127 -+#: ../system-config-printer.py:131 - msgid "To do this, select System->Administration->Firewall from the main menu." - msgstr "" - --#: ../system-config-printer.py:185 -+#: ../system-config-printer.py:189 - msgid "Idle" - msgstr "" - --#: ../system-config-printer.py:187 -+#: ../system-config-printer.py:191 - msgid "Busy" - msgstr "" - --#: ../system-config-printer.py:372 ../system-config-printer.py:1373 -+#: ../system-config-printer.py:376 ../system-config-printer.py:1377 - msgid "Class" - msgstr "" - --#: ../system-config-printer.py:399 -+#: ../system-config-printer.py:403 - msgid "Set As De_fault" - msgstr "" - --#: ../system-config-printer.py:403 -+#: ../system-config-printer.py:407 - msgid "_Create class" - msgstr "" - --#: ../system-config-printer.py:405 -+#: ../system-config-printer.py:409 - msgid "View Print _Queue" - msgstr "" - --#: ../system-config-printer.py:407 -+#: ../system-config-printer.py:411 - msgid "_Add to Group" - msgstr "" - --#: ../system-config-printer.py:409 -+#: ../system-config-printer.py:413 - msgid "Save Results as _Group" - msgstr "" - --#: ../system-config-printer.py:411 -+#: ../system-config-printer.py:415 - msgid "Save Filter as _Search Group" - msgstr "" - --#: ../system-config-printer.py:415 -+#: ../system-config-printer.py:419 - msgid "E_nabled" - msgstr "" - --#: ../system-config-printer.py:417 -+#: ../system-config-printer.py:421 - msgid "_Shared" - msgstr "" - --#: ../system-config-printer.py:421 ../troubleshoot/ChooseNetworkPrinter.py:35 -+#: ../system-config-printer.py:425 ../troubleshoot/ChooseNetworkPrinter.py:35 - #: ../troubleshoot/ChoosePrinter.py:36 ../troubleshoot/DeviceListed.py:36 - msgid "Name" - msgstr "" - --#: ../system-config-printer.py:422 -+#: ../system-config-printer.py:426 - msgid "Description" - msgstr "" - --#: ../system-config-printer.py:424 -+#: ../system-config-printer.py:428 - msgid "Manufacturer / Model" - msgstr "" - - #. Printer state reasons list --#: ../system-config-printer.py:499 -+#: ../system-config-printer.py:503 - msgid "Message" - msgstr "" - --#: ../system-config-printer.py:534 -+#: ../system-config-printer.py:538 - msgid "Problems?" - msgstr "" - --#: ../system-config-printer.py:637 ../system-config-printer.py:639 -+#: ../system-config-printer.py:641 ../system-config-printer.py:643 - msgid "Members of this class" - msgstr "" - --#: ../system-config-printer.py:638 ../system-config-printer.py:640 -+#: ../system-config-printer.py:642 ../system-config-printer.py:644 - msgid "Others" - msgstr "" - --#: ../system-config-printer.py:641 -+#: ../system-config-printer.py:645 - msgid "Devices" - msgstr "" - --#: ../system-config-printer.py:642 -+#: ../system-config-printer.py:646 - msgid "Connections" - msgstr "" - --#: ../system-config-printer.py:643 -+#: ../system-config-printer.py:647 - msgid "Makes" - msgstr "" - --#: ../system-config-printer.py:644 -+#: ../system-config-printer.py:648 - msgid "Models" - msgstr "" - --#: ../system-config-printer.py:645 -+#: ../system-config-printer.py:649 - msgid "Drivers" - msgstr "" - --#: ../system-config-printer.py:646 ../glade/NewPrinterWindow.glade.h:55 -+#: ../system-config-printer.py:650 ../glade/NewPrinterWindow.glade.h:54 - msgid "Downloadable Drivers" - msgstr "" - --#: ../system-config-printer.py:647 -+#: ../system-config-printer.py:651 - msgid "Users" - msgstr "" - --#: ../system-config-printer.py:682 -+#: ../system-config-printer.py:686 - msgid "Automatic rotation" - msgstr "" - --#: ../system-config-printer.py:989 -+#: ../system-config-printer.py:993 - #, python-format - msgid "Printer Properties - '%s' on %s" - msgstr "" - - #. The Conflict button was pressed. --#: ../system-config-printer.py:996 -+#: ../system-config-printer.py:1000 - msgid "" - "There are conflicting options.\n" - "Changes can only be applied after\n" - "these conflicts are resolved." - msgstr "" - --#: ../system-config-printer.py:1214 -+#: ../system-config-printer.py:1218 - #, python-format - msgid "Printer configuration - %s" - msgstr "" - --#: ../system-config-printer.py:1217 -+#: ../system-config-printer.py:1221 - #, python-format - msgid "Connected to %s" - msgstr "" - - #. Update our copy of the printer's settings. --#: ../system-config-printer.py:1257 ../system-config-printer.py:2042 -+#: ../system-config-printer.py:1261 ../system-config-printer.py:2046 - msgid "obtaining queue details" - msgstr "" - --#: ../system-config-printer.py:1295 -+#: ../system-config-printer.py:1299 - msgid "Remove from Group" - msgstr "" - --#: ../system-config-printer.py:1361 -+#: ../system-config-printer.py:1365 - msgid "Network printer (discovered)" - msgstr "" - --#: ../system-config-printer.py:1364 -+#: ../system-config-printer.py:1368 - msgid "Network class (discovered)" - msgstr "" - --#: ../system-config-printer.py:1370 ../system-config-printer.py:5524 --#: ../system-config-printer.py:5594 ../system-config-printer.py:5596 -+#: ../system-config-printer.py:1374 ../system-config-printer.py:5519 -+#: ../system-config-printer.py:5589 ../system-config-printer.py:5591 - msgid "Fax" - msgstr "" - --#: ../system-config-printer.py:1376 ../system-config-printer.py:1382 -+#: ../system-config-printer.py:1380 ../system-config-printer.py:1386 - #: ../troubleshoot/LocalOrRemote.py:30 - msgid "Network printer" - msgstr "" - --#: ../system-config-printer.py:1379 -+#: ../system-config-printer.py:1383 - msgid "Network print share" - msgstr "" - --#: ../system-config-printer.py:1508 ../glade/ConnectingDialog.glade.h:2 -+#: ../system-config-printer.py:1512 ../glade/ConnectingDialog.glade.h:2 - #, no-c-format, python-format - msgid "Opening connection to %s" - msgstr "" - --#: ../system-config-printer.py:1887 -+#: ../system-config-printer.py:1891 - msgid "Installable Options" - msgstr "" - --#: ../system-config-printer.py:1888 -+#: ../system-config-printer.py:1892 - #: ../glade/PrinterPropertiesDialog.glade.h:109 - msgid "Printer Options" - msgstr "" - --#: ../system-config-printer.py:1924 -+#: ../system-config-printer.py:1928 - #, python-format - msgid "modifying class %s" - msgstr "" - --#: ../system-config-printer.py:1926 ../system-config-printer.py:3019 --#: ../system-config-printer.py:3044 ../system-config-printer.py:6547 --#: ../system-config-printer.py:6559 ../system-config-printer.py:6581 -+#: ../system-config-printer.py:1930 ../system-config-printer.py:3037 -+#: ../system-config-printer.py:3062 ../system-config-printer.py:6495 -+#: ../system-config-printer.py:6507 ../system-config-printer.py:6529 - #, python-format - msgid "modifying printer %s" - msgstr "" - --#: ../system-config-printer.py:1941 -+#: ../system-config-printer.py:1945 - msgid "This will delete this class!" - msgstr "" - --#: ../system-config-printer.py:1942 -+#: ../system-config-printer.py:1946 - msgid "Proceed anyway?" - msgstr "" - -@@ -905,63 +914,63 @@ msgstr "" - #. but we have never fetched the server settings to see whether - #. the server is publishing shared printers. Fetch the settings - #. now so that we can update the "not published" label if necessary. --#: ../system-config-printer.py:2030 ../system-config-printer.py:3203 -+#: ../system-config-printer.py:2034 ../system-config-printer.py:3221 - msgid "fetching server settings" - msgstr "" - --#: ../system-config-printer.py:2100 -+#: ../system-config-printer.py:2104 - msgid "Set Default Printer" - msgstr "" - --#: ../system-config-printer.py:2102 -+#: ../system-config-printer.py:2106 - msgid "Do you want to set this as the system-wide default printer?" - msgstr "" - --#: ../system-config-printer.py:2104 -+#: ../system-config-printer.py:2108 - msgid "Set as the _system-wide default printer" - msgstr "" - --#: ../system-config-printer.py:2106 -+#: ../system-config-printer.py:2110 - msgid "_Clear my personal default setting" - msgstr "" - --#: ../system-config-printer.py:2107 -+#: ../system-config-printer.py:2111 - msgid "Set as my _personal default printer" - msgstr "" - --#: ../system-config-printer.py:2112 -+#: ../system-config-printer.py:2116 - msgid "setting default printer" - msgstr "" - --#: ../system-config-printer.py:2169 -+#: ../system-config-printer.py:2173 - msgid "printing test page" - msgstr "" - --#: ../system-config-printer.py:2182 ../system-config-printer.py:2217 --#: ../system-config-printer.py:5418 -+#: ../system-config-printer.py:2186 ../system-config-printer.py:2221 -+#: ../system-config-printer.py:5413 - msgid "Not possible" - msgstr "" - --#: ../system-config-printer.py:2183 ../system-config-printer.py:2218 -+#: ../system-config-printer.py:2187 ../system-config-printer.py:2222 - msgid "" - "The remote server did not accept the print job, most likely because the " - "printer is not shared." - msgstr "" - --#: ../system-config-printer.py:2195 ../system-config-printer.py:2210 -+#: ../system-config-printer.py:2199 ../system-config-printer.py:2214 - msgid "Submitted" - msgstr "" - --#: ../system-config-printer.py:2196 -+#: ../system-config-printer.py:2200 - #, python-format - msgid "Test page submitted as job %d" - msgstr "" - --#: ../system-config-printer.py:2203 -+#: ../system-config-printer.py:2207 - msgid "sending maintenance command" - msgstr "" - --#: ../system-config-printer.py:2211 -+#: ../system-config-printer.py:2215 - #, python-format - msgid "Maintenance command submitted as job %d" - msgstr "" -@@ -969,71 +978,71 @@ msgstr "" - #. The underlying cupsGetPPD2() function returned NULL without - #. setting an IPP error, so it'll be something like a failed - #. connection. --#: ../system-config-printer.py:2285 ../system-config-printer.py:2381 -+#: ../system-config-printer.py:2289 ../system-config-printer.py:2385 - msgid "Error" - msgstr "" - --#: ../system-config-printer.py:2286 -+#: ../system-config-printer.py:2290 - msgid "There was a problem connecting to the CUPS server." - msgstr "" - --#: ../system-config-printer.py:2382 -+#: ../system-config-printer.py:2386 - #, python-format - msgid "Option '%s' has value '%s' and cannot be edited." - msgstr "" - --#: ../system-config-printer.py:2466 -+#: ../system-config-printer.py:2476 - msgid "Marker levels are not reported for this printer." - msgstr "" - --#: ../system-config-printer.py:2763 -+#: ../system-config-printer.py:2773 - msgid "Cannot Rename" - msgstr "" - --#: ../system-config-printer.py:2764 -+#: ../system-config-printer.py:2774 - msgid "There are queued jobs." - msgstr "" - --#: ../system-config-printer.py:2822 -+#: ../system-config-printer.py:2840 - msgid "renaming printer" - msgstr "" - - #. for classes make sure all members - #. will get added --#: ../system-config-printer.py:2907 -+#: ../system-config-printer.py:2925 - msgid "copying printer" - msgstr "" - --#: ../system-config-printer.py:2971 -+#: ../system-config-printer.py:2989 - #, python-format - msgid "Really delete class '%s'?" - msgstr "" - --#: ../system-config-printer.py:2973 -+#: ../system-config-printer.py:2991 - #, python-format - msgid "Really delete printer '%s'?" - msgstr "" - --#: ../system-config-printer.py:2975 -+#: ../system-config-printer.py:2993 - msgid "Really delete selected destinations?" - msgstr "" - --#: ../system-config-printer.py:2996 -+#: ../system-config-printer.py:3014 - #, python-format - msgid "deleting printer %s" - msgstr "" - --#: ../system-config-printer.py:3070 -+#: ../system-config-printer.py:3088 - msgid "Publish Shared Printers" - msgstr "" - --#: ../system-config-printer.py:3071 -+#: ../system-config-printer.py:3089 - msgid "" - "Shared printers are not available to other people unless the 'Publish shared " - "printers' option is enabled in the server settings." - msgstr "" - --#: ../system-config-printer.py:3264 -+#: ../system-config-printer.py:3282 - msgid "modifying server settings" - msgstr "" - -@@ -1043,100 +1052,100 @@ msgstr "" - #. be unblocked. Unfortunately, this is not yet possible - #. (bug #440469). However, we can display a dialog to suggest - #. that now might be a good time to review the firewall settings. --#: ../system-config-printer.py:3289 -+#: ../system-config-printer.py:3307 - msgid "Review Firewall" - msgstr "" - --#: ../system-config-printer.py:3290 -+#: ../system-config-printer.py:3308 - msgid "" - "You may need to adjust the firewall to allow network printing to this " - "computer." - msgstr "" - --#: ../system-config-printer.py:3623 -+#: ../system-config-printer.py:3638 - msgid "Browsing not available (pysmbc not installed)" - msgstr "" - - #. SMB list columns --#: ../system-config-printer.py:3629 -+#: ../system-config-printer.py:3644 - msgid "Share" - msgstr "" - --#: ../system-config-printer.py:3635 -+#: ../system-config-printer.py:3650 - msgid "Comment" - msgstr "" - - #. IPP list columns --#: ../system-config-printer.py:3654 -+#: ../system-config-printer.py:3669 - msgid "Queue" - msgstr "" - --#: ../system-config-printer.py:3668 -+#: ../system-config-printer.py:3683 - msgid "" - "PostScript Printer Description files (*.ppd, *.PPD, *.ppd.gz, *.PPD.gz, *." - "PPD.GZ)" - msgstr "" - --#: ../system-config-printer.py:3677 -+#: ../system-config-printer.py:3692 - msgid "All files (*)" - msgstr "" - --#: ../system-config-printer.py:3713 ../system-config-printer.py:5970 --#: ../system-config-printer.py:6008 ../applet.py:124 -+#: ../system-config-printer.py:3728 ../system-config-printer.py:5918 -+#: ../system-config-printer.py:5956 ../applet.py:124 - msgid "Search" - msgstr "" - --#: ../system-config-printer.py:3736 ../system-config-printer.py:3760 --#: ../glade/NewPrinterWindow.glade.h:74 -+#: ../system-config-printer.py:3751 ../system-config-printer.py:3775 -+#: ../glade/NewPrinterWindow.glade.h:73 - msgid "New Printer" - msgstr "" - --#: ../system-config-printer.py:3747 -+#: ../system-config-printer.py:3762 - msgid "New Class" - msgstr "" - --#: ../system-config-printer.py:3752 -+#: ../system-config-printer.py:3767 - msgid "Change Device URI" - msgstr "" - --#: ../system-config-printer.py:3758 -+#: ../system-config-printer.py:3773 - msgid "Change Driver" - msgstr "" - --#: ../system-config-printer.py:3927 ../system-config-printer.py:3993 --#: ../system-config-printer.py:4289 ../system-config-printer.py:4487 --#: ../system-config-printer.py:5772 ../system-config-printer.py:5995 -+#: ../system-config-printer.py:3942 ../system-config-printer.py:4008 -+#: ../system-config-printer.py:4304 ../system-config-printer.py:4502 -+#: ../system-config-printer.py:5762 ../system-config-printer.py:5943 - msgid "Searching" - msgstr "" - --#: ../system-config-printer.py:3928 -+#: ../system-config-printer.py:3943 - msgid "Searching for downloadable drivers" - msgstr "" - --#: ../system-config-printer.py:3994 ../system-config-printer.py:4290 -+#: ../system-config-printer.py:4009 ../system-config-printer.py:4305 - msgid "Searching for drivers" - msgstr "" - --#: ../system-config-printer.py:4488 ../system-config-printer.py:5773 -+#: ../system-config-printer.py:4503 ../system-config-printer.py:5763 - msgid "Searching for printers" - msgstr "" - --#: ../system-config-printer.py:4497 -+#: ../system-config-printer.py:4512 - msgid "fetching device list" - msgstr "" - - #. Tell the user why he needs the plugin --#: ../system-config-printer.py:4579 -+#: ../system-config-printer.py:4594 - msgid "For this printer a proprietary driver plugin from HP is available.\n" - msgstr "" - --#: ../system-config-printer.py:4582 -+#: ../system-config-printer.py:4597 - msgid "" - "The installation of the plugin is required for your printer to work.\n" - "\n" - msgstr "" - --#: ../system-config-printer.py:4585 -+#: ../system-config-printer.py:4600 - msgid "" - "Installing the plugin is optional, it completes or enhances the " - "functionality\n" -@@ -1144,280 +1153,272 @@ msgid "" - "\n" - msgstr "" - --#: ../system-config-printer.py:4589 -+#: ../system-config-printer.py:4604 - msgid "The plugin provides the following features:\n" - msgstr "" - --#: ../system-config-printer.py:4592 -+#: ../system-config-printer.py:4607 - msgid " - Printing support\n" - msgstr "" - --#: ../system-config-printer.py:4595 -+#: ../system-config-printer.py:4610 - msgid " - Faster printing\n" - msgstr "" - --#: ../system-config-printer.py:4598 -+#: ../system-config-printer.py:4613 - msgid " - Better printout quality\n" - msgstr "" - --#: ../system-config-printer.py:4601 -+#: ../system-config-printer.py:4616 - msgid " - Extra printing features\n" - msgstr "" - --#: ../system-config-printer.py:4604 -+#: ../system-config-printer.py:4619 - msgid " - Scanning support\n" - msgstr "" - --#: ../system-config-printer.py:4607 -+#: ../system-config-printer.py:4622 - msgid " - Faster scanning\n" - msgstr "" - --#: ../system-config-printer.py:4610 -+#: ../system-config-printer.py:4625 - msgid " - Better scanning image quality\n" - msgstr "" - --#: ../system-config-printer.py:4613 -+#: ../system-config-printer.py:4628 - msgid " - Faxing support\n" - msgstr "" - --#: ../system-config-printer.py:4616 -+#: ../system-config-printer.py:4631 - msgid " - Extra fax features\n" - msgstr "" - --#: ../system-config-printer.py:4619 -+#: ../system-config-printer.py:4634 - msgid " - Better Input/Output support\n" - msgstr "" - --#: ../system-config-printer.py:4622 -+#: ../system-config-printer.py:4637 - msgid " - Extra user interface features\n" - msgstr "" - --#: ../system-config-printer.py:4625 -+#: ../system-config-printer.py:4640 - msgid " - Other extra features\n" - msgstr "" - --#: ../system-config-printer.py:4630 -+#: ../system-config-printer.py:4645 - msgid "Install plugin" - msgstr "" - --#: ../system-config-printer.py:4631 -+#: ../system-config-printer.py:4646 - msgid "Do not set up printer" - msgstr "" - --#: ../system-config-printer.py:4632 -+#: ../system-config-printer.py:4647 - msgid "Set up without plugin" - msgstr "" - --#: ../system-config-printer.py:4634 ../troubleshoot/PrintTestPage.py:118 -+#: ../system-config-printer.py:4649 ../troubleshoot/PrintTestPage.py:118 - msgid "Yes" - msgstr "" - --#: ../system-config-printer.py:4635 ../troubleshoot/PrintTestPage.py:119 -+#: ../system-config-printer.py:4650 ../troubleshoot/PrintTestPage.py:119 - msgid "No" - msgstr "" - --#: ../system-config-printer.py:4809 ../system-config-printer.py:4813 -+#: ../system-config-printer.py:4824 ../system-config-printer.py:4828 - msgid " (Current)" - msgstr "" - --#: ../system-config-printer.py:4845 --msgid "HP Printer (HPLIP)" --msgstr "" -- --#: ../system-config-printer.py:4886 -+#: ../system-config-printer.py:4881 - msgid "Other" - msgstr "" - - #. device-info - #. PhysicalDevice obj - #. Separator? --#: ../system-config-printer.py:4902 -+#: ../system-config-printer.py:4897 - msgid "Network Printer" - msgstr "" - --#: ../system-config-printer.py:4906 -+#: ../system-config-printer.py:4901 - msgid "Find Network Printer" - msgstr "" - --#: ../system-config-printer.py:4979 ../system-config-printer.py:5376 -+#: ../system-config-printer.py:4974 ../system-config-printer.py:5371 - msgid "Scanning..." - msgstr "" - --#: ../system-config-printer.py:5034 ../system-config-printer.py:5798 -+#: ../system-config-printer.py:5029 - msgid "No Print Shares" - msgstr "" - --#: ../system-config-printer.py:5035 -+#: ../system-config-printer.py:5030 - msgid "" - "There were no print shares found. Please check that the Samba service is " - "marked as trusted in your firewall configuration." - msgstr "" - --#: ../system-config-printer.py:5296 ../system-config-printer.py:5357 -+#: ../system-config-printer.py:5291 ../system-config-printer.py:5352 - msgid "Print Share Verified" - msgstr "" - --#: ../system-config-printer.py:5297 ../system-config-printer.py:5358 -+#: ../system-config-printer.py:5292 ../system-config-printer.py:5353 - msgid "This print share is accessible." - msgstr "" - --#: ../system-config-printer.py:5302 ../system-config-printer.py:5362 -+#: ../system-config-printer.py:5297 ../system-config-printer.py:5357 - msgid "This print share is not accessible." - msgstr "" - --#: ../system-config-printer.py:5305 -+#: ../system-config-printer.py:5300 - msgid "Print Share Inaccessible" - msgstr "" - --#: ../system-config-printer.py:5361 -+#: ../system-config-printer.py:5356 - msgid "Inaccessible" - msgstr "" - --#: ../system-config-printer.py:5419 -+#: ../system-config-printer.py:5414 - #, python-format - msgid "It is not possible to obtain a list of queues from '%s'." - msgstr "" - --#: ../system-config-printer.py:5421 -+#: ../system-config-printer.py:5416 - msgid "" - "Obtaining a list of queues is a CUPS extension to IPP. Network printers do " - "not support it." - msgstr "" - --#: ../system-config-printer.py:5424 -+#: ../system-config-printer.py:5419 - msgid "No queues" - msgstr "" - --#: ../system-config-printer.py:5425 -+#: ../system-config-printer.py:5420 - msgid "There are no queues available." - msgstr "" - --#: ../system-config-printer.py:5516 -+#: ../system-config-printer.py:5511 - msgid "Parallel Port" - msgstr "" - --#: ../system-config-printer.py:5518 -+#: ../system-config-printer.py:5513 - msgid "Serial Port" - msgstr "" - --#: ../system-config-printer.py:5520 -+#: ../system-config-printer.py:5515 - msgid "USB" - msgstr "" - --#: ../system-config-printer.py:5522 ../system-config-printer.py:5525 -+#: ../system-config-printer.py:5517 ../system-config-printer.py:5520 - msgid "HP Linux Imaging and Printing (HPLIP)" - msgstr "" - --#: ../system-config-printer.py:5527 -+#: ../system-config-printer.py:5522 - msgid "Hardware Abstraction Layer (HAL)" - msgstr "" - --#: ../system-config-printer.py:5529 -+#: ../system-config-printer.py:5524 - msgid "AppSocket/HP JetDirect" - msgstr "" - --#: ../system-config-printer.py:5538 -+#: ../system-config-printer.py:5533 - #, python-format - msgid "LPD/LPR queue '%s'" - msgstr "" - --#: ../system-config-printer.py:5540 -+#: ../system-config-printer.py:5535 - msgid "LPD/LPR queue" - msgstr "" - --#: ../system-config-printer.py:5543 -+#: ../system-config-printer.py:5538 - msgid "Windows Printer via SAMBA" - msgstr "" - --#: ../system-config-printer.py:5545 ../glade/NewPrinterWindow.glade.h:66 -+#: ../system-config-printer.py:5540 ../glade/NewPrinterWindow.glade.h:65 - msgid "IPP" - msgstr "" - --#: ../system-config-printer.py:5547 -+#: ../system-config-printer.py:5542 - msgid "HTTP" - msgstr "" - --#: ../system-config-printer.py:5632 -+#: ../system-config-printer.py:5624 - msgid "A printer connected to the parallel port." - msgstr "" - --#: ../system-config-printer.py:5634 -+#: ../system-config-printer.py:5626 - msgid "A printer connected to a USB port." - msgstr "" - --#: ../system-config-printer.py:5636 -+#: ../system-config-printer.py:5628 - msgid "" - "HPLIP software driving a printer, or the printer function of a multi-" - "function device." - msgstr "" - --#: ../system-config-printer.py:5639 -+#: ../system-config-printer.py:5631 - msgid "" - "HPLIP software driving a fax machine, or the fax function of a multi-" - "function device." - msgstr "" - --#: ../system-config-printer.py:5642 -+#: ../system-config-printer.py:5634 - msgid "Local printer detected by the Hardware Abstraction Layer (HAL)." - msgstr "" - --#: ../system-config-printer.py:5799 --msgid "HPLIP cannot find the device." --msgstr "" -- --#: ../system-config-printer.py:5881 -+#: ../system-config-printer.py:5831 - msgid "No printer was found at that address." - msgstr "" - --#: ../system-config-printer.py:6020 -+#: ../system-config-printer.py:5968 - msgid "-- Select from search results --" - msgstr "" - --#: ../system-config-printer.py:6022 -+#: ../system-config-printer.py:5970 - msgid "-- No matches found --" - msgstr "" - --#: ../system-config-printer.py:6203 -+#: ../system-config-printer.py:6151 - msgid " (recommended)" - msgstr "" - --#: ../system-config-printer.py:6217 -+#: ../system-config-printer.py:6165 - msgid "This PPD is generated by foomatic." - msgstr "" - --#: ../system-config-printer.py:6241 -+#: ../system-config-printer.py:6189 - msgid "OpenPrinting" - msgstr "" - --#: ../system-config-printer.py:6252 -+#: ../system-config-printer.py:6200 - msgid "Distributable" - msgstr "" - --#: ../system-config-printer.py:6293 -+#: ../system-config-printer.py:6241 - msgid ", " - msgstr "" - --#: ../system-config-printer.py:6298 -+#: ../system-config-printer.py:6246 - #, python-format - msgid "" - "\n" - "(%s)" - msgstr "" - --#: ../system-config-printer.py:6303 -+#: ../system-config-printer.py:6251 - msgid "No support contacts known" - msgstr "" - --#: ../system-config-printer.py:6307 ../system-config-printer.py:6320 -+#: ../system-config-printer.py:6255 ../system-config-printer.py:6268 - msgid "Not specified." - msgstr "" - - #. Foomatic database problem of some sort. --#: ../system-config-printer.py:6360 -+#: ../system-config-printer.py:6308 - msgid "Database error" - msgstr "" - --#: ../system-config-printer.py:6361 -+#: ../system-config-printer.py:6309 - #, python-format - msgid "The '%s' driver cannot be used with printer '%s %s'." - msgstr "" -@@ -1425,60 +1426,60 @@ msgstr "" - #. This printer references some XML that is not - #. installed by default. Point the user at the - #. package they need to install. --#: ../system-config-printer.py:6371 -+#: ../system-config-printer.py:6319 - #, python-format - msgid "You will need to install the '%s' package in order to use this driver." - msgstr "" - - #. This error came from trying to open the PPD file. --#: ../system-config-printer.py:6378 -+#: ../system-config-printer.py:6326 - msgid "PPD error" - msgstr "" - --#: ../system-config-printer.py:6380 -+#: ../system-config-printer.py:6328 - msgid "Failed to read PPD file. Possible reason follows:" - msgstr "" - - #. Failed to get PPD downloaded from OpenPrinting XXX --#: ../system-config-printer.py:6397 -+#: ../system-config-printer.py:6345 - msgid "Downloadable drivers" - msgstr "" - --#: ../system-config-printer.py:6398 -+#: ../system-config-printer.py:6346 - msgid "Failed to download PPD." - msgstr "" - --#: ../system-config-printer.py:6405 -+#: ../system-config-printer.py:6353 - msgid "fetching PPD" - msgstr "" - --#: ../system-config-printer.py:6434 ../system-config-printer.py:6472 -+#: ../system-config-printer.py:6382 ../system-config-printer.py:6420 - msgid "No Installable Options" - msgstr "" - --#: ../system-config-printer.py:6520 -+#: ../system-config-printer.py:6468 - #, python-format - msgid "adding printer %s" - msgstr "" - --#: ../system-config-printer.py:6669 -+#: ../system-config-printer.py:6617 - msgid "Would you like to print a test page?" - msgstr "" - --#: ../system-config-printer.py:6722 -+#: ../system-config-printer.py:6670 - msgid "Install driver" - msgstr "" - --#: ../system-config-printer.py:6723 ../troubleshoot/CheckPPDSanity.py:131 -+#: ../system-config-printer.py:6671 ../troubleshoot/CheckPPDSanity.py:131 - #, python-format - msgid "Printer '%s' requires the %s package but it is not currently installed." - msgstr "" - --#: ../system-config-printer.py:6739 -+#: ../system-config-printer.py:6687 - msgid "Missing driver" - msgstr "" - --#: ../system-config-printer.py:6740 -+#: ../system-config-printer.py:6688 - #, python-format - msgid "" - "Printer '%s' requires the '%s' program but it is not currently installed. " -@@ -1592,106 +1593,102 @@ msgid "Enter device URI" - msgstr "" - - #: ../glade/NewPrinterWindow.glade.h:5 --msgid "HP Printer (HPLIP) via network" --msgstr "" -- --#: ../glade/NewPrinterWindow.glade.h:6 - msgid "IPP Printer" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:7 -+#: ../glade/NewPrinterWindow.glade.h:6 - msgid "License Terms" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:8 -+#: ../glade/NewPrinterWindow.glade.h:7 - msgid "Location of the LPD network printer" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:9 -+#: ../glade/NewPrinterWindow.glade.h:8 - msgid "Location of the network printer" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:10 -+#: ../glade/NewPrinterWindow.glade.h:9 - msgid "Location (optional)" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:11 -+#: ../glade/NewPrinterWindow.glade.h:10 - msgid "Network Printer" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:12 -+#: ../glade/NewPrinterWindow.glade.h:11 - msgid "Note" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:13 -+#: ../glade/NewPrinterWindow.glade.h:12 - msgid "Output Quality" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:14 -+#: ../glade/NewPrinterWindow.glade.h:13 - msgid "Printer Name" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:15 -+#: ../glade/NewPrinterWindow.glade.h:14 - msgid "SMB Printer" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:16 -+#: ../glade/NewPrinterWindow.glade.h:15 - msgid "Select Driver" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:17 -+#: ../glade/NewPrinterWindow.glade.h:16 - msgid "Settings of the serial port" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:18 -+#: ../glade/NewPrinterWindow.glade.h:17 - msgid "smb://[workgroup/]server[:port]/printer" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:19 -+#: ../glade/NewPrinterWindow.glade.h:18 - msgid "Choose Class Members" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:20 -+#: ../glade/NewPrinterWindow.glade.h:19 - msgid "Choose Driver" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:21 -+#: ../glade/NewPrinterWindow.glade.h:20 - msgid "Describe Printer" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:22 -+#: ../glade/NewPrinterWindow.glade.h:21 - msgid "Existing Settings" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:23 -+#: ../glade/NewPrinterWindow.glade.h:22 - msgid "Installable Options" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:24 -+#: ../glade/NewPrinterWindow.glade.h:23 - msgid "Select Device" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:25 -+#: ../glade/NewPrinterWindow.glade.h:24 - msgid "Baud Rate" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:26 -+#: ../glade/NewPrinterWindow.glade.h:25 - msgid "Browse..." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:27 -+#: ../glade/NewPrinterWindow.glade.h:26 - msgid "Comments..." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:28 -+#: ../glade/NewPrinterWindow.glade.h:27 - msgid "Connection" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:29 -+#: ../glade/NewPrinterWindow.glade.h:28 - msgid "Data Bits" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:30 -+#: ../glade/NewPrinterWindow.glade.h:29 - msgid "" - "Default\n" - "1200\n" -@@ -1704,14 +1701,14 @@ msgid "" - "115200" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:39 -+#: ../glade/NewPrinterWindow.glade.h:38 - msgid "" - "Default\n" - "8\n" - "7" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:42 -+#: ../glade/NewPrinterWindow.glade.h:41 - msgid "" - "Default\n" - "None\n" -@@ -1719,7 +1716,7 @@ msgid "" - "Even" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:46 -+#: ../glade/NewPrinterWindow.glade.h:45 - msgid "" - "Default\n" - "None\n" -@@ -1728,188 +1725,188 @@ msgid "" - "DTR/DSR (Hardware)" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:51 -+#: ../glade/NewPrinterWindow.glade.h:50 - #: ../glade/PrinterPropertiesDialog.glade.h:35 - msgid "Description:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:52 ../troubleshoot/DeviceListed.py:40 -+#: ../glade/NewPrinterWindow.glade.h:51 ../troubleshoot/DeviceListed.py:40 - msgid "Device URI" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:53 -+#: ../glade/NewPrinterWindow.glade.h:52 - msgid "Device description." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:54 -+#: ../glade/NewPrinterWindow.glade.h:53 - msgid "DirectJet" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:56 -+#: ../glade/NewPrinterWindow.glade.h:55 - msgid "Driver details" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:57 -+#: ../glade/NewPrinterWindow.glade.h:56 - msgid "Empty" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:58 -+#: ../glade/NewPrinterWindow.glade.h:57 - msgid "Find _Queue..." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:59 -+#: ../glade/NewPrinterWindow.glade.h:58 - msgid "Flow Control" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:60 -+#: ../glade/NewPrinterWindow.glade.h:59 - msgid "" - "For the printer you have selected there are drivers available for download." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:61 -+#: ../glade/NewPrinterWindow.glade.h:60 - msgid "Free software" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:62 -+#: ../glade/NewPrinterWindow.glade.h:61 - msgid "Graphics:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:63 -+#: ../glade/NewPrinterWindow.glade.h:62 - msgid "Host:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:64 -+#: ../glade/NewPrinterWindow.glade.h:63 - msgid "Human-readable description such as \"HP LaserJet with Duplexer\"" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:65 -+#: ../glade/NewPrinterWindow.glade.h:64 - msgid "Human-readable location such as \"Lab 1\"" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:67 -+#: ../glade/NewPrinterWindow.glade.h:66 - msgid "LPD" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:68 -+#: ../glade/NewPrinterWindow.glade.h:67 - msgid "License:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:69 -+#: ../glade/NewPrinterWindow.glade.h:68 - msgid "Line art:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:70 -+#: ../glade/NewPrinterWindow.glade.h:69 - msgid "Local Driver" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:71 -+#: ../glade/NewPrinterWindow.glade.h:70 - msgid "Make and model:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:72 -+#: ../glade/NewPrinterWindow.glade.h:71 - msgid "Manufacturer" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:73 -+#: ../glade/NewPrinterWindow.glade.h:72 - msgid "Network" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:75 -+#: ../glade/NewPrinterWindow.glade.h:74 - msgid "No, I do not accept this license" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:76 -+#: ../glade/NewPrinterWindow.glade.h:75 - msgid "Parity" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:78 -+#: ../glade/NewPrinterWindow.glade.h:77 - msgid "Patented algorithms" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:79 -+#: ../glade/NewPrinterWindow.glade.h:78 - msgid "Photo:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:80 -+#: ../glade/NewPrinterWindow.glade.h:79 - msgid "Port number:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:81 -+#: ../glade/NewPrinterWindow.glade.h:80 - msgid "" - "PostScript Printer Description (PPD) files can often be found on the driver " - "disk that comes with the printer. For PostScript printers they are often " - "part of the Windows® driver." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:82 -+#: ../glade/NewPrinterWindow.glade.h:81 - msgid "Printer model:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:83 -+#: ../glade/NewPrinterWindow.glade.h:82 - msgid "Probe" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:84 -+#: ../glade/NewPrinterWindow.glade.h:83 - msgid "Prompt user if authentication is required" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:85 -+#: ../glade/NewPrinterWindow.glade.h:84 - msgid "Provide PPD file" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:86 -+#: ../glade/NewPrinterWindow.glade.h:85 - msgid "Queue:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:87 -+#: ../glade/NewPrinterWindow.glade.h:86 - msgid "SCSI" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:88 -+#: ../glade/NewPrinterWindow.glade.h:87 - msgid "SMB" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:89 -+#: ../glade/NewPrinterWindow.glade.h:88 - msgid "Search for a printer driver to download" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:90 -+#: ../glade/NewPrinterWindow.glade.h:89 - msgid "Searching..." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:91 -+#: ../glade/NewPrinterWindow.glade.h:90 - msgid "Select A File" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:92 -+#: ../glade/NewPrinterWindow.glade.h:91 - msgid "Select printer from database" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:93 -+#: ../glade/NewPrinterWindow.glade.h:92 - msgid "Serial" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:94 -+#: ../glade/NewPrinterWindow.glade.h:93 - msgid "Set authentication details now" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:95 -+#: ../glade/NewPrinterWindow.glade.h:94 - msgid "Short name for this printer such as \"laserjet\"" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:96 -+#: ../glade/NewPrinterWindow.glade.h:95 - msgid "Supplier:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:97 -+#: ../glade/NewPrinterWindow.glade.h:96 - msgid "Support:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:98 -+#: ../glade/NewPrinterWindow.glade.h:97 - msgid "Text:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:99 -+#: ../glade/NewPrinterWindow.glade.h:98 - msgid "" - "The foomatic printer database contains various manufacturer provided " - "PostScript Printer Description (PPD) files and also can generate PPD files " -@@ -1918,68 +1915,68 @@ msgid "" - "printer." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:100 -+#: ../glade/NewPrinterWindow.glade.h:99 - msgid "" - "These drivers do not come from your operating system supplier and will not " - "be covered by their commercial support. See the support and license terms " - "of the driver's supplier." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:101 -+#: ../glade/NewPrinterWindow.glade.h:100 - msgid "" - "This driver supports additional hardware that may be installed in the " - "printer." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:102 -+#: ../glade/NewPrinterWindow.glade.h:101 - msgid "" - "This is done by assuming that options with the same name do have the same " - "meaning. Settings of options that are not present in the new PPD will be " - "lost and options only present in the new PPD will be set to default." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:103 -+#: ../glade/NewPrinterWindow.glade.h:102 - msgid "" - "This way all current option settings will be lost. The default settings of " - "the new PPD will be used. " - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:104 -+#: ../glade/NewPrinterWindow.glade.h:103 - msgid "Try to copy the option settings over from the old PPD. " - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:105 -+#: ../glade/NewPrinterWindow.glade.h:104 - msgid "URI:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:107 -+#: ../glade/NewPrinterWindow.glade.h:106 - msgid "Use the new PPD (Postscript Printer Description) as is." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:109 -+#: ../glade/NewPrinterWindow.glade.h:108 - msgid "" - "With this choice no driver download will be performed. In the next steps a " - "locally installed driver will be selected." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:110 -+#: ../glade/NewPrinterWindow.glade.h:109 - msgid "Yes, I accept this license" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:111 -+#: ../glade/NewPrinterWindow.glade.h:110 - msgid "_Search" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:112 -+#: ../glade/NewPrinterWindow.glade.h:111 - msgid "_Verify..." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:113 -+#: ../glade/NewPrinterWindow.glade.h:112 - #: ../glade/PrinterPropertiesDialog.glade.h:128 - msgid "move left" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:114 -+#: ../glade/NewPrinterWindow.glade.h:113 - #: ../glade/PrinterPropertiesDialog.glade.h:129 - msgid "move right" - msgstr "" -@@ -2819,7 +2816,7 @@ msgstr "" - msgid "Remember to load paper of type '%s' into the printer first." - msgstr "" - --#: ../troubleshoot/PrintTestPage.py:399 -+#: ../troubleshoot/PrintTestPage.py:416 - msgid "Error submitting test page" - msgstr "" - -diff -up system-config-printer-1.1.5/po/nb.po.git-1.1.x system-config-printer-1.1.5/po/nb.po ---- system-config-printer-1.1.5/po/nb.po.git-1.1.x 2009-03-03 22:21:46.000000000 +0000 -+++ system-config-printer-1.1.5/po/nb.po 2009-03-10 17:43:31.000000000 +0000 -@@ -5,7 +5,7 @@ msgid "" - msgstr "" - "Project-Id-Version: printconf 0.1\n" - "Report-Msgid-Bugs-To: https://bugzilla.redhat.com/bugzilla\n" --"POT-Creation-Date: 2009-03-02 23:22+0000\n" -+"POT-Creation-Date: 2009-03-10 16:51+0000\n" - "PO-Revision-Date: 2007-06-25 12:58+0200\n" - "Last-Translator: Espen A. Stefansen \n" - "Language-Team: Norsk \n" -@@ -51,11 +51,11 @@ msgstr "" - msgid "Enter IP address" - msgstr "Skriver lagt til" - --#: ../authconn.py:35 ../glade/NewPrinterWindow.glade.h:108 -+#: ../authconn.py:35 ../glade/NewPrinterWindow.glade.h:107 - msgid "Username:" - msgstr "Brukernavn:" - --#: ../authconn.py:36 ../glade/NewPrinterWindow.glade.h:77 -+#: ../authconn.py:36 ../glade/NewPrinterWindow.glade.h:76 - msgid "Password:" - msgstr "Passord:" - -@@ -64,7 +64,7 @@ msgstr "Passord:" - msgid "Domain:" - msgstr "Toppmarg:" - --#: ../authconn.py:46 -+#: ../authconn.py:46 ../authconn.py:409 - #, fuzzy - msgid "Authentication" - msgstr "Autentisering" -@@ -73,45 +73,54 @@ msgstr "Autentisering" - msgid "Remember password" - msgstr "" - --#: ../authconn.py:211 ../authconn.py:232 -+#: ../authconn.py:208 -+#, python-format -+msgid "Unauthorized request (%s)" -+msgstr "" -+ -+#: ../authconn.py:209 -+msgid "You are not authorized to carry out therequested action." -+msgstr "" -+ -+#: ../authconn.py:212 ../authconn.py:233 - #, fuzzy - msgid "Operation canceled" - msgstr "Regelsett for operasjon:" - --#: ../authconn.py:253 -+#: ../authconn.py:250 - #, fuzzy, python-format - msgid "CUPS server error (%s)" - msgstr "Feil med CUPS-tjener" - --#: ../authconn.py:255 ../errordialogs.py:57 --#: ../troubleshoot/PrintTestPage.py:400 -+#: ../authconn.py:252 ../errordialogs.py:56 ../errordialogs.py:70 -+msgid "CUPS server error" -+msgstr "Feil med CUPS-tjener" -+ -+#: ../authconn.py:261 ../errordialogs.py:57 -+#: ../troubleshoot/PrintTestPage.py:417 - #, python-format - msgid "There was an error during the CUPS operation: '%s'." - msgstr "Det oppstod en feil under utførelse av CUPS-operasjon: «%s»." - --#: ../authconn.py:258 -+#: ../authconn.py:264 - #, fuzzy - msgid "Retry" - msgstr "Nullstill" - --#: ../authconn.py:379 ../authconn.py:381 ../errordialogs.py:65 ../pysmb.py:75 -+#: ../authconn.py:385 ../authconn.py:387 ../errordialogs.py:65 ../pysmb.py:75 - #: ../pysmb.py:77 - msgid "Not authorized" - msgstr "Ikke autorisert" - --#: ../authconn.py:382 ../pysmb.py:78 -+#: ../authconn.py:388 ../pysmb.py:78 - msgid "The password may be incorrect." - msgstr "Passordet kan være feil." - --#: ../authconn.py:400 -+#: ../authconn.py:407 - #, fuzzy, python-format - msgid "Authentication (%s)" - msgstr "Autentisering" - --#: ../errordialogs.py:56 ../errordialogs.py:70 --msgid "CUPS server error" --msgstr "Feil med CUPS-tjener" -- - #: ../errordialogs.py:66 - msgid "" - "The password may be incorrect, or the server may be configured to deny " -@@ -140,7 +149,7 @@ msgstr "Oppdatering kreves" - msgid "Server error" - msgstr "Feil med tjener" - --#: ../errordialogs.py:82 ../system-config-printer.py:1219 -+#: ../errordialogs.py:82 ../system-config-printer.py:1223 - msgid "Not connected" - msgstr "Ikke tilkoblet" - -@@ -162,7 +171,7 @@ msgstr "" - msgid "_New Group from Selection" - msgstr "" - --#: ../GroupsPane.py:98 ../system-config-printer.py:393 -+#: ../GroupsPane.py:98 ../system-config-printer.py:397 - #, fuzzy - msgid "_Rename" - msgstr "_Ta bort" -@@ -231,7 +240,7 @@ msgid "Document" - msgstr "Dokument" - - #: ../jobviewer.py:212 ../my-default-printer.py:153 --#: ../system-config-printer.py:366 ../system-config-printer.py:1367 -+#: ../system-config-printer.py:370 ../system-config-printer.py:1371 - #: ../troubleshoot/PrintTestPage.py:84 - msgid "Printer" - msgstr "Skriver" -@@ -268,8 +277,8 @@ msgstr "Utskriftsstatus for dokument" - - #: ../jobviewer.py:386 ../jobviewer.py:451 ../jobviewer.py:452 - #: ../jobviewer.py:492 ../jobviewer.py:600 ../jobviewer.py:727 --#: ../jobviewer.py:1196 ../jobviewer.py:1222 ../system-config-printer.py:2546 --#: ../glade/NewPrinterWindow.glade.h:106 -+#: ../jobviewer.py:1196 ../jobviewer.py:1222 ../system-config-printer.py:2556 -+#: ../glade/NewPrinterWindow.glade.h:105 - #: ../troubleshoot/ChooseNetworkPrinter.py:101 - #: ../troubleshoot/ChooseNetworkPrinter.py:102 - #: ../troubleshoot/ChooseNetworkPrinter.py:105 -@@ -362,12 +371,12 @@ msgstr "Hold inntil:" - msgid "Pending" - msgstr "Venter" - --#: ../jobviewer.py:591 ../system-config-printer.py:186 -+#: ../jobviewer.py:591 ../system-config-printer.py:190 - #: ../troubleshoot/PrintTestPage.py:43 - msgid "Processing" - msgstr "Prosesserer" - --#: ../jobviewer.py:592 ../system-config-printer.py:188 -+#: ../jobviewer.py:592 ../system-config-printer.py:192 - #: ../troubleshoot/PrintTestPage.py:44 - msgid "Stopped" - msgstr "Stoppet" -@@ -481,8 +490,8 @@ msgstr "Br_uk systemets forvalg" - msgid "_Set Default" - msgstr "_Sett forvalg" - --#: ../my-default-printer.py:158 ../system-config-printer.py:423 --#: ../system-config-printer.py:3660 ../troubleshoot/ChooseNetworkPrinter.py:37 -+#: ../my-default-printer.py:158 ../system-config-printer.py:427 -+#: ../system-config-printer.py:3675 ../troubleshoot/ChooseNetworkPrinter.py:37 - #: ../troubleshoot/ChoosePrinter.py:38 - msgid "Location" - msgstr "Lokasjon" -@@ -515,7 +524,7 @@ msgstr "Forvalgt skriver" - msgid "Authenticated" - msgstr "Autentisering" - --#: ../ppdippstr.py:50 ../system-config-printer.py:6259 -+#: ../ppdippstr.py:50 ../system-config-printer.py:6207 - #, fuzzy - msgid "None" - msgstr "ingen" -@@ -735,132 +744,132 @@ msgstr "" - msgid "1200 dpi, photo, black + color cartridge, photo paper" - msgstr "" - --#: ../system-config-printer.py:127 -+#: ../system-config-printer.py:131 - msgid "To do this, select System->Administration->Firewall from the main menu." - msgstr "" - --#: ../system-config-printer.py:185 -+#: ../system-config-printer.py:189 - msgid "Idle" - msgstr "Ledig" - --#: ../system-config-printer.py:187 -+#: ../system-config-printer.py:191 - msgid "Busy" - msgstr "Opptatt" - --#: ../system-config-printer.py:372 ../system-config-printer.py:1373 -+#: ../system-config-printer.py:376 ../system-config-printer.py:1377 - #, fuzzy - msgid "Class" - msgstr "Ny klasse" - --#: ../system-config-printer.py:399 -+#: ../system-config-printer.py:403 - #, fuzzy - msgid "Set As De_fault" - msgstr "_Sett forvalg" - --#: ../system-config-printer.py:403 -+#: ../system-config-printer.py:407 - #, fuzzy - msgid "_Create class" - msgstr "Eksterne klasser" - --#: ../system-config-printer.py:405 -+#: ../system-config-printer.py:409 - #, fuzzy - msgid "View Print _Queue" - msgstr "Ny skriver" - --#: ../system-config-printer.py:407 -+#: ../system-config-printer.py:411 - msgid "_Add to Group" - msgstr "" - --#: ../system-config-printer.py:409 -+#: ../system-config-printer.py:413 - msgid "Save Results as _Group" - msgstr "" - --#: ../system-config-printer.py:411 -+#: ../system-config-printer.py:415 - msgid "Save Filter as _Search Group" - msgstr "" - --#: ../system-config-printer.py:415 -+#: ../system-config-printer.py:419 - #, fuzzy - msgid "E_nabled" - msgstr "Aktivert" - --#: ../system-config-printer.py:417 -+#: ../system-config-printer.py:421 - #, fuzzy - msgid "_Shared" - msgstr "Delt" - --#: ../system-config-printer.py:421 ../troubleshoot/ChooseNetworkPrinter.py:35 -+#: ../system-config-printer.py:425 ../troubleshoot/ChooseNetworkPrinter.py:35 - #: ../troubleshoot/ChoosePrinter.py:36 ../troubleshoot/DeviceListed.py:36 - msgid "Name" - msgstr "Navn" - --#: ../system-config-printer.py:422 -+#: ../system-config-printer.py:426 - #, fuzzy - msgid "Description" - msgstr "Beskrivelse:" - --#: ../system-config-printer.py:424 -+#: ../system-config-printer.py:428 - msgid "Manufacturer / Model" - msgstr "" - - #. Printer state reasons list --#: ../system-config-printer.py:499 -+#: ../system-config-printer.py:503 - msgid "Message" - msgstr "Beskjed" - --#: ../system-config-printer.py:534 -+#: ../system-config-printer.py:538 - #, fuzzy - msgid "Problems?" - msgstr "Søk" - --#: ../system-config-printer.py:637 ../system-config-printer.py:639 -+#: ../system-config-printer.py:641 ../system-config-printer.py:643 - msgid "Members of this class" - msgstr "Medlemmer av denne klassen" - --#: ../system-config-printer.py:638 ../system-config-printer.py:640 -+#: ../system-config-printer.py:642 ../system-config-printer.py:644 - msgid "Others" - msgstr "Andre" - --#: ../system-config-printer.py:641 -+#: ../system-config-printer.py:645 - msgid "Devices" - msgstr "Enheter" - --#: ../system-config-printer.py:642 -+#: ../system-config-printer.py:646 - #, fuzzy - msgid "Connections" - msgstr "Kobler til" - --#: ../system-config-printer.py:643 -+#: ../system-config-printer.py:647 - msgid "Makes" - msgstr "Merker" - --#: ../system-config-printer.py:644 -+#: ../system-config-printer.py:648 - msgid "Models" - msgstr "Modeller" - --#: ../system-config-printer.py:645 -+#: ../system-config-printer.py:649 - msgid "Drivers" - msgstr "Drivere" - --#: ../system-config-printer.py:646 ../glade/NewPrinterWindow.glade.h:55 -+#: ../system-config-printer.py:650 ../glade/NewPrinterWindow.glade.h:54 - msgid "Downloadable Drivers" - msgstr "" - --#: ../system-config-printer.py:647 -+#: ../system-config-printer.py:651 - msgid "Users" - msgstr "Brukere" - --#: ../system-config-printer.py:682 -+#: ../system-config-printer.py:686 - msgid "Automatic rotation" - msgstr "" - --#: ../system-config-printer.py:989 -+#: ../system-config-printer.py:993 - #, fuzzy, python-format - msgid "Printer Properties - '%s' on %s" - msgstr "Skriverrapport" - - #. The Conflict button was pressed. --#: ../system-config-printer.py:996 -+#: ../system-config-printer.py:1000 - msgid "" - "There are conflicting options.\n" - "Changes can only be applied after\n" -@@ -870,81 +879,81 @@ msgstr "" - "Endringer kan kun aktiveres etter\n" - "at disse konfliktene er løst." - --#: ../system-config-printer.py:1214 -+#: ../system-config-printer.py:1218 - #, python-format - msgid "Printer configuration - %s" - msgstr "Skriverkonfigurasjon - %s" - --#: ../system-config-printer.py:1217 -+#: ../system-config-printer.py:1221 - #, python-format - msgid "Connected to %s" - msgstr "Koblet til %s" - - #. Update our copy of the printer's settings. --#: ../system-config-printer.py:1257 ../system-config-printer.py:2042 -+#: ../system-config-printer.py:1261 ../system-config-printer.py:2046 - msgid "obtaining queue details" - msgstr "" - --#: ../system-config-printer.py:1295 -+#: ../system-config-printer.py:1299 - msgid "Remove from Group" - msgstr "" - --#: ../system-config-printer.py:1361 -+#: ../system-config-printer.py:1365 - #, fuzzy - msgid "Network printer (discovered)" - msgstr "Ny skriver" - --#: ../system-config-printer.py:1364 -+#: ../system-config-printer.py:1368 - msgid "Network class (discovered)" - msgstr "" - --#: ../system-config-printer.py:1370 ../system-config-printer.py:5524 --#: ../system-config-printer.py:5594 ../system-config-printer.py:5596 -+#: ../system-config-printer.py:1374 ../system-config-printer.py:5519 -+#: ../system-config-printer.py:5589 ../system-config-printer.py:5591 - msgid "Fax" - msgstr "" - --#: ../system-config-printer.py:1376 ../system-config-printer.py:1382 -+#: ../system-config-printer.py:1380 ../system-config-printer.py:1386 - #: ../troubleshoot/LocalOrRemote.py:30 - #, fuzzy - msgid "Network printer" - msgstr "Ny skriver" - --#: ../system-config-printer.py:1379 -+#: ../system-config-printer.py:1383 - #, fuzzy - msgid "Network print share" - msgstr "Ny skriver" - --#: ../system-config-printer.py:1508 ../glade/ConnectingDialog.glade.h:2 -+#: ../system-config-printer.py:1512 ../glade/ConnectingDialog.glade.h:2 - #, no-c-format, python-format - msgid "Opening connection to %s" - msgstr "" - --#: ../system-config-printer.py:1887 -+#: ../system-config-printer.py:1891 - msgid "Installable Options" - msgstr "Installerbare alternativer" - --#: ../system-config-printer.py:1888 -+#: ../system-config-printer.py:1892 - #: ../glade/PrinterPropertiesDialog.glade.h:109 - msgid "Printer Options" - msgstr "Alternativer for skriver" - --#: ../system-config-printer.py:1924 -+#: ../system-config-printer.py:1928 - #, python-format - msgid "modifying class %s" - msgstr "" - --#: ../system-config-printer.py:1926 ../system-config-printer.py:3019 --#: ../system-config-printer.py:3044 ../system-config-printer.py:6547 --#: ../system-config-printer.py:6559 ../system-config-printer.py:6581 -+#: ../system-config-printer.py:1930 ../system-config-printer.py:3037 -+#: ../system-config-printer.py:3062 ../system-config-printer.py:6495 -+#: ../system-config-printer.py:6507 ../system-config-printer.py:6529 - #, fuzzy, python-format - msgid "modifying printer %s" - msgstr "Konfigurer skrivere" - --#: ../system-config-printer.py:1941 -+#: ../system-config-printer.py:1945 - msgid "This will delete this class!" - msgstr "Dette vil slette denne klassen!" - --#: ../system-config-printer.py:1942 -+#: ../system-config-printer.py:1946 - msgid "Proceed anyway?" - msgstr "Fortsett likevel?" - -@@ -952,50 +961,50 @@ msgstr "Fortsett likevel?" - #. but we have never fetched the server settings to see whether - #. the server is publishing shared printers. Fetch the settings - #. now so that we can update the "not published" label if necessary. --#: ../system-config-printer.py:2030 ../system-config-printer.py:3203 -+#: ../system-config-printer.py:2034 ../system-config-printer.py:3221 - #, fuzzy - msgid "fetching server settings" - msgstr "Grunnleggende innstillinger for tjener" - --#: ../system-config-printer.py:2100 -+#: ../system-config-printer.py:2104 - #, fuzzy - msgid "Set Default Printer" - msgstr "Forvalgt skriver" - --#: ../system-config-printer.py:2102 -+#: ../system-config-printer.py:2106 - msgid "Do you want to set this as the system-wide default printer?" - msgstr "" - --#: ../system-config-printer.py:2104 -+#: ../system-config-printer.py:2108 - #, fuzzy - msgid "Set as the _system-wide default printer" - msgstr "Dette er forvalgt skriver" - --#: ../system-config-printer.py:2106 -+#: ../system-config-printer.py:2110 - msgid "_Clear my personal default setting" - msgstr "" - --#: ../system-config-printer.py:2107 -+#: ../system-config-printer.py:2111 - #, fuzzy - msgid "Set as my _personal default printer" - msgstr "Velg forvalgt skriver" - --#: ../system-config-printer.py:2112 -+#: ../system-config-printer.py:2116 - #, fuzzy - msgid "setting default printer" - msgstr "Velg forvalgt skriver" - --#: ../system-config-printer.py:2169 -+#: ../system-config-printer.py:2173 - #, fuzzy - msgid "printing test page" - msgstr "Skriv ut testside" - --#: ../system-config-printer.py:2182 ../system-config-printer.py:2217 --#: ../system-config-printer.py:5418 -+#: ../system-config-printer.py:2186 ../system-config-printer.py:2221 -+#: ../system-config-printer.py:5413 - msgid "Not possible" - msgstr "Ikke mulig" - --#: ../system-config-printer.py:2183 ../system-config-printer.py:2218 -+#: ../system-config-printer.py:2187 ../system-config-printer.py:2222 - msgid "" - "The remote server did not accept the print job, most likely because the " - "printer is not shared." -@@ -1003,20 +1012,20 @@ msgstr "" - "Ekstern tjener tok ikke imot jobben. Sannsynligvis fordi skriveren ikke er " - "delt." - --#: ../system-config-printer.py:2195 ../system-config-printer.py:2210 -+#: ../system-config-printer.py:2199 ../system-config-printer.py:2214 - msgid "Submitted" - msgstr "Sendt" - --#: ../system-config-printer.py:2196 -+#: ../system-config-printer.py:2200 - #, python-format - msgid "Test page submitted as job %d" - msgstr "Testside sendt som jobb %d" - --#: ../system-config-printer.py:2203 -+#: ../system-config-printer.py:2207 - msgid "sending maintenance command" - msgstr "" - --#: ../system-config-printer.py:2211 -+#: ../system-config-printer.py:2215 - #, fuzzy, python-format - msgid "Maintenance command submitted as job %d" - msgstr "Testside sendt som jobb %d" -@@ -1024,75 +1033,75 @@ msgstr "Testside sendt som jobb %d" - #. The underlying cupsGetPPD2() function returned NULL without - #. setting an IPP error, so it'll be something like a failed - #. connection. --#: ../system-config-printer.py:2285 ../system-config-printer.py:2381 -+#: ../system-config-printer.py:2289 ../system-config-printer.py:2385 - msgid "Error" - msgstr "Feil" - --#: ../system-config-printer.py:2286 -+#: ../system-config-printer.py:2290 - msgid "There was a problem connecting to the CUPS server." - msgstr "Det oppstod et problem ved tilkobling til CUPS-tjeneren." - --#: ../system-config-printer.py:2382 -+#: ../system-config-printer.py:2386 - #, python-format - msgid "Option '%s' has value '%s' and cannot be edited." - msgstr "" - --#: ../system-config-printer.py:2466 -+#: ../system-config-printer.py:2476 - msgid "Marker levels are not reported for this printer." - msgstr "" - --#: ../system-config-printer.py:2763 -+#: ../system-config-printer.py:2773 - #, fuzzy - msgid "Cannot Rename" - msgstr "_Ta bort" - --#: ../system-config-printer.py:2764 -+#: ../system-config-printer.py:2774 - msgid "There are queued jobs." - msgstr "" - --#: ../system-config-printer.py:2822 -+#: ../system-config-printer.py:2840 - #, fuzzy - msgid "renaming printer" - msgstr "Konfigurer skrivere" - - #. for classes make sure all members - #. will get added --#: ../system-config-printer.py:2907 -+#: ../system-config-printer.py:2925 - #, fuzzy - msgid "copying printer" - msgstr "Konfigurer skrivere" - --#: ../system-config-printer.py:2971 -+#: ../system-config-printer.py:2989 - #, fuzzy, python-format - msgid "Really delete class '%s'?" - msgstr "Vil du virkelig slette klassen %s?" - --#: ../system-config-printer.py:2973 -+#: ../system-config-printer.py:2991 - #, fuzzy, python-format - msgid "Really delete printer '%s'?" - msgstr "Vil du virkelig slette skriver %s?" - --#: ../system-config-printer.py:2975 -+#: ../system-config-printer.py:2993 - #, fuzzy - msgid "Really delete selected destinations?" - msgstr "Vil du virkelig slette skriver %s?" - --#: ../system-config-printer.py:2996 -+#: ../system-config-printer.py:3014 - #, fuzzy, python-format - msgid "deleting printer %s" - msgstr "Konfigurer skrivere" - --#: ../system-config-printer.py:3070 -+#: ../system-config-printer.py:3088 - msgid "Publish Shared Printers" - msgstr "" - --#: ../system-config-printer.py:3071 -+#: ../system-config-printer.py:3089 - msgid "" - "Shared printers are not available to other people unless the 'Publish shared " - "printers' option is enabled in the server settings." - msgstr "" - --#: ../system-config-printer.py:3264 -+#: ../system-config-printer.py:3282 - #, fuzzy - msgid "modifying server settings" - msgstr "Grunnleggende innstillinger for tjener" -@@ -1103,105 +1112,105 @@ msgstr "Grunnleggende innstillinger f - #. be unblocked. Unfortunately, this is not yet possible - #. (bug #440469). However, we can display a dialog to suggest - #. that now might be a good time to review the firewall settings. --#: ../system-config-printer.py:3289 -+#: ../system-config-printer.py:3307 - msgid "Review Firewall" - msgstr "" - --#: ../system-config-printer.py:3290 -+#: ../system-config-printer.py:3308 - msgid "" - "You may need to adjust the firewall to allow network printing to this " - "computer." - msgstr "" - --#: ../system-config-printer.py:3623 -+#: ../system-config-printer.py:3638 - msgid "Browsing not available (pysmbc not installed)" - msgstr "" - - #. SMB list columns --#: ../system-config-printer.py:3629 -+#: ../system-config-printer.py:3644 - msgid "Share" - msgstr "Share" - --#: ../system-config-printer.py:3635 -+#: ../system-config-printer.py:3650 - msgid "Comment" - msgstr "Kommentar" - - #. IPP list columns --#: ../system-config-printer.py:3654 -+#: ../system-config-printer.py:3669 - msgid "Queue" - msgstr "" - --#: ../system-config-printer.py:3668 -+#: ../system-config-printer.py:3683 - #, fuzzy - msgid "" - "PostScript Printer Description files (*.ppd, *.PPD, *.ppd.gz, *.PPD.gz, *." - "PPD.GZ)" - msgstr "PostScript skriverbeskrivelse (*.ppd[.gz])" - --#: ../system-config-printer.py:3677 -+#: ../system-config-printer.py:3692 - msgid "All files (*)" - msgstr "" - --#: ../system-config-printer.py:3713 ../system-config-printer.py:5970 --#: ../system-config-printer.py:6008 ../applet.py:124 -+#: ../system-config-printer.py:3728 ../system-config-printer.py:5918 -+#: ../system-config-printer.py:5956 ../applet.py:124 - #, fuzzy - msgid "Search" - msgstr "Nytt navn på skriveren" - --#: ../system-config-printer.py:3736 ../system-config-printer.py:3760 --#: ../glade/NewPrinterWindow.glade.h:74 -+#: ../system-config-printer.py:3751 ../system-config-printer.py:3775 -+#: ../glade/NewPrinterWindow.glade.h:73 - msgid "New Printer" - msgstr "Ny skriver" - --#: ../system-config-printer.py:3747 -+#: ../system-config-printer.py:3762 - msgid "New Class" - msgstr "Ny klasse" - --#: ../system-config-printer.py:3752 -+#: ../system-config-printer.py:3767 - msgid "Change Device URI" - msgstr "Endre URI for enhet" - --#: ../system-config-printer.py:3758 -+#: ../system-config-printer.py:3773 - msgid "Change Driver" - msgstr "Endre driver" - --#: ../system-config-printer.py:3927 ../system-config-printer.py:3993 --#: ../system-config-printer.py:4289 ../system-config-printer.py:4487 --#: ../system-config-printer.py:5772 ../system-config-printer.py:5995 -+#: ../system-config-printer.py:3942 ../system-config-printer.py:4008 -+#: ../system-config-printer.py:4304 ../system-config-printer.py:4502 -+#: ../system-config-printer.py:5762 ../system-config-printer.py:5943 - msgid "Searching" - msgstr "" - --#: ../system-config-printer.py:3928 -+#: ../system-config-printer.py:3943 - #, fuzzy - msgid "Searching for downloadable drivers" - msgstr "Nytt navn på skriveren" - --#: ../system-config-printer.py:3994 ../system-config-printer.py:4290 -+#: ../system-config-printer.py:4009 ../system-config-printer.py:4305 - msgid "Searching for drivers" - msgstr "" - --#: ../system-config-printer.py:4488 ../system-config-printer.py:5773 -+#: ../system-config-printer.py:4503 ../system-config-printer.py:5763 - #, fuzzy - msgid "Searching for printers" - msgstr "Nytt navn på skriveren" - --#: ../system-config-printer.py:4497 -+#: ../system-config-printer.py:4512 - #, fuzzy - msgid "fetching device list" - msgstr "Grunnleggende innstillinger for tjener" - - #. Tell the user why he needs the plugin --#: ../system-config-printer.py:4579 -+#: ../system-config-printer.py:4594 - msgid "For this printer a proprietary driver plugin from HP is available.\n" - msgstr "" - --#: ../system-config-printer.py:4582 -+#: ../system-config-printer.py:4597 - msgid "" - "The installation of the plugin is required for your printer to work.\n" - "\n" - msgstr "" - --#: ../system-config-printer.py:4585 -+#: ../system-config-printer.py:4600 - msgid "" - "Installing the plugin is optional, it completes or enhances the " - "functionality\n" -@@ -1209,219 +1218,215 @@ msgid "" - "\n" - msgstr "" - --#: ../system-config-printer.py:4589 -+#: ../system-config-printer.py:4604 - msgid "The plugin provides the following features:\n" - msgstr "" - --#: ../system-config-printer.py:4592 -+#: ../system-config-printer.py:4607 - msgid " - Printing support\n" - msgstr "" - --#: ../system-config-printer.py:4595 -+#: ../system-config-printer.py:4610 - msgid " - Faster printing\n" - msgstr "" - --#: ../system-config-printer.py:4598 -+#: ../system-config-printer.py:4613 - msgid " - Better printout quality\n" - msgstr "" - --#: ../system-config-printer.py:4601 -+#: ../system-config-printer.py:4616 - msgid " - Extra printing features\n" - msgstr "" - --#: ../system-config-printer.py:4604 -+#: ../system-config-printer.py:4619 - msgid " - Scanning support\n" - msgstr "" - --#: ../system-config-printer.py:4607 -+#: ../system-config-printer.py:4622 - msgid " - Faster scanning\n" - msgstr "" - --#: ../system-config-printer.py:4610 -+#: ../system-config-printer.py:4625 - msgid " - Better scanning image quality\n" - msgstr "" - --#: ../system-config-printer.py:4613 -+#: ../system-config-printer.py:4628 - msgid " - Faxing support\n" - msgstr "" - --#: ../system-config-printer.py:4616 -+#: ../system-config-printer.py:4631 - msgid " - Extra fax features\n" - msgstr "" - --#: ../system-config-printer.py:4619 -+#: ../system-config-printer.py:4634 - msgid " - Better Input/Output support\n" - msgstr "" - --#: ../system-config-printer.py:4622 -+#: ../system-config-printer.py:4637 - msgid " - Extra user interface features\n" - msgstr "" - --#: ../system-config-printer.py:4625 -+#: ../system-config-printer.py:4640 - msgid " - Other extra features\n" - msgstr "" - --#: ../system-config-printer.py:4630 -+#: ../system-config-printer.py:4645 - #, fuzzy - msgid "Install plugin" - msgstr "Installerbare alternativer" - --#: ../system-config-printer.py:4631 -+#: ../system-config-printer.py:4646 - #, fuzzy - msgid "Do not set up printer" - msgstr "Kopier skriver" - --#: ../system-config-printer.py:4632 -+#: ../system-config-printer.py:4647 - msgid "Set up without plugin" - msgstr "" - --#: ../system-config-printer.py:4634 ../troubleshoot/PrintTestPage.py:118 -+#: ../system-config-printer.py:4649 ../troubleshoot/PrintTestPage.py:118 - msgid "Yes" - msgstr "" - --#: ../system-config-printer.py:4635 ../troubleshoot/PrintTestPage.py:119 -+#: ../system-config-printer.py:4650 ../troubleshoot/PrintTestPage.py:119 - msgid "No" - msgstr "" - --#: ../system-config-printer.py:4809 ../system-config-printer.py:4813 -+#: ../system-config-printer.py:4824 ../system-config-printer.py:4828 - msgid " (Current)" - msgstr " (aktiv)" - --#: ../system-config-printer.py:4845 --msgid "HP Printer (HPLIP)" --msgstr "" -- --#: ../system-config-printer.py:4886 -+#: ../system-config-printer.py:4881 - msgid "Other" - msgstr "Andre" - - #. device-info - #. PhysicalDevice obj - #. Separator? --#: ../system-config-printer.py:4902 -+#: ../system-config-printer.py:4897 - #, fuzzy - msgid "Network Printer" - msgstr "Ny skriver" - --#: ../system-config-printer.py:4906 -+#: ../system-config-printer.py:4901 - #, fuzzy - msgid "Find Network Printer" - msgstr "Ny skriver" - --#: ../system-config-printer.py:4979 ../system-config-printer.py:5376 -+#: ../system-config-printer.py:4974 ../system-config-printer.py:5371 - #, fuzzy - msgid "Scanning..." - msgstr "Skalering:" - --#: ../system-config-printer.py:5034 ../system-config-printer.py:5798 -+#: ../system-config-printer.py:5029 - #, fuzzy - msgid "No Print Shares" - msgstr "Ny skriver" - --#: ../system-config-printer.py:5035 -+#: ../system-config-printer.py:5030 - msgid "" - "There were no print shares found. Please check that the Samba service is " - "marked as trusted in your firewall configuration." - msgstr "" - --#: ../system-config-printer.py:5296 ../system-config-printer.py:5357 -+#: ../system-config-printer.py:5291 ../system-config-printer.py:5352 - msgid "Print Share Verified" - msgstr "" - --#: ../system-config-printer.py:5297 ../system-config-printer.py:5358 -+#: ../system-config-printer.py:5292 ../system-config-printer.py:5353 - msgid "This print share is accessible." - msgstr "Denne delte skriveren er tilgjengelig." - --#: ../system-config-printer.py:5302 ../system-config-printer.py:5362 -+#: ../system-config-printer.py:5297 ../system-config-printer.py:5357 - msgid "This print share is not accessible." - msgstr "Denne delte skriveren kan ikke aksesseres." - --#: ../system-config-printer.py:5305 -+#: ../system-config-printer.py:5300 - #, fuzzy - msgid "Print Share Inaccessible" - msgstr "Denne delte skriveren er tilgjengelig." - --#: ../system-config-printer.py:5361 -+#: ../system-config-printer.py:5356 - msgid "Inaccessible" - msgstr "Kan ikke aksesseres" - --#: ../system-config-printer.py:5419 -+#: ../system-config-printer.py:5414 - #, fuzzy, python-format - msgid "It is not possible to obtain a list of queues from '%s'." - msgstr "Det oppstod et problem ved tilkobling til CUPS-tjeneren." - --#: ../system-config-printer.py:5421 -+#: ../system-config-printer.py:5416 - msgid "" - "Obtaining a list of queues is a CUPS extension to IPP. Network printers do " - "not support it." - msgstr "" - --#: ../system-config-printer.py:5424 -+#: ../system-config-printer.py:5419 - msgid "No queues" - msgstr "" - --#: ../system-config-printer.py:5425 -+#: ../system-config-printer.py:5420 - msgid "There are no queues available." - msgstr "" - --#: ../system-config-printer.py:5516 -+#: ../system-config-printer.py:5511 - msgid "Parallel Port" - msgstr "" - --#: ../system-config-printer.py:5518 -+#: ../system-config-printer.py:5513 - #, fuzzy - msgid "Serial Port" - msgstr "Seriell" - --#: ../system-config-printer.py:5520 -+#: ../system-config-printer.py:5515 - #, fuzzy - msgid "USB" - msgstr "SMB" - --#: ../system-config-printer.py:5522 ../system-config-printer.py:5525 -+#: ../system-config-printer.py:5517 ../system-config-printer.py:5520 - msgid "HP Linux Imaging and Printing (HPLIP)" - msgstr "" - --#: ../system-config-printer.py:5527 -+#: ../system-config-printer.py:5522 - #, fuzzy - msgid "Hardware Abstraction Layer (HAL)" - msgstr "Lokal skriver gjenkjent av Hardware Abstraction Layer (HAL)." - --#: ../system-config-printer.py:5529 -+#: ../system-config-printer.py:5524 - msgid "AppSocket/HP JetDirect" - msgstr "" - --#: ../system-config-printer.py:5538 -+#: ../system-config-printer.py:5533 - #, python-format - msgid "LPD/LPR queue '%s'" - msgstr "" - --#: ../system-config-printer.py:5540 -+#: ../system-config-printer.py:5535 - #, fuzzy - msgid "LPD/LPR queue" - msgstr "LPD" - --#: ../system-config-printer.py:5543 -+#: ../system-config-printer.py:5538 - msgid "Windows Printer via SAMBA" - msgstr "" - --#: ../system-config-printer.py:5545 ../glade/NewPrinterWindow.glade.h:66 -+#: ../system-config-printer.py:5540 ../glade/NewPrinterWindow.glade.h:65 - msgid "IPP" - msgstr "IPP" - --#: ../system-config-printer.py:5547 -+#: ../system-config-printer.py:5542 - msgid "HTTP" - msgstr "" - --#: ../system-config-printer.py:5632 -+#: ../system-config-printer.py:5624 - msgid "A printer connected to the parallel port." - msgstr "En skriver koblet til en parallellport." - --#: ../system-config-printer.py:5634 -+#: ../system-config-printer.py:5626 - msgid "A printer connected to a USB port." - msgstr "En skriver koblet til en USB port." - --#: ../system-config-printer.py:5636 -+#: ../system-config-printer.py:5628 - msgid "" - "HPLIP software driving a printer, or the printer function of a multi-" - "function device." -@@ -1429,7 +1434,7 @@ msgstr "" - "HPLIP-programvare som kjører en skriver eller skriverfunksjonen i en " - "multifunksjonsenhet." - --#: ../system-config-printer.py:5639 -+#: ../system-config-printer.py:5631 - msgid "" - "HPLIP software driving a fax machine, or the fax function of a multi-" - "function device." -@@ -1437,70 +1442,66 @@ msgstr "" - "HPLIP-programvare som driver en faksmaskin eller faksfunksjonen på en " - "multifunksjonsenhet." - --#: ../system-config-printer.py:5642 -+#: ../system-config-printer.py:5634 - msgid "Local printer detected by the Hardware Abstraction Layer (HAL)." - msgstr "Lokal skriver gjenkjent av Hardware Abstraction Layer (HAL)." - --#: ../system-config-printer.py:5799 --msgid "HPLIP cannot find the device." --msgstr "" -- --#: ../system-config-printer.py:5881 -+#: ../system-config-printer.py:5831 - msgid "No printer was found at that address." - msgstr "" - --#: ../system-config-printer.py:6020 -+#: ../system-config-printer.py:5968 - #, fuzzy - msgid "-- Select from search results --" - msgstr "Velg en skriver fra databasen" - --#: ../system-config-printer.py:6022 -+#: ../system-config-printer.py:5970 - msgid "-- No matches found --" - msgstr "" - --#: ../system-config-printer.py:6203 -+#: ../system-config-printer.py:6151 - msgid " (recommended)" - msgstr " (anbefalt)" - --#: ../system-config-printer.py:6217 -+#: ../system-config-printer.py:6165 - msgid "This PPD is generated by foomatic." - msgstr "Denne PPDen er generert av foomatic." - --#: ../system-config-printer.py:6241 -+#: ../system-config-printer.py:6189 - #, fuzzy - msgid "OpenPrinting" - msgstr "Skrivere" - --#: ../system-config-printer.py:6252 -+#: ../system-config-printer.py:6200 - msgid "Distributable" - msgstr "" - --#: ../system-config-printer.py:6293 -+#: ../system-config-printer.py:6241 - #, fuzzy - msgid ", " - msgstr " " - --#: ../system-config-printer.py:6298 -+#: ../system-config-printer.py:6246 - #, python-format - msgid "" - "\n" - "(%s)" - msgstr "" - --#: ../system-config-printer.py:6303 -+#: ../system-config-printer.py:6251 - msgid "No support contacts known" - msgstr "" - --#: ../system-config-printer.py:6307 ../system-config-printer.py:6320 -+#: ../system-config-printer.py:6255 ../system-config-printer.py:6268 - msgid "Not specified." - msgstr "" - - #. Foomatic database problem of some sort. --#: ../system-config-printer.py:6360 -+#: ../system-config-printer.py:6308 - msgid "Database error" - msgstr "Database-feil" - --#: ../system-config-printer.py:6361 -+#: ../system-config-printer.py:6309 - #, python-format - msgid "The '%s' driver cannot be used with printer '%s %s'." - msgstr "Driveren '%s' kan ikke brukes sammen med skriver '%s' %s." -@@ -1508,65 +1509,65 @@ msgstr "Driveren '%s' kan ikke brukes sa - #. This printer references some XML that is not - #. installed by default. Point the user at the - #. package they need to install. --#: ../system-config-printer.py:6371 -+#: ../system-config-printer.py:6319 - #, python-format - msgid "You will need to install the '%s' package in order to use this driver." - msgstr "Du er nødt til å installere pakken '%s' for å bruke denne skriveren." - - #. This error came from trying to open the PPD file. --#: ../system-config-printer.py:6378 -+#: ../system-config-printer.py:6326 - msgid "PPD error" - msgstr "PPD-feil" - --#: ../system-config-printer.py:6380 -+#: ../system-config-printer.py:6328 - msgid "Failed to read PPD file. Possible reason follows:" - msgstr "Kunne ikke lese PPD-fil. Mulige årsaker følger:" - - #. Failed to get PPD downloaded from OpenPrinting XXX --#: ../system-config-printer.py:6397 -+#: ../system-config-printer.py:6345 - msgid "Downloadable drivers" - msgstr "" - --#: ../system-config-printer.py:6398 -+#: ../system-config-printer.py:6346 - msgid "Failed to download PPD." - msgstr "" - --#: ../system-config-printer.py:6405 -+#: ../system-config-printer.py:6353 - #, fuzzy - msgid "fetching PPD" - msgstr "Endre PPD" - --#: ../system-config-printer.py:6434 ../system-config-printer.py:6472 -+#: ../system-config-printer.py:6382 ../system-config-printer.py:6420 - #, fuzzy - msgid "No Installable Options" - msgstr "Installerbare alternativer" - --#: ../system-config-printer.py:6520 -+#: ../system-config-printer.py:6468 - #, fuzzy, python-format - msgid "adding printer %s" - msgstr "Konfigurer skrivere" - --#: ../system-config-printer.py:6669 -+#: ../system-config-printer.py:6617 - msgid "Would you like to print a test page?" - msgstr "" - --#: ../system-config-printer.py:6722 -+#: ../system-config-printer.py:6670 - #, fuzzy - msgid "Install driver" - msgstr "Finn driver" - --#: ../system-config-printer.py:6723 ../troubleshoot/CheckPPDSanity.py:131 -+#: ../system-config-printer.py:6671 ../troubleshoot/CheckPPDSanity.py:131 - #, fuzzy, python-format - msgid "Printer '%s' requires the %s package but it is not currently installed." - msgstr "" - "Skriveren '%s' er avhengig av pakken %s, som ikke er installert. Vennligst " - "installer denne pakken før skriveren tas i bruk." - --#: ../system-config-printer.py:6739 -+#: ../system-config-printer.py:6687 - msgid "Missing driver" - msgstr "Mangler driver" - --#: ../system-config-printer.py:6740 -+#: ../system-config-printer.py:6688 - #, python-format - msgid "" - "Printer '%s' requires the '%s' program but it is not currently installed. " -@@ -1696,133 +1697,128 @@ msgstr "Oppgi URI for enhet" - - #: ../glade/NewPrinterWindow.glade.h:5 - #, fuzzy --msgid "HP Printer (HPLIP) via network" --msgstr "Navn på skriver" -- --#: ../glade/NewPrinterWindow.glade.h:6 --#, fuzzy - msgid "IPP Printer" - msgstr "Navn på skriver" - --#: ../glade/NewPrinterWindow.glade.h:7 -+#: ../glade/NewPrinterWindow.glade.h:6 - #, fuzzy - msgid "License Terms" - msgstr "Navn på skriver" - --#: ../glade/NewPrinterWindow.glade.h:8 -+#: ../glade/NewPrinterWindow.glade.h:7 - msgid "Location of the LPD network printer" - msgstr "Lokasjon for LPD-nettverksskriver" - --#: ../glade/NewPrinterWindow.glade.h:9 -+#: ../glade/NewPrinterWindow.glade.h:8 - msgid "Location of the network printer" - msgstr "Lokasjon av nettverksskriver" - --#: ../glade/NewPrinterWindow.glade.h:10 -+#: ../glade/NewPrinterWindow.glade.h:9 - msgid "Location (optional)" - msgstr "Lokasjon (valgfri)" - --#: ../glade/NewPrinterWindow.glade.h:11 -+#: ../glade/NewPrinterWindow.glade.h:10 - #, fuzzy - msgid "Network Printer" - msgstr "Ny skriver" - --#: ../glade/NewPrinterWindow.glade.h:12 -+#: ../glade/NewPrinterWindow.glade.h:11 - #, fuzzy - msgid "Note" - msgstr "Tilstand" - --#: ../glade/NewPrinterWindow.glade.h:13 -+#: ../glade/NewPrinterWindow.glade.h:12 - #, fuzzy - msgid "Output Quality" - msgstr "Tilstand" - --#: ../glade/NewPrinterWindow.glade.h:14 -+#: ../glade/NewPrinterWindow.glade.h:13 - msgid "Printer Name" - msgstr "Navn på skriver" - --#: ../glade/NewPrinterWindow.glade.h:15 -+#: ../glade/NewPrinterWindow.glade.h:14 - #, fuzzy - msgid "SMB Printer" - msgstr "Navn på skriver" - --#: ../glade/NewPrinterWindow.glade.h:16 -+#: ../glade/NewPrinterWindow.glade.h:15 - #, fuzzy - msgid "Select Driver" - msgstr "Forvalgt skriver" - --#: ../glade/NewPrinterWindow.glade.h:17 -+#: ../glade/NewPrinterWindow.glade.h:16 - msgid "Settings of the serial port" - msgstr "Innstillinger for seriellporten" - --#: ../glade/NewPrinterWindow.glade.h:18 -+#: ../glade/NewPrinterWindow.glade.h:17 - msgid "smb://[workgroup/]server[:port]/printer" - msgstr "smb://[arbeidsgruppe/]tjener[:port]/skriver" - --#: ../glade/NewPrinterWindow.glade.h:19 -+#: ../glade/NewPrinterWindow.glade.h:18 - #, fuzzy - msgid "Choose Class Members" - msgstr "" - "Passord kreves\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:20 -+#: ../glade/NewPrinterWindow.glade.h:19 - #, fuzzy - msgid "Choose Driver" - msgstr "" - "Passord kreves\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:21 -+#: ../glade/NewPrinterWindow.glade.h:20 - #, fuzzy - msgid "Describe Printer" - msgstr "" - "Passord kreves\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:22 -+#: ../glade/NewPrinterWindow.glade.h:21 - #, fuzzy - msgid "Existing Settings" - msgstr "" - "Passord kreves\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:23 -+#: ../glade/NewPrinterWindow.glade.h:22 - #, fuzzy - msgid "Installable Options" - msgstr "" - "Passord kreves\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:24 -+#: ../glade/NewPrinterWindow.glade.h:23 - #, fuzzy - msgid "Select Device" - msgstr "" - "Passord kreves\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:25 -+#: ../glade/NewPrinterWindow.glade.h:24 - msgid "Baud Rate" - msgstr "Baud-rate" - --#: ../glade/NewPrinterWindow.glade.h:26 -+#: ../glade/NewPrinterWindow.glade.h:25 - msgid "Browse..." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:27 -+#: ../glade/NewPrinterWindow.glade.h:26 - #, fuzzy - msgid "Comments..." - msgstr "Kommentar" - --#: ../glade/NewPrinterWindow.glade.h:28 -+#: ../glade/NewPrinterWindow.glade.h:27 - #, fuzzy - msgid "Connection" - msgstr "Kobler til" - --#: ../glade/NewPrinterWindow.glade.h:29 -+#: ../glade/NewPrinterWindow.glade.h:28 - msgid "Data Bits" - msgstr "Databiter" - --#: ../glade/NewPrinterWindow.glade.h:30 -+#: ../glade/NewPrinterWindow.glade.h:29 - msgid "" - "Default\n" - "1200\n" -@@ -1844,7 +1840,7 @@ msgstr "" - "57600\n" - "115200" - --#: ../glade/NewPrinterWindow.glade.h:39 -+#: ../glade/NewPrinterWindow.glade.h:38 - msgid "" - "Default\n" - "8\n" -@@ -1854,7 +1850,7 @@ msgstr "" - "8\n" - "7" - --#: ../glade/NewPrinterWindow.glade.h:42 -+#: ../glade/NewPrinterWindow.glade.h:41 - msgid "" - "Default\n" - "None\n" -@@ -1866,7 +1862,7 @@ msgstr "" - "Ulik\n" - "Lik" - --#: ../glade/NewPrinterWindow.glade.h:46 -+#: ../glade/NewPrinterWindow.glade.h:45 - msgid "" - "Default\n" - "None\n" -@@ -1880,120 +1876,120 @@ msgstr "" - "RTS/CTS (Maskinvare)\n" - "DTR/DSR (Maskinvare)" - --#: ../glade/NewPrinterWindow.glade.h:51 -+#: ../glade/NewPrinterWindow.glade.h:50 - #: ../glade/PrinterPropertiesDialog.glade.h:35 - msgid "Description:" - msgstr "Beskrivelse:" - --#: ../glade/NewPrinterWindow.glade.h:52 ../troubleshoot/DeviceListed.py:40 -+#: ../glade/NewPrinterWindow.glade.h:51 ../troubleshoot/DeviceListed.py:40 - msgid "Device URI" - msgstr "URI til enhet" - --#: ../glade/NewPrinterWindow.glade.h:53 -+#: ../glade/NewPrinterWindow.glade.h:52 - msgid "Device description." - msgstr "Beskrivelse av enheten." - --#: ../glade/NewPrinterWindow.glade.h:54 -+#: ../glade/NewPrinterWindow.glade.h:53 - msgid "DirectJet" - msgstr "DirectJet" - --#: ../glade/NewPrinterWindow.glade.h:56 -+#: ../glade/NewPrinterWindow.glade.h:55 - #, fuzzy - msgid "Driver details" - msgstr "Drivere" - --#: ../glade/NewPrinterWindow.glade.h:57 -+#: ../glade/NewPrinterWindow.glade.h:56 - msgid "Empty" - msgstr "Tom" - --#: ../glade/NewPrinterWindow.glade.h:58 -+#: ../glade/NewPrinterWindow.glade.h:57 - msgid "Find _Queue..." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:59 -+#: ../glade/NewPrinterWindow.glade.h:58 - msgid "Flow Control" - msgstr "Flytkontroll" - --#: ../glade/NewPrinterWindow.glade.h:60 -+#: ../glade/NewPrinterWindow.glade.h:59 - msgid "" - "For the printer you have selected there are drivers available for download." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:61 -+#: ../glade/NewPrinterWindow.glade.h:60 - msgid "Free software" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:62 -+#: ../glade/NewPrinterWindow.glade.h:61 - msgid "Graphics:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:63 -+#: ../glade/NewPrinterWindow.glade.h:62 - #, fuzzy - msgid "Host:" - msgstr "Vertsnavn" - --#: ../glade/NewPrinterWindow.glade.h:64 -+#: ../glade/NewPrinterWindow.glade.h:63 - msgid "Human-readable description such as \"HP LaserJet with Duplexer\"" - msgstr "Lesbar beskrivelse, som f.eks. \"HP LaserJet med Duplexer\"" - --#: ../glade/NewPrinterWindow.glade.h:65 -+#: ../glade/NewPrinterWindow.glade.h:64 - msgid "Human-readable location such as \"Lab 1\"" - msgstr "Lesbar plassering, som f.eks. \"Lab 1\"" - --#: ../glade/NewPrinterWindow.glade.h:67 -+#: ../glade/NewPrinterWindow.glade.h:66 - msgid "LPD" - msgstr "LPD" - --#: ../glade/NewPrinterWindow.glade.h:68 -+#: ../glade/NewPrinterWindow.glade.h:67 - msgid "License:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:69 -+#: ../glade/NewPrinterWindow.glade.h:68 - #, fuzzy - msgid "Line art:" - msgstr "Tilstand for skriver:" - --#: ../glade/NewPrinterWindow.glade.h:70 -+#: ../glade/NewPrinterWindow.glade.h:69 - #, fuzzy - msgid "Local Driver" - msgstr "Lokale skrivere" - --#: ../glade/NewPrinterWindow.glade.h:71 -+#: ../glade/NewPrinterWindow.glade.h:70 - #, fuzzy - msgid "Make and model:" - msgstr "Merke og modell:" - --#: ../glade/NewPrinterWindow.glade.h:72 -+#: ../glade/NewPrinterWindow.glade.h:71 - msgid "Manufacturer" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:73 -+#: ../glade/NewPrinterWindow.glade.h:72 - #, fuzzy - msgid "Network" - msgstr "Ny skriver" - --#: ../glade/NewPrinterWindow.glade.h:75 -+#: ../glade/NewPrinterWindow.glade.h:74 - msgid "No, I do not accept this license" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:76 -+#: ../glade/NewPrinterWindow.glade.h:75 - msgid "Parity" - msgstr "Paritet" - --#: ../glade/NewPrinterWindow.glade.h:78 -+#: ../glade/NewPrinterWindow.glade.h:77 - msgid "Patented algorithms" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:79 -+#: ../glade/NewPrinterWindow.glade.h:78 - msgid "Photo:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:80 -+#: ../glade/NewPrinterWindow.glade.h:79 - #, fuzzy - msgid "Port number:" - msgstr "Portnummer" - --#: ../glade/NewPrinterWindow.glade.h:81 -+#: ../glade/NewPrinterWindow.glade.h:80 - #, fuzzy - msgid "" - "PostScript Printer Description (PPD) files can often be found on the driver " -@@ -2004,82 +2000,82 @@ msgstr "" - "driverdisketten som følger med skriveren. For PostScript-skrivere så er de " - "ofte en del av Windows®-driverne." - --#: ../glade/NewPrinterWindow.glade.h:82 -+#: ../glade/NewPrinterWindow.glade.h:81 - #, fuzzy - msgid "Printer model:" - msgstr "Skriver lagt til" - --#: ../glade/NewPrinterWindow.glade.h:83 -+#: ../glade/NewPrinterWindow.glade.h:82 - msgid "Probe" - msgstr "Søk" - --#: ../glade/NewPrinterWindow.glade.h:84 -+#: ../glade/NewPrinterWindow.glade.h:83 - #, fuzzy - msgid "Prompt user if authentication is required" - msgstr "Autentisering" - --#: ../glade/NewPrinterWindow.glade.h:85 -+#: ../glade/NewPrinterWindow.glade.h:84 - #, fuzzy - msgid "Provide PPD file" - msgstr "Oppgi PPD-fil" - --#: ../glade/NewPrinterWindow.glade.h:86 -+#: ../glade/NewPrinterWindow.glade.h:85 - msgid "Queue:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:87 -+#: ../glade/NewPrinterWindow.glade.h:86 - msgid "SCSI" - msgstr "SCSI" - --#: ../glade/NewPrinterWindow.glade.h:88 -+#: ../glade/NewPrinterWindow.glade.h:87 - msgid "SMB" - msgstr "SMB" - --#: ../glade/NewPrinterWindow.glade.h:89 -+#: ../glade/NewPrinterWindow.glade.h:88 - msgid "Search for a printer driver to download" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:90 -+#: ../glade/NewPrinterWindow.glade.h:89 - #, fuzzy - msgid "Searching..." - msgstr "Skalering:" - --#: ../glade/NewPrinterWindow.glade.h:91 -+#: ../glade/NewPrinterWindow.glade.h:90 - msgid "Select A File" - msgstr "Velg en fil" - --#: ../glade/NewPrinterWindow.glade.h:92 -+#: ../glade/NewPrinterWindow.glade.h:91 - #, fuzzy - msgid "Select printer from database" - msgstr "Velg en skriver fra databasen" - --#: ../glade/NewPrinterWindow.glade.h:93 -+#: ../glade/NewPrinterWindow.glade.h:92 - msgid "Serial" - msgstr "Seriell" - --#: ../glade/NewPrinterWindow.glade.h:94 -+#: ../glade/NewPrinterWindow.glade.h:93 - #, fuzzy - msgid "Set authentication details now" - msgstr "Autentisering" - --#: ../glade/NewPrinterWindow.glade.h:95 -+#: ../glade/NewPrinterWindow.glade.h:94 - msgid "Short name for this printer such as \"laserjet\"" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:96 -+#: ../glade/NewPrinterWindow.glade.h:95 - msgid "Supplier:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:97 -+#: ../glade/NewPrinterWindow.glade.h:96 - msgid "Support:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:98 -+#: ../glade/NewPrinterWindow.glade.h:97 - #, fuzzy - msgid "Text:" - msgstr "Nullstill" - --#: ../glade/NewPrinterWindow.glade.h:99 -+#: ../glade/NewPrinterWindow.glade.h:98 - msgid "" - "The foomatic printer database contains various manufacturer provided " - "PostScript Printer Description (PPD) files and also can generate PPD files " -@@ -2093,20 +2089,20 @@ msgstr "" - "også produsents egne PPD-filer bedre tilgang til spesifikke funksjoner på " - "skriveren." - --#: ../glade/NewPrinterWindow.glade.h:100 -+#: ../glade/NewPrinterWindow.glade.h:99 - msgid "" - "These drivers do not come from your operating system supplier and will not " - "be covered by their commercial support. See the support and license terms " - "of the driver's supplier." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:101 -+#: ../glade/NewPrinterWindow.glade.h:100 - msgid "" - "This driver supports additional hardware that may be installed in the " - "printer." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:102 -+#: ../glade/NewPrinterWindow.glade.h:101 - msgid "" - "This is done by assuming that options with the same name do have the same " - "meaning. Settings of options that are not present in the new PPD will be " -@@ -2117,7 +2113,7 @@ msgstr "" - "vil gå tapt og alternativene som kun finnes i den nye PPDen vil bli satt som " - "standard." - --#: ../glade/NewPrinterWindow.glade.h:103 -+#: ../glade/NewPrinterWindow.glade.h:102 - msgid "" - "This way all current option settings will be lost. The default settings of " - "the new PPD will be used. " -@@ -2125,43 +2121,43 @@ msgstr "" - "På denne måten vil alle nåværende alternativ-innstillingene vil gå tapt. " - "Standard-innstillingene fra den nye PPDen vil bli brukt." - --#: ../glade/NewPrinterWindow.glade.h:104 -+#: ../glade/NewPrinterWindow.glade.h:103 - msgid "Try to copy the option settings over from the old PPD. " - msgstr "Prøv å kopiere over de alternativ-innstillingene fra den gamle PPDen." - --#: ../glade/NewPrinterWindow.glade.h:105 -+#: ../glade/NewPrinterWindow.glade.h:104 - msgid "URI:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:107 -+#: ../glade/NewPrinterWindow.glade.h:106 - msgid "Use the new PPD (Postscript Printer Description) as is." - msgstr "Bruk den nye PPDen (PostScript Printer Description) som den er." - --#: ../glade/NewPrinterWindow.glade.h:109 -+#: ../glade/NewPrinterWindow.glade.h:108 - msgid "" - "With this choice no driver download will be performed. In the next steps a " - "locally installed driver will be selected." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:110 -+#: ../glade/NewPrinterWindow.glade.h:109 - #, fuzzy - msgid "Yes, I accept this license" - msgstr "Godtar jobber" - --#: ../glade/NewPrinterWindow.glade.h:111 -+#: ../glade/NewPrinterWindow.glade.h:110 - msgid "_Search" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:112 -+#: ../glade/NewPrinterWindow.glade.h:111 - msgid "_Verify..." - msgstr "_Verifiser..." - --#: ../glade/NewPrinterWindow.glade.h:113 -+#: ../glade/NewPrinterWindow.glade.h:112 - #: ../glade/PrinterPropertiesDialog.glade.h:128 - msgid "move left" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:114 -+#: ../glade/NewPrinterWindow.glade.h:113 - #: ../glade/PrinterPropertiesDialog.glade.h:129 - #, fuzzy - msgid "move right" -@@ -3105,7 +3101,7 @@ msgstr "" - msgid "Remember to load paper of type '%s' into the printer first." - msgstr "" - --#: ../troubleshoot/PrintTestPage.py:399 -+#: ../troubleshoot/PrintTestPage.py:416 - msgid "Error submitting test page" - msgstr "" - -@@ -3298,6 +3294,10 @@ msgid "Select default printer" - msgstr "Velg forvalgt skriver" - - #, fuzzy -+#~ msgid "HP Printer (HPLIP) via network" -+#~ msgstr "Navn på skriver" -+ -+#, fuzzy - #~ msgid "Not Found" - #~ msgstr "Ikke funnet" - -diff -up system-config-printer-1.1.5/po/nl.po.git-1.1.x system-config-printer-1.1.5/po/nl.po ---- system-config-printer-1.1.5/po/nl.po.git-1.1.x 2009-03-03 22:21:46.000000000 +0000 -+++ system-config-printer-1.1.5/po/nl.po 2009-03-10 17:43:31.000000000 +0000 -@@ -1,8 +1,8 @@ - # Dutch translation of system-config-printer --# Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008 The Free Software Foundation, Inc. -+# Copyright (C) 2003-2009 The Free Software Foundation, Inc. - # - # Tino Meinen , 2003. --# Peter van Egdom , 2003, 2004, 2005, 2006, 2007, 2008. -+# Peter van Egdom , 2003-2009. - # Stijn Bibaer , 2006. - # Bart Couvreur , 2007. - # Reinout van Schouwen , 2008. -@@ -12,9 +12,9 @@ msgid "" - msgstr "" - "Project-Id-Version: system-config-printer\n" - "Report-Msgid-Bugs-To: https://bugzilla.redhat.com/bugzilla\n" --"POT-Creation-Date: 2009-03-02 23:22+0000\n" --"PO-Revision-Date: 2009-01-25 21:54+0100\n" --"Last-Translator: Reinout van Schouwen \n" -+"POT-Creation-Date: 2009-03-10 16:51+0000\n" -+"PO-Revision-Date: 2009-03-05 19:58+0100\n" -+"Last-Translator: Peter van Egdom \n" - "Language-Team: Dutch \n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" -@@ -57,11 +57,11 @@ msgstr "" - msgid "Enter IP address" - msgstr "Voer een IP-adres in" - --#: ../authconn.py:35 ../glade/NewPrinterWindow.glade.h:108 -+#: ../authconn.py:35 ../glade/NewPrinterWindow.glade.h:107 - msgid "Username:" - msgstr "Gebruikersnaam:" - --#: ../authconn.py:36 ../glade/NewPrinterWindow.glade.h:77 -+#: ../authconn.py:36 ../glade/NewPrinterWindow.glade.h:76 - msgid "Password:" - msgstr "Wachtwoord:" - -@@ -69,7 +69,7 @@ msgstr "Wachtwoord:" - msgid "Domain:" - msgstr "Domein:" - --#: ../authconn.py:46 -+#: ../authconn.py:46 ../authconn.py:409 - msgid "Authentication" - msgstr "Authenticatie" - -@@ -77,45 +77,54 @@ msgstr "Authenticatie" - msgid "Remember password" - msgstr "" - --#: ../authconn.py:211 ../authconn.py:232 -+#: ../authconn.py:208 -+#, python-format -+msgid "Unauthorized request (%s)" -+msgstr "" -+ -+#: ../authconn.py:209 -+msgid "You are not authorized to carry out therequested action." -+msgstr "" -+ -+#: ../authconn.py:212 ../authconn.py:233 - #, fuzzy - msgid "Operation canceled" - msgstr "Operationeel beleid:" - --#: ../authconn.py:253 --#, fuzzy, python-format -+#: ../authconn.py:250 -+#, python-format - msgid "CUPS server error (%s)" -+msgstr "CUPS-server fout (%s)" -+ -+#: ../authconn.py:252 ../errordialogs.py:56 ../errordialogs.py:70 -+msgid "CUPS server error" - msgstr "CUPS-server fout" - --#: ../authconn.py:255 ../errordialogs.py:57 --#: ../troubleshoot/PrintTestPage.py:400 -+#: ../authconn.py:261 ../errordialogs.py:57 -+#: ../troubleshoot/PrintTestPage.py:417 - #, python-format - msgid "There was an error during the CUPS operation: '%s'." - msgstr "Er was een fout tijdens de CUPS-bewerking: '%s'." - --#: ../authconn.py:258 -+#: ../authconn.py:264 - #, fuzzy - msgid "Retry" - msgstr "mijn afdruktaken" - --#: ../authconn.py:379 ../authconn.py:381 ../errordialogs.py:65 ../pysmb.py:75 -+#: ../authconn.py:385 ../authconn.py:387 ../errordialogs.py:65 ../pysmb.py:75 - #: ../pysmb.py:77 - msgid "Not authorized" - msgstr "Niet gemachtigd" - --#: ../authconn.py:382 ../pysmb.py:78 -+#: ../authconn.py:388 ../pysmb.py:78 - msgid "The password may be incorrect." - msgstr "Het wachtwoord kan onjuist zijn." - --#: ../authconn.py:400 -+#: ../authconn.py:407 - #, python-format - msgid "Authentication (%s)" - msgstr "Authenticatie (%s)" - --#: ../errordialogs.py:56 ../errordialogs.py:70 --msgid "CUPS server error" --msgstr "CUPS-server fout" -- - #: ../errordialogs.py:66 - msgid "" - "The password may be incorrect, or the server may be configured to deny " -@@ -144,7 +153,7 @@ msgstr "Opwaardering vereist" - msgid "Server error" - msgstr "Server-fout" - --#: ../errordialogs.py:82 ../system-config-printer.py:1219 -+#: ../errordialogs.py:82 ../system-config-printer.py:1223 - msgid "Not connected" - msgstr "Niet verbonden" - -@@ -166,7 +175,7 @@ msgstr "_Nieuwe groep" - msgid "_New Group from Selection" - msgstr "" - --#: ../GroupsPane.py:98 ../system-config-printer.py:393 -+#: ../GroupsPane.py:98 ../system-config-printer.py:397 - msgid "_Rename" - msgstr "_Hernoemen" - -@@ -215,9 +224,8 @@ msgid "Re_print" - msgstr "O_pnieuw afdrukken" - - #: ../jobviewer.py:171 --#, fuzzy - msgid "_Authenticate" --msgstr "Authenticatie" -+msgstr "_Authenticeren" - - #: ../jobviewer.py:209 ../troubleshoot/PrintTestPage.py:82 - msgid "Job" -@@ -232,7 +240,7 @@ msgid "Document" - msgstr "Document" - - #: ../jobviewer.py:212 ../my-default-printer.py:153 --#: ../system-config-printer.py:366 ../system-config-printer.py:1367 -+#: ../system-config-printer.py:370 ../system-config-printer.py:1371 - #: ../troubleshoot/PrintTestPage.py:84 - msgid "Printer" - msgstr "Printer" -@@ -269,8 +277,8 @@ msgstr "Document-afdrukstatus (%s)" - - #: ../jobviewer.py:386 ../jobviewer.py:451 ../jobviewer.py:452 - #: ../jobviewer.py:492 ../jobviewer.py:600 ../jobviewer.py:727 --#: ../jobviewer.py:1196 ../jobviewer.py:1222 ../system-config-printer.py:2546 --#: ../glade/NewPrinterWindow.glade.h:106 -+#: ../jobviewer.py:1196 ../jobviewer.py:1222 ../system-config-printer.py:2556 -+#: ../glade/NewPrinterWindow.glade.h:105 - #: ../troubleshoot/ChooseNetworkPrinter.py:101 - #: ../troubleshoot/ChooseNetworkPrinter.py:102 - #: ../troubleshoot/ChooseNetworkPrinter.py:105 -@@ -361,12 +369,12 @@ msgstr "Vasthouden tot:" - msgid "Pending" - msgstr "Wachtend" - --#: ../jobviewer.py:591 ../system-config-printer.py:186 -+#: ../jobviewer.py:591 ../system-config-printer.py:190 - #: ../troubleshoot/PrintTestPage.py:43 - msgid "Processing" - msgstr "Verwerken" - --#: ../jobviewer.py:592 ../system-config-printer.py:188 -+#: ../jobviewer.py:592 ../system-config-printer.py:192 - #: ../troubleshoot/PrintTestPage.py:44 - msgid "Stopped" - msgstr "Gestopt" -@@ -484,8 +492,8 @@ msgstr "Systeemstandaard _gebruiken" - msgid "_Set Default" - msgstr "Standaard _instellen" - --#: ../my-default-printer.py:158 ../system-config-printer.py:423 --#: ../system-config-printer.py:3660 ../troubleshoot/ChooseNetworkPrinter.py:37 -+#: ../my-default-printer.py:158 ../system-config-printer.py:427 -+#: ../system-config-printer.py:3675 ../troubleshoot/ChooseNetworkPrinter.py:37 - #: ../troubleshoot/ChoosePrinter.py:38 - msgid "Location" - msgstr "Locatie" -@@ -504,9 +512,8 @@ msgid "Retry job" - msgstr "mijn afdruktaken" - - #: ../ppdippstr.py:39 --#, fuzzy - msgid "Stop printer" --msgstr "Printer kopiëren" -+msgstr "Printer stoppen" - - #: ../ppdippstr.py:44 - #, fuzzy -@@ -518,7 +525,7 @@ msgstr "Standaardprinter" - msgid "Authenticated" - msgstr "Authenticatie" - --#: ../ppdippstr.py:50 ../system-config-printer.py:6259 -+#: ../ppdippstr.py:50 ../system-config-printer.py:6207 - msgid "None" - msgstr "Geen" - -@@ -618,7 +625,7 @@ msgstr "" - - #: ../ppdippstr.py:90 - msgid "CD or DVD tray" --msgstr "" -+msgstr "CD of DVD houder" - - #: ../ppdippstr.py:91 - msgid "Envelope feeder" -@@ -637,13 +644,12 @@ msgid "Multi-purpose tray" - msgstr "" - - #: ../ppdippstr.py:96 --#, fuzzy - msgid "Page size" --msgstr "Pagina's per kant:" -+msgstr "Paginagrootte" - - #: ../ppdippstr.py:97 - msgid "Custom" --msgstr "" -+msgstr "Aangepast" - - #: ../ppdippstr.py:98 - msgid "Photo or 4x6 inch index card" -@@ -671,11 +677,11 @@ msgstr "" - - #: ../ppdippstr.py:104 - msgid "CD or DVD 80mm" --msgstr "" -+msgstr "CD of DVD 80mm" - - #: ../ppdippstr.py:105 - msgid "CD or DVD 120mm" --msgstr "" -+msgstr "CD of DVD 120mm" - - #: ../ppdippstr.py:107 - #, fuzzy -@@ -692,7 +698,7 @@ msgstr "" - - #: ../ppdippstr.py:110 - msgid "Off" --msgstr "" -+msgstr "Uit" - - #: ../ppdippstr.py:113 - msgid "Resolution, quality, ink type, media type" -@@ -738,124 +744,124 @@ msgstr "" - msgid "1200 dpi, photo, black + color cartridge, photo paper" - msgstr "" - --#: ../system-config-printer.py:127 -+#: ../system-config-printer.py:131 - msgid "To do this, select System->Administration->Firewall from the main menu." - msgstr "" - "Om dit te doen, selecteert u Systeem->Beheer->Firewall uit het hoofdmenu." - --#: ../system-config-printer.py:185 -+#: ../system-config-printer.py:189 - msgid "Idle" - msgstr "Inactief" - --#: ../system-config-printer.py:187 -+#: ../system-config-printer.py:191 - msgid "Busy" - msgstr "Bezig" - --#: ../system-config-printer.py:372 ../system-config-printer.py:1373 -+#: ../system-config-printer.py:376 ../system-config-printer.py:1377 - msgid "Class" - msgstr "Klasse" - --#: ../system-config-printer.py:399 -+#: ../system-config-printer.py:403 - msgid "Set As De_fault" - msgstr "Instellen als _standaard" - --#: ../system-config-printer.py:403 -+#: ../system-config-printer.py:407 - msgid "_Create class" - msgstr "_Klasse aanmaken" - --#: ../system-config-printer.py:405 -+#: ../system-config-printer.py:409 - msgid "View Print _Queue" - msgstr "Printer_wachtrij bekijken" - --#: ../system-config-printer.py:407 -+#: ../system-config-printer.py:411 - msgid "_Add to Group" - msgstr "Aan _groep toevoegen" - --#: ../system-config-printer.py:409 -+#: ../system-config-printer.py:413 - msgid "Save Results as _Group" - msgstr "Resultaat op_slaan als groep" - --#: ../system-config-printer.py:411 -+#: ../system-config-printer.py:415 - msgid "Save Filter as _Search Group" - msgstr "Filter opslaan als _zoekgroep" - --#: ../system-config-printer.py:415 -+#: ../system-config-printer.py:419 - msgid "E_nabled" - msgstr "Aa_ngezet" - --#: ../system-config-printer.py:417 -+#: ../system-config-printer.py:421 - msgid "_Shared" - msgstr "_Gedeeld" - --#: ../system-config-printer.py:421 ../troubleshoot/ChooseNetworkPrinter.py:35 -+#: ../system-config-printer.py:425 ../troubleshoot/ChooseNetworkPrinter.py:35 - #: ../troubleshoot/ChoosePrinter.py:36 ../troubleshoot/DeviceListed.py:36 - msgid "Name" - msgstr "Naam" - --#: ../system-config-printer.py:422 -+#: ../system-config-printer.py:426 - msgid "Description" - msgstr "Omschrijving" - --#: ../system-config-printer.py:424 -+#: ../system-config-printer.py:428 - msgid "Manufacturer / Model" - msgstr "Fabrikant / model" - - #. Printer state reasons list --#: ../system-config-printer.py:499 -+#: ../system-config-printer.py:503 - msgid "Message" - msgstr "Bericht" - --#: ../system-config-printer.py:534 -+#: ../system-config-printer.py:538 - msgid "Problems?" - msgstr "Problemen?" - --#: ../system-config-printer.py:637 ../system-config-printer.py:639 -+#: ../system-config-printer.py:641 ../system-config-printer.py:643 - msgid "Members of this class" - msgstr "Leden van deze klasse" - --#: ../system-config-printer.py:638 ../system-config-printer.py:640 -+#: ../system-config-printer.py:642 ../system-config-printer.py:644 - msgid "Others" - msgstr "Anderen" - --#: ../system-config-printer.py:641 -+#: ../system-config-printer.py:645 - msgid "Devices" - msgstr "Apparaten" - --#: ../system-config-printer.py:642 -+#: ../system-config-printer.py:646 - msgid "Connections" - msgstr "Verbindingen" - --#: ../system-config-printer.py:643 -+#: ../system-config-printer.py:647 - msgid "Makes" - msgstr "Merken" - --#: ../system-config-printer.py:644 -+#: ../system-config-printer.py:648 - msgid "Models" - msgstr "Modellen" - --#: ../system-config-printer.py:645 -+#: ../system-config-printer.py:649 - msgid "Drivers" - msgstr "Stuurprogramma's" - --#: ../system-config-printer.py:646 ../glade/NewPrinterWindow.glade.h:55 -+#: ../system-config-printer.py:650 ../glade/NewPrinterWindow.glade.h:54 - msgid "Downloadable Drivers" - msgstr "Downloadbare stuurprogramma's" - --#: ../system-config-printer.py:647 -+#: ../system-config-printer.py:651 - msgid "Users" - msgstr "Gebruikers" - --#: ../system-config-printer.py:682 -+#: ../system-config-printer.py:686 - msgid "Automatic rotation" - msgstr "Automatische draaiing" - --#: ../system-config-printer.py:989 -+#: ../system-config-printer.py:993 - #, fuzzy, python-format - msgid "Printer Properties - '%s' on %s" - msgstr "Printereigenschappen – ‘%s’ op server ‘%s’" - - #. The Conflict button was pressed. --#: ../system-config-printer.py:996 -+#: ../system-config-printer.py:1000 - msgid "" - "There are conflicting options.\n" - "Changes can only be applied after\n" -@@ -865,78 +871,78 @@ msgstr "" - "Veranderingen kunnen alleen worden toegepast\n" - "nadat deze conflicten zijn opgelost." - --#: ../system-config-printer.py:1214 -+#: ../system-config-printer.py:1218 - #, python-format - msgid "Printer configuration - %s" - msgstr "Printerconfiguratie - %s" - --#: ../system-config-printer.py:1217 -+#: ../system-config-printer.py:1221 - #, python-format - msgid "Connected to %s" - msgstr "Verbonden met %s" - - #. Update our copy of the printer's settings. --#: ../system-config-printer.py:1257 ../system-config-printer.py:2042 -+#: ../system-config-printer.py:1261 ../system-config-printer.py:2046 - msgid "obtaining queue details" - msgstr "bezig met ophalen wachtrijdetails" - --#: ../system-config-printer.py:1295 -+#: ../system-config-printer.py:1299 - msgid "Remove from Group" - msgstr "Verwijderen uit groep" - --#: ../system-config-printer.py:1361 -+#: ../system-config-printer.py:1365 - msgid "Network printer (discovered)" - msgstr "Netwerkprinter (gevonden)" - --#: ../system-config-printer.py:1364 -+#: ../system-config-printer.py:1368 - msgid "Network class (discovered)" - msgstr "Netwerkklasse (gevonden)" - --#: ../system-config-printer.py:1370 ../system-config-printer.py:5524 --#: ../system-config-printer.py:5594 ../system-config-printer.py:5596 -+#: ../system-config-printer.py:1374 ../system-config-printer.py:5519 -+#: ../system-config-printer.py:5589 ../system-config-printer.py:5591 - msgid "Fax" - msgstr "Fax" - --#: ../system-config-printer.py:1376 ../system-config-printer.py:1382 -+#: ../system-config-printer.py:1380 ../system-config-printer.py:1386 - #: ../troubleshoot/LocalOrRemote.py:30 - msgid "Network printer" - msgstr "Netwerkprinter" - --#: ../system-config-printer.py:1379 -+#: ../system-config-printer.py:1383 - msgid "Network print share" - msgstr "Gedeelde netwerkprinter" - --#: ../system-config-printer.py:1508 ../glade/ConnectingDialog.glade.h:2 -+#: ../system-config-printer.py:1512 ../glade/ConnectingDialog.glade.h:2 - #, no-c-format, python-format - msgid "Opening connection to %s" - msgstr "Verbinding met %s openen" - --#: ../system-config-printer.py:1887 -+#: ../system-config-printer.py:1891 - msgid "Installable Options" - msgstr "Installeerbare opties" - --#: ../system-config-printer.py:1888 -+#: ../system-config-printer.py:1892 - #: ../glade/PrinterPropertiesDialog.glade.h:109 - msgid "Printer Options" - msgstr "Printeropties" - --#: ../system-config-printer.py:1924 -+#: ../system-config-printer.py:1928 - #, python-format - msgid "modifying class %s" - msgstr "aanpassen klasse %s" - --#: ../system-config-printer.py:1926 ../system-config-printer.py:3019 --#: ../system-config-printer.py:3044 ../system-config-printer.py:6547 --#: ../system-config-printer.py:6559 ../system-config-printer.py:6581 -+#: ../system-config-printer.py:1930 ../system-config-printer.py:3037 -+#: ../system-config-printer.py:3062 ../system-config-printer.py:6495 -+#: ../system-config-printer.py:6507 ../system-config-printer.py:6529 - #, python-format - msgid "modifying printer %s" - msgstr "aanpassen printer %s" - --#: ../system-config-printer.py:1941 -+#: ../system-config-printer.py:1945 - msgid "This will delete this class!" - msgstr "Dit zal deze klasse verwijderen!" - --#: ../system-config-printer.py:1942 -+#: ../system-config-printer.py:1946 - msgid "Proceed anyway?" - msgstr "Toch doorgaan?" - -@@ -944,44 +950,44 @@ msgstr "Toch doorgaan?" - #. but we have never fetched the server settings to see whether - #. the server is publishing shared printers. Fetch the settings - #. now so that we can update the "not published" label if necessary. --#: ../system-config-printer.py:2030 ../system-config-printer.py:3203 -+#: ../system-config-printer.py:2034 ../system-config-printer.py:3221 - msgid "fetching server settings" - msgstr "serverinstellingen ophalen" - --#: ../system-config-printer.py:2100 -+#: ../system-config-printer.py:2104 - msgid "Set Default Printer" - msgstr "Standaardprinter instellen" - --#: ../system-config-printer.py:2102 -+#: ../system-config-printer.py:2106 - msgid "Do you want to set this as the system-wide default printer?" - msgstr "Wilt u deze als de systeembrede standaardprinter instellen?" - --#: ../system-config-printer.py:2104 -+#: ../system-config-printer.py:2108 - msgid "Set as the _system-wide default printer" - msgstr "Instellen als de systeembrede standaardprinter" - --#: ../system-config-printer.py:2106 -+#: ../system-config-printer.py:2110 - msgid "_Clear my personal default setting" - msgstr "Mijn persoonlijke standaardinstelling _wissen" - --#: ../system-config-printer.py:2107 -+#: ../system-config-printer.py:2111 - msgid "Set as my _personal default printer" - msgstr "Als mijn persoonlijke standaardprinter instellen" - --#: ../system-config-printer.py:2112 -+#: ../system-config-printer.py:2116 - msgid "setting default printer" - msgstr "standaardprinter instellen" - --#: ../system-config-printer.py:2169 -+#: ../system-config-printer.py:2173 - msgid "printing test page" - msgstr "bezig met afdrukken testpagina" - --#: ../system-config-printer.py:2182 ../system-config-printer.py:2217 --#: ../system-config-printer.py:5418 -+#: ../system-config-printer.py:2186 ../system-config-printer.py:2221 -+#: ../system-config-printer.py:5413 - msgid "Not possible" - msgstr "Niet mogelijk" - --#: ../system-config-printer.py:2183 ../system-config-printer.py:2218 -+#: ../system-config-printer.py:2187 ../system-config-printer.py:2222 - msgid "" - "The remote server did not accept the print job, most likely because the " - "printer is not shared." -@@ -989,20 +995,20 @@ msgstr "" - "De andere server heeft de printopdracht niet geaccepteerd, waarschijnlijk " - "omdat de printer niet gedeeld is." - --#: ../system-config-printer.py:2195 ../system-config-printer.py:2210 -+#: ../system-config-printer.py:2199 ../system-config-printer.py:2214 - msgid "Submitted" - msgstr "Ingediend" - --#: ../system-config-printer.py:2196 -+#: ../system-config-printer.py:2200 - #, python-format - msgid "Test page submitted as job %d" - msgstr "Testpagina ingediend als opdracht %d" - --#: ../system-config-printer.py:2203 -+#: ../system-config-printer.py:2207 - msgid "sending maintenance command" - msgstr "bezig met versturen onderhoudsopdracht" - --#: ../system-config-printer.py:2211 -+#: ../system-config-printer.py:2215 - #, python-format - msgid "Maintenance command submitted as job %d" - msgstr "Onderhoudsopdracht ingediend als afdruktaak %d" -@@ -1010,65 +1016,65 @@ msgstr "Onderhoudsopdracht ingediend als - #. The underlying cupsGetPPD2() function returned NULL without - #. setting an IPP error, so it'll be something like a failed - #. connection. --#: ../system-config-printer.py:2285 ../system-config-printer.py:2381 -+#: ../system-config-printer.py:2289 ../system-config-printer.py:2385 - msgid "Error" - msgstr "Fout" - --#: ../system-config-printer.py:2286 -+#: ../system-config-printer.py:2290 - msgid "There was a problem connecting to the CUPS server." - msgstr "Er was een probleem bij het verbinden met de CUPS-server." - --#: ../system-config-printer.py:2382 -+#: ../system-config-printer.py:2386 - #, python-format - msgid "Option '%s' has value '%s' and cannot be edited." - msgstr "Optie ‘%s’ heeft waarde ‘%s’ en kan niet bewerkt worden." - --#: ../system-config-printer.py:2466 -+#: ../system-config-printer.py:2476 - msgid "Marker levels are not reported for this printer." - msgstr "" - --#: ../system-config-printer.py:2763 -+#: ../system-config-printer.py:2773 - msgid "Cannot Rename" - msgstr "Kan niet hernoemen" - --#: ../system-config-printer.py:2764 -+#: ../system-config-printer.py:2774 - msgid "There are queued jobs." - msgstr "Er staan afdruktaken in de wachtrij." - --#: ../system-config-printer.py:2822 -+#: ../system-config-printer.py:2840 - msgid "renaming printer" - msgstr "bezig met hernoemen van printer" - - #. for classes make sure all members - #. will get added --#: ../system-config-printer.py:2907 -+#: ../system-config-printer.py:2925 - msgid "copying printer" - msgstr "bezig met kopiëren van printer" - --#: ../system-config-printer.py:2971 -+#: ../system-config-printer.py:2989 - #, fuzzy, python-format - msgid "Really delete class '%s'?" - msgstr "Klasse ‘%s’ echt verwijderen?" - --#: ../system-config-printer.py:2973 -+#: ../system-config-printer.py:2991 - #, fuzzy, python-format - msgid "Really delete printer '%s'?" - msgstr "Printer ‘%s’ echt verwijderen?" - --#: ../system-config-printer.py:2975 -+#: ../system-config-printer.py:2993 - msgid "Really delete selected destinations?" - msgstr "De geselecteerde bestemmingen echt verwijderen?" - --#: ../system-config-printer.py:2996 -+#: ../system-config-printer.py:3014 - #, python-format - msgid "deleting printer %s" - msgstr "bezig met verwijderen van printer %s" - --#: ../system-config-printer.py:3070 -+#: ../system-config-printer.py:3088 - msgid "Publish Shared Printers" - msgstr "Gedeelde printers publiceren" - --#: ../system-config-printer.py:3071 -+#: ../system-config-printer.py:3089 - msgid "" - "Shared printers are not available to other people unless the 'Publish shared " - "printers' option is enabled in the server settings." -@@ -1076,7 +1082,7 @@ msgstr "" - "Gedeelde printers zijn niet beschikbaar voor andere mensen tenzij de optie " - "‘Gedeelde printers publiceren’ is ingeschakeld in de serverinstellingen." - --#: ../system-config-printer.py:3264 -+#: ../system-config-printer.py:3282 - msgid "modifying server settings" - msgstr "bezig met aanpassen serverinstellingen" - -@@ -1086,11 +1092,11 @@ msgstr "bezig met aanpassen serverinstel - #. be unblocked. Unfortunately, this is not yet possible - #. (bug #440469). However, we can display a dialog to suggest - #. that now might be a good time to review the firewall settings. --#: ../system-config-printer.py:3289 -+#: ../system-config-printer.py:3307 - msgid "Review Firewall" - msgstr "Firewall controleren" - --#: ../system-config-printer.py:3290 -+#: ../system-config-printer.py:3308 - msgid "" - "You may need to adjust the firewall to allow network printing to this " - "computer." -@@ -1098,25 +1104,25 @@ msgstr "" - "Mogelijk dient u de firewall-instellingen te wijzigen om afdrukken via het " - "netwerk naar deze computer toe te staan." - --#: ../system-config-printer.py:3623 -+#: ../system-config-printer.py:3638 - msgid "Browsing not available (pysmbc not installed)" - msgstr "Bladeren niet mogelijk (pysmbc niet geïnstalleerd)" - - #. SMB list columns --#: ../system-config-printer.py:3629 -+#: ../system-config-printer.py:3644 - msgid "Share" - msgstr "Delen" - --#: ../system-config-printer.py:3635 -+#: ../system-config-printer.py:3650 - msgid "Comment" - msgstr "Opmerking" - - #. IPP list columns --#: ../system-config-printer.py:3654 -+#: ../system-config-printer.py:3669 - msgid "Queue" - msgstr "Wachtrij" - --#: ../system-config-printer.py:3668 -+#: ../system-config-printer.py:3683 - msgid "" - "PostScript Printer Description files (*.ppd, *.PPD, *.ppd.gz, *.PPD.gz, *." - "PPD.GZ)" -@@ -1124,68 +1130,68 @@ msgstr "" - "PostScript Printer Description bestanden (*.ppd, *.PPD, *.ppd.gz, *.PPD.gz, " - "*.PPD.GZ)" - --#: ../system-config-printer.py:3677 -+#: ../system-config-printer.py:3692 - msgid "All files (*)" - msgstr "Alle bestanden (*)" - --#: ../system-config-printer.py:3713 ../system-config-printer.py:5970 --#: ../system-config-printer.py:6008 ../applet.py:124 -+#: ../system-config-printer.py:3728 ../system-config-printer.py:5918 -+#: ../system-config-printer.py:5956 ../applet.py:124 - msgid "Search" - msgstr "Zoeken" - --#: ../system-config-printer.py:3736 ../system-config-printer.py:3760 --#: ../glade/NewPrinterWindow.glade.h:74 -+#: ../system-config-printer.py:3751 ../system-config-printer.py:3775 -+#: ../glade/NewPrinterWindow.glade.h:73 - msgid "New Printer" - msgstr "Nieuwe printer" - --#: ../system-config-printer.py:3747 -+#: ../system-config-printer.py:3762 - msgid "New Class" - msgstr "Nieuwe klasse" - --#: ../system-config-printer.py:3752 -+#: ../system-config-printer.py:3767 - msgid "Change Device URI" - msgstr "Apparaat URI veranderen" - --#: ../system-config-printer.py:3758 -+#: ../system-config-printer.py:3773 - msgid "Change Driver" - msgstr "Stuurprogramma veranderen" - --#: ../system-config-printer.py:3927 ../system-config-printer.py:3993 --#: ../system-config-printer.py:4289 ../system-config-printer.py:4487 --#: ../system-config-printer.py:5772 ../system-config-printer.py:5995 -+#: ../system-config-printer.py:3942 ../system-config-printer.py:4008 -+#: ../system-config-printer.py:4304 ../system-config-printer.py:4502 -+#: ../system-config-printer.py:5762 ../system-config-printer.py:5943 - msgid "Searching" - msgstr "Bezig met zoeken" - --#: ../system-config-printer.py:3928 -+#: ../system-config-printer.py:3943 - #, fuzzy - msgid "Searching for downloadable drivers" - msgstr "Zoeken naar stuurprogramma's" - --#: ../system-config-printer.py:3994 ../system-config-printer.py:4290 -+#: ../system-config-printer.py:4009 ../system-config-printer.py:4305 - msgid "Searching for drivers" - msgstr "Zoeken naar stuurprogramma's" - --#: ../system-config-printer.py:4488 ../system-config-printer.py:5773 -+#: ../system-config-printer.py:4503 ../system-config-printer.py:5763 - msgid "Searching for printers" - msgstr "Zoeken naar printers" - --#: ../system-config-printer.py:4497 -+#: ../system-config-printer.py:4512 - #, fuzzy - msgid "fetching device list" - msgstr "serverinstellingen ophalen" - - #. Tell the user why he needs the plugin --#: ../system-config-printer.py:4579 -+#: ../system-config-printer.py:4594 - msgid "For this printer a proprietary driver plugin from HP is available.\n" - msgstr "" - --#: ../system-config-printer.py:4582 -+#: ../system-config-printer.py:4597 - msgid "" - "The installation of the plugin is required for your printer to work.\n" - "\n" - msgstr "" - --#: ../system-config-printer.py:4585 -+#: ../system-config-printer.py:4600 - msgid "" - "Installing the plugin is optional, it completes or enhances the " - "functionality\n" -@@ -1193,113 +1199,108 @@ msgid "" - "\n" - msgstr "" - --#: ../system-config-printer.py:4589 -+#: ../system-config-printer.py:4604 - msgid "The plugin provides the following features:\n" - msgstr "" - --#: ../system-config-printer.py:4592 -+#: ../system-config-printer.py:4607 - msgid " - Printing support\n" - msgstr "" - --#: ../system-config-printer.py:4595 -+#: ../system-config-printer.py:4610 - #, fuzzy - msgid " - Faster printing\n" - msgstr "Afdrukproblemen aanpakken" - --#: ../system-config-printer.py:4598 -+#: ../system-config-printer.py:4613 - msgid " - Better printout quality\n" - msgstr "" - --#: ../system-config-printer.py:4601 -+#: ../system-config-printer.py:4616 - msgid " - Extra printing features\n" - msgstr "" - --#: ../system-config-printer.py:4604 -+#: ../system-config-printer.py:4619 - msgid " - Scanning support\n" - msgstr "" - --#: ../system-config-printer.py:4607 -+#: ../system-config-printer.py:4622 - msgid " - Faster scanning\n" - msgstr "" - --#: ../system-config-printer.py:4610 -+#: ../system-config-printer.py:4625 - msgid " - Better scanning image quality\n" - msgstr "" - --#: ../system-config-printer.py:4613 -+#: ../system-config-printer.py:4628 - msgid " - Faxing support\n" - msgstr "" - --#: ../system-config-printer.py:4616 -+#: ../system-config-printer.py:4631 - msgid " - Extra fax features\n" - msgstr "" - --#: ../system-config-printer.py:4619 -+#: ../system-config-printer.py:4634 - msgid " - Better Input/Output support\n" - msgstr "" - --#: ../system-config-printer.py:4622 -+#: ../system-config-printer.py:4637 - msgid " - Extra user interface features\n" - msgstr "" - --#: ../system-config-printer.py:4625 -+#: ../system-config-printer.py:4640 - msgid " - Other extra features\n" - msgstr "" - --#: ../system-config-printer.py:4630 --#, fuzzy -+#: ../system-config-printer.py:4645 - msgid "Install plugin" --msgstr "Geïnstalleerde opties" -+msgstr "Plugin installeren" - --#: ../system-config-printer.py:4631 -+#: ../system-config-printer.py:4646 - #, fuzzy - msgid "Do not set up printer" - msgstr "Printer kiezen" - --#: ../system-config-printer.py:4632 -+#: ../system-config-printer.py:4647 - msgid "Set up without plugin" - msgstr "" - --#: ../system-config-printer.py:4634 ../troubleshoot/PrintTestPage.py:118 -+#: ../system-config-printer.py:4649 ../troubleshoot/PrintTestPage.py:118 - msgid "Yes" - msgstr "Ja" - --#: ../system-config-printer.py:4635 ../troubleshoot/PrintTestPage.py:119 -+#: ../system-config-printer.py:4650 ../troubleshoot/PrintTestPage.py:119 - msgid "No" - msgstr "Nee" - --#: ../system-config-printer.py:4809 ../system-config-printer.py:4813 -+#: ../system-config-printer.py:4824 ../system-config-printer.py:4828 - msgid " (Current)" - msgstr " (Huidige)" - --#: ../system-config-printer.py:4845 --msgid "HP Printer (HPLIP)" --msgstr "" -- --#: ../system-config-printer.py:4886 -+#: ../system-config-printer.py:4881 - msgid "Other" - msgstr "Andere" - - #. device-info - #. PhysicalDevice obj - #. Separator? --#: ../system-config-printer.py:4902 -+#: ../system-config-printer.py:4897 - msgid "Network Printer" - msgstr "Netwerkprinter" - --#: ../system-config-printer.py:4906 -+#: ../system-config-printer.py:4901 - msgid "Find Network Printer" - msgstr "Netwerkprinter zoeken" - --#: ../system-config-printer.py:4979 ../system-config-printer.py:5376 -+#: ../system-config-printer.py:4974 ../system-config-printer.py:5371 - msgid "Scanning..." - msgstr "Bezig met scannen..." - --#: ../system-config-printer.py:5034 ../system-config-printer.py:5798 -+#: ../system-config-printer.py:5029 - msgid "No Print Shares" - msgstr "Geen gedeelde printers" - --#: ../system-config-printer.py:5035 -+#: ../system-config-printer.py:5030 - msgid "" - "There were no print shares found. Please check that the Samba service is " - "marked as trusted in your firewall configuration." -@@ -1307,32 +1308,32 @@ msgstr "" - "Er zijn geen gedeelde printers gevonden. Controleer of de Samba-dienst is " - "gemarkeerd als vertrouwd in uw firewall-configuratie." - --#: ../system-config-printer.py:5296 ../system-config-printer.py:5357 -+#: ../system-config-printer.py:5291 ../system-config-printer.py:5352 - msgid "Print Share Verified" - msgstr "Gedeelde printer geverifieerd." - --#: ../system-config-printer.py:5297 ../system-config-printer.py:5358 -+#: ../system-config-printer.py:5292 ../system-config-printer.py:5353 - msgid "This print share is accessible." - msgstr "Deze gedeelde printer is toegankelijk." - --#: ../system-config-printer.py:5302 ../system-config-printer.py:5362 -+#: ../system-config-printer.py:5297 ../system-config-printer.py:5357 - msgid "This print share is not accessible." - msgstr "Deze gedeelde printer is niet toegankelijk." - --#: ../system-config-printer.py:5305 -+#: ../system-config-printer.py:5300 - msgid "Print Share Inaccessible" - msgstr "Gedeelde printer is ontoegankelijk" - --#: ../system-config-printer.py:5361 -+#: ../system-config-printer.py:5356 - msgid "Inaccessible" - msgstr "Ontoegankelijk" - --#: ../system-config-printer.py:5419 -+#: ../system-config-printer.py:5414 - #, fuzzy, python-format - msgid "It is not possible to obtain a list of queues from '%s'." - msgstr "Het is niet mogelijk om een lijst van wachtrijen op te halen van ‘%s’." - --#: ../system-config-printer.py:5421 -+#: ../system-config-printer.py:5416 - msgid "" - "Obtaining a list of queues is a CUPS extension to IPP. Network printers do " - "not support it." -@@ -1340,72 +1341,71 @@ msgstr "" - "Het ophalen van een wachtrijlijst is een CUPS-uitbreiding op IPP. " - "Netwerkprinters ondersteunen het niet." - --#: ../system-config-printer.py:5424 -+#: ../system-config-printer.py:5419 - msgid "No queues" - msgstr "Geen wachtrijen" - --#: ../system-config-printer.py:5425 -+#: ../system-config-printer.py:5420 - msgid "There are no queues available." - msgstr "Er zijn geen afdrukwachtrijen beschikbaar." - --#: ../system-config-printer.py:5516 -+#: ../system-config-printer.py:5511 - msgid "Parallel Port" - msgstr "" - --#: ../system-config-printer.py:5518 -+#: ../system-config-printer.py:5513 - #, fuzzy - msgid "Serial Port" - msgstr "Serieel" - --#: ../system-config-printer.py:5520 --#, fuzzy -+#: ../system-config-printer.py:5515 - msgid "USB" --msgstr "SMB" -+msgstr "USB" - --#: ../system-config-printer.py:5522 ../system-config-printer.py:5525 -+#: ../system-config-printer.py:5517 ../system-config-printer.py:5520 - msgid "HP Linux Imaging and Printing (HPLIP)" - msgstr "" - --#: ../system-config-printer.py:5527 -+#: ../system-config-printer.py:5522 - #, fuzzy - msgid "Hardware Abstraction Layer (HAL)" - msgstr "Lokale printer gedetecteerd door de Hardware Abstraction Layer (HAL)." - --#: ../system-config-printer.py:5529 -+#: ../system-config-printer.py:5524 - msgid "AppSocket/HP JetDirect" --msgstr "" -+msgstr "AppSocket/HP JetDirect" - --#: ../system-config-printer.py:5538 -+#: ../system-config-printer.py:5533 - #, python-format - msgid "LPD/LPR queue '%s'" - msgstr "" - --#: ../system-config-printer.py:5540 -+#: ../system-config-printer.py:5535 - #, fuzzy - msgid "LPD/LPR queue" - msgstr "LPD" - --#: ../system-config-printer.py:5543 -+#: ../system-config-printer.py:5538 - msgid "Windows Printer via SAMBA" - msgstr "" - --#: ../system-config-printer.py:5545 ../glade/NewPrinterWindow.glade.h:66 -+#: ../system-config-printer.py:5540 ../glade/NewPrinterWindow.glade.h:65 - msgid "IPP" - msgstr "IPP" - --#: ../system-config-printer.py:5547 -+#: ../system-config-printer.py:5542 - msgid "HTTP" --msgstr "" -+msgstr "HTTP" - --#: ../system-config-printer.py:5632 -+#: ../system-config-printer.py:5624 - msgid "A printer connected to the parallel port." - msgstr "Een printer verbonden met de parallelle poort." - --#: ../system-config-printer.py:5634 -+#: ../system-config-printer.py:5626 - msgid "A printer connected to a USB port." - msgstr "Een printer verbonden met een USB-poort." - --#: ../system-config-printer.py:5636 -+#: ../system-config-printer.py:5628 - msgid "" - "HPLIP software driving a printer, or the printer function of a multi-" - "function device." -@@ -1413,7 +1413,7 @@ msgstr "" - "HPLIP-software die een printer aanstuurt, of de printerfunctie van een " - "multifunctioneel apparaat." - --#: ../system-config-printer.py:5639 -+#: ../system-config-printer.py:5631 - msgid "" - "HPLIP software driving a fax machine, or the fax function of a multi-" - "function device." -@@ -1421,47 +1421,43 @@ msgstr "" - "HPLIP-software die een fax aanstuurt, of de faxfunctie van een " - "multifunctioneel apparaat." - --#: ../system-config-printer.py:5642 -+#: ../system-config-printer.py:5634 - msgid "Local printer detected by the Hardware Abstraction Layer (HAL)." - msgstr "Lokale printer gedetecteerd door de Hardware Abstraction Layer (HAL)." - --#: ../system-config-printer.py:5799 --msgid "HPLIP cannot find the device." --msgstr "" -- --#: ../system-config-printer.py:5881 -+#: ../system-config-printer.py:5831 - msgid "No printer was found at that address." - msgstr "" - --#: ../system-config-printer.py:6020 -+#: ../system-config-printer.py:5968 - msgid "-- Select from search results --" - msgstr "-- Selecteer uit de zoekresultaten --" - --#: ../system-config-printer.py:6022 -+#: ../system-config-printer.py:5970 - msgid "-- No matches found --" - msgstr "-- Geen overeenkomsten gevonden --" - --#: ../system-config-printer.py:6203 -+#: ../system-config-printer.py:6151 - msgid " (recommended)" - msgstr " (aanbevolen)" - --#: ../system-config-printer.py:6217 -+#: ../system-config-printer.py:6165 - msgid "This PPD is generated by foomatic." - msgstr "Deze PPD is gegenereerd door foomatic." - --#: ../system-config-printer.py:6241 -+#: ../system-config-printer.py:6189 - msgid "OpenPrinting" - msgstr "OpenPrinting" - --#: ../system-config-printer.py:6252 -+#: ../system-config-printer.py:6200 - msgid "Distributable" - msgstr "Distribueerbaar" - --#: ../system-config-printer.py:6293 -+#: ../system-config-printer.py:6241 - msgid ", " - msgstr ", " - --#: ../system-config-printer.py:6298 -+#: ../system-config-printer.py:6246 - #, python-format - msgid "" - "\n" -@@ -1470,20 +1466,20 @@ msgstr "" - "\n" - "(%s)" - --#: ../system-config-printer.py:6303 -+#: ../system-config-printer.py:6251 - msgid "No support contacts known" - msgstr "" - --#: ../system-config-printer.py:6307 ../system-config-printer.py:6320 -+#: ../system-config-printer.py:6255 ../system-config-printer.py:6268 - msgid "Not specified." - msgstr "Niet gespecificeerd." - - #. Foomatic database problem of some sort. --#: ../system-config-printer.py:6360 -+#: ../system-config-printer.py:6308 - msgid "Database error" - msgstr "Database-fout" - --#: ../system-config-printer.py:6361 -+#: ../system-config-printer.py:6309 - #, python-format - msgid "The '%s' driver cannot be used with printer '%s %s'." - msgstr "Het stuurprogramma ‘%s’ kan niet worden gebruikt met printer ‘%s %s’." -@@ -1491,7 +1487,7 @@ msgstr "Het stuurprogramma ‘%s’ kan - #. This printer references some XML that is not - #. installed by default. Point the user at the - #. package they need to install. --#: ../system-config-printer.py:6371 -+#: ../system-config-printer.py:6319 - #, python-format - msgid "You will need to install the '%s' package in order to use this driver." - msgstr "" -@@ -1499,57 +1495,57 @@ msgstr "" - "gebruiken." - - #. This error came from trying to open the PPD file. --#: ../system-config-printer.py:6378 -+#: ../system-config-printer.py:6326 - msgid "PPD error" - msgstr "PPD-fout" - --#: ../system-config-printer.py:6380 -+#: ../system-config-printer.py:6328 - msgid "Failed to read PPD file. Possible reason follows:" - msgstr "Niet geslaagd om het PPD-bestand te lezen. Volgende redenen mogelijk:" - - #. Failed to get PPD downloaded from OpenPrinting XXX --#: ../system-config-printer.py:6397 -+#: ../system-config-printer.py:6345 - msgid "Downloadable drivers" - msgstr "Downloadbare stuurprogramma's" - --#: ../system-config-printer.py:6398 -+#: ../system-config-printer.py:6346 - msgid "Failed to download PPD." - msgstr "Downloaden van PPD is mislukt." - --#: ../system-config-printer.py:6405 -+#: ../system-config-printer.py:6353 - #, fuzzy - msgid "fetching PPD" - msgstr "PPD veranderen" - --#: ../system-config-printer.py:6434 ../system-config-printer.py:6472 -+#: ../system-config-printer.py:6382 ../system-config-printer.py:6420 - msgid "No Installable Options" - msgstr "Geen installeerbare opties" - --#: ../system-config-printer.py:6520 -+#: ../system-config-printer.py:6468 - #, python-format - msgid "adding printer %s" - msgstr "bezig met toevoegen van printer %s" - --#: ../system-config-printer.py:6669 -+#: ../system-config-printer.py:6617 - msgid "Would you like to print a test page?" - msgstr "" - --#: ../system-config-printer.py:6722 -+#: ../system-config-printer.py:6670 - msgid "Install driver" - msgstr "Stuurprogramma installeren" - --#: ../system-config-printer.py:6723 ../troubleshoot/CheckPPDSanity.py:131 -+#: ../system-config-printer.py:6671 ../troubleshoot/CheckPPDSanity.py:131 - #, python-format - msgid "Printer '%s' requires the %s package but it is not currently installed." - msgstr "" - "Printer ‘%s’ vereist het pakket %s, maar dit pakket is momenteel niet " - "geïnstalleerd." - --#: ../system-config-printer.py:6739 -+#: ../system-config-printer.py:6687 - msgid "Missing driver" - msgstr "Stuurprogramma ontbreekt" - --#: ../system-config-printer.py:6740 -+#: ../system-config-printer.py:6688 - #, python-format - msgid "" - "Printer '%s' requires the '%s' program but it is not currently installed. " -@@ -1684,108 +1680,103 @@ msgid "Enter device URI" - msgstr "Voer apparaat-URI in" - - #: ../glade/NewPrinterWindow.glade.h:5 --#, fuzzy --msgid "HP Printer (HPLIP) via network" --msgstr "Printernaam" -- --#: ../glade/NewPrinterWindow.glade.h:6 - msgid "IPP Printer" - msgstr "IPP-printer" - --#: ../glade/NewPrinterWindow.glade.h:7 -+#: ../glade/NewPrinterWindow.glade.h:6 - msgid "License Terms" - msgstr "Licentievoorwaarden" - --#: ../glade/NewPrinterWindow.glade.h:8 -+#: ../glade/NewPrinterWindow.glade.h:7 - msgid "Location of the LPD network printer" - msgstr "Locatie van de LPD-netwerkprinter" - --#: ../glade/NewPrinterWindow.glade.h:9 -+#: ../glade/NewPrinterWindow.glade.h:8 - msgid "Location of the network printer" - msgstr "Locatie van de netwerkprinter" - --#: ../glade/NewPrinterWindow.glade.h:10 -+#: ../glade/NewPrinterWindow.glade.h:9 - msgid "Location (optional)" - msgstr "Locatie (optioneel)" - --#: ../glade/NewPrinterWindow.glade.h:11 -+#: ../glade/NewPrinterWindow.glade.h:10 - msgid "Network Printer" - msgstr "Netwerkprinter" - --#: ../glade/NewPrinterWindow.glade.h:12 -+#: ../glade/NewPrinterWindow.glade.h:11 - msgid "Note" - msgstr "Opmerking" - --#: ../glade/NewPrinterWindow.glade.h:13 -+#: ../glade/NewPrinterWindow.glade.h:12 - #, fuzzy - msgid "Output Quality" - msgstr "Status" - --#: ../glade/NewPrinterWindow.glade.h:14 -+#: ../glade/NewPrinterWindow.glade.h:13 - msgid "Printer Name" - msgstr "Printernaam" - --#: ../glade/NewPrinterWindow.glade.h:15 -+#: ../glade/NewPrinterWindow.glade.h:14 - msgid "SMB Printer" - msgstr "SMB-printer" - --#: ../glade/NewPrinterWindow.glade.h:16 -+#: ../glade/NewPrinterWindow.glade.h:15 - msgid "Select Driver" - msgstr "Stuurprogramma selecteren" - --#: ../glade/NewPrinterWindow.glade.h:17 -+#: ../glade/NewPrinterWindow.glade.h:16 - msgid "Settings of the serial port" - msgstr "Instellingen van de seriële poort" - --#: ../glade/NewPrinterWindow.glade.h:18 -+#: ../glade/NewPrinterWindow.glade.h:17 - msgid "smb://[workgroup/]server[:port]/printer" - msgstr "smb://[werkgroep/]server[:poort]/printer" - --#: ../glade/NewPrinterWindow.glade.h:19 -+#: ../glade/NewPrinterWindow.glade.h:18 - msgid "Choose Class Members" - msgstr "Klasse-leden uitkiezen" - --#: ../glade/NewPrinterWindow.glade.h:20 -+#: ../glade/NewPrinterWindow.glade.h:19 - msgid "Choose Driver" - msgstr "Stuurprogramma kiezen" - --#: ../glade/NewPrinterWindow.glade.h:21 -+#: ../glade/NewPrinterWindow.glade.h:20 - msgid "Describe Printer" - msgstr "Printer beschrijven" - --#: ../glade/NewPrinterWindow.glade.h:22 -+#: ../glade/NewPrinterWindow.glade.h:21 - msgid "Existing Settings" - msgstr "Bestaande instellingen" - --#: ../glade/NewPrinterWindow.glade.h:23 -+#: ../glade/NewPrinterWindow.glade.h:22 - msgid "Installable Options" - msgstr "Installeerbare opties" - --#: ../glade/NewPrinterWindow.glade.h:24 -+#: ../glade/NewPrinterWindow.glade.h:23 - msgid "Select Device" - msgstr "Apparaat selecteren" - --#: ../glade/NewPrinterWindow.glade.h:25 -+#: ../glade/NewPrinterWindow.glade.h:24 - msgid "Baud Rate" - msgstr "Baud rate" - --#: ../glade/NewPrinterWindow.glade.h:26 -+#: ../glade/NewPrinterWindow.glade.h:25 - msgid "Browse..." - msgstr "Bladeren..." - --#: ../glade/NewPrinterWindow.glade.h:27 -+#: ../glade/NewPrinterWindow.glade.h:26 - msgid "Comments..." - msgstr "Opmerkingen..." - --#: ../glade/NewPrinterWindow.glade.h:28 -+#: ../glade/NewPrinterWindow.glade.h:27 - msgid "Connection" - msgstr "Verbinding" - --#: ../glade/NewPrinterWindow.glade.h:29 -+#: ../glade/NewPrinterWindow.glade.h:28 - msgid "Data Bits" - msgstr "Data bits" - --#: ../glade/NewPrinterWindow.glade.h:30 -+#: ../glade/NewPrinterWindow.glade.h:29 - msgid "" - "Default\n" - "1200\n" -@@ -1807,7 +1798,7 @@ msgstr "" - "57600\n" - "115200" - --#: ../glade/NewPrinterWindow.glade.h:39 -+#: ../glade/NewPrinterWindow.glade.h:38 - msgid "" - "Default\n" - "8\n" -@@ -1817,7 +1808,7 @@ msgstr "" - "8\n" - "7" - --#: ../glade/NewPrinterWindow.glade.h:42 -+#: ../glade/NewPrinterWindow.glade.h:41 - msgid "" - "Default\n" - "None\n" -@@ -1829,7 +1820,7 @@ msgstr "" - "Oneven\n" - "Even" - --#: ../glade/NewPrinterWindow.glade.h:46 -+#: ../glade/NewPrinterWindow.glade.h:45 - msgid "" - "Default\n" - "None\n" -@@ -1843,118 +1834,117 @@ msgstr "" - "RTS/CTS (hardware)\n" - "DTR/DSR (hardware)" - --#: ../glade/NewPrinterWindow.glade.h:51 -+#: ../glade/NewPrinterWindow.glade.h:50 - #: ../glade/PrinterPropertiesDialog.glade.h:35 - msgid "Description:" - msgstr "Omschrijving:" - --#: ../glade/NewPrinterWindow.glade.h:52 ../troubleshoot/DeviceListed.py:40 -+#: ../glade/NewPrinterWindow.glade.h:51 ../troubleshoot/DeviceListed.py:40 - msgid "Device URI" - msgstr "Apparaat-URI" - --#: ../glade/NewPrinterWindow.glade.h:53 -+#: ../glade/NewPrinterWindow.glade.h:52 - msgid "Device description." - msgstr "Apparaatomschrijving." - --#: ../glade/NewPrinterWindow.glade.h:54 -+#: ../glade/NewPrinterWindow.glade.h:53 - msgid "DirectJet" - msgstr "DirectJet" - --#: ../glade/NewPrinterWindow.glade.h:56 -+#: ../glade/NewPrinterWindow.glade.h:55 - msgid "Driver details" - msgstr "Stuurprogrammadetails" - --#: ../glade/NewPrinterWindow.glade.h:57 -+#: ../glade/NewPrinterWindow.glade.h:56 - msgid "Empty" - msgstr "Leeg" - --#: ../glade/NewPrinterWindow.glade.h:58 -+#: ../glade/NewPrinterWindow.glade.h:57 - msgid "Find _Queue..." - msgstr "Afdrukwachtrij zoeken..." - --#: ../glade/NewPrinterWindow.glade.h:59 -+#: ../glade/NewPrinterWindow.glade.h:58 - msgid "Flow Control" - msgstr "Flow control" - --#: ../glade/NewPrinterWindow.glade.h:60 -+#: ../glade/NewPrinterWindow.glade.h:59 - msgid "" - "For the printer you have selected there are drivers available for download." - msgstr "" - "Er zijn stuurprogramma's te downloaden voor de printer die u heeft " - "geselecteerd." - --#: ../glade/NewPrinterWindow.glade.h:61 -+#: ../glade/NewPrinterWindow.glade.h:60 - msgid "Free software" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:62 -+#: ../glade/NewPrinterWindow.glade.h:61 - msgid "Graphics:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:63 -+#: ../glade/NewPrinterWindow.glade.h:62 - msgid "Host:" - msgstr "Host:" - --#: ../glade/NewPrinterWindow.glade.h:64 -+#: ../glade/NewPrinterWindow.glade.h:63 - msgid "Human-readable description such as \"HP LaserJet with Duplexer\"" - msgstr "Leesbare omschrijving zoals \"HP LaserJet met duplexer\"" - --#: ../glade/NewPrinterWindow.glade.h:65 -+#: ../glade/NewPrinterWindow.glade.h:64 - msgid "Human-readable location such as \"Lab 1\"" - msgstr "Leesbare locatie zoals \"Lab 1\"" - --#: ../glade/NewPrinterWindow.glade.h:67 -+#: ../glade/NewPrinterWindow.glade.h:66 - msgid "LPD" - msgstr "LPD" - --#: ../glade/NewPrinterWindow.glade.h:68 -+#: ../glade/NewPrinterWindow.glade.h:67 - msgid "License:" - msgstr "Licentie:" - --#: ../glade/NewPrinterWindow.glade.h:69 -+#: ../glade/NewPrinterWindow.glade.h:68 - #, fuzzy - msgid "Line art:" - msgstr "Printerstatus:" - - # aanpassen hier iets beter dan bewerken. --#: ../glade/NewPrinterWindow.glade.h:70 -+#: ../glade/NewPrinterWindow.glade.h:69 - msgid "Local Driver" - msgstr "Lokaal stuurprogramma" - --#: ../glade/NewPrinterWindow.glade.h:71 -+#: ../glade/NewPrinterWindow.glade.h:70 - msgid "Make and model:" - msgstr "Fabrikant en model:" - --#: ../glade/NewPrinterWindow.glade.h:72 --#, fuzzy -+#: ../glade/NewPrinterWindow.glade.h:71 - msgid "Manufacturer" --msgstr "Fabrikant / model" -+msgstr "Fabrikant" - --#: ../glade/NewPrinterWindow.glade.h:73 -+#: ../glade/NewPrinterWindow.glade.h:72 - msgid "Network" - msgstr "Netwerk" - --#: ../glade/NewPrinterWindow.glade.h:75 -+#: ../glade/NewPrinterWindow.glade.h:74 - msgid "No, I do not accept this license" - msgstr "Nee, ik accepteer deze licentie niet" - --#: ../glade/NewPrinterWindow.glade.h:76 -+#: ../glade/NewPrinterWindow.glade.h:75 - msgid "Parity" - msgstr "Pariteit" - --#: ../glade/NewPrinterWindow.glade.h:78 -+#: ../glade/NewPrinterWindow.glade.h:77 - msgid "Patented algorithms" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:79 -+#: ../glade/NewPrinterWindow.glade.h:78 - msgid "Photo:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:80 -+#: ../glade/NewPrinterWindow.glade.h:79 - msgid "Port number:" - msgstr "Poortnummer:" - --#: ../glade/NewPrinterWindow.glade.h:81 -+#: ../glade/NewPrinterWindow.glade.h:80 - msgid "" - "PostScript Printer Description (PPD) files can often be found on the driver " - "disk that comes with the printer. For PostScript printers they are often " -@@ -1965,78 +1955,76 @@ msgstr "" - "printers maken ze meestal deel uit van het Windows® " - "stuurprogramma." - --#: ../glade/NewPrinterWindow.glade.h:82 -+#: ../glade/NewPrinterWindow.glade.h:81 - msgid "Printer model:" - msgstr "Printermodel:" - --#: ../glade/NewPrinterWindow.glade.h:83 -+#: ../glade/NewPrinterWindow.glade.h:82 - msgid "Probe" - msgstr "Detecteren" - --#: ../glade/NewPrinterWindow.glade.h:84 -+#: ../glade/NewPrinterWindow.glade.h:83 - msgid "Prompt user if authentication is required" - msgstr "Gebruiker vragen als authenticatie vereist is" - --#: ../glade/NewPrinterWindow.glade.h:85 -+#: ../glade/NewPrinterWindow.glade.h:84 - msgid "Provide PPD file" - msgstr "PPD-bestand opgeven" - --#: ../glade/NewPrinterWindow.glade.h:86 -+#: ../glade/NewPrinterWindow.glade.h:85 - msgid "Queue:" - msgstr "Wachtrij:" - --#: ../glade/NewPrinterWindow.glade.h:87 -+#: ../glade/NewPrinterWindow.glade.h:86 - msgid "SCSI" - msgstr "SCSI" - --#: ../glade/NewPrinterWindow.glade.h:88 -+#: ../glade/NewPrinterWindow.glade.h:87 - msgid "SMB" - msgstr "SMB" - --#: ../glade/NewPrinterWindow.glade.h:89 -+#: ../glade/NewPrinterWindow.glade.h:88 - msgid "Search for a printer driver to download" - msgstr "Zoeken naar een downloadbaar printerstuurprogramma" - --#: ../glade/NewPrinterWindow.glade.h:90 --#, fuzzy -+#: ../glade/NewPrinterWindow.glade.h:89 - msgid "Searching..." --msgstr "Bezig met zoeken" -+msgstr "Bezig met zoeken..." - --#: ../glade/NewPrinterWindow.glade.h:91 -+#: ../glade/NewPrinterWindow.glade.h:90 - msgid "Select A File" - msgstr "Selecteer een bestand" - --#: ../glade/NewPrinterWindow.glade.h:92 -+#: ../glade/NewPrinterWindow.glade.h:91 - msgid "Select printer from database" - msgstr "Selecteer een printer uit de database" - --#: ../glade/NewPrinterWindow.glade.h:93 -+#: ../glade/NewPrinterWindow.glade.h:92 - msgid "Serial" - msgstr "Serieel" - --#: ../glade/NewPrinterWindow.glade.h:94 -+#: ../glade/NewPrinterWindow.glade.h:93 - msgid "Set authentication details now" - msgstr "Authenticatiedetails nu instellen" - --#: ../glade/NewPrinterWindow.glade.h:95 -+#: ../glade/NewPrinterWindow.glade.h:94 - msgid "Short name for this printer such as \"laserjet\"" - msgstr "Korte naam voor deze printer, bijvoorbeeld ‘laserjet’" - --#: ../glade/NewPrinterWindow.glade.h:96 -+#: ../glade/NewPrinterWindow.glade.h:95 - msgid "Supplier:" - msgstr "Leverancier:" - --#: ../glade/NewPrinterWindow.glade.h:97 -+#: ../glade/NewPrinterWindow.glade.h:96 - #, fuzzy - msgid "Support:" - msgstr "Leverancier:" - --#: ../glade/NewPrinterWindow.glade.h:98 --#, fuzzy -+#: ../glade/NewPrinterWindow.glade.h:97 - msgid "Text:" --msgstr "Test" -+msgstr "Tekst:" - --#: ../glade/NewPrinterWindow.glade.h:99 -+#: ../glade/NewPrinterWindow.glade.h:98 - msgid "" - "The foomatic printer database contains various manufacturer provided " - "PostScript Printer Description (PPD) files and also can generate PPD files " -@@ -2050,7 +2038,7 @@ msgstr "" - "bieden de door de fabrikant geleverde PPD-bestanden betere toegang tot de " - "specifieke functies van de printer." - --#: ../glade/NewPrinterWindow.glade.h:100 -+#: ../glade/NewPrinterWindow.glade.h:99 - msgid "" - "These drivers do not come from your operating system supplier and will not " - "be covered by their commercial support. See the support and license terms " -@@ -2061,7 +2049,7 @@ msgstr "" - "ondersteuning. Zie de ondersteunings- en licentievoorwaarden van de " - "stuurprogrammaleverancier." - --#: ../glade/NewPrinterWindow.glade.h:101 -+#: ../glade/NewPrinterWindow.glade.h:100 - msgid "" - "This driver supports additional hardware that may be installed in the " - "printer." -@@ -2069,7 +2057,7 @@ msgstr "" - "Dit stuurprogramma ondersteunt extra apparatuur die in de printer " - "geïnstalleerd kan zijn." - --#: ../glade/NewPrinterWindow.glade.h:102 -+#: ../glade/NewPrinterWindow.glade.h:101 - msgid "" - "This is done by assuming that options with the same name do have the same " - "meaning. Settings of options that are not present in the new PPD will be " -@@ -2081,7 +2069,7 @@ msgstr "" - "zijn in het nieuwe PPD-bestand zullen worden ingesteld naar de " - "standaardwaarde." - --#: ../glade/NewPrinterWindow.glade.h:103 -+#: ../glade/NewPrinterWindow.glade.h:102 - msgid "" - "This way all current option settings will be lost. The default settings of " - "the new PPD will be used. " -@@ -2089,19 +2077,19 @@ msgstr "" - "Op deze manier zullen alle huidige ingestelde opties verloren gaan. De " - "standaardinstellingen van de nieuwe PPD zullen worden gebruikt. " - --#: ../glade/NewPrinterWindow.glade.h:104 -+#: ../glade/NewPrinterWindow.glade.h:103 - msgid "Try to copy the option settings over from the old PPD. " - msgstr "Probeer de ingestelde opties over te kopieren vanaf de oude PPD. " - --#: ../glade/NewPrinterWindow.glade.h:105 -+#: ../glade/NewPrinterWindow.glade.h:104 - msgid "URI:" - msgstr "URI:" - --#: ../glade/NewPrinterWindow.glade.h:107 -+#: ../glade/NewPrinterWindow.glade.h:106 - msgid "Use the new PPD (Postscript Printer Description) as is." - msgstr "Gebruik de nieuwe PPD (Postscript Printer Description) zoals het is." - --#: ../glade/NewPrinterWindow.glade.h:109 -+#: ../glade/NewPrinterWindow.glade.h:108 - msgid "" - "With this choice no driver download will be performed. In the next steps a " - "locally installed driver will be selected." -@@ -2109,24 +2097,24 @@ msgstr "" - "Met deze keuze zal er geen stuurpogramma worden gedownload. In de volgende " - "stappen zal een lokaal geïnstalleerd stuurprogramma worden geselecteerd." - --#: ../glade/NewPrinterWindow.glade.h:110 -+#: ../glade/NewPrinterWindow.glade.h:109 - msgid "Yes, I accept this license" - msgstr "Ja, ik accepteer deze licentieovereenkomst" - --#: ../glade/NewPrinterWindow.glade.h:111 -+#: ../glade/NewPrinterWindow.glade.h:110 - msgid "_Search" - msgstr "_Zoeken" - --#: ../glade/NewPrinterWindow.glade.h:112 -+#: ../glade/NewPrinterWindow.glade.h:111 - msgid "_Verify..." - msgstr "_Controleren..." - --#: ../glade/NewPrinterWindow.glade.h:113 -+#: ../glade/NewPrinterWindow.glade.h:112 - #: ../glade/PrinterPropertiesDialog.glade.h:128 - msgid "move left" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:114 -+#: ../glade/NewPrinterWindow.glade.h:113 - #: ../glade/PrinterPropertiesDialog.glade.h:129 - #, fuzzy - msgid "move right" -@@ -2672,9 +2660,8 @@ msgid "SMB Browser" - msgstr "SMB-browser" - - #: ../glade/statusicon_popupmenu.glade.h:1 --#, fuzzy - msgid "_Configure Printers" --msgstr "Printers configureren" -+msgstr "Printers _configureren" - - #: ../glade/statusicon_popupmenu.glade.h:2 - msgid "_Hide" -@@ -2787,9 +2774,9 @@ msgid "Printer error" - msgstr "Printerfout" - - #: ../statereason.py:106 --#, fuzzy, python-format -+#, python-format - msgid "There is a problem on printer '%s'." --msgstr "Er is een probleem met printer ‘%s’" -+msgstr "Er is een probleem met printer ‘%s’." - - #: ../statereason.py:117 - msgid "Printer report" -@@ -2871,7 +2858,7 @@ msgstr "" - - #. Perhaps cupstestppd is not in the path. - #: ../troubleshoot/CheckPPDSanity.py:112 --#, fuzzy, python-format -+#, python-format - msgid "There is a problem with the PPD file for printer '%s'." - msgstr "Er is een probleem met het PPD-bestand voor printer ‘%s’." - -@@ -3058,7 +3045,7 @@ msgstr "Zijn de gemarkeerde printtaken c - msgid "Remember to load paper of type '%s' into the printer first." - msgstr "" - --#: ../troubleshoot/PrintTestPage.py:399 -+#: ../troubleshoot/PrintTestPage.py:416 - msgid "Error submitting test page" - msgstr "Er is een fout opgetreden bij het opsturen van de testpagina" - -@@ -3266,6 +3253,13 @@ msgstr "Printopdrachten beheren" - msgid "Select default printer" - msgstr "Selecteer standaardprinter" - -+#~ msgid "HP Printer (HPLIP)" -+#~ msgstr "HP Printer (HPLIP)" -+ -+#, fuzzy -+#~ msgid "HP Printer (HPLIP) via network" -+#~ msgstr "Printernaam" -+ - #~ msgid "Not Found" - #~ msgstr "Niet gevonden" - -diff -up system-config-printer-1.1.5/po/nn.po.git-1.1.x system-config-printer-1.1.5/po/nn.po ---- system-config-printer-1.1.5/po/nn.po.git-1.1.x 2009-03-03 22:21:46.000000000 +0000 -+++ system-config-printer-1.1.5/po/nn.po 2009-03-10 17:43:31.000000000 +0000 -@@ -7,7 +7,7 @@ msgid "" - msgstr "" - "Project-Id-Version: printconf-gui\n" - "Report-Msgid-Bugs-To: https://bugzilla.redhat.com/bugzilla\n" --"POT-Creation-Date: 2009-03-02 23:22+0000\n" -+"POT-Creation-Date: 2009-03-10 16:51+0000\n" - "PO-Revision-Date: 2008-10-16 20:34+0200\n" - "Last-Translator: Karl Ove Hufthammer \n" - "Language-Team: Norwegian Nynorsk \n" -@@ -53,11 +53,11 @@ msgstr "" - msgid "Enter IP address" - msgstr "Skriv inn IP-adresse" - --#: ../authconn.py:35 ../glade/NewPrinterWindow.glade.h:108 -+#: ../authconn.py:35 ../glade/NewPrinterWindow.glade.h:107 - msgid "Username:" - msgstr "Brukarnamn:" - --#: ../authconn.py:36 ../glade/NewPrinterWindow.glade.h:77 -+#: ../authconn.py:36 ../glade/NewPrinterWindow.glade.h:76 - msgid "Password:" - msgstr "Passord:" - -@@ -65,7 +65,7 @@ msgstr "Passord:" - msgid "Domain:" - msgstr "Domene:" - --#: ../authconn.py:46 -+#: ../authconn.py:46 ../authconn.py:409 - msgid "Authentication" - msgstr "Godkjenning" - -@@ -73,45 +73,54 @@ msgstr "Godkjenning" - msgid "Remember password" - msgstr "" - --#: ../authconn.py:211 ../authconn.py:232 -+#: ../authconn.py:208 -+#, python-format -+msgid "Unauthorized request (%s)" -+msgstr "" -+ -+#: ../authconn.py:209 -+msgid "You are not authorized to carry out therequested action." -+msgstr "" -+ -+#: ../authconn.py:212 ../authconn.py:233 - #, fuzzy - msgid "Operation canceled" - msgstr "Brukshandling:" - --#: ../authconn.py:253 -+#: ../authconn.py:250 - #, fuzzy, python-format - msgid "CUPS server error (%s)" - msgstr "Feil ved CUPS-tenar" - --#: ../authconn.py:255 ../errordialogs.py:57 --#: ../troubleshoot/PrintTestPage.py:400 -+#: ../authconn.py:252 ../errordialogs.py:56 ../errordialogs.py:70 -+msgid "CUPS server error" -+msgstr "Feil ved CUPS-tenar" -+ -+#: ../authconn.py:261 ../errordialogs.py:57 -+#: ../troubleshoot/PrintTestPage.py:417 - #, python-format - msgid "There was an error during the CUPS operation: '%s'." - msgstr "Det oppstod ein feil ved CUPS-operasjonen: «%s»." - --#: ../authconn.py:258 -+#: ../authconn.py:264 - #, fuzzy - msgid "Retry" - msgstr "jobbane mine" - --#: ../authconn.py:379 ../authconn.py:381 ../errordialogs.py:65 ../pysmb.py:75 -+#: ../authconn.py:385 ../authconn.py:387 ../errordialogs.py:65 ../pysmb.py:75 - #: ../pysmb.py:77 - msgid "Not authorized" - msgstr "Ikkje tilgang" - --#: ../authconn.py:382 ../pysmb.py:78 -+#: ../authconn.py:388 ../pysmb.py:78 - msgid "The password may be incorrect." - msgstr "Passordet kan vera feil." - --#: ../authconn.py:400 -+#: ../authconn.py:407 - #, fuzzy, python-format - msgid "Authentication (%s)" - msgstr "Godkjenning" - --#: ../errordialogs.py:56 ../errordialogs.py:70 --msgid "CUPS server error" --msgstr "Feil ved CUPS-tenar" -- - #: ../errordialogs.py:66 - msgid "" - "The password may be incorrect, or the server may be configured to deny " -@@ -140,7 +149,7 @@ msgstr "Treng oppgradering" - msgid "Server error" - msgstr "Tenarfeil" - --#: ../errordialogs.py:82 ../system-config-printer.py:1219 -+#: ../errordialogs.py:82 ../system-config-printer.py:1223 - msgid "Not connected" - msgstr "Ikkje kopla til" - -@@ -162,7 +171,7 @@ msgstr "" - msgid "_New Group from Selection" - msgstr "" - --#: ../GroupsPane.py:98 ../system-config-printer.py:393 -+#: ../GroupsPane.py:98 ../system-config-printer.py:397 - msgid "_Rename" - msgstr "_Endra namn" - -@@ -231,7 +240,7 @@ msgid "Document" - msgstr "Dokument" - - #: ../jobviewer.py:212 ../my-default-printer.py:153 --#: ../system-config-printer.py:366 ../system-config-printer.py:1367 -+#: ../system-config-printer.py:370 ../system-config-printer.py:1371 - #: ../troubleshoot/PrintTestPage.py:84 - msgid "Printer" - msgstr "Skrivar" -@@ -268,8 +277,8 @@ msgstr "Status for dokumentutskrift (%s) - - #: ../jobviewer.py:386 ../jobviewer.py:451 ../jobviewer.py:452 - #: ../jobviewer.py:492 ../jobviewer.py:600 ../jobviewer.py:727 --#: ../jobviewer.py:1196 ../jobviewer.py:1222 ../system-config-printer.py:2546 --#: ../glade/NewPrinterWindow.glade.h:106 -+#: ../jobviewer.py:1196 ../jobviewer.py:1222 ../system-config-printer.py:2556 -+#: ../glade/NewPrinterWindow.glade.h:105 - #: ../troubleshoot/ChooseNetworkPrinter.py:101 - #: ../troubleshoot/ChooseNetworkPrinter.py:102 - #: ../troubleshoot/ChooseNetworkPrinter.py:105 -@@ -361,12 +370,12 @@ msgstr "Hald tilbake til:" - msgid "Pending" - msgstr "Ventar" - --#: ../jobviewer.py:591 ../system-config-printer.py:186 -+#: ../jobviewer.py:591 ../system-config-printer.py:190 - #: ../troubleshoot/PrintTestPage.py:43 - msgid "Processing" - msgstr "Vert handsama" - --#: ../jobviewer.py:592 ../system-config-printer.py:188 -+#: ../jobviewer.py:592 ../system-config-printer.py:192 - #: ../troubleshoot/PrintTestPage.py:44 - msgid "Stopped" - msgstr "Stoppa" -@@ -480,8 +489,8 @@ msgstr "_Bruk systemstandard" - msgid "_Set Default" - msgstr "_Bruk som standard" - --#: ../my-default-printer.py:158 ../system-config-printer.py:423 --#: ../system-config-printer.py:3660 ../troubleshoot/ChooseNetworkPrinter.py:37 -+#: ../my-default-printer.py:158 ../system-config-printer.py:427 -+#: ../system-config-printer.py:3675 ../troubleshoot/ChooseNetworkPrinter.py:37 - #: ../troubleshoot/ChoosePrinter.py:38 - msgid "Location" - msgstr "Plassering" -@@ -515,7 +524,7 @@ msgstr "Standardskrivar" - msgid "Authenticated" - msgstr "Godkjenn" - --#: ../ppdippstr.py:50 ../system-config-printer.py:6259 -+#: ../ppdippstr.py:50 ../system-config-printer.py:6207 - msgid "None" - msgstr "Ingen" - -@@ -735,126 +744,126 @@ msgstr "" - msgid "1200 dpi, photo, black + color cartridge, photo paper" - msgstr "" - --#: ../system-config-printer.py:127 -+#: ../system-config-printer.py:131 - msgid "To do this, select System->Administration->Firewall from the main menu." - msgstr "" - "Vel «System → Administrering → Brannmur» frå hovudmenyen for å gjera dette." - --#: ../system-config-printer.py:185 -+#: ../system-config-printer.py:189 - msgid "Idle" - msgstr "Passiv" - --#: ../system-config-printer.py:187 -+#: ../system-config-printer.py:191 - msgid "Busy" - msgstr "Oppteken" - --#: ../system-config-printer.py:372 ../system-config-printer.py:1373 -+#: ../system-config-printer.py:376 ../system-config-printer.py:1377 - msgid "Class" - msgstr "Klasse" - --#: ../system-config-printer.py:399 -+#: ../system-config-printer.py:403 - msgid "Set As De_fault" - msgstr "_Bruk som standard" - --#: ../system-config-printer.py:403 -+#: ../system-config-printer.py:407 - #, fuzzy - msgid "_Create class" - msgstr "_Lag klasse" - --#: ../system-config-printer.py:405 -+#: ../system-config-printer.py:409 - msgid "View Print _Queue" - msgstr "Vis utskrifts_kø" - --#: ../system-config-printer.py:407 -+#: ../system-config-printer.py:411 - msgid "_Add to Group" - msgstr "" - --#: ../system-config-printer.py:409 -+#: ../system-config-printer.py:413 - msgid "Save Results as _Group" - msgstr "" - --#: ../system-config-printer.py:411 -+#: ../system-config-printer.py:415 - msgid "Save Filter as _Search Group" - msgstr "" - --#: ../system-config-printer.py:415 -+#: ../system-config-printer.py:419 - msgid "E_nabled" - msgstr "_Verksam" - --#: ../system-config-printer.py:417 -+#: ../system-config-printer.py:421 - msgid "_Shared" - msgstr "_Delt" - --#: ../system-config-printer.py:421 ../troubleshoot/ChooseNetworkPrinter.py:35 -+#: ../system-config-printer.py:425 ../troubleshoot/ChooseNetworkPrinter.py:35 - #: ../troubleshoot/ChoosePrinter.py:36 ../troubleshoot/DeviceListed.py:36 - msgid "Name" - msgstr "Namn" - --#: ../system-config-printer.py:422 -+#: ../system-config-printer.py:426 - #, fuzzy - msgid "Description" - msgstr "Skildring:" - --#: ../system-config-printer.py:424 -+#: ../system-config-printer.py:428 - msgid "Manufacturer / Model" - msgstr "" - - #. Printer state reasons list --#: ../system-config-printer.py:499 -+#: ../system-config-printer.py:503 - msgid "Message" - msgstr "Melding" - --#: ../system-config-printer.py:534 -+#: ../system-config-printer.py:538 - msgid "Problems?" - msgstr "Problem?" - --#: ../system-config-printer.py:637 ../system-config-printer.py:639 -+#: ../system-config-printer.py:641 ../system-config-printer.py:643 - msgid "Members of this class" - msgstr "Medlemmer i klassen" - --#: ../system-config-printer.py:638 ../system-config-printer.py:640 -+#: ../system-config-printer.py:642 ../system-config-printer.py:644 - msgid "Others" - msgstr "Andre" - --#: ../system-config-printer.py:641 -+#: ../system-config-printer.py:645 - msgid "Devices" - msgstr "Einingar" - --#: ../system-config-printer.py:642 -+#: ../system-config-printer.py:646 - msgid "Connections" - msgstr "Samband" - --#: ../system-config-printer.py:643 -+#: ../system-config-printer.py:647 - msgid "Makes" - msgstr "Merke" - --#: ../system-config-printer.py:644 -+#: ../system-config-printer.py:648 - msgid "Models" - msgstr "Modellar" - --#: ../system-config-printer.py:645 -+#: ../system-config-printer.py:649 - msgid "Drivers" - msgstr "Drivarar" - --#: ../system-config-printer.py:646 ../glade/NewPrinterWindow.glade.h:55 -+#: ../system-config-printer.py:650 ../glade/NewPrinterWindow.glade.h:54 - msgid "Downloadable Drivers" - msgstr "Nedlastbare drivarar" - --#: ../system-config-printer.py:647 -+#: ../system-config-printer.py:651 - msgid "Users" - msgstr "Brukarar" - --#: ../system-config-printer.py:682 -+#: ../system-config-printer.py:686 - msgid "Automatic rotation" - msgstr "Automatisk rotering" - --#: ../system-config-printer.py:989 -+#: ../system-config-printer.py:993 - #, fuzzy, python-format - msgid "Printer Properties - '%s' on %s" - msgstr "Skrivareigenskapar – «%s» på %s" - - #. The Conflict button was pressed. --#: ../system-config-printer.py:996 -+#: ../system-config-printer.py:1000 - msgid "" - "There are conflicting options.\n" - "Changes can only be applied after\n" -@@ -864,78 +873,78 @@ msgstr "" - "Endringane vert berre tekne\n" - "i bruk etter at desse er løyste." - --#: ../system-config-printer.py:1214 -+#: ../system-config-printer.py:1218 - #, python-format - msgid "Printer configuration - %s" - msgstr "Skrivaroppsett – %s" - --#: ../system-config-printer.py:1217 -+#: ../system-config-printer.py:1221 - #, python-format - msgid "Connected to %s" - msgstr "Kopla til %s" - - #. Update our copy of the printer's settings. --#: ../system-config-printer.py:1257 ../system-config-printer.py:2042 -+#: ../system-config-printer.py:1261 ../system-config-printer.py:2046 - msgid "obtaining queue details" - msgstr "" - --#: ../system-config-printer.py:1295 -+#: ../system-config-printer.py:1299 - msgid "Remove from Group" - msgstr "" - --#: ../system-config-printer.py:1361 -+#: ../system-config-printer.py:1365 - msgid "Network printer (discovered)" - msgstr "Nettverksskrivar (oppdaga)" - --#: ../system-config-printer.py:1364 -+#: ../system-config-printer.py:1368 - msgid "Network class (discovered)" - msgstr "Nettverksklasse (oppdaga)" - --#: ../system-config-printer.py:1370 ../system-config-printer.py:5524 --#: ../system-config-printer.py:5594 ../system-config-printer.py:5596 -+#: ../system-config-printer.py:1374 ../system-config-printer.py:5519 -+#: ../system-config-printer.py:5589 ../system-config-printer.py:5591 - msgid "Fax" - msgstr "Faks" - --#: ../system-config-printer.py:1376 ../system-config-printer.py:1382 -+#: ../system-config-printer.py:1380 ../system-config-printer.py:1386 - #: ../troubleshoot/LocalOrRemote.py:30 - msgid "Network printer" - msgstr "Nettverksskrivar" - --#: ../system-config-printer.py:1379 -+#: ../system-config-printer.py:1383 - msgid "Network print share" - msgstr "Utskriftsressurs på nettverket" - --#: ../system-config-printer.py:1508 ../glade/ConnectingDialog.glade.h:2 -+#: ../system-config-printer.py:1512 ../glade/ConnectingDialog.glade.h:2 - #, no-c-format, python-format - msgid "Opening connection to %s" - msgstr "" - --#: ../system-config-printer.py:1887 -+#: ../system-config-printer.py:1891 - msgid "Installable Options" - msgstr "Installerbare val" - --#: ../system-config-printer.py:1888 -+#: ../system-config-printer.py:1892 - #: ../glade/PrinterPropertiesDialog.glade.h:109 - msgid "Printer Options" - msgstr "Skrivarval" - --#: ../system-config-printer.py:1924 -+#: ../system-config-printer.py:1928 - #, python-format - msgid "modifying class %s" - msgstr "" - --#: ../system-config-printer.py:1926 ../system-config-printer.py:3019 --#: ../system-config-printer.py:3044 ../system-config-printer.py:6547 --#: ../system-config-printer.py:6559 ../system-config-printer.py:6581 -+#: ../system-config-printer.py:1930 ../system-config-printer.py:3037 -+#: ../system-config-printer.py:3062 ../system-config-printer.py:6495 -+#: ../system-config-printer.py:6507 ../system-config-printer.py:6529 - #, fuzzy, python-format - msgid "modifying printer %s" - msgstr "Legg til skrivar" - --#: ../system-config-printer.py:1941 -+#: ../system-config-printer.py:1945 - msgid "This will delete this class!" - msgstr "Dette vil sletta klassen." - --#: ../system-config-printer.py:1942 -+#: ../system-config-printer.py:1946 - msgid "Proceed anyway?" - msgstr "Vil du likevel halda fram?" - -@@ -943,47 +952,47 @@ msgstr "Vil du likevel halda fram?" - #. but we have never fetched the server settings to see whether - #. the server is publishing shared printers. Fetch the settings - #. now so that we can update the "not published" label if necessary. --#: ../system-config-printer.py:2030 ../system-config-printer.py:3203 -+#: ../system-config-printer.py:2034 ../system-config-printer.py:3221 - #, fuzzy - msgid "fetching server settings" - msgstr "Juster tenarinnstillingar" - --#: ../system-config-printer.py:2100 -+#: ../system-config-printer.py:2104 - msgid "Set Default Printer" - msgstr "Vel standardskrivar" - --#: ../system-config-printer.py:2102 -+#: ../system-config-printer.py:2106 - msgid "Do you want to set this as the system-wide default printer?" - msgstr "Ønskjer du å bruka dette som standardskrivar for heile systemet?" - --#: ../system-config-printer.py:2104 -+#: ../system-config-printer.py:2108 - msgid "Set as the _system-wide default printer" - msgstr "_Bruk som standardskrivar for systemet" - --#: ../system-config-printer.py:2106 -+#: ../system-config-printer.py:2110 - msgid "_Clear my personal default setting" - msgstr "_Fjern val av personleg standardskrivar" - --#: ../system-config-printer.py:2107 -+#: ../system-config-printer.py:2111 - msgid "Set as my _personal default printer" - msgstr "B_ruk som standardskrivar for meg" - --#: ../system-config-printer.py:2112 -+#: ../system-config-printer.py:2116 - #, fuzzy - msgid "setting default printer" - msgstr "Vel standardskrivar" - --#: ../system-config-printer.py:2169 -+#: ../system-config-printer.py:2173 - #, fuzzy - msgid "printing test page" - msgstr "Skriv ut testside" - --#: ../system-config-printer.py:2182 ../system-config-printer.py:2217 --#: ../system-config-printer.py:5418 -+#: ../system-config-printer.py:2186 ../system-config-printer.py:2221 -+#: ../system-config-printer.py:5413 - msgid "Not possible" - msgstr "Ikkje mogleg" - --#: ../system-config-printer.py:2183 ../system-config-printer.py:2218 -+#: ../system-config-printer.py:2187 ../system-config-printer.py:2222 - msgid "" - "The remote server did not accept the print job, most likely because the " - "printer is not shared." -@@ -991,20 +1000,20 @@ msgstr "" - "Nettverksskrivaren tok ikkje imot utskriftsjobben, mest truleg fordi det " - "ikkje er ein delt skrivar." - --#: ../system-config-printer.py:2195 ../system-config-printer.py:2210 -+#: ../system-config-printer.py:2199 ../system-config-printer.py:2214 - msgid "Submitted" - msgstr "Send" - --#: ../system-config-printer.py:2196 -+#: ../system-config-printer.py:2200 - #, python-format - msgid "Test page submitted as job %d" - msgstr "Testsida er no lagd til som jobb %d" - --#: ../system-config-printer.py:2203 -+#: ../system-config-printer.py:2207 - msgid "sending maintenance command" - msgstr "" - --#: ../system-config-printer.py:2211 -+#: ../system-config-printer.py:2215 - #, python-format - msgid "Maintenance command submitted as job %d" - msgstr "Vedlikehaldsjobben er no lagd til som jobb %d" -@@ -1012,68 +1021,68 @@ msgstr "Vedlikehaldsjobben er no lagd ti - #. The underlying cupsGetPPD2() function returned NULL without - #. setting an IPP error, so it'll be something like a failed - #. connection. --#: ../system-config-printer.py:2285 ../system-config-printer.py:2381 -+#: ../system-config-printer.py:2289 ../system-config-printer.py:2385 - msgid "Error" - msgstr "Feil" - --#: ../system-config-printer.py:2286 -+#: ../system-config-printer.py:2290 - msgid "There was a problem connecting to the CUPS server." - msgstr "Det oppstod eit problem ved tilkopling til CUPS-tenaren." - --#: ../system-config-printer.py:2382 -+#: ../system-config-printer.py:2386 - #, python-format - msgid "Option '%s' has value '%s' and cannot be edited." - msgstr "Valet «%s» har verdien «%s», og kan ikkje endrast." - --#: ../system-config-printer.py:2466 -+#: ../system-config-printer.py:2476 - #, fuzzy - msgid "Marker levels are not reported for this printer." - msgstr "Inga skildring tilgjengeleg." - --#: ../system-config-printer.py:2763 -+#: ../system-config-printer.py:2773 - msgid "Cannot Rename" - msgstr "Kan ikkje endra namn" - --#: ../system-config-printer.py:2764 -+#: ../system-config-printer.py:2774 - msgid "There are queued jobs." - msgstr "Det finst jobbar i kø." - --#: ../system-config-printer.py:2822 -+#: ../system-config-printer.py:2840 - #, fuzzy - msgid "renaming printer" - msgstr "Legg til skrivar" - - #. for classes make sure all members - #. will get added --#: ../system-config-printer.py:2907 -+#: ../system-config-printer.py:2925 - #, fuzzy - msgid "copying printer" - msgstr "Legg til skrivar" - --#: ../system-config-printer.py:2971 -+#: ../system-config-printer.py:2989 - #, fuzzy, python-format - msgid "Really delete class '%s'?" - msgstr "Er du sikker på at du vil sletta klassen «%s»?" - --#: ../system-config-printer.py:2973 -+#: ../system-config-printer.py:2991 - #, fuzzy, python-format - msgid "Really delete printer '%s'?" - msgstr "Er du sikker på at du vil sletta skrivaren «%s»?" - --#: ../system-config-printer.py:2975 -+#: ../system-config-printer.py:2993 - msgid "Really delete selected destinations?" - msgstr "Er du sikker på at du vil sletta dei valde måla?" - --#: ../system-config-printer.py:2996 -+#: ../system-config-printer.py:3014 - #, fuzzy, python-format - msgid "deleting printer %s" - msgstr "Legg til skrivar" - --#: ../system-config-printer.py:3070 -+#: ../system-config-printer.py:3088 - msgid "Publish Shared Printers" - msgstr "Offentleggjer delte skrivarar" - --#: ../system-config-printer.py:3071 -+#: ../system-config-printer.py:3089 - msgid "" - "Shared printers are not available to other people unless the 'Publish shared " - "printers' option is enabled in the server settings." -@@ -1081,7 +1090,7 @@ msgstr "" - "Delte skrivarar er ikkje tilgjengelege for andre, med mindre valet " - "«Offentleggjer delte skrivarar» er slått på under tenarinnstillingane." - --#: ../system-config-printer.py:3264 -+#: ../system-config-printer.py:3282 - #, fuzzy - msgid "modifying server settings" - msgstr "Juster tenarinnstillingar" -@@ -1092,11 +1101,11 @@ msgstr "Juster tenarinnstillingar" - #. be unblocked. Unfortunately, this is not yet possible - #. (bug #440469). However, we can display a dialog to suggest - #. that now might be a good time to review the firewall settings. --#: ../system-config-printer.py:3289 -+#: ../system-config-printer.py:3307 - msgid "Review Firewall" - msgstr "Brannmurval" - --#: ../system-config-printer.py:3290 -+#: ../system-config-printer.py:3308 - msgid "" - "You may need to adjust the firewall to allow network printing to this " - "computer." -@@ -1104,93 +1113,93 @@ msgstr "" - "Det er mogleg du må endra brannmurinnstillingane på denne maskina for å " - "tillata utskrift over nettverket." - --#: ../system-config-printer.py:3623 -+#: ../system-config-printer.py:3638 - msgid "Browsing not available (pysmbc not installed)" - msgstr "" - - #. SMB list columns --#: ../system-config-printer.py:3629 -+#: ../system-config-printer.py:3644 - msgid "Share" - msgstr "Del" - --#: ../system-config-printer.py:3635 -+#: ../system-config-printer.py:3650 - msgid "Comment" - msgstr "Merknad" - - #. IPP list columns --#: ../system-config-printer.py:3654 -+#: ../system-config-printer.py:3669 - msgid "Queue" - msgstr "Kø" - --#: ../system-config-printer.py:3668 -+#: ../system-config-printer.py:3683 - msgid "" - "PostScript Printer Description files (*.ppd, *.PPD, *.ppd.gz, *.PPD.gz, *." - "PPD.GZ)" - msgstr "" - "Skildring av PostScript-skrivar (*.ppd, *.PPD, *.ppd.gz, *.PPD.gz, *.PPD.GZ)" - --#: ../system-config-printer.py:3677 -+#: ../system-config-printer.py:3692 - msgid "All files (*)" - msgstr "Alle filer (*)" - --#: ../system-config-printer.py:3713 ../system-config-printer.py:5970 --#: ../system-config-printer.py:6008 ../applet.py:124 -+#: ../system-config-printer.py:3728 ../system-config-printer.py:5918 -+#: ../system-config-printer.py:5956 ../applet.py:124 - msgid "Search" - msgstr "Søk" - --#: ../system-config-printer.py:3736 ../system-config-printer.py:3760 --#: ../glade/NewPrinterWindow.glade.h:74 -+#: ../system-config-printer.py:3751 ../system-config-printer.py:3775 -+#: ../glade/NewPrinterWindow.glade.h:73 - msgid "New Printer" - msgstr "Ny skrivar" - --#: ../system-config-printer.py:3747 -+#: ../system-config-printer.py:3762 - msgid "New Class" - msgstr "Ny klasse" - --#: ../system-config-printer.py:3752 -+#: ../system-config-printer.py:3767 - msgid "Change Device URI" - msgstr "Endra einingsadresse" - --#: ../system-config-printer.py:3758 -+#: ../system-config-printer.py:3773 - msgid "Change Driver" - msgstr "Endra drivar" - --#: ../system-config-printer.py:3927 ../system-config-printer.py:3993 --#: ../system-config-printer.py:4289 ../system-config-printer.py:4487 --#: ../system-config-printer.py:5772 ../system-config-printer.py:5995 -+#: ../system-config-printer.py:3942 ../system-config-printer.py:4008 -+#: ../system-config-printer.py:4304 ../system-config-printer.py:4502 -+#: ../system-config-printer.py:5762 ../system-config-printer.py:5943 - msgid "Searching" - msgstr "Søkjer" - --#: ../system-config-printer.py:3928 -+#: ../system-config-printer.py:3943 - #, fuzzy - msgid "Searching for downloadable drivers" - msgstr "Søkjer etter drivarar" - --#: ../system-config-printer.py:3994 ../system-config-printer.py:4290 -+#: ../system-config-printer.py:4009 ../system-config-printer.py:4305 - msgid "Searching for drivers" - msgstr "Søkjer etter drivarar" - --#: ../system-config-printer.py:4488 ../system-config-printer.py:5773 -+#: ../system-config-printer.py:4503 ../system-config-printer.py:5763 - msgid "Searching for printers" - msgstr "Søkjer etter skrivarar" - --#: ../system-config-printer.py:4497 -+#: ../system-config-printer.py:4512 - #, fuzzy - msgid "fetching device list" - msgstr "Juster tenarinnstillingar" - - #. Tell the user why he needs the plugin --#: ../system-config-printer.py:4579 -+#: ../system-config-printer.py:4594 - msgid "For this printer a proprietary driver plugin from HP is available.\n" - msgstr "" - --#: ../system-config-printer.py:4582 -+#: ../system-config-printer.py:4597 - msgid "" - "The installation of the plugin is required for your printer to work.\n" - "\n" - msgstr "" - --#: ../system-config-printer.py:4585 -+#: ../system-config-printer.py:4600 - msgid "" - "Installing the plugin is optional, it completes or enhances the " - "functionality\n" -@@ -1198,116 +1207,111 @@ msgid "" - "\n" - msgstr "" - --#: ../system-config-printer.py:4589 -+#: ../system-config-printer.py:4604 - msgid "The plugin provides the following features:\n" - msgstr "" - --#: ../system-config-printer.py:4592 -+#: ../system-config-printer.py:4607 - msgid " - Printing support\n" - msgstr "" - --#: ../system-config-printer.py:4595 -+#: ../system-config-printer.py:4610 - #, fuzzy - msgid " - Faster printing\n" - msgstr "Feilsøking av utskrift" - --#: ../system-config-printer.py:4598 -+#: ../system-config-printer.py:4613 - msgid " - Better printout quality\n" - msgstr "" - --#: ../system-config-printer.py:4601 -+#: ../system-config-printer.py:4616 - msgid " - Extra printing features\n" - msgstr "" - --#: ../system-config-printer.py:4604 -+#: ../system-config-printer.py:4619 - msgid " - Scanning support\n" - msgstr "" - --#: ../system-config-printer.py:4607 -+#: ../system-config-printer.py:4622 - msgid " - Faster scanning\n" - msgstr "" - --#: ../system-config-printer.py:4610 -+#: ../system-config-printer.py:4625 - msgid " - Better scanning image quality\n" - msgstr "" - --#: ../system-config-printer.py:4613 -+#: ../system-config-printer.py:4628 - msgid " - Faxing support\n" - msgstr "" - --#: ../system-config-printer.py:4616 -+#: ../system-config-printer.py:4631 - msgid " - Extra fax features\n" - msgstr "" - --#: ../system-config-printer.py:4619 -+#: ../system-config-printer.py:4634 - msgid " - Better Input/Output support\n" - msgstr "" - --#: ../system-config-printer.py:4622 -+#: ../system-config-printer.py:4637 - msgid " - Extra user interface features\n" - msgstr "" - --#: ../system-config-printer.py:4625 -+#: ../system-config-printer.py:4640 - msgid " - Other extra features\n" - msgstr "" - --#: ../system-config-printer.py:4630 -+#: ../system-config-printer.py:4645 - #, fuzzy - msgid "Install plugin" - msgstr "Installerte val" - --#: ../system-config-printer.py:4631 -+#: ../system-config-printer.py:4646 - #, fuzzy - msgid "Do not set up printer" - msgstr "Du har ikkje valt ein skrivar." - --#: ../system-config-printer.py:4632 -+#: ../system-config-printer.py:4647 - msgid "Set up without plugin" - msgstr "" - --#: ../system-config-printer.py:4634 ../troubleshoot/PrintTestPage.py:118 -+#: ../system-config-printer.py:4649 ../troubleshoot/PrintTestPage.py:118 - msgid "Yes" - msgstr "Ja" - --#: ../system-config-printer.py:4635 ../troubleshoot/PrintTestPage.py:119 -+#: ../system-config-printer.py:4650 ../troubleshoot/PrintTestPage.py:119 - msgid "No" - msgstr "Nei" - --#: ../system-config-printer.py:4809 ../system-config-printer.py:4813 -+#: ../system-config-printer.py:4824 ../system-config-printer.py:4828 - msgid " (Current)" - msgstr " (gjeldande)" - --#: ../system-config-printer.py:4845 --#, fuzzy --msgid "HP Printer (HPLIP)" --msgstr "Skrivar-IP" -- --#: ../system-config-printer.py:4886 -+#: ../system-config-printer.py:4881 - msgid "Other" - msgstr "Annan" - - #. device-info - #. PhysicalDevice obj - #. Separator? --#: ../system-config-printer.py:4902 -+#: ../system-config-printer.py:4897 - #, fuzzy - msgid "Network Printer" - msgstr "Nettverksskrivar" - --#: ../system-config-printer.py:4906 -+#: ../system-config-printer.py:4901 - #, fuzzy - msgid "Find Network Printer" - msgstr "Nettverksskrivar" - --#: ../system-config-printer.py:4979 ../system-config-printer.py:5376 -+#: ../system-config-printer.py:4974 ../system-config-printer.py:5371 - msgid "Scanning..." - msgstr "Søkjer …" - --#: ../system-config-printer.py:5034 ../system-config-printer.py:5798 -+#: ../system-config-printer.py:5029 - msgid "No Print Shares" - msgstr "Ingen delt utskriftsressurs " - --#: ../system-config-printer.py:5035 -+#: ../system-config-printer.py:5030 - msgid "" - "There were no print shares found. Please check that the Samba service is " - "marked as trusted in your firewall configuration." -@@ -1315,32 +1319,32 @@ msgstr "" - "Fann ingen delte utskriftsressursar. Sjå til at Samba-tenesta er merkt som " - "tiltrudd i brannmuroppsettet." - --#: ../system-config-printer.py:5296 ../system-config-printer.py:5357 -+#: ../system-config-printer.py:5291 ../system-config-printer.py:5352 - msgid "Print Share Verified" - msgstr "Stadfesta delt utskriftsressurs" - --#: ../system-config-printer.py:5297 ../system-config-printer.py:5358 -+#: ../system-config-printer.py:5292 ../system-config-printer.py:5353 - msgid "This print share is accessible." - msgstr "Denne utskriftsressuren er tilgjengeleg." - --#: ../system-config-printer.py:5302 ../system-config-printer.py:5362 -+#: ../system-config-printer.py:5297 ../system-config-printer.py:5357 - msgid "This print share is not accessible." - msgstr "Denne utskriftsressuren er ikkje tilgjengeleg." - --#: ../system-config-printer.py:5305 -+#: ../system-config-printer.py:5300 - msgid "Print Share Inaccessible" - msgstr "Ikkje tilgjengeleg utskriftsressurs" - --#: ../system-config-printer.py:5361 -+#: ../system-config-printer.py:5356 - msgid "Inaccessible" - msgstr "Utilgjengeleg" - --#: ../system-config-printer.py:5419 -+#: ../system-config-printer.py:5414 - #, fuzzy, python-format - msgid "It is not possible to obtain a list of queues from '%s'." - msgstr "Kan ikkje få tak i oversikt over køar frå «%s»." - --#: ../system-config-printer.py:5421 -+#: ../system-config-printer.py:5416 - msgid "" - "Obtaining a list of queues is a CUPS extension to IPP. Network printers do " - "not support it." -@@ -1348,73 +1352,73 @@ msgstr "" - "Henting av køoversikt er ei CUPS-utviding til IPP, og nettverksskrivarar " - "støttar det såleis ikkje." - --#: ../system-config-printer.py:5424 -+#: ../system-config-printer.py:5419 - msgid "No queues" - msgstr "Ingen køar" - --#: ../system-config-printer.py:5425 -+#: ../system-config-printer.py:5420 - msgid "There are no queues available." - msgstr "Det finst ikkje nokon tilgjengelege køar." - --#: ../system-config-printer.py:5516 -+#: ../system-config-printer.py:5511 - msgid "Parallel Port" - msgstr "" - --#: ../system-config-printer.py:5518 -+#: ../system-config-printer.py:5513 - #, fuzzy - msgid "Serial Port" - msgstr "Serieport" - --#: ../system-config-printer.py:5520 -+#: ../system-config-printer.py:5515 - #, fuzzy - msgid "USB" - msgstr "SMB" - --#: ../system-config-printer.py:5522 ../system-config-printer.py:5525 -+#: ../system-config-printer.py:5517 ../system-config-printer.py:5520 - msgid "HP Linux Imaging and Printing (HPLIP)" - msgstr "" - --#: ../system-config-printer.py:5527 -+#: ../system-config-printer.py:5522 - #, fuzzy - msgid "Hardware Abstraction Layer (HAL)" - msgstr "Lokal skrivar funnen av HAL (Hardware Abstraction Layer)." - --#: ../system-config-printer.py:5529 -+#: ../system-config-printer.py:5524 - msgid "AppSocket/HP JetDirect" - msgstr "" - --#: ../system-config-printer.py:5538 -+#: ../system-config-printer.py:5533 - #, python-format - msgid "LPD/LPR queue '%s'" - msgstr "" - --#: ../system-config-printer.py:5540 -+#: ../system-config-printer.py:5535 - #, fuzzy - msgid "LPD/LPR queue" - msgstr "LPD" - --#: ../system-config-printer.py:5543 -+#: ../system-config-printer.py:5538 - #, fuzzy - msgid "Windows Printer via SAMBA" - msgstr "Hev vindauge" - --#: ../system-config-printer.py:5545 ../glade/NewPrinterWindow.glade.h:66 -+#: ../system-config-printer.py:5540 ../glade/NewPrinterWindow.glade.h:65 - msgid "IPP" - msgstr "IPP" - --#: ../system-config-printer.py:5547 -+#: ../system-config-printer.py:5542 - msgid "HTTP" - msgstr "" - --#: ../system-config-printer.py:5632 -+#: ../system-config-printer.py:5624 - msgid "A printer connected to the parallel port." - msgstr "Ein skrivar kopla til parallellporten." - --#: ../system-config-printer.py:5634 -+#: ../system-config-printer.py:5626 - msgid "A printer connected to a USB port." - msgstr "Ein skrivar kopla til ein USB-port." - --#: ../system-config-printer.py:5636 -+#: ../system-config-printer.py:5628 - msgid "" - "HPLIP software driving a printer, or the printer function of a multi-" - "function device." -@@ -1422,7 +1426,7 @@ msgstr "" - "HPLIP-programvare for styring av skrivarar eller skrivarfunksjonen i ei " - "fleirbrukseining." - --#: ../system-config-printer.py:5639 -+#: ../system-config-printer.py:5631 - msgid "" - "HPLIP software driving a fax machine, or the fax function of a multi-" - "function device." -@@ -1430,68 +1434,64 @@ msgstr "" - "HPLIP-programvare for styring av faksmaskiner eller faksfunksjonen i ei " - "fleirbrukseining." - --#: ../system-config-printer.py:5642 -+#: ../system-config-printer.py:5634 - msgid "Local printer detected by the Hardware Abstraction Layer (HAL)." - msgstr "Lokal skrivar funnen av HAL (Hardware Abstraction Layer)." - --#: ../system-config-printer.py:5799 --msgid "HPLIP cannot find the device." --msgstr "" -- --#: ../system-config-printer.py:5881 -+#: ../system-config-printer.py:5831 - msgid "No printer was found at that address." - msgstr "" - --#: ../system-config-printer.py:6020 -+#: ../system-config-printer.py:5968 - msgid "-- Select from search results --" - msgstr "– Vel frå søkjeresultata –" - --#: ../system-config-printer.py:6022 -+#: ../system-config-printer.py:5970 - msgid "-- No matches found --" - msgstr "– Fann ikkje nokon –" - --#: ../system-config-printer.py:6203 -+#: ../system-config-printer.py:6151 - msgid " (recommended)" - msgstr " (tilrådd)" - --#: ../system-config-printer.py:6217 -+#: ../system-config-printer.py:6165 - msgid "This PPD is generated by foomatic." - msgstr "Denne PPD-fila er laga av foomatic." - --#: ../system-config-printer.py:6241 -+#: ../system-config-printer.py:6189 - msgid "OpenPrinting" - msgstr "OpenPrinting" - --#: ../system-config-printer.py:6252 -+#: ../system-config-printer.py:6200 - msgid "Distributable" - msgstr "Kan distribuerast" - --#: ../system-config-printer.py:6293 -+#: ../system-config-printer.py:6241 - #, fuzzy - msgid ", " - msgstr " " - --#: ../system-config-printer.py:6298 -+#: ../system-config-printer.py:6246 - #, python-format - msgid "" - "\n" - "(%s)" - msgstr "" - --#: ../system-config-printer.py:6303 -+#: ../system-config-printer.py:6251 - msgid "No support contacts known" - msgstr "" - --#: ../system-config-printer.py:6307 ../system-config-printer.py:6320 -+#: ../system-config-printer.py:6255 ../system-config-printer.py:6268 - msgid "Not specified." - msgstr "Ikkje vald." - - #. Foomatic database problem of some sort. --#: ../system-config-printer.py:6360 -+#: ../system-config-printer.py:6308 - msgid "Database error" - msgstr "Databasefeil" - --#: ../system-config-printer.py:6361 -+#: ../system-config-printer.py:6309 - #, python-format - msgid "The '%s' driver cannot be used with printer '%s %s'." - msgstr "Drivaren «%s» kan ikkje brukast med skrivaren «%s %s»." -@@ -1499,61 +1499,61 @@ msgstr "Drivaren «%s» kan ikkje brukas - #. This printer references some XML that is not - #. installed by default. Point the user at the - #. package they need to install. --#: ../system-config-printer.py:6371 -+#: ../system-config-printer.py:6319 - #, python-format - msgid "You will need to install the '%s' package in order to use this driver." - msgstr "Du må installera pakken «%s» for å kunna bruka denne drivaren." - - #. This error came from trying to open the PPD file. --#: ../system-config-printer.py:6378 -+#: ../system-config-printer.py:6326 - msgid "PPD error" - msgstr "PPD-feil" - --#: ../system-config-printer.py:6380 -+#: ../system-config-printer.py:6328 - msgid "Failed to read PPD file. Possible reason follows:" - msgstr "Klarte ikkje lesa PPD-feil. Moglege grunnar:" - - #. Failed to get PPD downloaded from OpenPrinting XXX --#: ../system-config-printer.py:6397 -+#: ../system-config-printer.py:6345 - msgid "Downloadable drivers" - msgstr "Nedlastbare drivarar" - --#: ../system-config-printer.py:6398 -+#: ../system-config-printer.py:6346 - msgid "Failed to download PPD." - msgstr "Klarte ikkje lasta ned PPD." - --#: ../system-config-printer.py:6405 -+#: ../system-config-printer.py:6353 - #, fuzzy - msgid "fetching PPD" - msgstr "Endra tekst" - --#: ../system-config-printer.py:6434 ../system-config-printer.py:6472 -+#: ../system-config-printer.py:6382 ../system-config-printer.py:6420 - msgid "No Installable Options" - msgstr "Ingen installerbare val" - --#: ../system-config-printer.py:6520 -+#: ../system-config-printer.py:6468 - #, fuzzy, python-format - msgid "adding printer %s" - msgstr "Legg til skrivar" - --#: ../system-config-printer.py:6669 -+#: ../system-config-printer.py:6617 - msgid "Would you like to print a test page?" - msgstr "" - --#: ../system-config-printer.py:6722 -+#: ../system-config-printer.py:6670 - msgid "Install driver" - msgstr "Installer drivar" - --#: ../system-config-printer.py:6723 ../troubleshoot/CheckPPDSanity.py:131 -+#: ../system-config-printer.py:6671 ../troubleshoot/CheckPPDSanity.py:131 - #, python-format - msgid "Printer '%s' requires the %s package but it is not currently installed." - msgstr "Skrivaren «%s» treng pakken «%s», som ikkje er installert." - --#: ../system-config-printer.py:6739 -+#: ../system-config-printer.py:6687 - msgid "Missing driver" - msgstr "Manglar drivar" - --#: ../system-config-printer.py:6740 -+#: ../system-config-printer.py:6688 - #, python-format - msgid "" - "Printer '%s' requires the '%s' program but it is not currently installed. " -@@ -1687,109 +1687,104 @@ msgid "Enter device URI" - msgstr "Skriv inn einingsadresse" - - #: ../glade/NewPrinterWindow.glade.h:5 --#, fuzzy --msgid "HP Printer (HPLIP) via network" --msgstr "Skrivarnamn" -- --#: ../glade/NewPrinterWindow.glade.h:6 - msgid "IPP Printer" - msgstr "IPP-skrivar" - --#: ../glade/NewPrinterWindow.glade.h:7 -+#: ../glade/NewPrinterWindow.glade.h:6 - msgid "License Terms" - msgstr "Lisensvilkår" - --#: ../glade/NewPrinterWindow.glade.h:8 -+#: ../glade/NewPrinterWindow.glade.h:7 - msgid "Location of the LPD network printer" - msgstr "Plassering av LPD-nettverksskrivar" - --#: ../glade/NewPrinterWindow.glade.h:9 -+#: ../glade/NewPrinterWindow.glade.h:8 - msgid "Location of the network printer" - msgstr "Plassering av nettverksskrivar" - --#: ../glade/NewPrinterWindow.glade.h:10 -+#: ../glade/NewPrinterWindow.glade.h:9 - msgid "Location (optional)" - msgstr "Plassering (valfritt)" - --#: ../glade/NewPrinterWindow.glade.h:11 -+#: ../glade/NewPrinterWindow.glade.h:10 - #, fuzzy - msgid "Network Printer" - msgstr "Nettverksskrivar" - --#: ../glade/NewPrinterWindow.glade.h:12 -+#: ../glade/NewPrinterWindow.glade.h:11 - msgid "Note" - msgstr "Merknad" - --#: ../glade/NewPrinterWindow.glade.h:13 -+#: ../glade/NewPrinterWindow.glade.h:12 - #, fuzzy - msgid "Output Quality" - msgstr "Tilstand" - --#: ../glade/NewPrinterWindow.glade.h:14 -+#: ../glade/NewPrinterWindow.glade.h:13 - msgid "Printer Name" - msgstr "Skrivarnamn" - --#: ../glade/NewPrinterWindow.glade.h:15 -+#: ../glade/NewPrinterWindow.glade.h:14 - msgid "SMB Printer" - msgstr "SMB-skrivar" - --#: ../glade/NewPrinterWindow.glade.h:16 -+#: ../glade/NewPrinterWindow.glade.h:15 - msgid "Select Driver" - msgstr "Vel drivar" - --#: ../glade/NewPrinterWindow.glade.h:17 -+#: ../glade/NewPrinterWindow.glade.h:16 - msgid "Settings of the serial port" - msgstr "Serieportinnstillingar" - --#: ../glade/NewPrinterWindow.glade.h:18 -+#: ../glade/NewPrinterWindow.glade.h:17 - msgid "smb://[workgroup/]server[:port]/printer" - msgstr "smb://[arbeidsgruppe/]tenar[:port]/skrivar" - --#: ../glade/NewPrinterWindow.glade.h:19 -+#: ../glade/NewPrinterWindow.glade.h:18 - msgid "Choose Class Members" - msgstr "Vel klassemedlem" - --#: ../glade/NewPrinterWindow.glade.h:20 -+#: ../glade/NewPrinterWindow.glade.h:19 - msgid "Choose Driver" - msgstr "Vel drivar" - --#: ../glade/NewPrinterWindow.glade.h:21 -+#: ../glade/NewPrinterWindow.glade.h:20 - msgid "Describe Printer" - msgstr "Skildra skrivaren" - --#: ../glade/NewPrinterWindow.glade.h:22 -+#: ../glade/NewPrinterWindow.glade.h:21 - msgid "Existing Settings" - msgstr "Gamle innstillingar" - --#: ../glade/NewPrinterWindow.glade.h:23 -+#: ../glade/NewPrinterWindow.glade.h:22 - msgid "Installable Options" - msgstr "Installerbare val" - --#: ../glade/NewPrinterWindow.glade.h:24 -+#: ../glade/NewPrinterWindow.glade.h:23 - msgid "Select Device" - msgstr "Vel eining" - --#: ../glade/NewPrinterWindow.glade.h:25 -+#: ../glade/NewPrinterWindow.glade.h:24 - msgid "Baud Rate" - msgstr "Baudverdi" - --#: ../glade/NewPrinterWindow.glade.h:26 -+#: ../glade/NewPrinterWindow.glade.h:25 - msgid "Browse..." - msgstr "Bla gjennom …" - --#: ../glade/NewPrinterWindow.glade.h:27 -+#: ../glade/NewPrinterWindow.glade.h:26 - msgid "Comments..." - msgstr "Merknader …" - --#: ../glade/NewPrinterWindow.glade.h:28 -+#: ../glade/NewPrinterWindow.glade.h:27 - msgid "Connection" - msgstr "Samband" - --#: ../glade/NewPrinterWindow.glade.h:29 -+#: ../glade/NewPrinterWindow.glade.h:28 - msgid "Data Bits" - msgstr "Databit" - --#: ../glade/NewPrinterWindow.glade.h:30 -+#: ../glade/NewPrinterWindow.glade.h:29 - msgid "" - "Default\n" - "1200\n" -@@ -1811,7 +1806,7 @@ msgstr "" - "57 600\n" - "115 200" - --#: ../glade/NewPrinterWindow.glade.h:39 -+#: ../glade/NewPrinterWindow.glade.h:38 - msgid "" - "Default\n" - "8\n" -@@ -1821,7 +1816,7 @@ msgstr "" - "8\n" - "7" - --#: ../glade/NewPrinterWindow.glade.h:42 -+#: ../glade/NewPrinterWindow.glade.h:41 - msgid "" - "Default\n" - "None\n" -@@ -1833,7 +1828,7 @@ msgstr "" - "Oddetal\n" - "Partal" - --#: ../glade/NewPrinterWindow.glade.h:46 -+#: ../glade/NewPrinterWindow.glade.h:45 - msgid "" - "Default\n" - "None\n" -@@ -1847,118 +1842,118 @@ msgstr "" - "RTS/CTS (maskinvare)\n" - "DTR/DSR (maskinvare)" - --#: ../glade/NewPrinterWindow.glade.h:51 -+#: ../glade/NewPrinterWindow.glade.h:50 - #: ../glade/PrinterPropertiesDialog.glade.h:35 - msgid "Description:" - msgstr "Skildring:" - --#: ../glade/NewPrinterWindow.glade.h:52 ../troubleshoot/DeviceListed.py:40 -+#: ../glade/NewPrinterWindow.glade.h:51 ../troubleshoot/DeviceListed.py:40 - msgid "Device URI" - msgstr "Einingsadresse" - --#: ../glade/NewPrinterWindow.glade.h:53 -+#: ../glade/NewPrinterWindow.glade.h:52 - msgid "Device description." - msgstr "Skildring av eining." - --#: ../glade/NewPrinterWindow.glade.h:54 -+#: ../glade/NewPrinterWindow.glade.h:53 - msgid "DirectJet" - msgstr "DirectJet" - --#: ../glade/NewPrinterWindow.glade.h:56 -+#: ../glade/NewPrinterWindow.glade.h:55 - msgid "Driver details" - msgstr "Drivardetaljar" - --#: ../glade/NewPrinterWindow.glade.h:57 -+#: ../glade/NewPrinterWindow.glade.h:56 - msgid "Empty" - msgstr "Tom" - --#: ../glade/NewPrinterWindow.glade.h:58 -+#: ../glade/NewPrinterWindow.glade.h:57 - msgid "Find _Queue..." - msgstr "Finn _kø …" - --#: ../glade/NewPrinterWindow.glade.h:59 -+#: ../glade/NewPrinterWindow.glade.h:58 - msgid "Flow Control" - msgstr "Flytkontroll" - --#: ../glade/NewPrinterWindow.glade.h:60 -+#: ../glade/NewPrinterWindow.glade.h:59 - msgid "" - "For the printer you have selected there are drivers available for download." - msgstr "Det finst nedlastbare drivarar for denne skrivaren." - --#: ../glade/NewPrinterWindow.glade.h:61 -+#: ../glade/NewPrinterWindow.glade.h:60 - msgid "Free software" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:62 -+#: ../glade/NewPrinterWindow.glade.h:61 - msgid "Graphics:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:63 -+#: ../glade/NewPrinterWindow.glade.h:62 - msgid "Host:" - msgstr "Vert:" - --#: ../glade/NewPrinterWindow.glade.h:64 -+#: ../glade/NewPrinterWindow.glade.h:63 - msgid "Human-readable description such as \"HP LaserJet with Duplexer\"" - msgstr "" - "Tekstleg skildring av skrivaren, som for eksempel «HP LaserJet med " - "tosidesutskrift»." - --#: ../glade/NewPrinterWindow.glade.h:65 -+#: ../glade/NewPrinterWindow.glade.h:64 - msgid "Human-readable location such as \"Lab 1\"" - msgstr "Skildring av kor skrivaren står, for eksempel «Datarom 1»." - --#: ../glade/NewPrinterWindow.glade.h:67 -+#: ../glade/NewPrinterWindow.glade.h:66 - msgid "LPD" - msgstr "LPD" - --#: ../glade/NewPrinterWindow.glade.h:68 -+#: ../glade/NewPrinterWindow.glade.h:67 - msgid "License:" - msgstr "Lisens:" - --#: ../glade/NewPrinterWindow.glade.h:69 -+#: ../glade/NewPrinterWindow.glade.h:68 - #, fuzzy - msgid "Line art:" - msgstr "Skrivartilstand:" - --#: ../glade/NewPrinterWindow.glade.h:70 -+#: ../glade/NewPrinterWindow.glade.h:69 - msgid "Local Driver" - msgstr "Lokal drivar" - --#: ../glade/NewPrinterWindow.glade.h:71 -+#: ../glade/NewPrinterWindow.glade.h:70 - msgid "Make and model:" - msgstr "Merke og modell:" - --#: ../glade/NewPrinterWindow.glade.h:72 -+#: ../glade/NewPrinterWindow.glade.h:71 - msgid "Manufacturer" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:73 -+#: ../glade/NewPrinterWindow.glade.h:72 - #, fuzzy - msgid "Network" - msgstr "Nettverksskrivar" - --#: ../glade/NewPrinterWindow.glade.h:75 -+#: ../glade/NewPrinterWindow.glade.h:74 - msgid "No, I do not accept this license" - msgstr "Nei, eg godtek ikkje lisensvilkåra" - --#: ../glade/NewPrinterWindow.glade.h:76 -+#: ../glade/NewPrinterWindow.glade.h:75 - msgid "Parity" - msgstr "Paritet" - --#: ../glade/NewPrinterWindow.glade.h:78 -+#: ../glade/NewPrinterWindow.glade.h:77 - msgid "Patented algorithms" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:79 -+#: ../glade/NewPrinterWindow.glade.h:78 - #, fuzzy - msgid "Photo:" - msgstr "P&ort:" - --#: ../glade/NewPrinterWindow.glade.h:80 -+#: ../glade/NewPrinterWindow.glade.h:79 - msgid "Port number:" - msgstr "Portnummer:" - --#: ../glade/NewPrinterWindow.glade.h:81 -+#: ../glade/NewPrinterWindow.glade.h:80 - msgid "" - "PostScript Printer Description (PPD) files can often be found on the driver " - "disk that comes with the printer. For PostScript printers they are often " -@@ -1968,78 +1963,78 @@ msgstr "" - "som følgde med skrivaren. For PostScript-skrivarar er dei ofte ein del av " - "den tilhøyrande Windows®-drivaren." - --#: ../glade/NewPrinterWindow.glade.h:82 -+#: ../glade/NewPrinterWindow.glade.h:81 - msgid "Printer model:" - msgstr "Skrivarmodell:" - --#: ../glade/NewPrinterWindow.glade.h:83 -+#: ../glade/NewPrinterWindow.glade.h:82 - msgid "Probe" - msgstr "Søk" - --#: ../glade/NewPrinterWindow.glade.h:84 -+#: ../glade/NewPrinterWindow.glade.h:83 - msgid "Prompt user if authentication is required" - msgstr "Spør brukaren dersom brukargodkjenning er nødvendig" - --#: ../glade/NewPrinterWindow.glade.h:85 -+#: ../glade/NewPrinterWindow.glade.h:84 - msgid "Provide PPD file" - msgstr "Vel PPD-fil" - --#: ../glade/NewPrinterWindow.glade.h:86 -+#: ../glade/NewPrinterWindow.glade.h:85 - msgid "Queue:" - msgstr "Kø:" - --#: ../glade/NewPrinterWindow.glade.h:87 -+#: ../glade/NewPrinterWindow.glade.h:86 - msgid "SCSI" - msgstr "SCSI" - --#: ../glade/NewPrinterWindow.glade.h:88 -+#: ../glade/NewPrinterWindow.glade.h:87 - msgid "SMB" - msgstr "SMB" - --#: ../glade/NewPrinterWindow.glade.h:89 -+#: ../glade/NewPrinterWindow.glade.h:88 - msgid "Search for a printer driver to download" - msgstr "Søk etter skrivardrivar å lasta ned" - --#: ../glade/NewPrinterWindow.glade.h:90 -+#: ../glade/NewPrinterWindow.glade.h:89 - #, fuzzy - msgid "Searching..." - msgstr "Søkjer" - --#: ../glade/NewPrinterWindow.glade.h:91 -+#: ../glade/NewPrinterWindow.glade.h:90 - msgid "Select A File" - msgstr "Vel ei fil" - --#: ../glade/NewPrinterWindow.glade.h:92 -+#: ../glade/NewPrinterWindow.glade.h:91 - msgid "Select printer from database" - msgstr "Vel skrivar frå database" - --#: ../glade/NewPrinterWindow.glade.h:93 -+#: ../glade/NewPrinterWindow.glade.h:92 - msgid "Serial" - msgstr "Serieport" - --#: ../glade/NewPrinterWindow.glade.h:94 -+#: ../glade/NewPrinterWindow.glade.h:93 - msgid "Set authentication details now" - msgstr "Vel godkjenningsdata" - --#: ../glade/NewPrinterWindow.glade.h:95 -+#: ../glade/NewPrinterWindow.glade.h:94 - msgid "Short name for this printer such as \"laserjet\"" - msgstr "Kort namn på skrivaren, som for eksempel «laserjet»." - --#: ../glade/NewPrinterWindow.glade.h:96 -+#: ../glade/NewPrinterWindow.glade.h:95 - msgid "Supplier:" - msgstr "Leverandør:" - --#: ../glade/NewPrinterWindow.glade.h:97 -+#: ../glade/NewPrinterWindow.glade.h:96 - #, fuzzy - msgid "Support:" - msgstr "Leverandør:" - --#: ../glade/NewPrinterWindow.glade.h:98 -+#: ../glade/NewPrinterWindow.glade.h:97 - #, fuzzy - msgid "Text:" - msgstr "Test" - --#: ../glade/NewPrinterWindow.glade.h:99 -+#: ../glade/NewPrinterWindow.glade.h:98 - msgid "" - "The foomatic printer database contains various manufacturer provided " - "PostScript Printer Description (PPD) files and also can generate PPD files " -@@ -2053,7 +2048,7 @@ msgstr "" - "filer som kjem direkte frå produsenten gje betre tilgang til alt skrivaren " - "støttar." - --#: ../glade/NewPrinterWindow.glade.h:100 -+#: ../glade/NewPrinterWindow.glade.h:99 - msgid "" - "These drivers do not come from your operating system supplier and will not " - "be covered by their commercial support. See the support and license terms " -@@ -2063,7 +2058,7 @@ msgstr "" - "av brukarstøtteavtala der. Sjå bruks- og brukarstøttevilkåra til " - "leverandøren av drivarane." - --#: ../glade/NewPrinterWindow.glade.h:101 -+#: ../glade/NewPrinterWindow.glade.h:100 - msgid "" - "This driver supports additional hardware that may be installed in the " - "printer." -@@ -2071,7 +2066,7 @@ msgstr "" - "Denne drivaren støttar eventuell tilleggsmaskinvare som kan vera installert " - "i skrivaren." - --#: ../glade/NewPrinterWindow.glade.h:102 -+#: ../glade/NewPrinterWindow.glade.h:101 - msgid "" - "This is done by assuming that options with the same name do have the same " - "meaning. Settings of options that are not present in the new PPD will be " -@@ -2081,7 +2076,7 @@ msgstr "" - "til val som ikkje finst i den nye PPD-fila går tapt, og val som berre finst " - "i denne fila vert sette til standardverdiane." - --#: ../glade/NewPrinterWindow.glade.h:103 -+#: ../glade/NewPrinterWindow.glade.h:102 - msgid "" - "This way all current option settings will be lost. The default settings of " - "the new PPD will be used. " -@@ -2089,19 +2084,19 @@ msgstr "" - "Verdiane du har sett for alle vala går tapt, og standardverdiane til den nye " - "PPD-fila vert i brukte i staden for." - --#: ../glade/NewPrinterWindow.glade.h:104 -+#: ../glade/NewPrinterWindow.glade.h:103 - msgid "Try to copy the option settings over from the old PPD. " - msgstr "Prøv å kopiera over vala frå den gamle PPD-fila." - --#: ../glade/NewPrinterWindow.glade.h:105 -+#: ../glade/NewPrinterWindow.glade.h:104 - msgid "URI:" - msgstr "Adresse:" - --#: ../glade/NewPrinterWindow.glade.h:107 -+#: ../glade/NewPrinterWindow.glade.h:106 - msgid "Use the new PPD (Postscript Printer Description) as is." - msgstr "Bruk den nye PPD-fila direkte." - --#: ../glade/NewPrinterWindow.glade.h:109 -+#: ../glade/NewPrinterWindow.glade.h:108 - msgid "" - "With this choice no driver download will be performed. In the next steps a " - "locally installed driver will be selected." -@@ -2109,24 +2104,24 @@ msgstr "" - "Med dette valet vert det ikkje lasta ned nokon drivar, og i dei neste stega " - "vert det valt ein lokalt installert drivar i staden for." - --#: ../glade/NewPrinterWindow.glade.h:110 -+#: ../glade/NewPrinterWindow.glade.h:109 - msgid "Yes, I accept this license" - msgstr "Ja, eg godtek lisensvilkåra" - --#: ../glade/NewPrinterWindow.glade.h:111 -+#: ../glade/NewPrinterWindow.glade.h:110 - msgid "_Search" - msgstr "_Søk" - --#: ../glade/NewPrinterWindow.glade.h:112 -+#: ../glade/NewPrinterWindow.glade.h:111 - msgid "_Verify..." - msgstr "_Stadfest …" - --#: ../glade/NewPrinterWindow.glade.h:113 -+#: ../glade/NewPrinterWindow.glade.h:112 - #: ../glade/PrinterPropertiesDialog.glade.h:128 - msgid "move left" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:114 -+#: ../glade/NewPrinterWindow.glade.h:113 - #: ../glade/PrinterPropertiesDialog.glade.h:129 - msgid "move right" - msgstr "" -@@ -3059,7 +3054,7 @@ msgstr "Vart dei merkte jobbane skrivne - msgid "Remember to load paper of type '%s' into the printer first." - msgstr "" - --#: ../troubleshoot/PrintTestPage.py:399 -+#: ../troubleshoot/PrintTestPage.py:416 - msgid "Error submitting test page" - msgstr "Feil ved innsending av testside" - -@@ -3263,6 +3258,14 @@ msgid "Select default printer" - msgstr "Vel standardskrivar" - - #, fuzzy -+#~ msgid "HP Printer (HPLIP)" -+#~ msgstr "Skrivar-IP" -+ -+#, fuzzy -+#~ msgid "HP Printer (HPLIP) via network" -+#~ msgstr "Skrivarnamn" -+ -+#, fuzzy - #~ msgid "Not Found" - #~ msgstr "Fann ikkje" - -diff -up system-config-printer-1.1.5/po/or.po.git-1.1.x system-config-printer-1.1.5/po/or.po ---- system-config-printer-1.1.5/po/or.po.git-1.1.x 2009-03-03 22:21:46.000000000 +0000 -+++ system-config-printer-1.1.5/po/or.po 2009-03-10 17:43:31.000000000 +0000 -@@ -10,7 +10,7 @@ msgid "" - msgstr "" - "Project-Id-Version: system-config-printer.trunk.or\n" - "Report-Msgid-Bugs-To: https://bugzilla.redhat.com/bugzilla\n" --"POT-Creation-Date: 2009-03-02 23:22+0000\n" -+"POT-Creation-Date: 2009-03-10 16:51+0000\n" - "PO-Revision-Date: 2008-04-09 12:49+0530\n" - "Last-Translator: saroj kumar padhy \n" - "Language-Team: Oriya \n" -@@ -84,11 +84,11 @@ msgstr "" - msgid "Enter IP address" - msgstr "ସେବକ IP ଠିକଣା:" - --#: ../authconn.py:35 ../glade/NewPrinterWindow.glade.h:108 -+#: ../authconn.py:35 ../glade/NewPrinterWindow.glade.h:107 - msgid "Username:" - msgstr "ଚାଳକ ନାମ:" - --#: ../authconn.py:36 ../glade/NewPrinterWindow.glade.h:77 -+#: ../authconn.py:36 ../glade/NewPrinterWindow.glade.h:76 - msgid "Password:" - msgstr "ପ୍ରବେଶ ସଙ୍କେତ:" - -@@ -97,7 +97,7 @@ msgstr "ପ୍ରବେଶ ସଙ୍କ - msgid "Domain:" - msgstr "ଉପର ମାର୍ଜିନ:" - --#: ../authconn.py:46 -+#: ../authconn.py:46 ../authconn.py:409 - msgid "Authentication" - msgstr "ବୈଧିକରଣ" - -@@ -105,45 +105,54 @@ msgstr "ବୈଧିକରଣ" - msgid "Remember password" - msgstr "" - --#: ../authconn.py:211 ../authconn.py:232 -+#: ../authconn.py:208 -+#, python-format -+msgid "Unauthorized request (%s)" -+msgstr "" -+ -+#: ../authconn.py:209 -+msgid "You are not authorized to carry out therequested action." -+msgstr "" -+ -+#: ../authconn.py:212 ../authconn.py:233 - #, fuzzy - msgid "Operation canceled" - msgstr "ପ୍ରକ୍ରିୟା ନୀତି:" - --#: ../authconn.py:253 -+#: ../authconn.py:250 - #, fuzzy, python-format - msgid "CUPS server error (%s)" - msgstr "CUPS ସେବକ ତୃଟି" - --#: ../authconn.py:255 ../errordialogs.py:57 --#: ../troubleshoot/PrintTestPage.py:400 -+#: ../authconn.py:252 ../errordialogs.py:56 ../errordialogs.py:70 -+msgid "CUPS server error" -+msgstr "CUPS ସେବକ ତୃଟି" -+ -+#: ../authconn.py:261 ../errordialogs.py:57 -+#: ../troubleshoot/PrintTestPage.py:417 - #, python-format - msgid "There was an error during the CUPS operation: '%s'." - msgstr "CUPS ପ୍ରକ୍ରିୟା ସମୟରେ ଗୋଟିଏ ତୃଟି ପରିଲିଖିତ ହେଲା: '%s'।" - --#: ../authconn.py:258 -+#: ../authconn.py:264 - #, fuzzy - msgid "Retry" - msgstr "ପୁନଃସ୍ଥାପନ କରନ୍ତୁ" - --#: ../authconn.py:379 ../authconn.py:381 ../errordialogs.py:65 ../pysmb.py:75 -+#: ../authconn.py:385 ../authconn.py:387 ../errordialogs.py:65 ../pysmb.py:75 - #: ../pysmb.py:77 - msgid "Not authorized" - msgstr "କ୍ଷମତା ସମ୍ପନ୍ନ ନୁହେଁ" - --#: ../authconn.py:382 ../pysmb.py:78 -+#: ../authconn.py:388 ../pysmb.py:78 - msgid "The password may be incorrect." - msgstr "ପ୍ରବେଶ ସଙ୍କେତ ଟି ଭୂଲ ହୋଇପାରେ।" - --#: ../authconn.py:400 -+#: ../authconn.py:407 - #, fuzzy, python-format - msgid "Authentication (%s)" - msgstr "ବୈଧିକରଣ" - --#: ../errordialogs.py:56 ../errordialogs.py:70 --msgid "CUPS server error" --msgstr "CUPS ସେବକ ତୃଟି" -- - #: ../errordialogs.py:66 - msgid "" - "The password may be incorrect, or the server may be configured to deny " -@@ -172,7 +181,7 @@ msgstr "ଉନ୍ନୟନ ଆବଶ୍ - msgid "Server error" - msgstr "ସେବକ ତୃଟି" - --#: ../errordialogs.py:82 ../system-config-printer.py:1219 -+#: ../errordialogs.py:82 ../system-config-printer.py:1223 - msgid "Not connected" - msgstr "ସଂଯୋଜିତ ହୋଇ ନାହିଁ" - -@@ -194,7 +203,7 @@ msgstr "" - msgid "_New Group from Selection" - msgstr "" - --#: ../GroupsPane.py:98 ../system-config-printer.py:393 -+#: ../GroupsPane.py:98 ../system-config-printer.py:397 - #, fuzzy - msgid "_Rename" - msgstr "ପ୍ରକାଶନ (_R)" -@@ -263,7 +272,7 @@ msgid "Document" - msgstr "ଦଲିଲ" - - #: ../jobviewer.py:212 ../my-default-printer.py:153 --#: ../system-config-printer.py:366 ../system-config-printer.py:1367 -+#: ../system-config-printer.py:370 ../system-config-printer.py:1371 - #: ../troubleshoot/PrintTestPage.py:84 - msgid "Printer" - msgstr "ମୁଦ୍ରଣୀ" -@@ -301,8 +310,8 @@ msgstr "ଦଲିଲ ମୁଦ୍ରଣ - - #: ../jobviewer.py:386 ../jobviewer.py:451 ../jobviewer.py:452 - #: ../jobviewer.py:492 ../jobviewer.py:600 ../jobviewer.py:727 --#: ../jobviewer.py:1196 ../jobviewer.py:1222 ../system-config-printer.py:2546 --#: ../glade/NewPrinterWindow.glade.h:106 -+#: ../jobviewer.py:1196 ../jobviewer.py:1222 ../system-config-printer.py:2556 -+#: ../glade/NewPrinterWindow.glade.h:105 - #: ../troubleshoot/ChooseNetworkPrinter.py:101 - #: ../troubleshoot/ChooseNetworkPrinter.py:102 - #: ../troubleshoot/ChooseNetworkPrinter.py:105 -@@ -395,12 +404,12 @@ msgstr "ଏତିକି ସମୟ ସ୍ - msgid "Pending" - msgstr "ଅନିଷ୍ପନ୍ନ" - --#: ../jobviewer.py:591 ../system-config-printer.py:186 -+#: ../jobviewer.py:591 ../system-config-printer.py:190 - #: ../troubleshoot/PrintTestPage.py:43 - msgid "Processing" - msgstr "ପ୍ରକ୍ରିୟା କରୁଅଛି" - --#: ../jobviewer.py:592 ../system-config-printer.py:188 -+#: ../jobviewer.py:592 ../system-config-printer.py:192 - #: ../troubleshoot/PrintTestPage.py:44 - msgid "Stopped" - msgstr "ଅଟକିଛି" -@@ -514,8 +523,8 @@ msgstr "ତନ୍ତ୍ରର ପୂର - msgid "_Set Default" - msgstr "ପୂର୍ବନିର୍ଦ୍ଧାରିତ ବିନ୍ଯାସକୁ ସେଟ କରନ୍ତୁ (_S)" - --#: ../my-default-printer.py:158 ../system-config-printer.py:423 --#: ../system-config-printer.py:3660 ../troubleshoot/ChooseNetworkPrinter.py:37 -+#: ../my-default-printer.py:158 ../system-config-printer.py:427 -+#: ../system-config-printer.py:3675 ../troubleshoot/ChooseNetworkPrinter.py:37 - #: ../troubleshoot/ChoosePrinter.py:38 - msgid "Location" - msgstr "ଅବସ୍ଥାନ" -@@ -548,7 +557,7 @@ msgstr "ପୂର୍ବନିର୍ଦ - msgid "Authenticated" - msgstr "ବୈଧିକରଣ" - --#: ../ppdippstr.py:50 ../system-config-printer.py:6259 -+#: ../ppdippstr.py:50 ../system-config-printer.py:6207 - msgid "None" - msgstr "କିଛି ନୁହେଁ" - -@@ -768,132 +777,132 @@ msgstr "" - msgid "1200 dpi, photo, black + color cartridge, photo paper" - msgstr "" - --#: ../system-config-printer.py:127 -+#: ../system-config-printer.py:131 - #, fuzzy - msgid "To do this, select System->Administration->Firewall from the main menu." - msgstr "ଏହି ଉପକରଣ ଆରମ୍ଭ କରିବା ପାଈଂ, ମୁଖ୍ଯ ମେନୁରୁ ତନ୍ତ୍ର->ପ୍ରଶାସନ->ମୁଦ୍ରଣ ଚୟନ କରନ୍ତୁ." - --#: ../system-config-printer.py:185 -+#: ../system-config-printer.py:189 - msgid "Idle" - msgstr "ନିଷ୍କ୍ରିୟ" - --#: ../system-config-printer.py:187 -+#: ../system-config-printer.py:191 - msgid "Busy" - msgstr "ବ୍ଯସ୍ତ" - --#: ../system-config-printer.py:372 ../system-config-printer.py:1373 -+#: ../system-config-printer.py:376 ../system-config-printer.py:1377 - #, fuzzy - msgid "Class" - msgstr "ନୂତନ ଶ୍ରେଣୀ" - --#: ../system-config-printer.py:399 -+#: ../system-config-printer.py:403 - #, fuzzy - msgid "Set As De_fault" - msgstr "ପୂର୍ବନିର୍ଦ୍ଧାରିତ ଭାବେ ସେଟ୍ କରନ୍ତୁS)" - --#: ../system-config-printer.py:403 -+#: ../system-config-printer.py:407 - #, fuzzy - msgid "_Create class" - msgstr "ଦୂର ଶ୍ରେଣୀ" - --#: ../system-config-printer.py:405 -+#: ../system-config-printer.py:409 - msgid "View Print _Queue" - msgstr " ମୁଦ୍ରଣ କ୍ର ଦେଖାଅ(_Q)ମ" - --#: ../system-config-printer.py:407 -+#: ../system-config-printer.py:411 - msgid "_Add to Group" - msgstr "" - --#: ../system-config-printer.py:409 -+#: ../system-config-printer.py:413 - msgid "Save Results as _Group" - msgstr "" - --#: ../system-config-printer.py:411 -+#: ../system-config-printer.py:415 - msgid "Save Filter as _Search Group" - msgstr "" - --#: ../system-config-printer.py:415 -+#: ../system-config-printer.py:419 - #, fuzzy - msgid "E_nabled" - msgstr "ସକ୍ରିୟ କରନ୍ତୁି(_n)" - --#: ../system-config-printer.py:417 -+#: ../system-config-printer.py:421 - #, fuzzy - msgid "_Shared" - msgstr "ସହଭାଗ କରାଯାଇଛି" - --#: ../system-config-printer.py:421 ../troubleshoot/ChooseNetworkPrinter.py:35 -+#: ../system-config-printer.py:425 ../troubleshoot/ChooseNetworkPrinter.py:35 - #: ../troubleshoot/ChoosePrinter.py:36 ../troubleshoot/DeviceListed.py:36 - msgid "Name" - msgstr "ନାମ" - --#: ../system-config-printer.py:422 -+#: ../system-config-printer.py:426 - #, fuzzy - msgid "Description" - msgstr "ବର୍ଣ୍ଣନା:" - --#: ../system-config-printer.py:424 -+#: ../system-config-printer.py:428 - msgid "Manufacturer / Model" - msgstr "" - - #. Printer state reasons list --#: ../system-config-printer.py:499 -+#: ../system-config-printer.py:503 - msgid "Message" - msgstr "ସନ୍ଦେଶ" - --#: ../system-config-printer.py:534 -+#: ../system-config-printer.py:538 - #, fuzzy - msgid "Problems?" - msgstr "ଖୋଜନ୍ତୁ" - --#: ../system-config-printer.py:637 ../system-config-printer.py:639 -+#: ../system-config-printer.py:641 ../system-config-printer.py:643 - msgid "Members of this class" - msgstr "ଏହି ଶ୍ରେଣୀର ସଦସ୍ଯ ମାନେ" - --#: ../system-config-printer.py:638 ../system-config-printer.py:640 -+#: ../system-config-printer.py:642 ../system-config-printer.py:644 - msgid "Others" - msgstr "ଅନ୍ଯାନ୍ଯ" - --#: ../system-config-printer.py:641 -+#: ../system-config-printer.py:645 - msgid "Devices" - msgstr "ଯନ୍ତ୍ର" - --#: ../system-config-printer.py:642 -+#: ../system-config-printer.py:646 - #, fuzzy - msgid "Connections" - msgstr "ସଂଯୋଗ କରୁଅଛି" - --#: ../system-config-printer.py:643 -+#: ../system-config-printer.py:647 - msgid "Makes" - msgstr "ପ୍ରସ୍ତୁତ କରେ" - --#: ../system-config-printer.py:644 -+#: ../system-config-printer.py:648 - msgid "Models" - msgstr "ମୋଡେଲ" - --#: ../system-config-printer.py:645 -+#: ../system-config-printer.py:649 - msgid "Drivers" - msgstr "ଡ୍ରାଇଭର" - --#: ../system-config-printer.py:646 ../glade/NewPrinterWindow.glade.h:55 -+#: ../system-config-printer.py:650 ../glade/NewPrinterWindow.glade.h:54 - msgid "Downloadable Drivers" - msgstr "ଆହରଣ ଯୋଗ୍ଯ ଡ୍ରାଇଭର ଗୁଡିକ" - --#: ../system-config-printer.py:647 -+#: ../system-config-printer.py:651 - msgid "Users" - msgstr "ଚାଳକ" - --#: ../system-config-printer.py:682 -+#: ../system-config-printer.py:686 - msgid "Automatic rotation" - msgstr "ସ୍ଯୟଂଚାଳିତ ଘୁର୍ନ୍ଯ" - --#: ../system-config-printer.py:989 -+#: ../system-config-printer.py:993 - #, fuzzy, python-format - msgid "Printer Properties - '%s' on %s" - msgstr "ମୁଦ୍ରଣୀ ଗୁଣଧର୍ମ" - - #. The Conflict button was pressed. --#: ../system-config-printer.py:996 -+#: ../system-config-printer.py:1000 - msgid "" - "There are conflicting options.\n" - "Changes can only be applied after\n" -@@ -903,80 +912,80 @@ msgstr "" - "ଏହି ବିବାଦ ମାନଙ୍କର ସମାଧାନ ହେଲା ପରେ\n" - "ପରିବର୍ତନ ଗୁଡିକ କେବଳ ଲାଗୁ ହେବ।" - --#: ../system-config-printer.py:1214 -+#: ../system-config-printer.py:1218 - #, python-format - msgid "Printer configuration - %s" - msgstr "ମୁଦ୍ରଣୀ ବିନ୍ଯାସ - %s" - --#: ../system-config-printer.py:1217 -+#: ../system-config-printer.py:1221 - #, python-format - msgid "Connected to %s" - msgstr "%s ସହିତ ସଂଯୋଗ କରାଯାଇଛି" - - #. Update our copy of the printer's settings. --#: ../system-config-printer.py:1257 ../system-config-printer.py:2042 -+#: ../system-config-printer.py:1261 ../system-config-printer.py:2046 - msgid "obtaining queue details" - msgstr "" - --#: ../system-config-printer.py:1295 -+#: ../system-config-printer.py:1299 - msgid "Remove from Group" - msgstr "" - --#: ../system-config-printer.py:1361 -+#: ../system-config-printer.py:1365 - #, fuzzy - msgid "Network printer (discovered)" - msgstr "ଜାଲକ ମୁଦ୍ରଣୀ" - --#: ../system-config-printer.py:1364 -+#: ../system-config-printer.py:1368 - msgid "Network class (discovered)" - msgstr "" - --#: ../system-config-printer.py:1370 ../system-config-printer.py:5524 --#: ../system-config-printer.py:5594 ../system-config-printer.py:5596 -+#: ../system-config-printer.py:1374 ../system-config-printer.py:5519 -+#: ../system-config-printer.py:5589 ../system-config-printer.py:5591 - msgid "Fax" - msgstr "ଫ୍ଯାକ୍ସ" - --#: ../system-config-printer.py:1376 ../system-config-printer.py:1382 -+#: ../system-config-printer.py:1380 ../system-config-printer.py:1386 - #: ../troubleshoot/LocalOrRemote.py:30 - msgid "Network printer" - msgstr "ଜାଲକ ମୁଦ୍ରଣୀ" - --#: ../system-config-printer.py:1379 -+#: ../system-config-printer.py:1383 - #, fuzzy - msgid "Network print share" - msgstr "ଜାଲକ ମୁଦ୍ରଣୀ" - --#: ../system-config-printer.py:1508 ../glade/ConnectingDialog.glade.h:2 -+#: ../system-config-printer.py:1512 ../glade/ConnectingDialog.glade.h:2 - #, no-c-format, python-format - msgid "Opening connection to %s" - msgstr "" - --#: ../system-config-printer.py:1887 -+#: ../system-config-printer.py:1891 - msgid "Installable Options" - msgstr "ସ୍ଥାପନ ଯୋଗ୍ଯ ବିକଳ୍ପ" - --#: ../system-config-printer.py:1888 -+#: ../system-config-printer.py:1892 - #: ../glade/PrinterPropertiesDialog.glade.h:109 - msgid "Printer Options" - msgstr "ମୁଦ୍ରଣୀ ବିକଳ୍ପ" - --#: ../system-config-printer.py:1924 -+#: ../system-config-printer.py:1928 - #, python-format - msgid "modifying class %s" - msgstr "" - --#: ../system-config-printer.py:1926 ../system-config-printer.py:3019 --#: ../system-config-printer.py:3044 ../system-config-printer.py:6547 --#: ../system-config-printer.py:6559 ../system-config-printer.py:6581 -+#: ../system-config-printer.py:1930 ../system-config-printer.py:3037 -+#: ../system-config-printer.py:3062 ../system-config-printer.py:6495 -+#: ../system-config-printer.py:6507 ../system-config-printer.py:6529 - #, fuzzy, python-format - msgid "modifying printer %s" - msgstr "ମୁଦ୍ରଣୀ ଯୋଗ କରୁଅଛି" - --#: ../system-config-printer.py:1941 -+#: ../system-config-printer.py:1945 - msgid "This will delete this class!" - msgstr "ଏହି ପ୍ରକ୍ରିୟା ଟି ଏହି ଶ୍ରେଣୀ କୁ ଅପସାରିତ କରିଦେବ!" - --#: ../system-config-printer.py:1942 -+#: ../system-config-printer.py:1946 - msgid "Proceed anyway?" - msgstr "ତଥାପି ଆଗକୁ ବଢନ୍ତୁ?" - -@@ -984,70 +993,70 @@ msgstr "ତଥାପି ଆଗକୁ ବ - #. but we have never fetched the server settings to see whether - #. the server is publishing shared printers. Fetch the settings - #. now so that we can update the "not published" label if necessary. --#: ../system-config-printer.py:2030 ../system-config-printer.py:3203 -+#: ../system-config-printer.py:2034 ../system-config-printer.py:3221 - #, fuzzy - msgid "fetching server settings" - msgstr "ସେବକର ମୌଳିକ ବିନ୍ଯାସ" - --#: ../system-config-printer.py:2100 -+#: ../system-config-printer.py:2104 - #, fuzzy - msgid "Set Default Printer" - msgstr "ପୂର୍ବନିର୍ଦ୍ଧାରିତ ମୂଦ୍ରଣୀ" - --#: ../system-config-printer.py:2102 -+#: ../system-config-printer.py:2106 - msgid "Do you want to set this as the system-wide default printer?" - msgstr "" - --#: ../system-config-printer.py:2104 -+#: ../system-config-printer.py:2108 - #, fuzzy - msgid "Set as the _system-wide default printer" - msgstr "ଏହା ପୂର୍ବ ନିର୍ଦ୍ଧାରିତ ମୁଦ୍ରଣୀ ଅଟେ" - --#: ../system-config-printer.py:2106 -+#: ../system-config-printer.py:2110 - msgid "_Clear my personal default setting" - msgstr "" - --#: ../system-config-printer.py:2107 -+#: ../system-config-printer.py:2111 - #, fuzzy - msgid "Set as my _personal default printer" - msgstr "ପୂର୍ବନିର୍ଦ୍ଧାରିତ ମୂଦ୍ରଣୀ ଚୟନ କରନ୍ତୁ" - --#: ../system-config-printer.py:2112 -+#: ../system-config-printer.py:2116 - #, fuzzy - msgid "setting default printer" - msgstr "ପୂର୍ବନିର୍ଦ୍ଧାରିତ ମୂଦ୍ରଣୀ ଚୟନ କରନ୍ତୁ" - --#: ../system-config-printer.py:2169 -+#: ../system-config-printer.py:2173 - #, fuzzy - msgid "printing test page" - msgstr "ପରୀକ୍ଷଣ ପୃଷ୍ଠାକୁ ମୂଦ୍ରିତ କରନ୍ତୁ" - --#: ../system-config-printer.py:2182 ../system-config-printer.py:2217 --#: ../system-config-printer.py:5418 -+#: ../system-config-printer.py:2186 ../system-config-printer.py:2221 -+#: ../system-config-printer.py:5413 - msgid "Not possible" - msgstr "ସମ୍ଭବ ନୁହେଁ" - --#: ../system-config-printer.py:2183 ../system-config-printer.py:2218 -+#: ../system-config-printer.py:2187 ../system-config-printer.py:2222 - msgid "" - "The remote server did not accept the print job, most likely because the " - "printer is not shared." - msgstr "" - "ଦୂର ସେବକଟି ମୁଦ୍ରଣ କାର୍ଯ୍ଯକୁ ସ୍ବୀକାର କରିଲା ନାହିଁ, ସମ୍ଭବତ ଏଥିପାଇଁ ଯେ ମୁଦ୍ରଣୀକି ସହଭାଗ କରାଯାଇ ନାହିଁ।" - --#: ../system-config-printer.py:2195 ../system-config-printer.py:2210 -+#: ../system-config-printer.py:2199 ../system-config-printer.py:2214 - msgid "Submitted" - msgstr "ଦାଖଲ କରାଯାଇଛି" - --#: ../system-config-printer.py:2196 -+#: ../system-config-printer.py:2200 - #, python-format - msgid "Test page submitted as job %d" - msgstr "%d କାର୍ଯ୍ଯ ରୂପରେ ପରୀକ୍ଷଣ ପୃଷ୍ଠାକୁ ଦାଖଲ କରାଯାଇଛି" - --#: ../system-config-printer.py:2203 -+#: ../system-config-printer.py:2207 - msgid "sending maintenance command" - msgstr "" - --#: ../system-config-printer.py:2211 -+#: ../system-config-printer.py:2215 - #, python-format - msgid "Maintenance command submitted as job %d" - msgstr "%d କାର୍ଯ୍ଯ ରୂପରେ ପରୀକ୍ଷଣ ନିର୍ଦ୍ଦେଶ ଦାଖଲ କରାଯାଇଛି" -@@ -1055,75 +1064,75 @@ msgstr "%d କାର୍ଯ୍ଯ ରୂ - #. The underlying cupsGetPPD2() function returned NULL without - #. setting an IPP error, so it'll be something like a failed - #. connection. --#: ../system-config-printer.py:2285 ../system-config-printer.py:2381 -+#: ../system-config-printer.py:2289 ../system-config-printer.py:2385 - msgid "Error" - msgstr "ତୃଟି" - --#: ../system-config-printer.py:2286 -+#: ../system-config-printer.py:2290 - msgid "There was a problem connecting to the CUPS server." - msgstr "CUPS ସେବକ ସହିତ ସଂଯୋଗ କରିବା ବେଳେ ଗୋଟିଏ ସମସ୍ଯା ସୃଷ୍ଟି ହେଲା।" - --#: ../system-config-printer.py:2382 -+#: ../system-config-printer.py:2386 - #, python-format - msgid "Option '%s' has value '%s' and cannot be edited." - msgstr "ଚୟନ '%s' ର ମୂଲ୍ଯ '%s'। ଏବଂ ଏହା ପରିବର୍ତନ କରାଯାଇ ପାରିବ ନାହିଁ।" - --#: ../system-config-printer.py:2466 -+#: ../system-config-printer.py:2476 - msgid "Marker levels are not reported for this printer." - msgstr "" - --#: ../system-config-printer.py:2763 -+#: ../system-config-printer.py:2773 - #, fuzzy - msgid "Cannot Rename" - msgstr "ପ୍ରକାଶନ (_R)" - --#: ../system-config-printer.py:2764 -+#: ../system-config-printer.py:2774 - #, fuzzy - msgid "There are queued jobs." - msgstr "କୌଣସି କ୍ରମ ଉପଲବ୍ଧ ନୁହେଁ." - --#: ../system-config-printer.py:2822 -+#: ../system-config-printer.py:2840 - #, fuzzy - msgid "renaming printer" - msgstr "ମୁଦ୍ରଣୀ ଯୋଗ କରୁଅଛି" - - #. for classes make sure all members - #. will get added --#: ../system-config-printer.py:2907 -+#: ../system-config-printer.py:2925 - #, fuzzy - msgid "copying printer" - msgstr "ମୁଦ୍ରଣୀ ଯୋଗ କରୁଅଛି" - --#: ../system-config-printer.py:2971 -+#: ../system-config-printer.py:2989 - #, fuzzy, python-format - msgid "Really delete class '%s'?" - msgstr "%s ଶ୍ରେଣୀକୁ ପ୍ରକୃତରେ ଅପସାରଣ କରିବେ କି? " - --#: ../system-config-printer.py:2973 -+#: ../system-config-printer.py:2991 - #, fuzzy, python-format - msgid "Really delete printer '%s'?" - msgstr "%s ମୁଦ୍ରଣୀକୁ ପ୍ରକୃତରେ ଅପସାରଣ କରିବେ କି?" - --#: ../system-config-printer.py:2975 -+#: ../system-config-printer.py:2993 - msgid "Really delete selected destinations?" - msgstr "ଚୟନ କରିଥିବା ଲକ୍ଷଗୁଡିକୁ ପ୍ରକୃତରେ ଅପସାରଣ କରିବେ କି?" - --#: ../system-config-printer.py:2996 -+#: ../system-config-printer.py:3014 - #, fuzzy, python-format - msgid "deleting printer %s" - msgstr "ମୁଦ୍ରଣୀ ଯୋଗ କରୁଅଛି" - --#: ../system-config-printer.py:3070 -+#: ../system-config-printer.py:3088 - msgid "Publish Shared Printers" - msgstr "" - --#: ../system-config-printer.py:3071 -+#: ../system-config-printer.py:3089 - msgid "" - "Shared printers are not available to other people unless the 'Publish shared " - "printers' option is enabled in the server settings." - msgstr "" - --#: ../system-config-printer.py:3264 -+#: ../system-config-printer.py:3282 - #, fuzzy - msgid "modifying server settings" - msgstr "ସେବକର ମୌଳିକ ବିନ୍ଯାସ" -@@ -1134,104 +1143,104 @@ msgstr "ସେବକର ମୌଳିକ - #. be unblocked. Unfortunately, this is not yet possible - #. (bug #440469). However, we can display a dialog to suggest - #. that now might be a good time to review the firewall settings. --#: ../system-config-printer.py:3289 -+#: ../system-config-printer.py:3307 - #, fuzzy - msgid "Review Firewall" - msgstr "ସେବକ ଫାଇର୍ବାଲ୍ ପରୀକ୍ଷ୍ୟା କରନ୍ତୁ" - --#: ../system-config-printer.py:3290 -+#: ../system-config-printer.py:3308 - msgid "" - "You may need to adjust the firewall to allow network printing to this " - "computer." - msgstr "" - --#: ../system-config-printer.py:3623 -+#: ../system-config-printer.py:3638 - msgid "Browsing not available (pysmbc not installed)" - msgstr "" - - #. SMB list columns --#: ../system-config-printer.py:3629 -+#: ../system-config-printer.py:3644 - msgid "Share" - msgstr "ସହଭାଗ" - --#: ../system-config-printer.py:3635 -+#: ../system-config-printer.py:3650 - msgid "Comment" - msgstr "ଟିପ୍ପଣୀ" - - #. IPP list columns --#: ../system-config-printer.py:3654 -+#: ../system-config-printer.py:3669 - msgid "Queue" - msgstr "କ୍ରମ" - --#: ../system-config-printer.py:3668 -+#: ../system-config-printer.py:3683 - msgid "" - "PostScript Printer Description files (*.ppd, *.PPD, *.ppd.gz, *.PPD.gz, *." - "PPD.GZ)" - msgstr "" - "ପୋଷ୍ଟସ୍କ୍ରିପ୍ଟ ମୁଦ୍ରଣୀ ବର୍ଣ୍ଣନା ଫାଇଲ୍ ଗୁଡାକ (*.ppd, *.PPD, *.ppd.gz, *.PPD.gz, *.PPD.GZ)" - --#: ../system-config-printer.py:3677 -+#: ../system-config-printer.py:3692 - msgid "All files (*)" - msgstr "ସମସ୍ତ ଫାଇଲ୍ (*)" - --#: ../system-config-printer.py:3713 ../system-config-printer.py:5970 --#: ../system-config-printer.py:6008 ../applet.py:124 -+#: ../system-config-printer.py:3728 ../system-config-printer.py:5918 -+#: ../system-config-printer.py:5956 ../applet.py:124 - msgid "Search" - msgstr "ଖୋଜନ୍ତୁ" - --#: ../system-config-printer.py:3736 ../system-config-printer.py:3760 --#: ../glade/NewPrinterWindow.glade.h:74 -+#: ../system-config-printer.py:3751 ../system-config-printer.py:3775 -+#: ../glade/NewPrinterWindow.glade.h:73 - msgid "New Printer" - msgstr "ନୂତନ ମୁଦ୍ରଣୀ" - --#: ../system-config-printer.py:3747 -+#: ../system-config-printer.py:3762 - msgid "New Class" - msgstr "ନୂତନ ଶ୍ରେଣୀ" - --#: ../system-config-printer.py:3752 -+#: ../system-config-printer.py:3767 - msgid "Change Device URI" - msgstr "ଯନ୍ତ୍ର ୟୁ.ଆର.ଆଇ. କୁ ପରିବର୍ତନ କରନ୍ତୁ" - --#: ../system-config-printer.py:3758 -+#: ../system-config-printer.py:3773 - msgid "Change Driver" - msgstr "ଡ୍ରାଇଭର କୁ ପରିବର୍ତନ କରନ୍ତୁ" - --#: ../system-config-printer.py:3927 ../system-config-printer.py:3993 --#: ../system-config-printer.py:4289 ../system-config-printer.py:4487 --#: ../system-config-printer.py:5772 ../system-config-printer.py:5995 -+#: ../system-config-printer.py:3942 ../system-config-printer.py:4008 -+#: ../system-config-printer.py:4304 ../system-config-printer.py:4502 -+#: ../system-config-printer.py:5762 ../system-config-printer.py:5943 - msgid "Searching" - msgstr "ଖୋଜା ଚାଲିଛି" - --#: ../system-config-printer.py:3928 -+#: ../system-config-printer.py:3943 - #, fuzzy - msgid "Searching for downloadable drivers" - msgstr "ଡ୍ରାଇଭର୍ ଖୋଜା ଚାଲିଛି" - --#: ../system-config-printer.py:3994 ../system-config-printer.py:4290 -+#: ../system-config-printer.py:4009 ../system-config-printer.py:4305 - msgid "Searching for drivers" - msgstr "ଡ୍ରାଇଭର୍ ଖୋଜା ଚାଲିଛି" - --#: ../system-config-printer.py:4488 ../system-config-printer.py:5773 -+#: ../system-config-printer.py:4503 ../system-config-printer.py:5763 - msgid "Searching for printers" - msgstr "ମୁଦ୍ରଣୀ ଖୋଜା ଚାଲିଛି" - --#: ../system-config-printer.py:4497 -+#: ../system-config-printer.py:4512 - #, fuzzy - msgid "fetching device list" - msgstr "ସେବକର ମୌଳିକ ବିନ୍ଯାସ" - - #. Tell the user why he needs the plugin --#: ../system-config-printer.py:4579 -+#: ../system-config-printer.py:4594 - msgid "For this printer a proprietary driver plugin from HP is available.\n" - msgstr "" - --#: ../system-config-printer.py:4582 -+#: ../system-config-printer.py:4597 - msgid "" - "The installation of the plugin is required for your printer to work.\n" - "\n" - msgstr "" - --#: ../system-config-printer.py:4585 -+#: ../system-config-printer.py:4600 - msgid "" - "Installing the plugin is optional, it completes or enhances the " - "functionality\n" -@@ -1239,293 +1248,285 @@ msgid "" - "\n" - msgstr "" - --#: ../system-config-printer.py:4589 -+#: ../system-config-printer.py:4604 - msgid "The plugin provides the following features:\n" - msgstr "" - --#: ../system-config-printer.py:4592 -+#: ../system-config-printer.py:4607 - msgid " - Printing support\n" - msgstr "" - --#: ../system-config-printer.py:4595 -+#: ../system-config-printer.py:4610 - #, fuzzy - msgid " - Faster printing\n" - msgstr "ମୁଦ୍ରଣ ସକାଶେ ବିଘ୍ନନିବାରଣ ଚାଲିଛି" - --#: ../system-config-printer.py:4598 -+#: ../system-config-printer.py:4613 - msgid " - Better printout quality\n" - msgstr "" - --#: ../system-config-printer.py:4601 -+#: ../system-config-printer.py:4616 - msgid " - Extra printing features\n" - msgstr "" - --#: ../system-config-printer.py:4604 -+#: ../system-config-printer.py:4619 - msgid " - Scanning support\n" - msgstr "" - --#: ../system-config-printer.py:4607 -+#: ../system-config-printer.py:4622 - msgid " - Faster scanning\n" - msgstr "" - --#: ../system-config-printer.py:4610 -+#: ../system-config-printer.py:4625 - msgid " - Better scanning image quality\n" - msgstr "" - --#: ../system-config-printer.py:4613 -+#: ../system-config-printer.py:4628 - msgid " - Faxing support\n" - msgstr "" - --#: ../system-config-printer.py:4616 -+#: ../system-config-printer.py:4631 - msgid " - Extra fax features\n" - msgstr "" - --#: ../system-config-printer.py:4619 -+#: ../system-config-printer.py:4634 - msgid " - Better Input/Output support\n" - msgstr "" - --#: ../system-config-printer.py:4622 -+#: ../system-config-printer.py:4637 - msgid " - Extra user interface features\n" - msgstr "" - --#: ../system-config-printer.py:4625 -+#: ../system-config-printer.py:4640 - msgid " - Other extra features\n" - msgstr "" - --#: ../system-config-printer.py:4630 -+#: ../system-config-printer.py:4645 - #, fuzzy - msgid "Install plugin" - msgstr "ସ୍ଥାପିତ ବିକଳ୍ପ" - --#: ../system-config-printer.py:4631 -+#: ../system-config-printer.py:4646 - #, fuzzy - msgid "Do not set up printer" - msgstr "ମୁଦ୍ରଣୀ ବାଛନ୍ତୁ" - --#: ../system-config-printer.py:4632 -+#: ../system-config-printer.py:4647 - msgid "Set up without plugin" - msgstr "" - --#: ../system-config-printer.py:4634 ../troubleshoot/PrintTestPage.py:118 -+#: ../system-config-printer.py:4649 ../troubleshoot/PrintTestPage.py:118 - msgid "Yes" - msgstr "ହଂ" - --#: ../system-config-printer.py:4635 ../troubleshoot/PrintTestPage.py:119 -+#: ../system-config-printer.py:4650 ../troubleshoot/PrintTestPage.py:119 - msgid "No" - msgstr "ନାହିଂ" - --#: ../system-config-printer.py:4809 ../system-config-printer.py:4813 -+#: ../system-config-printer.py:4824 ../system-config-printer.py:4828 - msgid " (Current)" - msgstr " (ବର୍ତମାନ)" - --#: ../system-config-printer.py:4845 --msgid "HP Printer (HPLIP)" --msgstr "" -- --#: ../system-config-printer.py:4886 -+#: ../system-config-printer.py:4881 - msgid "Other" - msgstr "ଅନ୍ଯାନ୍ଯ" - - #. device-info - #. PhysicalDevice obj - #. Separator? --#: ../system-config-printer.py:4902 -+#: ../system-config-printer.py:4897 - #, fuzzy - msgid "Network Printer" - msgstr "ଜାଲକ ମୁଦ୍ରଣୀ" - --#: ../system-config-printer.py:4906 -+#: ../system-config-printer.py:4901 - #, fuzzy - msgid "Find Network Printer" - msgstr "ଜାଲକ ମୁଦ୍ରଣୀ" - --#: ../system-config-printer.py:4979 ../system-config-printer.py:5376 -+#: ../system-config-printer.py:4974 ../system-config-printer.py:5371 - msgid "Scanning..." - msgstr "କ୍ରମବୀକ୍ଷ୍ଯଣ ଚାଲିଛି..." - --#: ../system-config-printer.py:5034 ../system-config-printer.py:5798 -+#: ../system-config-printer.py:5029 - #, fuzzy - msgid "No Print Shares" - msgstr "ଜାଲକ ମୁଦ୍ରଣୀ" - --#: ../system-config-printer.py:5035 -+#: ../system-config-printer.py:5030 - msgid "" - "There were no print shares found. Please check that the Samba service is " - "marked as trusted in your firewall configuration." - msgstr "" - --#: ../system-config-printer.py:5296 ../system-config-printer.py:5357 -+#: ../system-config-printer.py:5291 ../system-config-printer.py:5352 - msgid "Print Share Verified" - msgstr "" - --#: ../system-config-printer.py:5297 ../system-config-printer.py:5358 -+#: ../system-config-printer.py:5292 ../system-config-printer.py:5353 - msgid "This print share is accessible." - msgstr "ଏହି ମୁଦ୍ରଣ ସହଭାଗଟି ଅଭିଗମ ଯୋଗ୍ଯ ଅଟେ।" - --#: ../system-config-printer.py:5302 ../system-config-printer.py:5362 -+#: ../system-config-printer.py:5297 ../system-config-printer.py:5357 - msgid "This print share is not accessible." - msgstr "ଏହି ମୁଦ୍ରଣ ସହଭାଗଟି ଅଭିଗମ ଯୋଗ୍ଯ ନୁହେଁ।" - --#: ../system-config-printer.py:5305 -+#: ../system-config-printer.py:5300 - #, fuzzy - msgid "Print Share Inaccessible" - msgstr "ଏହି ମୁଦ୍ରଣ ସହଭାଗଟି ଅଭିଗମ ଯୋଗ୍ଯ ଅଟେ।" - --#: ../system-config-printer.py:5361 -+#: ../system-config-printer.py:5356 - msgid "Inaccessible" - msgstr "ଅନଭିଗମ୍ଯ" - --#: ../system-config-printer.py:5419 -+#: ../system-config-printer.py:5414 - #, fuzzy, python-format - msgid "It is not possible to obtain a list of queues from '%s'." - msgstr "ଏହି ହୋଷ୍ଟ୍ ରୁ କ୍ରମ ତାଲିକା ପାଇବା ଅସମ୍ଭବ" - --#: ../system-config-printer.py:5421 -+#: ../system-config-printer.py:5416 - msgid "" - "Obtaining a list of queues is a CUPS extension to IPP. Network printers do " - "not support it." - msgstr "" - --#: ../system-config-printer.py:5424 -+#: ../system-config-printer.py:5419 - msgid "No queues" - msgstr "କୌଣସି କ୍ରମ ନାହିଁ" - --#: ../system-config-printer.py:5425 -+#: ../system-config-printer.py:5420 - msgid "There are no queues available." - msgstr "କୌଣସି କ୍ରମ ଉପଲବ୍ଧ ନୁହେଁ." - --#: ../system-config-printer.py:5516 -+#: ../system-config-printer.py:5511 - msgid "Parallel Port" - msgstr "" - --#: ../system-config-printer.py:5518 -+#: ../system-config-printer.py:5513 - #, fuzzy - msgid "Serial Port" - msgstr "ଅନୁକ୍ରମ" - --#: ../system-config-printer.py:5520 -+#: ../system-config-printer.py:5515 - #, fuzzy - msgid "USB" - msgstr "SMB" - --#: ../system-config-printer.py:5522 ../system-config-printer.py:5525 -+#: ../system-config-printer.py:5517 ../system-config-printer.py:5520 - msgid "HP Linux Imaging and Printing (HPLIP)" - msgstr "" - --#: ../system-config-printer.py:5527 -+#: ../system-config-printer.py:5522 - #, fuzzy - msgid "Hardware Abstraction Layer (HAL)" - msgstr "ହାର୍ଡୱେର ପୃଥକୀକରଣ ସ୍ତର (HAL) ଦ୍ବାରା ସ୍ଥାନୀୟ ମୁଦ୍ରଣୀଟି ମିଳିଲା।" - --#: ../system-config-printer.py:5529 -+#: ../system-config-printer.py:5524 - msgid "AppSocket/HP JetDirect" - msgstr "" - --#: ../system-config-printer.py:5538 -+#: ../system-config-printer.py:5533 - #, python-format - msgid "LPD/LPR queue '%s'" - msgstr "" - --#: ../system-config-printer.py:5540 -+#: ../system-config-printer.py:5535 - #, fuzzy - msgid "LPD/LPR queue" - msgstr "LPD" - --#: ../system-config-printer.py:5543 -+#: ../system-config-printer.py:5538 - msgid "Windows Printer via SAMBA" - msgstr "" - --#: ../system-config-printer.py:5545 ../glade/NewPrinterWindow.glade.h:66 -+#: ../system-config-printer.py:5540 ../glade/NewPrinterWindow.glade.h:65 - msgid "IPP" - msgstr "IPP" - --#: ../system-config-printer.py:5547 -+#: ../system-config-printer.py:5542 - msgid "HTTP" - msgstr "" - --#: ../system-config-printer.py:5632 -+#: ../system-config-printer.py:5624 - msgid "A printer connected to the parallel port." - msgstr "ଗୋଟିଏ ସମାନ୍ତରାଳ ସଂଯୋଗିକୀ ସହିତ ଗୋଟିଏ ମୁଦ୍ରଣୀକୁ ଯୋଗ କରାଯାଇଛି।" - --#: ../system-config-printer.py:5634 -+#: ../system-config-printer.py:5626 - msgid "A printer connected to a USB port." - msgstr "ଗୋଟିଏ USB ସଂଯୋଗିକୀ ସହିତ ଗୋଟିଏ ମୁଦ୍ରଣୀକୁ ଯୋଗ କରାଯାଇଛି।" - --#: ../system-config-printer.py:5636 -+#: ../system-config-printer.py:5628 - msgid "" - "HPLIP software driving a printer, or the printer function of a multi-" - "function device." - msgstr "HPLIP ଗୋଟିଏ ମୁଦ୍ରଣୀକୁ ଚଳାଉଛି, କିମ୍ବା ମୁଦ୍ରଣୀଟି ବହୁ କାର୍ଯ୍ଯସମ୍ପନ୍ନ ଉପକରଣ ଅଟେ।" - --#: ../system-config-printer.py:5639 -+#: ../system-config-printer.py:5631 - msgid "" - "HPLIP software driving a fax machine, or the fax function of a multi-" - "function device." - msgstr "HPLIP ଗୋଟିଏ ଫ୍ଯାକ୍ସ ମେସିନ ଚଳାଉଛି, କିମ୍ବା ଫ୍ଯାକ୍ସ ମେସିନଟି ବହୁ କାର୍ଯ୍ଯସମ୍ପନ୍ନ ଉପକରଣ ଅଟେ।" - --#: ../system-config-printer.py:5642 -+#: ../system-config-printer.py:5634 - msgid "Local printer detected by the Hardware Abstraction Layer (HAL)." - msgstr "ହାର୍ଡୱେର ପୃଥକୀକରଣ ସ୍ତର (HAL) ଦ୍ବାରା ସ୍ଥାନୀୟ ମୁଦ୍ରଣୀଟି ମିଳିଲା।" - --#: ../system-config-printer.py:5799 --msgid "HPLIP cannot find the device." --msgstr "" -- --#: ../system-config-printer.py:5881 -+#: ../system-config-printer.py:5831 - msgid "No printer was found at that address." - msgstr "" - --#: ../system-config-printer.py:6020 -+#: ../system-config-printer.py:5968 - #, fuzzy - msgid "-- Select from search results --" - msgstr "-- ମୁଦ୍ରଣୀ ମଡେଲ୍ ବାଛନ୍ତୁ --" - --#: ../system-config-printer.py:6022 -+#: ../system-config-printer.py:5970 - msgid "-- No matches found --" - msgstr "-- କୌଣସି ମେଳ ମିଳିଲା ନାହିଁ --" - --#: ../system-config-printer.py:6203 -+#: ../system-config-printer.py:6151 - msgid " (recommended)" - msgstr " (ଗ୍ରହଣୀୟ)" - --#: ../system-config-printer.py:6217 -+#: ../system-config-printer.py:6165 - msgid "This PPD is generated by foomatic." - msgstr "ଏହି PPD foomatic ଦ୍ବାରା ସୃଷ୍ଟି କରାଯାଇଛି।" - --#: ../system-config-printer.py:6241 -+#: ../system-config-printer.py:6189 - msgid "OpenPrinting" - msgstr "ଖୋଲା ମୁଦ୍ରଣ କରୁଅଛି" - --#: ../system-config-printer.py:6252 -+#: ../system-config-printer.py:6200 - msgid "Distributable" - msgstr "ବଣ୍ଟନ ଯୋଗ୍ଯ" - --#: ../system-config-printer.py:6293 -+#: ../system-config-printer.py:6241 - #, fuzzy - msgid ", " - msgstr " " - --#: ../system-config-printer.py:6298 -+#: ../system-config-printer.py:6246 - #, python-format - msgid "" - "\n" - "(%s)" - msgstr "" - --#: ../system-config-printer.py:6303 -+#: ../system-config-printer.py:6251 - msgid "No support contacts known" - msgstr "" - --#: ../system-config-printer.py:6307 ../system-config-printer.py:6320 -+#: ../system-config-printer.py:6255 ../system-config-printer.py:6268 - msgid "Not specified." - msgstr "ଉଲ୍ଲେଖ କରାଯାଇ ନାହିଁ" - - #. Foomatic database problem of some sort. --#: ../system-config-printer.py:6360 -+#: ../system-config-printer.py:6308 - msgid "Database error" - msgstr "ତଥ୍ଯାଧାର ତୃଟି" - --#: ../system-config-printer.py:6361 -+#: ../system-config-printer.py:6309 - #, python-format - msgid "The '%s' driver cannot be used with printer '%s %s'." - msgstr "'%s' ଡ୍ରାଇଭରକୁ '%s %s' ମୁଦ୍ରଣୀ ସହିତ ବ୍ଯବହାର କରିହେବ ନାହିଁ।" -@@ -1533,60 +1534,60 @@ msgstr "'%s' ଡ୍ରାଇଭରକୁ - #. This printer references some XML that is not - #. installed by default. Point the user at the - #. package they need to install. --#: ../system-config-printer.py:6371 -+#: ../system-config-printer.py:6319 - #, python-format - msgid "You will need to install the '%s' package in order to use this driver." - msgstr "ଏହି ଡ୍ରାଇଭରକୁ ଚଳାଇବା ପାଇଁ ଆପଣ '%s' ପ୍ଯାକେଜକୁ ସ୍ଥାପନ କରିବା ଉଚିତ।" - - #. This error came from trying to open the PPD file. --#: ../system-config-printer.py:6378 -+#: ../system-config-printer.py:6326 - msgid "PPD error" - msgstr "PPD ତୃଟି" - --#: ../system-config-printer.py:6380 -+#: ../system-config-printer.py:6328 - msgid "Failed to read PPD file. Possible reason follows:" - msgstr "PPD ଫାଇଲକୁ ପଢିବାରେ ତୃଟି। ସମ୍ଭାବ୍ଯ କାରଣ ଗୁଡିକୁ ହେଲା:" - - #. Failed to get PPD downloaded from OpenPrinting XXX --#: ../system-config-printer.py:6397 -+#: ../system-config-printer.py:6345 - msgid "Downloadable drivers" - msgstr "ଆହରଣ ଯୋଗ୍ଯ ଡ୍ରାଇଭର ଗୁଡାକ" - --#: ../system-config-printer.py:6398 -+#: ../system-config-printer.py:6346 - msgid "Failed to download PPD." - msgstr "" - --#: ../system-config-printer.py:6405 -+#: ../system-config-printer.py:6353 - msgid "fetching PPD" - msgstr "" - --#: ../system-config-printer.py:6434 ../system-config-printer.py:6472 -+#: ../system-config-printer.py:6382 ../system-config-printer.py:6420 - msgid "No Installable Options" - msgstr "ସ୍ଥାପନ ଯୋଗ୍ଯ ଚୟନ ଗୁଡିକ ନାହିଁ" - --#: ../system-config-printer.py:6520 -+#: ../system-config-printer.py:6468 - #, fuzzy, python-format - msgid "adding printer %s" - msgstr "ମୁଦ୍ରଣୀ ଯୋଗ କରୁଅଛି" - --#: ../system-config-printer.py:6669 -+#: ../system-config-printer.py:6617 - msgid "Would you like to print a test page?" - msgstr "" - --#: ../system-config-printer.py:6722 -+#: ../system-config-printer.py:6670 - msgid "Install driver" - msgstr "ଡ୍ରାଇଭର ସ୍ଥାପନ କରନ୍ତୁ" - --#: ../system-config-printer.py:6723 ../troubleshoot/CheckPPDSanity.py:131 -+#: ../system-config-printer.py:6671 ../troubleshoot/CheckPPDSanity.py:131 - #, python-format - msgid "Printer '%s' requires the %s package but it is not currently installed." - msgstr "'%s' ମୁଦ୍ରଣୀ '%s' ପ୍ଯାକେଜ ମାନଙ୍କୁ ଆବଶ୍ଯକ କରିଥାଏ କିନ୍ତୁ ଏହା ବର୍ତ୍ତମାନ ସ୍ଥାପିତ ହୋଇନାହିଁ।" - --#: ../system-config-printer.py:6739 -+#: ../system-config-printer.py:6687 - msgid "Missing driver" - msgstr "ଅନୁପସ୍ଥିତ ଡ୍ରାଇଭର" - --#: ../system-config-printer.py:6740 -+#: ../system-config-printer.py:6688 - #, python-format - msgid "" - "Printer '%s' requires the '%s' program but it is not currently installed. " -@@ -1721,128 +1722,123 @@ msgid "Enter device URI" - msgstr "ଯନ୍ତ୍ର ୟୁ.ଆର.ଆଇ. ଭରଣ କରନ୍ତୁ" - - #: ../glade/NewPrinterWindow.glade.h:5 --#, fuzzy --msgid "HP Printer (HPLIP) via network" --msgstr "ମୁଦ୍ରଣୀ ନାମ" -- --#: ../glade/NewPrinterWindow.glade.h:6 - msgid "IPP Printer" - msgstr "ଆଇ.ପି.ପି. ମୁଦ୍ରଣୀ " - --#: ../glade/NewPrinterWindow.glade.h:7 -+#: ../glade/NewPrinterWindow.glade.h:6 - msgid "License Terms" - msgstr "ଅନୁମତି ପତ୍ର ଶବ୍ଦ ଗୁଡିକ" - --#: ../glade/NewPrinterWindow.glade.h:8 -+#: ../glade/NewPrinterWindow.glade.h:7 - msgid "Location of the LPD network printer" - msgstr "LPD ନେଟୱାର୍କ ମୁଦ୍ରଣୀର ଅବସ୍ଥାନ" - --#: ../glade/NewPrinterWindow.glade.h:9 -+#: ../glade/NewPrinterWindow.glade.h:8 - msgid "Location of the network printer" - msgstr "ନେଟୱାର୍କ ମୁଦ୍ରଣୀର ଅବସ୍ଥାନ" - --#: ../glade/NewPrinterWindow.glade.h:10 -+#: ../glade/NewPrinterWindow.glade.h:9 - msgid "Location (optional)" - msgstr "ଅବସ୍ଥାନ (ବୈକଲ୍ପିକ)" - --#: ../glade/NewPrinterWindow.glade.h:11 -+#: ../glade/NewPrinterWindow.glade.h:10 - #, fuzzy - msgid "Network Printer" - msgstr "ଜାଲକ ମୁଦ୍ରଣୀ" - --#: ../glade/NewPrinterWindow.glade.h:12 -+#: ../glade/NewPrinterWindow.glade.h:11 - msgid "Note" - msgstr "ଲକ୍ଷ୍ଯ କରନ୍ତୁ" - --#: ../glade/NewPrinterWindow.glade.h:13 -+#: ../glade/NewPrinterWindow.glade.h:12 - #, fuzzy - msgid "Output Quality" - msgstr "ସ୍ଥିତି" - --#: ../glade/NewPrinterWindow.glade.h:14 -+#: ../glade/NewPrinterWindow.glade.h:13 - msgid "Printer Name" - msgstr "ମୁଦ୍ରଣୀ ନାମ" - --#: ../glade/NewPrinterWindow.glade.h:15 -+#: ../glade/NewPrinterWindow.glade.h:14 - msgid "SMB Printer" - msgstr "ଏସ୍.ଏମ୍.ବି. ମୁଦ୍ରଣୀ" - --#: ../glade/NewPrinterWindow.glade.h:16 -+#: ../glade/NewPrinterWindow.glade.h:15 - msgid "Select Driver" - msgstr "ମୁଦ୍ରଣୀ ଚୟନ କରନ୍ତୁ" - --#: ../glade/NewPrinterWindow.glade.h:17 -+#: ../glade/NewPrinterWindow.glade.h:16 - msgid "Settings of the serial port" - msgstr "ଅନୁକ୍ରମ ସଂଯୋଗିକୀର ବିନ୍ଯାସ" - --#: ../glade/NewPrinterWindow.glade.h:18 -+#: ../glade/NewPrinterWindow.glade.h:17 - msgid "smb://[workgroup/]server[:port]/printer" - msgstr "smb://[workgroup/]server[:port]/printer" - --#: ../glade/NewPrinterWindow.glade.h:19 -+#: ../glade/NewPrinterWindow.glade.h:18 - #, fuzzy - msgid "Choose Class Members" - msgstr "" - "ପ୍ରବେଶ ସଙ୍କେତ ଆବଶ୍ଯକ\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:20 -+#: ../glade/NewPrinterWindow.glade.h:19 - #, fuzzy - msgid "Choose Driver" - msgstr "" - "ପ୍ରବେଶ ସଙ୍କେତ ଆବଶ୍ଯକ\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:21 -+#: ../glade/NewPrinterWindow.glade.h:20 - #, fuzzy - msgid "Describe Printer" - msgstr "" - "ପ୍ରବେଶ ସଙ୍କେତ ଆବଶ୍ଯକ\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:22 -+#: ../glade/NewPrinterWindow.glade.h:21 - #, fuzzy - msgid "Existing Settings" - msgstr "" - "ପ୍ରବେଶ ସଙ୍କେତ ଆବଶ୍ଯକ\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:23 -+#: ../glade/NewPrinterWindow.glade.h:22 - #, fuzzy - msgid "Installable Options" - msgstr "" - "ପ୍ରବେଶ ସଙ୍କେତ ଆବଶ୍ଯକ\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:24 -+#: ../glade/NewPrinterWindow.glade.h:23 - #, fuzzy - msgid "Select Device" - msgstr "" - "ପ୍ରବେଶ ସଙ୍କେତ ଆବଶ୍ଯକ\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:25 -+#: ../glade/NewPrinterWindow.glade.h:24 - msgid "Baud Rate" - msgstr "ବାଡ୍ ହାର" - --#: ../glade/NewPrinterWindow.glade.h:26 -+#: ../glade/NewPrinterWindow.glade.h:25 - msgid "Browse..." - msgstr "ବ୍ରାଉଜ୍..." - --#: ../glade/NewPrinterWindow.glade.h:27 -+#: ../glade/NewPrinterWindow.glade.h:26 - msgid "Comments..." - msgstr "ଟିପ୍ପଣୀ..." - --#: ../glade/NewPrinterWindow.glade.h:28 -+#: ../glade/NewPrinterWindow.glade.h:27 - #, fuzzy - msgid "Connection" - msgstr "ସଂଯୋଗ କରୁଅଛି" - --#: ../glade/NewPrinterWindow.glade.h:29 -+#: ../glade/NewPrinterWindow.glade.h:28 - msgid "Data Bits" - msgstr "ତଥ୍ଯ ବିଟ୍ସ" - --#: ../glade/NewPrinterWindow.glade.h:30 -+#: ../glade/NewPrinterWindow.glade.h:29 - msgid "" - "Default\n" - "1200\n" -@@ -1864,7 +1860,7 @@ msgstr "" - "57600\n" - "115200" - --#: ../glade/NewPrinterWindow.glade.h:39 -+#: ../glade/NewPrinterWindow.glade.h:38 - msgid "" - "Default\n" - "8\n" -@@ -1874,7 +1870,7 @@ msgstr "" - "8\n" - "7" - --#: ../glade/NewPrinterWindow.glade.h:42 -+#: ../glade/NewPrinterWindow.glade.h:41 - msgid "" - "Default\n" - "None\n" -@@ -1886,7 +1882,7 @@ msgstr "" - "ଅଯୁଗ୍ମ\n" - "ଯୁଗ୍ମ" - --#: ../glade/NewPrinterWindow.glade.h:46 -+#: ../glade/NewPrinterWindow.glade.h:45 - msgid "" - "Default\n" - "None\n" -@@ -1900,116 +1896,116 @@ msgstr "" - "RTS/CTS (ହାର୍ଡୱେର)\n" - "DTR/DSR (ହାର୍ଡୱେର)" - --#: ../glade/NewPrinterWindow.glade.h:51 -+#: ../glade/NewPrinterWindow.glade.h:50 - #: ../glade/PrinterPropertiesDialog.glade.h:35 - msgid "Description:" - msgstr "ବର୍ଣ୍ଣନା:" - --#: ../glade/NewPrinterWindow.glade.h:52 ../troubleshoot/DeviceListed.py:40 -+#: ../glade/NewPrinterWindow.glade.h:51 ../troubleshoot/DeviceListed.py:40 - msgid "Device URI" - msgstr "ଯନ୍ତ୍ର ୟୁ.ଆର.ଆଇ." - --#: ../glade/NewPrinterWindow.glade.h:53 -+#: ../glade/NewPrinterWindow.glade.h:52 - msgid "Device description." - msgstr "ଉପକରଣ ବର୍ଣ୍ଣନା।" - --#: ../glade/NewPrinterWindow.glade.h:54 -+#: ../glade/NewPrinterWindow.glade.h:53 - msgid "DirectJet" - msgstr "DirectJet" - --#: ../glade/NewPrinterWindow.glade.h:56 -+#: ../glade/NewPrinterWindow.glade.h:55 - msgid "Driver details" - msgstr "ଡ୍ରାଇଭର ବିସ୍ତ୍ରୁତ ବିବରଣୀ" - --#: ../glade/NewPrinterWindow.glade.h:57 -+#: ../glade/NewPrinterWindow.glade.h:56 - msgid "Empty" - msgstr "ଖାଲି" - --#: ../glade/NewPrinterWindow.glade.h:58 -+#: ../glade/NewPrinterWindow.glade.h:57 - msgid "Find _Queue..." - msgstr "କ୍ରମ ଖୋଜନ୍ତୁ ...(_Q)" - --#: ../glade/NewPrinterWindow.glade.h:59 -+#: ../glade/NewPrinterWindow.glade.h:58 - msgid "Flow Control" - msgstr "ପ୍ରବାହ ନିୟନ୍ତ୍ରଣ" - --#: ../glade/NewPrinterWindow.glade.h:60 -+#: ../glade/NewPrinterWindow.glade.h:59 - msgid "" - "For the printer you have selected there are drivers available for download." - msgstr "ଆପଣ ଯେଉଂ ମୁଦ୍ରଣୀ ଚୟନ କରିଛନ୍ତି କେତେଗୁଡା ଡ୍ରାଇଭର ଆହରଣ ପାଇଂ ଉପଲବ୍ଧ ଅଛି" - --#: ../glade/NewPrinterWindow.glade.h:61 -+#: ../glade/NewPrinterWindow.glade.h:60 - msgid "Free software" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:62 -+#: ../glade/NewPrinterWindow.glade.h:61 - msgid "Graphics:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:63 -+#: ../glade/NewPrinterWindow.glade.h:62 - msgid "Host:" - msgstr "ଆଧାର:" - --#: ../glade/NewPrinterWindow.glade.h:64 -+#: ../glade/NewPrinterWindow.glade.h:63 - msgid "Human-readable description such as \"HP LaserJet with Duplexer\"" - msgstr "ମାନବ ପଠନୀୟ ବିବରଣୀ ଯେପରିକି \"HP LaserJet with Duplexer\"" - --#: ../glade/NewPrinterWindow.glade.h:65 -+#: ../glade/NewPrinterWindow.glade.h:64 - msgid "Human-readable location such as \"Lab 1\"" - msgstr "ମାନବ ପଠନୀୟ ଅବସ୍ଥାନ ଯେପରିକି \"Lab 1\"" - --#: ../glade/NewPrinterWindow.glade.h:67 -+#: ../glade/NewPrinterWindow.glade.h:66 - msgid "LPD" - msgstr "LPD" - --#: ../glade/NewPrinterWindow.glade.h:68 -+#: ../glade/NewPrinterWindow.glade.h:67 - msgid "License:" - msgstr "ଅନୁମତି ପତ୍ର:" - --#: ../glade/NewPrinterWindow.glade.h:69 -+#: ../glade/NewPrinterWindow.glade.h:68 - #, fuzzy - msgid "Line art:" - msgstr "ମୁଦ୍ରଣୀ ସ୍ଥିତି:" - --#: ../glade/NewPrinterWindow.glade.h:70 -+#: ../glade/NewPrinterWindow.glade.h:69 - msgid "Local Driver" - msgstr "ସ୍ଥାନୀୟ ଡ୍ରାଇଭର୍" - --#: ../glade/NewPrinterWindow.glade.h:71 -+#: ../glade/NewPrinterWindow.glade.h:70 - #, fuzzy - msgid "Make and model:" - msgstr "ନିର୍ମାଣ ଏବଂ ମଡେଲ:" - --#: ../glade/NewPrinterWindow.glade.h:72 -+#: ../glade/NewPrinterWindow.glade.h:71 - msgid "Manufacturer" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:73 -+#: ../glade/NewPrinterWindow.glade.h:72 - #, fuzzy - msgid "Network" - msgstr "ଜାଲକ ମୁଦ୍ରଣୀ" - --#: ../glade/NewPrinterWindow.glade.h:75 -+#: ../glade/NewPrinterWindow.glade.h:74 - msgid "No, I do not accept this license" - msgstr "ନାହିଁ, ମୁ ଏହି ଅନୁମତି ପତ୍ର ଗ୍ରହଣ କରୁନାହିଁ" - --#: ../glade/NewPrinterWindow.glade.h:76 -+#: ../glade/NewPrinterWindow.glade.h:75 - msgid "Parity" - msgstr "ସମତା" - --#: ../glade/NewPrinterWindow.glade.h:78 -+#: ../glade/NewPrinterWindow.glade.h:77 - msgid "Patented algorithms" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:79 -+#: ../glade/NewPrinterWindow.glade.h:78 - msgid "Photo:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:80 -+#: ../glade/NewPrinterWindow.glade.h:79 - msgid "Port number:" - msgstr "ସଂଯୋଗିକୀ ନମ୍ବର:" - --#: ../glade/NewPrinterWindow.glade.h:81 -+#: ../glade/NewPrinterWindow.glade.h:80 - msgid "" - "PostScript Printer Description (PPD) files can often be found on the driver " - "disk that comes with the printer. For PostScript printers they are often " -@@ -2019,80 +2015,80 @@ msgstr "" - "ଡିସ୍କରେ ମିଳିଥାଏ। ପୋଷ୍ଟସ୍କ୍ରିପ୍ଟ ମୁଦ୍ରଣୀ ପାଇଁ ସେଗୁଡିକ ଅଧିକାଂଶ ସମୟରେ ଓ୍ବିଣ୍ଡୋଜ® ଚାଳକର " - "ଅଂଶ ଅଟନ୍ତି।" - --#: ../glade/NewPrinterWindow.glade.h:82 -+#: ../glade/NewPrinterWindow.glade.h:81 - msgid "Printer model:" - msgstr "ମୁଦ୍ରଣୀ ମଡେଲ୍:" - --#: ../glade/NewPrinterWindow.glade.h:83 -+#: ../glade/NewPrinterWindow.glade.h:82 - msgid "Probe" - msgstr "ଖୋଜନ୍ତୁ" - --#: ../glade/NewPrinterWindow.glade.h:84 -+#: ../glade/NewPrinterWindow.glade.h:83 - #, fuzzy - msgid "Prompt user if authentication is required" - msgstr "ବୈଧିକରଣ ଆବଶ୍ଯକ" - --#: ../glade/NewPrinterWindow.glade.h:85 -+#: ../glade/NewPrinterWindow.glade.h:84 - msgid "Provide PPD file" - msgstr "PPD ଫାଇଲ ପ୍ରଦାନ କରନ୍ତୁ" - --#: ../glade/NewPrinterWindow.glade.h:86 -+#: ../glade/NewPrinterWindow.glade.h:85 - msgid "Queue:" - msgstr "କ୍ରମ:" - --#: ../glade/NewPrinterWindow.glade.h:87 -+#: ../glade/NewPrinterWindow.glade.h:86 - msgid "SCSI" - msgstr "SCSI" - --#: ../glade/NewPrinterWindow.glade.h:88 -+#: ../glade/NewPrinterWindow.glade.h:87 - msgid "SMB" - msgstr "SMB" - --#: ../glade/NewPrinterWindow.glade.h:89 -+#: ../glade/NewPrinterWindow.glade.h:88 - msgid "Search for a printer driver to download" - msgstr "ଗୋଟିଏ ମୂଦ୍ରଣୀ ଡ୍ରାଇଭର ଆହରଣ ପାଈଂ ଖୋଜନ୍ତୁ" - --#: ../glade/NewPrinterWindow.glade.h:90 -+#: ../glade/NewPrinterWindow.glade.h:89 - #, fuzzy - msgid "Searching..." - msgstr "ଖୋଜା ଚାଲିଛି" - --#: ../glade/NewPrinterWindow.glade.h:91 -+#: ../glade/NewPrinterWindow.glade.h:90 - msgid "Select A File" - msgstr "ଗୋଟିଏ ଫାଇଲକୁ ବାଛନ୍ତୁ" - --#: ../glade/NewPrinterWindow.glade.h:92 -+#: ../glade/NewPrinterWindow.glade.h:91 - msgid "Select printer from database" - msgstr "ତଥ୍ଯାଧାରରୁ ମୁଦ୍ରଣୀ ବାଛନ୍ତୁ" - --#: ../glade/NewPrinterWindow.glade.h:93 -+#: ../glade/NewPrinterWindow.glade.h:92 - msgid "Serial" - msgstr "ଅନୁକ୍ରମ" - --#: ../glade/NewPrinterWindow.glade.h:94 -+#: ../glade/NewPrinterWindow.glade.h:93 - #, fuzzy - msgid "Set authentication details now" - msgstr "ବୈଧିକରଣ ଆବଶ୍ଯକ" - --#: ../glade/NewPrinterWindow.glade.h:95 -+#: ../glade/NewPrinterWindow.glade.h:94 - msgid "Short name for this printer such as \"laserjet\"" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:96 -+#: ../glade/NewPrinterWindow.glade.h:95 - msgid "Supplier:" - msgstr "ଭରଣ କର୍ତା:" - --#: ../glade/NewPrinterWindow.glade.h:97 -+#: ../glade/NewPrinterWindow.glade.h:96 - #, fuzzy - msgid "Support:" - msgstr "ଭରଣ କର୍ତା:" - --#: ../glade/NewPrinterWindow.glade.h:98 -+#: ../glade/NewPrinterWindow.glade.h:97 - #, fuzzy - msgid "Text:" - msgstr "ପରୀକ୍ଷଣ କରନ୍ତୁ" - --#: ../glade/NewPrinterWindow.glade.h:99 -+#: ../glade/NewPrinterWindow.glade.h:98 - msgid "" - "The foomatic printer database contains various manufacturer provided " - "PostScript Printer Description (PPD) files and also can generate PPD files " -@@ -2105,7 +2101,7 @@ msgstr "" - "ମାନଙ୍କ ପାଇଁ PPD ଫାଇଲ ସୃଷ୍ଟି କରିଥାଏ। କିନ୍ତୁ ସାଧାରଣତଃ ନିର୍ମାତାଙ୍କ ଦ୍ବାରା ପ୍ରଦାନ କରାଯାଇଥିବା " - "PPD ଫାଇଲ ଗୁଡିକ ମୁଦ୍ରଣୀର ବିଶେଷ ଗୁଣ ମାନଙ୍କୁ ବ୍ଯବହାର କରିବା ପାଇଁ ଉନ୍ନତ ଅଭିଗମ ପ୍ରଦାନ କରିଥାଏ।" - --#: ../glade/NewPrinterWindow.glade.h:100 -+#: ../glade/NewPrinterWindow.glade.h:99 - msgid "" - "These drivers do not come from your operating system supplier and will not " - "be covered by their commercial support. See the support and license terms " -@@ -2114,13 +2110,13 @@ msgstr "" - "ଏହି ଡ୍ରାଇଭର ଗୁଡିକ ଆପଣକଂ ପ୍ରଚାଳନ ତନ୍ତ୍ର ଭରଣ କର୍ତ୍ତାରୁ ଆସିନାହିଂ ଏବଂ ଏହା ସେମାନକଂ ବାଣିଜ୍ୟ " - "ସହାୟତାରେ ଆସିବ ନାହିଂ. ଡ୍ରାଇଭର ଭରଣ କର୍ତ୍ତାର ସହାୟକ ଓ ଅନୁମତି ପତ୍ର ଶବ୍ଦ ଗୁଡିକ ଦେଖନ୍ତୁ." - --#: ../glade/NewPrinterWindow.glade.h:101 -+#: ../glade/NewPrinterWindow.glade.h:100 - msgid "" - "This driver supports additional hardware that may be installed in the " - "printer." - msgstr "ଏହି ଡ୍ରାଇଭର ଅତିରିକ୍ତ ହାର୍ଡୱେର ସହାୟତା ଦଉଛି ଯାହା ମୁଦ୍ରଣୀ ରେ ସ୍ଥାପିତ ହୋଇଥିବ." - --#: ../glade/NewPrinterWindow.glade.h:102 -+#: ../glade/NewPrinterWindow.glade.h:101 - msgid "" - "This is done by assuming that options with the same name do have the same " - "meaning. Settings of options that are not present in the new PPD will be " -@@ -2130,7 +2126,7 @@ msgstr "" - "ମାନଙ୍କର ବିନ୍ଯାସ ଗୁଡିକ କ୍ଷୟ ହୋଇଯିବ ଏବଂ କେବଳ ନୂତନ PPDରେ ଉପସ୍ଥିତ ବିକଳ୍ପ ମାନଙ୍କୁ ପୂର୍ବ ନିର୍ଦ୍ଧାରିତ " - "ଭାବରେ ସେଟ କରାଯିବ।" - --#: ../glade/NewPrinterWindow.glade.h:103 -+#: ../glade/NewPrinterWindow.glade.h:102 - msgid "" - "This way all current option settings will be lost. The default settings of " - "the new PPD will be used. " -@@ -2138,20 +2134,20 @@ msgstr "" - "ଏଭଲି ଭାବରେ ସମସ୍ତ ପ୍ରଚଳିତ ବିକଳ୍ପ ବିନ୍ଯାସ କ୍ଷୟ ହୋଇଯିବ। ନୂତନ PPDର ପୂର୍ବ ନିର୍ଦ୍ଧାରିତ ବିନ୍ଯାସ ବ୍ଯବହ୍ରୁତ " - "ହେବ।" - --#: ../glade/NewPrinterWindow.glade.h:104 -+#: ../glade/NewPrinterWindow.glade.h:103 - msgid "Try to copy the option settings over from the old PPD. " - msgstr "ପୁରୁଣା PPDରୁ ବିକଳ୍ପ ବିନ୍ଯାସକୁ ନକଲ କରିବା ପାଇଁ ପ୍ରଚେଷ୍ଟା କରନ୍ତୁ।" - --#: ../glade/NewPrinterWindow.glade.h:105 -+#: ../glade/NewPrinterWindow.glade.h:104 - msgid "URI:" - msgstr "ୟୁ.ଆର.ଆଇ.:" - --#: ../glade/NewPrinterWindow.glade.h:107 -+#: ../glade/NewPrinterWindow.glade.h:106 - msgid "Use the new PPD (Postscript Printer Description) as is." - msgstr "" - "ନୂତନ PPD (ପୋଷ୍ଟସ୍କ୍ରିପ୍ଟ ମୁଦ୍ରଣୀ ବର୍ଣ୍ଣନା) ଯେମିତି ଅଛି, ତାହାକୁ ସେହିଭଳି ଭାବରେ ବ୍ଯବହାର କରନ୍ତୁ।" - --#: ../glade/NewPrinterWindow.glade.h:109 -+#: ../glade/NewPrinterWindow.glade.h:108 - msgid "" - "With this choice no driver download will be performed. In the next steps a " - "locally installed driver will be selected." -@@ -2159,24 +2155,24 @@ msgstr "" - "ଏହି ବିକଳ୍ପରେ କୌଣସି ଡ୍ରାଇଭର ଆହରଣ କରାଯିବ ନାହିଂ. ପର ସୋପାନୀ ଗୁଡିକରେ ସ୍ଥାନୀୟ ସ୍ଥାପିତ ହୋଇଥିବା " - "ଡ୍ରାଇଭର ଚୟନ କରାଯିବ." - --#: ../glade/NewPrinterWindow.glade.h:110 -+#: ../glade/NewPrinterWindow.glade.h:109 - msgid "Yes, I accept this license" - msgstr "ହଂ, ମୁଁ ଏହି ଅନୁମତି ପତ୍ରକୁ ଯ୍ଯକୁ ସ୍ବୀକାର କରୁଅଛି" - --#: ../glade/NewPrinterWindow.glade.h:111 -+#: ../glade/NewPrinterWindow.glade.h:110 - msgid "_Search" - msgstr "ଖୋଜନ୍ତୁ (_S)" - --#: ../glade/NewPrinterWindow.glade.h:112 -+#: ../glade/NewPrinterWindow.glade.h:111 - msgid "_Verify..." - msgstr "ଯାଞ୍ଚ କରନ୍ତୁ (_V)..." - --#: ../glade/NewPrinterWindow.glade.h:113 -+#: ../glade/NewPrinterWindow.glade.h:112 - #: ../glade/PrinterPropertiesDialog.glade.h:128 - msgid "move left" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:114 -+#: ../glade/NewPrinterWindow.glade.h:113 - #: ../glade/PrinterPropertiesDialog.glade.h:129 - msgid "move right" - msgstr "" -@@ -3117,7 +3113,7 @@ msgstr "ଚିହ୍ନିତ ମୁଦ - msgid "Remember to load paper of type '%s' into the printer first." - msgstr "" - --#: ../troubleshoot/PrintTestPage.py:399 -+#: ../troubleshoot/PrintTestPage.py:416 - msgid "Error submitting test page" - msgstr "" - -@@ -3321,6 +3317,10 @@ msgid "Select default printer" - msgstr "ପୂର୍ବନିର୍ଦ୍ଧାରିତ ମୂଦ୍ରଣୀ ଚୟନ କରନ୍ତୁ" - - #, fuzzy -+#~ msgid "HP Printer (HPLIP) via network" -+#~ msgstr "ମୁଦ୍ରଣୀ ନାମ" -+ -+#, fuzzy - #~ msgid "Not Found" - #~ msgstr "ମିଳିଲା ନାହିଁ" - -diff -up system-config-printer-1.1.5/po/pa.po.git-1.1.x system-config-printer-1.1.5/po/pa.po ---- system-config-printer-1.1.5/po/pa.po.git-1.1.x 2009-03-03 22:21:46.000000000 +0000 -+++ system-config-printer-1.1.5/po/pa.po 2009-03-10 17:43:31.000000000 +0000 -@@ -14,8 +14,8 @@ msgid "" - msgstr "" - "Project-Id-Version: pa\n" - "Report-Msgid-Bugs-To: https://bugzilla.redhat.com/bugzilla\n" --"POT-Creation-Date: 2009-03-02 23:22+0000\n" --"PO-Revision-Date: 2009-02-03 16:00+0530\n" -+"POT-Creation-Date: 2009-03-10 16:51+0000\n" -+"PO-Revision-Date: 2009-03-06 15:37+0530\n" - "Last-Translator: Jaswinder Singh \n" - "Language-Team: Punjabi \n" - "MIME-Version: 1.0\n" -@@ -54,16 +54,18 @@ msgid "" - "Usually print servers broadcast their queues. Specify print servers below " - "to periodically ask for queues instead." - msgstr "" -+"ਆਮ ਕਰਕੇ ਪ੍ਰਿੰਟ ਸਰਵਰ ਆਪਣੀਆਂ ਕਤਾਰਾਂ ਬਰਾਡਕਾਸਟ ਕਰਦੇ ਹਨ। ਹੇਠਾਂ ਕਤਾਰ ਬਾਰੇ ਪੁੱਛਣ ਲਈ ਪ੍ਰਿੰਟ ਸਰਵਰ " -+"ਨਿਰਧਾਰਤ ਕਰੋ।" - - #: ../AdvancedServerSettings.py:214 - msgid "Enter IP address" - msgstr "IP ਐਡਰੈੱਸ ਦਿਓ" - --#: ../authconn.py:35 ../glade/NewPrinterWindow.glade.h:108 -+#: ../authconn.py:35 ../glade/NewPrinterWindow.glade.h:107 - msgid "Username:" - msgstr "ਉਪਭੋਗੀ ਨਾਂ:" - --#: ../authconn.py:36 ../glade/NewPrinterWindow.glade.h:77 -+#: ../authconn.py:36 ../glade/NewPrinterWindow.glade.h:76 - msgid "Password:" - msgstr "ਗੁਪਤ-ਕੋਡ:" - -@@ -71,7 +73,7 @@ msgstr "ਗੁਪਤ-ਕੋਡ:" - msgid "Domain:" - msgstr "ਡੋਮੇਨ:" - --#: ../authconn.py:46 -+#: ../authconn.py:46 ../authconn.py:409 - msgid "Authentication" - msgstr "ਪ੍ਰਮਾਣਕਿਤਾ" - -@@ -79,48 +81,57 @@ msgstr "ਪ੍ਰਮਾਣਕਿਤਾ" - msgid "Remember password" - msgstr "ਪਾਸਵਰਡ ਯਾਦ ਰੱਖੋ" - --#: ../authconn.py:211 ../authconn.py:232 -+#: ../authconn.py:208 -+#, python-format -+msgid "Unauthorized request (%s)" -+msgstr "" -+ -+#: ../authconn.py:209 -+msgid "You are not authorized to carry out therequested action." -+msgstr "" -+ -+#: ../authconn.py:212 ../authconn.py:233 - msgid "Operation canceled" - msgstr "ਕਾਰਵਾਈ ਰੱਦ ਕੀਤੀ" - --#: ../authconn.py:253 -+#: ../authconn.py:250 - #, python-format - msgid "CUPS server error (%s)" - msgstr "CUPS ਸਰਵਰ ਗਲਤੀ (%s)" - --#: ../authconn.py:255 ../errordialogs.py:57 --#: ../troubleshoot/PrintTestPage.py:400 -+#: ../authconn.py:252 ../errordialogs.py:56 ../errordialogs.py:70 -+msgid "CUPS server error" -+msgstr "CUPS ਸਰਵਰ ਗਲਤੀ" -+ -+#: ../authconn.py:261 ../errordialogs.py:57 -+#: ../troubleshoot/PrintTestPage.py:417 - #, python-format - msgid "There was an error during the CUPS operation: '%s'." - msgstr "CUPS ਕਾਰਵਾਈ ਦੌਰਾਨ ਗਲਤੀ ਸੀ: '%s'।" - --#: ../authconn.py:258 -+#: ../authconn.py:264 - msgid "Retry" - msgstr "ਮੁੜ-ਕੋਸ਼ਿਸ਼" - --#: ../authconn.py:379 ../authconn.py:381 ../errordialogs.py:65 ../pysmb.py:75 -+#: ../authconn.py:385 ../authconn.py:387 ../errordialogs.py:65 ../pysmb.py:75 - #: ../pysmb.py:77 - msgid "Not authorized" - msgstr "ਪਰਮਾਣਿਤ ਨਹੀਂ ਹੈ" - --#: ../authconn.py:382 ../pysmb.py:78 -+#: ../authconn.py:388 ../pysmb.py:78 - msgid "The password may be incorrect." - msgstr "ਗੁਪਤ-ਕੋਡ ਗਲਤ ਹੋ ਸਕਦਾ ਹੈ।" - --#: ../authconn.py:400 -+#: ../authconn.py:407 - #, python-format - msgid "Authentication (%s)" - msgstr "ਪ੍ਰਮਾਣਕਿਤਾ (%s)" - --#: ../errordialogs.py:56 ../errordialogs.py:70 --msgid "CUPS server error" --msgstr "CUPS ਸਰਵਰ ਗਲਤੀ" -- - #: ../errordialogs.py:66 - msgid "" - "The password may be incorrect, or the server may be configured to deny " - "remote administration." --msgstr "" -+msgstr "ਪਾਸਵਰਡ ਗਲਤ ਹੋ ਸਕਦਾ ਹੈ, ਜਾਂ ਸਰਵਰ ਨੂੰ ਰਿਮੋਟ ਪਰਬੰਧ ਰੱਦ ਕਰਨ ਲਈ ਸੰਰਚਿਤ ਨਹੀਂ ਕੀਤਾ ਹੈ " - - #: ../errordialogs.py:72 - msgid "Bad request" -@@ -142,7 +153,7 @@ msgstr "ਅੱਪਗਰੇਡ ਲੋੜ - msgid "Server error" - msgstr "ਸਰਵਰ ਗਲਤੀ" - --#: ../errordialogs.py:82 ../system-config-printer.py:1219 -+#: ../errordialogs.py:82 ../system-config-printer.py:1223 - msgid "Not connected" - msgstr "ਜੁੜਿਆ ਨਹੀਂ" - -@@ -164,7 +175,7 @@ msgstr "ਨਵਾਂ ਗਰੁੱਪ (_N - msgid "_New Group from Selection" - msgstr "ਚੋਣ ਵਿੱਚੋਂ ਨਵਾਂ ਗਰੁੱਪ (_N)" - --#: ../GroupsPane.py:98 ../system-config-printer.py:393 -+#: ../GroupsPane.py:98 ../system-config-printer.py:397 - msgid "_Rename" - msgstr "ਮੁੜ-ਨਾਂ (_R)" - -@@ -187,6 +198,8 @@ msgid "" - "This will not delete any printer queues from your computer. To delete queues " - "completely, you must delete them from the 'All Printers' group." - msgstr "" -+"ਇਹ ਤੁਹਾਡੇ ਕੰਪਿਊਟਰ ਤੋਂ ਕੋਈ ਪ੍ਰਿੰਟਰ ਕਤਾਰ ਨਹੀਂ ਹਟਾਏਗਾ। ਪੂਰੀ ਤਰਾਂ ਕਤਾਰਾਂ ਹਟਾਉਣ ਲਈ, ਤੁਹਾਨੂੰ ਇਹ " -+"ਪਹਿਲਾਂ 'ਸਭ ਪ੍ਰਿੰਟਰ' ਗਰੁੱਪ ਵਿੱਚੋਂ ਹਟਾਉਣੀਆਂ ਪੈਣਗੀਆਂ।" - - #: ../GroupsPane.py:318 - msgid "New Group" -@@ -194,7 +207,7 @@ msgstr "ਨਵਾਂ ਗਰੁੱਪ" - - #: ../GroupsPaneModel.py:47 - msgid "All Printers" --msgstr "ਸਭ ਪਰਿੰਟਰ" -+msgstr "ਸਭ ਪ੍ਰਿੰਟਰ" - - #: ../GroupsPaneModel.py:60 - msgid "Favorites" -@@ -229,10 +242,10 @@ msgid "Document" - msgstr "ਦਸਤਾਵੇਜ਼" - - #: ../jobviewer.py:212 ../my-default-printer.py:153 --#: ../system-config-printer.py:366 ../system-config-printer.py:1367 -+#: ../system-config-printer.py:370 ../system-config-printer.py:1371 - #: ../troubleshoot/PrintTestPage.py:84 - msgid "Printer" --msgstr "ਪਰਿੰਟਰ" -+msgstr "ਪ੍ਰਿੰਟਰ" - - #: ../jobviewer.py:213 - msgid "Size" -@@ -266,8 +279,8 @@ msgstr "ਦਸਤਾਵੇਜ ਪ੍ਰ - - #: ../jobviewer.py:386 ../jobviewer.py:451 ../jobviewer.py:452 - #: ../jobviewer.py:492 ../jobviewer.py:600 ../jobviewer.py:727 --#: ../jobviewer.py:1196 ../jobviewer.py:1222 ../system-config-printer.py:2546 --#: ../glade/NewPrinterWindow.glade.h:106 -+#: ../jobviewer.py:1196 ../jobviewer.py:1222 ../system-config-printer.py:2556 -+#: ../glade/NewPrinterWindow.glade.h:105 - #: ../troubleshoot/ChooseNetworkPrinter.py:101 - #: ../troubleshoot/ChooseNetworkPrinter.py:102 - #: ../troubleshoot/ChooseNetworkPrinter.py:105 -@@ -298,339 +311,316 @@ msgstr "%d ਘੰਟੇ ਪਹਿਲਾ - - #: ../jobviewer.py:405 - msgid "yesterday" --msgstr "" -+msgstr "ਕੱਲ" - - #: ../jobviewer.py:407 - #, python-format - msgid "%d days ago" --msgstr "" -+msgstr "%d ਦਿਨ ਪਹਿਲਾਂ" - - #: ../jobviewer.py:411 - msgid "last week" --msgstr "" -+msgstr "ਪਿਛਲੇ ਹਫਤੇ" - - #: ../jobviewer.py:413 - #, python-format - msgid "%d weeks ago" --msgstr "" -+msgstr "%d ਹਫਤੇ ਪਹਿਲਾਂ" - - #: ../jobviewer.py:544 --#, fuzzy - msgid "Held for authentication" --msgstr "ਪ੍ਰਮਾਣਕਿਤਾ" -+msgstr "ਪ੍ਰਮਾਣਕਿਤਾ ਲਈ ਰੋਕਿਆ ਹੈ" - - #: ../jobviewer.py:546 ../troubleshoot/PrintTestPage.py:42 --#, fuzzy - msgid "Held" --msgstr "ਸਹਾਇਤਾ(_H)" -+msgstr "ਰੋਕਿਆ ਹੈ" - - #: ../jobviewer.py:573 - #, python-format - msgid "Held until %s" --msgstr "" -+msgstr "%s ਤੱਕ ਰੋਕਿਆ ਹੈ" - - #: ../jobviewer.py:577 - msgid "Held until day-time" --msgstr "" -+msgstr "ਦਿਨ-ਸਮੇਂ ਰੋਕਿਆ ਹੈ" - - #: ../jobviewer.py:579 - msgid "Held until evening" --msgstr "" -+msgstr "ਸ਼ਾਮ ਤੱਕ ਰੋਕਿਆ ਹੈ" - - #: ../jobviewer.py:581 - msgid "Held until night-time" --msgstr "" -+msgstr "ਰਾਤ-ਸਮੇਂ ਰੋਕਿਆ ਹੈ" - - #: ../jobviewer.py:583 - msgid "Held until second shift" --msgstr "" -+msgstr "ਦੂਜੀ ਸ਼ਿਫਟ ਤੱਕ ਰੋਕਿਆ ਹੈ" - - #: ../jobviewer.py:585 - msgid "Held until third shift" --msgstr "" -+msgstr "ਤੀਜੀ ਸ਼ਿਫਟ ਤੱਕ ਰੋਕਿਆ ਹੈ" - - #: ../jobviewer.py:587 - msgid "Held until weekend" --msgstr "" -+msgstr "ਹਫਤੇ ਦੇ ਅੰਤ ਤੱਕ ਰੋਕਿਆ ਹੈ" - - #: ../jobviewer.py:590 ../troubleshoot/PrintTestPage.py:41 --#, fuzzy - msgid "Pending" --msgstr "ਛਾਪਣਾ" -+msgstr "ਅਧੂਰਾ" - --#: ../jobviewer.py:591 ../system-config-printer.py:186 -+#: ../jobviewer.py:591 ../system-config-printer.py:190 - #: ../troubleshoot/PrintTestPage.py:43 - msgid "Processing" - msgstr "ਕਾਰਵਾਈ ਜਾਰੀ" - --#: ../jobviewer.py:592 ../system-config-printer.py:188 -+#: ../jobviewer.py:592 ../system-config-printer.py:192 - #: ../troubleshoot/PrintTestPage.py:44 - msgid "Stopped" - msgstr "ਰੁਕਿਆ" - - #: ../jobviewer.py:593 ../troubleshoot/PrintTestPage.py:45 --#, fuzzy - msgid "Canceled" --msgstr "ਜਾਂਚ ਰੱਦ ਕਰੋ" -+msgstr "ਰੱਦ ਕੀਤਾ ਹੈ" - - #: ../jobviewer.py:594 ../troubleshoot/PrintTestPage.py:46 --#, fuzzy - msgid "Aborted" --msgstr "ਇਸ ਬਾਰੇ" -+msgstr "ਅਧੂਰਾ ਛੱਡਿਆ" - - #: ../jobviewer.py:595 ../troubleshoot/PrintTestPage.py:47 --#, fuzzy - msgid "Completed" --msgstr "ਟਿੱਪਣੀ" -+msgstr "ਮੁਕੰਮਲ" - - #: ../jobviewer.py:668 ../jobviewer.py:757 --#, fuzzy - msgid "authenticating job" --msgstr "ਪ੍ਰਮਾਣਕਿਤਾ" -+msgstr "ਪ੍ਰਮਾਣਕਿਤਾ ਜੌਬ" - - #: ../jobviewer.py:725 - #, python-format - msgid "Authentication required for printing document `%s' (job %d)" --msgstr "" -+msgstr "ਪ੍ਰਿੰਟਿੰਗ ਦਸਤਾਵੇਜ਼ `%s' ਲਈ ਪ੍ਰਮਾਣਿਕਤਾ ਦੀ ਲੋੜ ਹੈ (job %d)" - - #: ../jobviewer.py:896 --#, fuzzy - msgid "Cancel Job" --msgstr "ਜਾਂਚ ਰੱਦ ਕਰੋ" -+msgstr "ਰੱਦ ਕੀਤੀ ਜੌਬ" - - #: ../jobviewer.py:910 - msgid "Do you really want to cancel this job?" --msgstr "" -+msgstr "ਕੀ ਤੁਸੀਂ ਯਕੀਨਨ ਇਹ ਜੌਬ ਰੱਦ ਕਰਨਾ ਚਾਹੁੰਦੇ ਹੋ?" - - #: ../jobviewer.py:938 --#, fuzzy - msgid "canceling job" --msgstr "ਕੰਮ ਸਵੀਕਾਰ ਕਰ ਰਿਹਾ ਹੈ" -+msgstr "ਜੌਬ ਰੱਦ ਹੋ ਰਹੀ ਹੈ" - - #: ../jobviewer.py:962 - msgid "holding job" --msgstr "" -+msgstr "ਜੌਬ ਰੋਕ ਰਿਹਾ ਹੈ" - - #: ../jobviewer.py:986 - msgid "releasing job" --msgstr "" -+msgstr "ਜੌਬ ਮੁੜ-ਚਾਲੂ ਹੋ ਰਹੀ ਹੈ" - - #: ../jobviewer.py:1096 - msgid "No documents queued" --msgstr "" -+msgstr "ਕੋਈ ਦਸਤਾਵੇਜ਼ ਕਤਾਰ ਵਿੱਚ ਨਹੀਂ ਹੈ" - - #: ../jobviewer.py:1098 - msgid "1 document queued" --msgstr "" -+msgstr "1 ਦਸਤਾਵੇਜ਼ ਕਤਾਰ ਵਿੱਚ ਹੈ" - - #: ../jobviewer.py:1100 - #, python-format - msgid "%d documents queued" --msgstr "" -+msgstr "%d ਦਸਤਾਵੇਜ਼ ਕਤਾਰ ਵਿੱਚ ਹਨ" - - #: ../jobviewer.py:1223 --#, fuzzy, python-format -+#, python-format - msgid "Job %d completed" --msgstr "ਟਿੱਪਣੀ" -+msgstr "ਜੌਬ %d ਮੁਕੰਮਲ ਹੋ ਗਈ ਹੈ" - - #: ../jobviewer.py:1224 - #, python-format - msgid "Document `%s' has finished printing on `%s'." --msgstr "" -+msgstr "ਦਸਤਾਵੇਜ਼ `%s' ਦੀ ਪ੍ਰਿੰਟਿੰਗ `%s' ਉੱਪਰ ਮੁਕੰਮਲ ਹੋ ਗਈ ਹੈ।" - - #: ../jobviewer.py:1379 - #, python-format - msgid "There was a problem sending document `%s' (job %d) to the printer." --msgstr "" -+msgstr "ਦਸਤਾਵੇਜ਼ `%s' (ਜੌਬ %d) ਨੂੰ ਪ੍ਰਿੰਟਰ ਤੇ ਭੇਜਣ ਵਿੱਚ ਕੋਈ ਸਮੱਸਿਆ ਹੈ।" - - #: ../jobviewer.py:1382 - #, python-format - msgid "There was a problem processing document `%s' (job %d)." --msgstr "" -+msgstr "ਦਸਤਾਵੇਜ਼ `%s' (ਜੌਬ %d) ਨੂੰ ਵਰਤਣ ਵਿੱਚ ਕੋਈ ਸਮੱਸਿਆ ਹੈ।" - - #. Give up and use the provided message untranslated. - #: ../jobviewer.py:1388 - #, python-format - msgid "There was a problem printing document `%s' (job %d): `%s'." --msgstr "" -+msgstr "ਦਸਤਾਵੇਜ਼ `%s' (ਜੌਬ %d) ਨੂੰ ਪ੍ਰਿੰਟ ਕਰਨ ਵਿੱਚ ਕੋਈ ਸਮੱਸਿਆ ਹੈ: `%s'।" - - #: ../jobviewer.py:1395 ../jobviewer.py:1411 --#, fuzzy - msgid "Print Error" --msgstr "ਸਰਵਰ ਗਲਤੀ" -+msgstr "ਪ੍ਰਿੰਟ ਗਲਤੀ" - - #: ../jobviewer.py:1396 - msgid "_Diagnose" --msgstr "" -+msgstr "ਪੜਤਾਲ(_D)" - - #: ../jobviewer.py:1417 - #, python-format - msgid "The printer called `%s' has been disabled." --msgstr "" -+msgstr "ਪ੍ਰਿੰਟਰ %s ਅਯੋਗ ਕਰ ਦਿੱਤਾ ਹੈ।" - - #: ../my-default-printer.py:137 ../my-default-printer.desktop.in.h:1 --#, fuzzy - msgid "Default Printer" --msgstr "ਮੂਲ ਪਰਿੰਟਰ ਬਣਾਓ" -+msgstr "ਮੂਲ ਪ੍ਰਿੰਟਰ" - - #: ../my-default-printer.py:141 ../my-default-printer.py:177 - msgid "_Use System Default" --msgstr "" -+msgstr "ਸਿਸਟਮ ਮੂਲ ਵਰਤੋ(_U)" - - #: ../my-default-printer.py:142 ../my-default-printer.py:179 --#, fuzzy - msgid "_Set Default" --msgstr "ਮੂਲ" -+msgstr "ਮੂਲ ਸੈੱਟ ਕਰੋ(_S)" - --#: ../my-default-printer.py:158 ../system-config-printer.py:423 --#: ../system-config-printer.py:3660 ../troubleshoot/ChooseNetworkPrinter.py:37 -+#: ../my-default-printer.py:158 ../system-config-printer.py:427 -+#: ../system-config-printer.py:3675 ../troubleshoot/ChooseNetworkPrinter.py:37 - #: ../troubleshoot/ChoosePrinter.py:38 --#, fuzzy - msgid "Location" --msgstr "ਟਿਕਾਣਾ:" -+msgstr "ਟਿਕਾਣਾ" - - #: ../optionwidgets.py:123 - msgid "Conflicts with:" - msgstr "ਅਪਵਾਦ ਹੈ:" - - #: ../ppdippstr.py:37 --#, fuzzy - msgid "Abort job" --msgstr "ਇਸ ਬਾਰੇ" -+msgstr "ਜੌਬ ਅਧੂਰੀ ਛੱਡੋ" - - #: ../ppdippstr.py:38 - msgid "Retry job" --msgstr "" -+msgstr "ਜੌਬ ਮੁੜ ਕੋਸ਼ਿਸ਼" - - #: ../ppdippstr.py:39 --#, fuzzy - msgid "Stop printer" --msgstr "ਨਵਾਂ ਪਰਿੰਟਰ" -+msgstr "ਪ੍ਰਿੰਟਰ ਰੋਕੋ" - - #: ../ppdippstr.py:44 --#, fuzzy - msgid "Default behavior" --msgstr "ਮੂਲ ਪਰਿੰਟਰ ਬਣਾਓ" -+msgstr "ਮੂਲ ਵਰਤਾਓ" - - #: ../ppdippstr.py:45 --#, fuzzy - msgid "Authenticated" --msgstr "ਪ੍ਰਮਾਣਕਿਤਾ" -+msgstr "ਪ੍ਰਮਾਣਿਤ" - --#: ../ppdippstr.py:50 ../system-config-printer.py:6259 --#, fuzzy -+#: ../ppdippstr.py:50 ../system-config-printer.py:6207 - msgid "None" - msgstr "ਕੋਈ ਨਹੀਂ" - - #: ../ppdippstr.py:51 --#, fuzzy - msgid "Classified" --msgstr "ਨਵੀਂ ਕਲਾਸ" -+msgstr "ਵਰਗੀਕ੍ਰਿਤ" - - #: ../ppdippstr.py:52 - msgid "Confidential" --msgstr "" -+msgstr "ਗਪੁਤ" - - #: ../ppdippstr.py:53 --#, fuzzy - msgid "Secret" --msgstr "ਸਰਵਰ ਤੇ ਜਾਓ(_G)" -+msgstr "ਗੁਪਤ" - - #: ../ppdippstr.py:54 - msgid "Standard" --msgstr "" -+msgstr "ਮਿਆਰੀ" - - #: ../ppdippstr.py:55 - msgid "Top secret" --msgstr "" -+msgstr "ਬਹੁਤ ਗੁਪਤ" - - #: ../ppdippstr.py:56 - msgid "Unclassified" --msgstr "" -+msgstr "ਨਾ-ਵਰਗੀਕ੍ਰਿਤ" - - #: ../ppdippstr.py:65 --#, fuzzy - msgid "General" --msgstr "ਸੀਰੀਅਲ" -+msgstr "ਆਮ" - - #. HPIJS options - #: ../ppdippstr.py:68 --#, fuzzy - msgid "Printout mode" --msgstr "ਪਰਿੰਟਰ ਨਾਂ" -+msgstr "ਪਰਿੰਟਆਊਟ ਮੋਡ" - - #: ../ppdippstr.py:69 - msgid "Draft (auto-detect-paper type)" --msgstr "" -+msgstr "ਡਰਾਫਟ (ਸਵੈ-ਖੋਜ-ਪੇਪਰ ਕਿਸਮ)" - - #: ../ppdippstr.py:71 - msgid "Draft grayscale (auto-detect-paper type)" --msgstr "" -+msgstr "ਡਰਾਫਟ ਗਰੇਸਕੇਲ (ਸਵੈ-ਖੋਜ-ਪੇਪਰ ਕਿਸਮ)" - - #: ../ppdippstr.py:72 - msgid "Normal (auto-detect-paper type)" --msgstr "" -+msgstr "ਸਧਾਰਨ (ਸਵੈ-ਖੋਜ-ਪੇਪਰ ਕਿਸਮ)" - - #: ../ppdippstr.py:74 - msgid "Normal grayscale (auto-detect-paper type)" --msgstr "" -+msgstr "ਸਧਾਰਨ ਗਰੇਸਕੇਲ (ਸਵੈ-ਖੋਜ-ਪੇਪਰ ਕਿਸਮ)" - - #: ../ppdippstr.py:76 - msgid "High quality (auto-detect-paper type)" --msgstr "" -+msgstr "ਹਾਈ ਕੁਆਲਟੀ (ਸਵੈ-ਖੋਜ-ਪੇਪਰ ਕਿਸਮ)" - - #: ../ppdippstr.py:78 - msgid "High quality grayscale (auto-detect-paper type)" --msgstr "" -+msgstr "ਹਾਈ ਕੁਆਲਟੀ ਗਰੇਸਕੇਲ (ਸਵੈ-ਖੋਜ-ਪੇਪਰ ਕਿਸਮ)" - - #: ../ppdippstr.py:79 - msgid "Photo (on photo paper)" --msgstr "" -+msgstr "ਫੋਟੇ (ਫੋਟੋ ਪੇਪਰ ਤੇ)" - - #: ../ppdippstr.py:81 - msgid "Best quality (color on photo paper)" --msgstr "" -+msgstr "ਵਧੀਆ ਕੁਆਲਟੀ (ਫੋਟੋ ਪੇਪਰ ਉੱਪਰ ਰੰਗ)" - - #: ../ppdippstr.py:83 - msgid "Normal quality (color on photo paper)" --msgstr "" -+msgstr "ਸਧਾਰਨ ਕੁਆਲਟੀ (ਫੋਟੋ ਪੇਪਰ ਉੱਪਰ ਰੰਗ)" - - #: ../ppdippstr.py:85 - msgid "Media source" --msgstr "" -+msgstr "ਮਾਧਿਅਮ ਸਰੋਤ" - - #: ../ppdippstr.py:86 --#, fuzzy - msgid "Printer default" --msgstr "ਪਰਿੰਟਰ ਨਾਂ" -+msgstr "ਪ੍ਰਿੰਟਰ ਮੂਲ" - - #: ../ppdippstr.py:87 - msgid "Photo tray" --msgstr "" -+msgstr "ਫੋਟੋ ਟਰੇ" - - #: ../ppdippstr.py:88 - msgid "Upper tray" --msgstr "" -+msgstr "ਉੱਪਰਲੀ ਟਰੇ" - - #: ../ppdippstr.py:89 - msgid "Lower tray" --msgstr "" -+msgstr "ਹੇਠਲੀ ਟਰੇ" - - #: ../ppdippstr.py:90 - msgid "CD or DVD tray" --msgstr "" -+msgstr "CD ਜਾਂ DVD ਟਰੇ" - - #: ../ppdippstr.py:91 - msgid "Envelope feeder" --msgstr "" -+msgstr "ਇਨਵੈਲਿਪ ਫੀਡਰ" - - #: ../ppdippstr.py:92 - msgid "Large capacity tray" --msgstr "" -+msgstr "ਜਿਆਦਾ ਸਮਰੱਥਾ ਵਾਲੀ ਟਰੇ" - - #: ../ppdippstr.py:93 - msgid "Manual feeder" --msgstr "" -+msgstr "ਦਸਤੀ ਫੀਡਰ" - - #: ../ppdippstr.py:94 - msgid "Multi-purpose tray" -@@ -638,43 +628,43 @@ msgstr "" - - #: ../ppdippstr.py:96 - msgid "Page size" --msgstr "" -+msgstr "ਸਫਾ ਅਕਾਰ" - - #: ../ppdippstr.py:97 - msgid "Custom" --msgstr "" -+msgstr "ਪਸੰਦ" - - #: ../ppdippstr.py:98 - msgid "Photo or 4x6 inch index card" --msgstr "" -+msgstr "ਫੋਟੋ ਜਾਂ 4x6 ਇੰਚ ਸੂਚੀ ਕਾਰਡ" - - #: ../ppdippstr.py:99 - msgid "Photo or 5x7 inch index card" --msgstr "" -+msgstr "ਫੋਟੋ ਜਾਂ 5x7 ਇੰਚ ਸੂਚੀ ਕਾਰਡ" - - #: ../ppdippstr.py:100 - msgid "Photo with tear-off tab" --msgstr "" -+msgstr "ਟੀਅਰ ਆਫ ਟੈਬਬ ਸਮੇਤ ਫੋਟੋ" - - #: ../ppdippstr.py:101 - msgid "3x5 inch index card" --msgstr "" -+msgstr "3x5 ਇੰਚ ਸੂਚੀ ਕਾਰਡ" - - #: ../ppdippstr.py:102 - msgid "5x8 inch index card" --msgstr "" -+msgstr "5x8 ਇੰਚ ਸੂਚੀ ਕਾਰਡ" - - #: ../ppdippstr.py:103 - msgid "A6 with tear-off tab" --msgstr "" -+msgstr "ਟੀਅਰ-ਆਫ ਟੈਬ ਸਮੇਤ A6" - - #: ../ppdippstr.py:104 - msgid "CD or DVD 80mm" --msgstr "" -+msgstr "CD ਜਾਂ DVD 80mm" - - #: ../ppdippstr.py:105 - msgid "CD or DVD 120mm" --msgstr "" -+msgstr "CD ਜਾਂ DVD 120mm" - - #: ../ppdippstr.py:107 - msgid "Double-sided printing" -@@ -690,259 +680,250 @@ msgstr "" - - #: ../ppdippstr.py:110 - msgid "Off" --msgstr "" -+msgstr "ਬੰਦ" - - #: ../ppdippstr.py:113 - msgid "Resolution, quality, ink type, media type" --msgstr "" -+msgstr "ਰੈਜ਼ੋਲੂਸ਼ਣ, ਕੁਆਲਟੀ, ਸਿਆਹੀ ਕਿਸਮ, ਮਾਧਿਅਮ ਕਿਸਮ" - - #: ../ppdippstr.py:114 - msgid "Controlled by 'Printout mode'" --msgstr "" -+msgstr "'ਪ੍ਰਿੰਟਆਊਟ ਮੋਡ' ਦੁਆਰਾ ਪਰਬੰਧਤ" - - #: ../ppdippstr.py:116 - msgid "300 dpi, color, black + color cartridge" --msgstr "" -+msgstr "300 dpi, ਰੰਗ, ਕਾਲਾ + ਰੰਗ ਕਾਟਰੇਜ" - - #: ../ppdippstr.py:118 - msgid "300 dpi, draft, color, black + color cartridge" --msgstr "" -+msgstr "300 dpi, ਡਰਾਫਟ, ਰੰਗ, ਕਾਲਾ + ਰੰਗ ਕਾਟਰੇਜ" - - #: ../ppdippstr.py:120 - msgid "300 dpi, draft, grayscale, black + color cartridge" --msgstr "" -+msgstr "300 dpi, ਡਰਾਫਟ, ਗਰੇਸਕੇਲ, ਕਾਲਾ + ਰੰਗ ਕਾਟਰੇਜ" - - #: ../ppdippstr.py:122 - msgid "300 dpi, grayscale, black + color cartridge" --msgstr "" -+msgstr "300 dpi, ਗਰੇਸਕੇਲ, ਕਾਲਾ + ਰੰਗ ਕਾਟਰੇਜ" - - #: ../ppdippstr.py:124 - msgid "600 dpi, color, black + color cartridge" --msgstr "" -+msgstr "600 dpi, ਰੰਗ, ਕਾਲਾ + ਰੰਗ ਕਾਟਰੇਜ" - - #: ../ppdippstr.py:126 - msgid "600 dpi, grayscale, black + color cartridge" --msgstr "" -+msgstr "600 dpi, ਗਰੇਸਕੇਲ, ਕਾਲਾ + ਰੰਗ ਕਾਟਰੇਜ" - - #: ../ppdippstr.py:128 - msgid "600 dpi, photo, black + color cartridge, photo paper" --msgstr "" -+msgstr "600 dpi, ਫੋਟੋ, ਕਾਲਾ + ਰੰਗ ਕਾਟਰੇਜ, ਫੋਟੋ ਪੇਪਰ" - - #: ../ppdippstr.py:130 - msgid "600 dpi, color, black + color cartridge, photo paper, normal" --msgstr "" -+msgstr "600 dpi, ਰੰਗ, ਕਾਲਾ + ਰੰਗ ਕਾਟਰੇਜ, ਫੋਟੋ ਪੇਪਰ, ਸਧਾਰਨ" - - #: ../ppdippstr.py:132 - msgid "1200 dpi, photo, black + color cartridge, photo paper" --msgstr "" -+msgstr "1200 dpi, ਫੋਟੋ, ਕਾਲਾ + ਰੰਗ ਕਾਟਰੇਜ, ਫੋਟੋ ਪੇਪਰ" - --#: ../system-config-printer.py:127 -+#: ../system-config-printer.py:131 - msgid "To do this, select System->Administration->Firewall from the main menu." --msgstr "" -+msgstr "ਅਜਿਹਾ ਕਰਨ ਲਈ, ਮੁੱਖ ਮੇਨੂ ਵਿੱਚੋਂ ਸਿਸਟਮ->ਪਰਬੰਧਨ->ਫਾਇਰਵਾਲ ਚੁਣੋ।" - --#: ../system-config-printer.py:185 -+#: ../system-config-printer.py:189 - msgid "Idle" - msgstr "ਵੇਹਲਾ" - --#: ../system-config-printer.py:187 -+#: ../system-config-printer.py:191 - msgid "Busy" - msgstr "ਰੁੱਝਿਆ" - --#: ../system-config-printer.py:372 ../system-config-printer.py:1373 --#, fuzzy -+#: ../system-config-printer.py:376 ../system-config-printer.py:1377 - msgid "Class" --msgstr "ਨਵੀਂ ਕਲਾਸ" -+msgstr "ਕਲਾਸ" - --#: ../system-config-printer.py:399 --#, fuzzy -+#: ../system-config-printer.py:403 - msgid "Set As De_fault" --msgstr "ਮੂਲ" -+msgstr "ਮੂਲ ਸੈੱਟ ਕਰੋ(_F)" - --#: ../system-config-printer.py:403 --#, fuzzy -+#: ../system-config-printer.py:407 - msgid "_Create class" --msgstr "ਰਿਮੋਟ ਕਲਾਸ" -+msgstr "ਕਲਾਸ ਬਣਾਓ(_C)" - --#: ../system-config-printer.py:405 --#, fuzzy -+#: ../system-config-printer.py:409 - msgid "View Print _Queue" --msgstr "ਨਵਾਂ ਪਰਿੰਟਰ" -+msgstr "ਪ੍ਰਿੰਟ ਕਤਾਰ ਵੇਖੋ(_Q)" - --#: ../system-config-printer.py:407 -+#: ../system-config-printer.py:411 - msgid "_Add to Group" --msgstr "" -+msgstr "ਗਰੁੱਪ ਵਿੱਚ ਜੋੜੋ(_A)" - --#: ../system-config-printer.py:409 -+#: ../system-config-printer.py:413 - msgid "Save Results as _Group" --msgstr "" -+msgstr "ਨਤੀਜੇ ਨੂੰ ਗਰੁੱਪ ਵਾਂਗ ਸੰਭਾਲੋ(_G)" - --#: ../system-config-printer.py:411 -+#: ../system-config-printer.py:415 - msgid "Save Filter as _Search Group" --msgstr "" -+msgstr "ਫਿਲਟਰ ਨੂੰ ਖੋਜ ਗਰੁੱਪ ਵਾਂਗ ਸੰਭਾਲੋ(_S)" - --#: ../system-config-printer.py:415 --#, fuzzy -+#: ../system-config-printer.py:419 - msgid "E_nabled" --msgstr "ਯੋਗ ਹੈ" -+msgstr "ਯੋਗ ਹੈ(_N)" - --#: ../system-config-printer.py:417 --#, fuzzy -+#: ../system-config-printer.py:421 - msgid "_Shared" --msgstr "ਸਾਂਝਾ" -+msgstr "ਸਾਂਝਾ(_S)" - --#: ../system-config-printer.py:421 ../troubleshoot/ChooseNetworkPrinter.py:35 -+#: ../system-config-printer.py:425 ../troubleshoot/ChooseNetworkPrinter.py:35 - #: ../troubleshoot/ChoosePrinter.py:36 ../troubleshoot/DeviceListed.py:36 - msgid "Name" - msgstr "ਨਾਂ" - --#: ../system-config-printer.py:422 --#, fuzzy -+#: ../system-config-printer.py:426 - msgid "Description" --msgstr "ਵੇਰਵਾ:" -+msgstr "ਵਰਣਨ" - --#: ../system-config-printer.py:424 -+#: ../system-config-printer.py:428 - msgid "Manufacturer / Model" --msgstr "" -+msgstr "ਨਿਰਮਾਤਾ / ਮਾਡਲ" - - #. Printer state reasons list --#: ../system-config-printer.py:499 -+#: ../system-config-printer.py:503 - msgid "Message" --msgstr "" -+msgstr "ਸੁਨੇਹਾ" - --#: ../system-config-printer.py:534 --#, fuzzy -+#: ../system-config-printer.py:538 - msgid "Problems?" --msgstr "ਜਾਂਚ" -+msgstr "ਸਮੱਸਿਆ?" - --#: ../system-config-printer.py:637 ../system-config-printer.py:639 -+#: ../system-config-printer.py:641 ../system-config-printer.py:643 - msgid "Members of this class" - msgstr "ਇਹ ਕਲਾਸ ਦੇ ਮੈਂਬਰ" - --#: ../system-config-printer.py:638 ../system-config-printer.py:640 -+#: ../system-config-printer.py:642 ../system-config-printer.py:644 - msgid "Others" - msgstr "ਹੋਰ" - --#: ../system-config-printer.py:641 -+#: ../system-config-printer.py:645 - msgid "Devices" - msgstr "ਜੰਤਰ" - --#: ../system-config-printer.py:642 --#, fuzzy -+#: ../system-config-printer.py:646 - msgid "Connections" --msgstr "ਜੁੜ ਰਿਹਾ ਹੈ" -+msgstr "ਕੁਨੈਕਸ਼ਨ" - --#: ../system-config-printer.py:643 -+#: ../system-config-printer.py:647 - msgid "Makes" - msgstr "ਮੇਕ" - --#: ../system-config-printer.py:644 -+#: ../system-config-printer.py:648 - msgid "Models" - msgstr "ਮਾਡਲ" - --#: ../system-config-printer.py:645 -+#: ../system-config-printer.py:649 - msgid "Drivers" - msgstr "ਡਰਾਈਵਰ" - --#: ../system-config-printer.py:646 ../glade/NewPrinterWindow.glade.h:55 -+#: ../system-config-printer.py:650 ../glade/NewPrinterWindow.glade.h:54 - msgid "Downloadable Drivers" --msgstr "" -+msgstr "ਡਾਊਨਲੋਡ ਹੋਣ ਯੋਗ ਡਰਾਈਵਰ" - --#: ../system-config-printer.py:647 -+#: ../system-config-printer.py:651 - msgid "Users" - msgstr "ਉਪਭੋਗੀ" - --#: ../system-config-printer.py:682 -+#: ../system-config-printer.py:686 - msgid "Automatic rotation" --msgstr "" -+msgstr "ਆਟੋਮੈਟਿਕ ਘੁੰਮਾਓ" - --#: ../system-config-printer.py:989 --#, fuzzy, python-format -+#: ../system-config-printer.py:993 -+#, python-format - msgid "Printer Properties - '%s' on %s" --msgstr "ਪਰਿੰਟਰ ਚੋਣ" -+msgstr "ਪ੍ਰਿੰਟਰ ਵਿਸ਼ੇਸ਼ਤਾਵਾਂ - '%s' ਨੂੰ %s ਉੱਪਰ" - - #. The Conflict button was pressed. --#: ../system-config-printer.py:996 -+#: ../system-config-printer.py:1000 - msgid "" - "There are conflicting options.\n" - "Changes can only be applied after\n" - "these conflicts are resolved." - msgstr "" -+"ਇੱਥੇ ਅੱਪਵਾਦ ਚੋਣਾਂ ਹਨ।\n" -+"ਤਬਦੀਲੀਆਂ ਸਿਰਫ ਇਹਨਾਂ ਅੱਪਵਾਦਾਂ ਦੇ\n" -+"ਹੱਲ ਤੋਂ ਬਾਅਦ ਲਾਗੂ ਹੋਣਗੀਆਂ।" - --#: ../system-config-printer.py:1214 -+#: ../system-config-printer.py:1218 - #, python-format - msgid "Printer configuration - %s" - msgstr "ਪ੍ਰਿੰਟਰ ਸੰਰਚਨਾ - %s" - --#: ../system-config-printer.py:1217 -+#: ../system-config-printer.py:1221 - #, python-format - msgid "Connected to %s" - msgstr "%s ਨਾਲ ਜੁੜਿਆ" - - #. Update our copy of the printer's settings. --#: ../system-config-printer.py:1257 ../system-config-printer.py:2042 -+#: ../system-config-printer.py:1261 ../system-config-printer.py:2046 - msgid "obtaining queue details" --msgstr "" -+msgstr "ਕਤਾਰ ਵੇਰਵਾ ਲੈ ਰਿਹਾ ਹੈ" - --#: ../system-config-printer.py:1295 -+#: ../system-config-printer.py:1299 - msgid "Remove from Group" --msgstr "" -+msgstr "ਗਰੁੱਪ ਵਿੱਚੋਂ ਹਟਾਓ" - --#: ../system-config-printer.py:1361 --#, fuzzy -+#: ../system-config-printer.py:1365 - msgid "Network printer (discovered)" --msgstr "ਨਵਾਂ ਪਰਿੰਟਰ" -+msgstr "ਨੈੱਟਵਰਕ ਪ੍ਰਿੰਟਰ (ਖੋਜਿਆ)" - --#: ../system-config-printer.py:1364 -+#: ../system-config-printer.py:1368 - msgid "Network class (discovered)" --msgstr "" -+msgstr "ਨੈੱਟਵਰਕ ਕਲਾਸ (ਖੋਜੀ ਗਈ)" - --#: ../system-config-printer.py:1370 ../system-config-printer.py:5524 --#: ../system-config-printer.py:5594 ../system-config-printer.py:5596 -+#: ../system-config-printer.py:1374 ../system-config-printer.py:5519 -+#: ../system-config-printer.py:5589 ../system-config-printer.py:5591 - msgid "Fax" --msgstr "" -+msgstr "ਫੈਕਸ" - --#: ../system-config-printer.py:1376 ../system-config-printer.py:1382 -+#: ../system-config-printer.py:1380 ../system-config-printer.py:1386 - #: ../troubleshoot/LocalOrRemote.py:30 --#, fuzzy - msgid "Network printer" --msgstr "ਨਵਾਂ ਪਰਿੰਟਰ" -+msgstr "ਨੈੱਟਵਰਕ ਪ੍ਰਿੰਟਰ" - --#: ../system-config-printer.py:1379 --#, fuzzy -+#: ../system-config-printer.py:1383 - msgid "Network print share" --msgstr "ਨਵਾਂ ਪਰਿੰਟਰ" -+msgstr "ਨੈੱਟਵਰਕ ਪ੍ਰਿੰਟਰ ਸ਼ੇਅਰ" - --#: ../system-config-printer.py:1508 ../glade/ConnectingDialog.glade.h:2 -+#: ../system-config-printer.py:1512 ../glade/ConnectingDialog.glade.h:2 - #, no-c-format, python-format - msgid "Opening connection to %s" --msgstr "" -+msgstr "%s ਦਾ ਕੁਨੈਕਸ਼ਨ ਖੋਲਿਆ ਜਾ ਰਿਹਾ ਹੈ" - --#: ../system-config-printer.py:1887 -+#: ../system-config-printer.py:1891 - msgid "Installable Options" --msgstr "" -+msgstr "ਇੰਸਟਾਲ ਹੋਂ ਯੋਗ ਚੋਣਾਂ" - --#: ../system-config-printer.py:1888 -+#: ../system-config-printer.py:1892 - #: ../glade/PrinterPropertiesDialog.glade.h:109 - msgid "Printer Options" --msgstr "ਪਰਿੰਟਰ ਚੋਣ" -+msgstr "ਪ੍ਰਿੰਟਰ ਚੋਣਾਂ" - --#: ../system-config-printer.py:1924 -+#: ../system-config-printer.py:1928 - #, python-format - msgid "modifying class %s" --msgstr "" -+msgstr "ਕਲਾਸ %s ਨੂੰ ਸੋਧ ਰਿਹਾ ਹੈ" - --#: ../system-config-printer.py:1926 ../system-config-printer.py:3019 --#: ../system-config-printer.py:3044 ../system-config-printer.py:6547 --#: ../system-config-printer.py:6559 ../system-config-printer.py:6581 --#, fuzzy, python-format -+#: ../system-config-printer.py:1930 ../system-config-printer.py:3037 -+#: ../system-config-printer.py:3062 ../system-config-printer.py:6495 -+#: ../system-config-printer.py:6507 ../system-config-printer.py:6529 -+#, python-format - msgid "modifying printer %s" --msgstr "ਪਰਿੰਟਰ ਸੰਰਚਨਾ" -+msgstr "ਪ੍ਰਿੰਟਰ %s ਦੀ ਸੋਧ ਹੋ ਰਹੀ ਹੈ" - --#: ../system-config-printer.py:1941 -+#: ../system-config-printer.py:1945 - msgid "This will delete this class!" --msgstr "" -+msgstr "ਇਸ ਨਾਲ ਇਹ ਕਲਾਸ ਹਟਾਈ ਜਾਵੇਗੀ!" - --#: ../system-config-printer.py:1942 -+#: ../system-config-printer.py:1946 - msgid "Proceed anyway?" - msgstr "ਕੀ ਕਿਸੇ ਵੀ ਤਰ੍ਹਾਂ ਵੀ ਜਾਰੀ ਰੱਖਣਾ ਹੈ?" - -@@ -950,148 +931,139 @@ msgstr "ਕੀ ਕਿਸੇ ਵੀ ਤ - #. but we have never fetched the server settings to see whether - #. the server is publishing shared printers. Fetch the settings - #. now so that we can update the "not published" label if necessary. --#: ../system-config-printer.py:2030 ../system-config-printer.py:3203 --#, fuzzy -+#: ../system-config-printer.py:2034 ../system-config-printer.py:3221 - msgid "fetching server settings" --msgstr "ਮੁੱਢਲਾ ਸਰਵਰ ਸਥਾਪਨ" -+msgstr "ਸਰਵਰ ਸੈਟਿੰਗ ਲੈ ਰਿਹਾ ਹੈ" - --#: ../system-config-printer.py:2100 --#, fuzzy -+#: ../system-config-printer.py:2104 - msgid "Set Default Printer" --msgstr "ਮੂਲ ਪਰਿੰਟਰ ਬਣਾਓ" -+msgstr "ਮੂਲ ਪ੍ਰਿੰਟਰ ਬਣਾਓ" - --#: ../system-config-printer.py:2102 -+#: ../system-config-printer.py:2106 - msgid "Do you want to set this as the system-wide default printer?" --msgstr "" -+msgstr "ਕੀ ਤੁਸੀਂ ਇਸ ਨੂੰ ਸਿਸਟਮ-ਅਧਾਰਿਤ ਮੂਲ ਪ੍ਰਿੰਟਰ ਸੈੱਟ ਕਰਨਾ ਚਾਹੁੰਦੇ ਹੋ?" - --#: ../system-config-printer.py:2104 --#, fuzzy -+#: ../system-config-printer.py:2108 - msgid "Set as the _system-wide default printer" --msgstr "ਇਹ ਮੂਲ ਪਰਿੰਟਰ ਹੈ" -+msgstr "ਸਿਸਟਮ-ਮੁਤਾਬਿਕ ਮੂਲ ਪ੍ਰਿੰਟਰ ਸੈੱਟ ਕਰੋ(_S)" - --#: ../system-config-printer.py:2106 -+#: ../system-config-printer.py:2110 - msgid "_Clear my personal default setting" --msgstr "" -+msgstr "ਮੇਰੀ ਨਿੱਜੀ ਮੂਲ ਸੈਟਿੰਗ ਸਾਫ ਕਰੋ(_C)" - --#: ../system-config-printer.py:2107 --#, fuzzy -+#: ../system-config-printer.py:2111 - msgid "Set as my _personal default printer" --msgstr "ਮੂਲ ਪਰਿੰਟਰ ਬਣਾਓ" -+msgstr "ਮੇਰੇ ਨਿੱਜੀ ਮੂਲ ਪ੍ਰਿੰਟਰ ਦੇ ਤੌਰ ਤੇ ਸੈੱਟ ਕਰੋ(_P)" - --#: ../system-config-printer.py:2112 --#, fuzzy -+#: ../system-config-printer.py:2116 - msgid "setting default printer" --msgstr "ਮੂਲ ਪਰਿੰਟਰ ਬਣਾਓ" -+msgstr "ਮੂਲ ਪ੍ਰਿੰਟਰ ਬਣਾ ਰਿਹਾ ਹੈ" - --#: ../system-config-printer.py:2169 --#, fuzzy -+#: ../system-config-printer.py:2173 - msgid "printing test page" --msgstr "ਜਾਂਚ ਸਫ਼ਾ ਛਾਪੋ" -+msgstr "ਜਾਂਚ ਸਫਾ ਛਾਪ ਰਿਹਾ ਹੈ" - --#: ../system-config-printer.py:2182 ../system-config-printer.py:2217 --#: ../system-config-printer.py:5418 -+#: ../system-config-printer.py:2186 ../system-config-printer.py:2221 -+#: ../system-config-printer.py:5413 - msgid "Not possible" - msgstr "ਸੰਭਵ ਨਹੀਂ" - --#: ../system-config-printer.py:2183 ../system-config-printer.py:2218 -+#: ../system-config-printer.py:2187 ../system-config-printer.py:2222 - msgid "" - "The remote server did not accept the print job, most likely because the " - "printer is not shared." --msgstr "" -+msgstr "ਰਿਮੋਟ ਸਰਵਰ ਪ੍ਰਿੰਟੰ ਜੌਬ ਸਵੀਕਾਰ ਨਹੀਂ ਕਰਦਾ ਹੈ, ਇਸ ਦਾ ਕਾਰਨਪ੍ਰਿੰਟਰ ਦਾ ਸ਼ੇਅਰ ਨਾ ਹੋਣਾ ਹੈ।" - --#: ../system-config-printer.py:2195 ../system-config-printer.py:2210 -+#: ../system-config-printer.py:2199 ../system-config-printer.py:2214 - msgid "Submitted" - msgstr "ਭੇਜਿਆ" - --#: ../system-config-printer.py:2196 -+#: ../system-config-printer.py:2200 - #, python-format - msgid "Test page submitted as job %d" --msgstr "" -+msgstr "ਜਾਂਚ ਸਫਾ ਜੌਬ %d ਦੇ ਅਧਾਰ ਤੇ ਪੇਸ਼ ਕੀਤਾ ਗਿਆ ਹੈ" - --#: ../system-config-printer.py:2203 -+#: ../system-config-printer.py:2207 - msgid "sending maintenance command" --msgstr "" -+msgstr "ਨਿਗਰਾਨੀ ਕਮਾਂਡ ਭੇਜ ਰਿਹਾ ਹੈ" - --#: ../system-config-printer.py:2211 -+#: ../system-config-printer.py:2215 - #, python-format - msgid "Maintenance command submitted as job %d" --msgstr "" -+msgstr "ਨਿਗਰਾਨੀ ਕਮਾਂਡ ਜੌਬ %d ਦੇ ਤੌਰ ਤੇ ਪੇਸ਼ ਕੀਤੀ ਗਈ ਹੈ" - - #. The underlying cupsGetPPD2() function returned NULL without - #. setting an IPP error, so it'll be something like a failed - #. connection. --#: ../system-config-printer.py:2285 ../system-config-printer.py:2381 -+#: ../system-config-printer.py:2289 ../system-config-printer.py:2385 - msgid "Error" --msgstr "" -+msgstr "ਗਲਤੀ" - --#: ../system-config-printer.py:2286 -+#: ../system-config-printer.py:2290 - msgid "There was a problem connecting to the CUPS server." --msgstr "" -+msgstr "CUPS ਸਰਵਰ ਨਾਲ ਜੁੜਨ ਸਮੇਂ ਗਲਤੀ ਆਈ ਸੀ।" - --#: ../system-config-printer.py:2382 -+#: ../system-config-printer.py:2386 - #, python-format - msgid "Option '%s' has value '%s' and cannot be edited." --msgstr "" -+msgstr "ਚੋਣ '%s' ਦਾ ਮੁੱਲ '%s' ਹੈ ਅਤੇ ਸੋਧਿਆ ਜਾ ਸਕਦਾ ਹੈ।" - --#: ../system-config-printer.py:2466 -+#: ../system-config-printer.py:2476 - msgid "Marker levels are not reported for this printer." --msgstr "" -+msgstr "ਇਸ ਪ੍ਰਿੰਟਰ ਲਈ ਮਾਰਕਰ ਮੁੱਲ ਨਹੀਂ ਦਿੱਤੇ ਗਏ।" - --#: ../system-config-printer.py:2763 --#, fuzzy -+#: ../system-config-printer.py:2773 - msgid "Cannot Rename" --msgstr "ਉਪਭੋਗੀ ਨਾਂ:" -+msgstr "ਮੁੜ-ਨਾਂ ਨਹੀਂ ਦੇ ਸਕਦਾ" - --#: ../system-config-printer.py:2764 -+#: ../system-config-printer.py:2774 - msgid "There are queued jobs." --msgstr "" -+msgstr "ਇੱਥੇ ਜੌਬਾਂ ਕਤਾਰ ਵਿੱਚ ਸਨ।" - --#: ../system-config-printer.py:2822 --#, fuzzy -+#: ../system-config-printer.py:2840 - msgid "renaming printer" --msgstr "ਪਰਿੰਟਰ ਸੰਰਚਨਾ" -+msgstr "ਪ੍ਰਿੰਟਰ ਨੂੰ ਮੁੜ-ਨਾਂ ਦੇ ਰਹੇ ਹਾਂ" - - #. for classes make sure all members - #. will get added --#: ../system-config-printer.py:2907 --#, fuzzy -+#: ../system-config-printer.py:2925 - msgid "copying printer" --msgstr "ਪਰਿੰਟਰ ਸੰਰਚਨਾ" -+msgstr "ਪ੍ਰਿੰਟਰ ਕਾਪੀ ਹੋ ਰਿਹਾ ਹੈ" - --#: ../system-config-printer.py:2971 --#, fuzzy, python-format -+#: ../system-config-printer.py:2989 -+#, python-format - msgid "Really delete class '%s'?" --msgstr "ਕੀ ਕਲਾਸ %s ਹਟਾਉਣੀ ਹੈ?" -+msgstr "ਕੀ ਯਕੀਨਨ ਕਲਾਸ '%s' ਹਟਾਉਣੀ ਹੈ?" - --#: ../system-config-printer.py:2973 --#, fuzzy, python-format -+#: ../system-config-printer.py:2991 -+#, python-format - msgid "Really delete printer '%s'?" --msgstr "ਕੀ ਪਰਿੰਟਰ %s ਹਟਾਉਣਾ ਹੈ?" -+msgstr "ਕੀ ਯਕੀਨਨ ਪ੍ਰਿੰਟਰ '%s' ਹਟਾਉਣਾ ਹੈ?" - --#: ../system-config-printer.py:2975 --#, fuzzy -+#: ../system-config-printer.py:2993 - msgid "Really delete selected destinations?" --msgstr "ਕੀ ਪਰਿੰਟਰ %s ਹਟਾਉਣਾ ਹੈ?" -+msgstr "ਕੀ ਯਕੀਨਨ ਚੁਣੀਆਂ ਮੰਜ਼ਿਲਾਂ ਨੂੰ ਹਟਾਉਣਾ ਹੈ?" - --#: ../system-config-printer.py:2996 --#, fuzzy, python-format -+#: ../system-config-printer.py:3014 -+#, python-format - msgid "deleting printer %s" --msgstr "ਪਰਿੰਟਰ ਸੰਰਚਨਾ" -+msgstr "ਪ੍ਰਿੰਟਰ %s ਨੂੰ ਹਟਾ ਰਿਹਾ ਹੈ" - --#: ../system-config-printer.py:3070 -+#: ../system-config-printer.py:3088 - msgid "Publish Shared Printers" --msgstr "" -+msgstr "ਸ਼ੇਅਰ ਪ੍ਰਿੰਟਰ ਪਬਲਿਸ਼ ਕਰੋ" - --#: ../system-config-printer.py:3071 -+#: ../system-config-printer.py:3089 - msgid "" - "Shared printers are not available to other people unless the 'Publish shared " - "printers' option is enabled in the server settings." - msgstr "" -+"ਸ਼ਾਂਝੇ ਪ੍ਰਿੰਟਰ ਹੋਰ ਲੋਕਾਂ ਨੂੰ ਉਪਲੱਬਧ ਨਹੀਂ ਹੁੰਦੇ ਜਦੋਂ ਤੱਕ 'ਪਬਲਿਸ਼ ਸ਼ੇਅਰ ਪ੍ਰਿੰਟਰ' ਚੋਣ ਸਰਵਰ ਸੈਟਿੰਗ ਵਿੱਚ ਯੋਗ " -+"ਨਹੀਂ ਕੀਤੀ ਜਾਂਦੀ।" - --#: ../system-config-printer.py:3264 --#, fuzzy -+#: ../system-config-printer.py:3282 - msgid "modifying server settings" --msgstr "ਮੁੱਢਲਾ ਸਰਵਰ ਸਥਾਪਨ" -+msgstr "ਸਰਵਰ ਸੈਟਿੰਗ ਸੋਧ ਰਿਹਾ ਹੈ" - - #. We have just enabled print queue sharing. - #. Ideally, this is the time we would check the firewall -@@ -1099,104 +1071,100 @@ msgstr "ਮੁੱਢਲਾ ਸਰਵ - #. be unblocked. Unfortunately, this is not yet possible - #. (bug #440469). However, we can display a dialog to suggest - #. that now might be a good time to review the firewall settings. --#: ../system-config-printer.py:3289 -+#: ../system-config-printer.py:3307 - msgid "Review Firewall" --msgstr "" -+msgstr "ਫਾਇਰਵਾਲ ਮੁੜ-ਵੇਖੋ" - --#: ../system-config-printer.py:3290 -+#: ../system-config-printer.py:3308 - msgid "" - "You may need to adjust the firewall to allow network printing to this " - "computer." - msgstr "" - --#: ../system-config-printer.py:3623 -+#: ../system-config-printer.py:3638 - msgid "Browsing not available (pysmbc not installed)" --msgstr "" -+msgstr "ਬਰਾਊਜ਼ ਕਰਨਾ ਉਪਲੱਬਧ ਨਹੀਂ ਹੈ (pysmbc ਇੰਸਟਾਲ ਨਹੀਂ ਹੈ)" - - #. SMB list columns --#: ../system-config-printer.py:3629 -+#: ../system-config-printer.py:3644 - msgid "Share" --msgstr "ਸਾਂਝ" -+msgstr "ਸ਼ੇਅਰ" - --#: ../system-config-printer.py:3635 -+#: ../system-config-printer.py:3650 - msgid "Comment" - msgstr "ਟਿੱਪਣੀ" - - #. IPP list columns --#: ../system-config-printer.py:3654 -+#: ../system-config-printer.py:3669 - msgid "Queue" --msgstr "" -+msgstr "ਕਤਾਰ" - --#: ../system-config-printer.py:3668 -+#: ../system-config-printer.py:3683 - msgid "" - "PostScript Printer Description files (*.ppd, *.PPD, *.ppd.gz, *.PPD.gz, *." - "PPD.GZ)" - msgstr "" - --#: ../system-config-printer.py:3677 -+#: ../system-config-printer.py:3692 - msgid "All files (*)" --msgstr "" -+msgstr "ਸਭ ਫਾਇਲਾਂ (*)" - --#: ../system-config-printer.py:3713 ../system-config-printer.py:5970 --#: ../system-config-printer.py:6008 ../applet.py:124 --#, fuzzy -+#: ../system-config-printer.py:3728 ../system-config-printer.py:5918 -+#: ../system-config-printer.py:5956 ../applet.py:124 - msgid "Search" --msgstr "ਪਰਿੰਟਰ ਲਈ ਨਵਾਂ ਨਾਂ" -+msgstr "ਖੋਜ" - --#: ../system-config-printer.py:3736 ../system-config-printer.py:3760 --#: ../glade/NewPrinterWindow.glade.h:74 -+#: ../system-config-printer.py:3751 ../system-config-printer.py:3775 -+#: ../glade/NewPrinterWindow.glade.h:73 - msgid "New Printer" --msgstr "ਨਵਾਂ ਪਰਿੰਟਰ" -+msgstr "ਨਵਾਂ ਪ੍ਰਿੰਟਰ" - --#: ../system-config-printer.py:3747 -+#: ../system-config-printer.py:3762 - msgid "New Class" - msgstr "ਨਵੀਂ ਕਲਾਸ" - --#: ../system-config-printer.py:3752 -+#: ../system-config-printer.py:3767 - msgid "Change Device URI" --msgstr "" -+msgstr "ਜਤੰਰ URI ਤਬਦੀਲ ਕਰੋ" - --#: ../system-config-printer.py:3758 -+#: ../system-config-printer.py:3773 - msgid "Change Driver" --msgstr "ਡਰਾਇਵਰ ਬਦਲੋ" -+msgstr "ਡਰਾਈਵਰ ਬਦਲੋ" - --#: ../system-config-printer.py:3927 ../system-config-printer.py:3993 --#: ../system-config-printer.py:4289 ../system-config-printer.py:4487 --#: ../system-config-printer.py:5772 ../system-config-printer.py:5995 -+#: ../system-config-printer.py:3942 ../system-config-printer.py:4008 -+#: ../system-config-printer.py:4304 ../system-config-printer.py:4502 -+#: ../system-config-printer.py:5762 ../system-config-printer.py:5943 - msgid "Searching" --msgstr "" -+msgstr "ਖੋਜ ਰਿਹਾ ਹੈ" - --#: ../system-config-printer.py:3928 --#, fuzzy -+#: ../system-config-printer.py:3943 - msgid "Searching for downloadable drivers" --msgstr "ਪਰਿੰਟਰ ਲਈ ਨਵਾਂ ਨਾਂ" -+msgstr "ਡਰਾਈਵਰ ਡਾਊਨਲੋਡ ਲਈ ਖੋਜ ਰਿਹਾ ਹੈ" - --#: ../system-config-printer.py:3994 ../system-config-printer.py:4290 -+#: ../system-config-printer.py:4009 ../system-config-printer.py:4305 - msgid "Searching for drivers" --msgstr "" -+msgstr "ਡਰਾਈਵਰ ਲਈ ਖੋਜ ਰਿਹਾ ਹੈ" - --#: ../system-config-printer.py:4488 ../system-config-printer.py:5773 --#, fuzzy -+#: ../system-config-printer.py:4503 ../system-config-printer.py:5763 - msgid "Searching for printers" --msgstr "ਪਰਿੰਟਰ ਲਈ ਨਵਾਂ ਨਾਂ" -+msgstr "ਪ੍ਰਿੰਟਰ ਲਈ ਖੋਜ ਰਿਹਾ ਹੈ" - --#: ../system-config-printer.py:4497 --#, fuzzy -+#: ../system-config-printer.py:4512 - msgid "fetching device list" --msgstr "ਮੁੱਢਲਾ ਸਰਵਰ ਸਥਾਪਨ" -+msgstr "ਜੰਤਰ ਸੂਚੀ ਪ੍ਰਾਪਤ ਕਰ ਰਿਹਾ ਹੈ" - - #. Tell the user why he needs the plugin --#: ../system-config-printer.py:4579 -+#: ../system-config-printer.py:4594 - msgid "For this printer a proprietary driver plugin from HP is available.\n" - msgstr "" - --#: ../system-config-printer.py:4582 -+#: ../system-config-printer.py:4597 - msgid "" - "The installation of the plugin is required for your printer to work.\n" - "\n" - msgstr "" - --#: ../system-config-printer.py:4585 -+#: ../system-config-printer.py:4600 - msgid "" - "Installing the plugin is optional, it completes or enhances the " - "functionality\n" -@@ -1204,353 +1172,335 @@ msgid "" - "\n" - msgstr "" - --#: ../system-config-printer.py:4589 -+#: ../system-config-printer.py:4604 - msgid "The plugin provides the following features:\n" --msgstr "" -+msgstr "ਪਲੱਗਇਨ ਵਿੱਚ ਹੇਠਲੀਆਂ ਵਿਸ਼ੇਸਤਾਵਾਂ ਹਨ:\n" - --#: ../system-config-printer.py:4592 -+#: ../system-config-printer.py:4607 - msgid " - Printing support\n" --msgstr "" -+msgstr " - ਪ੍ਰਿੰਟਿੰਗ ਸਪੋਰਟ\n" - --#: ../system-config-printer.py:4595 -+#: ../system-config-printer.py:4610 - msgid " - Faster printing\n" --msgstr "" -+msgstr " - ਫਾਸਟਰ ਪ੍ਰਿੰਟਿੰਗ\n" - --#: ../system-config-printer.py:4598 -+#: ../system-config-printer.py:4613 - msgid " - Better printout quality\n" --msgstr "" -+msgstr " - ਵਧੀਆ ਪ੍ਰਿੰਟ ਕੁਆਲਟੀ\n" - --#: ../system-config-printer.py:4601 -+#: ../system-config-printer.py:4616 - msgid " - Extra printing features\n" --msgstr "" -+msgstr " - ਵਾਧੂ ਪ੍ਰਿੰਟਿੰਗ ਵਿਸ਼ੇਸ਼ਤਾਵਾਂ\n" - --#: ../system-config-printer.py:4604 -+#: ../system-config-printer.py:4619 - msgid " - Scanning support\n" --msgstr "" -+msgstr " - ਸਕੈਨਿੰਗ ਸਪੋਰਟ\n" - --#: ../system-config-printer.py:4607 -+#: ../system-config-printer.py:4622 - msgid " - Faster scanning\n" --msgstr "" -+msgstr " - ਫਾਸਟਰ ਸਕੈਨਿੰਗ\n" - --#: ../system-config-printer.py:4610 -+#: ../system-config-printer.py:4625 - msgid " - Better scanning image quality\n" --msgstr "" -+msgstr " - ਵਧੀਆ ਸਕੈਨਿੰਗ ਈਮੇਜ਼ ਕੁਆਲਟੀ\n" - --#: ../system-config-printer.py:4613 -+#: ../system-config-printer.py:4628 - msgid " - Faxing support\n" --msgstr "" -+msgstr " - ਫੈਕਸ ਸਪੋਰਟ\n" - --#: ../system-config-printer.py:4616 -+#: ../system-config-printer.py:4631 - msgid " - Extra fax features\n" --msgstr "" -+msgstr " - ਵਾਧੂ ਫੈਕਸ ਵਿਸ਼ੇਸ਼ਤਾਵਾਂ\n" - --#: ../system-config-printer.py:4619 -+#: ../system-config-printer.py:4634 - msgid " - Better Input/Output support\n" --msgstr "" -+msgstr " - ਵਧੀਆ ਇੰਪੁੱਟ/ਆਊਟਪੁੱਟ ਸਪੋਰਟ\n" - --#: ../system-config-printer.py:4622 -+#: ../system-config-printer.py:4637 - msgid " - Extra user interface features\n" --msgstr "" -+msgstr " - ਵਾਧੂ ਉਪਭੋਗੀ ਇੰਟਰਫੇਸ ਵਿਸ਼ੇਸ਼ਤਾਵਾਂ\n" - --#: ../system-config-printer.py:4625 -+#: ../system-config-printer.py:4640 - msgid " - Other extra features\n" --msgstr "" -+msgstr " - ਹੋਰ ਵਾਧੂ ਵਿਸ਼ੇਸ਼ਤਾਵਾਂ\n" - --#: ../system-config-printer.py:4630 --#, fuzzy -+#: ../system-config-printer.py:4645 - msgid "Install plugin" --msgstr "ਪਰਿੰਟਰ ਚੋਣ" -+msgstr "ਇੰਸਟਾਲ ਪਲੱਗਇਨ" - --#: ../system-config-printer.py:4631 --#, fuzzy -+#: ../system-config-printer.py:4646 - msgid "Do not set up printer" --msgstr "ਨਵਾਂ ਪਰਿੰਟਰ" -+msgstr "ਪ੍ਰਿੰਟਰ ਸੈੱਟਅੱਪ ਨਾ ਕਰੋ" - --#: ../system-config-printer.py:4632 -+#: ../system-config-printer.py:4647 - msgid "Set up without plugin" --msgstr "" -+msgstr "ਪਲੱਗਇਨ ਬਿਨਾਂ ਸੈੱਟ ਅੱਪ ਕਰੋ" - --#: ../system-config-printer.py:4634 ../troubleshoot/PrintTestPage.py:118 -+#: ../system-config-printer.py:4649 ../troubleshoot/PrintTestPage.py:118 - msgid "Yes" --msgstr "" -+msgstr "ਹਾਂ" - --#: ../system-config-printer.py:4635 ../troubleshoot/PrintTestPage.py:119 -+#: ../system-config-printer.py:4650 ../troubleshoot/PrintTestPage.py:119 - msgid "No" --msgstr "" -+msgstr "ਨਹੀਂ" - --#: ../system-config-printer.py:4809 ../system-config-printer.py:4813 -+#: ../system-config-printer.py:4824 ../system-config-printer.py:4828 - msgid " (Current)" - msgstr " (ਮੌਜੂਦਾ)" - --#: ../system-config-printer.py:4845 --msgid "HP Printer (HPLIP)" --msgstr "" -- --#: ../system-config-printer.py:4886 -+#: ../system-config-printer.py:4881 - msgid "Other" - msgstr "ਹੋਰ" - - #. device-info - #. PhysicalDevice obj - #. Separator? --#: ../system-config-printer.py:4902 --#, fuzzy -+#: ../system-config-printer.py:4897 - msgid "Network Printer" --msgstr "ਨਵਾਂ ਪਰਿੰਟਰ" -+msgstr "ਨੈੱਟਵਰਕ ਪ੍ਰਿੰਟਰ" - --#: ../system-config-printer.py:4906 --#, fuzzy -+#: ../system-config-printer.py:4901 - msgid "Find Network Printer" --msgstr "ਨਵਾਂ ਪਰਿੰਟਰ" -+msgstr "ਨੈੱਟਵਰਕ ਪ੍ਰਿੰਟਰ ਲੱਭੋ" - --#: ../system-config-printer.py:4979 ../system-config-printer.py:5376 -+#: ../system-config-printer.py:4974 ../system-config-printer.py:5371 - msgid "Scanning..." --msgstr "" -+msgstr "ਸਕੈਨ ਕਰ ਰਿਹਾ ਹੈ..." - --#: ../system-config-printer.py:5034 ../system-config-printer.py:5798 --#, fuzzy -+#: ../system-config-printer.py:5029 - msgid "No Print Shares" --msgstr "ਨਵਾਂ ਪਰਿੰਟਰ" -+msgstr "ਕੋਈ ਪ੍ਰਿੰਟਰ ਸ਼ੇਅਰ ਨਹੀਂ ਹੈ" - --#: ../system-config-printer.py:5035 -+#: ../system-config-printer.py:5030 - msgid "" - "There were no print shares found. Please check that the Samba service is " - "marked as trusted in your firewall configuration." - msgstr "" - --#: ../system-config-printer.py:5296 ../system-config-printer.py:5357 -+#: ../system-config-printer.py:5291 ../system-config-printer.py:5352 - msgid "Print Share Verified" --msgstr "" -+msgstr "ਪ੍ਰਿੰਟ ਸ਼ੇਅਰ ਪ੍ਰਮਾਣਿਤ ਹੈ" - --#: ../system-config-printer.py:5297 ../system-config-printer.py:5358 -+#: ../system-config-printer.py:5292 ../system-config-printer.py:5353 - msgid "This print share is accessible." --msgstr "" -+msgstr "ਇਹ ਪ੍ਰਿੰਟ ਸ਼ੇਅਰ ਪਹੁੰਚਯੋਗ ਹੈ।" - --#: ../system-config-printer.py:5302 ../system-config-printer.py:5362 -+#: ../system-config-printer.py:5297 ../system-config-printer.py:5357 - msgid "This print share is not accessible." --msgstr "" -+msgstr "ਇਹ ਪ੍ਰਿੰਟ ਸ਼ੇਅਰ ਪਹੁੰਚਯੋਗ ਨਹੀਂ ਹੈ।" - --#: ../system-config-printer.py:5305 -+#: ../system-config-printer.py:5300 - msgid "Print Share Inaccessible" --msgstr "" -+msgstr "ਪ੍ਰਿੰਟ ਸ਼ੇਅਰ ਪਹੁੰਚਯੋਗ ਨਹੀਂ ਹੈ।" - --#: ../system-config-printer.py:5361 -+#: ../system-config-printer.py:5356 - msgid "Inaccessible" --msgstr "" -+msgstr "ਨਾ-ਪਹੁੰਚਯੋਗ" - --#: ../system-config-printer.py:5419 -+#: ../system-config-printer.py:5414 - #, python-format - msgid "It is not possible to obtain a list of queues from '%s'." - msgstr "" - --#: ../system-config-printer.py:5421 -+#: ../system-config-printer.py:5416 - msgid "" - "Obtaining a list of queues is a CUPS extension to IPP. Network printers do " - "not support it." - msgstr "" - --#: ../system-config-printer.py:5424 -+#: ../system-config-printer.py:5419 - msgid "No queues" --msgstr "" -+msgstr "ਕੋਈ ਕਤਾਰ ਨਹੀਂ" - --#: ../system-config-printer.py:5425 -+#: ../system-config-printer.py:5420 - msgid "There are no queues available." --msgstr "" -+msgstr "ਇੱਥੇ ਕੋਈ ਕਤਾਰ ਉਪਲੱਬਧ ਨਹੀਂ ਹੈ।" - --#: ../system-config-printer.py:5516 -+#: ../system-config-printer.py:5511 - msgid "Parallel Port" --msgstr "" -+msgstr "ਪੈਰਲਲ ਪੋਰਟ" - --#: ../system-config-printer.py:5518 --#, fuzzy -+#: ../system-config-printer.py:5513 - msgid "Serial Port" --msgstr "ਸੀਰੀਅਲ" -+msgstr "ਸੀਰੀਅਲ ਪੋਰਟ" - --#: ../system-config-printer.py:5520 --#, fuzzy -+#: ../system-config-printer.py:5515 - msgid "USB" --msgstr "SMB" -+msgstr "USB" - --#: ../system-config-printer.py:5522 ../system-config-printer.py:5525 -+#: ../system-config-printer.py:5517 ../system-config-printer.py:5520 - msgid "HP Linux Imaging and Printing (HPLIP)" --msgstr "" -+msgstr "HP ਲੀਨਕਸ ਈਮੇਜ਼ਿੰਗ ਅਤੇ ਪ੍ਰਿੰਟਿੰਗ (HPLIP)" - --#: ../system-config-printer.py:5527 -+#: ../system-config-printer.py:5522 - msgid "Hardware Abstraction Layer (HAL)" - msgstr "" - --#: ../system-config-printer.py:5529 -+#: ../system-config-printer.py:5524 - msgid "AppSocket/HP JetDirect" - msgstr "" - --#: ../system-config-printer.py:5538 -+#: ../system-config-printer.py:5533 - #, python-format - msgid "LPD/LPR queue '%s'" --msgstr "" -+msgstr "LPD/LPR ਕਤਾਰ '%s'" - --#: ../system-config-printer.py:5540 --#, fuzzy -+#: ../system-config-printer.py:5535 - msgid "LPD/LPR queue" --msgstr "LPD" -+msgstr "LPD/LPR ਕਤਾਰ" - --#: ../system-config-printer.py:5543 -+#: ../system-config-printer.py:5538 - msgid "Windows Printer via SAMBA" --msgstr "" -+msgstr "SAMBA ਰਾਹੀਂ ਵਿੰਡੋ ਪ੍ਰਿੰਟਰ" - --#: ../system-config-printer.py:5545 ../glade/NewPrinterWindow.glade.h:66 -+#: ../system-config-printer.py:5540 ../glade/NewPrinterWindow.glade.h:65 - msgid "IPP" - msgstr "IPP" - --#: ../system-config-printer.py:5547 -+#: ../system-config-printer.py:5542 - msgid "HTTP" --msgstr "" -+msgstr "HTTP" - --#: ../system-config-printer.py:5632 -+#: ../system-config-printer.py:5624 - msgid "A printer connected to the parallel port." --msgstr "" -+msgstr "ਇੱਕ ਪ੍ਰਿੰਟਰ ਪੈਰਲਲ ਪੋਰਟ ਨਾਲ ਜੁੜਿਆ ਹੈ।" - --#: ../system-config-printer.py:5634 -+#: ../system-config-printer.py:5626 - msgid "A printer connected to a USB port." --msgstr "" -+msgstr "ਇੱਕ ਪ੍ਰਿੰਟਰ USB ਪੋਰਟ ਨਾਲ ਜੁੜਿਆ ਹੈ।" - --#: ../system-config-printer.py:5636 -+#: ../system-config-printer.py:5628 - msgid "" - "HPLIP software driving a printer, or the printer function of a multi-" - "function device." - msgstr "" - --#: ../system-config-printer.py:5639 -+#: ../system-config-printer.py:5631 - msgid "" - "HPLIP software driving a fax machine, or the fax function of a multi-" - "function device." - msgstr "" - --#: ../system-config-printer.py:5642 -+#: ../system-config-printer.py:5634 - msgid "Local printer detected by the Hardware Abstraction Layer (HAL)." - msgstr "" - --#: ../system-config-printer.py:5799 --msgid "HPLIP cannot find the device." --msgstr "" -- --#: ../system-config-printer.py:5881 -+#: ../system-config-printer.py:5831 - msgid "No printer was found at that address." --msgstr "" -+msgstr "ਇਸ ਐਡਰੈੱਸ ਤੇ ਕੋਈ ਪ੍ਰਿੰਟਰ ਨਹੀਂ ਲੱਭਿਆ।" - --#: ../system-config-printer.py:6020 --#, fuzzy -+#: ../system-config-printer.py:5968 - msgid "-- Select from search results --" --msgstr "ਪਰਿੰਟਰ ਨਾਂ" -+msgstr "-- ਖੋਜ ਨਤੀਜੇ ਵਿੱਚੋਂ ਚੁਣੋ --" - --#: ../system-config-printer.py:6022 -+#: ../system-config-printer.py:5970 - msgid "-- No matches found --" --msgstr "" -+msgstr "-- ਕੋਈ ਮੇਲ ਨਹੀਂ ਲੱਭਿਆ --" - --#: ../system-config-printer.py:6203 -+#: ../system-config-printer.py:6151 - msgid " (recommended)" --msgstr "(ਸਿਫਾਰਸ਼ੀ)" -+msgstr " (ਸਿਫਾਰਸ਼ੀ)" - --#: ../system-config-printer.py:6217 -+#: ../system-config-printer.py:6165 - msgid "This PPD is generated by foomatic." --msgstr "" -+msgstr "ਇਹ PPD foomatic ਦੁਆਰਾ ਬਣਾਇਆ ਗਿਆ ਹੈ।" - --#: ../system-config-printer.py:6241 --#, fuzzy -+#: ../system-config-printer.py:6189 - msgid "OpenPrinting" --msgstr "ਛਾਪਣਾ" -+msgstr "ਓਪਨ-ਪ੍ਰਿੰਟਿੰਗ" - --#: ../system-config-printer.py:6252 -+#: ../system-config-printer.py:6200 - msgid "Distributable" --msgstr "" -+msgstr "ਵੰਡਣਯੋਗ" - --#: ../system-config-printer.py:6293 -+#: ../system-config-printer.py:6241 - msgid ", " --msgstr "" -+msgstr ", " - --#: ../system-config-printer.py:6298 -+#: ../system-config-printer.py:6246 - #, python-format - msgid "" - "\n" - "(%s)" - msgstr "" -+"\n" -+"(%s)" - --#: ../system-config-printer.py:6303 -+#: ../system-config-printer.py:6251 - msgid "No support contacts known" --msgstr "" -+msgstr "ਕੋਈ ਸਪੋਰਟ ਸੰਪਰਕ ਨਹੀਂ ਪਤਾ" - --#: ../system-config-printer.py:6307 ../system-config-printer.py:6320 -+#: ../system-config-printer.py:6255 ../system-config-printer.py:6268 - msgid "Not specified." --msgstr "" -+msgstr "ਨਿਰਧਾਰਤ ਨਹੀਂ।" - - #. Foomatic database problem of some sort. --#: ../system-config-printer.py:6360 -+#: ../system-config-printer.py:6308 - msgid "Database error" - msgstr "ਡਾਟਾਬੇਸ ਗਲਤੀ" - --#: ../system-config-printer.py:6361 -+#: ../system-config-printer.py:6309 - #, python-format - msgid "The '%s' driver cannot be used with printer '%s %s'." --msgstr "" -+msgstr "'%s' ਡਰਾਈਵਰ ਨੂੰ ਪ੍ਰਿੰਟਰ '%s %s' ਨਾਲ ਨਹੀਂ ਵਰਤਿਆ ਜਾ ਸਕਦਾ।" - - #. This printer references some XML that is not - #. installed by default. Point the user at the - #. package they need to install. --#: ../system-config-printer.py:6371 -+#: ../system-config-printer.py:6319 - #, python-format - msgid "You will need to install the '%s' package in order to use this driver." --msgstr "" -+msgstr "ਤੁਹਾਨੂੰ ਇਹ ਡਰਾਈਵਰ ਵਰਤਣ ਲਈ '%s' ਪੈਕੇਜ ਇੰਸਟਾਲ ਕਰਨਾ ਪਵੇਗਾ।" - - #. This error came from trying to open the PPD file. --#: ../system-config-printer.py:6378 -+#: ../system-config-printer.py:6326 - msgid "PPD error" - msgstr "PPD ਗਲਤੀ" - --#: ../system-config-printer.py:6380 -+#: ../system-config-printer.py:6328 - msgid "Failed to read PPD file. Possible reason follows:" --msgstr "" -+msgstr "PPD ਫਾਇਲ ਪੜਨ ਵਿੱਚ ਫੇਲ। ਸੰਭਵ ਕਾਰਨ ਇਹ ਹਨ:" - - #. Failed to get PPD downloaded from OpenPrinting XXX --#: ../system-config-printer.py:6397 -+#: ../system-config-printer.py:6345 - msgid "Downloadable drivers" --msgstr "" -+msgstr "ਡਾਊਨਲੋਡ ਹੰਣ ਯੋਗ ਡਰਾਈਵਰ" - --#: ../system-config-printer.py:6398 -+#: ../system-config-printer.py:6346 - msgid "Failed to download PPD." --msgstr "" -+msgstr "PPD ਨੂੰ ਡਾਊਨਲੋਡ ਕਰਨ ਵਿੱਚ ਫੇਲ।" - --#: ../system-config-printer.py:6405 -+#: ../system-config-printer.py:6353 - msgid "fetching PPD" --msgstr "" -+msgstr "PPD ਲੈ ਰਿਹਾ ਹੈ" - --#: ../system-config-printer.py:6434 ../system-config-printer.py:6472 --#, fuzzy -+#: ../system-config-printer.py:6382 ../system-config-printer.py:6420 - msgid "No Installable Options" --msgstr "ਜਾਬ ਚੋਣ" -+msgstr "ਕੋਈ ਇੰਸਟਾਲ-ਯੋਗ ਚੋਣਾਂ ਨਹੀਂ ਹਨ" - --#: ../system-config-printer.py:6520 --#, fuzzy, python-format -+#: ../system-config-printer.py:6468 -+#, python-format - msgid "adding printer %s" --msgstr "ਪਰਿੰਟਰ ਸੰਰਚਨਾ" -+msgstr "ਪ੍ਰਿੰਟਰ %s ਜੋੜ ਰਿਹਾ ਹੈ" - --#: ../system-config-printer.py:6669 -+#: ../system-config-printer.py:6617 - msgid "Would you like to print a test page?" --msgstr "" -+msgstr "ਕੀ ਤੁਸੀਂ ਜਾਂਚ ਸਫਾ ਛਾਪਣਾ ਚਾਹੁੰਦੇ ਹੋ?" - --#: ../system-config-printer.py:6722 --#, fuzzy -+#: ../system-config-printer.py:6670 - msgid "Install driver" --msgstr "ਡਰਾਇਵਰ ਗੁੰਮ ਹੈ" -+msgstr "ਡਰਾਈਵਰ ਇੰਸਟਾਲ ਕਰੋ" - --#: ../system-config-printer.py:6723 ../troubleshoot/CheckPPDSanity.py:131 -+#: ../system-config-printer.py:6671 ../troubleshoot/CheckPPDSanity.py:131 - #, python-format - msgid "Printer '%s' requires the %s package but it is not currently installed." - msgstr "" - --#: ../system-config-printer.py:6739 -+#: ../system-config-printer.py:6687 - msgid "Missing driver" --msgstr "ਡਰਾਇਵਰ ਗੁੰਮ ਹੈ" -+msgstr "ਡਰਾਈਵਰ ਗੁੰਮ ਹੈ" - --#: ../system-config-printer.py:6740 -+#: ../system-config-printer.py:6688 - #, python-format - msgid "" - "Printer '%s' requires the '%s' program but it is not currently installed. " -@@ -1558,14 +1508,12 @@ msgid "" - msgstr "" - - #: ../glade/AboutDialog.glade.h:1 --#, fuzzy - msgid "A CUPS configuration tool." --msgstr "ਪ੍ਰਿੰਟਰ ਸੰਰਚਨਾ - %s" -+msgstr "ਇੱਕ CUPS ਸੰਰਚਨਾ ਜੰਤਰ" - - #: ../glade/AboutDialog.glade.h:2 --#, fuzzy - msgid "Copyright © 2006-2008 Red Hat, Inc." --msgstr "Copyright 2006, 2007 Red Hat, Inc." -+msgstr "ਹੱਕ ਰਾਖਵੇਂ 2006, 2007 Red Hat, Inc." - - #: ../glade/AboutDialog.glade.h:3 - msgid "" -@@ -1585,51 +1533,45 @@ msgid "" - msgstr "" - - #: ../glade/AboutDialog.glade.h:8 --#, fuzzy - msgid "system-config-printer" --msgstr "System-Config-Printer" -+msgstr "system-config-printer" - - #. TRANSLATORS: Replace this string with your names, one name per line. Thank you very much for your effort on translating system-config-printer and all our other tools! - #: ../glade/AboutDialog.glade.h:10 - msgid "translator-credits" --msgstr "" -+msgstr "ਜਸਵਿੰਦਰ ਸਿੰਘ " - - #: ../glade/ConnectDialog.glade.h:1 --#, fuzzy - msgid "CUPS _server:" --msgstr "CUPS ਸਰਵਰ:" -+msgstr "CUPS ਸਰਵਰ(_S):" - - #: ../glade/ConnectDialog.glade.h:2 - msgid "Connect to CUPS server" --msgstr "" -+msgstr "CUPS ਸਰਵਰ ਨਾਲ ਜੁੜੋ" - - #: ../glade/ConnectDialog.glade.h:3 --#, fuzzy - msgid "Require _encryption" --msgstr "ਜੰਤਰ ਵੇਰਵਾ:" -+msgstr "ਲੋੜੀਂਦੀ ਪ੍ਰਮਾਣਿਕਤਾ(_E)" - - #: ../glade/ConnectingDialog.glade.h:3 - msgid "Connecting to CUPS server" --msgstr "" -+msgstr "CUPS ਸਰਵਰ ਨਾਲ ਜੁੜ ਰਿਹਾ ਹੈ" - - #: ../glade/ConnectingDialog.glade.h:4 --#, fuzzy - msgid "Connecting to CUPS server" --msgstr "" --"ਸਰਵਰ ਨਾਲ ਜੁੜ ਰਿਹਾ ਹੈ:\n" --"%s" -+msgstr "CUPS ਸਰਵਰ ਨਾਲ ਜੁੜ ਰਿਹਾ ਹੈ" - - #: ../glade/InstallDialog.glade.h:1 - msgid "_Install" --msgstr "" -+msgstr "ਇੰਸਟਾਲ(_I)" - - #: ../glade/IPPBrowseDialog.glade.h:1 - msgid "IPP Browser" --msgstr "" -+msgstr "IPP ਬਰਾਊਜ਼ਰ" - - #: ../glade/JobsWindow.glade.h:1 - msgid "Show _completed jobs" --msgstr "" -+msgstr "ਮੁਕੰਮਲ ਜੌਬਾਂ ਵੇਖਾਓ(_C)" - - #: ../glade/JobsWindow.glade.h:2 - msgid "_File" -@@ -1637,26 +1579,25 @@ msgstr "ਫਾਇਲ(_F)" - - #: ../glade/JobsWindow.glade.h:3 - msgid "_Job" --msgstr "" -+msgstr "ਜੌਬ(_J)" - - #: ../glade/JobsWindow.glade.h:4 - msgid "_Refresh" --msgstr "" -+msgstr "ਮੁੜ-ਤਾਜ਼ਾ(_R)" - - #: ../glade/JobsWindow.glade.h:5 ../glade/PrintersWindow.glade.h:17 - msgid "_View" --msgstr "" -+msgstr "ਵੇਖੋ(_V)" - - #: ../glade/NewPrinterName.glade.h:1 - msgid "Copy Printer" --msgstr "" -+msgstr "ਕਾਪੀ ਪ੍ਰਿੰਟਰ" - - #: ../glade/NewPrinterName.glade.h:2 - msgid "New name for the printer" --msgstr "ਪਰਿੰਟਰ ਲਈ ਨਵਾਂ ਨਾਂ" -+msgstr "ਪ੍ਰਿੰਟਰ ਲਈ ਨਵਾਂ ਨਾਂ" - - #: ../glade/NewPrinterWindow.glade.h:1 --#, fuzzy - msgid "Authentication" - msgstr "ਪ੍ਰਮਾਣਕਿਤਾ" - -@@ -1669,121 +1610,106 @@ msgid "Description (optional)" - msgstr "ਵੇਰਵਾ (ਚੋਣਵਾਂ)" - - #: ../glade/NewPrinterWindow.glade.h:4 --#, fuzzy - msgid "Enter device URI" --msgstr "ਜੰਤਰ URI ਦਿਓ" -+msgstr "ਜੰਤਰ URI ਦਿਓ" - - #: ../glade/NewPrinterWindow.glade.h:5 --#, fuzzy --msgid "HP Printer (HPLIP) via network" --msgstr "ਪਰਿੰਟਰ ਨਾਂ" -- --#: ../glade/NewPrinterWindow.glade.h:6 --#, fuzzy - msgid "IPP Printer" --msgstr "ਪਰਿੰਟਰ ਨਾਂ" -+msgstr "IPP ਪ੍ਰਿੰਟਰ" - --#: ../glade/NewPrinterWindow.glade.h:7 --#, fuzzy -+#: ../glade/NewPrinterWindow.glade.h:6 - msgid "License Terms" --msgstr "ਪਰਿੰਟਰ ਨਾਂ" -+msgstr "ਲਾਈਸੈੰਸ ਸ਼ਰਤਾਂ" - --#: ../glade/NewPrinterWindow.glade.h:8 -+#: ../glade/NewPrinterWindow.glade.h:7 - msgid "Location of the LPD network printer" --msgstr "" -+msgstr "LPD ਨੈੱਟਵਰਕ ਪ੍ਰਿੰਟਰ ਦਾ ਟਿਕਾਣਾ" - --#: ../glade/NewPrinterWindow.glade.h:9 -+#: ../glade/NewPrinterWindow.glade.h:8 - msgid "Location of the network printer" --msgstr "" -+msgstr "ਨੈੱਟਵਰਕ ਪ੍ਰਿੰਟਰ ਦਾ ਟਿਕਾਣਾ" - --#: ../glade/NewPrinterWindow.glade.h:10 -+#: ../glade/NewPrinterWindow.glade.h:9 - msgid "Location (optional)" - msgstr "ਟਿਕਾਣਾ (ਚੋਣਵਾਂ)" - --#: ../glade/NewPrinterWindow.glade.h:11 --#, fuzzy -+#: ../glade/NewPrinterWindow.glade.h:10 - msgid "Network Printer" --msgstr "ਨਵਾਂ ਪਰਿੰਟਰ" -+msgstr "ਨੈੱਟਵਰਕ ਪ੍ਰਿੰਟਰ" - --#: ../glade/NewPrinterWindow.glade.h:12 --#, fuzzy -+#: ../glade/NewPrinterWindow.glade.h:11 - msgid "Note" --msgstr "ਹਾਲਤ" -+msgstr "ਸੂਚਨਾ" - --#: ../glade/NewPrinterWindow.glade.h:13 --#, fuzzy -+#: ../glade/NewPrinterWindow.glade.h:12 - msgid "Output Quality" --msgstr "ਹਾਲਤ" -+msgstr "ਆਊਟਪੁੱਟ ਕੁਆਲਟੀ" - --#: ../glade/NewPrinterWindow.glade.h:14 -+#: ../glade/NewPrinterWindow.glade.h:13 - msgid "Printer Name" --msgstr "ਪਰਿੰਟਰ ਨਾਂ" -+msgstr "ਪ੍ਰਿੰਟਰ ਨਾਂ" - --#: ../glade/NewPrinterWindow.glade.h:15 --#, fuzzy -+#: ../glade/NewPrinterWindow.glade.h:14 - msgid "SMB Printer" --msgstr "ਪਰਿੰਟਰ ਨਾਂ" -+msgstr "SMB ਪ੍ਰਿੰਟਰ" - --#: ../glade/NewPrinterWindow.glade.h:16 --#, fuzzy -+#: ../glade/NewPrinterWindow.glade.h:15 - msgid "Select Driver" --msgstr "ਮੂਲ ਪਰਿੰਟਰ" -+msgstr "ਡਰਾਈਵਰ ਚੁਣੋ" - --#: ../glade/NewPrinterWindow.glade.h:17 -+#: ../glade/NewPrinterWindow.glade.h:16 - msgid "Settings of the serial port" --msgstr "" -+msgstr "ਸੀਰੀਅਲ ਪੋਰਟ ਦੀ ਸੈਟਿੰਗ" - --#: ../glade/NewPrinterWindow.glade.h:18 -+#: ../glade/NewPrinterWindow.glade.h:17 - msgid "smb://[workgroup/]server[:port]/printer" - msgstr "smb://[workgroup/]server[:port]/printer" - --#: ../glade/NewPrinterWindow.glade.h:19 -+#: ../glade/NewPrinterWindow.glade.h:18 - msgid "Choose Class Members" --msgstr "" -+msgstr "ਕਲਾਸ ਮੈਂਬਰ ਚੁਣੋ" - --#: ../glade/NewPrinterWindow.glade.h:20 -+#: ../glade/NewPrinterWindow.glade.h:19 - msgid "Choose Driver" --msgstr "" -+msgstr "ਡਰਾਈਵਰ ਚੁਣੋ" - --#: ../glade/NewPrinterWindow.glade.h:21 -+#: ../glade/NewPrinterWindow.glade.h:20 - msgid "Describe Printer" --msgstr "" -+msgstr "ਪ੍ਰਿੰਟਰ ਦਿਓ" - --#: ../glade/NewPrinterWindow.glade.h:22 -+#: ../glade/NewPrinterWindow.glade.h:21 - msgid "Existing Settings" --msgstr "" -+msgstr "ਮੌਜੂਦਾ ਸੈਟਿੰਗ" - --#: ../glade/NewPrinterWindow.glade.h:23 -+#: ../glade/NewPrinterWindow.glade.h:22 - msgid "Installable Options" --msgstr "" -+msgstr "ਇੰਸਟਾਲਯੋਗ ਚੋਣਾਂ" - --#: ../glade/NewPrinterWindow.glade.h:24 -+#: ../glade/NewPrinterWindow.glade.h:23 - msgid "Select Device" --msgstr "" -+msgstr "ਜੰਤਰ ਚੁਣੋ" - --#: ../glade/NewPrinterWindow.glade.h:25 -+#: ../glade/NewPrinterWindow.glade.h:24 - msgid "Baud Rate" --msgstr "" -+msgstr "ਬੈਡ ਰੇਟ" - --#: ../glade/NewPrinterWindow.glade.h:26 -+#: ../glade/NewPrinterWindow.glade.h:25 - msgid "Browse..." --msgstr "" -+msgstr "ਬਰਾਊਜ਼..." - --#: ../glade/NewPrinterWindow.glade.h:27 --#, fuzzy -+#: ../glade/NewPrinterWindow.glade.h:26 - msgid "Comments..." --msgstr "ਟਿੱਪਣੀ" -+msgstr "ਟਿੱਪਣੀਆਂ..." - --#: ../glade/NewPrinterWindow.glade.h:28 --#, fuzzy -+#: ../glade/NewPrinterWindow.glade.h:27 - msgid "Connection" --msgstr "ਜੁੜ ਰਿਹਾ ਹੈ" -+msgstr "ਕੁਨੈਕਸ਼ਨ" - --#: ../glade/NewPrinterWindow.glade.h:29 -+#: ../glade/NewPrinterWindow.glade.h:28 - msgid "Data Bits" - msgstr "ਡਾਟਾ ਬਿੱਟ" - --#: ../glade/NewPrinterWindow.glade.h:30 -+#: ../glade/NewPrinterWindow.glade.h:29 - msgid "" - "Default\n" - "1200\n" -@@ -1805,7 +1731,7 @@ msgstr "" - "57600\n" - "115200" - --#: ../glade/NewPrinterWindow.glade.h:39 -+#: ../glade/NewPrinterWindow.glade.h:38 - msgid "" - "Default\n" - "8\n" -@@ -1815,15 +1741,19 @@ msgstr "" - "8\n" - "7" - --#: ../glade/NewPrinterWindow.glade.h:42 -+#: ../glade/NewPrinterWindow.glade.h:41 - msgid "" - "Default\n" - "None\n" - "Odd\n" - "Even" - msgstr "" -+"ਮੂਲ\n" -+"ਕੋਈ ਨਹੀਂ\n" -+"ਟਾਂਕ\n" -+"ਜਿਸਤ" - --#: ../glade/NewPrinterWindow.glade.h:46 -+#: ../glade/NewPrinterWindow.glade.h:45 - msgid "" - "Default\n" - "None\n" -@@ -1831,201 +1761,194 @@ msgid "" - "RTS/CTS (Hardware)\n" - "DTR/DSR (Hardware)" - msgstr "" -+"ਮੂਲ\n" -+"ਕੋਈ ਨਹੀਂ\n" -+"XON/XOFF (ਸਾਫਟਵੇਅਰ)\n" -+"RTS/CTS (ਹਾਰਡਵੇਅਰ)\n" -+"DTR/DSR (ਹਾਰਡਵੇਅਰ)" - --#: ../glade/NewPrinterWindow.glade.h:51 -+#: ../glade/NewPrinterWindow.glade.h:50 - #: ../glade/PrinterPropertiesDialog.glade.h:35 - msgid "Description:" - msgstr "ਵੇਰਵਾ:" - --#: ../glade/NewPrinterWindow.glade.h:52 ../troubleshoot/DeviceListed.py:40 -+#: ../glade/NewPrinterWindow.glade.h:51 ../troubleshoot/DeviceListed.py:40 - msgid "Device URI" - msgstr "ਜੰਤਰ URI" - --#: ../glade/NewPrinterWindow.glade.h:53 -+#: ../glade/NewPrinterWindow.glade.h:52 - msgid "Device description." - msgstr "ਜੰਤਰ ਵੇਰਵਾ:" - --#: ../glade/NewPrinterWindow.glade.h:54 -+#: ../glade/NewPrinterWindow.glade.h:53 - msgid "DirectJet" - msgstr "DirectJet" - --#: ../glade/NewPrinterWindow.glade.h:56 --#, fuzzy -+#: ../glade/NewPrinterWindow.glade.h:55 - msgid "Driver details" --msgstr "ਡਰਾਈਵਰ" -+msgstr "ਡਰਾਈਵਰ ਵੇਰਵਾ" - --#: ../glade/NewPrinterWindow.glade.h:57 -+#: ../glade/NewPrinterWindow.glade.h:56 - msgid "Empty" - msgstr "ਖਾਲੀ ਹੈ" - --#: ../glade/NewPrinterWindow.glade.h:58 -+#: ../glade/NewPrinterWindow.glade.h:57 - msgid "Find _Queue..." --msgstr "" -+msgstr "ਕਤਾਰ ਲੱਭੋ(_Q)..." - --#: ../glade/NewPrinterWindow.glade.h:59 -+#: ../glade/NewPrinterWindow.glade.h:58 - msgid "Flow Control" - msgstr "ਫਲੋ ਕੰਟਰੋਲ" - --#: ../glade/NewPrinterWindow.glade.h:60 -+#: ../glade/NewPrinterWindow.glade.h:59 - msgid "" - "For the printer you have selected there are drivers available for download." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:61 -+#: ../glade/NewPrinterWindow.glade.h:60 - msgid "Free software" --msgstr "" -+msgstr "ਫਰੀ ਸਾਫਟਵੇਅਰ" - --#: ../glade/NewPrinterWindow.glade.h:62 -+#: ../glade/NewPrinterWindow.glade.h:61 - msgid "Graphics:" --msgstr "" -+msgstr "ਗਰਾਫਿਕਸ:" - --#: ../glade/NewPrinterWindow.glade.h:63 --#, fuzzy -+#: ../glade/NewPrinterWindow.glade.h:62 - msgid "Host:" --msgstr "ਮੇਜ਼ਬਾਨ ਨਾਂ" -+msgstr "ਮੇਜ਼ਬਾਨ:" - --#: ../glade/NewPrinterWindow.glade.h:64 -+#: ../glade/NewPrinterWindow.glade.h:63 - msgid "Human-readable description such as \"HP LaserJet with Duplexer\"" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:65 -+#: ../glade/NewPrinterWindow.glade.h:64 - msgid "Human-readable location such as \"Lab 1\"" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:67 -+#: ../glade/NewPrinterWindow.glade.h:66 - msgid "LPD" - msgstr "LPD" - --#: ../glade/NewPrinterWindow.glade.h:68 -+#: ../glade/NewPrinterWindow.glade.h:67 - msgid "License:" --msgstr "" -+msgstr "ਲਾਈਸੈੰਸ:" - --#: ../glade/NewPrinterWindow.glade.h:69 --#, fuzzy -+#: ../glade/NewPrinterWindow.glade.h:68 - msgid "Line art:" --msgstr "ਪਰਿੰਟਰ ਹਾਲਤ:" -+msgstr "ਲਾਈਨ ਆਰਟ:" - --#: ../glade/NewPrinterWindow.glade.h:70 --#, fuzzy -+#: ../glade/NewPrinterWindow.glade.h:69 - msgid "Local Driver" --msgstr "ਲੋਕਲ ਪਰਿੰਟਰ" -+msgstr "ਲੋਕਲ ਡਰਾਈਵਰ" - --#: ../glade/NewPrinterWindow.glade.h:71 --#, fuzzy -+#: ../glade/NewPrinterWindow.glade.h:70 - msgid "Make and model:" --msgstr "make ਅਤੇ ਮਾਡਲ:" -+msgstr "Make ਅਤੇ ਮਾਡਲ:" - --#: ../glade/NewPrinterWindow.glade.h:72 -+#: ../glade/NewPrinterWindow.glade.h:71 - msgid "Manufacturer" --msgstr "" -+msgstr "ਨਿਰਮਾਤਾ" - --#: ../glade/NewPrinterWindow.glade.h:73 --#, fuzzy -+#: ../glade/NewPrinterWindow.glade.h:72 - msgid "Network" --msgstr "ਨਵਾਂ ਪਰਿੰਟਰ" -+msgstr "ਨੈੱਟਵਰਕ" - --#: ../glade/NewPrinterWindow.glade.h:75 -+#: ../glade/NewPrinterWindow.glade.h:74 - msgid "No, I do not accept this license" --msgstr "" -+msgstr "ਨਹੀਂ, ਮੈਂ ਇਸ ਲਾਈਸੈੰਸ ਨੂੰ ਸਵੀਕਾਰ ਨਹੀਂ ਕਰਦਾ" - --#: ../glade/NewPrinterWindow.glade.h:76 -+#: ../glade/NewPrinterWindow.glade.h:75 - msgid "Parity" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:78 -+#: ../glade/NewPrinterWindow.glade.h:77 - msgid "Patented algorithms" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:79 -+#: ../glade/NewPrinterWindow.glade.h:78 - msgid "Photo:" --msgstr "" -+msgstr "ਫੋਟੋ:" - --#: ../glade/NewPrinterWindow.glade.h:80 --#, fuzzy -+#: ../glade/NewPrinterWindow.glade.h:79 - msgid "Port number:" --msgstr "ਪੋਰਟ ਨੰਬਰ" -+msgstr "ਪੋਰਟ ਨੰਬਰ:" - --#: ../glade/NewPrinterWindow.glade.h:81 -+#: ../glade/NewPrinterWindow.glade.h:80 - msgid "" - "PostScript Printer Description (PPD) files can often be found on the driver " - "disk that comes with the printer. For PostScript printers they are often " - "part of the Windows® driver." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:82 --#, fuzzy -+#: ../glade/NewPrinterWindow.glade.h:81 - msgid "Printer model:" --msgstr "ਪਰਿੰਟਰ ਨਾਂ" -+msgstr "ਪ੍ਰਿੰਟਰ ਮਾਡਲ:" - --#: ../glade/NewPrinterWindow.glade.h:83 -+#: ../glade/NewPrinterWindow.glade.h:82 - msgid "Probe" - msgstr "ਜਾਂਚ" - --#: ../glade/NewPrinterWindow.glade.h:84 --#, fuzzy -+#: ../glade/NewPrinterWindow.glade.h:83 - msgid "Prompt user if authentication is required" --msgstr "ਪ੍ਰਮਾਣਕਿਤਾ" -+msgstr "ਉਪਭੋਗੀ ਨੂੰ ਪੁੱਛਿਆ ਜਾਂਦਾ ਹੈ ਜੇ ਪ੍ਰਮਾਣਿਕਤਾ ਦੀ ਲੋੜ ਹੋਵੇ" - --#: ../glade/NewPrinterWindow.glade.h:85 -+#: ../glade/NewPrinterWindow.glade.h:84 - msgid "Provide PPD file" --msgstr "" -+msgstr "PPD ਫਾਇਲ ਦਿਓ" - --#: ../glade/NewPrinterWindow.glade.h:86 -+#: ../glade/NewPrinterWindow.glade.h:85 - msgid "Queue:" --msgstr "" -+msgstr "ਕਤਾਰ:" - --#: ../glade/NewPrinterWindow.glade.h:87 -+#: ../glade/NewPrinterWindow.glade.h:86 - msgid "SCSI" - msgstr "SCSI" - --#: ../glade/NewPrinterWindow.glade.h:88 -+#: ../glade/NewPrinterWindow.glade.h:87 - msgid "SMB" - msgstr "SMB" - --#: ../glade/NewPrinterWindow.glade.h:89 -+#: ../glade/NewPrinterWindow.glade.h:88 - msgid "Search for a printer driver to download" --msgstr "" -+msgstr "ਪ੍ਰਿੰਟਰ ਡਰਾਈਵਰ ਡਾਊਨਲੋਡ ਕਰਨ ਲਈ ਖੋਜ ਕਰੋ" - --#: ../glade/NewPrinterWindow.glade.h:90 --#, fuzzy -+#: ../glade/NewPrinterWindow.glade.h:89 - msgid "Searching..." --msgstr "ਪਰਿੰਟਰ ਲਈ ਨਵਾਂ ਨਾਂ" -+msgstr "ਖੋਜ ਰਿਹਾ ਹੈ..." - --#: ../glade/NewPrinterWindow.glade.h:91 -+#: ../glade/NewPrinterWindow.glade.h:90 - msgid "Select A File" - msgstr "ਇੱਕ ਫਾਇਲ ਚੁਣੋ" - --#: ../glade/NewPrinterWindow.glade.h:92 -+#: ../glade/NewPrinterWindow.glade.h:91 - msgid "Select printer from database" --msgstr "" -+msgstr "ਡਾਟਾਬੇਸ ਵਿੱਚੋਂ ਇੱਕ ਪ੍ਰਿੰਟਰ ਚੁਣੋ" - --#: ../glade/NewPrinterWindow.glade.h:93 -+#: ../glade/NewPrinterWindow.glade.h:92 - msgid "Serial" - msgstr "ਸੀਰੀਅਲ" - --#: ../glade/NewPrinterWindow.glade.h:94 --#, fuzzy -+#: ../glade/NewPrinterWindow.glade.h:93 - msgid "Set authentication details now" --msgstr "ਪ੍ਰਮਾਣਕਿਤਾ" -+msgstr "ਹੁਣ ਪ੍ਰਮਾਣਕਿਤਾ ਵੇਰਵਾ ਦਿਓ" - --#: ../glade/NewPrinterWindow.glade.h:95 -+#: ../glade/NewPrinterWindow.glade.h:94 - msgid "Short name for this printer such as \"laserjet\"" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:96 -+#: ../glade/NewPrinterWindow.glade.h:95 - msgid "Supplier:" --msgstr "" -+msgstr "ਸਪਲਾਇਰ:" - --#: ../glade/NewPrinterWindow.glade.h:97 -+#: ../glade/NewPrinterWindow.glade.h:96 - msgid "Support:" --msgstr "" -+msgstr "ਸਪੋਰਟ:" - --#: ../glade/NewPrinterWindow.glade.h:98 --#, fuzzy -+#: ../glade/NewPrinterWindow.glade.h:97 - msgid "Text:" --msgstr "ਜਾਂਚ ਸਫ਼ਾ ਛਾਪੋ" -+msgstr "ਪਾਠ:" - --#: ../glade/NewPrinterWindow.glade.h:99 -+#: ../glade/NewPrinterWindow.glade.h:98 - msgid "" - "The foomatic printer database contains various manufacturer provided " - "PostScript Printer Description (PPD) files and also can generate PPD files " -@@ -2034,77 +1957,75 @@ msgid "" - "printer." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:100 -+#: ../glade/NewPrinterWindow.glade.h:99 - msgid "" - "These drivers do not come from your operating system supplier and will not " - "be covered by their commercial support. See the support and license terms " - "of the driver's supplier." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:101 -+#: ../glade/NewPrinterWindow.glade.h:100 - msgid "" - "This driver supports additional hardware that may be installed in the " - "printer." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:102 -+#: ../glade/NewPrinterWindow.glade.h:101 - msgid "" - "This is done by assuming that options with the same name do have the same " - "meaning. Settings of options that are not present in the new PPD will be " - "lost and options only present in the new PPD will be set to default." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:103 -+#: ../glade/NewPrinterWindow.glade.h:102 - msgid "" - "This way all current option settings will be lost. The default settings of " - "the new PPD will be used. " - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:104 -+#: ../glade/NewPrinterWindow.glade.h:103 - msgid "Try to copy the option settings over from the old PPD. " - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:105 -+#: ../glade/NewPrinterWindow.glade.h:104 - msgid "URI:" --msgstr "" -+msgstr "URI:" - --#: ../glade/NewPrinterWindow.glade.h:107 -+#: ../glade/NewPrinterWindow.glade.h:106 - msgid "Use the new PPD (Postscript Printer Description) as is." --msgstr "" -+msgstr "ਨਵੀਂ PPD (ਪੋਸਟਸਕਰਪਿਟ ਪ੍ਰਿੰਟਰ ਡਿਸਕਰਿਪਸ਼ਨ) ਨੂੰ ਉਸੇ ਤਰਾਂ ਹੀ ਵਰਤੋ।" - --#: ../glade/NewPrinterWindow.glade.h:109 -+#: ../glade/NewPrinterWindow.glade.h:108 - msgid "" - "With this choice no driver download will be performed. In the next steps a " - "locally installed driver will be selected." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:110 --#, fuzzy -+#: ../glade/NewPrinterWindow.glade.h:109 - msgid "Yes, I accept this license" --msgstr "ਕੰਮ ਸਵੀਕਾਰ ਕਰ ਰਿਹਾ ਹੈ" -+msgstr "ਹਾਂ, ਮੈਂ ਇਹ ਲਾਈਸੈੰਸ ਸਵੀਕਾਰ ਕਰਦਾ ਹਾਂ" - --#: ../glade/NewPrinterWindow.glade.h:111 -+#: ../glade/NewPrinterWindow.glade.h:110 - msgid "_Search" --msgstr "" -+msgstr "ਖੋਜ(_S)" - --#: ../glade/NewPrinterWindow.glade.h:112 -+#: ../glade/NewPrinterWindow.glade.h:111 - msgid "_Verify..." - msgstr "ਜਾਂਚ(_V)..." - --#: ../glade/NewPrinterWindow.glade.h:113 -+#: ../glade/NewPrinterWindow.glade.h:112 - #: ../glade/PrinterPropertiesDialog.glade.h:128 - msgid "move left" --msgstr "" -+msgstr "ਖੱਬੇ ਜਾਓ" - --#: ../glade/NewPrinterWindow.glade.h:114 -+#: ../glade/NewPrinterWindow.glade.h:113 - #: ../glade/PrinterPropertiesDialog.glade.h:129 --#, fuzzy - msgid "move right" --msgstr "ਕਾਪੀਰਾਈਟ" -+msgstr "ਸੱਜੇ ਜਾਓ" - - #: ../glade/PrinterPropertiesDialog.glade.h:1 - msgid " " --msgstr "" -+msgstr " " - - #: ../glade/PrinterPropertiesDialog.glade.h:2 - msgid "" -@@ -2115,33 +2036,36 @@ msgid "" - "9\n" - "16" - msgstr "" -+"1\n" -+"2\n" -+"4\n" -+"6\n" -+"9\n" -+"16" - - #: ../glade/PrinterPropertiesDialog.glade.h:8 - msgid "72 points per inch" --msgstr "" -+msgstr "ਪ੍ਰਤੀ ਇੰਚ 72 ਪੁਆਂਇਟ" - - #: ../glade/PrinterPropertiesDialog.glade.h:9 - msgid "Banner" - msgstr "ਬੈਨਰ" - - #: ../glade/PrinterPropertiesDialog.glade.h:10 --#, fuzzy - msgid "Common Options" --msgstr "ਕੁਨੈਕਸ਼ਨ ਚੋਣ" -+msgstr "ਆਮ ਚੋਣਾਂ" - - #: ../glade/PrinterPropertiesDialog.glade.h:11 --#, fuzzy - msgid "Image Options" --msgstr "ਸਥਾਪਨ" -+msgstr "ਈਮੇਜ਼ ਚੋਣਾਂ" - - #: ../glade/PrinterPropertiesDialog.glade.h:12 --#, fuzzy - msgid "Ink/Toner Levels" --msgstr "ਬੈਨਰ" -+msgstr "ਸਿਆਹੀ/ਟੋਨਰ ਲੈਵਲ" - - #: ../glade/PrinterPropertiesDialog.glade.h:13 - msgid "Other Options (Advanced)" --msgstr "" -+msgstr "ਹੋਰ ਚੋਣਾਂ (ਤਕਨੀਕੀ)" - - #: ../glade/PrinterPropertiesDialog.glade.h:14 - msgid "Policies" -@@ -2156,31 +2080,30 @@ msgid "State" - msgstr "ਹਾਲਤ" - - #: ../glade/PrinterPropertiesDialog.glade.h:17 --#, fuzzy - msgid "Status Messages" --msgstr "ਹਾਲਤ" -+msgstr "ਹਾਲਤ ਸੁਨੇਹੇ" - - #: ../glade/PrinterPropertiesDialog.glade.h:18 - msgid "Tests and Maintenance" --msgstr "" -+msgstr "ਜਾਂਚ ਅਤੇ ਨਿਗਰਾਨੀ" - - #: ../glade/PrinterPropertiesDialog.glade.h:19 --#, fuzzy - msgid "Text Options" --msgstr "ਸਥਾਪਨ" -+msgstr "ਪਾਠ ਚੋਣਾਂ" - - #: ../glade/PrinterPropertiesDialog.glade.h:20 - msgid "" - "Not published\n" - "See server settings" - msgstr "" -+"ਪਬਲਿਸ਼ ਨਹੀਂ ਕੀਤਾ\n" -+"ਸਰਵਰ ਸੈਟਿੰਗ ਵੇਖੋ" - - #: ../glade/PrinterPropertiesDialog.glade.h:22 - msgid "Accepting jobs" - msgstr "ਕੰਮ ਸਵੀਕਾਰ ਕਰ ਰਿਹਾ ਹੈ" - - #: ../glade/PrinterPropertiesDialog.glade.h:23 --#, fuzzy - msgid "Access Control" - msgstr "ਪਹੁੰਚ ਕੰਟਰੋਲ" - -@@ -2190,15 +2113,15 @@ msgstr "ਮੈਂਬਰ ਜੋੜੋ ਜ - - #: ../glade/PrinterPropertiesDialog.glade.h:25 - msgid "Allow printing for everyone except these users:" --msgstr "" -+msgstr "ਇਹਨਾਂ ਉਪਭੋਗੀਆਂ ਤੋਂ ਬਿਨਾਂ ਹਰੇਕ ਲਈ ਪ੍ਰਿੰਟਿੰਗ ਮਨਜੂਰ ਕਰੋ:" - - #: ../glade/PrinterPropertiesDialog.glade.h:26 - msgid "Bottom margin:" --msgstr "" -+msgstr "ਹੇਠਲਾ ਹਾਸ਼ੀਆ:" - - #: ../glade/PrinterPropertiesDialog.glade.h:27 - msgid "Brightness:" --msgstr "" -+msgstr "ਚਮਕਤਾ:" - - #: ../glade/PrinterPropertiesDialog.glade.h:28 - msgid "Change..." -@@ -2206,25 +2129,24 @@ msgstr "ਬਦਲੋ..." - - #: ../glade/PrinterPropertiesDialog.glade.h:29 - msgid "Characters per inch:" --msgstr "" -+msgstr "ਪ੍ਰਤੀ ਇੰਚ ਅੱਖਰ:" - - #. Not more than 25 characters - #: ../glade/PrinterPropertiesDialog.glade.h:31 - msgid "Clean Print Heads" --msgstr "" -+msgstr "ਪ੍ਰਿੰਟ ਹੈੱਡ ਸਾਫ ਕਰੋ" - - #: ../glade/PrinterPropertiesDialog.glade.h:32 --#, fuzzy - msgid "Columns:" --msgstr "ਟਿੱਪਣੀ:" -+msgstr "ਕਾਲਮ:" - - #: ../glade/PrinterPropertiesDialog.glade.h:33 - msgid "Copies:" --msgstr "" -+msgstr "ਨਕਲਾਂ:" - - #: ../glade/PrinterPropertiesDialog.glade.h:34 - msgid "Deny printing for everyone except these users:" --msgstr "" -+msgstr "ਇਹਨਾਂ ਉਪਭੋਗੀਆਂ ਤੋਂ ਬਿਨਾਂ ਹਰੇਕ ਲਈ ਪ੍ਰਿੰਟਿੰਗ ਰੱਦ ਕਰੋ:" - - #: ../glade/PrinterPropertiesDialog.glade.h:36 - msgid "Device URI:" -@@ -2236,36 +2158,35 @@ msgstr "ਯੋਗ ਹੈ" - - #: ../glade/PrinterPropertiesDialog.glade.h:38 - msgid "Ending Banner:" --msgstr "" -+msgstr "ਅੰਤਲਾ ਬੈਨਰ:" - - #: ../glade/PrinterPropertiesDialog.glade.h:39 - msgid "Error Policy: \t" --msgstr "" -+msgstr "ਗਲਤੀ ਨੀਤੀ: \t" - - #: ../glade/PrinterPropertiesDialog.glade.h:40 - msgid "Finishings:" --msgstr "" -+msgstr "ਮੁਕੰਮਲਤਾ:" - - #: ../glade/PrinterPropertiesDialog.glade.h:41 - msgid "Gamma:" --msgstr "" -+msgstr "ਗਾਮਾ:" - - #: ../glade/PrinterPropertiesDialog.glade.h:42 - msgid "Hold until:" --msgstr "" -+msgstr "ਜਦੋਂ ਤੱਕ ਰੋਕਣਾ:" - - #: ../glade/PrinterPropertiesDialog.glade.h:43 - msgid "Hue adjustment:" --msgstr "" -+msgstr "ਵੱਡੀ ਅਨੁਕੂਲਤਾ:" - - #: ../glade/PrinterPropertiesDialog.glade.h:44 - msgid "Ink/Toner Levels" --msgstr "" -+msgstr "ਸਿਆਹੀ/ਟੋਨਰ ਲੈਵਲ" - - #: ../glade/PrinterPropertiesDialog.glade.h:45 --#, fuzzy - msgid "Installed Options" --msgstr "ਪਰਿੰਟਰ ਚੋਣ" -+msgstr "ਇੰਸਟਾਲ ਚੋਣਾਂ" - - #: ../glade/PrinterPropertiesDialog.glade.h:46 - msgid "Job Options" -@@ -2277,7 +2198,7 @@ msgstr "" - - #: ../glade/PrinterPropertiesDialog.glade.h:48 - msgid "Left margin:" --msgstr "" -+msgstr "ਖੱਬਾ ਹਾਸ਼ੀਆ:" - - #: ../glade/PrinterPropertiesDialog.glade.h:49 - msgid "" -@@ -2290,6 +2211,14 @@ msgid "" - "Bottom to top, left to right\n" - "Bottom to top, right to left" - msgstr "" -+"ਖੱਬੇ ਤੋਂ ਸੱਜੇ, ਉੱਪਰ ਤੋਂ ਹੇਠਾਂ\n" -+"ਖੱਬੇ ਤੋਂ ਸੱਜੇ, ਹੇਠਾਂ ਤੋਂ ਉੱਪਰ\n" -+"ਸੱਜੇ ਤੋਂ ਖੱਬੇ, ਉੱਪਰ ਤੋਂ ਹੇਠਾਂ\n" -+"ਸੱਜੇ ਤੋਂ ਖੱਬੇ, ਹੇਠਾਂ ਤੋਂ ਉੱਪਰ\n" -+"ਉੱਪਰ ਤੋਂ ਹੇਠਾਂ, ਖੱਬੇ ਤੋਂ ਸੱਜੇ\n" -+"ਉੱਪਰ ਤੋਂ ਹੇਠਾਂ, ਸੱਜੇ ਤੋਂ ਖੱਬੇ\n" -+"ਹੇਠਾਂ ਤੋਂ ਉੱਪਰ, ਖੱਬੇ ਤੋਂ ਸੱਜੇ\n" -+"ਹੇਠਾਂ ਤੋਂ ਉੱਪਰ, ਸੱਜੇ ਤੋਂ ਖੱਬੇ" - - #: ../glade/PrinterPropertiesDialog.glade.h:57 - msgid "Lines per inch:" -@@ -2392,9 +2321,8 @@ msgstr "" - - #. Not more than 25 characters - #: ../glade/PrinterPropertiesDialog.glade.h:106 --#, fuzzy - msgid "Print Self-Test Page" --msgstr "ਜਾਂਚ ਸਫ਼ਾ ਛਾਪੋ" -+msgstr "ਸਵੈ-ਜਾਂਚ ਸਫਾ ਛਾਪੋ" - - #. Not more than 25 characters - #: ../glade/PrinterPropertiesDialog.glade.h:108 -@@ -2403,13 +2331,12 @@ msgid "Print Test Page" - msgstr "ਜਾਂਚ ਸਫ਼ਾ ਛਾਪੋ" - - #: ../glade/PrinterPropertiesDialog.glade.h:110 --#, fuzzy - msgid "Printer Properties" --msgstr "ਪਰਿੰਟਰ ਚੋਣ" -+msgstr "ਪ੍ਰਿੰਟਰ ਵਿਸ਼ੇਸ਼ਤਾਵਾਂ" - - #: ../glade/PrinterPropertiesDialog.glade.h:111 - msgid "Printer State:" --msgstr "ਪਰਿੰਟਰ ਹਾਲਤ:" -+msgstr "ਪ੍ਰਿੰਟਰ ਹਾਲਤ:" - - #: ../glade/PrinterPropertiesDialog.glade.h:112 - msgid "Reset" -@@ -2459,9 +2386,8 @@ msgid "Starting Banner:" - msgstr "" - - #: ../glade/PrinterPropertiesDialog.glade.h:123 --#, fuzzy - msgid "There are no status messages for this printer." --msgstr "ਪਰਿੰਟਰ ਲਈ ਨਵਾਂ ਨਾਂ" -+msgstr "ਇਸ ਪ੍ਰਿੰਟਰ ਲਈ ਕੋਈ ਹਾਲਤ ਸੁਨੇਹਾ ਨਹੀਂ ਹੈ" - - #: ../glade/PrinterPropertiesDialog.glade.h:124 - msgid "To add a new option, enter its name in the box below and click to add." -@@ -2488,21 +2414,16 @@ msgid "points" - msgstr "" - - #: ../glade/PrinterPropertiesDialog.glade.h:132 --#, fuzzy - msgid "user" - msgstr "ਉਪਭੋਗੀ" - - #: ../glade/PrintersWindow.glade.h:1 --#, fuzzy - msgid "Adjust server settings" --msgstr "ਮੁੱਢਲਾ ਸਰਵਰ ਸਥਾਪਨ" -+msgstr "ਸਰਵਰ ਸੈਟਿੰਗ ਠੀਕ ਕਰੋ" - - #: ../glade/PrintersWindow.glade.h:2 --#, fuzzy - msgid "Choose a different CUPS server" --msgstr "" --"ਸਰਵਰ ਨਾਲ ਜੁੜ ਰਿਹਾ ਹੈ:\n" --"%s" -+msgstr "ਹੋਰ CUPS ਸਰਵਰ ਚੁਣੋ" - - #: ../glade/PrintersWindow.glade.h:3 - msgid "Show printer groups" -@@ -2517,14 +2438,12 @@ msgid "System-Config-Printer" - msgstr "System-Config-Printer" - - #: ../glade/PrintersWindow.glade.h:6 --#, fuzzy - msgid "_Class" --msgstr "ਨਵੀਂ ਕਲਾਸ" -+msgstr "ਕਲਾਸ(_C)" - - #: ../glade/PrintersWindow.glade.h:7 --#, fuzzy - msgid "_Connect..." --msgstr "ਜੁੜ ਰਿਹਾ ਹੈ" -+msgstr "ਜੋੜੋ(_C)..." - - #: ../glade/PrintersWindow.glade.h:8 - msgid "_Discovered Printers" -@@ -2547,19 +2466,16 @@ msgid "_New" - msgstr "" - - #: ../glade/PrintersWindow.glade.h:13 --#, fuzzy - msgid "_Printer" --msgstr "ਪਰਿੰਟਰ" -+msgstr "ਪ੍ਰਿੰਟਰ(_P)" - - #: ../glade/PrintersWindow.glade.h:14 --#, fuzzy - msgid "_Server" --msgstr "ਸਰਵਰ ਤੇ ਜਾਓ(_G)" -+msgstr "ਸਰਵਰ(_S)" - - #: ../glade/PrintersWindow.glade.h:15 --#, fuzzy - msgid "_Settings..." --msgstr "ਸਥਾਪਨ" -+msgstr "ਸੈਟਿੰਗ(_S)..." - - #: ../glade/PrintersWindow.glade.h:16 - msgid "_Troubleshoot" -@@ -2582,9 +2498,8 @@ msgid "Allow printing from the _Internet - msgstr "" - - #: ../glade/ServerSettingsDialog.glade.h:5 --#, fuzzy - msgid "Basic Server Settings" --msgstr "ਮੁੱਢਲਾ ਸਰਵਰ ਸਥਾਪਨ" -+msgstr "ਮੁੱਢਲਾ ਸਰਵਰ ਸਥਾਪਨ" - - #: ../glade/ServerSettingsDialog.glade.h:6 - msgid "Save _debugging information for troubleshooting" -@@ -2603,9 +2518,8 @@ msgid "SMB Browser" - msgstr "" - - #: ../glade/statusicon_popupmenu.glade.h:1 --#, fuzzy - msgid "_Configure Printers" --msgstr "ਪਰਿੰਟਰ ਸੰਰਚਨਾ" -+msgstr "ਪ੍ਰਿੰਟਰ ਸੰਰਚਨਾ(_C)" - - #: ../glade/statusicon_popupmenu.glade.h:2 - msgid "_Hide" -@@ -2617,7 +2531,7 @@ msgstr "" - - #: ../system-config-printer.desktop.in.h:1 - msgid "Configure printers" --msgstr "ਪਰਿੰਟਰ ਸੰਰਚਨਾ" -+msgstr "ਪ੍ਰਿੰਟਰ ਸੰਰਚਨਾ" - - #: ../system-config-printer.desktop.in.h:2 - msgid "Printing" -@@ -2696,19 +2610,17 @@ msgid "Printer '%s' has no ink left." - msgstr "" - - #: ../statereason.py:101 --#, fuzzy - msgid "Printer off-line" --msgstr "ਪਰਿੰਟਰ ਚੋਣ" -+msgstr "ਪ੍ਰਿੰਟਰ ਆਫ-ਲਾਈਨ" - - #: ../statereason.py:102 --#, fuzzy, python-format -+#, python-format - msgid "Printer '%s' is currently off-line." --msgstr "ਪਰਿੰਟਰ ਚੋਣ" -+msgstr "ਪ੍ਰਿੰਟਰ '%s' ਮੌਜੂਦਾ ਰੂਪ ਵਿੱਚ ਆਫ-ਲਾਈਨ ਹੈ।" - - #: ../statereason.py:103 --#, fuzzy - msgid "Not connected?" --msgstr "ਜੁੜਿਆ ਨਹੀਂ" -+msgstr "ਜੁੜਿਆ ਨਹੀਂ?" - - #: ../statereason.py:104 - #, python-format -@@ -2716,9 +2628,8 @@ msgid "Printer '%s' may not be connected - msgstr "" - - #: ../statereason.py:105 ../statereason.py:121 --#, fuzzy - msgid "Printer error" --msgstr "ਸਰਵਰ ਗਲਤੀ" -+msgstr "ਪ੍ਰਿੰਟਰ ਗਲਤੀ" - - #: ../statereason.py:106 - #, python-format -@@ -2726,37 +2637,33 @@ msgid "There is a problem on printer '%s - msgstr "" - - #: ../statereason.py:117 --#, fuzzy - msgid "Printer report" --msgstr "ਪਰਿੰਟਰ ਚੋਣ" -+msgstr "ਪ੍ਰਿੰਟਰ ਰਿਪੋਰਟ" - - #: ../statereason.py:119 --#, fuzzy - msgid "Printer warning" --msgstr "ਛਾਪਣਾ" -+msgstr "ਪ੍ਰਿੰਟਰ ਚੇਤਾਵਨੀ" - - #: ../statereason.py:122 - #, python-format - msgid "Printer '%s': '%s'." --msgstr "" -+msgstr "ਪ੍ਰਿੰਟਰ '%s': '%s'।" - - #: ../timedops.py:101 ../timedops.py:169 - msgid "Please wait" --msgstr "" -+msgstr "ਉਡੀਕ ਕਰੋ ਜੀ" - - #: ../timedops.py:107 ../timedops.py:176 --#, fuzzy - msgid "Gathering information" --msgstr "ਟਿਕਾਣਾ:" -+msgstr "ਜਾਣਕਾਰੀ ਇਕੱਠੀ ਕਰ ਰਿਹਾ ਹੈ" - - #: ../ToolbarSearchEntry.py:73 --#, fuzzy - msgid "_Filter:" --msgstr "ਫਾਇਲ(_F)" -+msgstr "ਫਿਲਟਰ(_F):" - - #: ../troubleshoot/__init__.py:54 - msgid "Printing troubleshooter" --msgstr "" -+msgstr "ਪ੍ਰਿੰਟਿੰਗ ਸਮੱਸਿਆ-ਨਿਪਟਾਰਾ" - - #: ../troubleshoot/base.py:33 - msgid "" -@@ -2766,7 +2673,7 @@ msgstr "" - - #: ../troubleshoot/CheckLocalServerPublishing.py:28 - msgid "Server Not Exporting Printers" --msgstr "" -+msgstr "ਸਰਵਰ ਤੋਂ ਪ੍ਰਿੰਟਰ ਨਿਰਯਾਤ ਨਹੀਂ ਹੋ ਰਹੇ ਹਨ" - - #: ../troubleshoot/CheckLocalServerPublishing.py:29 - msgid "" -@@ -2781,13 +2688,12 @@ msgid "" - msgstr "" - - #: ../troubleshoot/CheckPPDSanity.py:44 ../applet.py:169 --#, fuzzy - msgid "Install" --msgstr "ਡਰਾਇਵਰ ਗੁੰਮ ਹੈ" -+msgstr "ਇੰਸਟਾਲ" - - #: ../troubleshoot/CheckPPDSanity.py:96 - msgid "Invalid PPD File" --msgstr "" -+msgstr "ਗਲਤ PD ਫਾਇਲ" - - #: ../troubleshoot/CheckPPDSanity.py:106 - #, python-format -@@ -2798,14 +2704,13 @@ msgstr "" - - #. Perhaps cupstestppd is not in the path. - #: ../troubleshoot/CheckPPDSanity.py:112 --#, fuzzy, python-format -+#, python-format - msgid "There is a problem with the PPD file for printer '%s'." --msgstr "CUPS ਕਾਰਵਾਈ ਦੌਰਾਨ ਗਲਤੀ ਸੀ: '%s'।" -+msgstr "ਪ੍ਰਿੰਟਰ '%s' ਲਈ PPD ਫਾਇਲ ਵਿੱਚ ਸਮੱਸਿਆ ਹੈ।" - - #: ../troubleshoot/CheckPPDSanity.py:122 --#, fuzzy - msgid "Missing Printer Driver" --msgstr "ਡਰਾਇਵਰ ਗੁੰਮ ਹੈ" -+msgstr "ਪ੍ਰਿੰਟਰ ਡਰਾਈਵਰ ਗੁੰਮ ਹੈ" - - #: ../troubleshoot/CheckPPDSanity.py:136 - #, python-format -@@ -2814,9 +2719,8 @@ msgid "" - msgstr "" - - #: ../troubleshoot/ChooseNetworkPrinter.py:29 --#, fuzzy - msgid "Choose Network Printer" --msgstr "ਨਵਾਂ ਪਰਿੰਟਰ" -+msgstr "ਨੈੱਟਵਰਕ ਪ੍ਰਿੰਟਰ ਚੁਣੋ" - - #: ../troubleshoot/ChooseNetworkPrinter.py:30 - msgid "" -@@ -2826,20 +2730,17 @@ msgstr "" - - #: ../troubleshoot/ChooseNetworkPrinter.py:39 - #: ../troubleshoot/ChoosePrinter.py:40 ../troubleshoot/DeviceListed.py:38 --#, fuzzy - msgid "Information" --msgstr "ਟਿਕਾਣਾ:" -+msgstr "ਜਾਣਕਾਰੀ" - - #: ../troubleshoot/ChooseNetworkPrinter.py:75 - #: ../troubleshoot/ChoosePrinter.py:64 ../troubleshoot/DeviceListed.py:70 --#, fuzzy - msgid "Not listed" --msgstr "ਜੁੜਿਆ ਨਹੀਂ" -+msgstr "ਵੇਖਾਇਆ ਨਹੀਂ" - - #: ../troubleshoot/ChoosePrinter.py:30 --#, fuzzy - msgid "Choose Printer" --msgstr "ਨਵਾਂ ਪਰਿੰਟਰ" -+msgstr "ਪ੍ਰਿੰਟਰ ਚੁਣੋ" - - #: ../troubleshoot/ChoosePrinter.py:31 - msgid "" -@@ -2848,9 +2749,8 @@ msgid "" - msgstr "" - - #: ../troubleshoot/DeviceListed.py:30 --#, fuzzy - msgid "Choose Device" --msgstr "ਨਵਾਂ ਪਰਿੰਟਰ" -+msgstr "ਜੰਤਰ ਚੁਣੋ" - - #: ../troubleshoot/DeviceListed.py:31 - msgid "" -@@ -2860,7 +2760,7 @@ msgstr "" - - #: ../troubleshoot/ErrorLogCheckpoint.py:31 - msgid "Debugging" --msgstr "" -+msgstr "ਡੀਬੱਗਿੰਗ" - - #: ../troubleshoot/ErrorLogCheckpoint.py:32 - msgid "" -@@ -2870,27 +2770,27 @@ msgstr "" - - #: ../troubleshoot/ErrorLogCheckpoint.py:36 - msgid "Enable Debugging" --msgstr "" -+msgstr "ਡੀਬੱਗਿੰਗ ਯੋਗ" - - #: ../troubleshoot/ErrorLogCheckpoint.py:211 - msgid "Debug logging enabled." --msgstr "" -+msgstr "ਡੀਬੱਗ ਲਾਗਿੰਗ ਯੋਗ ਹੈ" - - #: ../troubleshoot/ErrorLogCheckpoint.py:213 - msgid "Debug logging was already enabled." --msgstr "" -+msgstr "ਡੀਬੱ ਪਹਿਲਾਂ ਹੀ ੋ ਸੀ" - - #: ../troubleshoot/ErrorLogParse.py:29 - msgid "Error log messages" --msgstr "" -+msgstr "ਗਲਤੀ ਲਾਗ ਸੁਨੇਹੇ" - - #: ../troubleshoot/ErrorLogParse.py:30 - msgid "There are messages in the error log." --msgstr "" -+msgstr "ਗਲਤੀ ਲਾਗ ਵਿੱਚ ਸੁਨੇਹੇ ਸਨ।" - - #: ../troubleshoot/Locale.py:29 - msgid "Incorrect Page Size" --msgstr "" -+msgstr "ਗਲਤ ਸਫਾ ਅਕਾਰ" - - #: ../troubleshoot/Locale.py:30 - msgid "" -@@ -2899,62 +2799,57 @@ msgid "" - msgstr "" - - #: ../troubleshoot/Locale.py:43 --#, fuzzy - msgid "Print job page size:" --msgstr "ਜਾਂਚ ਸਫ਼ਾ ਛਾਪੋ" -+msgstr "ਜੌਬ ਸਫ਼ਾ ਅਕਾਰ ਛਾਪੋ:" - - #: ../troubleshoot/Locale.py:48 --#, fuzzy - msgid "Printer page size:" --msgstr "ਪਰਿੰਟਰ ਹਾਲਤ:" -+msgstr "ਪ੍ਰਿੰਟਰ ਸਫਾ ਅਕਾਰ:" - - #: ../troubleshoot/LocalOrRemote.py:26 --#, fuzzy - msgid "Printer Location" --msgstr "ਪਰਿੰਟਰ ਚੋਣ" -+msgstr "ਪ੍ਰਿੰਟਰ ਸਥਿਤੀ" - - #: ../troubleshoot/LocalOrRemote.py:27 - msgid "Is the printer connected to this computer or available on the network?" - msgstr "" - - #: ../troubleshoot/LocalOrRemote.py:29 --#, fuzzy - msgid "Locally connected printer" --msgstr "ਕੀ ਪਰਿੰਟਰ %s ਹਟਾਉਣਾ ਹੈ?" -+msgstr "ਲੋਕਲ ਜੁੜਿਆ ਪ੍ਰਿੰਟਰ" - - #: ../troubleshoot/NetworkCUPSPrinterShared.py:28 - msgid "Queue Not Shared" --msgstr "" -+msgstr "ਕਤਾਰ ਸ਼ੇਅਰ ਨਹੀਂ ਕੀਤੀ" - - #: ../troubleshoot/NetworkCUPSPrinterShared.py:29 - msgid "The CUPS printer on the server is not shared." --msgstr "" -+msgstr "ਸਰਵਰ ਉੱਪਰਲਾ CUPS ਪ੍ਰਿੰਟਰ ਸ਼ੇਅਰ ਨਹੀਂ ਕੀਤਾ ਹੈ।" - - #: ../troubleshoot/PrinterStateReasons.py:29 - msgid "Status Messages" --msgstr "" -+msgstr "ਹਾਲਤ ਸੁਨੇਹੇ" - - #: ../troubleshoot/PrinterStateReasons.py:30 - msgid "There are status messages associated with this queue." --msgstr "" -+msgstr "ਇਸ ਕਤਾਰ ਨਾਲ ਸੰਬੰਧਿਤ ਹਾਲਤ ਸੁਨੇਹੇ ਹਨ।" - - #: ../troubleshoot/PrinterStateReasons.py:58 --#, fuzzy, python-format -+#, python-format - msgid "The printer's state message is: '%s'." --msgstr "ਪਰਿੰਟਰ ਹਾਲਤ:" -+msgstr "ਪ੍ਰਿੰਟਰ ਦਾ ਹਾਲਤ ਸੁਨੇਹਾ ਹੈ: '%s'।" - - #: ../troubleshoot/PrinterStateReasons.py:83 - msgid "Errors are listed below:" --msgstr "" -+msgstr "ਗਲਤੀਆਂ ਹੇਠਾਂ ਦਿੱਤੀਆਂ ਗਈਆਂ ਹਨ:" - - #: ../troubleshoot/PrinterStateReasons.py:88 - msgid "Warnings are listed below:" --msgstr "" -+msgstr "ਚੇਤਾਵਨੀਆਂ ਹੇਠਾਂ ਦਿੱਤੀਆਂ ਗਈਆਂ ਹਨ:" - - #: ../troubleshoot/PrintTestPage.py:62 --#, fuzzy - msgid "Test Page" --msgstr "ਜਾਂਚ ਸਫ਼ਾ ਛਾਪੋ" -+msgstr "ਜਾਂਚ ਸਫਾ" - - #: ../troubleshoot/PrintTestPage.py:63 - msgid "" -@@ -2964,31 +2859,30 @@ msgstr "" - - #: ../troubleshoot/PrintTestPage.py:75 - msgid "Cancel All Jobs" --msgstr "" -+msgstr "ਸਭ ਜੌਬਾਂ ਰੱਦ ਕਰੋ" - - #: ../troubleshoot/PrintTestPage.py:81 --#, fuzzy - msgid "Test" --msgstr "ਜਾਂਚ ਸਫ਼ਾ ਛਾਪੋ" -+msgstr "ਜਾਂਚ" - - #: ../troubleshoot/PrintTestPage.py:111 - msgid "Did the marked print jobs print correctly?" --msgstr "" -+msgstr "ਕੀ ਮਾਰਕ ਕੀਤੀ ਪ੍ਰਿੰਟ ਜੌਬ ਠੀਕ ਤਰਾਂ ਪ੍ਰਿੰਟ ਹੋਈ ਹੈ?" - - #: ../troubleshoot/PrintTestPage.py:143 - #, python-format - msgid "Remember to load paper of type '%s' into the printer first." --msgstr "" -+msgstr "ਪਹਿਲਾਂ '%s' ਕਿਸਮ ਦੇ ਪੇਪਰ ਪ੍ਰਿੰਟਟ ਵਿੱਚ ਲੋਡ ਕਰਨੇ ਯਾਦ ਰੱਖੋ।" - --#: ../troubleshoot/PrintTestPage.py:399 -+#: ../troubleshoot/PrintTestPage.py:416 - msgid "Error submitting test page" --msgstr "" -+msgstr "ਜਾਂਚ ਸਫਾ ਪੇਸ਼ ਕਰਨ ਵੇਲੇ ਗਲਤੀ" - - #: ../troubleshoot/QueueNotEnabled.py:56 - #: ../troubleshoot/QueueRejectingJobs.py:66 --#, fuzzy, python-format -+#, python-format - msgid "The reason given is: '%s'." --msgstr "ਪਰਿੰਟਰ ਹਾਲਤ:" -+msgstr "ਕਾਰਨ ਇਹ ਹੈ: '%s'।" - - #: ../troubleshoot/QueueNotEnabled.py:58 - msgid "This may be due to the printer being disconnected or switched off." -@@ -2996,12 +2890,12 @@ msgstr "" - - #: ../troubleshoot/QueueNotEnabled.py:62 - msgid "Queue Not Enabled" --msgstr "" -+msgstr "ਕਤਾਰ ਯੋਗ ਨਹੀਂ ਕੀਤੀ" - - #: ../troubleshoot/QueueNotEnabled.py:63 - #, python-format - msgid "The queue '%s' is not enabled." --msgstr "" -+msgstr "ਕਤਾਰ '%s' ਯੋਗ ਨਹੀਂ ਕੀਤੀ।" - - #: ../troubleshoot/QueueNotEnabled.py:71 - msgid "" -@@ -3011,12 +2905,12 @@ msgstr "" - - #: ../troubleshoot/QueueRejectingJobs.py:31 - msgid "Queue Rejecting Jobs" --msgstr "" -+msgstr "ਕਤਾਰ ਨੇ ਜੌਬਾਂ ਰੱਦ ਕੀਤੀਆਂ ਹਨ" - - #: ../troubleshoot/QueueRejectingJobs.py:63 - #, python-format - msgid "The queue '%s' is rejecting jobs." --msgstr "" -+msgstr "ਕਤਾਰ '%s' ਨੇ ਜੌਬਾਂ ਰੱਦ ਕੀਤੀਆਂ ਹਨ।" - - #: ../troubleshoot/QueueRejectingJobs.py:70 - msgid "" -@@ -3025,9 +2919,8 @@ msgid "" - msgstr "" - - #: ../troubleshoot/RemoteAddress.py:26 --#, fuzzy - msgid "Remote Address" --msgstr "ਰਿਮੋਟ ਪਰਿੰਟਰ" -+msgstr "ਰਿਮੋਟ ਐਡਰੈੱਸ" - - #: ../troubleshoot/RemoteAddress.py:27 - msgid "" -@@ -3036,13 +2929,12 @@ msgid "" - msgstr "" - - #: ../troubleshoot/RemoteAddress.py:35 --#, fuzzy - msgid "Server name:" --msgstr "ਉਪਭੋਗਤਾ ਨਾਂ:" -+msgstr "ਸਰਵਰ ਨਾਂ:" - - #: ../troubleshoot/RemoteAddress.py:42 - msgid "Server IP address:" --msgstr "" -+msgstr "ਸਰਵਰ IP ਐਡਰੈੱਸ:" - - #: ../troubleshoot/SchedulerNotRunning.py:28 - msgid "CUPS Service Stopped" -@@ -3101,29 +2993,25 @@ msgstr "" - #. name is a URI, no queue was generated, because no suitable - #. driver was found - #: ../applet.py:111 ../applet.py:158 --#, fuzzy - msgid "Missing printer driver" --msgstr "ਡਰਾਇਵਰ ਗੁੰਮ ਹੈ" -+msgstr "ਪ੍ਰਿੰਟਰ ਡਰਾਈਵਰ ਗੁੰਮ ਹੈ" - - #: ../applet.py:119 --#, fuzzy, python-format -+#, python-format - msgid "No printer driver for %s." --msgstr "ਡਰਾਇਵਰ ਗੁੰਮ ਹੈ" -+msgstr "%s ਲਈ ਕੋਈ ਪ੍ਰਿੰਟਰ ਡਰਾਈਵਰ ਨਹੀਂ ਹੈ।" - - #: ../applet.py:121 --#, fuzzy - msgid "No driver for this printer." --msgstr "ਪਰਿੰਟਰ ਲਈ ਨਵਾਂ ਨਾਂ" -+msgstr "ਇਸ ਪ੍ਰਿੰਟਰ ਲਈ ਕੋਈ ਨਵਾਂ ਡਰਾਈਵਰ ਨਹੀਂ ਹੈ।" - - #: ../applet.py:156 --#, fuzzy - msgid "Printer added" --msgstr "ਪਰਿੰਟਰ ਨਾਂ" -+msgstr "ਪ੍ਰਿੰਟਰ ਜੋੜਿਆ ਗਿਆ ਹੈ" - - #: ../applet.py:162 --#, fuzzy - msgid "Install printer driver" --msgstr "ਡਰਾਇਵਰ ਗੁੰਮ ਹੈ" -+msgstr "ਪ੍ਰਿੰਟਰ ਡਰਾਈਵਰ ਇੰਸਟਾਲ ਕਰੋ" - - #: ../applet.py:163 - #, python-format -@@ -3136,14 +3024,12 @@ msgid "`%s' is ready for printing." - msgstr "" - - #: ../applet.py:178 ../applet.py:189 --#, fuzzy - msgid "Print test page" - msgstr "ਜਾਂਚ ਸਫ਼ਾ ਛਾਪੋ" - - #: ../applet.py:180 --#, fuzzy - msgid "Configure" --msgstr "ਪਰਿੰਟਰ ਸੰਰਚਨਾ" -+msgstr "ਸੰਰਚਨਾ" - - #: ../applet.py:185 - #, python-format -@@ -3151,14 +3037,12 @@ msgid "`%s' has been added, using the `% - msgstr "" - - #: ../applet.py:191 --#, fuzzy - msgid "Find driver" --msgstr "ਡਰਾਇਵਰ ਗੁੰਮ ਹੈ" -+msgstr "ਡਰਾਈਵਰ ਲੱਭੋ" - - #: ../print-applet.desktop.in.h:1 --#, fuzzy - msgid "Print Queue Applet" --msgstr "ਜਾਂਚ ਸਫ਼ਾ ਛਾਪੋ" -+msgstr "ਪ੍ਰਿੰਟ ਕਿਊ ਐਪਲਿਟ" - - #: ../print-applet.desktop.in.h:2 - msgid "System tray icon for managing print jobs" -@@ -3173,30 +3057,14 @@ msgid "Manage Print Jobs" - msgstr "" - - #: ../my-default-printer.desktop.in.h:2 --#, fuzzy - msgid "Select default printer" --msgstr "ਮੂਲ ਪਰਿੰਟਰ ਬਣਾਓ" -+msgstr "ਮੂਲ ਪ੍ਰਿੰਟਰ ਚੁਣੋ" -+ -+#~ msgid "HP Printer (HPLIP)" -+#~ msgstr "HP ਪ੍ਰਿੰਟਰ (HPLIP)" -+ -+#~ msgid "HPLIP cannot find the device." -+#~ msgstr "HPLIP ਨੂੰ ਜੰਤਰ ਨਹੀਂ ਲੱਭ ਸਕਿਆ।" - --#, fuzzy --#~ msgid "Not Found" --#~ msgstr "ਨਹੀਂ ਲੱਭਿਆ" -- --#, fuzzy --#~ msgid "Authentication Required" --#~ msgstr "ਪ੍ਰਮਾਣਕਿਤਾ" -- --#, fuzzy --#~ msgid "Job requires authentication to proceed." --#~ msgstr "ਪ੍ਰਮਾਣਕਿਤਾ" -- --#, fuzzy --#~ msgid "Authenticate" --#~ msgstr "ਪ੍ਰਮਾਣਕਿਤਾ" -- --#, fuzzy --#~ msgid "Adding" --#~ msgstr "ਛਾਪਣਾ" -- --#, fuzzy --#~ msgid "Adding printer" --#~ msgstr "ਪਰਿੰਟਰ ਸੰਰਚਨਾ" -+#~ msgid "HP Printer (HPLIP) via network" -+#~ msgstr "HP ਪ੍ਰਿੰਟਰ (HPLIP) ਨੈੱਟਵਰਕ ਰਾਹੀਂ" -diff -up system-config-printer-1.1.5/po/pl.po.git-1.1.x system-config-printer-1.1.5/po/pl.po ---- system-config-printer-1.1.5/po/pl.po.git-1.1.x 2009-03-03 22:21:46.000000000 +0000 -+++ system-config-printer-1.1.5/po/pl.po 2009-03-10 17:43:31.000000000 +0000 -@@ -7,7 +7,7 @@ msgid "" - msgstr "" - "Project-Id-Version: pl\n" - "Report-Msgid-Bugs-To: https://bugzilla.redhat.com/bugzilla\n" --"POT-Creation-Date: 2009-03-02 23:22+0000\n" -+"POT-Creation-Date: 2009-03-10 16:51+0000\n" - "PO-Revision-Date: 2009-03-03 13:58+0100\n" - "Last-Translator: Piotr Drąg \n" - "Language-Team: Polish \n" -@@ -51,11 +51,11 @@ msgstr "" - msgid "Enter IP address" - msgstr "Podaj adres IP" - --#: ../authconn.py:35 ../glade/NewPrinterWindow.glade.h:108 -+#: ../authconn.py:35 ../glade/NewPrinterWindow.glade.h:107 - msgid "Username:" - msgstr "Nazwa użytkownika:" - --#: ../authconn.py:36 ../glade/NewPrinterWindow.glade.h:77 -+#: ../authconn.py:36 ../glade/NewPrinterWindow.glade.h:76 - msgid "Password:" - msgstr "Hasło:" - -@@ -63,7 +63,7 @@ msgstr "Hasło:" - msgid "Domain:" - msgstr "Domena:" - --#: ../authconn.py:46 -+#: ../authconn.py:46 ../authconn.py:409 - msgid "Authentication" - msgstr "Uwierzytelnianie" - -@@ -71,43 +71,52 @@ msgstr "Uwierzytelnianie" - msgid "Remember password" - msgstr "Zapamiętaj hasło" - --#: ../authconn.py:211 ../authconn.py:232 -+#: ../authconn.py:208 -+#, python-format -+msgid "Unauthorized request (%s)" -+msgstr "" -+ -+#: ../authconn.py:209 -+msgid "You are not authorized to carry out therequested action." -+msgstr "" -+ -+#: ../authconn.py:212 ../authconn.py:233 - msgid "Operation canceled" - msgstr "Anulowano operację" - --#: ../authconn.py:253 -+#: ../authconn.py:250 - #, python-format - msgid "CUPS server error (%s)" - msgstr "Błąd serwera CUPS (%s)" - --#: ../authconn.py:255 ../errordialogs.py:57 --#: ../troubleshoot/PrintTestPage.py:400 -+#: ../authconn.py:252 ../errordialogs.py:56 ../errordialogs.py:70 -+msgid "CUPS server error" -+msgstr "Błąd serwera CUPS" -+ -+#: ../authconn.py:261 ../errordialogs.py:57 -+#: ../troubleshoot/PrintTestPage.py:417 - #, python-format - msgid "There was an error during the CUPS operation: '%s'." - msgstr "Wystąpił błąd podczas operacji CUPS-a: \"%s\"." - --#: ../authconn.py:258 -+#: ../authconn.py:264 - msgid "Retry" - msgstr "Ponów" - --#: ../authconn.py:379 ../authconn.py:381 ../errordialogs.py:65 ../pysmb.py:75 -+#: ../authconn.py:385 ../authconn.py:387 ../errordialogs.py:65 ../pysmb.py:75 - #: ../pysmb.py:77 - msgid "Not authorized" - msgstr "Nie upoważniono" - --#: ../authconn.py:382 ../pysmb.py:78 -+#: ../authconn.py:388 ../pysmb.py:78 - msgid "The password may be incorrect." - msgstr "Hasło może być niepoprawne." - --#: ../authconn.py:400 -+#: ../authconn.py:407 - #, python-format - msgid "Authentication (%s)" - msgstr "Uwierzytelnianie (%s)" - --#: ../errordialogs.py:56 ../errordialogs.py:70 --msgid "CUPS server error" --msgstr "Błąd serwera CUPS" -- - #: ../errordialogs.py:66 - msgid "" - "The password may be incorrect, or the server may be configured to deny " -@@ -136,7 +145,7 @@ msgstr "Wymagana jest aktualizacja" - msgid "Server error" - msgstr "Błąd serwera" - --#: ../errordialogs.py:82 ../system-config-printer.py:1219 -+#: ../errordialogs.py:82 ../system-config-printer.py:1223 - msgid "Not connected" - msgstr "Niepołączona" - -@@ -158,7 +167,7 @@ msgstr "_Nowa grupa" - msgid "_New Group from Selection" - msgstr "_Nowa grupa z wybranych drukarek" - --#: ../GroupsPane.py:98 ../system-config-printer.py:393 -+#: ../GroupsPane.py:98 ../system-config-printer.py:397 - msgid "_Rename" - msgstr "Zmień _nazwę" - -@@ -225,7 +234,7 @@ msgid "Document" - msgstr "Dokument" - - #: ../jobviewer.py:212 ../my-default-printer.py:153 --#: ../system-config-printer.py:366 ../system-config-printer.py:1367 -+#: ../system-config-printer.py:370 ../system-config-printer.py:1371 - #: ../troubleshoot/PrintTestPage.py:84 - msgid "Printer" - msgstr "Drukarka" -@@ -262,8 +271,8 @@ msgstr "Stan wydruku dokumentu (%s)" - - #: ../jobviewer.py:386 ../jobviewer.py:451 ../jobviewer.py:452 - #: ../jobviewer.py:492 ../jobviewer.py:600 ../jobviewer.py:727 --#: ../jobviewer.py:1196 ../jobviewer.py:1222 ../system-config-printer.py:2546 --#: ../glade/NewPrinterWindow.glade.h:106 -+#: ../jobviewer.py:1196 ../jobviewer.py:1222 ../system-config-printer.py:2556 -+#: ../glade/NewPrinterWindow.glade.h:105 - #: ../troubleshoot/ChooseNetworkPrinter.py:101 - #: ../troubleshoot/ChooseNetworkPrinter.py:102 - #: ../troubleshoot/ChooseNetworkPrinter.py:105 -@@ -351,12 +360,12 @@ msgstr "Wstrzymane do weekendu" - msgid "Pending" - msgstr "Oczekiwanie" - --#: ../jobviewer.py:591 ../system-config-printer.py:186 -+#: ../jobviewer.py:591 ../system-config-printer.py:190 - #: ../troubleshoot/PrintTestPage.py:43 - msgid "Processing" - msgstr "Przetwarzanie" - --#: ../jobviewer.py:592 ../system-config-printer.py:188 -+#: ../jobviewer.py:592 ../system-config-printer.py:192 - #: ../troubleshoot/PrintTestPage.py:44 - msgid "Stopped" - msgstr "Zatrzymana" -@@ -468,8 +477,8 @@ msgstr "_Użyj domyślnej drukarki syste - msgid "_Set Default" - msgstr "U_staw jako domyślną drukarkę" - --#: ../my-default-printer.py:158 ../system-config-printer.py:423 --#: ../system-config-printer.py:3660 ../troubleshoot/ChooseNetworkPrinter.py:37 -+#: ../my-default-printer.py:158 ../system-config-printer.py:427 -+#: ../system-config-printer.py:3675 ../troubleshoot/ChooseNetworkPrinter.py:37 - #: ../troubleshoot/ChoosePrinter.py:38 - msgid "Location" - msgstr "Położenie" -@@ -498,7 +507,7 @@ msgstr "Domyślne zachowanie" - msgid "Authenticated" - msgstr "Uwierzytelniono" - --#: ../ppdippstr.py:50 ../system-config-printer.py:6259 -+#: ../ppdippstr.py:50 ../system-config-printer.py:6207 - msgid "None" - msgstr "Brak" - -@@ -712,125 +721,125 @@ msgstr "" - msgid "1200 dpi, photo, black + color cartridge, photo paper" - msgstr "1200 dpi, fotografia, kartridż czarny i kolorowy, papier fotograficzny" - --#: ../system-config-printer.py:127 -+#: ../system-config-printer.py:131 - msgid "To do this, select System->Administration->Firewall from the main menu." - msgstr "" - "Aby to zrobić, należy wybrać System->Administracja->Zapora sieciowa z menu " - "głównego." - --#: ../system-config-printer.py:185 -+#: ../system-config-printer.py:189 - msgid "Idle" - msgstr "Bezczynna" - --#: ../system-config-printer.py:187 -+#: ../system-config-printer.py:191 - msgid "Busy" - msgstr "Zajęta" - --#: ../system-config-printer.py:372 ../system-config-printer.py:1373 -+#: ../system-config-printer.py:376 ../system-config-printer.py:1377 - msgid "Class" - msgstr "Klasa" - --#: ../system-config-printer.py:399 -+#: ../system-config-printer.py:403 - msgid "Set As De_fault" - msgstr "_Ustaw jako domyślną drukarkę" - --#: ../system-config-printer.py:403 -+#: ../system-config-printer.py:407 - msgid "_Create class" - msgstr "_Utwórz klasę" - --#: ../system-config-printer.py:405 -+#: ../system-config-printer.py:409 - msgid "View Print _Queue" - msgstr "Wyświetl _kolejkę wydruku" - --#: ../system-config-printer.py:407 -+#: ../system-config-printer.py:411 - msgid "_Add to Group" - msgstr "Dod_aj do grupy" - --#: ../system-config-printer.py:409 -+#: ../system-config-printer.py:413 - msgid "Save Results as _Group" - msgstr "Zapisz wyniki jako g_rupę" - --#: ../system-config-printer.py:411 -+#: ../system-config-printer.py:415 - msgid "Save Filter as _Search Group" - msgstr "Zapi_sz filtr jako grupę wyszukiwania" - --#: ../system-config-printer.py:415 -+#: ../system-config-printer.py:419 - msgid "E_nabled" - msgstr "Włączo_na" - --#: ../system-config-printer.py:417 -+#: ../system-config-printer.py:421 - msgid "_Shared" - msgstr "W_spółdzielona" - --#: ../system-config-printer.py:421 ../troubleshoot/ChooseNetworkPrinter.py:35 -+#: ../system-config-printer.py:425 ../troubleshoot/ChooseNetworkPrinter.py:35 - #: ../troubleshoot/ChoosePrinter.py:36 ../troubleshoot/DeviceListed.py:36 - msgid "Name" - msgstr "Nazwa" - --#: ../system-config-printer.py:422 -+#: ../system-config-printer.py:426 - msgid "Description" - msgstr "Opis" - --#: ../system-config-printer.py:424 -+#: ../system-config-printer.py:428 - msgid "Manufacturer / Model" - msgstr "Producent/model" - - #. Printer state reasons list --#: ../system-config-printer.py:499 -+#: ../system-config-printer.py:503 - msgid "Message" - msgstr "Komunikat" - --#: ../system-config-printer.py:534 -+#: ../system-config-printer.py:538 - msgid "Problems?" - msgstr "Problemy?" - --#: ../system-config-printer.py:637 ../system-config-printer.py:639 -+#: ../system-config-printer.py:641 ../system-config-printer.py:643 - msgid "Members of this class" - msgstr "Elementy tej klasy" - --#: ../system-config-printer.py:638 ../system-config-printer.py:640 -+#: ../system-config-printer.py:642 ../system-config-printer.py:644 - msgid "Others" - msgstr "Inne" - --#: ../system-config-printer.py:641 -+#: ../system-config-printer.py:645 - msgid "Devices" - msgstr "Urządzenia" - --#: ../system-config-printer.py:642 -+#: ../system-config-printer.py:646 - msgid "Connections" - msgstr "Połączenia" - --#: ../system-config-printer.py:643 -+#: ../system-config-printer.py:647 - msgid "Makes" - msgstr "Producenci" - --#: ../system-config-printer.py:644 -+#: ../system-config-printer.py:648 - msgid "Models" - msgstr "Modele" - --#: ../system-config-printer.py:645 -+#: ../system-config-printer.py:649 - msgid "Drivers" - msgstr "Sterowniki" - --#: ../system-config-printer.py:646 ../glade/NewPrinterWindow.glade.h:55 -+#: ../system-config-printer.py:650 ../glade/NewPrinterWindow.glade.h:54 - msgid "Downloadable Drivers" - msgstr "Sterowniki do pobrania" - --#: ../system-config-printer.py:647 -+#: ../system-config-printer.py:651 - msgid "Users" - msgstr "Użytkownicy" - --#: ../system-config-printer.py:682 -+#: ../system-config-printer.py:686 - msgid "Automatic rotation" - msgstr "Automatyczne obracanie" - --#: ../system-config-printer.py:989 -+#: ../system-config-printer.py:993 - #, python-format - msgid "Printer Properties - '%s' on %s" - msgstr "Właściwości drukarki - \"%s\" na %s" - - #. The Conflict button was pressed. --#: ../system-config-printer.py:996 -+#: ../system-config-printer.py:1000 - msgid "" - "There are conflicting options.\n" - "Changes can only be applied after\n" -@@ -841,78 +850,78 @@ msgstr "" - "tylko po tym, jak te konflikty\n" - "zostaną rozwiązane." - --#: ../system-config-printer.py:1214 -+#: ../system-config-printer.py:1218 - #, python-format - msgid "Printer configuration - %s" - msgstr "Konfiguracja drukarki - %s" - --#: ../system-config-printer.py:1217 -+#: ../system-config-printer.py:1221 - #, python-format - msgid "Connected to %s" - msgstr "Połączone do %s" - - #. Update our copy of the printer's settings. --#: ../system-config-printer.py:1257 ../system-config-printer.py:2042 -+#: ../system-config-printer.py:1261 ../system-config-printer.py:2046 - msgid "obtaining queue details" - msgstr "uzyskiwanie szczegółów kolejki" - --#: ../system-config-printer.py:1295 -+#: ../system-config-printer.py:1299 - msgid "Remove from Group" - msgstr "Usuń z grupy" - --#: ../system-config-printer.py:1361 -+#: ../system-config-printer.py:1365 - msgid "Network printer (discovered)" - msgstr "Drukarka sieciowa (wykryta)" - --#: ../system-config-printer.py:1364 -+#: ../system-config-printer.py:1368 - msgid "Network class (discovered)" - msgstr "Klasa sieciowa (wykryta)" - --#: ../system-config-printer.py:1370 ../system-config-printer.py:5524 --#: ../system-config-printer.py:5594 ../system-config-printer.py:5596 -+#: ../system-config-printer.py:1374 ../system-config-printer.py:5519 -+#: ../system-config-printer.py:5589 ../system-config-printer.py:5591 - msgid "Fax" - msgstr "Fax" - --#: ../system-config-printer.py:1376 ../system-config-printer.py:1382 -+#: ../system-config-printer.py:1380 ../system-config-printer.py:1386 - #: ../troubleshoot/LocalOrRemote.py:30 - msgid "Network printer" - msgstr "Drukarka sieciowa" - --#: ../system-config-printer.py:1379 -+#: ../system-config-printer.py:1383 - msgid "Network print share" - msgstr "Udział drukowania sieciowego" - --#: ../system-config-printer.py:1508 ../glade/ConnectingDialog.glade.h:2 -+#: ../system-config-printer.py:1512 ../glade/ConnectingDialog.glade.h:2 - #, no-c-format, python-format - msgid "Opening connection to %s" - msgstr "Otwieranie połączenia do %s" - --#: ../system-config-printer.py:1887 -+#: ../system-config-printer.py:1891 - msgid "Installable Options" - msgstr "Opcje instalacyjne" - --#: ../system-config-printer.py:1888 -+#: ../system-config-printer.py:1892 - #: ../glade/PrinterPropertiesDialog.glade.h:109 - msgid "Printer Options" - msgstr "Opcje drukarki" - --#: ../system-config-printer.py:1924 -+#: ../system-config-printer.py:1928 - #, python-format - msgid "modifying class %s" - msgstr "modyfikowanie klasy %s" - --#: ../system-config-printer.py:1926 ../system-config-printer.py:3019 --#: ../system-config-printer.py:3044 ../system-config-printer.py:6547 --#: ../system-config-printer.py:6559 ../system-config-printer.py:6581 -+#: ../system-config-printer.py:1930 ../system-config-printer.py:3037 -+#: ../system-config-printer.py:3062 ../system-config-printer.py:6495 -+#: ../system-config-printer.py:6507 ../system-config-printer.py:6529 - #, python-format - msgid "modifying printer %s" - msgstr "modyfikowanie drukarki %s" - --#: ../system-config-printer.py:1941 -+#: ../system-config-printer.py:1945 - msgid "This will delete this class!" - msgstr "To usunie tę klasę!" - --#: ../system-config-printer.py:1942 -+#: ../system-config-printer.py:1946 - msgid "Proceed anyway?" - msgstr "Kontynuować mimo to?" - -@@ -920,44 +929,44 @@ msgstr "Kontynuować mimo to?" - #. but we have never fetched the server settings to see whether - #. the server is publishing shared printers. Fetch the settings - #. now so that we can update the "not published" label if necessary. --#: ../system-config-printer.py:2030 ../system-config-printer.py:3203 -+#: ../system-config-printer.py:2034 ../system-config-printer.py:3221 - msgid "fetching server settings" - msgstr "przechwytywanie ustawień serwera" - --#: ../system-config-printer.py:2100 -+#: ../system-config-printer.py:2104 - msgid "Set Default Printer" - msgstr "Ustaw domyślną drukarkę" - --#: ../system-config-printer.py:2102 -+#: ../system-config-printer.py:2106 - msgid "Do you want to set this as the system-wide default printer?" - msgstr "Ustawić tę drukarkę jako domyślną drukarkę w systemie?" - --#: ../system-config-printer.py:2104 -+#: ../system-config-printer.py:2108 - msgid "Set as the _system-wide default printer" - msgstr "U_staw jako domyślną drukarkę w systemie" - --#: ../system-config-printer.py:2106 -+#: ../system-config-printer.py:2110 - msgid "_Clear my personal default setting" - msgstr "Wy_czyść osobiste domyślne ustawienie" - --#: ../system-config-printer.py:2107 -+#: ../system-config-printer.py:2111 - msgid "Set as my _personal default printer" - msgstr "Ustaw jako _osobistą domyślną drukarkę" - --#: ../system-config-printer.py:2112 -+#: ../system-config-printer.py:2116 - msgid "setting default printer" - msgstr "ustawianie domyślnej drukarki" - --#: ../system-config-printer.py:2169 -+#: ../system-config-printer.py:2173 - msgid "printing test page" - msgstr "drukowanie strony próbnej" - --#: ../system-config-printer.py:2182 ../system-config-printer.py:2217 --#: ../system-config-printer.py:5418 -+#: ../system-config-printer.py:2186 ../system-config-printer.py:2221 -+#: ../system-config-printer.py:5413 - msgid "Not possible" - msgstr "Niemożliwe" - --#: ../system-config-printer.py:2183 ../system-config-printer.py:2218 -+#: ../system-config-printer.py:2187 ../system-config-printer.py:2222 - msgid "" - "The remote server did not accept the print job, most likely because the " - "printer is not shared." -@@ -965,20 +974,20 @@ msgstr "" - "Zdalny serwer nie zaakceptował zadania drukowania, prawdopodobnie dlatego, " - "że drukarka nie jest współdzielona." - --#: ../system-config-printer.py:2195 ../system-config-printer.py:2210 -+#: ../system-config-printer.py:2199 ../system-config-printer.py:2214 - msgid "Submitted" - msgstr "Wysłane" - --#: ../system-config-printer.py:2196 -+#: ../system-config-printer.py:2200 - #, python-format - msgid "Test page submitted as job %d" - msgstr "Strona próbna została wysłana jako zadanie %d" - --#: ../system-config-printer.py:2203 -+#: ../system-config-printer.py:2207 - msgid "sending maintenance command" - msgstr "wysyłanie polecenia konserwacji" - --#: ../system-config-printer.py:2211 -+#: ../system-config-printer.py:2215 - #, python-format - msgid "Maintenance command submitted as job %d" - msgstr "Polecenie konserwacji zostało wysłane jako zadanie %d" -@@ -986,65 +995,65 @@ msgstr "Polecenie konserwacji zostało w - #. The underlying cupsGetPPD2() function returned NULL without - #. setting an IPP error, so it'll be something like a failed - #. connection. --#: ../system-config-printer.py:2285 ../system-config-printer.py:2381 -+#: ../system-config-printer.py:2289 ../system-config-printer.py:2385 - msgid "Error" - msgstr "Błąd" - --#: ../system-config-printer.py:2286 -+#: ../system-config-printer.py:2290 - msgid "There was a problem connecting to the CUPS server." - msgstr "Wystąpił problem podczas łączenia się z serwerem CUPS." - --#: ../system-config-printer.py:2382 -+#: ../system-config-printer.py:2386 - #, python-format - msgid "Option '%s' has value '%s' and cannot be edited." - msgstr "Opcja \"%s\" posiada wartość \"%s\" i nie może zostać zmodyfikowana." - --#: ../system-config-printer.py:2466 -+#: ../system-config-printer.py:2476 - msgid "Marker levels are not reported for this printer." - msgstr "Ta drukarka nie zgłasza poziomu atramentu." - --#: ../system-config-printer.py:2763 -+#: ../system-config-printer.py:2773 - msgid "Cannot Rename" - msgstr "Nie można zmienić nazwy" - --#: ../system-config-printer.py:2764 -+#: ../system-config-printer.py:2774 - msgid "There are queued jobs." - msgstr "Są zadania w kolejce." - --#: ../system-config-printer.py:2822 -+#: ../system-config-printer.py:2840 - msgid "renaming printer" - msgstr "zmienianie nazwy drukarki" - - #. for classes make sure all members - #. will get added --#: ../system-config-printer.py:2907 -+#: ../system-config-printer.py:2925 - msgid "copying printer" - msgstr "kopiowanie drukarki" - --#: ../system-config-printer.py:2971 -+#: ../system-config-printer.py:2989 - #, python-format - msgid "Really delete class '%s'?" - msgstr "Usunąć klasę \"%s\"?" - --#: ../system-config-printer.py:2973 -+#: ../system-config-printer.py:2991 - #, python-format - msgid "Really delete printer '%s'?" - msgstr "Usunąć drukarkę \"%s\"?" - --#: ../system-config-printer.py:2975 -+#: ../system-config-printer.py:2993 - msgid "Really delete selected destinations?" - msgstr "Usunąć wybrane cele?" - --#: ../system-config-printer.py:2996 -+#: ../system-config-printer.py:3014 - #, python-format - msgid "deleting printer %s" - msgstr "usuwanie drukarki %s" - --#: ../system-config-printer.py:3070 -+#: ../system-config-printer.py:3088 - msgid "Publish Shared Printers" - msgstr "Publikowanie współdzielonych drukarek" - --#: ../system-config-printer.py:3071 -+#: ../system-config-printer.py:3089 - msgid "" - "Shared printers are not available to other people unless the 'Publish shared " - "printers' option is enabled in the server settings." -@@ -1053,7 +1062,7 @@ msgstr "" - "\"Publikowanie współdzielonych drukarek\" nie jest włączona w ustawieniach " - "serwera." - --#: ../system-config-printer.py:3264 -+#: ../system-config-printer.py:3282 - msgid "modifying server settings" - msgstr "modyfikowanie ustawień serwera" - -@@ -1063,11 +1072,11 @@ msgstr "modyfikowanie ustawień serwera" - #. be unblocked. Unfortunately, this is not yet possible - #. (bug #440469). However, we can display a dialog to suggest - #. that now might be a good time to review the firewall settings. --#: ../system-config-printer.py:3289 -+#: ../system-config-printer.py:3307 - msgid "Review Firewall" - msgstr "Należy przejrzeć zaporę sieciową" - --#: ../system-config-printer.py:3290 -+#: ../system-config-printer.py:3308 - msgid "" - "You may need to adjust the firewall to allow network printing to this " - "computer." -@@ -1075,25 +1084,25 @@ msgstr "" - "Należy dostosować zaporę sieciową, aby umożliwić drukowanie sieciowe na tym " - "komputerze." - --#: ../system-config-printer.py:3623 -+#: ../system-config-printer.py:3638 - msgid "Browsing not available (pysmbc not installed)" - msgstr "Przeglądanie nie jest dostępne (pakiet pysmbc nie jest zainstalowany)" - - #. SMB list columns --#: ../system-config-printer.py:3629 -+#: ../system-config-printer.py:3644 - msgid "Share" - msgstr "Współdzielenie" - --#: ../system-config-printer.py:3635 -+#: ../system-config-printer.py:3650 - msgid "Comment" - msgstr "Komentarz" - - #. IPP list columns --#: ../system-config-printer.py:3654 -+#: ../system-config-printer.py:3669 - msgid "Queue" - msgstr "Kolejka" - --#: ../system-config-printer.py:3668 -+#: ../system-config-printer.py:3683 - msgid "" - "PostScript Printer Description files (*.ppd, *.PPD, *.ppd.gz, *.PPD.gz, *." - "PPD.GZ)" -@@ -1101,61 +1110,61 @@ msgstr "" - "Pliki PostScriptowego opisu drukarki (*.ppd, *.PPD, *.ppd.gz, *.PPD.gz, *." - "PPD.GZ)" - --#: ../system-config-printer.py:3677 -+#: ../system-config-printer.py:3692 - msgid "All files (*)" - msgstr "Wszystkie pliki (*)" - --#: ../system-config-printer.py:3713 ../system-config-printer.py:5970 --#: ../system-config-printer.py:6008 ../applet.py:124 -+#: ../system-config-printer.py:3728 ../system-config-printer.py:5918 -+#: ../system-config-printer.py:5956 ../applet.py:124 - msgid "Search" - msgstr "Znajdź" - --#: ../system-config-printer.py:3736 ../system-config-printer.py:3760 --#: ../glade/NewPrinterWindow.glade.h:74 -+#: ../system-config-printer.py:3751 ../system-config-printer.py:3775 -+#: ../glade/NewPrinterWindow.glade.h:73 - msgid "New Printer" - msgstr "Nowa drukarka" - --#: ../system-config-printer.py:3747 -+#: ../system-config-printer.py:3762 - msgid "New Class" - msgstr "Nowa klasa" - --#: ../system-config-printer.py:3752 -+#: ../system-config-printer.py:3767 - msgid "Change Device URI" - msgstr "Zmień URI urządzenia" - --#: ../system-config-printer.py:3758 -+#: ../system-config-printer.py:3773 - msgid "Change Driver" - msgstr "Zmień sterownik" - --#: ../system-config-printer.py:3927 ../system-config-printer.py:3993 --#: ../system-config-printer.py:4289 ../system-config-printer.py:4487 --#: ../system-config-printer.py:5772 ../system-config-printer.py:5995 -+#: ../system-config-printer.py:3942 ../system-config-printer.py:4008 -+#: ../system-config-printer.py:4304 ../system-config-printer.py:4502 -+#: ../system-config-printer.py:5762 ../system-config-printer.py:5943 - msgid "Searching" - msgstr "Wyszukiwanie" - --#: ../system-config-printer.py:3928 -+#: ../system-config-printer.py:3943 - msgid "Searching for downloadable drivers" - msgstr "Wyszukiwanie sterowników do pobrania" - --#: ../system-config-printer.py:3994 ../system-config-printer.py:4290 -+#: ../system-config-printer.py:4009 ../system-config-printer.py:4305 - msgid "Searching for drivers" - msgstr "Wyszukiwanie sterowników" - --#: ../system-config-printer.py:4488 ../system-config-printer.py:5773 -+#: ../system-config-printer.py:4503 ../system-config-printer.py:5763 - msgid "Searching for printers" - msgstr "Wyszukiwanie drukarek" - --#: ../system-config-printer.py:4497 -+#: ../system-config-printer.py:4512 - msgid "fetching device list" - msgstr "przechwytywanie listy urządzeń" - - #. Tell the user why he needs the plugin --#: ../system-config-printer.py:4579 -+#: ../system-config-printer.py:4594 - msgid "For this printer a proprietary driver plugin from HP is available.\n" - msgstr "" - "Dla tej drukarki dostępna jest własnościowa wtyczka sterownika od HP.\n" - --#: ../system-config-printer.py:4582 -+#: ../system-config-printer.py:4597 - msgid "" - "The installation of the plugin is required for your printer to work.\n" - "\n" -@@ -1163,7 +1172,7 @@ msgstr "" - "Instalacja wtyczki jest wymagana do pracy drukarki.\n" - "\n" - --#: ../system-config-printer.py:4585 -+#: ../system-config-printer.py:4600 - msgid "" - "Installing the plugin is optional, it completes or enhances the " - "functionality\n" -@@ -1174,110 +1183,106 @@ msgstr "" - "funkcjonalność drukarki. Bez wtyczki działają tylko podstawowe operacje.\n" - "\n" - --#: ../system-config-printer.py:4589 -+#: ../system-config-printer.py:4604 - msgid "The plugin provides the following features:\n" - msgstr "Wtyczka dostarcza następujące funkcje:\n" - --#: ../system-config-printer.py:4592 -+#: ../system-config-printer.py:4607 - msgid " - Printing support\n" - msgstr " - obsługa drukowania\n" - --#: ../system-config-printer.py:4595 -+#: ../system-config-printer.py:4610 - msgid " - Faster printing\n" - msgstr " - szybsze drukowanie\n" - --#: ../system-config-printer.py:4598 -+#: ../system-config-printer.py:4613 - msgid " - Better printout quality\n" - msgstr " - lepsza jakość wydruków\n" - --#: ../system-config-printer.py:4601 -+#: ../system-config-printer.py:4616 - msgid " - Extra printing features\n" - msgstr " - dodatkowe funkcje drukowania\n" - --#: ../system-config-printer.py:4604 -+#: ../system-config-printer.py:4619 - msgid " - Scanning support\n" - msgstr " - obsługa skanowania\n" - --#: ../system-config-printer.py:4607 -+#: ../system-config-printer.py:4622 - msgid " - Faster scanning\n" - msgstr " - szybsze skanowanie\n" - --#: ../system-config-printer.py:4610 -+#: ../system-config-printer.py:4625 - msgid " - Better scanning image quality\n" - msgstr " - lepsza jakość skanowania obrazu\n" - --#: ../system-config-printer.py:4613 -+#: ../system-config-printer.py:4628 - msgid " - Faxing support\n" - msgstr " - obsługa faksu\n" - --#: ../system-config-printer.py:4616 -+#: ../system-config-printer.py:4631 - msgid " - Extra fax features\n" - msgstr " - dodatkowe funkcje faksu\n" - --#: ../system-config-printer.py:4619 -+#: ../system-config-printer.py:4634 - msgid " - Better Input/Output support\n" - msgstr " - lepsza obsługa wejścia/wyjścia\n" - --#: ../system-config-printer.py:4622 -+#: ../system-config-printer.py:4637 - msgid " - Extra user interface features\n" - msgstr " - dodatkowe funkcje interfejsu użytkownika\n" - --#: ../system-config-printer.py:4625 -+#: ../system-config-printer.py:4640 - msgid " - Other extra features\n" - msgstr " - inne dodatkowe funkcje\n" - --#: ../system-config-printer.py:4630 -+#: ../system-config-printer.py:4645 - msgid "Install plugin" - msgstr "Zainstaluj wtyczkę" - --#: ../system-config-printer.py:4631 -+#: ../system-config-printer.py:4646 - msgid "Do not set up printer" - msgstr "Nie ustawiaj drukarki" - --#: ../system-config-printer.py:4632 -+#: ../system-config-printer.py:4647 - msgid "Set up without plugin" - msgstr "Ustaw bez wtyczki" - --#: ../system-config-printer.py:4634 ../troubleshoot/PrintTestPage.py:118 -+#: ../system-config-printer.py:4649 ../troubleshoot/PrintTestPage.py:118 - msgid "Yes" - msgstr "Tak" - --#: ../system-config-printer.py:4635 ../troubleshoot/PrintTestPage.py:119 -+#: ../system-config-printer.py:4650 ../troubleshoot/PrintTestPage.py:119 - msgid "No" - msgstr "Nie" - --#: ../system-config-printer.py:4809 ../system-config-printer.py:4813 -+#: ../system-config-printer.py:4824 ../system-config-printer.py:4828 - msgid " (Current)" - msgstr " (bieżąca)" - --#: ../system-config-printer.py:4845 --msgid "HP Printer (HPLIP)" --msgstr "Drukarka HP (HPLIP)" -- --#: ../system-config-printer.py:4886 -+#: ../system-config-printer.py:4881 - msgid "Other" - msgstr "Inne" - - #. device-info - #. PhysicalDevice obj - #. Separator? --#: ../system-config-printer.py:4902 -+#: ../system-config-printer.py:4897 - msgid "Network Printer" - msgstr "Drukarka sieciowa" - --#: ../system-config-printer.py:4906 -+#: ../system-config-printer.py:4901 - msgid "Find Network Printer" - msgstr "Znajdź drukarkę sieciową" - --#: ../system-config-printer.py:4979 ../system-config-printer.py:5376 -+#: ../system-config-printer.py:4974 ../system-config-printer.py:5371 - msgid "Scanning..." - msgstr "Skanowanie..." - --#: ../system-config-printer.py:5034 ../system-config-printer.py:5798 -+#: ../system-config-printer.py:5029 - msgid "No Print Shares" - msgstr "Brak udziałów drukowania" - --#: ../system-config-printer.py:5035 -+#: ../system-config-printer.py:5030 - msgid "" - "There were no print shares found. Please check that the Samba service is " - "marked as trusted in your firewall configuration." -@@ -1285,32 +1290,32 @@ msgstr "" - "Nie znaleziono udziałów drukowania. Należy sprawdzić, czy usługa Samba jest " - "zaznaczona jako zaufana w konfiguracji zapory sieciowej." - --#: ../system-config-printer.py:5296 ../system-config-printer.py:5357 -+#: ../system-config-printer.py:5291 ../system-config-printer.py:5352 - msgid "Print Share Verified" - msgstr "Sprawdzono udział drukowania" - --#: ../system-config-printer.py:5297 ../system-config-printer.py:5358 -+#: ../system-config-printer.py:5292 ../system-config-printer.py:5353 - msgid "This print share is accessible." - msgstr "Ten udział drukowania jest dostępny." - --#: ../system-config-printer.py:5302 ../system-config-printer.py:5362 -+#: ../system-config-printer.py:5297 ../system-config-printer.py:5357 - msgid "This print share is not accessible." - msgstr "Ten udział drukowania jest niedostępny." - --#: ../system-config-printer.py:5305 -+#: ../system-config-printer.py:5300 - msgid "Print Share Inaccessible" - msgstr "Udział drukowania jest niedostępny" - --#: ../system-config-printer.py:5361 -+#: ../system-config-printer.py:5356 - msgid "Inaccessible" - msgstr "Niedostępny" - --#: ../system-config-printer.py:5419 -+#: ../system-config-printer.py:5414 - #, python-format - msgid "It is not possible to obtain a list of queues from '%s'." - msgstr "Nie można uzyskać listy kolejek z \"%s\"." - --#: ../system-config-printer.py:5421 -+#: ../system-config-printer.py:5416 - msgid "" - "Obtaining a list of queues is a CUPS extension to IPP. Network printers do " - "not support it." -@@ -1318,68 +1323,68 @@ msgstr "" - "Uzyskiwanie listy kolejek jest rozszerzeniem CUPS do IPP. Drukarki sieciowe " - "nie obsługują tego." - --#: ../system-config-printer.py:5424 -+#: ../system-config-printer.py:5419 - msgid "No queues" - msgstr "Brak kolejek" - --#: ../system-config-printer.py:5425 -+#: ../system-config-printer.py:5420 - msgid "There are no queues available." - msgstr "Brak dostępnych kolejek." - --#: ../system-config-printer.py:5516 -+#: ../system-config-printer.py:5511 - msgid "Parallel Port" - msgstr "Port równoległy" - --#: ../system-config-printer.py:5518 -+#: ../system-config-printer.py:5513 - msgid "Serial Port" - msgstr "Port szeregowy" - --#: ../system-config-printer.py:5520 -+#: ../system-config-printer.py:5515 - msgid "USB" - msgstr "USB" - --#: ../system-config-printer.py:5522 ../system-config-printer.py:5525 -+#: ../system-config-printer.py:5517 ../system-config-printer.py:5520 - msgid "HP Linux Imaging and Printing (HPLIP)" - msgstr "Linuksowe obrazowanie i drukowanie HP (HPLIP)" - --#: ../system-config-printer.py:5527 -+#: ../system-config-printer.py:5522 - msgid "Hardware Abstraction Layer (HAL)" - msgstr "Warstwa abstrakcji sprzętowej (HAL)" - --#: ../system-config-printer.py:5529 -+#: ../system-config-printer.py:5524 - msgid "AppSocket/HP JetDirect" - msgstr "AppSocket/HP JetDirect" - --#: ../system-config-printer.py:5538 -+#: ../system-config-printer.py:5533 - #, python-format - msgid "LPD/LPR queue '%s'" - msgstr "Kolejka LPD/LPR \"%s\"" - --#: ../system-config-printer.py:5540 -+#: ../system-config-printer.py:5535 - msgid "LPD/LPR queue" - msgstr "Kolejka LPD/LPR" - --#: ../system-config-printer.py:5543 -+#: ../system-config-printer.py:5538 - msgid "Windows Printer via SAMBA" - msgstr "Drukarka Windows przez Sambę" - --#: ../system-config-printer.py:5545 ../glade/NewPrinterWindow.glade.h:66 -+#: ../system-config-printer.py:5540 ../glade/NewPrinterWindow.glade.h:65 - msgid "IPP" - msgstr "IPP" - --#: ../system-config-printer.py:5547 -+#: ../system-config-printer.py:5542 - msgid "HTTP" - msgstr "HTTP" - --#: ../system-config-printer.py:5632 -+#: ../system-config-printer.py:5624 - msgid "A printer connected to the parallel port." - msgstr "Drukarka połączona do portu równoległego." - --#: ../system-config-printer.py:5634 -+#: ../system-config-printer.py:5626 - msgid "A printer connected to a USB port." - msgstr "Drukarka połączona do portu USB." - --#: ../system-config-printer.py:5636 -+#: ../system-config-printer.py:5628 - msgid "" - "HPLIP software driving a printer, or the printer function of a multi-" - "function device." -@@ -1387,7 +1392,7 @@ msgstr "" - "Oprogramowanie HPLIP steruje drukarką lub funkcją drukarki urządzenia " - "wielofunkcyjnego." - --#: ../system-config-printer.py:5639 -+#: ../system-config-printer.py:5631 - msgid "" - "HPLIP software driving a fax machine, or the fax function of a multi-" - "function device." -@@ -1395,47 +1400,43 @@ msgstr "" - "Oprogramowanie HPLIP steruje faksem lub funkcją faksu urządzenia " - "wielofunkcyjnego." - --#: ../system-config-printer.py:5642 -+#: ../system-config-printer.py:5634 - msgid "Local printer detected by the Hardware Abstraction Layer (HAL)." - msgstr "Lokalne drukarki wykryte przez warstwę abstrakcji sprzętowej (HAL)." - --#: ../system-config-printer.py:5799 --msgid "HPLIP cannot find the device." --msgstr "HPLIP nie może znaleźć urządzenia." -- --#: ../system-config-printer.py:5881 -+#: ../system-config-printer.py:5831 - msgid "No printer was found at that address." - msgstr "Nie znaleziono drukarek pod tym adresem." - --#: ../system-config-printer.py:6020 -+#: ../system-config-printer.py:5968 - msgid "-- Select from search results --" - msgstr "-- Wybierz z wyników wyszukiwania --" - --#: ../system-config-printer.py:6022 -+#: ../system-config-printer.py:5970 - msgid "-- No matches found --" - msgstr "-- Nie znaleziono --" - --#: ../system-config-printer.py:6203 -+#: ../system-config-printer.py:6151 - msgid " (recommended)" - msgstr " (zalecane)" - --#: ../system-config-printer.py:6217 -+#: ../system-config-printer.py:6165 - msgid "This PPD is generated by foomatic." - msgstr "Ten PPD został utworzony przez foomatica." - --#: ../system-config-printer.py:6241 -+#: ../system-config-printer.py:6189 - msgid "OpenPrinting" - msgstr "OpenPrinting" - --#: ../system-config-printer.py:6252 -+#: ../system-config-printer.py:6200 - msgid "Distributable" - msgstr "Distributable" - --#: ../system-config-printer.py:6293 -+#: ../system-config-printer.py:6241 - msgid ", " - msgstr ", " - --#: ../system-config-printer.py:6298 -+#: ../system-config-printer.py:6246 - #, python-format - msgid "" - "\n" -@@ -1444,20 +1445,20 @@ msgstr "" - "\n" - "(%s)" - --#: ../system-config-printer.py:6303 -+#: ../system-config-printer.py:6251 - msgid "No support contacts known" - msgstr "Brak znanego kontaktu wsparcia" - --#: ../system-config-printer.py:6307 ../system-config-printer.py:6320 -+#: ../system-config-printer.py:6255 ../system-config-printer.py:6268 - msgid "Not specified." - msgstr "Nie podano." - - #. Foomatic database problem of some sort. --#: ../system-config-printer.py:6360 -+#: ../system-config-printer.py:6308 - msgid "Database error" - msgstr "Błąd bazy danych" - --#: ../system-config-printer.py:6361 -+#: ../system-config-printer.py:6309 - #, python-format - msgid "The '%s' driver cannot be used with printer '%s %s'." - msgstr "Sterownik \"%s\" nie może być używany z drukarką \"%s %s\"." -@@ -1465,60 +1466,60 @@ msgstr "Sterownik \"%s\" nie może być - #. This printer references some XML that is not - #. installed by default. Point the user at the - #. package they need to install. --#: ../system-config-printer.py:6371 -+#: ../system-config-printer.py:6319 - #, python-format - msgid "You will need to install the '%s' package in order to use this driver." - msgstr "Należy zainstalować pakiet \"%s\", aby użyć tego sterownika." - - #. This error came from trying to open the PPD file. --#: ../system-config-printer.py:6378 -+#: ../system-config-printer.py:6326 - msgid "PPD error" - msgstr "Błąd PPD" - --#: ../system-config-printer.py:6380 -+#: ../system-config-printer.py:6328 - msgid "Failed to read PPD file. Possible reason follows:" - msgstr "Odczytanie pliku PPD nie powiodło się. Możliwe przyczyny:" - - #. Failed to get PPD downloaded from OpenPrinting XXX --#: ../system-config-printer.py:6397 -+#: ../system-config-printer.py:6345 - msgid "Downloadable drivers" - msgstr "Sterowniki do pobrania" - --#: ../system-config-printer.py:6398 -+#: ../system-config-printer.py:6346 - msgid "Failed to download PPD." - msgstr "Pobranie PPD nie powiodło się." - --#: ../system-config-printer.py:6405 -+#: ../system-config-printer.py:6353 - msgid "fetching PPD" - msgstr "przechwytywanie PPD" - --#: ../system-config-printer.py:6434 ../system-config-printer.py:6472 -+#: ../system-config-printer.py:6382 ../system-config-printer.py:6420 - msgid "No Installable Options" - msgstr "Brak opcji instalacyjnych" - --#: ../system-config-printer.py:6520 -+#: ../system-config-printer.py:6468 - #, python-format - msgid "adding printer %s" - msgstr "dodawanie drukarki %s" - --#: ../system-config-printer.py:6669 -+#: ../system-config-printer.py:6617 - msgid "Would you like to print a test page?" - msgstr "Wydrukować stronę próbną?" - --#: ../system-config-printer.py:6722 -+#: ../system-config-printer.py:6670 - msgid "Install driver" - msgstr "Zainstaluj sterownik" - --#: ../system-config-printer.py:6723 ../troubleshoot/CheckPPDSanity.py:131 -+#: ../system-config-printer.py:6671 ../troubleshoot/CheckPPDSanity.py:131 - #, python-format - msgid "Printer '%s' requires the %s package but it is not currently installed." - msgstr "Drukarka \"%s\" wymaga pakietu %s, który nie jest zainstalowany." - --#: ../system-config-printer.py:6739 -+#: ../system-config-printer.py:6687 - msgid "Missing driver" - msgstr "Brak sterownika" - --#: ../system-config-printer.py:6740 -+#: ../system-config-printer.py:6688 - #, python-format - msgid "" - "Printer '%s' requires the '%s' program but it is not currently installed. " -@@ -1652,107 +1653,103 @@ msgid "Enter device URI" - msgstr "Podawanie URI urządzenia" - - #: ../glade/NewPrinterWindow.glade.h:5 --msgid "HP Printer (HPLIP) via network" --msgstr "Drukarka HP (HPLIP) przez sieć" -- --#: ../glade/NewPrinterWindow.glade.h:6 - msgid "IPP Printer" - msgstr "Drukarka IPP" - --#: ../glade/NewPrinterWindow.glade.h:7 -+#: ../glade/NewPrinterWindow.glade.h:6 - msgid "License Terms" - msgstr "Warunki licencji" - --#: ../glade/NewPrinterWindow.glade.h:8 -+#: ../glade/NewPrinterWindow.glade.h:7 - msgid "Location of the LPD network printer" - msgstr "Położenie drukarki sieciowej LPD" - --#: ../glade/NewPrinterWindow.glade.h:9 -+#: ../glade/NewPrinterWindow.glade.h:8 - msgid "Location of the network printer" - msgstr "Położenie drukarki sieciowej" - --#: ../glade/NewPrinterWindow.glade.h:10 -+#: ../glade/NewPrinterWindow.glade.h:9 - msgid "Location (optional)" - msgstr "Położenie (opcjonalne)" - --#: ../glade/NewPrinterWindow.glade.h:11 -+#: ../glade/NewPrinterWindow.glade.h:10 - msgid "Network Printer" - msgstr "Drukarka sieciowa" - --#: ../glade/NewPrinterWindow.glade.h:12 -+#: ../glade/NewPrinterWindow.glade.h:11 - msgid "Note" - msgstr "Uwaga" - --#: ../glade/NewPrinterWindow.glade.h:13 -+#: ../glade/NewPrinterWindow.glade.h:12 - msgid "Output Quality" - msgstr "Jakość wyjściowa" - --#: ../glade/NewPrinterWindow.glade.h:14 -+#: ../glade/NewPrinterWindow.glade.h:13 - msgid "Printer Name" - msgstr "Nazwa drukarki" - --#: ../glade/NewPrinterWindow.glade.h:15 -+#: ../glade/NewPrinterWindow.glade.h:14 - msgid "SMB Printer" - msgstr "Drukarka SMB" - --#: ../glade/NewPrinterWindow.glade.h:16 -+#: ../glade/NewPrinterWindow.glade.h:15 - msgid "Select Driver" - msgstr "Wybierz sterownik" - --#: ../glade/NewPrinterWindow.glade.h:17 -+#: ../glade/NewPrinterWindow.glade.h:16 - msgid "Settings of the serial port" - msgstr "Ustawienia portu szeregowego" - --#: ../glade/NewPrinterWindow.glade.h:18 -+#: ../glade/NewPrinterWindow.glade.h:17 - msgid "smb://[workgroup/]server[:port]/printer" - msgstr "smb://[gruparobocza/]serwer[:port]/drukarka" - --#: ../glade/NewPrinterWindow.glade.h:19 -+#: ../glade/NewPrinterWindow.glade.h:18 - msgid "Choose Class Members" - msgstr "" - "Proszę wybrać elementy klasy" - --#: ../glade/NewPrinterWindow.glade.h:20 -+#: ../glade/NewPrinterWindow.glade.h:19 - msgid "Choose Driver" - msgstr "Proszę wybrać sterownik" - --#: ../glade/NewPrinterWindow.glade.h:21 -+#: ../glade/NewPrinterWindow.glade.h:20 - msgid "Describe Printer" - msgstr "Proszę opisać drukarkę" - --#: ../glade/NewPrinterWindow.glade.h:22 -+#: ../glade/NewPrinterWindow.glade.h:21 - msgid "Existing Settings" - msgstr "Istniejące ustawienia" - --#: ../glade/NewPrinterWindow.glade.h:23 -+#: ../glade/NewPrinterWindow.glade.h:22 - msgid "Installable Options" - msgstr "Opcje instalacyjne" - --#: ../glade/NewPrinterWindow.glade.h:24 -+#: ../glade/NewPrinterWindow.glade.h:23 - msgid "Select Device" - msgstr "Proszę wybrać urządzenie" - --#: ../glade/NewPrinterWindow.glade.h:25 -+#: ../glade/NewPrinterWindow.glade.h:24 - msgid "Baud Rate" - msgstr "Prędkość w baudach" - --#: ../glade/NewPrinterWindow.glade.h:26 -+#: ../glade/NewPrinterWindow.glade.h:25 - msgid "Browse..." - msgstr "Przeglądaj..." - --#: ../glade/NewPrinterWindow.glade.h:27 -+#: ../glade/NewPrinterWindow.glade.h:26 - msgid "Comments..." - msgstr "Komentarze..." - --#: ../glade/NewPrinterWindow.glade.h:28 -+#: ../glade/NewPrinterWindow.glade.h:27 - msgid "Connection" - msgstr "Połączenie" - --#: ../glade/NewPrinterWindow.glade.h:29 -+#: ../glade/NewPrinterWindow.glade.h:28 - msgid "Data Bits" - msgstr "Bity danych" - --#: ../glade/NewPrinterWindow.glade.h:30 -+#: ../glade/NewPrinterWindow.glade.h:29 - msgid "" - "Default\n" - "1200\n" -@@ -1774,7 +1771,7 @@ msgstr "" - "57600\n" - "115200" - --#: ../glade/NewPrinterWindow.glade.h:39 -+#: ../glade/NewPrinterWindow.glade.h:38 - msgid "" - "Default\n" - "8\n" -@@ -1784,7 +1781,7 @@ msgstr "" - "8\n" - "7" - --#: ../glade/NewPrinterWindow.glade.h:42 -+#: ../glade/NewPrinterWindow.glade.h:41 - msgid "" - "Default\n" - "None\n" -@@ -1796,7 +1793,7 @@ msgstr "" - "Nieparzysta\n" - "Parzysta" - --#: ../glade/NewPrinterWindow.glade.h:46 -+#: ../glade/NewPrinterWindow.glade.h:45 - msgid "" - "Default\n" - "None\n" -@@ -1810,113 +1807,113 @@ msgstr "" - "RTS/CTS (sprzętowa)\n" - "DTR/DSR (sprzętowa)" - --#: ../glade/NewPrinterWindow.glade.h:51 -+#: ../glade/NewPrinterWindow.glade.h:50 - #: ../glade/PrinterPropertiesDialog.glade.h:35 - msgid "Description:" - msgstr "Opis:" - --#: ../glade/NewPrinterWindow.glade.h:52 ../troubleshoot/DeviceListed.py:40 -+#: ../glade/NewPrinterWindow.glade.h:51 ../troubleshoot/DeviceListed.py:40 - msgid "Device URI" - msgstr "URI urządzenia" - --#: ../glade/NewPrinterWindow.glade.h:53 -+#: ../glade/NewPrinterWindow.glade.h:52 - msgid "Device description." - msgstr "Opis urządzenia:" - --#: ../glade/NewPrinterWindow.glade.h:54 -+#: ../glade/NewPrinterWindow.glade.h:53 - msgid "DirectJet" - msgstr "DirectJet" - --#: ../glade/NewPrinterWindow.glade.h:56 -+#: ../glade/NewPrinterWindow.glade.h:55 - msgid "Driver details" - msgstr "Szczegóły sterownika" - --#: ../glade/NewPrinterWindow.glade.h:57 -+#: ../glade/NewPrinterWindow.glade.h:56 - msgid "Empty" - msgstr "Puste" - --#: ../glade/NewPrinterWindow.glade.h:58 -+#: ../glade/NewPrinterWindow.glade.h:57 - msgid "Find _Queue..." - msgstr "Znajdź _kolejkę..." - --#: ../glade/NewPrinterWindow.glade.h:59 -+#: ../glade/NewPrinterWindow.glade.h:58 - msgid "Flow Control" - msgstr "Kontrola przepływu" - --#: ../glade/NewPrinterWindow.glade.h:60 -+#: ../glade/NewPrinterWindow.glade.h:59 - msgid "" - "For the printer you have selected there are drivers available for download." - msgstr "Dla wybranej drukarki są dostępne sterowniki do pobrania." - --#: ../glade/NewPrinterWindow.glade.h:61 -+#: ../glade/NewPrinterWindow.glade.h:60 - msgid "Free software" - msgstr "Wolne oprogramowanie" - --#: ../glade/NewPrinterWindow.glade.h:62 -+#: ../glade/NewPrinterWindow.glade.h:61 - msgid "Graphics:" - msgstr "Grafika:" - --#: ../glade/NewPrinterWindow.glade.h:63 -+#: ../glade/NewPrinterWindow.glade.h:62 - msgid "Host:" - msgstr "Komputer:" - --#: ../glade/NewPrinterWindow.glade.h:64 -+#: ../glade/NewPrinterWindow.glade.h:63 - msgid "Human-readable description such as \"HP LaserJet with Duplexer\"" - msgstr "Opis czytelny dla człowieka, taki jak \"HP LaserJet z dupleksem\"" - --#: ../glade/NewPrinterWindow.glade.h:65 -+#: ../glade/NewPrinterWindow.glade.h:64 - msgid "Human-readable location such as \"Lab 1\"" - msgstr "Położenie czytelne dla człowieka, takie jak \"Laboratorium 1\"" - --#: ../glade/NewPrinterWindow.glade.h:67 -+#: ../glade/NewPrinterWindow.glade.h:66 - msgid "LPD" - msgstr "LPD" - --#: ../glade/NewPrinterWindow.glade.h:68 -+#: ../glade/NewPrinterWindow.glade.h:67 - msgid "License:" - msgstr "Licencja:" - --#: ../glade/NewPrinterWindow.glade.h:69 -+#: ../glade/NewPrinterWindow.glade.h:68 - msgid "Line art:" - msgstr "Szkic:" - --#: ../glade/NewPrinterWindow.glade.h:70 -+#: ../glade/NewPrinterWindow.glade.h:69 - msgid "Local Driver" - msgstr "Lokalny sterownik" - --#: ../glade/NewPrinterWindow.glade.h:71 -+#: ../glade/NewPrinterWindow.glade.h:70 - msgid "Make and model:" - msgstr "Producent i model:" - --#: ../glade/NewPrinterWindow.glade.h:72 -+#: ../glade/NewPrinterWindow.glade.h:71 - msgid "Manufacturer" - msgstr "Producent" - --#: ../glade/NewPrinterWindow.glade.h:73 -+#: ../glade/NewPrinterWindow.glade.h:72 - msgid "Network" - msgstr "Sieć" - --#: ../glade/NewPrinterWindow.glade.h:75 -+#: ../glade/NewPrinterWindow.glade.h:74 - msgid "No, I do not accept this license" - msgstr "Nie, nie akceptuję licencji" - --#: ../glade/NewPrinterWindow.glade.h:76 -+#: ../glade/NewPrinterWindow.glade.h:75 - msgid "Parity" - msgstr "Równorzędność" - --#: ../glade/NewPrinterWindow.glade.h:78 -+#: ../glade/NewPrinterWindow.glade.h:77 - msgid "Patented algorithms" - msgstr "Opatentowane algorytmy" - --#: ../glade/NewPrinterWindow.glade.h:79 -+#: ../glade/NewPrinterWindow.glade.h:78 - msgid "Photo:" - msgstr "Zdjęcie:" - --#: ../glade/NewPrinterWindow.glade.h:80 -+#: ../glade/NewPrinterWindow.glade.h:79 - msgid "Port number:" - msgstr "Numer portu:" - --#: ../glade/NewPrinterWindow.glade.h:81 -+#: ../glade/NewPrinterWindow.glade.h:80 - msgid "" - "PostScript Printer Description (PPD) files can often be found on the driver " - "disk that comes with the printer. For PostScript printers they are often " -@@ -1926,75 +1923,75 @@ msgstr "" - "ze sterownikami, który otzrymano z drukarką. Dla drukarek PostScriptowych " - "często są częścią sterownika dla Windows®." - --#: ../glade/NewPrinterWindow.glade.h:82 -+#: ../glade/NewPrinterWindow.glade.h:81 - msgid "Printer model:" - msgstr "Model drukarki:" - --#: ../glade/NewPrinterWindow.glade.h:83 -+#: ../glade/NewPrinterWindow.glade.h:82 - msgid "Probe" - msgstr "Wykryj" - --#: ../glade/NewPrinterWindow.glade.h:84 -+#: ../glade/NewPrinterWindow.glade.h:83 - msgid "Prompt user if authentication is required" - msgstr "Powiadamianie użytkownika, jeśli wymagane jest uwierzytelnienie" - --#: ../glade/NewPrinterWindow.glade.h:85 -+#: ../glade/NewPrinterWindow.glade.h:84 - msgid "Provide PPD file" - msgstr "Podaj plik PPD" - --#: ../glade/NewPrinterWindow.glade.h:86 -+#: ../glade/NewPrinterWindow.glade.h:85 - msgid "Queue:" - msgstr "Kolejka:" - --#: ../glade/NewPrinterWindow.glade.h:87 -+#: ../glade/NewPrinterWindow.glade.h:86 - msgid "SCSI" - msgstr "SCSI" - --#: ../glade/NewPrinterWindow.glade.h:88 -+#: ../glade/NewPrinterWindow.glade.h:87 - msgid "SMB" - msgstr "SMB" - --#: ../glade/NewPrinterWindow.glade.h:89 -+#: ../glade/NewPrinterWindow.glade.h:88 - msgid "Search for a printer driver to download" - msgstr "Znajdź sterownik drukarki do pobrania" - --#: ../glade/NewPrinterWindow.glade.h:90 -+#: ../glade/NewPrinterWindow.glade.h:89 - msgid "Searching..." - msgstr "Wyszukiwanie..." - --#: ../glade/NewPrinterWindow.glade.h:91 -+#: ../glade/NewPrinterWindow.glade.h:90 - msgid "Select A File" - msgstr "Wybierz plik" - --#: ../glade/NewPrinterWindow.glade.h:92 -+#: ../glade/NewPrinterWindow.glade.h:91 - msgid "Select printer from database" - msgstr "Wybierz drukarkę z bazy danych" - --#: ../glade/NewPrinterWindow.glade.h:93 -+#: ../glade/NewPrinterWindow.glade.h:92 - msgid "Serial" - msgstr "Szeregowo" - --#: ../glade/NewPrinterWindow.glade.h:94 -+#: ../glade/NewPrinterWindow.glade.h:93 - msgid "Set authentication details now" - msgstr "Ustaw teraz szczegóły uwierzytelnienia" - --#: ../glade/NewPrinterWindow.glade.h:95 -+#: ../glade/NewPrinterWindow.glade.h:94 - msgid "Short name for this printer such as \"laserjet\"" - msgstr "Krótka nazwa dla tej drukarki, taka jak \"laserjet\"" - --#: ../glade/NewPrinterWindow.glade.h:96 -+#: ../glade/NewPrinterWindow.glade.h:95 - msgid "Supplier:" - msgstr "Dostawca:" - --#: ../glade/NewPrinterWindow.glade.h:97 -+#: ../glade/NewPrinterWindow.glade.h:96 - msgid "Support:" - msgstr "Wsparcie:" - --#: ../glade/NewPrinterWindow.glade.h:98 -+#: ../glade/NewPrinterWindow.glade.h:97 - msgid "Text:" - msgstr "Tekst:" - --#: ../glade/NewPrinterWindow.glade.h:99 -+#: ../glade/NewPrinterWindow.glade.h:98 - msgid "" - "The foomatic printer database contains various manufacturer provided " - "PostScript Printer Description (PPD) files and also can generate PPD files " -@@ -2008,7 +2005,7 @@ msgstr "" - "dostarczone przez producentów dostarczają lepszy dostęp do określonych " - "funkcji drukarki." - --#: ../glade/NewPrinterWindow.glade.h:100 -+#: ../glade/NewPrinterWindow.glade.h:99 - msgid "" - "These drivers do not come from your operating system supplier and will not " - "be covered by their commercial support. See the support and license terms " -@@ -2018,7 +2015,7 @@ msgstr "" - "wsparciem technicznym. Proszę zobaczyć warunki wsparcia i licencji dostawcy " - "sterownika." - --#: ../glade/NewPrinterWindow.glade.h:101 -+#: ../glade/NewPrinterWindow.glade.h:100 - msgid "" - "This driver supports additional hardware that may be installed in the " - "printer." -@@ -2026,7 +2023,7 @@ msgstr "" - "Ten sterownik obsługuje dodatkowy sprzęt, który może zostać zainstalowany w " - "drukarce." - --#: ../glade/NewPrinterWindow.glade.h:102 -+#: ../glade/NewPrinterWindow.glade.h:101 - msgid "" - "This is done by assuming that options with the same name do have the same " - "meaning. Settings of options that are not present in the new PPD will be " -@@ -2036,7 +2033,7 @@ msgstr "" - "które nie są obecne w nowym PPD zostaną utracone, a opcje obecne tylko w " - "nowym PPD zostaną ustawione na domyślne." - --#: ../glade/NewPrinterWindow.glade.h:103 -+#: ../glade/NewPrinterWindow.glade.h:102 - msgid "" - "This way all current option settings will be lost. The default settings of " - "the new PPD will be used. " -@@ -2044,19 +2041,19 @@ msgstr "" - "W ten sposób wszystkie bieżące ustawienia opcji zostaną utracone. Zostaną " - "użyte domyślne ustawienia nowego PPD. " - --#: ../glade/NewPrinterWindow.glade.h:104 -+#: ../glade/NewPrinterWindow.glade.h:103 - msgid "Try to copy the option settings over from the old PPD. " - msgstr "Próbowanie kopiowania ustawień opcji ze starego PPD. " - --#: ../glade/NewPrinterWindow.glade.h:105 -+#: ../glade/NewPrinterWindow.glade.h:104 - msgid "URI:" - msgstr "URI:" - --#: ../glade/NewPrinterWindow.glade.h:107 -+#: ../glade/NewPrinterWindow.glade.h:106 - msgid "Use the new PPD (Postscript Printer Description) as is." - msgstr "Użycie nowego PPD (PostScriptowego opisu drukarki), takiego, jak jest." - --#: ../glade/NewPrinterWindow.glade.h:109 -+#: ../glade/NewPrinterWindow.glade.h:108 - msgid "" - "With this choice no driver download will be performed. In the next steps a " - "locally installed driver will be selected." -@@ -2064,24 +2061,24 @@ msgstr "" - "Żaden sterownik nie zostanie pobrany. W następnych krokach wybrany zostanie " - "lokalnie zainstalowany sterownik." - --#: ../glade/NewPrinterWindow.glade.h:110 -+#: ../glade/NewPrinterWindow.glade.h:109 - msgid "Yes, I accept this license" - msgstr "Tak, akceptuję licencję" - --#: ../glade/NewPrinterWindow.glade.h:111 -+#: ../glade/NewPrinterWindow.glade.h:110 - msgid "_Search" - msgstr "_Znajdź" - --#: ../glade/NewPrinterWindow.glade.h:112 -+#: ../glade/NewPrinterWindow.glade.h:111 - msgid "_Verify..." - msgstr "_Sprawdź..." - --#: ../glade/NewPrinterWindow.glade.h:113 -+#: ../glade/NewPrinterWindow.glade.h:112 - #: ../glade/PrinterPropertiesDialog.glade.h:128 - msgid "move left" - msgstr "przenieś w lewo" - --#: ../glade/NewPrinterWindow.glade.h:114 -+#: ../glade/NewPrinterWindow.glade.h:113 - #: ../glade/PrinterPropertiesDialog.glade.h:129 - msgid "move right" - msgstr "przenieś w prawo" -@@ -3003,7 +3000,7 @@ msgstr "Czy zaznaczone zadania drukowani - msgid "Remember to load paper of type '%s' into the printer first." - msgstr "Najpierw należy włożyć papier typu \"%s\" do drukarki." - --#: ../troubleshoot/PrintTestPage.py:399 -+#: ../troubleshoot/PrintTestPage.py:416 - msgid "Error submitting test page" - msgstr "Błąd podczas wysyłania strony próbnej" - -@@ -3201,3 +3198,12 @@ msgstr "Zarządzanie zadaniami wydruku" - #: ../my-default-printer.desktop.in.h:2 - msgid "Select default printer" - msgstr "Wybór domyślnej drukarki" -+ -+#~ msgid "HP Printer (HPLIP)" -+#~ msgstr "Drukarka HP (HPLIP)" -+ -+#~ msgid "HPLIP cannot find the device." -+#~ msgstr "HPLIP nie może znaleźć urządzenia." -+ -+#~ msgid "HP Printer (HPLIP) via network" -+#~ msgstr "Drukarka HP (HPLIP) przez sieć" -diff -up system-config-printer-1.1.5/po/pt_BR.po.git-1.1.x system-config-printer-1.1.5/po/pt_BR.po ---- system-config-printer-1.1.5/po/pt_BR.po.git-1.1.x 2009-03-03 22:21:46.000000000 +0000 -+++ system-config-printer-1.1.5/po/pt_BR.po 2009-03-10 17:43:31.000000000 +0000 -@@ -16,8 +16,8 @@ msgid "" - msgstr "" - "Project-Id-Version: system-config-printer\n" - "Report-Msgid-Bugs-To: https://bugzilla.redhat.com/bugzilla\n" --"POT-Creation-Date: 2009-03-02 23:22+0000\n" --"PO-Revision-Date: 2009-02-19 15:07-0300\n" -+"POT-Creation-Date: 2009-03-10 16:51+0000\n" -+"PO-Revision-Date: 2009-03-07 15:29-0300\n" - "Last-Translator: Igor Pires Soares \n" - "Language-Team: Brazilian Portuguese \n" - "MIME-Version: 1.0\n" -@@ -65,11 +65,11 @@ msgstr "" - msgid "Enter IP address" - msgstr "Digite o endereço IP" - --#: ../authconn.py:35 ../glade/NewPrinterWindow.glade.h:108 -+#: ../authconn.py:35 ../glade/NewPrinterWindow.glade.h:107 - msgid "Username:" - msgstr "Nome do usuário:" - --#: ../authconn.py:36 ../glade/NewPrinterWindow.glade.h:77 -+#: ../authconn.py:36 ../glade/NewPrinterWindow.glade.h:76 - msgid "Password:" - msgstr "Senha:" - -@@ -77,7 +77,7 @@ msgstr "Senha:" - msgid "Domain:" - msgstr "Domínio:" - --#: ../authconn.py:46 -+#: ../authconn.py:46 ../authconn.py:409 - msgid "Authentication" - msgstr "Autenticação" - -@@ -85,43 +85,52 @@ msgstr "Autenticação" - msgid "Remember password" - msgstr "Lembrar senha" - --#: ../authconn.py:211 ../authconn.py:232 -+#: ../authconn.py:208 -+#, python-format -+msgid "Unauthorized request (%s)" -+msgstr "" -+ -+#: ../authconn.py:209 -+msgid "You are not authorized to carry out therequested action." -+msgstr "" -+ -+#: ../authconn.py:212 ../authconn.py:233 - msgid "Operation canceled" - msgstr "Operação cancelada" - --#: ../authconn.py:253 -+#: ../authconn.py:250 - #, python-format - msgid "CUPS server error (%s)" - msgstr "Erro no servidor CUPS (%s)" - --#: ../authconn.py:255 ../errordialogs.py:57 --#: ../troubleshoot/PrintTestPage.py:400 -+#: ../authconn.py:252 ../errordialogs.py:56 ../errordialogs.py:70 -+msgid "CUPS server error" -+msgstr "Erro no servidor CUPS" -+ -+#: ../authconn.py:261 ../errordialogs.py:57 -+#: ../troubleshoot/PrintTestPage.py:417 - #, python-format - msgid "There was an error during the CUPS operation: '%s'." - msgstr "Houve um erro durante a operação do CUPS: \"%s\"." - --#: ../authconn.py:258 -+#: ../authconn.py:264 - msgid "Retry" - msgstr "Repetir" - --#: ../authconn.py:379 ../authconn.py:381 ../errordialogs.py:65 ../pysmb.py:75 -+#: ../authconn.py:385 ../authconn.py:387 ../errordialogs.py:65 ../pysmb.py:75 - #: ../pysmb.py:77 - msgid "Not authorized" - msgstr "Não autorizado" - --#: ../authconn.py:382 ../pysmb.py:78 -+#: ../authconn.py:388 ../pysmb.py:78 - msgid "The password may be incorrect." - msgstr "A senha pode estar incorreta." - --#: ../authconn.py:400 -+#: ../authconn.py:407 - #, python-format - msgid "Authentication (%s)" - msgstr "Autenticação (%s)" - --#: ../errordialogs.py:56 ../errordialogs.py:70 --msgid "CUPS server error" --msgstr "Erro no servidor CUPS" -- - #: ../errordialogs.py:66 - msgid "" - "The password may be incorrect, or the server may be configured to deny " -@@ -150,7 +159,7 @@ msgstr "Atualização requerida" - msgid "Server error" - msgstr "Erro no servidor" - --#: ../errordialogs.py:82 ../system-config-printer.py:1219 -+#: ../errordialogs.py:82 ../system-config-printer.py:1223 - msgid "Not connected" - msgstr "Não conectado" - -@@ -172,7 +181,7 @@ msgstr "_Novo grupo" - msgid "_New Group from Selection" - msgstr "_Novo grupo da seleção" - --#: ../GroupsPane.py:98 ../system-config-printer.py:393 -+#: ../GroupsPane.py:98 ../system-config-printer.py:397 - msgid "_Rename" - msgstr "_Renomear" - -@@ -240,7 +249,7 @@ msgid "Document" - msgstr "Documento" - - #: ../jobviewer.py:212 ../my-default-printer.py:153 --#: ../system-config-printer.py:366 ../system-config-printer.py:1367 -+#: ../system-config-printer.py:370 ../system-config-printer.py:1371 - #: ../troubleshoot/PrintTestPage.py:84 - msgid "Printer" - msgstr "Impressora" -@@ -277,8 +286,8 @@ msgstr "Status da impressão do document - - #: ../jobviewer.py:386 ../jobviewer.py:451 ../jobviewer.py:452 - #: ../jobviewer.py:492 ../jobviewer.py:600 ../jobviewer.py:727 --#: ../jobviewer.py:1196 ../jobviewer.py:1222 ../system-config-printer.py:2546 --#: ../glade/NewPrinterWindow.glade.h:106 -+#: ../jobviewer.py:1196 ../jobviewer.py:1222 ../system-config-printer.py:2556 -+#: ../glade/NewPrinterWindow.glade.h:105 - #: ../troubleshoot/ChooseNetworkPrinter.py:101 - #: ../troubleshoot/ChooseNetworkPrinter.py:102 - #: ../troubleshoot/ChooseNetworkPrinter.py:105 -@@ -366,12 +375,12 @@ msgstr "Retido até o fim de semana" - msgid "Pending" - msgstr "Pendente" - --#: ../jobviewer.py:591 ../system-config-printer.py:186 -+#: ../jobviewer.py:591 ../system-config-printer.py:190 - #: ../troubleshoot/PrintTestPage.py:43 - msgid "Processing" - msgstr "Processando" - --#: ../jobviewer.py:592 ../system-config-printer.py:188 -+#: ../jobviewer.py:592 ../system-config-printer.py:192 - #: ../troubleshoot/PrintTestPage.py:44 - msgid "Stopped" - msgstr "Parada" -@@ -484,8 +493,8 @@ msgstr "_Utilizar padrão do sistema" - msgid "_Set Default" - msgstr "_Definir como padrão" - --#: ../my-default-printer.py:158 ../system-config-printer.py:423 --#: ../system-config-printer.py:3660 ../troubleshoot/ChooseNetworkPrinter.py:37 -+#: ../my-default-printer.py:158 ../system-config-printer.py:427 -+#: ../system-config-printer.py:3675 ../troubleshoot/ChooseNetworkPrinter.py:37 - #: ../troubleshoot/ChoosePrinter.py:38 - msgid "Location" - msgstr "Localização" -@@ -514,7 +523,7 @@ msgstr "Comportamento padrão" - msgid "Authenticated" - msgstr "Autenticado" - --#: ../ppdippstr.py:50 ../system-config-printer.py:6259 -+#: ../ppdippstr.py:50 ../system-config-printer.py:6207 - msgid "None" - msgstr "Nenhum" - -@@ -728,125 +737,125 @@ msgstr "600 dpi, colorido, cartucho pret - msgid "1200 dpi, photo, black + color cartridge, photo paper" - msgstr "1200 dpi, foto, cartucho preto + colorido, papel para foto" - --#: ../system-config-printer.py:127 -+#: ../system-config-printer.py:131 - msgid "To do this, select System->Administration->Firewall from the main menu." - msgstr "" - "Para fazer isso, selecione Sistema->Administração->Firewall no menu " - "principal." - --#: ../system-config-printer.py:185 -+#: ../system-config-printer.py:189 - msgid "Idle" - msgstr "Ociosa" - --#: ../system-config-printer.py:187 -+#: ../system-config-printer.py:191 - msgid "Busy" - msgstr "Ocupada" - --#: ../system-config-printer.py:372 ../system-config-printer.py:1373 -+#: ../system-config-printer.py:376 ../system-config-printer.py:1377 - msgid "Class" - msgstr "Classe" - --#: ../system-config-printer.py:399 -+#: ../system-config-printer.py:403 - msgid "Set As De_fault" - msgstr "_Definir como padrão" - --#: ../system-config-printer.py:403 -+#: ../system-config-printer.py:407 - msgid "_Create class" - msgstr "_Criar classe" - --#: ../system-config-printer.py:405 -+#: ../system-config-printer.py:409 - msgid "View Print _Queue" - msgstr "Ver _fila de impressão" - --#: ../system-config-printer.py:407 -+#: ../system-config-printer.py:411 - msgid "_Add to Group" - msgstr "_Adicionar ao grupo" - --#: ../system-config-printer.py:409 -+#: ../system-config-printer.py:413 - msgid "Save Results as _Group" - msgstr "Salvar resultados como um _grupo" - --#: ../system-config-printer.py:411 -+#: ../system-config-printer.py:415 - msgid "Save Filter as _Search Group" - msgstr "Salvar filtro como um grupo de pe_squisa" - --#: ../system-config-printer.py:415 -+#: ../system-config-printer.py:419 - msgid "E_nabled" - msgstr "_Habilitada" - --#: ../system-config-printer.py:417 -+#: ../system-config-printer.py:421 - msgid "_Shared" - msgstr "_Compartilhada" - --#: ../system-config-printer.py:421 ../troubleshoot/ChooseNetworkPrinter.py:35 -+#: ../system-config-printer.py:425 ../troubleshoot/ChooseNetworkPrinter.py:35 - #: ../troubleshoot/ChoosePrinter.py:36 ../troubleshoot/DeviceListed.py:36 - msgid "Name" - msgstr "Nome" - --#: ../system-config-printer.py:422 -+#: ../system-config-printer.py:426 - msgid "Description" - msgstr "Descrição" - --#: ../system-config-printer.py:424 -+#: ../system-config-printer.py:428 - msgid "Manufacturer / Model" - msgstr "Fabricante / Modelo" - - #. Printer state reasons list --#: ../system-config-printer.py:499 -+#: ../system-config-printer.py:503 - msgid "Message" - msgstr "Mensagem" - --#: ../system-config-printer.py:534 -+#: ../system-config-printer.py:538 - msgid "Problems?" - msgstr "Problemas?" - --#: ../system-config-printer.py:637 ../system-config-printer.py:639 -+#: ../system-config-printer.py:641 ../system-config-printer.py:643 - msgid "Members of this class" - msgstr "Membros desta classe" - --#: ../system-config-printer.py:638 ../system-config-printer.py:640 -+#: ../system-config-printer.py:642 ../system-config-printer.py:644 - msgid "Others" - msgstr "Outros" - --#: ../system-config-printer.py:641 -+#: ../system-config-printer.py:645 - msgid "Devices" - msgstr "Dispositivos" - --#: ../system-config-printer.py:642 -+#: ../system-config-printer.py:646 - msgid "Connections" - msgstr "Conexões" - --#: ../system-config-printer.py:643 -+#: ../system-config-printer.py:647 - msgid "Makes" - msgstr "Fabricantes" - --#: ../system-config-printer.py:644 -+#: ../system-config-printer.py:648 - msgid "Models" - msgstr "Modelos" - --#: ../system-config-printer.py:645 -+#: ../system-config-printer.py:649 - msgid "Drivers" - msgstr "Drivers" - --#: ../system-config-printer.py:646 ../glade/NewPrinterWindow.glade.h:55 -+#: ../system-config-printer.py:650 ../glade/NewPrinterWindow.glade.h:54 - msgid "Downloadable Drivers" - msgstr "Drivers baixáveis" - --#: ../system-config-printer.py:647 -+#: ../system-config-printer.py:651 - msgid "Users" - msgstr "Usuários" - --#: ../system-config-printer.py:682 -+#: ../system-config-printer.py:686 - msgid "Automatic rotation" - msgstr "Rotação automática" - --#: ../system-config-printer.py:989 -+#: ../system-config-printer.py:993 - #, python-format - msgid "Printer Properties - '%s' on %s" - msgstr "Propriedades da impressora - \"%s\" em %s" - - #. The Conflict button was pressed. --#: ../system-config-printer.py:996 -+#: ../system-config-printer.py:1000 - msgid "" - "There are conflicting options.\n" - "Changes can only be applied after\n" -@@ -856,78 +865,78 @@ msgstr "" - "Mudanças somente poderão ser aplicadas depois\n" - "que estes conflitos forem resolvidos." - --#: ../system-config-printer.py:1214 -+#: ../system-config-printer.py:1218 - #, python-format - msgid "Printer configuration - %s" - msgstr "Configuração da impressora - %s" - --#: ../system-config-printer.py:1217 -+#: ../system-config-printer.py:1221 - #, python-format - msgid "Connected to %s" - msgstr "Conectado a %s" - - #. Update our copy of the printer's settings. --#: ../system-config-printer.py:1257 ../system-config-printer.py:2042 -+#: ../system-config-printer.py:1261 ../system-config-printer.py:2046 - msgid "obtaining queue details" - msgstr "obtendo detalhes da fila" - --#: ../system-config-printer.py:1295 -+#: ../system-config-printer.py:1299 - msgid "Remove from Group" - msgstr "Remover do grupo" - --#: ../system-config-printer.py:1361 -+#: ../system-config-printer.py:1365 - msgid "Network printer (discovered)" - msgstr "Impressora de rede (descoberta)" - --#: ../system-config-printer.py:1364 -+#: ../system-config-printer.py:1368 - msgid "Network class (discovered)" - msgstr "Classe de rede (descoberta)" - --#: ../system-config-printer.py:1370 ../system-config-printer.py:5524 --#: ../system-config-printer.py:5594 ../system-config-printer.py:5596 -+#: ../system-config-printer.py:1374 ../system-config-printer.py:5519 -+#: ../system-config-printer.py:5589 ../system-config-printer.py:5591 - msgid "Fax" - msgstr "Fax" - --#: ../system-config-printer.py:1376 ../system-config-printer.py:1382 -+#: ../system-config-printer.py:1380 ../system-config-printer.py:1386 - #: ../troubleshoot/LocalOrRemote.py:30 - msgid "Network printer" - msgstr "Impressora de rede" - --#: ../system-config-printer.py:1379 -+#: ../system-config-printer.py:1383 - msgid "Network print share" - msgstr "Compartilhamento da impressora de rede" - --#: ../system-config-printer.py:1508 ../glade/ConnectingDialog.glade.h:2 -+#: ../system-config-printer.py:1512 ../glade/ConnectingDialog.glade.h:2 - #, no-c-format, python-format - msgid "Opening connection to %s" - msgstr "Abrindo conexão para %s" - --#: ../system-config-printer.py:1887 -+#: ../system-config-printer.py:1891 - msgid "Installable Options" - msgstr "Opções instaláveis" - --#: ../system-config-printer.py:1888 -+#: ../system-config-printer.py:1892 - #: ../glade/PrinterPropertiesDialog.glade.h:109 - msgid "Printer Options" - msgstr "Opções da impressora" - --#: ../system-config-printer.py:1924 -+#: ../system-config-printer.py:1928 - #, python-format - msgid "modifying class %s" - msgstr "modificando classe %s" - --#: ../system-config-printer.py:1926 ../system-config-printer.py:3019 --#: ../system-config-printer.py:3044 ../system-config-printer.py:6547 --#: ../system-config-printer.py:6559 ../system-config-printer.py:6581 -+#: ../system-config-printer.py:1930 ../system-config-printer.py:3037 -+#: ../system-config-printer.py:3062 ../system-config-printer.py:6495 -+#: ../system-config-printer.py:6507 ../system-config-printer.py:6529 - #, python-format - msgid "modifying printer %s" - msgstr "modificando impressora %s" - --#: ../system-config-printer.py:1941 -+#: ../system-config-printer.py:1945 - msgid "This will delete this class!" - msgstr "Isto irá excluir esta classe!" - --#: ../system-config-printer.py:1942 -+#: ../system-config-printer.py:1946 - msgid "Proceed anyway?" - msgstr "Proceder mesmo assim?" - -@@ -935,45 +944,45 @@ msgstr "Proceder mesmo assim?" - #. but we have never fetched the server settings to see whether - #. the server is publishing shared printers. Fetch the settings - #. now so that we can update the "not published" label if necessary. --#: ../system-config-printer.py:2030 ../system-config-printer.py:3203 -+#: ../system-config-printer.py:2034 ../system-config-printer.py:3221 - msgid "fetching server settings" - msgstr "buscando configurações do servidor" - --#: ../system-config-printer.py:2100 -+#: ../system-config-printer.py:2104 - msgid "Set Default Printer" - msgstr "Definir impressora padrão" - --#: ../system-config-printer.py:2102 -+#: ../system-config-printer.py:2106 - msgid "Do you want to set this as the system-wide default printer?" - msgstr "" - "Você deseja definir essa impressora como a padrão do sistema como um todo?" - --#: ../system-config-printer.py:2104 -+#: ../system-config-printer.py:2108 - msgid "Set as the _system-wide default printer" - msgstr "Definir como impressora padrão de todo o _sistema" - --#: ../system-config-printer.py:2106 -+#: ../system-config-printer.py:2110 - msgid "_Clear my personal default setting" - msgstr "_Limpar minhas configurações pessoais padrão" - --#: ../system-config-printer.py:2107 -+#: ../system-config-printer.py:2111 - msgid "Set as my _personal default printer" - msgstr "Definir como _minha impressora padrão" - --#: ../system-config-printer.py:2112 -+#: ../system-config-printer.py:2116 - msgid "setting default printer" - msgstr "definindo a impressora padrão" - --#: ../system-config-printer.py:2169 -+#: ../system-config-printer.py:2173 - msgid "printing test page" - msgstr "imprimindo página de teste" - --#: ../system-config-printer.py:2182 ../system-config-printer.py:2217 --#: ../system-config-printer.py:5418 -+#: ../system-config-printer.py:2186 ../system-config-printer.py:2221 -+#: ../system-config-printer.py:5413 - msgid "Not possible" - msgstr "Impossível" - --#: ../system-config-printer.py:2183 ../system-config-printer.py:2218 -+#: ../system-config-printer.py:2187 ../system-config-printer.py:2222 - msgid "" - "The remote server did not accept the print job, most likely because the " - "printer is not shared." -@@ -981,20 +990,20 @@ msgstr "" - "O servidor remoto não pôde aceitar o trabalho de impressão, provavelmente a " - "impressora não está compartilhada." - --#: ../system-config-printer.py:2195 ../system-config-printer.py:2210 -+#: ../system-config-printer.py:2199 ../system-config-printer.py:2214 - msgid "Submitted" - msgstr "Enviado" - --#: ../system-config-printer.py:2196 -+#: ../system-config-printer.py:2200 - #, python-format - msgid "Test page submitted as job %d" - msgstr "Página de teste enviada como trabalho %d" - --#: ../system-config-printer.py:2203 -+#: ../system-config-printer.py:2207 - msgid "sending maintenance command" - msgstr "enviando comando de manutenção" - --#: ../system-config-printer.py:2211 -+#: ../system-config-printer.py:2215 - #, python-format - msgid "Maintenance command submitted as job %d" - msgstr "Comando de manutenção enviado como trabalho %d" -@@ -1002,65 +1011,65 @@ msgstr "Comando de manutenção enviado - #. The underlying cupsGetPPD2() function returned NULL without - #. setting an IPP error, so it'll be something like a failed - #. connection. --#: ../system-config-printer.py:2285 ../system-config-printer.py:2381 -+#: ../system-config-printer.py:2289 ../system-config-printer.py:2385 - msgid "Error" - msgstr "Erro" - --#: ../system-config-printer.py:2286 -+#: ../system-config-printer.py:2290 - msgid "There was a problem connecting to the CUPS server." - msgstr "Houve um problema ao conectar com o servidor CUPS." - --#: ../system-config-printer.py:2382 -+#: ../system-config-printer.py:2386 - #, python-format - msgid "Option '%s' has value '%s' and cannot be edited." - msgstr "A opção \"%s\" tem o valor \"%s\" e não pode ser editada." - --#: ../system-config-printer.py:2466 -+#: ../system-config-printer.py:2476 - msgid "Marker levels are not reported for this printer." - msgstr "Os níveis de marcador não são suportados por esta impressora." - --#: ../system-config-printer.py:2763 -+#: ../system-config-printer.py:2773 - msgid "Cannot Rename" - msgstr "Não foi possível renomear" - --#: ../system-config-printer.py:2764 -+#: ../system-config-printer.py:2774 - msgid "There are queued jobs." - msgstr "Há trabalhos na fila." - --#: ../system-config-printer.py:2822 -+#: ../system-config-printer.py:2840 - msgid "renaming printer" - msgstr "renomeando impressora" - - #. for classes make sure all members - #. will get added --#: ../system-config-printer.py:2907 -+#: ../system-config-printer.py:2925 - msgid "copying printer" - msgstr "copiando impressora" - --#: ../system-config-printer.py:2971 -+#: ../system-config-printer.py:2989 - #, python-format - msgid "Really delete class '%s'?" - msgstr "Você realmente deseja excluir a classe \"%s\"?" - --#: ../system-config-printer.py:2973 -+#: ../system-config-printer.py:2991 - #, python-format - msgid "Really delete printer '%s'?" - msgstr "Você realmente deseja excluir a impressora \"%s\"?" - --#: ../system-config-printer.py:2975 -+#: ../system-config-printer.py:2993 - msgid "Really delete selected destinations?" - msgstr "Deseja realmente excluir os destinos selecionados?" - --#: ../system-config-printer.py:2996 -+#: ../system-config-printer.py:3014 - #, python-format - msgid "deleting printer %s" - msgstr "excluindo impressora %s" - --#: ../system-config-printer.py:3070 -+#: ../system-config-printer.py:3088 - msgid "Publish Shared Printers" - msgstr "Publicar impressoras compartilhadas" - --#: ../system-config-printer.py:3071 -+#: ../system-config-printer.py:3089 - msgid "" - "Shared printers are not available to other people unless the 'Publish shared " - "printers' option is enabled in the server settings." -@@ -1069,7 +1078,7 @@ msgstr "" - "não ser que a opção \"Publicar impressoras compartilhadas\" esteja " - "habilitada nas configurações do servidor." - --#: ../system-config-printer.py:3264 -+#: ../system-config-printer.py:3282 - msgid "modifying server settings" - msgstr "modificando configurações do servidor" - -@@ -1079,11 +1088,11 @@ msgstr "modificando configurações do s - #. be unblocked. Unfortunately, this is not yet possible - #. (bug #440469). However, we can display a dialog to suggest - #. that now might be a good time to review the firewall settings. --#: ../system-config-printer.py:3289 -+#: ../system-config-printer.py:3307 - msgid "Review Firewall" - msgstr "Verifique o Firewall" - --#: ../system-config-printer.py:3290 -+#: ../system-config-printer.py:3308 - msgid "" - "You may need to adjust the firewall to allow network printing to this " - "computer." -@@ -1091,25 +1100,25 @@ msgstr "" - "Pode ser necessário um ajuste no firewall para permitir a impressão de rede " - "para este computador." - --#: ../system-config-printer.py:3623 -+#: ../system-config-printer.py:3638 - msgid "Browsing not available (pysmbc not installed)" - msgstr "A navegação não está disponível (o pysmbc não está instalado)" - - #. SMB list columns --#: ../system-config-printer.py:3629 -+#: ../system-config-printer.py:3644 - msgid "Share" - msgstr "Compartilhamento" - --#: ../system-config-printer.py:3635 -+#: ../system-config-printer.py:3650 - msgid "Comment" - msgstr "Comentário" - - #. IPP list columns --#: ../system-config-printer.py:3654 -+#: ../system-config-printer.py:3669 - msgid "Queue" - msgstr "Fila" - --#: ../system-config-printer.py:3668 -+#: ../system-config-printer.py:3683 - msgid "" - "PostScript Printer Description files (*.ppd, *.PPD, *.ppd.gz, *.PPD.gz, *." - "PPD.GZ)" -@@ -1117,69 +1126,69 @@ msgstr "" - "Arquivos PostScript Printer Description (*.ppd, *.PPD, *.ppd.gz, *.PPD.gz, *." - "PPD.GZ)" - --#: ../system-config-printer.py:3677 -+#: ../system-config-printer.py:3692 - msgid "All files (*)" - msgstr "Todos os arquivos (*)" - --#: ../system-config-printer.py:3713 ../system-config-printer.py:5970 --#: ../system-config-printer.py:6008 ../applet.py:124 -+#: ../system-config-printer.py:3728 ../system-config-printer.py:5918 -+#: ../system-config-printer.py:5956 ../applet.py:124 - msgid "Search" - msgstr "Pesquisar" - --#: ../system-config-printer.py:3736 ../system-config-printer.py:3760 --#: ../glade/NewPrinterWindow.glade.h:74 -+#: ../system-config-printer.py:3751 ../system-config-printer.py:3775 -+#: ../glade/NewPrinterWindow.glade.h:73 - msgid "New Printer" - msgstr "Nova impressora" - --#: ../system-config-printer.py:3747 -+#: ../system-config-printer.py:3762 - msgid "New Class" - msgstr "Nova classe" - --#: ../system-config-printer.py:3752 -+#: ../system-config-printer.py:3767 - msgid "Change Device URI" - msgstr "Alterar URI do dispositivo" - --#: ../system-config-printer.py:3758 -+#: ../system-config-printer.py:3773 - msgid "Change Driver" - msgstr "Alterar driver" - --#: ../system-config-printer.py:3927 ../system-config-printer.py:3993 --#: ../system-config-printer.py:4289 ../system-config-printer.py:4487 --#: ../system-config-printer.py:5772 ../system-config-printer.py:5995 -+#: ../system-config-printer.py:3942 ../system-config-printer.py:4008 -+#: ../system-config-printer.py:4304 ../system-config-printer.py:4502 -+#: ../system-config-printer.py:5762 ../system-config-printer.py:5943 - msgid "Searching" - msgstr "Pesquisando" - --#: ../system-config-printer.py:3928 -+#: ../system-config-printer.py:3943 - msgid "Searching for downloadable drivers" - msgstr "Pesquisando por drivers baixáveis" - --#: ../system-config-printer.py:3994 ../system-config-printer.py:4290 -+#: ../system-config-printer.py:4009 ../system-config-printer.py:4305 - msgid "Searching for drivers" - msgstr "Pesquisando por drivers" - --#: ../system-config-printer.py:4488 ../system-config-printer.py:5773 -+#: ../system-config-printer.py:4503 ../system-config-printer.py:5763 - msgid "Searching for printers" - msgstr "Pesquisando por impressoras" - --#: ../system-config-printer.py:4497 -+#: ../system-config-printer.py:4512 - msgid "fetching device list" - msgstr "Buscando lista de dispositivos" - - #. Tell the user why he needs the plugin --#: ../system-config-printer.py:4579 -+#: ../system-config-printer.py:4594 - msgid "For this printer a proprietary driver plugin from HP is available.\n" - msgstr "" - "Um plugin do driver proprietário da HP está disponível para esta " - "impressora.\n" - --#: ../system-config-printer.py:4582 -+#: ../system-config-printer.py:4597 - msgid "" - "The installation of the plugin is required for your printer to work.\n" - "\n" - msgstr "" - "A instalação do plugin é necessária para o funcionamento da sua impressora.\n" - --#: ../system-config-printer.py:4585 -+#: ../system-config-printer.py:4600 - msgid "" - "Installing the plugin is optional, it completes or enhances the " - "functionality\n" -@@ -1190,110 +1199,106 @@ msgstr "" - "da sua impressora. Sem o plugin pelo menos as operações básicas irão " - "funcionar.\n" - --#: ../system-config-printer.py:4589 -+#: ../system-config-printer.py:4604 - msgid "The plugin provides the following features:\n" - msgstr "O plugin fornece os seguintes recursos:\n" - --#: ../system-config-printer.py:4592 -+#: ../system-config-printer.py:4607 - msgid " - Printing support\n" - msgstr " - Suporte à impressão\n" - --#: ../system-config-printer.py:4595 -+#: ../system-config-printer.py:4610 - msgid " - Faster printing\n" - msgstr " - Impressão mais rápida\n" - --#: ../system-config-printer.py:4598 -+#: ../system-config-printer.py:4613 - msgid " - Better printout quality\n" - msgstr " - Melhor qualidade de impressão\n" - --#: ../system-config-printer.py:4601 -+#: ../system-config-printer.py:4616 - msgid " - Extra printing features\n" - msgstr " - Recursos extras de impressão\n" - --#: ../system-config-printer.py:4604 -+#: ../system-config-printer.py:4619 - msgid " - Scanning support\n" - msgstr " - Suporte a escaneamento\n" - --#: ../system-config-printer.py:4607 -+#: ../system-config-printer.py:4622 - msgid " - Faster scanning\n" - msgstr " - Escaneamento mais rápido\n" - --#: ../system-config-printer.py:4610 -+#: ../system-config-printer.py:4625 - msgid " - Better scanning image quality\n" - msgstr " - Melhor qualidade da imagem escaneada\n" - --#: ../system-config-printer.py:4613 -+#: ../system-config-printer.py:4628 - msgid " - Faxing support\n" - msgstr " - Suporte a Fax\n" - --#: ../system-config-printer.py:4616 -+#: ../system-config-printer.py:4631 - msgid " - Extra fax features\n" - msgstr " - Recursos extras do fax\n" - --#: ../system-config-printer.py:4619 -+#: ../system-config-printer.py:4634 - msgid " - Better Input/Output support\n" - msgstr " - Melhor suporte de entrada/saída\n" - --#: ../system-config-printer.py:4622 -+#: ../system-config-printer.py:4637 - msgid " - Extra user interface features\n" - msgstr " - Recursos extras da interface de usuário\n" - --#: ../system-config-printer.py:4625 -+#: ../system-config-printer.py:4640 - msgid " - Other extra features\n" - msgstr " - Outros recursos extras\n" - --#: ../system-config-printer.py:4630 -+#: ../system-config-printer.py:4645 - msgid "Install plugin" - msgstr "Instalar plugin" - --#: ../system-config-printer.py:4631 -+#: ../system-config-printer.py:4646 - msgid "Do not set up printer" - msgstr "Não configurar a impressora" - --#: ../system-config-printer.py:4632 -+#: ../system-config-printer.py:4647 - msgid "Set up without plugin" - msgstr "Configurar sem o plugin" - --#: ../system-config-printer.py:4634 ../troubleshoot/PrintTestPage.py:118 -+#: ../system-config-printer.py:4649 ../troubleshoot/PrintTestPage.py:118 - msgid "Yes" - msgstr "Sim" - --#: ../system-config-printer.py:4635 ../troubleshoot/PrintTestPage.py:119 -+#: ../system-config-printer.py:4650 ../troubleshoot/PrintTestPage.py:119 - msgid "No" - msgstr "Não" - --#: ../system-config-printer.py:4809 ../system-config-printer.py:4813 -+#: ../system-config-printer.py:4824 ../system-config-printer.py:4828 - msgid " (Current)" - msgstr " (Atual)" - --#: ../system-config-printer.py:4845 --msgid "HP Printer (HPLIP)" --msgstr "Impressora da HP (HPLIP)" -- --#: ../system-config-printer.py:4886 -+#: ../system-config-printer.py:4881 - msgid "Other" - msgstr "Outro" - - #. device-info - #. PhysicalDevice obj - #. Separator? --#: ../system-config-printer.py:4902 -+#: ../system-config-printer.py:4897 - msgid "Network Printer" - msgstr "Impressora de rede" - --#: ../system-config-printer.py:4906 -+#: ../system-config-printer.py:4901 - msgid "Find Network Printer" - msgstr "Localizar impressora de rede" - --#: ../system-config-printer.py:4979 ../system-config-printer.py:5376 -+#: ../system-config-printer.py:4974 ../system-config-printer.py:5371 - msgid "Scanning..." - msgstr "Examinando..." - --#: ../system-config-printer.py:5034 ../system-config-printer.py:5798 -+#: ../system-config-printer.py:5029 - msgid "No Print Shares" - msgstr "Nenhum compartilhamento de impressão" - --#: ../system-config-printer.py:5035 -+#: ../system-config-printer.py:5030 - msgid "" - "There were no print shares found. Please check that the Samba service is " - "marked as trusted in your firewall configuration." -@@ -1302,32 +1307,32 @@ msgstr "" - "o serviço do Samba está marcado como confiável na configuração do seu " - "firewall." - --#: ../system-config-printer.py:5296 ../system-config-printer.py:5357 -+#: ../system-config-printer.py:5291 ../system-config-printer.py:5352 - msgid "Print Share Verified" - msgstr "Compartilhamento de impressão verificado" - --#: ../system-config-printer.py:5297 ../system-config-printer.py:5358 -+#: ../system-config-printer.py:5292 ../system-config-printer.py:5353 - msgid "This print share is accessible." - msgstr "Esta impressora compartilhada está acessível." - --#: ../system-config-printer.py:5302 ../system-config-printer.py:5362 -+#: ../system-config-printer.py:5297 ../system-config-printer.py:5357 - msgid "This print share is not accessible." - msgstr "Esta impressora compartilhada não está acessível." - --#: ../system-config-printer.py:5305 -+#: ../system-config-printer.py:5300 - msgid "Print Share Inaccessible" - msgstr "Compartilhamento de impressão inacessível" - --#: ../system-config-printer.py:5361 -+#: ../system-config-printer.py:5356 - msgid "Inaccessible" - msgstr "Inacessível" - --#: ../system-config-printer.py:5419 -+#: ../system-config-printer.py:5414 - #, python-format - msgid "It is not possible to obtain a list of queues from '%s'." - msgstr "Não é possível obter uma lista de filas a partir de \"%s\"." - --#: ../system-config-printer.py:5421 -+#: ../system-config-printer.py:5416 - msgid "" - "Obtaining a list of queues is a CUPS extension to IPP. Network printers do " - "not support it." -@@ -1335,69 +1340,68 @@ msgstr "" - "A obtenção da lista de filas é uma extensão do CUPS para o IPP. As " - "impressoras de rede não a suportam." - --#: ../system-config-printer.py:5424 -+#: ../system-config-printer.py:5419 - msgid "No queues" - msgstr "Nenhuma fila" - --#: ../system-config-printer.py:5425 -+#: ../system-config-printer.py:5420 - msgid "There are no queues available." - msgstr "Não há filas disponíveis." - --#: ../system-config-printer.py:5516 -+#: ../system-config-printer.py:5511 - msgid "Parallel Port" - msgstr "Porta paralela" - --#: ../system-config-printer.py:5518 -+#: ../system-config-printer.py:5513 - msgid "Serial Port" - msgstr "Porta serial" - --#: ../system-config-printer.py:5520 -+#: ../system-config-printer.py:5515 - msgid "USB" - msgstr "USB" - --#: ../system-config-printer.py:5522 ../system-config-printer.py:5525 -+#: ../system-config-printer.py:5517 ../system-config-printer.py:5520 - msgid "HP Linux Imaging and Printing (HPLIP)" - msgstr "HP Linux Imaging and Printing (HPLIP)" - --#: ../system-config-printer.py:5527 -+#: ../system-config-printer.py:5522 - msgid "Hardware Abstraction Layer (HAL)" - msgstr "Camada de Abstração de Hardware (HAL)" - --#: ../system-config-printer.py:5529 -+#: ../system-config-printer.py:5524 - msgid "AppSocket/HP JetDirect" - msgstr "AppSocket/HP JetDirect" - --#: ../system-config-printer.py:5538 -+#: ../system-config-printer.py:5533 - #, python-format - msgid "LPD/LPR queue '%s'" --msgstr "" -+msgstr "Fila LPD/LPR \"%s\"" - --#: ../system-config-printer.py:5540 --#, fuzzy -+#: ../system-config-printer.py:5535 - msgid "LPD/LPR queue" --msgstr "LPD/LPR" -+msgstr "Fila LPD/LPR" - --#: ../system-config-printer.py:5543 -+#: ../system-config-printer.py:5538 - msgid "Windows Printer via SAMBA" - msgstr "Impressora do Windows via SAMBA" - --#: ../system-config-printer.py:5545 ../glade/NewPrinterWindow.glade.h:66 -+#: ../system-config-printer.py:5540 ../glade/NewPrinterWindow.glade.h:65 - msgid "IPP" - msgstr "IPP" - --#: ../system-config-printer.py:5547 -+#: ../system-config-printer.py:5542 - msgid "HTTP" - msgstr "HTTP" - --#: ../system-config-printer.py:5632 -+#: ../system-config-printer.py:5624 - msgid "A printer connected to the parallel port." - msgstr "Uma impressora conectada à porta paralela." - --#: ../system-config-printer.py:5634 -+#: ../system-config-printer.py:5626 - msgid "A printer connected to a USB port." - msgstr "Uma impressora conectada à porta USB." - --#: ../system-config-printer.py:5636 -+#: ../system-config-printer.py:5628 - msgid "" - "HPLIP software driving a printer, or the printer function of a multi-" - "function device." -@@ -1405,7 +1409,7 @@ msgstr "" - "O programa HPLIP controlando uma impressora ou a função de impressão de um " - "dispositivo multifuncional." - --#: ../system-config-printer.py:5639 -+#: ../system-config-printer.py:5631 - msgid "" - "HPLIP software driving a fax machine, or the fax function of a multi-" - "function device." -@@ -1413,47 +1417,43 @@ msgstr "" - "O software HPLIP controlando um aparelho de fax ou a função de fax de um " - "dispositivo multifuncional." - --#: ../system-config-printer.py:5642 -+#: ../system-config-printer.py:5634 - msgid "Local printer detected by the Hardware Abstraction Layer (HAL)." - msgstr "Impressora local detectada pelo HAL (Camada de Abstração de Hardware)." - --#: ../system-config-printer.py:5799 --msgid "HPLIP cannot find the device." --msgstr "O HPLIP não pôde localizar o dispositivo." -- --#: ../system-config-printer.py:5881 -+#: ../system-config-printer.py:5831 - msgid "No printer was found at that address." - msgstr "Nenhuma impressora foi localizada nesse endereço." - --#: ../system-config-printer.py:6020 -+#: ../system-config-printer.py:5968 - msgid "-- Select from search results --" - msgstr "-- Selecione a partir dos resultados da pesquisa --" - --#: ../system-config-printer.py:6022 -+#: ../system-config-printer.py:5970 - msgid "-- No matches found --" - msgstr "-- Nenhum resultado encontrado --" - --#: ../system-config-printer.py:6203 -+#: ../system-config-printer.py:6151 - msgid " (recommended)" - msgstr " (recomendado)" - --#: ../system-config-printer.py:6217 -+#: ../system-config-printer.py:6165 - msgid "This PPD is generated by foomatic." - msgstr "Este PPD foi gerado pelo foomatic." - --#: ../system-config-printer.py:6241 -+#: ../system-config-printer.py:6189 - msgid "OpenPrinting" - msgstr "OpenPrinting" - --#: ../system-config-printer.py:6252 -+#: ../system-config-printer.py:6200 - msgid "Distributable" - msgstr "Distributivo" - --#: ../system-config-printer.py:6293 -+#: ../system-config-printer.py:6241 - msgid ", " - msgstr ", " - --#: ../system-config-printer.py:6298 -+#: ../system-config-printer.py:6246 - #, python-format - msgid "" - "\n" -@@ -1462,20 +1462,20 @@ msgstr "" - "\n" - "(%s)" - --#: ../system-config-printer.py:6303 -+#: ../system-config-printer.py:6251 - msgid "No support contacts known" - msgstr "Nenhum suporte de contato conhecido" - --#: ../system-config-printer.py:6307 ../system-config-printer.py:6320 -+#: ../system-config-printer.py:6255 ../system-config-printer.py:6268 - msgid "Not specified." - msgstr "Não especificado." - - #. Foomatic database problem of some sort. --#: ../system-config-printer.py:6360 -+#: ../system-config-printer.py:6308 - msgid "Database error" - msgstr "Erro na base de dados" - --#: ../system-config-printer.py:6361 -+#: ../system-config-printer.py:6309 - #, python-format - msgid "The '%s' driver cannot be used with printer '%s %s'." - msgstr "O driver \"%s\" não pode ser usado com a impressora \"%s %s\"." -@@ -1483,60 +1483,60 @@ msgstr "O driver \"%s\" não pode ser us - #. This printer references some XML that is not - #. installed by default. Point the user at the - #. package they need to install. --#: ../system-config-printer.py:6371 -+#: ../system-config-printer.py:6319 - #, python-format - msgid "You will need to install the '%s' package in order to use this driver." - msgstr "Você precisará instalar o pacote '%s' para usar este driver." - - #. This error came from trying to open the PPD file. --#: ../system-config-printer.py:6378 -+#: ../system-config-printer.py:6326 - msgid "PPD error" - msgstr "Erro no PPD" - --#: ../system-config-printer.py:6380 -+#: ../system-config-printer.py:6328 - msgid "Failed to read PPD file. Possible reason follows:" - msgstr "Falhou ao ler o arquivo PPD. Estas são as razões prováveis:" - - #. Failed to get PPD downloaded from OpenPrinting XXX --#: ../system-config-printer.py:6397 -+#: ../system-config-printer.py:6345 - msgid "Downloadable drivers" - msgstr "Drivers baixáveis" - --#: ../system-config-printer.py:6398 -+#: ../system-config-printer.py:6346 - msgid "Failed to download PPD." - msgstr "Falha ao baixar o PPD." - --#: ../system-config-printer.py:6405 -+#: ../system-config-printer.py:6353 - msgid "fetching PPD" - msgstr "buscando PPD" - --#: ../system-config-printer.py:6434 ../system-config-printer.py:6472 -+#: ../system-config-printer.py:6382 ../system-config-printer.py:6420 - msgid "No Installable Options" - msgstr "Nenhuma opção instalável" - --#: ../system-config-printer.py:6520 -+#: ../system-config-printer.py:6468 - #, python-format - msgid "adding printer %s" - msgstr "adicionando impressora %s" - --#: ../system-config-printer.py:6669 -+#: ../system-config-printer.py:6617 - msgid "Would you like to print a test page?" - msgstr "Você gostaria de imprimir uma página de teste?" - --#: ../system-config-printer.py:6722 -+#: ../system-config-printer.py:6670 - msgid "Install driver" - msgstr "Instalar o driver" - --#: ../system-config-printer.py:6723 ../troubleshoot/CheckPPDSanity.py:131 -+#: ../system-config-printer.py:6671 ../troubleshoot/CheckPPDSanity.py:131 - #, python-format - msgid "Printer '%s' requires the %s package but it is not currently installed." - msgstr "A impressora \"%s\" requer o pacote %s, mas ele não está instalado." - --#: ../system-config-printer.py:6739 -+#: ../system-config-printer.py:6687 - msgid "Missing driver" - msgstr "Driver faltando" - --#: ../system-config-printer.py:6740 -+#: ../system-config-printer.py:6688 - #, python-format - msgid "" - "Printer '%s' requires the '%s' program but it is not currently installed. " -@@ -1674,107 +1674,103 @@ msgid "Enter device URI" - msgstr "Digite a URI do dispositivo" - - #: ../glade/NewPrinterWindow.glade.h:5 --msgid "HP Printer (HPLIP) via network" --msgstr "Impressora da HP (HPLIP) via rede" -- --#: ../glade/NewPrinterWindow.glade.h:6 - msgid "IPP Printer" - msgstr "Impressora IPP" - --#: ../glade/NewPrinterWindow.glade.h:7 -+#: ../glade/NewPrinterWindow.glade.h:6 - msgid "License Terms" - msgstr "Termos da licença" - --#: ../glade/NewPrinterWindow.glade.h:8 -+#: ../glade/NewPrinterWindow.glade.h:7 - msgid "Location of the LPD network printer" - msgstr "Localização da impressora LPD na rede" - --#: ../glade/NewPrinterWindow.glade.h:9 -+#: ../glade/NewPrinterWindow.glade.h:8 - msgid "Location of the network printer" - msgstr "Localização da impressora na rede" - --#: ../glade/NewPrinterWindow.glade.h:10 -+#: ../glade/NewPrinterWindow.glade.h:9 - msgid "Location (optional)" - msgstr "Localização (opcional)" - --#: ../glade/NewPrinterWindow.glade.h:11 -+#: ../glade/NewPrinterWindow.glade.h:10 - msgid "Network Printer" - msgstr "Impressora de rede" - --#: ../glade/NewPrinterWindow.glade.h:12 -+#: ../glade/NewPrinterWindow.glade.h:11 - msgid "Note" - msgstr "Nota" - --#: ../glade/NewPrinterWindow.glade.h:13 -+#: ../glade/NewPrinterWindow.glade.h:12 - msgid "Output Quality" - msgstr "Qualidade da saída" - --#: ../glade/NewPrinterWindow.glade.h:14 -+#: ../glade/NewPrinterWindow.glade.h:13 - msgid "Printer Name" - msgstr "Nome da impressora" - --#: ../glade/NewPrinterWindow.glade.h:15 -+#: ../glade/NewPrinterWindow.glade.h:14 - msgid "SMB Printer" - msgstr "Impressora SMB" - --#: ../glade/NewPrinterWindow.glade.h:16 -+#: ../glade/NewPrinterWindow.glade.h:15 - msgid "Select Driver" - msgstr "Selecione o driver" - --#: ../glade/NewPrinterWindow.glade.h:17 -+#: ../glade/NewPrinterWindow.glade.h:16 - msgid "Settings of the serial port" - msgstr "Configurações da porta serial" - --#: ../glade/NewPrinterWindow.glade.h:18 -+#: ../glade/NewPrinterWindow.glade.h:17 - msgid "smb://[workgroup/]server[:port]/printer" - msgstr "smb://[grupo de trabalho/]servidor[:porta]/impressora" - --#: ../glade/NewPrinterWindow.glade.h:19 -+#: ../glade/NewPrinterWindow.glade.h:18 - msgid "Choose Class Members" - msgstr "" - "Escolher membros da classe" - --#: ../glade/NewPrinterWindow.glade.h:20 -+#: ../glade/NewPrinterWindow.glade.h:19 - msgid "Choose Driver" - msgstr "Escolher driver" - --#: ../glade/NewPrinterWindow.glade.h:21 -+#: ../glade/NewPrinterWindow.glade.h:20 - msgid "Describe Printer" - msgstr "Descrever impressora" - --#: ../glade/NewPrinterWindow.glade.h:22 -+#: ../glade/NewPrinterWindow.glade.h:21 - msgid "Existing Settings" - msgstr "Configurações existentes" - --#: ../glade/NewPrinterWindow.glade.h:23 -+#: ../glade/NewPrinterWindow.glade.h:22 - msgid "Installable Options" - msgstr "Opções instaláveis" - --#: ../glade/NewPrinterWindow.glade.h:24 -+#: ../glade/NewPrinterWindow.glade.h:23 - msgid "Select Device" - msgstr "Selecionar dispositivo" - --#: ../glade/NewPrinterWindow.glade.h:25 -+#: ../glade/NewPrinterWindow.glade.h:24 - msgid "Baud Rate" - msgstr "Taxa de transmissão" - --#: ../glade/NewPrinterWindow.glade.h:26 -+#: ../glade/NewPrinterWindow.glade.h:25 - msgid "Browse..." - msgstr "Navegar..." - --#: ../glade/NewPrinterWindow.glade.h:27 -+#: ../glade/NewPrinterWindow.glade.h:26 - msgid "Comments..." - msgstr "Comentários..." - --#: ../glade/NewPrinterWindow.glade.h:28 -+#: ../glade/NewPrinterWindow.glade.h:27 - msgid "Connection" - msgstr "Conexão" - --#: ../glade/NewPrinterWindow.glade.h:29 -+#: ../glade/NewPrinterWindow.glade.h:28 - msgid "Data Bits" - msgstr "Bits de dados" - --#: ../glade/NewPrinterWindow.glade.h:30 -+#: ../glade/NewPrinterWindow.glade.h:29 - msgid "" - "Default\n" - "1200\n" -@@ -1796,7 +1792,7 @@ msgstr "" - "57600\n" - "115200" - --#: ../glade/NewPrinterWindow.glade.h:39 -+#: ../glade/NewPrinterWindow.glade.h:38 - msgid "" - "Default\n" - "8\n" -@@ -1806,7 +1802,7 @@ msgstr "" - "8\n" - "7" - --#: ../glade/NewPrinterWindow.glade.h:42 -+#: ../glade/NewPrinterWindow.glade.h:41 - msgid "" - "Default\n" - "None\n" -@@ -1818,7 +1814,7 @@ msgstr "" - "Ímpar\n" - "Par" - --#: ../glade/NewPrinterWindow.glade.h:46 -+#: ../glade/NewPrinterWindow.glade.h:45 - msgid "" - "Default\n" - "None\n" -@@ -1832,116 +1828,116 @@ msgstr "" - "RTS/CTS (Hardware)\n" - "DTR/DSR (Hardware)" - --#: ../glade/NewPrinterWindow.glade.h:51 -+#: ../glade/NewPrinterWindow.glade.h:50 - #: ../glade/PrinterPropertiesDialog.glade.h:35 - msgid "Description:" - msgstr "Descrição:" - --#: ../glade/NewPrinterWindow.glade.h:52 ../troubleshoot/DeviceListed.py:40 -+#: ../glade/NewPrinterWindow.glade.h:51 ../troubleshoot/DeviceListed.py:40 - msgid "Device URI" - msgstr "URI do dispositivo" - --#: ../glade/NewPrinterWindow.glade.h:53 -+#: ../glade/NewPrinterWindow.glade.h:52 - msgid "Device description." - msgstr "Descrição do dispositivo:" - --#: ../glade/NewPrinterWindow.glade.h:54 -+#: ../glade/NewPrinterWindow.glade.h:53 - msgid "DirectJet" - msgstr "DirectJet" - --#: ../glade/NewPrinterWindow.glade.h:56 -+#: ../glade/NewPrinterWindow.glade.h:55 - msgid "Driver details" - msgstr "Detalhes do driver" - --#: ../glade/NewPrinterWindow.glade.h:57 -+#: ../glade/NewPrinterWindow.glade.h:56 - msgid "Empty" - msgstr "Vazio" - --#: ../glade/NewPrinterWindow.glade.h:58 -+#: ../glade/NewPrinterWindow.glade.h:57 - msgid "Find _Queue..." - msgstr "Localizar _Fila..." - --#: ../glade/NewPrinterWindow.glade.h:59 -+#: ../glade/NewPrinterWindow.glade.h:58 - msgid "Flow Control" - msgstr "Fluxograma de controle" - --#: ../glade/NewPrinterWindow.glade.h:60 -+#: ../glade/NewPrinterWindow.glade.h:59 - msgid "" - "For the printer you have selected there are drivers available for download." - msgstr "" - "Há drivers disponíveis para serem baixados para a impressora que você " - "selecionou anteriormente." - --#: ../glade/NewPrinterWindow.glade.h:61 -+#: ../glade/NewPrinterWindow.glade.h:60 - msgid "Free software" - msgstr "Software livre" - --#: ../glade/NewPrinterWindow.glade.h:62 -+#: ../glade/NewPrinterWindow.glade.h:61 - msgid "Graphics:" - msgstr "Gráficos:" - --#: ../glade/NewPrinterWindow.glade.h:63 -+#: ../glade/NewPrinterWindow.glade.h:62 - msgid "Host:" - msgstr "Nome de máquina:" - --#: ../glade/NewPrinterWindow.glade.h:64 -+#: ../glade/NewPrinterWindow.glade.h:63 - msgid "Human-readable description such as \"HP LaserJet with Duplexer\"" - msgstr "" - "Descrição legível, tal como, \"HP LaserJet com dois sentidos (Duplexer)\"" - --#: ../glade/NewPrinterWindow.glade.h:65 -+#: ../glade/NewPrinterWindow.glade.h:64 - msgid "Human-readable location such as \"Lab 1\"" - msgstr "Localização legível, tal como, \"Laboratório 1\"" - --#: ../glade/NewPrinterWindow.glade.h:67 -+#: ../glade/NewPrinterWindow.glade.h:66 - msgid "LPD" - msgstr "LPD" - --#: ../glade/NewPrinterWindow.glade.h:68 -+#: ../glade/NewPrinterWindow.glade.h:67 - msgid "License:" - msgstr "Licença:" - --#: ../glade/NewPrinterWindow.glade.h:69 -+#: ../glade/NewPrinterWindow.glade.h:68 - msgid "Line art:" - msgstr "Arte da linha:" - --#: ../glade/NewPrinterWindow.glade.h:70 -+#: ../glade/NewPrinterWindow.glade.h:69 - msgid "Local Driver" - msgstr "Driver local" - --#: ../glade/NewPrinterWindow.glade.h:71 -+#: ../glade/NewPrinterWindow.glade.h:70 - msgid "Make and model:" - msgstr "Fabricante e modelo:" - --#: ../glade/NewPrinterWindow.glade.h:72 -+#: ../glade/NewPrinterWindow.glade.h:71 - msgid "Manufacturer" - msgstr "Fabricante" - --#: ../glade/NewPrinterWindow.glade.h:73 -+#: ../glade/NewPrinterWindow.glade.h:72 - msgid "Network" - msgstr "Rede" - --#: ../glade/NewPrinterWindow.glade.h:75 -+#: ../glade/NewPrinterWindow.glade.h:74 - msgid "No, I do not accept this license" - msgstr "Não, eu não aceito essa licença" - --#: ../glade/NewPrinterWindow.glade.h:76 -+#: ../glade/NewPrinterWindow.glade.h:75 - msgid "Parity" - msgstr "Paridade" - --#: ../glade/NewPrinterWindow.glade.h:78 -+#: ../glade/NewPrinterWindow.glade.h:77 - msgid "Patented algorithms" - msgstr "Algoritmos patenteados" - --#: ../glade/NewPrinterWindow.glade.h:79 -+#: ../glade/NewPrinterWindow.glade.h:78 - msgid "Photo:" - msgstr "Foto:" - --#: ../glade/NewPrinterWindow.glade.h:80 -+#: ../glade/NewPrinterWindow.glade.h:79 - msgid "Port number:" - msgstr "Número da porta:" - --#: ../glade/NewPrinterWindow.glade.h:81 -+#: ../glade/NewPrinterWindow.glade.h:80 - msgid "" - "PostScript Printer Description (PPD) files can often be found on the driver " - "disk that comes with the printer. For PostScript printers they are often " -@@ -1952,76 +1948,75 @@ msgstr "" - "impressoras PostScript eles são freqüentemente parte dos drivers " - "Windows®." - --#: ../glade/NewPrinterWindow.glade.h:82 -+#: ../glade/NewPrinterWindow.glade.h:81 - msgid "Printer model:" - msgstr "Modelo da impressora:" - --#: ../glade/NewPrinterWindow.glade.h:83 -+#: ../glade/NewPrinterWindow.glade.h:82 - msgid "Probe" - msgstr "Detectar" - --#: ../glade/NewPrinterWindow.glade.h:84 -+#: ../glade/NewPrinterWindow.glade.h:83 - msgid "Prompt user if authentication is required" - msgstr "Avisar o usuário caso uma autenticação seja requerida" - --#: ../glade/NewPrinterWindow.glade.h:85 -+#: ../glade/NewPrinterWindow.glade.h:84 - msgid "Provide PPD file" - msgstr "Fornecer arquivo PPD" - --#: ../glade/NewPrinterWindow.glade.h:86 -+#: ../glade/NewPrinterWindow.glade.h:85 - msgid "Queue:" - msgstr "Fila:" - --#: ../glade/NewPrinterWindow.glade.h:87 -+#: ../glade/NewPrinterWindow.glade.h:86 - msgid "SCSI" - msgstr "SCSI" - --#: ../glade/NewPrinterWindow.glade.h:88 -+#: ../glade/NewPrinterWindow.glade.h:87 - msgid "SMB" - msgstr "SMB" - --#: ../glade/NewPrinterWindow.glade.h:89 -+#: ../glade/NewPrinterWindow.glade.h:88 - msgid "Search for a printer driver to download" - msgstr "Pesquisar por um driver de impressora a ser baixado" - --#: ../glade/NewPrinterWindow.glade.h:90 --#, fuzzy -+#: ../glade/NewPrinterWindow.glade.h:89 - msgid "Searching..." --msgstr "Pesquisando" -+msgstr "Pesquisando..." - --#: ../glade/NewPrinterWindow.glade.h:91 -+#: ../glade/NewPrinterWindow.glade.h:90 - msgid "Select A File" - msgstr "Selecione um arquivo" - --#: ../glade/NewPrinterWindow.glade.h:92 -+#: ../glade/NewPrinterWindow.glade.h:91 - msgid "Select printer from database" - msgstr "Selecionar impressora da base de dados" - --#: ../glade/NewPrinterWindow.glade.h:93 -+#: ../glade/NewPrinterWindow.glade.h:92 - msgid "Serial" - msgstr "Serial" - --#: ../glade/NewPrinterWindow.glade.h:94 -+#: ../glade/NewPrinterWindow.glade.h:93 - msgid "Set authentication details now" - msgstr "Configurar detalhes de autenticação agora" - --#: ../glade/NewPrinterWindow.glade.h:95 -+#: ../glade/NewPrinterWindow.glade.h:94 - msgid "Short name for this printer such as \"laserjet\"" - msgstr "Nome curto para essa impressora, como \"laserjet\"" - --#: ../glade/NewPrinterWindow.glade.h:96 -+#: ../glade/NewPrinterWindow.glade.h:95 - msgid "Supplier:" - msgstr "Fornecedor:" - --#: ../glade/NewPrinterWindow.glade.h:97 -+#: ../glade/NewPrinterWindow.glade.h:96 - msgid "Support:" - msgstr "Suporte:" - --#: ../glade/NewPrinterWindow.glade.h:98 -+#: ../glade/NewPrinterWindow.glade.h:97 - msgid "Text:" - msgstr "Texto:" - --#: ../glade/NewPrinterWindow.glade.h:99 -+#: ../glade/NewPrinterWindow.glade.h:98 - msgid "" - "The foomatic printer database contains various manufacturer provided " - "PostScript Printer Description (PPD) files and also can generate PPD files " -@@ -2035,7 +2030,7 @@ msgstr "" - "geral os arquivos PPD fornecidos pelos fabricantes oferecem melhor acesso às " - "funcionalidades específicas das impressoras." - --#: ../glade/NewPrinterWindow.glade.h:100 -+#: ../glade/NewPrinterWindow.glade.h:99 - msgid "" - "These drivers do not come from your operating system supplier and will not " - "be covered by their commercial support. See the support and license terms " -@@ -2045,7 +2040,7 @@ msgstr "" - "cobertos pelo suporte comercial dele. Veja os termos do suporte e da licença " - "do fornecedor do driver." - --#: ../glade/NewPrinterWindow.glade.h:101 -+#: ../glade/NewPrinterWindow.glade.h:100 - msgid "" - "This driver supports additional hardware that may be installed in the " - "printer." -@@ -2053,7 +2048,7 @@ msgstr "" - "Este driver suporta hardwares adicionais que podem estar instalados na " - "impressora." - --#: ../glade/NewPrinterWindow.glade.h:102 -+#: ../glade/NewPrinterWindow.glade.h:101 - msgid "" - "This is done by assuming that options with the same name do have the same " - "meaning. Settings of options that are not present in the new PPD will be " -@@ -2064,7 +2059,7 @@ msgstr "" - "serão perdidas e somente as opções presentes no novo PPD serão definidas por " - "padrão." - --#: ../glade/NewPrinterWindow.glade.h:103 -+#: ../glade/NewPrinterWindow.glade.h:102 - msgid "" - "This way all current option settings will be lost. The default settings of " - "the new PPD will be used. " -@@ -2072,19 +2067,19 @@ msgstr "" - "Desta maneira todas as atuais configurações serão perdidas. As configurações " - "padrão do novo PPD serão utilizadas." - --#: ../glade/NewPrinterWindow.glade.h:104 -+#: ../glade/NewPrinterWindow.glade.h:103 - msgid "Try to copy the option settings over from the old PPD. " - msgstr "Tente copiar as opções definidas sobre o PPD antigo." - --#: ../glade/NewPrinterWindow.glade.h:105 -+#: ../glade/NewPrinterWindow.glade.h:104 - msgid "URI:" - msgstr "URI:" - --#: ../glade/NewPrinterWindow.glade.h:107 -+#: ../glade/NewPrinterWindow.glade.h:106 - msgid "Use the new PPD (Postscript Printer Description) as is." - msgstr "Use o novo PPD (Descrição de Impressora PostScript) como está." - --#: ../glade/NewPrinterWindow.glade.h:109 -+#: ../glade/NewPrinterWindow.glade.h:108 - msgid "" - "With this choice no driver download will be performed. In the next steps a " - "locally installed driver will be selected." -@@ -2092,24 +2087,24 @@ msgstr "" - "Com esta escolha nenhum download de driver será realizado. Nos próximos " - "passos um driver instalado localmente será selecionado." - --#: ../glade/NewPrinterWindow.glade.h:110 -+#: ../glade/NewPrinterWindow.glade.h:109 - msgid "Yes, I accept this license" - msgstr "Sim, eu aceito essa licença" - --#: ../glade/NewPrinterWindow.glade.h:111 -+#: ../glade/NewPrinterWindow.glade.h:110 - msgid "_Search" - msgstr "_Pesquisar" - --#: ../glade/NewPrinterWindow.glade.h:112 -+#: ../glade/NewPrinterWindow.glade.h:111 - msgid "_Verify..." - msgstr "_Verificar..." - --#: ../glade/NewPrinterWindow.glade.h:113 -+#: ../glade/NewPrinterWindow.glade.h:112 - #: ../glade/PrinterPropertiesDialog.glade.h:128 - msgid "move left" - msgstr "mover à esquerda" - --#: ../glade/NewPrinterWindow.glade.h:114 -+#: ../glade/NewPrinterWindow.glade.h:113 - #: ../glade/PrinterPropertiesDialog.glade.h:129 - msgid "move right" - msgstr "mover à direita" -@@ -3034,7 +3029,7 @@ msgstr "Os trabalhos de impressão marca - msgid "Remember to load paper of type '%s' into the printer first." - msgstr "Lembre-se de colocar mais papel do tipo \"%s\" na impressora primeiro." - --#: ../troubleshoot/PrintTestPage.py:399 -+#: ../troubleshoot/PrintTestPage.py:416 - msgid "Error submitting test page" - msgstr "Erro no envio da página de teste" - -@@ -3238,6 +3233,15 @@ msgstr "Gerenciar trabalhos de impressã - msgid "Select default printer" - msgstr "Selecione a impressora padrão" - -+#~ msgid "HP Printer (HPLIP)" -+#~ msgstr "Impressora da HP (HPLIP)" -+ -+#~ msgid "HPLIP cannot find the device." -+#~ msgstr "O HPLIP não pôde localizar o dispositivo." -+ -+#~ msgid "HP Printer (HPLIP) via network" -+#~ msgstr "Impressora da HP (HPLIP) via rede" -+ - #~ msgid "Not Found" - #~ msgstr "Não localizado" - -diff -up system-config-printer-1.1.5/po/pt.po.git-1.1.x system-config-printer-1.1.5/po/pt.po ---- system-config-printer-1.1.5/po/pt.po.git-1.1.x 2009-03-03 22:21:46.000000000 +0000 -+++ system-config-printer-1.1.5/po/pt.po 2009-03-10 17:43:31.000000000 +0000 -@@ -5,7 +5,7 @@ msgid "" - msgstr "" - "Project-Id-Version: system-config-printer\n" - "Report-Msgid-Bugs-To: https://bugzilla.redhat.com/bugzilla\n" --"POT-Creation-Date: 2009-03-02 23:22+0000\n" -+"POT-Creation-Date: 2009-03-10 16:51+0000\n" - "PO-Revision-Date: 2009-02-19 15:19+0100\n" - "Last-Translator: Rui Gouveia \n" - "Language-Team: pt \n" -@@ -66,11 +66,11 @@ msgstr "" - msgid "Enter IP address" - msgstr "Insira endereço IP" - --#: ../authconn.py:35 ../glade/NewPrinterWindow.glade.h:108 -+#: ../authconn.py:35 ../glade/NewPrinterWindow.glade.h:107 - msgid "Username:" - msgstr "Utilizador:" - --#: ../authconn.py:36 ../glade/NewPrinterWindow.glade.h:77 -+#: ../authconn.py:36 ../glade/NewPrinterWindow.glade.h:76 - msgid "Password:" - msgstr "Senha:" - -@@ -78,7 +78,7 @@ msgstr "Senha:" - msgid "Domain:" - msgstr "Domínio:" - --#: ../authconn.py:46 -+#: ../authconn.py:46 ../authconn.py:409 - msgid "Authentication" - msgstr "Autenticação" - -@@ -86,43 +86,52 @@ msgstr "Autenticação" - msgid "Remember password" - msgstr "Lembrar senha" - --#: ../authconn.py:211 ../authconn.py:232 -+#: ../authconn.py:208 -+#, python-format -+msgid "Unauthorized request (%s)" -+msgstr "" -+ -+#: ../authconn.py:209 -+msgid "You are not authorized to carry out therequested action." -+msgstr "" -+ -+#: ../authconn.py:212 ../authconn.py:233 - msgid "Operation canceled" - msgstr "Operação Cancelada" - --#: ../authconn.py:253 -+#: ../authconn.py:250 - #, python-format - msgid "CUPS server error (%s)" - msgstr "Erro no servidor CUPS (%s)" - --#: ../authconn.py:255 ../errordialogs.py:57 --#: ../troubleshoot/PrintTestPage.py:400 -+#: ../authconn.py:252 ../errordialogs.py:56 ../errordialogs.py:70 -+msgid "CUPS server error" -+msgstr "Erro no servidor CUPS" -+ -+#: ../authconn.py:261 ../errordialogs.py:57 -+#: ../troubleshoot/PrintTestPage.py:417 - #, python-format - msgid "There was an error during the CUPS operation: '%s'." - msgstr "Houve um erro durante a operação CUPS: '%s'." - --#: ../authconn.py:258 -+#: ../authconn.py:264 - msgid "Retry" - msgstr "Tentar Novamente" - --#: ../authconn.py:379 ../authconn.py:381 ../errordialogs.py:65 ../pysmb.py:75 -+#: ../authconn.py:385 ../authconn.py:387 ../errordialogs.py:65 ../pysmb.py:75 - #: ../pysmb.py:77 - msgid "Not authorized" - msgstr "Não autorizado" - --#: ../authconn.py:382 ../pysmb.py:78 -+#: ../authconn.py:388 ../pysmb.py:78 - msgid "The password may be incorrect." - msgstr "A senha pode estar incorrecta." - --#: ../authconn.py:400 -+#: ../authconn.py:407 - #, python-format - msgid "Authentication (%s)" - msgstr "Autenticação (%s)" - --#: ../errordialogs.py:56 ../errordialogs.py:70 --msgid "CUPS server error" --msgstr "Erro no servidor CUPS" -- - #: ../errordialogs.py:66 - msgid "" - "The password may be incorrect, or the server may be configured to deny " -@@ -151,7 +160,7 @@ msgstr "É necessária uma actualizaçã - msgid "Server error" - msgstr "Erro no servidor" - --#: ../errordialogs.py:82 ../system-config-printer.py:1219 -+#: ../errordialogs.py:82 ../system-config-printer.py:1223 - msgid "Not connected" - msgstr "Não ligada" - -@@ -173,7 +182,7 @@ msgstr "_Novo Grupo" - msgid "_New Group from Selection" - msgstr "_Novo Grupo a partir da Selecção" - --#: ../GroupsPane.py:98 ../system-config-printer.py:393 -+#: ../GroupsPane.py:98 ../system-config-printer.py:397 - msgid "_Rename" - msgstr "_Alterar o nome" - -@@ -240,7 +249,7 @@ msgid "Document" - msgstr "Documento" - - #: ../jobviewer.py:212 ../my-default-printer.py:153 --#: ../system-config-printer.py:366 ../system-config-printer.py:1367 -+#: ../system-config-printer.py:370 ../system-config-printer.py:1371 - #: ../troubleshoot/PrintTestPage.py:84 - msgid "Printer" - msgstr "Impressora" -@@ -277,8 +286,8 @@ msgstr "Estado de impressão do document - - #: ../jobviewer.py:386 ../jobviewer.py:451 ../jobviewer.py:452 - #: ../jobviewer.py:492 ../jobviewer.py:600 ../jobviewer.py:727 --#: ../jobviewer.py:1196 ../jobviewer.py:1222 ../system-config-printer.py:2546 --#: ../glade/NewPrinterWindow.glade.h:106 -+#: ../jobviewer.py:1196 ../jobviewer.py:1222 ../system-config-printer.py:2556 -+#: ../glade/NewPrinterWindow.glade.h:105 - #: ../troubleshoot/ChooseNetworkPrinter.py:101 - #: ../troubleshoot/ChooseNetworkPrinter.py:102 - #: ../troubleshoot/ChooseNetworkPrinter.py:105 -@@ -366,12 +375,12 @@ msgstr "Retido até final do fim de sema - msgid "Pending" - msgstr "Pendente" - --#: ../jobviewer.py:591 ../system-config-printer.py:186 -+#: ../jobviewer.py:591 ../system-config-printer.py:190 - #: ../troubleshoot/PrintTestPage.py:43 - msgid "Processing" - msgstr "A processar" - --#: ../jobviewer.py:592 ../system-config-printer.py:188 -+#: ../jobviewer.py:592 ../system-config-printer.py:192 - #: ../troubleshoot/PrintTestPage.py:44 - msgid "Stopped" - msgstr "Parado" -@@ -482,8 +491,8 @@ msgstr "_Usar a Predefinição do Sistem - msgid "_Set Default" - msgstr "Colocar por Omi_ssão" - --#: ../my-default-printer.py:158 ../system-config-printer.py:423 --#: ../system-config-printer.py:3660 ../troubleshoot/ChooseNetworkPrinter.py:37 -+#: ../my-default-printer.py:158 ../system-config-printer.py:427 -+#: ../system-config-printer.py:3675 ../troubleshoot/ChooseNetworkPrinter.py:37 - #: ../troubleshoot/ChoosePrinter.py:38 - msgid "Location" - msgstr "Localização" -@@ -512,7 +521,7 @@ msgstr "Comportamento pré-definido" - msgid "Authenticated" - msgstr "Autenticado" - --#: ../ppdippstr.py:50 ../system-config-printer.py:6259 -+#: ../ppdippstr.py:50 ../system-config-printer.py:6207 - msgid "None" - msgstr "Nenhum" - -@@ -725,125 +734,125 @@ msgstr "600 ppp, Cor, Cartuchos Preto e - msgid "1200 dpi, photo, black + color cartridge, photo paper" - msgstr "1200 ppp, Fotografia, Cartuchos Preto e Cores, Papel Fotográfico" - --#: ../system-config-printer.py:127 -+#: ../system-config-printer.py:131 - msgid "To do this, select System->Administration->Firewall from the main menu." - msgstr "" - "Para fazer isto, seleccione Sistema->Administração->Firewall a partir do " - "menu principal." - --#: ../system-config-printer.py:185 -+#: ../system-config-printer.py:189 - msgid "Idle" - msgstr "Disponível" - --#: ../system-config-printer.py:187 -+#: ../system-config-printer.py:191 - msgid "Busy" - msgstr "Ocupada" - --#: ../system-config-printer.py:372 ../system-config-printer.py:1373 -+#: ../system-config-printer.py:376 ../system-config-printer.py:1377 - msgid "Class" - msgstr "Classe" - --#: ../system-config-printer.py:399 -+#: ../system-config-printer.py:403 - msgid "Set As De_fault" - msgstr "Definir por Omi_ssão" - --#: ../system-config-printer.py:403 -+#: ../system-config-printer.py:407 - msgid "_Create class" - msgstr "Criar _Classe" - --#: ../system-config-printer.py:405 -+#: ../system-config-printer.py:409 - msgid "View Print _Queue" - msgstr "Ver _Fila de Impressão" - --#: ../system-config-printer.py:407 -+#: ../system-config-printer.py:411 - msgid "_Add to Group" - msgstr "_Adicionar ao Grupo" - --#: ../system-config-printer.py:409 -+#: ../system-config-printer.py:413 - msgid "Save Results as _Group" - msgstr "Gravar Resultados como _Groupo" - --#: ../system-config-printer.py:411 -+#: ../system-config-printer.py:415 - msgid "Save Filter as _Search Group" - msgstr "Gravar Filtro como Grupo de _Procura" - --#: ../system-config-printer.py:415 -+#: ../system-config-printer.py:419 - msgid "E_nabled" - msgstr "_Activar" - --#: ../system-config-printer.py:417 -+#: ../system-config-printer.py:421 - msgid "_Shared" - msgstr "_Partilhada" - --#: ../system-config-printer.py:421 ../troubleshoot/ChooseNetworkPrinter.py:35 -+#: ../system-config-printer.py:425 ../troubleshoot/ChooseNetworkPrinter.py:35 - #: ../troubleshoot/ChoosePrinter.py:36 ../troubleshoot/DeviceListed.py:36 - msgid "Name" - msgstr "Nome" - --#: ../system-config-printer.py:422 -+#: ../system-config-printer.py:426 - msgid "Description" - msgstr "Descrição" - --#: ../system-config-printer.py:424 -+#: ../system-config-printer.py:428 - msgid "Manufacturer / Model" - msgstr "Fabricante / Modelo" - - #. Printer state reasons list --#: ../system-config-printer.py:499 -+#: ../system-config-printer.py:503 - msgid "Message" - msgstr "Mensagem" - --#: ../system-config-printer.py:534 -+#: ../system-config-printer.py:538 - msgid "Problems?" - msgstr "Problemas?" - --#: ../system-config-printer.py:637 ../system-config-printer.py:639 -+#: ../system-config-printer.py:641 ../system-config-printer.py:643 - msgid "Members of this class" - msgstr "Membros desta classe" - --#: ../system-config-printer.py:638 ../system-config-printer.py:640 -+#: ../system-config-printer.py:642 ../system-config-printer.py:644 - msgid "Others" - msgstr "Outras" - --#: ../system-config-printer.py:641 -+#: ../system-config-printer.py:645 - msgid "Devices" - msgstr "Dispositivos" - --#: ../system-config-printer.py:642 -+#: ../system-config-printer.py:646 - msgid "Connections" - msgstr "Ligações" - --#: ../system-config-printer.py:643 -+#: ../system-config-printer.py:647 - msgid "Makes" - msgstr "Marcas" - --#: ../system-config-printer.py:644 -+#: ../system-config-printer.py:648 - msgid "Models" - msgstr "Modelos" - --#: ../system-config-printer.py:645 -+#: ../system-config-printer.py:649 - msgid "Drivers" - msgstr "Controladores" - --#: ../system-config-printer.py:646 ../glade/NewPrinterWindow.glade.h:55 -+#: ../system-config-printer.py:650 ../glade/NewPrinterWindow.glade.h:54 - msgid "Downloadable Drivers" - msgstr "Controladores disponíveis" - --#: ../system-config-printer.py:647 -+#: ../system-config-printer.py:651 - msgid "Users" - msgstr "Utilizadores" - --#: ../system-config-printer.py:682 -+#: ../system-config-printer.py:686 - msgid "Automatic rotation" - msgstr "Rotação automática" - --#: ../system-config-printer.py:989 -+#: ../system-config-printer.py:993 - #, python-format - msgid "Printer Properties - '%s' on %s" - msgstr "Propriedades da impressora - `%s' em %s" - - #. The Conflict button was pressed. --#: ../system-config-printer.py:996 -+#: ../system-config-printer.py:1000 - msgid "" - "There are conflicting options.\n" - "Changes can only be applied after\n" -@@ -853,78 +862,78 @@ msgstr "" - "As alterações só serão aplicadas após\n" - "estes conflitos serem resolvidos." - --#: ../system-config-printer.py:1214 -+#: ../system-config-printer.py:1218 - #, python-format - msgid "Printer configuration - %s" - msgstr "Configuração da impressora - %s" - --#: ../system-config-printer.py:1217 -+#: ../system-config-printer.py:1221 - #, python-format - msgid "Connected to %s" - msgstr "Ligada a %s" - - #. Update our copy of the printer's settings. --#: ../system-config-printer.py:1257 ../system-config-printer.py:2042 -+#: ../system-config-printer.py:1261 ../system-config-printer.py:2046 - msgid "obtaining queue details" - msgstr "A obter detalhes da fila de impressão" - --#: ../system-config-printer.py:1295 -+#: ../system-config-printer.py:1299 - msgid "Remove from Group" - msgstr "Remover do Grupo" - --#: ../system-config-printer.py:1361 -+#: ../system-config-printer.py:1365 - msgid "Network printer (discovered)" - msgstr "Impressora de rede (descoberta)" - --#: ../system-config-printer.py:1364 -+#: ../system-config-printer.py:1368 - msgid "Network class (discovered)" - msgstr "Classe de Rede (descoberta)" - --#: ../system-config-printer.py:1370 ../system-config-printer.py:5524 --#: ../system-config-printer.py:5594 ../system-config-printer.py:5596 -+#: ../system-config-printer.py:1374 ../system-config-printer.py:5519 -+#: ../system-config-printer.py:5589 ../system-config-printer.py:5591 - msgid "Fax" - msgstr "Fax" - --#: ../system-config-printer.py:1376 ../system-config-printer.py:1382 -+#: ../system-config-printer.py:1380 ../system-config-printer.py:1386 - #: ../troubleshoot/LocalOrRemote.py:30 - msgid "Network printer" - msgstr "Impressora de rede" - --#: ../system-config-printer.py:1379 -+#: ../system-config-printer.py:1383 - msgid "Network print share" - msgstr "Impressora de rede partilhada" - --#: ../system-config-printer.py:1508 ../glade/ConnectingDialog.glade.h:2 -+#: ../system-config-printer.py:1512 ../glade/ConnectingDialog.glade.h:2 - #, no-c-format, python-format - msgid "Opening connection to %s" - msgstr "A estabelecer ligação a %s" - --#: ../system-config-printer.py:1887 -+#: ../system-config-printer.py:1891 - msgid "Installable Options" - msgstr "Opções Instaláveis" - --#: ../system-config-printer.py:1888 -+#: ../system-config-printer.py:1892 - #: ../glade/PrinterPropertiesDialog.glade.h:109 - msgid "Printer Options" - msgstr "Opções da Impressora" - --#: ../system-config-printer.py:1924 -+#: ../system-config-printer.py:1928 - #, python-format - msgid "modifying class %s" - msgstr "A modificar classe %s" - --#: ../system-config-printer.py:1926 ../system-config-printer.py:3019 --#: ../system-config-printer.py:3044 ../system-config-printer.py:6547 --#: ../system-config-printer.py:6559 ../system-config-printer.py:6581 -+#: ../system-config-printer.py:1930 ../system-config-printer.py:3037 -+#: ../system-config-printer.py:3062 ../system-config-printer.py:6495 -+#: ../system-config-printer.py:6507 ../system-config-printer.py:6529 - #, python-format - msgid "modifying printer %s" - msgstr "A modificar impressora %s" - --#: ../system-config-printer.py:1941 -+#: ../system-config-printer.py:1945 - msgid "This will delete this class!" - msgstr "Isto vai apagar esta classe!" - --#: ../system-config-printer.py:1942 -+#: ../system-config-printer.py:1946 - msgid "Proceed anyway?" - msgstr "Continuar de qualquer forma?" - -@@ -932,46 +941,46 @@ msgstr "Continuar de qualquer forma?" - #. but we have never fetched the server settings to see whether - #. the server is publishing shared printers. Fetch the settings - #. now so that we can update the "not published" label if necessary. --#: ../system-config-printer.py:2030 ../system-config-printer.py:3203 -+#: ../system-config-printer.py:2034 ../system-config-printer.py:3221 - msgid "fetching server settings" - msgstr "A obter configurações do servidor" - --#: ../system-config-printer.py:2100 -+#: ../system-config-printer.py:2104 - msgid "Set Default Printer" - msgstr "Impressora Predefinida" - --#: ../system-config-printer.py:2102 -+#: ../system-config-printer.py:2106 - msgid "Do you want to set this as the system-wide default printer?" - msgstr "" - "Deseja definir esta impressora como a impressora predefinida para todo o " - "sistema?" - --#: ../system-config-printer.py:2104 -+#: ../system-config-printer.py:2108 - msgid "Set as the _system-wide default printer" - msgstr "Definir como a impressora predefinida para o _sistema." - --#: ../system-config-printer.py:2106 -+#: ../system-config-printer.py:2110 - msgid "_Clear my personal default setting" - msgstr "_Limpar as minhas opções pessoais predefinidas" - --#: ../system-config-printer.py:2107 -+#: ../system-config-printer.py:2111 - msgid "Set as my _personal default printer" - msgstr "Definir como a minha impressora _pessoal predefinida" - --#: ../system-config-printer.py:2112 -+#: ../system-config-printer.py:2116 - msgid "setting default printer" - msgstr "A definir como impressora predefinida" - --#: ../system-config-printer.py:2169 -+#: ../system-config-printer.py:2173 - msgid "printing test page" - msgstr "A imprimir Página de Teste" - --#: ../system-config-printer.py:2182 ../system-config-printer.py:2217 --#: ../system-config-printer.py:5418 -+#: ../system-config-printer.py:2186 ../system-config-printer.py:2221 -+#: ../system-config-printer.py:5413 - msgid "Not possible" - msgstr "Impossível" - --#: ../system-config-printer.py:2183 ../system-config-printer.py:2218 -+#: ../system-config-printer.py:2187 ../system-config-printer.py:2222 - msgid "" - "The remote server did not accept the print job, most likely because the " - "printer is not shared." -@@ -979,20 +988,20 @@ msgstr "" - "O servidor remoto não aceitou o trabalho de impressão, provavelmente porque " - "a impressora não está partilhada." - --#: ../system-config-printer.py:2195 ../system-config-printer.py:2210 -+#: ../system-config-printer.py:2199 ../system-config-printer.py:2214 - msgid "Submitted" - msgstr "Enviado" - --#: ../system-config-printer.py:2196 -+#: ../system-config-printer.py:2200 - #, python-format - msgid "Test page submitted as job %d" - msgstr "Página de teste enviada como trabalho %d" - --#: ../system-config-printer.py:2203 -+#: ../system-config-printer.py:2207 - msgid "sending maintenance command" - msgstr "A enviar comando de manutenção" - --#: ../system-config-printer.py:2211 -+#: ../system-config-printer.py:2215 - #, python-format - msgid "Maintenance command submitted as job %d" - msgstr "Comando de manutenção submetido como tarefa %d" -@@ -1000,65 +1009,65 @@ msgstr "Comando de manutenção submetid - #. The underlying cupsGetPPD2() function returned NULL without - #. setting an IPP error, so it'll be something like a failed - #. connection. --#: ../system-config-printer.py:2285 ../system-config-printer.py:2381 -+#: ../system-config-printer.py:2289 ../system-config-printer.py:2385 - msgid "Error" - msgstr "Erro" - --#: ../system-config-printer.py:2286 -+#: ../system-config-printer.py:2290 - msgid "There was a problem connecting to the CUPS server." - msgstr "Ocorreu um problema na ligação ao servidor CUPS." - --#: ../system-config-printer.py:2382 -+#: ../system-config-printer.py:2386 - #, python-format - msgid "Option '%s' has value '%s' and cannot be edited." - msgstr "Opção '%s' tem o valor '%s' e não pode ser editada." - --#: ../system-config-printer.py:2466 -+#: ../system-config-printer.py:2476 - msgid "Marker levels are not reported for this printer." - msgstr "Níveis dos marcadores não são reportados para esta impressora." - --#: ../system-config-printer.py:2763 -+#: ../system-config-printer.py:2773 - msgid "Cannot Rename" - msgstr "Impossível _Alterar nome" - --#: ../system-config-printer.py:2764 -+#: ../system-config-printer.py:2774 - msgid "There are queued jobs." - msgstr "Existem tarefas na fila." - --#: ../system-config-printer.py:2822 -+#: ../system-config-printer.py:2840 - msgid "renaming printer" - msgstr "a alterar o nome da impressora" - - #. for classes make sure all members - #. will get added --#: ../system-config-printer.py:2907 -+#: ../system-config-printer.py:2925 - msgid "copying printer" - msgstr "a copiar impressora" - --#: ../system-config-printer.py:2971 -+#: ../system-config-printer.py:2989 - #, python-format - msgid "Really delete class '%s'?" - msgstr "Deseja mesmo apagar a classe `%s'?" - --#: ../system-config-printer.py:2973 -+#: ../system-config-printer.py:2991 - #, python-format - msgid "Really delete printer '%s'?" - msgstr "Deseja mesmo apagar a impressora `%s'?" - --#: ../system-config-printer.py:2975 -+#: ../system-config-printer.py:2993 - msgid "Really delete selected destinations?" - msgstr "Deseja mesmo apagar destinos seleccionados?" - --#: ../system-config-printer.py:2996 -+#: ../system-config-printer.py:3014 - #, python-format - msgid "deleting printer %s" - msgstr "a remover impressora %s" - --#: ../system-config-printer.py:3070 -+#: ../system-config-printer.py:3088 - msgid "Publish Shared Printers" - msgstr "Publicar Impressoras Partilhadas" - --#: ../system-config-printer.py:3071 -+#: ../system-config-printer.py:3089 - msgid "" - "Shared printers are not available to other people unless the 'Publish shared " - "printers' option is enabled in the server settings." -@@ -1067,7 +1076,7 @@ msgstr "" - "não ser que a opção 'Publicar impressoras partilhadas' esteja activa nas " - "configurações do servidor." - --#: ../system-config-printer.py:3264 -+#: ../system-config-printer.py:3282 - msgid "modifying server settings" - msgstr "a modificar configurações do servidor" - -@@ -1077,11 +1086,11 @@ msgstr "a modificar configurações do s - #. be unblocked. Unfortunately, this is not yet possible - #. (bug #440469). However, we can display a dialog to suggest - #. that now might be a good time to review the firewall settings. --#: ../system-config-printer.py:3289 -+#: ../system-config-printer.py:3307 - msgid "Review Firewall" - msgstr "Rever Firewall" - --#: ../system-config-printer.py:3290 -+#: ../system-config-printer.py:3308 - msgid "" - "You may need to adjust the firewall to allow network printing to this " - "computer." -@@ -1089,25 +1098,25 @@ msgstr "" - "Pode ser necessário ajustar a firewall para permitir impressões da rede para " - "este computador." - --#: ../system-config-printer.py:3623 -+#: ../system-config-printer.py:3638 - msgid "Browsing not available (pysmbc not installed)" - msgstr "Navegação indisponível (pysmbc não instalado)" - - #. SMB list columns --#: ../system-config-printer.py:3629 -+#: ../system-config-printer.py:3644 - msgid "Share" - msgstr "Partilha" - --#: ../system-config-printer.py:3635 -+#: ../system-config-printer.py:3650 - msgid "Comment" - msgstr "Comentário" - - #. IPP list columns --#: ../system-config-printer.py:3654 -+#: ../system-config-printer.py:3669 - msgid "Queue" - msgstr "Fila" - --#: ../system-config-printer.py:3668 -+#: ../system-config-printer.py:3683 - msgid "" - "PostScript Printer Description files (*.ppd, *.PPD, *.ppd.gz, *.PPD.gz, *." - "PPD.GZ)" -@@ -1115,60 +1124,60 @@ msgstr "" - "Ficheiros PPD - \"PostScript Printer Description\" (*.ppd, *.PPD, *.ppd.gz, " - "*.PPD.gz, *.PPD.GZ)" - --#: ../system-config-printer.py:3677 -+#: ../system-config-printer.py:3692 - msgid "All files (*)" - msgstr "Todos os ficheiros (*)" - --#: ../system-config-printer.py:3713 ../system-config-printer.py:5970 --#: ../system-config-printer.py:6008 ../applet.py:124 -+#: ../system-config-printer.py:3728 ../system-config-printer.py:5918 -+#: ../system-config-printer.py:5956 ../applet.py:124 - msgid "Search" - msgstr "Procurar" - --#: ../system-config-printer.py:3736 ../system-config-printer.py:3760 --#: ../glade/NewPrinterWindow.glade.h:74 -+#: ../system-config-printer.py:3751 ../system-config-printer.py:3775 -+#: ../glade/NewPrinterWindow.glade.h:73 - msgid "New Printer" - msgstr "Nova Impressora" - --#: ../system-config-printer.py:3747 -+#: ../system-config-printer.py:3762 - msgid "New Class" - msgstr "Nova Classe" - --#: ../system-config-printer.py:3752 -+#: ../system-config-printer.py:3767 - msgid "Change Device URI" - msgstr "Mudar URI do Dispositivo" - --#: ../system-config-printer.py:3758 -+#: ../system-config-printer.py:3773 - msgid "Change Driver" - msgstr "Mudar o Controlador" - --#: ../system-config-printer.py:3927 ../system-config-printer.py:3993 --#: ../system-config-printer.py:4289 ../system-config-printer.py:4487 --#: ../system-config-printer.py:5772 ../system-config-printer.py:5995 -+#: ../system-config-printer.py:3942 ../system-config-printer.py:4008 -+#: ../system-config-printer.py:4304 ../system-config-printer.py:4502 -+#: ../system-config-printer.py:5762 ../system-config-printer.py:5943 - msgid "Searching" - msgstr "A procurar" - --#: ../system-config-printer.py:3928 -+#: ../system-config-printer.py:3943 - msgid "Searching for downloadable drivers" - msgstr "A procurar por controladores disponíveis" - --#: ../system-config-printer.py:3994 ../system-config-printer.py:4290 -+#: ../system-config-printer.py:4009 ../system-config-printer.py:4305 - msgid "Searching for drivers" - msgstr "A procurar por controladores" - --#: ../system-config-printer.py:4488 ../system-config-printer.py:5773 -+#: ../system-config-printer.py:4503 ../system-config-printer.py:5763 - msgid "Searching for printers" - msgstr "A procurar por impressoras" - --#: ../system-config-printer.py:4497 -+#: ../system-config-printer.py:4512 - msgid "fetching device list" - msgstr "obter a lista de dispositivos" - - #. Tell the user why he needs the plugin --#: ../system-config-printer.py:4579 -+#: ../system-config-printer.py:4594 - msgid "For this printer a proprietary driver plugin from HP is available.\n" - msgstr "Para esta impressora, está disponível um driver proprietário da HP.\n" - --#: ../system-config-printer.py:4582 -+#: ../system-config-printer.py:4597 - msgid "" - "The installation of the plugin is required for your printer to work.\n" - "\n" -@@ -1176,7 +1185,7 @@ msgstr "" - "A instalação do plugin é obrigatória para a sua impressora funcionar.\n" - "\n" - --#: ../system-config-printer.py:4585 -+#: ../system-config-printer.py:4600 - msgid "" - "Installing the plugin is optional, it completes or enhances the " - "functionality\n" -@@ -1189,110 +1198,106 @@ msgstr "" - "básicas.\n" - "\n" - --#: ../system-config-printer.py:4589 -+#: ../system-config-printer.py:4604 - msgid "The plugin provides the following features:\n" - msgstr "O plugin permite as seguintes funcionalidades:\n" - --#: ../system-config-printer.py:4592 -+#: ../system-config-printer.py:4607 - msgid " - Printing support\n" - msgstr " - Suporte a impressão\n" - --#: ../system-config-printer.py:4595 -+#: ../system-config-printer.py:4610 - msgid " - Faster printing\n" - msgstr " - Impressão mais rápida\n" - --#: ../system-config-printer.py:4598 -+#: ../system-config-printer.py:4613 - msgid " - Better printout quality\n" - msgstr " - Melhor qualidade de impressão\n" - --#: ../system-config-printer.py:4601 -+#: ../system-config-printer.py:4616 - msgid " - Extra printing features\n" - msgstr " - Funcionalidades extra de impressão\n" - --#: ../system-config-printer.py:4604 -+#: ../system-config-printer.py:4619 - msgid " - Scanning support\n" - msgstr " - Suporte a difitalização\n" - --#: ../system-config-printer.py:4607 -+#: ../system-config-printer.py:4622 - msgid " - Faster scanning\n" - msgstr " - Digitalização mais rápida\n" - --#: ../system-config-printer.py:4610 -+#: ../system-config-printer.py:4625 - msgid " - Better scanning image quality\n" - msgstr " - Melhor qualidade da imagem digitalizada\n" - --#: ../system-config-printer.py:4613 -+#: ../system-config-printer.py:4628 - msgid " - Faxing support\n" - msgstr " - Suporte de Fax\n" - --#: ../system-config-printer.py:4616 -+#: ../system-config-printer.py:4631 - msgid " - Extra fax features\n" - msgstr " - Funcionalidades extra de fax\n" - --#: ../system-config-printer.py:4619 -+#: ../system-config-printer.py:4634 - msgid " - Better Input/Output support\n" - msgstr " - Melhor suporte de Entrada/Saída\n" - --#: ../system-config-printer.py:4622 -+#: ../system-config-printer.py:4637 - msgid " - Extra user interface features\n" - msgstr " - Funcionalidades extra no interface de utilizador\n" - --#: ../system-config-printer.py:4625 -+#: ../system-config-printer.py:4640 - msgid " - Other extra features\n" - msgstr " - Outras funcionalidades extra\n" - --#: ../system-config-printer.py:4630 -+#: ../system-config-printer.py:4645 - msgid "Install plugin" - msgstr "Instalar plugin" - --#: ../system-config-printer.py:4631 -+#: ../system-config-printer.py:4646 - msgid "Do not set up printer" - msgstr "Não configurar impressora" - --#: ../system-config-printer.py:4632 -+#: ../system-config-printer.py:4647 - msgid "Set up without plugin" - msgstr "Configurar impressora sem plugin" - --#: ../system-config-printer.py:4634 ../troubleshoot/PrintTestPage.py:118 -+#: ../system-config-printer.py:4649 ../troubleshoot/PrintTestPage.py:118 - msgid "Yes" - msgstr "Sim" - --#: ../system-config-printer.py:4635 ../troubleshoot/PrintTestPage.py:119 -+#: ../system-config-printer.py:4650 ../troubleshoot/PrintTestPage.py:119 - msgid "No" - msgstr "Não" - --#: ../system-config-printer.py:4809 ../system-config-printer.py:4813 -+#: ../system-config-printer.py:4824 ../system-config-printer.py:4828 - msgid " (Current)" - msgstr " (Actual)" - --#: ../system-config-printer.py:4845 --msgid "HP Printer (HPLIP)" --msgstr "Impressora HP (HPLIP)" -- --#: ../system-config-printer.py:4886 -+#: ../system-config-printer.py:4881 - msgid "Other" - msgstr "Outras" - - #. device-info - #. PhysicalDevice obj - #. Separator? --#: ../system-config-printer.py:4902 -+#: ../system-config-printer.py:4897 - msgid "Network Printer" - msgstr "Impressora de rede" - --#: ../system-config-printer.py:4906 -+#: ../system-config-printer.py:4901 - msgid "Find Network Printer" - msgstr "Procurar Impressora de Rede" - --#: ../system-config-printer.py:4979 ../system-config-printer.py:5376 -+#: ../system-config-printer.py:4974 ../system-config-printer.py:5371 - msgid "Scanning..." - msgstr "A digitalizar..." - --#: ../system-config-printer.py:5034 ../system-config-printer.py:5798 -+#: ../system-config-printer.py:5029 - msgid "No Print Shares" - msgstr "Sem Partilhas de Impressão" - --#: ../system-config-printer.py:5035 -+#: ../system-config-printer.py:5030 - msgid "" - "There were no print shares found. Please check that the Samba service is " - "marked as trusted in your firewall configuration." -@@ -1300,32 +1305,32 @@ msgstr "" - "Não foram encontradas impressoras partilhadas. Por favor, verifique que que " - "o serviço Samba está autorizado na configuração da firewall." - --#: ../system-config-printer.py:5296 ../system-config-printer.py:5357 -+#: ../system-config-printer.py:5291 ../system-config-printer.py:5352 - msgid "Print Share Verified" - msgstr "Impressora Partilhada Verificada" - --#: ../system-config-printer.py:5297 ../system-config-printer.py:5358 -+#: ../system-config-printer.py:5292 ../system-config-printer.py:5353 - msgid "This print share is accessible." - msgstr "Esta partilha de impressora está acessível." - --#: ../system-config-printer.py:5302 ../system-config-printer.py:5362 -+#: ../system-config-printer.py:5297 ../system-config-printer.py:5357 - msgid "This print share is not accessible." - msgstr "Esta partilha de impressora está inacessível." - --#: ../system-config-printer.py:5305 -+#: ../system-config-printer.py:5300 - msgid "Print Share Inaccessible" - msgstr "Partilha de Impressão inacessível" - --#: ../system-config-printer.py:5361 -+#: ../system-config-printer.py:5356 - msgid "Inaccessible" - msgstr "Inacessível" - --#: ../system-config-printer.py:5419 -+#: ../system-config-printer.py:5414 - #, python-format - msgid "It is not possible to obtain a list of queues from '%s'." - msgstr "Não foi possível obter uma lista de filas de `%s'." - --#: ../system-config-printer.py:5421 -+#: ../system-config-printer.py:5416 - msgid "" - "Obtaining a list of queues is a CUPS extension to IPP. Network printers do " - "not support it." -@@ -1333,69 +1338,69 @@ msgstr "" - "Obter uma lista de filas é uma extensão do CUPS ao protocolo IPP. As " - "impressoras de rede não o suportam." - --#: ../system-config-printer.py:5424 -+#: ../system-config-printer.py:5419 - msgid "No queues" - msgstr "Sem filas" - --#: ../system-config-printer.py:5425 -+#: ../system-config-printer.py:5420 - msgid "There are no queues available." - msgstr "Não existem filas disponíveis." - --#: ../system-config-printer.py:5516 -+#: ../system-config-printer.py:5511 - msgid "Parallel Port" - msgstr "Porta Paralela" - --#: ../system-config-printer.py:5518 -+#: ../system-config-printer.py:5513 - msgid "Serial Port" - msgstr "Porta Série" - --#: ../system-config-printer.py:5520 -+#: ../system-config-printer.py:5515 - msgid "USB" - msgstr "USB" - --#: ../system-config-printer.py:5522 ../system-config-printer.py:5525 -+#: ../system-config-printer.py:5517 ../system-config-printer.py:5520 - msgid "HP Linux Imaging and Printing (HPLIP)" - msgstr "HP Linux Imaging and Printing (HPLIP)" - --#: ../system-config-printer.py:5527 -+#: ../system-config-printer.py:5522 - msgid "Hardware Abstraction Layer (HAL)" - msgstr "Camada de Abstração de Hardware (HAL 'Hardware Abstraction Layer')." - --#: ../system-config-printer.py:5529 -+#: ../system-config-printer.py:5524 - msgid "AppSocket/HP JetDirect" - msgstr "AppSocket/HP JetDirect" - --#: ../system-config-printer.py:5538 -+#: ../system-config-printer.py:5533 - #, python-format - msgid "LPD/LPR queue '%s'" - msgstr "" - --#: ../system-config-printer.py:5540 -+#: ../system-config-printer.py:5535 - #, fuzzy - msgid "LPD/LPR queue" - msgstr "LPD/LPR" - --#: ../system-config-printer.py:5543 -+#: ../system-config-printer.py:5538 - msgid "Windows Printer via SAMBA" - msgstr "Impressora Windows via SAMBA" - --#: ../system-config-printer.py:5545 ../glade/NewPrinterWindow.glade.h:66 -+#: ../system-config-printer.py:5540 ../glade/NewPrinterWindow.glade.h:65 - msgid "IPP" - msgstr "IPP" - --#: ../system-config-printer.py:5547 -+#: ../system-config-printer.py:5542 - msgid "HTTP" - msgstr "HTTP" - --#: ../system-config-printer.py:5632 -+#: ../system-config-printer.py:5624 - msgid "A printer connected to the parallel port." - msgstr "Uma impressora ligada à porta paralela." - --#: ../system-config-printer.py:5634 -+#: ../system-config-printer.py:5626 - msgid "A printer connected to a USB port." - msgstr "Uma impressora ligada a uma porta USB." - --#: ../system-config-printer.py:5636 -+#: ../system-config-printer.py:5628 - msgid "" - "HPLIP software driving a printer, or the printer function of a multi-" - "function device." -@@ -1403,7 +1408,7 @@ msgstr "" - "A aplicação HPLIP a controlar uma impressora ou uma das funções de um " - "dispositivo multifunções." - --#: ../system-config-printer.py:5639 -+#: ../system-config-printer.py:5631 - msgid "" - "HPLIP software driving a fax machine, or the fax function of a multi-" - "function device." -@@ -1411,47 +1416,43 @@ msgstr "" - "A aplicação HPLIP a controlar uma máquina de fax ou a função de fax de um " - "dispositivo multifunções." - --#: ../system-config-printer.py:5642 -+#: ../system-config-printer.py:5634 - msgid "Local printer detected by the Hardware Abstraction Layer (HAL)." - msgstr "Impressora local detectada pelo HAL ('Hardware Abstraction Layer')." - --#: ../system-config-printer.py:5799 --msgid "HPLIP cannot find the device." --msgstr "HPLIP não consegue encontrar o dispositivo." -- --#: ../system-config-printer.py:5881 -+#: ../system-config-printer.py:5831 - msgid "No printer was found at that address." - msgstr "Não foi encontrada nenhuma impressora nesse endereço." - --#: ../system-config-printer.py:6020 -+#: ../system-config-printer.py:5968 - msgid "-- Select from search results --" - msgstr "-- Seleccione entre os resultados da procura --" - --#: ../system-config-printer.py:6022 -+#: ../system-config-printer.py:5970 - msgid "-- No matches found --" - msgstr "-- Pesquisa vazia --" - --#: ../system-config-printer.py:6203 -+#: ../system-config-printer.py:6151 - msgid " (recommended)" - msgstr " (recomendado)" - --#: ../system-config-printer.py:6217 -+#: ../system-config-printer.py:6165 - msgid "This PPD is generated by foomatic." - msgstr "Este PPD foi gerado pelo foomatic." - --#: ../system-config-printer.py:6241 -+#: ../system-config-printer.py:6189 - msgid "OpenPrinting" - msgstr "OpenPrinting" - --#: ../system-config-printer.py:6252 -+#: ../system-config-printer.py:6200 - msgid "Distributable" - msgstr "Distribuível" - --#: ../system-config-printer.py:6293 -+#: ../system-config-printer.py:6241 - msgid ", " - msgstr ", " - --#: ../system-config-printer.py:6298 -+#: ../system-config-printer.py:6246 - #, python-format - msgid "" - "\n" -@@ -1460,20 +1461,20 @@ msgstr "" - "\n" - "(%s)" - --#: ../system-config-printer.py:6303 -+#: ../system-config-printer.py:6251 - msgid "No support contacts known" - msgstr "Contacto de suporte desconhecido" - --#: ../system-config-printer.py:6307 ../system-config-printer.py:6320 -+#: ../system-config-printer.py:6255 ../system-config-printer.py:6268 - msgid "Not specified." - msgstr "Não especificado." - - #. Foomatic database problem of some sort. --#: ../system-config-printer.py:6360 -+#: ../system-config-printer.py:6308 - msgid "Database error" - msgstr "Erro na base de dados" - --#: ../system-config-printer.py:6361 -+#: ../system-config-printer.py:6309 - #, python-format - msgid "The '%s' driver cannot be used with printer '%s %s'." - msgstr "O controlador '%s' não pode ser usado com a impressora '%s %s'." -@@ -1481,62 +1482,62 @@ msgstr "O controlador '%s' não pode ser - #. This printer references some XML that is not - #. installed by default. Point the user at the - #. package they need to install. --#: ../system-config-printer.py:6371 -+#: ../system-config-printer.py:6319 - #, python-format - msgid "You will need to install the '%s' package in order to use this driver." - msgstr "Terá de instalar o pacote '%s' para poder usar este controlador." - - #. This error came from trying to open the PPD file. --#: ../system-config-printer.py:6378 -+#: ../system-config-printer.py:6326 - msgid "PPD error" - msgstr "Erro do PPD" - --#: ../system-config-printer.py:6380 -+#: ../system-config-printer.py:6328 - msgid "Failed to read PPD file. Possible reason follows:" - msgstr "Não é possível ler o ficheiro PPD. Seguem-se as possíveis razões:" - - #. Failed to get PPD downloaded from OpenPrinting XXX --#: ../system-config-printer.py:6397 -+#: ../system-config-printer.py:6345 - msgid "Downloadable drivers" - msgstr "Controladores disponíveis" - --#: ../system-config-printer.py:6398 -+#: ../system-config-printer.py:6346 - msgid "Failed to download PPD." - msgstr "A transferência do ficheiro PPD falhou." - --#: ../system-config-printer.py:6405 -+#: ../system-config-printer.py:6353 - msgid "fetching PPD" - msgstr "A obter ficheiro PPD" - --#: ../system-config-printer.py:6434 ../system-config-printer.py:6472 -+#: ../system-config-printer.py:6382 ../system-config-printer.py:6420 - msgid "No Installable Options" - msgstr "Sem Opções Instaláveis" - --#: ../system-config-printer.py:6520 -+#: ../system-config-printer.py:6468 - #, python-format - msgid "adding printer %s" - msgstr "A adicionar impressora %s" - --#: ../system-config-printer.py:6669 -+#: ../system-config-printer.py:6617 - msgid "Would you like to print a test page?" - msgstr "Deseja imprimir uma página de teste?" - --#: ../system-config-printer.py:6722 -+#: ../system-config-printer.py:6670 - msgid "Install driver" - msgstr "Instalar controlador" - --#: ../system-config-printer.py:6723 ../troubleshoot/CheckPPDSanity.py:131 -+#: ../system-config-printer.py:6671 ../troubleshoot/CheckPPDSanity.py:131 - #, python-format - msgid "Printer '%s' requires the %s package but it is not currently installed." - msgstr "" - "A impressora '%s' precisa do pacote %s, mas este não está actualmente " - "instalado." - --#: ../system-config-printer.py:6739 -+#: ../system-config-printer.py:6687 - msgid "Missing driver" - msgstr "Controlador em falta" - --#: ../system-config-printer.py:6740 -+#: ../system-config-printer.py:6688 - #, python-format - msgid "" - "Printer '%s' requires the '%s' program but it is not currently installed. " -@@ -1666,106 +1667,102 @@ msgid "Enter device URI" - msgstr "Indique o URI do Dispositivo" - - #: ../glade/NewPrinterWindow.glade.h:5 --msgid "HP Printer (HPLIP) via network" --msgstr "Impressora HP (HPLIP) via rede" -- --#: ../glade/NewPrinterWindow.glade.h:6 - msgid "IPP Printer" - msgstr "Impressora IPP" - --#: ../glade/NewPrinterWindow.glade.h:7 -+#: ../glade/NewPrinterWindow.glade.h:6 - msgid "License Terms" - msgstr "Termos da Licença" - --#: ../glade/NewPrinterWindow.glade.h:8 -+#: ../glade/NewPrinterWindow.glade.h:7 - msgid "Location of the LPD network printer" - msgstr "Localização da impressora de rede LPD" - --#: ../glade/NewPrinterWindow.glade.h:9 -+#: ../glade/NewPrinterWindow.glade.h:8 - msgid "Location of the network printer" - msgstr "Localização da impressora de rede" - --#: ../glade/NewPrinterWindow.glade.h:10 -+#: ../glade/NewPrinterWindow.glade.h:9 - msgid "Location (optional)" - msgstr "Localização (opcional)" - --#: ../glade/NewPrinterWindow.glade.h:11 -+#: ../glade/NewPrinterWindow.glade.h:10 - msgid "Network Printer" - msgstr "Impressora de rede" - --#: ../glade/NewPrinterWindow.glade.h:12 -+#: ../glade/NewPrinterWindow.glade.h:11 - msgid "Note" - msgstr "Nota" - --#: ../glade/NewPrinterWindow.glade.h:13 -+#: ../glade/NewPrinterWindow.glade.h:12 - msgid "Output Quality" - msgstr "Qualidade de saída" - --#: ../glade/NewPrinterWindow.glade.h:14 -+#: ../glade/NewPrinterWindow.glade.h:13 - msgid "Printer Name" - msgstr "Nome da Impressora" - --#: ../glade/NewPrinterWindow.glade.h:15 -+#: ../glade/NewPrinterWindow.glade.h:14 - msgid "SMB Printer" - msgstr "Impressora SMB" - --#: ../glade/NewPrinterWindow.glade.h:16 -+#: ../glade/NewPrinterWindow.glade.h:15 - msgid "Select Driver" - msgstr "Seleccione Controlador" - --#: ../glade/NewPrinterWindow.glade.h:17 -+#: ../glade/NewPrinterWindow.glade.h:16 - msgid "Settings of the serial port" - msgstr "Opções da porta série" - --#: ../glade/NewPrinterWindow.glade.h:18 -+#: ../glade/NewPrinterWindow.glade.h:17 - msgid "smb://[workgroup/]server[:port]/printer" - msgstr "smb://[grupo-trabalho/]servidor[:porto]/impressora" - --#: ../glade/NewPrinterWindow.glade.h:19 -+#: ../glade/NewPrinterWindow.glade.h:18 - msgid "Choose Class Members" - msgstr "Escolha membros da Classe" - --#: ../glade/NewPrinterWindow.glade.h:20 -+#: ../glade/NewPrinterWindow.glade.h:19 - msgid "Choose Driver" - msgstr "Escolha Controlador" - --#: ../glade/NewPrinterWindow.glade.h:21 -+#: ../glade/NewPrinterWindow.glade.h:20 - msgid "Describe Printer" - msgstr "Descrição da Impressora" - --#: ../glade/NewPrinterWindow.glade.h:22 -+#: ../glade/NewPrinterWindow.glade.h:21 - msgid "Existing Settings" - msgstr "Configurações Actuais" - --#: ../glade/NewPrinterWindow.glade.h:23 -+#: ../glade/NewPrinterWindow.glade.h:22 - msgid "Installable Options" - msgstr "Opções Instaláveis" - --#: ../glade/NewPrinterWindow.glade.h:24 -+#: ../glade/NewPrinterWindow.glade.h:23 - msgid "Select Device" - msgstr "Seleccione Dispositivo" - --#: ../glade/NewPrinterWindow.glade.h:25 -+#: ../glade/NewPrinterWindow.glade.h:24 - msgid "Baud Rate" - msgstr "Taxa de Baud" - --#: ../glade/NewPrinterWindow.glade.h:26 -+#: ../glade/NewPrinterWindow.glade.h:25 - msgid "Browse..." - msgstr "Navegar..." - --#: ../glade/NewPrinterWindow.glade.h:27 -+#: ../glade/NewPrinterWindow.glade.h:26 - msgid "Comments..." - msgstr "Comentários..." - --#: ../glade/NewPrinterWindow.glade.h:28 -+#: ../glade/NewPrinterWindow.glade.h:27 - msgid "Connection" - msgstr "Connecção" - --#: ../glade/NewPrinterWindow.glade.h:29 -+#: ../glade/NewPrinterWindow.glade.h:28 - msgid "Data Bits" - msgstr "Bits de Dados" - --#: ../glade/NewPrinterWindow.glade.h:30 -+#: ../glade/NewPrinterWindow.glade.h:29 - msgid "" - "Default\n" - "1200\n" -@@ -1787,7 +1784,7 @@ msgstr "" - "57600\n" - "115200" - --#: ../glade/NewPrinterWindow.glade.h:39 -+#: ../glade/NewPrinterWindow.glade.h:38 - msgid "" - "Default\n" - "8\n" -@@ -1797,7 +1794,7 @@ msgstr "" - "8\n" - "7" - --#: ../glade/NewPrinterWindow.glade.h:42 -+#: ../glade/NewPrinterWindow.glade.h:41 - msgid "" - "Default\n" - "None\n" -@@ -1809,7 +1806,7 @@ msgstr "" - "Ímpar\n" - "Par" - --#: ../glade/NewPrinterWindow.glade.h:46 -+#: ../glade/NewPrinterWindow.glade.h:45 - msgid "" - "Default\n" - "None\n" -@@ -1823,113 +1820,113 @@ msgstr "" - "RTS/CTS (Hardware)\n" - "DTR/DSR (Hardware)" - --#: ../glade/NewPrinterWindow.glade.h:51 -+#: ../glade/NewPrinterWindow.glade.h:50 - #: ../glade/PrinterPropertiesDialog.glade.h:35 - msgid "Description:" - msgstr "Descrição:" - --#: ../glade/NewPrinterWindow.glade.h:52 ../troubleshoot/DeviceListed.py:40 -+#: ../glade/NewPrinterWindow.glade.h:51 ../troubleshoot/DeviceListed.py:40 - msgid "Device URI" - msgstr "URI do Dispositivo" - --#: ../glade/NewPrinterWindow.glade.h:53 -+#: ../glade/NewPrinterWindow.glade.h:52 - msgid "Device description." - msgstr "Descrição do dispositivo." - --#: ../glade/NewPrinterWindow.glade.h:54 -+#: ../glade/NewPrinterWindow.glade.h:53 - msgid "DirectJet" - msgstr "DirectJet" - --#: ../glade/NewPrinterWindow.glade.h:56 -+#: ../glade/NewPrinterWindow.glade.h:55 - msgid "Driver details" - msgstr "Detalhes do controlador" - --#: ../glade/NewPrinterWindow.glade.h:57 -+#: ../glade/NewPrinterWindow.glade.h:56 - msgid "Empty" - msgstr "Vazio" - --#: ../glade/NewPrinterWindow.glade.h:58 -+#: ../glade/NewPrinterWindow.glade.h:57 - msgid "Find _Queue..." - msgstr "Procurar _Fila..." - --#: ../glade/NewPrinterWindow.glade.h:59 -+#: ../glade/NewPrinterWindow.glade.h:58 - msgid "Flow Control" - msgstr "Controlo de Fluxo" - --#: ../glade/NewPrinterWindow.glade.h:60 -+#: ../glade/NewPrinterWindow.glade.h:59 - msgid "" - "For the printer you have selected there are drivers available for download." - msgstr "Existem controlados disponíveis para a impressora seleccionada." - --#: ../glade/NewPrinterWindow.glade.h:61 -+#: ../glade/NewPrinterWindow.glade.h:60 - msgid "Free software" - msgstr "software livre" - --#: ../glade/NewPrinterWindow.glade.h:62 -+#: ../glade/NewPrinterWindow.glade.h:61 - msgid "Graphics:" - msgstr "Gráficos:" - --#: ../glade/NewPrinterWindow.glade.h:63 -+#: ../glade/NewPrinterWindow.glade.h:62 - msgid "Host:" - msgstr "Máquina:" - --#: ../glade/NewPrinterWindow.glade.h:64 -+#: ../glade/NewPrinterWindow.glade.h:63 - msgid "Human-readable description such as \"HP LaserJet with Duplexer\"" - msgstr "Descrição da impressora, como por exemplo \"HP LaserJet\"" - --#: ../glade/NewPrinterWindow.glade.h:65 -+#: ../glade/NewPrinterWindow.glade.h:64 - msgid "Human-readable location such as \"Lab 1\"" - msgstr "Descrição da localização, como por exemplo \"Sala 1\"" - --#: ../glade/NewPrinterWindow.glade.h:67 -+#: ../glade/NewPrinterWindow.glade.h:66 - msgid "LPD" - msgstr "LPD" - --#: ../glade/NewPrinterWindow.glade.h:68 -+#: ../glade/NewPrinterWindow.glade.h:67 - msgid "License:" - msgstr "Licença:" - --#: ../glade/NewPrinterWindow.glade.h:69 -+#: ../glade/NewPrinterWindow.glade.h:68 - msgid "Line art:" - msgstr "Artístico:" - --#: ../glade/NewPrinterWindow.glade.h:70 -+#: ../glade/NewPrinterWindow.glade.h:69 - msgid "Local Driver" - msgstr "Controlador Local" - --#: ../glade/NewPrinterWindow.glade.h:71 -+#: ../glade/NewPrinterWindow.glade.h:70 - msgid "Make and model:" - msgstr "Marca e modelo:" - --#: ../glade/NewPrinterWindow.glade.h:72 -+#: ../glade/NewPrinterWindow.glade.h:71 - msgid "Manufacturer" - msgstr "Fabricante" - --#: ../glade/NewPrinterWindow.glade.h:73 -+#: ../glade/NewPrinterWindow.glade.h:72 - msgid "Network" - msgstr "Rede" - --#: ../glade/NewPrinterWindow.glade.h:75 -+#: ../glade/NewPrinterWindow.glade.h:74 - msgid "No, I do not accept this license" - msgstr "Não, Eu não aceito esta licença" - --#: ../glade/NewPrinterWindow.glade.h:76 -+#: ../glade/NewPrinterWindow.glade.h:75 - msgid "Parity" - msgstr "Paridade" - --#: ../glade/NewPrinterWindow.glade.h:78 -+#: ../glade/NewPrinterWindow.glade.h:77 - msgid "Patented algorithms" - msgstr "Algoritmos patenteados" - --#: ../glade/NewPrinterWindow.glade.h:79 -+#: ../glade/NewPrinterWindow.glade.h:78 - msgid "Photo:" - msgstr "Fotografia:" - --#: ../glade/NewPrinterWindow.glade.h:80 -+#: ../glade/NewPrinterWindow.glade.h:79 - msgid "Port number:" - msgstr "Número do porto:" - --#: ../glade/NewPrinterWindow.glade.h:81 -+#: ../glade/NewPrinterWindow.glade.h:80 - msgid "" - "PostScript Printer Description (PPD) files can often be found on the driver " - "disk that comes with the printer. For PostScript printers they are often " -@@ -1940,76 +1937,76 @@ msgstr "" - "impressoras PostScript fazem normalmente parte do controlador Windows®." - --#: ../glade/NewPrinterWindow.glade.h:82 -+#: ../glade/NewPrinterWindow.glade.h:81 - msgid "Printer model:" - msgstr "Modelo da Impressora:" - --#: ../glade/NewPrinterWindow.glade.h:83 -+#: ../glade/NewPrinterWindow.glade.h:82 - msgid "Probe" - msgstr "Detectar" - --#: ../glade/NewPrinterWindow.glade.h:84 -+#: ../glade/NewPrinterWindow.glade.h:83 - msgid "Prompt user if authentication is required" - msgstr "Perguntar ao utilizador se a autenticação é obrigatória" - --#: ../glade/NewPrinterWindow.glade.h:85 -+#: ../glade/NewPrinterWindow.glade.h:84 - msgid "Provide PPD file" - msgstr "Fornecer ficheiro PPD" - --#: ../glade/NewPrinterWindow.glade.h:86 -+#: ../glade/NewPrinterWindow.glade.h:85 - msgid "Queue:" - msgstr "Fila:" - --#: ../glade/NewPrinterWindow.glade.h:87 -+#: ../glade/NewPrinterWindow.glade.h:86 - msgid "SCSI" - msgstr "SCSI" - --#: ../glade/NewPrinterWindow.glade.h:88 -+#: ../glade/NewPrinterWindow.glade.h:87 - msgid "SMB" - msgstr "SMB" - --#: ../glade/NewPrinterWindow.glade.h:89 -+#: ../glade/NewPrinterWindow.glade.h:88 - msgid "Search for a printer driver to download" - msgstr "Procurar por um controlador disponível" - --#: ../glade/NewPrinterWindow.glade.h:90 -+#: ../glade/NewPrinterWindow.glade.h:89 - #, fuzzy - msgid "Searching..." - msgstr "A procurar" - --#: ../glade/NewPrinterWindow.glade.h:91 -+#: ../glade/NewPrinterWindow.glade.h:90 - msgid "Select A File" - msgstr "Escolha um Ficheiro" - --#: ../glade/NewPrinterWindow.glade.h:92 -+#: ../glade/NewPrinterWindow.glade.h:91 - msgid "Select printer from database" - msgstr "Seleccione a Impressora a partir da base de dados" - --#: ../glade/NewPrinterWindow.glade.h:93 -+#: ../glade/NewPrinterWindow.glade.h:92 - msgid "Serial" - msgstr "Série" - --#: ../glade/NewPrinterWindow.glade.h:94 -+#: ../glade/NewPrinterWindow.glade.h:93 - msgid "Set authentication details now" - msgstr "Defina agora os detalhes de autenticação" - --#: ../glade/NewPrinterWindow.glade.h:95 -+#: ../glade/NewPrinterWindow.glade.h:94 - msgid "Short name for this printer such as \"laserjet\"" - msgstr "Nome curto para esta impressora. Por exemplo \"laserjet\"" - --#: ../glade/NewPrinterWindow.glade.h:96 -+#: ../glade/NewPrinterWindow.glade.h:95 - msgid "Supplier:" - msgstr "Fornecedor:" - --#: ../glade/NewPrinterWindow.glade.h:97 -+#: ../glade/NewPrinterWindow.glade.h:96 - msgid "Support:" - msgstr "Suporte:" - --#: ../glade/NewPrinterWindow.glade.h:98 -+#: ../glade/NewPrinterWindow.glade.h:97 - msgid "Text:" - msgstr "Texto:" - --#: ../glade/NewPrinterWindow.glade.h:99 -+#: ../glade/NewPrinterWindow.glade.h:98 - msgid "" - "The foomatic printer database contains various manufacturer provided " - "PostScript Printer Description (PPD) files and also can generate PPD files " -@@ -2023,7 +2020,7 @@ msgstr "" - "entanto, normalmente os ficheiros PPD fornecidos pelos fabricantes fornecem " - "melhor acesso às características específicas da impressora." - --#: ../glade/NewPrinterWindow.glade.h:100 -+#: ../glade/NewPrinterWindow.glade.h:99 - msgid "" - "These drivers do not come from your operating system supplier and will not " - "be covered by their commercial support. See the support and license terms " -@@ -2033,7 +2030,7 @@ msgstr "" - "operativo e não são cobertos pelo seu suporte comercial. Veja os termos da " - "licença e suporte do fornecedor do controlador." - --#: ../glade/NewPrinterWindow.glade.h:101 -+#: ../glade/NewPrinterWindow.glade.h:100 - msgid "" - "This driver supports additional hardware that may be installed in the " - "printer." -@@ -2041,7 +2038,7 @@ msgstr "" - "Este controlador suporta hardware adicional que pode estar instalado na " - "impressora." - --#: ../glade/NewPrinterWindow.glade.h:102 -+#: ../glade/NewPrinterWindow.glade.h:101 - msgid "" - "This is done by assuming that options with the same name do have the same " - "meaning. Settings of options that are not present in the new PPD will be " -@@ -2051,7 +2048,7 @@ msgstr "" - "significado. Os valores das opções não presentes no novo PPD serão perdidos " - "e as opções apenas presentes no novo PPD ficam com o valor predefinido." - --#: ../glade/NewPrinterWindow.glade.h:103 -+#: ../glade/NewPrinterWindow.glade.h:102 - msgid "" - "This way all current option settings will be lost. The default settings of " - "the new PPD will be used. " -@@ -2059,20 +2056,20 @@ msgstr "" - "Desta forma todas as opções actuais serão perdidas. As predefinições do novo " - "PPD serão utilizadas." - --#: ../glade/NewPrinterWindow.glade.h:104 -+#: ../glade/NewPrinterWindow.glade.h:103 - msgid "Try to copy the option settings over from the old PPD. " - msgstr "Tentar copiar as opções do PPD antigo." - --#: ../glade/NewPrinterWindow.glade.h:105 -+#: ../glade/NewPrinterWindow.glade.h:104 - msgid "URI:" - msgstr "URI:" - --#: ../glade/NewPrinterWindow.glade.h:107 -+#: ../glade/NewPrinterWindow.glade.h:106 - msgid "Use the new PPD (Postscript Printer Description) as is." - msgstr "" - "Utilizar o novo ficheiro PPD (Descrição de Impressora Postscript) como está." - --#: ../glade/NewPrinterWindow.glade.h:109 -+#: ../glade/NewPrinterWindow.glade.h:108 - msgid "" - "With this choice no driver download will be performed. In the next steps a " - "locally installed driver will be selected." -@@ -2080,24 +2077,24 @@ msgstr "" - "Com esta opção, não será descarregado nenhum controlador. No próximo passo " - "será seleccionado um controlador local já instalado." - --#: ../glade/NewPrinterWindow.glade.h:110 -+#: ../glade/NewPrinterWindow.glade.h:109 - msgid "Yes, I accept this license" - msgstr "Sim, eu aceito esta licença" - --#: ../glade/NewPrinterWindow.glade.h:111 -+#: ../glade/NewPrinterWindow.glade.h:110 - msgid "_Search" - msgstr "_Procurar" - --#: ../glade/NewPrinterWindow.glade.h:112 -+#: ../glade/NewPrinterWindow.glade.h:111 - msgid "_Verify..." - msgstr "_Verificar..." - --#: ../glade/NewPrinterWindow.glade.h:113 -+#: ../glade/NewPrinterWindow.glade.h:112 - #: ../glade/PrinterPropertiesDialog.glade.h:128 - msgid "move left" - msgstr "Mover para a Esquerda" - --#: ../glade/NewPrinterWindow.glade.h:114 -+#: ../glade/NewPrinterWindow.glade.h:113 - #: ../glade/PrinterPropertiesDialog.glade.h:129 - msgid "move right" - msgstr "Mover para a Direita" -@@ -3020,7 +3017,7 @@ msgstr "A tarefa assinalada imprimiu cor - msgid "Remember to load paper of type '%s' into the printer first." - msgstr "Primeiro carregue a impressora com papel do tipo '%s'." - --#: ../troubleshoot/PrintTestPage.py:399 -+#: ../troubleshoot/PrintTestPage.py:416 - msgid "Error submitting test page" - msgstr "Erro ao submeter a página de teste" - -@@ -3223,6 +3220,15 @@ msgstr "Gerir as Tarefas de Impressão" - msgid "Select default printer" - msgstr "Seleccionar a impressora predefinida" - -+#~ msgid "HP Printer (HPLIP)" -+#~ msgstr "Impressora HP (HPLIP)" -+ -+#~ msgid "HPLIP cannot find the device." -+#~ msgstr "HPLIP não consegue encontrar o dispositivo." -+ -+#~ msgid "HP Printer (HPLIP) via network" -+#~ msgstr "Impressora HP (HPLIP) via rede" -+ - #~ msgid "Not Found" - #~ msgstr "Não Encontrado" - -diff -up system-config-printer-1.1.5/po/ro.po.git-1.1.x system-config-printer-1.1.5/po/ro.po ---- system-config-printer-1.1.5/po/ro.po.git-1.1.x 2009-03-03 22:21:46.000000000 +0000 -+++ system-config-printer-1.1.5/po/ro.po 2009-03-10 17:43:31.000000000 +0000 -@@ -8,7 +8,7 @@ msgid "" - msgstr "" - "Project-Id-Version: ro\n" - "Report-Msgid-Bugs-To: https://bugzilla.redhat.com/bugzilla\n" --"POT-Creation-Date: 2009-03-02 23:22+0000\n" -+"POT-Creation-Date: 2009-03-10 16:51+0000\n" - "PO-Revision-Date: 2007-04-13 22:50+0300\n" - "Last-Translator: MIrcea Daniel \n" - "Language-Team: \n" -@@ -55,11 +55,11 @@ msgstr "" - msgid "Enter IP address" - msgstr "Nume imprimantă" - --#: ../authconn.py:35 ../glade/NewPrinterWindow.glade.h:108 -+#: ../authconn.py:35 ../glade/NewPrinterWindow.glade.h:107 - msgid "Username:" - msgstr "Nume utilizator:" - --#: ../authconn.py:36 ../glade/NewPrinterWindow.glade.h:77 -+#: ../authconn.py:36 ../glade/NewPrinterWindow.glade.h:76 - msgid "Password:" - msgstr "Parolă:" - -@@ -68,7 +68,7 @@ msgstr "Parolă:" - msgid "Domain:" - msgstr "Margine sus:" - --#: ../authconn.py:46 -+#: ../authconn.py:46 ../authconn.py:409 - #, fuzzy - msgid "Authentication" - msgstr "Autentificare" -@@ -77,45 +77,54 @@ msgstr "Autentificare" - msgid "Remember password" - msgstr "" - --#: ../authconn.py:211 ../authconn.py:232 -+#: ../authconn.py:208 -+#, python-format -+msgid "Unauthorized request (%s)" -+msgstr "" -+ -+#: ../authconn.py:209 -+msgid "You are not authorized to carry out therequested action." -+msgstr "" -+ -+#: ../authconn.py:212 ../authconn.py:233 - #, fuzzy - msgid "Operation canceled" - msgstr "Reguli operaţiuni:" - --#: ../authconn.py:253 -+#: ../authconn.py:250 - #, fuzzy, python-format - msgid "CUPS server error (%s)" - msgstr "Eroare server CUPS" - --#: ../authconn.py:255 ../errordialogs.py:57 --#: ../troubleshoot/PrintTestPage.py:400 -+#: ../authconn.py:252 ../errordialogs.py:56 ../errordialogs.py:70 -+msgid "CUPS server error" -+msgstr "Eroare server CUPS" -+ -+#: ../authconn.py:261 ../errordialogs.py:57 -+#: ../troubleshoot/PrintTestPage.py:417 - #, python-format - msgid "There was an error during the CUPS operation: '%s'." - msgstr "A fost eroare în timpul operaţiunii CUPS: '%s'." - --#: ../authconn.py:258 -+#: ../authconn.py:264 - #, fuzzy - msgid "Retry" - msgstr "Reset" - --#: ../authconn.py:379 ../authconn.py:381 ../errordialogs.py:65 ../pysmb.py:75 -+#: ../authconn.py:385 ../authconn.py:387 ../errordialogs.py:65 ../pysmb.py:75 - #: ../pysmb.py:77 - msgid "Not authorized" - msgstr "Neautorizat" - --#: ../authconn.py:382 ../pysmb.py:78 -+#: ../authconn.py:388 ../pysmb.py:78 - msgid "The password may be incorrect." - msgstr "Parola ar putea fi greşită." - --#: ../authconn.py:400 -+#: ../authconn.py:407 - #, fuzzy, python-format - msgid "Authentication (%s)" - msgstr "Autentificare" - --#: ../errordialogs.py:56 ../errordialogs.py:70 --msgid "CUPS server error" --msgstr "Eroare server CUPS" -- - #: ../errordialogs.py:66 - msgid "" - "The password may be incorrect, or the server may be configured to deny " -@@ -144,7 +153,7 @@ msgstr "Upgrade este necesar" - msgid "Server error" - msgstr "Eroare server" - --#: ../errordialogs.py:82 ../system-config-printer.py:1219 -+#: ../errordialogs.py:82 ../system-config-printer.py:1223 - msgid "Not connected" - msgstr "Neconectat" - -@@ -166,7 +175,7 @@ msgstr "" - msgid "_New Group from Selection" - msgstr "" - --#: ../GroupsPane.py:98 ../system-config-printer.py:393 -+#: ../GroupsPane.py:98 ../system-config-printer.py:397 - #, fuzzy - msgid "_Rename" - msgstr "Elibe_rează" -@@ -235,7 +244,7 @@ msgid "Document" - msgstr "Document" - - #: ../jobviewer.py:212 ../my-default-printer.py:153 --#: ../system-config-printer.py:366 ../system-config-printer.py:1367 -+#: ../system-config-printer.py:370 ../system-config-printer.py:1371 - #: ../troubleshoot/PrintTestPage.py:84 - msgid "Printer" - msgstr "Imprimantă" -@@ -272,8 +281,8 @@ msgstr "Statut imprimare document" - - #: ../jobviewer.py:386 ../jobviewer.py:451 ../jobviewer.py:452 - #: ../jobviewer.py:492 ../jobviewer.py:600 ../jobviewer.py:727 --#: ../jobviewer.py:1196 ../jobviewer.py:1222 ../system-config-printer.py:2546 --#: ../glade/NewPrinterWindow.glade.h:106 -+#: ../jobviewer.py:1196 ../jobviewer.py:1222 ../system-config-printer.py:2556 -+#: ../glade/NewPrinterWindow.glade.h:105 - #: ../troubleshoot/ChooseNetworkPrinter.py:101 - #: ../troubleshoot/ChooseNetworkPrinter.py:102 - #: ../troubleshoot/ChooseNetworkPrinter.py:105 -@@ -363,12 +372,12 @@ msgstr "" - msgid "Pending" - msgstr "În aşteptare" - --#: ../jobviewer.py:591 ../system-config-printer.py:186 -+#: ../jobviewer.py:591 ../system-config-printer.py:190 - #: ../troubleshoot/PrintTestPage.py:43 - msgid "Processing" - msgstr "Procesez" - --#: ../jobviewer.py:592 ../system-config-printer.py:188 -+#: ../jobviewer.py:592 ../system-config-printer.py:192 - #: ../troubleshoot/PrintTestPage.py:44 - msgid "Stopped" - msgstr "Oprit" -@@ -485,8 +494,8 @@ msgstr "Resetare la valorile implicite" - msgid "_Set Default" - msgstr "implicit" - --#: ../my-default-printer.py:158 ../system-config-printer.py:423 --#: ../system-config-printer.py:3660 ../troubleshoot/ChooseNetworkPrinter.py:37 -+#: ../my-default-printer.py:158 ../system-config-printer.py:427 -+#: ../system-config-printer.py:3675 ../troubleshoot/ChooseNetworkPrinter.py:37 - #: ../troubleshoot/ChoosePrinter.py:38 - #, fuzzy - msgid "Location" -@@ -520,7 +529,7 @@ msgstr "Setează ca imprimantă implicit - msgid "Authenticated" - msgstr "Autentificare" - --#: ../ppdippstr.py:50 ../system-config-printer.py:6259 -+#: ../ppdippstr.py:50 ../system-config-printer.py:6207 - #, fuzzy - msgid "None" - msgstr "nici unul" -@@ -740,132 +749,132 @@ msgstr "" - msgid "1200 dpi, photo, black + color cartridge, photo paper" - msgstr "" - --#: ../system-config-printer.py:127 -+#: ../system-config-printer.py:131 - msgid "To do this, select System->Administration->Firewall from the main menu." - msgstr "" - --#: ../system-config-printer.py:185 -+#: ../system-config-printer.py:189 - msgid "Idle" - msgstr "Inactiv" - --#: ../system-config-printer.py:187 -+#: ../system-config-printer.py:191 - msgid "Busy" - msgstr "Ocupat" - --#: ../system-config-printer.py:372 ../system-config-printer.py:1373 -+#: ../system-config-printer.py:376 ../system-config-printer.py:1377 - #, fuzzy - msgid "Class" - msgstr "Grupă nouă" - --#: ../system-config-printer.py:399 -+#: ../system-config-printer.py:403 - #, fuzzy - msgid "Set As De_fault" - msgstr "implicit" - --#: ../system-config-printer.py:403 -+#: ../system-config-printer.py:407 - #, fuzzy - msgid "_Create class" - msgstr "Grupuri distante" - --#: ../system-config-printer.py:405 -+#: ../system-config-printer.py:409 - #, fuzzy - msgid "View Print _Queue" - msgstr "Imprimantă nouă " - --#: ../system-config-printer.py:407 -+#: ../system-config-printer.py:411 - msgid "_Add to Group" - msgstr "" - --#: ../system-config-printer.py:409 -+#: ../system-config-printer.py:413 - msgid "Save Results as _Group" - msgstr "" - --#: ../system-config-printer.py:411 -+#: ../system-config-printer.py:415 - msgid "Save Filter as _Search Group" - msgstr "" - --#: ../system-config-printer.py:415 -+#: ../system-config-printer.py:419 - #, fuzzy - msgid "E_nabled" - msgstr "Activ" - --#: ../system-config-printer.py:417 -+#: ../system-config-printer.py:421 - #, fuzzy - msgid "_Shared" - msgstr "Partajat" - --#: ../system-config-printer.py:421 ../troubleshoot/ChooseNetworkPrinter.py:35 -+#: ../system-config-printer.py:425 ../troubleshoot/ChooseNetworkPrinter.py:35 - #: ../troubleshoot/ChoosePrinter.py:36 ../troubleshoot/DeviceListed.py:36 - msgid "Name" - msgstr "Nume" - --#: ../system-config-printer.py:422 -+#: ../system-config-printer.py:426 - #, fuzzy - msgid "Description" - msgstr "Descriere" - --#: ../system-config-printer.py:424 -+#: ../system-config-printer.py:428 - msgid "Manufacturer / Model" - msgstr "" - - #. Printer state reasons list --#: ../system-config-printer.py:499 -+#: ../system-config-printer.py:503 - msgid "Message" - msgstr "Mesaj" - --#: ../system-config-printer.py:534 -+#: ../system-config-printer.py:538 - #, fuzzy - msgid "Problems?" - msgstr "Probează" - --#: ../system-config-printer.py:637 ../system-config-printer.py:639 -+#: ../system-config-printer.py:641 ../system-config-printer.py:643 - msgid "Members of this class" - msgstr "Membri ai acestui grup" - --#: ../system-config-printer.py:638 ../system-config-printer.py:640 -+#: ../system-config-printer.py:642 ../system-config-printer.py:644 - msgid "Others" - msgstr "Alţii" - --#: ../system-config-printer.py:641 -+#: ../system-config-printer.py:645 - msgid "Devices" - msgstr "Dispozitive" - --#: ../system-config-printer.py:642 -+#: ../system-config-printer.py:646 - #, fuzzy - msgid "Connections" - msgstr "Conectare" - --#: ../system-config-printer.py:643 -+#: ../system-config-printer.py:647 - msgid "Makes" - msgstr "Producători" - --#: ../system-config-printer.py:644 -+#: ../system-config-printer.py:648 - msgid "Models" - msgstr "Modele" - --#: ../system-config-printer.py:645 -+#: ../system-config-printer.py:649 - msgid "Drivers" - msgstr "Drivere" - --#: ../system-config-printer.py:646 ../glade/NewPrinterWindow.glade.h:55 -+#: ../system-config-printer.py:650 ../glade/NewPrinterWindow.glade.h:54 - msgid "Downloadable Drivers" - msgstr "" - --#: ../system-config-printer.py:647 -+#: ../system-config-printer.py:651 - msgid "Users" - msgstr "Utilizatori" - --#: ../system-config-printer.py:682 -+#: ../system-config-printer.py:686 - msgid "Automatic rotation" - msgstr "" - --#: ../system-config-printer.py:989 -+#: ../system-config-printer.py:993 - #, fuzzy, python-format - msgid "Printer Properties - '%s' on %s" - msgstr "Raport imprimantă" - - #. The Conflict button was pressed. --#: ../system-config-printer.py:996 -+#: ../system-config-printer.py:1000 - msgid "" - "There are conflicting options.\n" - "Changes can only be applied after\n" -@@ -875,81 +884,81 @@ msgstr "" - "Modificările pot fi aplicate numai după\n" - "ce aceste conflicte au fost rezolvate." - --#: ../system-config-printer.py:1214 -+#: ../system-config-printer.py:1218 - #, python-format - msgid "Printer configuration - %s" - msgstr "Configurare imprimantă - %s" - --#: ../system-config-printer.py:1217 -+#: ../system-config-printer.py:1221 - #, python-format - msgid "Connected to %s" - msgstr "Conectat la %s" - - #. Update our copy of the printer's settings. --#: ../system-config-printer.py:1257 ../system-config-printer.py:2042 -+#: ../system-config-printer.py:1261 ../system-config-printer.py:2046 - msgid "obtaining queue details" - msgstr "" - --#: ../system-config-printer.py:1295 -+#: ../system-config-printer.py:1299 - msgid "Remove from Group" - msgstr "" - --#: ../system-config-printer.py:1361 -+#: ../system-config-printer.py:1365 - #, fuzzy - msgid "Network printer (discovered)" - msgstr "Imprimantă nouă " - --#: ../system-config-printer.py:1364 -+#: ../system-config-printer.py:1368 - msgid "Network class (discovered)" - msgstr "" - --#: ../system-config-printer.py:1370 ../system-config-printer.py:5524 --#: ../system-config-printer.py:5594 ../system-config-printer.py:5596 -+#: ../system-config-printer.py:1374 ../system-config-printer.py:5519 -+#: ../system-config-printer.py:5589 ../system-config-printer.py:5591 - msgid "Fax" - msgstr "" - --#: ../system-config-printer.py:1376 ../system-config-printer.py:1382 -+#: ../system-config-printer.py:1380 ../system-config-printer.py:1386 - #: ../troubleshoot/LocalOrRemote.py:30 - #, fuzzy - msgid "Network printer" - msgstr "Imprimantă nouă " - --#: ../system-config-printer.py:1379 -+#: ../system-config-printer.py:1383 - #, fuzzy - msgid "Network print share" - msgstr "Imprimantă nouă " - --#: ../system-config-printer.py:1508 ../glade/ConnectingDialog.glade.h:2 -+#: ../system-config-printer.py:1512 ../glade/ConnectingDialog.glade.h:2 - #, no-c-format, python-format - msgid "Opening connection to %s" - msgstr "" - --#: ../system-config-printer.py:1887 -+#: ../system-config-printer.py:1891 - msgid "Installable Options" - msgstr "Opţiuni instalare" - --#: ../system-config-printer.py:1888 -+#: ../system-config-printer.py:1892 - #: ../glade/PrinterPropertiesDialog.glade.h:109 - msgid "Printer Options" - msgstr "Opţiuni imprimantă" - --#: ../system-config-printer.py:1924 -+#: ../system-config-printer.py:1928 - #, python-format - msgid "modifying class %s" - msgstr "" - --#: ../system-config-printer.py:1926 ../system-config-printer.py:3019 --#: ../system-config-printer.py:3044 ../system-config-printer.py:6547 --#: ../system-config-printer.py:6559 ../system-config-printer.py:6581 -+#: ../system-config-printer.py:1930 ../system-config-printer.py:3037 -+#: ../system-config-printer.py:3062 ../system-config-printer.py:6495 -+#: ../system-config-printer.py:6507 ../system-config-printer.py:6529 - #, fuzzy, python-format - msgid "modifying printer %s" - msgstr "Configurează imprimante" - --#: ../system-config-printer.py:1941 -+#: ../system-config-printer.py:1945 - msgid "This will delete this class!" - msgstr "Va fi ştearsă această clasă!" - --#: ../system-config-printer.py:1942 -+#: ../system-config-printer.py:1946 - msgid "Proceed anyway?" - msgstr "Continui oricum?" - -@@ -957,50 +966,50 @@ msgstr "Continui oricum?" - #. but we have never fetched the server settings to see whether - #. the server is publishing shared printers. Fetch the settings - #. now so that we can update the "not published" label if necessary. --#: ../system-config-printer.py:2030 ../system-config-printer.py:3203 -+#: ../system-config-printer.py:2034 ../system-config-printer.py:3221 - #, fuzzy - msgid "fetching server settings" - msgstr "Setări de bază server" - --#: ../system-config-printer.py:2100 -+#: ../system-config-printer.py:2104 - #, fuzzy - msgid "Set Default Printer" - msgstr "Setează ca imprimantă implicită" - --#: ../system-config-printer.py:2102 -+#: ../system-config-printer.py:2106 - msgid "Do you want to set this as the system-wide default printer?" - msgstr "" - --#: ../system-config-printer.py:2104 -+#: ../system-config-printer.py:2108 - #, fuzzy - msgid "Set as the _system-wide default printer" - msgstr "Aceasta este imprimanta implicită" - --#: ../system-config-printer.py:2106 -+#: ../system-config-printer.py:2110 - msgid "_Clear my personal default setting" - msgstr "" - --#: ../system-config-printer.py:2107 -+#: ../system-config-printer.py:2111 - #, fuzzy - msgid "Set as my _personal default printer" - msgstr "Setează ca imprimantă implicită" - --#: ../system-config-printer.py:2112 -+#: ../system-config-printer.py:2116 - #, fuzzy - msgid "setting default printer" - msgstr "Setează ca imprimantă implicită" - --#: ../system-config-printer.py:2169 -+#: ../system-config-printer.py:2173 - #, fuzzy - msgid "printing test page" - msgstr "Imprimă pagină de test" - --#: ../system-config-printer.py:2182 ../system-config-printer.py:2217 --#: ../system-config-printer.py:5418 -+#: ../system-config-printer.py:2186 ../system-config-printer.py:2221 -+#: ../system-config-printer.py:5413 - msgid "Not possible" - msgstr "Imposibil" - --#: ../system-config-printer.py:2183 ../system-config-printer.py:2218 -+#: ../system-config-printer.py:2187 ../system-config-printer.py:2222 - msgid "" - "The remote server did not accept the print job, most likely because the " - "printer is not shared." -@@ -1008,20 +1017,20 @@ msgstr "" - "Serverul distant nu a acceptat lucrarea de imprimare, cel mai probabil " - "imprimanta nu este partajată." - --#: ../system-config-printer.py:2195 ../system-config-printer.py:2210 -+#: ../system-config-printer.py:2199 ../system-config-printer.py:2214 - msgid "Submitted" - msgstr "Trimis" - --#: ../system-config-printer.py:2196 -+#: ../system-config-printer.py:2200 - #, python-format - msgid "Test page submitted as job %d" - msgstr "Pagina de test a fost trimisă ca lucrarea %d" - --#: ../system-config-printer.py:2203 -+#: ../system-config-printer.py:2207 - msgid "sending maintenance command" - msgstr "" - --#: ../system-config-printer.py:2211 -+#: ../system-config-printer.py:2215 - #, fuzzy, python-format - msgid "Maintenance command submitted as job %d" - msgstr "Pagina de test a fost trimisă ca lucrarea %d" -@@ -1029,75 +1038,75 @@ msgstr "Pagina de test a fost trimisă c - #. The underlying cupsGetPPD2() function returned NULL without - #. setting an IPP error, so it'll be something like a failed - #. connection. --#: ../system-config-printer.py:2285 ../system-config-printer.py:2381 -+#: ../system-config-printer.py:2289 ../system-config-printer.py:2385 - msgid "Error" - msgstr "Eroare" - --#: ../system-config-printer.py:2286 -+#: ../system-config-printer.py:2290 - msgid "There was a problem connecting to the CUPS server." - msgstr "A fost eroare la conectarea către serverul CUPS." - --#: ../system-config-printer.py:2382 -+#: ../system-config-printer.py:2386 - #, python-format - msgid "Option '%s' has value '%s' and cannot be edited." - msgstr "" - --#: ../system-config-printer.py:2466 -+#: ../system-config-printer.py:2476 - msgid "Marker levels are not reported for this printer." - msgstr "" - --#: ../system-config-printer.py:2763 -+#: ../system-config-printer.py:2773 - #, fuzzy - msgid "Cannot Rename" - msgstr "Elibe_rează" - --#: ../system-config-printer.py:2764 -+#: ../system-config-printer.py:2774 - msgid "There are queued jobs." - msgstr "" - --#: ../system-config-printer.py:2822 -+#: ../system-config-printer.py:2840 - #, fuzzy - msgid "renaming printer" - msgstr "Configurează imprimante" - - #. for classes make sure all members - #. will get added --#: ../system-config-printer.py:2907 -+#: ../system-config-printer.py:2925 - #, fuzzy - msgid "copying printer" - msgstr "Configurează imprimante" - --#: ../system-config-printer.py:2971 -+#: ../system-config-printer.py:2989 - #, fuzzy, python-format - msgid "Really delete class '%s'?" - msgstr "Sigur şterg grupul %s?" - --#: ../system-config-printer.py:2973 -+#: ../system-config-printer.py:2991 - #, fuzzy, python-format - msgid "Really delete printer '%s'?" - msgstr "Sigur şterg imprimanta %s?" - --#: ../system-config-printer.py:2975 -+#: ../system-config-printer.py:2993 - #, fuzzy - msgid "Really delete selected destinations?" - msgstr "Sigur şterg imprimanta %s?" - --#: ../system-config-printer.py:2996 -+#: ../system-config-printer.py:3014 - #, fuzzy, python-format - msgid "deleting printer %s" - msgstr "Configurează imprimante" - --#: ../system-config-printer.py:3070 -+#: ../system-config-printer.py:3088 - msgid "Publish Shared Printers" - msgstr "" - --#: ../system-config-printer.py:3071 -+#: ../system-config-printer.py:3089 - msgid "" - "Shared printers are not available to other people unless the 'Publish shared " - "printers' option is enabled in the server settings." - msgstr "" - --#: ../system-config-printer.py:3264 -+#: ../system-config-printer.py:3282 - #, fuzzy - msgid "modifying server settings" - msgstr "Setări de bază server" -@@ -1108,105 +1117,105 @@ msgstr "Setări de bază server" - #. be unblocked. Unfortunately, this is not yet possible - #. (bug #440469). However, we can display a dialog to suggest - #. that now might be a good time to review the firewall settings. --#: ../system-config-printer.py:3289 -+#: ../system-config-printer.py:3307 - msgid "Review Firewall" - msgstr "" - --#: ../system-config-printer.py:3290 -+#: ../system-config-printer.py:3308 - msgid "" - "You may need to adjust the firewall to allow network printing to this " - "computer." - msgstr "" - --#: ../system-config-printer.py:3623 -+#: ../system-config-printer.py:3638 - msgid "Browsing not available (pysmbc not installed)" - msgstr "" - - #. SMB list columns --#: ../system-config-printer.py:3629 -+#: ../system-config-printer.py:3644 - msgid "Share" - msgstr "Partajare" - --#: ../system-config-printer.py:3635 -+#: ../system-config-printer.py:3650 - msgid "Comment" - msgstr "Comentariu" - - #. IPP list columns --#: ../system-config-printer.py:3654 -+#: ../system-config-printer.py:3669 - msgid "Queue" - msgstr "" - --#: ../system-config-printer.py:3668 -+#: ../system-config-printer.py:3683 - #, fuzzy - msgid "" - "PostScript Printer Description files (*.ppd, *.PPD, *.ppd.gz, *.PPD.gz, *." - "PPD.GZ)" - msgstr "Descriere imprimantă PostScript (*.ppd[.gz])" - --#: ../system-config-printer.py:3677 -+#: ../system-config-printer.py:3692 - msgid "All files (*)" - msgstr "" - --#: ../system-config-printer.py:3713 ../system-config-printer.py:5970 --#: ../system-config-printer.py:6008 ../applet.py:124 -+#: ../system-config-printer.py:3728 ../system-config-printer.py:5918 -+#: ../system-config-printer.py:5956 ../applet.py:124 - #, fuzzy - msgid "Search" - msgstr "Nume nou pentru imprimantă" - --#: ../system-config-printer.py:3736 ../system-config-printer.py:3760 --#: ../glade/NewPrinterWindow.glade.h:74 -+#: ../system-config-printer.py:3751 ../system-config-printer.py:3775 -+#: ../glade/NewPrinterWindow.glade.h:73 - msgid "New Printer" - msgstr "Imprimantă nouă " - --#: ../system-config-printer.py:3747 -+#: ../system-config-printer.py:3762 - msgid "New Class" - msgstr "Grupă nouă" - --#: ../system-config-printer.py:3752 -+#: ../system-config-printer.py:3767 - msgid "Change Device URI" - msgstr "Schimbă URI dispozitiv" - --#: ../system-config-printer.py:3758 -+#: ../system-config-printer.py:3773 - msgid "Change Driver" - msgstr "Schimbă driver" - --#: ../system-config-printer.py:3927 ../system-config-printer.py:3993 --#: ../system-config-printer.py:4289 ../system-config-printer.py:4487 --#: ../system-config-printer.py:5772 ../system-config-printer.py:5995 -+#: ../system-config-printer.py:3942 ../system-config-printer.py:4008 -+#: ../system-config-printer.py:4304 ../system-config-printer.py:4502 -+#: ../system-config-printer.py:5762 ../system-config-printer.py:5943 - msgid "Searching" - msgstr "" - --#: ../system-config-printer.py:3928 -+#: ../system-config-printer.py:3943 - #, fuzzy - msgid "Searching for downloadable drivers" - msgstr "Nume nou pentru imprimantă" - --#: ../system-config-printer.py:3994 ../system-config-printer.py:4290 -+#: ../system-config-printer.py:4009 ../system-config-printer.py:4305 - msgid "Searching for drivers" - msgstr "" - --#: ../system-config-printer.py:4488 ../system-config-printer.py:5773 -+#: ../system-config-printer.py:4503 ../system-config-printer.py:5763 - #, fuzzy - msgid "Searching for printers" - msgstr "Nume nou pentru imprimantă" - --#: ../system-config-printer.py:4497 -+#: ../system-config-printer.py:4512 - #, fuzzy - msgid "fetching device list" - msgstr "Setări de bază server" - - #. Tell the user why he needs the plugin --#: ../system-config-printer.py:4579 -+#: ../system-config-printer.py:4594 - msgid "For this printer a proprietary driver plugin from HP is available.\n" - msgstr "" - --#: ../system-config-printer.py:4582 -+#: ../system-config-printer.py:4597 - msgid "" - "The installation of the plugin is required for your printer to work.\n" - "\n" - msgstr "" - --#: ../system-config-printer.py:4585 -+#: ../system-config-printer.py:4600 - msgid "" - "Installing the plugin is optional, it completes or enhances the " - "functionality\n" -@@ -1214,219 +1223,215 @@ msgid "" - "\n" - msgstr "" - --#: ../system-config-printer.py:4589 -+#: ../system-config-printer.py:4604 - msgid "The plugin provides the following features:\n" - msgstr "" - --#: ../system-config-printer.py:4592 -+#: ../system-config-printer.py:4607 - msgid " - Printing support\n" - msgstr "" - --#: ../system-config-printer.py:4595 -+#: ../system-config-printer.py:4610 - msgid " - Faster printing\n" - msgstr "" - --#: ../system-config-printer.py:4598 -+#: ../system-config-printer.py:4613 - msgid " - Better printout quality\n" - msgstr "" - --#: ../system-config-printer.py:4601 -+#: ../system-config-printer.py:4616 - msgid " - Extra printing features\n" - msgstr "" - --#: ../system-config-printer.py:4604 -+#: ../system-config-printer.py:4619 - msgid " - Scanning support\n" - msgstr "" - --#: ../system-config-printer.py:4607 -+#: ../system-config-printer.py:4622 - msgid " - Faster scanning\n" - msgstr "" - --#: ../system-config-printer.py:4610 -+#: ../system-config-printer.py:4625 - msgid " - Better scanning image quality\n" - msgstr "" - --#: ../system-config-printer.py:4613 -+#: ../system-config-printer.py:4628 - msgid " - Faxing support\n" - msgstr "" - --#: ../system-config-printer.py:4616 -+#: ../system-config-printer.py:4631 - msgid " - Extra fax features\n" - msgstr "" - --#: ../system-config-printer.py:4619 -+#: ../system-config-printer.py:4634 - msgid " - Better Input/Output support\n" - msgstr "" - --#: ../system-config-printer.py:4622 -+#: ../system-config-printer.py:4637 - msgid " - Extra user interface features\n" - msgstr "" - --#: ../system-config-printer.py:4625 -+#: ../system-config-printer.py:4640 - msgid " - Other extra features\n" - msgstr "" - --#: ../system-config-printer.py:4630 -+#: ../system-config-printer.py:4645 - #, fuzzy - msgid "Install plugin" - msgstr "Opţiuni instalare" - --#: ../system-config-printer.py:4631 -+#: ../system-config-printer.py:4646 - #, fuzzy - msgid "Do not set up printer" - msgstr "Imprimantă de copiere" - --#: ../system-config-printer.py:4632 -+#: ../system-config-printer.py:4647 - msgid "Set up without plugin" - msgstr "" - --#: ../system-config-printer.py:4634 ../troubleshoot/PrintTestPage.py:118 -+#: ../system-config-printer.py:4649 ../troubleshoot/PrintTestPage.py:118 - msgid "Yes" - msgstr "" - --#: ../system-config-printer.py:4635 ../troubleshoot/PrintTestPage.py:119 -+#: ../system-config-printer.py:4650 ../troubleshoot/PrintTestPage.py:119 - msgid "No" - msgstr "" - --#: ../system-config-printer.py:4809 ../system-config-printer.py:4813 -+#: ../system-config-printer.py:4824 ../system-config-printer.py:4828 - msgid " (Current)" - msgstr " (Curent)" - --#: ../system-config-printer.py:4845 --msgid "HP Printer (HPLIP)" --msgstr "" -- --#: ../system-config-printer.py:4886 -+#: ../system-config-printer.py:4881 - msgid "Other" - msgstr "Altul" - - #. device-info - #. PhysicalDevice obj - #. Separator? --#: ../system-config-printer.py:4902 -+#: ../system-config-printer.py:4897 - #, fuzzy - msgid "Network Printer" - msgstr "Imprimantă nouă " - --#: ../system-config-printer.py:4906 -+#: ../system-config-printer.py:4901 - #, fuzzy - msgid "Find Network Printer" - msgstr "Imprimantă nouă " - --#: ../system-config-printer.py:4979 ../system-config-printer.py:5376 -+#: ../system-config-printer.py:4974 ../system-config-printer.py:5371 - #, fuzzy - msgid "Scanning..." - msgstr "Redimensionează:" - --#: ../system-config-printer.py:5034 ../system-config-printer.py:5798 -+#: ../system-config-printer.py:5029 - #, fuzzy - msgid "No Print Shares" - msgstr "Imprimantă nouă " - --#: ../system-config-printer.py:5035 -+#: ../system-config-printer.py:5030 - msgid "" - "There were no print shares found. Please check that the Samba service is " - "marked as trusted in your firewall configuration." - msgstr "" - --#: ../system-config-printer.py:5296 ../system-config-printer.py:5357 -+#: ../system-config-printer.py:5291 ../system-config-printer.py:5352 - msgid "Print Share Verified" - msgstr "" - --#: ../system-config-printer.py:5297 ../system-config-printer.py:5358 -+#: ../system-config-printer.py:5292 ../system-config-printer.py:5353 - msgid "This print share is accessible." - msgstr "Această partajare de imprimare este accesibilă." - --#: ../system-config-printer.py:5302 ../system-config-printer.py:5362 -+#: ../system-config-printer.py:5297 ../system-config-printer.py:5357 - msgid "This print share is not accessible." - msgstr "Această partajare de imprimare nu este accesibilă." - --#: ../system-config-printer.py:5305 -+#: ../system-config-printer.py:5300 - #, fuzzy - msgid "Print Share Inaccessible" - msgstr "Această partajare de imprimare este accesibilă." - --#: ../system-config-printer.py:5361 -+#: ../system-config-printer.py:5356 - msgid "Inaccessible" - msgstr "Inacesibil" - --#: ../system-config-printer.py:5419 -+#: ../system-config-printer.py:5414 - #, fuzzy, python-format - msgid "It is not possible to obtain a list of queues from '%s'." - msgstr "A fost eroare la conectarea către serverul CUPS." - --#: ../system-config-printer.py:5421 -+#: ../system-config-printer.py:5416 - msgid "" - "Obtaining a list of queues is a CUPS extension to IPP. Network printers do " - "not support it." - msgstr "" - --#: ../system-config-printer.py:5424 -+#: ../system-config-printer.py:5419 - msgid "No queues" - msgstr "" - --#: ../system-config-printer.py:5425 -+#: ../system-config-printer.py:5420 - msgid "There are no queues available." - msgstr "" - --#: ../system-config-printer.py:5516 -+#: ../system-config-printer.py:5511 - msgid "Parallel Port" - msgstr "" - --#: ../system-config-printer.py:5518 -+#: ../system-config-printer.py:5513 - #, fuzzy - msgid "Serial Port" - msgstr "Serie" - --#: ../system-config-printer.py:5520 -+#: ../system-config-printer.py:5515 - #, fuzzy - msgid "USB" - msgstr "SMB" - --#: ../system-config-printer.py:5522 ../system-config-printer.py:5525 -+#: ../system-config-printer.py:5517 ../system-config-printer.py:5520 - msgid "HP Linux Imaging and Printing (HPLIP)" - msgstr "" - --#: ../system-config-printer.py:5527 -+#: ../system-config-printer.py:5522 - #, fuzzy - msgid "Hardware Abstraction Layer (HAL)" - msgstr "Imprimantă locală detectată de Stratul de Abstracţie Hardware (HAL)" - --#: ../system-config-printer.py:5529 -+#: ../system-config-printer.py:5524 - msgid "AppSocket/HP JetDirect" - msgstr "" - --#: ../system-config-printer.py:5538 -+#: ../system-config-printer.py:5533 - #, python-format - msgid "LPD/LPR queue '%s'" - msgstr "" - --#: ../system-config-printer.py:5540 -+#: ../system-config-printer.py:5535 - #, fuzzy - msgid "LPD/LPR queue" - msgstr "LPD" - --#: ../system-config-printer.py:5543 -+#: ../system-config-printer.py:5538 - msgid "Windows Printer via SAMBA" - msgstr "" - --#: ../system-config-printer.py:5545 ../glade/NewPrinterWindow.glade.h:66 -+#: ../system-config-printer.py:5540 ../glade/NewPrinterWindow.glade.h:65 - msgid "IPP" - msgstr "IPP" - --#: ../system-config-printer.py:5547 -+#: ../system-config-printer.py:5542 - msgid "HTTP" - msgstr "" - --#: ../system-config-printer.py:5632 -+#: ../system-config-printer.py:5624 - msgid "A printer connected to the parallel port." - msgstr "O imprimantă conectată la un port paralel." - --#: ../system-config-printer.py:5634 -+#: ../system-config-printer.py:5626 - msgid "A printer connected to a USB port." - msgstr "O imprimantă conectată la un port USB." - --#: ../system-config-printer.py:5636 -+#: ../system-config-printer.py:5628 - msgid "" - "HPLIP software driving a printer, or the printer function of a multi-" - "function device." -@@ -1434,7 +1439,7 @@ msgstr "" - "HPLIP software utilizează o imprimantă, sau funcţia de printare a unui " - "dispozitiv multifuncţional." - --#: ../system-config-printer.py:5639 -+#: ../system-config-printer.py:5631 - msgid "" - "HPLIP software driving a fax machine, or the fax function of a multi-" - "function device." -@@ -1442,70 +1447,66 @@ msgstr "" - "HPLIP software utilizează un fax, sau funcţia fax a unui dispozitiv " - "multifuncţional." - --#: ../system-config-printer.py:5642 -+#: ../system-config-printer.py:5634 - msgid "Local printer detected by the Hardware Abstraction Layer (HAL)." - msgstr "Imprimantă locală detectată de Stratul de Abstracţie Hardware (HAL)" - --#: ../system-config-printer.py:5799 --msgid "HPLIP cannot find the device." --msgstr "" -- --#: ../system-config-printer.py:5881 -+#: ../system-config-printer.py:5831 - msgid "No printer was found at that address." - msgstr "" - --#: ../system-config-printer.py:6020 -+#: ../system-config-printer.py:5968 - #, fuzzy - msgid "-- Select from search results --" - msgstr "Selectează imprimantă din baza de date" - --#: ../system-config-printer.py:6022 -+#: ../system-config-printer.py:5970 - msgid "-- No matches found --" - msgstr "" - --#: ../system-config-printer.py:6203 -+#: ../system-config-printer.py:6151 - msgid " (recommended)" - msgstr "(recomandat)" - --#: ../system-config-printer.py:6217 -+#: ../system-config-printer.py:6165 - msgid "This PPD is generated by foomatic." - msgstr "Acest PPD este generat de foomatic." - --#: ../system-config-printer.py:6241 -+#: ../system-config-printer.py:6189 - #, fuzzy - msgid "OpenPrinting" - msgstr "Imprimare" - --#: ../system-config-printer.py:6252 -+#: ../system-config-printer.py:6200 - msgid "Distributable" - msgstr "" - --#: ../system-config-printer.py:6293 -+#: ../system-config-printer.py:6241 - #, fuzzy - msgid ", " - msgstr " " - --#: ../system-config-printer.py:6298 -+#: ../system-config-printer.py:6246 - #, python-format - msgid "" - "\n" - "(%s)" - msgstr "" - --#: ../system-config-printer.py:6303 -+#: ../system-config-printer.py:6251 - msgid "No support contacts known" - msgstr "" - --#: ../system-config-printer.py:6307 ../system-config-printer.py:6320 -+#: ../system-config-printer.py:6255 ../system-config-printer.py:6268 - msgid "Not specified." - msgstr "" - - #. Foomatic database problem of some sort. --#: ../system-config-printer.py:6360 -+#: ../system-config-printer.py:6308 - msgid "Database error" - msgstr "Eroare baza de date" - --#: ../system-config-printer.py:6361 -+#: ../system-config-printer.py:6309 - #, python-format - msgid "The '%s' driver cannot be used with printer '%s %s'." - msgstr "Driverul '%s' nu poate fi folosit cu imprimanta '%s %s'." -@@ -1513,65 +1514,65 @@ msgstr "Driverul '%s' nu poate fi folosi - #. This printer references some XML that is not - #. installed by default. Point the user at the - #. package they need to install. --#: ../system-config-printer.py:6371 -+#: ../system-config-printer.py:6319 - #, python-format - msgid "You will need to install the '%s' package in order to use this driver." - msgstr "Trebuie să instalaţi pachetul '%s' pentru a putea folosi acest driver." - - #. This error came from trying to open the PPD file. --#: ../system-config-printer.py:6378 -+#: ../system-config-printer.py:6326 - msgid "PPD error" - msgstr "Eroare PPD" - --#: ../system-config-printer.py:6380 -+#: ../system-config-printer.py:6328 - msgid "Failed to read PPD file. Possible reason follows:" - msgstr "Nu am putut citi fişierul PPD. Urmează motivul posibil:" - - #. Failed to get PPD downloaded from OpenPrinting XXX --#: ../system-config-printer.py:6397 -+#: ../system-config-printer.py:6345 - msgid "Downloadable drivers" - msgstr "" - --#: ../system-config-printer.py:6398 -+#: ../system-config-printer.py:6346 - msgid "Failed to download PPD." - msgstr "" - --#: ../system-config-printer.py:6405 -+#: ../system-config-printer.py:6353 - #, fuzzy - msgid "fetching PPD" - msgstr "Schimbă PPD" - --#: ../system-config-printer.py:6434 ../system-config-printer.py:6472 -+#: ../system-config-printer.py:6382 ../system-config-printer.py:6420 - #, fuzzy - msgid "No Installable Options" - msgstr "Opţiuni instalare" - --#: ../system-config-printer.py:6520 -+#: ../system-config-printer.py:6468 - #, fuzzy, python-format - msgid "adding printer %s" - msgstr "Configurează imprimante" - --#: ../system-config-printer.py:6669 -+#: ../system-config-printer.py:6617 - msgid "Would you like to print a test page?" - msgstr "" - --#: ../system-config-printer.py:6722 -+#: ../system-config-printer.py:6670 - #, fuzzy - msgid "Install driver" - msgstr "Driver lipsă" - --#: ../system-config-printer.py:6723 ../troubleshoot/CheckPPDSanity.py:131 -+#: ../system-config-printer.py:6671 ../troubleshoot/CheckPPDSanity.py:131 - #, fuzzy, python-format - msgid "Printer '%s' requires the %s package but it is not currently installed." - msgstr "" - "Imprimanta '%s' necesită pachetul %s ce nu este instalat. Vă rog instalaţi-" - "l înainte de a folosi această imprimantă." - --#: ../system-config-printer.py:6739 -+#: ../system-config-printer.py:6687 - msgid "Missing driver" - msgstr "Driver lipsă" - --#: ../system-config-printer.py:6740 -+#: ../system-config-printer.py:6688 - #, python-format - msgid "" - "Printer '%s' requires the '%s' program but it is not currently installed. " -@@ -1701,133 +1702,128 @@ msgstr "Introduceţi URI dispozitiv" - - #: ../glade/NewPrinterWindow.glade.h:5 - #, fuzzy --msgid "HP Printer (HPLIP) via network" --msgstr "Nume imprimantă" -- --#: ../glade/NewPrinterWindow.glade.h:6 --#, fuzzy - msgid "IPP Printer" - msgstr "Nume imprimantă" - --#: ../glade/NewPrinterWindow.glade.h:7 -+#: ../glade/NewPrinterWindow.glade.h:6 - #, fuzzy - msgid "License Terms" - msgstr "Nume imprimantă" - --#: ../glade/NewPrinterWindow.glade.h:8 -+#: ../glade/NewPrinterWindow.glade.h:7 - msgid "Location of the LPD network printer" - msgstr "Locaţia imprimantei LPD" - --#: ../glade/NewPrinterWindow.glade.h:9 -+#: ../glade/NewPrinterWindow.glade.h:8 - msgid "Location of the network printer" - msgstr "Locaţia imprimantei din reţea" - --#: ../glade/NewPrinterWindow.glade.h:10 -+#: ../glade/NewPrinterWindow.glade.h:9 - msgid "Location (optional)" - msgstr "Locaţie (opţional)" - --#: ../glade/NewPrinterWindow.glade.h:11 -+#: ../glade/NewPrinterWindow.glade.h:10 - #, fuzzy - msgid "Network Printer" - msgstr "Imprimantă nouă " - --#: ../glade/NewPrinterWindow.glade.h:12 -+#: ../glade/NewPrinterWindow.glade.h:11 - #, fuzzy - msgid "Note" - msgstr "Stare" - --#: ../glade/NewPrinterWindow.glade.h:13 -+#: ../glade/NewPrinterWindow.glade.h:12 - #, fuzzy - msgid "Output Quality" - msgstr "Stare" - --#: ../glade/NewPrinterWindow.glade.h:14 -+#: ../glade/NewPrinterWindow.glade.h:13 - msgid "Printer Name" - msgstr "Nume imprimantă" - --#: ../glade/NewPrinterWindow.glade.h:15 -+#: ../glade/NewPrinterWindow.glade.h:14 - #, fuzzy - msgid "SMB Printer" - msgstr "Nume imprimantă" - --#: ../glade/NewPrinterWindow.glade.h:16 -+#: ../glade/NewPrinterWindow.glade.h:15 - #, fuzzy - msgid "Select Driver" - msgstr "Imprimantă implicită" - --#: ../glade/NewPrinterWindow.glade.h:17 -+#: ../glade/NewPrinterWindow.glade.h:16 - msgid "Settings of the serial port" - msgstr "Setări ale portului serial" - --#: ../glade/NewPrinterWindow.glade.h:18 -+#: ../glade/NewPrinterWindow.glade.h:17 - msgid "smb://[workgroup/]server[:port]/printer" - msgstr "smb://[grup de lucru/]server[:port]/imprimantă" - --#: ../glade/NewPrinterWindow.glade.h:19 -+#: ../glade/NewPrinterWindow.glade.h:18 - #, fuzzy - msgid "Choose Class Members" - msgstr "" - "Este necesară parola\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:20 -+#: ../glade/NewPrinterWindow.glade.h:19 - #, fuzzy - msgid "Choose Driver" - msgstr "" - "Este necesară parola\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:21 -+#: ../glade/NewPrinterWindow.glade.h:20 - #, fuzzy - msgid "Describe Printer" - msgstr "" - "Este necesară parola\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:22 -+#: ../glade/NewPrinterWindow.glade.h:21 - #, fuzzy - msgid "Existing Settings" - msgstr "" - "Este necesară parola\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:23 -+#: ../glade/NewPrinterWindow.glade.h:22 - #, fuzzy - msgid "Installable Options" - msgstr "" - "Este necesară parola\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:24 -+#: ../glade/NewPrinterWindow.glade.h:23 - #, fuzzy - msgid "Select Device" - msgstr "" - "Este necesară parola\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:25 -+#: ../glade/NewPrinterWindow.glade.h:24 - msgid "Baud Rate" - msgstr "Rată Baud" - --#: ../glade/NewPrinterWindow.glade.h:26 -+#: ../glade/NewPrinterWindow.glade.h:25 - msgid "Browse..." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:27 -+#: ../glade/NewPrinterWindow.glade.h:26 - #, fuzzy - msgid "Comments..." - msgstr "Comentariu" - --#: ../glade/NewPrinterWindow.glade.h:28 -+#: ../glade/NewPrinterWindow.glade.h:27 - #, fuzzy - msgid "Connection" - msgstr "Conectare" - --#: ../glade/NewPrinterWindow.glade.h:29 -+#: ../glade/NewPrinterWindow.glade.h:28 - msgid "Data Bits" - msgstr "Bits Date" - --#: ../glade/NewPrinterWindow.glade.h:30 -+#: ../glade/NewPrinterWindow.glade.h:29 - msgid "" - "Default\n" - "1200\n" -@@ -1849,7 +1845,7 @@ msgstr "" - "57600\n" - "115200" - --#: ../glade/NewPrinterWindow.glade.h:39 -+#: ../glade/NewPrinterWindow.glade.h:38 - msgid "" - "Default\n" - "8\n" -@@ -1859,7 +1855,7 @@ msgstr "" - "8\n" - "7" - --#: ../glade/NewPrinterWindow.glade.h:42 -+#: ../glade/NewPrinterWindow.glade.h:41 - msgid "" - "Default\n" - "None\n" -@@ -1871,7 +1867,7 @@ msgstr "" - "Impar\n" - "Par" - --#: ../glade/NewPrinterWindow.glade.h:46 -+#: ../glade/NewPrinterWindow.glade.h:45 - msgid "" - "Default\n" - "None\n" -@@ -1885,121 +1881,121 @@ msgstr "" - "RTS/CTS (Hardware)\n" - "DTR/DSR (Hardware)" - --#: ../glade/NewPrinterWindow.glade.h:51 -+#: ../glade/NewPrinterWindow.glade.h:50 - #: ../glade/PrinterPropertiesDialog.glade.h:35 - msgid "Description:" - msgstr "Descriere" - --#: ../glade/NewPrinterWindow.glade.h:52 ../troubleshoot/DeviceListed.py:40 -+#: ../glade/NewPrinterWindow.glade.h:51 ../troubleshoot/DeviceListed.py:40 - msgid "Device URI" - msgstr "URI dispozitiv" - --#: ../glade/NewPrinterWindow.glade.h:53 -+#: ../glade/NewPrinterWindow.glade.h:52 - msgid "Device description." - msgstr "Descriere dispozitiv." - --#: ../glade/NewPrinterWindow.glade.h:54 -+#: ../glade/NewPrinterWindow.glade.h:53 - msgid "DirectJet" - msgstr "DirectJet" - --#: ../glade/NewPrinterWindow.glade.h:56 -+#: ../glade/NewPrinterWindow.glade.h:55 - #, fuzzy - msgid "Driver details" - msgstr "Drivere" - --#: ../glade/NewPrinterWindow.glade.h:57 -+#: ../glade/NewPrinterWindow.glade.h:56 - msgid "Empty" - msgstr "Gol" - --#: ../glade/NewPrinterWindow.glade.h:58 -+#: ../glade/NewPrinterWindow.glade.h:57 - msgid "Find _Queue..." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:59 -+#: ../glade/NewPrinterWindow.glade.h:58 - msgid "Flow Control" - msgstr "Control flux" - --#: ../glade/NewPrinterWindow.glade.h:60 -+#: ../glade/NewPrinterWindow.glade.h:59 - msgid "" - "For the printer you have selected there are drivers available for download." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:61 -+#: ../glade/NewPrinterWindow.glade.h:60 - msgid "Free software" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:62 -+#: ../glade/NewPrinterWindow.glade.h:61 - msgid "Graphics:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:63 -+#: ../glade/NewPrinterWindow.glade.h:62 - #, fuzzy - msgid "Host:" - msgstr "Nume gazdă" - --#: ../glade/NewPrinterWindow.glade.h:64 -+#: ../glade/NewPrinterWindow.glade.h:63 - msgid "Human-readable description such as \"HP LaserJet with Duplexer\"" - msgstr "" - "Descriere ce poate fi înţeleasă de oameni ca \"HP LaserJet cu Duplexer\"" - --#: ../glade/NewPrinterWindow.glade.h:65 -+#: ../glade/NewPrinterWindow.glade.h:64 - msgid "Human-readable location such as \"Lab 1\"" - msgstr "Locaţie ce poate fi înţeleasă de oameni ca \"Lab 1\"" - --#: ../glade/NewPrinterWindow.glade.h:67 -+#: ../glade/NewPrinterWindow.glade.h:66 - msgid "LPD" - msgstr "LPD" - --#: ../glade/NewPrinterWindow.glade.h:68 -+#: ../glade/NewPrinterWindow.glade.h:67 - msgid "License:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:69 -+#: ../glade/NewPrinterWindow.glade.h:68 - #, fuzzy - msgid "Line art:" - msgstr "Stare imprimantă:" - --#: ../glade/NewPrinterWindow.glade.h:70 -+#: ../glade/NewPrinterWindow.glade.h:69 - #, fuzzy - msgid "Local Driver" - msgstr "Imprimante locale" - --#: ../glade/NewPrinterWindow.glade.h:71 -+#: ../glade/NewPrinterWindow.glade.h:70 - #, fuzzy - msgid "Make and model:" - msgstr "Producător şi model:" - --#: ../glade/NewPrinterWindow.glade.h:72 -+#: ../glade/NewPrinterWindow.glade.h:71 - msgid "Manufacturer" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:73 -+#: ../glade/NewPrinterWindow.glade.h:72 - #, fuzzy - msgid "Network" - msgstr "Imprimantă nouă " - --#: ../glade/NewPrinterWindow.glade.h:75 -+#: ../glade/NewPrinterWindow.glade.h:74 - msgid "No, I do not accept this license" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:76 -+#: ../glade/NewPrinterWindow.glade.h:75 - msgid "Parity" - msgstr "Paritate" - --#: ../glade/NewPrinterWindow.glade.h:78 -+#: ../glade/NewPrinterWindow.glade.h:77 - msgid "Patented algorithms" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:79 -+#: ../glade/NewPrinterWindow.glade.h:78 - msgid "Photo:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:80 -+#: ../glade/NewPrinterWindow.glade.h:79 - #, fuzzy - msgid "Port number:" - msgstr "Număr port" - --#: ../glade/NewPrinterWindow.glade.h:81 -+#: ../glade/NewPrinterWindow.glade.h:80 - #, fuzzy - msgid "" - "PostScript Printer Description (PPD) files can often be found on the driver " -@@ -2010,82 +2006,82 @@ msgstr "" - "discul cu drivere ce vine odată cu imprimanta. Pentru imprimantele " - "PostScript adesea fac parte din driver-ul Windows®." - --#: ../glade/NewPrinterWindow.glade.h:82 -+#: ../glade/NewPrinterWindow.glade.h:81 - #, fuzzy - msgid "Printer model:" - msgstr "Nume imprimantă" - --#: ../glade/NewPrinterWindow.glade.h:83 -+#: ../glade/NewPrinterWindow.glade.h:82 - msgid "Probe" - msgstr "Probează" - --#: ../glade/NewPrinterWindow.glade.h:84 -+#: ../glade/NewPrinterWindow.glade.h:83 - #, fuzzy - msgid "Prompt user if authentication is required" - msgstr "Autentificare" - --#: ../glade/NewPrinterWindow.glade.h:85 -+#: ../glade/NewPrinterWindow.glade.h:84 - #, fuzzy - msgid "Provide PPD file" - msgstr "Furnizează fişier PPD" - --#: ../glade/NewPrinterWindow.glade.h:86 -+#: ../glade/NewPrinterWindow.glade.h:85 - msgid "Queue:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:87 -+#: ../glade/NewPrinterWindow.glade.h:86 - msgid "SCSI" - msgstr "SCSI" - --#: ../glade/NewPrinterWindow.glade.h:88 -+#: ../glade/NewPrinterWindow.glade.h:87 - msgid "SMB" - msgstr "SMB" - --#: ../glade/NewPrinterWindow.glade.h:89 -+#: ../glade/NewPrinterWindow.glade.h:88 - msgid "Search for a printer driver to download" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:90 -+#: ../glade/NewPrinterWindow.glade.h:89 - #, fuzzy - msgid "Searching..." - msgstr "Redimensionează:" - --#: ../glade/NewPrinterWindow.glade.h:91 -+#: ../glade/NewPrinterWindow.glade.h:90 - msgid "Select A File" - msgstr "Selectează un fişier" - --#: ../glade/NewPrinterWindow.glade.h:92 -+#: ../glade/NewPrinterWindow.glade.h:91 - #, fuzzy - msgid "Select printer from database" - msgstr "Selectează imprimantă din baza de date" - --#: ../glade/NewPrinterWindow.glade.h:93 -+#: ../glade/NewPrinterWindow.glade.h:92 - msgid "Serial" - msgstr "Serie" - --#: ../glade/NewPrinterWindow.glade.h:94 -+#: ../glade/NewPrinterWindow.glade.h:93 - #, fuzzy - msgid "Set authentication details now" - msgstr "Autentificare" - --#: ../glade/NewPrinterWindow.glade.h:95 -+#: ../glade/NewPrinterWindow.glade.h:94 - msgid "Short name for this printer such as \"laserjet\"" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:96 -+#: ../glade/NewPrinterWindow.glade.h:95 - msgid "Supplier:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:97 -+#: ../glade/NewPrinterWindow.glade.h:96 - msgid "Support:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:98 -+#: ../glade/NewPrinterWindow.glade.h:97 - #, fuzzy - msgid "Text:" - msgstr "Reset" - --#: ../glade/NewPrinterWindow.glade.h:99 -+#: ../glade/NewPrinterWindow.glade.h:98 - msgid "" - "The foomatic printer database contains various manufacturer provided " - "PostScript Printer Description (PPD) files and also can generate PPD files " -@@ -2099,20 +2095,20 @@ msgstr "" - "în general fişierele PPD furnizate de producători dau un acces mai bun la " - "trăsăturile specifice ale imprimantei." - --#: ../glade/NewPrinterWindow.glade.h:100 -+#: ../glade/NewPrinterWindow.glade.h:99 - msgid "" - "These drivers do not come from your operating system supplier and will not " - "be covered by their commercial support. See the support and license terms " - "of the driver's supplier." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:101 -+#: ../glade/NewPrinterWindow.glade.h:100 - msgid "" - "This driver supports additional hardware that may be installed in the " - "printer." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:102 -+#: ../glade/NewPrinterWindow.glade.h:101 - msgid "" - "This is done by assuming that options with the same name do have the same " - "meaning. Settings of options that are not present in the new PPD will be " -@@ -2122,7 +2118,7 @@ msgstr "" - "semnificaţie. Setările opţiunilor ce nu sunt prezente în noul PPD vor fi " - "pierdute şi numai opţiunile prezente în noul PPD vor fi setate ca implicite." - --#: ../glade/NewPrinterWindow.glade.h:103 -+#: ../glade/NewPrinterWindow.glade.h:102 - msgid "" - "This way all current option settings will be lost. The default settings of " - "the new PPD will be used. " -@@ -2130,43 +2126,43 @@ msgstr "" - "În acest mod toate setările opţiunilor curente vor fi pierdute. Vor fi " - "folosite setările implicite al noului PPD." - --#: ../glade/NewPrinterWindow.glade.h:104 -+#: ../glade/NewPrinterWindow.glade.h:103 - msgid "Try to copy the option settings over from the old PPD. " - msgstr "Încearcă să copiezi setările opţiunilor din vechiul PPD." - --#: ../glade/NewPrinterWindow.glade.h:105 -+#: ../glade/NewPrinterWindow.glade.h:104 - msgid "URI:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:107 -+#: ../glade/NewPrinterWindow.glade.h:106 - msgid "Use the new PPD (Postscript Printer Description) as is." - msgstr "Foloseşte noul PPD (Descriere Imprimantă Postscript) ca atare." - --#: ../glade/NewPrinterWindow.glade.h:109 -+#: ../glade/NewPrinterWindow.glade.h:108 - msgid "" - "With this choice no driver download will be performed. In the next steps a " - "locally installed driver will be selected." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:110 -+#: ../glade/NewPrinterWindow.glade.h:109 - #, fuzzy - msgid "Yes, I accept this license" - msgstr "Accept lucrări" - --#: ../glade/NewPrinterWindow.glade.h:111 -+#: ../glade/NewPrinterWindow.glade.h:110 - msgid "_Search" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:112 -+#: ../glade/NewPrinterWindow.glade.h:111 - msgid "_Verify..." - msgstr "_Verifică..." - --#: ../glade/NewPrinterWindow.glade.h:113 -+#: ../glade/NewPrinterWindow.glade.h:112 - #: ../glade/PrinterPropertiesDialog.glade.h:128 - msgid "move left" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:114 -+#: ../glade/NewPrinterWindow.glade.h:113 - #: ../glade/PrinterPropertiesDialog.glade.h:129 - #, fuzzy - msgid "move right" -@@ -3111,7 +3107,7 @@ msgstr "" - msgid "Remember to load paper of type '%s' into the printer first." - msgstr "" - --#: ../troubleshoot/PrintTestPage.py:399 -+#: ../troubleshoot/PrintTestPage.py:416 - msgid "Error submitting test page" - msgstr "" - -@@ -3311,6 +3307,10 @@ msgid "Select default printer" - msgstr "Setează ca imprimantă implicită" - - #, fuzzy -+#~ msgid "HP Printer (HPLIP) via network" -+#~ msgstr "Nume imprimantă" -+ -+#, fuzzy - #~ msgid "Not Found" - #~ msgstr "Nu a fost găsit" - -diff -up system-config-printer-1.1.5/po/ru.po.git-1.1.x system-config-printer-1.1.5/po/ru.po ---- system-config-printer-1.1.5/po/ru.po.git-1.1.x 2009-03-03 22:21:46.000000000 +0000 -+++ system-config-printer-1.1.5/po/ru.po 2009-03-10 17:43:31.000000000 +0000 -@@ -10,7 +10,7 @@ msgid "" - msgstr "" - "Project-Id-Version: ru\n" - "Report-Msgid-Bugs-To: https://bugzilla.redhat.com/bugzilla\n" --"POT-Creation-Date: 2009-03-02 23:22+0000\n" -+"POT-Creation-Date: 2009-03-10 16:51+0000\n" - "PO-Revision-Date: 2008-09-16 01:23+0000\n" - "Last-Translator: Артём Попов \n" - "Language-Team: \n" -@@ -57,11 +57,11 @@ msgstr "" - msgid "Enter IP address" - msgstr "Введите IP-адрес" - --#: ../authconn.py:35 ../glade/NewPrinterWindow.glade.h:108 -+#: ../authconn.py:35 ../glade/NewPrinterWindow.glade.h:107 - msgid "Username:" - msgstr "Имя пользователя:" - --#: ../authconn.py:36 ../glade/NewPrinterWindow.glade.h:77 -+#: ../authconn.py:36 ../glade/NewPrinterWindow.glade.h:76 - msgid "Password:" - msgstr "Пароль:" - -@@ -69,7 +69,7 @@ msgstr "Пароль:" - msgid "Domain:" - msgstr "Домен:" - --#: ../authconn.py:46 -+#: ../authconn.py:46 ../authconn.py:409 - msgid "Authentication" - msgstr "Аутентификация" - -@@ -77,45 +77,54 @@ msgstr "Аутентификация" - msgid "Remember password" - msgstr "" - --#: ../authconn.py:211 ../authconn.py:232 -+#: ../authconn.py:208 -+#, python-format -+msgid "Unauthorized request (%s)" -+msgstr "" -+ -+#: ../authconn.py:209 -+msgid "You are not authorized to carry out therequested action." -+msgstr "" -+ -+#: ../authconn.py:212 ../authconn.py:233 - #, fuzzy - msgid "Operation canceled" - msgstr "Политика работы:" - --#: ../authconn.py:253 -+#: ../authconn.py:250 - #, fuzzy, python-format - msgid "CUPS server error (%s)" - msgstr "Ошибка сервера CUPS" - --#: ../authconn.py:255 ../errordialogs.py:57 --#: ../troubleshoot/PrintTestPage.py:400 -+#: ../authconn.py:252 ../errordialogs.py:56 ../errordialogs.py:70 -+msgid "CUPS server error" -+msgstr "Ошибка сервера CUPS" -+ -+#: ../authconn.py:261 ../errordialogs.py:57 -+#: ../troubleshoot/PrintTestPage.py:417 - #, python-format - msgid "There was an error during the CUPS operation: '%s'." - msgstr "Обнаружена ошибка во время операции CUPS: «%s»." - --#: ../authconn.py:258 -+#: ../authconn.py:264 - #, fuzzy - msgid "Retry" - msgstr "мои задания" - --#: ../authconn.py:379 ../authconn.py:381 ../errordialogs.py:65 ../pysmb.py:75 -+#: ../authconn.py:385 ../authconn.py:387 ../errordialogs.py:65 ../pysmb.py:75 - #: ../pysmb.py:77 - msgid "Not authorized" - msgstr "Не авторизован" - --#: ../authconn.py:382 ../pysmb.py:78 -+#: ../authconn.py:388 ../pysmb.py:78 - msgid "The password may be incorrect." - msgstr "Возможно пароль ошибочен." - --#: ../authconn.py:400 -+#: ../authconn.py:407 - #, fuzzy, python-format - msgid "Authentication (%s)" - msgstr "Аутентификация" - --#: ../errordialogs.py:56 ../errordialogs.py:70 --msgid "CUPS server error" --msgstr "Ошибка сервера CUPS" -- - #: ../errordialogs.py:66 - msgid "" - "The password may be incorrect, or the server may be configured to deny " -@@ -144,7 +153,7 @@ msgstr "Требуется обновл - msgid "Server error" - msgstr "Ошибка сервера" - --#: ../errordialogs.py:82 ../system-config-printer.py:1219 -+#: ../errordialogs.py:82 ../system-config-printer.py:1223 - msgid "Not connected" - msgstr "Не подключен" - -@@ -166,7 +175,7 @@ msgstr "" - msgid "_New Group from Selection" - msgstr "" - --#: ../GroupsPane.py:98 ../system-config-printer.py:393 -+#: ../GroupsPane.py:98 ../system-config-printer.py:397 - msgid "_Rename" - msgstr "Переи_меновать" - -@@ -233,7 +242,7 @@ msgid "Document" - msgstr "Документ" - - #: ../jobviewer.py:212 ../my-default-printer.py:153 --#: ../system-config-printer.py:366 ../system-config-printer.py:1367 -+#: ../system-config-printer.py:370 ../system-config-printer.py:1371 - #: ../troubleshoot/PrintTestPage.py:84 - msgid "Printer" - msgstr "Принтер" -@@ -270,8 +279,8 @@ msgstr "Состояние печати - - #: ../jobviewer.py:386 ../jobviewer.py:451 ../jobviewer.py:452 - #: ../jobviewer.py:492 ../jobviewer.py:600 ../jobviewer.py:727 --#: ../jobviewer.py:1196 ../jobviewer.py:1222 ../system-config-printer.py:2546 --#: ../glade/NewPrinterWindow.glade.h:106 -+#: ../jobviewer.py:1196 ../jobviewer.py:1222 ../system-config-printer.py:2556 -+#: ../glade/NewPrinterWindow.glade.h:105 - #: ../troubleshoot/ChooseNetworkPrinter.py:101 - #: ../troubleshoot/ChooseNetworkPrinter.py:102 - #: ../troubleshoot/ChooseNetworkPrinter.py:105 -@@ -364,12 +373,12 @@ msgstr "Удерживать до:" - msgid "Pending" - msgstr "Запланировано" - --#: ../jobviewer.py:591 ../system-config-printer.py:186 -+#: ../jobviewer.py:591 ../system-config-printer.py:190 - #: ../troubleshoot/PrintTestPage.py:43 - msgid "Processing" - msgstr "Обработка" - --#: ../jobviewer.py:592 ../system-config-printer.py:188 -+#: ../jobviewer.py:592 ../system-config-printer.py:192 - #: ../troubleshoot/PrintTestPage.py:44 - msgid "Stopped" - msgstr "Остановлено" -@@ -482,8 +491,8 @@ msgstr "Использовать _сис - msgid "_Set Default" - msgstr "_Использовать по умолчанию" - --#: ../my-default-printer.py:158 ../system-config-printer.py:423 --#: ../system-config-printer.py:3660 ../troubleshoot/ChooseNetworkPrinter.py:37 -+#: ../my-default-printer.py:158 ../system-config-printer.py:427 -+#: ../system-config-printer.py:3675 ../troubleshoot/ChooseNetworkPrinter.py:37 - #: ../troubleshoot/ChoosePrinter.py:38 - msgid "Location" - msgstr "Местонахождение" -@@ -517,7 +526,7 @@ msgstr "Принтер по умолча - msgid "Authenticated" - msgstr "Аутентификация" - --#: ../ppdippstr.py:50 ../system-config-printer.py:6259 -+#: ../ppdippstr.py:50 ../system-config-printer.py:6207 - msgid "None" - msgstr "Нет" - -@@ -737,128 +746,128 @@ msgstr "" - msgid "1200 dpi, photo, black + color cartridge, photo paper" - msgstr "" - --#: ../system-config-printer.py:127 -+#: ../system-config-printer.py:131 - msgid "To do this, select System->Administration->Firewall from the main menu." - msgstr "" - "Для того, чтобы изменить параметры межсетевого экрана, выберите Система-" - ">Администрирование->Firewall в главном меню." - --#: ../system-config-printer.py:185 -+#: ../system-config-printer.py:189 - msgid "Idle" - msgstr "Простаивает" - --#: ../system-config-printer.py:187 -+#: ../system-config-printer.py:191 - msgid "Busy" - msgstr "Занят" - --#: ../system-config-printer.py:372 ../system-config-printer.py:1373 -+#: ../system-config-printer.py:376 ../system-config-printer.py:1377 - msgid "Class" - msgstr "Класс" - --#: ../system-config-printer.py:399 -+#: ../system-config-printer.py:403 - msgid "Set As De_fault" - msgstr "Использовать по _умолчанию" - --#: ../system-config-printer.py:403 -+#: ../system-config-printer.py:407 - #, fuzzy - msgid "_Create class" - msgstr "_Создать класс" - --#: ../system-config-printer.py:405 -+#: ../system-config-printer.py:409 - msgid "View Print _Queue" - msgstr "Просмотр _очереди" - --#: ../system-config-printer.py:407 -+#: ../system-config-printer.py:411 - msgid "_Add to Group" - msgstr "" - --#: ../system-config-printer.py:409 -+#: ../system-config-printer.py:413 - msgid "Save Results as _Group" - msgstr "" - --#: ../system-config-printer.py:411 -+#: ../system-config-printer.py:415 - msgid "Save Filter as _Search Group" - msgstr "" - --#: ../system-config-printer.py:415 -+#: ../system-config-printer.py:419 - msgid "E_nabled" - msgstr "_Разрешён" - --#: ../system-config-printer.py:417 -+#: ../system-config-printer.py:421 - msgid "_Shared" - msgstr "_Общий доступ" - --#: ../system-config-printer.py:421 ../troubleshoot/ChooseNetworkPrinter.py:35 -+#: ../system-config-printer.py:425 ../troubleshoot/ChooseNetworkPrinter.py:35 - #: ../troubleshoot/ChoosePrinter.py:36 ../troubleshoot/DeviceListed.py:36 - msgid "Name" - msgstr "Имя" - --#: ../system-config-printer.py:422 -+#: ../system-config-printer.py:426 - #, fuzzy - msgid "Description" - msgstr "Описание:" - --#: ../system-config-printer.py:424 -+#: ../system-config-printer.py:428 - msgid "Manufacturer / Model" - msgstr "" - - #. Printer state reasons list --#: ../system-config-printer.py:499 -+#: ../system-config-printer.py:503 - msgid "Message" - msgstr "Сообщение" - --#: ../system-config-printer.py:534 -+#: ../system-config-printer.py:538 - msgid "Problems?" - msgstr "Проблемы?" - --#: ../system-config-printer.py:637 ../system-config-printer.py:639 -+#: ../system-config-printer.py:641 ../system-config-printer.py:643 - msgid "Members of this class" - msgstr "Члены этого класса" - --#: ../system-config-printer.py:638 ../system-config-printer.py:640 -+#: ../system-config-printer.py:642 ../system-config-printer.py:644 - msgid "Others" - msgstr "Другие" - --#: ../system-config-printer.py:641 -+#: ../system-config-printer.py:645 - msgid "Devices" - msgstr "Устройства" - --#: ../system-config-printer.py:642 -+#: ../system-config-printer.py:646 - #, fuzzy - msgid "Connections" - msgstr "Подключение" - --#: ../system-config-printer.py:643 -+#: ../system-config-printer.py:647 - msgid "Makes" - msgstr "Производители" - --#: ../system-config-printer.py:644 -+#: ../system-config-printer.py:648 - msgid "Models" - msgstr "Модели" - --#: ../system-config-printer.py:645 -+#: ../system-config-printer.py:649 - msgid "Drivers" - msgstr "Драйверы" - --#: ../system-config-printer.py:646 ../glade/NewPrinterWindow.glade.h:55 -+#: ../system-config-printer.py:650 ../glade/NewPrinterWindow.glade.h:54 - msgid "Downloadable Drivers" - msgstr "Доступные для загрузки драйвера" - --#: ../system-config-printer.py:647 -+#: ../system-config-printer.py:651 - msgid "Users" - msgstr "Пользователи" - --#: ../system-config-printer.py:682 -+#: ../system-config-printer.py:686 - msgid "Automatic rotation" - msgstr "Автоматически" - --#: ../system-config-printer.py:989 -+#: ../system-config-printer.py:993 - #, fuzzy, python-format - msgid "Printer Properties - '%s' on %s" - msgstr "Свойства принтера «%s» на %s" - - #. The Conflict button was pressed. --#: ../system-config-printer.py:996 -+#: ../system-config-printer.py:1000 - msgid "" - "There are conflicting options.\n" - "Changes can only be applied after\n" -@@ -868,78 +877,78 @@ msgstr "" - "Изменения могут быть сохранены\n" - "только после разрешения конфликта." - --#: ../system-config-printer.py:1214 -+#: ../system-config-printer.py:1218 - #, python-format - msgid "Printer configuration - %s" - msgstr "Настройка принтера — %s" - --#: ../system-config-printer.py:1217 -+#: ../system-config-printer.py:1221 - #, python-format - msgid "Connected to %s" - msgstr "Подключен к %s" - - #. Update our copy of the printer's settings. --#: ../system-config-printer.py:1257 ../system-config-printer.py:2042 -+#: ../system-config-printer.py:1261 ../system-config-printer.py:2046 - msgid "obtaining queue details" - msgstr "" - --#: ../system-config-printer.py:1295 -+#: ../system-config-printer.py:1299 - msgid "Remove from Group" - msgstr "" - --#: ../system-config-printer.py:1361 -+#: ../system-config-printer.py:1365 - msgid "Network printer (discovered)" - msgstr "Сетевой принтер (обнаруженный)" - --#: ../system-config-printer.py:1364 -+#: ../system-config-printer.py:1368 - msgid "Network class (discovered)" - msgstr "Сетевой класс (обнаруженный)" - --#: ../system-config-printer.py:1370 ../system-config-printer.py:5524 --#: ../system-config-printer.py:5594 ../system-config-printer.py:5596 -+#: ../system-config-printer.py:1374 ../system-config-printer.py:5519 -+#: ../system-config-printer.py:5589 ../system-config-printer.py:5591 - msgid "Fax" - msgstr "Факс" - --#: ../system-config-printer.py:1376 ../system-config-printer.py:1382 -+#: ../system-config-printer.py:1380 ../system-config-printer.py:1386 - #: ../troubleshoot/LocalOrRemote.py:30 - msgid "Network printer" - msgstr "Сетевой принтер" - --#: ../system-config-printer.py:1379 -+#: ../system-config-printer.py:1383 - msgid "Network print share" - msgstr "Ресурс сетевого принтера" - --#: ../system-config-printer.py:1508 ../glade/ConnectingDialog.glade.h:2 -+#: ../system-config-printer.py:1512 ../glade/ConnectingDialog.glade.h:2 - #, no-c-format, python-format - msgid "Opening connection to %s" - msgstr "" - --#: ../system-config-printer.py:1887 -+#: ../system-config-printer.py:1891 - msgid "Installable Options" - msgstr "Устанавливаемые возможности" - --#: ../system-config-printer.py:1888 -+#: ../system-config-printer.py:1892 - #: ../glade/PrinterPropertiesDialog.glade.h:109 - msgid "Printer Options" - msgstr "Параметры принтера" - --#: ../system-config-printer.py:1924 -+#: ../system-config-printer.py:1928 - #, python-format - msgid "modifying class %s" - msgstr "" - --#: ../system-config-printer.py:1926 ../system-config-printer.py:3019 --#: ../system-config-printer.py:3044 ../system-config-printer.py:6547 --#: ../system-config-printer.py:6559 ../system-config-printer.py:6581 -+#: ../system-config-printer.py:1930 ../system-config-printer.py:3037 -+#: ../system-config-printer.py:3062 ../system-config-printer.py:6495 -+#: ../system-config-printer.py:6507 ../system-config-printer.py:6529 - #, fuzzy, python-format - msgid "modifying printer %s" - msgstr "Добавление принтера" - --#: ../system-config-printer.py:1941 -+#: ../system-config-printer.py:1945 - msgid "This will delete this class!" - msgstr "Это приведет к удалению класса!" - --#: ../system-config-printer.py:1942 -+#: ../system-config-printer.py:1946 - msgid "Proceed anyway?" - msgstr "Продолжить?" - -@@ -947,47 +956,47 @@ msgstr "Продолжить?" - #. but we have never fetched the server settings to see whether - #. the server is publishing shared printers. Fetch the settings - #. now so that we can update the "not published" label if necessary. --#: ../system-config-printer.py:2030 ../system-config-printer.py:3203 -+#: ../system-config-printer.py:2034 ../system-config-printer.py:3221 - #, fuzzy - msgid "fetching server settings" - msgstr "Изменить параметры сервера" - --#: ../system-config-printer.py:2100 -+#: ../system-config-printer.py:2104 - msgid "Set Default Printer" - msgstr "Назначить по умолчанию" - --#: ../system-config-printer.py:2102 -+#: ../system-config-printer.py:2106 - msgid "Do you want to set this as the system-wide default printer?" - msgstr "Вы хотите назначить этот принтер общесистемным принтером по умолчанию?" - --#: ../system-config-printer.py:2104 -+#: ../system-config-printer.py:2108 - msgid "Set as the _system-wide default printer" - msgstr "Назначить _общесистемным по умолчанию" - --#: ../system-config-printer.py:2106 -+#: ../system-config-printer.py:2110 - msgid "_Clear my personal default setting" - msgstr "_Сбросить мой принтер по умолчанию" - --#: ../system-config-printer.py:2107 -+#: ../system-config-printer.py:2111 - msgid "Set as my _personal default printer" - msgstr "Выбрать принтером по умолчанию для этого _пользователя" - --#: ../system-config-printer.py:2112 -+#: ../system-config-printer.py:2116 - #, fuzzy - msgid "setting default printer" - msgstr "Выбрать принтер по умолчанию" - --#: ../system-config-printer.py:2169 -+#: ../system-config-printer.py:2173 - #, fuzzy - msgid "printing test page" - msgstr "Пробная страница" - --#: ../system-config-printer.py:2182 ../system-config-printer.py:2217 --#: ../system-config-printer.py:5418 -+#: ../system-config-printer.py:2186 ../system-config-printer.py:2221 -+#: ../system-config-printer.py:5413 - msgid "Not possible" - msgstr "Операция невозможна" - --#: ../system-config-printer.py:2183 ../system-config-printer.py:2218 -+#: ../system-config-printer.py:2187 ../system-config-printer.py:2222 - msgid "" - "The remote server did not accept the print job, most likely because the " - "printer is not shared." -@@ -995,20 +1004,20 @@ msgstr "" - "Удаленный сервер не принял задание печати, скорее всего потому, что принтер " - "не настроен для общего доступа." - --#: ../system-config-printer.py:2195 ../system-config-printer.py:2210 -+#: ../system-config-printer.py:2199 ../system-config-printer.py:2214 - msgid "Submitted" - msgstr "Отправлено" - --#: ../system-config-printer.py:2196 -+#: ../system-config-printer.py:2200 - #, python-format - msgid "Test page submitted as job %d" - msgstr "Тестовая страница поставлена в очередь как задание %d" - --#: ../system-config-printer.py:2203 -+#: ../system-config-printer.py:2207 - msgid "sending maintenance command" - msgstr "" - --#: ../system-config-printer.py:2211 -+#: ../system-config-printer.py:2215 - #, python-format - msgid "Maintenance command submitted as job %d" - msgstr "Команда обслуживания поставлена в очередь как задание %d" -@@ -1016,67 +1025,67 @@ msgstr "Команда обслужив - #. The underlying cupsGetPPD2() function returned NULL without - #. setting an IPP error, so it'll be something like a failed - #. connection. --#: ../system-config-printer.py:2285 ../system-config-printer.py:2381 -+#: ../system-config-printer.py:2289 ../system-config-printer.py:2385 - msgid "Error" - msgstr "Ошибка" - --#: ../system-config-printer.py:2286 -+#: ../system-config-printer.py:2290 - msgid "There was a problem connecting to the CUPS server." - msgstr "Ошибка подключения к серверу CUPS." - --#: ../system-config-printer.py:2382 -+#: ../system-config-printer.py:2386 - #, python-format - msgid "Option '%s' has value '%s' and cannot be edited." - msgstr "Параметр «%s» имеет значение «%s» и не может быть изменён." - --#: ../system-config-printer.py:2466 -+#: ../system-config-printer.py:2476 - msgid "Marker levels are not reported for this printer." - msgstr "" - --#: ../system-config-printer.py:2763 -+#: ../system-config-printer.py:2773 - msgid "Cannot Rename" - msgstr "Переименование невозможно" - --#: ../system-config-printer.py:2764 -+#: ../system-config-printer.py:2774 - msgid "There are queued jobs." - msgstr "В очереди печати остались задания." - --#: ../system-config-printer.py:2822 -+#: ../system-config-printer.py:2840 - #, fuzzy - msgid "renaming printer" - msgstr "Добавление принтера" - - #. for classes make sure all members - #. will get added --#: ../system-config-printer.py:2907 -+#: ../system-config-printer.py:2925 - #, fuzzy - msgid "copying printer" - msgstr "Добавление принтера" - --#: ../system-config-printer.py:2971 -+#: ../system-config-printer.py:2989 - #, fuzzy, python-format - msgid "Really delete class '%s'?" - msgstr "Действительно удалить класс «%s»?" - --#: ../system-config-printer.py:2973 -+#: ../system-config-printer.py:2991 - #, fuzzy, python-format - msgid "Really delete printer '%s'?" - msgstr "Действительно удалить принтер «%s»?" - --#: ../system-config-printer.py:2975 -+#: ../system-config-printer.py:2993 - msgid "Really delete selected destinations?" - msgstr "Действительно удалить выбранные пункты назначения?" - --#: ../system-config-printer.py:2996 -+#: ../system-config-printer.py:3014 - #, fuzzy, python-format - msgid "deleting printer %s" - msgstr "Добавление принтера" - --#: ../system-config-printer.py:3070 -+#: ../system-config-printer.py:3088 - msgid "Publish Shared Printers" - msgstr "Публикация общих принтеров" - --#: ../system-config-printer.py:3071 -+#: ../system-config-printer.py:3089 - msgid "" - "Shared printers are not available to other people unless the 'Publish shared " - "printers' option is enabled in the server settings." -@@ -1084,7 +1093,7 @@ msgstr "" - "Общие принтеры не будут доступны другим пользователям, если в параметрах " - "сервера не разрешена «Публикация общих принтеров»." - --#: ../system-config-printer.py:3264 -+#: ../system-config-printer.py:3282 - #, fuzzy - msgid "modifying server settings" - msgstr "Изменить параметры сервера" -@@ -1095,11 +1104,11 @@ msgstr "Изменить парамет - #. be unblocked. Unfortunately, this is not yet possible - #. (bug #440469). However, we can display a dialog to suggest - #. that now might be a good time to review the firewall settings. --#: ../system-config-printer.py:3289 -+#: ../system-config-printer.py:3307 - msgid "Review Firewall" - msgstr "Пересмотрите параметры межсетевого экрана" - --#: ../system-config-printer.py:3290 -+#: ../system-config-printer.py:3308 - msgid "" - "You may need to adjust the firewall to allow network printing to this " - "computer." -@@ -1107,25 +1116,25 @@ msgstr "" - "Для разрешения сетевой печати на этом компьютере может потребоваться " - "изменение настроек межсетевого экрана." - --#: ../system-config-printer.py:3623 -+#: ../system-config-printer.py:3638 - msgid "Browsing not available (pysmbc not installed)" - msgstr "" - - #. SMB list columns --#: ../system-config-printer.py:3629 -+#: ../system-config-printer.py:3644 - msgid "Share" - msgstr "Ресурс" - --#: ../system-config-printer.py:3635 -+#: ../system-config-printer.py:3650 - msgid "Comment" - msgstr "Комментарий" - - #. IPP list columns --#: ../system-config-printer.py:3654 -+#: ../system-config-printer.py:3669 - msgid "Queue" - msgstr "Очередь" - --#: ../system-config-printer.py:3668 -+#: ../system-config-printer.py:3683 - msgid "" - "PostScript Printer Description files (*.ppd, *.PPD, *.ppd.gz, *.PPD.gz, *." - "PPD.GZ)" -@@ -1133,68 +1142,68 @@ msgstr "" - "Файлы описаний PostScript-принтеров (*.ppd, *.PPD, *.ppd.gz, *.PPD.gz, *.PPD." - "GZ)" - --#: ../system-config-printer.py:3677 -+#: ../system-config-printer.py:3692 - msgid "All files (*)" - msgstr "Все файлы (*)" - --#: ../system-config-printer.py:3713 ../system-config-printer.py:5970 --#: ../system-config-printer.py:6008 ../applet.py:124 -+#: ../system-config-printer.py:3728 ../system-config-printer.py:5918 -+#: ../system-config-printer.py:5956 ../applet.py:124 - msgid "Search" - msgstr "Поиск" - --#: ../system-config-printer.py:3736 ../system-config-printer.py:3760 --#: ../glade/NewPrinterWindow.glade.h:74 -+#: ../system-config-printer.py:3751 ../system-config-printer.py:3775 -+#: ../glade/NewPrinterWindow.glade.h:73 - msgid "New Printer" - msgstr "Новый принтер" - --#: ../system-config-printer.py:3747 -+#: ../system-config-printer.py:3762 - msgid "New Class" - msgstr "Новый класс" - --#: ../system-config-printer.py:3752 -+#: ../system-config-printer.py:3767 - msgid "Change Device URI" - msgstr "Изменение URI адреса устройства" - --#: ../system-config-printer.py:3758 -+#: ../system-config-printer.py:3773 - msgid "Change Driver" - msgstr "Изменение драйвера" - --#: ../system-config-printer.py:3927 ../system-config-printer.py:3993 --#: ../system-config-printer.py:4289 ../system-config-printer.py:4487 --#: ../system-config-printer.py:5772 ../system-config-printer.py:5995 -+#: ../system-config-printer.py:3942 ../system-config-printer.py:4008 -+#: ../system-config-printer.py:4304 ../system-config-printer.py:4502 -+#: ../system-config-printer.py:5762 ../system-config-printer.py:5943 - msgid "Searching" - msgstr "Поиск" - --#: ../system-config-printer.py:3928 -+#: ../system-config-printer.py:3943 - #, fuzzy - msgid "Searching for downloadable drivers" - msgstr "Поиск драйверов" - --#: ../system-config-printer.py:3994 ../system-config-printer.py:4290 -+#: ../system-config-printer.py:4009 ../system-config-printer.py:4305 - msgid "Searching for drivers" - msgstr "Поиск драйверов" - --#: ../system-config-printer.py:4488 ../system-config-printer.py:5773 -+#: ../system-config-printer.py:4503 ../system-config-printer.py:5763 - msgid "Searching for printers" - msgstr "Поиск принтеров" - --#: ../system-config-printer.py:4497 -+#: ../system-config-printer.py:4512 - #, fuzzy - msgid "fetching device list" - msgstr "Изменить параметры сервера" - - #. Tell the user why he needs the plugin --#: ../system-config-printer.py:4579 -+#: ../system-config-printer.py:4594 - msgid "For this printer a proprietary driver plugin from HP is available.\n" - msgstr "" - --#: ../system-config-printer.py:4582 -+#: ../system-config-printer.py:4597 - msgid "" - "The installation of the plugin is required for your printer to work.\n" - "\n" - msgstr "" - --#: ../system-config-printer.py:4585 -+#: ../system-config-printer.py:4600 - msgid "" - "Installing the plugin is optional, it completes or enhances the " - "functionality\n" -@@ -1202,115 +1211,111 @@ msgid "" - "\n" - msgstr "" - --#: ../system-config-printer.py:4589 -+#: ../system-config-printer.py:4604 - msgid "The plugin provides the following features:\n" - msgstr "" - --#: ../system-config-printer.py:4592 -+#: ../system-config-printer.py:4607 - msgid " - Printing support\n" - msgstr "" - --#: ../system-config-printer.py:4595 -+#: ../system-config-printer.py:4610 - #, fuzzy - msgid " - Faster printing\n" - msgstr "Разрешение проблем с печатью" - --#: ../system-config-printer.py:4598 -+#: ../system-config-printer.py:4613 - msgid " - Better printout quality\n" - msgstr "" - --#: ../system-config-printer.py:4601 -+#: ../system-config-printer.py:4616 - msgid " - Extra printing features\n" - msgstr "" - --#: ../system-config-printer.py:4604 -+#: ../system-config-printer.py:4619 - msgid " - Scanning support\n" - msgstr "" - --#: ../system-config-printer.py:4607 -+#: ../system-config-printer.py:4622 - msgid " - Faster scanning\n" - msgstr "" - --#: ../system-config-printer.py:4610 -+#: ../system-config-printer.py:4625 - msgid " - Better scanning image quality\n" - msgstr "" - --#: ../system-config-printer.py:4613 -+#: ../system-config-printer.py:4628 - msgid " - Faxing support\n" - msgstr "" - --#: ../system-config-printer.py:4616 -+#: ../system-config-printer.py:4631 - msgid " - Extra fax features\n" - msgstr "" - --#: ../system-config-printer.py:4619 -+#: ../system-config-printer.py:4634 - msgid " - Better Input/Output support\n" - msgstr "" - --#: ../system-config-printer.py:4622 -+#: ../system-config-printer.py:4637 - msgid " - Extra user interface features\n" - msgstr "" - --#: ../system-config-printer.py:4625 -+#: ../system-config-printer.py:4640 - msgid " - Other extra features\n" - msgstr "" - --#: ../system-config-printer.py:4630 -+#: ../system-config-printer.py:4645 - #, fuzzy - msgid "Install plugin" - msgstr "Установленные параметры" - --#: ../system-config-printer.py:4631 -+#: ../system-config-printer.py:4646 - #, fuzzy - msgid "Do not set up printer" - msgstr "Выберите принтер" - --#: ../system-config-printer.py:4632 -+#: ../system-config-printer.py:4647 - msgid "Set up without plugin" - msgstr "" - --#: ../system-config-printer.py:4634 ../troubleshoot/PrintTestPage.py:118 -+#: ../system-config-printer.py:4649 ../troubleshoot/PrintTestPage.py:118 - msgid "Yes" - msgstr "Да" - --#: ../system-config-printer.py:4635 ../troubleshoot/PrintTestPage.py:119 -+#: ../system-config-printer.py:4650 ../troubleshoot/PrintTestPage.py:119 - msgid "No" - msgstr "Нет" - --#: ../system-config-printer.py:4809 ../system-config-printer.py:4813 -+#: ../system-config-printer.py:4824 ../system-config-printer.py:4828 - msgid " (Current)" - msgstr " (текущий)" - --#: ../system-config-printer.py:4845 --msgid "HP Printer (HPLIP)" --msgstr "" -- --#: ../system-config-printer.py:4886 -+#: ../system-config-printer.py:4881 - msgid "Other" - msgstr "Другой" - - #. device-info - #. PhysicalDevice obj - #. Separator? --#: ../system-config-printer.py:4902 -+#: ../system-config-printer.py:4897 - #, fuzzy - msgid "Network Printer" - msgstr "Сетевой принтер" - --#: ../system-config-printer.py:4906 -+#: ../system-config-printer.py:4901 - #, fuzzy - msgid "Find Network Printer" - msgstr "Сетевой принтер" - --#: ../system-config-printer.py:4979 ../system-config-printer.py:5376 -+#: ../system-config-printer.py:4974 ../system-config-printer.py:5371 - msgid "Scanning..." - msgstr "Сканирование..." - --#: ../system-config-printer.py:5034 ../system-config-printer.py:5798 -+#: ../system-config-printer.py:5029 - msgid "No Print Shares" - msgstr "Общих принтеров не найдено" - --#: ../system-config-printer.py:5035 -+#: ../system-config-printer.py:5030 - msgid "" - "There were no print shares found. Please check that the Samba service is " - "marked as trusted in your firewall configuration." -@@ -1318,32 +1323,32 @@ msgstr "" - "Общих принтеров не найдено. Пожалуйста, проверьте, что служба Samba помечена " - "как доверенная в настройках вашего межсетевого экрана." - --#: ../system-config-printer.py:5296 ../system-config-printer.py:5357 -+#: ../system-config-printer.py:5291 ../system-config-printer.py:5352 - msgid "Print Share Verified" - msgstr "Общий принтер проверен" - --#: ../system-config-printer.py:5297 ../system-config-printer.py:5358 -+#: ../system-config-printer.py:5292 ../system-config-printer.py:5353 - msgid "This print share is accessible." - msgstr "Этот общий принтер доступен." - --#: ../system-config-printer.py:5302 ../system-config-printer.py:5362 -+#: ../system-config-printer.py:5297 ../system-config-printer.py:5357 - msgid "This print share is not accessible." - msgstr "Этот общий принтер не доступен." - --#: ../system-config-printer.py:5305 -+#: ../system-config-printer.py:5300 - msgid "Print Share Inaccessible" - msgstr "Общий принтер недоступен" - --#: ../system-config-printer.py:5361 -+#: ../system-config-printer.py:5356 - msgid "Inaccessible" - msgstr "Недоступен" - --#: ../system-config-printer.py:5419 -+#: ../system-config-printer.py:5414 - #, fuzzy, python-format - msgid "It is not possible to obtain a list of queues from '%s'." - msgstr "Не удаётся получить список очередей для «%s»." - --#: ../system-config-printer.py:5421 -+#: ../system-config-printer.py:5416 - msgid "" - "Obtaining a list of queues is a CUPS extension to IPP. Network printers do " - "not support it." -@@ -1351,72 +1356,72 @@ msgstr "" - "Получение списка очередей является собственным расширением CUPS для IPP-" - "протокола. Сетевые принтеры не поддерживают данную функцию." - --#: ../system-config-printer.py:5424 -+#: ../system-config-printer.py:5419 - msgid "No queues" - msgstr "Очередей нет" - --#: ../system-config-printer.py:5425 -+#: ../system-config-printer.py:5420 - msgid "There are no queues available." - msgstr "Нет доступный очередей." - --#: ../system-config-printer.py:5516 -+#: ../system-config-printer.py:5511 - msgid "Parallel Port" - msgstr "" - --#: ../system-config-printer.py:5518 -+#: ../system-config-printer.py:5513 - #, fuzzy - msgid "Serial Port" - msgstr "Последовательный порт" - --#: ../system-config-printer.py:5520 -+#: ../system-config-printer.py:5515 - #, fuzzy - msgid "USB" - msgstr "SMB" - --#: ../system-config-printer.py:5522 ../system-config-printer.py:5525 -+#: ../system-config-printer.py:5517 ../system-config-printer.py:5520 - msgid "HP Linux Imaging and Printing (HPLIP)" - msgstr "" - --#: ../system-config-printer.py:5527 -+#: ../system-config-printer.py:5522 - #, fuzzy - msgid "Hardware Abstraction Layer (HAL)" - msgstr "HAL (Hardware Abstraction Layer) обнаружил локальный принтер." - --#: ../system-config-printer.py:5529 -+#: ../system-config-printer.py:5524 - msgid "AppSocket/HP JetDirect" - msgstr "" - --#: ../system-config-printer.py:5538 -+#: ../system-config-printer.py:5533 - #, python-format - msgid "LPD/LPR queue '%s'" - msgstr "" - --#: ../system-config-printer.py:5540 -+#: ../system-config-printer.py:5535 - #, fuzzy - msgid "LPD/LPR queue" - msgstr "LPD" - --#: ../system-config-printer.py:5543 -+#: ../system-config-printer.py:5538 - msgid "Windows Printer via SAMBA" - msgstr "" - --#: ../system-config-printer.py:5545 ../glade/NewPrinterWindow.glade.h:66 -+#: ../system-config-printer.py:5540 ../glade/NewPrinterWindow.glade.h:65 - msgid "IPP" - msgstr "IPP" - --#: ../system-config-printer.py:5547 -+#: ../system-config-printer.py:5542 - msgid "HTTP" - msgstr "" - --#: ../system-config-printer.py:5632 -+#: ../system-config-printer.py:5624 - msgid "A printer connected to the parallel port." - msgstr "Принтер подключен к параллельному порту." - --#: ../system-config-printer.py:5634 -+#: ../system-config-printer.py:5626 - msgid "A printer connected to a USB port." - msgstr "Принтер подключен к порту USB." - --#: ../system-config-printer.py:5636 -+#: ../system-config-printer.py:5628 - msgid "" - "HPLIP software driving a printer, or the printer function of a multi-" - "function device." -@@ -1424,7 +1429,7 @@ msgstr "" - "Работу принтера обеспечивает HPLIP или функция принтера многофункционального " - "устройства." - --#: ../system-config-printer.py:5639 -+#: ../system-config-printer.py:5631 - msgid "" - "HPLIP software driving a fax machine, or the fax function of a multi-" - "function device." -@@ -1432,68 +1437,64 @@ msgstr "" - "Работу принтера обеспечивает HPLIP или функция факса многофункционального " - "устройства." - --#: ../system-config-printer.py:5642 -+#: ../system-config-printer.py:5634 - msgid "Local printer detected by the Hardware Abstraction Layer (HAL)." - msgstr "HAL (Hardware Abstraction Layer) обнаружил локальный принтер." - --#: ../system-config-printer.py:5799 --msgid "HPLIP cannot find the device." --msgstr "" -- --#: ../system-config-printer.py:5881 -+#: ../system-config-printer.py:5831 - msgid "No printer was found at that address." - msgstr "" - --#: ../system-config-printer.py:6020 -+#: ../system-config-printer.py:5968 - msgid "-- Select from search results --" - msgstr "-- Выберите из результатов поиска --" - --#: ../system-config-printer.py:6022 -+#: ../system-config-printer.py:5970 - msgid "-- No matches found --" - msgstr "-- Совпадений не найдено --" - --#: ../system-config-printer.py:6203 -+#: ../system-config-printer.py:6151 - msgid " (recommended)" - msgstr " (рекомендуемый)" - --#: ../system-config-printer.py:6217 -+#: ../system-config-printer.py:6165 - msgid "This PPD is generated by foomatic." - msgstr "Данный PPD сформирован foomatic." - --#: ../system-config-printer.py:6241 -+#: ../system-config-printer.py:6189 - msgid "OpenPrinting" - msgstr "OpenPrinting" - --#: ../system-config-printer.py:6252 -+#: ../system-config-printer.py:6200 - msgid "Distributable" - msgstr "Распространяемый" - --#: ../system-config-printer.py:6293 -+#: ../system-config-printer.py:6241 - #, fuzzy - msgid ", " - msgstr " " - --#: ../system-config-printer.py:6298 -+#: ../system-config-printer.py:6246 - #, python-format - msgid "" - "\n" - "(%s)" - msgstr "" - --#: ../system-config-printer.py:6303 -+#: ../system-config-printer.py:6251 - msgid "No support contacts known" - msgstr "" - --#: ../system-config-printer.py:6307 ../system-config-printer.py:6320 -+#: ../system-config-printer.py:6255 ../system-config-printer.py:6268 - msgid "Not specified." - msgstr "Не указано." - - #. Foomatic database problem of some sort. --#: ../system-config-printer.py:6360 -+#: ../system-config-printer.py:6308 - msgid "Database error" - msgstr "Ошибка базы данных" - --#: ../system-config-printer.py:6361 -+#: ../system-config-printer.py:6309 - #, python-format - msgid "The '%s' driver cannot be used with printer '%s %s'." - msgstr "Драйвер «%s» не может быть использован с принтером «%s %s»." -@@ -1501,63 +1502,63 @@ msgstr "Драйвер «%s» не мо - #. This printer references some XML that is not - #. installed by default. Point the user at the - #. package they need to install. --#: ../system-config-printer.py:6371 -+#: ../system-config-printer.py:6319 - #, python-format - msgid "You will need to install the '%s' package in order to use this driver." - msgstr "" - "Чтобы воспользоваться этим драйвером, вам необходимо установить пакет «%s»." - - #. This error came from trying to open the PPD file. --#: ../system-config-printer.py:6378 -+#: ../system-config-printer.py:6326 - msgid "PPD error" - msgstr "Ошибка PPD" - --#: ../system-config-printer.py:6380 -+#: ../system-config-printer.py:6328 - msgid "Failed to read PPD file. Possible reason follows:" - msgstr "Не удалось прочитать файл PPD. Возможные причины:" - - #. Failed to get PPD downloaded from OpenPrinting XXX --#: ../system-config-printer.py:6397 -+#: ../system-config-printer.py:6345 - msgid "Downloadable drivers" - msgstr "Доступные для загрузки драйвера" - --#: ../system-config-printer.py:6398 -+#: ../system-config-printer.py:6346 - msgid "Failed to download PPD." - msgstr "Не удалось загрузить PPD." - --#: ../system-config-printer.py:6405 -+#: ../system-config-printer.py:6353 - #, fuzzy - msgid "fetching PPD" - msgstr "Изменить PPD" - --#: ../system-config-printer.py:6434 ../system-config-printer.py:6472 -+#: ../system-config-printer.py:6382 ../system-config-printer.py:6420 - msgid "No Installable Options" - msgstr "Нет устанавливаемых параметров" - --#: ../system-config-printer.py:6520 -+#: ../system-config-printer.py:6468 - #, fuzzy, python-format - msgid "adding printer %s" - msgstr "Добавление принтера" - --#: ../system-config-printer.py:6669 -+#: ../system-config-printer.py:6617 - msgid "Would you like to print a test page?" - msgstr "" - --#: ../system-config-printer.py:6722 -+#: ../system-config-printer.py:6670 - msgid "Install driver" - msgstr "Установить драйвер" - --#: ../system-config-printer.py:6723 ../troubleshoot/CheckPPDSanity.py:131 -+#: ../system-config-printer.py:6671 ../troubleshoot/CheckPPDSanity.py:131 - #, python-format - msgid "Printer '%s' requires the %s package but it is not currently installed." - msgstr "" - "Принтер «%s» требует пакет %s, который не установлен в настоящий момент." - --#: ../system-config-printer.py:6739 -+#: ../system-config-printer.py:6687 - msgid "Missing driver" - msgstr "Отсутствует драйвер" - --#: ../system-config-printer.py:6740 -+#: ../system-config-printer.py:6688 - #, python-format - msgid "" - "Printer '%s' requires the '%s' program but it is not currently installed. " -@@ -1700,128 +1701,123 @@ msgid "Enter device URI" - msgstr "Введите URI устройства" - - #: ../glade/NewPrinterWindow.glade.h:5 --#, fuzzy --msgid "HP Printer (HPLIP) via network" --msgstr "Название принтера" -- --#: ../glade/NewPrinterWindow.glade.h:6 - msgid "IPP Printer" - msgstr "IPP-принтер" - --#: ../glade/NewPrinterWindow.glade.h:7 -+#: ../glade/NewPrinterWindow.glade.h:6 - msgid "License Terms" - msgstr "Условия использования" - --#: ../glade/NewPrinterWindow.glade.h:8 -+#: ../glade/NewPrinterWindow.glade.h:7 - msgid "Location of the LPD network printer" - msgstr "Расположение сетевого LPD-принтера" - --#: ../glade/NewPrinterWindow.glade.h:9 -+#: ../glade/NewPrinterWindow.glade.h:8 - msgid "Location of the network printer" - msgstr "Расположение сетевого принтера" - --#: ../glade/NewPrinterWindow.glade.h:10 -+#: ../glade/NewPrinterWindow.glade.h:9 - msgid "Location (optional)" - msgstr "Размещение (не обязательно)" - --#: ../glade/NewPrinterWindow.glade.h:11 -+#: ../glade/NewPrinterWindow.glade.h:10 - #, fuzzy - msgid "Network Printer" - msgstr "Сетевой принтер" - --#: ../glade/NewPrinterWindow.glade.h:12 -+#: ../glade/NewPrinterWindow.glade.h:11 - msgid "Note" - msgstr "Замечания" - --#: ../glade/NewPrinterWindow.glade.h:13 -+#: ../glade/NewPrinterWindow.glade.h:12 - #, fuzzy - msgid "Output Quality" - msgstr "Состояние" - --#: ../glade/NewPrinterWindow.glade.h:14 -+#: ../glade/NewPrinterWindow.glade.h:13 - msgid "Printer Name" - msgstr "Название принтера" - --#: ../glade/NewPrinterWindow.glade.h:15 -+#: ../glade/NewPrinterWindow.glade.h:14 - msgid "SMB Printer" - msgstr "SMB-принтер" - --#: ../glade/NewPrinterWindow.glade.h:16 -+#: ../glade/NewPrinterWindow.glade.h:15 - msgid "Select Driver" - msgstr "Выберите драйвер" - --#: ../glade/NewPrinterWindow.glade.h:17 -+#: ../glade/NewPrinterWindow.glade.h:16 - msgid "Settings of the serial port" - msgstr "Настройки последовательного порта" - --#: ../glade/NewPrinterWindow.glade.h:18 -+#: ../glade/NewPrinterWindow.glade.h:17 - msgid "smb://[workgroup/]server[:port]/printer" - msgstr "smb://[рабочая_группа/]сервер[:порт]/принтер" - --#: ../glade/NewPrinterWindow.glade.h:19 -+#: ../glade/NewPrinterWindow.glade.h:18 - #, fuzzy - msgid "Choose Class Members" - msgstr "" - "Требуется пароль\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:20 -+#: ../glade/NewPrinterWindow.glade.h:19 - #, fuzzy - msgid "Choose Driver" - msgstr "" - "Требуется пароль\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:21 -+#: ../glade/NewPrinterWindow.glade.h:20 - #, fuzzy - msgid "Describe Printer" - msgstr "" - "Требуется пароль\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:22 -+#: ../glade/NewPrinterWindow.glade.h:21 - #, fuzzy - msgid "Existing Settings" - msgstr "" - "Требуется пароль\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:23 -+#: ../glade/NewPrinterWindow.glade.h:22 - #, fuzzy - msgid "Installable Options" - msgstr "" - "Требуется пароль\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:24 -+#: ../glade/NewPrinterWindow.glade.h:23 - #, fuzzy - msgid "Select Device" - msgstr "" - "Требуется пароль\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:25 -+#: ../glade/NewPrinterWindow.glade.h:24 - msgid "Baud Rate" - msgstr "Скорость передачи" - --#: ../glade/NewPrinterWindow.glade.h:26 -+#: ../glade/NewPrinterWindow.glade.h:25 - msgid "Browse..." - msgstr "Обзор..." - --#: ../glade/NewPrinterWindow.glade.h:27 -+#: ../glade/NewPrinterWindow.glade.h:26 - msgid "Comments..." - msgstr "Комментарии..." - --#: ../glade/NewPrinterWindow.glade.h:28 -+#: ../glade/NewPrinterWindow.glade.h:27 - #, fuzzy - msgid "Connection" - msgstr "Подключение" - --#: ../glade/NewPrinterWindow.glade.h:29 -+#: ../glade/NewPrinterWindow.glade.h:28 - msgid "Data Bits" - msgstr "Биты данных" - --#: ../glade/NewPrinterWindow.glade.h:30 -+#: ../glade/NewPrinterWindow.glade.h:29 - msgid "" - "Default\n" - "1200\n" -@@ -1843,7 +1839,7 @@ msgstr "" - "57600\n" - "115200" - --#: ../glade/NewPrinterWindow.glade.h:39 -+#: ../glade/NewPrinterWindow.glade.h:38 - msgid "" - "Default\n" - "8\n" -@@ -1853,7 +1849,7 @@ msgstr "" - "8\n" - "7" - --#: ../glade/NewPrinterWindow.glade.h:42 -+#: ../glade/NewPrinterWindow.glade.h:41 - msgid "" - "Default\n" - "None\n" -@@ -1865,7 +1861,7 @@ msgstr "" - "Нечетный\n" - "Четный" - --#: ../glade/NewPrinterWindow.glade.h:46 -+#: ../glade/NewPrinterWindow.glade.h:45 - msgid "" - "Default\n" - "None\n" -@@ -1879,116 +1875,116 @@ msgstr "" - "RTS/CTS (аппаратное)\n" - "DTR/DSR (аппаратное)" - --#: ../glade/NewPrinterWindow.glade.h:51 -+#: ../glade/NewPrinterWindow.glade.h:50 - #: ../glade/PrinterPropertiesDialog.glade.h:35 - msgid "Description:" - msgstr "Описание:" - --#: ../glade/NewPrinterWindow.glade.h:52 ../troubleshoot/DeviceListed.py:40 -+#: ../glade/NewPrinterWindow.glade.h:51 ../troubleshoot/DeviceListed.py:40 - msgid "Device URI" - msgstr "URI устройства" - --#: ../glade/NewPrinterWindow.glade.h:53 -+#: ../glade/NewPrinterWindow.glade.h:52 - msgid "Device description." - msgstr "Описание устройства." - --#: ../glade/NewPrinterWindow.glade.h:54 -+#: ../glade/NewPrinterWindow.glade.h:53 - msgid "DirectJet" - msgstr "DirectJet" - --#: ../glade/NewPrinterWindow.glade.h:56 -+#: ../glade/NewPrinterWindow.glade.h:55 - msgid "Driver details" - msgstr "Свойства драйвера" - --#: ../glade/NewPrinterWindow.glade.h:57 -+#: ../glade/NewPrinterWindow.glade.h:56 - msgid "Empty" - msgstr "Пусто" - --#: ../glade/NewPrinterWindow.glade.h:58 -+#: ../glade/NewPrinterWindow.glade.h:57 - msgid "Find _Queue..." - msgstr "Найти _очередь..." - --#: ../glade/NewPrinterWindow.glade.h:59 -+#: ../glade/NewPrinterWindow.glade.h:58 - msgid "Flow Control" - msgstr "Управление потоком" - --#: ../glade/NewPrinterWindow.glade.h:60 -+#: ../glade/NewPrinterWindow.glade.h:59 - msgid "" - "For the printer you have selected there are drivers available for download." - msgstr "" - "Для указанного вами принтера имеются драйвера, доступные для загрузки." - --#: ../glade/NewPrinterWindow.glade.h:61 -+#: ../glade/NewPrinterWindow.glade.h:60 - msgid "Free software" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:62 -+#: ../glade/NewPrinterWindow.glade.h:61 - msgid "Graphics:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:63 -+#: ../glade/NewPrinterWindow.glade.h:62 - msgid "Host:" - msgstr "Узел:" - --#: ../glade/NewPrinterWindow.glade.h:64 -+#: ../glade/NewPrinterWindow.glade.h:63 - msgid "Human-readable description such as \"HP LaserJet with Duplexer\"" - msgstr "Понятное описание, например, «HP LaserJet с переворотом»" - --#: ../glade/NewPrinterWindow.glade.h:65 -+#: ../glade/NewPrinterWindow.glade.h:64 - msgid "Human-readable location such as \"Lab 1\"" - msgstr "Понятное размещение, например, «Лаборатория 1»" - --#: ../glade/NewPrinterWindow.glade.h:67 -+#: ../glade/NewPrinterWindow.glade.h:66 - msgid "LPD" - msgstr "LPD" - --#: ../glade/NewPrinterWindow.glade.h:68 -+#: ../glade/NewPrinterWindow.glade.h:67 - msgid "License:" - msgstr "Лицензия:" - --#: ../glade/NewPrinterWindow.glade.h:69 -+#: ../glade/NewPrinterWindow.glade.h:68 - #, fuzzy - msgid "Line art:" - msgstr "Состояние принтера:" - --#: ../glade/NewPrinterWindow.glade.h:70 -+#: ../glade/NewPrinterWindow.glade.h:69 - msgid "Local Driver" - msgstr "Локальный драйвер" - --#: ../glade/NewPrinterWindow.glade.h:71 -+#: ../glade/NewPrinterWindow.glade.h:70 - msgid "Make and model:" - msgstr "Производитель и модель:" - --#: ../glade/NewPrinterWindow.glade.h:72 -+#: ../glade/NewPrinterWindow.glade.h:71 - msgid "Manufacturer" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:73 -+#: ../glade/NewPrinterWindow.glade.h:72 - #, fuzzy - msgid "Network" - msgstr "Сетевой принтер" - --#: ../glade/NewPrinterWindow.glade.h:75 -+#: ../glade/NewPrinterWindow.glade.h:74 - msgid "No, I do not accept this license" - msgstr "Нет, я не принимаю эту лицензию" - --#: ../glade/NewPrinterWindow.glade.h:76 -+#: ../glade/NewPrinterWindow.glade.h:75 - msgid "Parity" - msgstr "Чётность" - --#: ../glade/NewPrinterWindow.glade.h:78 -+#: ../glade/NewPrinterWindow.glade.h:77 - msgid "Patented algorithms" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:79 -+#: ../glade/NewPrinterWindow.glade.h:78 - msgid "Photo:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:80 -+#: ../glade/NewPrinterWindow.glade.h:79 - msgid "Port number:" - msgstr "Порт:" - --#: ../glade/NewPrinterWindow.glade.h:81 -+#: ../glade/NewPrinterWindow.glade.h:80 - msgid "" - "PostScript Printer Description (PPD) files can often be found on the driver " - "disk that comes with the printer. For PostScript printers they are often " -@@ -1999,78 +1995,78 @@ msgstr "" - "PostScript-принтеров они часто входят в состав драйвера для Windows®." - --#: ../glade/NewPrinterWindow.glade.h:82 -+#: ../glade/NewPrinterWindow.glade.h:81 - msgid "Printer model:" - msgstr "Модель принтера:" - --#: ../glade/NewPrinterWindow.glade.h:83 -+#: ../glade/NewPrinterWindow.glade.h:82 - msgid "Probe" - msgstr "Попробовать" - --#: ../glade/NewPrinterWindow.glade.h:84 -+#: ../glade/NewPrinterWindow.glade.h:83 - msgid "Prompt user if authentication is required" - msgstr "Запрашивать, если требуется аутентификация" - --#: ../glade/NewPrinterWindow.glade.h:85 -+#: ../glade/NewPrinterWindow.glade.h:84 - msgid "Provide PPD file" - msgstr "Использовать PPD-файл" - --#: ../glade/NewPrinterWindow.glade.h:86 -+#: ../glade/NewPrinterWindow.glade.h:85 - msgid "Queue:" - msgstr "Очередь:" - --#: ../glade/NewPrinterWindow.glade.h:87 -+#: ../glade/NewPrinterWindow.glade.h:86 - msgid "SCSI" - msgstr "SCSI" - --#: ../glade/NewPrinterWindow.glade.h:88 -+#: ../glade/NewPrinterWindow.glade.h:87 - msgid "SMB" - msgstr "SMB" - --#: ../glade/NewPrinterWindow.glade.h:89 -+#: ../glade/NewPrinterWindow.glade.h:88 - msgid "Search for a printer driver to download" - msgstr "Найти драйвер принтера для загрузки" - --#: ../glade/NewPrinterWindow.glade.h:90 -+#: ../glade/NewPrinterWindow.glade.h:89 - #, fuzzy - msgid "Searching..." - msgstr "Поиск" - --#: ../glade/NewPrinterWindow.glade.h:91 -+#: ../glade/NewPrinterWindow.glade.h:90 - msgid "Select A File" - msgstr "Выберите файл" - --#: ../glade/NewPrinterWindow.glade.h:92 -+#: ../glade/NewPrinterWindow.glade.h:91 - msgid "Select printer from database" - msgstr "Выбрать принтер из базы данных" - --#: ../glade/NewPrinterWindow.glade.h:93 -+#: ../glade/NewPrinterWindow.glade.h:92 - msgid "Serial" - msgstr "Последовательный порт" - --#: ../glade/NewPrinterWindow.glade.h:94 -+#: ../glade/NewPrinterWindow.glade.h:93 - msgid "Set authentication details now" - msgstr "Ввести параметры аутентификации" - --#: ../glade/NewPrinterWindow.glade.h:95 -+#: ../glade/NewPrinterWindow.glade.h:94 - msgid "Short name for this printer such as \"laserjet\"" - msgstr "Короткое имя для этого принтера, например «laserjet»" - --#: ../glade/NewPrinterWindow.glade.h:96 -+#: ../glade/NewPrinterWindow.glade.h:95 - msgid "Supplier:" - msgstr "Поставщик:" - --#: ../glade/NewPrinterWindow.glade.h:97 -+#: ../glade/NewPrinterWindow.glade.h:96 - #, fuzzy - msgid "Support:" - msgstr "Поставщик:" - --#: ../glade/NewPrinterWindow.glade.h:98 -+#: ../glade/NewPrinterWindow.glade.h:97 - #, fuzzy - msgid "Text:" - msgstr "Проверка" - --#: ../glade/NewPrinterWindow.glade.h:99 -+#: ../glade/NewPrinterWindow.glade.h:98 - msgid "" - "The foomatic printer database contains various manufacturer provided " - "PostScript Printer Description (PPD) files and also can generate PPD files " -@@ -2084,7 +2080,7 @@ msgstr "" - "от производителя обеспечивают лучший доступ к специфическим возможностям " - "принтера." - --#: ../glade/NewPrinterWindow.glade.h:100 -+#: ../glade/NewPrinterWindow.glade.h:99 - msgid "" - "These drivers do not come from your operating system supplier and will not " - "be covered by their commercial support. See the support and license terms " -@@ -2094,7 +2090,7 @@ msgstr "" - "на них не распространяются условия платной поддержки. Обратите внимание на " - "условия использования и поддержки поставщика данного драйвера." - --#: ../glade/NewPrinterWindow.glade.h:101 -+#: ../glade/NewPrinterWindow.glade.h:100 - msgid "" - "This driver supports additional hardware that may be installed in the " - "printer." -@@ -2102,7 +2098,7 @@ msgstr "" - "Этот драйвер поддерживает дополнительное оборудование, которое может быть " - "подключено к принтеру." - --#: ../glade/NewPrinterWindow.glade.h:102 -+#: ../glade/NewPrinterWindow.glade.h:101 - msgid "" - "This is done by assuming that options with the same name do have the same " - "meaning. Settings of options that are not present in the new PPD will be " -@@ -2113,7 +2109,7 @@ msgstr "" - "новом PPD будут потеряны, а новые параметры в PPD получат значения по " - "умолчанию." - --#: ../glade/NewPrinterWindow.glade.h:103 -+#: ../glade/NewPrinterWindow.glade.h:102 - msgid "" - "This way all current option settings will be lost. The default settings of " - "the new PPD will be used. " -@@ -2121,19 +2117,19 @@ msgstr "" - "Таким образом все текущие настройки параметров будут потеряны. Будут " - "использованы стандартные настройки нового описания PPD. " - --#: ../glade/NewPrinterWindow.glade.h:104 -+#: ../glade/NewPrinterWindow.glade.h:103 - msgid "Try to copy the option settings over from the old PPD. " - msgstr "Попытаться скопировать значения параметров из старого PPD. " - --#: ../glade/NewPrinterWindow.glade.h:105 -+#: ../glade/NewPrinterWindow.glade.h:104 - msgid "URI:" - msgstr "URI:" - --#: ../glade/NewPrinterWindow.glade.h:107 -+#: ../glade/NewPrinterWindow.glade.h:106 - msgid "Use the new PPD (Postscript Printer Description) as is." - msgstr "Использовать новый PPD как есть." - --#: ../glade/NewPrinterWindow.glade.h:109 -+#: ../glade/NewPrinterWindow.glade.h:108 - msgid "" - "With this choice no driver download will be performed. In the next steps a " - "locally installed driver will be selected." -@@ -2141,24 +2137,24 @@ msgstr "" - "В результате этого выбора драйвер не будет загружен. На следующем шаге вам " - "будет предложено выбрать локально установленный драйвер." - --#: ../glade/NewPrinterWindow.glade.h:110 -+#: ../glade/NewPrinterWindow.glade.h:109 - msgid "Yes, I accept this license" - msgstr "Да, я принимаю соглашение" - --#: ../glade/NewPrinterWindow.glade.h:111 -+#: ../glade/NewPrinterWindow.glade.h:110 - msgid "_Search" - msgstr "_Найти" - --#: ../glade/NewPrinterWindow.glade.h:112 -+#: ../glade/NewPrinterWindow.glade.h:111 - msgid "_Verify..." - msgstr "_Проверить..." - --#: ../glade/NewPrinterWindow.glade.h:113 -+#: ../glade/NewPrinterWindow.glade.h:112 - #: ../glade/PrinterPropertiesDialog.glade.h:128 - msgid "move left" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:114 -+#: ../glade/NewPrinterWindow.glade.h:113 - #: ../glade/PrinterPropertiesDialog.glade.h:129 - #, fuzzy - msgid "move right" -@@ -3092,7 +3088,7 @@ msgstr "Были ли напечатан - msgid "Remember to load paper of type '%s' into the printer first." - msgstr "" - --#: ../troubleshoot/PrintTestPage.py:399 -+#: ../troubleshoot/PrintTestPage.py:416 - msgid "Error submitting test page" - msgstr "Ошибка отправки пробной страницы" - -@@ -3296,6 +3292,10 @@ msgid "Select default printer" - msgstr "Выбрать принтер по умолчанию" - - #, fuzzy -+#~ msgid "HP Printer (HPLIP) via network" -+#~ msgstr "Название принтера" -+ -+#, fuzzy - #~ msgid "Not Found" - #~ msgstr "Не найден" - -diff -up system-config-printer-1.1.5/po/si.po.git-1.1.x system-config-printer-1.1.5/po/si.po ---- system-config-printer-1.1.5/po/si.po.git-1.1.x 2009-03-03 22:21:46.000000000 +0000 -+++ system-config-printer-1.1.5/po/si.po 2009-03-10 17:43:31.000000000 +0000 -@@ -7,7 +7,7 @@ msgid "" - msgstr "" - "Project-Id-Version: si\n" - "Report-Msgid-Bugs-To: https://bugzilla.redhat.com/bugzilla\n" --"POT-Creation-Date: 2009-03-02 23:22+0000\n" -+"POT-Creation-Date: 2009-03-10 16:51+0000\n" - "PO-Revision-Date: 2006-11-24 07:21+0530\n" - "Last-Translator: Tyronne Wickramarathne \n" - "Language-Team: Sinhala \n" -@@ -52,11 +52,11 @@ msgstr "" - msgid "Enter IP address" - msgstr "මුද්‍රකයේ නම" - --#: ../authconn.py:35 ../glade/NewPrinterWindow.glade.h:108 -+#: ../authconn.py:35 ../glade/NewPrinterWindow.glade.h:107 - msgid "Username:" - msgstr "පරිශීලක නාමය:" - --#: ../authconn.py:36 ../glade/NewPrinterWindow.glade.h:77 -+#: ../authconn.py:36 ../glade/NewPrinterWindow.glade.h:76 - msgid "Password:" - msgstr "රහස්පදය:" - -@@ -65,7 +65,7 @@ msgstr "රහස්පදය:" - msgid "Domain:" - msgstr "ස්ථානය:" - --#: ../authconn.py:46 -+#: ../authconn.py:46 ../authconn.py:409 - msgid "Authentication" - msgstr "" - -@@ -73,44 +73,53 @@ msgstr "" - msgid "Remember password" - msgstr "" - --#: ../authconn.py:211 ../authconn.py:232 -+#: ../authconn.py:208 -+#, python-format -+msgid "Unauthorized request (%s)" -+msgstr "" -+ -+#: ../authconn.py:209 -+msgid "You are not authorized to carry out therequested action." -+msgstr "" -+ -+#: ../authconn.py:212 ../authconn.py:233 - msgid "Operation canceled" - msgstr "" - --#: ../authconn.py:253 -+#: ../authconn.py:250 - #, fuzzy, python-format - msgid "CUPS server error (%s)" - msgstr "මුද්‍රකය" - --#: ../authconn.py:255 ../errordialogs.py:57 --#: ../troubleshoot/PrintTestPage.py:400 -+#: ../authconn.py:252 ../errordialogs.py:56 ../errordialogs.py:70 -+#, fuzzy -+msgid "CUPS server error" -+msgstr "මුද්‍රකය" -+ -+#: ../authconn.py:261 ../errordialogs.py:57 -+#: ../troubleshoot/PrintTestPage.py:417 - #, python-format - msgid "There was an error during the CUPS operation: '%s'." - msgstr "" - --#: ../authconn.py:258 -+#: ../authconn.py:264 - msgid "Retry" - msgstr "" - --#: ../authconn.py:379 ../authconn.py:381 ../errordialogs.py:65 ../pysmb.py:75 -+#: ../authconn.py:385 ../authconn.py:387 ../errordialogs.py:65 ../pysmb.py:75 - #: ../pysmb.py:77 - msgid "Not authorized" - msgstr "" - --#: ../authconn.py:382 ../pysmb.py:78 -+#: ../authconn.py:388 ../pysmb.py:78 - msgid "The password may be incorrect." - msgstr "" - --#: ../authconn.py:400 -+#: ../authconn.py:407 - #, python-format - msgid "Authentication (%s)" - msgstr "" - --#: ../errordialogs.py:56 ../errordialogs.py:70 --#, fuzzy --msgid "CUPS server error" --msgstr "මුද්‍රකය" -- - #: ../errordialogs.py:66 - msgid "" - "The password may be incorrect, or the server may be configured to deny " -@@ -139,7 +148,7 @@ msgstr "රහස්පදය:" - msgid "Server error" - msgstr "මුද්‍රකය" - --#: ../errordialogs.py:82 ../system-config-printer.py:1219 -+#: ../errordialogs.py:82 ../system-config-printer.py:1223 - msgid "Not connected" - msgstr "" - -@@ -161,7 +170,7 @@ msgstr "" - msgid "_New Group from Selection" - msgstr "" - --#: ../GroupsPane.py:98 ../system-config-printer.py:393 -+#: ../GroupsPane.py:98 ../system-config-printer.py:397 - #, fuzzy - msgid "_Rename" - msgstr "පරිශීලක නාමය:" -@@ -229,7 +238,7 @@ msgid "Document" - msgstr "" - - #: ../jobviewer.py:212 ../my-default-printer.py:153 --#: ../system-config-printer.py:366 ../system-config-printer.py:1367 -+#: ../system-config-printer.py:370 ../system-config-printer.py:1371 - #: ../troubleshoot/PrintTestPage.py:84 - msgid "Printer" - msgstr "මුද්‍රකය" -@@ -266,8 +275,8 @@ msgstr "" - - #: ../jobviewer.py:386 ../jobviewer.py:451 ../jobviewer.py:452 - #: ../jobviewer.py:492 ../jobviewer.py:600 ../jobviewer.py:727 --#: ../jobviewer.py:1196 ../jobviewer.py:1222 ../system-config-printer.py:2546 --#: ../glade/NewPrinterWindow.glade.h:106 -+#: ../jobviewer.py:1196 ../jobviewer.py:1222 ../system-config-printer.py:2556 -+#: ../glade/NewPrinterWindow.glade.h:105 - #: ../troubleshoot/ChooseNetworkPrinter.py:101 - #: ../troubleshoot/ChooseNetworkPrinter.py:102 - #: ../troubleshoot/ChooseNetworkPrinter.py:105 -@@ -357,12 +366,12 @@ msgstr "" - msgid "Pending" - msgstr "මුද්‍රණය කරමින්" - --#: ../jobviewer.py:591 ../system-config-printer.py:186 -+#: ../jobviewer.py:591 ../system-config-printer.py:190 - #: ../troubleshoot/PrintTestPage.py:43 - msgid "Processing" - msgstr "" - --#: ../jobviewer.py:592 ../system-config-printer.py:188 -+#: ../jobviewer.py:592 ../system-config-printer.py:192 - #: ../troubleshoot/PrintTestPage.py:44 - msgid "Stopped" - msgstr "" -@@ -475,8 +484,8 @@ msgstr "" - msgid "_Set Default" - msgstr "ප්‍රකෘතිය" - --#: ../my-default-printer.py:158 ../system-config-printer.py:423 --#: ../system-config-printer.py:3660 ../troubleshoot/ChooseNetworkPrinter.py:37 -+#: ../my-default-printer.py:158 ../system-config-printer.py:427 -+#: ../system-config-printer.py:3675 ../troubleshoot/ChooseNetworkPrinter.py:37 - #: ../troubleshoot/ChoosePrinter.py:38 - #, fuzzy - msgid "Location" -@@ -508,7 +517,7 @@ msgstr "නව මුද්‍රකය - msgid "Authenticated" - msgstr "" - --#: ../ppdippstr.py:50 ../system-config-printer.py:6259 -+#: ../ppdippstr.py:50 ../system-config-printer.py:6207 - #, fuzzy - msgid "None" - msgstr "නොමැත" -@@ -725,208 +734,208 @@ msgstr "" - msgid "1200 dpi, photo, black + color cartridge, photo paper" - msgstr "" - --#: ../system-config-printer.py:127 -+#: ../system-config-printer.py:131 - msgid "To do this, select System->Administration->Firewall from the main menu." - msgstr "" - --#: ../system-config-printer.py:185 -+#: ../system-config-printer.py:189 - msgid "Idle" - msgstr "" - --#: ../system-config-printer.py:187 -+#: ../system-config-printer.py:191 - msgid "Busy" - msgstr "" - --#: ../system-config-printer.py:372 ../system-config-printer.py:1373 -+#: ../system-config-printer.py:376 ../system-config-printer.py:1377 - msgid "Class" - msgstr "" - --#: ../system-config-printer.py:399 -+#: ../system-config-printer.py:403 - #, fuzzy - msgid "Set As De_fault" - msgstr "ප්‍රකෘතිය" - --#: ../system-config-printer.py:403 -+#: ../system-config-printer.py:407 - msgid "_Create class" - msgstr "" - --#: ../system-config-printer.py:405 -+#: ../system-config-printer.py:409 - #, fuzzy - msgid "View Print _Queue" - msgstr "නව මුද්‍රකයක්(_P)" - --#: ../system-config-printer.py:407 -+#: ../system-config-printer.py:411 - msgid "_Add to Group" - msgstr "" - --#: ../system-config-printer.py:409 -+#: ../system-config-printer.py:413 - msgid "Save Results as _Group" - msgstr "" - --#: ../system-config-printer.py:411 -+#: ../system-config-printer.py:415 - msgid "Save Filter as _Search Group" - msgstr "" - --#: ../system-config-printer.py:415 -+#: ../system-config-printer.py:419 - #, fuzzy - msgid "E_nabled" - msgstr "සක්‍රීයයි" - --#: ../system-config-printer.py:417 -+#: ../system-config-printer.py:421 - msgid "_Shared" - msgstr "" - --#: ../system-config-printer.py:421 ../troubleshoot/ChooseNetworkPrinter.py:35 -+#: ../system-config-printer.py:425 ../troubleshoot/ChooseNetworkPrinter.py:35 - #: ../troubleshoot/ChoosePrinter.py:36 ../troubleshoot/DeviceListed.py:36 - msgid "Name" - msgstr "නම" - --#: ../system-config-printer.py:422 -+#: ../system-config-printer.py:426 - msgid "Description" - msgstr "" - --#: ../system-config-printer.py:424 -+#: ../system-config-printer.py:428 - msgid "Manufacturer / Model" - msgstr "" - - #. Printer state reasons list --#: ../system-config-printer.py:499 -+#: ../system-config-printer.py:503 - msgid "Message" - msgstr "" - --#: ../system-config-printer.py:534 -+#: ../system-config-printer.py:538 - msgid "Problems?" - msgstr "" - --#: ../system-config-printer.py:637 ../system-config-printer.py:639 -+#: ../system-config-printer.py:641 ../system-config-printer.py:643 - msgid "Members of this class" - msgstr "" - --#: ../system-config-printer.py:638 ../system-config-printer.py:640 -+#: ../system-config-printer.py:642 ../system-config-printer.py:644 - msgid "Others" - msgstr "" - --#: ../system-config-printer.py:641 -+#: ../system-config-printer.py:645 - msgid "Devices" - msgstr "" - --#: ../system-config-printer.py:642 -+#: ../system-config-printer.py:646 - #, fuzzy - msgid "Connections" - msgstr "ස්ථානය:" - --#: ../system-config-printer.py:643 -+#: ../system-config-printer.py:647 - msgid "Makes" - msgstr "" - --#: ../system-config-printer.py:644 -+#: ../system-config-printer.py:648 - msgid "Models" - msgstr "" - --#: ../system-config-printer.py:645 -+#: ../system-config-printer.py:649 - msgid "Drivers" - msgstr "" - --#: ../system-config-printer.py:646 ../glade/NewPrinterWindow.glade.h:55 -+#: ../system-config-printer.py:650 ../glade/NewPrinterWindow.glade.h:54 - msgid "Downloadable Drivers" - msgstr "" - --#: ../system-config-printer.py:647 -+#: ../system-config-printer.py:651 - msgid "Users" - msgstr "" - --#: ../system-config-printer.py:682 -+#: ../system-config-printer.py:686 - msgid "Automatic rotation" - msgstr "" - --#: ../system-config-printer.py:989 -+#: ../system-config-printer.py:993 - #, fuzzy, python-format - msgid "Printer Properties - '%s' on %s" - msgstr "මුද්‍රකය" - - #. The Conflict button was pressed. --#: ../system-config-printer.py:996 -+#: ../system-config-printer.py:1000 - msgid "" - "There are conflicting options.\n" - "Changes can only be applied after\n" - "these conflicts are resolved." - msgstr "" - --#: ../system-config-printer.py:1214 -+#: ../system-config-printer.py:1218 - #, python-format - msgid "Printer configuration - %s" - msgstr "" - --#: ../system-config-printer.py:1217 -+#: ../system-config-printer.py:1221 - #, python-format - msgid "Connected to %s" - msgstr "" - - #. Update our copy of the printer's settings. --#: ../system-config-printer.py:1257 ../system-config-printer.py:2042 -+#: ../system-config-printer.py:1261 ../system-config-printer.py:2046 - msgid "obtaining queue details" - msgstr "" - --#: ../system-config-printer.py:1295 -+#: ../system-config-printer.py:1299 - msgid "Remove from Group" - msgstr "" - --#: ../system-config-printer.py:1361 -+#: ../system-config-printer.py:1365 - #, fuzzy - msgid "Network printer (discovered)" - msgstr "නව මුද්‍රකයක්(_P)" - --#: ../system-config-printer.py:1364 -+#: ../system-config-printer.py:1368 - msgid "Network class (discovered)" - msgstr "" - --#: ../system-config-printer.py:1370 ../system-config-printer.py:5524 --#: ../system-config-printer.py:5594 ../system-config-printer.py:5596 -+#: ../system-config-printer.py:1374 ../system-config-printer.py:5519 -+#: ../system-config-printer.py:5589 ../system-config-printer.py:5591 - msgid "Fax" - msgstr "" - --#: ../system-config-printer.py:1376 ../system-config-printer.py:1382 -+#: ../system-config-printer.py:1380 ../system-config-printer.py:1386 - #: ../troubleshoot/LocalOrRemote.py:30 - #, fuzzy - msgid "Network printer" - msgstr "නව මුද්‍රකයක්(_P)" - --#: ../system-config-printer.py:1379 -+#: ../system-config-printer.py:1383 - #, fuzzy - msgid "Network print share" - msgstr "නව මුද්‍රකයක්(_P)" - --#: ../system-config-printer.py:1508 ../glade/ConnectingDialog.glade.h:2 -+#: ../system-config-printer.py:1512 ../glade/ConnectingDialog.glade.h:2 - #, no-c-format, python-format - msgid "Opening connection to %s" - msgstr "" - --#: ../system-config-printer.py:1887 -+#: ../system-config-printer.py:1891 - msgid "Installable Options" - msgstr "" - --#: ../system-config-printer.py:1888 -+#: ../system-config-printer.py:1892 - #: ../glade/PrinterPropertiesDialog.glade.h:109 - msgid "Printer Options" - msgstr "" - --#: ../system-config-printer.py:1924 -+#: ../system-config-printer.py:1928 - #, python-format - msgid "modifying class %s" - msgstr "" - --#: ../system-config-printer.py:1926 ../system-config-printer.py:3019 --#: ../system-config-printer.py:3044 ../system-config-printer.py:6547 --#: ../system-config-printer.py:6559 ../system-config-printer.py:6581 -+#: ../system-config-printer.py:1930 ../system-config-printer.py:3037 -+#: ../system-config-printer.py:3062 ../system-config-printer.py:6495 -+#: ../system-config-printer.py:6507 ../system-config-printer.py:6529 - #, fuzzy, python-format - msgid "modifying printer %s" - msgstr "මුද්‍රකයන් මානකරන්න" - --#: ../system-config-printer.py:1941 -+#: ../system-config-printer.py:1945 - msgid "This will delete this class!" - msgstr "" - --#: ../system-config-printer.py:1942 -+#: ../system-config-printer.py:1946 - msgid "Proceed anyway?" - msgstr "" - -@@ -934,67 +943,67 @@ msgstr "" - #. but we have never fetched the server settings to see whether - #. the server is publishing shared printers. Fetch the settings - #. now so that we can update the "not published" label if necessary. --#: ../system-config-printer.py:2030 ../system-config-printer.py:3203 -+#: ../system-config-printer.py:2034 ../system-config-printer.py:3221 - msgid "fetching server settings" - msgstr "" - --#: ../system-config-printer.py:2100 -+#: ../system-config-printer.py:2104 - #, fuzzy - msgid "Set Default Printer" - msgstr "නව මුද්‍රකයක්(_P)" - --#: ../system-config-printer.py:2102 -+#: ../system-config-printer.py:2106 - msgid "Do you want to set this as the system-wide default printer?" - msgstr "" - --#: ../system-config-printer.py:2104 -+#: ../system-config-printer.py:2108 - #, fuzzy - msgid "Set as the _system-wide default printer" - msgstr "නව මුද්‍රකයක්(_P)" - --#: ../system-config-printer.py:2106 -+#: ../system-config-printer.py:2110 - msgid "_Clear my personal default setting" - msgstr "" - --#: ../system-config-printer.py:2107 -+#: ../system-config-printer.py:2111 - #, fuzzy - msgid "Set as my _personal default printer" - msgstr "නව මුද්‍රකයක්(_P)" - --#: ../system-config-printer.py:2112 -+#: ../system-config-printer.py:2116 - #, fuzzy - msgid "setting default printer" - msgstr "නව මුද්‍රකයක්(_P)" - --#: ../system-config-printer.py:2169 -+#: ../system-config-printer.py:2173 - msgid "printing test page" - msgstr "" - --#: ../system-config-printer.py:2182 ../system-config-printer.py:2217 --#: ../system-config-printer.py:5418 -+#: ../system-config-printer.py:2186 ../system-config-printer.py:2221 -+#: ../system-config-printer.py:5413 - msgid "Not possible" - msgstr "" - --#: ../system-config-printer.py:2183 ../system-config-printer.py:2218 -+#: ../system-config-printer.py:2187 ../system-config-printer.py:2222 - msgid "" - "The remote server did not accept the print job, most likely because the " - "printer is not shared." - msgstr "" - --#: ../system-config-printer.py:2195 ../system-config-printer.py:2210 -+#: ../system-config-printer.py:2199 ../system-config-printer.py:2214 - msgid "Submitted" - msgstr "" - --#: ../system-config-printer.py:2196 -+#: ../system-config-printer.py:2200 - #, python-format - msgid "Test page submitted as job %d" - msgstr "" - --#: ../system-config-printer.py:2203 -+#: ../system-config-printer.py:2207 - msgid "sending maintenance command" - msgstr "" - --#: ../system-config-printer.py:2211 -+#: ../system-config-printer.py:2215 - #, python-format - msgid "Maintenance command submitted as job %d" - msgstr "" -@@ -1002,74 +1011,74 @@ msgstr "" - #. The underlying cupsGetPPD2() function returned NULL without - #. setting an IPP error, so it'll be something like a failed - #. connection. --#: ../system-config-printer.py:2285 ../system-config-printer.py:2381 -+#: ../system-config-printer.py:2289 ../system-config-printer.py:2385 - msgid "Error" - msgstr "" - --#: ../system-config-printer.py:2286 -+#: ../system-config-printer.py:2290 - msgid "There was a problem connecting to the CUPS server." - msgstr "" - --#: ../system-config-printer.py:2382 -+#: ../system-config-printer.py:2386 - #, python-format - msgid "Option '%s' has value '%s' and cannot be edited." - msgstr "" - --#: ../system-config-printer.py:2466 -+#: ../system-config-printer.py:2476 - msgid "Marker levels are not reported for this printer." - msgstr "" - --#: ../system-config-printer.py:2763 -+#: ../system-config-printer.py:2773 - #, fuzzy - msgid "Cannot Rename" - msgstr "පරිශීලක නාමය:" - --#: ../system-config-printer.py:2764 -+#: ../system-config-printer.py:2774 - msgid "There are queued jobs." - msgstr "" - --#: ../system-config-printer.py:2822 -+#: ../system-config-printer.py:2840 - #, fuzzy - msgid "renaming printer" - msgstr "මුද්‍රකයන් මානකරන්න" - - #. for classes make sure all members - #. will get added --#: ../system-config-printer.py:2907 -+#: ../system-config-printer.py:2925 - #, fuzzy - msgid "copying printer" - msgstr "මුද්‍රකයන් මානකරන්න" - --#: ../system-config-printer.py:2971 -+#: ../system-config-printer.py:2989 - #, python-format - msgid "Really delete class '%s'?" - msgstr "" - --#: ../system-config-printer.py:2973 -+#: ../system-config-printer.py:2991 - #, fuzzy, python-format - msgid "Really delete printer '%s'?" - msgstr "මුද්‍රකයන් මානකරන්න" - --#: ../system-config-printer.py:2975 -+#: ../system-config-printer.py:2993 - msgid "Really delete selected destinations?" - msgstr "" - --#: ../system-config-printer.py:2996 -+#: ../system-config-printer.py:3014 - #, fuzzy, python-format - msgid "deleting printer %s" - msgstr "මුද්‍රකයන් මානකරන්න" - --#: ../system-config-printer.py:3070 -+#: ../system-config-printer.py:3088 - msgid "Publish Shared Printers" - msgstr "" - --#: ../system-config-printer.py:3071 -+#: ../system-config-printer.py:3089 - msgid "" - "Shared printers are not available to other people unless the 'Publish shared " - "printers' option is enabled in the server settings." - msgstr "" - --#: ../system-config-printer.py:3264 -+#: ../system-config-printer.py:3282 - msgid "modifying server settings" - msgstr "" - -@@ -1079,100 +1088,100 @@ msgstr "" - #. be unblocked. Unfortunately, this is not yet possible - #. (bug #440469). However, we can display a dialog to suggest - #. that now might be a good time to review the firewall settings. --#: ../system-config-printer.py:3289 -+#: ../system-config-printer.py:3307 - msgid "Review Firewall" - msgstr "" - --#: ../system-config-printer.py:3290 -+#: ../system-config-printer.py:3308 - msgid "" - "You may need to adjust the firewall to allow network printing to this " - "computer." - msgstr "" - --#: ../system-config-printer.py:3623 -+#: ../system-config-printer.py:3638 - msgid "Browsing not available (pysmbc not installed)" - msgstr "" - - #. SMB list columns --#: ../system-config-printer.py:3629 -+#: ../system-config-printer.py:3644 - msgid "Share" - msgstr "" - --#: ../system-config-printer.py:3635 -+#: ../system-config-printer.py:3650 - msgid "Comment" - msgstr "" - - #. IPP list columns --#: ../system-config-printer.py:3654 -+#: ../system-config-printer.py:3669 - msgid "Queue" - msgstr "" - --#: ../system-config-printer.py:3668 -+#: ../system-config-printer.py:3683 - msgid "" - "PostScript Printer Description files (*.ppd, *.PPD, *.ppd.gz, *.PPD.gz, *." - "PPD.GZ)" - msgstr "" - --#: ../system-config-printer.py:3677 -+#: ../system-config-printer.py:3692 - msgid "All files (*)" - msgstr "" - --#: ../system-config-printer.py:3713 ../system-config-printer.py:5970 --#: ../system-config-printer.py:6008 ../applet.py:124 -+#: ../system-config-printer.py:3728 ../system-config-printer.py:5918 -+#: ../system-config-printer.py:5956 ../applet.py:124 - msgid "Search" - msgstr "" - --#: ../system-config-printer.py:3736 ../system-config-printer.py:3760 --#: ../glade/NewPrinterWindow.glade.h:74 -+#: ../system-config-printer.py:3751 ../system-config-printer.py:3775 -+#: ../glade/NewPrinterWindow.glade.h:73 - msgid "New Printer" - msgstr "" - --#: ../system-config-printer.py:3747 -+#: ../system-config-printer.py:3762 - msgid "New Class" - msgstr "" - --#: ../system-config-printer.py:3752 -+#: ../system-config-printer.py:3767 - msgid "Change Device URI" - msgstr "" - --#: ../system-config-printer.py:3758 -+#: ../system-config-printer.py:3773 - msgid "Change Driver" - msgstr "" - --#: ../system-config-printer.py:3927 ../system-config-printer.py:3993 --#: ../system-config-printer.py:4289 ../system-config-printer.py:4487 --#: ../system-config-printer.py:5772 ../system-config-printer.py:5995 -+#: ../system-config-printer.py:3942 ../system-config-printer.py:4008 -+#: ../system-config-printer.py:4304 ../system-config-printer.py:4502 -+#: ../system-config-printer.py:5762 ../system-config-printer.py:5943 - msgid "Searching" - msgstr "" - --#: ../system-config-printer.py:3928 -+#: ../system-config-printer.py:3943 - msgid "Searching for downloadable drivers" - msgstr "" - --#: ../system-config-printer.py:3994 ../system-config-printer.py:4290 -+#: ../system-config-printer.py:4009 ../system-config-printer.py:4305 - msgid "Searching for drivers" - msgstr "" - --#: ../system-config-printer.py:4488 ../system-config-printer.py:5773 -+#: ../system-config-printer.py:4503 ../system-config-printer.py:5763 - msgid "Searching for printers" - msgstr "" - --#: ../system-config-printer.py:4497 -+#: ../system-config-printer.py:4512 - msgid "fetching device list" - msgstr "" - - #. Tell the user why he needs the plugin --#: ../system-config-printer.py:4579 -+#: ../system-config-printer.py:4594 - msgid "For this printer a proprietary driver plugin from HP is available.\n" - msgstr "" - --#: ../system-config-printer.py:4582 -+#: ../system-config-printer.py:4597 - msgid "" - "The installation of the plugin is required for your printer to work.\n" - "\n" - msgstr "" - --#: ../system-config-printer.py:4585 -+#: ../system-config-printer.py:4600 - msgid "" - "Installing the plugin is optional, it completes or enhances the " - "functionality\n" -@@ -1180,288 +1189,280 @@ msgid "" - "\n" - msgstr "" - --#: ../system-config-printer.py:4589 -+#: ../system-config-printer.py:4604 - msgid "The plugin provides the following features:\n" - msgstr "" - --#: ../system-config-printer.py:4592 -+#: ../system-config-printer.py:4607 - msgid " - Printing support\n" - msgstr "" - --#: ../system-config-printer.py:4595 -+#: ../system-config-printer.py:4610 - msgid " - Faster printing\n" - msgstr "" - --#: ../system-config-printer.py:4598 -+#: ../system-config-printer.py:4613 - msgid " - Better printout quality\n" - msgstr "" - --#: ../system-config-printer.py:4601 -+#: ../system-config-printer.py:4616 - msgid " - Extra printing features\n" - msgstr "" - --#: ../system-config-printer.py:4604 -+#: ../system-config-printer.py:4619 - msgid " - Scanning support\n" - msgstr "" - --#: ../system-config-printer.py:4607 -+#: ../system-config-printer.py:4622 - msgid " - Faster scanning\n" - msgstr "" - --#: ../system-config-printer.py:4610 -+#: ../system-config-printer.py:4625 - msgid " - Better scanning image quality\n" - msgstr "" - --#: ../system-config-printer.py:4613 -+#: ../system-config-printer.py:4628 - msgid " - Faxing support\n" - msgstr "" - --#: ../system-config-printer.py:4616 -+#: ../system-config-printer.py:4631 - msgid " - Extra fax features\n" - msgstr "" - --#: ../system-config-printer.py:4619 -+#: ../system-config-printer.py:4634 - msgid " - Better Input/Output support\n" - msgstr "" - --#: ../system-config-printer.py:4622 -+#: ../system-config-printer.py:4637 - msgid " - Extra user interface features\n" - msgstr "" - --#: ../system-config-printer.py:4625 -+#: ../system-config-printer.py:4640 - msgid " - Other extra features\n" - msgstr "" - --#: ../system-config-printer.py:4630 -+#: ../system-config-printer.py:4645 - msgid "Install plugin" - msgstr "" - --#: ../system-config-printer.py:4631 -+#: ../system-config-printer.py:4646 - #, fuzzy - msgid "Do not set up printer" - msgstr "නව මුද්‍රකයක්(_P)" - --#: ../system-config-printer.py:4632 -+#: ../system-config-printer.py:4647 - msgid "Set up without plugin" - msgstr "" - --#: ../system-config-printer.py:4634 ../troubleshoot/PrintTestPage.py:118 -+#: ../system-config-printer.py:4649 ../troubleshoot/PrintTestPage.py:118 - msgid "Yes" - msgstr "" - --#: ../system-config-printer.py:4635 ../troubleshoot/PrintTestPage.py:119 -+#: ../system-config-printer.py:4650 ../troubleshoot/PrintTestPage.py:119 - msgid "No" - msgstr "" - --#: ../system-config-printer.py:4809 ../system-config-printer.py:4813 -+#: ../system-config-printer.py:4824 ../system-config-printer.py:4828 - msgid " (Current)" - msgstr "" - --#: ../system-config-printer.py:4845 --msgid "HP Printer (HPLIP)" --msgstr "" -- --#: ../system-config-printer.py:4886 -+#: ../system-config-printer.py:4881 - msgid "Other" - msgstr "" - - #. device-info - #. PhysicalDevice obj - #. Separator? --#: ../system-config-printer.py:4902 -+#: ../system-config-printer.py:4897 - #, fuzzy - msgid "Network Printer" - msgstr "නව මුද්‍රකයක්(_P)" - --#: ../system-config-printer.py:4906 -+#: ../system-config-printer.py:4901 - #, fuzzy - msgid "Find Network Printer" - msgstr "නව මුද්‍රකයක්(_P)" - --#: ../system-config-printer.py:4979 ../system-config-printer.py:5376 -+#: ../system-config-printer.py:4974 ../system-config-printer.py:5371 - msgid "Scanning..." - msgstr "" - --#: ../system-config-printer.py:5034 ../system-config-printer.py:5798 -+#: ../system-config-printer.py:5029 - #, fuzzy - msgid "No Print Shares" - msgstr "නව මුද්‍රකයක්(_P)" - --#: ../system-config-printer.py:5035 -+#: ../system-config-printer.py:5030 - msgid "" - "There were no print shares found. Please check that the Samba service is " - "marked as trusted in your firewall configuration." - msgstr "" - --#: ../system-config-printer.py:5296 ../system-config-printer.py:5357 -+#: ../system-config-printer.py:5291 ../system-config-printer.py:5352 - msgid "Print Share Verified" - msgstr "" - --#: ../system-config-printer.py:5297 ../system-config-printer.py:5358 -+#: ../system-config-printer.py:5292 ../system-config-printer.py:5353 - msgid "This print share is accessible." - msgstr "" - --#: ../system-config-printer.py:5302 ../system-config-printer.py:5362 -+#: ../system-config-printer.py:5297 ../system-config-printer.py:5357 - msgid "This print share is not accessible." - msgstr "" - --#: ../system-config-printer.py:5305 -+#: ../system-config-printer.py:5300 - msgid "Print Share Inaccessible" - msgstr "" - --#: ../system-config-printer.py:5361 -+#: ../system-config-printer.py:5356 - msgid "Inaccessible" - msgstr "" - --#: ../system-config-printer.py:5419 -+#: ../system-config-printer.py:5414 - #, python-format - msgid "It is not possible to obtain a list of queues from '%s'." - msgstr "" - --#: ../system-config-printer.py:5421 -+#: ../system-config-printer.py:5416 - msgid "" - "Obtaining a list of queues is a CUPS extension to IPP. Network printers do " - "not support it." - msgstr "" - --#: ../system-config-printer.py:5424 -+#: ../system-config-printer.py:5419 - msgid "No queues" - msgstr "" - --#: ../system-config-printer.py:5425 -+#: ../system-config-printer.py:5420 - msgid "There are no queues available." - msgstr "" - --#: ../system-config-printer.py:5516 -+#: ../system-config-printer.py:5511 - msgid "Parallel Port" - msgstr "" - --#: ../system-config-printer.py:5518 -+#: ../system-config-printer.py:5513 - msgid "Serial Port" - msgstr "" - --#: ../system-config-printer.py:5520 -+#: ../system-config-printer.py:5515 - #, fuzzy - msgid "USB" - msgstr "SMB" - --#: ../system-config-printer.py:5522 ../system-config-printer.py:5525 -+#: ../system-config-printer.py:5517 ../system-config-printer.py:5520 - msgid "HP Linux Imaging and Printing (HPLIP)" - msgstr "" - --#: ../system-config-printer.py:5527 -+#: ../system-config-printer.py:5522 - msgid "Hardware Abstraction Layer (HAL)" - msgstr "" - --#: ../system-config-printer.py:5529 -+#: ../system-config-printer.py:5524 - msgid "AppSocket/HP JetDirect" - msgstr "" - --#: ../system-config-printer.py:5538 -+#: ../system-config-printer.py:5533 - #, python-format - msgid "LPD/LPR queue '%s'" - msgstr "" - --#: ../system-config-printer.py:5540 -+#: ../system-config-printer.py:5535 - #, fuzzy - msgid "LPD/LPR queue" - msgstr "LPD" - --#: ../system-config-printer.py:5543 -+#: ../system-config-printer.py:5538 - msgid "Windows Printer via SAMBA" - msgstr "" - --#: ../system-config-printer.py:5545 ../glade/NewPrinterWindow.glade.h:66 -+#: ../system-config-printer.py:5540 ../glade/NewPrinterWindow.glade.h:65 - msgid "IPP" - msgstr "IPP" - --#: ../system-config-printer.py:5547 -+#: ../system-config-printer.py:5542 - msgid "HTTP" - msgstr "" - --#: ../system-config-printer.py:5632 -+#: ../system-config-printer.py:5624 - msgid "A printer connected to the parallel port." - msgstr "" - --#: ../system-config-printer.py:5634 -+#: ../system-config-printer.py:5626 - msgid "A printer connected to a USB port." - msgstr "" - --#: ../system-config-printer.py:5636 -+#: ../system-config-printer.py:5628 - msgid "" - "HPLIP software driving a printer, or the printer function of a multi-" - "function device." - msgstr "" - --#: ../system-config-printer.py:5639 -+#: ../system-config-printer.py:5631 - msgid "" - "HPLIP software driving a fax machine, or the fax function of a multi-" - "function device." - msgstr "" - --#: ../system-config-printer.py:5642 -+#: ../system-config-printer.py:5634 - msgid "Local printer detected by the Hardware Abstraction Layer (HAL)." - msgstr "" - --#: ../system-config-printer.py:5799 --msgid "HPLIP cannot find the device." --msgstr "" -- --#: ../system-config-printer.py:5881 -+#: ../system-config-printer.py:5831 - msgid "No printer was found at that address." - msgstr "" - --#: ../system-config-printer.py:6020 -+#: ../system-config-printer.py:5968 - #, fuzzy - msgid "-- Select from search results --" - msgstr "මුද්‍රකයේ නම" - --#: ../system-config-printer.py:6022 -+#: ../system-config-printer.py:5970 - msgid "-- No matches found --" - msgstr "" - --#: ../system-config-printer.py:6203 -+#: ../system-config-printer.py:6151 - msgid " (recommended)" - msgstr "" - --#: ../system-config-printer.py:6217 -+#: ../system-config-printer.py:6165 - msgid "This PPD is generated by foomatic." - msgstr "" - --#: ../system-config-printer.py:6241 -+#: ../system-config-printer.py:6189 - #, fuzzy - msgid "OpenPrinting" - msgstr "මුද්‍රණය කරමින්" - --#: ../system-config-printer.py:6252 -+#: ../system-config-printer.py:6200 - msgid "Distributable" - msgstr "" - --#: ../system-config-printer.py:6293 -+#: ../system-config-printer.py:6241 - msgid ", " - msgstr "" - --#: ../system-config-printer.py:6298 -+#: ../system-config-printer.py:6246 - #, python-format - msgid "" - "\n" - "(%s)" - msgstr "" - --#: ../system-config-printer.py:6303 -+#: ../system-config-printer.py:6251 - msgid "No support contacts known" - msgstr "" - --#: ../system-config-printer.py:6307 ../system-config-printer.py:6320 -+#: ../system-config-printer.py:6255 ../system-config-printer.py:6268 - msgid "Not specified." - msgstr "" - - #. Foomatic database problem of some sort. --#: ../system-config-printer.py:6360 -+#: ../system-config-printer.py:6308 - msgid "Database error" - msgstr "" - --#: ../system-config-printer.py:6361 -+#: ../system-config-printer.py:6309 - #, python-format - msgid "The '%s' driver cannot be used with printer '%s %s'." - msgstr "" -@@ -1469,60 +1470,60 @@ msgstr "" - #. This printer references some XML that is not - #. installed by default. Point the user at the - #. package they need to install. --#: ../system-config-printer.py:6371 -+#: ../system-config-printer.py:6319 - #, python-format - msgid "You will need to install the '%s' package in order to use this driver." - msgstr "" - - #. This error came from trying to open the PPD file. --#: ../system-config-printer.py:6378 -+#: ../system-config-printer.py:6326 - msgid "PPD error" - msgstr "" - --#: ../system-config-printer.py:6380 -+#: ../system-config-printer.py:6328 - msgid "Failed to read PPD file. Possible reason follows:" - msgstr "" - - #. Failed to get PPD downloaded from OpenPrinting XXX --#: ../system-config-printer.py:6397 -+#: ../system-config-printer.py:6345 - msgid "Downloadable drivers" - msgstr "" - --#: ../system-config-printer.py:6398 -+#: ../system-config-printer.py:6346 - msgid "Failed to download PPD." - msgstr "" - --#: ../system-config-printer.py:6405 -+#: ../system-config-printer.py:6353 - msgid "fetching PPD" - msgstr "" - --#: ../system-config-printer.py:6434 ../system-config-printer.py:6472 -+#: ../system-config-printer.py:6382 ../system-config-printer.py:6420 - msgid "No Installable Options" - msgstr "" - --#: ../system-config-printer.py:6520 -+#: ../system-config-printer.py:6468 - #, fuzzy, python-format - msgid "adding printer %s" - msgstr "මුද්‍රකයන් මානකරන්න" - --#: ../system-config-printer.py:6669 -+#: ../system-config-printer.py:6617 - msgid "Would you like to print a test page?" - msgstr "" - --#: ../system-config-printer.py:6722 -+#: ../system-config-printer.py:6670 - msgid "Install driver" - msgstr "" - --#: ../system-config-printer.py:6723 ../troubleshoot/CheckPPDSanity.py:131 -+#: ../system-config-printer.py:6671 ../troubleshoot/CheckPPDSanity.py:131 - #, python-format - msgid "Printer '%s' requires the %s package but it is not currently installed." - msgstr "" - --#: ../system-config-printer.py:6739 -+#: ../system-config-printer.py:6687 - msgid "Missing driver" - msgstr "" - --#: ../system-config-printer.py:6740 -+#: ../system-config-printer.py:6688 - #, python-format - msgid "" - "Printer '%s' requires the '%s' program but it is not currently installed. " -@@ -1638,108 +1639,104 @@ msgid "Enter device URI" - msgstr "" - - #: ../glade/NewPrinterWindow.glade.h:5 --msgid "HP Printer (HPLIP) via network" --msgstr "" -- --#: ../glade/NewPrinterWindow.glade.h:6 - msgid "IPP Printer" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:7 -+#: ../glade/NewPrinterWindow.glade.h:6 - msgid "License Terms" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:8 -+#: ../glade/NewPrinterWindow.glade.h:7 - msgid "Location of the LPD network printer" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:9 -+#: ../glade/NewPrinterWindow.glade.h:8 - msgid "Location of the network printer" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:10 -+#: ../glade/NewPrinterWindow.glade.h:9 - msgid "Location (optional)" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:11 -+#: ../glade/NewPrinterWindow.glade.h:10 - #, fuzzy - msgid "Network Printer" - msgstr "නව මුද්‍රකයක්(_P)" - --#: ../glade/NewPrinterWindow.glade.h:12 -+#: ../glade/NewPrinterWindow.glade.h:11 - msgid "Note" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:13 -+#: ../glade/NewPrinterWindow.glade.h:12 - msgid "Output Quality" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:14 -+#: ../glade/NewPrinterWindow.glade.h:13 - msgid "Printer Name" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:15 -+#: ../glade/NewPrinterWindow.glade.h:14 - msgid "SMB Printer" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:16 -+#: ../glade/NewPrinterWindow.glade.h:15 - msgid "Select Driver" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:17 -+#: ../glade/NewPrinterWindow.glade.h:16 - msgid "Settings of the serial port" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:18 -+#: ../glade/NewPrinterWindow.glade.h:17 - msgid "smb://[workgroup/]server[:port]/printer" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:19 -+#: ../glade/NewPrinterWindow.glade.h:18 - msgid "Choose Class Members" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:20 -+#: ../glade/NewPrinterWindow.glade.h:19 - msgid "Choose Driver" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:21 -+#: ../glade/NewPrinterWindow.glade.h:20 - msgid "Describe Printer" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:22 -+#: ../glade/NewPrinterWindow.glade.h:21 - msgid "Existing Settings" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:23 -+#: ../glade/NewPrinterWindow.glade.h:22 - msgid "Installable Options" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:24 -+#: ../glade/NewPrinterWindow.glade.h:23 - msgid "Select Device" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:25 -+#: ../glade/NewPrinterWindow.glade.h:24 - msgid "Baud Rate" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:26 -+#: ../glade/NewPrinterWindow.glade.h:25 - msgid "Browse..." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:27 -+#: ../glade/NewPrinterWindow.glade.h:26 - msgid "Comments..." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:28 -+#: ../glade/NewPrinterWindow.glade.h:27 - #, fuzzy - msgid "Connection" - msgstr "ස්ථානය:" - --#: ../glade/NewPrinterWindow.glade.h:29 -+#: ../glade/NewPrinterWindow.glade.h:28 - msgid "Data Bits" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:30 -+#: ../glade/NewPrinterWindow.glade.h:29 - msgid "" - "Default\n" - "1200\n" -@@ -1752,14 +1749,14 @@ msgid "" - "115200" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:39 -+#: ../glade/NewPrinterWindow.glade.h:38 - msgid "" - "Default\n" - "8\n" - "7" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:42 -+#: ../glade/NewPrinterWindow.glade.h:41 - msgid "" - "Default\n" - "None\n" -@@ -1767,7 +1764,7 @@ msgid "" - "Even" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:46 -+#: ../glade/NewPrinterWindow.glade.h:45 - msgid "" - "Default\n" - "None\n" -@@ -1776,194 +1773,194 @@ msgid "" - "DTR/DSR (Hardware)" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:51 -+#: ../glade/NewPrinterWindow.glade.h:50 - #: ../glade/PrinterPropertiesDialog.glade.h:35 - msgid "Description:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:52 ../troubleshoot/DeviceListed.py:40 -+#: ../glade/NewPrinterWindow.glade.h:51 ../troubleshoot/DeviceListed.py:40 - msgid "Device URI" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:53 -+#: ../glade/NewPrinterWindow.glade.h:52 - msgid "Device description." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:54 -+#: ../glade/NewPrinterWindow.glade.h:53 - msgid "DirectJet" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:56 -+#: ../glade/NewPrinterWindow.glade.h:55 - msgid "Driver details" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:57 -+#: ../glade/NewPrinterWindow.glade.h:56 - msgid "Empty" - msgstr "ශුන්‍ය" - --#: ../glade/NewPrinterWindow.glade.h:58 -+#: ../glade/NewPrinterWindow.glade.h:57 - msgid "Find _Queue..." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:59 -+#: ../glade/NewPrinterWindow.glade.h:58 - msgid "Flow Control" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:60 -+#: ../glade/NewPrinterWindow.glade.h:59 - msgid "" - "For the printer you have selected there are drivers available for download." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:61 -+#: ../glade/NewPrinterWindow.glade.h:60 - msgid "Free software" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:62 -+#: ../glade/NewPrinterWindow.glade.h:61 - msgid "Graphics:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:63 -+#: ../glade/NewPrinterWindow.glade.h:62 - #, fuzzy - msgid "Host:" - msgstr "ධාරක නම" - --#: ../glade/NewPrinterWindow.glade.h:64 -+#: ../glade/NewPrinterWindow.glade.h:63 - msgid "Human-readable description such as \"HP LaserJet with Duplexer\"" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:65 -+#: ../glade/NewPrinterWindow.glade.h:64 - msgid "Human-readable location such as \"Lab 1\"" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:67 -+#: ../glade/NewPrinterWindow.glade.h:66 - msgid "LPD" - msgstr "LPD" - --#: ../glade/NewPrinterWindow.glade.h:68 -+#: ../glade/NewPrinterWindow.glade.h:67 - msgid "License:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:69 -+#: ../glade/NewPrinterWindow.glade.h:68 - #, fuzzy - msgid "Line art:" - msgstr "මුද්‍රකයේ තත්වය:" - --#: ../glade/NewPrinterWindow.glade.h:70 -+#: ../glade/NewPrinterWindow.glade.h:69 - msgid "Local Driver" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:71 -+#: ../glade/NewPrinterWindow.glade.h:70 - msgid "Make and model:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:72 -+#: ../glade/NewPrinterWindow.glade.h:71 - msgid "Manufacturer" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:73 -+#: ../glade/NewPrinterWindow.glade.h:72 - #, fuzzy - msgid "Network" - msgstr "නව මුද්‍රකයක්(_P)" - --#: ../glade/NewPrinterWindow.glade.h:75 -+#: ../glade/NewPrinterWindow.glade.h:74 - msgid "No, I do not accept this license" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:76 -+#: ../glade/NewPrinterWindow.glade.h:75 - msgid "Parity" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:78 -+#: ../glade/NewPrinterWindow.glade.h:77 - msgid "Patented algorithms" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:79 -+#: ../glade/NewPrinterWindow.glade.h:78 - msgid "Photo:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:80 -+#: ../glade/NewPrinterWindow.glade.h:79 - #, fuzzy - msgid "Port number:" - msgstr "සිදුරු අංකය" - --#: ../glade/NewPrinterWindow.glade.h:81 -+#: ../glade/NewPrinterWindow.glade.h:80 - msgid "" - "PostScript Printer Description (PPD) files can often be found on the driver " - "disk that comes with the printer. For PostScript printers they are often " - "part of the Windows® driver." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:82 -+#: ../glade/NewPrinterWindow.glade.h:81 - #, fuzzy - msgid "Printer model:" - msgstr "මුද්‍රකයේ නම" - --#: ../glade/NewPrinterWindow.glade.h:83 -+#: ../glade/NewPrinterWindow.glade.h:82 - msgid "Probe" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:84 -+#: ../glade/NewPrinterWindow.glade.h:83 - msgid "Prompt user if authentication is required" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:85 -+#: ../glade/NewPrinterWindow.glade.h:84 - msgid "Provide PPD file" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:86 -+#: ../glade/NewPrinterWindow.glade.h:85 - msgid "Queue:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:87 -+#: ../glade/NewPrinterWindow.glade.h:86 - msgid "SCSI" - msgstr "SCSI" - --#: ../glade/NewPrinterWindow.glade.h:88 -+#: ../glade/NewPrinterWindow.glade.h:87 - msgid "SMB" - msgstr "SMB" - --#: ../glade/NewPrinterWindow.glade.h:89 -+#: ../glade/NewPrinterWindow.glade.h:88 - msgid "Search for a printer driver to download" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:90 -+#: ../glade/NewPrinterWindow.glade.h:89 - #, fuzzy - msgid "Searching..." - msgstr "පරිස්ථිතියන්" - --#: ../glade/NewPrinterWindow.glade.h:91 -+#: ../glade/NewPrinterWindow.glade.h:90 - msgid "Select A File" - msgstr "ගොනුවක් තෝරාගන්න" - --#: ../glade/NewPrinterWindow.glade.h:92 -+#: ../glade/NewPrinterWindow.glade.h:91 - msgid "Select printer from database" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:93 -+#: ../glade/NewPrinterWindow.glade.h:92 - msgid "Serial" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:94 -+#: ../glade/NewPrinterWindow.glade.h:93 - msgid "Set authentication details now" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:95 -+#: ../glade/NewPrinterWindow.glade.h:94 - msgid "Short name for this printer such as \"laserjet\"" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:96 -+#: ../glade/NewPrinterWindow.glade.h:95 - msgid "Supplier:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:97 -+#: ../glade/NewPrinterWindow.glade.h:96 - msgid "Support:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:98 -+#: ../glade/NewPrinterWindow.glade.h:97 - msgid "Text:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:99 -+#: ../glade/NewPrinterWindow.glade.h:98 - msgid "" - "The foomatic printer database contains various manufacturer provided " - "PostScript Printer Description (PPD) files and also can generate PPD files " -@@ -1972,68 +1969,68 @@ msgid "" - "printer." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:100 -+#: ../glade/NewPrinterWindow.glade.h:99 - msgid "" - "These drivers do not come from your operating system supplier and will not " - "be covered by their commercial support. See the support and license terms " - "of the driver's supplier." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:101 -+#: ../glade/NewPrinterWindow.glade.h:100 - msgid "" - "This driver supports additional hardware that may be installed in the " - "printer." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:102 -+#: ../glade/NewPrinterWindow.glade.h:101 - msgid "" - "This is done by assuming that options with the same name do have the same " - "meaning. Settings of options that are not present in the new PPD will be " - "lost and options only present in the new PPD will be set to default." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:103 -+#: ../glade/NewPrinterWindow.glade.h:102 - msgid "" - "This way all current option settings will be lost. The default settings of " - "the new PPD will be used. " - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:104 -+#: ../glade/NewPrinterWindow.glade.h:103 - msgid "Try to copy the option settings over from the old PPD. " - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:105 -+#: ../glade/NewPrinterWindow.glade.h:104 - msgid "URI:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:107 -+#: ../glade/NewPrinterWindow.glade.h:106 - msgid "Use the new PPD (Postscript Printer Description) as is." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:109 -+#: ../glade/NewPrinterWindow.glade.h:108 - msgid "" - "With this choice no driver download will be performed. In the next steps a " - "locally installed driver will be selected." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:110 -+#: ../glade/NewPrinterWindow.glade.h:109 - msgid "Yes, I accept this license" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:111 -+#: ../glade/NewPrinterWindow.glade.h:110 - msgid "_Search" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:112 -+#: ../glade/NewPrinterWindow.glade.h:111 - msgid "_Verify..." - msgstr "තහවුරු කරන්න(_V)..." - --#: ../glade/NewPrinterWindow.glade.h:113 -+#: ../glade/NewPrinterWindow.glade.h:112 - #: ../glade/PrinterPropertiesDialog.glade.h:128 - msgid "move left" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:114 -+#: ../glade/NewPrinterWindow.glade.h:113 - #: ../glade/PrinterPropertiesDialog.glade.h:129 - msgid "move right" - msgstr "" -@@ -2896,7 +2893,7 @@ msgstr "" - msgid "Remember to load paper of type '%s' into the printer first." - msgstr "" - --#: ../troubleshoot/PrintTestPage.py:399 -+#: ../troubleshoot/PrintTestPage.py:416 - msgid "Error submitting test page" - msgstr "" - -diff -up system-config-printer-1.1.5/po/sk.po.git-1.1.x system-config-printer-1.1.5/po/sk.po ---- system-config-printer-1.1.5/po/sk.po.git-1.1.x 2009-03-03 22:21:46.000000000 +0000 -+++ system-config-printer-1.1.5/po/sk.po 2009-03-10 17:43:31.000000000 +0000 -@@ -10,7 +10,7 @@ msgid "" - msgstr "" - "Project-Id-Version: system-config-printer\n" - "Report-Msgid-Bugs-To: https://bugzilla.redhat.com/bugzilla\n" --"POT-Creation-Date: 2009-03-02 23:22+0000\n" -+"POT-Creation-Date: 2009-03-10 16:51+0000\n" - "PO-Revision-Date: 2009-02-10 15:51+0100\n" - "Last-Translator: Ondrej Šulek \n" - "Language-Team: Slovak \n" -@@ -56,11 +56,11 @@ msgstr "" - msgid "Enter IP address" - msgstr "Zadajte IP adresu" - --#: ../authconn.py:35 ../glade/NewPrinterWindow.glade.h:108 -+#: ../authconn.py:35 ../glade/NewPrinterWindow.glade.h:107 - msgid "Username:" - msgstr "Používateľské meno:" - --#: ../authconn.py:36 ../glade/NewPrinterWindow.glade.h:77 -+#: ../authconn.py:36 ../glade/NewPrinterWindow.glade.h:76 - msgid "Password:" - msgstr "Heslo:" - -@@ -68,7 +68,7 @@ msgstr "Heslo:" - msgid "Domain:" - msgstr "Doména:" - --#: ../authconn.py:46 -+#: ../authconn.py:46 ../authconn.py:409 - msgid "Authentication" - msgstr "Overenie" - -@@ -76,43 +76,52 @@ msgstr "Overenie" - msgid "Remember password" - msgstr "Zapamätať heslo" - --#: ../authconn.py:211 ../authconn.py:232 -+#: ../authconn.py:208 -+#, python-format -+msgid "Unauthorized request (%s)" -+msgstr "" -+ -+#: ../authconn.py:209 -+msgid "You are not authorized to carry out therequested action." -+msgstr "" -+ -+#: ../authconn.py:212 ../authconn.py:233 - msgid "Operation canceled" - msgstr "Operácia zrušená" - --#: ../authconn.py:253 -+#: ../authconn.py:250 - #, python-format - msgid "CUPS server error (%s)" - msgstr "Chyba CUPS servera (%s)" - --#: ../authconn.py:255 ../errordialogs.py:57 --#: ../troubleshoot/PrintTestPage.py:400 -+#: ../authconn.py:252 ../errordialogs.py:56 ../errordialogs.py:70 -+msgid "CUPS server error" -+msgstr "Chyba CUPS servera" -+ -+#: ../authconn.py:261 ../errordialogs.py:57 -+#: ../troubleshoot/PrintTestPage.py:417 - #, python-format - msgid "There was an error during the CUPS operation: '%s'." - msgstr "Došlo k chybe počas vykonávania akcie CUPS: '%s'." - --#: ../authconn.py:258 -+#: ../authconn.py:264 - msgid "Retry" - msgstr "Opakovať" - --#: ../authconn.py:379 ../authconn.py:381 ../errordialogs.py:65 ../pysmb.py:75 -+#: ../authconn.py:385 ../authconn.py:387 ../errordialogs.py:65 ../pysmb.py:75 - #: ../pysmb.py:77 - msgid "Not authorized" - msgstr "Neautorizovaný" - --#: ../authconn.py:382 ../pysmb.py:78 -+#: ../authconn.py:388 ../pysmb.py:78 - msgid "The password may be incorrect." - msgstr "Heslo môže byť nesprávne." - --#: ../authconn.py:400 -+#: ../authconn.py:407 - #, python-format - msgid "Authentication (%s)" - msgstr "Overenie (%s)" - --#: ../errordialogs.py:56 ../errordialogs.py:70 --msgid "CUPS server error" --msgstr "Chyba CUPS servera" -- - #: ../errordialogs.py:66 - msgid "" - "The password may be incorrect, or the server may be configured to deny " -@@ -139,7 +148,7 @@ msgstr "Je potrebná aktualizácia" - msgid "Server error" - msgstr "Chyba servera" - --#: ../errordialogs.py:82 ../system-config-printer.py:1219 -+#: ../errordialogs.py:82 ../system-config-printer.py:1223 - msgid "Not connected" - msgstr "Nepripojená" - -@@ -161,7 +170,7 @@ msgstr "_Nová skupina" - msgid "_New Group from Selection" - msgstr "_Nová skupina z výberu" - --#: ../GroupsPane.py:98 ../system-config-printer.py:393 -+#: ../GroupsPane.py:98 ../system-config-printer.py:397 - msgid "_Rename" - msgstr "P_remenovať" - -@@ -228,7 +237,7 @@ msgid "Document" - msgstr "Dokument" - - #: ../jobviewer.py:212 ../my-default-printer.py:153 --#: ../system-config-printer.py:366 ../system-config-printer.py:1367 -+#: ../system-config-printer.py:370 ../system-config-printer.py:1371 - #: ../troubleshoot/PrintTestPage.py:84 - msgid "Printer" - msgstr "Tlačiareň" -@@ -265,8 +274,8 @@ msgstr "Stav tlače dokumentu (%s)" - - #: ../jobviewer.py:386 ../jobviewer.py:451 ../jobviewer.py:452 - #: ../jobviewer.py:492 ../jobviewer.py:600 ../jobviewer.py:727 --#: ../jobviewer.py:1196 ../jobviewer.py:1222 ../system-config-printer.py:2546 --#: ../glade/NewPrinterWindow.glade.h:106 -+#: ../jobviewer.py:1196 ../jobviewer.py:1222 ../system-config-printer.py:2556 -+#: ../glade/NewPrinterWindow.glade.h:105 - #: ../troubleshoot/ChooseNetworkPrinter.py:101 - #: ../troubleshoot/ChooseNetworkPrinter.py:102 - #: ../troubleshoot/ChooseNetworkPrinter.py:105 -@@ -354,12 +363,12 @@ msgstr "Pozdržať do víkendu" - msgid "Pending" - msgstr "Čakajúci" - --#: ../jobviewer.py:591 ../system-config-printer.py:186 -+#: ../jobviewer.py:591 ../system-config-printer.py:190 - #: ../troubleshoot/PrintTestPage.py:43 - msgid "Processing" - msgstr "Spracúva sa" - --#: ../jobviewer.py:592 ../system-config-printer.py:188 -+#: ../jobviewer.py:592 ../system-config-printer.py:192 - #: ../troubleshoot/PrintTestPage.py:44 - msgid "Stopped" - msgstr "Zastavené" -@@ -470,8 +479,8 @@ msgstr "_Použiť predvolené nastavenie - msgid "_Set Default" - msgstr "Na_staviť ako predvolenú" - --#: ../my-default-printer.py:158 ../system-config-printer.py:423 --#: ../system-config-printer.py:3660 ../troubleshoot/ChooseNetworkPrinter.py:37 -+#: ../my-default-printer.py:158 ../system-config-printer.py:427 -+#: ../system-config-printer.py:3675 ../troubleshoot/ChooseNetworkPrinter.py:37 - #: ../troubleshoot/ChoosePrinter.py:38 - msgid "Location" - msgstr "Umiestnenie" -@@ -500,7 +509,7 @@ msgstr "Predvolené správanie" - msgid "Authenticated" - msgstr "Overené" - --#: ../ppdippstr.py:50 ../system-config-printer.py:6259 -+#: ../ppdippstr.py:50 ../system-config-printer.py:6207 - msgid "None" - msgstr "Žiadny" - -@@ -713,125 +722,125 @@ msgstr "600 dpi, farebný, čierna + far - msgid "1200 dpi, photo, black + color cartridge, photo paper" - msgstr "1200 dpi, fotografický, čierna + farebná náplň, foto papier" - --#: ../system-config-printer.py:127 -+#: ../system-config-printer.py:131 - msgid "To do this, select System->Administration->Firewall from the main menu." - msgstr "" - "K vykonaniu tohto vyberte Systém -> Administrácia -> Firewall z hlavného " - "menu." - --#: ../system-config-printer.py:185 -+#: ../system-config-printer.py:189 - msgid "Idle" - msgstr "Nečinná" - --#: ../system-config-printer.py:187 -+#: ../system-config-printer.py:191 - msgid "Busy" - msgstr "Zaneprázdnená" - --#: ../system-config-printer.py:372 ../system-config-printer.py:1373 -+#: ../system-config-printer.py:376 ../system-config-printer.py:1377 - msgid "Class" - msgstr "Trieda" - --#: ../system-config-printer.py:399 -+#: ../system-config-printer.py:403 - msgid "Set As De_fault" - msgstr "_Nastaviť ako predvolenú" - --#: ../system-config-printer.py:403 -+#: ../system-config-printer.py:407 - msgid "_Create class" - msgstr "_Vytvoriť triedu" - --#: ../system-config-printer.py:405 -+#: ../system-config-printer.py:409 - msgid "View Print _Queue" - msgstr "Zobraziť _frontu tlačiarne" - --#: ../system-config-printer.py:407 -+#: ../system-config-printer.py:411 - msgid "_Add to Group" - msgstr "Prid_ať do skupiny" - --#: ../system-config-printer.py:409 -+#: ../system-config-printer.py:413 - msgid "Save Results as _Group" - msgstr "Uložiť výsledky ako _Skupinu" - --#: ../system-config-printer.py:411 -+#: ../system-config-printer.py:415 - msgid "Save Filter as _Search Group" - msgstr "Uložiť filter ako _hľadajú skupinu" - --#: ../system-config-printer.py:415 -+#: ../system-config-printer.py:419 - msgid "E_nabled" - msgstr "Povo_lená" - --#: ../system-config-printer.py:417 -+#: ../system-config-printer.py:421 - msgid "_Shared" - msgstr "_Zdieľaná" - --#: ../system-config-printer.py:421 ../troubleshoot/ChooseNetworkPrinter.py:35 -+#: ../system-config-printer.py:425 ../troubleshoot/ChooseNetworkPrinter.py:35 - #: ../troubleshoot/ChoosePrinter.py:36 ../troubleshoot/DeviceListed.py:36 - msgid "Name" - msgstr "Názov" - --#: ../system-config-printer.py:422 -+#: ../system-config-printer.py:426 - msgid "Description" - msgstr "Popis" - --#: ../system-config-printer.py:424 -+#: ../system-config-printer.py:428 - msgid "Manufacturer / Model" - msgstr "Výrobca / Model" - - #. Printer state reasons list --#: ../system-config-printer.py:499 -+#: ../system-config-printer.py:503 - msgid "Message" - msgstr "Správa" - --#: ../system-config-printer.py:534 -+#: ../system-config-printer.py:538 - msgid "Problems?" - msgstr "Problémy?" - --#: ../system-config-printer.py:637 ../system-config-printer.py:639 -+#: ../system-config-printer.py:641 ../system-config-printer.py:643 - msgid "Members of this class" - msgstr "Členovia tejto triedy" - --#: ../system-config-printer.py:638 ../system-config-printer.py:640 -+#: ../system-config-printer.py:642 ../system-config-printer.py:644 - msgid "Others" - msgstr "Ostatné" - --#: ../system-config-printer.py:641 -+#: ../system-config-printer.py:645 - msgid "Devices" - msgstr "Zariadenia" - --#: ../system-config-printer.py:642 -+#: ../system-config-printer.py:646 - msgid "Connections" - msgstr "Spojenia" - --#: ../system-config-printer.py:643 -+#: ../system-config-printer.py:647 - msgid "Makes" - msgstr "Výrobcovia" - --#: ../system-config-printer.py:644 -+#: ../system-config-printer.py:648 - msgid "Models" - msgstr "Modely" - --#: ../system-config-printer.py:645 -+#: ../system-config-printer.py:649 - msgid "Drivers" - msgstr "Ovládače" - --#: ../system-config-printer.py:646 ../glade/NewPrinterWindow.glade.h:55 -+#: ../system-config-printer.py:650 ../glade/NewPrinterWindow.glade.h:54 - msgid "Downloadable Drivers" - msgstr "Ovládače k stiahnutiu" - --#: ../system-config-printer.py:647 -+#: ../system-config-printer.py:651 - msgid "Users" - msgstr "Užívatelia" - --#: ../system-config-printer.py:682 -+#: ../system-config-printer.py:686 - msgid "Automatic rotation" - msgstr "Automatické otočenie" - --#: ../system-config-printer.py:989 -+#: ../system-config-printer.py:993 - #, fuzzy, python-format - msgid "Printer Properties - '%s' on %s" - msgstr "Vlastnosti tlačiarne - `%s' na %s" - - #. The Conflict button was pressed. --#: ../system-config-printer.py:996 -+#: ../system-config-printer.py:1000 - msgid "" - "There are conflicting options.\n" - "Changes can only be applied after\n" -@@ -841,78 +850,78 @@ msgstr "" - "Zmeny môžu byť použité až po\n" - "vyriešení týchto problémov." - --#: ../system-config-printer.py:1214 -+#: ../system-config-printer.py:1218 - #, python-format - msgid "Printer configuration - %s" - msgstr "Nastavenie tlačiarne - %s" - --#: ../system-config-printer.py:1217 -+#: ../system-config-printer.py:1221 - #, python-format - msgid "Connected to %s" - msgstr "Pripojené k %s" - - #. Update our copy of the printer's settings. --#: ../system-config-printer.py:1257 ../system-config-printer.py:2042 -+#: ../system-config-printer.py:1261 ../system-config-printer.py:2046 - msgid "obtaining queue details" - msgstr "získavanie podrobností o fronte" - --#: ../system-config-printer.py:1295 -+#: ../system-config-printer.py:1299 - msgid "Remove from Group" - msgstr "Odstrániť zo skupiny" - --#: ../system-config-printer.py:1361 -+#: ../system-config-printer.py:1365 - msgid "Network printer (discovered)" - msgstr "Sieťová tlačiareň (nájdená)" - --#: ../system-config-printer.py:1364 -+#: ../system-config-printer.py:1368 - msgid "Network class (discovered)" - msgstr "Sieťová trieda (nájdená)" - --#: ../system-config-printer.py:1370 ../system-config-printer.py:5524 --#: ../system-config-printer.py:5594 ../system-config-printer.py:5596 -+#: ../system-config-printer.py:1374 ../system-config-printer.py:5519 -+#: ../system-config-printer.py:5589 ../system-config-printer.py:5591 - msgid "Fax" - msgstr "Fax" - --#: ../system-config-printer.py:1376 ../system-config-printer.py:1382 -+#: ../system-config-printer.py:1380 ../system-config-printer.py:1386 - #: ../troubleshoot/LocalOrRemote.py:30 - msgid "Network printer" - msgstr "Sieťová tlačiareň" - --#: ../system-config-printer.py:1379 -+#: ../system-config-printer.py:1383 - msgid "Network print share" - msgstr "Zdieľaná sieťová tlačiareň" - --#: ../system-config-printer.py:1508 ../glade/ConnectingDialog.glade.h:2 -+#: ../system-config-printer.py:1512 ../glade/ConnectingDialog.glade.h:2 - #, no-c-format, python-format - msgid "Opening connection to %s" - msgstr "Otvára sa pripojenie k %s" - --#: ../system-config-printer.py:1887 -+#: ../system-config-printer.py:1891 - msgid "Installable Options" - msgstr "Inštalovateľné možnosti" - --#: ../system-config-printer.py:1888 -+#: ../system-config-printer.py:1892 - #: ../glade/PrinterPropertiesDialog.glade.h:109 - msgid "Printer Options" - msgstr "Možnosti tlačiarne" - --#: ../system-config-printer.py:1924 -+#: ../system-config-printer.py:1928 - #, python-format - msgid "modifying class %s" - msgstr "upravovanie triedy %s" - --#: ../system-config-printer.py:1926 ../system-config-printer.py:3019 --#: ../system-config-printer.py:3044 ../system-config-printer.py:6547 --#: ../system-config-printer.py:6559 ../system-config-printer.py:6581 -+#: ../system-config-printer.py:1930 ../system-config-printer.py:3037 -+#: ../system-config-printer.py:3062 ../system-config-printer.py:6495 -+#: ../system-config-printer.py:6507 ../system-config-printer.py:6529 - #, python-format - msgid "modifying printer %s" - msgstr "upravovanie tlačiarne %s" - --#: ../system-config-printer.py:1941 -+#: ../system-config-printer.py:1945 - msgid "This will delete this class!" - msgstr "Spôsobí zmazanie triedy!" - --#: ../system-config-printer.py:1942 -+#: ../system-config-printer.py:1946 - msgid "Proceed anyway?" - msgstr "Pokračovať aj tak?" - -@@ -920,44 +929,44 @@ msgstr "Pokračovať aj tak?" - #. but we have never fetched the server settings to see whether - #. the server is publishing shared printers. Fetch the settings - #. now so that we can update the "not published" label if necessary. --#: ../system-config-printer.py:2030 ../system-config-printer.py:3203 -+#: ../system-config-printer.py:2034 ../system-config-printer.py:3221 - msgid "fetching server settings" - msgstr "načítavanie nastavení servera" - --#: ../system-config-printer.py:2100 -+#: ../system-config-printer.py:2104 - msgid "Set Default Printer" - msgstr "Nastaviť predvolenú tlačiareň" - --#: ../system-config-printer.py:2102 -+#: ../system-config-printer.py:2106 - msgid "Do you want to set this as the system-wide default printer?" - msgstr "Chcete nastaviť túto tlačiareň ako predvolenú pre celý systém?" - --#: ../system-config-printer.py:2104 -+#: ../system-config-printer.py:2108 - msgid "Set as the _system-wide default printer" - msgstr "Na_staviť ako predvolenú tlačiareň pre celý systém" - --#: ../system-config-printer.py:2106 -+#: ../system-config-printer.py:2110 - msgid "_Clear my personal default setting" - msgstr "_Vyčistiť moje osobné predvolené nastavenie" - --#: ../system-config-printer.py:2107 -+#: ../system-config-printer.py:2111 - msgid "Set as my _personal default printer" - msgstr "Nastaviť ako osobnú _predvolenú tlačiareň" - --#: ../system-config-printer.py:2112 -+#: ../system-config-printer.py:2116 - msgid "setting default printer" - msgstr "nastavenie predvolenej tlačiarne" - --#: ../system-config-printer.py:2169 -+#: ../system-config-printer.py:2173 - msgid "printing test page" - msgstr "tlačí sa skušobná stránka" - --#: ../system-config-printer.py:2182 ../system-config-printer.py:2217 --#: ../system-config-printer.py:5418 -+#: ../system-config-printer.py:2186 ../system-config-printer.py:2221 -+#: ../system-config-printer.py:5413 - msgid "Not possible" - msgstr "Nie je možné" - --#: ../system-config-printer.py:2183 ../system-config-printer.py:2218 -+#: ../system-config-printer.py:2187 ../system-config-printer.py:2222 - msgid "" - "The remote server did not accept the print job, most likely because the " - "printer is not shared." -@@ -965,20 +974,20 @@ msgstr "" - "Vzdialený server neprijal tlačovú úlohu, pravdepodobne preto, lebo tlačiareň " - "nie je zdieľaná." - --#: ../system-config-printer.py:2195 ../system-config-printer.py:2210 -+#: ../system-config-printer.py:2199 ../system-config-printer.py:2214 - msgid "Submitted" - msgstr "Odoslané" - --#: ../system-config-printer.py:2196 -+#: ../system-config-printer.py:2200 - #, python-format - msgid "Test page submitted as job %d" - msgstr "Skúšobná stránka odoslaná ako úloha %d" - --#: ../system-config-printer.py:2203 -+#: ../system-config-printer.py:2207 - msgid "sending maintenance command" - msgstr "odosielanie príkazu na údržbu" - --#: ../system-config-printer.py:2211 -+#: ../system-config-printer.py:2215 - #, python-format - msgid "Maintenance command submitted as job %d" - msgstr "Príkaz na údržbu bol odoslaný ako úloha %d" -@@ -986,65 +995,65 @@ msgstr "Príkaz na údržbu bol odoslan - #. The underlying cupsGetPPD2() function returned NULL without - #. setting an IPP error, so it'll be something like a failed - #. connection. --#: ../system-config-printer.py:2285 ../system-config-printer.py:2381 -+#: ../system-config-printer.py:2289 ../system-config-printer.py:2385 - msgid "Error" - msgstr "Chyba" - --#: ../system-config-printer.py:2286 -+#: ../system-config-printer.py:2290 - msgid "There was a problem connecting to the CUPS server." - msgstr "Počas pripájania na CUPS server sa vyskytol problém." - --#: ../system-config-printer.py:2382 -+#: ../system-config-printer.py:2386 - #, python-format - msgid "Option '%s' has value '%s' and cannot be edited." - msgstr "Možnosť '%s' má pevne danú hodnotu '%s', ktorá sa nedá zmeniť." - --#: ../system-config-printer.py:2466 -+#: ../system-config-printer.py:2476 - msgid "Marker levels are not reported for this printer." - msgstr "Táto tlačiareň nezobrazuje úroveň atrementu." - --#: ../system-config-printer.py:2763 -+#: ../system-config-printer.py:2773 - msgid "Cannot Rename" - msgstr "Nedá sa premenovať" - --#: ../system-config-printer.py:2764 -+#: ../system-config-printer.py:2774 - msgid "There are queued jobs." - msgstr "Vo fronte sú úlohy." - --#: ../system-config-printer.py:2822 -+#: ../system-config-printer.py:2840 - msgid "renaming printer" - msgstr "premenováva sa tlačiareň" - - #. for classes make sure all members - #. will get added --#: ../system-config-printer.py:2907 -+#: ../system-config-printer.py:2925 - msgid "copying printer" - msgstr "kopíruje sa tlačiareň" - --#: ../system-config-printer.py:2971 -+#: ../system-config-printer.py:2989 - #, fuzzy, python-format - msgid "Really delete class '%s'?" - msgstr "Skutočne odstrániť triedu `%s'?" - --#: ../system-config-printer.py:2973 -+#: ../system-config-printer.py:2991 - #, fuzzy, python-format - msgid "Really delete printer '%s'?" - msgstr "Skutočne odstrániť tlačiareň `%s'?" - --#: ../system-config-printer.py:2975 -+#: ../system-config-printer.py:2993 - msgid "Really delete selected destinations?" - msgstr "Skutočne odstrániť označené umiestnenia?" - --#: ../system-config-printer.py:2996 -+#: ../system-config-printer.py:3014 - #, python-format - msgid "deleting printer %s" - msgstr "odstraňuje sa tlačiareň %s" - --#: ../system-config-printer.py:3070 -+#: ../system-config-printer.py:3088 - msgid "Publish Shared Printers" - msgstr "Publikovať zdieľané tlačiarne" - --#: ../system-config-printer.py:3071 -+#: ../system-config-printer.py:3089 - msgid "" - "Shared printers are not available to other people unless the 'Publish shared " - "printers' option is enabled in the server settings." -@@ -1052,7 +1061,7 @@ msgstr "" - "Zdieľané tlačiarne nie sú dostupné ostatným ľuďom, pokiaľ nie je v nastavení " - "servera aktivovaná možnosť 'Publikovať zdieľané tlačiarne'." - --#: ../system-config-printer.py:3264 -+#: ../system-config-printer.py:3282 - msgid "modifying server settings" - msgstr "upravovanie nastavení servera" - -@@ -1062,11 +1071,11 @@ msgstr "upravovanie nastavení servera" - #. be unblocked. Unfortunately, this is not yet possible - #. (bug #440469). However, we can display a dialog to suggest - #. that now might be a good time to review the firewall settings. --#: ../system-config-printer.py:3289 -+#: ../system-config-printer.py:3307 - msgid "Review Firewall" - msgstr "Skontrolovať firewall" - --#: ../system-config-printer.py:3290 -+#: ../system-config-printer.py:3308 - msgid "" - "You may need to adjust the firewall to allow network printing to this " - "computer." -@@ -1074,25 +1083,25 @@ msgstr "" - "Pre povolenie sieťovej tlače na tento počítač bude možno potrebné upraviť " - "firewall." - --#: ../system-config-printer.py:3623 -+#: ../system-config-printer.py:3638 - msgid "Browsing not available (pysmbc not installed)" - msgstr "Prehľadávanie nie je dostupné (pysmbc nie je nainstalovaný)" - - #. SMB list columns --#: ../system-config-printer.py:3629 -+#: ../system-config-printer.py:3644 - msgid "Share" - msgstr "Zdieľanie" - --#: ../system-config-printer.py:3635 -+#: ../system-config-printer.py:3650 - msgid "Comment" - msgstr "Komentár" - - #. IPP list columns --#: ../system-config-printer.py:3654 -+#: ../system-config-printer.py:3669 - msgid "Queue" - msgstr "Fronta" - --#: ../system-config-printer.py:3668 -+#: ../system-config-printer.py:3683 - msgid "" - "PostScript Printer Description files (*.ppd, *.PPD, *.ppd.gz, *.PPD.gz, *." - "PPD.GZ)" -@@ -1100,66 +1109,66 @@ msgstr "" - "Súbory tlačových popisov vo formáte PostScript (*.ppd, *.PPD, *.ppd.gz, *." - "PPD.gz, *.PPD.GZ)" - --#: ../system-config-printer.py:3677 -+#: ../system-config-printer.py:3692 - msgid "All files (*)" - msgstr "Všetky súbory (*)" - --#: ../system-config-printer.py:3713 ../system-config-printer.py:5970 --#: ../system-config-printer.py:6008 ../applet.py:124 -+#: ../system-config-printer.py:3728 ../system-config-printer.py:5918 -+#: ../system-config-printer.py:5956 ../applet.py:124 - msgid "Search" - msgstr "Hľadať" - --#: ../system-config-printer.py:3736 ../system-config-printer.py:3760 --#: ../glade/NewPrinterWindow.glade.h:74 -+#: ../system-config-printer.py:3751 ../system-config-printer.py:3775 -+#: ../glade/NewPrinterWindow.glade.h:73 - msgid "New Printer" - msgstr "Nová tlačiareň" - --#: ../system-config-printer.py:3747 -+#: ../system-config-printer.py:3762 - msgid "New Class" - msgstr "Nová trieda" - --#: ../system-config-printer.py:3752 -+#: ../system-config-printer.py:3767 - msgid "Change Device URI" - msgstr "Zmeniť URI zariadenia" - --#: ../system-config-printer.py:3758 -+#: ../system-config-printer.py:3773 - msgid "Change Driver" - msgstr "Zmeniť ovládač" - --#: ../system-config-printer.py:3927 ../system-config-printer.py:3993 --#: ../system-config-printer.py:4289 ../system-config-printer.py:4487 --#: ../system-config-printer.py:5772 ../system-config-printer.py:5995 -+#: ../system-config-printer.py:3942 ../system-config-printer.py:4008 -+#: ../system-config-printer.py:4304 ../system-config-printer.py:4502 -+#: ../system-config-printer.py:5762 ../system-config-printer.py:5943 - msgid "Searching" - msgstr "Hľadá sa" - --#: ../system-config-printer.py:3928 -+#: ../system-config-printer.py:3943 - msgid "Searching for downloadable drivers" - msgstr "Hľadajú sa ovládače k stiahnutiu" - --#: ../system-config-printer.py:3994 ../system-config-printer.py:4290 -+#: ../system-config-printer.py:4009 ../system-config-printer.py:4305 - msgid "Searching for drivers" - msgstr "Hľadajú sa ovládače" - --#: ../system-config-printer.py:4488 ../system-config-printer.py:5773 -+#: ../system-config-printer.py:4503 ../system-config-printer.py:5763 - msgid "Searching for printers" - msgstr "Hľadajú sa tlačiarne" - --#: ../system-config-printer.py:4497 -+#: ../system-config-printer.py:4512 - msgid "fetching device list" - msgstr "získava sa zoznam zariadení" - - #. Tell the user why he needs the plugin --#: ../system-config-printer.py:4579 -+#: ../system-config-printer.py:4594 - msgid "For this printer a proprietary driver plugin from HP is available.\n" - msgstr "" - --#: ../system-config-printer.py:4582 -+#: ../system-config-printer.py:4597 - msgid "" - "The installation of the plugin is required for your printer to work.\n" - "\n" - msgstr "" - --#: ../system-config-printer.py:4585 -+#: ../system-config-printer.py:4600 - msgid "" - "Installing the plugin is optional, it completes or enhances the " - "functionality\n" -@@ -1167,113 +1176,109 @@ msgid "" - "\n" - msgstr "" - --#: ../system-config-printer.py:4589 -+#: ../system-config-printer.py:4604 - msgid "The plugin provides the following features:\n" - msgstr "" - --#: ../system-config-printer.py:4592 -+#: ../system-config-printer.py:4607 - msgid " - Printing support\n" - msgstr "" - --#: ../system-config-printer.py:4595 -+#: ../system-config-printer.py:4610 - #, fuzzy - msgid " - Faster printing\n" - msgstr "Obojstranná tlač" - --#: ../system-config-printer.py:4598 -+#: ../system-config-printer.py:4613 - msgid " - Better printout quality\n" - msgstr "" - --#: ../system-config-printer.py:4601 -+#: ../system-config-printer.py:4616 - msgid " - Extra printing features\n" - msgstr "" - --#: ../system-config-printer.py:4604 -+#: ../system-config-printer.py:4619 - msgid " - Scanning support\n" - msgstr "" - --#: ../system-config-printer.py:4607 -+#: ../system-config-printer.py:4622 - msgid " - Faster scanning\n" - msgstr "" - --#: ../system-config-printer.py:4610 -+#: ../system-config-printer.py:4625 - msgid " - Better scanning image quality\n" - msgstr "" - --#: ../system-config-printer.py:4613 -+#: ../system-config-printer.py:4628 - msgid " - Faxing support\n" - msgstr "" - --#: ../system-config-printer.py:4616 -+#: ../system-config-printer.py:4631 - msgid " - Extra fax features\n" - msgstr "" - --#: ../system-config-printer.py:4619 -+#: ../system-config-printer.py:4634 - msgid " - Better Input/Output support\n" - msgstr "" - --#: ../system-config-printer.py:4622 -+#: ../system-config-printer.py:4637 - msgid " - Extra user interface features\n" - msgstr "" - --#: ../system-config-printer.py:4625 -+#: ../system-config-printer.py:4640 - msgid " - Other extra features\n" - msgstr "" - --#: ../system-config-printer.py:4630 -+#: ../system-config-printer.py:4645 - #, fuzzy - msgid "Install plugin" - msgstr "Nainštalované možnosti" - --#: ../system-config-printer.py:4631 -+#: ../system-config-printer.py:4646 - #, fuzzy - msgid "Do not set up printer" - msgstr "Vyberte tlačiareň" - --#: ../system-config-printer.py:4632 -+#: ../system-config-printer.py:4647 - msgid "Set up without plugin" - msgstr "" - --#: ../system-config-printer.py:4634 ../troubleshoot/PrintTestPage.py:118 -+#: ../system-config-printer.py:4649 ../troubleshoot/PrintTestPage.py:118 - msgid "Yes" - msgstr "Áno" - --#: ../system-config-printer.py:4635 ../troubleshoot/PrintTestPage.py:119 -+#: ../system-config-printer.py:4650 ../troubleshoot/PrintTestPage.py:119 - msgid "No" - msgstr "Nie" - --#: ../system-config-printer.py:4809 ../system-config-printer.py:4813 -+#: ../system-config-printer.py:4824 ../system-config-printer.py:4828 - msgid " (Current)" - msgstr " (Aktuálny)" - --#: ../system-config-printer.py:4845 --msgid "HP Printer (HPLIP)" --msgstr "Tlačiareň HP (HPLIP)" -- --#: ../system-config-printer.py:4886 -+#: ../system-config-printer.py:4881 - msgid "Other" - msgstr "Iné" - - #. device-info - #. PhysicalDevice obj - #. Separator? --#: ../system-config-printer.py:4902 -+#: ../system-config-printer.py:4897 - msgid "Network Printer" - msgstr "Sieťová tlačiareň" - --#: ../system-config-printer.py:4906 -+#: ../system-config-printer.py:4901 - msgid "Find Network Printer" - msgstr "Nájsť sieťovú tlačiareň" - --#: ../system-config-printer.py:4979 ../system-config-printer.py:5376 -+#: ../system-config-printer.py:4974 ../system-config-printer.py:5371 - msgid "Scanning..." - msgstr "Prehľadáva sa..." - --#: ../system-config-printer.py:5034 ../system-config-printer.py:5798 -+#: ../system-config-printer.py:5029 - msgid "No Print Shares" - msgstr "Žiadne zdieľané tlačiarne" - --#: ../system-config-printer.py:5035 -+#: ../system-config-printer.py:5030 - msgid "" - "There were no print shares found. Please check that the Samba service is " - "marked as trusted in your firewall configuration." -@@ -1281,32 +1286,32 @@ msgstr "" - "Neboli nájdené žiadne zdieľané tlačiarne. Skontrolujte prosím, či služba " - "Samba je označená ako dôveryhodná v nastaveniach vášho firewallu." - --#: ../system-config-printer.py:5296 ../system-config-printer.py:5357 -+#: ../system-config-printer.py:5291 ../system-config-printer.py:5352 - msgid "Print Share Verified" - msgstr "Zdieľaná tlačiareň overená" - --#: ../system-config-printer.py:5297 ../system-config-printer.py:5358 -+#: ../system-config-printer.py:5292 ../system-config-printer.py:5353 - msgid "This print share is accessible." - msgstr "Zdieľaná tlačiareň je dostupná." - --#: ../system-config-printer.py:5302 ../system-config-printer.py:5362 -+#: ../system-config-printer.py:5297 ../system-config-printer.py:5357 - msgid "This print share is not accessible." - msgstr "Zdieľaná tlačiareň nie je dostupná." - --#: ../system-config-printer.py:5305 -+#: ../system-config-printer.py:5300 - msgid "Print Share Inaccessible" - msgstr "Zdieľaná tlačiareň nedostupná." - --#: ../system-config-printer.py:5361 -+#: ../system-config-printer.py:5356 - msgid "Inaccessible" - msgstr "Nedostupná" - --#: ../system-config-printer.py:5419 -+#: ../system-config-printer.py:5414 - #, fuzzy, python-format - msgid "It is not possible to obtain a list of queues from '%s'." - msgstr "Nie je možné získať zoznam front z `%s'." - --#: ../system-config-printer.py:5421 -+#: ../system-config-printer.py:5416 - msgid "" - "Obtaining a list of queues is a CUPS extension to IPP. Network printers do " - "not support it." -@@ -1314,72 +1319,72 @@ msgstr "" - "Získanie zoznamu front je rozšírením CUPS k IPP. Sieťové tlačiarne túto " - "funkciu nepodporujú." - --#: ../system-config-printer.py:5424 -+#: ../system-config-printer.py:5419 - msgid "No queues" - msgstr "Žiadne fronty" - --#: ../system-config-printer.py:5425 -+#: ../system-config-printer.py:5420 - msgid "There are no queues available." - msgstr "Nie sú dostupné žiadne fronty." - --#: ../system-config-printer.py:5516 -+#: ../system-config-printer.py:5511 - msgid "Parallel Port" - msgstr "" - --#: ../system-config-printer.py:5518 -+#: ../system-config-printer.py:5513 - #, fuzzy - msgid "Serial Port" - msgstr "Sériové číslo" - --#: ../system-config-printer.py:5520 -+#: ../system-config-printer.py:5515 - #, fuzzy - msgid "USB" - msgstr "SMB" - --#: ../system-config-printer.py:5522 ../system-config-printer.py:5525 -+#: ../system-config-printer.py:5517 ../system-config-printer.py:5520 - msgid "HP Linux Imaging and Printing (HPLIP)" - msgstr "" - --#: ../system-config-printer.py:5527 -+#: ../system-config-printer.py:5522 - #, fuzzy - msgid "Hardware Abstraction Layer (HAL)" - msgstr "Lokálna tlačiareň zistená cez Hardware Abstraction Layer (HAL)." - --#: ../system-config-printer.py:5529 -+#: ../system-config-printer.py:5524 - msgid "AppSocket/HP JetDirect" - msgstr "" - --#: ../system-config-printer.py:5538 -+#: ../system-config-printer.py:5533 - #, python-format - msgid "LPD/LPR queue '%s'" - msgstr "" - --#: ../system-config-printer.py:5540 -+#: ../system-config-printer.py:5535 - #, fuzzy - msgid "LPD/LPR queue" - msgstr "LPD" - --#: ../system-config-printer.py:5543 -+#: ../system-config-printer.py:5538 - msgid "Windows Printer via SAMBA" - msgstr "" - --#: ../system-config-printer.py:5545 ../glade/NewPrinterWindow.glade.h:66 -+#: ../system-config-printer.py:5540 ../glade/NewPrinterWindow.glade.h:65 - msgid "IPP" - msgstr "IPP" - --#: ../system-config-printer.py:5547 -+#: ../system-config-printer.py:5542 - msgid "HTTP" - msgstr "" - --#: ../system-config-printer.py:5632 -+#: ../system-config-printer.py:5624 - msgid "A printer connected to the parallel port." - msgstr "Tlačiareň pripojená cez paralelný port." - --#: ../system-config-printer.py:5634 -+#: ../system-config-printer.py:5626 - msgid "A printer connected to a USB port." - msgstr "Tlačiareň pripojená cez USB port." - --#: ../system-config-printer.py:5636 -+#: ../system-config-printer.py:5628 - msgid "" - "HPLIP software driving a printer, or the printer function of a multi-" - "function device." -@@ -1387,7 +1392,7 @@ msgstr "" - "Softvér HPLIP ovládajúci tlačiarne, alebo funkcie tlače multi-funkčného " - "zariadenia." - --#: ../system-config-printer.py:5639 -+#: ../system-config-printer.py:5631 - msgid "" - "HPLIP software driving a fax machine, or the fax function of a multi-" - "function device." -@@ -1395,47 +1400,43 @@ msgstr "" - "Softvér HPLIP ovládajúci faxovacie stroje, alebo faxovacie funkcie multi-" - "funkčného zariadenia." - --#: ../system-config-printer.py:5642 -+#: ../system-config-printer.py:5634 - msgid "Local printer detected by the Hardware Abstraction Layer (HAL)." - msgstr "Lokálna tlačiareň zistená cez Hardware Abstraction Layer (HAL)." - --#: ../system-config-printer.py:5799 --msgid "HPLIP cannot find the device." --msgstr "HPLIP nemôže nájsť zariadenie." -- --#: ../system-config-printer.py:5881 -+#: ../system-config-printer.py:5831 - msgid "No printer was found at that address." - msgstr "Na zadanej adrese nebola nájdená žiadna tlačiareň." - --#: ../system-config-printer.py:6020 -+#: ../system-config-printer.py:5968 - msgid "-- Select from search results --" - msgstr "-- Vyberte z výsledkov hľadania --" - --#: ../system-config-printer.py:6022 -+#: ../system-config-printer.py:5970 - msgid "-- No matches found --" - msgstr "-- Nebol nájdený žiadny záznam --" - --#: ../system-config-printer.py:6203 -+#: ../system-config-printer.py:6151 - msgid " (recommended)" - msgstr " (odporúčané)" - --#: ../system-config-printer.py:6217 -+#: ../system-config-printer.py:6165 - msgid "This PPD is generated by foomatic." - msgstr "Tento PPD bol vygenerovaný foomaticom." - --#: ../system-config-printer.py:6241 -+#: ../system-config-printer.py:6189 - msgid "OpenPrinting" - msgstr "OpenPrinting" - --#: ../system-config-printer.py:6252 -+#: ../system-config-printer.py:6200 - msgid "Distributable" - msgstr "Distribuovateľný" - --#: ../system-config-printer.py:6293 -+#: ../system-config-printer.py:6241 - msgid ", " - msgstr ", " - --#: ../system-config-printer.py:6298 -+#: ../system-config-printer.py:6246 - #, python-format - msgid "" - "\n" -@@ -1444,20 +1445,20 @@ msgstr "" - "\n" - "(%s)" - --#: ../system-config-printer.py:6303 -+#: ../system-config-printer.py:6251 - msgid "No support contacts known" - msgstr "Neznáme kontakty na podporu" - --#: ../system-config-printer.py:6307 ../system-config-printer.py:6320 -+#: ../system-config-printer.py:6255 ../system-config-printer.py:6268 - msgid "Not specified." - msgstr "Nezadané." - - #. Foomatic database problem of some sort. --#: ../system-config-printer.py:6360 -+#: ../system-config-printer.py:6308 - msgid "Database error" - msgstr "Chyba databázy" - --#: ../system-config-printer.py:6361 -+#: ../system-config-printer.py:6309 - #, python-format - msgid "The '%s' driver cannot be used with printer '%s %s'." - msgstr "Ovládač '%s' nemôže byť použitý k tlačiarni '%s %s'." -@@ -1465,63 +1466,63 @@ msgstr "Ovládač '%s' nemôže byť pou - #. This printer references some XML that is not - #. installed by default. Point the user at the - #. package they need to install. --#: ../system-config-printer.py:6371 -+#: ../system-config-printer.py:6319 - #, python-format - msgid "You will need to install the '%s' package in order to use this driver." - msgstr "" - "Budete musieť nainštalovať balíček '%s', aby bolo možné použiť tento ovládač." - - #. This error came from trying to open the PPD file. --#: ../system-config-printer.py:6378 -+#: ../system-config-printer.py:6326 - msgid "PPD error" - msgstr "Chyba PPD" - --#: ../system-config-printer.py:6380 -+#: ../system-config-printer.py:6328 - msgid "Failed to read PPD file. Possible reason follows:" - msgstr "Chyba pri čítaní PPD súboru. Možné dôvody sú:" - - #. Failed to get PPD downloaded from OpenPrinting XXX --#: ../system-config-printer.py:6397 -+#: ../system-config-printer.py:6345 - msgid "Downloadable drivers" - msgstr "Ovládače k stiahnutiu" - --#: ../system-config-printer.py:6398 -+#: ../system-config-printer.py:6346 - msgid "Failed to download PPD." - msgstr "Nepodarilo sa stiahnuť PPD." - --#: ../system-config-printer.py:6405 -+#: ../system-config-printer.py:6353 - #, fuzzy - msgid "fetching PPD" - msgstr "Zmeniť PPD" - --#: ../system-config-printer.py:6434 ../system-config-printer.py:6472 -+#: ../system-config-printer.py:6382 ../system-config-printer.py:6420 - msgid "No Installable Options" - msgstr "Žiadne inštalovateľné možnosti" - --#: ../system-config-printer.py:6520 -+#: ../system-config-printer.py:6468 - #, python-format - msgid "adding printer %s" - msgstr "pridáva sa tlačiareň %s" - --#: ../system-config-printer.py:6669 -+#: ../system-config-printer.py:6617 - msgid "Would you like to print a test page?" - msgstr "Chcete vytlačiť skušobnú stránku?" - --#: ../system-config-printer.py:6722 -+#: ../system-config-printer.py:6670 - msgid "Install driver" - msgstr "Nainštalovať ovládač" - --#: ../system-config-printer.py:6723 ../troubleshoot/CheckPPDSanity.py:131 -+#: ../system-config-printer.py:6671 ../troubleshoot/CheckPPDSanity.py:131 - #, python-format - msgid "Printer '%s' requires the %s package but it is not currently installed." - msgstr "" - "Tlačiareň '%s' vyžaduje balíček %s, ktorý nie je momentálne nainštalovaný." - --#: ../system-config-printer.py:6739 -+#: ../system-config-printer.py:6687 - msgid "Missing driver" - msgstr "Chýba ovládač" - --#: ../system-config-printer.py:6740 -+#: ../system-config-printer.py:6688 - #, python-format - msgid "" - "Printer '%s' requires the '%s' program but it is not currently installed. " -@@ -1654,106 +1655,102 @@ msgid "Enter device URI" - msgstr "Zadajte URI zariadenia" - - #: ../glade/NewPrinterWindow.glade.h:5 --msgid "HP Printer (HPLIP) via network" --msgstr "Tlačiareň HP (HPLIP) cez sieť" -- --#: ../glade/NewPrinterWindow.glade.h:6 - msgid "IPP Printer" - msgstr "IPP tlačiareň" - --#: ../glade/NewPrinterWindow.glade.h:7 -+#: ../glade/NewPrinterWindow.glade.h:6 - msgid "License Terms" - msgstr "Licenčné podmienky" - --#: ../glade/NewPrinterWindow.glade.h:8 -+#: ../glade/NewPrinterWindow.glade.h:7 - msgid "Location of the LPD network printer" - msgstr "Umiestnenie sieťovej LPD tlačiarne" - --#: ../glade/NewPrinterWindow.glade.h:9 -+#: ../glade/NewPrinterWindow.glade.h:8 - msgid "Location of the network printer" - msgstr "Umiestnenie sieťovej tlačiarne" - --#: ../glade/NewPrinterWindow.glade.h:10 -+#: ../glade/NewPrinterWindow.glade.h:9 - msgid "Location (optional)" - msgstr "Umiestnenie (voliteľné)" - --#: ../glade/NewPrinterWindow.glade.h:11 -+#: ../glade/NewPrinterWindow.glade.h:10 - msgid "Network Printer" - msgstr "Sieťová tlačiareň" - --#: ../glade/NewPrinterWindow.glade.h:12 -+#: ../glade/NewPrinterWindow.glade.h:11 - msgid "Note" - msgstr "Poznámka" - --#: ../glade/NewPrinterWindow.glade.h:13 -+#: ../glade/NewPrinterWindow.glade.h:12 - msgid "Output Quality" - msgstr "Kvalita výstupu" - --#: ../glade/NewPrinterWindow.glade.h:14 -+#: ../glade/NewPrinterWindow.glade.h:13 - msgid "Printer Name" - msgstr "Názov tlačiarne" - --#: ../glade/NewPrinterWindow.glade.h:15 -+#: ../glade/NewPrinterWindow.glade.h:14 - msgid "SMB Printer" - msgstr "SMB tlačiareň" - --#: ../glade/NewPrinterWindow.glade.h:16 -+#: ../glade/NewPrinterWindow.glade.h:15 - msgid "Select Driver" - msgstr "Vyberte ovládač" - --#: ../glade/NewPrinterWindow.glade.h:17 -+#: ../glade/NewPrinterWindow.glade.h:16 - msgid "Settings of the serial port" - msgstr "Nastavenia sériového portu" - --#: ../glade/NewPrinterWindow.glade.h:18 -+#: ../glade/NewPrinterWindow.glade.h:17 - msgid "smb://[workgroup/]server[:port]/printer" - msgstr "smb://[pracovná_skupina/]server[:port]/tlačiareň" - --#: ../glade/NewPrinterWindow.glade.h:19 -+#: ../glade/NewPrinterWindow.glade.h:18 - msgid "Choose Class Members" - msgstr "Vyberte členov triedy" - --#: ../glade/NewPrinterWindow.glade.h:20 -+#: ../glade/NewPrinterWindow.glade.h:19 - msgid "Choose Driver" - msgstr "Vyberte ovládač" - --#: ../glade/NewPrinterWindow.glade.h:21 -+#: ../glade/NewPrinterWindow.glade.h:20 - msgid "Describe Printer" - msgstr "Popíšte tlačiareň" - --#: ../glade/NewPrinterWindow.glade.h:22 -+#: ../glade/NewPrinterWindow.glade.h:21 - msgid "Existing Settings" - msgstr "Existujúce nastavenia" - --#: ../glade/NewPrinterWindow.glade.h:23 -+#: ../glade/NewPrinterWindow.glade.h:22 - msgid "Installable Options" - msgstr "Inštalovateľné možnosti" - --#: ../glade/NewPrinterWindow.glade.h:24 -+#: ../glade/NewPrinterWindow.glade.h:23 - msgid "Select Device" - msgstr "Vyberte zariadenie" - --#: ../glade/NewPrinterWindow.glade.h:25 -+#: ../glade/NewPrinterWindow.glade.h:24 - msgid "Baud Rate" - msgstr "Prenosová rýchlosť" - --#: ../glade/NewPrinterWindow.glade.h:26 -+#: ../glade/NewPrinterWindow.glade.h:25 - msgid "Browse..." - msgstr "Prehľadávať..." - --#: ../glade/NewPrinterWindow.glade.h:27 -+#: ../glade/NewPrinterWindow.glade.h:26 - msgid "Comments..." - msgstr "Komentáre..." - --#: ../glade/NewPrinterWindow.glade.h:28 -+#: ../glade/NewPrinterWindow.glade.h:27 - msgid "Connection" - msgstr "Pripojenie" - --#: ../glade/NewPrinterWindow.glade.h:29 -+#: ../glade/NewPrinterWindow.glade.h:28 - msgid "Data Bits" - msgstr "Údajové bity" - --#: ../glade/NewPrinterWindow.glade.h:30 -+#: ../glade/NewPrinterWindow.glade.h:29 - msgid "" - "Default\n" - "1200\n" -@@ -1775,7 +1772,7 @@ msgstr "" - "57600\n" - "115200" - --#: ../glade/NewPrinterWindow.glade.h:39 -+#: ../glade/NewPrinterWindow.glade.h:38 - msgid "" - "Default\n" - "8\n" -@@ -1785,7 +1782,7 @@ msgstr "" - "8\n" - "7" - --#: ../glade/NewPrinterWindow.glade.h:42 -+#: ../glade/NewPrinterWindow.glade.h:41 - msgid "" - "Default\n" - "None\n" -@@ -1797,7 +1794,7 @@ msgstr "" - "Nepárna\n" - "Párna" - --#: ../glade/NewPrinterWindow.glade.h:46 -+#: ../glade/NewPrinterWindow.glade.h:45 - msgid "" - "Default\n" - "None\n" -@@ -1811,113 +1808,113 @@ msgstr "" - "RTS/CTS (Hardvérové)\n" - "DTR/DSR (Hardvérové)" - --#: ../glade/NewPrinterWindow.glade.h:51 -+#: ../glade/NewPrinterWindow.glade.h:50 - #: ../glade/PrinterPropertiesDialog.glade.h:35 - msgid "Description:" - msgstr "Popis:" - --#: ../glade/NewPrinterWindow.glade.h:52 ../troubleshoot/DeviceListed.py:40 -+#: ../glade/NewPrinterWindow.glade.h:51 ../troubleshoot/DeviceListed.py:40 - msgid "Device URI" - msgstr "URI zariadenia " - --#: ../glade/NewPrinterWindow.glade.h:53 -+#: ../glade/NewPrinterWindow.glade.h:52 - msgid "Device description." - msgstr "Popis zariadenia." - --#: ../glade/NewPrinterWindow.glade.h:54 -+#: ../glade/NewPrinterWindow.glade.h:53 - msgid "DirectJet" - msgstr "DirectJet" - --#: ../glade/NewPrinterWindow.glade.h:56 -+#: ../glade/NewPrinterWindow.glade.h:55 - msgid "Driver details" - msgstr "Podrobnosti o ovládači" - --#: ../glade/NewPrinterWindow.glade.h:57 -+#: ../glade/NewPrinterWindow.glade.h:56 - msgid "Empty" - msgstr "Prázdne" - --#: ../glade/NewPrinterWindow.glade.h:58 -+#: ../glade/NewPrinterWindow.glade.h:57 - msgid "Find _Queue..." - msgstr "Nájsť _frontu..." - --#: ../glade/NewPrinterWindow.glade.h:59 -+#: ../glade/NewPrinterWindow.glade.h:58 - msgid "Flow Control" - msgstr "Riadenie toku" - --#: ../glade/NewPrinterWindow.glade.h:60 -+#: ../glade/NewPrinterWindow.glade.h:59 - msgid "" - "For the printer you have selected there are drivers available for download." - msgstr "Pre vami vybranú tlačiareň sú dostupné ovládače na stiahnutie." - --#: ../glade/NewPrinterWindow.glade.h:61 -+#: ../glade/NewPrinterWindow.glade.h:60 - msgid "Free software" - msgstr "Sloboný softvér" - --#: ../glade/NewPrinterWindow.glade.h:62 -+#: ../glade/NewPrinterWindow.glade.h:61 - msgid "Graphics:" - msgstr "Grafika:" - --#: ../glade/NewPrinterWindow.glade.h:63 -+#: ../glade/NewPrinterWindow.glade.h:62 - msgid "Host:" - msgstr "Hostiteľ:" - --#: ../glade/NewPrinterWindow.glade.h:64 -+#: ../glade/NewPrinterWindow.glade.h:63 - msgid "Human-readable description such as \"HP LaserJet with Duplexer\"" - msgstr "Zrozumiteľný popis, ako napr. \"HP LaserJet s duplexom\"" - --#: ../glade/NewPrinterWindow.glade.h:65 -+#: ../glade/NewPrinterWindow.glade.h:64 - msgid "Human-readable location such as \"Lab 1\"" - msgstr "Zrozumiteľné umiestnenie, ako napr. \"Miestnosť 1\"" - --#: ../glade/NewPrinterWindow.glade.h:67 -+#: ../glade/NewPrinterWindow.glade.h:66 - msgid "LPD" - msgstr "LPD" - --#: ../glade/NewPrinterWindow.glade.h:68 -+#: ../glade/NewPrinterWindow.glade.h:67 - msgid "License:" - msgstr "Licencia:" - --#: ../glade/NewPrinterWindow.glade.h:69 -+#: ../glade/NewPrinterWindow.glade.h:68 - msgid "Line art:" - msgstr "Jemná grafika:" - --#: ../glade/NewPrinterWindow.glade.h:70 -+#: ../glade/NewPrinterWindow.glade.h:69 - msgid "Local Driver" - msgstr "Lokálny ovládač" - --#: ../glade/NewPrinterWindow.glade.h:71 -+#: ../glade/NewPrinterWindow.glade.h:70 - msgid "Make and model:" - msgstr "Výrobca a model:" - --#: ../glade/NewPrinterWindow.glade.h:72 -+#: ../glade/NewPrinterWindow.glade.h:71 - msgid "Manufacturer" - msgstr "Výrobca" - --#: ../glade/NewPrinterWindow.glade.h:73 -+#: ../glade/NewPrinterWindow.glade.h:72 - msgid "Network" - msgstr "Sieť" - --#: ../glade/NewPrinterWindow.glade.h:75 -+#: ../glade/NewPrinterWindow.glade.h:74 - msgid "No, I do not accept this license" - msgstr "Nie, túto licenciu neakceptujem" - --#: ../glade/NewPrinterWindow.glade.h:76 -+#: ../glade/NewPrinterWindow.glade.h:75 - msgid "Parity" - msgstr "Parita" - --#: ../glade/NewPrinterWindow.glade.h:78 -+#: ../glade/NewPrinterWindow.glade.h:77 - msgid "Patented algorithms" - msgstr "Patentované algoritmy" - --#: ../glade/NewPrinterWindow.glade.h:79 -+#: ../glade/NewPrinterWindow.glade.h:78 - msgid "Photo:" - msgstr "Foto:" - --#: ../glade/NewPrinterWindow.glade.h:80 -+#: ../glade/NewPrinterWindow.glade.h:79 - msgid "Port number:" - msgstr "Číslo portu:" - --#: ../glade/NewPrinterWindow.glade.h:81 -+#: ../glade/NewPrinterWindow.glade.h:80 - msgid "" - "PostScript Printer Description (PPD) files can often be found on the driver " - "disk that comes with the printer. For PostScript printers they are often " -@@ -1927,76 +1924,76 @@ msgstr "" - "disku s ovládačmi, ktorý dostanete s tlačiarňou. Pre PostScript tlačiarne sú " - "často súčasťou ovládačov pre Windows®." - --#: ../glade/NewPrinterWindow.glade.h:82 -+#: ../glade/NewPrinterWindow.glade.h:81 - msgid "Printer model:" - msgstr "Model tlačiarne:" - --#: ../glade/NewPrinterWindow.glade.h:83 -+#: ../glade/NewPrinterWindow.glade.h:82 - msgid "Probe" - msgstr "Preskúmať" - --#: ../glade/NewPrinterWindow.glade.h:84 -+#: ../glade/NewPrinterWindow.glade.h:83 - msgid "Prompt user if authentication is required" - msgstr "Vyzvať používateľa, ak je vyžadované overenie." - --#: ../glade/NewPrinterWindow.glade.h:85 -+#: ../glade/NewPrinterWindow.glade.h:84 - msgid "Provide PPD file" - msgstr "Zadať PPD súbor" - --#: ../glade/NewPrinterWindow.glade.h:86 -+#: ../glade/NewPrinterWindow.glade.h:85 - msgid "Queue:" - msgstr "Fronta:" - --#: ../glade/NewPrinterWindow.glade.h:87 -+#: ../glade/NewPrinterWindow.glade.h:86 - msgid "SCSI" - msgstr "SCSI" - --#: ../glade/NewPrinterWindow.glade.h:88 -+#: ../glade/NewPrinterWindow.glade.h:87 - msgid "SMB" - msgstr "SMB" - --#: ../glade/NewPrinterWindow.glade.h:89 -+#: ../glade/NewPrinterWindow.glade.h:88 - msgid "Search for a printer driver to download" - msgstr "Hľadať a stiahnuť ovládač tlačiarne" - --#: ../glade/NewPrinterWindow.glade.h:90 -+#: ../glade/NewPrinterWindow.glade.h:89 - #, fuzzy - msgid "Searching..." - msgstr "Hľadá sa" - --#: ../glade/NewPrinterWindow.glade.h:91 -+#: ../glade/NewPrinterWindow.glade.h:90 - msgid "Select A File" - msgstr "Vyberte súbor" - --#: ../glade/NewPrinterWindow.glade.h:92 -+#: ../glade/NewPrinterWindow.glade.h:91 - msgid "Select printer from database" - msgstr "Vyberte tlačiareň z databázy" - --#: ../glade/NewPrinterWindow.glade.h:93 -+#: ../glade/NewPrinterWindow.glade.h:92 - msgid "Serial" - msgstr "Sériové číslo" - --#: ../glade/NewPrinterWindow.glade.h:94 -+#: ../glade/NewPrinterWindow.glade.h:93 - msgid "Set authentication details now" - msgstr "Nastaviť podrobnosti overenia teraz." - --#: ../glade/NewPrinterWindow.glade.h:95 -+#: ../glade/NewPrinterWindow.glade.h:94 - msgid "Short name for this printer such as \"laserjet\"" - msgstr "Krátky názov pre túto tlačiareň, napríklad \"laserjet\"" - --#: ../glade/NewPrinterWindow.glade.h:96 -+#: ../glade/NewPrinterWindow.glade.h:95 - msgid "Supplier:" - msgstr "Dodávateľ:" - --#: ../glade/NewPrinterWindow.glade.h:97 -+#: ../glade/NewPrinterWindow.glade.h:96 - msgid "Support:" - msgstr "Podpora:" - --#: ../glade/NewPrinterWindow.glade.h:98 -+#: ../glade/NewPrinterWindow.glade.h:97 - msgid "Text:" - msgstr "Text:" - --#: ../glade/NewPrinterWindow.glade.h:99 -+#: ../glade/NewPrinterWindow.glade.h:98 - msgid "" - "The foomatic printer database contains various manufacturer provided " - "PostScript Printer Description (PPD) files and also can generate PPD files " -@@ -2010,7 +2007,7 @@ msgstr "" - "Ale v zásade PPD súbory poskytované výrobcom zaručujú lepší prístup k " - "špecifickým vlastnostiam tlačiarne." - --#: ../glade/NewPrinterWindow.glade.h:100 -+#: ../glade/NewPrinterWindow.glade.h:99 - msgid "" - "These drivers do not come from your operating system supplier and will not " - "be covered by their commercial support. See the support and license terms " -@@ -2020,7 +2017,7 @@ msgstr "" - "nevzťahuje sa na ne ich obchodná podpora. Pozrite sa na podmienky podpory a " - "licenciu dodávateľa ovládača." - --#: ../glade/NewPrinterWindow.glade.h:101 -+#: ../glade/NewPrinterWindow.glade.h:100 - msgid "" - "This driver supports additional hardware that may be installed in the " - "printer." -@@ -2028,7 +2025,7 @@ msgstr "" - "Tento ovládač podporuje prídavný hardvér, ktorý môže byť vo vašej tlačiarni " - "nainštalovaný." - --#: ../glade/NewPrinterWindow.glade.h:102 -+#: ../glade/NewPrinterWindow.glade.h:101 - msgid "" - "This is done by assuming that options with the same name do have the same " - "meaning. Settings of options that are not present in the new PPD will be " -@@ -2039,7 +2036,7 @@ msgstr "" - "možnosti nachádzajúce sa iba v novej PPD budú nastavené na predvolené " - "hodnoty." - --#: ../glade/NewPrinterWindow.glade.h:103 -+#: ../glade/NewPrinterWindow.glade.h:102 - msgid "" - "This way all current option settings will be lost. The default settings of " - "the new PPD will be used. " -@@ -2047,19 +2044,19 @@ msgstr "" - "Týmto postupom sa všetky pôvodné možnosti stratia. Budú použité predvolené " - "nastavenia z nového PPD." - --#: ../glade/NewPrinterWindow.glade.h:104 -+#: ../glade/NewPrinterWindow.glade.h:103 - msgid "Try to copy the option settings over from the old PPD. " - msgstr "Pokúsiť sa skopírovať možnosti nastavení zo starého PPD." - --#: ../glade/NewPrinterWindow.glade.h:105 -+#: ../glade/NewPrinterWindow.glade.h:104 - msgid "URI:" - msgstr "URI:" - --#: ../glade/NewPrinterWindow.glade.h:107 -+#: ../glade/NewPrinterWindow.glade.h:106 - msgid "Use the new PPD (Postscript Printer Description) as is." - msgstr "Použiť novú PPD (Definíciu Postscript Tlačiarne) ako je." - --#: ../glade/NewPrinterWindow.glade.h:109 -+#: ../glade/NewPrinterWindow.glade.h:108 - msgid "" - "With this choice no driver download will be performed. In the next steps a " - "locally installed driver will be selected." -@@ -2067,24 +2064,24 @@ msgstr "" - "S touto voľbou nebude stiahnutý žiadny ovládač. V ďalších krokoch bude " - "vybraný lokálne inštalovaný ovládač." - --#: ../glade/NewPrinterWindow.glade.h:110 -+#: ../glade/NewPrinterWindow.glade.h:109 - msgid "Yes, I accept this license" - msgstr "Áno, akceptujem túto licenciu" - --#: ../glade/NewPrinterWindow.glade.h:111 -+#: ../glade/NewPrinterWindow.glade.h:110 - msgid "_Search" - msgstr "_Hľadať" - --#: ../glade/NewPrinterWindow.glade.h:112 -+#: ../glade/NewPrinterWindow.glade.h:111 - msgid "_Verify..." - msgstr "O_veriť..." - --#: ../glade/NewPrinterWindow.glade.h:113 -+#: ../glade/NewPrinterWindow.glade.h:112 - #: ../glade/PrinterPropertiesDialog.glade.h:128 - msgid "move left" - msgstr "posunúť doľava" - --#: ../glade/NewPrinterWindow.glade.h:114 -+#: ../glade/NewPrinterWindow.glade.h:113 - #: ../glade/PrinterPropertiesDialog.glade.h:129 - msgid "move right" - msgstr "posunúť doprava" -@@ -3000,7 +2997,7 @@ msgstr "Vytlačili sa tlačové úlohy v - msgid "Remember to load paper of type '%s' into the printer first." - msgstr "Nezabudnite najskôr vložiť typ papiera '%s' do tlačiarne." - --#: ../troubleshoot/PrintTestPage.py:399 -+#: ../troubleshoot/PrintTestPage.py:416 - msgid "Error submitting test page" - msgstr "Chyba pri odosielaní skúšobnej stránky" - -@@ -3203,6 +3200,15 @@ msgstr "Spravovať tlačové úlohy " - msgid "Select default printer" - msgstr "Nastaviť tlačiareň ako predvolenú" - -+#~ msgid "HP Printer (HPLIP)" -+#~ msgstr "Tlačiareň HP (HPLIP)" -+ -+#~ msgid "HPLIP cannot find the device." -+#~ msgstr "HPLIP nemôže nájsť zariadenie." -+ -+#~ msgid "HP Printer (HPLIP) via network" -+#~ msgstr "Tlačiareň HP (HPLIP) cez sieť" -+ - #~ msgid "Not Found" - #~ msgstr "Nenájdené" - -diff -up system-config-printer-1.1.5/po/sl.po.git-1.1.x system-config-printer-1.1.5/po/sl.po ---- system-config-printer-1.1.5/po/sl.po.git-1.1.x 2009-03-03 22:21:46.000000000 +0000 -+++ system-config-printer-1.1.5/po/sl.po 2009-03-10 17:43:31.000000000 +0000 -@@ -11,7 +11,7 @@ msgid "" - msgstr "" - "Project-Id-Version: sl\n" - "Report-Msgid-Bugs-To: https://bugzilla.redhat.com/bugzilla\n" --"POT-Creation-Date: 2009-03-02 23:22+0000\n" -+"POT-Creation-Date: 2009-03-10 16:51+0000\n" - "PO-Revision-Date: 2004-03-31 19:56+0200\n" - "Last-Translator: Rok Papez \n" - "Language-Team: slovenščina \n" -@@ -57,12 +57,12 @@ msgstr "" - msgid "Enter IP address" - msgstr "Mrežno ime ali naslov IP strežnika" - --#: ../authconn.py:35 ../glade/NewPrinterWindow.glade.h:108 -+#: ../authconn.py:35 ../glade/NewPrinterWindow.glade.h:107 - #, fuzzy - msgid "Username:" - msgstr "Uporabniško ime:" - --#: ../authconn.py:36 ../glade/NewPrinterWindow.glade.h:77 -+#: ../authconn.py:36 ../glade/NewPrinterWindow.glade.h:76 - msgid "Password:" - msgstr "Geslo:" - -@@ -71,7 +71,7 @@ msgstr "Geslo:" - msgid "Domain:" - msgstr "Vrhnji rob (pt):" - --#: ../authconn.py:46 -+#: ../authconn.py:46 ../authconn.py:409 - #, fuzzy - msgid "Authentication" - msgstr "Avtentikacija" -@@ -80,46 +80,55 @@ msgstr "Avtentikacija" - msgid "Remember password" - msgstr "" - --#: ../authconn.py:211 ../authconn.py:232 -+#: ../authconn.py:208 -+#, python-format -+msgid "Unauthorized request (%s)" -+msgstr "" -+ -+#: ../authconn.py:209 -+msgid "You are not authorized to carry out therequested action." -+msgstr "" -+ -+#: ../authconn.py:212 ../authconn.py:233 - #, fuzzy - msgid "Operation canceled" - msgstr "Ime izbire" - --#: ../authconn.py:253 -+#: ../authconn.py:250 - #, fuzzy, python-format - msgid "CUPS server error (%s)" - msgstr "Strežnik:" - --#: ../authconn.py:255 ../errordialogs.py:57 --#: ../troubleshoot/PrintTestPage.py:400 -+#: ../authconn.py:252 ../errordialogs.py:56 ../errordialogs.py:70 -+#, fuzzy -+msgid "CUPS server error" -+msgstr "Strežnik:" -+ -+#: ../authconn.py:261 ../errordialogs.py:57 -+#: ../troubleshoot/PrintTestPage.py:417 - #, fuzzy, python-format - msgid "There was an error during the CUPS operation: '%s'." - msgstr "Pri poskusu tiskanja preskusne strani je prišlo do napake." - --#: ../authconn.py:258 -+#: ../authconn.py:264 - #, fuzzy - msgid "Retry" - msgstr "Preizkus" - --#: ../authconn.py:379 ../authconn.py:381 ../errordialogs.py:65 ../pysmb.py:75 -+#: ../authconn.py:385 ../authconn.py:387 ../errordialogs.py:65 ../pysmb.py:75 - #: ../pysmb.py:77 - msgid "Not authorized" - msgstr "" - --#: ../authconn.py:382 ../pysmb.py:78 -+#: ../authconn.py:388 ../pysmb.py:78 - msgid "The password may be incorrect." - msgstr "" - --#: ../authconn.py:400 -+#: ../authconn.py:407 - #, fuzzy, python-format - msgid "Authentication (%s)" - msgstr "Avtentikacija" - --#: ../errordialogs.py:56 ../errordialogs.py:70 --#, fuzzy --msgid "CUPS server error" --msgstr "Strežnik:" -- - #: ../errordialogs.py:66 - msgid "" - "The password may be incorrect, or the server may be configured to deny " -@@ -149,7 +158,7 @@ msgstr "Geslo:" - msgid "Server error" - msgstr "Tiskalnik:" - --#: ../errordialogs.py:82 ../system-config-printer.py:1219 -+#: ../errordialogs.py:82 ../system-config-printer.py:1223 - #, fuzzy - msgid "Not connected" - msgstr "_Krajevno-povezana" -@@ -172,7 +181,7 @@ msgstr "" - msgid "_New Group from Selection" - msgstr "" - --#: ../GroupsPane.py:98 ../system-config-printer.py:393 -+#: ../GroupsPane.py:98 ../system-config-printer.py:397 - #, fuzzy - msgid "_Rename" - msgstr "_Odstrani" -@@ -243,7 +252,7 @@ msgid "Document" - msgstr "Komentar" - - #: ../jobviewer.py:212 ../my-default-printer.py:153 --#: ../system-config-printer.py:366 ../system-config-printer.py:1367 -+#: ../system-config-printer.py:370 ../system-config-printer.py:1371 - #: ../troubleshoot/PrintTestPage.py:84 - #, fuzzy - msgid "Printer" -@@ -282,8 +291,8 @@ msgstr "" - - #: ../jobviewer.py:386 ../jobviewer.py:451 ../jobviewer.py:452 - #: ../jobviewer.py:492 ../jobviewer.py:600 ../jobviewer.py:727 --#: ../jobviewer.py:1196 ../jobviewer.py:1222 ../system-config-printer.py:2546 --#: ../glade/NewPrinterWindow.glade.h:106 -+#: ../jobviewer.py:1196 ../jobviewer.py:1222 ../system-config-printer.py:2556 -+#: ../glade/NewPrinterWindow.glade.h:105 - #: ../troubleshoot/ChooseNetworkPrinter.py:101 - #: ../troubleshoot/ChooseNetworkPrinter.py:102 - #: ../troubleshoot/ChooseNetworkPrinter.py:105 -@@ -374,12 +383,12 @@ msgstr "" - msgid "Pending" - msgstr "Tiskanje" - --#: ../jobviewer.py:591 ../system-config-printer.py:186 -+#: ../jobviewer.py:591 ../system-config-printer.py:190 - #: ../troubleshoot/PrintTestPage.py:43 - msgid "Processing" - msgstr "" - --#: ../jobviewer.py:592 ../system-config-printer.py:188 -+#: ../jobviewer.py:592 ../system-config-printer.py:192 - #: ../troubleshoot/PrintTestPage.py:44 - msgid "Stopped" - msgstr "" -@@ -501,8 +510,8 @@ msgstr "Nastavi kot _privzeto" - msgid "_Set Default" - msgstr "_Privzeto" - --#: ../my-default-printer.py:158 ../system-config-printer.py:423 --#: ../system-config-printer.py:3660 ../troubleshoot/ChooseNetworkPrinter.py:37 -+#: ../my-default-printer.py:158 ../system-config-printer.py:427 -+#: ../system-config-printer.py:3675 ../troubleshoot/ChooseNetworkPrinter.py:37 - #: ../troubleshoot/ChoosePrinter.py:38 - #, fuzzy - msgid "Location" -@@ -536,7 +545,7 @@ msgstr "To je opis tiskalnika." - msgid "Authenticated" - msgstr "Avtentikacija" - --#: ../ppdippstr.py:50 ../system-config-printer.py:6259 -+#: ../ppdippstr.py:50 ../system-config-printer.py:6207 - msgid "None" - msgstr "Nič" - -@@ -759,217 +768,217 @@ msgstr "" - msgid "1200 dpi, photo, black + color cartridge, photo paper" - msgstr "" - --#: ../system-config-printer.py:127 -+#: ../system-config-printer.py:131 - msgid "To do this, select System->Administration->Firewall from the main menu." - msgstr "" - --#: ../system-config-printer.py:185 -+#: ../system-config-printer.py:189 - msgid "Idle" - msgstr "" - --#: ../system-config-printer.py:187 -+#: ../system-config-printer.py:191 - msgid "Busy" - msgstr "" - --#: ../system-config-printer.py:372 ../system-config-printer.py:1373 -+#: ../system-config-printer.py:376 ../system-config-printer.py:1377 - #, fuzzy - msgid "Class" - msgstr "Vzdevki" - --#: ../system-config-printer.py:399 -+#: ../system-config-printer.py:403 - #, fuzzy - msgid "Set As De_fault" - msgstr "_Privzeto" - --#: ../system-config-printer.py:403 -+#: ../system-config-printer.py:407 - #, fuzzy - msgid "_Create class" - msgstr "Tiskalnik Jetdirect" - --#: ../system-config-printer.py:405 -+#: ../system-config-printer.py:409 - #, fuzzy - msgid "View Print _Queue" - msgstr "Surova tiskalniška čakalna vrsta" - --#: ../system-config-printer.py:407 -+#: ../system-config-printer.py:411 - msgid "_Add to Group" - msgstr "" - --#: ../system-config-printer.py:409 -+#: ../system-config-printer.py:413 - msgid "Save Results as _Group" - msgstr "" - --#: ../system-config-printer.py:411 -+#: ../system-config-printer.py:415 - msgid "Save Filter as _Search Group" - msgstr "" - --#: ../system-config-printer.py:415 -+#: ../system-config-printer.py:419 - msgid "E_nabled" - msgstr "" - --#: ../system-config-printer.py:417 -+#: ../system-config-printer.py:421 - #, fuzzy - msgid "_Shared" - msgstr "Deljeni vir" - --#: ../system-config-printer.py:421 ../troubleshoot/ChooseNetworkPrinter.py:35 -+#: ../system-config-printer.py:425 ../troubleshoot/ChooseNetworkPrinter.py:35 - #: ../troubleshoot/ChoosePrinter.py:36 ../troubleshoot/DeviceListed.py:36 - msgid "Name" - msgstr "Ime" - --#: ../system-config-printer.py:422 -+#: ../system-config-printer.py:426 - #, fuzzy - msgid "Description" - msgstr "Opis" - --#: ../system-config-printer.py:424 -+#: ../system-config-printer.py:428 - msgid "Manufacturer / Model" - msgstr "" - - #. Printer state reasons list --#: ../system-config-printer.py:499 -+#: ../system-config-printer.py:503 - msgid "Message" - msgstr "" - --#: ../system-config-printer.py:534 -+#: ../system-config-printer.py:538 - msgid "Problems?" - msgstr "" - --#: ../system-config-printer.py:637 ../system-config-printer.py:639 -+#: ../system-config-printer.py:641 ../system-config-printer.py:643 - msgid "Members of this class" - msgstr "" - --#: ../system-config-printer.py:638 ../system-config-printer.py:640 -+#: ../system-config-printer.py:642 ../system-config-printer.py:644 - msgid "Others" - msgstr "" - --#: ../system-config-printer.py:641 -+#: ../system-config-printer.py:645 - #, fuzzy - msgid "Devices" - msgstr "Naprava" - --#: ../system-config-printer.py:642 -+#: ../system-config-printer.py:646 - #, fuzzy - msgid "Connections" - msgstr "Komentar" - --#: ../system-config-printer.py:643 -+#: ../system-config-printer.py:647 - msgid "Makes" - msgstr "" - --#: ../system-config-printer.py:644 -+#: ../system-config-printer.py:648 - #, fuzzy - msgid "Models" - msgstr "Model" - --#: ../system-config-printer.py:645 -+#: ../system-config-printer.py:649 - #, fuzzy - msgid "Drivers" - msgstr "Gonilnik" - --#: ../system-config-printer.py:646 ../glade/NewPrinterWindow.glade.h:55 -+#: ../system-config-printer.py:650 ../glade/NewPrinterWindow.glade.h:54 - #, fuzzy - msgid "Downloadable Drivers" - msgstr "Dostopni gonilniki:" - --#: ../system-config-printer.py:647 -+#: ../system-config-printer.py:651 - #, fuzzy - msgid "Users" - msgstr "Uporabnik" - --#: ../system-config-printer.py:682 -+#: ../system-config-printer.py:686 - msgid "Automatic rotation" - msgstr "" - --#: ../system-config-printer.py:989 -+#: ../system-config-printer.py:993 - #, fuzzy, python-format - msgid "Printer Properties - '%s' on %s" - msgstr "Možnosti filtra" - - #. The Conflict button was pressed. --#: ../system-config-printer.py:996 -+#: ../system-config-printer.py:1000 - msgid "" - "There are conflicting options.\n" - "Changes can only be applied after\n" - "these conflicts are resolved." - msgstr "" - --#: ../system-config-printer.py:1214 -+#: ../system-config-printer.py:1218 - #, python-format - msgid "Printer configuration - %s" - msgstr "Prikrojitev tiskalnika - %s" - --#: ../system-config-printer.py:1217 -+#: ../system-config-printer.py:1221 - #, python-format - msgid "Connected to %s" - msgstr "" - - #. Update our copy of the printer's settings. --#: ../system-config-printer.py:1257 ../system-config-printer.py:2042 -+#: ../system-config-printer.py:1261 ../system-config-printer.py:2046 - msgid "obtaining queue details" - msgstr "" - --#: ../system-config-printer.py:1295 -+#: ../system-config-printer.py:1299 - msgid "Remove from Group" - msgstr "" - --#: ../system-config-printer.py:1361 -+#: ../system-config-printer.py:1365 - #, fuzzy - msgid "Network printer (discovered)" - msgstr "Tiskalnik:" - --#: ../system-config-printer.py:1364 -+#: ../system-config-printer.py:1368 - msgid "Network class (discovered)" - msgstr "" - --#: ../system-config-printer.py:1370 ../system-config-printer.py:5524 --#: ../system-config-printer.py:5594 ../system-config-printer.py:5596 -+#: ../system-config-printer.py:1374 ../system-config-printer.py:5519 -+#: ../system-config-printer.py:5589 ../system-config-printer.py:5591 - msgid "Fax" - msgstr "" - --#: ../system-config-printer.py:1376 ../system-config-printer.py:1382 -+#: ../system-config-printer.py:1380 ../system-config-printer.py:1386 - #: ../troubleshoot/LocalOrRemote.py:30 - #, fuzzy - msgid "Network printer" - msgstr "Tiskalnik:" - --#: ../system-config-printer.py:1379 -+#: ../system-config-printer.py:1383 - #, fuzzy - msgid "Network print share" - msgstr "Tiskalnik:" - --#: ../system-config-printer.py:1508 ../glade/ConnectingDialog.glade.h:2 -+#: ../system-config-printer.py:1512 ../glade/ConnectingDialog.glade.h:2 - #, no-c-format, python-format - msgid "Opening connection to %s" - msgstr "" - --#: ../system-config-printer.py:1887 -+#: ../system-config-printer.py:1891 - msgid "Installable Options" - msgstr "" - --#: ../system-config-printer.py:1888 -+#: ../system-config-printer.py:1892 - #: ../glade/PrinterPropertiesDialog.glade.h:109 - #, fuzzy - msgid "Printer Options" - msgstr "Možnosti filtra" - --#: ../system-config-printer.py:1924 -+#: ../system-config-printer.py:1928 - #, python-format - msgid "modifying class %s" - msgstr "" - --#: ../system-config-printer.py:1926 ../system-config-printer.py:3019 --#: ../system-config-printer.py:3044 ../system-config-printer.py:6547 --#: ../system-config-printer.py:6559 ../system-config-printer.py:6581 -+#: ../system-config-printer.py:1930 ../system-config-printer.py:3037 -+#: ../system-config-printer.py:3062 ../system-config-printer.py:6495 -+#: ../system-config-printer.py:6507 ../system-config-printer.py:6529 - #, fuzzy, python-format - msgid "modifying printer %s" - msgstr "Dodaj novo tiskalniško vrsto" - --#: ../system-config-printer.py:1941 -+#: ../system-config-printer.py:1945 - msgid "This will delete this class!" - msgstr "" - --#: ../system-config-printer.py:1942 -+#: ../system-config-printer.py:1946 - msgid "Proceed anyway?" - msgstr "" - -@@ -977,72 +986,72 @@ msgstr "" - #. but we have never fetched the server settings to see whether - #. the server is publishing shared printers. Fetch the settings - #. now so that we can update the "not published" label if necessary. --#: ../system-config-printer.py:2030 ../system-config-printer.py:3203 -+#: ../system-config-printer.py:2034 ../system-config-printer.py:3221 - #, fuzzy - msgid "fetching server settings" - msgstr "Možnosti gonilnika" - --#: ../system-config-printer.py:2100 -+#: ../system-config-printer.py:2104 - #, fuzzy - msgid "Set Default Printer" - msgstr "To je opis tiskalnika." - --#: ../system-config-printer.py:2102 -+#: ../system-config-printer.py:2106 - #, fuzzy - msgid "Do you want to set this as the system-wide default printer?" - msgstr "" - "Ali želite shraniti spremembe,\n" - "ki ste jih naredili nastavitvam tiskalnika?" - --#: ../system-config-printer.py:2104 -+#: ../system-config-printer.py:2108 - #, fuzzy - msgid "Set as the _system-wide default printer" - msgstr "To je opis tiskalnika." - --#: ../system-config-printer.py:2106 -+#: ../system-config-printer.py:2110 - msgid "_Clear my personal default setting" - msgstr "" - --#: ../system-config-printer.py:2107 -+#: ../system-config-printer.py:2111 - #, fuzzy - msgid "Set as my _personal default printer" - msgstr "To je opis tiskalnika." - --#: ../system-config-printer.py:2112 -+#: ../system-config-printer.py:2116 - #, fuzzy - msgid "setting default printer" - msgstr "To je opis tiskalnika." - --#: ../system-config-printer.py:2169 -+#: ../system-config-printer.py:2173 - #, fuzzy - msgid "printing test page" - msgstr "Zapiski o tiskalniku:" - --#: ../system-config-printer.py:2182 ../system-config-printer.py:2217 --#: ../system-config-printer.py:5418 -+#: ../system-config-printer.py:2186 ../system-config-printer.py:2221 -+#: ../system-config-printer.py:5413 - msgid "Not possible" - msgstr "" - --#: ../system-config-printer.py:2183 ../system-config-printer.py:2218 -+#: ../system-config-printer.py:2187 ../system-config-printer.py:2222 - msgid "" - "The remote server did not accept the print job, most likely because the " - "printer is not shared." - msgstr "" - --#: ../system-config-printer.py:2195 ../system-config-printer.py:2210 -+#: ../system-config-printer.py:2199 ../system-config-printer.py:2214 - msgid "Submitted" - msgstr "" - --#: ../system-config-printer.py:2196 -+#: ../system-config-printer.py:2200 - #, python-format - msgid "Test page submitted as job %d" - msgstr "" - --#: ../system-config-printer.py:2203 -+#: ../system-config-printer.py:2207 - msgid "sending maintenance command" - msgstr "" - --#: ../system-config-printer.py:2211 -+#: ../system-config-printer.py:2215 - #, python-format - msgid "Maintenance command submitted as job %d" - msgstr "" -@@ -1050,11 +1059,11 @@ msgstr "" - #. The underlying cupsGetPPD2() function returned NULL without - #. setting an IPP error, so it'll be something like a failed - #. connection. --#: ../system-config-printer.py:2285 ../system-config-printer.py:2381 -+#: ../system-config-printer.py:2289 ../system-config-printer.py:2385 - msgid "Error" - msgstr "Napaka" - --#: ../system-config-printer.py:2286 -+#: ../system-config-printer.py:2290 - #, fuzzy - msgid "There was a problem connecting to the CUPS server." - msgstr "" -@@ -1062,68 +1071,68 @@ msgstr "" - "'%s' je prišlo do napake:\n" - "\n" - --#: ../system-config-printer.py:2382 -+#: ../system-config-printer.py:2386 - #, python-format - msgid "Option '%s' has value '%s' and cannot be edited." - msgstr "" - --#: ../system-config-printer.py:2466 -+#: ../system-config-printer.py:2476 - msgid "Marker levels are not reported for this printer." - msgstr "" - --#: ../system-config-printer.py:2763 -+#: ../system-config-printer.py:2773 - #, fuzzy - msgid "Cannot Rename" - msgstr "_Odstrani" - --#: ../system-config-printer.py:2764 -+#: ../system-config-printer.py:2774 - #, fuzzy - msgid "There are queued jobs." - msgstr "Za ta gonilnik ni na voljo nobene izbire." - --#: ../system-config-printer.py:2822 -+#: ../system-config-printer.py:2840 - #, fuzzy - msgid "renaming printer" - msgstr "Dodaj novo tiskalniško vrsto" - - #. for classes make sure all members - #. will get added --#: ../system-config-printer.py:2907 -+#: ../system-config-printer.py:2925 - #, fuzzy - msgid "copying printer" - msgstr "Dodaj novo tiskalniško vrsto" - --#: ../system-config-printer.py:2971 -+#: ../system-config-printer.py:2989 - #, fuzzy, python-format - msgid "Really delete class '%s'?" - msgstr "Zares zbrišete \"%s\"?" - --#: ../system-config-printer.py:2973 -+#: ../system-config-printer.py:2991 - #, fuzzy, python-format - msgid "Really delete printer '%s'?" - msgstr "Zares zbrišete \"%s\"?" - --#: ../system-config-printer.py:2975 -+#: ../system-config-printer.py:2993 - #, fuzzy - msgid "Really delete selected destinations?" - msgstr "Zares zbrišete \"%s\"?" - --#: ../system-config-printer.py:2996 -+#: ../system-config-printer.py:3014 - #, fuzzy, python-format - msgid "deleting printer %s" - msgstr "Dodaj novo tiskalniško vrsto" - --#: ../system-config-printer.py:3070 -+#: ../system-config-printer.py:3088 - msgid "Publish Shared Printers" - msgstr "" - --#: ../system-config-printer.py:3071 -+#: ../system-config-printer.py:3089 - msgid "" - "Shared printers are not available to other people unless the 'Publish shared " - "printers' option is enabled in the server settings." - msgstr "" - --#: ../system-config-printer.py:3264 -+#: ../system-config-printer.py:3282 - #, fuzzy - msgid "modifying server settings" - msgstr "Možnosti gonilnika" -@@ -1134,109 +1143,109 @@ msgstr "Možnosti gonilnika" - #. be unblocked. Unfortunately, this is not yet possible - #. (bug #440469). However, we can display a dialog to suggest - #. that now might be a good time to review the firewall settings. --#: ../system-config-printer.py:3289 -+#: ../system-config-printer.py:3307 - #, fuzzy - msgid "Review Firewall" - msgstr "Datoteka naprave" - --#: ../system-config-printer.py:3290 -+#: ../system-config-printer.py:3308 - msgid "" - "You may need to adjust the firewall to allow network printing to this " - "computer." - msgstr "" - --#: ../system-config-printer.py:3623 -+#: ../system-config-printer.py:3638 - msgid "Browsing not available (pysmbc not installed)" - msgstr "" - - #. SMB list columns --#: ../system-config-printer.py:3629 -+#: ../system-config-printer.py:3644 - msgid "Share" - msgstr "Deljeni vir" - --#: ../system-config-printer.py:3635 -+#: ../system-config-printer.py:3650 - msgid "Comment" - msgstr "Komentar" - - #. IPP list columns --#: ../system-config-printer.py:3654 -+#: ../system-config-printer.py:3669 - msgid "Queue" - msgstr "Čakalna vrsta" - --#: ../system-config-printer.py:3668 -+#: ../system-config-printer.py:3683 - msgid "" - "PostScript Printer Description files (*.ppd, *.PPD, *.ppd.gz, *.PPD.gz, *." - "PPD.GZ)" - msgstr "" - --#: ../system-config-printer.py:3677 -+#: ../system-config-printer.py:3692 - msgid "All files (*)" - msgstr "" - --#: ../system-config-printer.py:3713 ../system-config-printer.py:5970 --#: ../system-config-printer.py:6008 ../applet.py:124 -+#: ../system-config-printer.py:3728 ../system-config-printer.py:5918 -+#: ../system-config-printer.py:5956 ../applet.py:124 - #, fuzzy - msgid "Search" - msgstr "Pozor" - --#: ../system-config-printer.py:3736 ../system-config-printer.py:3760 --#: ../glade/NewPrinterWindow.glade.h:74 -+#: ../system-config-printer.py:3751 ../system-config-printer.py:3775 -+#: ../glade/NewPrinterWindow.glade.h:73 - #, fuzzy - msgid "New Printer" - msgstr "Tiskalnik:" - --#: ../system-config-printer.py:3747 -+#: ../system-config-printer.py:3762 - msgid "New Class" - msgstr "" - --#: ../system-config-printer.py:3752 -+#: ../system-config-printer.py:3767 - msgid "Change Device URI" - msgstr "" - --#: ../system-config-printer.py:3758 -+#: ../system-config-printer.py:3773 - #, fuzzy - msgid "Change Driver" - msgstr "Spremeni tip" - --#: ../system-config-printer.py:3927 ../system-config-printer.py:3993 --#: ../system-config-printer.py:4289 ../system-config-printer.py:4487 --#: ../system-config-printer.py:5772 ../system-config-printer.py:5995 -+#: ../system-config-printer.py:3942 ../system-config-printer.py:4008 -+#: ../system-config-printer.py:4304 ../system-config-printer.py:4502 -+#: ../system-config-printer.py:5762 ../system-config-printer.py:5943 - #, fuzzy - msgid "Searching" - msgstr "Pozor" - --#: ../system-config-printer.py:3928 -+#: ../system-config-printer.py:3943 - #, fuzzy - msgid "Searching for downloadable drivers" - msgstr "Lastnosti skupne rabe" - --#: ../system-config-printer.py:3994 ../system-config-printer.py:4290 -+#: ../system-config-printer.py:4009 ../system-config-printer.py:4305 - #, fuzzy - msgid "Searching for drivers" - msgstr "Lastnosti skupne rabe" - --#: ../system-config-printer.py:4488 ../system-config-printer.py:5773 -+#: ../system-config-printer.py:4503 ../system-config-printer.py:5763 - #, fuzzy - msgid "Searching for printers" - msgstr "Lastnosti skupne rabe" - --#: ../system-config-printer.py:4497 -+#: ../system-config-printer.py:4512 - #, fuzzy - msgid "fetching device list" - msgstr "Možnosti gonilnika" - - #. Tell the user why he needs the plugin --#: ../system-config-printer.py:4579 -+#: ../system-config-printer.py:4594 - msgid "For this printer a proprietary driver plugin from HP is available.\n" - msgstr "" - --#: ../system-config-printer.py:4582 -+#: ../system-config-printer.py:4597 - msgid "" - "The installation of the plugin is required for your printer to work.\n" - "\n" - msgstr "" - --#: ../system-config-printer.py:4585 -+#: ../system-config-printer.py:4600 - msgid "" - "Installing the plugin is optional, it completes or enhances the " - "functionality\n" -@@ -1244,141 +1253,137 @@ msgid "" - "\n" - msgstr "" - --#: ../system-config-printer.py:4589 -+#: ../system-config-printer.py:4604 - msgid "The plugin provides the following features:\n" - msgstr "" - --#: ../system-config-printer.py:4592 -+#: ../system-config-printer.py:4607 - msgid " - Printing support\n" - msgstr "" - --#: ../system-config-printer.py:4595 -+#: ../system-config-printer.py:4610 - msgid " - Faster printing\n" - msgstr "" - --#: ../system-config-printer.py:4598 -+#: ../system-config-printer.py:4613 - msgid " - Better printout quality\n" - msgstr "" - --#: ../system-config-printer.py:4601 -+#: ../system-config-printer.py:4616 - msgid " - Extra printing features\n" - msgstr "" - --#: ../system-config-printer.py:4604 -+#: ../system-config-printer.py:4619 - msgid " - Scanning support\n" - msgstr "" - --#: ../system-config-printer.py:4607 -+#: ../system-config-printer.py:4622 - msgid " - Faster scanning\n" - msgstr "" - --#: ../system-config-printer.py:4610 -+#: ../system-config-printer.py:4625 - msgid " - Better scanning image quality\n" - msgstr "" - --#: ../system-config-printer.py:4613 -+#: ../system-config-printer.py:4628 - msgid " - Faxing support\n" - msgstr "" - --#: ../system-config-printer.py:4616 -+#: ../system-config-printer.py:4631 - msgid " - Extra fax features\n" - msgstr "" - --#: ../system-config-printer.py:4619 -+#: ../system-config-printer.py:4634 - msgid " - Better Input/Output support\n" - msgstr "" - --#: ../system-config-printer.py:4622 -+#: ../system-config-printer.py:4637 - msgid " - Extra user interface features\n" - msgstr "" - --#: ../system-config-printer.py:4625 -+#: ../system-config-printer.py:4640 - msgid " - Other extra features\n" - msgstr "" - --#: ../system-config-printer.py:4630 -+#: ../system-config-printer.py:4645 - #, fuzzy - msgid "Install plugin" - msgstr "Možnosti filtra" - --#: ../system-config-printer.py:4631 -+#: ../system-config-printer.py:4646 - #, fuzzy - msgid "Do not set up printer" - msgstr "Tiskalnik:" - --#: ../system-config-printer.py:4632 -+#: ../system-config-printer.py:4647 - msgid "Set up without plugin" - msgstr "" - --#: ../system-config-printer.py:4634 ../troubleshoot/PrintTestPage.py:118 -+#: ../system-config-printer.py:4649 ../troubleshoot/PrintTestPage.py:118 - msgid "Yes" - msgstr "Da" - --#: ../system-config-printer.py:4635 ../troubleshoot/PrintTestPage.py:119 -+#: ../system-config-printer.py:4650 ../troubleshoot/PrintTestPage.py:119 - msgid "No" - msgstr "Ne" - --#: ../system-config-printer.py:4809 ../system-config-printer.py:4813 -+#: ../system-config-printer.py:4824 ../system-config-printer.py:4828 - msgid " (Current)" - msgstr "" - --#: ../system-config-printer.py:4845 --msgid "HP Printer (HPLIP)" --msgstr "" -- --#: ../system-config-printer.py:4886 -+#: ../system-config-printer.py:4881 - msgid "Other" - msgstr "" - - #. device-info - #. PhysicalDevice obj - #. Separator? --#: ../system-config-printer.py:4902 -+#: ../system-config-printer.py:4897 - #, fuzzy - msgid "Network Printer" - msgstr "Tiskalnik:" - --#: ../system-config-printer.py:4906 -+#: ../system-config-printer.py:4901 - #, fuzzy - msgid "Find Network Printer" - msgstr "Tiskalnik:" - --#: ../system-config-printer.py:4979 ../system-config-printer.py:5376 -+#: ../system-config-printer.py:4974 ../system-config-printer.py:5371 - msgid "Scanning..." - msgstr "" - --#: ../system-config-printer.py:5034 ../system-config-printer.py:5798 -+#: ../system-config-printer.py:5029 - #, fuzzy - msgid "No Print Shares" - msgstr "Tiskalnik:" - --#: ../system-config-printer.py:5035 -+#: ../system-config-printer.py:5030 - msgid "" - "There were no print shares found. Please check that the Samba service is " - "marked as trusted in your firewall configuration." - msgstr "" - --#: ../system-config-printer.py:5296 ../system-config-printer.py:5357 -+#: ../system-config-printer.py:5291 ../system-config-printer.py:5352 - msgid "Print Share Verified" - msgstr "" - --#: ../system-config-printer.py:5297 ../system-config-printer.py:5358 -+#: ../system-config-printer.py:5292 ../system-config-printer.py:5353 - msgid "This print share is accessible." - msgstr "" - --#: ../system-config-printer.py:5302 ../system-config-printer.py:5362 -+#: ../system-config-printer.py:5297 ../system-config-printer.py:5357 - msgid "This print share is not accessible." - msgstr "" - --#: ../system-config-printer.py:5305 -+#: ../system-config-printer.py:5300 - msgid "Print Share Inaccessible" - msgstr "" - --#: ../system-config-printer.py:5361 -+#: ../system-config-printer.py:5356 - msgid "Inaccessible" - msgstr "" - --#: ../system-config-printer.py:5419 -+#: ../system-config-printer.py:5414 - #, fuzzy, python-format - msgid "It is not possible to obtain a list of queues from '%s'." - msgstr "" -@@ -1386,158 +1391,154 @@ msgstr "" - "'%s' je prišlo do napake:\n" - "\n" - --#: ../system-config-printer.py:5421 -+#: ../system-config-printer.py:5416 - msgid "" - "Obtaining a list of queues is a CUPS extension to IPP. Network printers do " - "not support it." - msgstr "" - --#: ../system-config-printer.py:5424 -+#: ../system-config-printer.py:5419 - #, fuzzy - msgid "No queues" - msgstr "_Nova vrsta" - --#: ../system-config-printer.py:5425 -+#: ../system-config-printer.py:5420 - #, fuzzy - msgid "There are no queues available." - msgstr "Za ta gonilnik ni na voljo nobene izbire." - --#: ../system-config-printer.py:5516 -+#: ../system-config-printer.py:5511 - msgid "Parallel Port" - msgstr "" - --#: ../system-config-printer.py:5518 -+#: ../system-config-printer.py:5513 - #, fuzzy - msgid "Serial Port" - msgstr "Splošno" - --#: ../system-config-printer.py:5520 -+#: ../system-config-printer.py:5515 - msgid "USB" - msgstr "" - --#: ../system-config-printer.py:5522 ../system-config-printer.py:5525 -+#: ../system-config-printer.py:5517 ../system-config-printer.py:5520 - msgid "HP Linux Imaging and Printing (HPLIP)" - msgstr "" - --#: ../system-config-printer.py:5527 -+#: ../system-config-printer.py:5522 - msgid "Hardware Abstraction Layer (HAL)" - msgstr "" - --#: ../system-config-printer.py:5529 -+#: ../system-config-printer.py:5524 - #, fuzzy - msgid "AppSocket/HP JetDirect" - msgstr "Omreženi _JetDirect" - --#: ../system-config-printer.py:5538 -+#: ../system-config-printer.py:5533 - #, python-format - msgid "LPD/LPR queue '%s'" - msgstr "" - --#: ../system-config-printer.py:5540 -+#: ../system-config-printer.py:5535 - msgid "LPD/LPR queue" - msgstr "" - --#: ../system-config-printer.py:5543 -+#: ../system-config-printer.py:5538 - #, fuzzy - msgid "Windows Printer via SAMBA" - msgstr "Podatki za tiskalnik v Windows (SMB)" - --#: ../system-config-printer.py:5545 ../glade/NewPrinterWindow.glade.h:66 -+#: ../system-config-printer.py:5540 ../glade/NewPrinterWindow.glade.h:65 - #, fuzzy - msgid "IPP" - msgstr "IP:" - --#: ../system-config-printer.py:5547 -+#: ../system-config-printer.py:5542 - msgid "HTTP" - msgstr "" - --#: ../system-config-printer.py:5632 -+#: ../system-config-printer.py:5624 - msgid "A printer connected to the parallel port." - msgstr "" - --#: ../system-config-printer.py:5634 -+#: ../system-config-printer.py:5626 - msgid "A printer connected to a USB port." - msgstr "" - --#: ../system-config-printer.py:5636 -+#: ../system-config-printer.py:5628 - msgid "" - "HPLIP software driving a printer, or the printer function of a multi-" - "function device." - msgstr "" - --#: ../system-config-printer.py:5639 -+#: ../system-config-printer.py:5631 - msgid "" - "HPLIP software driving a fax machine, or the fax function of a multi-" - "function device." - msgstr "" - --#: ../system-config-printer.py:5642 -+#: ../system-config-printer.py:5634 - msgid "Local printer detected by the Hardware Abstraction Layer (HAL)." - msgstr "" - --#: ../system-config-printer.py:5799 --msgid "HPLIP cannot find the device." --msgstr "" -- --#: ../system-config-printer.py:5881 -+#: ../system-config-printer.py:5831 - msgid "No printer was found at that address." - msgstr "" - --#: ../system-config-printer.py:6020 -+#: ../system-config-printer.py:5968 - #, fuzzy - msgid "-- Select from search results --" - msgstr "Izbrati morate model tiskalnika." - --#: ../system-config-printer.py:6022 -+#: ../system-config-printer.py:5970 - msgid "-- No matches found --" - msgstr "" - --#: ../system-config-printer.py:6203 -+#: ../system-config-printer.py:6151 - #, fuzzy - msgid " (recommended)" - msgstr "" - "(priporočeni\n" - "gonilnik je %s)" - --#: ../system-config-printer.py:6217 -+#: ../system-config-printer.py:6165 - msgid "This PPD is generated by foomatic." - msgstr "" - --#: ../system-config-printer.py:6241 -+#: ../system-config-printer.py:6189 - #, fuzzy - msgid "OpenPrinting" - msgstr "Tiskanje" - --#: ../system-config-printer.py:6252 -+#: ../system-config-printer.py:6200 - msgid "Distributable" - msgstr "" - --#: ../system-config-printer.py:6293 -+#: ../system-config-printer.py:6241 - msgid ", " - msgstr "" - --#: ../system-config-printer.py:6298 -+#: ../system-config-printer.py:6246 - #, python-format - msgid "" - "\n" - "(%s)" - msgstr "" - --#: ../system-config-printer.py:6303 -+#: ../system-config-printer.py:6251 - msgid "No support contacts known" - msgstr "" - --#: ../system-config-printer.py:6307 ../system-config-printer.py:6320 -+#: ../system-config-printer.py:6255 ../system-config-printer.py:6268 - #, fuzzy - msgid "Not specified." - msgstr "Določiti morate napravo." - - #. Foomatic database problem of some sort. --#: ../system-config-printer.py:6360 -+#: ../system-config-printer.py:6308 - msgid "Database error" - msgstr "" - --#: ../system-config-printer.py:6361 -+#: ../system-config-printer.py:6309 - #, python-format - msgid "The '%s' driver cannot be used with printer '%s %s'." - msgstr "" -@@ -1545,65 +1546,65 @@ msgstr "" - #. This printer references some XML that is not - #. installed by default. Point the user at the - #. package they need to install. --#: ../system-config-printer.py:6371 -+#: ../system-config-printer.py:6319 - #, python-format - msgid "You will need to install the '%s' package in order to use this driver." - msgstr "" - - #. This error came from trying to open the PPD file. --#: ../system-config-printer.py:6378 -+#: ../system-config-printer.py:6326 - msgid "PPD error" - msgstr "" - --#: ../system-config-printer.py:6380 -+#: ../system-config-printer.py:6328 - msgid "Failed to read PPD file. Possible reason follows:" - msgstr "" - - #. Failed to get PPD downloaded from OpenPrinting XXX --#: ../system-config-printer.py:6397 -+#: ../system-config-printer.py:6345 - #, fuzzy - msgid "Downloadable drivers" - msgstr "Dostopni gonilniki:" - --#: ../system-config-printer.py:6398 -+#: ../system-config-printer.py:6346 - msgid "Failed to download PPD." - msgstr "" - --#: ../system-config-printer.py:6405 -+#: ../system-config-printer.py:6353 - #, fuzzy - msgid "fetching PPD" - msgstr "Spremeni tip" - --#: ../system-config-printer.py:6434 ../system-config-printer.py:6472 -+#: ../system-config-printer.py:6382 ../system-config-printer.py:6420 - msgid "No Installable Options" - msgstr "" - --#: ../system-config-printer.py:6520 -+#: ../system-config-printer.py:6468 - #, fuzzy, python-format - msgid "adding printer %s" - msgstr "Dodaj novo tiskalniško vrsto" - --#: ../system-config-printer.py:6669 -+#: ../system-config-printer.py:6617 - #, fuzzy - msgid "Would you like to print a test page?" - msgstr "Natisnem preizkusno stran ?" - --#: ../system-config-printer.py:6722 -+#: ../system-config-printer.py:6670 - #, fuzzy - msgid "Install driver" - msgstr "Gonilnik za tiskalnik" - --#: ../system-config-printer.py:6723 ../troubleshoot/CheckPPDSanity.py:131 -+#: ../system-config-printer.py:6671 ../troubleshoot/CheckPPDSanity.py:131 - #, python-format - msgid "Printer '%s' requires the %s package but it is not currently installed." - msgstr "" - --#: ../system-config-printer.py:6739 -+#: ../system-config-printer.py:6687 - #, fuzzy - msgid "Missing driver" - msgstr "Gonilnik za tiskalnik" - --#: ../system-config-printer.py:6740 -+#: ../system-config-printer.py:6688 - #, python-format - msgid "" - "Printer '%s' requires the '%s' program but it is not currently installed. " -@@ -1732,116 +1733,111 @@ msgstr "Tiskalniška naprava" - - #: ../glade/NewPrinterWindow.glade.h:5 - #, fuzzy --msgid "HP Printer (HPLIP) via network" --msgstr "Model tiskalnika" -- --#: ../glade/NewPrinterWindow.glade.h:6 --#, fuzzy - msgid "IPP Printer" - msgstr "Model tiskalnika" - --#: ../glade/NewPrinterWindow.glade.h:7 -+#: ../glade/NewPrinterWindow.glade.h:6 - #, fuzzy - msgid "License Terms" - msgstr "Model tiskalnika" - --#: ../glade/NewPrinterWindow.glade.h:8 -+#: ../glade/NewPrinterWindow.glade.h:7 - msgid "Location of the LPD network printer" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:9 -+#: ../glade/NewPrinterWindow.glade.h:8 - msgid "Location of the network printer" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:10 -+#: ../glade/NewPrinterWindow.glade.h:9 - msgid "Location (optional)" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:11 -+#: ../glade/NewPrinterWindow.glade.h:10 - #, fuzzy - msgid "Network Printer" - msgstr "Tiskalnik:" - --#: ../glade/NewPrinterWindow.glade.h:12 -+#: ../glade/NewPrinterWindow.glade.h:11 - #, fuzzy - msgid "Note" - msgstr "Model tiskalnika" - --#: ../glade/NewPrinterWindow.glade.h:13 -+#: ../glade/NewPrinterWindow.glade.h:12 - msgid "Output Quality" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:14 -+#: ../glade/NewPrinterWindow.glade.h:13 - #, fuzzy - msgid "Printer Name" - msgstr "Model tiskalnika" - --#: ../glade/NewPrinterWindow.glade.h:15 -+#: ../glade/NewPrinterWindow.glade.h:14 - #, fuzzy - msgid "SMB Printer" - msgstr "Model tiskalnika" - --#: ../glade/NewPrinterWindow.glade.h:16 -+#: ../glade/NewPrinterWindow.glade.h:15 - #, fuzzy - msgid "Select Driver" - msgstr "Model tiskalnika" - --#: ../glade/NewPrinterWindow.glade.h:17 -+#: ../glade/NewPrinterWindow.glade.h:16 - msgid "Settings of the serial port" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:18 -+#: ../glade/NewPrinterWindow.glade.h:17 - msgid "smb://[workgroup/]server[:port]/printer" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:19 -+#: ../glade/NewPrinterWindow.glade.h:18 - msgid "Choose Class Members" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:20 -+#: ../glade/NewPrinterWindow.glade.h:19 - msgid "Choose Driver" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:21 -+#: ../glade/NewPrinterWindow.glade.h:20 - msgid "Describe Printer" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:22 -+#: ../glade/NewPrinterWindow.glade.h:21 - msgid "Existing Settings" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:23 -+#: ../glade/NewPrinterWindow.glade.h:22 - msgid "Installable Options" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:24 -+#: ../glade/NewPrinterWindow.glade.h:23 - msgid "Select Device" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:25 -+#: ../glade/NewPrinterWindow.glade.h:24 - msgid "Baud Rate" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:26 -+#: ../glade/NewPrinterWindow.glade.h:25 - msgid "Browse..." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:27 -+#: ../glade/NewPrinterWindow.glade.h:26 - #, fuzzy - msgid "Comments..." - msgstr "Komentar" - --#: ../glade/NewPrinterWindow.glade.h:28 -+#: ../glade/NewPrinterWindow.glade.h:27 - #, fuzzy - msgid "Connection" - msgstr "_Dejanje" - --#: ../glade/NewPrinterWindow.glade.h:29 -+#: ../glade/NewPrinterWindow.glade.h:28 - #, fuzzy - msgid "Data Bits" - msgstr "Podrobnosti" - --#: ../glade/NewPrinterWindow.glade.h:30 -+#: ../glade/NewPrinterWindow.glade.h:29 - msgid "" - "Default\n" - "1200\n" -@@ -1854,7 +1850,7 @@ msgid "" - "115200" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:39 -+#: ../glade/NewPrinterWindow.glade.h:38 - #, fuzzy - msgid "" - "Default\n" -@@ -1862,7 +1858,7 @@ msgid "" - "7" - msgstr "Privzeto" - --#: ../glade/NewPrinterWindow.glade.h:42 -+#: ../glade/NewPrinterWindow.glade.h:41 - msgid "" - "Default\n" - "None\n" -@@ -1870,7 +1866,7 @@ msgid "" - "Even" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:46 -+#: ../glade/NewPrinterWindow.glade.h:45 - msgid "" - "Default\n" - "None\n" -@@ -1879,205 +1875,205 @@ msgid "" - "DTR/DSR (Hardware)" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:51 -+#: ../glade/NewPrinterWindow.glade.h:50 - #: ../glade/PrinterPropertiesDialog.glade.h:35 - #, fuzzy - msgid "Description:" - msgstr "Opis" - --#: ../glade/NewPrinterWindow.glade.h:52 ../troubleshoot/DeviceListed.py:40 -+#: ../glade/NewPrinterWindow.glade.h:51 ../troubleshoot/DeviceListed.py:40 - #, fuzzy - msgid "Device URI" - msgstr "Naprava: " - --#: ../glade/NewPrinterWindow.glade.h:53 -+#: ../glade/NewPrinterWindow.glade.h:52 - #, fuzzy - msgid "Device description." - msgstr "Opis" - --#: ../glade/NewPrinterWindow.glade.h:54 -+#: ../glade/NewPrinterWindow.glade.h:53 - msgid "DirectJet" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:56 -+#: ../glade/NewPrinterWindow.glade.h:55 - #, fuzzy - msgid "Driver details" - msgstr "Gonilnik" - --#: ../glade/NewPrinterWindow.glade.h:57 -+#: ../glade/NewPrinterWindow.glade.h:56 - msgid "Empty" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:58 -+#: ../glade/NewPrinterWindow.glade.h:57 - msgid "Find _Queue..." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:59 -+#: ../glade/NewPrinterWindow.glade.h:58 - msgid "Flow Control" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:60 -+#: ../glade/NewPrinterWindow.glade.h:59 - msgid "" - "For the printer you have selected there are drivers available for download." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:61 -+#: ../glade/NewPrinterWindow.glade.h:60 - msgid "Free software" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:62 -+#: ../glade/NewPrinterWindow.glade.h:61 - msgid "Graphics:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:63 -+#: ../glade/NewPrinterWindow.glade.h:62 - #, fuzzy - msgid "Host:" - msgstr "Gostiteljski IP" - --#: ../glade/NewPrinterWindow.glade.h:64 -+#: ../glade/NewPrinterWindow.glade.h:63 - msgid "Human-readable description such as \"HP LaserJet with Duplexer\"" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:65 -+#: ../glade/NewPrinterWindow.glade.h:64 - msgid "Human-readable location such as \"Lab 1\"" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:67 -+#: ../glade/NewPrinterWindow.glade.h:66 - msgid "LPD" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:68 -+#: ../glade/NewPrinterWindow.glade.h:67 - msgid "License:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:69 -+#: ../glade/NewPrinterWindow.glade.h:68 - #, fuzzy - msgid "Line art:" - msgstr "Zapiski o tiskalniku:" - --#: ../glade/NewPrinterWindow.glade.h:70 -+#: ../glade/NewPrinterWindow.glade.h:69 - #, fuzzy - msgid "Local Driver" - msgstr "Uredi krajevni tiskalnik" - --#: ../glade/NewPrinterWindow.glade.h:71 -+#: ../glade/NewPrinterWindow.glade.h:70 - #, fuzzy - msgid "Make and model:" - msgstr "Potrebujem napravo, proizvajalca in model.\n" - --#: ../glade/NewPrinterWindow.glade.h:72 -+#: ../glade/NewPrinterWindow.glade.h:71 - msgid "Manufacturer" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:73 -+#: ../glade/NewPrinterWindow.glade.h:72 - #, fuzzy - msgid "Network" - msgstr "Tiskalnik:" - --#: ../glade/NewPrinterWindow.glade.h:75 -+#: ../glade/NewPrinterWindow.glade.h:74 - msgid "No, I do not accept this license" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:76 -+#: ../glade/NewPrinterWindow.glade.h:75 - msgid "Parity" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:78 -+#: ../glade/NewPrinterWindow.glade.h:77 - msgid "Patented algorithms" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:79 -+#: ../glade/NewPrinterWindow.glade.h:78 - #, fuzzy - msgid "Photo:" - msgstr "Vrata: " - --#: ../glade/NewPrinterWindow.glade.h:80 -+#: ../glade/NewPrinterWindow.glade.h:79 - msgid "Port number:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:81 -+#: ../glade/NewPrinterWindow.glade.h:80 - msgid "" - "PostScript Printer Description (PPD) files can often be found on the driver " - "disk that comes with the printer. For PostScript printers they are often " - "part of the Windows® driver." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:82 -+#: ../glade/NewPrinterWindow.glade.h:81 - #, fuzzy - msgid "Printer model:" - msgstr "Model tiskalnika" - --#: ../glade/NewPrinterWindow.glade.h:83 -+#: ../glade/NewPrinterWindow.glade.h:82 - msgid "Probe" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:84 -+#: ../glade/NewPrinterWindow.glade.h:83 - #, fuzzy - msgid "Prompt user if authentication is required" - msgstr "Avtentikacija" - --#: ../glade/NewPrinterWindow.glade.h:85 -+#: ../glade/NewPrinterWindow.glade.h:84 - msgid "Provide PPD file" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:86 -+#: ../glade/NewPrinterWindow.glade.h:85 - msgid "Queue:" - msgstr "Vrsta:" - --#: ../glade/NewPrinterWindow.glade.h:87 -+#: ../glade/NewPrinterWindow.glade.h:86 - msgid "SCSI" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:88 -+#: ../glade/NewPrinterWindow.glade.h:87 - msgid "SMB" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:89 -+#: ../glade/NewPrinterWindow.glade.h:88 - msgid "Search for a printer driver to download" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:90 -+#: ../glade/NewPrinterWindow.glade.h:89 - #, fuzzy - msgid "Searching..." - msgstr "Pozor" - --#: ../glade/NewPrinterWindow.glade.h:91 -+#: ../glade/NewPrinterWindow.glade.h:90 - msgid "Select A File" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:92 -+#: ../glade/NewPrinterWindow.glade.h:91 - msgid "Select printer from database" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:93 -+#: ../glade/NewPrinterWindow.glade.h:92 - #, fuzzy - msgid "Serial" - msgstr "Splošno" - --#: ../glade/NewPrinterWindow.glade.h:94 -+#: ../glade/NewPrinterWindow.glade.h:93 - #, fuzzy - msgid "Set authentication details now" - msgstr "Avtentikacija" - --#: ../glade/NewPrinterWindow.glade.h:95 -+#: ../glade/NewPrinterWindow.glade.h:94 - msgid "Short name for this printer such as \"laserjet\"" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:96 -+#: ../glade/NewPrinterWindow.glade.h:95 - msgid "Supplier:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:97 -+#: ../glade/NewPrinterWindow.glade.h:96 - #, fuzzy - msgid "Support:" - msgstr "Vrata:" - --#: ../glade/NewPrinterWindow.glade.h:98 -+#: ../glade/NewPrinterWindow.glade.h:97 - #, fuzzy - msgid "Text:" - msgstr "_Preskus" - --#: ../glade/NewPrinterWindow.glade.h:99 -+#: ../glade/NewPrinterWindow.glade.h:98 - msgid "" - "The foomatic printer database contains various manufacturer provided " - "PostScript Printer Description (PPD) files and also can generate PPD files " -@@ -2086,70 +2082,70 @@ msgid "" - "printer." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:100 -+#: ../glade/NewPrinterWindow.glade.h:99 - msgid "" - "These drivers do not come from your operating system supplier and will not " - "be covered by their commercial support. See the support and license terms " - "of the driver's supplier." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:101 -+#: ../glade/NewPrinterWindow.glade.h:100 - msgid "" - "This driver supports additional hardware that may be installed in the " - "printer." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:102 -+#: ../glade/NewPrinterWindow.glade.h:101 - msgid "" - "This is done by assuming that options with the same name do have the same " - "meaning. Settings of options that are not present in the new PPD will be " - "lost and options only present in the new PPD will be set to default." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:103 -+#: ../glade/NewPrinterWindow.glade.h:102 - msgid "" - "This way all current option settings will be lost. The default settings of " - "the new PPD will be used. " - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:104 -+#: ../glade/NewPrinterWindow.glade.h:103 - msgid "Try to copy the option settings over from the old PPD. " - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:105 -+#: ../glade/NewPrinterWindow.glade.h:104 - msgid "URI:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:107 -+#: ../glade/NewPrinterWindow.glade.h:106 - msgid "Use the new PPD (Postscript Printer Description) as is." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:109 -+#: ../glade/NewPrinterWindow.glade.h:108 - msgid "" - "With this choice no driver download will be performed. In the next steps a " - "locally installed driver will be selected." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:110 -+#: ../glade/NewPrinterWindow.glade.h:109 - msgid "Yes, I accept this license" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:111 -+#: ../glade/NewPrinterWindow.glade.h:110 - #, fuzzy - msgid "_Search" - msgstr "Pozor" - --#: ../glade/NewPrinterWindow.glade.h:112 -+#: ../glade/NewPrinterWindow.glade.h:111 - #, fuzzy - msgid "_Verify..." - msgstr "Določi..." - --#: ../glade/NewPrinterWindow.glade.h:113 -+#: ../glade/NewPrinterWindow.glade.h:112 - #: ../glade/PrinterPropertiesDialog.glade.h:128 - msgid "move left" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:114 -+#: ../glade/NewPrinterWindow.glade.h:113 - #: ../glade/PrinterPropertiesDialog.glade.h:129 - msgid "move right" - msgstr "" -@@ -3064,7 +3060,7 @@ msgstr "" - msgid "Remember to load paper of type '%s' into the printer first." - msgstr "" - --#: ../troubleshoot/PrintTestPage.py:399 -+#: ../troubleshoot/PrintTestPage.py:416 - msgid "Error submitting test page" - msgstr "" - -@@ -3269,6 +3265,10 @@ msgid "Select default printer" - msgstr "To je opis tiskalnika." - - #, fuzzy -+#~ msgid "HP Printer (HPLIP) via network" -+#~ msgstr "Model tiskalnika" -+ -+#, fuzzy - #~ msgid "Not Found" - #~ msgstr "_Krajevno-povezana" - -diff -up system-config-printer-1.1.5/po/sr@latin.po.git-1.1.x system-config-printer-1.1.5/po/sr@latin.po ---- system-config-printer-1.1.5/po/sr@latin.po.git-1.1.x 2009-03-03 22:21:46.000000000 +0000 -+++ system-config-printer-1.1.5/po/sr@latin.po 2009-03-10 17:43:31.000000000 +0000 -@@ -9,7 +9,7 @@ msgid "" - msgstr "" - "Project-Id-Version: system-config-printer.0.7.82.x.sr\n" - "Report-Msgid-Bugs-To: https://bugzilla.redhat.com/bugzilla\n" --"POT-Creation-Date: 2009-03-02 23:22+0000\n" -+"POT-Creation-Date: 2009-03-10 16:51+0000\n" - "PO-Revision-Date: 2009-02-12 13:30-0500\n" - "Last-Translator: Igor Miletic \n" - "Language-Team: Serbian \n" -@@ -57,11 +57,11 @@ msgstr "" - msgid "Enter IP address" - msgstr "Unesite IP adresu" - --#: ../authconn.py:35 ../glade/NewPrinterWindow.glade.h:108 -+#: ../authconn.py:35 ../glade/NewPrinterWindow.glade.h:107 - msgid "Username:" - msgstr "Ime korisnika:" - --#: ../authconn.py:36 ../glade/NewPrinterWindow.glade.h:77 -+#: ../authconn.py:36 ../glade/NewPrinterWindow.glade.h:76 - msgid "Password:" - msgstr "Lozinka:" - -@@ -69,7 +69,7 @@ msgstr "Lozinka:" - msgid "Domain:" - msgstr "Domen:" - --#: ../authconn.py:46 -+#: ../authconn.py:46 ../authconn.py:409 - msgid "Authentication" - msgstr "Autentifikacija" - -@@ -77,43 +77,52 @@ msgstr "Autentifikacija" - msgid "Remember password" - msgstr "Pamti lozinku" - --#: ../authconn.py:211 ../authconn.py:232 -+#: ../authconn.py:208 -+#, python-format -+msgid "Unauthorized request (%s)" -+msgstr "" -+ -+#: ../authconn.py:209 -+msgid "You are not authorized to carry out therequested action." -+msgstr "" -+ -+#: ../authconn.py:212 ../authconn.py:233 - msgid "Operation canceled" - msgstr "Radnja otkazana" - --#: ../authconn.py:253 -+#: ../authconn.py:250 - #, python-format - msgid "CUPS server error (%s)" - msgstr "Greška CUPS servera (%s)" - --#: ../authconn.py:255 ../errordialogs.py:57 --#: ../troubleshoot/PrintTestPage.py:400 -+#: ../authconn.py:252 ../errordialogs.py:56 ../errordialogs.py:70 -+msgid "CUPS server error" -+msgstr "Greška CUPS servera" -+ -+#: ../authconn.py:261 ../errordialogs.py:57 -+#: ../troubleshoot/PrintTestPage.py:417 - #, python-format - msgid "There was an error during the CUPS operation: '%s'." - msgstr "Greška tokom CUPS radnje: „%s“." - --#: ../authconn.py:258 -+#: ../authconn.py:264 - msgid "Retry" - msgstr "Pokušaj ponovo" - --#: ../authconn.py:379 ../authconn.py:381 ../errordialogs.py:65 ../pysmb.py:75 -+#: ../authconn.py:385 ../authconn.py:387 ../errordialogs.py:65 ../pysmb.py:75 - #: ../pysmb.py:77 - msgid "Not authorized" - msgstr "Neovlašćen" - --#: ../authconn.py:382 ../pysmb.py:78 -+#: ../authconn.py:388 ../pysmb.py:78 - msgid "The password may be incorrect." - msgstr "Lozinka je možda netačna." - --#: ../authconn.py:400 -+#: ../authconn.py:407 - #, python-format - msgid "Authentication (%s)" - msgstr "Autentifikacija (%s)" - --#: ../errordialogs.py:56 ../errordialogs.py:70 --msgid "CUPS server error" --msgstr "Greška CUPS servera" -- - #: ../errordialogs.py:66 - msgid "" - "The password may be incorrect, or the server may be configured to deny " -@@ -142,7 +151,7 @@ msgstr "Neophodna je nadogradnja" - msgid "Server error" - msgstr "Greška servera" - --#: ../errordialogs.py:82 ../system-config-printer.py:1219 -+#: ../errordialogs.py:82 ../system-config-printer.py:1223 - msgid "Not connected" - msgstr "Nije spojen" - -@@ -164,7 +173,7 @@ msgstr "_Nova grupa" - msgid "_New Group from Selection" - msgstr "_Nova grupa iz izbora" - --#: ../GroupsPane.py:98 ../system-config-printer.py:393 -+#: ../GroupsPane.py:98 ../system-config-printer.py:397 - msgid "_Rename" - msgstr "P_reimenuj" - -@@ -231,7 +240,7 @@ msgid "Document" - msgstr "Dokument" - - #: ../jobviewer.py:212 ../my-default-printer.py:153 --#: ../system-config-printer.py:366 ../system-config-printer.py:1367 -+#: ../system-config-printer.py:370 ../system-config-printer.py:1371 - #: ../troubleshoot/PrintTestPage.py:84 - msgid "Printer" - msgstr "Štampač" -@@ -268,8 +277,8 @@ msgstr "Stanje štampanja dokumenta (%s) - - #: ../jobviewer.py:386 ../jobviewer.py:451 ../jobviewer.py:452 - #: ../jobviewer.py:492 ../jobviewer.py:600 ../jobviewer.py:727 --#: ../jobviewer.py:1196 ../jobviewer.py:1222 ../system-config-printer.py:2546 --#: ../glade/NewPrinterWindow.glade.h:106 -+#: ../jobviewer.py:1196 ../jobviewer.py:1222 ../system-config-printer.py:2556 -+#: ../glade/NewPrinterWindow.glade.h:105 - #: ../troubleshoot/ChooseNetworkPrinter.py:101 - #: ../troubleshoot/ChooseNetworkPrinter.py:102 - #: ../troubleshoot/ChooseNetworkPrinter.py:105 -@@ -357,12 +366,12 @@ msgstr "Zadrži do vikenda" - msgid "Pending" - msgstr "Na čekanju" - --#: ../jobviewer.py:591 ../system-config-printer.py:186 -+#: ../jobviewer.py:591 ../system-config-printer.py:190 - #: ../troubleshoot/PrintTestPage.py:43 - msgid "Processing" - msgstr "Obrađuje" - --#: ../jobviewer.py:592 ../system-config-printer.py:188 -+#: ../jobviewer.py:592 ../system-config-printer.py:192 - #: ../troubleshoot/PrintTestPage.py:44 - msgid "Stopped" - msgstr "Zaustavljen" -@@ -473,8 +482,8 @@ msgstr "_Koristi podrazumevane sistemske - msgid "_Set Default" - msgstr "Po_stavi kao podrazumevani" - --#: ../my-default-printer.py:158 ../system-config-printer.py:423 --#: ../system-config-printer.py:3660 ../troubleshoot/ChooseNetworkPrinter.py:37 -+#: ../my-default-printer.py:158 ../system-config-printer.py:427 -+#: ../system-config-printer.py:3675 ../troubleshoot/ChooseNetworkPrinter.py:37 - #: ../troubleshoot/ChoosePrinter.py:38 - msgid "Location" - msgstr "Lokacija" -@@ -503,7 +512,7 @@ msgstr "Podrazumevano ponašanje" - msgid "Authenticated" - msgstr "Autentifikovan" - --#: ../ppdippstr.py:50 ../system-config-printer.py:6259 -+#: ../ppdippstr.py:50 ../system-config-printer.py:6207 - msgid "None" - msgstr "Ništa" - -@@ -716,125 +725,125 @@ msgstr "600 tpi, u boji, crna + u boji k - msgid "1200 dpi, photo, black + color cartridge, photo paper" - msgstr "1200 tpi, u boji, crna + u boji kaseta, foto papir" - --#: ../system-config-printer.py:127 -+#: ../system-config-printer.py:131 - msgid "To do this, select System->Administration->Firewall from the main menu." - msgstr "" - "Da biste pokrenuli ovu alatku, izaberite Sistem -> Administracija -> " - "Zaštitni zid u glavnom meniju." - --#: ../system-config-printer.py:185 -+#: ../system-config-printer.py:189 - msgid "Idle" - msgstr "Miruje" - --#: ../system-config-printer.py:187 -+#: ../system-config-printer.py:191 - msgid "Busy" - msgstr "Zauzet" - --#: ../system-config-printer.py:372 ../system-config-printer.py:1373 -+#: ../system-config-printer.py:376 ../system-config-printer.py:1377 - msgid "Class" - msgstr "Klasa" - --#: ../system-config-printer.py:399 -+#: ../system-config-printer.py:403 - msgid "Set As De_fault" - msgstr "Po_stavi kao podrazumevani" - --#: ../system-config-printer.py:403 -+#: ../system-config-printer.py:407 - msgid "_Create class" - msgstr "Napravi k_lasu" - --#: ../system-config-printer.py:405 -+#: ../system-config-printer.py:409 - msgid "View Print _Queue" - msgstr "Pogledaj _red za čekanje" - --#: ../system-config-printer.py:407 -+#: ../system-config-printer.py:411 - msgid "_Add to Group" - msgstr "Dod_aj u grupu" - --#: ../system-config-printer.py:409 -+#: ../system-config-printer.py:413 - msgid "Save Results as _Group" - msgstr "Sačuvaj rezultate ka _grupu" - --#: ../system-config-printer.py:411 -+#: ../system-config-printer.py:415 - msgid "Save Filter as _Search Group" - msgstr "_Sačuvaj filter kao grupa pretrage" - --#: ../system-config-printer.py:415 -+#: ../system-config-printer.py:419 - msgid "E_nabled" - msgstr "Omoguće_n" - --#: ../system-config-printer.py:417 -+#: ../system-config-printer.py:421 - msgid "_Shared" - msgstr "_Deljen" - --#: ../system-config-printer.py:421 ../troubleshoot/ChooseNetworkPrinter.py:35 -+#: ../system-config-printer.py:425 ../troubleshoot/ChooseNetworkPrinter.py:35 - #: ../troubleshoot/ChoosePrinter.py:36 ../troubleshoot/DeviceListed.py:36 - msgid "Name" - msgstr "Ime" - --#: ../system-config-printer.py:422 -+#: ../system-config-printer.py:426 - msgid "Description" - msgstr "Opis" - --#: ../system-config-printer.py:424 -+#: ../system-config-printer.py:428 - msgid "Manufacturer / Model" - msgstr "Proizvođač / Model" - - #. Printer state reasons list --#: ../system-config-printer.py:499 -+#: ../system-config-printer.py:503 - msgid "Message" - msgstr "Poruka" - --#: ../system-config-printer.py:534 -+#: ../system-config-printer.py:538 - msgid "Problems?" - msgstr "Problemi?" - --#: ../system-config-printer.py:637 ../system-config-printer.py:639 -+#: ../system-config-printer.py:641 ../system-config-printer.py:643 - msgid "Members of this class" - msgstr "Članovi ove klase" - --#: ../system-config-printer.py:638 ../system-config-printer.py:640 -+#: ../system-config-printer.py:642 ../system-config-printer.py:644 - msgid "Others" - msgstr "Ostali" - --#: ../system-config-printer.py:641 -+#: ../system-config-printer.py:645 - msgid "Devices" - msgstr "Uređaji" - --#: ../system-config-printer.py:642 -+#: ../system-config-printer.py:646 - msgid "Connections" - msgstr "Konekcije" - --#: ../system-config-printer.py:643 -+#: ../system-config-printer.py:647 - msgid "Makes" - msgstr "Marke" - --#: ../system-config-printer.py:644 -+#: ../system-config-printer.py:648 - msgid "Models" - msgstr "Modeli" - --#: ../system-config-printer.py:645 -+#: ../system-config-printer.py:649 - msgid "Drivers" - msgstr "Upravljački programi" - --#: ../system-config-printer.py:646 ../glade/NewPrinterWindow.glade.h:55 -+#: ../system-config-printer.py:650 ../glade/NewPrinterWindow.glade.h:54 - msgid "Downloadable Drivers" - msgstr "Preuzimljivi upravljački programi" - --#: ../system-config-printer.py:647 -+#: ../system-config-printer.py:651 - msgid "Users" - msgstr "Korisnici" - --#: ../system-config-printer.py:682 -+#: ../system-config-printer.py:686 - msgid "Automatic rotation" - msgstr "Samostalna rotacija" - --#: ../system-config-printer.py:989 -+#: ../system-config-printer.py:993 - #, fuzzy, python-format - msgid "Printer Properties - '%s' on %s" - msgstr "Osobine štampača - „%s“ na %s" - - #. The Conflict button was pressed. --#: ../system-config-printer.py:996 -+#: ../system-config-printer.py:1000 - msgid "" - "There are conflicting options.\n" - "Changes can only be applied after\n" -@@ -844,78 +853,78 @@ msgstr "" - "Promene će biti primenjene kada\n" - "se sukobi razreše." - --#: ../system-config-printer.py:1214 -+#: ../system-config-printer.py:1218 - #, python-format - msgid "Printer configuration - %s" - msgstr "Podešavanje štampača - %s" - --#: ../system-config-printer.py:1217 -+#: ../system-config-printer.py:1221 - #, python-format - msgid "Connected to %s" - msgstr "Spojen sa %s" - - #. Update our copy of the printer's settings. --#: ../system-config-printer.py:1257 ../system-config-printer.py:2042 -+#: ../system-config-printer.py:1261 ../system-config-printer.py:2046 - msgid "obtaining queue details" - msgstr "dobavljam detalje reda za čekanje" - --#: ../system-config-printer.py:1295 -+#: ../system-config-printer.py:1299 - msgid "Remove from Group" - msgstr "Izbaci iz grupe" - --#: ../system-config-printer.py:1361 -+#: ../system-config-printer.py:1365 - msgid "Network printer (discovered)" - msgstr "Mrežni štampač (otkriven)" - --#: ../system-config-printer.py:1364 -+#: ../system-config-printer.py:1368 - msgid "Network class (discovered)" - msgstr "Klasa mreže (otkrivena)" - --#: ../system-config-printer.py:1370 ../system-config-printer.py:5524 --#: ../system-config-printer.py:5594 ../system-config-printer.py:5596 -+#: ../system-config-printer.py:1374 ../system-config-printer.py:5519 -+#: ../system-config-printer.py:5589 ../system-config-printer.py:5591 - msgid "Fax" - msgstr "Faks" - --#: ../system-config-printer.py:1376 ../system-config-printer.py:1382 -+#: ../system-config-printer.py:1380 ../system-config-printer.py:1386 - #: ../troubleshoot/LocalOrRemote.py:30 - msgid "Network printer" - msgstr "Mrežni štampač" - --#: ../system-config-printer.py:1379 -+#: ../system-config-printer.py:1383 - msgid "Network print share" - msgstr "Deljeni mrežni štampač" - --#: ../system-config-printer.py:1508 ../glade/ConnectingDialog.glade.h:2 -+#: ../system-config-printer.py:1512 ../glade/ConnectingDialog.glade.h:2 - #, no-c-format, python-format - msgid "Opening connection to %s" - msgstr "Otvaram vezu sa %s" - --#: ../system-config-printer.py:1887 -+#: ../system-config-printer.py:1891 - msgid "Installable Options" - msgstr "Opcije koje se mogu instalirati" - --#: ../system-config-printer.py:1888 -+#: ../system-config-printer.py:1892 - #: ../glade/PrinterPropertiesDialog.glade.h:109 - msgid "Printer Options" - msgstr "Opcije štampača" - --#: ../system-config-printer.py:1924 -+#: ../system-config-printer.py:1928 - #, python-format - msgid "modifying class %s" - msgstr "izmenjujem %s klasu" - --#: ../system-config-printer.py:1926 ../system-config-printer.py:3019 --#: ../system-config-printer.py:3044 ../system-config-printer.py:6547 --#: ../system-config-printer.py:6559 ../system-config-printer.py:6581 -+#: ../system-config-printer.py:1930 ../system-config-printer.py:3037 -+#: ../system-config-printer.py:3062 ../system-config-printer.py:6495 -+#: ../system-config-printer.py:6507 ../system-config-printer.py:6529 - #, python-format - msgid "modifying printer %s" - msgstr "menjam %s štampač" - --#: ../system-config-printer.py:1941 -+#: ../system-config-printer.py:1945 - msgid "This will delete this class!" - msgstr "Ovo će izbrisati ovu klasu!" - --#: ../system-config-printer.py:1942 -+#: ../system-config-printer.py:1946 - msgid "Proceed anyway?" - msgstr "Svakako nastavi?" - -@@ -923,44 +932,44 @@ msgstr "Svakako nastavi?" - #. but we have never fetched the server settings to see whether - #. the server is publishing shared printers. Fetch the settings - #. now so that we can update the "not published" label if necessary. --#: ../system-config-printer.py:2030 ../system-config-printer.py:3203 -+#: ../system-config-printer.py:2034 ../system-config-printer.py:3221 - msgid "fetching server settings" - msgstr "Dobavljam podešavanja servera" - --#: ../system-config-printer.py:2100 -+#: ../system-config-printer.py:2104 - msgid "Set Default Printer" - msgstr "Postavi podrazumevani štampač" - --#: ../system-config-printer.py:2102 -+#: ../system-config-printer.py:2106 - msgid "Do you want to set this as the system-wide default printer?" - msgstr "Želite li da postavite ovo kao širom sistema podrazumevani štampač?" - --#: ../system-config-printer.py:2104 -+#: ../system-config-printer.py:2108 - msgid "Set as the _system-wide default printer" - msgstr "Postavi kao podrazumevani štampač _sistema" - --#: ../system-config-printer.py:2106 -+#: ../system-config-printer.py:2110 - msgid "_Clear my personal default setting" - msgstr "_Obriši moje podrazumevano podešavanje" - --#: ../system-config-printer.py:2107 -+#: ../system-config-printer.py:2111 - msgid "Set as my _personal default printer" - msgstr "Postavi kao moj _lični podrazumevani štampač" - --#: ../system-config-printer.py:2112 -+#: ../system-config-printer.py:2116 - msgid "setting default printer" - msgstr "Postavljam podrazumevani štampač" - --#: ../system-config-printer.py:2169 -+#: ../system-config-printer.py:2173 - msgid "printing test page" - msgstr "štampam probnu stranicu" - --#: ../system-config-printer.py:2182 ../system-config-printer.py:2217 --#: ../system-config-printer.py:5418 -+#: ../system-config-printer.py:2186 ../system-config-printer.py:2221 -+#: ../system-config-printer.py:5413 - msgid "Not possible" - msgstr "Nije moguće" - --#: ../system-config-printer.py:2183 ../system-config-printer.py:2218 -+#: ../system-config-printer.py:2187 ../system-config-printer.py:2222 - msgid "" - "The remote server did not accept the print job, most likely because the " - "printer is not shared." -@@ -968,20 +977,20 @@ msgstr "" - "Udaljeni server nije prihvatio posao za štampanje, najverovatnije zato što " - "štampač nije deljen." - --#: ../system-config-printer.py:2195 ../system-config-printer.py:2210 -+#: ../system-config-printer.py:2199 ../system-config-printer.py:2214 - msgid "Submitted" - msgstr "Poslato" - --#: ../system-config-printer.py:2196 -+#: ../system-config-printer.py:2200 - #, python-format - msgid "Test page submitted as job %d" - msgstr "Probna stranica je poslata kao posao %d" - --#: ../system-config-printer.py:2203 -+#: ../system-config-printer.py:2207 - msgid "sending maintenance command" - msgstr "šaljem naredbu za održavanje" - --#: ../system-config-printer.py:2211 -+#: ../system-config-printer.py:2215 - #, python-format - msgid "Maintenance command submitted as job %d" - msgstr "Naredba za održavanje je poslata kao posao %d" -@@ -989,65 +998,65 @@ msgstr "Naredba za održavanje je poslat - #. The underlying cupsGetPPD2() function returned NULL without - #. setting an IPP error, so it'll be something like a failed - #. connection. --#: ../system-config-printer.py:2285 ../system-config-printer.py:2381 -+#: ../system-config-printer.py:2289 ../system-config-printer.py:2385 - msgid "Error" - msgstr "Greška" - --#: ../system-config-printer.py:2286 -+#: ../system-config-printer.py:2290 - msgid "There was a problem connecting to the CUPS server." - msgstr "Greška tokom povezivanja na CUPS server." - --#: ../system-config-printer.py:2382 -+#: ../system-config-printer.py:2386 - #, python-format - msgid "Option '%s' has value '%s' and cannot be edited." - msgstr "Vrednost opcije „%s“ je „%s“ i ne može biti uređivana." - --#: ../system-config-printer.py:2466 -+#: ../system-config-printer.py:2476 - msgid "Marker levels are not reported for this printer." - msgstr "Nivoi mastila se ne izveštavaju za ovaj štampač." - --#: ../system-config-printer.py:2763 -+#: ../system-config-printer.py:2773 - msgid "Cannot Rename" - msgstr "Nemože se preimenovati" - --#: ../system-config-printer.py:2764 -+#: ../system-config-printer.py:2774 - msgid "There are queued jobs." - msgstr "Ima još poslova u redu na čekanje." - --#: ../system-config-printer.py:2822 -+#: ../system-config-printer.py:2840 - msgid "renaming printer" - msgstr "preimenujem štampač" - - #. for classes make sure all members - #. will get added --#: ../system-config-printer.py:2907 -+#: ../system-config-printer.py:2925 - msgid "copying printer" - msgstr "kopiram štampača" - --#: ../system-config-printer.py:2971 -+#: ../system-config-printer.py:2989 - #, fuzzy, python-format - msgid "Really delete class '%s'?" - msgstr "Stvarno izbrisati klasu „%s“?" - --#: ../system-config-printer.py:2973 -+#: ../system-config-printer.py:2991 - #, fuzzy, python-format - msgid "Really delete printer '%s'?" - msgstr "Stvarno izbrisati štampač „%s“?" - --#: ../system-config-printer.py:2975 -+#: ../system-config-printer.py:2993 - msgid "Really delete selected destinations?" - msgstr "Stvarno izbrisati izabrana odredišta?" - --#: ../system-config-printer.py:2996 -+#: ../system-config-printer.py:3014 - #, python-format - msgid "deleting printer %s" - msgstr "brišem štampač %s" - --#: ../system-config-printer.py:3070 -+#: ../system-config-printer.py:3088 - msgid "Publish Shared Printers" - msgstr "Objavi deljene štampače" - --#: ../system-config-printer.py:3071 -+#: ../system-config-printer.py:3089 - msgid "" - "Shared printers are not available to other people unless the 'Publish shared " - "printers' option is enabled in the server settings." -@@ -1055,7 +1064,7 @@ msgstr "" - "Deljeni štampači nisu pristupačni drugim ljudima ukoliko opcija 'Objavi " - "deljeni štampač' nije uključena u podešavanjima servera." - --#: ../system-config-printer.py:3264 -+#: ../system-config-printer.py:3282 - msgid "modifying server settings" - msgstr "menjam podešavanja servera" - -@@ -1065,11 +1074,11 @@ msgstr "menjam podešavanja servera" - #. be unblocked. Unfortunately, this is not yet possible - #. (bug #440469). However, we can display a dialog to suggest - #. that now might be a good time to review the firewall settings. --#: ../system-config-printer.py:3289 -+#: ../system-config-printer.py:3307 - msgid "Review Firewall" - msgstr "Proveri zaštitni zid" - --#: ../system-config-printer.py:3290 -+#: ../system-config-printer.py:3308 - msgid "" - "You may need to adjust the firewall to allow network printing to this " - "computer." -@@ -1077,91 +1086,91 @@ msgstr "" - "Možda ćete morati da podesite zaštitni zid kako bi dozvolio mrežno štampanje " - "na ovom računaru." - --#: ../system-config-printer.py:3623 -+#: ../system-config-printer.py:3638 - msgid "Browsing not available (pysmbc not installed)" - msgstr "Razgledanje nije dostupno (pysmbc nije instaliran)" - - #. SMB list columns --#: ../system-config-printer.py:3629 -+#: ../system-config-printer.py:3644 - msgid "Share" - msgstr "Deljeni resurs" - --#: ../system-config-printer.py:3635 -+#: ../system-config-printer.py:3650 - msgid "Comment" - msgstr "Primedba" - - #. IPP list columns --#: ../system-config-printer.py:3654 -+#: ../system-config-printer.py:3669 - msgid "Queue" - msgstr "Red" - --#: ../system-config-printer.py:3668 -+#: ../system-config-printer.py:3683 - msgid "" - "PostScript Printer Description files (*.ppd, *.PPD, *.ppd.gz, *.PPD.gz, *." - "PPD.GZ)" - msgstr "" - "Datoteke opisa PostScript štampača (*.ppd,*.PPD, *.ppd.gz, *PPD.gz, *.PPD.GZ)" - --#: ../system-config-printer.py:3677 -+#: ../system-config-printer.py:3692 - msgid "All files (*)" - msgstr "Sve datoteke (*)" - --#: ../system-config-printer.py:3713 ../system-config-printer.py:5970 --#: ../system-config-printer.py:6008 ../applet.py:124 -+#: ../system-config-printer.py:3728 ../system-config-printer.py:5918 -+#: ../system-config-printer.py:5956 ../applet.py:124 - msgid "Search" - msgstr "Pretraga" - --#: ../system-config-printer.py:3736 ../system-config-printer.py:3760 --#: ../glade/NewPrinterWindow.glade.h:74 -+#: ../system-config-printer.py:3751 ../system-config-printer.py:3775 -+#: ../glade/NewPrinterWindow.glade.h:73 - msgid "New Printer" - msgstr "Novi štampač" - --#: ../system-config-printer.py:3747 -+#: ../system-config-printer.py:3762 - msgid "New Class" - msgstr "Nova klasa" - --#: ../system-config-printer.py:3752 -+#: ../system-config-printer.py:3767 - msgid "Change Device URI" - msgstr "Promeni URI uređaja" - --#: ../system-config-printer.py:3758 -+#: ../system-config-printer.py:3773 - msgid "Change Driver" - msgstr "Promeni upravljački program" - --#: ../system-config-printer.py:3927 ../system-config-printer.py:3993 --#: ../system-config-printer.py:4289 ../system-config-printer.py:4487 --#: ../system-config-printer.py:5772 ../system-config-printer.py:5995 -+#: ../system-config-printer.py:3942 ../system-config-printer.py:4008 -+#: ../system-config-printer.py:4304 ../system-config-printer.py:4502 -+#: ../system-config-printer.py:5762 ../system-config-printer.py:5943 - msgid "Searching" - msgstr "Pretraživanje" - --#: ../system-config-printer.py:3928 -+#: ../system-config-printer.py:3943 - msgid "Searching for downloadable drivers" - msgstr "Tražim preuzimljive upravljačke programe" - --#: ../system-config-printer.py:3994 ../system-config-printer.py:4290 -+#: ../system-config-printer.py:4009 ../system-config-printer.py:4305 - msgid "Searching for drivers" - msgstr "Traži upravljačke programe" - --#: ../system-config-printer.py:4488 ../system-config-printer.py:5773 -+#: ../system-config-printer.py:4503 ../system-config-printer.py:5763 - msgid "Searching for printers" - msgstr "Traži štampače" - --#: ../system-config-printer.py:4497 -+#: ../system-config-printer.py:4512 - msgid "fetching device list" - msgstr "dobavljam spisak uređaja" - - #. Tell the user why he needs the plugin --#: ../system-config-printer.py:4579 -+#: ../system-config-printer.py:4594 - msgid "For this printer a proprietary driver plugin from HP is available.\n" - msgstr "" - --#: ../system-config-printer.py:4582 -+#: ../system-config-printer.py:4597 - msgid "" - "The installation of the plugin is required for your printer to work.\n" - "\n" - msgstr "" - --#: ../system-config-printer.py:4585 -+#: ../system-config-printer.py:4600 - msgid "" - "Installing the plugin is optional, it completes or enhances the " - "functionality\n" -@@ -1169,113 +1178,109 @@ msgid "" - "\n" - msgstr "" - --#: ../system-config-printer.py:4589 -+#: ../system-config-printer.py:4604 - msgid "The plugin provides the following features:\n" - msgstr "" - --#: ../system-config-printer.py:4592 -+#: ../system-config-printer.py:4607 - msgid " - Printing support\n" - msgstr "" - --#: ../system-config-printer.py:4595 -+#: ../system-config-printer.py:4610 - #, fuzzy - msgid " - Faster printing\n" - msgstr "Dvostrano štapanje" - --#: ../system-config-printer.py:4598 -+#: ../system-config-printer.py:4613 - msgid " - Better printout quality\n" - msgstr "" - --#: ../system-config-printer.py:4601 -+#: ../system-config-printer.py:4616 - msgid " - Extra printing features\n" - msgstr "" - --#: ../system-config-printer.py:4604 -+#: ../system-config-printer.py:4619 - msgid " - Scanning support\n" - msgstr "" - --#: ../system-config-printer.py:4607 -+#: ../system-config-printer.py:4622 - msgid " - Faster scanning\n" - msgstr "" - --#: ../system-config-printer.py:4610 -+#: ../system-config-printer.py:4625 - msgid " - Better scanning image quality\n" - msgstr "" - --#: ../system-config-printer.py:4613 -+#: ../system-config-printer.py:4628 - msgid " - Faxing support\n" - msgstr "" - --#: ../system-config-printer.py:4616 -+#: ../system-config-printer.py:4631 - msgid " - Extra fax features\n" - msgstr "" - --#: ../system-config-printer.py:4619 -+#: ../system-config-printer.py:4634 - msgid " - Better Input/Output support\n" - msgstr "" - --#: ../system-config-printer.py:4622 -+#: ../system-config-printer.py:4637 - msgid " - Extra user interface features\n" - msgstr "" - --#: ../system-config-printer.py:4625 -+#: ../system-config-printer.py:4640 - msgid " - Other extra features\n" - msgstr "" - --#: ../system-config-printer.py:4630 -+#: ../system-config-printer.py:4645 - #, fuzzy - msgid "Install plugin" - msgstr "Instalirane opcije" - --#: ../system-config-printer.py:4631 -+#: ../system-config-printer.py:4646 - #, fuzzy - msgid "Do not set up printer" - msgstr "Izaberite štampač" - --#: ../system-config-printer.py:4632 -+#: ../system-config-printer.py:4647 - msgid "Set up without plugin" - msgstr "" - --#: ../system-config-printer.py:4634 ../troubleshoot/PrintTestPage.py:118 -+#: ../system-config-printer.py:4649 ../troubleshoot/PrintTestPage.py:118 - msgid "Yes" - msgstr "Da" - --#: ../system-config-printer.py:4635 ../troubleshoot/PrintTestPage.py:119 -+#: ../system-config-printer.py:4650 ../troubleshoot/PrintTestPage.py:119 - msgid "No" - msgstr "Ne" - --#: ../system-config-printer.py:4809 ../system-config-printer.py:4813 -+#: ../system-config-printer.py:4824 ../system-config-printer.py:4828 - msgid " (Current)" - msgstr " (Tekući)" - --#: ../system-config-printer.py:4845 --msgid "HP Printer (HPLIP)" --msgstr "HP štampač (HPLIP)" -- --#: ../system-config-printer.py:4886 -+#: ../system-config-printer.py:4881 - msgid "Other" - msgstr "Ostali" - - #. device-info - #. PhysicalDevice obj - #. Separator? --#: ../system-config-printer.py:4902 -+#: ../system-config-printer.py:4897 - msgid "Network Printer" - msgstr "Mrežni štampač" - --#: ../system-config-printer.py:4906 -+#: ../system-config-printer.py:4901 - msgid "Find Network Printer" - msgstr "Naći mrežni štampač" - --#: ../system-config-printer.py:4979 ../system-config-printer.py:5376 -+#: ../system-config-printer.py:4974 ../system-config-printer.py:5371 - msgid "Scanning..." - msgstr "Pregledanje..." - --#: ../system-config-printer.py:5034 ../system-config-printer.py:5798 -+#: ../system-config-printer.py:5029 - msgid "No Print Shares" - msgstr "Nema deljenih štampača" - --#: ../system-config-printer.py:5035 -+#: ../system-config-printer.py:5030 - msgid "" - "There were no print shares found. Please check that the Samba service is " - "marked as trusted in your firewall configuration." -@@ -1283,32 +1288,32 @@ msgstr "" - "Nije pronađen nijedan deljeni štampač. Molimo vas da proverite da li je " - "Samba servis označen kao od poverenja u vašoj konfiguraciji zaštitnog zida." - --#: ../system-config-printer.py:5296 ../system-config-printer.py:5357 -+#: ../system-config-printer.py:5291 ../system-config-printer.py:5352 - msgid "Print Share Verified" - msgstr "Provereno deljeno štampanje" - --#: ../system-config-printer.py:5297 ../system-config-printer.py:5358 -+#: ../system-config-printer.py:5292 ../system-config-printer.py:5353 - msgid "This print share is accessible." - msgstr "Ovaj deljeni štampač je pristupačan." - --#: ../system-config-printer.py:5302 ../system-config-printer.py:5362 -+#: ../system-config-printer.py:5297 ../system-config-printer.py:5357 - msgid "This print share is not accessible." - msgstr "Ovaj deljeni štampač nije pristupačan." - --#: ../system-config-printer.py:5305 -+#: ../system-config-printer.py:5300 - msgid "Print Share Inaccessible" - msgstr "Deljeni štampač nije pristupačan." - --#: ../system-config-printer.py:5361 -+#: ../system-config-printer.py:5356 - msgid "Inaccessible" - msgstr "Nepristupačan" - --#: ../system-config-printer.py:5419 -+#: ../system-config-printer.py:5414 - #, fuzzy, python-format - msgid "It is not possible to obtain a list of queues from '%s'." - msgstr "Nije moguće dobaviti spisak redova sa „%s“." - --#: ../system-config-printer.py:5421 -+#: ../system-config-printer.py:5416 - msgid "" - "Obtaining a list of queues is a CUPS extension to IPP. Network printers do " - "not support it." -@@ -1316,73 +1321,73 @@ msgstr "" - "Dobavljanje liste redova za čekanje je proširenje za CUPS za IPP. Mrežni " - "štampači to ne podržavaju." - --#: ../system-config-printer.py:5424 -+#: ../system-config-printer.py:5419 - msgid "No queues" - msgstr "Nema redova" - --#: ../system-config-printer.py:5425 -+#: ../system-config-printer.py:5420 - msgid "There are no queues available." - msgstr "Nema dostupnih redova." - --#: ../system-config-printer.py:5516 -+#: ../system-config-printer.py:5511 - msgid "Parallel Port" - msgstr "" - --#: ../system-config-printer.py:5518 -+#: ../system-config-printer.py:5513 - #, fuzzy - msgid "Serial Port" - msgstr "Serijski" - --#: ../system-config-printer.py:5520 -+#: ../system-config-printer.py:5515 - #, fuzzy - msgid "USB" - msgstr "SMB" - --#: ../system-config-printer.py:5522 ../system-config-printer.py:5525 -+#: ../system-config-printer.py:5517 ../system-config-printer.py:5520 - msgid "HP Linux Imaging and Printing (HPLIP)" - msgstr "" - --#: ../system-config-printer.py:5527 -+#: ../system-config-printer.py:5522 - #, fuzzy - msgid "Hardware Abstraction Layer (HAL)" - msgstr "" - "Lokalni štampač otkriven od strane Sloja za hardversku apstrakciju (HAL)." - --#: ../system-config-printer.py:5529 -+#: ../system-config-printer.py:5524 - msgid "AppSocket/HP JetDirect" - msgstr "" - --#: ../system-config-printer.py:5538 -+#: ../system-config-printer.py:5533 - #, python-format - msgid "LPD/LPR queue '%s'" - msgstr "" - --#: ../system-config-printer.py:5540 -+#: ../system-config-printer.py:5535 - #, fuzzy - msgid "LPD/LPR queue" - msgstr "LPD" - --#: ../system-config-printer.py:5543 -+#: ../system-config-printer.py:5538 - msgid "Windows Printer via SAMBA" - msgstr "" - --#: ../system-config-printer.py:5545 ../glade/NewPrinterWindow.glade.h:66 -+#: ../system-config-printer.py:5540 ../glade/NewPrinterWindow.glade.h:65 - msgid "IPP" - msgstr "IPP" - --#: ../system-config-printer.py:5547 -+#: ../system-config-printer.py:5542 - msgid "HTTP" - msgstr "" - --#: ../system-config-printer.py:5632 -+#: ../system-config-printer.py:5624 - msgid "A printer connected to the parallel port." - msgstr "Štampač priključen na paralelni port." - --#: ../system-config-printer.py:5634 -+#: ../system-config-printer.py:5626 - msgid "A printer connected to a USB port." - msgstr "Štampač priključen na USB port." - --#: ../system-config-printer.py:5636 -+#: ../system-config-printer.py:5628 - msgid "" - "HPLIP software driving a printer, or the printer function of a multi-" - "function device." -@@ -1390,7 +1395,7 @@ msgstr "" - "HPLIP softver upravlja štampačem, ili funkcijom za štampanje višenamenskog " - "uređaja." - --#: ../system-config-printer.py:5639 -+#: ../system-config-printer.py:5631 - msgid "" - "HPLIP software driving a fax machine, or the fax function of a multi-" - "function device." -@@ -1398,48 +1403,44 @@ msgstr "" - "HPLIP softver upravlja faks mašinom, ili funkcijom za slanje faksa " - "višenamenskog uređaja." - --#: ../system-config-printer.py:5642 -+#: ../system-config-printer.py:5634 - msgid "Local printer detected by the Hardware Abstraction Layer (HAL)." - msgstr "" - "Lokalni štampač otkriven od strane Sloja za hardversku apstrakciju (HAL)." - --#: ../system-config-printer.py:5799 --msgid "HPLIP cannot find the device." --msgstr "HPLIP ne može da nađe uređaj" -- --#: ../system-config-printer.py:5881 -+#: ../system-config-printer.py:5831 - msgid "No printer was found at that address." - msgstr "Štampač nije pronađen na toj adresi" - --#: ../system-config-printer.py:6020 -+#: ../system-config-printer.py:5968 - msgid "-- Select from search results --" - msgstr "— Izaberi iz rezultata pretrage —" - --#: ../system-config-printer.py:6022 -+#: ../system-config-printer.py:5970 - msgid "-- No matches found --" - msgstr "— Ništa nije nađeno —" - --#: ../system-config-printer.py:6203 -+#: ../system-config-printer.py:6151 - msgid " (recommended)" - msgstr " (preporučeno)" - --#: ../system-config-printer.py:6217 -+#: ../system-config-printer.py:6165 - msgid "This PPD is generated by foomatic." - msgstr "Ovaj PPD je napravio foomatic." - --#: ../system-config-printer.py:6241 -+#: ../system-config-printer.py:6189 - msgid "OpenPrinting" - msgstr "OtvoriŠtampanje" - --#: ../system-config-printer.py:6252 -+#: ../system-config-printer.py:6200 - msgid "Distributable" - msgstr "Deljenje omogućeno" - --#: ../system-config-printer.py:6293 -+#: ../system-config-printer.py:6241 - msgid ", " - msgstr ", " - --#: ../system-config-printer.py:6298 -+#: ../system-config-printer.py:6246 - #, python-format - msgid "" - "\n" -@@ -1448,20 +1449,20 @@ msgstr "" - "\n" - "(%s)" - --#: ../system-config-printer.py:6303 -+#: ../system-config-printer.py:6251 - msgid "No support contacts known" - msgstr "Kontakti za podršku nisu poznati" - --#: ../system-config-printer.py:6307 ../system-config-printer.py:6320 -+#: ../system-config-printer.py:6255 ../system-config-printer.py:6268 - msgid "Not specified." - msgstr "Nije navedeno." - - #. Foomatic database problem of some sort. --#: ../system-config-printer.py:6360 -+#: ../system-config-printer.py:6308 - msgid "Database error" - msgstr "Greška u bazi podataka" - --#: ../system-config-printer.py:6361 -+#: ../system-config-printer.py:6309 - #, python-format - msgid "The '%s' driver cannot be used with printer '%s %s'." - msgstr "„%s“ upravljački program ne može biti korišćen sa štampačem „%s %s“." -@@ -1469,61 +1470,61 @@ msgstr "„%s“ upravljački program ne - #. This printer references some XML that is not - #. installed by default. Point the user at the - #. package they need to install. --#: ../system-config-printer.py:6371 -+#: ../system-config-printer.py:6319 - #, python-format - msgid "You will need to install the '%s' package in order to use this driver." - msgstr "" - "Moraćete instalirati „%s“ paket da biste koristili ovaj upravljački program." - - #. This error came from trying to open the PPD file. --#: ../system-config-printer.py:6378 -+#: ../system-config-printer.py:6326 - msgid "PPD error" - msgstr "PPD greška" - --#: ../system-config-printer.py:6380 -+#: ../system-config-printer.py:6328 - msgid "Failed to read PPD file. Possible reason follows:" - msgstr "Čitanje PPD datoteke nije uspelo. Mogući razlozi slede:" - - #. Failed to get PPD downloaded from OpenPrinting XXX --#: ../system-config-printer.py:6397 -+#: ../system-config-printer.py:6345 - msgid "Downloadable drivers" - msgstr "Preuzimljivi upravljački programi" - --#: ../system-config-printer.py:6398 -+#: ../system-config-printer.py:6346 - msgid "Failed to download PPD." - msgstr "Neuspeo pokušaj prevlačenja PPD." - --#: ../system-config-printer.py:6405 -+#: ../system-config-printer.py:6353 - msgid "fetching PPD" - msgstr "dobavljam PPD" - --#: ../system-config-printer.py:6434 ../system-config-printer.py:6472 -+#: ../system-config-printer.py:6382 ../system-config-printer.py:6420 - msgid "No Installable Options" - msgstr "Nema opcija koje se mogu instalirati" - --#: ../system-config-printer.py:6520 -+#: ../system-config-printer.py:6468 - #, python-format - msgid "adding printer %s" - msgstr "dodajem štampač %s" - --#: ../system-config-printer.py:6669 -+#: ../system-config-printer.py:6617 - msgid "Would you like to print a test page?" - msgstr "Da li bi željeli odštampati probnu stranicu?" - --#: ../system-config-printer.py:6722 -+#: ../system-config-printer.py:6670 - msgid "Install driver" - msgstr "Instaliraj upravljački program" - --#: ../system-config-printer.py:6723 ../troubleshoot/CheckPPDSanity.py:131 -+#: ../system-config-printer.py:6671 ../troubleshoot/CheckPPDSanity.py:131 - #, python-format - msgid "Printer '%s' requires the %s package but it is not currently installed." - msgstr "Štampač „%s“ zahteva paket „%s“ ali on nije trenutno instaliran. " - --#: ../system-config-printer.py:6739 -+#: ../system-config-printer.py:6687 - msgid "Missing driver" - msgstr "Nedostaje upravljački program" - --#: ../system-config-printer.py:6740 -+#: ../system-config-printer.py:6688 - #, python-format - msgid "" - "Printer '%s' requires the '%s' program but it is not currently installed. " -@@ -1655,108 +1656,104 @@ msgid "Enter device URI" - msgstr "Unesite URI uređaja" - - #: ../glade/NewPrinterWindow.glade.h:5 --msgid "HP Printer (HPLIP) via network" --msgstr "HP štampač (HPLIP) preko mreže" -- --#: ../glade/NewPrinterWindow.glade.h:6 - msgid "IPP Printer" - msgstr "IPP štampač" - --#: ../glade/NewPrinterWindow.glade.h:7 -+#: ../glade/NewPrinterWindow.glade.h:6 - msgid "License Terms" - msgstr "Licencni termini" - --#: ../glade/NewPrinterWindow.glade.h:8 -+#: ../glade/NewPrinterWindow.glade.h:7 - msgid "Location of the LPD network printer" - msgstr "Lokacija LPD mrežnog štampača" - --#: ../glade/NewPrinterWindow.glade.h:9 -+#: ../glade/NewPrinterWindow.glade.h:8 - msgid "Location of the network printer" - msgstr "Lokacije mrežnog štampača" - --#: ../glade/NewPrinterWindow.glade.h:10 -+#: ../glade/NewPrinterWindow.glade.h:9 - msgid "Location (optional)" - msgstr "Lokacija (neobavezno)" - --#: ../glade/NewPrinterWindow.glade.h:11 -+#: ../glade/NewPrinterWindow.glade.h:10 - msgid "Network Printer" - msgstr "Mrežni štampač" - --#: ../glade/NewPrinterWindow.glade.h:12 -+#: ../glade/NewPrinterWindow.glade.h:11 - msgid "Note" - msgstr "Napomena" - --#: ../glade/NewPrinterWindow.glade.h:13 -+#: ../glade/NewPrinterWindow.glade.h:12 - msgid "Output Quality" - msgstr "Kvalitet" - --#: ../glade/NewPrinterWindow.glade.h:14 -+#: ../glade/NewPrinterWindow.glade.h:13 - msgid "Printer Name" - msgstr "Ime štampača" - --#: ../glade/NewPrinterWindow.glade.h:15 -+#: ../glade/NewPrinterWindow.glade.h:14 - msgid "SMB Printer" - msgstr "SMB štampač" - --#: ../glade/NewPrinterWindow.glade.h:16 -+#: ../glade/NewPrinterWindow.glade.h:15 - msgid "Select Driver" - msgstr "Izaberite upravljački program" - --#: ../glade/NewPrinterWindow.glade.h:17 -+#: ../glade/NewPrinterWindow.glade.h:16 - msgid "Settings of the serial port" - msgstr "Podešavanja serijskog porta" - --#: ../glade/NewPrinterWindow.glade.h:18 -+#: ../glade/NewPrinterWindow.glade.h:17 - msgid "smb://[workgroup/]server[:port]/printer" - msgstr "smb://[RadnaGrupa/]server[:port]/štampač" - --#: ../glade/NewPrinterWindow.glade.h:19 -+#: ../glade/NewPrinterWindow.glade.h:18 - msgid "Choose Class Members" - msgstr "Izaberite članove klase" - --#: ../glade/NewPrinterWindow.glade.h:20 -+#: ../glade/NewPrinterWindow.glade.h:19 - msgid "Choose Driver" - msgstr "" - "Izaberite upravljački program" - --#: ../glade/NewPrinterWindow.glade.h:21 -+#: ../glade/NewPrinterWindow.glade.h:20 - msgid "Describe Printer" - msgstr "Opišite štampač" - --#: ../glade/NewPrinterWindow.glade.h:22 -+#: ../glade/NewPrinterWindow.glade.h:21 - msgid "Existing Settings" - msgstr "Postojeće postavke" - --#: ../glade/NewPrinterWindow.glade.h:23 -+#: ../glade/NewPrinterWindow.glade.h:22 - msgid "Installable Options" - msgstr "" - "Opcije koje se mogu instalirati" - --#: ../glade/NewPrinterWindow.glade.h:24 -+#: ../glade/NewPrinterWindow.glade.h:23 - msgid "Select Device" - msgstr "Izaberite uređaj" - --#: ../glade/NewPrinterWindow.glade.h:25 -+#: ../glade/NewPrinterWindow.glade.h:24 - msgid "Baud Rate" - msgstr "Brzina u bodima" - --#: ../glade/NewPrinterWindow.glade.h:26 -+#: ../glade/NewPrinterWindow.glade.h:25 - msgid "Browse..." - msgstr "Razgledaj..." - --#: ../glade/NewPrinterWindow.glade.h:27 -+#: ../glade/NewPrinterWindow.glade.h:26 - msgid "Comments..." - msgstr "Primedbe..." - --#: ../glade/NewPrinterWindow.glade.h:28 -+#: ../glade/NewPrinterWindow.glade.h:27 - msgid "Connection" - msgstr "Konekcija" - --#: ../glade/NewPrinterWindow.glade.h:29 -+#: ../glade/NewPrinterWindow.glade.h:28 - msgid "Data Bits" - msgstr "Bitovi podataka" - --#: ../glade/NewPrinterWindow.glade.h:30 -+#: ../glade/NewPrinterWindow.glade.h:29 - msgid "" - "Default\n" - "1200\n" -@@ -1778,7 +1775,7 @@ msgstr "" - "57600\n" - "115200" - --#: ../glade/NewPrinterWindow.glade.h:39 -+#: ../glade/NewPrinterWindow.glade.h:38 - msgid "" - "Default\n" - "8\n" -@@ -1788,7 +1785,7 @@ msgstr "" - "8\n" - "7" - --#: ../glade/NewPrinterWindow.glade.h:42 -+#: ../glade/NewPrinterWindow.glade.h:41 - msgid "" - "Default\n" - "None\n" -@@ -1800,7 +1797,7 @@ msgstr "" - "Neparno\n" - "Parno" - --#: ../glade/NewPrinterWindow.glade.h:46 -+#: ../glade/NewPrinterWindow.glade.h:45 - msgid "" - "Default\n" - "None\n" -@@ -1814,116 +1811,116 @@ msgstr "" - "RTS/CTS (hardverska)\n" - "DTR/DSR (hardverska)" - --#: ../glade/NewPrinterWindow.glade.h:51 -+#: ../glade/NewPrinterWindow.glade.h:50 - #: ../glade/PrinterPropertiesDialog.glade.h:35 - msgid "Description:" - msgstr "Opis:" - --#: ../glade/NewPrinterWindow.glade.h:52 ../troubleshoot/DeviceListed.py:40 -+#: ../glade/NewPrinterWindow.glade.h:51 ../troubleshoot/DeviceListed.py:40 - msgid "Device URI" - msgstr "URI uređaja" - --#: ../glade/NewPrinterWindow.glade.h:53 -+#: ../glade/NewPrinterWindow.glade.h:52 - msgid "Device description." - msgstr "Opis uređaja." - --#: ../glade/NewPrinterWindow.glade.h:54 -+#: ../glade/NewPrinterWindow.glade.h:53 - msgid "DirectJet" - msgstr "DirectJet" - --#: ../glade/NewPrinterWindow.glade.h:56 -+#: ../glade/NewPrinterWindow.glade.h:55 - msgid "Driver details" - msgstr "Detalji upravljačkog programa" - --#: ../glade/NewPrinterWindow.glade.h:57 -+#: ../glade/NewPrinterWindow.glade.h:56 - msgid "Empty" - msgstr "Prazno" - --#: ../glade/NewPrinterWindow.glade.h:58 -+#: ../glade/NewPrinterWindow.glade.h:57 - msgid "Find _Queue..." - msgstr "Nađite _red..." - --#: ../glade/NewPrinterWindow.glade.h:59 -+#: ../glade/NewPrinterWindow.glade.h:58 - msgid "Flow Control" - msgstr "Kontrola toka" - --#: ../glade/NewPrinterWindow.glade.h:60 -+#: ../glade/NewPrinterWindow.glade.h:59 - msgid "" - "For the printer you have selected there are drivers available for download." - msgstr "" - "Za štampač koji ste izabrali dostupni su upravljački programi koje možete " - "preuzeti." - --#: ../glade/NewPrinterWindow.glade.h:61 -+#: ../glade/NewPrinterWindow.glade.h:60 - msgid "Free software" - msgstr "Slobodni softver" - --#: ../glade/NewPrinterWindow.glade.h:62 -+#: ../glade/NewPrinterWindow.glade.h:61 - msgid "Graphics:" - msgstr "Grafika:" - --#: ../glade/NewPrinterWindow.glade.h:63 -+#: ../glade/NewPrinterWindow.glade.h:62 - msgid "Host:" - msgstr "Domaćin:" - --#: ../glade/NewPrinterWindow.glade.h:64 -+#: ../glade/NewPrinterWindow.glade.h:63 - msgid "Human-readable description such as \"HP LaserJet with Duplexer\"" - msgstr "" - "Opis koji je ljudima razumljiv kao „HP LaserJet sa obostranim štampanjem“" - --#: ../glade/NewPrinterWindow.glade.h:65 -+#: ../glade/NewPrinterWindow.glade.h:64 - msgid "Human-readable location such as \"Lab 1\"" - msgstr "Lokacija koja je ljudima razumljiva kao „Kancelarija 1“" - --#: ../glade/NewPrinterWindow.glade.h:67 -+#: ../glade/NewPrinterWindow.glade.h:66 - msgid "LPD" - msgstr "LPD" - --#: ../glade/NewPrinterWindow.glade.h:68 -+#: ../glade/NewPrinterWindow.glade.h:67 - msgid "License:" - msgstr "Licenca:" - --#: ../glade/NewPrinterWindow.glade.h:69 -+#: ../glade/NewPrinterWindow.glade.h:68 - msgid "Line art:" - msgstr "Crtež:" - --#: ../glade/NewPrinterWindow.glade.h:70 -+#: ../glade/NewPrinterWindow.glade.h:69 - msgid "Local Driver" - msgstr "Lokalni upravljački program" - --#: ../glade/NewPrinterWindow.glade.h:71 -+#: ../glade/NewPrinterWindow.glade.h:70 - msgid "Make and model:" - msgstr "Marka i model:" - --#: ../glade/NewPrinterWindow.glade.h:72 -+#: ../glade/NewPrinterWindow.glade.h:71 - msgid "Manufacturer" - msgstr "Proizvođač" - --#: ../glade/NewPrinterWindow.glade.h:73 -+#: ../glade/NewPrinterWindow.glade.h:72 - msgid "Network" - msgstr "Mreža" - --#: ../glade/NewPrinterWindow.glade.h:75 -+#: ../glade/NewPrinterWindow.glade.h:74 - msgid "No, I do not accept this license" - msgstr "Ne, ne prihvatam ovu licencu" - --#: ../glade/NewPrinterWindow.glade.h:76 -+#: ../glade/NewPrinterWindow.glade.h:75 - msgid "Parity" - msgstr "Parnost" - --#: ../glade/NewPrinterWindow.glade.h:78 -+#: ../glade/NewPrinterWindow.glade.h:77 - msgid "Patented algorithms" - msgstr "Patentirani algoritmi" - --#: ../glade/NewPrinterWindow.glade.h:79 -+#: ../glade/NewPrinterWindow.glade.h:78 - msgid "Photo:" - msgstr "Foto:" - --#: ../glade/NewPrinterWindow.glade.h:80 -+#: ../glade/NewPrinterWindow.glade.h:79 - msgid "Port number:" - msgstr "Broj porta:" - --#: ../glade/NewPrinterWindow.glade.h:81 -+#: ../glade/NewPrinterWindow.glade.h:80 - msgid "" - "PostScript Printer Description (PPD) files can often be found on the driver " - "disk that comes with the printer. For PostScript printers they are often " -@@ -1933,76 +1930,76 @@ msgstr "" - "često mogu naći na disku upravljačkog programa koji dođe uz štampač. One su " - "često deo Windows® upravljačkog programa za PostScript štampače." - --#: ../glade/NewPrinterWindow.glade.h:82 -+#: ../glade/NewPrinterWindow.glade.h:81 - msgid "Printer model:" - msgstr "Model štampača:" - --#: ../glade/NewPrinterWindow.glade.h:83 -+#: ../glade/NewPrinterWindow.glade.h:82 - msgid "Probe" - msgstr "Ispitaj" - --#: ../glade/NewPrinterWindow.glade.h:84 -+#: ../glade/NewPrinterWindow.glade.h:83 - msgid "Prompt user if authentication is required" - msgstr "Pošalji upit korisniku ako je autentifikacija potrebna" - --#: ../glade/NewPrinterWindow.glade.h:85 -+#: ../glade/NewPrinterWindow.glade.h:84 - msgid "Provide PPD file" - msgstr "Priložite PPD datoteku" - --#: ../glade/NewPrinterWindow.glade.h:86 -+#: ../glade/NewPrinterWindow.glade.h:85 - msgid "Queue:" - msgstr "Red:" - --#: ../glade/NewPrinterWindow.glade.h:87 -+#: ../glade/NewPrinterWindow.glade.h:86 - msgid "SCSI" - msgstr "SCSI" - --#: ../glade/NewPrinterWindow.glade.h:88 -+#: ../glade/NewPrinterWindow.glade.h:87 - msgid "SMB" - msgstr "SMB" - --#: ../glade/NewPrinterWindow.glade.h:89 -+#: ../glade/NewPrinterWindow.glade.h:88 - msgid "Search for a printer driver to download" - msgstr "Tražite upravljački program za preuzimanje" - --#: ../glade/NewPrinterWindow.glade.h:90 -+#: ../glade/NewPrinterWindow.glade.h:89 - #, fuzzy - msgid "Searching..." - msgstr "Pretraživanje" - --#: ../glade/NewPrinterWindow.glade.h:91 -+#: ../glade/NewPrinterWindow.glade.h:90 - msgid "Select A File" - msgstr "Izaberite datoteku" - --#: ../glade/NewPrinterWindow.glade.h:92 -+#: ../glade/NewPrinterWindow.glade.h:91 - msgid "Select printer from database" - msgstr "Izaberite štampač iz baze podataka" - --#: ../glade/NewPrinterWindow.glade.h:93 -+#: ../glade/NewPrinterWindow.glade.h:92 - msgid "Serial" - msgstr "Serijski" - --#: ../glade/NewPrinterWindow.glade.h:94 -+#: ../glade/NewPrinterWindow.glade.h:93 - msgid "Set authentication details now" - msgstr "Postavite detalje za autentifikaciju sada" - --#: ../glade/NewPrinterWindow.glade.h:95 -+#: ../glade/NewPrinterWindow.glade.h:94 - msgid "Short name for this printer such as \"laserjet\"" - msgstr "Kratko ime za ovaj štampač kao \"laserjet\"" - --#: ../glade/NewPrinterWindow.glade.h:96 -+#: ../glade/NewPrinterWindow.glade.h:95 - msgid "Supplier:" - msgstr "Opskrbljivač:" - --#: ../glade/NewPrinterWindow.glade.h:97 -+#: ../glade/NewPrinterWindow.glade.h:96 - msgid "Support:" - msgstr "Podrška:" - --#: ../glade/NewPrinterWindow.glade.h:98 -+#: ../glade/NewPrinterWindow.glade.h:97 - msgid "Text:" - msgstr "Tekst:" - --#: ../glade/NewPrinterWindow.glade.h:99 -+#: ../glade/NewPrinterWindow.glade.h:98 - msgid "" - "The foomatic printer database contains various manufacturer provided " - "PostScript Printer Description (PPD) files and also can generate PPD files " -@@ -2015,7 +2012,7 @@ msgstr "" - "broj (ne PostScript) štampača. Ali u opštem slučaju PPD datoteke dostavljene " - "od proizvođača daju bolji pristup posebnim alatima štampača." - --#: ../glade/NewPrinterWindow.glade.h:100 -+#: ../glade/NewPrinterWindow.glade.h:99 - msgid "" - "These drivers do not come from your operating system supplier and will not " - "be covered by their commercial support. See the support and license terms " -@@ -2026,7 +2023,7 @@ msgstr "" - "Pogledajte termine podrške i licence opskrbljivača ovih upravljačkih " - "programa." - --#: ../glade/NewPrinterWindow.glade.h:101 -+#: ../glade/NewPrinterWindow.glade.h:100 - msgid "" - "This driver supports additional hardware that may be installed in the " - "printer." -@@ -2034,7 +2031,7 @@ msgstr "" - "Ovaj upravljački program podržava dodatni hardver koji može biti instaliran " - "u štampaču." - --#: ../glade/NewPrinterWindow.glade.h:102 -+#: ../glade/NewPrinterWindow.glade.h:101 - msgid "" - "This is done by assuming that options with the same name do have the same " - "meaning. Settings of options that are not present in the new PPD will be " -@@ -2044,7 +2041,7 @@ msgstr "" - "značenje. Podešavanja opcija koje nisu u novom PPD-u će biti izgubljene i " - "samo opcije koje postoje u novom PPD-u će biti postavljene na podrazumevano." - --#: ../glade/NewPrinterWindow.glade.h:103 -+#: ../glade/NewPrinterWindow.glade.h:102 - msgid "" - "This way all current option settings will be lost. The default settings of " - "the new PPD will be used. " -@@ -2052,19 +2049,19 @@ msgstr "" - "Ovako će sve trenutne opcije podešavanja biti izgubljene. Podrazumevana " - "podešavanja novog PPD-a će biti upotrebljena." - --#: ../glade/NewPrinterWindow.glade.h:104 -+#: ../glade/NewPrinterWindow.glade.h:103 - msgid "Try to copy the option settings over from the old PPD. " - msgstr "Pokušajte da umnožite opcije podešavanja iz starog PPD-a. " - --#: ../glade/NewPrinterWindow.glade.h:105 -+#: ../glade/NewPrinterWindow.glade.h:104 - msgid "URI:" - msgstr "URI:" - --#: ../glade/NewPrinterWindow.glade.h:107 -+#: ../glade/NewPrinterWindow.glade.h:106 - msgid "Use the new PPD (Postscript Printer Description) as is." - msgstr "Koristi novi PPD (Opis PostScript štampača) bez promena." - --#: ../glade/NewPrinterWindow.glade.h:109 -+#: ../glade/NewPrinterWindow.glade.h:108 - msgid "" - "With this choice no driver download will be performed. In the next steps a " - "locally installed driver will be selected." -@@ -2072,24 +2069,24 @@ msgstr "" - "Sa ovim izborom neće biti preuzimanja upravljačkog programa. U sledećim " - "koracima lokalno instalirani upravljački program će biti izabran." - --#: ../glade/NewPrinterWindow.glade.h:110 -+#: ../glade/NewPrinterWindow.glade.h:109 - msgid "Yes, I accept this license" - msgstr "Da, prihvatam ovu licencu" - --#: ../glade/NewPrinterWindow.glade.h:111 -+#: ../glade/NewPrinterWindow.glade.h:110 - msgid "_Search" - msgstr "Pre_traga" - --#: ../glade/NewPrinterWindow.glade.h:112 -+#: ../glade/NewPrinterWindow.glade.h:111 - msgid "_Verify..." - msgstr "Pro_veri..." - --#: ../glade/NewPrinterWindow.glade.h:113 -+#: ../glade/NewPrinterWindow.glade.h:112 - #: ../glade/PrinterPropertiesDialog.glade.h:128 - msgid "move left" - msgstr "pomeri levo" - --#: ../glade/NewPrinterWindow.glade.h:114 -+#: ../glade/NewPrinterWindow.glade.h:113 - #: ../glade/PrinterPropertiesDialog.glade.h:129 - msgid "move right" - msgstr "pomeri desno" -@@ -3007,7 +3004,7 @@ msgstr "Da li je označeni posao štampa - msgid "Remember to load paper of type '%s' into the printer first." - msgstr "Zapamtite da prvo stavite papir „%s“ vrste u štampač." - --#: ../troubleshoot/PrintTestPage.py:399 -+#: ../troubleshoot/PrintTestPage.py:416 - msgid "Error submitting test page" - msgstr "Greška pri štampanju test strane" - -@@ -3208,6 +3205,15 @@ msgstr "Upravljaj poslovima štampanja" - msgid "Select default printer" - msgstr "Izaberi podrazumevani štampač" - -+#~ msgid "HP Printer (HPLIP)" -+#~ msgstr "HP štampač (HPLIP)" -+ -+#~ msgid "HPLIP cannot find the device." -+#~ msgstr "HPLIP ne može da nađe uređaj" -+ -+#~ msgid "HP Printer (HPLIP) via network" -+#~ msgstr "HP štampač (HPLIP) preko mreže" -+ - #~ msgid "Not Found" - #~ msgstr "Nije pronađen" - -diff -up system-config-printer-1.1.5/po/sr.po.git-1.1.x system-config-printer-1.1.5/po/sr.po ---- system-config-printer-1.1.5/po/sr.po.git-1.1.x 2009-03-03 22:21:46.000000000 +0000 -+++ system-config-printer-1.1.5/po/sr.po 2009-03-10 17:43:31.000000000 +0000 -@@ -9,7 +9,7 @@ msgid "" - msgstr "" - "Project-Id-Version: system-config-printer.0.7.82.x.sr\n" - "Report-Msgid-Bugs-To: https://bugzilla.redhat.com/bugzilla\n" --"POT-Creation-Date: 2009-03-02 23:22+0000\n" -+"POT-Creation-Date: 2009-03-10 16:51+0000\n" - "PO-Revision-Date: 2009-02-12 13:31-0500\n" - "Last-Translator: Igor Miletic \n" - "Language-Team: Serbian \n" -@@ -57,11 +57,11 @@ msgstr "" - msgid "Enter IP address" - msgstr "Унесите ИП адресу" - --#: ../authconn.py:35 ../glade/NewPrinterWindow.glade.h:108 -+#: ../authconn.py:35 ../glade/NewPrinterWindow.glade.h:107 - msgid "Username:" - msgstr "Име корисника:" - --#: ../authconn.py:36 ../glade/NewPrinterWindow.glade.h:77 -+#: ../authconn.py:36 ../glade/NewPrinterWindow.glade.h:76 - msgid "Password:" - msgstr "Лозинка:" - -@@ -69,7 +69,7 @@ msgstr "Лозинка:" - msgid "Domain:" - msgstr "Домен:" - --#: ../authconn.py:46 -+#: ../authconn.py:46 ../authconn.py:409 - msgid "Authentication" - msgstr "Аутентификација" - -@@ -77,43 +77,52 @@ msgstr "Аутентификација" - msgid "Remember password" - msgstr "Памти лозинку" - --#: ../authconn.py:211 ../authconn.py:232 -+#: ../authconn.py:208 -+#, python-format -+msgid "Unauthorized request (%s)" -+msgstr "" -+ -+#: ../authconn.py:209 -+msgid "You are not authorized to carry out therequested action." -+msgstr "" -+ -+#: ../authconn.py:212 ../authconn.py:233 - msgid "Operation canceled" - msgstr "Радња отказана" - --#: ../authconn.py:253 -+#: ../authconn.py:250 - #, python-format - msgid "CUPS server error (%s)" - msgstr "Грешка CUPS сервера (%s)" - --#: ../authconn.py:255 ../errordialogs.py:57 --#: ../troubleshoot/PrintTestPage.py:400 -+#: ../authconn.py:252 ../errordialogs.py:56 ../errordialogs.py:70 -+msgid "CUPS server error" -+msgstr "Грешка CUPS сервера" -+ -+#: ../authconn.py:261 ../errordialogs.py:57 -+#: ../troubleshoot/PrintTestPage.py:417 - #, python-format - msgid "There was an error during the CUPS operation: '%s'." - msgstr "Грешка током CUPS радње: „%s“." - --#: ../authconn.py:258 -+#: ../authconn.py:264 - msgid "Retry" - msgstr "Покушај поново" - --#: ../authconn.py:379 ../authconn.py:381 ../errordialogs.py:65 ../pysmb.py:75 -+#: ../authconn.py:385 ../authconn.py:387 ../errordialogs.py:65 ../pysmb.py:75 - #: ../pysmb.py:77 - msgid "Not authorized" - msgstr "Неовлашћен" - --#: ../authconn.py:382 ../pysmb.py:78 -+#: ../authconn.py:388 ../pysmb.py:78 - msgid "The password may be incorrect." - msgstr "Лозинка је можда нетачна." - --#: ../authconn.py:400 -+#: ../authconn.py:407 - #, python-format - msgid "Authentication (%s)" - msgstr "Аутентификација (%s)" - --#: ../errordialogs.py:56 ../errordialogs.py:70 --msgid "CUPS server error" --msgstr "Грешка CUPS сервера" -- - #: ../errordialogs.py:66 - msgid "" - "The password may be incorrect, or the server may be configured to deny " -@@ -142,7 +151,7 @@ msgstr "Неопходна је надо - msgid "Server error" - msgstr "Грешка сервера" - --#: ../errordialogs.py:82 ../system-config-printer.py:1219 -+#: ../errordialogs.py:82 ../system-config-printer.py:1223 - msgid "Not connected" - msgstr "Није спојен" - -@@ -164,7 +173,7 @@ msgstr "_Нова група" - msgid "_New Group from Selection" - msgstr "_Нова група из избора" - --#: ../GroupsPane.py:98 ../system-config-printer.py:393 -+#: ../GroupsPane.py:98 ../system-config-printer.py:397 - msgid "_Rename" - msgstr "П_реименуј" - -@@ -231,7 +240,7 @@ msgid "Document" - msgstr "Документ" - - #: ../jobviewer.py:212 ../my-default-printer.py:153 --#: ../system-config-printer.py:366 ../system-config-printer.py:1367 -+#: ../system-config-printer.py:370 ../system-config-printer.py:1371 - #: ../troubleshoot/PrintTestPage.py:84 - msgid "Printer" - msgstr "Штампач" -@@ -268,8 +277,8 @@ msgstr "Стање штампања до - - #: ../jobviewer.py:386 ../jobviewer.py:451 ../jobviewer.py:452 - #: ../jobviewer.py:492 ../jobviewer.py:600 ../jobviewer.py:727 --#: ../jobviewer.py:1196 ../jobviewer.py:1222 ../system-config-printer.py:2546 --#: ../glade/NewPrinterWindow.glade.h:106 -+#: ../jobviewer.py:1196 ../jobviewer.py:1222 ../system-config-printer.py:2556 -+#: ../glade/NewPrinterWindow.glade.h:105 - #: ../troubleshoot/ChooseNetworkPrinter.py:101 - #: ../troubleshoot/ChooseNetworkPrinter.py:102 - #: ../troubleshoot/ChooseNetworkPrinter.py:105 -@@ -357,12 +366,12 @@ msgstr "Задржи до викенда - msgid "Pending" - msgstr "На чекању" - --#: ../jobviewer.py:591 ../system-config-printer.py:186 -+#: ../jobviewer.py:591 ../system-config-printer.py:190 - #: ../troubleshoot/PrintTestPage.py:43 - msgid "Processing" - msgstr "Обрађује" - --#: ../jobviewer.py:592 ../system-config-printer.py:188 -+#: ../jobviewer.py:592 ../system-config-printer.py:192 - #: ../troubleshoot/PrintTestPage.py:44 - msgid "Stopped" - msgstr "Заустављен" -@@ -473,8 +482,8 @@ msgstr "_Користи подразум - msgid "_Set Default" - msgstr "По_стави као подразумевани" - --#: ../my-default-printer.py:158 ../system-config-printer.py:423 --#: ../system-config-printer.py:3660 ../troubleshoot/ChooseNetworkPrinter.py:37 -+#: ../my-default-printer.py:158 ../system-config-printer.py:427 -+#: ../system-config-printer.py:3675 ../troubleshoot/ChooseNetworkPrinter.py:37 - #: ../troubleshoot/ChoosePrinter.py:38 - msgid "Location" - msgstr "Локација" -@@ -503,7 +512,7 @@ msgstr "Подразумевано по - msgid "Authenticated" - msgstr "Аутентификoван" - --#: ../ppdippstr.py:50 ../system-config-printer.py:6259 -+#: ../ppdippstr.py:50 ../system-config-printer.py:6207 - msgid "None" - msgstr "Ништа" - -@@ -716,125 +725,125 @@ msgstr "600 тпи, у боји, црн - msgid "1200 dpi, photo, black + color cartridge, photo paper" - msgstr "1200 тпи, у боји, црна + у боји касета, фото папир" - --#: ../system-config-printer.py:127 -+#: ../system-config-printer.py:131 - msgid "To do this, select System->Administration->Firewall from the main menu." - msgstr "" - "Да бисте покренули ову алатку, изаберите Систем -> Администрација -> " - "Заштитни зид у главном менију." - --#: ../system-config-printer.py:185 -+#: ../system-config-printer.py:189 - msgid "Idle" - msgstr "Мирује" - --#: ../system-config-printer.py:187 -+#: ../system-config-printer.py:191 - msgid "Busy" - msgstr "Заузет" - --#: ../system-config-printer.py:372 ../system-config-printer.py:1373 -+#: ../system-config-printer.py:376 ../system-config-printer.py:1377 - msgid "Class" - msgstr "Класа" - --#: ../system-config-printer.py:399 -+#: ../system-config-printer.py:403 - msgid "Set As De_fault" - msgstr "По_стави као подразумевани" - --#: ../system-config-printer.py:403 -+#: ../system-config-printer.py:407 - msgid "_Create class" - msgstr "Направи к_ласу" - --#: ../system-config-printer.py:405 -+#: ../system-config-printer.py:409 - msgid "View Print _Queue" - msgstr "Погледај _ред за чекање" - --#: ../system-config-printer.py:407 -+#: ../system-config-printer.py:411 - msgid "_Add to Group" - msgstr "Дод_ај у групу" - --#: ../system-config-printer.py:409 -+#: ../system-config-printer.py:413 - msgid "Save Results as _Group" - msgstr "Сачувај резултате ка _групу" - --#: ../system-config-printer.py:411 -+#: ../system-config-printer.py:415 - msgid "Save Filter as _Search Group" - msgstr "_Сачувај филтер као група претраге" - --#: ../system-config-printer.py:415 -+#: ../system-config-printer.py:419 - msgid "E_nabled" - msgstr "Омогуће_н" - --#: ../system-config-printer.py:417 -+#: ../system-config-printer.py:421 - msgid "_Shared" - msgstr "_Дељен" - --#: ../system-config-printer.py:421 ../troubleshoot/ChooseNetworkPrinter.py:35 -+#: ../system-config-printer.py:425 ../troubleshoot/ChooseNetworkPrinter.py:35 - #: ../troubleshoot/ChoosePrinter.py:36 ../troubleshoot/DeviceListed.py:36 - msgid "Name" - msgstr "Име" - --#: ../system-config-printer.py:422 -+#: ../system-config-printer.py:426 - msgid "Description" - msgstr "Опис" - --#: ../system-config-printer.py:424 -+#: ../system-config-printer.py:428 - msgid "Manufacturer / Model" - msgstr "Произвођач / Модел" - - #. Printer state reasons list --#: ../system-config-printer.py:499 -+#: ../system-config-printer.py:503 - msgid "Message" - msgstr "Порука" - --#: ../system-config-printer.py:534 -+#: ../system-config-printer.py:538 - msgid "Problems?" - msgstr "Проблеми?" - --#: ../system-config-printer.py:637 ../system-config-printer.py:639 -+#: ../system-config-printer.py:641 ../system-config-printer.py:643 - msgid "Members of this class" - msgstr "Чланови ове класе" - --#: ../system-config-printer.py:638 ../system-config-printer.py:640 -+#: ../system-config-printer.py:642 ../system-config-printer.py:644 - msgid "Others" - msgstr "Остали" - --#: ../system-config-printer.py:641 -+#: ../system-config-printer.py:645 - msgid "Devices" - msgstr "Уређаји" - --#: ../system-config-printer.py:642 -+#: ../system-config-printer.py:646 - msgid "Connections" - msgstr "Конекције" - --#: ../system-config-printer.py:643 -+#: ../system-config-printer.py:647 - msgid "Makes" - msgstr "Марке" - --#: ../system-config-printer.py:644 -+#: ../system-config-printer.py:648 - msgid "Models" - msgstr "Модели" - --#: ../system-config-printer.py:645 -+#: ../system-config-printer.py:649 - msgid "Drivers" - msgstr "Управљачки програми" - --#: ../system-config-printer.py:646 ../glade/NewPrinterWindow.glade.h:55 -+#: ../system-config-printer.py:650 ../glade/NewPrinterWindow.glade.h:54 - msgid "Downloadable Drivers" - msgstr "Преузимљиви управљачки програми" - --#: ../system-config-printer.py:647 -+#: ../system-config-printer.py:651 - msgid "Users" - msgstr "Корисници" - --#: ../system-config-printer.py:682 -+#: ../system-config-printer.py:686 - msgid "Automatic rotation" - msgstr "Самостална ротација" - --#: ../system-config-printer.py:989 -+#: ../system-config-printer.py:993 - #, fuzzy, python-format - msgid "Printer Properties - '%s' on %s" - msgstr "Особине штампача - „%s“ на %s" - - #. The Conflict button was pressed. --#: ../system-config-printer.py:996 -+#: ../system-config-printer.py:1000 - msgid "" - "There are conflicting options.\n" - "Changes can only be applied after\n" -@@ -844,78 +853,78 @@ msgstr "" - "Промене ће бити примењене када\n" - "се сукоби разреше." - --#: ../system-config-printer.py:1214 -+#: ../system-config-printer.py:1218 - #, python-format - msgid "Printer configuration - %s" - msgstr "Подешавање штампача - %s" - --#: ../system-config-printer.py:1217 -+#: ../system-config-printer.py:1221 - #, python-format - msgid "Connected to %s" - msgstr "Спојен са %s" - - #. Update our copy of the printer's settings. --#: ../system-config-printer.py:1257 ../system-config-printer.py:2042 -+#: ../system-config-printer.py:1261 ../system-config-printer.py:2046 - msgid "obtaining queue details" - msgstr "добављам детаље реда за чекање" - --#: ../system-config-printer.py:1295 -+#: ../system-config-printer.py:1299 - msgid "Remove from Group" - msgstr "Избаци из групе" - --#: ../system-config-printer.py:1361 -+#: ../system-config-printer.py:1365 - msgid "Network printer (discovered)" - msgstr "Мрежни штампач (откривен)" - --#: ../system-config-printer.py:1364 -+#: ../system-config-printer.py:1368 - msgid "Network class (discovered)" - msgstr "Класа мреже (откривена)" - --#: ../system-config-printer.py:1370 ../system-config-printer.py:5524 --#: ../system-config-printer.py:5594 ../system-config-printer.py:5596 -+#: ../system-config-printer.py:1374 ../system-config-printer.py:5519 -+#: ../system-config-printer.py:5589 ../system-config-printer.py:5591 - msgid "Fax" - msgstr "Факс" - --#: ../system-config-printer.py:1376 ../system-config-printer.py:1382 -+#: ../system-config-printer.py:1380 ../system-config-printer.py:1386 - #: ../troubleshoot/LocalOrRemote.py:30 - msgid "Network printer" - msgstr "Мрежни штампач" - --#: ../system-config-printer.py:1379 -+#: ../system-config-printer.py:1383 - msgid "Network print share" - msgstr "Дељени мрежни штампач" - --#: ../system-config-printer.py:1508 ../glade/ConnectingDialog.glade.h:2 -+#: ../system-config-printer.py:1512 ../glade/ConnectingDialog.glade.h:2 - #, no-c-format, python-format - msgid "Opening connection to %s" - msgstr "Отварам везу са %s" - --#: ../system-config-printer.py:1887 -+#: ../system-config-printer.py:1891 - msgid "Installable Options" - msgstr "Опције које се могу инсталирати" - --#: ../system-config-printer.py:1888 -+#: ../system-config-printer.py:1892 - #: ../glade/PrinterPropertiesDialog.glade.h:109 - msgid "Printer Options" - msgstr "Опције штампача" - --#: ../system-config-printer.py:1924 -+#: ../system-config-printer.py:1928 - #, python-format - msgid "modifying class %s" - msgstr "измењујем %s класу" - --#: ../system-config-printer.py:1926 ../system-config-printer.py:3019 --#: ../system-config-printer.py:3044 ../system-config-printer.py:6547 --#: ../system-config-printer.py:6559 ../system-config-printer.py:6581 -+#: ../system-config-printer.py:1930 ../system-config-printer.py:3037 -+#: ../system-config-printer.py:3062 ../system-config-printer.py:6495 -+#: ../system-config-printer.py:6507 ../system-config-printer.py:6529 - #, python-format - msgid "modifying printer %s" - msgstr "мењам %s штампач" - --#: ../system-config-printer.py:1941 -+#: ../system-config-printer.py:1945 - msgid "This will delete this class!" - msgstr "Ово ће избрисати ову класу!" - --#: ../system-config-printer.py:1942 -+#: ../system-config-printer.py:1946 - msgid "Proceed anyway?" - msgstr "Свакако настави?" - -@@ -923,44 +932,44 @@ msgstr "Свакако настави?" - #. but we have never fetched the server settings to see whether - #. the server is publishing shared printers. Fetch the settings - #. now so that we can update the "not published" label if necessary. --#: ../system-config-printer.py:2030 ../system-config-printer.py:3203 -+#: ../system-config-printer.py:2034 ../system-config-printer.py:3221 - msgid "fetching server settings" - msgstr "Добављам подешавања сервера" - --#: ../system-config-printer.py:2100 -+#: ../system-config-printer.py:2104 - msgid "Set Default Printer" - msgstr "Постави подразумевани штампач" - --#: ../system-config-printer.py:2102 -+#: ../system-config-printer.py:2106 - msgid "Do you want to set this as the system-wide default printer?" - msgstr "Желите ли да поставите ово као широм система подразумевани штампач?" - --#: ../system-config-printer.py:2104 -+#: ../system-config-printer.py:2108 - msgid "Set as the _system-wide default printer" - msgstr "Постави као подразумевани штампач _система" - --#: ../system-config-printer.py:2106 -+#: ../system-config-printer.py:2110 - msgid "_Clear my personal default setting" - msgstr "_Обриши моје подразумевано подешавање" - --#: ../system-config-printer.py:2107 -+#: ../system-config-printer.py:2111 - msgid "Set as my _personal default printer" - msgstr "Постави као мој _лични подразумевани штампач" - --#: ../system-config-printer.py:2112 -+#: ../system-config-printer.py:2116 - msgid "setting default printer" - msgstr "Постављам подразумевани штампач" - --#: ../system-config-printer.py:2169 -+#: ../system-config-printer.py:2173 - msgid "printing test page" - msgstr "штампам пробну страницу" - --#: ../system-config-printer.py:2182 ../system-config-printer.py:2217 --#: ../system-config-printer.py:5418 -+#: ../system-config-printer.py:2186 ../system-config-printer.py:2221 -+#: ../system-config-printer.py:5413 - msgid "Not possible" - msgstr "Није могуће" - --#: ../system-config-printer.py:2183 ../system-config-printer.py:2218 -+#: ../system-config-printer.py:2187 ../system-config-printer.py:2222 - msgid "" - "The remote server did not accept the print job, most likely because the " - "printer is not shared." -@@ -968,20 +977,20 @@ msgstr "" - "Удаљени сервер није прихватио посао за штампање, највероватније зато што " - "штампач није дељен." - --#: ../system-config-printer.py:2195 ../system-config-printer.py:2210 -+#: ../system-config-printer.py:2199 ../system-config-printer.py:2214 - msgid "Submitted" - msgstr "Послато" - --#: ../system-config-printer.py:2196 -+#: ../system-config-printer.py:2200 - #, python-format - msgid "Test page submitted as job %d" - msgstr "Пробна страница је послата као посао %d" - --#: ../system-config-printer.py:2203 -+#: ../system-config-printer.py:2207 - msgid "sending maintenance command" - msgstr "шаљем наредбу за одржавање" - --#: ../system-config-printer.py:2211 -+#: ../system-config-printer.py:2215 - #, python-format - msgid "Maintenance command submitted as job %d" - msgstr "Наредба за одржавање је послата као посао %d" -@@ -989,65 +998,65 @@ msgstr "Наредба за одржав - #. The underlying cupsGetPPD2() function returned NULL without - #. setting an IPP error, so it'll be something like a failed - #. connection. --#: ../system-config-printer.py:2285 ../system-config-printer.py:2381 -+#: ../system-config-printer.py:2289 ../system-config-printer.py:2385 - msgid "Error" - msgstr "Грешка" - --#: ../system-config-printer.py:2286 -+#: ../system-config-printer.py:2290 - msgid "There was a problem connecting to the CUPS server." - msgstr "Грешка током повезивања на CUPS сервер." - --#: ../system-config-printer.py:2382 -+#: ../system-config-printer.py:2386 - #, python-format - msgid "Option '%s' has value '%s' and cannot be edited." - msgstr "Вредност опције „%s“ је „%s“ и не може бити уређивана." - --#: ../system-config-printer.py:2466 -+#: ../system-config-printer.py:2476 - msgid "Marker levels are not reported for this printer." - msgstr "Нивои мастила се не извештавају за овај штампач." - --#: ../system-config-printer.py:2763 -+#: ../system-config-printer.py:2773 - msgid "Cannot Rename" - msgstr "Неможе се преименовати" - --#: ../system-config-printer.py:2764 -+#: ../system-config-printer.py:2774 - msgid "There are queued jobs." - msgstr "Има још послова у реду на чекање." - --#: ../system-config-printer.py:2822 -+#: ../system-config-printer.py:2840 - msgid "renaming printer" - msgstr "преименујем штампач" - - #. for classes make sure all members - #. will get added --#: ../system-config-printer.py:2907 -+#: ../system-config-printer.py:2925 - msgid "copying printer" - msgstr "копирам штампача" - --#: ../system-config-printer.py:2971 -+#: ../system-config-printer.py:2989 - #, fuzzy, python-format - msgid "Really delete class '%s'?" - msgstr "Стварно избрисати класу „%s“?" - --#: ../system-config-printer.py:2973 -+#: ../system-config-printer.py:2991 - #, fuzzy, python-format - msgid "Really delete printer '%s'?" - msgstr "Стварно избрисати штампач „%s“?" - --#: ../system-config-printer.py:2975 -+#: ../system-config-printer.py:2993 - msgid "Really delete selected destinations?" - msgstr "Стварно избрисати изабрана одредишта?" - --#: ../system-config-printer.py:2996 -+#: ../system-config-printer.py:3014 - #, python-format - msgid "deleting printer %s" - msgstr "бришем штампач %s" - --#: ../system-config-printer.py:3070 -+#: ../system-config-printer.py:3088 - msgid "Publish Shared Printers" - msgstr "Објави дељене штампаче" - --#: ../system-config-printer.py:3071 -+#: ../system-config-printer.py:3089 - msgid "" - "Shared printers are not available to other people unless the 'Publish shared " - "printers' option is enabled in the server settings." -@@ -1055,7 +1064,7 @@ msgstr "" - "Дељени штампачи нису приступачни другим људима уколико опција 'Објави дељени " - "штампач' није укључена у подешавањима сервера." - --#: ../system-config-printer.py:3264 -+#: ../system-config-printer.py:3282 - msgid "modifying server settings" - msgstr "мењам подешавања сервера" - -@@ -1065,11 +1074,11 @@ msgstr "мењам подешавања - #. be unblocked. Unfortunately, this is not yet possible - #. (bug #440469). However, we can display a dialog to suggest - #. that now might be a good time to review the firewall settings. --#: ../system-config-printer.py:3289 -+#: ../system-config-printer.py:3307 - msgid "Review Firewall" - msgstr "Провери заштитни зид" - --#: ../system-config-printer.py:3290 -+#: ../system-config-printer.py:3308 - msgid "" - "You may need to adjust the firewall to allow network printing to this " - "computer." -@@ -1077,91 +1086,91 @@ msgstr "" - "Можда ћете морати да подесите заштитни зид како би дозволио мрежно штампање " - "на овом рачунару." - --#: ../system-config-printer.py:3623 -+#: ../system-config-printer.py:3638 - msgid "Browsing not available (pysmbc not installed)" - msgstr "Разгледање није доступно (pysmbc није инсталиран)" - - #. SMB list columns --#: ../system-config-printer.py:3629 -+#: ../system-config-printer.py:3644 - msgid "Share" - msgstr "Дељени ресурс" - --#: ../system-config-printer.py:3635 -+#: ../system-config-printer.py:3650 - msgid "Comment" - msgstr "Примедба" - - #. IPP list columns --#: ../system-config-printer.py:3654 -+#: ../system-config-printer.py:3669 - msgid "Queue" - msgstr "Ред" - --#: ../system-config-printer.py:3668 -+#: ../system-config-printer.py:3683 - msgid "" - "PostScript Printer Description files (*.ppd, *.PPD, *.ppd.gz, *.PPD.gz, *." - "PPD.GZ)" - msgstr "" - "Датотеке описа PostScript штампача (*.ppd,*.PPD, *.ppd.gz, *PPD.gz, *.PPD.GZ)" - --#: ../system-config-printer.py:3677 -+#: ../system-config-printer.py:3692 - msgid "All files (*)" - msgstr "Све датотеке (*)" - --#: ../system-config-printer.py:3713 ../system-config-printer.py:5970 --#: ../system-config-printer.py:6008 ../applet.py:124 -+#: ../system-config-printer.py:3728 ../system-config-printer.py:5918 -+#: ../system-config-printer.py:5956 ../applet.py:124 - msgid "Search" - msgstr "Претрага" - --#: ../system-config-printer.py:3736 ../system-config-printer.py:3760 --#: ../glade/NewPrinterWindow.glade.h:74 -+#: ../system-config-printer.py:3751 ../system-config-printer.py:3775 -+#: ../glade/NewPrinterWindow.glade.h:73 - msgid "New Printer" - msgstr "Нови штампач" - --#: ../system-config-printer.py:3747 -+#: ../system-config-printer.py:3762 - msgid "New Class" - msgstr "Нова класа" - --#: ../system-config-printer.py:3752 -+#: ../system-config-printer.py:3767 - msgid "Change Device URI" - msgstr "Промени УРИ уређаја" - --#: ../system-config-printer.py:3758 -+#: ../system-config-printer.py:3773 - msgid "Change Driver" - msgstr "Промени управљачки програм" - --#: ../system-config-printer.py:3927 ../system-config-printer.py:3993 --#: ../system-config-printer.py:4289 ../system-config-printer.py:4487 --#: ../system-config-printer.py:5772 ../system-config-printer.py:5995 -+#: ../system-config-printer.py:3942 ../system-config-printer.py:4008 -+#: ../system-config-printer.py:4304 ../system-config-printer.py:4502 -+#: ../system-config-printer.py:5762 ../system-config-printer.py:5943 - msgid "Searching" - msgstr "Претраживање" - --#: ../system-config-printer.py:3928 -+#: ../system-config-printer.py:3943 - msgid "Searching for downloadable drivers" - msgstr "Тражим преузимљиве управљачке програме" - --#: ../system-config-printer.py:3994 ../system-config-printer.py:4290 -+#: ../system-config-printer.py:4009 ../system-config-printer.py:4305 - msgid "Searching for drivers" - msgstr "Тражи управљачке програме" - --#: ../system-config-printer.py:4488 ../system-config-printer.py:5773 -+#: ../system-config-printer.py:4503 ../system-config-printer.py:5763 - msgid "Searching for printers" - msgstr "Тражи штампаче" - --#: ../system-config-printer.py:4497 -+#: ../system-config-printer.py:4512 - msgid "fetching device list" - msgstr "добављам списак уређаја" - - #. Tell the user why he needs the plugin --#: ../system-config-printer.py:4579 -+#: ../system-config-printer.py:4594 - msgid "For this printer a proprietary driver plugin from HP is available.\n" - msgstr "" - --#: ../system-config-printer.py:4582 -+#: ../system-config-printer.py:4597 - msgid "" - "The installation of the plugin is required for your printer to work.\n" - "\n" - msgstr "" - --#: ../system-config-printer.py:4585 -+#: ../system-config-printer.py:4600 - msgid "" - "Installing the plugin is optional, it completes or enhances the " - "functionality\n" -@@ -1169,113 +1178,109 @@ msgid "" - "\n" - msgstr "" - --#: ../system-config-printer.py:4589 -+#: ../system-config-printer.py:4604 - msgid "The plugin provides the following features:\n" - msgstr "" - --#: ../system-config-printer.py:4592 -+#: ../system-config-printer.py:4607 - msgid " - Printing support\n" - msgstr "" - --#: ../system-config-printer.py:4595 -+#: ../system-config-printer.py:4610 - #, fuzzy - msgid " - Faster printing\n" - msgstr "Двострано штапање" - --#: ../system-config-printer.py:4598 -+#: ../system-config-printer.py:4613 - msgid " - Better printout quality\n" - msgstr "" - --#: ../system-config-printer.py:4601 -+#: ../system-config-printer.py:4616 - msgid " - Extra printing features\n" - msgstr "" - --#: ../system-config-printer.py:4604 -+#: ../system-config-printer.py:4619 - msgid " - Scanning support\n" - msgstr "" - --#: ../system-config-printer.py:4607 -+#: ../system-config-printer.py:4622 - msgid " - Faster scanning\n" - msgstr "" - --#: ../system-config-printer.py:4610 -+#: ../system-config-printer.py:4625 - msgid " - Better scanning image quality\n" - msgstr "" - --#: ../system-config-printer.py:4613 -+#: ../system-config-printer.py:4628 - msgid " - Faxing support\n" - msgstr "" - --#: ../system-config-printer.py:4616 -+#: ../system-config-printer.py:4631 - msgid " - Extra fax features\n" - msgstr "" - --#: ../system-config-printer.py:4619 -+#: ../system-config-printer.py:4634 - msgid " - Better Input/Output support\n" - msgstr "" - --#: ../system-config-printer.py:4622 -+#: ../system-config-printer.py:4637 - msgid " - Extra user interface features\n" - msgstr "" - --#: ../system-config-printer.py:4625 -+#: ../system-config-printer.py:4640 - msgid " - Other extra features\n" - msgstr "" - --#: ../system-config-printer.py:4630 -+#: ../system-config-printer.py:4645 - #, fuzzy - msgid "Install plugin" - msgstr "Инсталиране опције" - --#: ../system-config-printer.py:4631 -+#: ../system-config-printer.py:4646 - #, fuzzy - msgid "Do not set up printer" - msgstr "Изаберите штампач" - --#: ../system-config-printer.py:4632 -+#: ../system-config-printer.py:4647 - msgid "Set up without plugin" - msgstr "" - --#: ../system-config-printer.py:4634 ../troubleshoot/PrintTestPage.py:118 -+#: ../system-config-printer.py:4649 ../troubleshoot/PrintTestPage.py:118 - msgid "Yes" - msgstr "Да" - --#: ../system-config-printer.py:4635 ../troubleshoot/PrintTestPage.py:119 -+#: ../system-config-printer.py:4650 ../troubleshoot/PrintTestPage.py:119 - msgid "No" - msgstr "Не" - --#: ../system-config-printer.py:4809 ../system-config-printer.py:4813 -+#: ../system-config-printer.py:4824 ../system-config-printer.py:4828 - msgid " (Current)" - msgstr " (Текући)" - --#: ../system-config-printer.py:4845 --msgid "HP Printer (HPLIP)" --msgstr "HP штампач (HPLIP)" -- --#: ../system-config-printer.py:4886 -+#: ../system-config-printer.py:4881 - msgid "Other" - msgstr "Остали" - - #. device-info - #. PhysicalDevice obj - #. Separator? --#: ../system-config-printer.py:4902 -+#: ../system-config-printer.py:4897 - msgid "Network Printer" - msgstr "Мрежни штампач" - --#: ../system-config-printer.py:4906 -+#: ../system-config-printer.py:4901 - msgid "Find Network Printer" - msgstr "Наћи мрежни штампач" - --#: ../system-config-printer.py:4979 ../system-config-printer.py:5376 -+#: ../system-config-printer.py:4974 ../system-config-printer.py:5371 - msgid "Scanning..." - msgstr "Прегледање..." - --#: ../system-config-printer.py:5034 ../system-config-printer.py:5798 -+#: ../system-config-printer.py:5029 - msgid "No Print Shares" - msgstr "Нема дељених штампача" - --#: ../system-config-printer.py:5035 -+#: ../system-config-printer.py:5030 - msgid "" - "There were no print shares found. Please check that the Samba service is " - "marked as trusted in your firewall configuration." -@@ -1283,32 +1288,32 @@ msgstr "" - "Није пронађен ниједан дељени штампач. Молимо вас да проверите да ли је Samba " - "сервис означен као од поверења у вашој конфигурацији заштитног зида." - --#: ../system-config-printer.py:5296 ../system-config-printer.py:5357 -+#: ../system-config-printer.py:5291 ../system-config-printer.py:5352 - msgid "Print Share Verified" - msgstr "Проверено дељено штампање" - --#: ../system-config-printer.py:5297 ../system-config-printer.py:5358 -+#: ../system-config-printer.py:5292 ../system-config-printer.py:5353 - msgid "This print share is accessible." - msgstr "Овај дељени штампач је приступачан." - --#: ../system-config-printer.py:5302 ../system-config-printer.py:5362 -+#: ../system-config-printer.py:5297 ../system-config-printer.py:5357 - msgid "This print share is not accessible." - msgstr "Овај дељени штампач није приступачан." - --#: ../system-config-printer.py:5305 -+#: ../system-config-printer.py:5300 - msgid "Print Share Inaccessible" - msgstr "Дељени штампач није приступачан." - --#: ../system-config-printer.py:5361 -+#: ../system-config-printer.py:5356 - msgid "Inaccessible" - msgstr "Неприступачан" - --#: ../system-config-printer.py:5419 -+#: ../system-config-printer.py:5414 - #, fuzzy, python-format - msgid "It is not possible to obtain a list of queues from '%s'." - msgstr "Није могуће добавити списак редова са „%s“." - --#: ../system-config-printer.py:5421 -+#: ../system-config-printer.py:5416 - msgid "" - "Obtaining a list of queues is a CUPS extension to IPP. Network printers do " - "not support it." -@@ -1316,73 +1321,73 @@ msgstr "" - "Добављање листе редова за чекање је проширење за CUPS за IPP. Мрежни " - "штампачи то не подржавају." - --#: ../system-config-printer.py:5424 -+#: ../system-config-printer.py:5419 - msgid "No queues" - msgstr "Нема редова" - --#: ../system-config-printer.py:5425 -+#: ../system-config-printer.py:5420 - msgid "There are no queues available." - msgstr "Нема доступних редова." - --#: ../system-config-printer.py:5516 -+#: ../system-config-printer.py:5511 - msgid "Parallel Port" - msgstr "" - --#: ../system-config-printer.py:5518 -+#: ../system-config-printer.py:5513 - #, fuzzy - msgid "Serial Port" - msgstr "Серијски" - --#: ../system-config-printer.py:5520 -+#: ../system-config-printer.py:5515 - #, fuzzy - msgid "USB" - msgstr "SMB" - --#: ../system-config-printer.py:5522 ../system-config-printer.py:5525 -+#: ../system-config-printer.py:5517 ../system-config-printer.py:5520 - msgid "HP Linux Imaging and Printing (HPLIP)" - msgstr "" - --#: ../system-config-printer.py:5527 -+#: ../system-config-printer.py:5522 - #, fuzzy - msgid "Hardware Abstraction Layer (HAL)" - msgstr "" - "Локални штампач откривен од стране Слоја за хардверску апстракцију (HAL)." - --#: ../system-config-printer.py:5529 -+#: ../system-config-printer.py:5524 - msgid "AppSocket/HP JetDirect" - msgstr "" - --#: ../system-config-printer.py:5538 -+#: ../system-config-printer.py:5533 - #, python-format - msgid "LPD/LPR queue '%s'" - msgstr "" - --#: ../system-config-printer.py:5540 -+#: ../system-config-printer.py:5535 - #, fuzzy - msgid "LPD/LPR queue" - msgstr "LPD" - --#: ../system-config-printer.py:5543 -+#: ../system-config-printer.py:5538 - msgid "Windows Printer via SAMBA" - msgstr "" - --#: ../system-config-printer.py:5545 ../glade/NewPrinterWindow.glade.h:66 -+#: ../system-config-printer.py:5540 ../glade/NewPrinterWindow.glade.h:65 - msgid "IPP" - msgstr "IPP" - --#: ../system-config-printer.py:5547 -+#: ../system-config-printer.py:5542 - msgid "HTTP" - msgstr "" - --#: ../system-config-printer.py:5632 -+#: ../system-config-printer.py:5624 - msgid "A printer connected to the parallel port." - msgstr "Штампач прикључен на паралелни порт." - --#: ../system-config-printer.py:5634 -+#: ../system-config-printer.py:5626 - msgid "A printer connected to a USB port." - msgstr "Штампач прикључен на USB порт." - --#: ../system-config-printer.py:5636 -+#: ../system-config-printer.py:5628 - msgid "" - "HPLIP software driving a printer, or the printer function of a multi-" - "function device." -@@ -1390,7 +1395,7 @@ msgstr "" - "HPLIP софтвер управља штампачем, или функцијом за штампање вишенаменског " - "уређаја." - --#: ../system-config-printer.py:5639 -+#: ../system-config-printer.py:5631 - msgid "" - "HPLIP software driving a fax machine, or the fax function of a multi-" - "function device." -@@ -1398,48 +1403,44 @@ msgstr "" - "HPLIP софтвер управља факс машином, или функцијом за слање факса " - "вишенаменског уређаја." - --#: ../system-config-printer.py:5642 -+#: ../system-config-printer.py:5634 - msgid "Local printer detected by the Hardware Abstraction Layer (HAL)." - msgstr "" - "Локални штампач откривен од стране Слоја за хардверску апстракцију (HAL)." - --#: ../system-config-printer.py:5799 --msgid "HPLIP cannot find the device." --msgstr "HPLIP не може да нађе уређај" -- --#: ../system-config-printer.py:5881 -+#: ../system-config-printer.py:5831 - msgid "No printer was found at that address." - msgstr "Штампач није пронађен на тој адреси" - --#: ../system-config-printer.py:6020 -+#: ../system-config-printer.py:5968 - msgid "-- Select from search results --" - msgstr "— Изабери из резултата претраге —" - --#: ../system-config-printer.py:6022 -+#: ../system-config-printer.py:5970 - msgid "-- No matches found --" - msgstr "— Ништа није нађено —" - --#: ../system-config-printer.py:6203 -+#: ../system-config-printer.py:6151 - msgid " (recommended)" - msgstr " (препоручено)" - --#: ../system-config-printer.py:6217 -+#: ../system-config-printer.py:6165 - msgid "This PPD is generated by foomatic." - msgstr "Овај PPD је направио foomatic." - --#: ../system-config-printer.py:6241 -+#: ../system-config-printer.py:6189 - msgid "OpenPrinting" - msgstr "ОтвориШтампање" - --#: ../system-config-printer.py:6252 -+#: ../system-config-printer.py:6200 - msgid "Distributable" - msgstr "Дељење омогућено" - --#: ../system-config-printer.py:6293 -+#: ../system-config-printer.py:6241 - msgid ", " - msgstr ", " - --#: ../system-config-printer.py:6298 -+#: ../system-config-printer.py:6246 - #, python-format - msgid "" - "\n" -@@ -1448,20 +1449,20 @@ msgstr "" - "\n" - "(%s)" - --#: ../system-config-printer.py:6303 -+#: ../system-config-printer.py:6251 - msgid "No support contacts known" - msgstr "Контакти за подршку нису познати" - --#: ../system-config-printer.py:6307 ../system-config-printer.py:6320 -+#: ../system-config-printer.py:6255 ../system-config-printer.py:6268 - msgid "Not specified." - msgstr "Није наведено." - - #. Foomatic database problem of some sort. --#: ../system-config-printer.py:6360 -+#: ../system-config-printer.py:6308 - msgid "Database error" - msgstr "Грешка у бази података" - --#: ../system-config-printer.py:6361 -+#: ../system-config-printer.py:6309 - #, python-format - msgid "The '%s' driver cannot be used with printer '%s %s'." - msgstr "„%s“ управљачки програм не може бити коришћен са штампачем „%s %s“." -@@ -1469,61 +1470,61 @@ msgstr "„%s“ управљачки п - #. This printer references some XML that is not - #. installed by default. Point the user at the - #. package they need to install. --#: ../system-config-printer.py:6371 -+#: ../system-config-printer.py:6319 - #, python-format - msgid "You will need to install the '%s' package in order to use this driver." - msgstr "" - "Мораћете инсталирати „%s“ пакет да бисте користили овај управљачки програм." - - #. This error came from trying to open the PPD file. --#: ../system-config-printer.py:6378 -+#: ../system-config-printer.py:6326 - msgid "PPD error" - msgstr "PPD грешка" - --#: ../system-config-printer.py:6380 -+#: ../system-config-printer.py:6328 - msgid "Failed to read PPD file. Possible reason follows:" - msgstr "Читање PPD датотеке није успело. Могући разлози следе:" - - #. Failed to get PPD downloaded from OpenPrinting XXX --#: ../system-config-printer.py:6397 -+#: ../system-config-printer.py:6345 - msgid "Downloadable drivers" - msgstr "Преузимљиви управљачки програми" - --#: ../system-config-printer.py:6398 -+#: ../system-config-printer.py:6346 - msgid "Failed to download PPD." - msgstr "Неуспео покушај превлачења PPD." - --#: ../system-config-printer.py:6405 -+#: ../system-config-printer.py:6353 - msgid "fetching PPD" - msgstr "добављам PPD" - --#: ../system-config-printer.py:6434 ../system-config-printer.py:6472 -+#: ../system-config-printer.py:6382 ../system-config-printer.py:6420 - msgid "No Installable Options" - msgstr "Нема опција које се могу инсталирати" - --#: ../system-config-printer.py:6520 -+#: ../system-config-printer.py:6468 - #, python-format - msgid "adding printer %s" - msgstr "додајем штампач %s" - --#: ../system-config-printer.py:6669 -+#: ../system-config-printer.py:6617 - msgid "Would you like to print a test page?" - msgstr "Да ли би жељели одштампати пробну страницу?" - --#: ../system-config-printer.py:6722 -+#: ../system-config-printer.py:6670 - msgid "Install driver" - msgstr "Инсталирај управљачки програм" - --#: ../system-config-printer.py:6723 ../troubleshoot/CheckPPDSanity.py:131 -+#: ../system-config-printer.py:6671 ../troubleshoot/CheckPPDSanity.py:131 - #, python-format - msgid "Printer '%s' requires the %s package but it is not currently installed." - msgstr "Штампач „%s“ захтева пакет „%s“ али он није тренутно инсталиран. " - --#: ../system-config-printer.py:6739 -+#: ../system-config-printer.py:6687 - msgid "Missing driver" - msgstr "Недостаје управљачки програм" - --#: ../system-config-printer.py:6740 -+#: ../system-config-printer.py:6688 - #, python-format - msgid "" - "Printer '%s' requires the '%s' program but it is not currently installed. " -@@ -1655,108 +1656,104 @@ msgid "Enter device URI" - msgstr "Унесите УРИ уређаја" - - #: ../glade/NewPrinterWindow.glade.h:5 --msgid "HP Printer (HPLIP) via network" --msgstr "HP штампач (HPLIP) преко мреже" -- --#: ../glade/NewPrinterWindow.glade.h:6 - msgid "IPP Printer" - msgstr "IPP штампач" - --#: ../glade/NewPrinterWindow.glade.h:7 -+#: ../glade/NewPrinterWindow.glade.h:6 - msgid "License Terms" - msgstr "Лиценцни термини" - --#: ../glade/NewPrinterWindow.glade.h:8 -+#: ../glade/NewPrinterWindow.glade.h:7 - msgid "Location of the LPD network printer" - msgstr "Локација LPD мрежног штампача" - --#: ../glade/NewPrinterWindow.glade.h:9 -+#: ../glade/NewPrinterWindow.glade.h:8 - msgid "Location of the network printer" - msgstr "Локације мрежног штампача" - --#: ../glade/NewPrinterWindow.glade.h:10 -+#: ../glade/NewPrinterWindow.glade.h:9 - msgid "Location (optional)" - msgstr "Локација (необавезно)" - --#: ../glade/NewPrinterWindow.glade.h:11 -+#: ../glade/NewPrinterWindow.glade.h:10 - msgid "Network Printer" - msgstr "Мрежни штампач" - --#: ../glade/NewPrinterWindow.glade.h:12 -+#: ../glade/NewPrinterWindow.glade.h:11 - msgid "Note" - msgstr "Напомена" - --#: ../glade/NewPrinterWindow.glade.h:13 -+#: ../glade/NewPrinterWindow.glade.h:12 - msgid "Output Quality" - msgstr "Квалитет" - --#: ../glade/NewPrinterWindow.glade.h:14 -+#: ../glade/NewPrinterWindow.glade.h:13 - msgid "Printer Name" - msgstr "Име штампача" - --#: ../glade/NewPrinterWindow.glade.h:15 -+#: ../glade/NewPrinterWindow.glade.h:14 - msgid "SMB Printer" - msgstr "SMB штампач" - --#: ../glade/NewPrinterWindow.glade.h:16 -+#: ../glade/NewPrinterWindow.glade.h:15 - msgid "Select Driver" - msgstr "Изаберите управљачки програм" - --#: ../glade/NewPrinterWindow.glade.h:17 -+#: ../glade/NewPrinterWindow.glade.h:16 - msgid "Settings of the serial port" - msgstr "Подешавања серијског порта" - --#: ../glade/NewPrinterWindow.glade.h:18 -+#: ../glade/NewPrinterWindow.glade.h:17 - msgid "smb://[workgroup/]server[:port]/printer" - msgstr "smb://[РаднаГрупа/]сервер[:порт]/штампач" - --#: ../glade/NewPrinterWindow.glade.h:19 -+#: ../glade/NewPrinterWindow.glade.h:18 - msgid "Choose Class Members" - msgstr "Изаберите чланове класе" - --#: ../glade/NewPrinterWindow.glade.h:20 -+#: ../glade/NewPrinterWindow.glade.h:19 - msgid "Choose Driver" - msgstr "" - "Изаберите управљачки програм" - --#: ../glade/NewPrinterWindow.glade.h:21 -+#: ../glade/NewPrinterWindow.glade.h:20 - msgid "Describe Printer" - msgstr "Опишите штампач" - --#: ../glade/NewPrinterWindow.glade.h:22 -+#: ../glade/NewPrinterWindow.glade.h:21 - msgid "Existing Settings" - msgstr "Постојеће поставке" - --#: ../glade/NewPrinterWindow.glade.h:23 -+#: ../glade/NewPrinterWindow.glade.h:22 - msgid "Installable Options" - msgstr "" - "Опције које се могу инсталирати" - --#: ../glade/NewPrinterWindow.glade.h:24 -+#: ../glade/NewPrinterWindow.glade.h:23 - msgid "Select Device" - msgstr "Изаберите уређај" - --#: ../glade/NewPrinterWindow.glade.h:25 -+#: ../glade/NewPrinterWindow.glade.h:24 - msgid "Baud Rate" - msgstr "Брзина у бодима" - --#: ../glade/NewPrinterWindow.glade.h:26 -+#: ../glade/NewPrinterWindow.glade.h:25 - msgid "Browse..." - msgstr "Разгледај..." - --#: ../glade/NewPrinterWindow.glade.h:27 -+#: ../glade/NewPrinterWindow.glade.h:26 - msgid "Comments..." - msgstr "Примедбе..." - --#: ../glade/NewPrinterWindow.glade.h:28 -+#: ../glade/NewPrinterWindow.glade.h:27 - msgid "Connection" - msgstr "Конекција" - --#: ../glade/NewPrinterWindow.glade.h:29 -+#: ../glade/NewPrinterWindow.glade.h:28 - msgid "Data Bits" - msgstr "Битови података" - --#: ../glade/NewPrinterWindow.glade.h:30 -+#: ../glade/NewPrinterWindow.glade.h:29 - msgid "" - "Default\n" - "1200\n" -@@ -1778,7 +1775,7 @@ msgstr "" - "57600\n" - "115200" - --#: ../glade/NewPrinterWindow.glade.h:39 -+#: ../glade/NewPrinterWindow.glade.h:38 - msgid "" - "Default\n" - "8\n" -@@ -1788,7 +1785,7 @@ msgstr "" - "8\n" - "7" - --#: ../glade/NewPrinterWindow.glade.h:42 -+#: ../glade/NewPrinterWindow.glade.h:41 - msgid "" - "Default\n" - "None\n" -@@ -1800,7 +1797,7 @@ msgstr "" - "Непарно\n" - "Парно" - --#: ../glade/NewPrinterWindow.glade.h:46 -+#: ../glade/NewPrinterWindow.glade.h:45 - msgid "" - "Default\n" - "None\n" -@@ -1814,115 +1811,115 @@ msgstr "" - "RTS/CTS (хардверска)\n" - "DTR/DSR (хардверска)" - --#: ../glade/NewPrinterWindow.glade.h:51 -+#: ../glade/NewPrinterWindow.glade.h:50 - #: ../glade/PrinterPropertiesDialog.glade.h:35 - msgid "Description:" - msgstr "Опис:" - --#: ../glade/NewPrinterWindow.glade.h:52 ../troubleshoot/DeviceListed.py:40 -+#: ../glade/NewPrinterWindow.glade.h:51 ../troubleshoot/DeviceListed.py:40 - msgid "Device URI" - msgstr "УРИ уређаја" - --#: ../glade/NewPrinterWindow.glade.h:53 -+#: ../glade/NewPrinterWindow.glade.h:52 - msgid "Device description." - msgstr "Опис уређаја." - --#: ../glade/NewPrinterWindow.glade.h:54 -+#: ../glade/NewPrinterWindow.glade.h:53 - msgid "DirectJet" - msgstr "DirectJet" - --#: ../glade/NewPrinterWindow.glade.h:56 -+#: ../glade/NewPrinterWindow.glade.h:55 - msgid "Driver details" - msgstr "Детаљи управљачког програма" - --#: ../glade/NewPrinterWindow.glade.h:57 -+#: ../glade/NewPrinterWindow.glade.h:56 - msgid "Empty" - msgstr "Празно" - --#: ../glade/NewPrinterWindow.glade.h:58 -+#: ../glade/NewPrinterWindow.glade.h:57 - msgid "Find _Queue..." - msgstr "Нађите _ред..." - --#: ../glade/NewPrinterWindow.glade.h:59 -+#: ../glade/NewPrinterWindow.glade.h:58 - msgid "Flow Control" - msgstr "Контрола тока" - --#: ../glade/NewPrinterWindow.glade.h:60 -+#: ../glade/NewPrinterWindow.glade.h:59 - msgid "" - "For the printer you have selected there are drivers available for download." - msgstr "" - "За штампач који сте изабрали доступни су управљачки програми које можете " - "преузети." - --#: ../glade/NewPrinterWindow.glade.h:61 -+#: ../glade/NewPrinterWindow.glade.h:60 - msgid "Free software" - msgstr "Слободни софтвер" - --#: ../glade/NewPrinterWindow.glade.h:62 -+#: ../glade/NewPrinterWindow.glade.h:61 - msgid "Graphics:" - msgstr "Графика:" - --#: ../glade/NewPrinterWindow.glade.h:63 -+#: ../glade/NewPrinterWindow.glade.h:62 - msgid "Host:" - msgstr "Домаћин:" - --#: ../glade/NewPrinterWindow.glade.h:64 -+#: ../glade/NewPrinterWindow.glade.h:63 - msgid "Human-readable description such as \"HP LaserJet with Duplexer\"" - msgstr "Опис који је људима разумљив као „HP LaserJet са обостраним штампањем“" - --#: ../glade/NewPrinterWindow.glade.h:65 -+#: ../glade/NewPrinterWindow.glade.h:64 - msgid "Human-readable location such as \"Lab 1\"" - msgstr "Локација која је људима разумљива као „Канцеларија 1“" - --#: ../glade/NewPrinterWindow.glade.h:67 -+#: ../glade/NewPrinterWindow.glade.h:66 - msgid "LPD" - msgstr "LPD" - --#: ../glade/NewPrinterWindow.glade.h:68 -+#: ../glade/NewPrinterWindow.glade.h:67 - msgid "License:" - msgstr "Лиценца:" - --#: ../glade/NewPrinterWindow.glade.h:69 -+#: ../glade/NewPrinterWindow.glade.h:68 - msgid "Line art:" - msgstr "Цртеж:" - --#: ../glade/NewPrinterWindow.glade.h:70 -+#: ../glade/NewPrinterWindow.glade.h:69 - msgid "Local Driver" - msgstr "Локални управљачки програм" - --#: ../glade/NewPrinterWindow.glade.h:71 -+#: ../glade/NewPrinterWindow.glade.h:70 - msgid "Make and model:" - msgstr "Марка и модел:" - --#: ../glade/NewPrinterWindow.glade.h:72 -+#: ../glade/NewPrinterWindow.glade.h:71 - msgid "Manufacturer" - msgstr "Произвођач" - --#: ../glade/NewPrinterWindow.glade.h:73 -+#: ../glade/NewPrinterWindow.glade.h:72 - msgid "Network" - msgstr "Мрежа" - --#: ../glade/NewPrinterWindow.glade.h:75 -+#: ../glade/NewPrinterWindow.glade.h:74 - msgid "No, I do not accept this license" - msgstr "Не, не прихватам ову лиценцу" - --#: ../glade/NewPrinterWindow.glade.h:76 -+#: ../glade/NewPrinterWindow.glade.h:75 - msgid "Parity" - msgstr "Парност" - --#: ../glade/NewPrinterWindow.glade.h:78 -+#: ../glade/NewPrinterWindow.glade.h:77 - msgid "Patented algorithms" - msgstr "Патентирани алгоритми" - --#: ../glade/NewPrinterWindow.glade.h:79 -+#: ../glade/NewPrinterWindow.glade.h:78 - msgid "Photo:" - msgstr "Фото:" - --#: ../glade/NewPrinterWindow.glade.h:80 -+#: ../glade/NewPrinterWindow.glade.h:79 - msgid "Port number:" - msgstr "Број порта:" - --#: ../glade/NewPrinterWindow.glade.h:81 -+#: ../glade/NewPrinterWindow.glade.h:80 - msgid "" - "PostScript Printer Description (PPD) files can often be found on the driver " - "disk that comes with the printer. For PostScript printers they are often " -@@ -1932,76 +1929,76 @@ msgstr "" - "често могу наћи на диску управљачког програма који дође уз штампач. Оне су " - "често део Windows® управљачког програма за PostScript штампаче." - --#: ../glade/NewPrinterWindow.glade.h:82 -+#: ../glade/NewPrinterWindow.glade.h:81 - msgid "Printer model:" - msgstr "Модел штампача:" - --#: ../glade/NewPrinterWindow.glade.h:83 -+#: ../glade/NewPrinterWindow.glade.h:82 - msgid "Probe" - msgstr "Испитај" - --#: ../glade/NewPrinterWindow.glade.h:84 -+#: ../glade/NewPrinterWindow.glade.h:83 - msgid "Prompt user if authentication is required" - msgstr "Пошаљи упит кориснику ако је aутентификација потребна" - --#: ../glade/NewPrinterWindow.glade.h:85 -+#: ../glade/NewPrinterWindow.glade.h:84 - msgid "Provide PPD file" - msgstr "Приложите PPD датотеку" - --#: ../glade/NewPrinterWindow.glade.h:86 -+#: ../glade/NewPrinterWindow.glade.h:85 - msgid "Queue:" - msgstr "Ред:" - --#: ../glade/NewPrinterWindow.glade.h:87 -+#: ../glade/NewPrinterWindow.glade.h:86 - msgid "SCSI" - msgstr "SCSI" - --#: ../glade/NewPrinterWindow.glade.h:88 -+#: ../glade/NewPrinterWindow.glade.h:87 - msgid "SMB" - msgstr "SMB" - --#: ../glade/NewPrinterWindow.glade.h:89 -+#: ../glade/NewPrinterWindow.glade.h:88 - msgid "Search for a printer driver to download" - msgstr "Тражите управљачки програм за преузимање" - --#: ../glade/NewPrinterWindow.glade.h:90 -+#: ../glade/NewPrinterWindow.glade.h:89 - #, fuzzy - msgid "Searching..." - msgstr "Претраживање" - --#: ../glade/NewPrinterWindow.glade.h:91 -+#: ../glade/NewPrinterWindow.glade.h:90 - msgid "Select A File" - msgstr "Изаберите датотеку" - --#: ../glade/NewPrinterWindow.glade.h:92 -+#: ../glade/NewPrinterWindow.glade.h:91 - msgid "Select printer from database" - msgstr "Изаберите штампач из базе података" - --#: ../glade/NewPrinterWindow.glade.h:93 -+#: ../glade/NewPrinterWindow.glade.h:92 - msgid "Serial" - msgstr "Серијски" - --#: ../glade/NewPrinterWindow.glade.h:94 -+#: ../glade/NewPrinterWindow.glade.h:93 - msgid "Set authentication details now" - msgstr "Поставите детаље за аутентификацију сада" - --#: ../glade/NewPrinterWindow.glade.h:95 -+#: ../glade/NewPrinterWindow.glade.h:94 - msgid "Short name for this printer such as \"laserjet\"" - msgstr "Кратко име за овај штампач као \"laserjet\"" - --#: ../glade/NewPrinterWindow.glade.h:96 -+#: ../glade/NewPrinterWindow.glade.h:95 - msgid "Supplier:" - msgstr "Опскрбљивач:" - --#: ../glade/NewPrinterWindow.glade.h:97 -+#: ../glade/NewPrinterWindow.glade.h:96 - msgid "Support:" - msgstr "Подршка:" - --#: ../glade/NewPrinterWindow.glade.h:98 -+#: ../glade/NewPrinterWindow.glade.h:97 - msgid "Text:" - msgstr "Текст:" - --#: ../glade/NewPrinterWindow.glade.h:99 -+#: ../glade/NewPrinterWindow.glade.h:98 - msgid "" - "The foomatic printer database contains various manufacturer provided " - "PostScript Printer Description (PPD) files and also can generate PPD files " -@@ -2014,7 +2011,7 @@ msgstr "" - "(не PostScript) штампача. Али у општем случају PPD датотеке достављене од " - "произвођача дају бољи приступ посебним алатима штампача." - --#: ../glade/NewPrinterWindow.glade.h:100 -+#: ../glade/NewPrinterWindow.glade.h:99 - msgid "" - "These drivers do not come from your operating system supplier and will not " - "be covered by their commercial support. See the support and license terms " -@@ -2024,7 +2021,7 @@ msgstr "" - "и због тога нису покривени њиховом комерцијалном подршком. Погледајте " - "термине подршке и лиценце опскрбљивача ових управљачких програма." - --#: ../glade/NewPrinterWindow.glade.h:101 -+#: ../glade/NewPrinterWindow.glade.h:100 - msgid "" - "This driver supports additional hardware that may be installed in the " - "printer." -@@ -2032,7 +2029,7 @@ msgstr "" - "Овај управљачки програм подржава додатни хардвер који може бити инсталиран у " - "штампачу." - --#: ../glade/NewPrinterWindow.glade.h:102 -+#: ../glade/NewPrinterWindow.glade.h:101 - msgid "" - "This is done by assuming that options with the same name do have the same " - "meaning. Settings of options that are not present in the new PPD will be " -@@ -2042,7 +2039,7 @@ msgstr "" - "Подешавања опција које нису у новом PPD-у ће бити изгубљене и само опције " - "које постоје у новом PPD-у ће бити постављене на подразумевано." - --#: ../glade/NewPrinterWindow.glade.h:103 -+#: ../glade/NewPrinterWindow.glade.h:102 - msgid "" - "This way all current option settings will be lost. The default settings of " - "the new PPD will be used. " -@@ -2050,19 +2047,19 @@ msgstr "" - "Овако ће све тренутне опције подешавања бити изгубљене. Подразумевана " - "подешавања новог PPD-a ће бити употребљена." - --#: ../glade/NewPrinterWindow.glade.h:104 -+#: ../glade/NewPrinterWindow.glade.h:103 - msgid "Try to copy the option settings over from the old PPD. " - msgstr "Покушајте да умножите опције подешавања из старог PPD-a. " - --#: ../glade/NewPrinterWindow.glade.h:105 -+#: ../glade/NewPrinterWindow.glade.h:104 - msgid "URI:" - msgstr "УРИ:" - --#: ../glade/NewPrinterWindow.glade.h:107 -+#: ../glade/NewPrinterWindow.glade.h:106 - msgid "Use the new PPD (Postscript Printer Description) as is." - msgstr "Користи нови PPD (Опис PostScript штампача) без промена." - --#: ../glade/NewPrinterWindow.glade.h:109 -+#: ../glade/NewPrinterWindow.glade.h:108 - msgid "" - "With this choice no driver download will be performed. In the next steps a " - "locally installed driver will be selected." -@@ -2070,24 +2067,24 @@ msgstr "" - "Са овим избором неће бити преузимања управљачког програма. У следећим " - "корацима локално инсталирани управљачки програм ће бити изабран." - --#: ../glade/NewPrinterWindow.glade.h:110 -+#: ../glade/NewPrinterWindow.glade.h:109 - msgid "Yes, I accept this license" - msgstr "Да, прихватам ову лиценцу" - --#: ../glade/NewPrinterWindow.glade.h:111 -+#: ../glade/NewPrinterWindow.glade.h:110 - msgid "_Search" - msgstr "Пре_трага" - --#: ../glade/NewPrinterWindow.glade.h:112 -+#: ../glade/NewPrinterWindow.glade.h:111 - msgid "_Verify..." - msgstr "Про_вери..." - --#: ../glade/NewPrinterWindow.glade.h:113 -+#: ../glade/NewPrinterWindow.glade.h:112 - #: ../glade/PrinterPropertiesDialog.glade.h:128 - msgid "move left" - msgstr "помери лево" - --#: ../glade/NewPrinterWindow.glade.h:114 -+#: ../glade/NewPrinterWindow.glade.h:113 - #: ../glade/PrinterPropertiesDialog.glade.h:129 - msgid "move right" - msgstr "помери десно" -@@ -3005,7 +3002,7 @@ msgstr "Да ли је означени - msgid "Remember to load paper of type '%s' into the printer first." - msgstr "Запамтите да прво ставите папир „%s“ врсте у штампач." - --#: ../troubleshoot/PrintTestPage.py:399 -+#: ../troubleshoot/PrintTestPage.py:416 - msgid "Error submitting test page" - msgstr "Грешка при штампању тест стране" - -@@ -3206,6 +3203,15 @@ msgstr "Управљај послови - msgid "Select default printer" - msgstr "Изабери подразумевани штампач" - -+#~ msgid "HP Printer (HPLIP)" -+#~ msgstr "HP штампач (HPLIP)" -+ -+#~ msgid "HPLIP cannot find the device." -+#~ msgstr "HPLIP не може да нађе уређај" -+ -+#~ msgid "HP Printer (HPLIP) via network" -+#~ msgstr "HP штампач (HPLIP) преко мреже" -+ - #~ msgid "Not Found" - #~ msgstr "Није пронађен" - -diff -up system-config-printer-1.1.5/po/sv.po.git-1.1.x system-config-printer-1.1.5/po/sv.po ---- system-config-printer-1.1.5/po/sv.po.git-1.1.x 2009-03-03 22:21:46.000000000 +0000 -+++ system-config-printer-1.1.5/po/sv.po 2009-03-10 17:43:31.000000000 +0000 -@@ -10,7 +10,7 @@ msgid "" - msgstr "" - "Project-Id-Version: system-config-printer\n" - "Report-Msgid-Bugs-To: https://bugzilla.redhat.com/bugzilla\n" --"POT-Creation-Date: 2009-03-02 23:22+0000\n" -+"POT-Creation-Date: 2009-03-10 16:51+0000\n" - "PO-Revision-Date: 2009-02-24 13:23+0100\n" - "Last-Translator: Daniel Nylander \n" - "Language-Team: Swedish \n" -@@ -54,11 +54,11 @@ msgstr "" - msgid "Enter IP address" - msgstr "Ange IP-adress" - --#: ../authconn.py:35 ../glade/NewPrinterWindow.glade.h:108 -+#: ../authconn.py:35 ../glade/NewPrinterWindow.glade.h:107 - msgid "Username:" - msgstr "Användarnamn:" - --#: ../authconn.py:36 ../glade/NewPrinterWindow.glade.h:77 -+#: ../authconn.py:36 ../glade/NewPrinterWindow.glade.h:76 - msgid "Password:" - msgstr "Lösenord:" - -@@ -66,7 +66,7 @@ msgstr "Lösenord:" - msgid "Domain:" - msgstr "Domän:" - --#: ../authconn.py:46 -+#: ../authconn.py:46 ../authconn.py:409 - msgid "Authentication" - msgstr "Autentisering" - -@@ -74,43 +74,52 @@ msgstr "Autentisering" - msgid "Remember password" - msgstr "Kom ihåg lösenord" - --#: ../authconn.py:211 ../authconn.py:232 -+#: ../authconn.py:208 -+#, python-format -+msgid "Unauthorized request (%s)" -+msgstr "" -+ -+#: ../authconn.py:209 -+msgid "You are not authorized to carry out therequested action." -+msgstr "" -+ -+#: ../authconn.py:212 ../authconn.py:233 - msgid "Operation canceled" - msgstr "Åtgärden avbruten" - --#: ../authconn.py:253 -+#: ../authconn.py:250 - #, python-format - msgid "CUPS server error (%s)" - msgstr "Fel i CUPS-server (%s)" - --#: ../authconn.py:255 ../errordialogs.py:57 --#: ../troubleshoot/PrintTestPage.py:400 -+#: ../authconn.py:252 ../errordialogs.py:56 ../errordialogs.py:70 -+msgid "CUPS server error" -+msgstr "Fel i CUPS-server" -+ -+#: ../authconn.py:261 ../errordialogs.py:57 -+#: ../troubleshoot/PrintTestPage.py:417 - #, python-format - msgid "There was an error during the CUPS operation: '%s'." - msgstr "Det inträffade ett fel vid CUPS-operationen \"%s\"." - --#: ../authconn.py:258 -+#: ../authconn.py:264 - msgid "Retry" - msgstr "Försök igen" - --#: ../authconn.py:379 ../authconn.py:381 ../errordialogs.py:65 ../pysmb.py:75 -+#: ../authconn.py:385 ../authconn.py:387 ../errordialogs.py:65 ../pysmb.py:75 - #: ../pysmb.py:77 - msgid "Not authorized" - msgstr "Inte behörig" - --#: ../authconn.py:382 ../pysmb.py:78 -+#: ../authconn.py:388 ../pysmb.py:78 - msgid "The password may be incorrect." - msgstr "Lösenordet kan vara felaktigt." - --#: ../authconn.py:400 -+#: ../authconn.py:407 - #, python-format - msgid "Authentication (%s)" - msgstr "Autentisering (%s)" - --#: ../errordialogs.py:56 ../errordialogs.py:70 --msgid "CUPS server error" --msgstr "Fel i CUPS-server" -- - #: ../errordialogs.py:66 - msgid "" - "The password may be incorrect, or the server may be configured to deny " -@@ -139,7 +148,7 @@ msgstr "Uppgradering krävs" - msgid "Server error" - msgstr "Serverfel" - --#: ../errordialogs.py:82 ../system-config-printer.py:1219 -+#: ../errordialogs.py:82 ../system-config-printer.py:1223 - msgid "Not connected" - msgstr "Inte ansluten" - -@@ -161,7 +170,7 @@ msgstr "_Ny grupp" - msgid "_New Group from Selection" - msgstr "_Ny grupp från markering" - --#: ../GroupsPane.py:98 ../system-config-printer.py:393 -+#: ../GroupsPane.py:98 ../system-config-printer.py:397 - msgid "_Rename" - msgstr "_Byt namn" - -@@ -228,7 +237,7 @@ msgid "Document" - msgstr "Dokument" - - #: ../jobviewer.py:212 ../my-default-printer.py:153 --#: ../system-config-printer.py:366 ../system-config-printer.py:1367 -+#: ../system-config-printer.py:370 ../system-config-printer.py:1371 - #: ../troubleshoot/PrintTestPage.py:84 - msgid "Printer" - msgstr "Skrivare" -@@ -265,8 +274,8 @@ msgstr "Dokumentets utskriftsstatus (%s) - - #: ../jobviewer.py:386 ../jobviewer.py:451 ../jobviewer.py:452 - #: ../jobviewer.py:492 ../jobviewer.py:600 ../jobviewer.py:727 --#: ../jobviewer.py:1196 ../jobviewer.py:1222 ../system-config-printer.py:2546 --#: ../glade/NewPrinterWindow.glade.h:106 -+#: ../jobviewer.py:1196 ../jobviewer.py:1222 ../system-config-printer.py:2556 -+#: ../glade/NewPrinterWindow.glade.h:105 - #: ../troubleshoot/ChooseNetworkPrinter.py:101 - #: ../troubleshoot/ChooseNetworkPrinter.py:102 - #: ../troubleshoot/ChooseNetworkPrinter.py:105 -@@ -354,12 +363,12 @@ msgstr "Hålls kvar till helg" - msgid "Pending" - msgstr "Väntar" - --#: ../jobviewer.py:591 ../system-config-printer.py:186 -+#: ../jobviewer.py:591 ../system-config-printer.py:190 - #: ../troubleshoot/PrintTestPage.py:43 - msgid "Processing" - msgstr "Behandlar" - --#: ../jobviewer.py:592 ../system-config-printer.py:188 -+#: ../jobviewer.py:592 ../system-config-printer.py:192 - #: ../troubleshoot/PrintTestPage.py:44 - msgid "Stopped" - msgstr "Stoppad" -@@ -472,8 +481,8 @@ msgstr "_Använd systemstandarden" - msgid "_Set Default" - msgstr "_Ställ in som standard" - --#: ../my-default-printer.py:158 ../system-config-printer.py:423 --#: ../system-config-printer.py:3660 ../troubleshoot/ChooseNetworkPrinter.py:37 -+#: ../my-default-printer.py:158 ../system-config-printer.py:427 -+#: ../system-config-printer.py:3675 ../troubleshoot/ChooseNetworkPrinter.py:37 - #: ../troubleshoot/ChoosePrinter.py:38 - msgid "Location" - msgstr "Placering" -@@ -502,7 +511,7 @@ msgstr "Standarduppförande" - msgid "Authenticated" - msgstr "Autentiserad" - --#: ../ppdippstr.py:50 ../system-config-printer.py:6259 -+#: ../ppdippstr.py:50 ../system-config-printer.py:6207 - msgid "None" - msgstr "Ingen" - -@@ -715,124 +724,124 @@ msgstr "600 dpi, färg, svart + färgpat - msgid "1200 dpi, photo, black + color cartridge, photo paper" - msgstr "1200 dpi, foto, svart + färgpatron, fotopapper" - --#: ../system-config-printer.py:127 -+#: ../system-config-printer.py:131 - msgid "To do this, select System->Administration->Firewall from the main menu." - msgstr "" - "Välj System->Administration->Brandvägg från huvudmenyn för att göra detta." - --#: ../system-config-printer.py:185 -+#: ../system-config-printer.py:189 - msgid "Idle" - msgstr "Overksam" - --#: ../system-config-printer.py:187 -+#: ../system-config-printer.py:191 - msgid "Busy" - msgstr "Upptagen" - --#: ../system-config-printer.py:372 ../system-config-printer.py:1373 -+#: ../system-config-printer.py:376 ../system-config-printer.py:1377 - msgid "Class" - msgstr "Klass" - --#: ../system-config-printer.py:399 -+#: ../system-config-printer.py:403 - msgid "Set As De_fault" - msgstr "Ange som sta_ndard" - --#: ../system-config-printer.py:403 -+#: ../system-config-printer.py:407 - msgid "_Create class" - msgstr "_Skapa klass" - --#: ../system-config-printer.py:405 -+#: ../system-config-printer.py:409 - msgid "View Print _Queue" - msgstr "Visa utskriftsk_ö" - --#: ../system-config-printer.py:407 -+#: ../system-config-printer.py:411 - msgid "_Add to Group" - msgstr "_Lägg till i grupp" - --#: ../system-config-printer.py:409 -+#: ../system-config-printer.py:413 - msgid "Save Results as _Group" - msgstr "Spara resultat som _grupp" - --#: ../system-config-printer.py:411 -+#: ../system-config-printer.py:415 - msgid "Save Filter as _Search Group" - msgstr "Spara filter som _sökgrupp" - --#: ../system-config-printer.py:415 -+#: ../system-config-printer.py:419 - msgid "E_nabled" - msgstr "_Aktiverad" - --#: ../system-config-printer.py:417 -+#: ../system-config-printer.py:421 - msgid "_Shared" - msgstr "_Utdelad" - --#: ../system-config-printer.py:421 ../troubleshoot/ChooseNetworkPrinter.py:35 -+#: ../system-config-printer.py:425 ../troubleshoot/ChooseNetworkPrinter.py:35 - #: ../troubleshoot/ChoosePrinter.py:36 ../troubleshoot/DeviceListed.py:36 - msgid "Name" - msgstr "Namn" - --#: ../system-config-printer.py:422 -+#: ../system-config-printer.py:426 - msgid "Description" - msgstr "Beskrivning" - --#: ../system-config-printer.py:424 -+#: ../system-config-printer.py:428 - msgid "Manufacturer / Model" - msgstr "Tillverkare / Modell" - - #. Printer state reasons list --#: ../system-config-printer.py:499 -+#: ../system-config-printer.py:503 - msgid "Message" - msgstr "Meddelande" - --#: ../system-config-printer.py:534 -+#: ../system-config-printer.py:538 - msgid "Problems?" - msgstr "Problem?" - --#: ../system-config-printer.py:637 ../system-config-printer.py:639 -+#: ../system-config-printer.py:641 ../system-config-printer.py:643 - msgid "Members of this class" - msgstr "Medlemmar av denna klass" - --#: ../system-config-printer.py:638 ../system-config-printer.py:640 -+#: ../system-config-printer.py:642 ../system-config-printer.py:644 - msgid "Others" - msgstr "Övriga" - --#: ../system-config-printer.py:641 -+#: ../system-config-printer.py:645 - msgid "Devices" - msgstr "Enheter" - --#: ../system-config-printer.py:642 -+#: ../system-config-printer.py:646 - msgid "Connections" - msgstr "Anslutningar" - --#: ../system-config-printer.py:643 -+#: ../system-config-printer.py:647 - msgid "Makes" - msgstr "Tillverkare" - --#: ../system-config-printer.py:644 -+#: ../system-config-printer.py:648 - msgid "Models" - msgstr "Modeller" - --#: ../system-config-printer.py:645 -+#: ../system-config-printer.py:649 - msgid "Drivers" - msgstr "Drivrutiner" - --#: ../system-config-printer.py:646 ../glade/NewPrinterWindow.glade.h:55 -+#: ../system-config-printer.py:650 ../glade/NewPrinterWindow.glade.h:54 - msgid "Downloadable Drivers" - msgstr "Hämtningsbara drivrutiner" - --#: ../system-config-printer.py:647 -+#: ../system-config-printer.py:651 - msgid "Users" - msgstr "Användare" - --#: ../system-config-printer.py:682 -+#: ../system-config-printer.py:686 - msgid "Automatic rotation" - msgstr "Automatisk rotering" - --#: ../system-config-printer.py:989 -+#: ../system-config-printer.py:993 - #, python-format - msgid "Printer Properties - '%s' on %s" - msgstr "Skrivaregenskaper - \"%s\" på %s" - - #. The Conflict button was pressed. --#: ../system-config-printer.py:996 -+#: ../system-config-printer.py:1000 - msgid "" - "There are conflicting options.\n" - "Changes can only be applied after\n" -@@ -842,78 +851,78 @@ msgstr "" - "Ändringar kan bara användas efter\n" - "dessa konflikter har lösts." - --#: ../system-config-printer.py:1214 -+#: ../system-config-printer.py:1218 - #, python-format - msgid "Printer configuration - %s" - msgstr "Skrivarkonfiguration - %s" - --#: ../system-config-printer.py:1217 -+#: ../system-config-printer.py:1221 - #, python-format - msgid "Connected to %s" - msgstr "Ansluten till %s" - - #. Update our copy of the printer's settings. --#: ../system-config-printer.py:1257 ../system-config-printer.py:2042 -+#: ../system-config-printer.py:1261 ../system-config-printer.py:2046 - msgid "obtaining queue details" - msgstr "hämtar ködetaljer" - --#: ../system-config-printer.py:1295 -+#: ../system-config-printer.py:1299 - msgid "Remove from Group" - msgstr "Ta bort från grupp" - --#: ../system-config-printer.py:1361 -+#: ../system-config-printer.py:1365 - msgid "Network printer (discovered)" - msgstr "Nätverksskrivare (upptäckt)" - --#: ../system-config-printer.py:1364 -+#: ../system-config-printer.py:1368 - msgid "Network class (discovered)" - msgstr "Nätverksklass (upptäckt)" - --#: ../system-config-printer.py:1370 ../system-config-printer.py:5524 --#: ../system-config-printer.py:5594 ../system-config-printer.py:5596 -+#: ../system-config-printer.py:1374 ../system-config-printer.py:5519 -+#: ../system-config-printer.py:5589 ../system-config-printer.py:5591 - msgid "Fax" - msgstr "Fax" - --#: ../system-config-printer.py:1376 ../system-config-printer.py:1382 -+#: ../system-config-printer.py:1380 ../system-config-printer.py:1386 - #: ../troubleshoot/LocalOrRemote.py:30 - msgid "Network printer" - msgstr "Nätverksskrivare" - --#: ../system-config-printer.py:1379 -+#: ../system-config-printer.py:1383 - msgid "Network print share" - msgstr "Skrivarutdelning på nätverket" - --#: ../system-config-printer.py:1508 ../glade/ConnectingDialog.glade.h:2 -+#: ../system-config-printer.py:1512 ../glade/ConnectingDialog.glade.h:2 - #, no-c-format, python-format - msgid "Opening connection to %s" - msgstr "Öppnar anslutning till %s" - --#: ../system-config-printer.py:1887 -+#: ../system-config-printer.py:1891 - msgid "Installable Options" - msgstr "Installerbara alternativ" - --#: ../system-config-printer.py:1888 -+#: ../system-config-printer.py:1892 - #: ../glade/PrinterPropertiesDialog.glade.h:109 - msgid "Printer Options" - msgstr "Skrivaralternativ" - --#: ../system-config-printer.py:1924 -+#: ../system-config-printer.py:1928 - #, python-format - msgid "modifying class %s" - msgstr "ändrar klassen %s" - --#: ../system-config-printer.py:1926 ../system-config-printer.py:3019 --#: ../system-config-printer.py:3044 ../system-config-printer.py:6547 --#: ../system-config-printer.py:6559 ../system-config-printer.py:6581 -+#: ../system-config-printer.py:1930 ../system-config-printer.py:3037 -+#: ../system-config-printer.py:3062 ../system-config-printer.py:6495 -+#: ../system-config-printer.py:6507 ../system-config-printer.py:6529 - #, python-format - msgid "modifying printer %s" - msgstr "ändrar skrivaren %s" - --#: ../system-config-printer.py:1941 -+#: ../system-config-printer.py:1945 - msgid "This will delete this class!" - msgstr "Detta kommer ta bort denna klass!" - --#: ../system-config-printer.py:1942 -+#: ../system-config-printer.py:1946 - msgid "Proceed anyway?" - msgstr "Fortsätt ändå?" - -@@ -921,44 +930,44 @@ msgstr "Fortsätt ändå?" - #. but we have never fetched the server settings to see whether - #. the server is publishing shared printers. Fetch the settings - #. now so that we can update the "not published" label if necessary. --#: ../system-config-printer.py:2030 ../system-config-printer.py:3203 -+#: ../system-config-printer.py:2034 ../system-config-printer.py:3221 - msgid "fetching server settings" - msgstr "hämtar serverinställningar" - --#: ../system-config-printer.py:2100 -+#: ../system-config-printer.py:2104 - msgid "Set Default Printer" - msgstr "Ange standardskrivare" - --#: ../system-config-printer.py:2102 -+#: ../system-config-printer.py:2106 - msgid "Do you want to set this as the system-wide default printer?" - msgstr "Vill du ange denna skrivare som systemets standard?" - --#: ../system-config-printer.py:2104 -+#: ../system-config-printer.py:2108 - msgid "Set as the _system-wide default printer" - msgstr "Ange som _systemets standardskrivare" - --#: ../system-config-printer.py:2106 -+#: ../system-config-printer.py:2110 - msgid "_Clear my personal default setting" - msgstr "_Töm min personliga standardinställning" - --#: ../system-config-printer.py:2107 -+#: ../system-config-printer.py:2111 - msgid "Set as my _personal default printer" - msgstr "Ange som min _personliga standardskrivare" - --#: ../system-config-printer.py:2112 -+#: ../system-config-printer.py:2116 - msgid "setting default printer" - msgstr "anger standardskrivare" - --#: ../system-config-printer.py:2169 -+#: ../system-config-printer.py:2173 - msgid "printing test page" - msgstr "skriver ut testsida" - --#: ../system-config-printer.py:2182 ../system-config-printer.py:2217 --#: ../system-config-printer.py:5418 -+#: ../system-config-printer.py:2186 ../system-config-printer.py:2221 -+#: ../system-config-printer.py:5413 - msgid "Not possible" - msgstr "Inte möjligt" - --#: ../system-config-printer.py:2183 ../system-config-printer.py:2218 -+#: ../system-config-printer.py:2187 ../system-config-printer.py:2222 - msgid "" - "The remote server did not accept the print job, most likely because the " - "printer is not shared." -@@ -966,20 +975,20 @@ msgstr "" - "Fjärrservern accepterade inte utskriftsjobbet, troligen på grund av att " - "skrivaren inte är utdelad." - --#: ../system-config-printer.py:2195 ../system-config-printer.py:2210 -+#: ../system-config-printer.py:2199 ../system-config-printer.py:2214 - msgid "Submitted" - msgstr "Skickad" - --#: ../system-config-printer.py:2196 -+#: ../system-config-printer.py:2200 - #, python-format - msgid "Test page submitted as job %d" - msgstr "Testsida skickad som jobb %d" - --#: ../system-config-printer.py:2203 -+#: ../system-config-printer.py:2207 - msgid "sending maintenance command" - msgstr "skickar underhållskommando" - --#: ../system-config-printer.py:2211 -+#: ../system-config-printer.py:2215 - #, python-format - msgid "Maintenance command submitted as job %d" - msgstr "Underhållskommando skickat som jobb %d" -@@ -987,65 +996,65 @@ msgstr "Underhållskommando skickat som - #. The underlying cupsGetPPD2() function returned NULL without - #. setting an IPP error, so it'll be something like a failed - #. connection. --#: ../system-config-printer.py:2285 ../system-config-printer.py:2381 -+#: ../system-config-printer.py:2289 ../system-config-printer.py:2385 - msgid "Error" - msgstr "Fel" - --#: ../system-config-printer.py:2286 -+#: ../system-config-printer.py:2290 - msgid "There was a problem connecting to the CUPS server." - msgstr "Det uppstod ett problem vid anslutning till CUPS-servern." - --#: ../system-config-printer.py:2382 -+#: ../system-config-printer.py:2386 - #, python-format - msgid "Option '%s' has value '%s' and cannot be edited." - msgstr "Alternativet \"%s\" har värdet \"%s\" och kan inte redigeras." - --#: ../system-config-printer.py:2466 -+#: ../system-config-printer.py:2476 - msgid "Marker levels are not reported for this printer." - msgstr "Färgnivåer rapporteras inte för denna skrivare." - --#: ../system-config-printer.py:2763 -+#: ../system-config-printer.py:2773 - msgid "Cannot Rename" - msgstr "Kan inte byta namn" - --#: ../system-config-printer.py:2764 -+#: ../system-config-printer.py:2774 - msgid "There are queued jobs." - msgstr "Det finns kölagda jobb." - --#: ../system-config-printer.py:2822 -+#: ../system-config-printer.py:2840 - msgid "renaming printer" - msgstr "byter namn på skrivare" - - #. for classes make sure all members - #. will get added --#: ../system-config-printer.py:2907 -+#: ../system-config-printer.py:2925 - msgid "copying printer" - msgstr "kopierar skrivare" - --#: ../system-config-printer.py:2971 -+#: ../system-config-printer.py:2989 - #, python-format - msgid "Really delete class '%s'?" - msgstr "Verkligen ta bort klassen \"%s\"?" - --#: ../system-config-printer.py:2973 -+#: ../system-config-printer.py:2991 - #, python-format - msgid "Really delete printer '%s'?" - msgstr "Verkligen ta bort skrivaren \"%s\"?" - --#: ../system-config-printer.py:2975 -+#: ../system-config-printer.py:2993 - msgid "Really delete selected destinations?" - msgstr "Verkligen ta bort markerade mål?" - --#: ../system-config-printer.py:2996 -+#: ../system-config-printer.py:3014 - #, python-format - msgid "deleting printer %s" - msgstr "tar bort skrivaren %s" - --#: ../system-config-printer.py:3070 -+#: ../system-config-printer.py:3088 - msgid "Publish Shared Printers" - msgstr "Publicera utdelade skrivare" - --#: ../system-config-printer.py:3071 -+#: ../system-config-printer.py:3089 - msgid "" - "Shared printers are not available to other people unless the 'Publish shared " - "printers' option is enabled in the server settings." -@@ -1054,7 +1063,7 @@ msgstr "" - "alternativet \"Publicera utdelade skrivare\" har aktiverats i " - "serverinställningarna." - --#: ../system-config-printer.py:3264 -+#: ../system-config-printer.py:3282 - msgid "modifying server settings" - msgstr "ändrar serverinställningar" - -@@ -1064,11 +1073,11 @@ msgstr "ändrar serverinställningar" - #. be unblocked. Unfortunately, this is not yet possible - #. (bug #440469). However, we can display a dialog to suggest - #. that now might be a good time to review the firewall settings. --#: ../system-config-printer.py:3289 -+#: ../system-config-printer.py:3307 - msgid "Review Firewall" - msgstr "Granska brandväggen" - --#: ../system-config-printer.py:3290 -+#: ../system-config-printer.py:3308 - msgid "" - "You may need to adjust the firewall to allow network printing to this " - "computer." -@@ -1076,25 +1085,25 @@ msgstr "" - "Du kan behöva justera brandväggen för att tillåta nätverksutskrifter till " - "denna dator." - --#: ../system-config-printer.py:3623 -+#: ../system-config-printer.py:3638 - msgid "Browsing not available (pysmbc not installed)" - msgstr "Bläddring är inte tillgänglig (pysmbc inte installerad)" - - #. SMB list columns --#: ../system-config-printer.py:3629 -+#: ../system-config-printer.py:3644 - msgid "Share" - msgstr "Utdelning" - --#: ../system-config-printer.py:3635 -+#: ../system-config-printer.py:3650 - msgid "Comment" - msgstr "Kommentar" - - #. IPP list columns --#: ../system-config-printer.py:3654 -+#: ../system-config-printer.py:3669 - msgid "Queue" - msgstr "Kö" - --#: ../system-config-printer.py:3668 -+#: ../system-config-printer.py:3683 - msgid "" - "PostScript Printer Description files (*.ppd, *.PPD, *.ppd.gz, *.PPD.gz, *." - "PPD.GZ)" -@@ -1102,61 +1111,61 @@ msgstr "" - "PostScript-skrivarbeskrivningsfiler (*.ppd, *.PPD, *.ppd.gz, *.PPD.gz, *.PPD." - "GZ)" - --#: ../system-config-printer.py:3677 -+#: ../system-config-printer.py:3692 - msgid "All files (*)" - msgstr "Alla filer (*)" - --#: ../system-config-printer.py:3713 ../system-config-printer.py:5970 --#: ../system-config-printer.py:6008 ../applet.py:124 -+#: ../system-config-printer.py:3728 ../system-config-printer.py:5918 -+#: ../system-config-printer.py:5956 ../applet.py:124 - msgid "Search" - msgstr "Sök" - --#: ../system-config-printer.py:3736 ../system-config-printer.py:3760 --#: ../glade/NewPrinterWindow.glade.h:74 -+#: ../system-config-printer.py:3751 ../system-config-printer.py:3775 -+#: ../glade/NewPrinterWindow.glade.h:73 - msgid "New Printer" - msgstr "Ny skrivare" - --#: ../system-config-printer.py:3747 -+#: ../system-config-printer.py:3762 - msgid "New Class" - msgstr "Ny klass" - --#: ../system-config-printer.py:3752 -+#: ../system-config-printer.py:3767 - msgid "Change Device URI" - msgstr "Ändra enhets-URI" - --#: ../system-config-printer.py:3758 -+#: ../system-config-printer.py:3773 - msgid "Change Driver" - msgstr "Ändra drivrutin" - --#: ../system-config-printer.py:3927 ../system-config-printer.py:3993 --#: ../system-config-printer.py:4289 ../system-config-printer.py:4487 --#: ../system-config-printer.py:5772 ../system-config-printer.py:5995 -+#: ../system-config-printer.py:3942 ../system-config-printer.py:4008 -+#: ../system-config-printer.py:4304 ../system-config-printer.py:4502 -+#: ../system-config-printer.py:5762 ../system-config-printer.py:5943 - msgid "Searching" - msgstr "Söker" - --#: ../system-config-printer.py:3928 -+#: ../system-config-printer.py:3943 - msgid "Searching for downloadable drivers" - msgstr "Söker efter drivrutiner som kan hämtas ner" - --#: ../system-config-printer.py:3994 ../system-config-printer.py:4290 -+#: ../system-config-printer.py:4009 ../system-config-printer.py:4305 - msgid "Searching for drivers" - msgstr "Söker efter drivrutiner" - --#: ../system-config-printer.py:4488 ../system-config-printer.py:5773 -+#: ../system-config-printer.py:4503 ../system-config-printer.py:5763 - msgid "Searching for printers" - msgstr "Söker efter skrivare" - --#: ../system-config-printer.py:4497 -+#: ../system-config-printer.py:4512 - msgid "fetching device list" - msgstr "hämtar enhetslista" - - #. Tell the user why he needs the plugin --#: ../system-config-printer.py:4579 -+#: ../system-config-printer.py:4594 - msgid "For this printer a proprietary driver plugin from HP is available.\n" - msgstr "" - "En proprietär drivrutinsmodul från HP finns tillgänglig för denna skrivare.\n" - --#: ../system-config-printer.py:4582 -+#: ../system-config-printer.py:4597 - msgid "" - "The installation of the plugin is required for your printer to work.\n" - "\n" -@@ -1164,7 +1173,7 @@ msgstr "" - "Installationen av insticksmodulen krävs för att din skrivare ska fungera.\n" - "\n" - --#: ../system-config-printer.py:4585 -+#: ../system-config-printer.py:4600 - msgid "" - "Installing the plugin is optional, it completes or enhances the " - "functionality\n" -@@ -1177,110 +1186,106 @@ msgstr "" - "insticksmodulen.\n" - "\n" - --#: ../system-config-printer.py:4589 -+#: ../system-config-printer.py:4604 - msgid "The plugin provides the following features:\n" - msgstr "Insticksmodulen tillhandahåller följande funktioner:\n" - --#: ../system-config-printer.py:4592 -+#: ../system-config-printer.py:4607 - msgid " - Printing support\n" - msgstr " - Utskriftsstöd\n" - --#: ../system-config-printer.py:4595 -+#: ../system-config-printer.py:4610 - msgid " - Faster printing\n" - msgstr " - Snabbare utskrifter\n" - --#: ../system-config-printer.py:4598 -+#: ../system-config-printer.py:4613 - msgid " - Better printout quality\n" - msgstr " - Bättre utskriftskvalitet\n" - --#: ../system-config-printer.py:4601 -+#: ../system-config-printer.py:4616 - msgid " - Extra printing features\n" - msgstr " - Extra utskriftsfunktioner\n" - --#: ../system-config-printer.py:4604 -+#: ../system-config-printer.py:4619 - msgid " - Scanning support\n" - msgstr " - Stöd för bildinläsning\n" - --#: ../system-config-printer.py:4607 -+#: ../system-config-printer.py:4622 - msgid " - Faster scanning\n" - msgstr " - Snabbare bildinläsning\n" - --#: ../system-config-printer.py:4610 -+#: ../system-config-printer.py:4625 - msgid " - Better scanning image quality\n" - msgstr " - Bättre kvalitet för bildinläsning\n" - --#: ../system-config-printer.py:4613 -+#: ../system-config-printer.py:4628 - msgid " - Faxing support\n" - msgstr " - Faxstöd\n" - --#: ../system-config-printer.py:4616 -+#: ../system-config-printer.py:4631 - msgid " - Extra fax features\n" - msgstr " - Extrafunktioner för fax\n" - --#: ../system-config-printer.py:4619 -+#: ../system-config-printer.py:4634 - msgid " - Better Input/Output support\n" - msgstr " - Bättre stöd för indata/utdata\n" - --#: ../system-config-printer.py:4622 -+#: ../system-config-printer.py:4637 - msgid " - Extra user interface features\n" - msgstr " - Extrafunktioner för användargränssnitt\n" - --#: ../system-config-printer.py:4625 -+#: ../system-config-printer.py:4640 - msgid " - Other extra features\n" - msgstr " - Andra extrafunktioner\n" - --#: ../system-config-printer.py:4630 -+#: ../system-config-printer.py:4645 - msgid "Install plugin" - msgstr "Installera insticksmodul" - --#: ../system-config-printer.py:4631 -+#: ../system-config-printer.py:4646 - msgid "Do not set up printer" - msgstr "Konfigurera inte skrivaren" - --#: ../system-config-printer.py:4632 -+#: ../system-config-printer.py:4647 - msgid "Set up without plugin" - msgstr "Konfigurera utan insticksmodul" - --#: ../system-config-printer.py:4634 ../troubleshoot/PrintTestPage.py:118 -+#: ../system-config-printer.py:4649 ../troubleshoot/PrintTestPage.py:118 - msgid "Yes" - msgstr "Ja" - --#: ../system-config-printer.py:4635 ../troubleshoot/PrintTestPage.py:119 -+#: ../system-config-printer.py:4650 ../troubleshoot/PrintTestPage.py:119 - msgid "No" - msgstr "Nej" - --#: ../system-config-printer.py:4809 ../system-config-printer.py:4813 -+#: ../system-config-printer.py:4824 ../system-config-printer.py:4828 - msgid " (Current)" - msgstr " (Aktuell)" - --#: ../system-config-printer.py:4845 --msgid "HP Printer (HPLIP)" --msgstr "HP-skrivare (HPLIP)" -- --#: ../system-config-printer.py:4886 -+#: ../system-config-printer.py:4881 - msgid "Other" - msgstr "Övriga" - - #. device-info - #. PhysicalDevice obj - #. Separator? --#: ../system-config-printer.py:4902 -+#: ../system-config-printer.py:4897 - msgid "Network Printer" - msgstr "Nätverksskrivare" - --#: ../system-config-printer.py:4906 -+#: ../system-config-printer.py:4901 - msgid "Find Network Printer" - msgstr "Sök nätverksskrivare" - --#: ../system-config-printer.py:4979 ../system-config-printer.py:5376 -+#: ../system-config-printer.py:4974 ../system-config-printer.py:5371 - msgid "Scanning..." - msgstr "Söker..." - --#: ../system-config-printer.py:5034 ../system-config-printer.py:5798 -+#: ../system-config-printer.py:5029 - msgid "No Print Shares" - msgstr "Inga skrivarutdelningar" - --#: ../system-config-printer.py:5035 -+#: ../system-config-printer.py:5030 - msgid "" - "There were no print shares found. Please check that the Samba service is " - "marked as trusted in your firewall configuration." -@@ -1288,32 +1293,32 @@ msgstr "" - "Det gick inte att hitta några skrivarutdelningar. Kontrollera att Samba-" - "tjänsten är markerad som pålitlig i din brandväggskonfiguration." - --#: ../system-config-printer.py:5296 ../system-config-printer.py:5357 -+#: ../system-config-printer.py:5291 ../system-config-printer.py:5352 - msgid "Print Share Verified" - msgstr "Skrivarutdelning validerad" - --#: ../system-config-printer.py:5297 ../system-config-printer.py:5358 -+#: ../system-config-printer.py:5292 ../system-config-printer.py:5353 - msgid "This print share is accessible." - msgstr "Den här utdelade skrivaren är tillgänglig." - --#: ../system-config-printer.py:5302 ../system-config-printer.py:5362 -+#: ../system-config-printer.py:5297 ../system-config-printer.py:5357 - msgid "This print share is not accessible." - msgstr "Den utdelade skrivaren är inte åtkomlig." - --#: ../system-config-printer.py:5305 -+#: ../system-config-printer.py:5300 - msgid "Print Share Inaccessible" - msgstr "Skrivarutdelning inte tillgänglig" - --#: ../system-config-printer.py:5361 -+#: ../system-config-printer.py:5356 - msgid "Inaccessible" - msgstr "Oåtkomlig" - --#: ../system-config-printer.py:5419 -+#: ../system-config-printer.py:5414 - #, python-format - msgid "It is not possible to obtain a list of queues from '%s'." - msgstr "Det var inte möjligt att hämta en lista över köer från \"%s\"." - --#: ../system-config-printer.py:5421 -+#: ../system-config-printer.py:5416 - msgid "" - "Obtaining a list of queues is a CUPS extension to IPP. Network printers do " - "not support it." -@@ -1321,69 +1326,69 @@ msgstr "" - "Hämtning av en lista över köer är ett CUPS-tillägg till IPP. " - "Nätverksskrivare har inte stöd för detta." - --#: ../system-config-printer.py:5424 -+#: ../system-config-printer.py:5419 - msgid "No queues" - msgstr "Inga köer" - --#: ../system-config-printer.py:5425 -+#: ../system-config-printer.py:5420 - msgid "There are no queues available." - msgstr "Det finns inga köer tillgängliga." - --#: ../system-config-printer.py:5516 -+#: ../system-config-printer.py:5511 - msgid "Parallel Port" - msgstr "Parallellport" - --#: ../system-config-printer.py:5518 -+#: ../system-config-printer.py:5513 - msgid "Serial Port" - msgstr "Serieport" - --#: ../system-config-printer.py:5520 -+#: ../system-config-printer.py:5515 - msgid "USB" - msgstr "USB" - --#: ../system-config-printer.py:5522 ../system-config-printer.py:5525 -+#: ../system-config-printer.py:5517 ../system-config-printer.py:5520 - msgid "HP Linux Imaging and Printing (HPLIP)" - msgstr "HP Linux Imaging and Printing (HPLIP)" - --#: ../system-config-printer.py:5527 -+#: ../system-config-printer.py:5522 - msgid "Hardware Abstraction Layer (HAL)" - msgstr "Hardware Abstraction Layer (HAL)" - --#: ../system-config-printer.py:5529 -+#: ../system-config-printer.py:5524 - msgid "AppSocket/HP JetDirect" - msgstr "AppSocket/HP JetDirect" - --#: ../system-config-printer.py:5538 -+#: ../system-config-printer.py:5533 - #, python-format - msgid "LPD/LPR queue '%s'" - msgstr "" - --#: ../system-config-printer.py:5540 -+#: ../system-config-printer.py:5535 - #, fuzzy - msgid "LPD/LPR queue" - msgstr "LPD/LPR" - --#: ../system-config-printer.py:5543 -+#: ../system-config-printer.py:5538 - msgid "Windows Printer via SAMBA" - msgstr "Windows-skrivare via SAMBA" - --#: ../system-config-printer.py:5545 ../glade/NewPrinterWindow.glade.h:66 -+#: ../system-config-printer.py:5540 ../glade/NewPrinterWindow.glade.h:65 - msgid "IPP" - msgstr "IPP" - --#: ../system-config-printer.py:5547 -+#: ../system-config-printer.py:5542 - msgid "HTTP" - msgstr "HTTP" - --#: ../system-config-printer.py:5632 -+#: ../system-config-printer.py:5624 - msgid "A printer connected to the parallel port." - msgstr "En skrivare ansluten till parallellporten." - --#: ../system-config-printer.py:5634 -+#: ../system-config-printer.py:5626 - msgid "A printer connected to a USB port." - msgstr "En skrivare ansluten till en USB-port." - --#: ../system-config-printer.py:5636 -+#: ../system-config-printer.py:5628 - msgid "" - "HPLIP software driving a printer, or the printer function of a multi-" - "function device." -@@ -1391,7 +1396,7 @@ msgstr "" - "HPLIP-programvara driver en skrivare eller skrivfunktionen för en " - "multifunktionsenhet." - --#: ../system-config-printer.py:5639 -+#: ../system-config-printer.py:5631 - msgid "" - "HPLIP software driving a fax machine, or the fax function of a multi-" - "function device." -@@ -1399,47 +1404,43 @@ msgstr "" - "HPLIP-programvara en fax-maskin eller faxfunktionen för en " - "multifunktionsenhet." - --#: ../system-config-printer.py:5642 -+#: ../system-config-printer.py:5634 - msgid "Local printer detected by the Hardware Abstraction Layer (HAL)." - msgstr "Lokal skrivare upptäckt av Hardware Abstraction Layer (HAL)." - --#: ../system-config-printer.py:5799 --msgid "HPLIP cannot find the device." --msgstr "HPLIP kan inte hitta enheten." -- --#: ../system-config-printer.py:5881 -+#: ../system-config-printer.py:5831 - msgid "No printer was found at that address." - msgstr "Ingen skrivare hittades på den adressen." - --#: ../system-config-printer.py:6020 -+#: ../system-config-printer.py:5968 - msgid "-- Select from search results --" - msgstr "-- Välj från sökresultatet --" - --#: ../system-config-printer.py:6022 -+#: ../system-config-printer.py:5970 - msgid "-- No matches found --" - msgstr "-- Inga sökträffar hittades --" - --#: ../system-config-printer.py:6203 -+#: ../system-config-printer.py:6151 - msgid " (recommended)" - msgstr " (rekommenderad)" - --#: ../system-config-printer.py:6217 -+#: ../system-config-printer.py:6165 - msgid "This PPD is generated by foomatic." - msgstr "Denna PPD är genererad av foomatic." - --#: ../system-config-printer.py:6241 -+#: ../system-config-printer.py:6189 - msgid "OpenPrinting" - msgstr "OpenPrinting" - --#: ../system-config-printer.py:6252 -+#: ../system-config-printer.py:6200 - msgid "Distributable" - msgstr "Distribuerbar" - --#: ../system-config-printer.py:6293 -+#: ../system-config-printer.py:6241 - msgid ", " - msgstr ", " - --#: ../system-config-printer.py:6298 -+#: ../system-config-printer.py:6246 - #, python-format - msgid "" - "\n" -@@ -1448,20 +1449,20 @@ msgstr "" - "\n" - "(%s)" - --#: ../system-config-printer.py:6303 -+#: ../system-config-printer.py:6251 - msgid "No support contacts known" - msgstr "Inga stödkontakter kända" - --#: ../system-config-printer.py:6307 ../system-config-printer.py:6320 -+#: ../system-config-printer.py:6255 ../system-config-printer.py:6268 - msgid "Not specified." - msgstr "Inte angiven." - - #. Foomatic database problem of some sort. --#: ../system-config-printer.py:6360 -+#: ../system-config-printer.py:6308 - msgid "Database error" - msgstr "Databasfel" - --#: ../system-config-printer.py:6361 -+#: ../system-config-printer.py:6309 - #, python-format - msgid "The '%s' driver cannot be used with printer '%s %s'." - msgstr "Drivrutinen \"%s\" kan inte användas med skrivaren \"%s %s\"." -@@ -1469,62 +1470,62 @@ msgstr "Drivrutinen \"%s\" kan inte anv - #. This printer references some XML that is not - #. installed by default. Point the user at the - #. package they need to install. --#: ../system-config-printer.py:6371 -+#: ../system-config-printer.py:6319 - #, python-format - msgid "You will need to install the '%s' package in order to use this driver." - msgstr "Du behöver installera paketet \"%s\" för att använda denna drivrutin." - - #. This error came from trying to open the PPD file. --#: ../system-config-printer.py:6378 -+#: ../system-config-printer.py:6326 - msgid "PPD error" - msgstr "PPD-fel" - --#: ../system-config-printer.py:6380 -+#: ../system-config-printer.py:6328 - msgid "Failed to read PPD file. Possible reason follows:" - msgstr "Misslyckades att läsa PPD-filen. Möjliga anledningar är:" - - #. Failed to get PPD downloaded from OpenPrinting XXX --#: ../system-config-printer.py:6397 -+#: ../system-config-printer.py:6345 - msgid "Downloadable drivers" - msgstr "Hämtningsbara drivrutiner" - --#: ../system-config-printer.py:6398 -+#: ../system-config-printer.py:6346 - msgid "Failed to download PPD." - msgstr "Misslyckades med att hämta PPD." - --#: ../system-config-printer.py:6405 -+#: ../system-config-printer.py:6353 - msgid "fetching PPD" - msgstr "hämtar PPD" - --#: ../system-config-printer.py:6434 ../system-config-printer.py:6472 -+#: ../system-config-printer.py:6382 ../system-config-printer.py:6420 - msgid "No Installable Options" - msgstr "Inga installerbara alternativ" - --#: ../system-config-printer.py:6520 -+#: ../system-config-printer.py:6468 - #, python-format - msgid "adding printer %s" - msgstr "lägger till skrivaren %s" - --#: ../system-config-printer.py:6669 -+#: ../system-config-printer.py:6617 - msgid "Would you like to print a test page?" - msgstr "Vill du skriva ut en testsida?" - --#: ../system-config-printer.py:6722 -+#: ../system-config-printer.py:6670 - msgid "Install driver" - msgstr "Installera drivrutin" - --#: ../system-config-printer.py:6723 ../troubleshoot/CheckPPDSanity.py:131 -+#: ../system-config-printer.py:6671 ../troubleshoot/CheckPPDSanity.py:131 - #, python-format - msgid "Printer '%s' requires the %s package but it is not currently installed." - msgstr "" - "Skrivaren \"%s\" kräver paketet %s men det är inte installerat för " - "närvarande." - --#: ../system-config-printer.py:6739 -+#: ../system-config-printer.py:6687 - msgid "Missing driver" - msgstr "Saknad drivrutin" - --#: ../system-config-printer.py:6740 -+#: ../system-config-printer.py:6688 - #, python-format - msgid "" - "Printer '%s' requires the '%s' program but it is not currently installed. " -@@ -1660,106 +1661,102 @@ msgid "Enter device URI" - msgstr "Ange enhets-URI" - - #: ../glade/NewPrinterWindow.glade.h:5 --msgid "HP Printer (HPLIP) via network" --msgstr "HP-skrivare (HPLIP) via nätverk" -- --#: ../glade/NewPrinterWindow.glade.h:6 - msgid "IPP Printer" - msgstr "IPP-skrivare" - --#: ../glade/NewPrinterWindow.glade.h:7 -+#: ../glade/NewPrinterWindow.glade.h:6 - msgid "License Terms" - msgstr "Licensvillkor" - --#: ../glade/NewPrinterWindow.glade.h:8 -+#: ../glade/NewPrinterWindow.glade.h:7 - msgid "Location of the LPD network printer" - msgstr "Placering av LPD-nätverksskrivaren" - --#: ../glade/NewPrinterWindow.glade.h:9 -+#: ../glade/NewPrinterWindow.glade.h:8 - msgid "Location of the network printer" - msgstr "Placering av nätverksskrivaren" - --#: ../glade/NewPrinterWindow.glade.h:10 -+#: ../glade/NewPrinterWindow.glade.h:9 - msgid "Location (optional)" - msgstr "Placering (valfritt)" - --#: ../glade/NewPrinterWindow.glade.h:11 -+#: ../glade/NewPrinterWindow.glade.h:10 - msgid "Network Printer" - msgstr "Nätverksskrivare" - --#: ../glade/NewPrinterWindow.glade.h:12 -+#: ../glade/NewPrinterWindow.glade.h:11 - msgid "Note" - msgstr "Anteckning" - --#: ../glade/NewPrinterWindow.glade.h:13 -+#: ../glade/NewPrinterWindow.glade.h:12 - msgid "Output Quality" - msgstr "Utskriftskvalitet" - --#: ../glade/NewPrinterWindow.glade.h:14 -+#: ../glade/NewPrinterWindow.glade.h:13 - msgid "Printer Name" - msgstr "Skrivarnamn" - --#: ../glade/NewPrinterWindow.glade.h:15 -+#: ../glade/NewPrinterWindow.glade.h:14 - msgid "SMB Printer" - msgstr "SMB-skrivare" - --#: ../glade/NewPrinterWindow.glade.h:16 -+#: ../glade/NewPrinterWindow.glade.h:15 - msgid "Select Driver" - msgstr "Välj drivrutin" - --#: ../glade/NewPrinterWindow.glade.h:17 -+#: ../glade/NewPrinterWindow.glade.h:16 - msgid "Settings of the serial port" - msgstr "Inställningar för serieporten" - --#: ../glade/NewPrinterWindow.glade.h:18 -+#: ../glade/NewPrinterWindow.glade.h:17 - msgid "smb://[workgroup/]server[:port]/printer" - msgstr "smb://[arbetsgrupp/]server[:port]/skrivare" - --#: ../glade/NewPrinterWindow.glade.h:19 -+#: ../glade/NewPrinterWindow.glade.h:18 - msgid "Choose Class Members" - msgstr "Välj klassmedlemmar" - --#: ../glade/NewPrinterWindow.glade.h:20 -+#: ../glade/NewPrinterWindow.glade.h:19 - msgid "Choose Driver" - msgstr "Välj drivrutin" - --#: ../glade/NewPrinterWindow.glade.h:21 -+#: ../glade/NewPrinterWindow.glade.h:20 - msgid "Describe Printer" - msgstr "Beskriv skrivaren" - --#: ../glade/NewPrinterWindow.glade.h:22 -+#: ../glade/NewPrinterWindow.glade.h:21 - msgid "Existing Settings" - msgstr "Befintliga inställningar" - --#: ../glade/NewPrinterWindow.glade.h:23 -+#: ../glade/NewPrinterWindow.glade.h:22 - msgid "Installable Options" - msgstr "Installerbara alternativ" - --#: ../glade/NewPrinterWindow.glade.h:24 -+#: ../glade/NewPrinterWindow.glade.h:23 - msgid "Select Device" - msgstr "Välj enhet" - --#: ../glade/NewPrinterWindow.glade.h:25 -+#: ../glade/NewPrinterWindow.glade.h:24 - msgid "Baud Rate" - msgstr "Baudhastighet" - --#: ../glade/NewPrinterWindow.glade.h:26 -+#: ../glade/NewPrinterWindow.glade.h:25 - msgid "Browse..." - msgstr "Bläddra" - --#: ../glade/NewPrinterWindow.glade.h:27 -+#: ../glade/NewPrinterWindow.glade.h:26 - msgid "Comments..." - msgstr "Kommentarer..." - --#: ../glade/NewPrinterWindow.glade.h:28 -+#: ../glade/NewPrinterWindow.glade.h:27 - msgid "Connection" - msgstr "Anslutning" - --#: ../glade/NewPrinterWindow.glade.h:29 -+#: ../glade/NewPrinterWindow.glade.h:28 - msgid "Data Bits" - msgstr "Databitar" - --#: ../glade/NewPrinterWindow.glade.h:30 -+#: ../glade/NewPrinterWindow.glade.h:29 - msgid "" - "Default\n" - "1200\n" -@@ -1781,7 +1778,7 @@ msgstr "" - "57600\n" - "115200" - --#: ../glade/NewPrinterWindow.glade.h:39 -+#: ../glade/NewPrinterWindow.glade.h:38 - msgid "" - "Default\n" - "8\n" -@@ -1791,7 +1788,7 @@ msgstr "" - "8\n" - "7" - --#: ../glade/NewPrinterWindow.glade.h:42 -+#: ../glade/NewPrinterWindow.glade.h:41 - msgid "" - "Default\n" - "None\n" -@@ -1803,7 +1800,7 @@ msgstr "" - "Udda\n" - "Jämn" - --#: ../glade/NewPrinterWindow.glade.h:46 -+#: ../glade/NewPrinterWindow.glade.h:45 - msgid "" - "Default\n" - "None\n" -@@ -1817,115 +1814,115 @@ msgstr "" - "RTS/CTS (maskinvara)\n" - "DTR/DSR (maskinvara)" - --#: ../glade/NewPrinterWindow.glade.h:51 -+#: ../glade/NewPrinterWindow.glade.h:50 - #: ../glade/PrinterPropertiesDialog.glade.h:35 - msgid "Description:" - msgstr "Beskrivning:" - --#: ../glade/NewPrinterWindow.glade.h:52 ../troubleshoot/DeviceListed.py:40 -+#: ../glade/NewPrinterWindow.glade.h:51 ../troubleshoot/DeviceListed.py:40 - msgid "Device URI" - msgstr "Enhets-URI" - --#: ../glade/NewPrinterWindow.glade.h:53 -+#: ../glade/NewPrinterWindow.glade.h:52 - msgid "Device description." - msgstr "Enhetsbeskrivning." - --#: ../glade/NewPrinterWindow.glade.h:54 -+#: ../glade/NewPrinterWindow.glade.h:53 - msgid "DirectJet" - msgstr "DirectJet" - --#: ../glade/NewPrinterWindow.glade.h:56 -+#: ../glade/NewPrinterWindow.glade.h:55 - msgid "Driver details" - msgstr "Detaljer om drivrutin" - --#: ../glade/NewPrinterWindow.glade.h:57 -+#: ../glade/NewPrinterWindow.glade.h:56 - msgid "Empty" - msgstr "Tom" - --#: ../glade/NewPrinterWindow.glade.h:58 -+#: ../glade/NewPrinterWindow.glade.h:57 - msgid "Find _Queue..." - msgstr "Sök k_ö..." - --#: ../glade/NewPrinterWindow.glade.h:59 -+#: ../glade/NewPrinterWindow.glade.h:58 - msgid "Flow Control" - msgstr "Flödeskontroll" - --#: ../glade/NewPrinterWindow.glade.h:60 -+#: ../glade/NewPrinterWindow.glade.h:59 - msgid "" - "For the printer you have selected there are drivers available for download." - msgstr "" - "Det finns drivrutiner tillgängliga för hämtning för den skrivare som du har " - "valt." - --#: ../glade/NewPrinterWindow.glade.h:61 -+#: ../glade/NewPrinterWindow.glade.h:60 - msgid "Free software" - msgstr "Fri programvara" - --#: ../glade/NewPrinterWindow.glade.h:62 -+#: ../glade/NewPrinterWindow.glade.h:61 - msgid "Graphics:" - msgstr "Grafik:" - --#: ../glade/NewPrinterWindow.glade.h:63 -+#: ../glade/NewPrinterWindow.glade.h:62 - msgid "Host:" - msgstr "Värd:" - --#: ../glade/NewPrinterWindow.glade.h:64 -+#: ../glade/NewPrinterWindow.glade.h:63 - msgid "Human-readable description such as \"HP LaserJet with Duplexer\"" - msgstr "Läsbar beskrivning som t.ex. \"HP LaserJet med Duplexer\"" - --#: ../glade/NewPrinterWindow.glade.h:65 -+#: ../glade/NewPrinterWindow.glade.h:64 - msgid "Human-readable location such as \"Lab 1\"" - msgstr "Läsbar placering, som t.ex. \"Labb 1\"" - --#: ../glade/NewPrinterWindow.glade.h:67 -+#: ../glade/NewPrinterWindow.glade.h:66 - msgid "LPD" - msgstr "LPD" - --#: ../glade/NewPrinterWindow.glade.h:68 -+#: ../glade/NewPrinterWindow.glade.h:67 - msgid "License:" - msgstr "Licens:" - --#: ../glade/NewPrinterWindow.glade.h:69 -+#: ../glade/NewPrinterWindow.glade.h:68 - msgid "Line art:" - msgstr "Radkonst:" - --#: ../glade/NewPrinterWindow.glade.h:70 -+#: ../glade/NewPrinterWindow.glade.h:69 - msgid "Local Driver" - msgstr "Lokal drivrutin" - --#: ../glade/NewPrinterWindow.glade.h:71 -+#: ../glade/NewPrinterWindow.glade.h:70 - msgid "Make and model:" - msgstr "Märke och modell:" - --#: ../glade/NewPrinterWindow.glade.h:72 -+#: ../glade/NewPrinterWindow.glade.h:71 - msgid "Manufacturer" - msgstr "Tillverkare" - --#: ../glade/NewPrinterWindow.glade.h:73 -+#: ../glade/NewPrinterWindow.glade.h:72 - msgid "Network" - msgstr "Nätverk" - --#: ../glade/NewPrinterWindow.glade.h:75 -+#: ../glade/NewPrinterWindow.glade.h:74 - msgid "No, I do not accept this license" - msgstr "Nej, jag godkänner inte denna licens" - --#: ../glade/NewPrinterWindow.glade.h:76 -+#: ../glade/NewPrinterWindow.glade.h:75 - msgid "Parity" - msgstr "Paritet" - --#: ../glade/NewPrinterWindow.glade.h:78 -+#: ../glade/NewPrinterWindow.glade.h:77 - msgid "Patented algorithms" - msgstr "Patenterade algoritmer" - --#: ../glade/NewPrinterWindow.glade.h:79 -+#: ../glade/NewPrinterWindow.glade.h:78 - msgid "Photo:" - msgstr "Foto:" - --#: ../glade/NewPrinterWindow.glade.h:80 -+#: ../glade/NewPrinterWindow.glade.h:79 - msgid "Port number:" - msgstr "Portnummer:" - --#: ../glade/NewPrinterWindow.glade.h:81 -+#: ../glade/NewPrinterWindow.glade.h:80 - msgid "" - "PostScript Printer Description (PPD) files can often be found on the driver " - "disk that comes with the printer. For PostScript printers they are often " -@@ -1935,76 +1932,76 @@ msgstr "" - "drivrutinsskivan som levereras med skrivaren. För PostScript-skrivare är de " - "ofta en del av Windows®-drivrutinen." - --#: ../glade/NewPrinterWindow.glade.h:82 -+#: ../glade/NewPrinterWindow.glade.h:81 - msgid "Printer model:" - msgstr "Skrivarmodell:" - --#: ../glade/NewPrinterWindow.glade.h:83 -+#: ../glade/NewPrinterWindow.glade.h:82 - msgid "Probe" - msgstr "Sök av" - --#: ../glade/NewPrinterWindow.glade.h:84 -+#: ../glade/NewPrinterWindow.glade.h:83 - msgid "Prompt user if authentication is required" - msgstr "Fråga användaren om autentisering krävs" - --#: ../glade/NewPrinterWindow.glade.h:85 -+#: ../glade/NewPrinterWindow.glade.h:84 - msgid "Provide PPD file" - msgstr "Tillhandahåll PPD-fil" - --#: ../glade/NewPrinterWindow.glade.h:86 -+#: ../glade/NewPrinterWindow.glade.h:85 - msgid "Queue:" - msgstr "Kö:" - --#: ../glade/NewPrinterWindow.glade.h:87 -+#: ../glade/NewPrinterWindow.glade.h:86 - msgid "SCSI" - msgstr "SCSI" - --#: ../glade/NewPrinterWindow.glade.h:88 -+#: ../glade/NewPrinterWindow.glade.h:87 - msgid "SMB" - msgstr "SMB" - --#: ../glade/NewPrinterWindow.glade.h:89 -+#: ../glade/NewPrinterWindow.glade.h:88 - msgid "Search for a printer driver to download" - msgstr "Sök efter en skrivardrivrutin att hämta ner" - --#: ../glade/NewPrinterWindow.glade.h:90 -+#: ../glade/NewPrinterWindow.glade.h:89 - #, fuzzy - msgid "Searching..." - msgstr "Söker" - --#: ../glade/NewPrinterWindow.glade.h:91 -+#: ../glade/NewPrinterWindow.glade.h:90 - msgid "Select A File" - msgstr "Välj en fil" - --#: ../glade/NewPrinterWindow.glade.h:92 -+#: ../glade/NewPrinterWindow.glade.h:91 - msgid "Select printer from database" - msgstr "Välj skrivare från databasen" - --#: ../glade/NewPrinterWindow.glade.h:93 -+#: ../glade/NewPrinterWindow.glade.h:92 - msgid "Serial" - msgstr "Seriell" - --#: ../glade/NewPrinterWindow.glade.h:94 -+#: ../glade/NewPrinterWindow.glade.h:93 - msgid "Set authentication details now" - msgstr "Ange autentiseringsdetaljer nu" - --#: ../glade/NewPrinterWindow.glade.h:95 -+#: ../glade/NewPrinterWindow.glade.h:94 - msgid "Short name for this printer such as \"laserjet\"" - msgstr "Kort namn för denna skrivare, som t.ex. \"laserjet\"" - --#: ../glade/NewPrinterWindow.glade.h:96 -+#: ../glade/NewPrinterWindow.glade.h:95 - msgid "Supplier:" - msgstr "Leverantör:" - --#: ../glade/NewPrinterWindow.glade.h:97 -+#: ../glade/NewPrinterWindow.glade.h:96 - msgid "Support:" - msgstr "Stöd:" - --#: ../glade/NewPrinterWindow.glade.h:98 -+#: ../glade/NewPrinterWindow.glade.h:97 - msgid "Text:" - msgstr "Text:" - --#: ../glade/NewPrinterWindow.glade.h:99 -+#: ../glade/NewPrinterWindow.glade.h:98 - msgid "" - "The foomatic printer database contains various manufacturer provided " - "PostScript Printer Description (PPD) files and also can generate PPD files " -@@ -2018,7 +2015,7 @@ msgstr "" - "tillverkarnas egna PPD-filer bättre tillgång till specifika funktioner för " - "skrivaren." - --#: ../glade/NewPrinterWindow.glade.h:100 -+#: ../glade/NewPrinterWindow.glade.h:99 - msgid "" - "These drivers do not come from your operating system supplier and will not " - "be covered by their commercial support. See the support and license terms " -@@ -2028,7 +2025,7 @@ msgstr "" - "deras kommersiella support gäller inte för dem. Se villkoren för support och " - "licensvillkor för drivrutinens leverantör." - --#: ../glade/NewPrinterWindow.glade.h:101 -+#: ../glade/NewPrinterWindow.glade.h:100 - msgid "" - "This driver supports additional hardware that may be installed in the " - "printer." -@@ -2036,7 +2033,7 @@ msgstr "" - "Den här drivrutinen ger stöd för ytterligare maskinvara som kan installeras " - "i skrivaren." - --#: ../glade/NewPrinterWindow.glade.h:102 -+#: ../glade/NewPrinterWindow.glade.h:101 - msgid "" - "This is done by assuming that options with the same name do have the same " - "meaning. Settings of options that are not present in the new PPD will be " -@@ -2046,7 +2043,7 @@ msgstr "" - "Inställningar av alternativ som inte finns i den nya PPD går förlorade och " - "alternativ som bara finns i den nya PPD kommer ställas in som standard." - --#: ../glade/NewPrinterWindow.glade.h:103 -+#: ../glade/NewPrinterWindow.glade.h:102 - msgid "" - "This way all current option settings will be lost. The default settings of " - "the new PPD will be used. " -@@ -2054,19 +2051,19 @@ msgstr "" - "På det här sättet kommer alla nuvarande alternativinställningar gå " - "förlorade. Standardinställningar för den nya PPD kommer att användas. " - --#: ../glade/NewPrinterWindow.glade.h:104 -+#: ../glade/NewPrinterWindow.glade.h:103 - msgid "Try to copy the option settings over from the old PPD. " - msgstr "Försök kopiera alternativinställningarna från den gamla PPD. " - --#: ../glade/NewPrinterWindow.glade.h:105 -+#: ../glade/NewPrinterWindow.glade.h:104 - msgid "URI:" - msgstr "URI:" - --#: ../glade/NewPrinterWindow.glade.h:107 -+#: ../glade/NewPrinterWindow.glade.h:106 - msgid "Use the new PPD (Postscript Printer Description) as is." - msgstr "Använd den nya PPD (Postscript Printer Description) som den är." - --#: ../glade/NewPrinterWindow.glade.h:109 -+#: ../glade/NewPrinterWindow.glade.h:108 - msgid "" - "With this choice no driver download will be performed. In the next steps a " - "locally installed driver will be selected." -@@ -2074,24 +2071,24 @@ msgstr "" - "Med detta val kommer ingen drivrutin att hämtas ner. I de nästkommande " - "stegen kommer en lokalt installerad drivrutin att väljas." - --#: ../glade/NewPrinterWindow.glade.h:110 -+#: ../glade/NewPrinterWindow.glade.h:109 - msgid "Yes, I accept this license" - msgstr "Ja, jag godkänner denna licens" - --#: ../glade/NewPrinterWindow.glade.h:111 -+#: ../glade/NewPrinterWindow.glade.h:110 - msgid "_Search" - msgstr "_Sök" - --#: ../glade/NewPrinterWindow.glade.h:112 -+#: ../glade/NewPrinterWindow.glade.h:111 - msgid "_Verify..." - msgstr "_Verifiera..." - --#: ../glade/NewPrinterWindow.glade.h:113 -+#: ../glade/NewPrinterWindow.glade.h:112 - #: ../glade/PrinterPropertiesDialog.glade.h:128 - msgid "move left" - msgstr "flytta åt vänster" - --#: ../glade/NewPrinterWindow.glade.h:114 -+#: ../glade/NewPrinterWindow.glade.h:113 - #: ../glade/PrinterPropertiesDialog.glade.h:129 - msgid "move right" - msgstr "flytta åt höger" -@@ -3011,7 +3008,7 @@ msgstr "Blev de markerade utskriftsjobbe - msgid "Remember to load paper of type '%s' into the printer first." - msgstr "Kom ihåg att först ladda skrivaren med papper av typen \"%s\"." - --#: ../troubleshoot/PrintTestPage.py:399 -+#: ../troubleshoot/PrintTestPage.py:416 - msgid "Error submitting test page" - msgstr "Fel vid sändning av testsida" - -@@ -3212,6 +3209,15 @@ msgstr "Hantera utskriftsjobb" - msgid "Select default printer" - msgstr "Välj standardskrivare" - -+#~ msgid "HP Printer (HPLIP)" -+#~ msgstr "HP-skrivare (HPLIP)" -+ -+#~ msgid "HPLIP cannot find the device." -+#~ msgstr "HPLIP kan inte hitta enheten." -+ -+#~ msgid "HP Printer (HPLIP) via network" -+#~ msgstr "HP-skrivare (HPLIP) via nätverk" -+ - #~ msgid "Not Found" - #~ msgstr "Hittades inte" - -diff -up system-config-printer-1.1.5/po/ta.po.git-1.1.x system-config-printer-1.1.5/po/ta.po ---- system-config-printer-1.1.5/po/ta.po.git-1.1.x 2009-03-03 22:21:46.000000000 +0000 -+++ system-config-printer-1.1.5/po/ta.po 2009-03-10 17:43:43.000000000 +0000 -@@ -10,7 +10,7 @@ msgid "" - msgstr "" - "Project-Id-Version: ta\n" - "Report-Msgid-Bugs-To: https://bugzilla.redhat.com/bugzilla\n" --"POT-Creation-Date: 2009-03-02 23:22+0000\n" -+"POT-Creation-Date: 2009-03-10 16:51+0000\n" - "PO-Revision-Date: 2007-04-17 15:36+0530\n" - "Last-Translator: I felix \n" - "Language-Team: Tamil \n" -@@ -71,11 +71,11 @@ msgstr "" - msgid "Enter IP address" - msgstr "அச்சடிப்பி பெயர்" - --#: ../authconn.py:35 ../glade/NewPrinterWindow.glade.h:108 -+#: ../authconn.py:35 ../glade/NewPrinterWindow.glade.h:107 - msgid "Username:" - msgstr "பயனர் பெயர்:" - --#: ../authconn.py:36 ../glade/NewPrinterWindow.glade.h:77 -+#: ../authconn.py:36 ../glade/NewPrinterWindow.glade.h:76 - msgid "Password:" - msgstr "கடவுச்சொல்:" - -@@ -84,7 +84,7 @@ msgstr "கடவுச்சொல்:" - msgid "Domain:" - msgstr "மேல் ஓரம்:" - --#: ../authconn.py:46 -+#: ../authconn.py:46 ../authconn.py:409 - #, fuzzy - msgid "Authentication" - msgstr "அங்கீகாரம்" -@@ -93,45 +93,54 @@ msgstr "அங்கீகாரம - msgid "Remember password" - msgstr "" - --#: ../authconn.py:211 ../authconn.py:232 -+#: ../authconn.py:208 -+#, python-format -+msgid "Unauthorized request (%s)" -+msgstr "" -+ -+#: ../authconn.py:209 -+msgid "You are not authorized to carry out therequested action." -+msgstr "" -+ -+#: ../authconn.py:212 ../authconn.py:233 - #, fuzzy - msgid "Operation canceled" - msgstr "செயல்பாட்டு கொள்கை:" - --#: ../authconn.py:253 -+#: ../authconn.py:250 - #, fuzzy, python-format - msgid "CUPS server error (%s)" - msgstr "CUPS சேவையக பிழை" - --#: ../authconn.py:255 ../errordialogs.py:57 --#: ../troubleshoot/PrintTestPage.py:400 -+#: ../authconn.py:252 ../errordialogs.py:56 ../errordialogs.py:70 -+msgid "CUPS server error" -+msgstr "CUPS சேவையக பிழை" -+ -+#: ../authconn.py:261 ../errordialogs.py:57 -+#: ../troubleshoot/PrintTestPage.py:417 - #, python-format - msgid "There was an error during the CUPS operation: '%s'." - msgstr "CUPS செயல்பாட்டின் போது பிழை ஏற்பட்டுள்ளது: '%s'." - --#: ../authconn.py:258 -+#: ../authconn.py:264 - #, fuzzy - msgid "Retry" - msgstr "மறுஅமைவு" - --#: ../authconn.py:379 ../authconn.py:381 ../errordialogs.py:65 ../pysmb.py:75 -+#: ../authconn.py:385 ../authconn.py:387 ../errordialogs.py:65 ../pysmb.py:75 - #: ../pysmb.py:77 - msgid "Not authorized" - msgstr "அங்கீகரிக்கப்படவில்லை" - --#: ../authconn.py:382 ../pysmb.py:78 -+#: ../authconn.py:388 ../pysmb.py:78 - msgid "The password may be incorrect." - msgstr "கடவுச்சொல் தவறாக இருக்கலாம்." - --#: ../authconn.py:400 -+#: ../authconn.py:407 - #, fuzzy, python-format - msgid "Authentication (%s)" - msgstr "அங்கீகாரம்" - --#: ../errordialogs.py:56 ../errordialogs.py:70 --msgid "CUPS server error" --msgstr "CUPS சேவையக பிழை" -- - #: ../errordialogs.py:66 - msgid "" - "The password may be incorrect, or the server may be configured to deny " -@@ -160,7 +169,7 @@ msgstr "மேம்படுத்த - msgid "Server error" - msgstr "சேவையக பிழை" - --#: ../errordialogs.py:82 ../system-config-printer.py:1219 -+#: ../errordialogs.py:82 ../system-config-printer.py:1223 - msgid "Not connected" - msgstr "இணைக்கப்படவில்லை" - -@@ -182,7 +191,7 @@ msgstr "" - msgid "_New Group from Selection" - msgstr "" - --#: ../GroupsPane.py:98 ../system-config-printer.py:393 -+#: ../GroupsPane.py:98 ../system-config-printer.py:397 - #, fuzzy - msgid "_Rename" - msgstr "வெளியீடு (_R)" -@@ -251,7 +260,7 @@ msgid "Document" - msgstr "ஆவணம்" - - #: ../jobviewer.py:212 ../my-default-printer.py:153 --#: ../system-config-printer.py:366 ../system-config-printer.py:1367 -+#: ../system-config-printer.py:370 ../system-config-printer.py:1371 - #: ../troubleshoot/PrintTestPage.py:84 - msgid "Printer" - msgstr "அச்சடிப்பி" -@@ -288,8 +297,8 @@ msgstr "ஆவண அச்சு நி - - #: ../jobviewer.py:386 ../jobviewer.py:451 ../jobviewer.py:452 - #: ../jobviewer.py:492 ../jobviewer.py:600 ../jobviewer.py:727 --#: ../jobviewer.py:1196 ../jobviewer.py:1222 ../system-config-printer.py:2546 --#: ../glade/NewPrinterWindow.glade.h:106 -+#: ../jobviewer.py:1196 ../jobviewer.py:1222 ../system-config-printer.py:2556 -+#: ../glade/NewPrinterWindow.glade.h:105 - #: ../troubleshoot/ChooseNetworkPrinter.py:101 - #: ../troubleshoot/ChooseNetworkPrinter.py:102 - #: ../troubleshoot/ChooseNetworkPrinter.py:105 -@@ -379,12 +388,12 @@ msgstr "" - msgid "Pending" - msgstr "விடுப்பட்டவை" - --#: ../jobviewer.py:591 ../system-config-printer.py:186 -+#: ../jobviewer.py:591 ../system-config-printer.py:190 - #: ../troubleshoot/PrintTestPage.py:43 - msgid "Processing" - msgstr "பணி நடைபெறுகிறது" - --#: ../jobviewer.py:592 ../system-config-printer.py:188 -+#: ../jobviewer.py:592 ../system-config-printer.py:192 - #: ../troubleshoot/PrintTestPage.py:44 - msgid "Stopped" - msgstr "நிறுத்தப்பட்டது" -@@ -501,8 +510,8 @@ msgstr "கணினி முன்ன - msgid "_Set Default" - msgstr "முன்னிருப்பு" - --#: ../my-default-printer.py:158 ../system-config-printer.py:423 --#: ../system-config-printer.py:3660 ../troubleshoot/ChooseNetworkPrinter.py:37 -+#: ../my-default-printer.py:158 ../system-config-printer.py:427 -+#: ../system-config-printer.py:3675 ../troubleshoot/ChooseNetworkPrinter.py:37 - #: ../troubleshoot/ChoosePrinter.py:38 - #, fuzzy - msgid "Location" -@@ -536,7 +545,7 @@ msgstr "முன்னிருப் - msgid "Authenticated" - msgstr "அங்கீகாரம்" - --#: ../ppdippstr.py:50 ../system-config-printer.py:6259 -+#: ../ppdippstr.py:50 ../system-config-printer.py:6207 - #, fuzzy - msgid "None" - msgstr "ஏதுமில்லை" -@@ -756,132 +765,132 @@ msgstr "" - msgid "1200 dpi, photo, black + color cartridge, photo paper" - msgstr "" - --#: ../system-config-printer.py:127 -+#: ../system-config-printer.py:131 - msgid "To do this, select System->Administration->Firewall from the main menu." - msgstr "" - --#: ../system-config-printer.py:185 -+#: ../system-config-printer.py:189 - msgid "Idle" - msgstr "வெறுமை" - --#: ../system-config-printer.py:187 -+#: ../system-config-printer.py:191 - msgid "Busy" - msgstr "பணியில்" - --#: ../system-config-printer.py:372 ../system-config-printer.py:1373 -+#: ../system-config-printer.py:376 ../system-config-printer.py:1377 - #, fuzzy - msgid "Class" - msgstr "புதிய வகுப்பு" - --#: ../system-config-printer.py:399 -+#: ../system-config-printer.py:403 - #, fuzzy - msgid "Set As De_fault" - msgstr "முன்னிருப்பு" - --#: ../system-config-printer.py:403 -+#: ../system-config-printer.py:407 - #, fuzzy - msgid "_Create class" - msgstr "தொலை வகுப்புகள்" - --#: ../system-config-printer.py:405 -+#: ../system-config-printer.py:409 - #, fuzzy - msgid "View Print _Queue" - msgstr "புதிய அச்சடிப்பி" - --#: ../system-config-printer.py:407 -+#: ../system-config-printer.py:411 - msgid "_Add to Group" - msgstr "" - --#: ../system-config-printer.py:409 -+#: ../system-config-printer.py:413 - msgid "Save Results as _Group" - msgstr "" - --#: ../system-config-printer.py:411 -+#: ../system-config-printer.py:415 - msgid "Save Filter as _Search Group" - msgstr "" - --#: ../system-config-printer.py:415 -+#: ../system-config-printer.py:419 - #, fuzzy - msgid "E_nabled" - msgstr "செயல்படுத்தப்பட்டது" - --#: ../system-config-printer.py:417 -+#: ../system-config-printer.py:421 - #, fuzzy - msgid "_Shared" - msgstr "பகிரப்பட்ட" - --#: ../system-config-printer.py:421 ../troubleshoot/ChooseNetworkPrinter.py:35 -+#: ../system-config-printer.py:425 ../troubleshoot/ChooseNetworkPrinter.py:35 - #: ../troubleshoot/ChoosePrinter.py:36 ../troubleshoot/DeviceListed.py:36 - msgid "Name" - msgstr "பெயர்" - --#: ../system-config-printer.py:422 -+#: ../system-config-printer.py:426 - #, fuzzy - msgid "Description" - msgstr "விளக்கம்:" - --#: ../system-config-printer.py:424 -+#: ../system-config-printer.py:428 - msgid "Manufacturer / Model" - msgstr "" - - #. Printer state reasons list --#: ../system-config-printer.py:499 -+#: ../system-config-printer.py:503 - msgid "Message" - msgstr "செய்தி" - --#: ../system-config-printer.py:534 -+#: ../system-config-printer.py:538 - #, fuzzy - msgid "Problems?" - msgstr "ஆய்வு" - --#: ../system-config-printer.py:637 ../system-config-printer.py:639 -+#: ../system-config-printer.py:641 ../system-config-printer.py:643 - msgid "Members of this class" - msgstr "இந்த வகுப்பின் உறுப்பினர்கள்" - --#: ../system-config-printer.py:638 ../system-config-printer.py:640 -+#: ../system-config-printer.py:642 ../system-config-printer.py:644 - msgid "Others" - msgstr "மற்றவை" - --#: ../system-config-printer.py:641 -+#: ../system-config-printer.py:645 - msgid "Devices" - msgstr "சாதனங்கள்" - --#: ../system-config-printer.py:642 -+#: ../system-config-printer.py:646 - #, fuzzy - msgid "Connections" - msgstr "இணைக்கிறது" - --#: ../system-config-printer.py:643 -+#: ../system-config-printer.py:647 - msgid "Makes" - msgstr "உருவாக்குகிறது" - --#: ../system-config-printer.py:644 -+#: ../system-config-printer.py:648 - msgid "Models" - msgstr "மாதிரிகள்" - --#: ../system-config-printer.py:645 -+#: ../system-config-printer.py:649 - msgid "Drivers" - msgstr "இயக்கிகள்" - --#: ../system-config-printer.py:646 ../glade/NewPrinterWindow.glade.h:55 -+#: ../system-config-printer.py:650 ../glade/NewPrinterWindow.glade.h:54 - msgid "Downloadable Drivers" - msgstr "" - --#: ../system-config-printer.py:647 -+#: ../system-config-printer.py:651 - msgid "Users" - msgstr "பயனர்கள்" - --#: ../system-config-printer.py:682 -+#: ../system-config-printer.py:686 - msgid "Automatic rotation" - msgstr "" - --#: ../system-config-printer.py:989 -+#: ../system-config-printer.py:993 - #, fuzzy, python-format - msgid "Printer Properties - '%s' on %s" - msgstr "அச்சடிப்பி அறிக்கை" - - #. The Conflict button was pressed. --#: ../system-config-printer.py:996 -+#: ../system-config-printer.py:1000 - msgid "" - "There are conflicting options.\n" - "Changes can only be applied after\n" -@@ -891,81 +900,81 @@ msgstr "" - "இந்த முரண்பாடுகளை சரி செய்த பிறகு\n" - "மாற்றங்கள் செயல்படுத்தப்படும்." - --#: ../system-config-printer.py:1214 -+#: ../system-config-printer.py:1218 - #, python-format - msgid "Printer configuration - %s" - msgstr "அச்சியந்திரம் வடிவமைப்பு - %s" - --#: ../system-config-printer.py:1217 -+#: ../system-config-printer.py:1221 - #, python-format - msgid "Connected to %s" - msgstr "%sக்கு இணைக்கப்பட்டது" - - #. Update our copy of the printer's settings. --#: ../system-config-printer.py:1257 ../system-config-printer.py:2042 -+#: ../system-config-printer.py:1261 ../system-config-printer.py:2046 - msgid "obtaining queue details" - msgstr "" - --#: ../system-config-printer.py:1295 -+#: ../system-config-printer.py:1299 - msgid "Remove from Group" - msgstr "" - --#: ../system-config-printer.py:1361 -+#: ../system-config-printer.py:1365 - #, fuzzy - msgid "Network printer (discovered)" - msgstr "புதிய அச்சடிப்பி" - --#: ../system-config-printer.py:1364 -+#: ../system-config-printer.py:1368 - msgid "Network class (discovered)" - msgstr "" - --#: ../system-config-printer.py:1370 ../system-config-printer.py:5524 --#: ../system-config-printer.py:5594 ../system-config-printer.py:5596 -+#: ../system-config-printer.py:1374 ../system-config-printer.py:5519 -+#: ../system-config-printer.py:5589 ../system-config-printer.py:5591 - msgid "Fax" - msgstr "" - --#: ../system-config-printer.py:1376 ../system-config-printer.py:1382 -+#: ../system-config-printer.py:1380 ../system-config-printer.py:1386 - #: ../troubleshoot/LocalOrRemote.py:30 - #, fuzzy - msgid "Network printer" - msgstr "புதிய அச்சடிப்பி" - --#: ../system-config-printer.py:1379 -+#: ../system-config-printer.py:1383 - #, fuzzy - msgid "Network print share" - msgstr "புதிய அச்சடிப்பி" - --#: ../system-config-printer.py:1508 ../glade/ConnectingDialog.glade.h:2 -+#: ../system-config-printer.py:1512 ../glade/ConnectingDialog.glade.h:2 - #, no-c-format, python-format - msgid "Opening connection to %s" - msgstr "" - --#: ../system-config-printer.py:1887 -+#: ../system-config-printer.py:1891 - msgid "Installable Options" - msgstr "நிறுவக்கூடிய விருப்பங்கள்" - --#: ../system-config-printer.py:1888 -+#: ../system-config-printer.py:1892 - #: ../glade/PrinterPropertiesDialog.glade.h:109 - msgid "Printer Options" - msgstr "அச்சடிப்பி விருப்பங்கள்" - --#: ../system-config-printer.py:1924 -+#: ../system-config-printer.py:1928 - #, python-format - msgid "modifying class %s" - msgstr "" - --#: ../system-config-printer.py:1926 ../system-config-printer.py:3019 --#: ../system-config-printer.py:3044 ../system-config-printer.py:6547 --#: ../system-config-printer.py:6559 ../system-config-printer.py:6581 -+#: ../system-config-printer.py:1930 ../system-config-printer.py:3037 -+#: ../system-config-printer.py:3062 ../system-config-printer.py:6495 -+#: ../system-config-printer.py:6507 ../system-config-printer.py:6529 - #, fuzzy, python-format - msgid "modifying printer %s" - msgstr "அச்சடிப்பிகளை கட்டமைக்கவும்" - --#: ../system-config-printer.py:1941 -+#: ../system-config-printer.py:1945 - msgid "This will delete this class!" - msgstr "இது இந்த வகுப்பினை அழிக்கும்!" - --#: ../system-config-printer.py:1942 -+#: ../system-config-printer.py:1946 - msgid "Proceed anyway?" - msgstr "எவ்வாறாயினும் தொடர வேண்டுமா?" - -@@ -973,69 +982,69 @@ msgstr "எவ்வாறாயின - #. but we have never fetched the server settings to see whether - #. the server is publishing shared printers. Fetch the settings - #. now so that we can update the "not published" label if necessary. --#: ../system-config-printer.py:2030 ../system-config-printer.py:3203 -+#: ../system-config-printer.py:2034 ../system-config-printer.py:3221 - #, fuzzy - msgid "fetching server settings" - msgstr "அடிப்படை சேவையக அமைவுகள்" - --#: ../system-config-printer.py:2100 -+#: ../system-config-printer.py:2104 - #, fuzzy - msgid "Set Default Printer" - msgstr "முன்னிருப்பு அச்சடிப்பி ஆக்கவும்" - --#: ../system-config-printer.py:2102 -+#: ../system-config-printer.py:2106 - msgid "Do you want to set this as the system-wide default printer?" - msgstr "" - --#: ../system-config-printer.py:2104 -+#: ../system-config-printer.py:2108 - #, fuzzy - msgid "Set as the _system-wide default printer" - msgstr "இது முன்னிருப்பு அச்சடிப்பி" - --#: ../system-config-printer.py:2106 -+#: ../system-config-printer.py:2110 - msgid "_Clear my personal default setting" - msgstr "" - --#: ../system-config-printer.py:2107 -+#: ../system-config-printer.py:2111 - #, fuzzy - msgid "Set as my _personal default printer" - msgstr "முன்னிருப்பு அச்சடிப்பி ஆக்கவும்" - --#: ../system-config-printer.py:2112 -+#: ../system-config-printer.py:2116 - #, fuzzy - msgid "setting default printer" - msgstr "முன்னிருப்பு அச்சடிப்பி ஆக்கவும்" - --#: ../system-config-printer.py:2169 -+#: ../system-config-printer.py:2173 - #, fuzzy - msgid "printing test page" - msgstr "அச்சு சோதனை பக்கம்" - --#: ../system-config-printer.py:2182 ../system-config-printer.py:2217 --#: ../system-config-printer.py:5418 -+#: ../system-config-printer.py:2186 ../system-config-printer.py:2221 -+#: ../system-config-printer.py:5413 - msgid "Not possible" - msgstr "சாத்தியமில்லை" - --#: ../system-config-printer.py:2183 ../system-config-printer.py:2218 -+#: ../system-config-printer.py:2187 ../system-config-printer.py:2222 - msgid "" - "The remote server did not accept the print job, most likely because the " - "printer is not shared." - msgstr "தொலை சேவையகம் அச்சு பணியை ஏற்கவில்லை, ஏனெனில் அச்சடிப்பி பகிரப்படவில்லை." - --#: ../system-config-printer.py:2195 ../system-config-printer.py:2210 -+#: ../system-config-printer.py:2199 ../system-config-printer.py:2214 - msgid "Submitted" - msgstr "சமர்பிக்கப்பட்டது" - --#: ../system-config-printer.py:2196 -+#: ../system-config-printer.py:2200 - #, python-format - msgid "Test page submitted as job %d" - msgstr "சோதனை பக்கம் பணியாக சமர்ப்பிக்கப்பட்டது %d" - --#: ../system-config-printer.py:2203 -+#: ../system-config-printer.py:2207 - msgid "sending maintenance command" - msgstr "" - --#: ../system-config-printer.py:2211 -+#: ../system-config-printer.py:2215 - #, fuzzy, python-format - msgid "Maintenance command submitted as job %d" - msgstr "சோதனை பக்கம் பணியாக சமர்ப்பிக்கப்பட்டது %d" -@@ -1043,75 +1052,75 @@ msgstr "சோதனை பக்கம - #. The underlying cupsGetPPD2() function returned NULL without - #. setting an IPP error, so it'll be something like a failed - #. connection. --#: ../system-config-printer.py:2285 ../system-config-printer.py:2381 -+#: ../system-config-printer.py:2289 ../system-config-printer.py:2385 - msgid "Error" - msgstr "பிழை" - --#: ../system-config-printer.py:2286 -+#: ../system-config-printer.py:2290 - msgid "There was a problem connecting to the CUPS server." - msgstr "CUPS சேவையகத்துடன் இணைப்பில் சிக்கல்." - --#: ../system-config-printer.py:2382 -+#: ../system-config-printer.py:2386 - #, python-format - msgid "Option '%s' has value '%s' and cannot be edited." - msgstr "" - --#: ../system-config-printer.py:2466 -+#: ../system-config-printer.py:2476 - msgid "Marker levels are not reported for this printer." - msgstr "" - --#: ../system-config-printer.py:2763 -+#: ../system-config-printer.py:2773 - #, fuzzy - msgid "Cannot Rename" - msgstr "வெளியீடு (_R)" - --#: ../system-config-printer.py:2764 -+#: ../system-config-printer.py:2774 - msgid "There are queued jobs." - msgstr "" - --#: ../system-config-printer.py:2822 -+#: ../system-config-printer.py:2840 - #, fuzzy - msgid "renaming printer" - msgstr "அச்சடிப்பிகளை கட்டமைக்கவும்" - - #. for classes make sure all members - #. will get added --#: ../system-config-printer.py:2907 -+#: ../system-config-printer.py:2925 - #, fuzzy - msgid "copying printer" - msgstr "அச்சடிப்பிகளை கட்டமைக்கவும்" - --#: ../system-config-printer.py:2971 -+#: ../system-config-printer.py:2989 - #, fuzzy, python-format - msgid "Really delete class '%s'?" - msgstr "வகுப்பு %s ஐ அழிக்க வேண்டுமா?" - --#: ../system-config-printer.py:2973 -+#: ../system-config-printer.py:2991 - #, fuzzy, python-format - msgid "Really delete printer '%s'?" - msgstr "அச்சடிப்பி %s ஐ அழிக்க வேண்டுமா?" - --#: ../system-config-printer.py:2975 -+#: ../system-config-printer.py:2993 - #, fuzzy - msgid "Really delete selected destinations?" - msgstr "அச்சடிப்பி %s ஐ அழிக்க வேண்டுமா?" - --#: ../system-config-printer.py:2996 -+#: ../system-config-printer.py:3014 - #, fuzzy, python-format - msgid "deleting printer %s" - msgstr "அச்சடிப்பிகளை கட்டமைக்கவும்" - --#: ../system-config-printer.py:3070 -+#: ../system-config-printer.py:3088 - msgid "Publish Shared Printers" - msgstr "" - --#: ../system-config-printer.py:3071 -+#: ../system-config-printer.py:3089 - msgid "" - "Shared printers are not available to other people unless the 'Publish shared " - "printers' option is enabled in the server settings." - msgstr "" - --#: ../system-config-printer.py:3264 -+#: ../system-config-printer.py:3282 - #, fuzzy - msgid "modifying server settings" - msgstr "அடிப்படை சேவையக அமைவுகள்" -@@ -1122,105 +1131,105 @@ msgstr "அடிப்படை ச - #. be unblocked. Unfortunately, this is not yet possible - #. (bug #440469). However, we can display a dialog to suggest - #. that now might be a good time to review the firewall settings. --#: ../system-config-printer.py:3289 -+#: ../system-config-printer.py:3307 - msgid "Review Firewall" - msgstr "" - --#: ../system-config-printer.py:3290 -+#: ../system-config-printer.py:3308 - msgid "" - "You may need to adjust the firewall to allow network printing to this " - "computer." - msgstr "" - --#: ../system-config-printer.py:3623 -+#: ../system-config-printer.py:3638 - msgid "Browsing not available (pysmbc not installed)" - msgstr "" - - #. SMB list columns --#: ../system-config-printer.py:3629 -+#: ../system-config-printer.py:3644 - msgid "Share" - msgstr "பகிர்வு" - --#: ../system-config-printer.py:3635 -+#: ../system-config-printer.py:3650 - msgid "Comment" - msgstr "குறிப்பு" - - #. IPP list columns --#: ../system-config-printer.py:3654 -+#: ../system-config-printer.py:3669 - msgid "Queue" - msgstr "" - --#: ../system-config-printer.py:3668 -+#: ../system-config-printer.py:3683 - #, fuzzy - msgid "" - "PostScript Printer Description files (*.ppd, *.PPD, *.ppd.gz, *.PPD.gz, *." - "PPD.GZ)" - msgstr "PostScript அச்சடிப்பி விளக்கம் (*.ppd[.gz])" - --#: ../system-config-printer.py:3677 -+#: ../system-config-printer.py:3692 - msgid "All files (*)" - msgstr "" - --#: ../system-config-printer.py:3713 ../system-config-printer.py:5970 --#: ../system-config-printer.py:6008 ../applet.py:124 -+#: ../system-config-printer.py:3728 ../system-config-printer.py:5918 -+#: ../system-config-printer.py:5956 ../applet.py:124 - #, fuzzy - msgid "Search" - msgstr "அச்சடிப்பிக்கு புதிய பெயர்" - --#: ../system-config-printer.py:3736 ../system-config-printer.py:3760 --#: ../glade/NewPrinterWindow.glade.h:74 -+#: ../system-config-printer.py:3751 ../system-config-printer.py:3775 -+#: ../glade/NewPrinterWindow.glade.h:73 - msgid "New Printer" - msgstr "புதிய அச்சடிப்பி" - --#: ../system-config-printer.py:3747 -+#: ../system-config-printer.py:3762 - msgid "New Class" - msgstr "புதிய வகுப்பு" - --#: ../system-config-printer.py:3752 -+#: ../system-config-printer.py:3767 - msgid "Change Device URI" - msgstr "சாதனம் URI ஐ மாற்றவும்" - --#: ../system-config-printer.py:3758 -+#: ../system-config-printer.py:3773 - msgid "Change Driver" - msgstr "இயக்கியை மாற்றவும்" - --#: ../system-config-printer.py:3927 ../system-config-printer.py:3993 --#: ../system-config-printer.py:4289 ../system-config-printer.py:4487 --#: ../system-config-printer.py:5772 ../system-config-printer.py:5995 -+#: ../system-config-printer.py:3942 ../system-config-printer.py:4008 -+#: ../system-config-printer.py:4304 ../system-config-printer.py:4502 -+#: ../system-config-printer.py:5762 ../system-config-printer.py:5943 - msgid "Searching" - msgstr "" - --#: ../system-config-printer.py:3928 -+#: ../system-config-printer.py:3943 - #, fuzzy - msgid "Searching for downloadable drivers" - msgstr "அச்சடிப்பிக்கு புதிய பெயர்" - --#: ../system-config-printer.py:3994 ../system-config-printer.py:4290 -+#: ../system-config-printer.py:4009 ../system-config-printer.py:4305 - msgid "Searching for drivers" - msgstr "" - --#: ../system-config-printer.py:4488 ../system-config-printer.py:5773 -+#: ../system-config-printer.py:4503 ../system-config-printer.py:5763 - #, fuzzy - msgid "Searching for printers" - msgstr "அச்சடிப்பிக்கு புதிய பெயர்" - --#: ../system-config-printer.py:4497 -+#: ../system-config-printer.py:4512 - #, fuzzy - msgid "fetching device list" - msgstr "அடிப்படை சேவையக அமைவுகள்" - - #. Tell the user why he needs the plugin --#: ../system-config-printer.py:4579 -+#: ../system-config-printer.py:4594 - msgid "For this printer a proprietary driver plugin from HP is available.\n" - msgstr "" - --#: ../system-config-printer.py:4582 -+#: ../system-config-printer.py:4597 - msgid "" - "The installation of the plugin is required for your printer to work.\n" - "\n" - msgstr "" - --#: ../system-config-printer.py:4585 -+#: ../system-config-printer.py:4600 - msgid "" - "Installing the plugin is optional, it completes or enhances the " - "functionality\n" -@@ -1228,219 +1237,215 @@ msgid "" - "\n" - msgstr "" - --#: ../system-config-printer.py:4589 -+#: ../system-config-printer.py:4604 - msgid "The plugin provides the following features:\n" - msgstr "" - --#: ../system-config-printer.py:4592 -+#: ../system-config-printer.py:4607 - msgid " - Printing support\n" - msgstr "" - --#: ../system-config-printer.py:4595 -+#: ../system-config-printer.py:4610 - msgid " - Faster printing\n" - msgstr "" - --#: ../system-config-printer.py:4598 -+#: ../system-config-printer.py:4613 - msgid " - Better printout quality\n" - msgstr "" - --#: ../system-config-printer.py:4601 -+#: ../system-config-printer.py:4616 - msgid " - Extra printing features\n" - msgstr "" - --#: ../system-config-printer.py:4604 -+#: ../system-config-printer.py:4619 - msgid " - Scanning support\n" - msgstr "" - --#: ../system-config-printer.py:4607 -+#: ../system-config-printer.py:4622 - msgid " - Faster scanning\n" - msgstr "" - --#: ../system-config-printer.py:4610 -+#: ../system-config-printer.py:4625 - msgid " - Better scanning image quality\n" - msgstr "" - --#: ../system-config-printer.py:4613 -+#: ../system-config-printer.py:4628 - msgid " - Faxing support\n" - msgstr "" - --#: ../system-config-printer.py:4616 -+#: ../system-config-printer.py:4631 - msgid " - Extra fax features\n" - msgstr "" - --#: ../system-config-printer.py:4619 -+#: ../system-config-printer.py:4634 - msgid " - Better Input/Output support\n" - msgstr "" - --#: ../system-config-printer.py:4622 -+#: ../system-config-printer.py:4637 - msgid " - Extra user interface features\n" - msgstr "" - --#: ../system-config-printer.py:4625 -+#: ../system-config-printer.py:4640 - msgid " - Other extra features\n" - msgstr "" - --#: ../system-config-printer.py:4630 -+#: ../system-config-printer.py:4645 - #, fuzzy - msgid "Install plugin" - msgstr "நிறுவக்கூடிய விருப்பங்கள்" - --#: ../system-config-printer.py:4631 -+#: ../system-config-printer.py:4646 - #, fuzzy - msgid "Do not set up printer" - msgstr "அச்சடிப்பியை நகலெடுக்கவும்" - --#: ../system-config-printer.py:4632 -+#: ../system-config-printer.py:4647 - msgid "Set up without plugin" - msgstr "" - --#: ../system-config-printer.py:4634 ../troubleshoot/PrintTestPage.py:118 -+#: ../system-config-printer.py:4649 ../troubleshoot/PrintTestPage.py:118 - msgid "Yes" - msgstr "" - --#: ../system-config-printer.py:4635 ../troubleshoot/PrintTestPage.py:119 -+#: ../system-config-printer.py:4650 ../troubleshoot/PrintTestPage.py:119 - msgid "No" - msgstr "" - --#: ../system-config-printer.py:4809 ../system-config-printer.py:4813 -+#: ../system-config-printer.py:4824 ../system-config-printer.py:4828 - msgid " (Current)" - msgstr " (நடப்பு)" - --#: ../system-config-printer.py:4845 --msgid "HP Printer (HPLIP)" --msgstr "" -- --#: ../system-config-printer.py:4886 -+#: ../system-config-printer.py:4881 - msgid "Other" - msgstr "வேறு" - - #. device-info - #. PhysicalDevice obj - #. Separator? --#: ../system-config-printer.py:4902 -+#: ../system-config-printer.py:4897 - #, fuzzy - msgid "Network Printer" - msgstr "புதிய அச்சடிப்பி" - --#: ../system-config-printer.py:4906 -+#: ../system-config-printer.py:4901 - #, fuzzy - msgid "Find Network Printer" - msgstr "புதிய அச்சடிப்பி" - --#: ../system-config-printer.py:4979 ../system-config-printer.py:5376 -+#: ../system-config-printer.py:4974 ../system-config-printer.py:5371 - #, fuzzy - msgid "Scanning..." - msgstr "அளவிடல்:" - --#: ../system-config-printer.py:5034 ../system-config-printer.py:5798 -+#: ../system-config-printer.py:5029 - #, fuzzy - msgid "No Print Shares" - msgstr "புதிய அச்சடிப்பி" - --#: ../system-config-printer.py:5035 -+#: ../system-config-printer.py:5030 - msgid "" - "There were no print shares found. Please check that the Samba service is " - "marked as trusted in your firewall configuration." - msgstr "" - --#: ../system-config-printer.py:5296 ../system-config-printer.py:5357 -+#: ../system-config-printer.py:5291 ../system-config-printer.py:5352 - msgid "Print Share Verified" - msgstr "" - --#: ../system-config-printer.py:5297 ../system-config-printer.py:5358 -+#: ../system-config-printer.py:5292 ../system-config-printer.py:5353 - msgid "This print share is accessible." - msgstr "இந்த அச்சு பகிர்வு அணுகக்கூடியது." - --#: ../system-config-printer.py:5302 ../system-config-printer.py:5362 -+#: ../system-config-printer.py:5297 ../system-config-printer.py:5357 - msgid "This print share is not accessible." - msgstr "இந்த அச்சு பகிர்வு அணுகக்கூடியதல்ல." - --#: ../system-config-printer.py:5305 -+#: ../system-config-printer.py:5300 - #, fuzzy - msgid "Print Share Inaccessible" - msgstr "இந்த அச்சு பகிர்வு அணுகக்கூடியது." - --#: ../system-config-printer.py:5361 -+#: ../system-config-printer.py:5356 - msgid "Inaccessible" - msgstr "அணுக முடியாதது" - --#: ../system-config-printer.py:5419 -+#: ../system-config-printer.py:5414 - #, fuzzy, python-format - msgid "It is not possible to obtain a list of queues from '%s'." - msgstr "CUPS சேவையகத்துடன் இணைப்பில் சிக்கல்." - --#: ../system-config-printer.py:5421 -+#: ../system-config-printer.py:5416 - msgid "" - "Obtaining a list of queues is a CUPS extension to IPP. Network printers do " - "not support it." - msgstr "" - --#: ../system-config-printer.py:5424 -+#: ../system-config-printer.py:5419 - msgid "No queues" - msgstr "" - --#: ../system-config-printer.py:5425 -+#: ../system-config-printer.py:5420 - msgid "There are no queues available." - msgstr "" - --#: ../system-config-printer.py:5516 -+#: ../system-config-printer.py:5511 - msgid "Parallel Port" - msgstr "" - --#: ../system-config-printer.py:5518 -+#: ../system-config-printer.py:5513 - #, fuzzy - msgid "Serial Port" - msgstr "தொடர்" - --#: ../system-config-printer.py:5520 -+#: ../system-config-printer.py:5515 - #, fuzzy - msgid "USB" - msgstr "SMB" - --#: ../system-config-printer.py:5522 ../system-config-printer.py:5525 -+#: ../system-config-printer.py:5517 ../system-config-printer.py:5520 - msgid "HP Linux Imaging and Printing (HPLIP)" - msgstr "" - --#: ../system-config-printer.py:5527 -+#: ../system-config-printer.py:5522 - #, fuzzy - msgid "Hardware Abstraction Layer (HAL)" - msgstr "Hardware Abstraction Layer (HAL) ஆல் உள்ளமை அச்சடிப்பி கண்டறியப்பட்டது." - --#: ../system-config-printer.py:5529 -+#: ../system-config-printer.py:5524 - msgid "AppSocket/HP JetDirect" - msgstr "" - --#: ../system-config-printer.py:5538 -+#: ../system-config-printer.py:5533 - #, python-format - msgid "LPD/LPR queue '%s'" - msgstr "" - --#: ../system-config-printer.py:5540 -+#: ../system-config-printer.py:5535 - #, fuzzy - msgid "LPD/LPR queue" - msgstr "LPD" - --#: ../system-config-printer.py:5543 -+#: ../system-config-printer.py:5538 - msgid "Windows Printer via SAMBA" - msgstr "" - --#: ../system-config-printer.py:5545 ../glade/NewPrinterWindow.glade.h:66 -+#: ../system-config-printer.py:5540 ../glade/NewPrinterWindow.glade.h:65 - msgid "IPP" - msgstr "IPP" - --#: ../system-config-printer.py:5547 -+#: ../system-config-printer.py:5542 - msgid "HTTP" - msgstr "" - --#: ../system-config-printer.py:5632 -+#: ../system-config-printer.py:5624 - msgid "A printer connected to the parallel port." - msgstr "ஒரு அச்சடிப்பி இணை துறையில் இணைக்கப்பட்டது." - --#: ../system-config-printer.py:5634 -+#: ../system-config-printer.py:5626 - msgid "A printer connected to a USB port." - msgstr "ஒரு அச்சடிப்பி ஒரு USB துறையில் இணைக்கப்பட்டது." - --#: ../system-config-printer.py:5636 -+#: ../system-config-printer.py:5628 - msgid "" - "HPLIP software driving a printer, or the printer function of a multi-" - "function device." -@@ -1448,7 +1453,7 @@ msgstr "" - "HPLIP மென்பொருள் ஒரு அச்சடிப்பியை இயக்குகிறது, அல்லது பல செயல்பாட்டு சாதனத்தின் " - "அச்சடிப்பியின் செயல்பாடு." - --#: ../system-config-printer.py:5639 -+#: ../system-config-printer.py:5631 - msgid "" - "HPLIP software driving a fax machine, or the fax function of a multi-" - "function device." -@@ -1456,70 +1461,66 @@ msgstr "" - "HPLIP மென்பொருள் ஒரு தொலைநகலியை இயக்குகிறது, அல்லது பல செயல்பாட்டு சாதனத்தின் " - "தொலைநகலியின் செயல்பாடு." - --#: ../system-config-printer.py:5642 -+#: ../system-config-printer.py:5634 - msgid "Local printer detected by the Hardware Abstraction Layer (HAL)." - msgstr "Hardware Abstraction Layer (HAL) ஆல் உள்ளமை அச்சடிப்பி கண்டறியப்பட்டது." - --#: ../system-config-printer.py:5799 --msgid "HPLIP cannot find the device." --msgstr "" -- --#: ../system-config-printer.py:5881 -+#: ../system-config-printer.py:5831 - msgid "No printer was found at that address." - msgstr "" - --#: ../system-config-printer.py:6020 -+#: ../system-config-printer.py:5968 - #, fuzzy - msgid "-- Select from search results --" - msgstr "தரவுத்தளத்திலிருந்து அச்சடிப்பியை தேர்ந்தெடுக்கவும்" - --#: ../system-config-printer.py:6022 -+#: ../system-config-printer.py:5970 - msgid "-- No matches found --" - msgstr "" - --#: ../system-config-printer.py:6203 -+#: ../system-config-printer.py:6151 - msgid " (recommended)" - msgstr " (பரிந்துரைக்கப்பட்டது)" - --#: ../system-config-printer.py:6217 -+#: ../system-config-printer.py:6165 - msgid "This PPD is generated by foomatic." - msgstr "இந்த PPD foomaticஆல் உருவாக்கப்பட்டது." - --#: ../system-config-printer.py:6241 -+#: ../system-config-printer.py:6189 - #, fuzzy - msgid "OpenPrinting" - msgstr "அச்சிடுதல்" - --#: ../system-config-printer.py:6252 -+#: ../system-config-printer.py:6200 - msgid "Distributable" - msgstr "" - --#: ../system-config-printer.py:6293 -+#: ../system-config-printer.py:6241 - #, fuzzy - msgid ", " - msgstr " " - --#: ../system-config-printer.py:6298 -+#: ../system-config-printer.py:6246 - #, python-format - msgid "" - "\n" - "(%s)" - msgstr "" - --#: ../system-config-printer.py:6303 -+#: ../system-config-printer.py:6251 - msgid "No support contacts known" - msgstr "" - --#: ../system-config-printer.py:6307 ../system-config-printer.py:6320 -+#: ../system-config-printer.py:6255 ../system-config-printer.py:6268 - msgid "Not specified." - msgstr "" - - #. Foomatic database problem of some sort. --#: ../system-config-printer.py:6360 -+#: ../system-config-printer.py:6308 - msgid "Database error" - msgstr "தரவுத்தள பிழை" - --#: ../system-config-printer.py:6361 -+#: ../system-config-printer.py:6309 - #, python-format - msgid "The '%s' driver cannot be used with printer '%s %s'." - msgstr "'%s' இயக்கி அச்சடிப்பி '%s %s' இல் பயன்படுத்த முடியாது." -@@ -1527,65 +1528,65 @@ msgstr "'%s' இயக்கி அச - #. This printer references some XML that is not - #. installed by default. Point the user at the - #. package they need to install. --#: ../system-config-printer.py:6371 -+#: ../system-config-printer.py:6319 - #, python-format - msgid "You will need to install the '%s' package in order to use this driver." - msgstr "நீங்கள் இந்த இயக்கியைப் பயன்படுத்த '%s' தொகுப்புகளை நிறுவ வேண்டும்." - - #. This error came from trying to open the PPD file. --#: ../system-config-printer.py:6378 -+#: ../system-config-printer.py:6326 - msgid "PPD error" - msgstr "PPD பிழை" - --#: ../system-config-printer.py:6380 -+#: ../system-config-printer.py:6328 - msgid "Failed to read PPD file. Possible reason follows:" - msgstr "PPD கோப்பினை வாசிக்க முடியவில்லை. இதற்கான காரணங்கள் பின்வருமாறு:" - - #. Failed to get PPD downloaded from OpenPrinting XXX --#: ../system-config-printer.py:6397 -+#: ../system-config-printer.py:6345 - msgid "Downloadable drivers" - msgstr "" - --#: ../system-config-printer.py:6398 -+#: ../system-config-printer.py:6346 - msgid "Failed to download PPD." - msgstr "" - --#: ../system-config-printer.py:6405 -+#: ../system-config-printer.py:6353 - #, fuzzy - msgid "fetching PPD" - msgstr "PPDஐ மாற்றவும்" - --#: ../system-config-printer.py:6434 ../system-config-printer.py:6472 -+#: ../system-config-printer.py:6382 ../system-config-printer.py:6420 - #, fuzzy - msgid "No Installable Options" - msgstr "நிறுவக்கூடிய விருப்பங்கள்" - --#: ../system-config-printer.py:6520 -+#: ../system-config-printer.py:6468 - #, fuzzy, python-format - msgid "adding printer %s" - msgstr "அச்சடிப்பிகளை கட்டமைக்கவும்" - --#: ../system-config-printer.py:6669 -+#: ../system-config-printer.py:6617 - msgid "Would you like to print a test page?" - msgstr "" - --#: ../system-config-printer.py:6722 -+#: ../system-config-printer.py:6670 - #, fuzzy - msgid "Install driver" - msgstr "விடுபட்ட இயக்கி" - --#: ../system-config-printer.py:6723 ../troubleshoot/CheckPPDSanity.py:131 -+#: ../system-config-printer.py:6671 ../troubleshoot/CheckPPDSanity.py:131 - #, fuzzy, python-format - msgid "Printer '%s' requires the %s package but it is not currently installed." - msgstr "" - "அச்சடிப்பி '%s' க்கு %s தொகுப்பு தேவைப்படுகிறது ஆனால் தற்போது நிறுவப்படவில்லை. இந்த " - "அச்சடிப்பியைப் பயன்படுத்துவதற்கு முன் நிறுவவும்." - --#: ../system-config-printer.py:6739 -+#: ../system-config-printer.py:6687 - msgid "Missing driver" - msgstr "விடுபட்ட இயக்கி" - --#: ../system-config-printer.py:6740 -+#: ../system-config-printer.py:6688 - #, python-format - msgid "" - "Printer '%s' requires the '%s' program but it is not currently installed. " -@@ -1715,133 +1716,128 @@ msgstr "சாதன URIஐ உள்ள - - #: ../glade/NewPrinterWindow.glade.h:5 - #, fuzzy --msgid "HP Printer (HPLIP) via network" --msgstr "அச்சடிப்பி பெயர்" -- --#: ../glade/NewPrinterWindow.glade.h:6 --#, fuzzy - msgid "IPP Printer" - msgstr "அச்சடிப்பி பெயர்" - --#: ../glade/NewPrinterWindow.glade.h:7 -+#: ../glade/NewPrinterWindow.glade.h:6 - #, fuzzy - msgid "License Terms" - msgstr "அச்சடிப்பி பெயர்" - --#: ../glade/NewPrinterWindow.glade.h:8 -+#: ../glade/NewPrinterWindow.glade.h:7 - msgid "Location of the LPD network printer" - msgstr "LPD பிணைய அச்சடிப்பியின் இடம்" - --#: ../glade/NewPrinterWindow.glade.h:9 -+#: ../glade/NewPrinterWindow.glade.h:8 - msgid "Location of the network printer" - msgstr "பிணைய அச்சடிப்பியின் இடம்" - --#: ../glade/NewPrinterWindow.glade.h:10 -+#: ../glade/NewPrinterWindow.glade.h:9 - msgid "Location (optional)" - msgstr "இடம் (தேவையானால்)" - --#: ../glade/NewPrinterWindow.glade.h:11 -+#: ../glade/NewPrinterWindow.glade.h:10 - #, fuzzy - msgid "Network Printer" - msgstr "புதிய அச்சடிப்பி" - --#: ../glade/NewPrinterWindow.glade.h:12 -+#: ../glade/NewPrinterWindow.glade.h:11 - #, fuzzy - msgid "Note" - msgstr "நிலை" - --#: ../glade/NewPrinterWindow.glade.h:13 -+#: ../glade/NewPrinterWindow.glade.h:12 - #, fuzzy - msgid "Output Quality" - msgstr "நிலை" - --#: ../glade/NewPrinterWindow.glade.h:14 -+#: ../glade/NewPrinterWindow.glade.h:13 - msgid "Printer Name" - msgstr "அச்சடிப்பி பெயர்" - --#: ../glade/NewPrinterWindow.glade.h:15 -+#: ../glade/NewPrinterWindow.glade.h:14 - #, fuzzy - msgid "SMB Printer" - msgstr "அச்சடிப்பி பெயர்" - --#: ../glade/NewPrinterWindow.glade.h:16 -+#: ../glade/NewPrinterWindow.glade.h:15 - #, fuzzy - msgid "Select Driver" - msgstr "முன்னிருப்பு அச்சடிப்பி" - --#: ../glade/NewPrinterWindow.glade.h:17 -+#: ../glade/NewPrinterWindow.glade.h:16 - msgid "Settings of the serial port" - msgstr "தொடர்நிலை துறையின்அமைவுகள்" - --#: ../glade/NewPrinterWindow.glade.h:18 -+#: ../glade/NewPrinterWindow.glade.h:17 - msgid "smb://[workgroup/]server[:port]/printer" - msgstr "smb://[workgroup/]server[:port]/printer" - --#: ../glade/NewPrinterWindow.glade.h:19 -+#: ../glade/NewPrinterWindow.glade.h:18 - #, fuzzy - msgid "Choose Class Members" - msgstr "" - "கடவுச்சொல் தேவைப்படுகிறது\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:20 -+#: ../glade/NewPrinterWindow.glade.h:19 - #, fuzzy - msgid "Choose Driver" - msgstr "" - "கடவுச்சொல் தேவைப்படுகிறது\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:21 -+#: ../glade/NewPrinterWindow.glade.h:20 - #, fuzzy - msgid "Describe Printer" - msgstr "" - "கடவுச்சொல் தேவைப்படுகிறது\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:22 -+#: ../glade/NewPrinterWindow.glade.h:21 - #, fuzzy - msgid "Existing Settings" - msgstr "" - "கடவுச்சொல் தேவைப்படுகிறது\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:23 -+#: ../glade/NewPrinterWindow.glade.h:22 - #, fuzzy - msgid "Installable Options" - msgstr "" - "கடவுச்சொல் தேவைப்படுகிறது\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:24 -+#: ../glade/NewPrinterWindow.glade.h:23 - #, fuzzy - msgid "Select Device" - msgstr "" - "கடவுச்சொல் தேவைப்படுகிறது\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:25 -+#: ../glade/NewPrinterWindow.glade.h:24 - msgid "Baud Rate" - msgstr "Baud விகிதம்" - --#: ../glade/NewPrinterWindow.glade.h:26 -+#: ../glade/NewPrinterWindow.glade.h:25 - msgid "Browse..." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:27 -+#: ../glade/NewPrinterWindow.glade.h:26 - #, fuzzy - msgid "Comments..." - msgstr "குறிப்பு" - --#: ../glade/NewPrinterWindow.glade.h:28 -+#: ../glade/NewPrinterWindow.glade.h:27 - #, fuzzy - msgid "Connection" - msgstr "இணைக்கிறது" - --#: ../glade/NewPrinterWindow.glade.h:29 -+#: ../glade/NewPrinterWindow.glade.h:28 - msgid "Data Bits" - msgstr "தரவு பிட்கள்" - --#: ../glade/NewPrinterWindow.glade.h:30 -+#: ../glade/NewPrinterWindow.glade.h:29 - msgid "" - "Default\n" - "1200\n" -@@ -1863,7 +1859,7 @@ msgstr "" - "57600\n" - "115200" - --#: ../glade/NewPrinterWindow.glade.h:39 -+#: ../glade/NewPrinterWindow.glade.h:38 - msgid "" - "Default\n" - "8\n" -@@ -1873,7 +1869,7 @@ msgstr "" - "8\n" - "7" - --#: ../glade/NewPrinterWindow.glade.h:42 -+#: ../glade/NewPrinterWindow.glade.h:41 - msgid "" - "Default\n" - "None\n" -@@ -1885,7 +1881,7 @@ msgstr "" - "ஒற்றை\n" - "இரட்டை" - --#: ../glade/NewPrinterWindow.glade.h:46 -+#: ../glade/NewPrinterWindow.glade.h:45 - msgid "" - "Default\n" - "None\n" -@@ -1899,120 +1895,120 @@ msgstr "" - "RTS/CTS (வன்பொருள்)\n" - "DTR/DSR (வன்பொருள்)" - --#: ../glade/NewPrinterWindow.glade.h:51 -+#: ../glade/NewPrinterWindow.glade.h:50 - #: ../glade/PrinterPropertiesDialog.glade.h:35 - msgid "Description:" - msgstr "விளக்கம்:" - --#: ../glade/NewPrinterWindow.glade.h:52 ../troubleshoot/DeviceListed.py:40 -+#: ../glade/NewPrinterWindow.glade.h:51 ../troubleshoot/DeviceListed.py:40 - msgid "Device URI" - msgstr "சாதன URI" - --#: ../glade/NewPrinterWindow.glade.h:53 -+#: ../glade/NewPrinterWindow.glade.h:52 - msgid "Device description." - msgstr "சாதன விளக்கம்." - --#: ../glade/NewPrinterWindow.glade.h:54 -+#: ../glade/NewPrinterWindow.glade.h:53 - msgid "DirectJet" - msgstr "DirectJet" - --#: ../glade/NewPrinterWindow.glade.h:56 -+#: ../glade/NewPrinterWindow.glade.h:55 - #, fuzzy - msgid "Driver details" - msgstr "இயக்கிகள்" - --#: ../glade/NewPrinterWindow.glade.h:57 -+#: ../glade/NewPrinterWindow.glade.h:56 - msgid "Empty" - msgstr "வெறுமை" - --#: ../glade/NewPrinterWindow.glade.h:58 -+#: ../glade/NewPrinterWindow.glade.h:57 - msgid "Find _Queue..." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:59 -+#: ../glade/NewPrinterWindow.glade.h:58 - msgid "Flow Control" - msgstr "பாய்வு கட்டுப்பாடு" - --#: ../glade/NewPrinterWindow.glade.h:60 -+#: ../glade/NewPrinterWindow.glade.h:59 - msgid "" - "For the printer you have selected there are drivers available for download." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:61 -+#: ../glade/NewPrinterWindow.glade.h:60 - msgid "Free software" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:62 -+#: ../glade/NewPrinterWindow.glade.h:61 - msgid "Graphics:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:63 -+#: ../glade/NewPrinterWindow.glade.h:62 - #, fuzzy - msgid "Host:" - msgstr "புரவலன் பெயர்" - --#: ../glade/NewPrinterWindow.glade.h:64 -+#: ../glade/NewPrinterWindow.glade.h:63 - msgid "Human-readable description such as \"HP LaserJet with Duplexer\"" - msgstr "\"HP LaserJet Duplexerயுடன்\" போன்ற நாம் படிக்கும் படியான விளக்கம்" - --#: ../glade/NewPrinterWindow.glade.h:65 -+#: ../glade/NewPrinterWindow.glade.h:64 - msgid "Human-readable location such as \"Lab 1\"" - msgstr "\"Lab 1\" போன்ற நாம் படிக்கும் படியான இடம்" - --#: ../glade/NewPrinterWindow.glade.h:67 -+#: ../glade/NewPrinterWindow.glade.h:66 - msgid "LPD" - msgstr "LPD" - --#: ../glade/NewPrinterWindow.glade.h:68 -+#: ../glade/NewPrinterWindow.glade.h:67 - msgid "License:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:69 -+#: ../glade/NewPrinterWindow.glade.h:68 - #, fuzzy - msgid "Line art:" - msgstr "அச்சடிப்பி நிலை:" - --#: ../glade/NewPrinterWindow.glade.h:70 -+#: ../glade/NewPrinterWindow.glade.h:69 - #, fuzzy - msgid "Local Driver" - msgstr "உள்ளமை அச்சடிப்பிகள்" - --#: ../glade/NewPrinterWindow.glade.h:71 -+#: ../glade/NewPrinterWindow.glade.h:70 - #, fuzzy - msgid "Make and model:" - msgstr "தயாரிப்பு மற்றும் மாதிரி:" - --#: ../glade/NewPrinterWindow.glade.h:72 -+#: ../glade/NewPrinterWindow.glade.h:71 - msgid "Manufacturer" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:73 -+#: ../glade/NewPrinterWindow.glade.h:72 - #, fuzzy - msgid "Network" - msgstr "புதிய அச்சடிப்பி" - --#: ../glade/NewPrinterWindow.glade.h:75 -+#: ../glade/NewPrinterWindow.glade.h:74 - msgid "No, I do not accept this license" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:76 -+#: ../glade/NewPrinterWindow.glade.h:75 - msgid "Parity" - msgstr "சமன்" - --#: ../glade/NewPrinterWindow.glade.h:78 -+#: ../glade/NewPrinterWindow.glade.h:77 - msgid "Patented algorithms" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:79 -+#: ../glade/NewPrinterWindow.glade.h:78 - msgid "Photo:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:80 -+#: ../glade/NewPrinterWindow.glade.h:79 - #, fuzzy - msgid "Port number:" - msgstr "துறை எண்" - --#: ../glade/NewPrinterWindow.glade.h:81 -+#: ../glade/NewPrinterWindow.glade.h:80 - #, fuzzy - msgid "" - "PostScript Printer Description (PPD) files can often be found on the driver " -@@ -2023,82 +2019,82 @@ msgstr "" - "அச்சடிப்பியுடன் காணப்படுகிறது. PostScript அச்சடிப்பிகளில் எப்போதாவது விண்டோஸ்® இயக்கியின் பகுதியாக இருக்கிறது." - --#: ../glade/NewPrinterWindow.glade.h:82 -+#: ../glade/NewPrinterWindow.glade.h:81 - #, fuzzy - msgid "Printer model:" - msgstr "அச்சடிப்பி பெயர்" - --#: ../glade/NewPrinterWindow.glade.h:83 -+#: ../glade/NewPrinterWindow.glade.h:82 - msgid "Probe" - msgstr "ஆய்வு" - --#: ../glade/NewPrinterWindow.glade.h:84 -+#: ../glade/NewPrinterWindow.glade.h:83 - #, fuzzy - msgid "Prompt user if authentication is required" - msgstr "அங்கீகாரம்" - --#: ../glade/NewPrinterWindow.glade.h:85 -+#: ../glade/NewPrinterWindow.glade.h:84 - #, fuzzy - msgid "Provide PPD file" - msgstr "PPD கோப்பினை கொடுக்கவும்" - --#: ../glade/NewPrinterWindow.glade.h:86 -+#: ../glade/NewPrinterWindow.glade.h:85 - msgid "Queue:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:87 -+#: ../glade/NewPrinterWindow.glade.h:86 - msgid "SCSI" - msgstr "SCSI" - --#: ../glade/NewPrinterWindow.glade.h:88 -+#: ../glade/NewPrinterWindow.glade.h:87 - msgid "SMB" - msgstr "SMB" - --#: ../glade/NewPrinterWindow.glade.h:89 -+#: ../glade/NewPrinterWindow.glade.h:88 - msgid "Search for a printer driver to download" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:90 -+#: ../glade/NewPrinterWindow.glade.h:89 - #, fuzzy - msgid "Searching..." - msgstr "அளவிடல்:" - --#: ../glade/NewPrinterWindow.glade.h:91 -+#: ../glade/NewPrinterWindow.glade.h:90 - msgid "Select A File" - msgstr "ஒரு கோப்பினை தேர்ந்தெடுக்கவும்" - --#: ../glade/NewPrinterWindow.glade.h:92 -+#: ../glade/NewPrinterWindow.glade.h:91 - #, fuzzy - msgid "Select printer from database" - msgstr "தரவுத்தளத்திலிருந்து அச்சடிப்பியை தேர்ந்தெடுக்கவும்" - --#: ../glade/NewPrinterWindow.glade.h:93 -+#: ../glade/NewPrinterWindow.glade.h:92 - msgid "Serial" - msgstr "தொடர்" - --#: ../glade/NewPrinterWindow.glade.h:94 -+#: ../glade/NewPrinterWindow.glade.h:93 - #, fuzzy - msgid "Set authentication details now" - msgstr "அங்கீகாரம்" - --#: ../glade/NewPrinterWindow.glade.h:95 -+#: ../glade/NewPrinterWindow.glade.h:94 - msgid "Short name for this printer such as \"laserjet\"" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:96 -+#: ../glade/NewPrinterWindow.glade.h:95 - msgid "Supplier:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:97 -+#: ../glade/NewPrinterWindow.glade.h:96 - msgid "Support:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:98 -+#: ../glade/NewPrinterWindow.glade.h:97 - #, fuzzy - msgid "Text:" - msgstr "மறுஅமைவு" - --#: ../glade/NewPrinterWindow.glade.h:99 -+#: ../glade/NewPrinterWindow.glade.h:98 - msgid "" - "The foomatic printer database contains various manufacturer provided " - "PostScript Printer Description (PPD) files and also can generate PPD files " -@@ -2111,20 +2107,20 @@ msgstr "" - "அல்லாத) அச்சடிப்பிகளுக்கு PPD கோப்புகளை உருவாக்குகிறது. ஆனால் பொதுவான தயாரிப்பாளர்கள் " - "அச்சடிப்பிகளுக்கு குறிப்பிட்ட வசதிகளுக்கு PPD கோப்புகளை நன்கு அணுகுகிறது." - --#: ../glade/NewPrinterWindow.glade.h:100 -+#: ../glade/NewPrinterWindow.glade.h:99 - msgid "" - "These drivers do not come from your operating system supplier and will not " - "be covered by their commercial support. See the support and license terms " - "of the driver's supplier." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:101 -+#: ../glade/NewPrinterWindow.glade.h:100 - msgid "" - "This driver supports additional hardware that may be installed in the " - "printer." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:102 -+#: ../glade/NewPrinterWindow.glade.h:101 - msgid "" - "This is done by assuming that options with the same name do have the same " - "meaning. Settings of options that are not present in the new PPD will be " -@@ -2134,7 +2130,7 @@ msgstr "" - "இல்லாத விருப்பங்களின் அமைவுகள் இழக்கப்படும் மற்றும் புதிய PPD இல் உள்ள விருப்பங்கள் மட்டுமே " - "முன்னிருப்பாக அமைக்கப்படும்." - --#: ../glade/NewPrinterWindow.glade.h:103 -+#: ../glade/NewPrinterWindow.glade.h:102 - msgid "" - "This way all current option settings will be lost. The default settings of " - "the new PPD will be used. " -@@ -2142,43 +2138,43 @@ msgstr "" - "இந்த வழியில் அனைத்து நடப்பு விருப்ப அமைவுகளும் இழக்கப்படும். புதிய PPD ன் முன்னிருப்பு " - "அமைவுகள் பயன்படுத்தப்படும். " - --#: ../glade/NewPrinterWindow.glade.h:104 -+#: ../glade/NewPrinterWindow.glade.h:103 - msgid "Try to copy the option settings over from the old PPD. " - msgstr "பழைய PPDலிருந்து விருப்ப அமைவுகளை நகலெடுக்க முயற்சிக்கவும். " - --#: ../glade/NewPrinterWindow.glade.h:105 -+#: ../glade/NewPrinterWindow.glade.h:104 - msgid "URI:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:107 -+#: ../glade/NewPrinterWindow.glade.h:106 - msgid "Use the new PPD (Postscript Printer Description) as is." - msgstr "புதிய PPD (Postscript Printer Description) பயன்படுத்தவும்." - --#: ../glade/NewPrinterWindow.glade.h:109 -+#: ../glade/NewPrinterWindow.glade.h:108 - msgid "" - "With this choice no driver download will be performed. In the next steps a " - "locally installed driver will be selected." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:110 -+#: ../glade/NewPrinterWindow.glade.h:109 - #, fuzzy - msgid "Yes, I accept this license" - msgstr "பணிகளை ஏற்கிறது" - --#: ../glade/NewPrinterWindow.glade.h:111 -+#: ../glade/NewPrinterWindow.glade.h:110 - msgid "_Search" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:112 -+#: ../glade/NewPrinterWindow.glade.h:111 - msgid "_Verify..." - msgstr "சரிபார்க்கவும்... (_V)" - --#: ../glade/NewPrinterWindow.glade.h:113 -+#: ../glade/NewPrinterWindow.glade.h:112 - #: ../glade/PrinterPropertiesDialog.glade.h:128 - msgid "move left" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:114 -+#: ../glade/NewPrinterWindow.glade.h:113 - #: ../glade/PrinterPropertiesDialog.glade.h:129 - #, fuzzy - msgid "move right" -@@ -3121,7 +3117,7 @@ msgstr "" - msgid "Remember to load paper of type '%s' into the printer first." - msgstr "" - --#: ../troubleshoot/PrintTestPage.py:399 -+#: ../troubleshoot/PrintTestPage.py:416 - msgid "Error submitting test page" - msgstr "" - -@@ -3321,6 +3317,10 @@ msgid "Select default printer" - msgstr "முன்னிருப்பு அச்சடிப்பி ஆக்கவும்" - - #, fuzzy -+#~ msgid "HP Printer (HPLIP) via network" -+#~ msgstr "அச்சடிப்பி பெயர்" -+ -+#, fuzzy - #~ msgid "Not Found" - #~ msgstr "காணவில்லை" - -diff -up system-config-printer-1.1.5/po/te.po.git-1.1.x system-config-printer-1.1.5/po/te.po ---- system-config-printer-1.1.5/po/te.po.git-1.1.x 2009-03-03 22:21:46.000000000 +0000 -+++ system-config-printer-1.1.5/po/te.po 2009-03-10 17:43:43.000000000 +0000 -@@ -8,7 +8,7 @@ msgid "" - msgstr "" - "Project-Id-Version: te\n" - "Report-Msgid-Bugs-To: https://bugzilla.redhat.com/bugzilla\n" --"POT-Creation-Date: 2009-03-02 23:22+0000\n" -+"POT-Creation-Date: 2009-03-10 16:51+0000\n" - "PO-Revision-Date: 2007-01-16 11:47+0530\n" - "Last-Translator: Sree Ganesh \n" - "Language-Team: Telugu \n" -@@ -54,11 +54,11 @@ msgstr "" - msgid "Enter IP address" - msgstr "ముద్రకం పేరు" - --#: ../authconn.py:35 ../glade/NewPrinterWindow.glade.h:108 -+#: ../authconn.py:35 ../glade/NewPrinterWindow.glade.h:107 - msgid "Username:" - msgstr "వినియోగదారునిపేరు:" - --#: ../authconn.py:36 ../glade/NewPrinterWindow.glade.h:77 -+#: ../authconn.py:36 ../glade/NewPrinterWindow.glade.h:76 - msgid "Password:" - msgstr "అనుమతిపదం:" - -@@ -67,7 +67,7 @@ msgstr "అనుమతిపదం:" - msgid "Domain:" - msgstr "స్థానం:" - --#: ../authconn.py:46 -+#: ../authconn.py:46 ../authconn.py:409 - #, fuzzy - msgid "Authentication" - msgstr "ప్రామాణీకరణ" -@@ -76,44 +76,53 @@ msgstr "ప్రామాణీక - msgid "Remember password" - msgstr "" - --#: ../authconn.py:211 ../authconn.py:232 -+#: ../authconn.py:208 -+#, python-format -+msgid "Unauthorized request (%s)" -+msgstr "" -+ -+#: ../authconn.py:209 -+msgid "You are not authorized to carry out therequested action." -+msgstr "" -+ -+#: ../authconn.py:212 ../authconn.py:233 - #, fuzzy - msgid "Operation canceled" - msgstr "కార్య విధానం:" - --#: ../authconn.py:253 -+#: ../authconn.py:250 - #, fuzzy, python-format - msgid "CUPS server error (%s)" - msgstr "CUPS సర్వరుదోషం" - --#: ../authconn.py:255 ../errordialogs.py:57 --#: ../troubleshoot/PrintTestPage.py:400 -+#: ../authconn.py:252 ../errordialogs.py:56 ../errordialogs.py:70 -+msgid "CUPS server error" -+msgstr "CUPS సర్వరుదోషం" -+ -+#: ../authconn.py:261 ../errordialogs.py:57 -+#: ../troubleshoot/PrintTestPage.py:417 - #, python-format - msgid "There was an error during the CUPS operation: '%s'." - msgstr "CUPS అమలులో ఒక దోషం: '%s'." - --#: ../authconn.py:258 -+#: ../authconn.py:264 - msgid "Retry" - msgstr "" - --#: ../authconn.py:379 ../authconn.py:381 ../errordialogs.py:65 ../pysmb.py:75 -+#: ../authconn.py:385 ../authconn.py:387 ../errordialogs.py:65 ../pysmb.py:75 - #: ../pysmb.py:77 - msgid "Not authorized" - msgstr "అధికారం లేదు" - --#: ../authconn.py:382 ../pysmb.py:78 -+#: ../authconn.py:388 ../pysmb.py:78 - msgid "The password may be incorrect." - msgstr "అనుమతి పదం తప్పుకావచ్చు" - --#: ../authconn.py:400 -+#: ../authconn.py:407 - #, fuzzy, python-format - msgid "Authentication (%s)" - msgstr "ప్రామాణీకరణ" - --#: ../errordialogs.py:56 ../errordialogs.py:70 --msgid "CUPS server error" --msgstr "CUPS సర్వరుదోషం" -- - #: ../errordialogs.py:66 - msgid "" - "The password may be incorrect, or the server may be configured to deny " -@@ -140,7 +149,7 @@ msgstr "నవీకరణ అవసర - msgid "Server error" - msgstr "సర్వరు దోషం" - --#: ../errordialogs.py:82 ../system-config-printer.py:1219 -+#: ../errordialogs.py:82 ../system-config-printer.py:1223 - msgid "Not connected" - msgstr "అనుసంధించబడలేదు" - -@@ -162,7 +171,7 @@ msgstr "" - msgid "_New Group from Selection" - msgstr "" - --#: ../GroupsPane.py:98 ../system-config-printer.py:393 -+#: ../GroupsPane.py:98 ../system-config-printer.py:397 - #, fuzzy - msgid "_Rename" - msgstr "వినియోగదారునిపేరు:" -@@ -232,7 +241,7 @@ msgid "Document" - msgstr "వ్యాఖ్య" - - #: ../jobviewer.py:212 ../my-default-printer.py:153 --#: ../system-config-printer.py:366 ../system-config-printer.py:1367 -+#: ../system-config-printer.py:370 ../system-config-printer.py:1371 - #: ../troubleshoot/PrintTestPage.py:84 - msgid "Printer" - msgstr "ముద్రకం" -@@ -271,8 +280,8 @@ msgstr "" - - #: ../jobviewer.py:386 ../jobviewer.py:451 ../jobviewer.py:452 - #: ../jobviewer.py:492 ../jobviewer.py:600 ../jobviewer.py:727 --#: ../jobviewer.py:1196 ../jobviewer.py:1222 ../system-config-printer.py:2546 --#: ../glade/NewPrinterWindow.glade.h:106 -+#: ../jobviewer.py:1196 ../jobviewer.py:1222 ../system-config-printer.py:2556 -+#: ../glade/NewPrinterWindow.glade.h:105 - #: ../troubleshoot/ChooseNetworkPrinter.py:101 - #: ../troubleshoot/ChooseNetworkPrinter.py:102 - #: ../troubleshoot/ChooseNetworkPrinter.py:105 -@@ -363,12 +372,12 @@ msgstr "" - msgid "Pending" - msgstr "ముద్రించు" - --#: ../jobviewer.py:591 ../system-config-printer.py:186 -+#: ../jobviewer.py:591 ../system-config-printer.py:190 - #: ../troubleshoot/PrintTestPage.py:43 - msgid "Processing" - msgstr "విధానం" - --#: ../jobviewer.py:592 ../system-config-printer.py:188 -+#: ../jobviewer.py:592 ../system-config-printer.py:192 - #: ../troubleshoot/PrintTestPage.py:44 - msgid "Stopped" - msgstr "ఆగింది" -@@ -487,8 +496,8 @@ msgstr "" - msgid "_Set Default" - msgstr "సిద్ధం" - --#: ../my-default-printer.py:158 ../system-config-printer.py:423 --#: ../system-config-printer.py:3660 ../troubleshoot/ChooseNetworkPrinter.py:37 -+#: ../my-default-printer.py:158 ../system-config-printer.py:427 -+#: ../system-config-printer.py:3675 ../troubleshoot/ChooseNetworkPrinter.py:37 - #: ../troubleshoot/ChoosePrinter.py:38 - #, fuzzy - msgid "Location" -@@ -522,7 +531,7 @@ msgstr "సిద్ధ ముద్ర - msgid "Authenticated" - msgstr "ప్రామాణీకరణ" - --#: ../ppdippstr.py:50 ../system-config-printer.py:6259 -+#: ../ppdippstr.py:50 ../system-config-printer.py:6207 - #, fuzzy - msgid "None" - msgstr "ఏదీకాదు" -@@ -741,132 +750,132 @@ msgstr "" - msgid "1200 dpi, photo, black + color cartridge, photo paper" - msgstr "" - --#: ../system-config-printer.py:127 -+#: ../system-config-printer.py:131 - msgid "To do this, select System->Administration->Firewall from the main menu." - msgstr "" - --#: ../system-config-printer.py:185 -+#: ../system-config-printer.py:189 - msgid "Idle" - msgstr "Idle" - --#: ../system-config-printer.py:187 -+#: ../system-config-printer.py:191 - msgid "Busy" - msgstr "వత్తిడి" - --#: ../system-config-printer.py:372 ../system-config-printer.py:1373 -+#: ../system-config-printer.py:376 ../system-config-printer.py:1377 - #, fuzzy - msgid "Class" - msgstr "కొత్త తరాగతొ" - --#: ../system-config-printer.py:399 -+#: ../system-config-printer.py:403 - #, fuzzy - msgid "Set As De_fault" - msgstr "సిద్ధం" - --#: ../system-config-printer.py:403 -+#: ../system-config-printer.py:407 - #, fuzzy - msgid "_Create class" - msgstr "తరగతులను తొలగించు" - --#: ../system-config-printer.py:405 -+#: ../system-config-printer.py:409 - #, fuzzy - msgid "View Print _Queue" - msgstr "కొత్త ముద్రకం" - --#: ../system-config-printer.py:407 -+#: ../system-config-printer.py:411 - msgid "_Add to Group" - msgstr "" - --#: ../system-config-printer.py:409 -+#: ../system-config-printer.py:413 - msgid "Save Results as _Group" - msgstr "" - --#: ../system-config-printer.py:411 -+#: ../system-config-printer.py:415 - msgid "Save Filter as _Search Group" - msgstr "" - --#: ../system-config-printer.py:415 -+#: ../system-config-printer.py:419 - #, fuzzy - msgid "E_nabled" - msgstr "సాధ్యం" - --#: ../system-config-printer.py:417 -+#: ../system-config-printer.py:421 - #, fuzzy - msgid "_Shared" - msgstr "భాగస్వామ్యం" - --#: ../system-config-printer.py:421 ../troubleshoot/ChooseNetworkPrinter.py:35 -+#: ../system-config-printer.py:425 ../troubleshoot/ChooseNetworkPrinter.py:35 - #: ../troubleshoot/ChoosePrinter.py:36 ../troubleshoot/DeviceListed.py:36 - msgid "Name" - msgstr "పేరు" - --#: ../system-config-printer.py:422 -+#: ../system-config-printer.py:426 - #, fuzzy - msgid "Description" - msgstr "వర్ణన:" - --#: ../system-config-printer.py:424 -+#: ../system-config-printer.py:428 - msgid "Manufacturer / Model" - msgstr "" - - #. Printer state reasons list --#: ../system-config-printer.py:499 -+#: ../system-config-printer.py:503 - msgid "Message" - msgstr "" - --#: ../system-config-printer.py:534 -+#: ../system-config-printer.py:538 - #, fuzzy - msgid "Problems?" - msgstr "ప్రోబే" - --#: ../system-config-printer.py:637 ../system-config-printer.py:639 -+#: ../system-config-printer.py:641 ../system-config-printer.py:643 - msgid "Members of this class" - msgstr "ఈ తరగతి సభ్యులు" - --#: ../system-config-printer.py:638 ../system-config-printer.py:640 -+#: ../system-config-printer.py:642 ../system-config-printer.py:644 - msgid "Others" - msgstr "ఇతరులు" - --#: ../system-config-printer.py:641 -+#: ../system-config-printer.py:645 - msgid "Devices" - msgstr "సాధనాలు" - --#: ../system-config-printer.py:642 -+#: ../system-config-printer.py:646 - #, fuzzy - msgid "Connections" - msgstr "అనుసంధిస్తోంది" - --#: ../system-config-printer.py:643 -+#: ../system-config-printer.py:647 - msgid "Makes" - msgstr "తయారీలు" - --#: ../system-config-printer.py:644 -+#: ../system-config-printer.py:648 - msgid "Models" - msgstr "మాదిరులు" - --#: ../system-config-printer.py:645 -+#: ../system-config-printer.py:649 - msgid "Drivers" - msgstr "డ్రైవర్లు" - --#: ../system-config-printer.py:646 ../glade/NewPrinterWindow.glade.h:55 -+#: ../system-config-printer.py:650 ../glade/NewPrinterWindow.glade.h:54 - msgid "Downloadable Drivers" - msgstr "" - --#: ../system-config-printer.py:647 -+#: ../system-config-printer.py:651 - msgid "Users" - msgstr "వినియోగదారులు" - --#: ../system-config-printer.py:682 -+#: ../system-config-printer.py:686 - msgid "Automatic rotation" - msgstr "" - --#: ../system-config-printer.py:989 -+#: ../system-config-printer.py:993 - #, fuzzy, python-format - msgid "Printer Properties - '%s' on %s" - msgstr "ముద్రణా ఐచ్ఛికాలు" - - #. The Conflict button was pressed. --#: ../system-config-printer.py:996 -+#: ../system-config-printer.py:1000 - #, fuzzy - msgid "" - "There are conflicting options.\n" -@@ -877,81 +886,81 @@ msgstr "" - "మార్పులు మాత్రమే అనువర్తించ బడతాయి\n" - "ఈ విభేదకాలు తొలగించిన తరువాత మాత్రమే." - --#: ../system-config-printer.py:1214 -+#: ../system-config-printer.py:1218 - #, python-format - msgid "Printer configuration - %s" - msgstr "ముద్రక ఆకృతీకరణ - %s" - --#: ../system-config-printer.py:1217 -+#: ../system-config-printer.py:1221 - #, python-format - msgid "Connected to %s" - msgstr "%sకి అనుసంధించబడింది" - - #. Update our copy of the printer's settings. --#: ../system-config-printer.py:1257 ../system-config-printer.py:2042 -+#: ../system-config-printer.py:1261 ../system-config-printer.py:2046 - msgid "obtaining queue details" - msgstr "" - --#: ../system-config-printer.py:1295 -+#: ../system-config-printer.py:1299 - msgid "Remove from Group" - msgstr "" - --#: ../system-config-printer.py:1361 -+#: ../system-config-printer.py:1365 - #, fuzzy - msgid "Network printer (discovered)" - msgstr "కొత్త ముద్రకం" - --#: ../system-config-printer.py:1364 -+#: ../system-config-printer.py:1368 - msgid "Network class (discovered)" - msgstr "" - --#: ../system-config-printer.py:1370 ../system-config-printer.py:5524 --#: ../system-config-printer.py:5594 ../system-config-printer.py:5596 -+#: ../system-config-printer.py:1374 ../system-config-printer.py:5519 -+#: ../system-config-printer.py:5589 ../system-config-printer.py:5591 - msgid "Fax" - msgstr "" - --#: ../system-config-printer.py:1376 ../system-config-printer.py:1382 -+#: ../system-config-printer.py:1380 ../system-config-printer.py:1386 - #: ../troubleshoot/LocalOrRemote.py:30 - #, fuzzy - msgid "Network printer" - msgstr "కొత్త ముద్రకం" - --#: ../system-config-printer.py:1379 -+#: ../system-config-printer.py:1383 - #, fuzzy - msgid "Network print share" - msgstr "కొత్త ముద్రకం" - --#: ../system-config-printer.py:1508 ../glade/ConnectingDialog.glade.h:2 -+#: ../system-config-printer.py:1512 ../glade/ConnectingDialog.glade.h:2 - #, no-c-format, python-format - msgid "Opening connection to %s" - msgstr "" - --#: ../system-config-printer.py:1887 -+#: ../system-config-printer.py:1891 - msgid "Installable Options" - msgstr "సంస్థాపించగల ఐచ్ఛికాలు" - --#: ../system-config-printer.py:1888 -+#: ../system-config-printer.py:1892 - #: ../glade/PrinterPropertiesDialog.glade.h:109 - msgid "Printer Options" - msgstr "ముద్రణా ఐచ్ఛికాలు" - --#: ../system-config-printer.py:1924 -+#: ../system-config-printer.py:1928 - #, python-format - msgid "modifying class %s" - msgstr "" - --#: ../system-config-printer.py:1926 ../system-config-printer.py:3019 --#: ../system-config-printer.py:3044 ../system-config-printer.py:6547 --#: ../system-config-printer.py:6559 ../system-config-printer.py:6581 -+#: ../system-config-printer.py:1930 ../system-config-printer.py:3037 -+#: ../system-config-printer.py:3062 ../system-config-printer.py:6495 -+#: ../system-config-printer.py:6507 ../system-config-printer.py:6529 - #, fuzzy, python-format - msgid "modifying printer %s" - msgstr "ముద్రకాలను ఆకృతీకరించు" - --#: ../system-config-printer.py:1941 -+#: ../system-config-printer.py:1945 - msgid "This will delete this class!" - msgstr "ఇది ఈ తరగతిని తొలగిస్తుంది!" - --#: ../system-config-printer.py:1942 -+#: ../system-config-printer.py:1946 - msgid "Proceed anyway?" - msgstr "ఏమైనప్పటికీ కొనసాగించు?" - -@@ -959,69 +968,69 @@ msgstr "ఏమైనప్పటిక - #. but we have never fetched the server settings to see whether - #. the server is publishing shared printers. Fetch the settings - #. now so that we can update the "not published" label if necessary. --#: ../system-config-printer.py:2030 ../system-config-printer.py:3203 -+#: ../system-config-printer.py:2034 ../system-config-printer.py:3221 - #, fuzzy - msgid "fetching server settings" - msgstr "ప్రాధమిక సర్వరు అమర్పులు" - --#: ../system-config-printer.py:2100 -+#: ../system-config-printer.py:2104 - #, fuzzy - msgid "Set Default Printer" - msgstr "సిద్ధ ముద్రకాన్ని చేయి" - --#: ../system-config-printer.py:2102 -+#: ../system-config-printer.py:2106 - msgid "Do you want to set this as the system-wide default printer?" - msgstr "" - --#: ../system-config-printer.py:2104 -+#: ../system-config-printer.py:2108 - #, fuzzy - msgid "Set as the _system-wide default printer" - msgstr "ఇది సిద్ధ ముద్రకం" - --#: ../system-config-printer.py:2106 -+#: ../system-config-printer.py:2110 - msgid "_Clear my personal default setting" - msgstr "" - --#: ../system-config-printer.py:2107 -+#: ../system-config-printer.py:2111 - #, fuzzy - msgid "Set as my _personal default printer" - msgstr "సిద్ధ ముద్రకాన్ని చేయి" - --#: ../system-config-printer.py:2112 -+#: ../system-config-printer.py:2116 - #, fuzzy - msgid "setting default printer" - msgstr "సిద్ధ ముద్రకాన్ని చేయి" - --#: ../system-config-printer.py:2169 -+#: ../system-config-printer.py:2173 - #, fuzzy - msgid "printing test page" - msgstr "పాఠ పుటను ముద్రించు" - --#: ../system-config-printer.py:2182 ../system-config-printer.py:2217 --#: ../system-config-printer.py:5418 -+#: ../system-config-printer.py:2186 ../system-config-printer.py:2221 -+#: ../system-config-printer.py:5413 - msgid "Not possible" - msgstr "సాధ్యంకాదు" - --#: ../system-config-printer.py:2183 ../system-config-printer.py:2218 -+#: ../system-config-printer.py:2187 ../system-config-printer.py:2222 - msgid "" - "The remote server did not accept the print job, most likely because the " - "printer is not shared." - msgstr "ఈ రిమోట్ సర్వరు ముద్రక పనిని మద్దతివ్వటంలేదు, సాధారణంగా ముద్రకం పంచుకోబడకపోవటంవల్ల కావచ్చు" - --#: ../system-config-printer.py:2195 ../system-config-printer.py:2210 -+#: ../system-config-printer.py:2199 ../system-config-printer.py:2214 - msgid "Submitted" - msgstr "సమర్పించబడింది" - --#: ../system-config-printer.py:2196 -+#: ../system-config-printer.py:2200 - #, python-format - msgid "Test page submitted as job %d" - msgstr "ఉద్యోగంగా పరిశీలనా పుట సమర్పించబదింది %d" - --#: ../system-config-printer.py:2203 -+#: ../system-config-printer.py:2207 - msgid "sending maintenance command" - msgstr "" - --#: ../system-config-printer.py:2211 -+#: ../system-config-printer.py:2215 - #, fuzzy, python-format - msgid "Maintenance command submitted as job %d" - msgstr "ఉద్యోగంగా పరిశీలనా పుట సమర్పించబదింది %d" -@@ -1029,76 +1038,76 @@ msgstr "ఉద్యోగంగా ప - #. The underlying cupsGetPPD2() function returned NULL without - #. setting an IPP error, so it'll be something like a failed - #. connection. --#: ../system-config-printer.py:2285 ../system-config-printer.py:2381 -+#: ../system-config-printer.py:2289 ../system-config-printer.py:2385 - msgid "Error" - msgstr "" - --#: ../system-config-printer.py:2286 -+#: ../system-config-printer.py:2290 - #, fuzzy - msgid "There was a problem connecting to the CUPS server." - msgstr "CUPS అమలులో ఒక దోషం: '%s'." - --#: ../system-config-printer.py:2382 -+#: ../system-config-printer.py:2386 - #, python-format - msgid "Option '%s' has value '%s' and cannot be edited." - msgstr "" - --#: ../system-config-printer.py:2466 -+#: ../system-config-printer.py:2476 - msgid "Marker levels are not reported for this printer." - msgstr "" - --#: ../system-config-printer.py:2763 -+#: ../system-config-printer.py:2773 - #, fuzzy - msgid "Cannot Rename" - msgstr "వినియోగదారునిపేరు:" - --#: ../system-config-printer.py:2764 -+#: ../system-config-printer.py:2774 - msgid "There are queued jobs." - msgstr "" - --#: ../system-config-printer.py:2822 -+#: ../system-config-printer.py:2840 - #, fuzzy - msgid "renaming printer" - msgstr "ముద్రకాలను ఆకృతీకరించు" - - #. for classes make sure all members - #. will get added --#: ../system-config-printer.py:2907 -+#: ../system-config-printer.py:2925 - #, fuzzy - msgid "copying printer" - msgstr "ముద్రకాలను ఆకృతీకరించు" - --#: ../system-config-printer.py:2971 -+#: ../system-config-printer.py:2989 - #, fuzzy, python-format - msgid "Really delete class '%s'?" - msgstr "నిజంగా %s తరగతిని తొలగించాలా?" - --#: ../system-config-printer.py:2973 -+#: ../system-config-printer.py:2991 - #, fuzzy, python-format - msgid "Really delete printer '%s'?" - msgstr "నిజంగా %s ముద్రకాన్ని తొలగించాలా?" - --#: ../system-config-printer.py:2975 -+#: ../system-config-printer.py:2993 - #, fuzzy - msgid "Really delete selected destinations?" - msgstr "నిజంగా %s ముద్రకాన్ని తొలగించాలా?" - --#: ../system-config-printer.py:2996 -+#: ../system-config-printer.py:3014 - #, fuzzy, python-format - msgid "deleting printer %s" - msgstr "ముద్రకాలను ఆకృతీకరించు" - --#: ../system-config-printer.py:3070 -+#: ../system-config-printer.py:3088 - msgid "Publish Shared Printers" - msgstr "" - --#: ../system-config-printer.py:3071 -+#: ../system-config-printer.py:3089 - msgid "" - "Shared printers are not available to other people unless the 'Publish shared " - "printers' option is enabled in the server settings." - msgstr "" - --#: ../system-config-printer.py:3264 -+#: ../system-config-printer.py:3282 - #, fuzzy - msgid "modifying server settings" - msgstr "ప్రాధమిక సర్వరు అమర్పులు" -@@ -1109,105 +1118,105 @@ msgstr "ప్రాధమిక స - #. be unblocked. Unfortunately, this is not yet possible - #. (bug #440469). However, we can display a dialog to suggest - #. that now might be a good time to review the firewall settings. --#: ../system-config-printer.py:3289 -+#: ../system-config-printer.py:3307 - msgid "Review Firewall" - msgstr "" - --#: ../system-config-printer.py:3290 -+#: ../system-config-printer.py:3308 - msgid "" - "You may need to adjust the firewall to allow network printing to this " - "computer." - msgstr "" - --#: ../system-config-printer.py:3623 -+#: ../system-config-printer.py:3638 - msgid "Browsing not available (pysmbc not installed)" - msgstr "" - - #. SMB list columns --#: ../system-config-printer.py:3629 -+#: ../system-config-printer.py:3644 - msgid "Share" - msgstr "భాగం" - --#: ../system-config-printer.py:3635 -+#: ../system-config-printer.py:3650 - msgid "Comment" - msgstr "వ్యాఖ్య" - - #. IPP list columns --#: ../system-config-printer.py:3654 -+#: ../system-config-printer.py:3669 - msgid "Queue" - msgstr "" - --#: ../system-config-printer.py:3668 -+#: ../system-config-printer.py:3683 - #, fuzzy - msgid "" - "PostScript Printer Description files (*.ppd, *.PPD, *.ppd.gz, *.PPD.gz, *." - "PPD.GZ)" - msgstr "పోస్టుస్క్రిప్టు ముద్రక వర్ణన (*.ppd[.gz])" - --#: ../system-config-printer.py:3677 -+#: ../system-config-printer.py:3692 - msgid "All files (*)" - msgstr "" - --#: ../system-config-printer.py:3713 ../system-config-printer.py:5970 --#: ../system-config-printer.py:6008 ../applet.py:124 -+#: ../system-config-printer.py:3728 ../system-config-printer.py:5918 -+#: ../system-config-printer.py:5956 ../applet.py:124 - #, fuzzy - msgid "Search" - msgstr "ముద్రకం కోసం కొత్త పేరు" - --#: ../system-config-printer.py:3736 ../system-config-printer.py:3760 --#: ../glade/NewPrinterWindow.glade.h:74 -+#: ../system-config-printer.py:3751 ../system-config-printer.py:3775 -+#: ../glade/NewPrinterWindow.glade.h:73 - msgid "New Printer" - msgstr "కొత్త ముద్రకం" - --#: ../system-config-printer.py:3747 -+#: ../system-config-printer.py:3762 - msgid "New Class" - msgstr "కొత్త తరాగతొ" - --#: ../system-config-printer.py:3752 -+#: ../system-config-printer.py:3767 - msgid "Change Device URI" - msgstr "URIసాధనాని మార్చు" - --#: ../system-config-printer.py:3758 -+#: ../system-config-printer.py:3773 - msgid "Change Driver" - msgstr "డ్రైవును మార్చు" - --#: ../system-config-printer.py:3927 ../system-config-printer.py:3993 --#: ../system-config-printer.py:4289 ../system-config-printer.py:4487 --#: ../system-config-printer.py:5772 ../system-config-printer.py:5995 -+#: ../system-config-printer.py:3942 ../system-config-printer.py:4008 -+#: ../system-config-printer.py:4304 ../system-config-printer.py:4502 -+#: ../system-config-printer.py:5762 ../system-config-printer.py:5943 - msgid "Searching" - msgstr "" - --#: ../system-config-printer.py:3928 -+#: ../system-config-printer.py:3943 - #, fuzzy - msgid "Searching for downloadable drivers" - msgstr "ముద్రకం కోసం కొత్త పేరు" - --#: ../system-config-printer.py:3994 ../system-config-printer.py:4290 -+#: ../system-config-printer.py:4009 ../system-config-printer.py:4305 - msgid "Searching for drivers" - msgstr "" - --#: ../system-config-printer.py:4488 ../system-config-printer.py:5773 -+#: ../system-config-printer.py:4503 ../system-config-printer.py:5763 - #, fuzzy - msgid "Searching for printers" - msgstr "ముద్రకం కోసం కొత్త పేరు" - --#: ../system-config-printer.py:4497 -+#: ../system-config-printer.py:4512 - #, fuzzy - msgid "fetching device list" - msgstr "ప్రాధమిక సర్వరు అమర్పులు" - - #. Tell the user why he needs the plugin --#: ../system-config-printer.py:4579 -+#: ../system-config-printer.py:4594 - msgid "For this printer a proprietary driver plugin from HP is available.\n" - msgstr "" - --#: ../system-config-printer.py:4582 -+#: ../system-config-printer.py:4597 - msgid "" - "The installation of the plugin is required for your printer to work.\n" - "\n" - msgstr "" - --#: ../system-config-printer.py:4585 -+#: ../system-config-printer.py:4600 - msgid "" - "Installing the plugin is optional, it completes or enhances the " - "functionality\n" -@@ -1215,224 +1224,220 @@ msgid "" - "\n" - msgstr "" - --#: ../system-config-printer.py:4589 -+#: ../system-config-printer.py:4604 - msgid "The plugin provides the following features:\n" - msgstr "" - --#: ../system-config-printer.py:4592 -+#: ../system-config-printer.py:4607 - msgid " - Printing support\n" - msgstr "" - --#: ../system-config-printer.py:4595 -+#: ../system-config-printer.py:4610 - msgid " - Faster printing\n" - msgstr "" - --#: ../system-config-printer.py:4598 -+#: ../system-config-printer.py:4613 - msgid " - Better printout quality\n" - msgstr "" - --#: ../system-config-printer.py:4601 -+#: ../system-config-printer.py:4616 - msgid " - Extra printing features\n" - msgstr "" - --#: ../system-config-printer.py:4604 -+#: ../system-config-printer.py:4619 - msgid " - Scanning support\n" - msgstr "" - --#: ../system-config-printer.py:4607 -+#: ../system-config-printer.py:4622 - msgid " - Faster scanning\n" - msgstr "" - --#: ../system-config-printer.py:4610 -+#: ../system-config-printer.py:4625 - msgid " - Better scanning image quality\n" - msgstr "" - --#: ../system-config-printer.py:4613 -+#: ../system-config-printer.py:4628 - msgid " - Faxing support\n" - msgstr "" - --#: ../system-config-printer.py:4616 -+#: ../system-config-printer.py:4631 - msgid " - Extra fax features\n" - msgstr "" - --#: ../system-config-printer.py:4619 -+#: ../system-config-printer.py:4634 - msgid " - Better Input/Output support\n" - msgstr "" - --#: ../system-config-printer.py:4622 -+#: ../system-config-printer.py:4637 - msgid " - Extra user interface features\n" - msgstr "" - --#: ../system-config-printer.py:4625 -+#: ../system-config-printer.py:4640 - msgid " - Other extra features\n" - msgstr "" - --#: ../system-config-printer.py:4630 -+#: ../system-config-printer.py:4645 - #, fuzzy - msgid "Install plugin" - msgstr "సంస్థాపించగల ఐచ్ఛికాలు" - --#: ../system-config-printer.py:4631 -+#: ../system-config-printer.py:4646 - #, fuzzy - msgid "Do not set up printer" - msgstr "ముద్రకాన్ని కాపీచేయి" - --#: ../system-config-printer.py:4632 -+#: ../system-config-printer.py:4647 - msgid "Set up without plugin" - msgstr "" - --#: ../system-config-printer.py:4634 ../troubleshoot/PrintTestPage.py:118 -+#: ../system-config-printer.py:4649 ../troubleshoot/PrintTestPage.py:118 - msgid "Yes" - msgstr "" - --#: ../system-config-printer.py:4635 ../troubleshoot/PrintTestPage.py:119 -+#: ../system-config-printer.py:4650 ../troubleshoot/PrintTestPage.py:119 - msgid "No" - msgstr "" - --#: ../system-config-printer.py:4809 ../system-config-printer.py:4813 -+#: ../system-config-printer.py:4824 ../system-config-printer.py:4828 - msgid " (Current)" - msgstr " (ప్రస్తుతం)" - --#: ../system-config-printer.py:4845 --msgid "HP Printer (HPLIP)" --msgstr "" -- --#: ../system-config-printer.py:4886 -+#: ../system-config-printer.py:4881 - msgid "Other" - msgstr "ఇతరం" - - #. device-info - #. PhysicalDevice obj - #. Separator? --#: ../system-config-printer.py:4902 -+#: ../system-config-printer.py:4897 - #, fuzzy - msgid "Network Printer" - msgstr "కొత్త ముద్రకం" - --#: ../system-config-printer.py:4906 -+#: ../system-config-printer.py:4901 - #, fuzzy - msgid "Find Network Printer" - msgstr "కొత్త ముద్రకం" - --#: ../system-config-printer.py:4979 ../system-config-printer.py:5376 -+#: ../system-config-printer.py:4974 ../system-config-printer.py:5371 - msgid "Scanning..." - msgstr "" - --#: ../system-config-printer.py:5034 ../system-config-printer.py:5798 -+#: ../system-config-printer.py:5029 - #, fuzzy - msgid "No Print Shares" - msgstr "కొత్త ముద్రకం" - --#: ../system-config-printer.py:5035 -+#: ../system-config-printer.py:5030 - msgid "" - "There were no print shares found. Please check that the Samba service is " - "marked as trusted in your firewall configuration." - msgstr "" - --#: ../system-config-printer.py:5296 ../system-config-printer.py:5357 -+#: ../system-config-printer.py:5291 ../system-config-printer.py:5352 - msgid "Print Share Verified" - msgstr "" - --#: ../system-config-printer.py:5297 ../system-config-printer.py:5358 -+#: ../system-config-printer.py:5292 ../system-config-printer.py:5353 - msgid "This print share is accessible." - msgstr "ఈ ముద్రక భాగస్వామ్యం అందుబాటులో ఉంది." - --#: ../system-config-printer.py:5302 ../system-config-printer.py:5362 -+#: ../system-config-printer.py:5297 ../system-config-printer.py:5357 - msgid "This print share is not accessible." - msgstr "ఈ ముద్రక భాగస్వామ్యం అందుబాటులోలేదు." - --#: ../system-config-printer.py:5305 -+#: ../system-config-printer.py:5300 - #, fuzzy - msgid "Print Share Inaccessible" - msgstr "ఈ ముద్రక భాగస్వామ్యం అందుబాటులో ఉంది." - --#: ../system-config-printer.py:5361 -+#: ../system-config-printer.py:5356 - msgid "Inaccessible" - msgstr "అందుబాటులోలేదు" - --#: ../system-config-printer.py:5419 -+#: ../system-config-printer.py:5414 - #, fuzzy, python-format - msgid "It is not possible to obtain a list of queues from '%s'." - msgstr "CUPS అమలులో ఒక దోషం: '%s'." - --#: ../system-config-printer.py:5421 -+#: ../system-config-printer.py:5416 - msgid "" - "Obtaining a list of queues is a CUPS extension to IPP. Network printers do " - "not support it." - msgstr "" - --#: ../system-config-printer.py:5424 -+#: ../system-config-printer.py:5419 - msgid "No queues" - msgstr "" - --#: ../system-config-printer.py:5425 -+#: ../system-config-printer.py:5420 - msgid "There are no queues available." - msgstr "" - --#: ../system-config-printer.py:5516 -+#: ../system-config-printer.py:5511 - msgid "Parallel Port" - msgstr "" - --#: ../system-config-printer.py:5518 -+#: ../system-config-printer.py:5513 - #, fuzzy - msgid "Serial Port" - msgstr "క్రమం" - --#: ../system-config-printer.py:5520 -+#: ../system-config-printer.py:5515 - #, fuzzy - msgid "USB" - msgstr "SMB" - --#: ../system-config-printer.py:5522 ../system-config-printer.py:5525 -+#: ../system-config-printer.py:5517 ../system-config-printer.py:5520 - msgid "HP Linux Imaging and Printing (HPLIP)" - msgstr "" - --#: ../system-config-printer.py:5527 -+#: ../system-config-printer.py:5522 - #, fuzzy - msgid "Hardware Abstraction Layer (HAL)" - msgstr "స్థానిక ముద్రకం Hardware Abstraction Layer (HAL).తో నియంత్రించ బడుతుంది." - --#: ../system-config-printer.py:5529 -+#: ../system-config-printer.py:5524 - msgid "AppSocket/HP JetDirect" - msgstr "" - --#: ../system-config-printer.py:5538 -+#: ../system-config-printer.py:5533 - #, python-format - msgid "LPD/LPR queue '%s'" - msgstr "" - --#: ../system-config-printer.py:5540 -+#: ../system-config-printer.py:5535 - #, fuzzy - msgid "LPD/LPR queue" - msgstr "LPD" - --#: ../system-config-printer.py:5543 -+#: ../system-config-printer.py:5538 - msgid "Windows Printer via SAMBA" - msgstr "" - --#: ../system-config-printer.py:5545 ../glade/NewPrinterWindow.glade.h:66 -+#: ../system-config-printer.py:5540 ../glade/NewPrinterWindow.glade.h:65 - msgid "IPP" - msgstr "IPP" - --#: ../system-config-printer.py:5547 -+#: ../system-config-printer.py:5542 - msgid "HTTP" - msgstr "" - --#: ../system-config-printer.py:5632 -+#: ../system-config-printer.py:5624 - msgid "A printer connected to the parallel port." - msgstr "దానితోఉన్న పోర్టుకి అనుసంధించబడిన ముద్రకం." - --#: ../system-config-printer.py:5634 -+#: ../system-config-printer.py:5626 - msgid "A printer connected to a USB port." - msgstr "USB పోర్టుకి అనుసంధించబడిన ముద్రకం." - --#: ../system-config-printer.py:5636 -+#: ../system-config-printer.py:5628 - msgid "" - "HPLIP software driving a printer, or the printer function of a multi-" - "function device." - msgstr "HPLIP సాఫ్టువేరు ముద్రకాన్ని నడుపుతుంది, లేదా ఆ ముద్రకం బహుళ-క్రియాశీల సాధనాలతో పనిచేస్తుం." - --#: ../system-config-printer.py:5639 -+#: ../system-config-printer.py:5631 - msgid "" - "HPLIP software driving a fax machine, or the fax function of a multi-" - "function device." -@@ -1440,69 +1445,65 @@ msgstr "" - "HPLIP సాఫ్టువేరు సాధనం ఫ్యాక్సు సాధనాన్ని నడుపగలుగుతుంది, లేదా బహుళ-క్రియాశీల సాధనాలను " - "ఉపయోగించగలుగుతుం." - --#: ../system-config-printer.py:5642 -+#: ../system-config-printer.py:5634 - msgid "Local printer detected by the Hardware Abstraction Layer (HAL)." - msgstr "స్థానిక ముద్రకం Hardware Abstraction Layer (HAL).తో నియంత్రించ బడుతుంది." - --#: ../system-config-printer.py:5799 --msgid "HPLIP cannot find the device." --msgstr "" -- --#: ../system-config-printer.py:5881 -+#: ../system-config-printer.py:5831 - msgid "No printer was found at that address." - msgstr "" - --#: ../system-config-printer.py:6020 -+#: ../system-config-printer.py:5968 - #, fuzzy - msgid "-- Select from search results --" - msgstr "సమాచారనిధినుండీ ముద్రకాన్ని ఎన్నుకో" - --#: ../system-config-printer.py:6022 -+#: ../system-config-printer.py:5970 - msgid "-- No matches found --" - msgstr "" - --#: ../system-config-printer.py:6203 -+#: ../system-config-printer.py:6151 - msgid " (recommended)" - msgstr " (మద్దతివ్వబడింది)" - --#: ../system-config-printer.py:6217 -+#: ../system-config-printer.py:6165 - msgid "This PPD is generated by foomatic." - msgstr "ఈ PPD foomatic.చేత నిష్పాదించబడింది." - --#: ../system-config-printer.py:6241 -+#: ../system-config-printer.py:6189 - #, fuzzy - msgid "OpenPrinting" - msgstr "ముద్రించు" - --#: ../system-config-printer.py:6252 -+#: ../system-config-printer.py:6200 - msgid "Distributable" - msgstr "" - --#: ../system-config-printer.py:6293 -+#: ../system-config-printer.py:6241 - msgid ", " - msgstr "" - --#: ../system-config-printer.py:6298 -+#: ../system-config-printer.py:6246 - #, python-format - msgid "" - "\n" - "(%s)" - msgstr "" - --#: ../system-config-printer.py:6303 -+#: ../system-config-printer.py:6251 - msgid "No support contacts known" - msgstr "" - --#: ../system-config-printer.py:6307 ../system-config-printer.py:6320 -+#: ../system-config-printer.py:6255 ../system-config-printer.py:6268 - msgid "Not specified." - msgstr "" - - #. Foomatic database problem of some sort. --#: ../system-config-printer.py:6360 -+#: ../system-config-printer.py:6308 - msgid "Database error" - msgstr "సమాచారనిధి దోషం" - --#: ../system-config-printer.py:6361 -+#: ../system-config-printer.py:6309 - #, python-format - msgid "The '%s' driver cannot be used with printer '%s %s'." - msgstr "ఈ '%s' డ్రైవరు '%s %s' ముద్రంతో ఉపయోగించ లేము." -@@ -1510,65 +1511,65 @@ msgstr "ఈ '%s' డ్రైవరు ' - #. This printer references some XML that is not - #. installed by default. Point the user at the - #. package they need to install. --#: ../system-config-printer.py:6371 -+#: ../system-config-printer.py:6319 - #, python-format - msgid "You will need to install the '%s' package in order to use this driver." - msgstr "ఈ డ్రైవును ఉపయోగించటానికి మీరు ఈ '%s' ప్యాకేజిని సంస్థాపించవలసి ఉంటుంది." - - #. This error came from trying to open the PPD file. --#: ../system-config-printer.py:6378 -+#: ../system-config-printer.py:6326 - msgid "PPD error" - msgstr "PPD దోషం" - --#: ../system-config-printer.py:6380 -+#: ../system-config-printer.py:6328 - msgid "Failed to read PPD file. Possible reason follows:" - msgstr "PPD ఫైలుని చదవటంలో విఫలమైంది. దానికి కారణాలు ఇవి:" - - #. Failed to get PPD downloaded from OpenPrinting XXX --#: ../system-config-printer.py:6397 -+#: ../system-config-printer.py:6345 - msgid "Downloadable drivers" - msgstr "" - --#: ../system-config-printer.py:6398 -+#: ../system-config-printer.py:6346 - msgid "Failed to download PPD." - msgstr "" - --#: ../system-config-printer.py:6405 -+#: ../system-config-printer.py:6353 - #, fuzzy - msgid "fetching PPD" - msgstr "PPDని మార్చు" - --#: ../system-config-printer.py:6434 ../system-config-printer.py:6472 -+#: ../system-config-printer.py:6382 ../system-config-printer.py:6420 - #, fuzzy - msgid "No Installable Options" - msgstr "సంస్థాపించగల ఐచ్ఛికాలు" - --#: ../system-config-printer.py:6520 -+#: ../system-config-printer.py:6468 - #, fuzzy, python-format - msgid "adding printer %s" - msgstr "ముద్రకాలను ఆకృతీకరించు" - --#: ../system-config-printer.py:6669 -+#: ../system-config-printer.py:6617 - msgid "Would you like to print a test page?" - msgstr "" - --#: ../system-config-printer.py:6722 -+#: ../system-config-printer.py:6670 - #, fuzzy - msgid "Install driver" - msgstr "తప్పిపోయిన డ్రైవరు" - --#: ../system-config-printer.py:6723 ../troubleshoot/CheckPPDSanity.py:131 -+#: ../system-config-printer.py:6671 ../troubleshoot/CheckPPDSanity.py:131 - #, fuzzy, python-format - msgid "Printer '%s' requires the %s package but it is not currently installed." - msgstr "" - "'%s' ముద్రకంకు %s ప్యాకేజీలు కావలసి ఉంది కానీ ఇది ప్రస్తుతం సంస్థాపించబడలేదు. ఈ ముద్రకాన్ని " - "ఉపయోగించటానికి ముందే దీన్ని సంస్థాపించండి." - --#: ../system-config-printer.py:6739 -+#: ../system-config-printer.py:6687 - msgid "Missing driver" - msgstr "తప్పిపోయిన డ్రైవరు" - --#: ../system-config-printer.py:6740 -+#: ../system-config-printer.py:6688 - #, python-format - msgid "" - "Printer '%s' requires the '%s' program but it is not currently installed. " -@@ -1696,133 +1697,128 @@ msgstr "సాధన URIని ప్ర - - #: ../glade/NewPrinterWindow.glade.h:5 - #, fuzzy --msgid "HP Printer (HPLIP) via network" --msgstr "ముద్రకం పేరు" -- --#: ../glade/NewPrinterWindow.glade.h:6 --#, fuzzy - msgid "IPP Printer" - msgstr "ముద్రకం పేరు" - --#: ../glade/NewPrinterWindow.glade.h:7 -+#: ../glade/NewPrinterWindow.glade.h:6 - #, fuzzy - msgid "License Terms" - msgstr "ముద్రకం పేరు" - --#: ../glade/NewPrinterWindow.glade.h:8 -+#: ../glade/NewPrinterWindow.glade.h:7 - msgid "Location of the LPD network printer" - msgstr "LPD నెట్వర్కు ముద్రకం స్థానం" - --#: ../glade/NewPrinterWindow.glade.h:9 -+#: ../glade/NewPrinterWindow.glade.h:8 - msgid "Location of the network printer" - msgstr "నెట్వర్కు ముద్రకం స్థానం" - --#: ../glade/NewPrinterWindow.glade.h:10 -+#: ../glade/NewPrinterWindow.glade.h:9 - msgid "Location (optional)" - msgstr "స్థానం (ఐచ్ఛికం)" - --#: ../glade/NewPrinterWindow.glade.h:11 -+#: ../glade/NewPrinterWindow.glade.h:10 - #, fuzzy - msgid "Network Printer" - msgstr "కొత్త ముద్రకం" - --#: ../glade/NewPrinterWindow.glade.h:12 -+#: ../glade/NewPrinterWindow.glade.h:11 - #, fuzzy - msgid "Note" - msgstr "స్థితి" - --#: ../glade/NewPrinterWindow.glade.h:13 -+#: ../glade/NewPrinterWindow.glade.h:12 - #, fuzzy - msgid "Output Quality" - msgstr "స్థితి" - --#: ../glade/NewPrinterWindow.glade.h:14 -+#: ../glade/NewPrinterWindow.glade.h:13 - msgid "Printer Name" - msgstr "ముద్రకం పేరు" - --#: ../glade/NewPrinterWindow.glade.h:15 -+#: ../glade/NewPrinterWindow.glade.h:14 - #, fuzzy - msgid "SMB Printer" - msgstr "ముద్రకం పేరు" - --#: ../glade/NewPrinterWindow.glade.h:16 -+#: ../glade/NewPrinterWindow.glade.h:15 - #, fuzzy - msgid "Select Driver" - msgstr "సిద్ధ ముద్రకం" - --#: ../glade/NewPrinterWindow.glade.h:17 -+#: ../glade/NewPrinterWindow.glade.h:16 - msgid "Settings of the serial port" - msgstr "వరుస క్రమ పోర్టు అమర్పులు" - --#: ../glade/NewPrinterWindow.glade.h:18 -+#: ../glade/NewPrinterWindow.glade.h:17 - msgid "smb://[workgroup/]server[:port]/printer" - msgstr "smb://[workgroup/]server[:port]/printer" - --#: ../glade/NewPrinterWindow.glade.h:19 -+#: ../glade/NewPrinterWindow.glade.h:18 - #, fuzzy - msgid "Choose Class Members" - msgstr "" - "అనుమతిపదం కావాలి\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:20 -+#: ../glade/NewPrinterWindow.glade.h:19 - #, fuzzy - msgid "Choose Driver" - msgstr "" - "అనుమతిపదం కావాలి\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:21 -+#: ../glade/NewPrinterWindow.glade.h:20 - #, fuzzy - msgid "Describe Printer" - msgstr "" - "అనుమతిపదం కావాలి\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:22 -+#: ../glade/NewPrinterWindow.glade.h:21 - #, fuzzy - msgid "Existing Settings" - msgstr "" - "అనుమతిపదం కావాలి\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:23 -+#: ../glade/NewPrinterWindow.glade.h:22 - #, fuzzy - msgid "Installable Options" - msgstr "" - "అనుమతిపదం కావాలి\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:24 -+#: ../glade/NewPrinterWindow.glade.h:23 - #, fuzzy - msgid "Select Device" - msgstr "" - "అనుమతిపదం కావాలి\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:25 -+#: ../glade/NewPrinterWindow.glade.h:24 - msgid "Baud Rate" - msgstr "బౌడ్ స్థాయి" - --#: ../glade/NewPrinterWindow.glade.h:26 -+#: ../glade/NewPrinterWindow.glade.h:25 - msgid "Browse..." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:27 -+#: ../glade/NewPrinterWindow.glade.h:26 - #, fuzzy - msgid "Comments..." - msgstr "వ్యాఖ్య" - --#: ../glade/NewPrinterWindow.glade.h:28 -+#: ../glade/NewPrinterWindow.glade.h:27 - #, fuzzy - msgid "Connection" - msgstr "అనుసంధిస్తోంది" - --#: ../glade/NewPrinterWindow.glade.h:29 -+#: ../glade/NewPrinterWindow.glade.h:28 - msgid "Data Bits" - msgstr "సమాచార బిట్లు" - --#: ../glade/NewPrinterWindow.glade.h:30 -+#: ../glade/NewPrinterWindow.glade.h:29 - msgid "" - "Default\n" - "1200\n" -@@ -1844,7 +1840,7 @@ msgstr "" - "57600\n" - "115200" - --#: ../glade/NewPrinterWindow.glade.h:39 -+#: ../glade/NewPrinterWindow.glade.h:38 - msgid "" - "Default\n" - "8\n" -@@ -1854,7 +1850,7 @@ msgstr "" - "8\n" - "7" - --#: ../glade/NewPrinterWindow.glade.h:42 -+#: ../glade/NewPrinterWindow.glade.h:41 - msgid "" - "Default\n" - "None\n" -@@ -1866,7 +1862,7 @@ msgstr "" - "బేసి\n" - "సరి" - --#: ../glade/NewPrinterWindow.glade.h:46 -+#: ../glade/NewPrinterWindow.glade.h:45 - msgid "" - "Default\n" - "None\n" -@@ -1880,120 +1876,120 @@ msgstr "" - "RTS/CTS (హార్డువేర్)\n" - "DTR/DSR (హార్డువేర్)" - --#: ../glade/NewPrinterWindow.glade.h:51 -+#: ../glade/NewPrinterWindow.glade.h:50 - #: ../glade/PrinterPropertiesDialog.glade.h:35 - msgid "Description:" - msgstr "వర్ణన:" - --#: ../glade/NewPrinterWindow.glade.h:52 ../troubleshoot/DeviceListed.py:40 -+#: ../glade/NewPrinterWindow.glade.h:51 ../troubleshoot/DeviceListed.py:40 - msgid "Device URI" - msgstr "సాధనం URI" - --#: ../glade/NewPrinterWindow.glade.h:53 -+#: ../glade/NewPrinterWindow.glade.h:52 - msgid "Device description." - msgstr "సాధనం వర్ణన." - --#: ../glade/NewPrinterWindow.glade.h:54 -+#: ../glade/NewPrinterWindow.glade.h:53 - msgid "DirectJet" - msgstr "ప్రత్యక్ష Jet" - --#: ../glade/NewPrinterWindow.glade.h:56 -+#: ../glade/NewPrinterWindow.glade.h:55 - #, fuzzy - msgid "Driver details" - msgstr "డ్రైవర్లు" - --#: ../glade/NewPrinterWindow.glade.h:57 -+#: ../glade/NewPrinterWindow.glade.h:56 - msgid "Empty" - msgstr "ఖాళీ" - --#: ../glade/NewPrinterWindow.glade.h:58 -+#: ../glade/NewPrinterWindow.glade.h:57 - msgid "Find _Queue..." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:59 -+#: ../glade/NewPrinterWindow.glade.h:58 - msgid "Flow Control" - msgstr "ప్రవాహ నియంత్రణ" - --#: ../glade/NewPrinterWindow.glade.h:60 -+#: ../glade/NewPrinterWindow.glade.h:59 - msgid "" - "For the printer you have selected there are drivers available for download." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:61 -+#: ../glade/NewPrinterWindow.glade.h:60 - msgid "Free software" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:62 -+#: ../glade/NewPrinterWindow.glade.h:61 - msgid "Graphics:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:63 -+#: ../glade/NewPrinterWindow.glade.h:62 - #, fuzzy - msgid "Host:" - msgstr "ఆతిధేయనామం" - --#: ../glade/NewPrinterWindow.glade.h:64 -+#: ../glade/NewPrinterWindow.glade.h:63 - msgid "Human-readable description such as \"HP LaserJet with Duplexer\"" - msgstr "మనిషి చదవగల వర్ణన \"Duplexer తో HP LaserJet\" వంటివి" - --#: ../glade/NewPrinterWindow.glade.h:65 -+#: ../glade/NewPrinterWindow.glade.h:64 - msgid "Human-readable location such as \"Lab 1\"" - msgstr "మనిషి చదవగల స్థానం \"Lab 1\" వంటివి" - --#: ../glade/NewPrinterWindow.glade.h:67 -+#: ../glade/NewPrinterWindow.glade.h:66 - msgid "LPD" - msgstr "LPD" - --#: ../glade/NewPrinterWindow.glade.h:68 -+#: ../glade/NewPrinterWindow.glade.h:67 - msgid "License:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:69 -+#: ../glade/NewPrinterWindow.glade.h:68 - #, fuzzy - msgid "Line art:" - msgstr "ముద్రక స్థితి:" - --#: ../glade/NewPrinterWindow.glade.h:70 -+#: ../glade/NewPrinterWindow.glade.h:69 - #, fuzzy - msgid "Local Driver" - msgstr "స్థానిక ముద్రకాలు" - --#: ../glade/NewPrinterWindow.glade.h:71 -+#: ../glade/NewPrinterWindow.glade.h:70 - #, fuzzy - msgid "Make and model:" - msgstr "తయారుచెయి మరియూ మాదిరి:" - --#: ../glade/NewPrinterWindow.glade.h:72 -+#: ../glade/NewPrinterWindow.glade.h:71 - msgid "Manufacturer" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:73 -+#: ../glade/NewPrinterWindow.glade.h:72 - #, fuzzy - msgid "Network" - msgstr "కొత్త ముద్రకం" - --#: ../glade/NewPrinterWindow.glade.h:75 -+#: ../glade/NewPrinterWindow.glade.h:74 - msgid "No, I do not accept this license" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:76 -+#: ../glade/NewPrinterWindow.glade.h:75 - msgid "Parity" - msgstr "సాదృశ్యం" - --#: ../glade/NewPrinterWindow.glade.h:78 -+#: ../glade/NewPrinterWindow.glade.h:77 - msgid "Patented algorithms" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:79 -+#: ../glade/NewPrinterWindow.glade.h:78 - msgid "Photo:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:80 -+#: ../glade/NewPrinterWindow.glade.h:79 - #, fuzzy - msgid "Port number:" - msgstr "పోర్టు సంఖ్య" - --#: ../glade/NewPrinterWindow.glade.h:81 -+#: ../glade/NewPrinterWindow.glade.h:80 - #, fuzzy - msgid "" - "PostScript Printer Description (PPD) files can often be found on the driver " -@@ -2003,82 +1999,82 @@ msgstr "" - "ముద్రకంతో వచ్చే పోస్టు స్క్రిప్టు ముద్రకం వర్ణన (PPD) ఫైళ్లు ఎక్కువగా డ్రైవు డిస్కులో కనబడుతునాయి. " - "పోస్టు స్క్రిప్టు ముద్రకాలు ఎక్కువగా విండోస్ డ్రైవర్ ®లలో భాగంగా ఉంటాయి." - --#: ../glade/NewPrinterWindow.glade.h:82 -+#: ../glade/NewPrinterWindow.glade.h:81 - #, fuzzy - msgid "Printer model:" - msgstr "ముద్రకం పేరు" - --#: ../glade/NewPrinterWindow.glade.h:83 -+#: ../glade/NewPrinterWindow.glade.h:82 - msgid "Probe" - msgstr "ప్రోబే" - --#: ../glade/NewPrinterWindow.glade.h:84 -+#: ../glade/NewPrinterWindow.glade.h:83 - #, fuzzy - msgid "Prompt user if authentication is required" - msgstr "ప్రామాణీకరణ" - --#: ../glade/NewPrinterWindow.glade.h:85 -+#: ../glade/NewPrinterWindow.glade.h:84 - #, fuzzy - msgid "Provide PPD file" - msgstr "PPD ఫైలుని సమకూర్చు" - --#: ../glade/NewPrinterWindow.glade.h:86 -+#: ../glade/NewPrinterWindow.glade.h:85 - msgid "Queue:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:87 -+#: ../glade/NewPrinterWindow.glade.h:86 - msgid "SCSI" - msgstr "SCSI" - --#: ../glade/NewPrinterWindow.glade.h:88 -+#: ../glade/NewPrinterWindow.glade.h:87 - msgid "SMB" - msgstr "SMB" - --#: ../glade/NewPrinterWindow.glade.h:89 -+#: ../glade/NewPrinterWindow.glade.h:88 - msgid "Search for a printer driver to download" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:90 -+#: ../glade/NewPrinterWindow.glade.h:89 - #, fuzzy - msgid "Searching..." - msgstr "ముద్రకం కోసం కొత్త పేరు" - --#: ../glade/NewPrinterWindow.glade.h:91 -+#: ../glade/NewPrinterWindow.glade.h:90 - msgid "Select A File" - msgstr "ఒక ఫైలుని ఎన్నుకో" - --#: ../glade/NewPrinterWindow.glade.h:92 -+#: ../glade/NewPrinterWindow.glade.h:91 - #, fuzzy - msgid "Select printer from database" - msgstr "సమాచారనిధినుండీ ముద్రకాన్ని ఎన్నుకో" - --#: ../glade/NewPrinterWindow.glade.h:93 -+#: ../glade/NewPrinterWindow.glade.h:92 - msgid "Serial" - msgstr "క్రమం" - --#: ../glade/NewPrinterWindow.glade.h:94 -+#: ../glade/NewPrinterWindow.glade.h:93 - #, fuzzy - msgid "Set authentication details now" - msgstr "ప్రామాణీకరణ" - --#: ../glade/NewPrinterWindow.glade.h:95 -+#: ../glade/NewPrinterWindow.glade.h:94 - msgid "Short name for this printer such as \"laserjet\"" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:96 -+#: ../glade/NewPrinterWindow.glade.h:95 - msgid "Supplier:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:97 -+#: ../glade/NewPrinterWindow.glade.h:96 - msgid "Support:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:98 -+#: ../glade/NewPrinterWindow.glade.h:97 - #, fuzzy - msgid "Text:" - msgstr "పాఠ పుటను ముద్రించు" - --#: ../glade/NewPrinterWindow.glade.h:99 -+#: ../glade/NewPrinterWindow.glade.h:98 - msgid "" - "The foomatic printer database contains various manufacturer provided " - "PostScript Printer Description (PPD) files and also can generate PPD files " -@@ -2091,20 +2087,20 @@ msgstr "" - "నిష్పాదిస్తుంది. కానీ సాధారణ ఉత్పత్తులలో PPD ఫైళ్లు ముద్రకం యొక్క ప్రత్యేక లక్షణాలను " - "సమకూర్చగలుగుతుంది." - --#: ../glade/NewPrinterWindow.glade.h:100 -+#: ../glade/NewPrinterWindow.glade.h:99 - msgid "" - "These drivers do not come from your operating system supplier and will not " - "be covered by their commercial support. See the support and license terms " - "of the driver's supplier." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:101 -+#: ../glade/NewPrinterWindow.glade.h:100 - msgid "" - "This driver supports additional hardware that may be installed in the " - "printer." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:102 -+#: ../glade/NewPrinterWindow.glade.h:101 - msgid "" - "This is done by assuming that options with the same name do have the same " - "meaning. Settings of options that are not present in the new PPD will be " -@@ -2113,49 +2109,49 @@ msgstr "" - "ఐచ్ఛికాలను అదేపేరుతో ఊహించటంవల్ల అదే అర్ధాన్ని ఇవ్వటం వల్ల జరిగింది. ఐచ్ఛికం యొక్క అమర్పులు కొత్త " - "PPDలో లేవు ప్రస్తుత PPDలో సిద్ధంగా అమర్చబడటం లేదా వా.టిని పోగొట్టుకోవటం జరుగుతుంది." - --#: ../glade/NewPrinterWindow.glade.h:103 -+#: ../glade/NewPrinterWindow.glade.h:102 - msgid "" - "This way all current option settings will be lost. The default settings of " - "the new PPD will be used. " - msgstr "ఈ విధంగా ప్రస్తుత అన్ని ఐచ్ఛికాల అమర్పులూ పోతాయి. కొత్త PPD యొక్క సిద్ధ అమర్పు వాడాలి. " - --#: ../glade/NewPrinterWindow.glade.h:104 -+#: ../glade/NewPrinterWindow.glade.h:103 - msgid "Try to copy the option settings over from the old PPD. " - msgstr "పాత PPDనుండీ ఐచ్ఛిక అమర్పులను కాపీచేయటానికి ప్రయత్నించు. " - --#: ../glade/NewPrinterWindow.glade.h:105 -+#: ../glade/NewPrinterWindow.glade.h:104 - msgid "URI:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:107 -+#: ../glade/NewPrinterWindow.glade.h:106 - msgid "Use the new PPD (Postscript Printer Description) as is." - msgstr "కొత్త PPDని (Postscript Printer Description) ఉన్నట్లుగానే ఉపయోగించు." - --#: ../glade/NewPrinterWindow.glade.h:109 -+#: ../glade/NewPrinterWindow.glade.h:108 - msgid "" - "With this choice no driver download will be performed. In the next steps a " - "locally installed driver will be selected." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:110 -+#: ../glade/NewPrinterWindow.glade.h:109 - #, fuzzy - msgid "Yes, I accept this license" - msgstr "అనుమతించే పనులు" - --#: ../glade/NewPrinterWindow.glade.h:111 -+#: ../glade/NewPrinterWindow.glade.h:110 - msgid "_Search" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:112 -+#: ../glade/NewPrinterWindow.glade.h:111 - msgid "_Verify..." - msgstr "సరిచూడు... (_V)" - --#: ../glade/NewPrinterWindow.glade.h:113 -+#: ../glade/NewPrinterWindow.glade.h:112 - #: ../glade/PrinterPropertiesDialog.glade.h:128 - msgid "move left" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:114 -+#: ../glade/NewPrinterWindow.glade.h:113 - #: ../glade/PrinterPropertiesDialog.glade.h:129 - #, fuzzy - msgid "move right" -@@ -3050,7 +3046,7 @@ msgstr "" - msgid "Remember to load paper of type '%s' into the printer first." - msgstr "" - --#: ../troubleshoot/PrintTestPage.py:399 -+#: ../troubleshoot/PrintTestPage.py:416 - msgid "Error submitting test page" - msgstr "" - -@@ -3249,6 +3245,10 @@ msgid "Select default printer" - msgstr "సిద్ధ ముద్రకాన్ని చేయి" - - #, fuzzy -+#~ msgid "HP Printer (HPLIP) via network" -+#~ msgstr "ముద్రకం పేరు" -+ -+#, fuzzy - #~ msgid "Not Found" - #~ msgstr "కనుగొనబడలేదు" - -diff -up system-config-printer-1.1.5/po/tr.po.git-1.1.x system-config-printer-1.1.5/po/tr.po ---- system-config-printer-1.1.5/po/tr.po.git-1.1.x 2009-03-03 22:21:46.000000000 +0000 -+++ system-config-printer-1.1.5/po/tr.po 2009-03-10 17:43:43.000000000 +0000 -@@ -7,7 +7,7 @@ msgid "" - msgstr "" - "Project-Id-Version: tr\n" - "Report-Msgid-Bugs-To: https://bugzilla.redhat.com/bugzilla\n" --"POT-Creation-Date: 2009-03-02 23:22+0000\n" -+"POT-Creation-Date: 2009-03-10 16:51+0000\n" - "PO-Revision-Date: 2005-04-17 14:52+0200\n" - "Last-Translator: Bahadır Yağan \n" - "Language-Team: Turkish \n" -@@ -53,12 +53,12 @@ msgstr "" - msgid "Enter IP address" - msgstr "Sunucunun konak ismi veya IP adresi:" - --#: ../authconn.py:35 ../glade/NewPrinterWindow.glade.h:108 -+#: ../authconn.py:35 ../glade/NewPrinterWindow.glade.h:107 - #, fuzzy - msgid "Username:" - msgstr "Kullanıcı:" - --#: ../authconn.py:36 ../glade/NewPrinterWindow.glade.h:77 -+#: ../authconn.py:36 ../glade/NewPrinterWindow.glade.h:76 - msgid "Password:" - msgstr "Parola:" - -@@ -67,7 +67,7 @@ msgstr "Parola:" - msgid "Domain:" - msgstr "Üst boşluk (pt):" - --#: ../authconn.py:46 -+#: ../authconn.py:46 ../authconn.py:409 - #, fuzzy - msgid "Authentication" - msgstr "Kimlik kanıtlama" -@@ -76,46 +76,55 @@ msgstr "Kimlik kanıtlama" - msgid "Remember password" - msgstr "" - --#: ../authconn.py:211 ../authconn.py:232 -+#: ../authconn.py:208 -+#, python-format -+msgid "Unauthorized request (%s)" -+msgstr "" -+ -+#: ../authconn.py:209 -+msgid "You are not authorized to carry out therequested action." -+msgstr "" -+ -+#: ../authconn.py:212 ../authconn.py:233 - #, fuzzy - msgid "Operation canceled" - msgstr "Seçenek ismi" - --#: ../authconn.py:253 -+#: ../authconn.py:250 - #, fuzzy, python-format - msgid "CUPS server error (%s)" - msgstr "Sunucu:" - --#: ../authconn.py:255 ../errordialogs.py:57 --#: ../troubleshoot/PrintTestPage.py:400 -+#: ../authconn.py:252 ../errordialogs.py:56 ../errordialogs.py:70 -+#, fuzzy -+msgid "CUPS server error" -+msgstr "Sunucu:" -+ -+#: ../authconn.py:261 ../errordialogs.py:57 -+#: ../troubleshoot/PrintTestPage.py:417 - #, fuzzy, python-format - msgid "There was an error during the CUPS operation: '%s'." - msgstr "Deneme sayfası yazdırılırken bir hata oluştu." - --#: ../authconn.py:258 -+#: ../authconn.py:264 - #, fuzzy - msgid "Retry" - msgstr "Deneme" - --#: ../authconn.py:379 ../authconn.py:381 ../errordialogs.py:65 ../pysmb.py:75 -+#: ../authconn.py:385 ../authconn.py:387 ../errordialogs.py:65 ../pysmb.py:75 - #: ../pysmb.py:77 - msgid "Not authorized" - msgstr "" - --#: ../authconn.py:382 ../pysmb.py:78 -+#: ../authconn.py:388 ../pysmb.py:78 - msgid "The password may be incorrect." - msgstr "" - --#: ../authconn.py:400 -+#: ../authconn.py:407 - #, fuzzy, python-format - msgid "Authentication (%s)" - msgstr "Kimlik kanıtlama" - --#: ../errordialogs.py:56 ../errordialogs.py:70 --#, fuzzy --msgid "CUPS server error" --msgstr "Sunucu:" -- - #: ../errordialogs.py:66 - msgid "" - "The password may be incorrect, or the server may be configured to deny " -@@ -145,7 +154,7 @@ msgstr "Parola:" - msgid "Server error" - msgstr "Yazıcı: " - --#: ../errordialogs.py:82 ../system-config-printer.py:1219 -+#: ../errordialogs.py:82 ../system-config-printer.py:1223 - #, fuzzy - msgid "Not connected" - msgstr "_Yerel-bağlı" -@@ -168,7 +177,7 @@ msgstr "" - msgid "_New Group from Selection" - msgstr "" - --#: ../GroupsPane.py:98 ../system-config-printer.py:393 -+#: ../GroupsPane.py:98 ../system-config-printer.py:397 - #, fuzzy - msgid "_Rename" - msgstr "_Sil" -@@ -240,7 +249,7 @@ msgid "Document" - msgstr "Açıklama" - - #: ../jobviewer.py:212 ../my-default-printer.py:153 --#: ../system-config-printer.py:366 ../system-config-printer.py:1367 -+#: ../system-config-printer.py:370 ../system-config-printer.py:1371 - #: ../troubleshoot/PrintTestPage.py:84 - #, fuzzy - msgid "Printer" -@@ -279,8 +288,8 @@ msgstr "" - - #: ../jobviewer.py:386 ../jobviewer.py:451 ../jobviewer.py:452 - #: ../jobviewer.py:492 ../jobviewer.py:600 ../jobviewer.py:727 --#: ../jobviewer.py:1196 ../jobviewer.py:1222 ../system-config-printer.py:2546 --#: ../glade/NewPrinterWindow.glade.h:106 -+#: ../jobviewer.py:1196 ../jobviewer.py:1222 ../system-config-printer.py:2556 -+#: ../glade/NewPrinterWindow.glade.h:105 - #: ../troubleshoot/ChooseNetworkPrinter.py:101 - #: ../troubleshoot/ChooseNetworkPrinter.py:102 - #: ../troubleshoot/ChooseNetworkPrinter.py:105 -@@ -372,12 +381,12 @@ msgstr "" - msgid "Pending" - msgstr "Yazdırma" - --#: ../jobviewer.py:591 ../system-config-printer.py:186 -+#: ../jobviewer.py:591 ../system-config-printer.py:190 - #: ../troubleshoot/PrintTestPage.py:43 - msgid "Processing" - msgstr "" - --#: ../jobviewer.py:592 ../system-config-printer.py:188 -+#: ../jobviewer.py:592 ../system-config-printer.py:192 - #: ../troubleshoot/PrintTestPage.py:44 - msgid "Stopped" - msgstr "" -@@ -499,8 +508,8 @@ msgstr "Ö_ntanımlı yap" - msgid "_Set Default" - msgstr "Ö_ntanımlı" - --#: ../my-default-printer.py:158 ../system-config-printer.py:423 --#: ../system-config-printer.py:3660 ../troubleshoot/ChooseNetworkPrinter.py:37 -+#: ../my-default-printer.py:158 ../system-config-printer.py:427 -+#: ../system-config-printer.py:3675 ../troubleshoot/ChooseNetworkPrinter.py:37 - #: ../troubleshoot/ChoosePrinter.py:38 - #, fuzzy - msgid "Location" -@@ -534,7 +543,7 @@ msgstr "JetDirect Yazıcı" - msgid "Authenticated" - msgstr "Kimlik kanıtlama" - --#: ../ppdippstr.py:50 ../system-config-printer.py:6259 -+#: ../ppdippstr.py:50 ../system-config-printer.py:6207 - msgid "None" - msgstr "Hiçbiri" - -@@ -757,217 +766,217 @@ msgstr "" - msgid "1200 dpi, photo, black + color cartridge, photo paper" - msgstr "" - --#: ../system-config-printer.py:127 -+#: ../system-config-printer.py:131 - msgid "To do this, select System->Administration->Firewall from the main menu." - msgstr "" - --#: ../system-config-printer.py:185 -+#: ../system-config-printer.py:189 - msgid "Idle" - msgstr "" - --#: ../system-config-printer.py:187 -+#: ../system-config-printer.py:191 - msgid "Busy" - msgstr "" - --#: ../system-config-printer.py:372 ../system-config-printer.py:1373 -+#: ../system-config-printer.py:376 ../system-config-printer.py:1377 - #, fuzzy - msgid "Class" - msgstr "Rumuz" - --#: ../system-config-printer.py:399 -+#: ../system-config-printer.py:403 - #, fuzzy - msgid "Set As De_fault" - msgstr "Ö_ntanımlı" - --#: ../system-config-printer.py:403 -+#: ../system-config-printer.py:407 - #, fuzzy - msgid "_Create class" - msgstr "Novell Yazıcı" - --#: ../system-config-printer.py:405 -+#: ../system-config-printer.py:409 - #, fuzzy - msgid "View Print _Queue" - msgstr "Temel Yazdırma Kuyruğu" - --#: ../system-config-printer.py:407 -+#: ../system-config-printer.py:411 - msgid "_Add to Group" - msgstr "" - --#: ../system-config-printer.py:409 -+#: ../system-config-printer.py:413 - msgid "Save Results as _Group" - msgstr "" - --#: ../system-config-printer.py:411 -+#: ../system-config-printer.py:415 - msgid "Save Filter as _Search Group" - msgstr "" - --#: ../system-config-printer.py:415 -+#: ../system-config-printer.py:419 - msgid "E_nabled" - msgstr "" - --#: ../system-config-printer.py:417 -+#: ../system-config-printer.py:421 - #, fuzzy - msgid "_Shared" - msgstr "Paylaşılmış" - --#: ../system-config-printer.py:421 ../troubleshoot/ChooseNetworkPrinter.py:35 -+#: ../system-config-printer.py:425 ../troubleshoot/ChooseNetworkPrinter.py:35 - #: ../troubleshoot/ChoosePrinter.py:36 ../troubleshoot/DeviceListed.py:36 - msgid "Name" - msgstr "İsim" - --#: ../system-config-printer.py:422 -+#: ../system-config-printer.py:426 - #, fuzzy - msgid "Description" - msgstr "Açıklama" - --#: ../system-config-printer.py:424 -+#: ../system-config-printer.py:428 - msgid "Manufacturer / Model" - msgstr "" - - #. Printer state reasons list --#: ../system-config-printer.py:499 -+#: ../system-config-printer.py:503 - msgid "Message" - msgstr "" - --#: ../system-config-printer.py:534 -+#: ../system-config-printer.py:538 - msgid "Problems?" - msgstr "" - --#: ../system-config-printer.py:637 ../system-config-printer.py:639 -+#: ../system-config-printer.py:641 ../system-config-printer.py:643 - msgid "Members of this class" - msgstr "" - --#: ../system-config-printer.py:638 ../system-config-printer.py:640 -+#: ../system-config-printer.py:642 ../system-config-printer.py:644 - msgid "Others" - msgstr "" - --#: ../system-config-printer.py:641 -+#: ../system-config-printer.py:645 - #, fuzzy - msgid "Devices" - msgstr "Aygıt" - --#: ../system-config-printer.py:642 -+#: ../system-config-printer.py:646 - #, fuzzy - msgid "Connections" - msgstr "Açıklama" - --#: ../system-config-printer.py:643 -+#: ../system-config-printer.py:647 - msgid "Makes" - msgstr "" - --#: ../system-config-printer.py:644 -+#: ../system-config-printer.py:648 - #, fuzzy - msgid "Models" - msgstr "Model" - --#: ../system-config-printer.py:645 -+#: ../system-config-printer.py:649 - #, fuzzy - msgid "Drivers" - msgstr "Sürücü" - --#: ../system-config-printer.py:646 ../glade/NewPrinterWindow.glade.h:55 -+#: ../system-config-printer.py:650 ../glade/NewPrinterWindow.glade.h:54 - #, fuzzy - msgid "Downloadable Drivers" - msgstr "Kullanılabilir sürücüler:" - --#: ../system-config-printer.py:647 -+#: ../system-config-printer.py:651 - #, fuzzy - msgid "Users" - msgstr "Kullanıcı" - --#: ../system-config-printer.py:682 -+#: ../system-config-printer.py:686 - msgid "Automatic rotation" - msgstr "" - --#: ../system-config-printer.py:989 -+#: ../system-config-printer.py:993 - #, fuzzy, python-format - msgid "Printer Properties - '%s' on %s" - msgstr "Yazıcı: " - - #. The Conflict button was pressed. --#: ../system-config-printer.py:996 -+#: ../system-config-printer.py:1000 - msgid "" - "There are conflicting options.\n" - "Changes can only be applied after\n" - "these conflicts are resolved." - msgstr "" - --#: ../system-config-printer.py:1214 -+#: ../system-config-printer.py:1218 - #, python-format - msgid "Printer configuration - %s" - msgstr "Yazıcı yapılandırması - %s" - --#: ../system-config-printer.py:1217 -+#: ../system-config-printer.py:1221 - #, python-format - msgid "Connected to %s" - msgstr "" - - #. Update our copy of the printer's settings. --#: ../system-config-printer.py:1257 ../system-config-printer.py:2042 -+#: ../system-config-printer.py:1261 ../system-config-printer.py:2046 - msgid "obtaining queue details" - msgstr "" - --#: ../system-config-printer.py:1295 -+#: ../system-config-printer.py:1299 - msgid "Remove from Group" - msgstr "" - --#: ../system-config-printer.py:1361 -+#: ../system-config-printer.py:1365 - #, fuzzy - msgid "Network printer (discovered)" - msgstr "Novell Yazıcı" - --#: ../system-config-printer.py:1364 -+#: ../system-config-printer.py:1368 - msgid "Network class (discovered)" - msgstr "" - --#: ../system-config-printer.py:1370 ../system-config-printer.py:5524 --#: ../system-config-printer.py:5594 ../system-config-printer.py:5596 -+#: ../system-config-printer.py:1374 ../system-config-printer.py:5519 -+#: ../system-config-printer.py:5589 ../system-config-printer.py:5591 - msgid "Fax" - msgstr "" - --#: ../system-config-printer.py:1376 ../system-config-printer.py:1382 -+#: ../system-config-printer.py:1380 ../system-config-printer.py:1386 - #: ../troubleshoot/LocalOrRemote.py:30 - #, fuzzy - msgid "Network printer" - msgstr "Novell Yazıcı" - --#: ../system-config-printer.py:1379 -+#: ../system-config-printer.py:1383 - #, fuzzy - msgid "Network print share" - msgstr "Novell Yazıcı" - --#: ../system-config-printer.py:1508 ../glade/ConnectingDialog.glade.h:2 -+#: ../system-config-printer.py:1512 ../glade/ConnectingDialog.glade.h:2 - #, no-c-format, python-format - msgid "Opening connection to %s" - msgstr "" - --#: ../system-config-printer.py:1887 -+#: ../system-config-printer.py:1891 - msgid "Installable Options" - msgstr "" - --#: ../system-config-printer.py:1888 -+#: ../system-config-printer.py:1892 - #: ../glade/PrinterPropertiesDialog.glade.h:109 - #, fuzzy - msgid "Printer Options" - msgstr "Süzgeç seçenekleri" - --#: ../system-config-printer.py:1924 -+#: ../system-config-printer.py:1928 - #, python-format - msgid "modifying class %s" - msgstr "" - --#: ../system-config-printer.py:1926 ../system-config-printer.py:3019 --#: ../system-config-printer.py:3044 ../system-config-printer.py:6547 --#: ../system-config-printer.py:6559 ../system-config-printer.py:6581 -+#: ../system-config-printer.py:1930 ../system-config-printer.py:3037 -+#: ../system-config-printer.py:3062 ../system-config-printer.py:6495 -+#: ../system-config-printer.py:6507 ../system-config-printer.py:6529 - #, fuzzy, python-format - msgid "modifying printer %s" - msgstr "Yeni yazdırma kuyruğu ekle" - --#: ../system-config-printer.py:1941 -+#: ../system-config-printer.py:1945 - msgid "This will delete this class!" - msgstr "" - --#: ../system-config-printer.py:1942 -+#: ../system-config-printer.py:1946 - msgid "Proceed anyway?" - msgstr "" - -@@ -975,72 +984,72 @@ msgstr "" - #. but we have never fetched the server settings to see whether - #. the server is publishing shared printers. Fetch the settings - #. now so that we can update the "not published" label if necessary. --#: ../system-config-printer.py:2030 ../system-config-printer.py:3203 -+#: ../system-config-printer.py:2034 ../system-config-printer.py:3221 - #, fuzzy - msgid "fetching server settings" - msgstr "Sürücü seçenekleri" - --#: ../system-config-printer.py:2100 -+#: ../system-config-printer.py:2104 - #, fuzzy - msgid "Set Default Printer" - msgstr "JetDirect Yazıcı" - --#: ../system-config-printer.py:2102 -+#: ../system-config-printer.py:2106 - #, fuzzy - msgid "Do you want to set this as the system-wide default printer?" - msgstr "" - "Yazıcı yapılandırmanızda yaptığınız\n" - "değişiklikleri kaydetmek ister misiniz?" - --#: ../system-config-printer.py:2104 -+#: ../system-config-printer.py:2108 - #, fuzzy - msgid "Set as the _system-wide default printer" - msgstr "Bu yazıcı için bir açıklamadır." - --#: ../system-config-printer.py:2106 -+#: ../system-config-printer.py:2110 - msgid "_Clear my personal default setting" - msgstr "" - --#: ../system-config-printer.py:2107 -+#: ../system-config-printer.py:2111 - #, fuzzy - msgid "Set as my _personal default printer" - msgstr "JetDirect Yazıcı" - --#: ../system-config-printer.py:2112 -+#: ../system-config-printer.py:2116 - #, fuzzy - msgid "setting default printer" - msgstr "JetDirect Yazıcı" - --#: ../system-config-printer.py:2169 -+#: ../system-config-printer.py:2173 - #, fuzzy - msgid "printing test page" - msgstr "Yazıcı bilgileri:" - --#: ../system-config-printer.py:2182 ../system-config-printer.py:2217 --#: ../system-config-printer.py:5418 -+#: ../system-config-printer.py:2186 ../system-config-printer.py:2221 -+#: ../system-config-printer.py:5413 - msgid "Not possible" - msgstr "" - --#: ../system-config-printer.py:2183 ../system-config-printer.py:2218 -+#: ../system-config-printer.py:2187 ../system-config-printer.py:2222 - msgid "" - "The remote server did not accept the print job, most likely because the " - "printer is not shared." - msgstr "" - --#: ../system-config-printer.py:2195 ../system-config-printer.py:2210 -+#: ../system-config-printer.py:2199 ../system-config-printer.py:2214 - msgid "Submitted" - msgstr "" - --#: ../system-config-printer.py:2196 -+#: ../system-config-printer.py:2200 - #, python-format - msgid "Test page submitted as job %d" - msgstr "" - --#: ../system-config-printer.py:2203 -+#: ../system-config-printer.py:2207 - msgid "sending maintenance command" - msgstr "" - --#: ../system-config-printer.py:2211 -+#: ../system-config-printer.py:2215 - #, python-format - msgid "Maintenance command submitted as job %d" - msgstr "" -@@ -1048,11 +1057,11 @@ msgstr "" - #. The underlying cupsGetPPD2() function returned NULL without - #. setting an IPP error, so it'll be something like a failed - #. connection. --#: ../system-config-printer.py:2285 ../system-config-printer.py:2381 -+#: ../system-config-printer.py:2289 ../system-config-printer.py:2385 - msgid "Error" - msgstr "Hata" - --#: ../system-config-printer.py:2286 -+#: ../system-config-printer.py:2290 - #, fuzzy - msgid "There was a problem connecting to the CUPS server." - msgstr "" -@@ -1060,71 +1069,71 @@ msgstr "" - "gönderilirken bir sorun oluştu:\n" - "\n" - --#: ../system-config-printer.py:2382 -+#: ../system-config-printer.py:2386 - #, fuzzy, python-format - msgid "Option '%s' has value '%s' and cannot be edited." - msgstr "Yazıcının biçemi anlaşılamadığından düzenlenemez." - --#: ../system-config-printer.py:2466 -+#: ../system-config-printer.py:2476 - #, fuzzy - msgid "Marker levels are not reported for this printer." - msgstr "" - "Kusura bakmayın,\n" - "bu yazıcı hakkında bilgi yok." - --#: ../system-config-printer.py:2763 -+#: ../system-config-printer.py:2773 - #, fuzzy - msgid "Cannot Rename" - msgstr "_Sil" - --#: ../system-config-printer.py:2764 -+#: ../system-config-printer.py:2774 - #, fuzzy - msgid "There are queued jobs." - msgstr "Bu sürücünün değiştirilebilir seçenekleri yok" - --#: ../system-config-printer.py:2822 -+#: ../system-config-printer.py:2840 - #, fuzzy - msgid "renaming printer" - msgstr "Yeni yazdırma kuyruğu ekle" - - #. for classes make sure all members - #. will get added --#: ../system-config-printer.py:2907 -+#: ../system-config-printer.py:2925 - #, fuzzy - msgid "copying printer" - msgstr "Yeni yazdırma kuyruğu ekle" - --#: ../system-config-printer.py:2971 -+#: ../system-config-printer.py:2989 - #, fuzzy, python-format - msgid "Really delete class '%s'?" - msgstr "\"%s\" gerçekten silinecek mi?" - --#: ../system-config-printer.py:2973 -+#: ../system-config-printer.py:2991 - #, fuzzy, python-format - msgid "Really delete printer '%s'?" - msgstr "\"%s\" gerçekten silinecek mi?" - --#: ../system-config-printer.py:2975 -+#: ../system-config-printer.py:2993 - #, fuzzy - msgid "Really delete selected destinations?" - msgstr "\"%s\" gerçekten silinecek mi?" - --#: ../system-config-printer.py:2996 -+#: ../system-config-printer.py:3014 - #, fuzzy, python-format - msgid "deleting printer %s" - msgstr "Yeni yazdırma kuyruğu ekle" - --#: ../system-config-printer.py:3070 -+#: ../system-config-printer.py:3088 - msgid "Publish Shared Printers" - msgstr "" - --#: ../system-config-printer.py:3071 -+#: ../system-config-printer.py:3089 - msgid "" - "Shared printers are not available to other people unless the 'Publish shared " - "printers' option is enabled in the server settings." - msgstr "" - --#: ../system-config-printer.py:3264 -+#: ../system-config-printer.py:3282 - #, fuzzy - msgid "modifying server settings" - msgstr "Sürücü seçenekleri" -@@ -1135,109 +1144,109 @@ msgstr "Sürücü seçenekleri" - #. be unblocked. Unfortunately, this is not yet possible - #. (bug #440469). However, we can display a dialog to suggest - #. that now might be a good time to review the firewall settings. --#: ../system-config-printer.py:3289 -+#: ../system-config-printer.py:3307 - #, fuzzy - msgid "Review Firewall" - msgstr "Aygıt Dosyası" - --#: ../system-config-printer.py:3290 -+#: ../system-config-printer.py:3308 - msgid "" - "You may need to adjust the firewall to allow network printing to this " - "computer." - msgstr "" - --#: ../system-config-printer.py:3623 -+#: ../system-config-printer.py:3638 - msgid "Browsing not available (pysmbc not installed)" - msgstr "" - - #. SMB list columns --#: ../system-config-printer.py:3629 -+#: ../system-config-printer.py:3644 - msgid "Share" - msgstr "Paylaşım" - --#: ../system-config-printer.py:3635 -+#: ../system-config-printer.py:3650 - msgid "Comment" - msgstr "Açıklama" - - #. IPP list columns --#: ../system-config-printer.py:3654 -+#: ../system-config-printer.py:3669 - msgid "Queue" - msgstr "Kuyruk" - --#: ../system-config-printer.py:3668 -+#: ../system-config-printer.py:3683 - msgid "" - "PostScript Printer Description files (*.ppd, *.PPD, *.ppd.gz, *.PPD.gz, *." - "PPD.GZ)" - msgstr "" - --#: ../system-config-printer.py:3677 -+#: ../system-config-printer.py:3692 - msgid "All files (*)" - msgstr "" - --#: ../system-config-printer.py:3713 ../system-config-printer.py:5970 --#: ../system-config-printer.py:6008 ../applet.py:124 -+#: ../system-config-printer.py:3728 ../system-config-printer.py:5918 -+#: ../system-config-printer.py:5956 ../applet.py:124 - #, fuzzy - msgid "Search" - msgstr "Uyarı" - --#: ../system-config-printer.py:3736 ../system-config-printer.py:3760 --#: ../glade/NewPrinterWindow.glade.h:74 -+#: ../system-config-printer.py:3751 ../system-config-printer.py:3775 -+#: ../glade/NewPrinterWindow.glade.h:73 - #, fuzzy - msgid "New Printer" - msgstr "Novell Yazıcı" - --#: ../system-config-printer.py:3747 -+#: ../system-config-printer.py:3762 - msgid "New Class" - msgstr "" - --#: ../system-config-printer.py:3752 -+#: ../system-config-printer.py:3767 - msgid "Change Device URI" - msgstr "" - --#: ../system-config-printer.py:3758 -+#: ../system-config-printer.py:3773 - #, fuzzy - msgid "Change Driver" - msgstr "Türünü Değiştir" - --#: ../system-config-printer.py:3927 ../system-config-printer.py:3993 --#: ../system-config-printer.py:4289 ../system-config-printer.py:4487 --#: ../system-config-printer.py:5772 ../system-config-printer.py:5995 -+#: ../system-config-printer.py:3942 ../system-config-printer.py:4008 -+#: ../system-config-printer.py:4304 ../system-config-printer.py:4502 -+#: ../system-config-printer.py:5762 ../system-config-printer.py:5943 - #, fuzzy - msgid "Searching" - msgstr "Uyarı" - --#: ../system-config-printer.py:3928 -+#: ../system-config-printer.py:3943 - #, fuzzy - msgid "Searching for downloadable drivers" - msgstr "Paylaşım özellikleri" - --#: ../system-config-printer.py:3994 ../system-config-printer.py:4290 -+#: ../system-config-printer.py:4009 ../system-config-printer.py:4305 - #, fuzzy - msgid "Searching for drivers" - msgstr "Paylaşım özellikleri" - --#: ../system-config-printer.py:4488 ../system-config-printer.py:5773 -+#: ../system-config-printer.py:4503 ../system-config-printer.py:5763 - #, fuzzy - msgid "Searching for printers" - msgstr "Paylaşım özellikleri" - --#: ../system-config-printer.py:4497 -+#: ../system-config-printer.py:4512 - #, fuzzy - msgid "fetching device list" - msgstr "Sürücü seçenekleri" - - #. Tell the user why he needs the plugin --#: ../system-config-printer.py:4579 -+#: ../system-config-printer.py:4594 - msgid "For this printer a proprietary driver plugin from HP is available.\n" - msgstr "" - --#: ../system-config-printer.py:4582 -+#: ../system-config-printer.py:4597 - msgid "" - "The installation of the plugin is required for your printer to work.\n" - "\n" - msgstr "" - --#: ../system-config-printer.py:4585 -+#: ../system-config-printer.py:4600 - msgid "" - "Installing the plugin is optional, it completes or enhances the " - "functionality\n" -@@ -1245,142 +1254,137 @@ msgid "" - "\n" - msgstr "" - --#: ../system-config-printer.py:4589 -+#: ../system-config-printer.py:4604 - msgid "The plugin provides the following features:\n" - msgstr "" - --#: ../system-config-printer.py:4592 -+#: ../system-config-printer.py:4607 - msgid " - Printing support\n" - msgstr "" - --#: ../system-config-printer.py:4595 -+#: ../system-config-printer.py:4610 - msgid " - Faster printing\n" - msgstr "" - --#: ../system-config-printer.py:4598 -+#: ../system-config-printer.py:4613 - msgid " - Better printout quality\n" - msgstr "" - --#: ../system-config-printer.py:4601 -+#: ../system-config-printer.py:4616 - msgid " - Extra printing features\n" - msgstr "" - --#: ../system-config-printer.py:4604 -+#: ../system-config-printer.py:4619 - msgid " - Scanning support\n" - msgstr "" - --#: ../system-config-printer.py:4607 -+#: ../system-config-printer.py:4622 - msgid " - Faster scanning\n" - msgstr "" - --#: ../system-config-printer.py:4610 -+#: ../system-config-printer.py:4625 - msgid " - Better scanning image quality\n" - msgstr "" - --#: ../system-config-printer.py:4613 -+#: ../system-config-printer.py:4628 - msgid " - Faxing support\n" - msgstr "" - --#: ../system-config-printer.py:4616 -+#: ../system-config-printer.py:4631 - msgid " - Extra fax features\n" - msgstr "" - --#: ../system-config-printer.py:4619 -+#: ../system-config-printer.py:4634 - msgid " - Better Input/Output support\n" - msgstr "" - --#: ../system-config-printer.py:4622 -+#: ../system-config-printer.py:4637 - msgid " - Extra user interface features\n" - msgstr "" - --#: ../system-config-printer.py:4625 -+#: ../system-config-printer.py:4640 - msgid " - Other extra features\n" - msgstr "" - --#: ../system-config-printer.py:4630 -+#: ../system-config-printer.py:4645 - #, fuzzy - msgid "Install plugin" - msgstr "Süzgeç seçenekleri" - --#: ../system-config-printer.py:4631 -+#: ../system-config-printer.py:4646 - #, fuzzy - msgid "Do not set up printer" - msgstr "Yazıcı:" - --#: ../system-config-printer.py:4632 -+#: ../system-config-printer.py:4647 - msgid "Set up without plugin" - msgstr "" - --#: ../system-config-printer.py:4634 ../troubleshoot/PrintTestPage.py:118 -+#: ../system-config-printer.py:4649 ../troubleshoot/PrintTestPage.py:118 - msgid "Yes" - msgstr "Evet" - --#: ../system-config-printer.py:4635 ../troubleshoot/PrintTestPage.py:119 -+#: ../system-config-printer.py:4650 ../troubleshoot/PrintTestPage.py:119 - msgid "No" - msgstr "Hayır" - --#: ../system-config-printer.py:4809 ../system-config-printer.py:4813 -+#: ../system-config-printer.py:4824 ../system-config-printer.py:4828 - msgid " (Current)" - msgstr "" - --#: ../system-config-printer.py:4845 --#, fuzzy --msgid "HP Printer (HPLIP)" --msgstr "Yazıcı IP:" -- --#: ../system-config-printer.py:4886 -+#: ../system-config-printer.py:4881 - msgid "Other" - msgstr "" - - #. device-info - #. PhysicalDevice obj - #. Separator? --#: ../system-config-printer.py:4902 -+#: ../system-config-printer.py:4897 - #, fuzzy - msgid "Network Printer" - msgstr "Novell Yazıcı" - --#: ../system-config-printer.py:4906 -+#: ../system-config-printer.py:4901 - #, fuzzy - msgid "Find Network Printer" - msgstr "Novell Yazıcı" - --#: ../system-config-printer.py:4979 ../system-config-printer.py:5376 -+#: ../system-config-printer.py:4974 ../system-config-printer.py:5371 - msgid "Scanning..." - msgstr "" - --#: ../system-config-printer.py:5034 ../system-config-printer.py:5798 -+#: ../system-config-printer.py:5029 - #, fuzzy - msgid "No Print Shares" - msgstr "Novell Yazıcı" - --#: ../system-config-printer.py:5035 -+#: ../system-config-printer.py:5030 - msgid "" - "There were no print shares found. Please check that the Samba service is " - "marked as trusted in your firewall configuration." - msgstr "" - --#: ../system-config-printer.py:5296 ../system-config-printer.py:5357 -+#: ../system-config-printer.py:5291 ../system-config-printer.py:5352 - msgid "Print Share Verified" - msgstr "" - --#: ../system-config-printer.py:5297 ../system-config-printer.py:5358 -+#: ../system-config-printer.py:5292 ../system-config-printer.py:5353 - msgid "This print share is accessible." - msgstr "" - --#: ../system-config-printer.py:5302 ../system-config-printer.py:5362 -+#: ../system-config-printer.py:5297 ../system-config-printer.py:5357 - msgid "This print share is not accessible." - msgstr "" - --#: ../system-config-printer.py:5305 -+#: ../system-config-printer.py:5300 - msgid "Print Share Inaccessible" - msgstr "" - --#: ../system-config-printer.py:5361 -+#: ../system-config-printer.py:5356 - msgid "Inaccessible" - msgstr "" - --#: ../system-config-printer.py:5419 -+#: ../system-config-printer.py:5414 - #, fuzzy, python-format - msgid "It is not possible to obtain a list of queues from '%s'." - msgstr "" -@@ -1388,160 +1392,156 @@ msgstr "" - "gönderilirken bir sorun oluştu:\n" - "\n" - --#: ../system-config-printer.py:5421 -+#: ../system-config-printer.py:5416 - msgid "" - "Obtaining a list of queues is a CUPS extension to IPP. Network printers do " - "not support it." - msgstr "" - --#: ../system-config-printer.py:5424 -+#: ../system-config-printer.py:5419 - #, fuzzy - msgid "No queues" - msgstr "Yeni _kuyruk" - --#: ../system-config-printer.py:5425 -+#: ../system-config-printer.py:5420 - #, fuzzy - msgid "There are no queues available." - msgstr "Bu sürücünün değiştirilebilir seçenekleri yok" - --#: ../system-config-printer.py:5516 -+#: ../system-config-printer.py:5511 - msgid "Parallel Port" - msgstr "" - --#: ../system-config-printer.py:5518 -+#: ../system-config-printer.py:5513 - #, fuzzy - msgid "Serial Port" - msgstr "Genel" - --#: ../system-config-printer.py:5520 -+#: ../system-config-printer.py:5515 - #, fuzzy - msgid "USB" - msgstr "SMB" - --#: ../system-config-printer.py:5522 ../system-config-printer.py:5525 -+#: ../system-config-printer.py:5517 ../system-config-printer.py:5520 - msgid "HP Linux Imaging and Printing (HPLIP)" - msgstr "" - --#: ../system-config-printer.py:5527 -+#: ../system-config-printer.py:5522 - msgid "Hardware Abstraction Layer (HAL)" - msgstr "" - --#: ../system-config-printer.py:5529 -+#: ../system-config-printer.py:5524 - #, fuzzy - msgid "AppSocket/HP JetDirect" - msgstr "Ağdaki _JetDirect" - --#: ../system-config-printer.py:5538 -+#: ../system-config-printer.py:5533 - #, python-format - msgid "LPD/LPR queue '%s'" - msgstr "" - --#: ../system-config-printer.py:5540 -+#: ../system-config-printer.py:5535 - #, fuzzy - msgid "LPD/LPR queue" - msgstr "LPD" - --#: ../system-config-printer.py:5543 -+#: ../system-config-printer.py:5538 - #, fuzzy - msgid "Windows Printer via SAMBA" - msgstr "Windows Yazıcısı" - --#: ../system-config-printer.py:5545 ../glade/NewPrinterWindow.glade.h:66 -+#: ../system-config-printer.py:5540 ../glade/NewPrinterWindow.glade.h:65 - #, fuzzy - msgid "IPP" - msgstr "IP:" - --#: ../system-config-printer.py:5547 -+#: ../system-config-printer.py:5542 - msgid "HTTP" - msgstr "" - --#: ../system-config-printer.py:5632 -+#: ../system-config-printer.py:5624 - msgid "A printer connected to the parallel port." - msgstr "" - --#: ../system-config-printer.py:5634 -+#: ../system-config-printer.py:5626 - msgid "A printer connected to a USB port." - msgstr "" - --#: ../system-config-printer.py:5636 -+#: ../system-config-printer.py:5628 - msgid "" - "HPLIP software driving a printer, or the printer function of a multi-" - "function device." - msgstr "" - --#: ../system-config-printer.py:5639 -+#: ../system-config-printer.py:5631 - msgid "" - "HPLIP software driving a fax machine, or the fax function of a multi-" - "function device." - msgstr "" - --#: ../system-config-printer.py:5642 -+#: ../system-config-printer.py:5634 - msgid "Local printer detected by the Hardware Abstraction Layer (HAL)." - msgstr "" - --#: ../system-config-printer.py:5799 --msgid "HPLIP cannot find the device." --msgstr "" -- --#: ../system-config-printer.py:5881 -+#: ../system-config-printer.py:5831 - msgid "No printer was found at that address." - msgstr "" - --#: ../system-config-printer.py:6020 -+#: ../system-config-printer.py:5968 - #, fuzzy - msgid "-- Select from search results --" - msgstr "Bir yazıcı modeli seçmelisiniz." - --#: ../system-config-printer.py:6022 -+#: ../system-config-printer.py:5970 - msgid "-- No matches found --" - msgstr "" - --#: ../system-config-printer.py:6203 -+#: ../system-config-printer.py:6151 - #, fuzzy - msgid " (recommended)" - msgstr "" - "(önerilen sürücü:\n" - "%s)" - --#: ../system-config-printer.py:6217 -+#: ../system-config-printer.py:6165 - msgid "This PPD is generated by foomatic." - msgstr "" - --#: ../system-config-printer.py:6241 -+#: ../system-config-printer.py:6189 - #, fuzzy - msgid "OpenPrinting" - msgstr "Yazdırma" - --#: ../system-config-printer.py:6252 -+#: ../system-config-printer.py:6200 - msgid "Distributable" - msgstr "" - --#: ../system-config-printer.py:6293 -+#: ../system-config-printer.py:6241 - msgid ", " - msgstr "" - --#: ../system-config-printer.py:6298 -+#: ../system-config-printer.py:6246 - #, python-format - msgid "" - "\n" - "(%s)" - msgstr "" - --#: ../system-config-printer.py:6303 -+#: ../system-config-printer.py:6251 - msgid "No support contacts known" - msgstr "" - --#: ../system-config-printer.py:6307 ../system-config-printer.py:6320 -+#: ../system-config-printer.py:6255 ../system-config-printer.py:6268 - #, fuzzy - msgid "Not specified." - msgstr "Bir aygıt belirtmelisiniz." - - #. Foomatic database problem of some sort. --#: ../system-config-printer.py:6360 -+#: ../system-config-printer.py:6308 - msgid "Database error" - msgstr "" - --#: ../system-config-printer.py:6361 -+#: ../system-config-printer.py:6309 - #, python-format - msgid "The '%s' driver cannot be used with printer '%s %s'." - msgstr "" -@@ -1549,65 +1549,65 @@ msgstr "" - #. This printer references some XML that is not - #. installed by default. Point the user at the - #. package they need to install. --#: ../system-config-printer.py:6371 -+#: ../system-config-printer.py:6319 - #, python-format - msgid "You will need to install the '%s' package in order to use this driver." - msgstr "" - - #. This error came from trying to open the PPD file. --#: ../system-config-printer.py:6378 -+#: ../system-config-printer.py:6326 - msgid "PPD error" - msgstr "" - --#: ../system-config-printer.py:6380 -+#: ../system-config-printer.py:6328 - msgid "Failed to read PPD file. Possible reason follows:" - msgstr "" - - #. Failed to get PPD downloaded from OpenPrinting XXX --#: ../system-config-printer.py:6397 -+#: ../system-config-printer.py:6345 - #, fuzzy - msgid "Downloadable drivers" - msgstr "Kullanılabilir sürücüler:" - --#: ../system-config-printer.py:6398 -+#: ../system-config-printer.py:6346 - msgid "Failed to download PPD." - msgstr "" - --#: ../system-config-printer.py:6405 -+#: ../system-config-printer.py:6353 - #, fuzzy - msgid "fetching PPD" - msgstr "Türünü Değiştir" - --#: ../system-config-printer.py:6434 ../system-config-printer.py:6472 -+#: ../system-config-printer.py:6382 ../system-config-printer.py:6420 - msgid "No Installable Options" - msgstr "" - --#: ../system-config-printer.py:6520 -+#: ../system-config-printer.py:6468 - #, fuzzy, python-format - msgid "adding printer %s" - msgstr "Yeni yazdırma kuyruğu ekle" - --#: ../system-config-printer.py:6669 -+#: ../system-config-printer.py:6617 - #, fuzzy - msgid "Would you like to print a test page?" - msgstr "Bir test sayfası yazdırmak ister misiniz?" - --#: ../system-config-printer.py:6722 -+#: ../system-config-printer.py:6670 - #, fuzzy - msgid "Install driver" - msgstr "Yazıcı sürücüsü" - --#: ../system-config-printer.py:6723 ../troubleshoot/CheckPPDSanity.py:131 -+#: ../system-config-printer.py:6671 ../troubleshoot/CheckPPDSanity.py:131 - #, python-format - msgid "Printer '%s' requires the %s package but it is not currently installed." - msgstr "" - --#: ../system-config-printer.py:6739 -+#: ../system-config-printer.py:6687 - #, fuzzy - msgid "Missing driver" - msgstr "Yazıcı sürücüsü" - --#: ../system-config-printer.py:6740 -+#: ../system-config-printer.py:6688 - #, python-format - msgid "" - "Printer '%s' requires the '%s' program but it is not currently installed. " -@@ -1737,116 +1737,111 @@ msgstr "Yazıcı Aygıtı" - - #: ../glade/NewPrinterWindow.glade.h:5 - #, fuzzy --msgid "HP Printer (HPLIP) via network" --msgstr "Yazıcı modeli" -- --#: ../glade/NewPrinterWindow.glade.h:6 --#, fuzzy - msgid "IPP Printer" - msgstr "Yazıcı modeli" - --#: ../glade/NewPrinterWindow.glade.h:7 -+#: ../glade/NewPrinterWindow.glade.h:6 - #, fuzzy - msgid "License Terms" - msgstr "Yazıcı modeli" - --#: ../glade/NewPrinterWindow.glade.h:8 -+#: ../glade/NewPrinterWindow.glade.h:7 - msgid "Location of the LPD network printer" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:9 -+#: ../glade/NewPrinterWindow.glade.h:8 - msgid "Location of the network printer" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:10 -+#: ../glade/NewPrinterWindow.glade.h:9 - msgid "Location (optional)" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:11 -+#: ../glade/NewPrinterWindow.glade.h:10 - #, fuzzy - msgid "Network Printer" - msgstr "Novell Yazıcı" - --#: ../glade/NewPrinterWindow.glade.h:12 -+#: ../glade/NewPrinterWindow.glade.h:11 - #, fuzzy - msgid "Note" - msgstr "Yazıcı modeli" - --#: ../glade/NewPrinterWindow.glade.h:13 -+#: ../glade/NewPrinterWindow.glade.h:12 - msgid "Output Quality" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:14 -+#: ../glade/NewPrinterWindow.glade.h:13 - #, fuzzy - msgid "Printer Name" - msgstr "Yazıcı modeli" - --#: ../glade/NewPrinterWindow.glade.h:15 -+#: ../glade/NewPrinterWindow.glade.h:14 - #, fuzzy - msgid "SMB Printer" - msgstr "Yazıcı modeli" - --#: ../glade/NewPrinterWindow.glade.h:16 -+#: ../glade/NewPrinterWindow.glade.h:15 - #, fuzzy - msgid "Select Driver" - msgstr "Yazıcı modeli" - --#: ../glade/NewPrinterWindow.glade.h:17 -+#: ../glade/NewPrinterWindow.glade.h:16 - msgid "Settings of the serial port" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:18 -+#: ../glade/NewPrinterWindow.glade.h:17 - msgid "smb://[workgroup/]server[:port]/printer" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:19 -+#: ../glade/NewPrinterWindow.glade.h:18 - msgid "Choose Class Members" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:20 -+#: ../glade/NewPrinterWindow.glade.h:19 - msgid "Choose Driver" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:21 -+#: ../glade/NewPrinterWindow.glade.h:20 - msgid "Describe Printer" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:22 -+#: ../glade/NewPrinterWindow.glade.h:21 - msgid "Existing Settings" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:23 -+#: ../glade/NewPrinterWindow.glade.h:22 - msgid "Installable Options" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:24 -+#: ../glade/NewPrinterWindow.glade.h:23 - msgid "Select Device" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:25 -+#: ../glade/NewPrinterWindow.glade.h:24 - msgid "Baud Rate" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:26 -+#: ../glade/NewPrinterWindow.glade.h:25 - msgid "Browse..." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:27 -+#: ../glade/NewPrinterWindow.glade.h:26 - #, fuzzy - msgid "Comments..." - msgstr "Açıklama" - --#: ../glade/NewPrinterWindow.glade.h:28 -+#: ../glade/NewPrinterWindow.glade.h:27 - #, fuzzy - msgid "Connection" - msgstr "_Eylem" - --#: ../glade/NewPrinterWindow.glade.h:29 -+#: ../glade/NewPrinterWindow.glade.h:28 - #, fuzzy - msgid "Data Bits" - msgstr "Ayrıntılar" - --#: ../glade/NewPrinterWindow.glade.h:30 -+#: ../glade/NewPrinterWindow.glade.h:29 - msgid "" - "Default\n" - "1200\n" -@@ -1859,7 +1854,7 @@ msgid "" - "115200" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:39 -+#: ../glade/NewPrinterWindow.glade.h:38 - #, fuzzy - msgid "" - "Default\n" -@@ -1867,7 +1862,7 @@ msgid "" - "7" - msgstr "Öntanımlı" - --#: ../glade/NewPrinterWindow.glade.h:42 -+#: ../glade/NewPrinterWindow.glade.h:41 - msgid "" - "Default\n" - "None\n" -@@ -1875,7 +1870,7 @@ msgid "" - "Even" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:46 -+#: ../glade/NewPrinterWindow.glade.h:45 - msgid "" - "Default\n" - "None\n" -@@ -1884,206 +1879,206 @@ msgid "" - "DTR/DSR (Hardware)" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:51 -+#: ../glade/NewPrinterWindow.glade.h:50 - #: ../glade/PrinterPropertiesDialog.glade.h:35 - #, fuzzy - msgid "Description:" - msgstr "Açıklama" - --#: ../glade/NewPrinterWindow.glade.h:52 ../troubleshoot/DeviceListed.py:40 -+#: ../glade/NewPrinterWindow.glade.h:51 ../troubleshoot/DeviceListed.py:40 - #, fuzzy - msgid "Device URI" - msgstr "Aygıt: " - --#: ../glade/NewPrinterWindow.glade.h:53 -+#: ../glade/NewPrinterWindow.glade.h:52 - #, fuzzy - msgid "Device description." - msgstr "Açıklama" - --#: ../glade/NewPrinterWindow.glade.h:54 -+#: ../glade/NewPrinterWindow.glade.h:53 - msgid "DirectJet" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:56 -+#: ../glade/NewPrinterWindow.glade.h:55 - #, fuzzy - msgid "Driver details" - msgstr "Sürücü" - --#: ../glade/NewPrinterWindow.glade.h:57 -+#: ../glade/NewPrinterWindow.glade.h:56 - msgid "Empty" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:58 -+#: ../glade/NewPrinterWindow.glade.h:57 - msgid "Find _Queue..." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:59 -+#: ../glade/NewPrinterWindow.glade.h:58 - msgid "Flow Control" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:60 -+#: ../glade/NewPrinterWindow.glade.h:59 - msgid "" - "For the printer you have selected there are drivers available for download." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:61 -+#: ../glade/NewPrinterWindow.glade.h:60 - msgid "Free software" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:62 -+#: ../glade/NewPrinterWindow.glade.h:61 - msgid "Graphics:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:63 -+#: ../glade/NewPrinterWindow.glade.h:62 - #, fuzzy - msgid "Host:" - msgstr "Makina IP:" - --#: ../glade/NewPrinterWindow.glade.h:64 -+#: ../glade/NewPrinterWindow.glade.h:63 - msgid "Human-readable description such as \"HP LaserJet with Duplexer\"" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:65 -+#: ../glade/NewPrinterWindow.glade.h:64 - msgid "Human-readable location such as \"Lab 1\"" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:67 -+#: ../glade/NewPrinterWindow.glade.h:66 - msgid "LPD" - msgstr "LPD" - --#: ../glade/NewPrinterWindow.glade.h:68 -+#: ../glade/NewPrinterWindow.glade.h:67 - msgid "License:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:69 -+#: ../glade/NewPrinterWindow.glade.h:68 - #, fuzzy - msgid "Line art:" - msgstr "Yazıcı bilgileri:" - --#: ../glade/NewPrinterWindow.glade.h:70 -+#: ../glade/NewPrinterWindow.glade.h:69 - #, fuzzy - msgid "Local Driver" - msgstr "Yerel Yazıcı" - --#: ../glade/NewPrinterWindow.glade.h:71 -+#: ../glade/NewPrinterWindow.glade.h:70 - #, fuzzy - msgid "Make and model:" - msgstr "Üretici ve model gerekli.\n" - --#: ../glade/NewPrinterWindow.glade.h:72 -+#: ../glade/NewPrinterWindow.glade.h:71 - msgid "Manufacturer" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:73 -+#: ../glade/NewPrinterWindow.glade.h:72 - #, fuzzy - msgid "Network" - msgstr "Novell Yazıcı" - --#: ../glade/NewPrinterWindow.glade.h:75 -+#: ../glade/NewPrinterWindow.glade.h:74 - msgid "No, I do not accept this license" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:76 -+#: ../glade/NewPrinterWindow.glade.h:75 - msgid "Parity" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:78 -+#: ../glade/NewPrinterWindow.glade.h:77 - msgid "Patented algorithms" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:79 -+#: ../glade/NewPrinterWindow.glade.h:78 - #, fuzzy - msgid "Photo:" - msgstr "Port: " - --#: ../glade/NewPrinterWindow.glade.h:80 -+#: ../glade/NewPrinterWindow.glade.h:79 - msgid "Port number:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:81 -+#: ../glade/NewPrinterWindow.glade.h:80 - msgid "" - "PostScript Printer Description (PPD) files can often be found on the driver " - "disk that comes with the printer. For PostScript printers they are often " - "part of the Windows® driver." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:82 -+#: ../glade/NewPrinterWindow.glade.h:81 - #, fuzzy - msgid "Printer model:" - msgstr "Yazıcı modeli" - --#: ../glade/NewPrinterWindow.glade.h:83 -+#: ../glade/NewPrinterWindow.glade.h:82 - msgid "Probe" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:84 -+#: ../glade/NewPrinterWindow.glade.h:83 - #, fuzzy - msgid "Prompt user if authentication is required" - msgstr "Kimlik kanıtlama" - --#: ../glade/NewPrinterWindow.glade.h:85 -+#: ../glade/NewPrinterWindow.glade.h:84 - msgid "Provide PPD file" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:86 -+#: ../glade/NewPrinterWindow.glade.h:85 - msgid "Queue:" - msgstr "Kuyruk:" - --#: ../glade/NewPrinterWindow.glade.h:87 -+#: ../glade/NewPrinterWindow.glade.h:86 - msgid "SCSI" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:88 -+#: ../glade/NewPrinterWindow.glade.h:87 - msgid "SMB" - msgstr "SMB" - --#: ../glade/NewPrinterWindow.glade.h:89 -+#: ../glade/NewPrinterWindow.glade.h:88 - msgid "Search for a printer driver to download" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:90 -+#: ../glade/NewPrinterWindow.glade.h:89 - #, fuzzy - msgid "Searching..." - msgstr "Uyarı" - --#: ../glade/NewPrinterWindow.glade.h:91 -+#: ../glade/NewPrinterWindow.glade.h:90 - msgid "Select A File" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:92 -+#: ../glade/NewPrinterWindow.glade.h:91 - #, fuzzy - msgid "Select printer from database" - msgstr "Bir Yazıcı Sürücüsü Seç" - --#: ../glade/NewPrinterWindow.glade.h:93 -+#: ../glade/NewPrinterWindow.glade.h:92 - #, fuzzy - msgid "Serial" - msgstr "Genel" - --#: ../glade/NewPrinterWindow.glade.h:94 -+#: ../glade/NewPrinterWindow.glade.h:93 - #, fuzzy - msgid "Set authentication details now" - msgstr "Kimlik kanıtlama" - --#: ../glade/NewPrinterWindow.glade.h:95 -+#: ../glade/NewPrinterWindow.glade.h:94 - msgid "Short name for this printer such as \"laserjet\"" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:96 -+#: ../glade/NewPrinterWindow.glade.h:95 - msgid "Supplier:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:97 -+#: ../glade/NewPrinterWindow.glade.h:96 - #, fuzzy - msgid "Support:" - msgstr "Port:" - --#: ../glade/NewPrinterWindow.glade.h:98 -+#: ../glade/NewPrinterWindow.glade.h:97 - #, fuzzy - msgid "Text:" - msgstr "_Deneme" - --#: ../glade/NewPrinterWindow.glade.h:99 -+#: ../glade/NewPrinterWindow.glade.h:98 - msgid "" - "The foomatic printer database contains various manufacturer provided " - "PostScript Printer Description (PPD) files and also can generate PPD files " -@@ -2092,70 +2087,70 @@ msgid "" - "printer." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:100 -+#: ../glade/NewPrinterWindow.glade.h:99 - msgid "" - "These drivers do not come from your operating system supplier and will not " - "be covered by their commercial support. See the support and license terms " - "of the driver's supplier." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:101 -+#: ../glade/NewPrinterWindow.glade.h:100 - msgid "" - "This driver supports additional hardware that may be installed in the " - "printer." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:102 -+#: ../glade/NewPrinterWindow.glade.h:101 - msgid "" - "This is done by assuming that options with the same name do have the same " - "meaning. Settings of options that are not present in the new PPD will be " - "lost and options only present in the new PPD will be set to default." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:103 -+#: ../glade/NewPrinterWindow.glade.h:102 - msgid "" - "This way all current option settings will be lost. The default settings of " - "the new PPD will be used. " - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:104 -+#: ../glade/NewPrinterWindow.glade.h:103 - msgid "Try to copy the option settings over from the old PPD. " - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:105 -+#: ../glade/NewPrinterWindow.glade.h:104 - msgid "URI:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:107 -+#: ../glade/NewPrinterWindow.glade.h:106 - msgid "Use the new PPD (Postscript Printer Description) as is." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:109 -+#: ../glade/NewPrinterWindow.glade.h:108 - msgid "" - "With this choice no driver download will be performed. In the next steps a " - "locally installed driver will be selected." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:110 -+#: ../glade/NewPrinterWindow.glade.h:109 - msgid "Yes, I accept this license" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:111 -+#: ../glade/NewPrinterWindow.glade.h:110 - #, fuzzy - msgid "_Search" - msgstr "Uyarı" - --#: ../glade/NewPrinterWindow.glade.h:112 -+#: ../glade/NewPrinterWindow.glade.h:111 - #, fuzzy - msgid "_Verify..." - msgstr "Belirtin..." - --#: ../glade/NewPrinterWindow.glade.h:113 -+#: ../glade/NewPrinterWindow.glade.h:112 - #: ../glade/PrinterPropertiesDialog.glade.h:128 - msgid "move left" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:114 -+#: ../glade/NewPrinterWindow.glade.h:113 - #: ../glade/PrinterPropertiesDialog.glade.h:129 - msgid "move right" - msgstr "" -@@ -3071,7 +3066,7 @@ msgstr "" - msgid "Remember to load paper of type '%s' into the printer first." - msgstr "" - --#: ../troubleshoot/PrintTestPage.py:399 -+#: ../troubleshoot/PrintTestPage.py:416 - msgid "Error submitting test page" - msgstr "" - -@@ -3276,6 +3271,14 @@ msgid "Select default printer" - msgstr "JetDirect Yazıcı" - - #, fuzzy -+#~ msgid "HP Printer (HPLIP)" -+#~ msgstr "Yazıcı IP:" -+ -+#, fuzzy -+#~ msgid "HP Printer (HPLIP) via network" -+#~ msgstr "Yazıcı modeli" -+ -+#, fuzzy - #~ msgid "Not Found" - #~ msgstr "_Yerel-bağlı" - -diff -up system-config-printer-1.1.5/po/uk.po.git-1.1.x system-config-printer-1.1.5/po/uk.po ---- system-config-printer-1.1.5/po/uk.po.git-1.1.x 2009-03-03 22:21:46.000000000 +0000 -+++ system-config-printer-1.1.5/po/uk.po 2009-03-10 17:43:43.000000000 +0000 -@@ -8,7 +8,7 @@ msgid "" - msgstr "" - "Project-Id-Version: printconf\n" - "Report-Msgid-Bugs-To: https://bugzilla.redhat.com/bugzilla\n" --"POT-Creation-Date: 2009-03-02 23:22+0000\n" -+"POT-Creation-Date: 2009-03-10 16:51+0000\n" - "PO-Revision-Date: 2007-04-11 20:22+0300\n" - "Last-Translator: Maxim Dziumanenko \n" - "Language-Team: Ukrainian \n" -@@ -54,11 +54,11 @@ msgstr "" - msgid "Enter IP address" - msgstr "Назва принтера" - --#: ../authconn.py:35 ../glade/NewPrinterWindow.glade.h:108 -+#: ../authconn.py:35 ../glade/NewPrinterWindow.glade.h:107 - msgid "Username:" - msgstr "Користувач:" - --#: ../authconn.py:36 ../glade/NewPrinterWindow.glade.h:77 -+#: ../authconn.py:36 ../glade/NewPrinterWindow.glade.h:76 - msgid "Password:" - msgstr "Пароль:" - -@@ -67,7 +67,7 @@ msgstr "Пароль:" - msgid "Domain:" - msgstr "Верхнє поле:" - --#: ../authconn.py:46 -+#: ../authconn.py:46 ../authconn.py:409 - #, fuzzy - msgid "Authentication" - msgstr "Автентифікація" -@@ -76,45 +76,54 @@ msgstr "Автентифікація< - msgid "Remember password" - msgstr "" - --#: ../authconn.py:211 ../authconn.py:232 -+#: ../authconn.py:208 -+#, python-format -+msgid "Unauthorized request (%s)" -+msgstr "" -+ -+#: ../authconn.py:209 -+msgid "You are not authorized to carry out therequested action." -+msgstr "" -+ -+#: ../authconn.py:212 ../authconn.py:233 - #, fuzzy - msgid "Operation canceled" - msgstr "Політика роботи:" - --#: ../authconn.py:253 -+#: ../authconn.py:250 - #, fuzzy, python-format - msgid "CUPS server error (%s)" - msgstr "Помилка сервера CUPS" - --#: ../authconn.py:255 ../errordialogs.py:57 --#: ../troubleshoot/PrintTestPage.py:400 -+#: ../authconn.py:252 ../errordialogs.py:56 ../errordialogs.py:70 -+msgid "CUPS server error" -+msgstr "Помилка сервера CUPS" -+ -+#: ../authconn.py:261 ../errordialogs.py:57 -+#: ../troubleshoot/PrintTestPage.py:417 - #, python-format - msgid "There was an error during the CUPS operation: '%s'." - msgstr "Помилка при операції CUPS: '%s'." - --#: ../authconn.py:258 -+#: ../authconn.py:264 - #, fuzzy - msgid "Retry" - msgstr "Скинути" - --#: ../authconn.py:379 ../authconn.py:381 ../errordialogs.py:65 ../pysmb.py:75 -+#: ../authconn.py:385 ../authconn.py:387 ../errordialogs.py:65 ../pysmb.py:75 - #: ../pysmb.py:77 - msgid "Not authorized" - msgstr "Немає авторизації" - --#: ../authconn.py:382 ../pysmb.py:78 -+#: ../authconn.py:388 ../pysmb.py:78 - msgid "The password may be incorrect." - msgstr "Можливо неправильний пароль." - --#: ../authconn.py:400 -+#: ../authconn.py:407 - #, fuzzy, python-format - msgid "Authentication (%s)" - msgstr "Автентифікація" - --#: ../errordialogs.py:56 ../errordialogs.py:70 --msgid "CUPS server error" --msgstr "Помилка сервера CUPS" -- - #: ../errordialogs.py:66 - msgid "" - "The password may be incorrect, or the server may be configured to deny " -@@ -143,7 +152,7 @@ msgstr "Вимагається онов - msgid "Server error" - msgstr "Помилка сервера" - --#: ../errordialogs.py:82 ../system-config-printer.py:1219 -+#: ../errordialogs.py:82 ../system-config-printer.py:1223 - msgid "Not connected" - msgstr "Не підключений" - -@@ -165,7 +174,7 @@ msgstr "" - msgid "_New Group from Selection" - msgstr "" - --#: ../GroupsPane.py:98 ../system-config-printer.py:393 -+#: ../GroupsPane.py:98 ../system-config-printer.py:397 - #, fuzzy - msgid "_Rename" - msgstr "_Скинути" -@@ -234,7 +243,7 @@ msgid "Document" - msgstr "Документ" - - #: ../jobviewer.py:212 ../my-default-printer.py:153 --#: ../system-config-printer.py:366 ../system-config-printer.py:1367 -+#: ../system-config-printer.py:370 ../system-config-printer.py:1371 - #: ../troubleshoot/PrintTestPage.py:84 - msgid "Printer" - msgstr "Принтер" -@@ -271,8 +280,8 @@ msgstr "Статус документу" - - #: ../jobviewer.py:386 ../jobviewer.py:451 ../jobviewer.py:452 - #: ../jobviewer.py:492 ../jobviewer.py:600 ../jobviewer.py:727 --#: ../jobviewer.py:1196 ../jobviewer.py:1222 ../system-config-printer.py:2546 --#: ../glade/NewPrinterWindow.glade.h:106 -+#: ../jobviewer.py:1196 ../jobviewer.py:1222 ../system-config-printer.py:2556 -+#: ../glade/NewPrinterWindow.glade.h:105 - #: ../troubleshoot/ChooseNetworkPrinter.py:101 - #: ../troubleshoot/ChooseNetworkPrinter.py:102 - #: ../troubleshoot/ChooseNetworkPrinter.py:105 -@@ -362,12 +371,12 @@ msgstr "" - msgid "Pending" - msgstr "Заплановано" - --#: ../jobviewer.py:591 ../system-config-printer.py:186 -+#: ../jobviewer.py:591 ../system-config-printer.py:190 - #: ../troubleshoot/PrintTestPage.py:43 - msgid "Processing" - msgstr "Оброблює" - --#: ../jobviewer.py:592 ../system-config-printer.py:188 -+#: ../jobviewer.py:592 ../system-config-printer.py:192 - #: ../troubleshoot/PrintTestPage.py:44 - msgid "Stopped" - msgstr "Зупинено" -@@ -484,8 +493,8 @@ msgstr "Встановити типов - msgid "_Set Default" - msgstr "типово" - --#: ../my-default-printer.py:158 ../system-config-printer.py:423 --#: ../system-config-printer.py:3660 ../troubleshoot/ChooseNetworkPrinter.py:37 -+#: ../my-default-printer.py:158 ../system-config-printer.py:427 -+#: ../system-config-printer.py:3675 ../troubleshoot/ChooseNetworkPrinter.py:37 - #: ../troubleshoot/ChoosePrinter.py:38 - #, fuzzy - msgid "Location" -@@ -519,7 +528,7 @@ msgstr "Зробити типовим п - msgid "Authenticated" - msgstr "Автентифікація" - --#: ../ppdippstr.py:50 ../system-config-printer.py:6259 -+#: ../ppdippstr.py:50 ../system-config-printer.py:6207 - #, fuzzy - msgid "None" - msgstr "немає" -@@ -739,132 +748,132 @@ msgstr "" - msgid "1200 dpi, photo, black + color cartridge, photo paper" - msgstr "" - --#: ../system-config-printer.py:127 -+#: ../system-config-printer.py:131 - msgid "To do this, select System->Administration->Firewall from the main menu." - msgstr "" - --#: ../system-config-printer.py:185 -+#: ../system-config-printer.py:189 - msgid "Idle" - msgstr "Простоює" - --#: ../system-config-printer.py:187 -+#: ../system-config-printer.py:191 - msgid "Busy" - msgstr "Зайнятий" - --#: ../system-config-printer.py:372 ../system-config-printer.py:1373 -+#: ../system-config-printer.py:376 ../system-config-printer.py:1377 - #, fuzzy - msgid "Class" - msgstr "Новий клас" - --#: ../system-config-printer.py:399 -+#: ../system-config-printer.py:403 - #, fuzzy - msgid "Set As De_fault" - msgstr "типово" - --#: ../system-config-printer.py:403 -+#: ../system-config-printer.py:407 - #, fuzzy - msgid "_Create class" - msgstr "Віддалені класи" - --#: ../system-config-printer.py:405 -+#: ../system-config-printer.py:409 - #, fuzzy - msgid "View Print _Queue" - msgstr "Новий принтер" - --#: ../system-config-printer.py:407 -+#: ../system-config-printer.py:411 - msgid "_Add to Group" - msgstr "" - --#: ../system-config-printer.py:409 -+#: ../system-config-printer.py:413 - msgid "Save Results as _Group" - msgstr "" - --#: ../system-config-printer.py:411 -+#: ../system-config-printer.py:415 - msgid "Save Filter as _Search Group" - msgstr "" - --#: ../system-config-printer.py:415 -+#: ../system-config-printer.py:419 - #, fuzzy - msgid "E_nabled" - msgstr "Увімкнено" - --#: ../system-config-printer.py:417 -+#: ../system-config-printer.py:421 - #, fuzzy - msgid "_Shared" - msgstr "Спільний доступ" - --#: ../system-config-printer.py:421 ../troubleshoot/ChooseNetworkPrinter.py:35 -+#: ../system-config-printer.py:425 ../troubleshoot/ChooseNetworkPrinter.py:35 - #: ../troubleshoot/ChoosePrinter.py:36 ../troubleshoot/DeviceListed.py:36 - msgid "Name" - msgstr "Назва" - --#: ../system-config-printer.py:422 -+#: ../system-config-printer.py:426 - #, fuzzy - msgid "Description" - msgstr "Опис:" - --#: ../system-config-printer.py:424 -+#: ../system-config-printer.py:428 - msgid "Manufacturer / Model" - msgstr "" - - #. Printer state reasons list --#: ../system-config-printer.py:499 -+#: ../system-config-printer.py:503 - msgid "Message" - msgstr "Повідомлення" - --#: ../system-config-printer.py:534 -+#: ../system-config-printer.py:538 - #, fuzzy - msgid "Problems?" - msgstr "Випробувати" - --#: ../system-config-printer.py:637 ../system-config-printer.py:639 -+#: ../system-config-printer.py:641 ../system-config-printer.py:643 - msgid "Members of this class" - msgstr "Члени цього класу" - --#: ../system-config-printer.py:638 ../system-config-printer.py:640 -+#: ../system-config-printer.py:642 ../system-config-printer.py:644 - msgid "Others" - msgstr "Інші" - --#: ../system-config-printer.py:641 -+#: ../system-config-printer.py:645 - msgid "Devices" - msgstr "Пристрої" - --#: ../system-config-printer.py:642 -+#: ../system-config-printer.py:646 - #, fuzzy - msgid "Connections" - msgstr "З'єднання" - --#: ../system-config-printer.py:643 -+#: ../system-config-printer.py:647 - msgid "Makes" - msgstr "Виробники" - --#: ../system-config-printer.py:644 -+#: ../system-config-printer.py:648 - msgid "Models" - msgstr "Моделі" - --#: ../system-config-printer.py:645 -+#: ../system-config-printer.py:649 - msgid "Drivers" - msgstr "Драйвери" - --#: ../system-config-printer.py:646 ../glade/NewPrinterWindow.glade.h:55 -+#: ../system-config-printer.py:650 ../glade/NewPrinterWindow.glade.h:54 - msgid "Downloadable Drivers" - msgstr "" - --#: ../system-config-printer.py:647 -+#: ../system-config-printer.py:651 - msgid "Users" - msgstr "Користувачі" - --#: ../system-config-printer.py:682 -+#: ../system-config-printer.py:686 - msgid "Automatic rotation" - msgstr "" - --#: ../system-config-printer.py:989 -+#: ../system-config-printer.py:993 - #, fuzzy, python-format - msgid "Printer Properties - '%s' on %s" - msgstr "Звіт принтера" - - #. The Conflict button was pressed. --#: ../system-config-printer.py:996 -+#: ../system-config-printer.py:1000 - msgid "" - "There are conflicting options.\n" - "Changes can only be applied after\n" -@@ -874,81 +883,81 @@ msgstr "" - "Зміни можуть бути збережені\n" - "лише після розв'язання конфлікту." - --#: ../system-config-printer.py:1214 -+#: ../system-config-printer.py:1218 - #, python-format - msgid "Printer configuration - %s" - msgstr "Налаштовування принтера - %s" - --#: ../system-config-printer.py:1217 -+#: ../system-config-printer.py:1221 - #, python-format - msgid "Connected to %s" - msgstr "Підключений до %s" - - #. Update our copy of the printer's settings. --#: ../system-config-printer.py:1257 ../system-config-printer.py:2042 -+#: ../system-config-printer.py:1261 ../system-config-printer.py:2046 - msgid "obtaining queue details" - msgstr "" - --#: ../system-config-printer.py:1295 -+#: ../system-config-printer.py:1299 - msgid "Remove from Group" - msgstr "" - --#: ../system-config-printer.py:1361 -+#: ../system-config-printer.py:1365 - #, fuzzy - msgid "Network printer (discovered)" - msgstr "Новий принтер" - --#: ../system-config-printer.py:1364 -+#: ../system-config-printer.py:1368 - msgid "Network class (discovered)" - msgstr "" - --#: ../system-config-printer.py:1370 ../system-config-printer.py:5524 --#: ../system-config-printer.py:5594 ../system-config-printer.py:5596 -+#: ../system-config-printer.py:1374 ../system-config-printer.py:5519 -+#: ../system-config-printer.py:5589 ../system-config-printer.py:5591 - msgid "Fax" - msgstr "" - --#: ../system-config-printer.py:1376 ../system-config-printer.py:1382 -+#: ../system-config-printer.py:1380 ../system-config-printer.py:1386 - #: ../troubleshoot/LocalOrRemote.py:30 - #, fuzzy - msgid "Network printer" - msgstr "Новий принтер" - --#: ../system-config-printer.py:1379 -+#: ../system-config-printer.py:1383 - #, fuzzy - msgid "Network print share" - msgstr "Новий принтер" - --#: ../system-config-printer.py:1508 ../glade/ConnectingDialog.glade.h:2 -+#: ../system-config-printer.py:1512 ../glade/ConnectingDialog.glade.h:2 - #, no-c-format, python-format - msgid "Opening connection to %s" - msgstr "" - --#: ../system-config-printer.py:1887 -+#: ../system-config-printer.py:1891 - msgid "Installable Options" - msgstr "Можливості що встановлюються" - --#: ../system-config-printer.py:1888 -+#: ../system-config-printer.py:1892 - #: ../glade/PrinterPropertiesDialog.glade.h:109 - msgid "Printer Options" - msgstr "Параметри принтера" - --#: ../system-config-printer.py:1924 -+#: ../system-config-printer.py:1928 - #, python-format - msgid "modifying class %s" - msgstr "" - --#: ../system-config-printer.py:1926 ../system-config-printer.py:3019 --#: ../system-config-printer.py:3044 ../system-config-printer.py:6547 --#: ../system-config-printer.py:6559 ../system-config-printer.py:6581 -+#: ../system-config-printer.py:1930 ../system-config-printer.py:3037 -+#: ../system-config-printer.py:3062 ../system-config-printer.py:6495 -+#: ../system-config-printer.py:6507 ../system-config-printer.py:6529 - #, fuzzy, python-format - msgid "modifying printer %s" - msgstr "Налаштовування принтерів" - --#: ../system-config-printer.py:1941 -+#: ../system-config-printer.py:1945 - msgid "This will delete this class!" - msgstr "Це призведе до видалення класу!" - --#: ../system-config-printer.py:1942 -+#: ../system-config-printer.py:1946 - msgid "Proceed anyway?" - msgstr "Продовжити?" - -@@ -956,50 +965,50 @@ msgstr "Продовжити?" - #. but we have never fetched the server settings to see whether - #. the server is publishing shared printers. Fetch the settings - #. now so that we can update the "not published" label if necessary. --#: ../system-config-printer.py:2030 ../system-config-printer.py:3203 -+#: ../system-config-printer.py:2034 ../system-config-printer.py:3221 - #, fuzzy - msgid "fetching server settings" - msgstr "Основні параметри сервера" - --#: ../system-config-printer.py:2100 -+#: ../system-config-printer.py:2104 - #, fuzzy - msgid "Set Default Printer" - msgstr "Зробити типовим принтером" - --#: ../system-config-printer.py:2102 -+#: ../system-config-printer.py:2106 - msgid "Do you want to set this as the system-wide default printer?" - msgstr "" - --#: ../system-config-printer.py:2104 -+#: ../system-config-printer.py:2108 - #, fuzzy - msgid "Set as the _system-wide default printer" - msgstr "Це типовий принтер" - --#: ../system-config-printer.py:2106 -+#: ../system-config-printer.py:2110 - msgid "_Clear my personal default setting" - msgstr "" - --#: ../system-config-printer.py:2107 -+#: ../system-config-printer.py:2111 - #, fuzzy - msgid "Set as my _personal default printer" - msgstr "Зробити типовим принтером" - --#: ../system-config-printer.py:2112 -+#: ../system-config-printer.py:2116 - #, fuzzy - msgid "setting default printer" - msgstr "Зробити типовим принтером" - --#: ../system-config-printer.py:2169 -+#: ../system-config-printer.py:2173 - #, fuzzy - msgid "printing test page" - msgstr "Надрукувати тестову сторінку" - --#: ../system-config-printer.py:2182 ../system-config-printer.py:2217 --#: ../system-config-printer.py:5418 -+#: ../system-config-printer.py:2186 ../system-config-printer.py:2221 -+#: ../system-config-printer.py:5413 - msgid "Not possible" - msgstr "Неможливо" - --#: ../system-config-printer.py:2183 ../system-config-printer.py:2218 -+#: ../system-config-printer.py:2187 ../system-config-printer.py:2222 - msgid "" - "The remote server did not accept the print job, most likely because the " - "printer is not shared." -@@ -1007,20 +1016,20 @@ msgstr "" - "Віддалений сервер не прийняв завдання для друку, швидше за все, принтер не " - "налаштований для спільного доступу." - --#: ../system-config-printer.py:2195 ../system-config-printer.py:2210 -+#: ../system-config-printer.py:2199 ../system-config-printer.py:2214 - msgid "Submitted" - msgstr "Переслано" - --#: ../system-config-printer.py:2196 -+#: ../system-config-printer.py:2200 - #, python-format - msgid "Test page submitted as job %d" - msgstr "Тестова сторінка вставлена у чергу як завдання %d" - --#: ../system-config-printer.py:2203 -+#: ../system-config-printer.py:2207 - msgid "sending maintenance command" - msgstr "" - --#: ../system-config-printer.py:2211 -+#: ../system-config-printer.py:2215 - #, fuzzy, python-format - msgid "Maintenance command submitted as job %d" - msgstr "Тестова сторінка вставлена у чергу як завдання %d" -@@ -1028,75 +1037,75 @@ msgstr "Тестова сторінка - #. The underlying cupsGetPPD2() function returned NULL without - #. setting an IPP error, so it'll be something like a failed - #. connection. --#: ../system-config-printer.py:2285 ../system-config-printer.py:2381 -+#: ../system-config-printer.py:2289 ../system-config-printer.py:2385 - msgid "Error" - msgstr "Помилка" - --#: ../system-config-printer.py:2286 -+#: ../system-config-printer.py:2290 - msgid "There was a problem connecting to the CUPS server." - msgstr "Помилка підключення до сервера CUPS." - --#: ../system-config-printer.py:2382 -+#: ../system-config-printer.py:2386 - #, python-format - msgid "Option '%s' has value '%s' and cannot be edited." - msgstr "" - --#: ../system-config-printer.py:2466 -+#: ../system-config-printer.py:2476 - msgid "Marker levels are not reported for this printer." - msgstr "" - --#: ../system-config-printer.py:2763 -+#: ../system-config-printer.py:2773 - #, fuzzy - msgid "Cannot Rename" - msgstr "_Скинути" - --#: ../system-config-printer.py:2764 -+#: ../system-config-printer.py:2774 - msgid "There are queued jobs." - msgstr "" - --#: ../system-config-printer.py:2822 -+#: ../system-config-printer.py:2840 - #, fuzzy - msgid "renaming printer" - msgstr "Налаштовування принтерів" - - #. for classes make sure all members - #. will get added --#: ../system-config-printer.py:2907 -+#: ../system-config-printer.py:2925 - #, fuzzy - msgid "copying printer" - msgstr "Налаштовування принтерів" - --#: ../system-config-printer.py:2971 -+#: ../system-config-printer.py:2989 - #, fuzzy, python-format - msgid "Really delete class '%s'?" - msgstr "Справді видалити клас %s?" - --#: ../system-config-printer.py:2973 -+#: ../system-config-printer.py:2991 - #, fuzzy, python-format - msgid "Really delete printer '%s'?" - msgstr "Справді видалити %s?" - --#: ../system-config-printer.py:2975 -+#: ../system-config-printer.py:2993 - #, fuzzy - msgid "Really delete selected destinations?" - msgstr "Справді видалити %s?" - --#: ../system-config-printer.py:2996 -+#: ../system-config-printer.py:3014 - #, fuzzy, python-format - msgid "deleting printer %s" - msgstr "Налаштовування принтерів" - --#: ../system-config-printer.py:3070 -+#: ../system-config-printer.py:3088 - msgid "Publish Shared Printers" - msgstr "" - --#: ../system-config-printer.py:3071 -+#: ../system-config-printer.py:3089 - msgid "" - "Shared printers are not available to other people unless the 'Publish shared " - "printers' option is enabled in the server settings." - msgstr "" - --#: ../system-config-printer.py:3264 -+#: ../system-config-printer.py:3282 - #, fuzzy - msgid "modifying server settings" - msgstr "Основні параметри сервера" -@@ -1107,105 +1116,105 @@ msgstr "Основні парамет - #. be unblocked. Unfortunately, this is not yet possible - #. (bug #440469). However, we can display a dialog to suggest - #. that now might be a good time to review the firewall settings. --#: ../system-config-printer.py:3289 -+#: ../system-config-printer.py:3307 - msgid "Review Firewall" - msgstr "" - --#: ../system-config-printer.py:3290 -+#: ../system-config-printer.py:3308 - msgid "" - "You may need to adjust the firewall to allow network printing to this " - "computer." - msgstr "" - --#: ../system-config-printer.py:3623 -+#: ../system-config-printer.py:3638 - msgid "Browsing not available (pysmbc not installed)" - msgstr "" - - #. SMB list columns --#: ../system-config-printer.py:3629 -+#: ../system-config-printer.py:3644 - msgid "Share" - msgstr "Спільний ресурс" - --#: ../system-config-printer.py:3635 -+#: ../system-config-printer.py:3650 - msgid "Comment" - msgstr "Коментар" - - #. IPP list columns --#: ../system-config-printer.py:3654 -+#: ../system-config-printer.py:3669 - msgid "Queue" - msgstr "" - --#: ../system-config-printer.py:3668 -+#: ../system-config-printer.py:3683 - #, fuzzy - msgid "" - "PostScript Printer Description files (*.ppd, *.PPD, *.ppd.gz, *.PPD.gz, *." - "PPD.GZ)" - msgstr "Опис принтера PostScript (*.ppd[.gz])" - --#: ../system-config-printer.py:3677 -+#: ../system-config-printer.py:3692 - msgid "All files (*)" - msgstr "" - --#: ../system-config-printer.py:3713 ../system-config-printer.py:5970 --#: ../system-config-printer.py:6008 ../applet.py:124 -+#: ../system-config-printer.py:3728 ../system-config-printer.py:5918 -+#: ../system-config-printer.py:5956 ../applet.py:124 - #, fuzzy - msgid "Search" - msgstr "Нова назва принтера" - --#: ../system-config-printer.py:3736 ../system-config-printer.py:3760 --#: ../glade/NewPrinterWindow.glade.h:74 -+#: ../system-config-printer.py:3751 ../system-config-printer.py:3775 -+#: ../glade/NewPrinterWindow.glade.h:73 - msgid "New Printer" - msgstr "Новий принтер" - --#: ../system-config-printer.py:3747 -+#: ../system-config-printer.py:3762 - msgid "New Class" - msgstr "Новий клас" - --#: ../system-config-printer.py:3752 -+#: ../system-config-printer.py:3767 - msgid "Change Device URI" - msgstr "Зміна URI адреси пристрою" - --#: ../system-config-printer.py:3758 -+#: ../system-config-printer.py:3773 - msgid "Change Driver" - msgstr "Змінити драйвер" - --#: ../system-config-printer.py:3927 ../system-config-printer.py:3993 --#: ../system-config-printer.py:4289 ../system-config-printer.py:4487 --#: ../system-config-printer.py:5772 ../system-config-printer.py:5995 -+#: ../system-config-printer.py:3942 ../system-config-printer.py:4008 -+#: ../system-config-printer.py:4304 ../system-config-printer.py:4502 -+#: ../system-config-printer.py:5762 ../system-config-printer.py:5943 - msgid "Searching" - msgstr "" - --#: ../system-config-printer.py:3928 -+#: ../system-config-printer.py:3943 - #, fuzzy - msgid "Searching for downloadable drivers" - msgstr "Нова назва принтера" - --#: ../system-config-printer.py:3994 ../system-config-printer.py:4290 -+#: ../system-config-printer.py:4009 ../system-config-printer.py:4305 - msgid "Searching for drivers" - msgstr "" - --#: ../system-config-printer.py:4488 ../system-config-printer.py:5773 -+#: ../system-config-printer.py:4503 ../system-config-printer.py:5763 - #, fuzzy - msgid "Searching for printers" - msgstr "Нова назва принтера" - --#: ../system-config-printer.py:4497 -+#: ../system-config-printer.py:4512 - #, fuzzy - msgid "fetching device list" - msgstr "Основні параметри сервера" - - #. Tell the user why he needs the plugin --#: ../system-config-printer.py:4579 -+#: ../system-config-printer.py:4594 - msgid "For this printer a proprietary driver plugin from HP is available.\n" - msgstr "" - --#: ../system-config-printer.py:4582 -+#: ../system-config-printer.py:4597 - msgid "" - "The installation of the plugin is required for your printer to work.\n" - "\n" - msgstr "" - --#: ../system-config-printer.py:4585 -+#: ../system-config-printer.py:4600 - msgid "" - "Installing the plugin is optional, it completes or enhances the " - "functionality\n" -@@ -1213,219 +1222,215 @@ msgid "" - "\n" - msgstr "" - --#: ../system-config-printer.py:4589 -+#: ../system-config-printer.py:4604 - msgid "The plugin provides the following features:\n" - msgstr "" - --#: ../system-config-printer.py:4592 -+#: ../system-config-printer.py:4607 - msgid " - Printing support\n" - msgstr "" - --#: ../system-config-printer.py:4595 -+#: ../system-config-printer.py:4610 - msgid " - Faster printing\n" - msgstr "" - --#: ../system-config-printer.py:4598 -+#: ../system-config-printer.py:4613 - msgid " - Better printout quality\n" - msgstr "" - --#: ../system-config-printer.py:4601 -+#: ../system-config-printer.py:4616 - msgid " - Extra printing features\n" - msgstr "" - --#: ../system-config-printer.py:4604 -+#: ../system-config-printer.py:4619 - msgid " - Scanning support\n" - msgstr "" - --#: ../system-config-printer.py:4607 -+#: ../system-config-printer.py:4622 - msgid " - Faster scanning\n" - msgstr "" - --#: ../system-config-printer.py:4610 -+#: ../system-config-printer.py:4625 - msgid " - Better scanning image quality\n" - msgstr "" - --#: ../system-config-printer.py:4613 -+#: ../system-config-printer.py:4628 - msgid " - Faxing support\n" - msgstr "" - --#: ../system-config-printer.py:4616 -+#: ../system-config-printer.py:4631 - msgid " - Extra fax features\n" - msgstr "" - --#: ../system-config-printer.py:4619 -+#: ../system-config-printer.py:4634 - msgid " - Better Input/Output support\n" - msgstr "" - --#: ../system-config-printer.py:4622 -+#: ../system-config-printer.py:4637 - msgid " - Extra user interface features\n" - msgstr "" - --#: ../system-config-printer.py:4625 -+#: ../system-config-printer.py:4640 - msgid " - Other extra features\n" - msgstr "" - --#: ../system-config-printer.py:4630 -+#: ../system-config-printer.py:4645 - #, fuzzy - msgid "Install plugin" - msgstr "Можливості що встановлюються" - --#: ../system-config-printer.py:4631 -+#: ../system-config-printer.py:4646 - #, fuzzy - msgid "Do not set up printer" - msgstr "Копіювання принтера" - --#: ../system-config-printer.py:4632 -+#: ../system-config-printer.py:4647 - msgid "Set up without plugin" - msgstr "" - --#: ../system-config-printer.py:4634 ../troubleshoot/PrintTestPage.py:118 -+#: ../system-config-printer.py:4649 ../troubleshoot/PrintTestPage.py:118 - msgid "Yes" - msgstr "" - --#: ../system-config-printer.py:4635 ../troubleshoot/PrintTestPage.py:119 -+#: ../system-config-printer.py:4650 ../troubleshoot/PrintTestPage.py:119 - msgid "No" - msgstr "" - --#: ../system-config-printer.py:4809 ../system-config-printer.py:4813 -+#: ../system-config-printer.py:4824 ../system-config-printer.py:4828 - msgid " (Current)" - msgstr " (Поточний)" - --#: ../system-config-printer.py:4845 --msgid "HP Printer (HPLIP)" --msgstr "" -- --#: ../system-config-printer.py:4886 -+#: ../system-config-printer.py:4881 - msgid "Other" - msgstr "Інший" - - #. device-info - #. PhysicalDevice obj - #. Separator? --#: ../system-config-printer.py:4902 -+#: ../system-config-printer.py:4897 - #, fuzzy - msgid "Network Printer" - msgstr "Новий принтер" - --#: ../system-config-printer.py:4906 -+#: ../system-config-printer.py:4901 - #, fuzzy - msgid "Find Network Printer" - msgstr "Новий принтер" - --#: ../system-config-printer.py:4979 ../system-config-printer.py:5376 -+#: ../system-config-printer.py:4974 ../system-config-printer.py:5371 - #, fuzzy - msgid "Scanning..." - msgstr "Масштаб:" - --#: ../system-config-printer.py:5034 ../system-config-printer.py:5798 -+#: ../system-config-printer.py:5029 - #, fuzzy - msgid "No Print Shares" - msgstr "Новий принтер" - --#: ../system-config-printer.py:5035 -+#: ../system-config-printer.py:5030 - msgid "" - "There were no print shares found. Please check that the Samba service is " - "marked as trusted in your firewall configuration." - msgstr "" - --#: ../system-config-printer.py:5296 ../system-config-printer.py:5357 -+#: ../system-config-printer.py:5291 ../system-config-printer.py:5352 - msgid "Print Share Verified" - msgstr "" - --#: ../system-config-printer.py:5297 ../system-config-printer.py:5358 -+#: ../system-config-printer.py:5292 ../system-config-printer.py:5353 - msgid "This print share is accessible." - msgstr "Цей принтер (спільний ресурс) доступний." - --#: ../system-config-printer.py:5302 ../system-config-printer.py:5362 -+#: ../system-config-printer.py:5297 ../system-config-printer.py:5357 - msgid "This print share is not accessible." - msgstr "Цей принтер (спільний ресурс) недоступний." - --#: ../system-config-printer.py:5305 -+#: ../system-config-printer.py:5300 - #, fuzzy - msgid "Print Share Inaccessible" - msgstr "Цей принтер (спільний ресурс) доступний." - --#: ../system-config-printer.py:5361 -+#: ../system-config-printer.py:5356 - msgid "Inaccessible" - msgstr "Недоступно" - --#: ../system-config-printer.py:5419 -+#: ../system-config-printer.py:5414 - #, fuzzy, python-format - msgid "It is not possible to obtain a list of queues from '%s'." - msgstr "Помилка підключення до сервера CUPS." - --#: ../system-config-printer.py:5421 -+#: ../system-config-printer.py:5416 - msgid "" - "Obtaining a list of queues is a CUPS extension to IPP. Network printers do " - "not support it." - msgstr "" - --#: ../system-config-printer.py:5424 -+#: ../system-config-printer.py:5419 - msgid "No queues" - msgstr "" - --#: ../system-config-printer.py:5425 -+#: ../system-config-printer.py:5420 - msgid "There are no queues available." - msgstr "" - --#: ../system-config-printer.py:5516 -+#: ../system-config-printer.py:5511 - msgid "Parallel Port" - msgstr "" - --#: ../system-config-printer.py:5518 -+#: ../system-config-printer.py:5513 - #, fuzzy - msgid "Serial Port" - msgstr "Послідовний порт" - --#: ../system-config-printer.py:5520 -+#: ../system-config-printer.py:5515 - #, fuzzy - msgid "USB" - msgstr "SMB" - --#: ../system-config-printer.py:5522 ../system-config-printer.py:5525 -+#: ../system-config-printer.py:5517 ../system-config-printer.py:5520 - msgid "HP Linux Imaging and Printing (HPLIP)" - msgstr "" - --#: ../system-config-printer.py:5527 -+#: ../system-config-printer.py:5522 - #, fuzzy - msgid "Hardware Abstraction Layer (HAL)" - msgstr "HAL (Hardware Abstraction Layer) виявив локальний принтер." - --#: ../system-config-printer.py:5529 -+#: ../system-config-printer.py:5524 - msgid "AppSocket/HP JetDirect" - msgstr "" - --#: ../system-config-printer.py:5538 -+#: ../system-config-printer.py:5533 - #, python-format - msgid "LPD/LPR queue '%s'" - msgstr "" - --#: ../system-config-printer.py:5540 -+#: ../system-config-printer.py:5535 - #, fuzzy - msgid "LPD/LPR queue" - msgstr "LPD" - --#: ../system-config-printer.py:5543 -+#: ../system-config-printer.py:5538 - msgid "Windows Printer via SAMBA" - msgstr "" - --#: ../system-config-printer.py:5545 ../glade/NewPrinterWindow.glade.h:66 -+#: ../system-config-printer.py:5540 ../glade/NewPrinterWindow.glade.h:65 - msgid "IPP" - msgstr "IPP" - --#: ../system-config-printer.py:5547 -+#: ../system-config-printer.py:5542 - msgid "HTTP" - msgstr "" - --#: ../system-config-printer.py:5632 -+#: ../system-config-printer.py:5624 - msgid "A printer connected to the parallel port." - msgstr "Принтер підключений до паралельного порту." - --#: ../system-config-printer.py:5634 -+#: ../system-config-printer.py:5626 - msgid "A printer connected to a USB port." - msgstr "Принтер підключений до порту USB." - --#: ../system-config-printer.py:5636 -+#: ../system-config-printer.py:5628 - msgid "" - "HPLIP software driving a printer, or the printer function of a multi-" - "function device." -@@ -1433,7 +1438,7 @@ msgstr "" - "Роботу принтера забезпечує HPLIP або функція принтера багатофункціонального " - "пристрою." - --#: ../system-config-printer.py:5639 -+#: ../system-config-printer.py:5631 - msgid "" - "HPLIP software driving a fax machine, or the fax function of a multi-" - "function device." -@@ -1441,70 +1446,66 @@ msgstr "" - "Роботу принтера забезпечує HPLIP або функція факсу багатофункціонального " - "пристрою." - --#: ../system-config-printer.py:5642 -+#: ../system-config-printer.py:5634 - msgid "Local printer detected by the Hardware Abstraction Layer (HAL)." - msgstr "HAL (Hardware Abstraction Layer) виявив локальний принтер." - --#: ../system-config-printer.py:5799 --msgid "HPLIP cannot find the device." --msgstr "" -- --#: ../system-config-printer.py:5881 -+#: ../system-config-printer.py:5831 - msgid "No printer was found at that address." - msgstr "" - --#: ../system-config-printer.py:6020 -+#: ../system-config-printer.py:5968 - #, fuzzy - msgid "-- Select from search results --" - msgstr "Виберіть принтер з бази даних" - --#: ../system-config-printer.py:6022 -+#: ../system-config-printer.py:5970 - msgid "-- No matches found --" - msgstr "" - --#: ../system-config-printer.py:6203 -+#: ../system-config-printer.py:6151 - msgid " (recommended)" - msgstr "(рекомендований)" - --#: ../system-config-printer.py:6217 -+#: ../system-config-printer.py:6165 - msgid "This PPD is generated by foomatic." - msgstr "Цей PPD сформовано foomatic." - --#: ../system-config-printer.py:6241 -+#: ../system-config-printer.py:6189 - #, fuzzy - msgid "OpenPrinting" - msgstr "Друк" - --#: ../system-config-printer.py:6252 -+#: ../system-config-printer.py:6200 - msgid "Distributable" - msgstr "" - --#: ../system-config-printer.py:6293 -+#: ../system-config-printer.py:6241 - #, fuzzy - msgid ", " - msgstr " " - --#: ../system-config-printer.py:6298 -+#: ../system-config-printer.py:6246 - #, python-format - msgid "" - "\n" - "(%s)" - msgstr "" - --#: ../system-config-printer.py:6303 -+#: ../system-config-printer.py:6251 - msgid "No support contacts known" - msgstr "" - --#: ../system-config-printer.py:6307 ../system-config-printer.py:6320 -+#: ../system-config-printer.py:6255 ../system-config-printer.py:6268 - msgid "Not specified." - msgstr "" - - #. Foomatic database problem of some sort. --#: ../system-config-printer.py:6360 -+#: ../system-config-printer.py:6308 - msgid "Database error" - msgstr "Помилка бази даних" - --#: ../system-config-printer.py:6361 -+#: ../system-config-printer.py:6309 - #, python-format - msgid "The '%s' driver cannot be used with printer '%s %s'." - msgstr "Драйвер '%s' не може використовуватись з принтером '%s %s'." -@@ -1512,65 +1513,65 @@ msgstr "Драйвер '%s' не мож - #. This printer references some XML that is not - #. installed by default. Point the user at the - #. package they need to install. --#: ../system-config-printer.py:6371 -+#: ../system-config-printer.py:6319 - #, python-format - msgid "You will need to install the '%s' package in order to use this driver." - msgstr "Щоб скористатись цим драйвером необхідно встановити пакет '%s'." - - #. This error came from trying to open the PPD file. --#: ../system-config-printer.py:6378 -+#: ../system-config-printer.py:6326 - msgid "PPD error" - msgstr "Помилка PPD" - --#: ../system-config-printer.py:6380 -+#: ../system-config-printer.py:6328 - msgid "Failed to read PPD file. Possible reason follows:" - msgstr "Не вдається прочитати файл PPD. Можливі причини:" - - #. Failed to get PPD downloaded from OpenPrinting XXX --#: ../system-config-printer.py:6397 -+#: ../system-config-printer.py:6345 - msgid "Downloadable drivers" - msgstr "" - --#: ../system-config-printer.py:6398 -+#: ../system-config-printer.py:6346 - msgid "Failed to download PPD." - msgstr "" - --#: ../system-config-printer.py:6405 -+#: ../system-config-printer.py:6353 - #, fuzzy - msgid "fetching PPD" - msgstr "Змінити PPD" - --#: ../system-config-printer.py:6434 ../system-config-printer.py:6472 -+#: ../system-config-printer.py:6382 ../system-config-printer.py:6420 - #, fuzzy - msgid "No Installable Options" - msgstr "Можливості що встановлюються" - --#: ../system-config-printer.py:6520 -+#: ../system-config-printer.py:6468 - #, fuzzy, python-format - msgid "adding printer %s" - msgstr "Налаштовування принтерів" - --#: ../system-config-printer.py:6669 -+#: ../system-config-printer.py:6617 - msgid "Would you like to print a test page?" - msgstr "" - --#: ../system-config-printer.py:6722 -+#: ../system-config-printer.py:6670 - #, fuzzy - msgid "Install driver" - msgstr "Відсутній драйвер" - --#: ../system-config-printer.py:6723 ../troubleshoot/CheckPPDSanity.py:131 -+#: ../system-config-printer.py:6671 ../troubleshoot/CheckPPDSanity.py:131 - #, fuzzy, python-format - msgid "Printer '%s' requires the %s package but it is not currently installed." - msgstr "" - "Принтеру '%s' потрібен пакет %s, але він не встановлений. Будь ласка, " - "встановіть його перш ніж використовувати принтер." - --#: ../system-config-printer.py:6739 -+#: ../system-config-printer.py:6687 - msgid "Missing driver" - msgstr "Відсутній драйвер" - --#: ../system-config-printer.py:6740 -+#: ../system-config-printer.py:6688 - #, python-format - msgid "" - "Printer '%s' requires the '%s' program but it is not currently installed. " -@@ -1700,133 +1701,128 @@ msgstr "Вкажіть URI пристр - - #: ../glade/NewPrinterWindow.glade.h:5 - #, fuzzy --msgid "HP Printer (HPLIP) via network" --msgstr "Назва принтера" -- --#: ../glade/NewPrinterWindow.glade.h:6 --#, fuzzy - msgid "IPP Printer" - msgstr "Назва принтера" - --#: ../glade/NewPrinterWindow.glade.h:7 -+#: ../glade/NewPrinterWindow.glade.h:6 - #, fuzzy - msgid "License Terms" - msgstr "Назва принтера" - --#: ../glade/NewPrinterWindow.glade.h:8 -+#: ../glade/NewPrinterWindow.glade.h:7 - msgid "Location of the LPD network printer" - msgstr "Розташування мережного принтера LPD" - --#: ../glade/NewPrinterWindow.glade.h:9 -+#: ../glade/NewPrinterWindow.glade.h:8 - msgid "Location of the network printer" - msgstr "Розташування мережного принтера" - --#: ../glade/NewPrinterWindow.glade.h:10 -+#: ../glade/NewPrinterWindow.glade.h:9 - msgid "Location (optional)" - msgstr "Розташування (не обов'язково)" - --#: ../glade/NewPrinterWindow.glade.h:11 -+#: ../glade/NewPrinterWindow.glade.h:10 - #, fuzzy - msgid "Network Printer" - msgstr "Новий принтер" - --#: ../glade/NewPrinterWindow.glade.h:12 -+#: ../glade/NewPrinterWindow.glade.h:11 - #, fuzzy - msgid "Note" - msgstr "Стан" - --#: ../glade/NewPrinterWindow.glade.h:13 -+#: ../glade/NewPrinterWindow.glade.h:12 - #, fuzzy - msgid "Output Quality" - msgstr "Стан" - --#: ../glade/NewPrinterWindow.glade.h:14 -+#: ../glade/NewPrinterWindow.glade.h:13 - msgid "Printer Name" - msgstr "Назва принтера" - --#: ../glade/NewPrinterWindow.glade.h:15 -+#: ../glade/NewPrinterWindow.glade.h:14 - #, fuzzy - msgid "SMB Printer" - msgstr "Назва принтера" - --#: ../glade/NewPrinterWindow.glade.h:16 -+#: ../glade/NewPrinterWindow.glade.h:15 - #, fuzzy - msgid "Select Driver" - msgstr "Типовий принтер" - --#: ../glade/NewPrinterWindow.glade.h:17 -+#: ../glade/NewPrinterWindow.glade.h:16 - msgid "Settings of the serial port" - msgstr "Параметри послідовного порту" - --#: ../glade/NewPrinterWindow.glade.h:18 -+#: ../glade/NewPrinterWindow.glade.h:17 - msgid "smb://[workgroup/]server[:port]/printer" - msgstr "smb://[робочагрупа/]сервер[:порт]/принтер" - --#: ../glade/NewPrinterWindow.glade.h:19 -+#: ../glade/NewPrinterWindow.glade.h:18 - #, fuzzy - msgid "Choose Class Members" - msgstr "" - "Вимагається пароль\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:20 -+#: ../glade/NewPrinterWindow.glade.h:19 - #, fuzzy - msgid "Choose Driver" - msgstr "" - "Вимагається пароль\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:21 -+#: ../glade/NewPrinterWindow.glade.h:20 - #, fuzzy - msgid "Describe Printer" - msgstr "" - "Вимагається пароль\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:22 -+#: ../glade/NewPrinterWindow.glade.h:21 - #, fuzzy - msgid "Existing Settings" - msgstr "" - "Вимагається пароль\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:23 -+#: ../glade/NewPrinterWindow.glade.h:22 - #, fuzzy - msgid "Installable Options" - msgstr "" - "Вимагається пароль\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:24 -+#: ../glade/NewPrinterWindow.glade.h:23 - #, fuzzy - msgid "Select Device" - msgstr "" - "Вимагається пароль\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:25 -+#: ../glade/NewPrinterWindow.glade.h:24 - msgid "Baud Rate" - msgstr "Швидкість передачі" - --#: ../glade/NewPrinterWindow.glade.h:26 -+#: ../glade/NewPrinterWindow.glade.h:25 - msgid "Browse..." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:27 -+#: ../glade/NewPrinterWindow.glade.h:26 - #, fuzzy - msgid "Comments..." - msgstr "Коментар" - --#: ../glade/NewPrinterWindow.glade.h:28 -+#: ../glade/NewPrinterWindow.glade.h:27 - #, fuzzy - msgid "Connection" - msgstr "З'єднання" - --#: ../glade/NewPrinterWindow.glade.h:29 -+#: ../glade/NewPrinterWindow.glade.h:28 - msgid "Data Bits" - msgstr "Біти даних" - --#: ../glade/NewPrinterWindow.glade.h:30 -+#: ../glade/NewPrinterWindow.glade.h:29 - msgid "" - "Default\n" - "1200\n" -@@ -1848,7 +1844,7 @@ msgstr "" - "57600\n" - "115200" - --#: ../glade/NewPrinterWindow.glade.h:39 -+#: ../glade/NewPrinterWindow.glade.h:38 - msgid "" - "Default\n" - "8\n" -@@ -1858,7 +1854,7 @@ msgstr "" - "8\n" - "7" - --#: ../glade/NewPrinterWindow.glade.h:42 -+#: ../glade/NewPrinterWindow.glade.h:41 - msgid "" - "Default\n" - "None\n" -@@ -1870,7 +1866,7 @@ msgstr "" - "Непарний\n" - "Парний" - --#: ../glade/NewPrinterWindow.glade.h:46 -+#: ../glade/NewPrinterWindow.glade.h:45 - msgid "" - "Default\n" - "None\n" -@@ -1884,120 +1880,120 @@ msgstr "" - "RTS/CTS (апаратно)\n" - "DTR/DSR (апаратно)" - --#: ../glade/NewPrinterWindow.glade.h:51 -+#: ../glade/NewPrinterWindow.glade.h:50 - #: ../glade/PrinterPropertiesDialog.glade.h:35 - msgid "Description:" - msgstr "Опис:" - --#: ../glade/NewPrinterWindow.glade.h:52 ../troubleshoot/DeviceListed.py:40 -+#: ../glade/NewPrinterWindow.glade.h:51 ../troubleshoot/DeviceListed.py:40 - msgid "Device URI" - msgstr "URI пристрою" - --#: ../glade/NewPrinterWindow.glade.h:53 -+#: ../glade/NewPrinterWindow.glade.h:52 - msgid "Device description." - msgstr "Опис пристрою." - --#: ../glade/NewPrinterWindow.glade.h:54 -+#: ../glade/NewPrinterWindow.glade.h:53 - msgid "DirectJet" - msgstr "DirectJet" - --#: ../glade/NewPrinterWindow.glade.h:56 -+#: ../glade/NewPrinterWindow.glade.h:55 - #, fuzzy - msgid "Driver details" - msgstr "Драйвери" - --#: ../glade/NewPrinterWindow.glade.h:57 -+#: ../glade/NewPrinterWindow.glade.h:56 - msgid "Empty" - msgstr "Немає" - --#: ../glade/NewPrinterWindow.glade.h:58 -+#: ../glade/NewPrinterWindow.glade.h:57 - msgid "Find _Queue..." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:59 -+#: ../glade/NewPrinterWindow.glade.h:58 - msgid "Flow Control" - msgstr "Керування потоком" - --#: ../glade/NewPrinterWindow.glade.h:60 -+#: ../glade/NewPrinterWindow.glade.h:59 - msgid "" - "For the printer you have selected there are drivers available for download." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:61 -+#: ../glade/NewPrinterWindow.glade.h:60 - msgid "Free software" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:62 -+#: ../glade/NewPrinterWindow.glade.h:61 - msgid "Graphics:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:63 -+#: ../glade/NewPrinterWindow.glade.h:62 - #, fuzzy - msgid "Host:" - msgstr "Назва вузла" - --#: ../glade/NewPrinterWindow.glade.h:64 -+#: ../glade/NewPrinterWindow.glade.h:63 - msgid "Human-readable description such as \"HP LaserJet with Duplexer\"" - msgstr "Зрозумілий людині опис, наприклад \"HP LaserJet with Duplexer\"" - --#: ../glade/NewPrinterWindow.glade.h:65 -+#: ../glade/NewPrinterWindow.glade.h:64 - msgid "Human-readable location such as \"Lab 1\"" - msgstr "Зрозуміле людині розташування, наприклад, \"Лабораторія 1\"" - --#: ../glade/NewPrinterWindow.glade.h:67 -+#: ../glade/NewPrinterWindow.glade.h:66 - msgid "LPD" - msgstr "LPD" - --#: ../glade/NewPrinterWindow.glade.h:68 -+#: ../glade/NewPrinterWindow.glade.h:67 - msgid "License:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:69 -+#: ../glade/NewPrinterWindow.glade.h:68 - #, fuzzy - msgid "Line art:" - msgstr "Стан принтера:" - --#: ../glade/NewPrinterWindow.glade.h:70 -+#: ../glade/NewPrinterWindow.glade.h:69 - #, fuzzy - msgid "Local Driver" - msgstr "Локальні принтери" - --#: ../glade/NewPrinterWindow.glade.h:71 -+#: ../glade/NewPrinterWindow.glade.h:70 - #, fuzzy - msgid "Make and model:" - msgstr "Виробник та модель:" - --#: ../glade/NewPrinterWindow.glade.h:72 -+#: ../glade/NewPrinterWindow.glade.h:71 - msgid "Manufacturer" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:73 -+#: ../glade/NewPrinterWindow.glade.h:72 - #, fuzzy - msgid "Network" - msgstr "Новий принтер" - --#: ../glade/NewPrinterWindow.glade.h:75 -+#: ../glade/NewPrinterWindow.glade.h:74 - msgid "No, I do not accept this license" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:76 -+#: ../glade/NewPrinterWindow.glade.h:75 - msgid "Parity" - msgstr "Парність" - --#: ../glade/NewPrinterWindow.glade.h:78 -+#: ../glade/NewPrinterWindow.glade.h:77 - msgid "Patented algorithms" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:79 -+#: ../glade/NewPrinterWindow.glade.h:78 - msgid "Photo:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:80 -+#: ../glade/NewPrinterWindow.glade.h:79 - #, fuzzy - msgid "Port number:" - msgstr "Номер порту" - --#: ../glade/NewPrinterWindow.glade.h:81 -+#: ../glade/NewPrinterWindow.glade.h:80 - #, fuzzy - msgid "" - "PostScript Printer Description (PPD) files can often be found on the driver " -@@ -2008,82 +2004,82 @@ msgstr "" - "можна знайти на диску з драйверами у поставці принтера. Для PostScript " - "принтерів вони часто входять до складу драйвера Windows®." - --#: ../glade/NewPrinterWindow.glade.h:82 -+#: ../glade/NewPrinterWindow.glade.h:81 - #, fuzzy - msgid "Printer model:" - msgstr "Назва принтера" - --#: ../glade/NewPrinterWindow.glade.h:83 -+#: ../glade/NewPrinterWindow.glade.h:82 - msgid "Probe" - msgstr "Випробувати" - --#: ../glade/NewPrinterWindow.glade.h:84 -+#: ../glade/NewPrinterWindow.glade.h:83 - #, fuzzy - msgid "Prompt user if authentication is required" - msgstr "Автентифікація" - --#: ../glade/NewPrinterWindow.glade.h:85 -+#: ../glade/NewPrinterWindow.glade.h:84 - #, fuzzy - msgid "Provide PPD file" - msgstr "Вкажіть файл PPD" - --#: ../glade/NewPrinterWindow.glade.h:86 -+#: ../glade/NewPrinterWindow.glade.h:85 - msgid "Queue:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:87 -+#: ../glade/NewPrinterWindow.glade.h:86 - msgid "SCSI" - msgstr "SCSI" - --#: ../glade/NewPrinterWindow.glade.h:88 -+#: ../glade/NewPrinterWindow.glade.h:87 - msgid "SMB" - msgstr "SMB" - --#: ../glade/NewPrinterWindow.glade.h:89 -+#: ../glade/NewPrinterWindow.glade.h:88 - msgid "Search for a printer driver to download" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:90 -+#: ../glade/NewPrinterWindow.glade.h:89 - #, fuzzy - msgid "Searching..." - msgstr "Масштаб:" - --#: ../glade/NewPrinterWindow.glade.h:91 -+#: ../glade/NewPrinterWindow.glade.h:90 - msgid "Select A File" - msgstr "Вкажіть файл" - --#: ../glade/NewPrinterWindow.glade.h:92 -+#: ../glade/NewPrinterWindow.glade.h:91 - #, fuzzy - msgid "Select printer from database" - msgstr "Виберіть принтер з бази даних" - --#: ../glade/NewPrinterWindow.glade.h:93 -+#: ../glade/NewPrinterWindow.glade.h:92 - msgid "Serial" - msgstr "Послідовний порт" - --#: ../glade/NewPrinterWindow.glade.h:94 -+#: ../glade/NewPrinterWindow.glade.h:93 - #, fuzzy - msgid "Set authentication details now" - msgstr "Автентифікація" - --#: ../glade/NewPrinterWindow.glade.h:95 -+#: ../glade/NewPrinterWindow.glade.h:94 - msgid "Short name for this printer such as \"laserjet\"" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:96 -+#: ../glade/NewPrinterWindow.glade.h:95 - msgid "Supplier:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:97 -+#: ../glade/NewPrinterWindow.glade.h:96 - msgid "Support:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:98 -+#: ../glade/NewPrinterWindow.glade.h:97 - #, fuzzy - msgid "Text:" - msgstr "Скинути" - --#: ../glade/NewPrinterWindow.glade.h:99 -+#: ../glade/NewPrinterWindow.glade.h:98 - msgid "" - "The foomatic printer database contains various manufacturer provided " - "PostScript Printer Description (PPD) files and also can generate PPD files " -@@ -2096,20 +2092,20 @@ msgstr "" - "великого числа (не PostScript) принтерів. Звичайно файли PPD від виробника " - "надають кращий доступ до специфічних можливостей принтера." - --#: ../glade/NewPrinterWindow.glade.h:100 -+#: ../glade/NewPrinterWindow.glade.h:99 - msgid "" - "These drivers do not come from your operating system supplier and will not " - "be covered by their commercial support. See the support and license terms " - "of the driver's supplier." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:101 -+#: ../glade/NewPrinterWindow.glade.h:100 - msgid "" - "This driver supports additional hardware that may be installed in the " - "printer." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:102 -+#: ../glade/NewPrinterWindow.glade.h:101 - msgid "" - "This is done by assuming that options with the same name do have the same " - "meaning. Settings of options that are not present in the new PPD will be " -@@ -2119,7 +2115,7 @@ msgstr "" - "мають однакове значення. Значення параметрів, що відсутні у новому PPD " - "будуть втрачені, а нові параметри у PPD отримають типові значення." - --#: ../glade/NewPrinterWindow.glade.h:103 -+#: ../glade/NewPrinterWindow.glade.h:102 - msgid "" - "This way all current option settings will be lost. The default settings of " - "the new PPD will be used. " -@@ -2127,43 +2123,43 @@ msgstr "" - "Таким чином усі поточні значення параметрів будуть втрачені. Будуть " - "використовуватись стандартні параметри з нового опису PPD." - --#: ../glade/NewPrinterWindow.glade.h:104 -+#: ../glade/NewPrinterWindow.glade.h:103 - msgid "Try to copy the option settings over from the old PPD. " - msgstr "Намагатись копіювати значення параметрів зі старого PPD. " - --#: ../glade/NewPrinterWindow.glade.h:105 -+#: ../glade/NewPrinterWindow.glade.h:104 - msgid "URI:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:107 -+#: ../glade/NewPrinterWindow.glade.h:106 - msgid "Use the new PPD (Postscript Printer Description) as is." - msgstr "Використовувати новий PPD (Postscript Printer Description) як є." - --#: ../glade/NewPrinterWindow.glade.h:109 -+#: ../glade/NewPrinterWindow.glade.h:108 - msgid "" - "With this choice no driver download will be performed. In the next steps a " - "locally installed driver will be selected." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:110 -+#: ../glade/NewPrinterWindow.glade.h:109 - #, fuzzy - msgid "Yes, I accept this license" - msgstr "Приймає завдання" - --#: ../glade/NewPrinterWindow.glade.h:111 -+#: ../glade/NewPrinterWindow.glade.h:110 - msgid "_Search" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:112 -+#: ../glade/NewPrinterWindow.glade.h:111 - msgid "_Verify..." - msgstr "_Перевірити..." - --#: ../glade/NewPrinterWindow.glade.h:113 -+#: ../glade/NewPrinterWindow.glade.h:112 - #: ../glade/PrinterPropertiesDialog.glade.h:128 - msgid "move left" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:114 -+#: ../glade/NewPrinterWindow.glade.h:113 - #: ../glade/PrinterPropertiesDialog.glade.h:129 - #, fuzzy - msgid "move right" -@@ -3108,7 +3104,7 @@ msgstr "" - msgid "Remember to load paper of type '%s' into the printer first." - msgstr "" - --#: ../troubleshoot/PrintTestPage.py:399 -+#: ../troubleshoot/PrintTestPage.py:416 - msgid "Error submitting test page" - msgstr "" - -@@ -3308,6 +3304,10 @@ msgid "Select default printer" - msgstr "Зробити типовим принтером" - - #, fuzzy -+#~ msgid "HP Printer (HPLIP) via network" -+#~ msgstr "Назва принтера" -+ -+#, fuzzy - #~ msgid "Not Found" - #~ msgstr "Не знайдений" - -diff -up system-config-printer-1.1.5/po/vi.po.git-1.1.x system-config-printer-1.1.5/po/vi.po ---- system-config-printer-1.1.5/po/vi.po.git-1.1.x 2009-03-03 22:21:47.000000000 +0000 -+++ system-config-printer-1.1.5/po/vi.po 2009-03-10 17:43:43.000000000 +0000 -@@ -7,7 +7,7 @@ msgid "" - msgstr "" - "Project-Id-Version: system-config-printer 0.7.81\n" - "Report-Msgid-Bugs-To: https://bugzilla.redhat.com/bugzilla\n" --"POT-Creation-Date: 2009-03-02 23:22+0000\n" -+"POT-Creation-Date: 2009-03-10 16:51+0000\n" - "PO-Revision-Date: 2008-02-18 23:01+1030\n" - "Last-Translator: Clytie Siddall \n" - "Language-Team: Vietnamese \n" -@@ -55,11 +55,11 @@ msgstr "" - msgid "Enter IP address" - msgstr "Địa chỉ IP của máy phục vụ :" - --#: ../authconn.py:35 ../glade/NewPrinterWindow.glade.h:108 -+#: ../authconn.py:35 ../glade/NewPrinterWindow.glade.h:107 - msgid "Username:" - msgstr "Tên người dùng:" - --#: ../authconn.py:36 ../glade/NewPrinterWindow.glade.h:77 -+#: ../authconn.py:36 ../glade/NewPrinterWindow.glade.h:76 - msgid "Password:" - msgstr "Mật khẩu :" - -@@ -68,7 +68,7 @@ msgstr "Mật khẩu :" - msgid "Domain:" - msgstr "Lề trên:" - --#: ../authconn.py:46 -+#: ../authconn.py:46 ../authconn.py:409 - msgid "Authentication" - msgstr "Xác thực" - -@@ -76,45 +76,54 @@ msgstr "Xác thực" - msgid "Remember password" - msgstr "" - --#: ../authconn.py:211 ../authconn.py:232 -+#: ../authconn.py:208 -+#, python-format -+msgid "Unauthorized request (%s)" -+msgstr "" -+ -+#: ../authconn.py:209 -+msgid "You are not authorized to carry out therequested action." -+msgstr "" -+ -+#: ../authconn.py:212 ../authconn.py:233 - #, fuzzy - msgid "Operation canceled" - msgstr "Chính sách thao tác:" - --#: ../authconn.py:253 -+#: ../authconn.py:250 - #, fuzzy, python-format - msgid "CUPS server error (%s)" - msgstr "Lỗi máy phục vụ CUPS" - --#: ../authconn.py:255 ../errordialogs.py:57 --#: ../troubleshoot/PrintTestPage.py:400 -+#: ../authconn.py:252 ../errordialogs.py:56 ../errordialogs.py:70 -+msgid "CUPS server error" -+msgstr "Lỗi máy phục vụ CUPS" -+ -+#: ../authconn.py:261 ../errordialogs.py:57 -+#: ../troubleshoot/PrintTestPage.py:417 - #, python-format - msgid "There was an error during the CUPS operation: '%s'." - msgstr "Gặp lỗi trong thao tác CUPS: « %s »" - --#: ../authconn.py:258 -+#: ../authconn.py:264 - #, fuzzy - msgid "Retry" - msgstr "Đặt lại" - --#: ../authconn.py:379 ../authconn.py:381 ../errordialogs.py:65 ../pysmb.py:75 -+#: ../authconn.py:385 ../authconn.py:387 ../errordialogs.py:65 ../pysmb.py:75 - #: ../pysmb.py:77 - msgid "Not authorized" - msgstr "Chưa xác thực" - --#: ../authconn.py:382 ../pysmb.py:78 -+#: ../authconn.py:388 ../pysmb.py:78 - msgid "The password may be incorrect." - msgstr "Mật khẩu có thể không đúng." - --#: ../authconn.py:400 -+#: ../authconn.py:407 - #, fuzzy, python-format - msgid "Authentication (%s)" - msgstr "Xác thực" - --#: ../errordialogs.py:56 ../errordialogs.py:70 --msgid "CUPS server error" --msgstr "Lỗi máy phục vụ CUPS" -- - #: ../errordialogs.py:66 - msgid "" - "The password may be incorrect, or the server may be configured to deny " -@@ -143,7 +152,7 @@ msgstr "Cần thiết nâng cấp" - msgid "Server error" - msgstr "Lỗi máy phục vụ" - --#: ../errordialogs.py:82 ../system-config-printer.py:1219 -+#: ../errordialogs.py:82 ../system-config-printer.py:1223 - msgid "Not connected" - msgstr "Chưa kết nối" - -@@ -165,7 +174,7 @@ msgstr "" - msgid "_New Group from Selection" - msgstr "" - --#: ../GroupsPane.py:98 ../system-config-printer.py:393 -+#: ../GroupsPane.py:98 ../system-config-printer.py:397 - #, fuzzy - msgid "_Rename" - msgstr "_Nhả" -@@ -234,7 +243,7 @@ msgid "Document" - msgstr "Tài liệu" - - #: ../jobviewer.py:212 ../my-default-printer.py:153 --#: ../system-config-printer.py:366 ../system-config-printer.py:1367 -+#: ../system-config-printer.py:370 ../system-config-printer.py:1371 - #: ../troubleshoot/PrintTestPage.py:84 - msgid "Printer" - msgstr "Máy in" -@@ -272,8 +281,8 @@ msgstr "Trạng thái in của tài li - - #: ../jobviewer.py:386 ../jobviewer.py:451 ../jobviewer.py:452 - #: ../jobviewer.py:492 ../jobviewer.py:600 ../jobviewer.py:727 --#: ../jobviewer.py:1196 ../jobviewer.py:1222 ../system-config-printer.py:2546 --#: ../glade/NewPrinterWindow.glade.h:106 -+#: ../jobviewer.py:1196 ../jobviewer.py:1222 ../system-config-printer.py:2556 -+#: ../glade/NewPrinterWindow.glade.h:105 - #: ../troubleshoot/ChooseNetworkPrinter.py:101 - #: ../troubleshoot/ChooseNetworkPrinter.py:102 - #: ../troubleshoot/ChooseNetworkPrinter.py:105 -@@ -366,12 +375,12 @@ msgstr "Giữ đến:" - msgid "Pending" - msgstr "Treo" - --#: ../jobviewer.py:591 ../system-config-printer.py:186 -+#: ../jobviewer.py:591 ../system-config-printer.py:190 - #: ../troubleshoot/PrintTestPage.py:43 - msgid "Processing" - msgstr "Đang xử lý" - --#: ../jobviewer.py:592 ../system-config-printer.py:188 -+#: ../jobviewer.py:592 ../system-config-printer.py:192 - #: ../troubleshoot/PrintTestPage.py:44 - msgid "Stopped" - msgstr "Bị dừng" -@@ -485,8 +494,8 @@ msgstr "_Dùng mặc định của hệ - msgid "_Set Default" - msgstr "Đặt _mặc định" - --#: ../my-default-printer.py:158 ../system-config-printer.py:423 --#: ../system-config-printer.py:3660 ../troubleshoot/ChooseNetworkPrinter.py:37 -+#: ../my-default-printer.py:158 ../system-config-printer.py:427 -+#: ../system-config-printer.py:3675 ../troubleshoot/ChooseNetworkPrinter.py:37 - #: ../troubleshoot/ChoosePrinter.py:38 - msgid "Location" - msgstr "Vị trí" -@@ -519,7 +528,7 @@ msgstr "Máy in mặc định" - msgid "Authenticated" - msgstr "Xác thực" - --#: ../ppdippstr.py:50 ../system-config-printer.py:6259 -+#: ../ppdippstr.py:50 ../system-config-printer.py:6207 - msgid "None" - msgstr "Không có" - -@@ -739,134 +748,134 @@ msgstr "" - msgid "1200 dpi, photo, black + color cartridge, photo paper" - msgstr "" - --#: ../system-config-printer.py:127 -+#: ../system-config-printer.py:131 - #, fuzzy - msgid "To do this, select System->Administration->Firewall from the main menu." - msgstr "" - "Để khởi chạy công cụ này, chọn « Hệ thống > Quản trị > In » trong trình đơn " - "chính." - --#: ../system-config-printer.py:185 -+#: ../system-config-printer.py:189 - msgid "Idle" - msgstr "Nghỉ" - --#: ../system-config-printer.py:187 -+#: ../system-config-printer.py:191 - msgid "Busy" - msgstr "Bận" - --#: ../system-config-printer.py:372 ../system-config-printer.py:1373 -+#: ../system-config-printer.py:376 ../system-config-printer.py:1377 - #, fuzzy - msgid "Class" - msgstr "Hạng mới" - --#: ../system-config-printer.py:399 -+#: ../system-config-printer.py:403 - #, fuzzy - msgid "Set As De_fault" - msgstr "Đặt _mặc định" - --#: ../system-config-printer.py:403 -+#: ../system-config-printer.py:407 - msgid "_Create class" - msgstr "" - --#: ../system-config-printer.py:405 -+#: ../system-config-printer.py:409 - #, fuzzy - msgid "View Print _Queue" - msgstr "Máy in mới" - --#: ../system-config-printer.py:407 -+#: ../system-config-printer.py:411 - msgid "_Add to Group" - msgstr "" - --#: ../system-config-printer.py:409 -+#: ../system-config-printer.py:413 - msgid "Save Results as _Group" - msgstr "" - --#: ../system-config-printer.py:411 -+#: ../system-config-printer.py:415 - msgid "Save Filter as _Search Group" - msgstr "" - --#: ../system-config-printer.py:415 -+#: ../system-config-printer.py:419 - #, fuzzy - msgid "E_nabled" - msgstr "Bật" - --#: ../system-config-printer.py:417 -+#: ../system-config-printer.py:421 - #, fuzzy - msgid "_Shared" - msgstr "Dùng chung" - --#: ../system-config-printer.py:421 ../troubleshoot/ChooseNetworkPrinter.py:35 -+#: ../system-config-printer.py:425 ../troubleshoot/ChooseNetworkPrinter.py:35 - #: ../troubleshoot/ChoosePrinter.py:36 ../troubleshoot/DeviceListed.py:36 - msgid "Name" - msgstr "Tên" - --#: ../system-config-printer.py:422 -+#: ../system-config-printer.py:426 - #, fuzzy - msgid "Description" - msgstr "Mô tả:" - --#: ../system-config-printer.py:424 -+#: ../system-config-printer.py:428 - msgid "Manufacturer / Model" - msgstr "" - - #. Printer state reasons list --#: ../system-config-printer.py:499 -+#: ../system-config-printer.py:503 - msgid "Message" - msgstr "Thông điệp" - --#: ../system-config-printer.py:534 -+#: ../system-config-printer.py:538 - #, fuzzy - msgid "Problems?" - msgstr "Dò" - --#: ../system-config-printer.py:637 ../system-config-printer.py:639 -+#: ../system-config-printer.py:641 ../system-config-printer.py:643 - msgid "Members of this class" - msgstr "Các bộ phạn của hạng này" - --#: ../system-config-printer.py:638 ../system-config-printer.py:640 -+#: ../system-config-printer.py:642 ../system-config-printer.py:644 - msgid "Others" - msgstr "Khác" - --#: ../system-config-printer.py:641 -+#: ../system-config-printer.py:645 - msgid "Devices" - msgstr "Thiết bị" - --#: ../system-config-printer.py:642 -+#: ../system-config-printer.py:646 - #, fuzzy - msgid "Connections" - msgstr "Đã kết nối đến %s" - --#: ../system-config-printer.py:643 -+#: ../system-config-printer.py:647 - msgid "Makes" - msgstr "Nhà chế tạo" - --#: ../system-config-printer.py:644 -+#: ../system-config-printer.py:648 - msgid "Models" - msgstr "Mô hình" - --#: ../system-config-printer.py:645 -+#: ../system-config-printer.py:649 - msgid "Drivers" - msgstr "Trình điều khiển" - --#: ../system-config-printer.py:646 ../glade/NewPrinterWindow.glade.h:55 -+#: ../system-config-printer.py:650 ../glade/NewPrinterWindow.glade.h:54 - msgid "Downloadable Drivers" - msgstr "Trình điều khiển có thể tải về" - --#: ../system-config-printer.py:647 -+#: ../system-config-printer.py:651 - msgid "Users" - msgstr "Người dùng" - --#: ../system-config-printer.py:682 -+#: ../system-config-printer.py:686 - msgid "Automatic rotation" - msgstr "Tự động xoay" - --#: ../system-config-printer.py:989 -+#: ../system-config-printer.py:993 - #, fuzzy, python-format - msgid "Printer Properties - '%s' on %s" - msgstr "Tùy chọn máy in" - - #. The Conflict button was pressed. --#: ../system-config-printer.py:996 -+#: ../system-config-printer.py:1000 - msgid "" - "There are conflicting options.\n" - "Changes can only be applied after\n" -@@ -876,80 +885,80 @@ msgstr "" - "Chỉ có thể áp dụng các thay đổi\n" - "một khi giải quyết các sự xung đột này." - --#: ../system-config-printer.py:1214 -+#: ../system-config-printer.py:1218 - #, python-format - msgid "Printer configuration - %s" - msgstr "Cấu hình máy in — %s" - --#: ../system-config-printer.py:1217 -+#: ../system-config-printer.py:1221 - #, python-format - msgid "Connected to %s" - msgstr "Đã kết nối đến %s" - - #. Update our copy of the printer's settings. --#: ../system-config-printer.py:1257 ../system-config-printer.py:2042 -+#: ../system-config-printer.py:1261 ../system-config-printer.py:2046 - msgid "obtaining queue details" - msgstr "" - --#: ../system-config-printer.py:1295 -+#: ../system-config-printer.py:1299 - msgid "Remove from Group" - msgstr "" - --#: ../system-config-printer.py:1361 -+#: ../system-config-printer.py:1365 - #, fuzzy - msgid "Network printer (discovered)" - msgstr "Máy in mạng" - --#: ../system-config-printer.py:1364 -+#: ../system-config-printer.py:1368 - msgid "Network class (discovered)" - msgstr "" - --#: ../system-config-printer.py:1370 ../system-config-printer.py:5524 --#: ../system-config-printer.py:5594 ../system-config-printer.py:5596 -+#: ../system-config-printer.py:1374 ../system-config-printer.py:5519 -+#: ../system-config-printer.py:5589 ../system-config-printer.py:5591 - msgid "Fax" - msgstr "" - --#: ../system-config-printer.py:1376 ../system-config-printer.py:1382 -+#: ../system-config-printer.py:1380 ../system-config-printer.py:1386 - #: ../troubleshoot/LocalOrRemote.py:30 - msgid "Network printer" - msgstr "Máy in mạng" - --#: ../system-config-printer.py:1379 -+#: ../system-config-printer.py:1383 - #, fuzzy - msgid "Network print share" - msgstr "Máy in mạng" - --#: ../system-config-printer.py:1508 ../glade/ConnectingDialog.glade.h:2 -+#: ../system-config-printer.py:1512 ../glade/ConnectingDialog.glade.h:2 - #, no-c-format, python-format - msgid "Opening connection to %s" - msgstr "" - --#: ../system-config-printer.py:1887 -+#: ../system-config-printer.py:1891 - msgid "Installable Options" - msgstr "Tùy chọn có thể cài đặt" - --#: ../system-config-printer.py:1888 -+#: ../system-config-printer.py:1892 - #: ../glade/PrinterPropertiesDialog.glade.h:109 - msgid "Printer Options" - msgstr "Tùy chọn máy in" - --#: ../system-config-printer.py:1924 -+#: ../system-config-printer.py:1928 - #, python-format - msgid "modifying class %s" - msgstr "" - --#: ../system-config-printer.py:1926 ../system-config-printer.py:3019 --#: ../system-config-printer.py:3044 ../system-config-printer.py:6547 --#: ../system-config-printer.py:6559 ../system-config-printer.py:6581 -+#: ../system-config-printer.py:1930 ../system-config-printer.py:3037 -+#: ../system-config-printer.py:3062 ../system-config-printer.py:6495 -+#: ../system-config-printer.py:6507 ../system-config-printer.py:6529 - #, fuzzy, python-format - msgid "modifying printer %s" - msgstr "Đang thêm máy in" - --#: ../system-config-printer.py:1941 -+#: ../system-config-printer.py:1945 - msgid "This will delete this class!" - msgstr "Đây sẽ xoá hạng này !" - --#: ../system-config-printer.py:1942 -+#: ../system-config-printer.py:1946 - msgid "Proceed anyway?" - msgstr "Vẫn còn tiếp tục không?" - -@@ -957,50 +966,50 @@ msgstr "Vẫn còn tiếp tục không?" - #. but we have never fetched the server settings to see whether - #. the server is publishing shared printers. Fetch the settings - #. now so that we can update the "not published" label if necessary. --#: ../system-config-printer.py:2030 ../system-config-printer.py:3203 -+#: ../system-config-printer.py:2034 ../system-config-printer.py:3221 - #, fuzzy - msgid "fetching server settings" - msgstr "Thiết lập máy phục vụ" - --#: ../system-config-printer.py:2100 -+#: ../system-config-printer.py:2104 - #, fuzzy - msgid "Set Default Printer" - msgstr "Máy in mặc định" - --#: ../system-config-printer.py:2102 -+#: ../system-config-printer.py:2106 - msgid "Do you want to set this as the system-wide default printer?" - msgstr "" - --#: ../system-config-printer.py:2104 -+#: ../system-config-printer.py:2108 - #, fuzzy - msgid "Set as the _system-wide default printer" - msgstr "Đây là máy in mặc định" - --#: ../system-config-printer.py:2106 -+#: ../system-config-printer.py:2110 - msgid "_Clear my personal default setting" - msgstr "" - --#: ../system-config-printer.py:2107 -+#: ../system-config-printer.py:2111 - #, fuzzy - msgid "Set as my _personal default printer" - msgstr "Chọn máy in mặc định" - --#: ../system-config-printer.py:2112 -+#: ../system-config-printer.py:2116 - #, fuzzy - msgid "setting default printer" - msgstr "Chọn máy in mặc định" - --#: ../system-config-printer.py:2169 -+#: ../system-config-printer.py:2173 - #, fuzzy - msgid "printing test page" - msgstr "In tráng thử" - --#: ../system-config-printer.py:2182 ../system-config-printer.py:2217 --#: ../system-config-printer.py:5418 -+#: ../system-config-printer.py:2186 ../system-config-printer.py:2221 -+#: ../system-config-printer.py:5413 - msgid "Not possible" - msgstr "Không thể làm được" - --#: ../system-config-printer.py:2183 ../system-config-printer.py:2218 -+#: ../system-config-printer.py:2187 ../system-config-printer.py:2222 - msgid "" - "The remote server did not accept the print job, most likely because the " - "printer is not shared." -@@ -1008,20 +1017,20 @@ msgstr "" - "Máy phục vụ từ xa không chấp nhận công việc in, rất có thể vì máy in đó " - "không dùng chung." - --#: ../system-config-printer.py:2195 ../system-config-printer.py:2210 -+#: ../system-config-printer.py:2199 ../system-config-printer.py:2214 - msgid "Submitted" - msgstr "Đã gửi" - --#: ../system-config-printer.py:2196 -+#: ../system-config-printer.py:2200 - #, python-format - msgid "Test page submitted as job %d" - msgstr "Trang thử đã được gửi dưới dạng công việc %d" - --#: ../system-config-printer.py:2203 -+#: ../system-config-printer.py:2207 - msgid "sending maintenance command" - msgstr "" - --#: ../system-config-printer.py:2211 -+#: ../system-config-printer.py:2215 - #, python-format - msgid "Maintenance command submitted as job %d" - msgstr "Câu lệnh bảo trì đã được gửi dưới dạng công việc %d" -@@ -1029,75 +1038,75 @@ msgstr "Câu lệnh bảo trì đã đư - #. The underlying cupsGetPPD2() function returned NULL without - #. setting an IPP error, so it'll be something like a failed - #. connection. --#: ../system-config-printer.py:2285 ../system-config-printer.py:2381 -+#: ../system-config-printer.py:2289 ../system-config-printer.py:2385 - msgid "Error" - msgstr "Lỗi" - --#: ../system-config-printer.py:2286 -+#: ../system-config-printer.py:2290 - msgid "There was a problem connecting to the CUPS server." - msgstr "Gặp lỗi khi kết nối đến máy phục vụ CUPS." - --#: ../system-config-printer.py:2382 -+#: ../system-config-printer.py:2386 - #, python-format - msgid "Option '%s' has value '%s' and cannot be edited." - msgstr "Tùy chọn « %s » có giá trị « %s » nên không thể sửa được." - --#: ../system-config-printer.py:2466 -+#: ../system-config-printer.py:2476 - msgid "Marker levels are not reported for this printer." - msgstr "" - --#: ../system-config-printer.py:2763 -+#: ../system-config-printer.py:2773 - msgid "Cannot Rename" - msgstr "" - --#: ../system-config-printer.py:2764 -+#: ../system-config-printer.py:2774 - #, fuzzy - msgid "There are queued jobs." - msgstr "Không có hàng đợi công bố." - --#: ../system-config-printer.py:2822 -+#: ../system-config-printer.py:2840 - #, fuzzy - msgid "renaming printer" - msgstr "Đang thêm máy in" - - #. for classes make sure all members - #. will get added --#: ../system-config-printer.py:2907 -+#: ../system-config-printer.py:2925 - #, fuzzy - msgid "copying printer" - msgstr "Đang thêm máy in" - --#: ../system-config-printer.py:2971 -+#: ../system-config-printer.py:2989 - #, fuzzy, python-format - msgid "Really delete class '%s'?" - msgstr "Thực sự xoá hạng %s không?" - --#: ../system-config-printer.py:2973 -+#: ../system-config-printer.py:2991 - #, fuzzy, python-format - msgid "Really delete printer '%s'?" - msgstr "Thực sự xoá máy in %s không?" - --#: ../system-config-printer.py:2975 -+#: ../system-config-printer.py:2993 - #, fuzzy - msgid "Really delete selected destinations?" - msgstr "Thực sự xoá máy in %s không?" - --#: ../system-config-printer.py:2996 -+#: ../system-config-printer.py:3014 - #, fuzzy, python-format - msgid "deleting printer %s" - msgstr "Thực sự xoá máy in %s không?" - --#: ../system-config-printer.py:3070 -+#: ../system-config-printer.py:3088 - msgid "Publish Shared Printers" - msgstr "" - --#: ../system-config-printer.py:3071 -+#: ../system-config-printer.py:3089 - msgid "" - "Shared printers are not available to other people unless the 'Publish shared " - "printers' option is enabled in the server settings." - msgstr "" - --#: ../system-config-printer.py:3264 -+#: ../system-config-printer.py:3282 - #, fuzzy - msgid "modifying server settings" - msgstr "Thiết lập máy phục vụ" -@@ -1108,104 +1117,104 @@ msgstr "Thiết lập máy phục vụ" - #. be unblocked. Unfortunately, this is not yet possible - #. (bug #440469). However, we can display a dialog to suggest - #. that now might be a good time to review the firewall settings. --#: ../system-config-printer.py:3289 -+#: ../system-config-printer.py:3307 - #, fuzzy - msgid "Review Firewall" - msgstr "Kiểm tra tường lửa máy phục vụ" - --#: ../system-config-printer.py:3290 -+#: ../system-config-printer.py:3308 - msgid "" - "You may need to adjust the firewall to allow network printing to this " - "computer." - msgstr "" - --#: ../system-config-printer.py:3623 -+#: ../system-config-printer.py:3638 - msgid "Browsing not available (pysmbc not installed)" - msgstr "" - - #. SMB list columns --#: ../system-config-printer.py:3629 -+#: ../system-config-printer.py:3644 - msgid "Share" - msgstr "Chia sẻ" - --#: ../system-config-printer.py:3635 -+#: ../system-config-printer.py:3650 - msgid "Comment" - msgstr "Ghi chú" - - #. IPP list columns --#: ../system-config-printer.py:3654 -+#: ../system-config-printer.py:3669 - msgid "Queue" - msgstr "Hàng đợi" - --#: ../system-config-printer.py:3668 -+#: ../system-config-printer.py:3683 - msgid "" - "PostScript Printer Description files (*.ppd, *.PPD, *.ppd.gz, *.PPD.gz, *." - "PPD.GZ)" - msgstr "" - "Tập tin Mô tả Máy in PostScript (*.ppd, *.PPD, *.ppd.gz, *.PPD.gz, *.PPD.GZ)" - --#: ../system-config-printer.py:3677 -+#: ../system-config-printer.py:3692 - msgid "All files (*)" - msgstr "Mọi tập tin (*)" - --#: ../system-config-printer.py:3713 ../system-config-printer.py:5970 --#: ../system-config-printer.py:6008 ../applet.py:124 -+#: ../system-config-printer.py:3728 ../system-config-printer.py:5918 -+#: ../system-config-printer.py:5956 ../applet.py:124 - msgid "Search" - msgstr "Tìm kiếm" - --#: ../system-config-printer.py:3736 ../system-config-printer.py:3760 --#: ../glade/NewPrinterWindow.glade.h:74 -+#: ../system-config-printer.py:3751 ../system-config-printer.py:3775 -+#: ../glade/NewPrinterWindow.glade.h:73 - msgid "New Printer" - msgstr "Máy in mới" - --#: ../system-config-printer.py:3747 -+#: ../system-config-printer.py:3762 - msgid "New Class" - msgstr "Hạng mới" - --#: ../system-config-printer.py:3752 -+#: ../system-config-printer.py:3767 - msgid "Change Device URI" - msgstr "Đổi URI thiết bị" - --#: ../system-config-printer.py:3758 -+#: ../system-config-printer.py:3773 - msgid "Change Driver" - msgstr "Đổi trình điều khiển" - --#: ../system-config-printer.py:3927 ../system-config-printer.py:3993 --#: ../system-config-printer.py:4289 ../system-config-printer.py:4487 --#: ../system-config-printer.py:5772 ../system-config-printer.py:5995 -+#: ../system-config-printer.py:3942 ../system-config-printer.py:4008 -+#: ../system-config-printer.py:4304 ../system-config-printer.py:4502 -+#: ../system-config-printer.py:5762 ../system-config-printer.py:5943 - msgid "Searching" - msgstr "Tìm kiếm" - --#: ../system-config-printer.py:3928 -+#: ../system-config-printer.py:3943 - #, fuzzy - msgid "Searching for downloadable drivers" - msgstr "Đang tìm kiếm trình điều khiển" - --#: ../system-config-printer.py:3994 ../system-config-printer.py:4290 -+#: ../system-config-printer.py:4009 ../system-config-printer.py:4305 - msgid "Searching for drivers" - msgstr "Đang tìm kiếm trình điều khiển" - --#: ../system-config-printer.py:4488 ../system-config-printer.py:5773 -+#: ../system-config-printer.py:4503 ../system-config-printer.py:5763 - msgid "Searching for printers" - msgstr "Đang tìm kiếm máy in" - --#: ../system-config-printer.py:4497 -+#: ../system-config-printer.py:4512 - #, fuzzy - msgid "fetching device list" - msgstr "Thiết lập máy phục vụ" - - #. Tell the user why he needs the plugin --#: ../system-config-printer.py:4579 -+#: ../system-config-printer.py:4594 - msgid "For this printer a proprietary driver plugin from HP is available.\n" - msgstr "" - --#: ../system-config-printer.py:4582 -+#: ../system-config-printer.py:4597 - msgid "" - "The installation of the plugin is required for your printer to work.\n" - "\n" - msgstr "" - --#: ../system-config-printer.py:4585 -+#: ../system-config-printer.py:4600 - msgid "" - "Installing the plugin is optional, it completes or enhances the " - "functionality\n" -@@ -1213,219 +1222,215 @@ msgid "" - "\n" - msgstr "" - --#: ../system-config-printer.py:4589 -+#: ../system-config-printer.py:4604 - msgid "The plugin provides the following features:\n" - msgstr "" - --#: ../system-config-printer.py:4592 -+#: ../system-config-printer.py:4607 - msgid " - Printing support\n" - msgstr "" - --#: ../system-config-printer.py:4595 -+#: ../system-config-printer.py:4610 - #, fuzzy - msgid " - Faster printing\n" - msgstr "Giải đáp thắc mắc việc in" - --#: ../system-config-printer.py:4598 -+#: ../system-config-printer.py:4613 - msgid " - Better printout quality\n" - msgstr "" - --#: ../system-config-printer.py:4601 -+#: ../system-config-printer.py:4616 - msgid " - Extra printing features\n" - msgstr "" - --#: ../system-config-printer.py:4604 -+#: ../system-config-printer.py:4619 - msgid " - Scanning support\n" - msgstr "" - --#: ../system-config-printer.py:4607 -+#: ../system-config-printer.py:4622 - msgid " - Faster scanning\n" - msgstr "" - --#: ../system-config-printer.py:4610 -+#: ../system-config-printer.py:4625 - msgid " - Better scanning image quality\n" - msgstr "" - --#: ../system-config-printer.py:4613 -+#: ../system-config-printer.py:4628 - msgid " - Faxing support\n" - msgstr "" - --#: ../system-config-printer.py:4616 -+#: ../system-config-printer.py:4631 - msgid " - Extra fax features\n" - msgstr "" - --#: ../system-config-printer.py:4619 -+#: ../system-config-printer.py:4634 - msgid " - Better Input/Output support\n" - msgstr "" - --#: ../system-config-printer.py:4622 -+#: ../system-config-printer.py:4637 - msgid " - Extra user interface features\n" - msgstr "" - --#: ../system-config-printer.py:4625 -+#: ../system-config-printer.py:4640 - msgid " - Other extra features\n" - msgstr "" - --#: ../system-config-printer.py:4630 -+#: ../system-config-printer.py:4645 - #, fuzzy - msgid "Install plugin" - msgstr "Tùy chọn đã cài đặt" - --#: ../system-config-printer.py:4631 -+#: ../system-config-printer.py:4646 - #, fuzzy - msgid "Do not set up printer" - msgstr "Chọn máy in" - --#: ../system-config-printer.py:4632 -+#: ../system-config-printer.py:4647 - msgid "Set up without plugin" - msgstr "" - --#: ../system-config-printer.py:4634 ../troubleshoot/PrintTestPage.py:118 -+#: ../system-config-printer.py:4649 ../troubleshoot/PrintTestPage.py:118 - msgid "Yes" - msgstr "Có" - --#: ../system-config-printer.py:4635 ../troubleshoot/PrintTestPage.py:119 -+#: ../system-config-printer.py:4650 ../troubleshoot/PrintTestPage.py:119 - msgid "No" - msgstr "Không" - --#: ../system-config-printer.py:4809 ../system-config-printer.py:4813 -+#: ../system-config-printer.py:4824 ../system-config-printer.py:4828 - msgid " (Current)" - msgstr "(Hiện thời)" - --#: ../system-config-printer.py:4845 --msgid "HP Printer (HPLIP)" --msgstr "" -- --#: ../system-config-printer.py:4886 -+#: ../system-config-printer.py:4881 - msgid "Other" - msgstr "Khác" - - #. device-info - #. PhysicalDevice obj - #. Separator? --#: ../system-config-printer.py:4902 -+#: ../system-config-printer.py:4897 - #, fuzzy - msgid "Network Printer" - msgstr "Máy in mạng" - --#: ../system-config-printer.py:4906 -+#: ../system-config-printer.py:4901 - #, fuzzy - msgid "Find Network Printer" - msgstr "Máy in mạng" - --#: ../system-config-printer.py:4979 ../system-config-printer.py:5376 -+#: ../system-config-printer.py:4974 ../system-config-printer.py:5371 - msgid "Scanning..." - msgstr "Đang quét..." - --#: ../system-config-printer.py:5034 ../system-config-printer.py:5798 -+#: ../system-config-printer.py:5029 - #, fuzzy - msgid "No Print Shares" - msgstr "Máy in cục bộ" - --#: ../system-config-printer.py:5035 -+#: ../system-config-printer.py:5030 - msgid "" - "There were no print shares found. Please check that the Samba service is " - "marked as trusted in your firewall configuration." - msgstr "" - --#: ../system-config-printer.py:5296 ../system-config-printer.py:5357 -+#: ../system-config-printer.py:5291 ../system-config-printer.py:5352 - msgid "Print Share Verified" - msgstr "" - --#: ../system-config-printer.py:5297 ../system-config-printer.py:5358 -+#: ../system-config-printer.py:5292 ../system-config-printer.py:5353 - msgid "This print share is accessible." - msgstr "Có thể tới vùng in chung này." - --#: ../system-config-printer.py:5302 ../system-config-printer.py:5362 -+#: ../system-config-printer.py:5297 ../system-config-printer.py:5357 - msgid "This print share is not accessible." - msgstr "Không thể tới vùng in chung này." - --#: ../system-config-printer.py:5305 -+#: ../system-config-printer.py:5300 - #, fuzzy - msgid "Print Share Inaccessible" - msgstr "Có thể tới vùng in chung này." - --#: ../system-config-printer.py:5361 -+#: ../system-config-printer.py:5356 - msgid "Inaccessible" - msgstr "Không tới được" - --#: ../system-config-printer.py:5419 -+#: ../system-config-printer.py:5414 - #, fuzzy, python-format - msgid "It is not possible to obtain a list of queues from '%s'." - msgstr "Không thể lấy danh sách các hàng đợi từ máy này." - --#: ../system-config-printer.py:5421 -+#: ../system-config-printer.py:5416 - msgid "" - "Obtaining a list of queues is a CUPS extension to IPP. Network printers do " - "not support it." - msgstr "" - --#: ../system-config-printer.py:5424 -+#: ../system-config-printer.py:5419 - msgid "No queues" - msgstr "Không có hàng đợi" - --#: ../system-config-printer.py:5425 -+#: ../system-config-printer.py:5420 - msgid "There are no queues available." - msgstr "Không có hàng đợi công bố." - --#: ../system-config-printer.py:5516 -+#: ../system-config-printer.py:5511 - msgid "Parallel Port" - msgstr "" - --#: ../system-config-printer.py:5518 -+#: ../system-config-printer.py:5513 - #, fuzzy - msgid "Serial Port" - msgstr "Nối tiếp" - --#: ../system-config-printer.py:5520 -+#: ../system-config-printer.py:5515 - #, fuzzy - msgid "USB" - msgstr "SMB" - --#: ../system-config-printer.py:5522 ../system-config-printer.py:5525 -+#: ../system-config-printer.py:5517 ../system-config-printer.py:5520 - msgid "HP Linux Imaging and Printing (HPLIP)" - msgstr "" - --#: ../system-config-printer.py:5527 -+#: ../system-config-printer.py:5522 - #, fuzzy - msgid "Hardware Abstraction Layer (HAL)" - msgstr "Máy in cục bộ được phát hiện bởi Lớp Trích yếu Phần cứng (HAL)." - --#: ../system-config-printer.py:5529 -+#: ../system-config-printer.py:5524 - msgid "AppSocket/HP JetDirect" - msgstr "" - --#: ../system-config-printer.py:5538 -+#: ../system-config-printer.py:5533 - #, python-format - msgid "LPD/LPR queue '%s'" - msgstr "" - --#: ../system-config-printer.py:5540 -+#: ../system-config-printer.py:5535 - #, fuzzy - msgid "LPD/LPR queue" - msgstr "LPD" - --#: ../system-config-printer.py:5543 -+#: ../system-config-printer.py:5538 - msgid "Windows Printer via SAMBA" - msgstr "" - --#: ../system-config-printer.py:5545 ../glade/NewPrinterWindow.glade.h:66 -+#: ../system-config-printer.py:5540 ../glade/NewPrinterWindow.glade.h:65 - msgid "IPP" - msgstr "IPP" - --#: ../system-config-printer.py:5547 -+#: ../system-config-printer.py:5542 - msgid "HTTP" - msgstr "" - --#: ../system-config-printer.py:5632 -+#: ../system-config-printer.py:5624 - msgid "A printer connected to the parallel port." - msgstr "Một máy in được kết nối đến cổng song song." - --#: ../system-config-printer.py:5634 -+#: ../system-config-printer.py:5626 - msgid "A printer connected to a USB port." - msgstr "Một máy in được kết nối đến một cổng USB." - --#: ../system-config-printer.py:5636 -+#: ../system-config-printer.py:5628 - msgid "" - "HPLIP software driving a printer, or the printer function of a multi-" - "function device." -@@ -1433,7 +1438,7 @@ msgstr "" - "Phần mềm HPLIP điều khiển máy in, hoặc chức năng in của một thiết bị đa chức " - "năng." - --#: ../system-config-printer.py:5639 -+#: ../system-config-printer.py:5631 - msgid "" - "HPLIP software driving a fax machine, or the fax function of a multi-" - "function device." -@@ -1441,69 +1446,65 @@ msgstr "" - "Phần mềm HPLIP điều khiển máy điện thư, hoặc chức năng điện thư của một " - "thiết bị đa chức năng." - --#: ../system-config-printer.py:5642 -+#: ../system-config-printer.py:5634 - msgid "Local printer detected by the Hardware Abstraction Layer (HAL)." - msgstr "Máy in cục bộ được phát hiện bởi Lớp Trích yếu Phần cứng (HAL)." - --#: ../system-config-printer.py:5799 --msgid "HPLIP cannot find the device." --msgstr "" -- --#: ../system-config-printer.py:5881 -+#: ../system-config-printer.py:5831 - msgid "No printer was found at that address." - msgstr "" - --#: ../system-config-printer.py:6020 -+#: ../system-config-printer.py:5968 - #, fuzzy - msgid "-- Select from search results --" - msgstr "— Chọn mô hình máy in —" - --#: ../system-config-printer.py:6022 -+#: ../system-config-printer.py:5970 - msgid "-- No matches found --" - msgstr "— Không tìm thấy —" - --#: ../system-config-printer.py:6203 -+#: ../system-config-printer.py:6151 - msgid " (recommended)" - msgstr " (khuyến khích)" - --#: ../system-config-printer.py:6217 -+#: ../system-config-printer.py:6165 - msgid "This PPD is generated by foomatic." - msgstr "PPD này được foomatic tạo ra." - --#: ../system-config-printer.py:6241 -+#: ../system-config-printer.py:6189 - msgid "OpenPrinting" - msgstr "OpenPrinting" - --#: ../system-config-printer.py:6252 -+#: ../system-config-printer.py:6200 - msgid "Distributable" - msgstr "Có thể phân phối" - --#: ../system-config-printer.py:6293 -+#: ../system-config-printer.py:6241 - #, fuzzy - msgid ", " - msgstr " " - --#: ../system-config-printer.py:6298 -+#: ../system-config-printer.py:6246 - #, python-format - msgid "" - "\n" - "(%s)" - msgstr "" - --#: ../system-config-printer.py:6303 -+#: ../system-config-printer.py:6251 - msgid "No support contacts known" - msgstr "" - --#: ../system-config-printer.py:6307 ../system-config-printer.py:6320 -+#: ../system-config-printer.py:6255 ../system-config-printer.py:6268 - msgid "Not specified." - msgstr "Chưa ghi rõ." - - #. Foomatic database problem of some sort. --#: ../system-config-printer.py:6360 -+#: ../system-config-printer.py:6308 - msgid "Database error" - msgstr "Lỗi cơ sở dữ liệu" - --#: ../system-config-printer.py:6361 -+#: ../system-config-printer.py:6309 - #, python-format - msgid "The '%s' driver cannot be used with printer '%s %s'." - msgstr "Trình điều khiển « %s » không thể dùng được với máy in « %s %s »." -@@ -1511,60 +1512,60 @@ msgstr "Trình điều khiển « %s » - #. This printer references some XML that is not - #. installed by default. Point the user at the - #. package they need to install. --#: ../system-config-printer.py:6371 -+#: ../system-config-printer.py:6319 - #, python-format - msgid "You will need to install the '%s' package in order to use this driver." - msgstr "Bạn sẽ cần phải cài đặt gói « %s » để sử dụng trình điều khiển này." - - #. This error came from trying to open the PPD file. --#: ../system-config-printer.py:6378 -+#: ../system-config-printer.py:6326 - msgid "PPD error" - msgstr "Lỗi PPD" - --#: ../system-config-printer.py:6380 -+#: ../system-config-printer.py:6328 - msgid "Failed to read PPD file. Possible reason follows:" - msgstr "Lỗi đọc tập tin PPD. Lý do có thể là:" - - #. Failed to get PPD downloaded from OpenPrinting XXX --#: ../system-config-printer.py:6397 -+#: ../system-config-printer.py:6345 - msgid "Downloadable drivers" - msgstr "Trình điều khiển có thể tải về" - --#: ../system-config-printer.py:6398 -+#: ../system-config-printer.py:6346 - msgid "Failed to download PPD." - msgstr "" - --#: ../system-config-printer.py:6405 -+#: ../system-config-printer.py:6353 - msgid "fetching PPD" - msgstr "" - --#: ../system-config-printer.py:6434 ../system-config-printer.py:6472 -+#: ../system-config-printer.py:6382 ../system-config-printer.py:6420 - msgid "No Installable Options" - msgstr "Không có tùy chọn có thể cài đặt" - --#: ../system-config-printer.py:6520 -+#: ../system-config-printer.py:6468 - #, fuzzy, python-format - msgid "adding printer %s" - msgstr "Đang thêm máy in" - --#: ../system-config-printer.py:6669 -+#: ../system-config-printer.py:6617 - msgid "Would you like to print a test page?" - msgstr "" - --#: ../system-config-printer.py:6722 -+#: ../system-config-printer.py:6670 - msgid "Install driver" - msgstr "Cài đặt trình điều khiển" - --#: ../system-config-printer.py:6723 ../troubleshoot/CheckPPDSanity.py:131 -+#: ../system-config-printer.py:6671 ../troubleshoot/CheckPPDSanity.py:131 - #, python-format - msgid "Printer '%s' requires the %s package but it is not currently installed." - msgstr "Máy in « %s » cần thiết gói %s mà chưa được cài đặt." - --#: ../system-config-printer.py:6739 -+#: ../system-config-printer.py:6687 - msgid "Missing driver" - msgstr "Thiếu trình điều khiển" - --#: ../system-config-printer.py:6740 -+#: ../system-config-printer.py:6688 - #, python-format - msgid "" - "Printer '%s' requires the '%s' program but it is not currently installed. " -@@ -1705,128 +1706,123 @@ msgid "Enter device URI" - msgstr "Nhập URI thiết bị" - - #: ../glade/NewPrinterWindow.glade.h:5 --#, fuzzy --msgid "HP Printer (HPLIP) via network" --msgstr "Tên máy in" -- --#: ../glade/NewPrinterWindow.glade.h:6 - msgid "IPP Printer" - msgstr "Máy in IPP" - --#: ../glade/NewPrinterWindow.glade.h:7 -+#: ../glade/NewPrinterWindow.glade.h:6 - msgid "License Terms" - msgstr "Điều kiện giấy phép" - --#: ../glade/NewPrinterWindow.glade.h:8 -+#: ../glade/NewPrinterWindow.glade.h:7 - msgid "Location of the LPD network printer" - msgstr "Vị trí của máy in mạng LPD" - --#: ../glade/NewPrinterWindow.glade.h:9 -+#: ../glade/NewPrinterWindow.glade.h:8 - msgid "Location of the network printer" - msgstr "Vị trí của máy in mạng" - --#: ../glade/NewPrinterWindow.glade.h:10 -+#: ../glade/NewPrinterWindow.glade.h:9 - msgid "Location (optional)" - msgstr "Vị trí (tùy chọn)" - --#: ../glade/NewPrinterWindow.glade.h:11 -+#: ../glade/NewPrinterWindow.glade.h:10 - #, fuzzy - msgid "Network Printer" - msgstr "Máy in mạng" - --#: ../glade/NewPrinterWindow.glade.h:12 -+#: ../glade/NewPrinterWindow.glade.h:11 - msgid "Note" - msgstr "Ghi chú" - --#: ../glade/NewPrinterWindow.glade.h:13 -+#: ../glade/NewPrinterWindow.glade.h:12 - #, fuzzy - msgid "Output Quality" - msgstr "Tình trạng" - --#: ../glade/NewPrinterWindow.glade.h:14 -+#: ../glade/NewPrinterWindow.glade.h:13 - msgid "Printer Name" - msgstr "Tên máy in" - --#: ../glade/NewPrinterWindow.glade.h:15 -+#: ../glade/NewPrinterWindow.glade.h:14 - msgid "SMB Printer" - msgstr "Máy in SMB" - --#: ../glade/NewPrinterWindow.glade.h:16 -+#: ../glade/NewPrinterWindow.glade.h:15 - msgid "Select Driver" - msgstr "Chọn trình điều khiển" - --#: ../glade/NewPrinterWindow.glade.h:17 -+#: ../glade/NewPrinterWindow.glade.h:16 - msgid "Settings of the serial port" - msgstr "Thiết lập của cổng nối tiếp" - --#: ../glade/NewPrinterWindow.glade.h:18 -+#: ../glade/NewPrinterWindow.glade.h:17 - msgid "smb://[workgroup/]server[:port]/printer" - msgstr "smb://[nhóm làm việc/]máy phục vụ[:cổng]/printer" - --#: ../glade/NewPrinterWindow.glade.h:19 -+#: ../glade/NewPrinterWindow.glade.h:18 - #, fuzzy - msgid "Choose Class Members" - msgstr "" - "Cần mật khẩu\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:20 -+#: ../glade/NewPrinterWindow.glade.h:19 - #, fuzzy - msgid "Choose Driver" - msgstr "" - "Cần mật khẩu\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:21 -+#: ../glade/NewPrinterWindow.glade.h:20 - #, fuzzy - msgid "Describe Printer" - msgstr "" - "Cần mật khẩu\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:22 -+#: ../glade/NewPrinterWindow.glade.h:21 - #, fuzzy - msgid "Existing Settings" - msgstr "" - "Cần mật khẩu\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:23 -+#: ../glade/NewPrinterWindow.glade.h:22 - #, fuzzy - msgid "Installable Options" - msgstr "" - "Cần mật khẩu\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:24 -+#: ../glade/NewPrinterWindow.glade.h:23 - #, fuzzy - msgid "Select Device" - msgstr "" - "Cần mật khẩu\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:25 -+#: ../glade/NewPrinterWindow.glade.h:24 - msgid "Baud Rate" - msgstr "Tốc độ truyền" - --#: ../glade/NewPrinterWindow.glade.h:26 -+#: ../glade/NewPrinterWindow.glade.h:25 - msgid "Browse..." - msgstr "Duyệt..." - --#: ../glade/NewPrinterWindow.glade.h:27 -+#: ../glade/NewPrinterWindow.glade.h:26 - msgid "Comments..." - msgstr "Ghi chú..." - --#: ../glade/NewPrinterWindow.glade.h:28 -+#: ../glade/NewPrinterWindow.glade.h:27 - #, fuzzy - msgid "Connection" - msgstr "Vị trí" - --#: ../glade/NewPrinterWindow.glade.h:29 -+#: ../glade/NewPrinterWindow.glade.h:28 - msgid "Data Bits" - msgstr "Bit dữ liệu" - --#: ../glade/NewPrinterWindow.glade.h:30 -+#: ../glade/NewPrinterWindow.glade.h:29 - msgid "" - "Default\n" - "1200\n" -@@ -1848,7 +1844,7 @@ msgstr "" - "57600\n" - "115200" - --#: ../glade/NewPrinterWindow.glade.h:39 -+#: ../glade/NewPrinterWindow.glade.h:38 - msgid "" - "Default\n" - "8\n" -@@ -1858,7 +1854,7 @@ msgstr "" - "8\n" - "7" - --#: ../glade/NewPrinterWindow.glade.h:42 -+#: ../glade/NewPrinterWindow.glade.h:41 - msgid "" - "Default\n" - "None\n" -@@ -1870,7 +1866,7 @@ msgstr "" - "Lẻ\n" - "Chẵn" - --#: ../glade/NewPrinterWindow.glade.h:46 -+#: ../glade/NewPrinterWindow.glade.h:45 - msgid "" - "Default\n" - "None\n" -@@ -1884,117 +1880,117 @@ msgstr "" - "RTS/CTS (Phần cứng)\n" - "DTR/DSR (Phần cứng)" - --#: ../glade/NewPrinterWindow.glade.h:51 -+#: ../glade/NewPrinterWindow.glade.h:50 - #: ../glade/PrinterPropertiesDialog.glade.h:35 - msgid "Description:" - msgstr "Mô tả:" - --#: ../glade/NewPrinterWindow.glade.h:52 ../troubleshoot/DeviceListed.py:40 -+#: ../glade/NewPrinterWindow.glade.h:51 ../troubleshoot/DeviceListed.py:40 - msgid "Device URI" - msgstr "URI thiết bị" - --#: ../glade/NewPrinterWindow.glade.h:53 -+#: ../glade/NewPrinterWindow.glade.h:52 - msgid "Device description." - msgstr "Mô tả của thiết bị." - - # Name: don't translate/Tên: đừng dịch ? --#: ../glade/NewPrinterWindow.glade.h:54 -+#: ../glade/NewPrinterWindow.glade.h:53 - msgid "DirectJet" - msgstr "DirectJet" - --#: ../glade/NewPrinterWindow.glade.h:56 -+#: ../glade/NewPrinterWindow.glade.h:55 - msgid "Driver details" - msgstr "Chi tiết trình điều khiển" - --#: ../glade/NewPrinterWindow.glade.h:57 -+#: ../glade/NewPrinterWindow.glade.h:56 - msgid "Empty" - msgstr "Rỗng" - --#: ../glade/NewPrinterWindow.glade.h:58 -+#: ../glade/NewPrinterWindow.glade.h:57 - msgid "Find _Queue..." - msgstr "Tìm _hàng đợi..." - --#: ../glade/NewPrinterWindow.glade.h:59 -+#: ../glade/NewPrinterWindow.glade.h:58 - msgid "Flow Control" - msgstr "Điều khiển luồng" - --#: ../glade/NewPrinterWindow.glade.h:60 -+#: ../glade/NewPrinterWindow.glade.h:59 - msgid "" - "For the printer you have selected there are drivers available for download." - msgstr "Đối với máy in bạn chọn có trình điều khiển sẵn sàng để tải về." - --#: ../glade/NewPrinterWindow.glade.h:61 -+#: ../glade/NewPrinterWindow.glade.h:60 - msgid "Free software" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:62 -+#: ../glade/NewPrinterWindow.glade.h:61 - msgid "Graphics:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:63 -+#: ../glade/NewPrinterWindow.glade.h:62 - msgid "Host:" - msgstr "Máy:" - --#: ../glade/NewPrinterWindow.glade.h:64 -+#: ../glade/NewPrinterWindow.glade.h:63 - msgid "Human-readable description such as \"HP LaserJet with Duplexer\"" - msgstr "Mô tả cho người đọc v.d. « HP LaserJet in mặt đôi »" - --#: ../glade/NewPrinterWindow.glade.h:65 -+#: ../glade/NewPrinterWindow.glade.h:64 - msgid "Human-readable location such as \"Lab 1\"" - msgstr "Vị trí cho người đoc, v.d. « Phòng 3 »" - --#: ../glade/NewPrinterWindow.glade.h:67 -+#: ../glade/NewPrinterWindow.glade.h:66 - msgid "LPD" - msgstr "LPD" - --#: ../glade/NewPrinterWindow.glade.h:68 -+#: ../glade/NewPrinterWindow.glade.h:67 - msgid "License:" - msgstr "Giấy phép:" - --#: ../glade/NewPrinterWindow.glade.h:69 -+#: ../glade/NewPrinterWindow.glade.h:68 - #, fuzzy - msgid "Line art:" - msgstr "Tình trạng máy in:" - --#: ../glade/NewPrinterWindow.glade.h:70 -+#: ../glade/NewPrinterWindow.glade.h:69 - msgid "Local Driver" - msgstr "Trình điều khiển cục bộ" - --#: ../glade/NewPrinterWindow.glade.h:71 -+#: ../glade/NewPrinterWindow.glade.h:70 - #, fuzzy - msgid "Make and model:" - msgstr "Hãng/Mô hình:" - --#: ../glade/NewPrinterWindow.glade.h:72 -+#: ../glade/NewPrinterWindow.glade.h:71 - msgid "Manufacturer" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:73 -+#: ../glade/NewPrinterWindow.glade.h:72 - #, fuzzy - msgid "Network" - msgstr "Máy in mạng" - --#: ../glade/NewPrinterWindow.glade.h:75 -+#: ../glade/NewPrinterWindow.glade.h:74 - msgid "No, I do not accept this license" - msgstr "Tôi không đồng ý với giấy phép này" - --#: ../glade/NewPrinterWindow.glade.h:76 -+#: ../glade/NewPrinterWindow.glade.h:75 - msgid "Parity" - msgstr "Tính chẵn lẻ" - --#: ../glade/NewPrinterWindow.glade.h:78 -+#: ../glade/NewPrinterWindow.glade.h:77 - msgid "Patented algorithms" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:79 -+#: ../glade/NewPrinterWindow.glade.h:78 - msgid "Photo:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:80 -+#: ../glade/NewPrinterWindow.glade.h:79 - msgid "Port number:" - msgstr "Số hiệu cổng:" - --#: ../glade/NewPrinterWindow.glade.h:81 -+#: ../glade/NewPrinterWindow.glade.h:80 - msgid "" - "PostScript Printer Description (PPD) files can often be found on the driver " - "disk that comes with the printer. For PostScript printers they are often " -@@ -2004,80 +2000,80 @@ msgstr "" - "khiển có sẵn với máy in. Đối với máy in PostScript, tập tin như vậy thường " - "thuộc về trình điều khiển Windows®." - --#: ../glade/NewPrinterWindow.glade.h:82 -+#: ../glade/NewPrinterWindow.glade.h:81 - msgid "Printer model:" - msgstr "Mô hình máy in:" - --#: ../glade/NewPrinterWindow.glade.h:83 -+#: ../glade/NewPrinterWindow.glade.h:82 - msgid "Probe" - msgstr "Dò" - --#: ../glade/NewPrinterWindow.glade.h:84 -+#: ../glade/NewPrinterWindow.glade.h:83 - #, fuzzy - msgid "Prompt user if authentication is required" - msgstr "Cần thiết xác thực" - --#: ../glade/NewPrinterWindow.glade.h:85 -+#: ../glade/NewPrinterWindow.glade.h:84 - msgid "Provide PPD file" - msgstr "Cung cấp tập tin PPD" - --#: ../glade/NewPrinterWindow.glade.h:86 -+#: ../glade/NewPrinterWindow.glade.h:85 - msgid "Queue:" - msgstr "Hàng đợi:" - --#: ../glade/NewPrinterWindow.glade.h:87 -+#: ../glade/NewPrinterWindow.glade.h:86 - msgid "SCSI" - msgstr "SCSI" - --#: ../glade/NewPrinterWindow.glade.h:88 -+#: ../glade/NewPrinterWindow.glade.h:87 - msgid "SMB" - msgstr "SMB" - --#: ../glade/NewPrinterWindow.glade.h:89 -+#: ../glade/NewPrinterWindow.glade.h:88 - msgid "Search for a printer driver to download" - msgstr "Tìm kiếm một trình điều khiển máy in để tải về" - --#: ../glade/NewPrinterWindow.glade.h:90 -+#: ../glade/NewPrinterWindow.glade.h:89 - #, fuzzy - msgid "Searching..." - msgstr "Tìm kiếm" - --#: ../glade/NewPrinterWindow.glade.h:91 -+#: ../glade/NewPrinterWindow.glade.h:90 - msgid "Select A File" - msgstr "Chọn tập tin" - --#: ../glade/NewPrinterWindow.glade.h:92 -+#: ../glade/NewPrinterWindow.glade.h:91 - msgid "Select printer from database" - msgstr "Chọn máy in từ cơ sở dữ liệu" - --#: ../glade/NewPrinterWindow.glade.h:93 -+#: ../glade/NewPrinterWindow.glade.h:92 - msgid "Serial" - msgstr "Nối tiếp" - --#: ../glade/NewPrinterWindow.glade.h:94 -+#: ../glade/NewPrinterWindow.glade.h:93 - #, fuzzy - msgid "Set authentication details now" - msgstr "Cần thiết xác thực" - --#: ../glade/NewPrinterWindow.glade.h:95 -+#: ../glade/NewPrinterWindow.glade.h:94 - msgid "Short name for this printer such as \"laserjet\"" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:96 -+#: ../glade/NewPrinterWindow.glade.h:95 - msgid "Supplier:" - msgstr "Nhà cung cấp:" - --#: ../glade/NewPrinterWindow.glade.h:97 -+#: ../glade/NewPrinterWindow.glade.h:96 - #, fuzzy - msgid "Support:" - msgstr "Nhà cung cấp:" - --#: ../glade/NewPrinterWindow.glade.h:98 -+#: ../glade/NewPrinterWindow.glade.h:97 - #, fuzzy - msgid "Text:" - msgstr "Đặt lại" - --#: ../glade/NewPrinterWindow.glade.h:99 -+#: ../glade/NewPrinterWindow.glade.h:98 - msgid "" - "The foomatic printer database contains various manufacturer provided " - "PostScript Printer Description (PPD) files and also can generate PPD files " -@@ -2090,7 +2086,7 @@ msgstr "" - "nhiều máy in không phải PostScript. Tuy nhiên, nói chung tập tin PPD được " - "hãng chế tạo cung cấp là thích hợp hơn với các tính năng cụ thể của máy in." - --#: ../glade/NewPrinterWindow.glade.h:100 -+#: ../glade/NewPrinterWindow.glade.h:99 - msgid "" - "These drivers do not come from your operating system supplier and will not " - "be covered by their commercial support. See the support and license terms " -@@ -2100,7 +2096,7 @@ msgstr "" - "không được họ hỗ trợ. Xem các điều kiện về hỗ trợ và giấy phép của nhà cung " - "cấp trình điều khiển." - --#: ../glade/NewPrinterWindow.glade.h:101 -+#: ../glade/NewPrinterWindow.glade.h:100 - msgid "" - "This driver supports additional hardware that may be installed in the " - "printer." -@@ -2108,7 +2104,7 @@ msgstr "" - "Trình điều khiển này hỗ trợ phần cứng bổ sung mà có thể được cài đặt trong " - "máy in." - --#: ../glade/NewPrinterWindow.glade.h:102 -+#: ../glade/NewPrinterWindow.glade.h:101 - msgid "" - "This is done by assuming that options with the same name do have the same " - "meaning. Settings of options that are not present in the new PPD will be " -@@ -2118,7 +2114,7 @@ msgstr "" - "một nghĩa. Các thiết lập của tùy chọn không có trong PPD mới sẽ bị mất và " - "các tùy chọn chỉ có trong PPD mới sẽ được đặt thành mặc định." - --#: ../glade/NewPrinterWindow.glade.h:103 -+#: ../glade/NewPrinterWindow.glade.h:102 - msgid "" - "This way all current option settings will be lost. The default settings of " - "the new PPD will be used. " -@@ -2126,19 +2122,19 @@ msgstr "" - "Bằng cách này, mọi thiết lập tùy chọn hiện thời đều sẽ bị mất. Thiết lập mặc " - "định của PPD mới sẽ được dùng." - --#: ../glade/NewPrinterWindow.glade.h:104 -+#: ../glade/NewPrinterWindow.glade.h:103 - msgid "Try to copy the option settings over from the old PPD. " - msgstr "Thử sao chép thiết lập tùy chọn từ PPD cũ." - --#: ../glade/NewPrinterWindow.glade.h:105 -+#: ../glade/NewPrinterWindow.glade.h:104 - msgid "URI:" - msgstr "URI:" - --#: ../glade/NewPrinterWindow.glade.h:107 -+#: ../glade/NewPrinterWindow.glade.h:106 - msgid "Use the new PPD (Postscript Printer Description) as is." - msgstr "Dùng PPD mới như thế." - --#: ../glade/NewPrinterWindow.glade.h:109 -+#: ../glade/NewPrinterWindow.glade.h:108 - msgid "" - "With this choice no driver download will be performed. In the next steps a " - "locally installed driver will be selected." -@@ -2146,24 +2142,24 @@ msgstr "" - "Theo tùy chọn này thì không tải về trình điều khiển. Trong những bước tiếp " - "theo, một trình đơn đã cài đặt cục bộ sẽ được chọn." - --#: ../glade/NewPrinterWindow.glade.h:110 -+#: ../glade/NewPrinterWindow.glade.h:109 - msgid "Yes, I accept this license" - msgstr "Có, tôi đồng ý với giấy phép này" - --#: ../glade/NewPrinterWindow.glade.h:111 -+#: ../glade/NewPrinterWindow.glade.h:110 - msgid "_Search" - msgstr "_Tìm" - --#: ../glade/NewPrinterWindow.glade.h:112 -+#: ../glade/NewPrinterWindow.glade.h:111 - msgid "_Verify..." - msgstr "Thẩm t_ra..." - --#: ../glade/NewPrinterWindow.glade.h:113 -+#: ../glade/NewPrinterWindow.glade.h:112 - #: ../glade/PrinterPropertiesDialog.glade.h:128 - msgid "move left" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:114 -+#: ../glade/NewPrinterWindow.glade.h:113 - #: ../glade/PrinterPropertiesDialog.glade.h:129 - msgid "move right" - msgstr "" -@@ -3107,7 +3103,7 @@ msgstr "Trang thử đã in đúng khôn - msgid "Remember to load paper of type '%s' into the printer first." - msgstr "" - --#: ../troubleshoot/PrintTestPage.py:399 -+#: ../troubleshoot/PrintTestPage.py:416 - msgid "Error submitting test page" - msgstr "" - -@@ -3313,6 +3309,10 @@ msgid "Select default printer" - msgstr "Chọn máy in mặc định" - - #, fuzzy -+#~ msgid "HP Printer (HPLIP) via network" -+#~ msgstr "Tên máy in" -+ -+#, fuzzy - #~ msgid "Not Found" - #~ msgstr "Không tìm thấy" - -diff -up system-config-printer-1.1.5/po/zh_CN.po.git-1.1.x system-config-printer-1.1.5/po/zh_CN.po ---- system-config-printer-1.1.5/po/zh_CN.po.git-1.1.x 2009-03-03 22:21:47.000000000 +0000 -+++ system-config-printer-1.1.5/po/zh_CN.po 2009-03-10 17:43:43.000000000 +0000 -@@ -15,7 +15,7 @@ msgid "" - msgstr "" - "Project-Id-Version: system-config-printer.1.1.x\n" - "Report-Msgid-Bugs-To: https://bugzilla.redhat.com/bugzilla\n" --"POT-Creation-Date: 2009-03-02 23:22+0000\n" -+"POT-Creation-Date: 2009-03-10 16:51+0000\n" - "PO-Revision-Date: 2009-02-19 20:21+0800\n" - "Last-Translator: TianShixiong \n" - "Language-Team: Chinese/Simplified \n" -@@ -57,11 +57,11 @@ msgstr "通常打印机服务器会广 - msgid "Enter IP address" - msgstr "输入 IP 地址" - --#: ../authconn.py:35 ../glade/NewPrinterWindow.glade.h:108 -+#: ../authconn.py:35 ../glade/NewPrinterWindow.glade.h:107 - msgid "Username:" - msgstr "用户名:" - --#: ../authconn.py:36 ../glade/NewPrinterWindow.glade.h:77 -+#: ../authconn.py:36 ../glade/NewPrinterWindow.glade.h:76 - msgid "Password:" - msgstr "密码:" - -@@ -69,7 +69,7 @@ msgstr "密码:" - msgid "Domain:" - msgstr "域:" - --#: ../authconn.py:46 -+#: ../authconn.py:46 ../authconn.py:409 - msgid "Authentication" - msgstr "身份验证" - -@@ -77,43 +77,52 @@ msgstr "身份验证" - msgid "Remember password" - msgstr "记住密码" - --#: ../authconn.py:211 ../authconn.py:232 -+#: ../authconn.py:208 -+#, python-format -+msgid "Unauthorized request (%s)" -+msgstr "" -+ -+#: ../authconn.py:209 -+msgid "You are not authorized to carry out therequested action." -+msgstr "" -+ -+#: ../authconn.py:212 ../authconn.py:233 - msgid "Operation canceled" - msgstr "操作取消:" - --#: ../authconn.py:253 -+#: ../authconn.py:250 - #, python-format - msgid "CUPS server error (%s)" - msgstr "CUPS服务器错误(%s)" - --#: ../authconn.py:255 ../errordialogs.py:57 --#: ../troubleshoot/PrintTestPage.py:400 -+#: ../authconn.py:252 ../errordialogs.py:56 ../errordialogs.py:70 -+msgid "CUPS server error" -+msgstr "CUPS 服务器错误" -+ -+#: ../authconn.py:261 ../errordialogs.py:57 -+#: ../troubleshoot/PrintTestPage.py:417 - #, python-format - msgid "There was an error during the CUPS operation: '%s'." - msgstr "CUPS 操作中出现一个错误:'%s'。" - --#: ../authconn.py:258 -+#: ../authconn.py:264 - msgid "Retry" - msgstr "重试" - --#: ../authconn.py:379 ../authconn.py:381 ../errordialogs.py:65 ../pysmb.py:75 -+#: ../authconn.py:385 ../authconn.py:387 ../errordialogs.py:65 ../pysmb.py:75 - #: ../pysmb.py:77 - msgid "Not authorized" - msgstr "没有被授权" - --#: ../authconn.py:382 ../pysmb.py:78 -+#: ../authconn.py:388 ../pysmb.py:78 - msgid "The password may be incorrect." - msgstr "密码可能不正确。" - --#: ../authconn.py:400 -+#: ../authconn.py:407 - #, python-format - msgid "Authentication (%s)" - msgstr "身份验证 (%s)" - --#: ../errordialogs.py:56 ../errordialogs.py:70 --msgid "CUPS server error" --msgstr "CUPS 服务器错误" -- - #: ../errordialogs.py:66 - msgid "" - "The password may be incorrect, or the server may be configured to deny " -@@ -140,7 +149,7 @@ msgstr "需要升级" - msgid "Server error" - msgstr "服务器错误" - --#: ../errordialogs.py:82 ../system-config-printer.py:1219 -+#: ../errordialogs.py:82 ../system-config-printer.py:1223 - msgid "Not connected" - msgstr "未连接" - -@@ -162,7 +171,7 @@ msgstr "新群组(_N)" - msgid "_New Group from Selection" - msgstr "从已选定中创建新群组(_N)" - --#: ../GroupsPane.py:98 ../system-config-printer.py:393 -+#: ../GroupsPane.py:98 ../system-config-printer.py:397 - msgid "_Rename" - msgstr "重命名(_R)" - -@@ -229,7 +238,7 @@ msgid "Document" - msgstr "文档" - - #: ../jobviewer.py:212 ../my-default-printer.py:153 --#: ../system-config-printer.py:366 ../system-config-printer.py:1367 -+#: ../system-config-printer.py:370 ../system-config-printer.py:1371 - #: ../troubleshoot/PrintTestPage.py:84 - msgid "Printer" - msgstr "打印机" -@@ -266,8 +275,8 @@ msgstr "文档打印状态(%s)" - - #: ../jobviewer.py:386 ../jobviewer.py:451 ../jobviewer.py:452 - #: ../jobviewer.py:492 ../jobviewer.py:600 ../jobviewer.py:727 --#: ../jobviewer.py:1196 ../jobviewer.py:1222 ../system-config-printer.py:2546 --#: ../glade/NewPrinterWindow.glade.h:106 -+#: ../jobviewer.py:1196 ../jobviewer.py:1222 ../system-config-printer.py:2556 -+#: ../glade/NewPrinterWindow.glade.h:105 - #: ../troubleshoot/ChooseNetworkPrinter.py:101 - #: ../troubleshoot/ChooseNetworkPrinter.py:102 - #: ../troubleshoot/ChooseNetworkPrinter.py:105 -@@ -356,12 +365,12 @@ msgstr "保留到周末:" - msgid "Pending" - msgstr "等待处理" - --#: ../jobviewer.py:591 ../system-config-printer.py:186 -+#: ../jobviewer.py:591 ../system-config-printer.py:190 - #: ../troubleshoot/PrintTestPage.py:43 - msgid "Processing" - msgstr "进行中" - --#: ../jobviewer.py:592 ../system-config-printer.py:188 -+#: ../jobviewer.py:592 ../system-config-printer.py:192 - #: ../troubleshoot/PrintTestPage.py:44 - msgid "Stopped" - msgstr "已停止" -@@ -471,8 +480,8 @@ msgstr "使用系统默认(_U)" - msgid "_Set Default" - msgstr "设置默认(_S)" - --#: ../my-default-printer.py:158 ../system-config-printer.py:423 --#: ../system-config-printer.py:3660 ../troubleshoot/ChooseNetworkPrinter.py:37 -+#: ../my-default-printer.py:158 ../system-config-printer.py:427 -+#: ../system-config-printer.py:3675 ../troubleshoot/ChooseNetworkPrinter.py:37 - #: ../troubleshoot/ChoosePrinter.py:38 - msgid "Location" - msgstr "位置" -@@ -501,7 +510,7 @@ msgstr "默认行为" - msgid "Authenticated" - msgstr "已验证" - --#: ../ppdippstr.py:50 ../system-config-printer.py:6259 -+#: ../ppdippstr.py:50 ../system-config-printer.py:6207 - msgid "None" - msgstr "无" - -@@ -714,123 +723,123 @@ msgstr "600 dpi,彩色,黑白+彩 - msgid "1200 dpi, photo, black + color cartridge, photo paper" - msgstr "1200 dpi,照片,黑白+彩色墨盒,照片纸" - --#: ../system-config-printer.py:127 -+#: ../system-config-printer.py:131 - msgid "To do this, select System->Administration->Firewall from the main menu." - msgstr "要启动这个工具,请在主菜单中选择「系统」->「管理」->「防火墙」。" - --#: ../system-config-printer.py:185 -+#: ../system-config-printer.py:189 - msgid "Idle" - msgstr "空闲" - --#: ../system-config-printer.py:187 -+#: ../system-config-printer.py:191 - msgid "Busy" - msgstr "正忙" - --#: ../system-config-printer.py:372 ../system-config-printer.py:1373 -+#: ../system-config-printer.py:376 ../system-config-printer.py:1377 - msgid "Class" - msgstr "分类" - --#: ../system-config-printer.py:399 -+#: ../system-config-printer.py:403 - msgid "Set As De_fault" - msgstr "设为默认(_f)" - --#: ../system-config-printer.py:403 -+#: ../system-config-printer.py:407 - msgid "_Create class" - msgstr "创建分类(_C)" - --#: ../system-config-printer.py:405 -+#: ../system-config-printer.py:409 - msgid "View Print _Queue" - msgstr "查看打印机队列(_Q)" - --#: ../system-config-printer.py:407 -+#: ../system-config-printer.py:411 - msgid "_Add to Group" - msgstr "添加到群组(_A)" - --#: ../system-config-printer.py:409 -+#: ../system-config-printer.py:413 - msgid "Save Results as _Group" - msgstr "保存结果为群组(_G)" - --#: ../system-config-printer.py:411 -+#: ../system-config-printer.py:415 - msgid "Save Filter as _Search Group" - msgstr "保存过滤条件为搜索群组(_S)" - --#: ../system-config-printer.py:415 -+#: ../system-config-printer.py:419 - msgid "E_nabled" - msgstr "启用(_n)" - --#: ../system-config-printer.py:417 -+#: ../system-config-printer.py:421 - msgid "_Shared" - msgstr "共享(_S)" - --#: ../system-config-printer.py:421 ../troubleshoot/ChooseNetworkPrinter.py:35 -+#: ../system-config-printer.py:425 ../troubleshoot/ChooseNetworkPrinter.py:35 - #: ../troubleshoot/ChoosePrinter.py:36 ../troubleshoot/DeviceListed.py:36 - msgid "Name" - msgstr "名称" - --#: ../system-config-printer.py:422 -+#: ../system-config-printer.py:426 - msgid "Description" - msgstr "描述" - --#: ../system-config-printer.py:424 -+#: ../system-config-printer.py:428 - msgid "Manufacturer / Model" - msgstr "制造商 / 型号" - - #. Printer state reasons list --#: ../system-config-printer.py:499 -+#: ../system-config-printer.py:503 - msgid "Message" - msgstr "信息" - --#: ../system-config-printer.py:534 -+#: ../system-config-printer.py:538 - msgid "Problems?" - msgstr "问题?" - --#: ../system-config-printer.py:637 ../system-config-printer.py:639 -+#: ../system-config-printer.py:641 ../system-config-printer.py:643 - msgid "Members of this class" - msgstr "该分类的成员" - --#: ../system-config-printer.py:638 ../system-config-printer.py:640 -+#: ../system-config-printer.py:642 ../system-config-printer.py:644 - msgid "Others" - msgstr "其它" - --#: ../system-config-printer.py:641 -+#: ../system-config-printer.py:645 - msgid "Devices" - msgstr "设备" - --#: ../system-config-printer.py:642 -+#: ../system-config-printer.py:646 - msgid "Connections" - msgstr "连接" - --#: ../system-config-printer.py:643 -+#: ../system-config-printer.py:647 - msgid "Makes" - msgstr "Makes" - --#: ../system-config-printer.py:644 -+#: ../system-config-printer.py:648 - msgid "Models" - msgstr "型号" - --#: ../system-config-printer.py:645 -+#: ../system-config-printer.py:649 - msgid "Drivers" - msgstr "驱动程序" - --#: ../system-config-printer.py:646 ../glade/NewPrinterWindow.glade.h:55 -+#: ../system-config-printer.py:650 ../glade/NewPrinterWindow.glade.h:54 - msgid "Downloadable Drivers" - msgstr "可以下载的驱动" - --#: ../system-config-printer.py:647 -+#: ../system-config-printer.py:651 - msgid "Users" - msgstr "用户" - --#: ../system-config-printer.py:682 -+#: ../system-config-printer.py:686 - msgid "Automatic rotation" - msgstr "自动轮换" - --#: ../system-config-printer.py:989 -+#: ../system-config-printer.py:993 - #, python-format - msgid "Printer Properties - '%s' on %s" - msgstr "打印机属性 - '%s' 在 %s 中" - - #. The Conflict button was pressed. --#: ../system-config-printer.py:996 -+#: ../system-config-printer.py:1000 - msgid "" - "There are conflicting options.\n" - "Changes can only be applied after\n" -@@ -840,78 +849,78 @@ msgstr "" - "只有在冲突被解决后,才能应用所做\n" - "修改。" - --#: ../system-config-printer.py:1214 -+#: ../system-config-printer.py:1218 - #, python-format - msgid "Printer configuration - %s" - msgstr "打印机配置 - %s" - --#: ../system-config-printer.py:1217 -+#: ../system-config-printer.py:1221 - #, python-format - msgid "Connected to %s" - msgstr "连接到 %s" - - #. Update our copy of the printer's settings. --#: ../system-config-printer.py:1257 ../system-config-printer.py:2042 -+#: ../system-config-printer.py:1261 ../system-config-printer.py:2046 - msgid "obtaining queue details" - msgstr "正在获取队列详情" - --#: ../system-config-printer.py:1295 -+#: ../system-config-printer.py:1299 - msgid "Remove from Group" - msgstr "从群组中删除" - --#: ../system-config-printer.py:1361 -+#: ../system-config-printer.py:1365 - msgid "Network printer (discovered)" - msgstr "网络打印机(找到的)" - --#: ../system-config-printer.py:1364 -+#: ../system-config-printer.py:1368 - msgid "Network class (discovered)" - msgstr "网络类型(找到的)" - --#: ../system-config-printer.py:1370 ../system-config-printer.py:5524 --#: ../system-config-printer.py:5594 ../system-config-printer.py:5596 -+#: ../system-config-printer.py:1374 ../system-config-printer.py:5519 -+#: ../system-config-printer.py:5589 ../system-config-printer.py:5591 - msgid "Fax" - msgstr "传真" - --#: ../system-config-printer.py:1376 ../system-config-printer.py:1382 -+#: ../system-config-printer.py:1380 ../system-config-printer.py:1386 - #: ../troubleshoot/LocalOrRemote.py:30 - msgid "Network printer" - msgstr "网络打印机" - --#: ../system-config-printer.py:1379 -+#: ../system-config-printer.py:1383 - msgid "Network print share" - msgstr "网络打印机共享" - --#: ../system-config-printer.py:1508 ../glade/ConnectingDialog.glade.h:2 -+#: ../system-config-printer.py:1512 ../glade/ConnectingDialog.glade.h:2 - #, no-c-format, python-format - msgid "Opening connection to %s" - msgstr "正在打开到 %s 的连接" - --#: ../system-config-printer.py:1887 -+#: ../system-config-printer.py:1891 - msgid "Installable Options" - msgstr "可安装选项" - --#: ../system-config-printer.py:1888 -+#: ../system-config-printer.py:1892 - #: ../glade/PrinterPropertiesDialog.glade.h:109 - msgid "Printer Options" - msgstr "打印机选项" - --#: ../system-config-printer.py:1924 -+#: ../system-config-printer.py:1928 - #, python-format - msgid "modifying class %s" - msgstr "正在修改分类 %s" - --#: ../system-config-printer.py:1926 ../system-config-printer.py:3019 --#: ../system-config-printer.py:3044 ../system-config-printer.py:6547 --#: ../system-config-printer.py:6559 ../system-config-printer.py:6581 -+#: ../system-config-printer.py:1930 ../system-config-printer.py:3037 -+#: ../system-config-printer.py:3062 ../system-config-printer.py:6495 -+#: ../system-config-printer.py:6507 ../system-config-printer.py:6529 - #, python-format - msgid "modifying printer %s" - msgstr "正在修改打印机 %s" - --#: ../system-config-printer.py:1941 -+#: ../system-config-printer.py:1945 - msgid "This will delete this class!" - msgstr "这将删除这个 class!" - --#: ../system-config-printer.py:1942 -+#: ../system-config-printer.py:1946 - msgid "Proceed anyway?" - msgstr "继续处理?" - -@@ -919,63 +928,63 @@ msgstr "继续处理?" - #. but we have never fetched the server settings to see whether - #. the server is publishing shared printers. Fetch the settings - #. now so that we can update the "not published" label if necessary. --#: ../system-config-printer.py:2030 ../system-config-printer.py:3203 -+#: ../system-config-printer.py:2034 ../system-config-printer.py:3221 - msgid "fetching server settings" - msgstr "正在取回服务器设置" - --#: ../system-config-printer.py:2100 -+#: ../system-config-printer.py:2104 - msgid "Set Default Printer" - msgstr "设置默认打印机" - --#: ../system-config-printer.py:2102 -+#: ../system-config-printer.py:2106 - msgid "Do you want to set this as the system-wide default printer?" - msgstr "您想要将这台打印机设置为系统范围内的默认打印机吗?" - --#: ../system-config-printer.py:2104 -+#: ../system-config-printer.py:2108 - msgid "Set as the _system-wide default printer" - msgstr "设置为系统范围的默认打印机(_s)" - --#: ../system-config-printer.py:2106 -+#: ../system-config-printer.py:2110 - msgid "_Clear my personal default setting" - msgstr "清除我的个人默认设置(_C)" - --#: ../system-config-printer.py:2107 -+#: ../system-config-printer.py:2111 - msgid "Set as my _personal default printer" - msgstr "设置为我的个人默认打印机(_p)" - --#: ../system-config-printer.py:2112 -+#: ../system-config-printer.py:2116 - msgid "setting default printer" - msgstr "正在设定默认打印机" - --#: ../system-config-printer.py:2169 -+#: ../system-config-printer.py:2173 - msgid "printing test page" - msgstr "正在打印测试页" - --#: ../system-config-printer.py:2182 ../system-config-printer.py:2217 --#: ../system-config-printer.py:5418 -+#: ../system-config-printer.py:2186 ../system-config-printer.py:2221 -+#: ../system-config-printer.py:5413 - msgid "Not possible" - msgstr "不可能" - --#: ../system-config-printer.py:2183 ../system-config-printer.py:2218 -+#: ../system-config-printer.py:2187 ../system-config-printer.py:2222 - msgid "" - "The remote server did not accept the print job, most likely because the " - "printer is not shared." - msgstr "远程的服务器没有接受这个打印任务,这可能是因为那个打印机没有共享。" - --#: ../system-config-printer.py:2195 ../system-config-printer.py:2210 -+#: ../system-config-printer.py:2199 ../system-config-printer.py:2214 - msgid "Submitted" - msgstr "提交" - --#: ../system-config-printer.py:2196 -+#: ../system-config-printer.py:2200 - #, python-format - msgid "Test page submitted as job %d" - msgstr "测试页作为任务 %d 被发送" - --#: ../system-config-printer.py:2203 -+#: ../system-config-printer.py:2207 - msgid "sending maintenance command" - msgstr "正在发送维护命令" - --#: ../system-config-printer.py:2211 -+#: ../system-config-printer.py:2215 - #, python-format - msgid "Maintenance command submitted as job %d" - msgstr "将维护命令作为任务 %d 提交" -@@ -983,71 +992,71 @@ msgstr "将维护命令作为任务 %d - #. The underlying cupsGetPPD2() function returned NULL without - #. setting an IPP error, so it'll be something like a failed - #. connection. --#: ../system-config-printer.py:2285 ../system-config-printer.py:2381 -+#: ../system-config-printer.py:2289 ../system-config-printer.py:2385 - msgid "Error" - msgstr "错误" - --#: ../system-config-printer.py:2286 -+#: ../system-config-printer.py:2290 - msgid "There was a problem connecting to the CUPS server." - msgstr "连接到 CUPS 服务器时出现问题。" - --#: ../system-config-printer.py:2382 -+#: ../system-config-printer.py:2386 - #, python-format - msgid "Option '%s' has value '%s' and cannot be edited." - msgstr "选项 '%s' 有值 '%s',且无法编辑。" - --#: ../system-config-printer.py:2466 -+#: ../system-config-printer.py:2476 - msgid "Marker levels are not reported for this printer." - msgstr "" - --#: ../system-config-printer.py:2763 -+#: ../system-config-printer.py:2773 - msgid "Cannot Rename" - msgstr "无法重新命名" - --#: ../system-config-printer.py:2764 -+#: ../system-config-printer.py:2774 - msgid "There are queued jobs." - msgstr "有排队的任务。" - --#: ../system-config-printer.py:2822 -+#: ../system-config-printer.py:2840 - msgid "renaming printer" - msgstr "正在重命名打印机" - - #. for classes make sure all members - #. will get added --#: ../system-config-printer.py:2907 -+#: ../system-config-printer.py:2925 - msgid "copying printer" - msgstr "正在复制打印机" - --#: ../system-config-printer.py:2971 -+#: ../system-config-printer.py:2989 - #, python-format - msgid "Really delete class '%s'?" - msgstr "真的要删除类型 '%s' 吗?" - --#: ../system-config-printer.py:2973 -+#: ../system-config-printer.py:2991 - #, python-format - msgid "Really delete printer '%s'?" - msgstr "真的要删除打印机 `%s' 吗?" - --#: ../system-config-printer.py:2975 -+#: ../system-config-printer.py:2993 - msgid "Really delete selected destinations?" - msgstr "真的要删除选择的目的地吗?" - --#: ../system-config-printer.py:2996 -+#: ../system-config-printer.py:3014 - #, python-format - msgid "deleting printer %s" - msgstr "正在删除打印机 %s" - --#: ../system-config-printer.py:3070 -+#: ../system-config-printer.py:3088 - msgid "Publish Shared Printers" - msgstr "公布共享的打印机" - --#: ../system-config-printer.py:3071 -+#: ../system-config-printer.py:3089 - msgid "" - "Shared printers are not available to other people unless the 'Publish shared " - "printers' option is enabled in the server settings." - msgstr "除非在服务器设置中启用‘公布共享的打印机’,其他人无法使用共享的打印机。" - --#: ../system-config-printer.py:3264 -+#: ../system-config-printer.py:3282 - msgid "modifying server settings" - msgstr "正在修改服务器设置" - -@@ -1057,94 +1066,94 @@ msgstr "正在修改服务器设置" - #. be unblocked. Unfortunately, this is not yet possible - #. (bug #440469). However, we can display a dialog to suggest - #. that now might be a good time to review the firewall settings. --#: ../system-config-printer.py:3289 -+#: ../system-config-printer.py:3307 - msgid "Review Firewall" - msgstr "浏览防火墙设置" - --#: ../system-config-printer.py:3290 -+#: ../system-config-printer.py:3308 - msgid "" - "You may need to adjust the firewall to allow network printing to this " - "computer." - msgstr "您可能需要调整防火墙设置以便允许这台电脑可进行网络打印。" - --#: ../system-config-printer.py:3623 -+#: ../system-config-printer.py:3638 - msgid "Browsing not available (pysmbc not installed)" - msgstr "浏览不可用 (pysmbc 没有安装)" - - #. SMB list columns --#: ../system-config-printer.py:3629 -+#: ../system-config-printer.py:3644 - msgid "Share" - msgstr "共享" - --#: ../system-config-printer.py:3635 -+#: ../system-config-printer.py:3650 - msgid "Comment" - msgstr "注解" - - #. IPP list columns --#: ../system-config-printer.py:3654 -+#: ../system-config-printer.py:3669 - msgid "Queue" - msgstr "队列" - --#: ../system-config-printer.py:3668 -+#: ../system-config-printer.py:3683 - msgid "" - "PostScript Printer Description files (*.ppd, *.PPD, *.ppd.gz, *.PPD.gz, *." - "PPD.GZ)" - msgstr "PostScript 打印机描述文件(*.ppd, *.PPD, *.ppd.gz, *.PPD.gz, *.PPD.GZ)" - --#: ../system-config-printer.py:3677 -+#: ../system-config-printer.py:3692 - msgid "All files (*)" - msgstr "所有文件(*)" - --#: ../system-config-printer.py:3713 ../system-config-printer.py:5970 --#: ../system-config-printer.py:6008 ../applet.py:124 -+#: ../system-config-printer.py:3728 ../system-config-printer.py:5918 -+#: ../system-config-printer.py:5956 ../applet.py:124 - msgid "Search" - msgstr "搜索" - --#: ../system-config-printer.py:3736 ../system-config-printer.py:3760 --#: ../glade/NewPrinterWindow.glade.h:74 -+#: ../system-config-printer.py:3751 ../system-config-printer.py:3775 -+#: ../glade/NewPrinterWindow.glade.h:73 - msgid "New Printer" - msgstr "新打印机" - --#: ../system-config-printer.py:3747 -+#: ../system-config-printer.py:3762 - msgid "New Class" - msgstr "新 Class" - --#: ../system-config-printer.py:3752 -+#: ../system-config-printer.py:3767 - msgid "Change Device URI" - msgstr "改变设备 URI" - --#: ../system-config-printer.py:3758 -+#: ../system-config-printer.py:3773 - msgid "Change Driver" - msgstr "改变驱动" - --#: ../system-config-printer.py:3927 ../system-config-printer.py:3993 --#: ../system-config-printer.py:4289 ../system-config-printer.py:4487 --#: ../system-config-printer.py:5772 ../system-config-printer.py:5995 -+#: ../system-config-printer.py:3942 ../system-config-printer.py:4008 -+#: ../system-config-printer.py:4304 ../system-config-printer.py:4502 -+#: ../system-config-printer.py:5762 ../system-config-printer.py:5943 - msgid "Searching" - msgstr "正在搜索" - --#: ../system-config-printer.py:3928 -+#: ../system-config-printer.py:3943 - msgid "Searching for downloadable drivers" - msgstr "正在搜索可下载的驱动程序" - --#: ../system-config-printer.py:3994 ../system-config-printer.py:4290 -+#: ../system-config-printer.py:4009 ../system-config-printer.py:4305 - msgid "Searching for drivers" - msgstr "正在搜索驱动程序" - --#: ../system-config-printer.py:4488 ../system-config-printer.py:5773 -+#: ../system-config-printer.py:4503 ../system-config-printer.py:5763 - msgid "Searching for printers" - msgstr "正在搜索打印机" - --#: ../system-config-printer.py:4497 -+#: ../system-config-printer.py:4512 - msgid "fetching device list" - msgstr "正在查找设备列表" - - #. Tell the user why he needs the plugin --#: ../system-config-printer.py:4579 -+#: ../system-config-printer.py:4594 - msgid "For this printer a proprietary driver plugin from HP is available.\n" - msgstr "存在针对此打印机的HP专用驱动插件.\n" - --#: ../system-config-printer.py:4582 -+#: ../system-config-printer.py:4597 - msgid "" - "The installation of the plugin is required for your printer to work.\n" - "\n" -@@ -1152,7 +1161,7 @@ msgstr "" - "要使打印机工作需要安装此插件.\n" - "\n" - --#: ../system-config-printer.py:4585 -+#: ../system-config-printer.py:4600 - msgid "" - "Installing the plugin is optional, it completes or enhances the " - "functionality\n" -@@ -1163,262 +1172,254 @@ msgstr "" - "即便没有插件也可以实现基本操作.\n" - "\n" - --#: ../system-config-printer.py:4589 -+#: ../system-config-printer.py:4604 - msgid "The plugin provides the following features:\n" - msgstr "此插件提供以下特性:\n" - --#: ../system-config-printer.py:4592 -+#: ../system-config-printer.py:4607 - msgid " - Printing support\n" - msgstr " - 打印支持\n" - --#: ../system-config-printer.py:4595 -+#: ../system-config-printer.py:4610 - msgid " - Faster printing\n" - msgstr " - 快速打印\n" - --#: ../system-config-printer.py:4598 -+#: ../system-config-printer.py:4613 - msgid " - Better printout quality\n" - msgstr " - 更好的输出质量\n" - --#: ../system-config-printer.py:4601 -+#: ../system-config-printer.py:4616 - msgid " - Extra printing features\n" - msgstr " - 额外的打印特性\n" - --#: ../system-config-printer.py:4604 -+#: ../system-config-printer.py:4619 - msgid " - Scanning support\n" - msgstr " - 扫描支持\n" - --#: ../system-config-printer.py:4607 -+#: ../system-config-printer.py:4622 - msgid " - Faster scanning\n" - msgstr " - 快速扫描\n" - --#: ../system-config-printer.py:4610 -+#: ../system-config-printer.py:4625 - msgid " - Better scanning image quality\n" - msgstr " - 更高的图像扫描质量\n" - --#: ../system-config-printer.py:4613 -+#: ../system-config-printer.py:4628 - msgid " - Faxing support\n" - msgstr " - 传真支持\n" - --#: ../system-config-printer.py:4616 -+#: ../system-config-printer.py:4631 - msgid " - Extra fax features\n" - msgstr " - 额外的传真特性\n" - --#: ../system-config-printer.py:4619 -+#: ../system-config-printer.py:4634 - msgid " - Better Input/Output support\n" - msgstr " - 更好的输入/输出支持\n" - --#: ../system-config-printer.py:4622 -+#: ../system-config-printer.py:4637 - msgid " - Extra user interface features\n" - msgstr " - 额外的用户界面特性\n" - --#: ../system-config-printer.py:4625 -+#: ../system-config-printer.py:4640 - msgid " - Other extra features\n" - msgstr " - 其它额外特性\n" - --#: ../system-config-printer.py:4630 -+#: ../system-config-printer.py:4645 - msgid "Install plugin" - msgstr "安装插件" - --#: ../system-config-printer.py:4631 -+#: ../system-config-printer.py:4646 - msgid "Do not set up printer" - msgstr "不要设置打印机" - --#: ../system-config-printer.py:4632 -+#: ../system-config-printer.py:4647 - msgid "Set up without plugin" - msgstr "无插件设置" - --#: ../system-config-printer.py:4634 ../troubleshoot/PrintTestPage.py:118 -+#: ../system-config-printer.py:4649 ../troubleshoot/PrintTestPage.py:118 - msgid "Yes" - msgstr "是" - --#: ../system-config-printer.py:4635 ../troubleshoot/PrintTestPage.py:119 -+#: ../system-config-printer.py:4650 ../troubleshoot/PrintTestPage.py:119 - msgid "No" - msgstr "否" - --#: ../system-config-printer.py:4809 ../system-config-printer.py:4813 -+#: ../system-config-printer.py:4824 ../system-config-printer.py:4828 - msgid " (Current)" - msgstr " (当前)" - --#: ../system-config-printer.py:4845 --msgid "HP Printer (HPLIP)" --msgstr "HP打印机(HPLIP)" -- --#: ../system-config-printer.py:4886 -+#: ../system-config-printer.py:4881 - msgid "Other" - msgstr "其它" - - #. device-info - #. PhysicalDevice obj - #. Separator? --#: ../system-config-printer.py:4902 -+#: ../system-config-printer.py:4897 - msgid "Network Printer" - msgstr "网络打印机" - --#: ../system-config-printer.py:4906 -+#: ../system-config-printer.py:4901 - msgid "Find Network Printer" - msgstr "寻找网络打印机" - --#: ../system-config-printer.py:4979 ../system-config-printer.py:5376 -+#: ../system-config-printer.py:4974 ../system-config-printer.py:5371 - msgid "Scanning..." - msgstr "扫描中..." - --#: ../system-config-printer.py:5034 ../system-config-printer.py:5798 -+#: ../system-config-printer.py:5029 - msgid "No Print Shares" - msgstr "没有打印共享" - --#: ../system-config-printer.py:5035 -+#: ../system-config-printer.py:5030 - msgid "" - "There were no print shares found. Please check that the Samba service is " - "marked as trusted in your firewall configuration." - msgstr "" - "没有找到打印共享。请查看在您的防火墙配置中是否将 Samba 服务标记为可信。" - --#: ../system-config-printer.py:5296 ../system-config-printer.py:5357 -+#: ../system-config-printer.py:5291 ../system-config-printer.py:5352 - msgid "Print Share Verified" - msgstr "打印共享确认" - --#: ../system-config-printer.py:5297 ../system-config-printer.py:5358 -+#: ../system-config-printer.py:5292 ../system-config-printer.py:5353 - msgid "This print share is accessible." - msgstr "这个打印机共享可以被访问。" - --#: ../system-config-printer.py:5302 ../system-config-printer.py:5362 -+#: ../system-config-printer.py:5297 ../system-config-printer.py:5357 - msgid "This print share is not accessible." - msgstr "这个打印机共享不能被访问。" - --#: ../system-config-printer.py:5305 -+#: ../system-config-printer.py:5300 - msgid "Print Share Inaccessible" - msgstr "无法访问打印共享" - --#: ../system-config-printer.py:5361 -+#: ../system-config-printer.py:5356 - msgid "Inaccessible" - msgstr "不能访问" - --#: ../system-config-printer.py:5419 -+#: ../system-config-printer.py:5414 - #, python-format - msgid "It is not possible to obtain a list of queues from '%s'." - msgstr "不可能从 `%s' 中获得队列列表." - --#: ../system-config-printer.py:5421 -+#: ../system-config-printer.py:5416 - msgid "" - "Obtaining a list of queues is a CUPS extension to IPP. Network printers do " - "not support it." - msgstr "获得队列列表是 CUPS 到 IPP 的扩展。网络打印机不支持此功能。" - --#: ../system-config-printer.py:5424 -+#: ../system-config-printer.py:5419 - msgid "No queues" - msgstr "没有队列" - --#: ../system-config-printer.py:5425 -+#: ../system-config-printer.py:5420 - msgid "There are no queues available." - msgstr "没有可用队列。" - --#: ../system-config-printer.py:5516 -+#: ../system-config-printer.py:5511 - msgid "Parallel Port" - msgstr "并口" - --#: ../system-config-printer.py:5518 -+#: ../system-config-printer.py:5513 - msgid "Serial Port" - msgstr "串口" - --#: ../system-config-printer.py:5520 -+#: ../system-config-printer.py:5515 - msgid "USB" - msgstr "USB" - --#: ../system-config-printer.py:5522 ../system-config-printer.py:5525 -+#: ../system-config-printer.py:5517 ../system-config-printer.py:5520 - msgid "HP Linux Imaging and Printing (HPLIP)" - msgstr "HP Linux成像和打印(HPLIP)" - --#: ../system-config-printer.py:5527 -+#: ../system-config-printer.py:5522 - msgid "Hardware Abstraction Layer (HAL)" - msgstr "硬件抽象层(HAL)" - --#: ../system-config-printer.py:5529 -+#: ../system-config-printer.py:5524 - msgid "AppSocket/HP JetDirect" - msgstr "应用接口/HP JetDirect" - --#: ../system-config-printer.py:5538 -+#: ../system-config-printer.py:5533 - #, python-format - msgid "LPD/LPR queue '%s'" - msgstr "" - --#: ../system-config-printer.py:5540 -+#: ../system-config-printer.py:5535 - #, fuzzy - msgid "LPD/LPR queue" - msgstr "LPD/LPR" - --#: ../system-config-printer.py:5543 -+#: ../system-config-printer.py:5538 - msgid "Windows Printer via SAMBA" - msgstr "通过SAMBA连接的Windows打印机" - --#: ../system-config-printer.py:5545 ../glade/NewPrinterWindow.glade.h:66 -+#: ../system-config-printer.py:5540 ../glade/NewPrinterWindow.glade.h:65 - msgid "IPP" - msgstr "IPP" - --#: ../system-config-printer.py:5547 -+#: ../system-config-printer.py:5542 - msgid "HTTP" - msgstr "HTTP" - --#: ../system-config-printer.py:5632 -+#: ../system-config-printer.py:5624 - msgid "A printer connected to the parallel port." - msgstr "一个打印机连接到并行口。" - --#: ../system-config-printer.py:5634 -+#: ../system-config-printer.py:5626 - msgid "A printer connected to a USB port." - msgstr "一个打印机连接到一个 USB 端口。" - --#: ../system-config-printer.py:5636 -+#: ../system-config-printer.py:5628 - msgid "" - "HPLIP software driving a printer, or the printer function of a multi-" - "function device." - msgstr "HPLIP 软件驱动一个打印机,或多功能设备中的打印机功能。" - --#: ../system-config-printer.py:5639 -+#: ../system-config-printer.py:5631 - msgid "" - "HPLIP software driving a fax machine, or the fax function of a multi-" - "function device." - msgstr "HPLIP 软件驱动一个传真机,或多功能设备中的传真机功能。" - --#: ../system-config-printer.py:5642 -+#: ../system-config-printer.py:5634 - msgid "Local printer detected by the Hardware Abstraction Layer (HAL)." - msgstr "Hardware Abstraction Layer (HAL) 发现了本地打印机。" - --#: ../system-config-printer.py:5799 --msgid "HPLIP cannot find the device." --msgstr "HPLIP无法找到该设备." -- --#: ../system-config-printer.py:5881 -+#: ../system-config-printer.py:5831 - msgid "No printer was found at that address." - msgstr "该地址未找到打印机." - --#: ../system-config-printer.py:6020 -+#: ../system-config-printer.py:5968 - msgid "-- Select from search results --" - msgstr "-- 从结果中选择 --" - --#: ../system-config-printer.py:6022 -+#: ../system-config-printer.py:5970 - msgid "-- No matches found --" - msgstr "-- 没有发现匹配的型号 --" - --#: ../system-config-printer.py:6203 -+#: ../system-config-printer.py:6151 - msgid " (recommended)" - msgstr "(推荐)" - --#: ../system-config-printer.py:6217 -+#: ../system-config-printer.py:6165 - msgid "This PPD is generated by foomatic." - msgstr "这个 PPD 被 foomatic 产生。" - --#: ../system-config-printer.py:6241 -+#: ../system-config-printer.py:6189 - msgid "OpenPrinting" - msgstr "开放打印" - --#: ../system-config-printer.py:6252 -+#: ../system-config-printer.py:6200 - msgid "Distributable" - msgstr "可分配的" - --#: ../system-config-printer.py:6293 -+#: ../system-config-printer.py:6241 - msgid ", " - msgstr ", " - --#: ../system-config-printer.py:6298 -+#: ../system-config-printer.py:6246 - #, python-format - msgid "" - "\n" -@@ -1427,20 +1428,20 @@ msgstr "" - "\n" - "(%s)" - --#: ../system-config-printer.py:6303 -+#: ../system-config-printer.py:6251 - msgid "No support contacts known" - msgstr "没有已知的支持协议" - --#: ../system-config-printer.py:6307 ../system-config-printer.py:6320 -+#: ../system-config-printer.py:6255 ../system-config-printer.py:6268 - msgid "Not specified." - msgstr "没有特定的。" - - #. Foomatic database problem of some sort. --#: ../system-config-printer.py:6360 -+#: ../system-config-printer.py:6308 - msgid "Database error" - msgstr "数据库错误" - --#: ../system-config-printer.py:6361 -+#: ../system-config-printer.py:6309 - #, python-format - msgid "The '%s' driver cannot be used with printer '%s %s'." - msgstr "“%s”驱动不能够和打印机“%s %s”一起使用。" -@@ -1448,60 +1449,60 @@ msgstr "“%s”驱动不能够和打印 - #. This printer references some XML that is not - #. installed by default. Point the user at the - #. package they need to install. --#: ../system-config-printer.py:6371 -+#: ../system-config-printer.py:6319 - #, python-format - msgid "You will need to install the '%s' package in order to use this driver." - msgstr "您将需要安装“%s”包来使用这个驱动。" - - #. This error came from trying to open the PPD file. --#: ../system-config-printer.py:6378 -+#: ../system-config-printer.py:6326 - msgid "PPD error" - msgstr "PPD错误" - --#: ../system-config-printer.py:6380 -+#: ../system-config-printer.py:6328 - msgid "Failed to read PPD file. Possible reason follows:" - msgstr "读取PPD文件错误。可能由以下原因造成:" - - #. Failed to get PPD downloaded from OpenPrinting XXX --#: ../system-config-printer.py:6397 -+#: ../system-config-printer.py:6345 - msgid "Downloadable drivers" - msgstr "可下载的驱动程序" - --#: ../system-config-printer.py:6398 -+#: ../system-config-printer.py:6346 - msgid "Failed to download PPD." - msgstr "下载 PPD 失败。" - --#: ../system-config-printer.py:6405 -+#: ../system-config-printer.py:6353 - msgid "fetching PPD" - msgstr "获取PPD" - --#: ../system-config-printer.py:6434 ../system-config-printer.py:6472 -+#: ../system-config-printer.py:6382 ../system-config-printer.py:6420 - msgid "No Installable Options" - msgstr "没有安装选项" - --#: ../system-config-printer.py:6520 -+#: ../system-config-printer.py:6468 - #, python-format - msgid "adding printer %s" - msgstr "正在添加打印机 %s" - --#: ../system-config-printer.py:6669 -+#: ../system-config-printer.py:6617 - msgid "Would you like to print a test page?" - msgstr "你想打印一张测试页吗?" - --#: ../system-config-printer.py:6722 -+#: ../system-config-printer.py:6670 - msgid "Install driver" - msgstr "安装驱动程序" - --#: ../system-config-printer.py:6723 ../troubleshoot/CheckPPDSanity.py:131 -+#: ../system-config-printer.py:6671 ../troubleshoot/CheckPPDSanity.py:131 - #, python-format - msgid "Printer '%s' requires the %s package but it is not currently installed." - msgstr "打印机‘%s’要求的 %s 软件包目前没有安装。" - --#: ../system-config-printer.py:6739 -+#: ../system-config-printer.py:6687 - msgid "Missing driver" - msgstr "缺少驱动" - --#: ../system-config-printer.py:6740 -+#: ../system-config-printer.py:6688 - #, python-format - msgid "" - "Printer '%s' requires the '%s' program but it is not currently installed. " -@@ -1623,106 +1624,102 @@ msgid "Enter device URI" - msgstr "输入设备 URI" - - #: ../glade/NewPrinterWindow.glade.h:5 --msgid "HP Printer (HPLIP) via network" --msgstr "网络中的HP打印机(HPLIP)" -- --#: ../glade/NewPrinterWindow.glade.h:6 - msgid "IPP Printer" - msgstr "IPP 打印机" - --#: ../glade/NewPrinterWindow.glade.h:7 -+#: ../glade/NewPrinterWindow.glade.h:6 - msgid "License Terms" - msgstr "许可证术语" - --#: ../glade/NewPrinterWindow.glade.h:8 -+#: ../glade/NewPrinterWindow.glade.h:7 - msgid "Location of the LPD network printer" - msgstr "LPD 网络打印机的位置" - --#: ../glade/NewPrinterWindow.glade.h:9 -+#: ../glade/NewPrinterWindow.glade.h:8 - msgid "Location of the network printer" - msgstr "网络打印机的位置" - --#: ../glade/NewPrinterWindow.glade.h:10 -+#: ../glade/NewPrinterWindow.glade.h:9 - msgid "Location (optional)" - msgstr "位置 (可选)" - --#: ../glade/NewPrinterWindow.glade.h:11 -+#: ../glade/NewPrinterWindow.glade.h:10 - msgid "Network Printer" - msgstr "网络打印机" - --#: ../glade/NewPrinterWindow.glade.h:12 -+#: ../glade/NewPrinterWindow.glade.h:11 - msgid "Note" - msgstr "注记" - --#: ../glade/NewPrinterWindow.glade.h:13 -+#: ../glade/NewPrinterWindow.glade.h:12 - msgid "Output Quality" - msgstr "输出质量" - --#: ../glade/NewPrinterWindow.glade.h:14 -+#: ../glade/NewPrinterWindow.glade.h:13 - msgid "Printer Name" - msgstr "打印机名" - --#: ../glade/NewPrinterWindow.glade.h:15 -+#: ../glade/NewPrinterWindow.glade.h:14 - msgid "SMB Printer" - msgstr "SMB 打印机" - --#: ../glade/NewPrinterWindow.glade.h:16 -+#: ../glade/NewPrinterWindow.glade.h:15 - msgid "Select Driver" - msgstr "选择驱动程序" - --#: ../glade/NewPrinterWindow.glade.h:17 -+#: ../glade/NewPrinterWindow.glade.h:16 - msgid "Settings of the serial port" - msgstr "串口设置" - --#: ../glade/NewPrinterWindow.glade.h:18 -+#: ../glade/NewPrinterWindow.glade.h:17 - msgid "smb://[workgroup/]server[:port]/printer" - msgstr "smb://[workgroup/]server[:port]/printer" - --#: ../glade/NewPrinterWindow.glade.h:19 -+#: ../glade/NewPrinterWindow.glade.h:18 - msgid "Choose Class Members" - msgstr "选择类别成员" - --#: ../glade/NewPrinterWindow.glade.h:20 -+#: ../glade/NewPrinterWindow.glade.h:19 - msgid "Choose Driver" - msgstr "选择驱动程序" - --#: ../glade/NewPrinterWindow.glade.h:21 -+#: ../glade/NewPrinterWindow.glade.h:20 - msgid "Describe Printer" - msgstr "描述打印机" - --#: ../glade/NewPrinterWindow.glade.h:22 -+#: ../glade/NewPrinterWindow.glade.h:21 - msgid "Existing Settings" - msgstr "现有设置" - --#: ../glade/NewPrinterWindow.glade.h:23 -+#: ../glade/NewPrinterWindow.glade.h:22 - msgid "Installable Options" - msgstr "安装选项" - --#: ../glade/NewPrinterWindow.glade.h:24 -+#: ../glade/NewPrinterWindow.glade.h:23 - msgid "Select Device" - msgstr "选择设备" - --#: ../glade/NewPrinterWindow.glade.h:25 -+#: ../glade/NewPrinterWindow.glade.h:24 - msgid "Baud Rate" - msgstr "波特率" - --#: ../glade/NewPrinterWindow.glade.h:26 -+#: ../glade/NewPrinterWindow.glade.h:25 - msgid "Browse..." - msgstr "浏览..." - --#: ../glade/NewPrinterWindow.glade.h:27 -+#: ../glade/NewPrinterWindow.glade.h:26 - msgid "Comments..." - msgstr "注解..." - --#: ../glade/NewPrinterWindow.glade.h:28 -+#: ../glade/NewPrinterWindow.glade.h:27 - msgid "Connection" - msgstr "连接" - --#: ../glade/NewPrinterWindow.glade.h:29 -+#: ../glade/NewPrinterWindow.glade.h:28 - msgid "Data Bits" - msgstr "数据位" - --#: ../glade/NewPrinterWindow.glade.h:30 -+#: ../glade/NewPrinterWindow.glade.h:29 - msgid "" - "Default\n" - "1200\n" -@@ -1744,7 +1741,7 @@ msgstr "" - "57600\n" - "115200" - --#: ../glade/NewPrinterWindow.glade.h:39 -+#: ../glade/NewPrinterWindow.glade.h:38 - msgid "" - "Default\n" - "8\n" -@@ -1754,7 +1751,7 @@ msgstr "" - "8\n" - "7" - --#: ../glade/NewPrinterWindow.glade.h:42 -+#: ../glade/NewPrinterWindow.glade.h:41 - msgid "" - "Default\n" - "None\n" -@@ -1766,7 +1763,7 @@ msgstr "" - "单数\n" - "双数" - --#: ../glade/NewPrinterWindow.glade.h:46 -+#: ../glade/NewPrinterWindow.glade.h:45 - msgid "" - "Default\n" - "None\n" -@@ -1780,113 +1777,113 @@ msgstr "" - "RTS/CTS (硬件)\n" - "DTR/DSR (硬件)" - --#: ../glade/NewPrinterWindow.glade.h:51 -+#: ../glade/NewPrinterWindow.glade.h:50 - #: ../glade/PrinterPropertiesDialog.glade.h:35 - msgid "Description:" - msgstr "描述:" - --#: ../glade/NewPrinterWindow.glade.h:52 ../troubleshoot/DeviceListed.py:40 -+#: ../glade/NewPrinterWindow.glade.h:51 ../troubleshoot/DeviceListed.py:40 - msgid "Device URI" - msgstr "设备 URI" - --#: ../glade/NewPrinterWindow.glade.h:53 -+#: ../glade/NewPrinterWindow.glade.h:52 - msgid "Device description." - msgstr "设备描述。" - --#: ../glade/NewPrinterWindow.glade.h:54 -+#: ../glade/NewPrinterWindow.glade.h:53 - msgid "DirectJet" - msgstr "DirectJet" - --#: ../glade/NewPrinterWindow.glade.h:56 -+#: ../glade/NewPrinterWindow.glade.h:55 - msgid "Driver details" - msgstr "驱动程序详情" - --#: ../glade/NewPrinterWindow.glade.h:57 -+#: ../glade/NewPrinterWindow.glade.h:56 - msgid "Empty" - msgstr "空" - --#: ../glade/NewPrinterWindow.glade.h:58 -+#: ../glade/NewPrinterWindow.glade.h:57 - msgid "Find _Queue..." - msgstr "查找队列(_Q)..." - --#: ../glade/NewPrinterWindow.glade.h:59 -+#: ../glade/NewPrinterWindow.glade.h:58 - msgid "Flow Control" - msgstr "流控制" - --#: ../glade/NewPrinterWindow.glade.h:60 -+#: ../glade/NewPrinterWindow.glade.h:59 - msgid "" - "For the printer you have selected there are drivers available for download." - msgstr "您选择的打印机有可驱动程序可供下载。" - --#: ../glade/NewPrinterWindow.glade.h:61 -+#: ../glade/NewPrinterWindow.glade.h:60 - msgid "Free software" - msgstr "自由软件" - --#: ../glade/NewPrinterWindow.glade.h:62 -+#: ../glade/NewPrinterWindow.glade.h:61 - msgid "Graphics:" - msgstr "图形:" - --#: ../glade/NewPrinterWindow.glade.h:63 -+#: ../glade/NewPrinterWindow.glade.h:62 - msgid "Host:" - msgstr "主机:" - --#: ../glade/NewPrinterWindow.glade.h:64 -+#: ../glade/NewPrinterWindow.glade.h:63 - msgid "Human-readable description such as \"HP LaserJet with Duplexer\"" - msgstr "易读的描述信息,如 \"HP LaserJet with Duplexer\"" - --#: ../glade/NewPrinterWindow.glade.h:65 -+#: ../glade/NewPrinterWindow.glade.h:64 - msgid "Human-readable location such as \"Lab 1\"" - msgstr "位置信息,如 \"Lab 1\"" - --#: ../glade/NewPrinterWindow.glade.h:67 -+#: ../glade/NewPrinterWindow.glade.h:66 - msgid "LPD" - msgstr "LPD" - --#: ../glade/NewPrinterWindow.glade.h:68 -+#: ../glade/NewPrinterWindow.glade.h:67 - msgid "License:" - msgstr "许可证:" - --#: ../glade/NewPrinterWindow.glade.h:69 -+#: ../glade/NewPrinterWindow.glade.h:68 - msgid "Line art:" - msgstr "线条样式:" - --#: ../glade/NewPrinterWindow.glade.h:70 -+#: ../glade/NewPrinterWindow.glade.h:69 - msgid "Local Driver" - msgstr "本地驱动程序" - --#: ../glade/NewPrinterWindow.glade.h:71 -+#: ../glade/NewPrinterWindow.glade.h:70 - msgid "Make and model:" - msgstr "制造商和型号:" - --#: ../glade/NewPrinterWindow.glade.h:72 -+#: ../glade/NewPrinterWindow.glade.h:71 - msgid "Manufacturer" - msgstr "制造商" - --#: ../glade/NewPrinterWindow.glade.h:73 -+#: ../glade/NewPrinterWindow.glade.h:72 - msgid "Network" - msgstr "网络" - --#: ../glade/NewPrinterWindow.glade.h:75 -+#: ../glade/NewPrinterWindow.glade.h:74 - msgid "No, I do not accept this license" - msgstr "不,我不会接受这个许可证" - --#: ../glade/NewPrinterWindow.glade.h:76 -+#: ../glade/NewPrinterWindow.glade.h:75 - msgid "Parity" - msgstr "Parity" - --#: ../glade/NewPrinterWindow.glade.h:78 -+#: ../glade/NewPrinterWindow.glade.h:77 - msgid "Patented algorithms" - msgstr "专利的算法" - --#: ../glade/NewPrinterWindow.glade.h:79 -+#: ../glade/NewPrinterWindow.glade.h:78 - msgid "Photo:" - msgstr "照片:" - --#: ../glade/NewPrinterWindow.glade.h:80 -+#: ../glade/NewPrinterWindow.glade.h:79 - msgid "Port number:" - msgstr "端口号:" - --#: ../glade/NewPrinterWindow.glade.h:81 -+#: ../glade/NewPrinterWindow.glade.h:80 - msgid "" - "PostScript Printer Description (PPD) files can often be found on the driver " - "disk that comes with the printer. For PostScript printers they are often " -@@ -1896,76 +1893,76 @@ msgstr "" - "附带的驱动盘中找到。对于 PostScript 打印机,它们通常是 Windows® 驱" - "动程序的一部分。" - --#: ../glade/NewPrinterWindow.glade.h:82 -+#: ../glade/NewPrinterWindow.glade.h:81 - msgid "Printer model:" - msgstr "打印机型号:" - --#: ../glade/NewPrinterWindow.glade.h:83 -+#: ../glade/NewPrinterWindow.glade.h:82 - msgid "Probe" - msgstr "检测" - --#: ../glade/NewPrinterWindow.glade.h:84 -+#: ../glade/NewPrinterWindow.glade.h:83 - msgid "Prompt user if authentication is required" - msgstr "提示用户需要验证" - --#: ../glade/NewPrinterWindow.glade.h:85 -+#: ../glade/NewPrinterWindow.glade.h:84 - msgid "Provide PPD file" - msgstr "提供 PPD 文件" - --#: ../glade/NewPrinterWindow.glade.h:86 -+#: ../glade/NewPrinterWindow.glade.h:85 - msgid "Queue:" - msgstr "队列:" - --#: ../glade/NewPrinterWindow.glade.h:87 -+#: ../glade/NewPrinterWindow.glade.h:86 - msgid "SCSI" - msgstr "SCSI" - --#: ../glade/NewPrinterWindow.glade.h:88 -+#: ../glade/NewPrinterWindow.glade.h:87 - msgid "SMB" - msgstr "SMB" - --#: ../glade/NewPrinterWindow.glade.h:89 -+#: ../glade/NewPrinterWindow.glade.h:88 - msgid "Search for a printer driver to download" - msgstr "搜索要下载的打印机驱动程序" - --#: ../glade/NewPrinterWindow.glade.h:90 -+#: ../glade/NewPrinterWindow.glade.h:89 - #, fuzzy - msgid "Searching..." - msgstr "正在搜索" - --#: ../glade/NewPrinterWindow.glade.h:91 -+#: ../glade/NewPrinterWindow.glade.h:90 - msgid "Select A File" - msgstr "选择一个文件" - --#: ../glade/NewPrinterWindow.glade.h:92 -+#: ../glade/NewPrinterWindow.glade.h:91 - msgid "Select printer from database" - msgstr "从数据库中选择打印机" - --#: ../glade/NewPrinterWindow.glade.h:93 -+#: ../glade/NewPrinterWindow.glade.h:92 - msgid "Serial" - msgstr "串口" - --#: ../glade/NewPrinterWindow.glade.h:94 -+#: ../glade/NewPrinterWindow.glade.h:93 - msgid "Set authentication details now" - msgstr "现在设定验证详情" - --#: ../glade/NewPrinterWindow.glade.h:95 -+#: ../glade/NewPrinterWindow.glade.h:94 - msgid "Short name for this printer such as \"laserjet\"" - msgstr "这台打印机的简化名称,比如 \"laserjet\"" - --#: ../glade/NewPrinterWindow.glade.h:96 -+#: ../glade/NewPrinterWindow.glade.h:95 - msgid "Supplier:" - msgstr "供应商:" - --#: ../glade/NewPrinterWindow.glade.h:97 -+#: ../glade/NewPrinterWindow.glade.h:96 - msgid "Support:" - msgstr "支持:" - --#: ../glade/NewPrinterWindow.glade.h:98 -+#: ../glade/NewPrinterWindow.glade.h:97 - msgid "Text:" - msgstr "文本:" - --#: ../glade/NewPrinterWindow.glade.h:99 -+#: ../glade/NewPrinterWindow.glade.h:98 - msgid "" - "The foomatic printer database contains various manufacturer provided " - "PostScript Printer Description (PPD) files and also can generate PPD files " -@@ -1977,7 +1974,7 @@ msgstr "" - "(PPD) 文件,并可以为多个(非 PostScript) 打印机产生 PPD 文件。但是,在通常情况" - "下,打印机厂商提供的 PPD 文件会提供更好的功能。" - --#: ../glade/NewPrinterWindow.glade.h:100 -+#: ../glade/NewPrinterWindow.glade.h:99 - msgid "" - "These drivers do not come from your operating system supplier and will not " - "be covered by their commercial support. See the support and license terms " -@@ -1986,13 +1983,13 @@ msgstr "" - "这些驱动程序不是来自您的操作系统供应商,而且不会包含在他们的商业支持中。请参" - "考驱动程序供应商的支持和许可证术语。" - --#: ../glade/NewPrinterWindow.glade.h:101 -+#: ../glade/NewPrinterWindow.glade.h:100 - msgid "" - "This driver supports additional hardware that may be installed in the " - "printer." - msgstr "这个启动程序支持可能在打印机中安装的附加硬件。" - --#: ../glade/NewPrinterWindow.glade.h:102 -+#: ../glade/NewPrinterWindow.glade.h:101 - msgid "" - "This is done by assuming that options with the same name do have the same " - "meaning. Settings of options that are not present in the new PPD will be " -@@ -2001,25 +1998,25 @@ msgstr "" - "这是通过假设有相同名称的选项有相同含义的条件下进行的。没有在新 PPD 中包括的选" - "项设置将丢失,只有在新 PPD 中的选项会被设置为默认。" - --#: ../glade/NewPrinterWindow.glade.h:103 -+#: ../glade/NewPrinterWindow.glade.h:102 - msgid "" - "This way all current option settings will be lost. The default settings of " - "the new PPD will be used. " - msgstr "当前所有的选项设置都将流失。新 PPD 的默认设置将会被使用。" - --#: ../glade/NewPrinterWindow.glade.h:104 -+#: ../glade/NewPrinterWindow.glade.h:103 - msgid "Try to copy the option settings over from the old PPD. " - msgstr "尝试从旧的 PPD 中复制选项设置。" - --#: ../glade/NewPrinterWindow.glade.h:105 -+#: ../glade/NewPrinterWindow.glade.h:104 - msgid "URI:" - msgstr "URI:" - --#: ../glade/NewPrinterWindow.glade.h:107 -+#: ../glade/NewPrinterWindow.glade.h:106 - msgid "Use the new PPD (Postscript Printer Description) as is." - msgstr "使用新的 PPD (Postscript Printer Description)。" - --#: ../glade/NewPrinterWindow.glade.h:109 -+#: ../glade/NewPrinterWindow.glade.h:108 - msgid "" - "With this choice no driver download will be performed. In the next steps a " - "locally installed driver will be selected." -@@ -2027,24 +2024,24 @@ msgstr "" - "选择此选项将不会进行任何驱动程序下载行动。在下一步中会选择本地安装的驱动程" - "序。" - --#: ../glade/NewPrinterWindow.glade.h:110 -+#: ../glade/NewPrinterWindow.glade.h:109 - msgid "Yes, I accept this license" - msgstr "是,我接受这个许可证" - --#: ../glade/NewPrinterWindow.glade.h:111 -+#: ../glade/NewPrinterWindow.glade.h:110 - msgid "_Search" - msgstr "搜索(_S)" - --#: ../glade/NewPrinterWindow.glade.h:112 -+#: ../glade/NewPrinterWindow.glade.h:111 - msgid "_Verify..." - msgstr "验证(_V)..." - --#: ../glade/NewPrinterWindow.glade.h:113 -+#: ../glade/NewPrinterWindow.glade.h:112 - #: ../glade/PrinterPropertiesDialog.glade.h:128 - msgid "move left" - msgstr "左移" - --#: ../glade/NewPrinterWindow.glade.h:114 -+#: ../glade/NewPrinterWindow.glade.h:113 - #: ../glade/PrinterPropertiesDialog.glade.h:129 - msgid "move right" - msgstr "右移" -@@ -2949,7 +2946,7 @@ msgstr "标记的打印任务正确打 - msgid "Remember to load paper of type '%s' into the printer first." - msgstr "记住首先载入 '%s' 类型的纸张到打印机。" - --#: ../troubleshoot/PrintTestPage.py:399 -+#: ../troubleshoot/PrintTestPage.py:416 - msgid "Error submitting test page" - msgstr "错误提交测试页" - -@@ -3142,6 +3139,15 @@ msgstr "管理打印任务" - msgid "Select default printer" - msgstr "选择默认打印机" - -+#~ msgid "HP Printer (HPLIP)" -+#~ msgstr "HP打印机(HPLIP)" -+ -+#~ msgid "HPLIP cannot find the device." -+#~ msgstr "HPLIP无法找到该设备." -+ -+#~ msgid "HP Printer (HPLIP) via network" -+#~ msgstr "网络中的HP打印机(HPLIP)" -+ - #~ msgid "Not Found" - #~ msgstr "未找到" - -diff -up system-config-printer-1.1.5/po/zh_TW.po.git-1.1.x system-config-printer-1.1.5/po/zh_TW.po ---- system-config-printer-1.1.5/po/zh_TW.po.git-1.1.x 2009-03-03 22:21:47.000000000 +0000 -+++ system-config-printer-1.1.5/po/zh_TW.po 2009-03-10 17:43:43.000000000 +0000 -@@ -11,7 +11,7 @@ msgid "" - msgstr "" - "Project-Id-Version: zh_TW\n" - "Report-Msgid-Bugs-To: https://bugzilla.redhat.com/bugzilla\n" --"POT-Creation-Date: 2009-03-02 23:22+0000\n" -+"POT-Creation-Date: 2009-03-10 16:51+0000\n" - "PO-Revision-Date: 2007-02-04 20:56+1000\n" - "Last-Translator: Chester Cheng \n" - "Language-Team: \n" -@@ -57,11 +57,11 @@ msgstr "" - msgid "Enter IP address" - msgstr "印表機名稱" - --#: ../authconn.py:35 ../glade/NewPrinterWindow.glade.h:108 -+#: ../authconn.py:35 ../glade/NewPrinterWindow.glade.h:107 - msgid "Username:" - msgstr "使用者名稱:" - --#: ../authconn.py:36 ../glade/NewPrinterWindow.glade.h:77 -+#: ../authconn.py:36 ../glade/NewPrinterWindow.glade.h:76 - msgid "Password:" - msgstr "密碼:" - -@@ -70,7 +70,7 @@ msgstr "密碼:" - msgid "Domain:" - msgstr "位置:" - --#: ../authconn.py:46 -+#: ../authconn.py:46 ../authconn.py:409 - #, fuzzy - msgid "Authentication" - msgstr "身分核證" -@@ -79,44 +79,53 @@ msgstr "身分核證" - msgid "Remember password" - msgstr "" - --#: ../authconn.py:211 ../authconn.py:232 -+#: ../authconn.py:208 -+#, python-format -+msgid "Unauthorized request (%s)" -+msgstr "" -+ -+#: ../authconn.py:209 -+msgid "You are not authorized to carry out therequested action." -+msgstr "" -+ -+#: ../authconn.py:212 ../authconn.py:233 - #, fuzzy - msgid "Operation canceled" - msgstr "操作政策:" - --#: ../authconn.py:253 -+#: ../authconn.py:250 - #, fuzzy, python-format - msgid "CUPS server error (%s)" - msgstr "CUPS 伺服器錯誤" - --#: ../authconn.py:255 ../errordialogs.py:57 --#: ../troubleshoot/PrintTestPage.py:400 -+#: ../authconn.py:252 ../errordialogs.py:56 ../errordialogs.py:70 -+msgid "CUPS server error" -+msgstr "CUPS 伺服器錯誤" -+ -+#: ../authconn.py:261 ../errordialogs.py:57 -+#: ../troubleshoot/PrintTestPage.py:417 - #, python-format - msgid "There was an error during the CUPS operation: '%s'." - msgstr "CUPS 進行此操作時發生錯誤:'%s'。" - --#: ../authconn.py:258 -+#: ../authconn.py:264 - msgid "Retry" - msgstr "" - --#: ../authconn.py:379 ../authconn.py:381 ../errordialogs.py:65 ../pysmb.py:75 -+#: ../authconn.py:385 ../authconn.py:387 ../errordialogs.py:65 ../pysmb.py:75 - #: ../pysmb.py:77 - msgid "Not authorized" - msgstr "未授權" - --#: ../authconn.py:382 ../pysmb.py:78 -+#: ../authconn.py:388 ../pysmb.py:78 - msgid "The password may be incorrect." - msgstr "密碼可能不正確。" - --#: ../authconn.py:400 -+#: ../authconn.py:407 - #, fuzzy, python-format - msgid "Authentication (%s)" - msgstr "身分核證" - --#: ../errordialogs.py:56 ../errordialogs.py:70 --msgid "CUPS server error" --msgstr "CUPS 伺服器錯誤" -- - #: ../errordialogs.py:66 - msgid "" - "The password may be incorrect, or the server may be configured to deny " -@@ -143,7 +152,7 @@ msgstr "需要更新" - msgid "Server error" - msgstr "伺服器錯誤" - --#: ../errordialogs.py:82 ../system-config-printer.py:1219 -+#: ../errordialogs.py:82 ../system-config-printer.py:1223 - msgid "Not connected" - msgstr "未連接" - -@@ -165,7 +174,7 @@ msgstr "" - msgid "_New Group from Selection" - msgstr "" - --#: ../GroupsPane.py:98 ../system-config-printer.py:393 -+#: ../GroupsPane.py:98 ../system-config-printer.py:397 - #, fuzzy - msgid "_Rename" - msgstr "使用者名稱:" -@@ -235,7 +244,7 @@ msgid "Document" - msgstr "註解" - - #: ../jobviewer.py:212 ../my-default-printer.py:153 --#: ../system-config-printer.py:366 ../system-config-printer.py:1367 -+#: ../system-config-printer.py:370 ../system-config-printer.py:1371 - #: ../troubleshoot/PrintTestPage.py:84 - msgid "Printer" - msgstr "印表機" -@@ -274,8 +283,8 @@ msgstr "" - - #: ../jobviewer.py:386 ../jobviewer.py:451 ../jobviewer.py:452 - #: ../jobviewer.py:492 ../jobviewer.py:600 ../jobviewer.py:727 --#: ../jobviewer.py:1196 ../jobviewer.py:1222 ../system-config-printer.py:2546 --#: ../glade/NewPrinterWindow.glade.h:106 -+#: ../jobviewer.py:1196 ../jobviewer.py:1222 ../system-config-printer.py:2556 -+#: ../glade/NewPrinterWindow.glade.h:105 - #: ../troubleshoot/ChooseNetworkPrinter.py:101 - #: ../troubleshoot/ChooseNetworkPrinter.py:102 - #: ../troubleshoot/ChooseNetworkPrinter.py:105 -@@ -366,12 +375,12 @@ msgstr "" - msgid "Pending" - msgstr "列印" - --#: ../jobviewer.py:591 ../system-config-printer.py:186 -+#: ../jobviewer.py:591 ../system-config-printer.py:190 - #: ../troubleshoot/PrintTestPage.py:43 - msgid "Processing" - msgstr "正在處理" - --#: ../jobviewer.py:592 ../system-config-printer.py:188 -+#: ../jobviewer.py:592 ../system-config-printer.py:192 - #: ../troubleshoot/PrintTestPage.py:44 - msgid "Stopped" - msgstr "已停止" -@@ -490,8 +499,8 @@ msgstr "" - msgid "_Set Default" - msgstr "預設" - --#: ../my-default-printer.py:158 ../system-config-printer.py:423 --#: ../system-config-printer.py:3660 ../troubleshoot/ChooseNetworkPrinter.py:37 -+#: ../my-default-printer.py:158 ../system-config-printer.py:427 -+#: ../system-config-printer.py:3675 ../troubleshoot/ChooseNetworkPrinter.py:37 - #: ../troubleshoot/ChoosePrinter.py:38 - #, fuzzy - msgid "Location" -@@ -525,7 +534,7 @@ msgstr "設為預設印表機" - msgid "Authenticated" - msgstr "身分核證" - --#: ../ppdippstr.py:50 ../system-config-printer.py:6259 -+#: ../ppdippstr.py:50 ../system-config-printer.py:6207 - #, fuzzy - msgid "None" - msgstr "沒有" -@@ -744,133 +753,133 @@ msgstr "" - msgid "1200 dpi, photo, black + color cartridge, photo paper" - msgstr "" - --#: ../system-config-printer.py:127 -+#: ../system-config-printer.py:131 - msgid "To do this, select System->Administration->Firewall from the main menu." - msgstr "" - --#: ../system-config-printer.py:185 -+#: ../system-config-printer.py:189 - msgid "Idle" - msgstr "閒置" - --#: ../system-config-printer.py:187 -+#: ../system-config-printer.py:191 - msgid "Busy" - msgstr "忙碌" - --#: ../system-config-printer.py:372 ../system-config-printer.py:1373 -+#: ../system-config-printer.py:376 ../system-config-printer.py:1377 - #, fuzzy - msgid "Class" - msgstr "新組別" - --#: ../system-config-printer.py:399 -+#: ../system-config-printer.py:403 - #, fuzzy - msgid "Set As De_fault" - msgstr "預設" - --#: ../system-config-printer.py:403 -+#: ../system-config-printer.py:407 - #, fuzzy - msgid "_Create class" - msgstr "遠端組別" - --#: ../system-config-printer.py:405 -+#: ../system-config-printer.py:409 - #, fuzzy - msgid "View Print _Queue" - msgstr "新印表機" - --#: ../system-config-printer.py:407 -+#: ../system-config-printer.py:411 - msgid "_Add to Group" - msgstr "" - --#: ../system-config-printer.py:409 -+#: ../system-config-printer.py:413 - msgid "Save Results as _Group" - msgstr "" - --#: ../system-config-printer.py:411 -+#: ../system-config-printer.py:415 - msgid "Save Filter as _Search Group" - msgstr "" - --#: ../system-config-printer.py:415 -+#: ../system-config-printer.py:419 - #, fuzzy - msgid "E_nabled" - msgstr "已啟用" - --#: ../system-config-printer.py:417 -+#: ../system-config-printer.py:421 - #, fuzzy - msgid "_Shared" - msgstr "共享" - --#: ../system-config-printer.py:421 ../troubleshoot/ChooseNetworkPrinter.py:35 -+#: ../system-config-printer.py:425 ../troubleshoot/ChooseNetworkPrinter.py:35 - #: ../troubleshoot/ChoosePrinter.py:36 ../troubleshoot/DeviceListed.py:36 - msgid "Name" - msgstr "名稱" - --#: ../system-config-printer.py:422 -+#: ../system-config-printer.py:426 - #, fuzzy - msgid "Description" - msgstr "說明:" - --#: ../system-config-printer.py:424 -+#: ../system-config-printer.py:428 - msgid "Manufacturer / Model" - msgstr "" - - #. Printer state reasons list --#: ../system-config-printer.py:499 -+#: ../system-config-printer.py:503 - msgid "Message" - msgstr "" - --#: ../system-config-printer.py:534 -+#: ../system-config-printer.py:538 - #, fuzzy - msgid "Problems?" - msgstr "查探" - --#: ../system-config-printer.py:637 ../system-config-printer.py:639 -+#: ../system-config-printer.py:641 ../system-config-printer.py:643 - #, fuzzy - msgid "Members of this class" - msgstr "此組別的成員" - --#: ../system-config-printer.py:638 ../system-config-printer.py:640 -+#: ../system-config-printer.py:642 ../system-config-printer.py:644 - msgid "Others" - msgstr "其他" - --#: ../system-config-printer.py:641 -+#: ../system-config-printer.py:645 - msgid "Devices" - msgstr "裝置" - --#: ../system-config-printer.py:642 -+#: ../system-config-printer.py:646 - #, fuzzy - msgid "Connections" - msgstr "正在連接" - --#: ../system-config-printer.py:643 -+#: ../system-config-printer.py:647 - msgid "Makes" - msgstr "廠牌" - --#: ../system-config-printer.py:644 -+#: ../system-config-printer.py:648 - msgid "Models" - msgstr "型號" - --#: ../system-config-printer.py:645 -+#: ../system-config-printer.py:649 - msgid "Drivers" - msgstr "驅動程式" - --#: ../system-config-printer.py:646 ../glade/NewPrinterWindow.glade.h:55 -+#: ../system-config-printer.py:650 ../glade/NewPrinterWindow.glade.h:54 - msgid "Downloadable Drivers" - msgstr "" - --#: ../system-config-printer.py:647 -+#: ../system-config-printer.py:651 - msgid "Users" - msgstr "使用者" - --#: ../system-config-printer.py:682 -+#: ../system-config-printer.py:686 - msgid "Automatic rotation" - msgstr "" - --#: ../system-config-printer.py:989 -+#: ../system-config-printer.py:993 - #, fuzzy, python-format - msgid "Printer Properties - '%s' on %s" - msgstr "印表機選項" - - #. The Conflict button was pressed. --#: ../system-config-printer.py:996 -+#: ../system-config-printer.py:1000 - #, fuzzy - msgid "" - "There are conflicting options.\n" -@@ -881,81 +890,81 @@ msgstr "" - "變更只能在這些衝\n" - "突解決之後套用。" - --#: ../system-config-printer.py:1214 -+#: ../system-config-printer.py:1218 - #, python-format - msgid "Printer configuration - %s" - msgstr "印表機設定 - %s" - --#: ../system-config-printer.py:1217 -+#: ../system-config-printer.py:1221 - #, python-format - msgid "Connected to %s" - msgstr "已連接至 %s" - - #. Update our copy of the printer's settings. --#: ../system-config-printer.py:1257 ../system-config-printer.py:2042 -+#: ../system-config-printer.py:1261 ../system-config-printer.py:2046 - msgid "obtaining queue details" - msgstr "" - --#: ../system-config-printer.py:1295 -+#: ../system-config-printer.py:1299 - msgid "Remove from Group" - msgstr "" - --#: ../system-config-printer.py:1361 -+#: ../system-config-printer.py:1365 - #, fuzzy - msgid "Network printer (discovered)" - msgstr "新印表機" - --#: ../system-config-printer.py:1364 -+#: ../system-config-printer.py:1368 - msgid "Network class (discovered)" - msgstr "" - --#: ../system-config-printer.py:1370 ../system-config-printer.py:5524 --#: ../system-config-printer.py:5594 ../system-config-printer.py:5596 -+#: ../system-config-printer.py:1374 ../system-config-printer.py:5519 -+#: ../system-config-printer.py:5589 ../system-config-printer.py:5591 - msgid "Fax" - msgstr "" - --#: ../system-config-printer.py:1376 ../system-config-printer.py:1382 -+#: ../system-config-printer.py:1380 ../system-config-printer.py:1386 - #: ../troubleshoot/LocalOrRemote.py:30 - #, fuzzy - msgid "Network printer" - msgstr "新印表機" - --#: ../system-config-printer.py:1379 -+#: ../system-config-printer.py:1383 - #, fuzzy - msgid "Network print share" - msgstr "新印表機" - --#: ../system-config-printer.py:1508 ../glade/ConnectingDialog.glade.h:2 -+#: ../system-config-printer.py:1512 ../glade/ConnectingDialog.glade.h:2 - #, no-c-format, python-format - msgid "Opening connection to %s" - msgstr "" - --#: ../system-config-printer.py:1887 -+#: ../system-config-printer.py:1891 - msgid "Installable Options" - msgstr "可安裝選項" - --#: ../system-config-printer.py:1888 -+#: ../system-config-printer.py:1892 - #: ../glade/PrinterPropertiesDialog.glade.h:109 - msgid "Printer Options" - msgstr "印表機選項" - --#: ../system-config-printer.py:1924 -+#: ../system-config-printer.py:1928 - #, python-format - msgid "modifying class %s" - msgstr "" - --#: ../system-config-printer.py:1926 ../system-config-printer.py:3019 --#: ../system-config-printer.py:3044 ../system-config-printer.py:6547 --#: ../system-config-printer.py:6559 ../system-config-printer.py:6581 -+#: ../system-config-printer.py:1930 ../system-config-printer.py:3037 -+#: ../system-config-printer.py:3062 ../system-config-printer.py:6495 -+#: ../system-config-printer.py:6507 ../system-config-printer.py:6529 - #, fuzzy, python-format - msgid "modifying printer %s" - msgstr "設定印表機" - --#: ../system-config-printer.py:1941 -+#: ../system-config-printer.py:1945 - msgid "This will delete this class!" - msgstr "這樣會刪除此組別!" - --#: ../system-config-printer.py:1942 -+#: ../system-config-printer.py:1946 - msgid "Proceed anyway?" - msgstr "要繼續嗎?" - -@@ -963,69 +972,69 @@ msgstr "要繼續嗎?" - #. but we have never fetched the server settings to see whether - #. the server is publishing shared printers. Fetch the settings - #. now so that we can update the "not published" label if necessary. --#: ../system-config-printer.py:2030 ../system-config-printer.py:3203 -+#: ../system-config-printer.py:2034 ../system-config-printer.py:3221 - #, fuzzy - msgid "fetching server settings" - msgstr "基本伺服器設定" - --#: ../system-config-printer.py:2100 -+#: ../system-config-printer.py:2104 - #, fuzzy - msgid "Set Default Printer" - msgstr "設為預設印表機" - --#: ../system-config-printer.py:2102 -+#: ../system-config-printer.py:2106 - msgid "Do you want to set this as the system-wide default printer?" - msgstr "" - --#: ../system-config-printer.py:2104 -+#: ../system-config-printer.py:2108 - #, fuzzy - msgid "Set as the _system-wide default printer" - msgstr "這是預設印表機。" - --#: ../system-config-printer.py:2106 -+#: ../system-config-printer.py:2110 - msgid "_Clear my personal default setting" - msgstr "" - --#: ../system-config-printer.py:2107 -+#: ../system-config-printer.py:2111 - #, fuzzy - msgid "Set as my _personal default printer" - msgstr "設為預設印表機" - --#: ../system-config-printer.py:2112 -+#: ../system-config-printer.py:2116 - #, fuzzy - msgid "setting default printer" - msgstr "設為預設印表機" - --#: ../system-config-printer.py:2169 -+#: ../system-config-printer.py:2173 - #, fuzzy - msgid "printing test page" - msgstr "列印測試頁" - --#: ../system-config-printer.py:2182 ../system-config-printer.py:2217 --#: ../system-config-printer.py:5418 -+#: ../system-config-printer.py:2186 ../system-config-printer.py:2221 -+#: ../system-config-printer.py:5413 - msgid "Not possible" - msgstr "不可能" - --#: ../system-config-printer.py:2183 ../system-config-printer.py:2218 -+#: ../system-config-printer.py:2187 ../system-config-printer.py:2222 - msgid "" - "The remote server did not accept the print job, most likely because the " - "printer is not shared." - msgstr "遠端伺服器不接受列印工作,很大可能是未共享印表機。" - --#: ../system-config-printer.py:2195 ../system-config-printer.py:2210 -+#: ../system-config-printer.py:2199 ../system-config-printer.py:2214 - msgid "Submitted" - msgstr "已提交" - --#: ../system-config-printer.py:2196 -+#: ../system-config-printer.py:2200 - #, python-format - msgid "Test page submitted as job %d" - msgstr "測試頁已提交為 %d 工作" - --#: ../system-config-printer.py:2203 -+#: ../system-config-printer.py:2207 - msgid "sending maintenance command" - msgstr "" - --#: ../system-config-printer.py:2211 -+#: ../system-config-printer.py:2215 - #, fuzzy, python-format - msgid "Maintenance command submitted as job %d" - msgstr "測試頁已提交為 %d 工作" -@@ -1033,76 +1042,76 @@ msgstr "測試頁已提交為 %d 工作" - #. The underlying cupsGetPPD2() function returned NULL without - #. setting an IPP error, so it'll be something like a failed - #. connection. --#: ../system-config-printer.py:2285 ../system-config-printer.py:2381 -+#: ../system-config-printer.py:2289 ../system-config-printer.py:2385 - msgid "Error" - msgstr "" - --#: ../system-config-printer.py:2286 -+#: ../system-config-printer.py:2290 - #, fuzzy - msgid "There was a problem connecting to the CUPS server." - msgstr "CUPS 進行此操作時發生錯誤:'%s'。" - --#: ../system-config-printer.py:2382 -+#: ../system-config-printer.py:2386 - #, python-format - msgid "Option '%s' has value '%s' and cannot be edited." - msgstr "" - --#: ../system-config-printer.py:2466 -+#: ../system-config-printer.py:2476 - msgid "Marker levels are not reported for this printer." - msgstr "" - --#: ../system-config-printer.py:2763 -+#: ../system-config-printer.py:2773 - #, fuzzy - msgid "Cannot Rename" - msgstr "使用者名稱:" - --#: ../system-config-printer.py:2764 -+#: ../system-config-printer.py:2774 - msgid "There are queued jobs." - msgstr "" - --#: ../system-config-printer.py:2822 -+#: ../system-config-printer.py:2840 - #, fuzzy - msgid "renaming printer" - msgstr "設定印表機" - - #. for classes make sure all members - #. will get added --#: ../system-config-printer.py:2907 -+#: ../system-config-printer.py:2925 - #, fuzzy - msgid "copying printer" - msgstr "設定印表機" - --#: ../system-config-printer.py:2971 -+#: ../system-config-printer.py:2989 - #, fuzzy, python-format - msgid "Really delete class '%s'?" - msgstr "真的要刪除 %s 組別嗎?" - --#: ../system-config-printer.py:2973 -+#: ../system-config-printer.py:2991 - #, fuzzy, python-format - msgid "Really delete printer '%s'?" - msgstr "真的要刪除 %s 印表機嗎?" - --#: ../system-config-printer.py:2975 -+#: ../system-config-printer.py:2993 - #, fuzzy - msgid "Really delete selected destinations?" - msgstr "真的要刪除 %s 印表機嗎?" - --#: ../system-config-printer.py:2996 -+#: ../system-config-printer.py:3014 - #, fuzzy, python-format - msgid "deleting printer %s" - msgstr "設定印表機" - --#: ../system-config-printer.py:3070 -+#: ../system-config-printer.py:3088 - msgid "Publish Shared Printers" - msgstr "" - --#: ../system-config-printer.py:3071 -+#: ../system-config-printer.py:3089 - msgid "" - "Shared printers are not available to other people unless the 'Publish shared " - "printers' option is enabled in the server settings." - msgstr "" - --#: ../system-config-printer.py:3264 -+#: ../system-config-printer.py:3282 - #, fuzzy - msgid "modifying server settings" - msgstr "基本伺服器設定" -@@ -1113,105 +1122,105 @@ msgstr "基本伺服器設定" - #. be unblocked. Unfortunately, this is not yet possible - #. (bug #440469). However, we can display a dialog to suggest - #. that now might be a good time to review the firewall settings. --#: ../system-config-printer.py:3289 -+#: ../system-config-printer.py:3307 - msgid "Review Firewall" - msgstr "" - --#: ../system-config-printer.py:3290 -+#: ../system-config-printer.py:3308 - msgid "" - "You may need to adjust the firewall to allow network printing to this " - "computer." - msgstr "" - --#: ../system-config-printer.py:3623 -+#: ../system-config-printer.py:3638 - msgid "Browsing not available (pysmbc not installed)" - msgstr "" - - #. SMB list columns --#: ../system-config-printer.py:3629 -+#: ../system-config-printer.py:3644 - msgid "Share" - msgstr "共享資源" - --#: ../system-config-printer.py:3635 -+#: ../system-config-printer.py:3650 - msgid "Comment" - msgstr "註解" - - #. IPP list columns --#: ../system-config-printer.py:3654 -+#: ../system-config-printer.py:3669 - msgid "Queue" - msgstr "" - --#: ../system-config-printer.py:3668 -+#: ../system-config-printer.py:3683 - #, fuzzy - msgid "" - "PostScript Printer Description files (*.ppd, *.PPD, *.ppd.gz, *.PPD.gz, *." - "PPD.GZ)" - msgstr "PostScript 印表機的描述(*.ppd[.gz])" - --#: ../system-config-printer.py:3677 -+#: ../system-config-printer.py:3692 - msgid "All files (*)" - msgstr "" - --#: ../system-config-printer.py:3713 ../system-config-printer.py:5970 --#: ../system-config-printer.py:6008 ../applet.py:124 -+#: ../system-config-printer.py:3728 ../system-config-printer.py:5918 -+#: ../system-config-printer.py:5956 ../applet.py:124 - #, fuzzy - msgid "Search" - msgstr "印表機的新名稱" - --#: ../system-config-printer.py:3736 ../system-config-printer.py:3760 --#: ../glade/NewPrinterWindow.glade.h:74 -+#: ../system-config-printer.py:3751 ../system-config-printer.py:3775 -+#: ../glade/NewPrinterWindow.glade.h:73 - msgid "New Printer" - msgstr "新印表機" - --#: ../system-config-printer.py:3747 -+#: ../system-config-printer.py:3762 - msgid "New Class" - msgstr "新組別" - --#: ../system-config-printer.py:3752 -+#: ../system-config-printer.py:3767 - msgid "Change Device URI" - msgstr "更改裝置 URI" - --#: ../system-config-printer.py:3758 -+#: ../system-config-printer.py:3773 - msgid "Change Driver" - msgstr "更改驅動程式" - --#: ../system-config-printer.py:3927 ../system-config-printer.py:3993 --#: ../system-config-printer.py:4289 ../system-config-printer.py:4487 --#: ../system-config-printer.py:5772 ../system-config-printer.py:5995 -+#: ../system-config-printer.py:3942 ../system-config-printer.py:4008 -+#: ../system-config-printer.py:4304 ../system-config-printer.py:4502 -+#: ../system-config-printer.py:5762 ../system-config-printer.py:5943 - msgid "Searching" - msgstr "" - --#: ../system-config-printer.py:3928 -+#: ../system-config-printer.py:3943 - #, fuzzy - msgid "Searching for downloadable drivers" - msgstr "印表機的新名稱" - --#: ../system-config-printer.py:3994 ../system-config-printer.py:4290 -+#: ../system-config-printer.py:4009 ../system-config-printer.py:4305 - msgid "Searching for drivers" - msgstr "" - --#: ../system-config-printer.py:4488 ../system-config-printer.py:5773 -+#: ../system-config-printer.py:4503 ../system-config-printer.py:5763 - #, fuzzy - msgid "Searching for printers" - msgstr "印表機的新名稱" - --#: ../system-config-printer.py:4497 -+#: ../system-config-printer.py:4512 - #, fuzzy - msgid "fetching device list" - msgstr "基本伺服器設定" - - #. Tell the user why he needs the plugin --#: ../system-config-printer.py:4579 -+#: ../system-config-printer.py:4594 - msgid "For this printer a proprietary driver plugin from HP is available.\n" - msgstr "" - --#: ../system-config-printer.py:4582 -+#: ../system-config-printer.py:4597 - msgid "" - "The installation of the plugin is required for your printer to work.\n" - "\n" - msgstr "" - --#: ../system-config-printer.py:4585 -+#: ../system-config-printer.py:4600 - msgid "" - "Installing the plugin is optional, it completes or enhances the " - "functionality\n" -@@ -1219,292 +1228,284 @@ msgid "" - "\n" - msgstr "" - --#: ../system-config-printer.py:4589 -+#: ../system-config-printer.py:4604 - msgid "The plugin provides the following features:\n" - msgstr "" - --#: ../system-config-printer.py:4592 -+#: ../system-config-printer.py:4607 - msgid " - Printing support\n" - msgstr "" - --#: ../system-config-printer.py:4595 -+#: ../system-config-printer.py:4610 - msgid " - Faster printing\n" - msgstr "" - --#: ../system-config-printer.py:4598 -+#: ../system-config-printer.py:4613 - msgid " - Better printout quality\n" - msgstr "" - --#: ../system-config-printer.py:4601 -+#: ../system-config-printer.py:4616 - msgid " - Extra printing features\n" - msgstr "" - --#: ../system-config-printer.py:4604 -+#: ../system-config-printer.py:4619 - msgid " - Scanning support\n" - msgstr "" - --#: ../system-config-printer.py:4607 -+#: ../system-config-printer.py:4622 - msgid " - Faster scanning\n" - msgstr "" - --#: ../system-config-printer.py:4610 -+#: ../system-config-printer.py:4625 - msgid " - Better scanning image quality\n" - msgstr "" - --#: ../system-config-printer.py:4613 -+#: ../system-config-printer.py:4628 - msgid " - Faxing support\n" - msgstr "" - --#: ../system-config-printer.py:4616 -+#: ../system-config-printer.py:4631 - msgid " - Extra fax features\n" - msgstr "" - --#: ../system-config-printer.py:4619 -+#: ../system-config-printer.py:4634 - msgid " - Better Input/Output support\n" - msgstr "" - --#: ../system-config-printer.py:4622 -+#: ../system-config-printer.py:4637 - msgid " - Extra user interface features\n" - msgstr "" - --#: ../system-config-printer.py:4625 -+#: ../system-config-printer.py:4640 - msgid " - Other extra features\n" - msgstr "" - --#: ../system-config-printer.py:4630 -+#: ../system-config-printer.py:4645 - #, fuzzy - msgid "Install plugin" - msgstr "可安裝選項" - --#: ../system-config-printer.py:4631 -+#: ../system-config-printer.py:4646 - #, fuzzy - msgid "Do not set up printer" - msgstr "複製印表機" - --#: ../system-config-printer.py:4632 -+#: ../system-config-printer.py:4647 - msgid "Set up without plugin" - msgstr "" - --#: ../system-config-printer.py:4634 ../troubleshoot/PrintTestPage.py:118 -+#: ../system-config-printer.py:4649 ../troubleshoot/PrintTestPage.py:118 - msgid "Yes" - msgstr "" - --#: ../system-config-printer.py:4635 ../troubleshoot/PrintTestPage.py:119 -+#: ../system-config-printer.py:4650 ../troubleshoot/PrintTestPage.py:119 - msgid "No" - msgstr "" - --#: ../system-config-printer.py:4809 ../system-config-printer.py:4813 -+#: ../system-config-printer.py:4824 ../system-config-printer.py:4828 - msgid " (Current)" - msgstr "(當前)" - --#: ../system-config-printer.py:4845 --msgid "HP Printer (HPLIP)" --msgstr "" -- --#: ../system-config-printer.py:4886 -+#: ../system-config-printer.py:4881 - msgid "Other" - msgstr "其他" - - #. device-info - #. PhysicalDevice obj - #. Separator? --#: ../system-config-printer.py:4902 -+#: ../system-config-printer.py:4897 - #, fuzzy - msgid "Network Printer" - msgstr "新印表機" - --#: ../system-config-printer.py:4906 -+#: ../system-config-printer.py:4901 - #, fuzzy - msgid "Find Network Printer" - msgstr "新印表機" - --#: ../system-config-printer.py:4979 ../system-config-printer.py:5376 -+#: ../system-config-printer.py:4974 ../system-config-printer.py:5371 - msgid "Scanning..." - msgstr "" - --#: ../system-config-printer.py:5034 ../system-config-printer.py:5798 -+#: ../system-config-printer.py:5029 - #, fuzzy - msgid "No Print Shares" - msgstr "新印表機" - --#: ../system-config-printer.py:5035 -+#: ../system-config-printer.py:5030 - msgid "" - "There were no print shares found. Please check that the Samba service is " - "marked as trusted in your firewall configuration." - msgstr "" - --#: ../system-config-printer.py:5296 ../system-config-printer.py:5357 -+#: ../system-config-printer.py:5291 ../system-config-printer.py:5352 - msgid "Print Share Verified" - msgstr "" - --#: ../system-config-printer.py:5297 ../system-config-printer.py:5358 -+#: ../system-config-printer.py:5292 ../system-config-printer.py:5353 - msgid "This print share is accessible." - msgstr "此列印共享資源可存取。" - --#: ../system-config-printer.py:5302 ../system-config-printer.py:5362 -+#: ../system-config-printer.py:5297 ../system-config-printer.py:5357 - msgid "This print share is not accessible." - msgstr "此列印共享資源不可存取。" - --#: ../system-config-printer.py:5305 -+#: ../system-config-printer.py:5300 - #, fuzzy - msgid "Print Share Inaccessible" - msgstr "此列印共享資源可存取。" - --#: ../system-config-printer.py:5361 -+#: ../system-config-printer.py:5356 - msgid "Inaccessible" - msgstr "不可存取" - --#: ../system-config-printer.py:5419 -+#: ../system-config-printer.py:5414 - #, fuzzy, python-format - msgid "It is not possible to obtain a list of queues from '%s'." - msgstr "CUPS 進行此操作時發生錯誤:'%s'。" - --#: ../system-config-printer.py:5421 -+#: ../system-config-printer.py:5416 - msgid "" - "Obtaining a list of queues is a CUPS extension to IPP. Network printers do " - "not support it." - msgstr "" - --#: ../system-config-printer.py:5424 -+#: ../system-config-printer.py:5419 - msgid "No queues" - msgstr "" - --#: ../system-config-printer.py:5425 -+#: ../system-config-printer.py:5420 - msgid "There are no queues available." - msgstr "" - --#: ../system-config-printer.py:5516 -+#: ../system-config-printer.py:5511 - msgid "Parallel Port" - msgstr "" - --#: ../system-config-printer.py:5518 -+#: ../system-config-printer.py:5513 - #, fuzzy - msgid "Serial Port" - msgstr "串列" - --#: ../system-config-printer.py:5520 -+#: ../system-config-printer.py:5515 - #, fuzzy - msgid "USB" - msgstr "SMB" - --#: ../system-config-printer.py:5522 ../system-config-printer.py:5525 -+#: ../system-config-printer.py:5517 ../system-config-printer.py:5520 - msgid "HP Linux Imaging and Printing (HPLIP)" - msgstr "" - --#: ../system-config-printer.py:5527 -+#: ../system-config-printer.py:5522 - #, fuzzy - msgid "Hardware Abstraction Layer (HAL)" - msgstr "由硬體箤取層 (HAL) 偵測到的本機印表機。" - --#: ../system-config-printer.py:5529 -+#: ../system-config-printer.py:5524 - msgid "AppSocket/HP JetDirect" - msgstr "" - --#: ../system-config-printer.py:5538 -+#: ../system-config-printer.py:5533 - #, python-format - msgid "LPD/LPR queue '%s'" - msgstr "" - --#: ../system-config-printer.py:5540 -+#: ../system-config-printer.py:5535 - #, fuzzy - msgid "LPD/LPR queue" - msgstr "LPD" - --#: ../system-config-printer.py:5543 -+#: ../system-config-printer.py:5538 - msgid "Windows Printer via SAMBA" - msgstr "" - --#: ../system-config-printer.py:5545 ../glade/NewPrinterWindow.glade.h:66 -+#: ../system-config-printer.py:5540 ../glade/NewPrinterWindow.glade.h:65 - msgid "IPP" - msgstr "IPP" - --#: ../system-config-printer.py:5547 -+#: ../system-config-printer.py:5542 - msgid "HTTP" - msgstr "" - --#: ../system-config-printer.py:5632 -+#: ../system-config-printer.py:5624 - msgid "A printer connected to the parallel port." - msgstr "連接至平行埠的印表機。" - --#: ../system-config-printer.py:5634 -+#: ../system-config-printer.py:5626 - msgid "A printer connected to a USB port." - msgstr "連接至串列埠的印表機。" - --#: ../system-config-printer.py:5636 -+#: ../system-config-printer.py:5628 - msgid "" - "HPLIP software driving a printer, or the printer function of a multi-" - "function device." - msgstr "HPLIP 軟體驅動印表機,或多功能裝置的印表機部份。" - --#: ../system-config-printer.py:5639 -+#: ../system-config-printer.py:5631 - msgid "" - "HPLIP software driving a fax machine, or the fax function of a multi-" - "function device." - msgstr "HPLIP 軟體驅動傳真機,或多功能裝置的傳真機部份。" - --#: ../system-config-printer.py:5642 -+#: ../system-config-printer.py:5634 - msgid "Local printer detected by the Hardware Abstraction Layer (HAL)." - msgstr "由硬體箤取層 (HAL) 偵測到的本機印表機。" - --#: ../system-config-printer.py:5799 --msgid "HPLIP cannot find the device." --msgstr "" -- --#: ../system-config-printer.py:5881 -+#: ../system-config-printer.py:5831 - msgid "No printer was found at that address." - msgstr "" - --#: ../system-config-printer.py:6020 -+#: ../system-config-printer.py:5968 - #, fuzzy - msgid "-- Select from search results --" - msgstr "從資料庫選取印表機" - --#: ../system-config-printer.py:6022 -+#: ../system-config-printer.py:5970 - msgid "-- No matches found --" - msgstr "" - --#: ../system-config-printer.py:6203 -+#: ../system-config-printer.py:6151 - msgid " (recommended)" - msgstr "(建議)" - --#: ../system-config-printer.py:6217 -+#: ../system-config-printer.py:6165 - msgid "This PPD is generated by foomatic." - msgstr "此 PPD 由 foomatic 產生。" - --#: ../system-config-printer.py:6241 -+#: ../system-config-printer.py:6189 - #, fuzzy - msgid "OpenPrinting" - msgstr "列印" - --#: ../system-config-printer.py:6252 -+#: ../system-config-printer.py:6200 - msgid "Distributable" - msgstr "" - --#: ../system-config-printer.py:6293 -+#: ../system-config-printer.py:6241 - msgid ", " - msgstr "" - --#: ../system-config-printer.py:6298 -+#: ../system-config-printer.py:6246 - #, python-format - msgid "" - "\n" - "(%s)" - msgstr "" - --#: ../system-config-printer.py:6303 -+#: ../system-config-printer.py:6251 - msgid "No support contacts known" - msgstr "" - --#: ../system-config-printer.py:6307 ../system-config-printer.py:6320 -+#: ../system-config-printer.py:6255 ../system-config-printer.py:6268 - msgid "Not specified." - msgstr "" - - #. Foomatic database problem of some sort. --#: ../system-config-printer.py:6360 -+#: ../system-config-printer.py:6308 - msgid "Database error" - msgstr "資料庫錯誤" - --#: ../system-config-printer.py:6361 -+#: ../system-config-printer.py:6309 - #, python-format - msgid "The '%s' driver cannot be used with printer '%s %s'." - msgstr "「%s」驅動程式無法用於印表機「%s %s」。" -@@ -1512,64 +1513,64 @@ msgstr "「%s」驅動程式無法用於 - #. This printer references some XML that is not - #. installed by default. Point the user at the - #. package they need to install. --#: ../system-config-printer.py:6371 -+#: ../system-config-printer.py:6319 - #, python-format - msgid "You will need to install the '%s' package in order to use this driver." - msgstr "要使用這驅動程式,您需要安裝「%s」套件。" - - #. This error came from trying to open the PPD file. --#: ../system-config-printer.py:6378 -+#: ../system-config-printer.py:6326 - msgid "PPD error" - msgstr "PPD 錯誤" - --#: ../system-config-printer.py:6380 -+#: ../system-config-printer.py:6328 - msgid "Failed to read PPD file. Possible reason follows:" - msgstr "讀取 PPD 檔案失敗。可能原因有:" - - #. Failed to get PPD downloaded from OpenPrinting XXX --#: ../system-config-printer.py:6397 -+#: ../system-config-printer.py:6345 - msgid "Downloadable drivers" - msgstr "" - --#: ../system-config-printer.py:6398 -+#: ../system-config-printer.py:6346 - msgid "Failed to download PPD." - msgstr "" - --#: ../system-config-printer.py:6405 -+#: ../system-config-printer.py:6353 - #, fuzzy - msgid "fetching PPD" - msgstr "更改 PPD" - --#: ../system-config-printer.py:6434 ../system-config-printer.py:6472 -+#: ../system-config-printer.py:6382 ../system-config-printer.py:6420 - #, fuzzy - msgid "No Installable Options" - msgstr "可安裝選項" - --#: ../system-config-printer.py:6520 -+#: ../system-config-printer.py:6468 - #, fuzzy, python-format - msgid "adding printer %s" - msgstr "設定印表機" - --#: ../system-config-printer.py:6669 -+#: ../system-config-printer.py:6617 - msgid "Would you like to print a test page?" - msgstr "" - --#: ../system-config-printer.py:6722 -+#: ../system-config-printer.py:6670 - #, fuzzy - msgid "Install driver" - msgstr "找不到驅動程式" - --#: ../system-config-printer.py:6723 ../troubleshoot/CheckPPDSanity.py:131 -+#: ../system-config-printer.py:6671 ../troubleshoot/CheckPPDSanity.py:131 - #, fuzzy, python-format - msgid "Printer '%s' requires the %s package but it is not currently installed." - msgstr "" - "印表機「%s」需要 %s 套件,但這套件並未安裝。在使用本印表機前,請安裝該套件。" - --#: ../system-config-printer.py:6739 -+#: ../system-config-printer.py:6687 - msgid "Missing driver" - msgstr "找不到驅動程式" - --#: ../system-config-printer.py:6740 -+#: ../system-config-printer.py:6688 - #, python-format - msgid "" - "Printer '%s' requires the '%s' program but it is not currently installed. " -@@ -1697,133 +1698,128 @@ msgstr "輸入裝置 URI" - - #: ../glade/NewPrinterWindow.glade.h:5 - #, fuzzy --msgid "HP Printer (HPLIP) via network" --msgstr "印表機名稱" -- --#: ../glade/NewPrinterWindow.glade.h:6 --#, fuzzy - msgid "IPP Printer" - msgstr "印表機名稱" - --#: ../glade/NewPrinterWindow.glade.h:7 -+#: ../glade/NewPrinterWindow.glade.h:6 - #, fuzzy - msgid "License Terms" - msgstr "印表機名稱" - --#: ../glade/NewPrinterWindow.glade.h:8 -+#: ../glade/NewPrinterWindow.glade.h:7 - msgid "Location of the LPD network printer" - msgstr "LPD 網路印表機位置" - --#: ../glade/NewPrinterWindow.glade.h:9 -+#: ../glade/NewPrinterWindow.glade.h:8 - msgid "Location of the network printer" - msgstr "網路印表機位置" - --#: ../glade/NewPrinterWindow.glade.h:10 -+#: ../glade/NewPrinterWindow.glade.h:9 - msgid "Location (optional)" - msgstr "位置(非必要)" - --#: ../glade/NewPrinterWindow.glade.h:11 -+#: ../glade/NewPrinterWindow.glade.h:10 - #, fuzzy - msgid "Network Printer" - msgstr "新印表機" - --#: ../glade/NewPrinterWindow.glade.h:12 -+#: ../glade/NewPrinterWindow.glade.h:11 - #, fuzzy - msgid "Note" - msgstr "狀態" - --#: ../glade/NewPrinterWindow.glade.h:13 -+#: ../glade/NewPrinterWindow.glade.h:12 - #, fuzzy - msgid "Output Quality" - msgstr "狀態" - --#: ../glade/NewPrinterWindow.glade.h:14 -+#: ../glade/NewPrinterWindow.glade.h:13 - msgid "Printer Name" - msgstr "印表機名稱" - --#: ../glade/NewPrinterWindow.glade.h:15 -+#: ../glade/NewPrinterWindow.glade.h:14 - #, fuzzy - msgid "SMB Printer" - msgstr "印表機名稱" - --#: ../glade/NewPrinterWindow.glade.h:16 -+#: ../glade/NewPrinterWindow.glade.h:15 - #, fuzzy - msgid "Select Driver" - msgstr "預設印表機" - --#: ../glade/NewPrinterWindow.glade.h:17 -+#: ../glade/NewPrinterWindow.glade.h:16 - msgid "Settings of the serial port" - msgstr "串列埠設定" - --#: ../glade/NewPrinterWindow.glade.h:18 -+#: ../glade/NewPrinterWindow.glade.h:17 - msgid "smb://[workgroup/]server[:port]/printer" - msgstr "smb://[workgroup/]server[:port]/printer" - --#: ../glade/NewPrinterWindow.glade.h:19 -+#: ../glade/NewPrinterWindow.glade.h:18 - #, fuzzy - msgid "Choose Class Members" - msgstr "" - "需要密碼\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:20 -+#: ../glade/NewPrinterWindow.glade.h:19 - #, fuzzy - msgid "Choose Driver" - msgstr "" - "需要密碼\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:21 -+#: ../glade/NewPrinterWindow.glade.h:20 - #, fuzzy - msgid "Describe Printer" - msgstr "" - "需要密碼\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:22 -+#: ../glade/NewPrinterWindow.glade.h:21 - #, fuzzy - msgid "Existing Settings" - msgstr "" - "需要密碼\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:23 -+#: ../glade/NewPrinterWindow.glade.h:22 - #, fuzzy - msgid "Installable Options" - msgstr "" - "需要密碼\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:24 -+#: ../glade/NewPrinterWindow.glade.h:23 - #, fuzzy - msgid "Select Device" - msgstr "" - "需要密碼\n" - "\n" - --#: ../glade/NewPrinterWindow.glade.h:25 -+#: ../glade/NewPrinterWindow.glade.h:24 - msgid "Baud Rate" - msgstr "Baud 速率" - --#: ../glade/NewPrinterWindow.glade.h:26 -+#: ../glade/NewPrinterWindow.glade.h:25 - msgid "Browse..." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:27 -+#: ../glade/NewPrinterWindow.glade.h:26 - #, fuzzy - msgid "Comments..." - msgstr "註解" - --#: ../glade/NewPrinterWindow.glade.h:28 -+#: ../glade/NewPrinterWindow.glade.h:27 - #, fuzzy - msgid "Connection" - msgstr "正在連接" - --#: ../glade/NewPrinterWindow.glade.h:29 -+#: ../glade/NewPrinterWindow.glade.h:28 - msgid "Data Bits" - msgstr "資料位元" - --#: ../glade/NewPrinterWindow.glade.h:30 -+#: ../glade/NewPrinterWindow.glade.h:29 - msgid "" - "Default\n" - "1200\n" -@@ -1845,7 +1841,7 @@ msgstr "" - "57600\n" - "115200" - --#: ../glade/NewPrinterWindow.glade.h:39 -+#: ../glade/NewPrinterWindow.glade.h:38 - msgid "" - "Default\n" - "8\n" -@@ -1855,7 +1851,7 @@ msgstr "" - "8\n" - "7" - --#: ../glade/NewPrinterWindow.glade.h:42 -+#: ../glade/NewPrinterWindow.glade.h:41 - msgid "" - "Default\n" - "None\n" -@@ -1867,7 +1863,7 @@ msgstr "" - "Odd\n" - "Even" - --#: ../glade/NewPrinterWindow.glade.h:46 -+#: ../glade/NewPrinterWindow.glade.h:45 - msgid "" - "Default\n" - "None\n" -@@ -1881,120 +1877,120 @@ msgstr "" - "RTS/CTS (硬體)\n" - "DTR/DSR (硬體)" - --#: ../glade/NewPrinterWindow.glade.h:51 -+#: ../glade/NewPrinterWindow.glade.h:50 - #: ../glade/PrinterPropertiesDialog.glade.h:35 - msgid "Description:" - msgstr "說明:" - --#: ../glade/NewPrinterWindow.glade.h:52 ../troubleshoot/DeviceListed.py:40 -+#: ../glade/NewPrinterWindow.glade.h:51 ../troubleshoot/DeviceListed.py:40 - msgid "Device URI" - msgstr "裝置 URI" - --#: ../glade/NewPrinterWindow.glade.h:53 -+#: ../glade/NewPrinterWindow.glade.h:52 - msgid "Device description." - msgstr "裝置說明:" - --#: ../glade/NewPrinterWindow.glade.h:54 -+#: ../glade/NewPrinterWindow.glade.h:53 - msgid "DirectJet" - msgstr "DirectJet" - --#: ../glade/NewPrinterWindow.glade.h:56 -+#: ../glade/NewPrinterWindow.glade.h:55 - #, fuzzy - msgid "Driver details" - msgstr "驅動程式" - --#: ../glade/NewPrinterWindow.glade.h:57 -+#: ../glade/NewPrinterWindow.glade.h:56 - msgid "Empty" - msgstr "空" - --#: ../glade/NewPrinterWindow.glade.h:58 -+#: ../glade/NewPrinterWindow.glade.h:57 - msgid "Find _Queue..." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:59 -+#: ../glade/NewPrinterWindow.glade.h:58 - msgid "Flow Control" - msgstr "流量控制" - --#: ../glade/NewPrinterWindow.glade.h:60 -+#: ../glade/NewPrinterWindow.glade.h:59 - msgid "" - "For the printer you have selected there are drivers available for download." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:61 -+#: ../glade/NewPrinterWindow.glade.h:60 - msgid "Free software" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:62 -+#: ../glade/NewPrinterWindow.glade.h:61 - msgid "Graphics:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:63 -+#: ../glade/NewPrinterWindow.glade.h:62 - #, fuzzy - msgid "Host:" - msgstr "主機名稱" - --#: ../glade/NewPrinterWindow.glade.h:64 -+#: ../glade/NewPrinterWindow.glade.h:63 - msgid "Human-readable description such as \"HP LaserJet with Duplexer\"" - msgstr "容易理解的說明,例如「帶有雙面列印的 HP 鐳射印表機」" - --#: ../glade/NewPrinterWindow.glade.h:65 -+#: ../glade/NewPrinterWindow.glade.h:64 - msgid "Human-readable location such as \"Lab 1\"" - msgstr "容易理解的位置說明,例如「一號實驗室」" - --#: ../glade/NewPrinterWindow.glade.h:67 -+#: ../glade/NewPrinterWindow.glade.h:66 - msgid "LPD" - msgstr "LPD" - --#: ../glade/NewPrinterWindow.glade.h:68 -+#: ../glade/NewPrinterWindow.glade.h:67 - msgid "License:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:69 -+#: ../glade/NewPrinterWindow.glade.h:68 - #, fuzzy - msgid "Line art:" - msgstr "印表機狀態:" - --#: ../glade/NewPrinterWindow.glade.h:70 -+#: ../glade/NewPrinterWindow.glade.h:69 - #, fuzzy - msgid "Local Driver" - msgstr "本機印表機" - --#: ../glade/NewPrinterWindow.glade.h:71 -+#: ../glade/NewPrinterWindow.glade.h:70 - #, fuzzy - msgid "Make and model:" - msgstr "廠牌與型號:" - --#: ../glade/NewPrinterWindow.glade.h:72 -+#: ../glade/NewPrinterWindow.glade.h:71 - msgid "Manufacturer" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:73 -+#: ../glade/NewPrinterWindow.glade.h:72 - #, fuzzy - msgid "Network" - msgstr "新印表機" - --#: ../glade/NewPrinterWindow.glade.h:75 -+#: ../glade/NewPrinterWindow.glade.h:74 - msgid "No, I do not accept this license" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:76 -+#: ../glade/NewPrinterWindow.glade.h:75 - msgid "Parity" - msgstr "同位檢查" - --#: ../glade/NewPrinterWindow.glade.h:78 -+#: ../glade/NewPrinterWindow.glade.h:77 - msgid "Patented algorithms" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:79 -+#: ../glade/NewPrinterWindow.glade.h:78 - msgid "Photo:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:80 -+#: ../glade/NewPrinterWindow.glade.h:79 - #, fuzzy - msgid "Port number:" - msgstr "埠號" - --#: ../glade/NewPrinterWindow.glade.h:81 -+#: ../glade/NewPrinterWindow.glade.h:80 - #, fuzzy - msgid "" - "PostScript Printer Description (PPD) files can often be found on the driver " -@@ -2004,82 +2000,82 @@ msgstr "" - "PostScript 印表機描述(PPD)檔案通常可以在印表機所附的驅動程式磁片中找到。對 " - "PostScript 的印表機來說,這通常是 Windows® 驅動程式的一部分。" - --#: ../glade/NewPrinterWindow.glade.h:82 -+#: ../glade/NewPrinterWindow.glade.h:81 - #, fuzzy - msgid "Printer model:" - msgstr "印表機名稱" - --#: ../glade/NewPrinterWindow.glade.h:83 -+#: ../glade/NewPrinterWindow.glade.h:82 - msgid "Probe" - msgstr "查探" - --#: ../glade/NewPrinterWindow.glade.h:84 -+#: ../glade/NewPrinterWindow.glade.h:83 - #, fuzzy - msgid "Prompt user if authentication is required" - msgstr "身分核證" - --#: ../glade/NewPrinterWindow.glade.h:85 -+#: ../glade/NewPrinterWindow.glade.h:84 - #, fuzzy - msgid "Provide PPD file" - msgstr "提供 PPD 檔案" - --#: ../glade/NewPrinterWindow.glade.h:86 -+#: ../glade/NewPrinterWindow.glade.h:85 - msgid "Queue:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:87 -+#: ../glade/NewPrinterWindow.glade.h:86 - msgid "SCSI" - msgstr "SCSI" - --#: ../glade/NewPrinterWindow.glade.h:88 -+#: ../glade/NewPrinterWindow.glade.h:87 - msgid "SMB" - msgstr "SMB" - --#: ../glade/NewPrinterWindow.glade.h:89 -+#: ../glade/NewPrinterWindow.glade.h:88 - msgid "Search for a printer driver to download" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:90 -+#: ../glade/NewPrinterWindow.glade.h:89 - #, fuzzy - msgid "Searching..." - msgstr "印表機的新名稱" - --#: ../glade/NewPrinterWindow.glade.h:91 -+#: ../glade/NewPrinterWindow.glade.h:90 - msgid "Select A File" - msgstr "選取檔案" - --#: ../glade/NewPrinterWindow.glade.h:92 -+#: ../glade/NewPrinterWindow.glade.h:91 - #, fuzzy - msgid "Select printer from database" - msgstr "從資料庫選取印表機" - --#: ../glade/NewPrinterWindow.glade.h:93 -+#: ../glade/NewPrinterWindow.glade.h:92 - msgid "Serial" - msgstr "串列" - --#: ../glade/NewPrinterWindow.glade.h:94 -+#: ../glade/NewPrinterWindow.glade.h:93 - #, fuzzy - msgid "Set authentication details now" - msgstr "身分核證" - --#: ../glade/NewPrinterWindow.glade.h:95 -+#: ../glade/NewPrinterWindow.glade.h:94 - msgid "Short name for this printer such as \"laserjet\"" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:96 -+#: ../glade/NewPrinterWindow.glade.h:95 - msgid "Supplier:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:97 -+#: ../glade/NewPrinterWindow.glade.h:96 - msgid "Support:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:98 -+#: ../glade/NewPrinterWindow.glade.h:97 - #, fuzzy - msgid "Text:" - msgstr "列印測試頁" - --#: ../glade/NewPrinterWindow.glade.h:99 -+#: ../glade/NewPrinterWindow.glade.h:98 - msgid "" - "The foomatic printer database contains various manufacturer provided " - "PostScript Printer Description (PPD) files and also can generate PPD files " -@@ -2091,20 +2087,20 @@ msgstr "" - "案,也可以為許多(非 PostScript)印表機產生 PPD 檔案。但一般來說,製造商提供" - "的 PPD 檔案能更有效地存取印表機的特定功能。" - --#: ../glade/NewPrinterWindow.glade.h:100 -+#: ../glade/NewPrinterWindow.glade.h:99 - msgid "" - "These drivers do not come from your operating system supplier and will not " - "be covered by their commercial support. See the support and license terms " - "of the driver's supplier." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:101 -+#: ../glade/NewPrinterWindow.glade.h:100 - msgid "" - "This driver supports additional hardware that may be installed in the " - "printer." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:102 -+#: ../glade/NewPrinterWindow.glade.h:101 - msgid "" - "This is done by assuming that options with the same name do have the same " - "meaning. Settings of options that are not present in the new PPD will be " -@@ -2113,49 +2109,49 @@ msgstr "" - "這藉由以下方式完成:假設擁有同樣名稱的選項,也擁有同樣的意義。不存在於新 PPD " - "選項的設定都會佚失,只有在新 PPD 中的選項才會被設為預設值。" - --#: ../glade/NewPrinterWindow.glade.h:103 -+#: ../glade/NewPrinterWindow.glade.h:102 - msgid "" - "This way all current option settings will be lost. The default settings of " - "the new PPD will be used. " - msgstr "這樣所有選項的設定都會佚失。系統將使用新 PPD 的預設設定。" - --#: ../glade/NewPrinterWindow.glade.h:104 -+#: ../glade/NewPrinterWindow.glade.h:103 - msgid "Try to copy the option settings over from the old PPD. " - msgstr "試著從舊的 PPD 複製所有選項設定。" - --#: ../glade/NewPrinterWindow.glade.h:105 -+#: ../glade/NewPrinterWindow.glade.h:104 - msgid "URI:" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:107 -+#: ../glade/NewPrinterWindow.glade.h:106 - msgid "Use the new PPD (Postscript Printer Description) as is." - msgstr "如常使用新的 PPD(PostScript 印表機描述)。" - --#: ../glade/NewPrinterWindow.glade.h:109 -+#: ../glade/NewPrinterWindow.glade.h:108 - msgid "" - "With this choice no driver download will be performed. In the next steps a " - "locally installed driver will be selected." - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:110 -+#: ../glade/NewPrinterWindow.glade.h:109 - #, fuzzy - msgid "Yes, I accept this license" - msgstr "接受工作" - --#: ../glade/NewPrinterWindow.glade.h:111 -+#: ../glade/NewPrinterWindow.glade.h:110 - msgid "_Search" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:112 -+#: ../glade/NewPrinterWindow.glade.h:111 - msgid "_Verify..." - msgstr "驗證(_V)..." - --#: ../glade/NewPrinterWindow.glade.h:113 -+#: ../glade/NewPrinterWindow.glade.h:112 - #: ../glade/PrinterPropertiesDialog.glade.h:128 - msgid "move left" - msgstr "" - --#: ../glade/NewPrinterWindow.glade.h:114 -+#: ../glade/NewPrinterWindow.glade.h:113 - #: ../glade/PrinterPropertiesDialog.glade.h:129 - #, fuzzy - msgid "move right" -@@ -3049,7 +3045,7 @@ msgstr "" - msgid "Remember to load paper of type '%s' into the printer first." - msgstr "" - --#: ../troubleshoot/PrintTestPage.py:399 -+#: ../troubleshoot/PrintTestPage.py:416 - msgid "Error submitting test page" - msgstr "" - -@@ -3248,6 +3244,10 @@ msgid "Select default printer" - msgstr "設為預設印表機" - - #, fuzzy -+#~ msgid "HP Printer (HPLIP) via network" -+#~ msgstr "印表機名稱" -+ -+#, fuzzy - #~ msgid "Not Found" - #~ msgstr "找不到" - -diff -up system-config-printer-1.1.5/system-config-printer.py.git-1.1.x system-config-printer-1.1.5/system-config-printer.py ---- system-config-printer-1.1.5/system-config-printer.py.git-1.1.x 2009-03-03 13:29:34.000000000 +0000 -+++ system-config-printer-1.1.5/system-config-printer.py 2009-03-10 17:43:43.000000000 +0000 -@@ -36,9 +36,13 @@ except RuntimeError, e: - sys.exit (1) - - import glib --import gnome --gtk.about_dialog_set_url_hook (lambda x, y: gnome.url_show (y)) --gtk.about_dialog_set_email_hook (lambda x, y: gnome.url_show ("mailto:" + y)) -+def show_uri (uri): -+ gtk.show_uri (gtk.gdk.screen_get_default (), -+ uri, -+ gtk.get_current_event_time ()) -+ -+gtk.about_dialog_set_url_hook (lambda x, y: show_uri (y)) -+gtk.about_dialog_set_email_hook (lambda x, y: show_uri ("mailto:" + y)) - - def show_help(): - print ("\nThis is system-config-printer, " \ -@@ -2450,7 +2454,13 @@ class GUI(GtkGUI, monitor.Watcher): - marker_info = dict() - for attr in ['marker-colors', 'marker-names', 'marker-types', - 'marker-levels']: -- marker_info[attr] = printer.other_attributes.get (attr, []) -+ val = printer.other_attributes.get (attr, []) -+ if type (val) != list: -+ # Work around bug fixed in pycups 1.9.46. -+ val = [val] -+ -+ marker_info[attr] = val -+ - - markers = map (lambda color, name, type, level: - (color, name, type, level), -@@ -2773,6 +2783,14 @@ class GUI(GtkGUI, monitor.Watcher): - return - - (path, cell) = tuple -+ if type (cell) != gtk.CellRendererText: -+ cells = self.dests_iconview.get_cells () -+ for cell in cells: -+ if type (cell) == gtk.CellRendererText: -+ break -+ if type (cell) != gtk.CellRendererText: -+ return -+ - model = self.dests_iconview.get_model () - iter = model.get_iter (path) - name = unicode (model.get_value (iter, 2)) -@@ -3426,7 +3444,7 @@ class NewPrinterGUI(GtkGUI): - "usb" : 0, - "hal" : 0, - "beh" : 0, -- "hp" : 8, -+ "hp" : 0, - "hpfax" : 0, - "socket": 2, - "ipp" : 3, -@@ -3435,7 +3453,7 @@ class NewPrinterGUI(GtkGUI): - "scsi" : 5, - "serial" : 6, - "smb" : 7, -- "network": 9, -+ "network": 8, - } - - DOWNLOADABLE_ONLYPPD=True -@@ -3498,13 +3516,10 @@ class NewPrinterGUI(GtkGUI): - "entSMBUsername", - "entSMBPassword", - "btnSMBVerify", -- "entNPTHPHostname", -- "btnHPFindQueue", - "entNPTNetworkHostname", - "btnNetworkFind", - "lblNetworkFindSearching", - "lblNetworkFindNotFound", -- "lblHPURI", - "entNPTDevice", - "tvNCMembers", - "tvNCNotMembers", -@@ -4832,26 +4847,6 @@ class NewPrinterGUI(GtkGUI): - - devices = map (replace_generic, devices) - -- # For HPLIP, only locally-connected devices are detected. Add -- # the generic URI to allow network devices to be searched for. -- for each in devices: -- if each.type == "hp": -- if each.uri != "hp": -- # We know the hp backend is available because it has -- # found a locally-connected device. -- hp = cupshelpers.Device ("hp", -- **{'device-class': 'network', -- 'device-info': -- _("HP Printer (HPLIP)")}) -- devices.append (hp) -- break -- else: -- # The hp backend is in the device list but as a -- # generic driver with no devices found. It -- # reports "direct" as its class in this case, but -- # ought to report "network". -- each.device_class = 'network' -- - # Mark duplicate URIs for deletion - for i in range (len (devices) - 1): - for j in range (i + 1, len (devices)): -@@ -4869,7 +4864,7 @@ class NewPrinterGUI(GtkGUI): - device1.uri = "delete" - else: - device2.uri = "delete" -- devices = filter(lambda x: x.uri not in ("hpfax", -+ devices = filter(lambda x: x.uri not in ("hp", "hpfax", - "hal", "beh", - "scsi", "http", "delete"), - devices) -@@ -5617,9 +5612,6 @@ class NewPrinterGUI(GtkGUI): - self.device = device - self.lblNPDeviceDescription.set_text ('') - page = self.new_printer_device_tabs.get(device.type, 1) -- if device.type == "hp" and device.uri != "hp": -- page = 0 -- - self.ntbkNPType.set_current_page(page) - - location = '' -@@ -5740,8 +5732,6 @@ class NewPrinterGUI(GtkGUI): - self.entSMBPassword.set_text ('') - self.entSMBURI.set_text(device.uri[6:]) - self.btnSMBVerify.set_sensitive(True) -- elif device.uri == "hp": -- self.lblHPURI.set_text ('') - else: - self.entNPTDevice.set_text(device.uri) - -@@ -5783,46 +5773,6 @@ class NewPrinterGUI(GtkGUI): - if printers: - self.cmbentNPTLpdQueue.set_active(0) - -- def on_entNPTHPHostname_changed(self, ent): -- self.lblHPURI.set_text ('') -- s = ent.get_text () -- self.btnHPFindQueue.set_sensitive (len (s) > 0) -- self.setNPButtons () -- -- def on_btnHPFindQueue_clicked(self, button): -- host = self.entNPTHPHostname.get_text () -- -- # Check whether the device is supported by HPLIP -- hplipuri = self.get_hplip_uri_for_network_printer(host, "print") -- if hplipuri == None or hplipuri == '': -- show_error_dialog (_("No Print Shares"), -- _("HPLIP cannot find the device."), -- self.NewPrinterWindow) -- self.entNPTHPHostname.grab_focus () -- return -- -- self.lblHPURI.set_text (hplipuri) -- s = hplipuri.find ("/usb/") -- if s == -1: -- s = hplipuri.find ("/par/") -- -- if s == -1: -- s = hplipuri.find ("/net/") -- -- if s != -1: -- s += 5 -- e = hplipuri[s:].find ("?") -- if e == -1: -- e = len (hplipuri) -- -- mdl = hplipuri[s:s+e].replace ("_", " ") -- if mdl.startswith ("hp ") or mdl.startswith ("HP "): -- mdl = mdl[3:] -- self.device.make_and_model = "HP " + mdl -- id = "MFG:HP;MDL:%s;DES:HP %s;" % (mdl, mdl) -- self.device.id = id -- self.device.id_dict = cupshelpers.parseDeviceID (id) -- - ### Find Network Printer - def on_entNPTNetworkHostname_changed(self, ent): - s = ent.get_text () -@@ -5938,8 +5888,6 @@ class NewPrinterGUI(GtkGUI): - uri = SMBURI (group=group, host=host, share=share, - user=user, password=password).get_uri () - device = "smb://" + uri -- elif self.device.uri == "hp": -- device = self.lblHPURI.get_text () - elif not self.device.is_class: - device = self.device.uri - else: -diff -up system-config-printer-1.1.5/troubleshoot/PrintTestPage.py.git-1.1.x system-config-printer-1.1.5/troubleshoot/PrintTestPage.py ---- system-config-printer-1.1.5/troubleshoot/PrintTestPage.py.git-1.1.x 2009-03-03 13:29:34.000000000 +0000 -+++ system-config-printer-1.1.5/troubleshoot/PrintTestPage.py 2009-03-10 17:43:43.000000000 +0000 -@@ -27,7 +27,7 @@ import os - import pango - import tempfile - import time --from timedops import TimedOperation -+from timedops import TimedOperation, OperationCanceled - - from base import * - -@@ -166,7 +166,10 @@ class PrintTestPage(Question): - return (jobs_dict, completed_jobs_dict) - - self.op = TimedOperation (get_jobs, parent=parent) -- (jobs_dict, completed_jobs_dict) = self.op.run () -+ try: -+ (jobs_dict, completed_jobs_dict) = self.op.run () -+ except OperationCanceled: -+ return False - - # We want to display the jobs in the queue for this printer... - try: -@@ -219,7 +222,10 @@ class PrintTestPage(Question): - - parent = self.troubleshooter.get_window () - self.op = TimedOperation (create_subscription, parent=parent) -- self.sub_id = self.op.run () -+ try: -+ self.sub_id = self.op.run () -+ except OperationCanceled: -+ pass - - try: - bus = dbus.SystemBus () -@@ -252,7 +258,11 @@ class PrintTestPage(Question): - self.op = TimedOperation (cancel_subscription, - (self.sub_id,), - parent=parent) -- self.op.run () -+ try: -+ self.op.run () -+ except OperationCanceled: -+ pass -+ - try: - del self.sub_seq - except: -@@ -302,8 +312,12 @@ class PrintTestPage(Question): - self.op = TimedOperation (collect_attributes, - (jobs,), - parent=parent) -- with_attrs = self.op.run () -- self.answers['test_page_job_status'] = with_attrs -+ try: -+ with_attrs = self.op.run () -+ self.answers['test_page_job_status'] = with_attrs -+ except OperationCanceled: -+ pass -+ - return self.answers - - def cancel_operation (self): -@@ -383,6 +397,9 @@ class PrintTestPage(Question): - jobs.append (jobid) - self.persistent_answers['test_page_job_id'] = jobs - break -+ except OperationCanceled: -+ self.persistent_answers['test_page_submit_failure'] = 'cancel' -+ break - except RuntimeError: - self.persistent_answers['test_page_submit_failure'] = 'connect' - break -@@ -420,7 +437,10 @@ class PrintTestPage(Question): - self.op = TimedOperation (cancel_jobs, - (jobids,), - parent=self.troubleshooter.get_window ()) -- self.op.run () -+ try: -+ self.op.run () -+ except OperationCanceled: -+ pass - - def test_toggled (self, cell, path): - model = self.treeview.get_model () -@@ -447,7 +467,11 @@ class PrintTestPage(Question): - self.op = TimedOperation (get_notifications, - (self,), - parent=parent) -- notifications = self.op.run () -+ try: -+ notifications = self.op.run () -+ except OperationCanceled: -+ gtk.gdk.threads_leave () -+ return True - - answers = self.troubleshooter.answers - model = self.treeview.get_model () diff --git a/system-config-printer.spec b/system-config-printer.spec index 8382c2a..830813e 100644 --- a/system-config-printer.spec +++ b/system-config-printer.spec @@ -6,15 +6,14 @@ Summary: A printer administration tool Name: system-config-printer -Version: 1.1.5 -Release: 2%{?dist} +Version: 1.1.6 +Release: 1%{?dist} License: GPLv2+ URL: http://cyberelk.net/tim/software/system-config-printer/ Group: System Environment/Base Source0: http://cyberelk.net/tim/data/system-config-printer/1.1/system-config-printer-%{version}.tar.bz2 Source1: http://cyberelk.net/tim/data/pycups/pycups-%{pycups_version}.tar.bz2 Source2: http://cyberelk.net/tim/data/pysmbc/pysmbc-%{pysmbc_version}.tar.bz2 -Patch1: system-config-printer-git-1.1.x.patch BuildRequires: cups-devel >= 1.2 BuildRequires: python-devel >= 2.4 @@ -33,7 +32,6 @@ Requires: desktop-file-utils >= 0.2.92 Requires: dbus-x11 Requires: system-config-printer-libs = %{version}-%{release} Requires: gnome-icon-theme -Requires: gnome-python2-gnome Requires: notification-daemon Requires: notify-python Requires: gnome-python2-gnomekeyring @@ -64,7 +62,6 @@ the configuration tool. %prep %setup -q -a 1 -a 2 -%patch1 -p1 -b .git-1.1.x %build %configure @@ -167,6 +164,13 @@ rm -rf %buildroot exit 0 %changelog +* Fri Mar 13 2009 Tim Waugh 1.1.6-1 +- No longer requires gnome-python2-gnome. +- Updated to 1.1.6: + - Translatable string fix for authconn. + - Romanian allow/deny translation fix (bug #489748). + - Set glade's textdomain in the jobviewer (Ubuntu #341765). + * Tue Mar 10 2009 Tim Waugh 1.1.5-2 - Added patch for changes in 1.1.x since 1.1.5: - Strip " hpijs" from PPD names.