Hello community,

here is the log from the commit of package system-config-printer for 
openSUSE:Factory checked in at 2015-05-16 07:13:52
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/system-config-printer (Old)
 and      /work/SRC/openSUSE:Factory/.system-config-printer.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "system-config-printer"

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/system-config-printer/system-config-printer.changes  
    2015-03-30 19:12:49.000000000 +0200
+++ 
/work/SRC/openSUSE:Factory/.system-config-printer.new/system-config-printer.changes
 2015-05-16 07:13:53.000000000 +0200
@@ -1,0 +2,12 @@
+Fri May 15 07:33:33 UTC 2015 - dims...@opensuse.org
+
+- Update to version 1.5.7:
+  + Test device ordering: hp beats dnssd and usb.
+  + Fixes for appdata file.
+  + Fixed traceback (lp#1213136).
+  + Set use_underline=True for previously-stock buttons
+    (lp#1210859).
+  + Increase bus settle time for usb_modeswitch devices
+    (lp#1206808).
+
+-------------------------------------------------------------------

Old:
----
  system-config-printer-1.5.6.tar.xz
  system-config-printer-1.5.6.tar.xz.sig

New:
----
  system-config-printer-1.5.7.tar.xz
  system-config-printer-1.5.7.tar.xz.sig

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ system-config-printer.spec ++++++
--- /var/tmp/diff_new_pack.Imvjb7/_old  2015-05-16 07:13:54.000000000 +0200
+++ /var/tmp/diff_new_pack.Imvjb7/_new  2015-05-16 07:13:54.000000000 +0200
@@ -25,7 +25,7 @@
 %endif
 
 Name:           system-config-printer
-Version:        1.5.6
+Version:        1.5.7
 Release:        0
 Summary:        A printer administration tool
 License:        GPL-2.0+

++++++ system-config-printer-1.5.6.tar.xz -> system-config-printer-1.5.7.tar.xz 
++++++
++++ 5428 lines of diff (skipped)
++++    retrying with extended exclude list
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/system-config-printer-1.5.6/ChangeLog 
new/system-config-printer-1.5.7/ChangeLog
--- old/system-config-printer-1.5.6/ChangeLog   2015-03-17 16:43:14.000000000 
+0100
+++ new/system-config-printer-1.5.7/ChangeLog   2015-04-29 13:58:57.000000000 
+0200
@@ -1,3 +1,32 @@
+2015-04-29  Tim Waugh  <twa...@redhat.com>
+
+       Bumped version for 1.5.7 release.
+
+       make pull-translations && make update-po
+
+2015-04-23  Tim Waugh  <twa...@redhat.com>
+
+       Test device ordering.
+       hp beats dnssd and usb.
+
+       Fixes for appdata file.
+
+       Re-bootstrap.
+
+       Fixes for appdata file.
+
+2015-04-21  Tim Waugh  <twa...@redhat.com>
+
+       Fixed traceback (bug #1213136).
+
+2015-04-13  Tim Waugh  <twa...@redhat.com>
+
+       Set use_underline=True for previously-stock buttons (bug #1210859).
+
+2015-04-01  Tim Waugh  <twa...@redhat.com>
+
+       Increase bus settle time for usb_modeswitch devices (bug #1206808).
+
 2015-03-17  Tim Waugh  <twa...@redhat.com>
 
        Bumped version for release.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/system-config-printer-1.5.6/applet.py 
new/system-config-printer-1.5.7/applet.py
--- old/system-config-printer-1.5.6/applet.py   2015-03-17 16:19:09.000000000 
+0100
+++ new/system-config-printer-1.5.7/applet.py   2015-04-23 17:05:58.000000000 
+0200
@@ -324,7 +324,7 @@
             system_bus.add_signal_receiver (self.handle_dbus_signal,
                                             path=self.DBUS_PATH,
                                             dbus_interface=self.DBUS_IFACE)
-        except DBusException as e:
+        except dbus.DBusException as e:
             try:
                 print ("%s: failed to add D-Bus signal receiver: %s" \
                         % (PROGRAM_NAME, e), file=sys.stderr)
@@ -338,7 +338,7 @@
             self.system_bus.remove_signal_receiver (self.handle_dbus_signal,
                                                     path=self.DBUS_PATH,
                                                     
dbus_interface=self.DBUS_IFACE)
-        except DBusException as e:
+        except dbus.DBusException as e:
             try:
                 print ("%s: failed to remove D-Bus signal receiver: %s" \
                         % (PROGRAM_NAME, e), file=sys.stderr)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/system-config-printer-1.5.6/config.py 
new/system-config-printer-1.5.7/config.py
--- old/system-config-printer-1.5.6/config.py   2015-03-17 16:43:14.000000000 
+0100
+++ new/system-config-printer-1.5.7/config.py   2015-04-29 13:58:56.000000000 
+0200
@@ -22,7 +22,7 @@
 datadir="/usr/local/share"
 localedir="/usr/local/share/locale"
 pkgdatadir="/usr/local/share/system-config-printer"
-VERSION="1.5.6"
+VERSION="1.5.7"
 PACKAGE="system-config-printer"
 DOWNLOADABLE_ONLYPPD=True
 DOWNLOADABLE_ONLYFREE=True
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/system-config-printer-1.5.6/configure.ac 
new/system-config-printer-1.5.7/configure.ac
--- old/system-config-printer-1.5.6/configure.ac        2015-03-17 
16:42:57.000000000 +0100
+++ new/system-config-printer-1.5.7/configure.ac        2015-04-29 
13:58:30.000000000 +0200
@@ -1,4 +1,4 @@
-AC_INIT(system-config-printer, 1.5.6)
+AC_INIT(system-config-printer, 1.5.7)
 AC_CONFIG_SRCDIR(system-config-printer.py)
 AM_INIT_AUTOMAKE([dist-xz dist-bzip2 subdir-objects 1.6])
 IT_PROG_INTLTOOL
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/system-config-printer-1.5.6/po/Makefile.in.in 
new/system-config-printer-1.5.7/po/Makefile.in.in
--- old/system-config-printer-1.5.6/po/Makefile.in.in   2015-03-17 
16:43:09.000000000 +0100
+++ new/system-config-printer-1.5.7/po/Makefile.in.in   2015-04-23 
17:05:58.000000000 +0200
@@ -33,8 +33,7 @@
 datadir = @datadir@
 datarootdir = @datarootdir@
 libdir = @libdir@
-DATADIRNAME = @DATADIRNAME@
-itlocaledir = $(prefix)/$(DATADIRNAME)/locale
+localedir = @localedir@
 subdir = po
 install_sh = @install_sh@
 # Automake >= 1.8 provides @mkdir_p@.
@@ -80,7 +79,7 @@
 
 .po.pox:
        $(MAKE) $(GETTEXT_PACKAGE).pot
-       $(MSGMERGE) $< $(GETTEXT_PACKAGE).pot -o $*.pox
+       $(MSGMERGE) $* $(GETTEXT_PACKAGE).pot -o $*.pox
 
 .po.mo:
        $(INTLTOOL_V_MSGFMT)$(MSGFMT) -o $@ $<
@@ -108,7 +107,7 @@
 install-data-yes: all
        linguas="$(USE_LINGUAS)"; \
        for lang in $$linguas; do \
-         dir=$(DESTDIR)$(itlocaledir)/$$lang/LC_MESSAGES; \
+         dir=$(DESTDIR)$(localedir)/$$lang/LC_MESSAGES; \
          $(mkdir_p) $$dir; \
          if test -r $$lang.gmo; then \
            $(INSTALL_DATA) $$lang.gmo $$dir/$(GETTEXT_PACKAGE).mo; \
@@ -142,8 +141,8 @@
 uninstall:
        linguas="$(USE_LINGUAS)"; \
        for lang in $$linguas; do \
-         rm -f 
$(DESTDIR)$(itlocaledir)/$$lang/LC_MESSAGES/$(GETTEXT_PACKAGE).mo; \
-         rm -f 
$(DESTDIR)$(itlocaledir)/$$lang/LC_MESSAGES/$(GETTEXT_PACKAGE).mo.m; \
+         rm -f 
$(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(GETTEXT_PACKAGE).mo; \
+         rm -f 
$(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(GETTEXT_PACKAGE).mo.m; \
        done
 
 check: all $(GETTEXT_PACKAGE).pot
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/system-config-printer-1.5.6/po/ar.po 
new/system-config-printer-1.5.7/po/ar.po
--- old/system-config-printer-1.5.6/po/ar.po    2015-03-17 16:41:23.000000000 
+0100
+++ new/system-config-printer-1.5.7/po/ar.po    2015-04-29 13:55:13.000000000 
+0200
@@ -30,7 +30,7 @@
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
 "&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
-"X-Generator: Zanata 3.5.1\n"
+"X-Generator: Zanata 3.6.2\n"
 
 #: ../asyncipp.py:473 ../authconn.py:447 ../authconn.py:449
 #: ../errordialogs.py:63 ../pysmb.py:90 ../pysmb.py:92
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/system-config-printer-1.5.6/po/as.po 
new/system-config-printer-1.5.7/po/as.po
--- old/system-config-printer-1.5.6/po/as.po    2015-03-17 16:41:23.000000000 
+0100
+++ new/system-config-printer-1.5.7/po/as.po    2015-04-29 13:55:13.000000000 
+0200
@@ -19,7 +19,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Zanata 3.5.1\n"
+"X-Generator: Zanata 3.6.2\n"
 
 #: ../asyncipp.py:473 ../authconn.py:447 ../authconn.py:449
 #: ../errordialogs.py:63 ../pysmb.py:90 ../pysmb.py:92
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/system-config-printer-1.5.6/po/bg.po 
new/system-config-printer-1.5.7/po/bg.po
--- old/system-config-printer-1.5.6/po/bg.po    2015-03-17 16:41:23.000000000 
+0100
+++ new/system-config-printer-1.5.7/po/bg.po    2015-04-29 13:55:13.000000000 
+0200
@@ -24,7 +24,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Zanata 3.5.1\n"
+"X-Generator: Zanata 3.6.2\n"
 
 #: ../asyncipp.py:473 ../authconn.py:447 ../authconn.py:449
 #: ../errordialogs.py:63 ../pysmb.py:90 ../pysmb.py:92
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/system-config-printer-1.5.6/po/bn.po 
new/system-config-printer-1.5.7/po/bn.po
--- old/system-config-printer-1.5.6/po/bn.po    2015-03-17 16:41:23.000000000 
+0100
+++ new/system-config-printer-1.5.7/po/bn.po    2015-04-29 13:55:13.000000000 
+0200
@@ -25,7 +25,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Zanata 3.5.1\n"
+"X-Generator: Zanata 3.6.2\n"
 
 #: ../asyncipp.py:473 ../authconn.py:447 ../authconn.py:449
 #: ../errordialogs.py:63 ../pysmb.py:90 ../pysmb.py:92
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/system-config-printer-1.5.6/po/bn_IN.po 
new/system-config-printer-1.5.7/po/bn_IN.po
--- old/system-config-printer-1.5.6/po/bn_IN.po 2015-03-17 16:41:23.000000000 
+0100
+++ new/system-config-printer-1.5.7/po/bn_IN.po 2015-04-29 13:55:13.000000000 
+0200
@@ -21,7 +21,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Zanata 3.5.1\n"
+"X-Generator: Zanata 3.6.2\n"
 
 #: ../asyncipp.py:473 ../authconn.py:447 ../authconn.py:449
 #: ../errordialogs.py:63 ../pysmb.py:90 ../pysmb.py:92
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/system-config-printer-1.5.6/po/br.po 
new/system-config-printer-1.5.7/po/br.po
--- old/system-config-printer-1.5.6/po/br.po    2015-03-17 16:41:23.000000000 
+0100
+++ new/system-config-printer-1.5.7/po/br.po    2015-04-29 13:55:13.000000000 
+0200
@@ -20,7 +20,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
-"X-Generator: Zanata 3.5.1\n"
+"X-Generator: Zanata 3.6.2\n"
 
 #: ../asyncipp.py:473 ../authconn.py:447 ../authconn.py:449
 #: ../errordialogs.py:63 ../pysmb.py:90 ../pysmb.py:92
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/system-config-printer-1.5.6/po/bs.po 
new/system-config-printer-1.5.7/po/bs.po
--- old/system-config-printer-1.5.6/po/bs.po    2015-03-17 16:41:23.000000000 
+0100
+++ new/system-config-printer-1.5.7/po/bs.po    2015-04-29 13:55:13.000000000 
+0200
@@ -20,7 +20,7 @@
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
 "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
-"X-Generator: Zanata 3.5.1\n"
+"X-Generator: Zanata 3.6.2\n"
 
 #: ../asyncipp.py:473 ../authconn.py:447 ../authconn.py:449
 #: ../errordialogs.py:63 ../pysmb.py:90 ../pysmb.py:92
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/system-config-printer-1.5.6/po/ca.po 
new/system-config-printer-1.5.7/po/ca.po
--- old/system-config-printer-1.5.6/po/ca.po    2015-03-17 16:41:23.000000000 
+0100
+++ new/system-config-printer-1.5.7/po/ca.po    2015-04-29 13:55:13.000000000 
+0200
@@ -16,7 +16,7 @@
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: https://bugzilla.redhat.com/bugzilla\n";
 "POT-Creation-Date: 2015-03-17 15:19+0000\n"
-"PO-Revision-Date: 2015-03-17 07:05-0400\n"
+"PO-Revision-Date: 2015-04-02 07:36-0400\n"
 "Last-Translator: Robert Antoni Buj Gelonch <r...@fedoraproject.org>\n"
 "Language-Team: Catalan (http://www.transifex.com/projects/p/system-config-";
 "printer/language/ca/)\n"
@@ -25,7 +25,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Zanata 3.5.1\n"
+"X-Generator: Zanata 3.6.2\n"
 
 #: ../asyncipp.py:473 ../authconn.py:447 ../authconn.py:449
 #: ../errordialogs.py:63 ../pysmb.py:90 ../pysmb.py:92
@@ -55,7 +55,7 @@
 #: ../troubleshoot/PrintTestPage.py:431
 #, 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»."
+msgstr "Hi va haver un error durant l'operació del CUPS: «%s»."
 
 #: ../asyncipp.py:581 ../authconn.py:311
 msgid "Retry"
@@ -126,7 +126,7 @@
 #: ../errordialogs.py:84
 #, python-format
 msgid "There was an HTTP error: %s."
-msgstr "S'ha produït un error HTTP: %s"
+msgstr "Hi va haver un error d'HTTP: %s"
 
 #: ../jobviewer.py:186
 msgid "Delete Jobs"
@@ -403,20 +403,20 @@
 #, python-format
 msgid "There was a problem sending document `%s' (job %d) to the printer."
 msgstr ""
-"Hi ha hagut un problema en enviar el document «%s» (treball %d) a la "
+"Hi va haver un problema en enviar el document «%s» (treball %d) a la "
 "impressora."
 
 #: ../jobviewer.py:2053
 #, python-format
 msgid "There was a problem processing document `%s' (job %d)."
-msgstr "Hi ha hagut un problema en processar el document «%s» (treball %d)."
+msgstr "Hi va haver un problema en processar el document «%s» (treball %d)."
 
 #. Give up and use the provided message untranslated.
 #: ../jobviewer.py:2060
 #, python-format
 msgid "There was a problem printing document `%s' (job %d): `%s'."
 msgstr ""
-"Hi ha hagut un problema en imprimir el document «%s» (treball %d): «%s»."
+"Hi va haver un problema en imprimir el document «%s» (treball %d): «%s»."
 
 #: ../jobviewer.py:2067 ../jobviewer.py:2084
 msgid "Print Error"
@@ -1546,7 +1546,7 @@
 
 #: ../printerproperties.py:1342
 msgid "There was a problem connecting to the CUPS server."
-msgstr "Hi ha hagut un problema en connectar-se al servidor CUPS."
+msgstr "Hi va haver un problema en connectar al servidor CUPS."
 
 #: ../printerproperties.py:1439
 #, python-format
@@ -3341,7 +3341,7 @@
 
 #: ../troubleshoot/Shrug.py:94
 msgid "There was an error saving the file:"
-msgstr "S'ha produït un error desant el fitxer:"
+msgstr "Hi va haver un error en desar el fitxer:"
 
 #: ../troubleshoot/Welcome.py:45
 msgid "Trouble-shooting Printing"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/system-config-printer-1.5.6/po/cs.po 
new/system-config-printer-1.5.7/po/cs.po
--- old/system-config-printer-1.5.6/po/cs.po    2015-03-17 16:41:23.000000000 
+0100
+++ new/system-config-printer-1.5.7/po/cs.po    2015-04-29 13:55:13.000000000 
+0200
@@ -24,7 +24,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
-"X-Generator: Zanata 3.5.1\n"
+"X-Generator: Zanata 3.6.2\n"
 
 #: ../asyncipp.py:473 ../authconn.py:447 ../authconn.py:449
 #: ../errordialogs.py:63 ../pysmb.py:90 ../pysmb.py:92
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/system-config-printer-1.5.6/po/cy.po 
new/system-config-printer-1.5.7/po/cy.po
--- old/system-config-printer-1.5.6/po/cy.po    2015-03-17 16:41:23.000000000 
+0100
+++ new/system-config-printer-1.5.7/po/cy.po    2015-04-29 13:55:14.000000000 
+0200
@@ -20,7 +20,7 @@
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != "
 "11) ? 2 : 3;\n"
-"X-Generator: Zanata 3.5.1\n"
+"X-Generator: Zanata 3.6.2\n"
 
 #: ../asyncipp.py:473 ../authconn.py:447 ../authconn.py:449
 #: ../errordialogs.py:63 ../pysmb.py:90 ../pysmb.py:92
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/system-config-printer-1.5.6/po/da.po 
new/system-config-printer-1.5.7/po/da.po
--- old/system-config-printer-1.5.6/po/da.po    2015-03-17 16:41:23.000000000 
+0100
+++ new/system-config-printer-1.5.7/po/da.po    2015-04-29 13:55:14.000000000 
+0200
@@ -19,7 +19,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Zanata 3.5.1\n"
+"X-Generator: Zanata 3.6.2\n"
 
 #: ../asyncipp.py:473 ../authconn.py:447 ../authconn.py:449
 #: ../errordialogs.py:63 ../pysmb.py:90 ../pysmb.py:92
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/system-config-printer-1.5.6/po/de.po 
new/system-config-printer-1.5.7/po/de.po
--- old/system-config-printer-1.5.6/po/de.po    2015-03-17 16:41:23.000000000 
+0100
+++ new/system-config-printer-1.5.7/po/de.po    2015-04-29 13:55:14.000000000 
+0200
@@ -34,7 +34,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Zanata 3.5.1\n"
+"X-Generator: Zanata 3.6.2\n"
 
 #: ../asyncipp.py:473 ../authconn.py:447 ../authconn.py:449
 #: ../errordialogs.py:63 ../pysmb.py:90 ../pysmb.py:92
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/system-config-printer-1.5.6/po/el.po 
new/system-config-printer-1.5.7/po/el.po
--- old/system-config-printer-1.5.6/po/el.po    2015-03-17 16:41:23.000000000 
+0100
+++ new/system-config-printer-1.5.7/po/el.po    2015-04-29 13:55:14.000000000 
+0200
@@ -28,7 +28,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Zanata 3.5.1\n"
+"X-Generator: Zanata 3.6.2\n"
 
 #: ../asyncipp.py:473 ../authconn.py:447 ../authconn.py:449
 #: ../errordialogs.py:63 ../pysmb.py:90 ../pysmb.py:92
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/system-config-printer-1.5.6/po/en_GB.po 
new/system-config-printer-1.5.7/po/en_GB.po
--- old/system-config-printer-1.5.6/po/en_GB.po 2015-03-17 16:41:23.000000000 
+0100
+++ new/system-config-printer-1.5.7/po/en_GB.po 2015-04-29 13:55:14.000000000 
+0200
@@ -21,7 +21,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Zanata 3.5.1\n"
+"X-Generator: Zanata 3.6.2\n"
 
 #: ../asyncipp.py:473 ../authconn.py:447 ../authconn.py:449
 #: ../errordialogs.py:63 ../pysmb.py:90 ../pysmb.py:92
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/system-config-printer-1.5.6/po/es.po 
new/system-config-printer-1.5.7/po/es.po
--- old/system-config-printer-1.5.6/po/es.po    2015-03-17 16:41:23.000000000 
+0100
+++ new/system-config-printer-1.5.7/po/es.po    2015-04-29 13:55:14.000000000 
+0200
@@ -26,7 +26,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Zanata 3.5.1\n"
+"X-Generator: Zanata 3.6.2\n"
 
 #: ../asyncipp.py:473 ../authconn.py:447 ../authconn.py:449
 #: ../errordialogs.py:63 ../pysmb.py:90 ../pysmb.py:92
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/system-config-printer-1.5.6/po/et.po 
new/system-config-printer-1.5.7/po/et.po
--- old/system-config-printer-1.5.6/po/et.po    2015-03-17 16:41:23.000000000 
+0100
+++ new/system-config-printer-1.5.7/po/et.po    2015-04-29 13:55:14.000000000 
+0200
@@ -21,7 +21,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Zanata 3.5.1\n"
+"X-Generator: Zanata 3.6.2\n"
 
 #: ../asyncipp.py:473 ../authconn.py:447 ../authconn.py:449
 #: ../errordialogs.py:63 ../pysmb.py:90 ../pysmb.py:92
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/system-config-printer-1.5.6/po/fa.po 
new/system-config-printer-1.5.7/po/fa.po
--- old/system-config-printer-1.5.6/po/fa.po    2015-03-17 16:41:23.000000000 
+0100
+++ new/system-config-printer-1.5.7/po/fa.po    2015-04-29 13:55:14.000000000 
+0200
@@ -21,7 +21,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: Zanata 3.5.1\n"
+"X-Generator: Zanata 3.6.2\n"
 
 #: ../asyncipp.py:473 ../authconn.py:447 ../authconn.py:449
 #: ../errordialogs.py:63 ../pysmb.py:90 ../pysmb.py:92
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/system-config-printer-1.5.6/po/fi.po 
new/system-config-printer-1.5.7/po/fi.po
--- old/system-config-printer-1.5.6/po/fi.po    2015-03-17 16:41:23.000000000 
+0100
+++ new/system-config-printer-1.5.7/po/fi.po    2015-04-29 13:55:14.000000000 
+0200
@@ -22,7 +22,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Zanata 3.5.1\n"
+"X-Generator: Zanata 3.6.2\n"
 
 #: ../asyncipp.py:473 ../authconn.py:447 ../authconn.py:449
 #: ../errordialogs.py:63 ../pysmb.py:90 ../pysmb.py:92
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/system-config-printer-1.5.6/po/fr.po 
new/system-config-printer-1.5.7/po/fr.po
--- old/system-config-printer-1.5.6/po/fr.po    2015-03-17 16:41:23.000000000 
+0100
+++ new/system-config-printer-1.5.7/po/fr.po    2015-04-29 13:55:14.000000000 
+0200
@@ -36,7 +36,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
-"X-Generator: Zanata 3.5.1\n"
+"X-Generator: Zanata 3.6.2\n"
 
 #: ../asyncipp.py:473 ../authconn.py:447 ../authconn.py:449
 #: ../errordialogs.py:63 ../pysmb.py:90 ../pysmb.py:92
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/system-config-printer-1.5.6/po/gu.po 
new/system-config-printer-1.5.7/po/gu.po
--- old/system-config-printer-1.5.6/po/gu.po    2015-03-17 16:41:23.000000000 
+0100
+++ new/system-config-printer-1.5.7/po/gu.po    2015-04-29 13:55:14.000000000 
+0200
@@ -23,7 +23,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Zanata 3.5.1\n"
+"X-Generator: Zanata 3.6.2\n"
 
 #: ../asyncipp.py:473 ../authconn.py:447 ../authconn.py:449
 #: ../errordialogs.py:63 ../pysmb.py:90 ../pysmb.py:92
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/system-config-printer-1.5.6/po/he.po 
new/system-config-printer-1.5.7/po/he.po
--- old/system-config-printer-1.5.6/po/he.po    2015-03-17 16:41:23.000000000 
+0100
+++ new/system-config-printer-1.5.7/po/he.po    2015-04-29 13:55:14.000000000 
+0200
@@ -20,7 +20,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Zanata 3.5.1\n"
+"X-Generator: Zanata 3.6.2\n"
 
 #: ../asyncipp.py:473 ../authconn.py:447 ../authconn.py:449
 #: ../errordialogs.py:63 ../pysmb.py:90 ../pysmb.py:92
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/system-config-printer-1.5.6/po/hi.po 
new/system-config-printer-1.5.7/po/hi.po
--- old/system-config-printer-1.5.6/po/hi.po    2015-03-17 16:41:23.000000000 
+0100
+++ new/system-config-printer-1.5.7/po/hi.po    2015-04-29 13:55:14.000000000 
+0200
@@ -22,7 +22,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Zanata 3.5.1\n"
+"X-Generator: Zanata 3.6.2\n"
 
 #: ../asyncipp.py:473 ../authconn.py:447 ../authconn.py:449
 #: ../errordialogs.py:63 ../pysmb.py:90 ../pysmb.py:92
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/system-config-printer-1.5.6/po/hr.po 
new/system-config-printer-1.5.7/po/hr.po
--- old/system-config-printer-1.5.6/po/hr.po    2015-03-17 16:41:23.000000000 
+0100
+++ new/system-config-printer-1.5.7/po/hr.po    2015-04-29 13:55:14.000000000 
+0200
@@ -19,7 +19,7 @@
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
 "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
-"X-Generator: Zanata 3.5.1\n"
+"X-Generator: Zanata 3.6.2\n"
 
 #: ../asyncipp.py:473 ../authconn.py:447 ../authconn.py:449
 #: ../errordialogs.py:63 ../pysmb.py:90 ../pysmb.py:92
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/system-config-printer-1.5.6/po/hu.po 
new/system-config-printer-1.5.7/po/hu.po
--- old/system-config-printer-1.5.6/po/hu.po    2015-03-17 16:41:23.000000000 
+0100
+++ new/system-config-printer-1.5.7/po/hu.po    2015-04-29 13:55:15.000000000 
+0200
@@ -20,7 +20,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Zanata 3.5.1\n"
+"X-Generator: Zanata 3.6.2\n"
 
 #: ../asyncipp.py:473 ../authconn.py:447 ../authconn.py:449
 #: ../errordialogs.py:63 ../pysmb.py:90 ../pysmb.py:92
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/system-config-printer-1.5.6/po/id.po 
new/system-config-printer-1.5.7/po/id.po
--- old/system-config-printer-1.5.6/po/id.po    2015-03-17 16:41:23.000000000 
+0100
+++ new/system-config-printer-1.5.7/po/id.po    2015-04-29 13:55:15.000000000 
+0200
@@ -9,13 +9,14 @@
 # Erwien Samantha Y <erwiensaman...@sederhana.or.id>, 2004
 # Nana Suryana <n...@suryana.or.id>, 2012
 # Teguh DC <dhe...@bradjamoesti.or.id>, 2005
+# Bagus Aji Santoso <baguzzz...@gmail.com>, 2015. #zanata
 msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: https://bugzilla.redhat.com/bugzilla\n";
 "POT-Creation-Date: 2015-03-17 15:19+0000\n"
-"PO-Revision-Date: 2014-10-23 06:58-0400\n"
-"Last-Translator: Tim Waugh <twa...@redhat.com>\n"
+"PO-Revision-Date: 2015-03-19 08:34-0400\n"
+"Last-Translator: Bagus Aji Santoso <baguzzz...@gmail.com>\n"
 "Language-Team: Indonesian (http://www.transifex.com/projects/p/system-config-";
 "printer/language/id/)\n"
 "Language: id\n"
@@ -23,7 +24,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: Zanata 3.5.1\n"
+"X-Generator: Zanata 3.6.2\n"
 
 #: ../asyncipp.py:473 ../authconn.py:447 ../authconn.py:449
 #: ../errordialogs.py:63 ../pysmb.py:90 ../pysmb.py:92
@@ -614,7 +615,7 @@
 
 #: ../newprinter.py:704
 msgid "Download Printer Driver"
-msgstr ""
+msgstr "Unduh Driver Printer"
 
 #: ../newprinter.py:713 ../newprinter.py:2081 ../newprinter.py:2086
 msgid "fetching device list"
@@ -623,11 +624,11 @@
 #: ../newprinter.py:949
 #, python-format
 msgid "Installing driver %s"
-msgstr ""
+msgstr "Memasang driver %s"
 
 #: ../newprinter.py:956
 msgid "Installing ..."
-msgstr ""
+msgstr "Sedang memasang ..."
 
 #: ../newprinter.py:1318 ../newprinter.py:3102 ../newprinter.py:3330
 #: ../ppdsloader.py:86
@@ -643,7 +644,7 @@
 #. Separator?
 #: ../newprinter.py:2005
 msgid "Enter URI"
-msgstr ""
+msgstr "Masukkan URI"
 
 #: ../newprinter.py:2010
 msgid "Network Printer"
@@ -687,11 +688,13 @@
 "There were no print shares found.  Please check that the Samba service is "
 "marked as trusted in your firewall configuration."
 msgstr ""
+"Tidak ada printer yang dibagikan. Silahkan cek servis Samba telah "
+"ditambahkan di daftar konfigurasi firewall anda."
 
 #: ../newprinter.py:2440
 #, python-format
 msgid "Verification requires the %s module"
-msgstr ""
+msgstr "Verifikasi membutuhkan modul %s"
 
 #: ../newprinter.py:2494
 msgid "Allow all incoming SMB/CIFS browse packets"
@@ -796,7 +799,7 @@
 msgid ""
 "HPLIP software driving a printer, or the printer function of a multi-"
 "function device."
-msgstr ""
+msgstr "Terjadi kesalahan dengan berkas PPD untuk printer '%s'."
 
 #: ../newprinter.py:2960
 msgid ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/system-config-printer-1.5.6/po/is.po 
new/system-config-printer-1.5.7/po/is.po
--- old/system-config-printer-1.5.6/po/is.po    2015-03-17 16:41:23.000000000 
+0100
+++ new/system-config-printer-1.5.7/po/is.po    2015-04-29 13:55:15.000000000 
+0200
@@ -20,7 +20,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Zanata 3.5.1\n"
+"X-Generator: Zanata 3.6.2\n"
 
 #: ../asyncipp.py:473 ../authconn.py:447 ../authconn.py:449
 #: ../errordialogs.py:63 ../pysmb.py:90 ../pysmb.py:92
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/system-config-printer-1.5.6/po/it.po 
new/system-config-printer-1.5.7/po/it.po
--- old/system-config-printer-1.5.6/po/it.po    2015-03-17 16:41:23.000000000 
+0100
+++ new/system-config-printer-1.5.7/po/it.po    2015-04-29 13:55:15.000000000 
+0200
@@ -31,7 +31,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Zanata 3.5.1\n"
+"X-Generator: Zanata 3.6.2\n"
 
 #: ../asyncipp.py:473 ../authconn.py:447 ../authconn.py:449
 #: ../errordialogs.py:63 ../pysmb.py:90 ../pysmb.py:92
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/system-config-printer-1.5.6/po/ja.po 
new/system-config-printer-1.5.7/po/ja.po
--- old/system-config-printer-1.5.6/po/ja.po    2015-03-17 16:41:23.000000000 
+0100
+++ new/system-config-printer-1.5.7/po/ja.po    2015-04-29 13:55:15.000000000 
+0200
@@ -26,7 +26,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: Zanata 3.5.1\n"
+"X-Generator: Zanata 3.6.2\n"
 
 #: ../asyncipp.py:473 ../authconn.py:447 ../authconn.py:449
 #: ../errordialogs.py:63 ../pysmb.py:90 ../pysmb.py:92
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/system-config-printer-1.5.6/po/kn.po 
new/system-config-printer-1.5.7/po/kn.po
--- old/system-config-printer-1.5.6/po/kn.po    2015-03-17 16:41:23.000000000 
+0100
+++ new/system-config-printer-1.5.7/po/kn.po    2015-04-29 13:55:15.000000000 
+0200
@@ -20,7 +20,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: Zanata 3.5.1\n"
+"X-Generator: Zanata 3.6.2\n"
 
 #: ../asyncipp.py:473 ../authconn.py:447 ../authconn.py:449
 #: ../errordialogs.py:63 ../pysmb.py:90 ../pysmb.py:92
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/system-config-printer-1.5.6/po/ko.po 
new/system-config-printer-1.5.7/po/ko.po
--- old/system-config-printer-1.5.6/po/ko.po    2015-03-17 16:41:23.000000000 
+0100
+++ new/system-config-printer-1.5.7/po/ko.po    2015-04-29 13:55:15.000000000 
+0200
@@ -20,7 +20,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: Zanata 3.5.1\n"
+"X-Generator: Zanata 3.6.2\n"
 
 #: ../asyncipp.py:473 ../authconn.py:447 ../authconn.py:449
 #: ../errordialogs.py:63 ../pysmb.py:90 ../pysmb.py:92
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/system-config-printer-1.5.6/po/lv.po 
new/system-config-printer-1.5.7/po/lv.po
--- old/system-config-printer-1.5.6/po/lv.po    2015-03-17 16:41:23.000000000 
+0100
+++ new/system-config-printer-1.5.7/po/lv.po    2015-04-29 13:55:15.000000000 
+0200
@@ -25,7 +25,7 @@
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : "
 "2);\n"
-"X-Generator: Zanata 3.5.1\n"
+"X-Generator: Zanata 3.6.2\n"
 
 #: ../asyncipp.py:473 ../authconn.py:447 ../authconn.py:449
 #: ../errordialogs.py:63 ../pysmb.py:90 ../pysmb.py:92
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/system-config-printer-1.5.6/po/mai.po 
new/system-config-printer-1.5.7/po/mai.po
--- old/system-config-printer-1.5.6/po/mai.po   2015-03-17 16:41:23.000000000 
+0100
+++ new/system-config-printer-1.5.7/po/mai.po   2015-04-29 13:55:15.000000000 
+0200
@@ -19,7 +19,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Zanata 3.5.1\n"
+"X-Generator: Zanata 3.6.2\n"
 
 #: ../asyncipp.py:473 ../authconn.py:447 ../authconn.py:449
 #: ../errordialogs.py:63 ../pysmb.py:90 ../pysmb.py:92
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/system-config-printer-1.5.6/po/mk.po 
new/system-config-printer-1.5.7/po/mk.po
--- old/system-config-printer-1.5.6/po/mk.po    2015-03-17 16:41:23.000000000 
+0100
+++ new/system-config-printer-1.5.7/po/mk.po    2015-04-29 13:55:15.000000000 
+0200
@@ -21,7 +21,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n"
-"X-Generator: Zanata 3.5.1\n"
+"X-Generator: Zanata 3.6.2\n"
 
 #: ../asyncipp.py:473 ../authconn.py:447 ../authconn.py:449
 #: ../errordialogs.py:63 ../pysmb.py:90 ../pysmb.py:92
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/system-config-printer-1.5.6/po/ml.po 
new/system-config-printer-1.5.7/po/ml.po
--- old/system-config-printer-1.5.6/po/ml.po    2015-03-17 16:41:23.000000000 
+0100
+++ new/system-config-printer-1.5.7/po/ml.po    2015-04-29 13:55:15.000000000 
+0200
@@ -18,7 +18,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Zanata 3.5.1\n"
+"X-Generator: Zanata 3.6.2\n"
 
 #: ../asyncipp.py:473 ../authconn.py:447 ../authconn.py:449
 #: ../errordialogs.py:63 ../pysmb.py:90 ../pysmb.py:92
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/system-config-printer-1.5.6/po/mr.po 
new/system-config-printer-1.5.7/po/mr.po
--- old/system-config-printer-1.5.6/po/mr.po    2015-03-17 16:41:23.000000000 
+0100
+++ new/system-config-printer-1.5.7/po/mr.po    2015-04-29 13:55:15.000000000 
+0200
@@ -22,7 +22,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Zanata 3.5.1\n"
+"X-Generator: Zanata 3.6.2\n"
 
 #: ../asyncipp.py:473 ../authconn.py:447 ../authconn.py:449
 #: ../errordialogs.py:63 ../pysmb.py:90 ../pysmb.py:92
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/system-config-printer-1.5.6/po/ms.po 
new/system-config-printer-1.5.7/po/ms.po
--- old/system-config-printer-1.5.6/po/ms.po    2015-03-17 16:41:23.000000000 
+0100
+++ new/system-config-printer-1.5.7/po/ms.po    2015-04-29 13:55:15.000000000 
+0200
@@ -20,7 +20,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: Zanata 3.5.1\n"
+"X-Generator: Zanata 3.6.2\n"
 
 #: ../asyncipp.py:473 ../authconn.py:447 ../authconn.py:449
 #: ../errordialogs.py:63 ../pysmb.py:90 ../pysmb.py:92
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/system-config-printer-1.5.6/po/nb.po 
new/system-config-printer-1.5.7/po/nb.po
--- old/system-config-printer-1.5.6/po/nb.po    2015-03-17 16:41:23.000000000 
+0100
+++ new/system-config-printer-1.5.7/po/nb.po    2015-04-29 13:55:15.000000000 
+0200
@@ -22,7 +22,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Zanata 3.5.1\n"
+"X-Generator: Zanata 3.6.2\n"
 
 #: ../asyncipp.py:473 ../authconn.py:447 ../authconn.py:449
 #: ../errordialogs.py:63 ../pysmb.py:90 ../pysmb.py:92
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/system-config-printer-1.5.6/po/nds.po 
new/system-config-printer-1.5.7/po/nds.po
--- old/system-config-printer-1.5.6/po/nds.po   2015-03-17 16:41:23.000000000 
+0100
+++ new/system-config-printer-1.5.7/po/nds.po   2015-04-29 13:55:16.000000000 
+0200
@@ -19,7 +19,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Zanata 3.5.1\n"
+"X-Generator: Zanata 3.6.2\n"
 
 #: ../asyncipp.py:473 ../authconn.py:447 ../authconn.py:449
 #: ../errordialogs.py:63 ../pysmb.py:90 ../pysmb.py:92
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/system-config-printer-1.5.6/po/nl.po 
new/system-config-printer-1.5.7/po/nl.po
--- old/system-config-printer-1.5.6/po/nl.po    2015-03-17 16:41:23.000000000 
+0100
+++ new/system-config-printer-1.5.7/po/nl.po    2015-04-29 13:55:16.000000000 
+0200
@@ -25,7 +25,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Zanata 3.5.1\n"
+"X-Generator: Zanata 3.6.2\n"
 
 #: ../asyncipp.py:473 ../authconn.py:447 ../authconn.py:449
 #: ../errordialogs.py:63 ../pysmb.py:90 ../pysmb.py:92
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/system-config-printer-1.5.6/po/nn.po 
new/system-config-printer-1.5.7/po/nn.po
--- old/system-config-printer-1.5.6/po/nn.po    2015-03-17 16:41:23.000000000 
+0100
+++ new/system-config-printer-1.5.7/po/nn.po    2015-04-29 13:55:16.000000000 
+0200
@@ -22,7 +22,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Zanata 3.5.1\n"
+"X-Generator: Zanata 3.6.2\n"
 
 #: ../asyncipp.py:473 ../authconn.py:447 ../authconn.py:449
 #: ../errordialogs.py:63 ../pysmb.py:90 ../pysmb.py:92
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/system-config-printer-1.5.6/po/or.po 
new/system-config-printer-1.5.7/po/or.po
--- old/system-config-printer-1.5.6/po/or.po    2015-03-17 16:41:23.000000000 
+0100
+++ new/system-config-printer-1.5.7/po/or.po    2015-04-29 13:55:16.000000000 
+0200
@@ -22,7 +22,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Zanata 3.5.1\n"
+"X-Generator: Zanata 3.6.2\n"
 
 #: ../asyncipp.py:473 ../authconn.py:447 ../authconn.py:449
 #: ../errordialogs.py:63 ../pysmb.py:90 ../pysmb.py:92
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/system-config-printer-1.5.6/po/pa.po 
new/system-config-printer-1.5.7/po/pa.po
--- old/system-config-printer-1.5.6/po/pa.po    2015-03-17 16:41:23.000000000 
+0100
+++ new/system-config-printer-1.5.7/po/pa.po    2015-04-29 13:55:16.000000000 
+0200
@@ -25,7 +25,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Zanata 3.5.1\n"
+"X-Generator: Zanata 3.6.2\n"
 
 #: ../asyncipp.py:473 ../authconn.py:447 ../authconn.py:449
 #: ../errordialogs.py:63 ../pysmb.py:90 ../pysmb.py:92
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/system-config-printer-1.5.6/po/pl.po 
new/system-config-printer-1.5.7/po/pl.po
--- old/system-config-printer-1.5.6/po/pl.po    2015-03-17 16:41:23.000000000 
+0100
+++ new/system-config-printer-1.5.7/po/pl.po    2015-04-29 13:55:16.000000000 
+0200
@@ -23,7 +23,7 @@
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
 "|| n%100>=20) ? 1 : 2);\n"
-"X-Generator: Zanata 3.5.1\n"
+"X-Generator: Zanata 3.6.2\n"
 
 #: ../asyncipp.py:473 ../authconn.py:447 ../authconn.py:449
 #: ../errordialogs.py:63 ../pysmb.py:90 ../pysmb.py:92
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/system-config-printer-1.5.6/po/pt.po 
new/system-config-printer-1.5.7/po/pt.po
--- old/system-config-printer-1.5.6/po/pt.po    2015-03-17 16:41:23.000000000 
+0100
+++ new/system-config-printer-1.5.7/po/pt.po    2015-04-29 13:55:16.000000000 
+0200
@@ -19,7 +19,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Zanata 3.5.1\n"
+"X-Generator: Zanata 3.6.2\n"
 
 #: ../asyncipp.py:473 ../authconn.py:447 ../authconn.py:449
 #: ../errordialogs.py:63 ../pysmb.py:90 ../pysmb.py:92
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/system-config-printer-1.5.6/po/pt_BR.po 
new/system-config-printer-1.5.7/po/pt_BR.po
--- old/system-config-printer-1.5.6/po/pt_BR.po 2015-03-17 16:41:23.000000000 
+0100
+++ new/system-config-printer-1.5.7/po/pt_BR.po 2015-04-29 13:55:16.000000000 
+0200
@@ -30,7 +30,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
-"X-Generator: Zanata 3.5.1\n"
+"X-Generator: Zanata 3.6.2\n"
 
 #: ../asyncipp.py:473 ../authconn.py:447 ../authconn.py:449
 #: ../errordialogs.py:63 ../pysmb.py:90 ../pysmb.py:92
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/system-config-printer-1.5.6/po/ro.po 
new/system-config-printer-1.5.7/po/ro.po
--- old/system-config-printer-1.5.6/po/ro.po    2015-03-17 16:41:23.000000000 
+0100
+++ new/system-config-printer-1.5.7/po/ro.po    2015-04-29 13:55:16.000000000 
+0200
@@ -20,7 +20,7 @@
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?"
 "2:1));\n"
-"X-Generator: Zanata 3.5.1\n"
+"X-Generator: Zanata 3.6.2\n"
 
 #: ../asyncipp.py:473 ../authconn.py:447 ../authconn.py:449
 #: ../errordialogs.py:63 ../pysmb.py:90 ../pysmb.py:92
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/system-config-printer-1.5.6/po/ru.po 
new/system-config-printer-1.5.7/po/ru.po
--- old/system-config-printer-1.5.6/po/ru.po    2015-03-17 16:41:23.000000000 
+0100
+++ new/system-config-printer-1.5.7/po/ru.po    2015-04-29 13:55:16.000000000 
+0200
@@ -34,7 +34,7 @@
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
 "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
-"X-Generator: Zanata 3.5.1\n"
+"X-Generator: Zanata 3.6.2\n"
 
 #: ../asyncipp.py:473 ../authconn.py:447 ../authconn.py:449
 #: ../errordialogs.py:63 ../pysmb.py:90 ../pysmb.py:92
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/system-config-printer-1.5.6/po/si.po 
new/system-config-printer-1.5.7/po/si.po
--- old/system-config-printer-1.5.6/po/si.po    2015-03-17 16:41:23.000000000 
+0100
+++ new/system-config-printer-1.5.7/po/si.po    2015-04-29 13:55:16.000000000 
+0200
@@ -19,7 +19,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Zanata 3.5.1\n"
+"X-Generator: Zanata 3.6.2\n"
 
 #: ../asyncipp.py:473 ../authconn.py:447 ../authconn.py:449
 #: ../errordialogs.py:63 ../pysmb.py:90 ../pysmb.py:92
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/system-config-printer-1.5.6/po/sk.po 
new/system-config-printer-1.5.7/po/sk.po
--- old/system-config-printer-1.5.6/po/sk.po    2015-03-17 16:41:23.000000000 
+0100
+++ new/system-config-printer-1.5.7/po/sk.po    2015-04-29 13:55:16.000000000 
+0200
@@ -23,7 +23,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
-"X-Generator: Zanata 3.5.1\n"
+"X-Generator: Zanata 3.6.2\n"
 
 #: ../asyncipp.py:473 ../authconn.py:447 ../authconn.py:449
 #: ../errordialogs.py:63 ../pysmb.py:90 ../pysmb.py:92
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/system-config-printer-1.5.6/po/sl.po 
new/system-config-printer-1.5.7/po/sl.po
--- old/system-config-printer-1.5.6/po/sl.po    2015-03-17 16:41:23.000000000 
+0100
+++ new/system-config-printer-1.5.7/po/sl.po    2015-04-29 13:55:16.000000000 
+0200
@@ -23,7 +23,7 @@
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n"
 "%100==4 ? 2 : 3);\n"
-"X-Generator: Zanata 3.5.1\n"
+"X-Generator: Zanata 3.6.2\n"
 
 #: ../asyncipp.py:473 ../authconn.py:447 ../authconn.py:449
 #: ../errordialogs.py:63 ../pysmb.py:90 ../pysmb.py:92
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/system-config-printer-1.5.6/po/sr.po 
new/system-config-printer-1.5.7/po/sr.po
--- old/system-config-printer-1.5.6/po/sr.po    2015-03-17 16:41:23.000000000 
+0100
+++ new/system-config-printer-1.5.7/po/sr.po    2015-04-29 13:55:17.000000000 
+0200
@@ -21,7 +21,7 @@
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
 "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
-"X-Generator: Zanata 3.5.1\n"
+"X-Generator: Zanata 3.6.2\n"
 
 #: ../asyncipp.py:473 ../authconn.py:447 ../authconn.py:449
 #: ../errordialogs.py:63 ../pysmb.py:90 ../pysmb.py:92
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/system-config-printer-1.5.6/po/s...@latin.po 
new/system-config-printer-1.5.7/po/s...@latin.po
--- old/system-config-printer-1.5.6/po/s...@latin.po    2015-03-17 
16:41:23.000000000 +0100
+++ new/system-config-printer-1.5.7/po/s...@latin.po    2015-04-29 
13:55:16.000000000 +0200
@@ -20,7 +20,7 @@
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
 "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
-"X-Generator: Zanata 3.5.1\n"
+"X-Generator: Zanata 3.6.2\n"
 
 #: ../asyncipp.py:473 ../authconn.py:447 ../authconn.py:449
 #: ../errordialogs.py:63 ../pysmb.py:90 ../pysmb.py:92
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/system-config-printer-1.5.6/po/sv.po 
new/system-config-printer-1.5.7/po/sv.po
--- old/system-config-printer-1.5.6/po/sv.po    2015-03-17 16:41:23.000000000 
+0100
+++ new/system-config-printer-1.5.7/po/sv.po    2015-04-29 13:55:17.000000000 
+0200
@@ -21,7 +21,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Zanata 3.5.1\n"
+"X-Generator: Zanata 3.6.2\n"
 
 #: ../asyncipp.py:473 ../authconn.py:447 ../authconn.py:449
 #: ../errordialogs.py:63 ../pysmb.py:90 ../pysmb.py:92
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/system-config-printer-1.5.6/po/ta.po 
new/system-config-printer-1.5.7/po/ta.po
--- old/system-config-printer-1.5.6/po/ta.po    2015-03-17 16:41:23.000000000 
+0100
+++ new/system-config-printer-1.5.7/po/ta.po    2015-04-29 13:55:17.000000000 
+0200
@@ -24,7 +24,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Zanata 3.5.1\n"
+"X-Generator: Zanata 3.6.2\n"
 
 #: ../asyncipp.py:473 ../authconn.py:447 ../authconn.py:449
 #: ../errordialogs.py:63 ../pysmb.py:90 ../pysmb.py:92
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/system-config-printer-1.5.6/po/te.po 
new/system-config-printer-1.5.7/po/te.po
--- old/system-config-printer-1.5.6/po/te.po    2015-03-17 16:41:23.000000000 
+0100
+++ new/system-config-printer-1.5.7/po/te.po    2015-04-29 13:55:17.000000000 
+0200
@@ -19,7 +19,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Zanata 3.5.1\n"
+"X-Generator: Zanata 3.6.2\n"
 
 #: ../asyncipp.py:473 ../authconn.py:447 ../authconn.py:449
 #: ../errordialogs.py:63 ../pysmb.py:90 ../pysmb.py:92
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/system-config-printer-1.5.6/po/th.po 
new/system-config-printer-1.5.7/po/th.po
--- old/system-config-printer-1.5.6/po/th.po    2015-03-17 16:41:23.000000000 
+0100
+++ new/system-config-printer-1.5.7/po/th.po    2015-04-29 13:55:17.000000000 
+0200
@@ -20,7 +20,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: Zanata 3.5.1\n"
+"X-Generator: Zanata 3.6.2\n"
 
 #: ../asyncipp.py:473 ../authconn.py:447 ../authconn.py:449
 #: ../errordialogs.py:63 ../pysmb.py:90 ../pysmb.py:92
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/system-config-printer-1.5.6/po/tr.po 
new/system-config-printer-1.5.7/po/tr.po
--- old/system-config-printer-1.5.6/po/tr.po    2015-03-17 16:41:23.000000000 
+0100
+++ new/system-config-printer-1.5.7/po/tr.po    2015-04-29 13:55:17.000000000 
+0200
@@ -20,7 +20,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
-"X-Generator: Zanata 3.5.1\n"
+"X-Generator: Zanata 3.6.2\n"
 
 #: ../asyncipp.py:473 ../authconn.py:447 ../authconn.py:449
 #: ../errordialogs.py:63 ../pysmb.py:90 ../pysmb.py:92
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/system-config-printer-1.5.6/po/uk.po 
new/system-config-printer-1.5.7/po/uk.po
--- old/system-config-printer-1.5.6/po/uk.po    2015-03-17 16:41:23.000000000 
+0100
+++ new/system-config-printer-1.5.7/po/uk.po    2015-04-29 13:55:17.000000000 
+0200
@@ -23,7 +23,7 @@
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
 "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
-"X-Generator: Zanata 3.5.1\n"
+"X-Generator: Zanata 3.6.2\n"
 
 #: ../asyncipp.py:473 ../authconn.py:447 ../authconn.py:449
 #: ../errordialogs.py:63 ../pysmb.py:90 ../pysmb.py:92
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/system-config-printer-1.5.6/po/vi.po 
new/system-config-printer-1.5.7/po/vi.po
--- old/system-config-printer-1.5.6/po/vi.po    2015-03-17 16:41:23.000000000 
+0100
+++ new/system-config-printer-1.5.7/po/vi.po    2015-04-29 13:55:17.000000000 
+0200
@@ -20,7 +20,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: Zanata 3.5.1\n"
+"X-Generator: Zanata 3.6.2\n"
 
 #: ../asyncipp.py:473 ../authconn.py:447 ../authconn.py:449
 #: ../errordialogs.py:63 ../pysmb.py:90 ../pysmb.py:92
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/system-config-printer-1.5.6/po/zh_CN.po 
new/system-config-printer-1.5.7/po/zh_CN.po
--- old/system-config-printer-1.5.6/po/zh_CN.po 2015-03-17 16:41:23.000000000 
+0100
+++ new/system-config-printer-1.5.7/po/zh_CN.po 2015-04-29 13:55:17.000000000 
+0200
@@ -30,7 +30,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: Zanata 3.5.1\n"
+"X-Generator: Zanata 3.6.2\n"
 
 #: ../asyncipp.py:473 ../authconn.py:447 ../authconn.py:449
 #: ../errordialogs.py:63 ../pysmb.py:90 ../pysmb.py:92
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/system-config-printer-1.5.6/po/zh_TW.po 
new/system-config-printer-1.5.7/po/zh_TW.po
--- old/system-config-printer-1.5.6/po/zh_TW.po 2015-03-17 16:41:23.000000000 
+0100
+++ new/system-config-printer-1.5.7/po/zh_TW.po 2015-04-29 13:55:17.000000000 
+0200
@@ -23,7 +23,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: Zanata 3.5.1\n"
+"X-Generator: Zanata 3.6.2\n"
 
 #: ../asyncipp.py:473 ../authconn.py:447 ../authconn.py:449
 #: ../errordialogs.py:63 ../pysmb.py:90 ../pysmb.py:92
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/system-config-printer-1.5.6/system-config-printer.appdata.xml.in 
new/system-config-printer-1.5.7/system-config-printer.appdata.xml.in
--- old/system-config-printer-1.5.6/system-config-printer.appdata.xml.in        
2015-03-17 16:19:09.000000000 +0100
+++ new/system-config-printer-1.5.7/system-config-printer.appdata.xml.in        
2015-04-23 17:05:58.000000000 +0200
@@ -3,8 +3,8 @@
   <id type="desktop">system-config-printer.desktop</id>
   <metadata_license>CC0</metadata_license>
   <project_license>GPL-2.0+</project_license>
-  <name>system-config-printer</name>
-  <summary>Configure printer queues</summary>
+  <_name>Print Settings</_name>
+  <_summary>Configure printer queues</_summary>
 
   <description>
     <_p>With system-config-printer you can add, edit and delete
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/system-config-printer-1.5.6/test_PhysicalDevice.py 
new/system-config-printer-1.5.7/test_PhysicalDevice.py
--- old/system-config-printer-1.5.6/test_PhysicalDevice.py      2015-03-17 
16:19:09.000000000 +0100
+++ new/system-config-printer-1.5.7/test_PhysicalDevice.py      2015-04-23 
17:22:28.000000000 +0200
@@ -34,3 +34,18 @@
                                    'device-make-and-model': "Abc Def",
                                    'device-id': "MFG:Abc;MDL:Def;"})
     phys.add_device (device)
+    devices = phys.get_devices ()
+    assert devices[0].uri.startswith ("hp:")
+
+    device = cupshelpers.Device("usb://Abc/Def",
+                                **{'device-class': "direct",
+                                   'device-make-and-model': "Abc Def",
+                                   'device-id': "MFG:Abc;MDL:Def;"})
+    phys = PhysicalDevice (device)
+    device = cupshelpers.Device("hp://Abc/Def",
+                                **{'device-class': "direct",
+                                   'device-make-and-model': "Abc Def",
+                                   'device-id': "MFG:Abc;MDL:Def;"})
+    phys.add_device (device)
+    devices = phys.get_devices ()
+    assert devices[0].uri.startswith ("hp")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/system-config-printer-1.5.6/udev/udev-configure-printer.c 
new/system-config-printer-1.5.7/udev/udev-configure-printer.c
--- old/system-config-printer-1.5.6/udev/udev-configure-printer.c       
2015-03-17 16:19:09.000000000 +0100
+++ new/system-config-printer-1.5.7/udev/udev-configure-printer.c       
2015-04-23 17:05:58.000000000 +0200
@@ -1016,8 +1016,8 @@
   uris->n_uris = uris_noserial.n_uris = all_uris.n_uris = 0;
   uris->uri = uris_noserial.uri = all_uris.uri = NULL;
 
-  /* Leave the bus to settle. */
-  sleep (1);
+  /* Leave the bus to settle (see e.g. bug #1206808). */
+  sleep (5);
 
   cups = httpConnectEncrypt (cupsServer (), ippPort(), cupsEncryption ());
   if (cups == NULL)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/system-config-printer-1.5.6/ui/ConnectDialog.ui 
new/system-config-printer-1.5.7/ui/ConnectDialog.ui
--- old/system-config-printer-1.5.6/ui/ConnectDialog.ui 2015-03-17 
16:19:09.000000000 +0100
+++ new/system-config-printer-1.5.7/ui/ConnectDialog.ui 2015-04-23 
17:05:58.000000000 +0200
@@ -24,7 +24,8 @@
             <property name="layout_style">end</property>
             <child>
               <object class="GtkButton" id="button16">
-                <property name="label" translatable="yes">Cancel</property>
+                <property name="label" translatable="yes">_Cancel</property>
+                <property name="use_underline">True</property>
                 <property name="visible">True</property>
                 <property name="can_focus">True</property>
                 <property name="can_default">True</property>
@@ -39,6 +40,7 @@
             <child>
               <object class="GtkButton" id="btnConnect">
                 <property name="label" translatable="yes">Connect</property>
+                <property name="use_underline">True</property>
                 <property name="visible">True</property>
                 <property name="can_focus">True</property>
                 <property name="can_default">True</property>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/system-config-printer-1.5.6/ui/ConnectingDialog.ui 
new/system-config-printer-1.5.7/ui/ConnectingDialog.ui
--- old/system-config-printer-1.5.6/ui/ConnectingDialog.ui      2015-03-17 
16:19:09.000000000 +0100
+++ new/system-config-printer-1.5.7/ui/ConnectingDialog.ui      2015-04-23 
17:05:58.000000000 +0200
@@ -23,7 +23,8 @@
             <property name="layout_style">end</property>
             <child>
               <object class="GtkButton" id="button17">
-                <property name="label" translatable="yes">Cancel</property>
+                <property name="label" translatable="yes">_Cancel</property>
+                <property name="use_underline">True</property>
                 <property name="visible">True</property>
                 <property name="can_focus">True</property>
                 <property name="can_default">True</property>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/system-config-printer-1.5.6/ui/InstallDialog.ui 
new/system-config-printer-1.5.7/ui/InstallDialog.ui
--- old/system-config-printer-1.5.6/ui/InstallDialog.ui 2015-03-17 
16:19:09.000000000 +0100
+++ new/system-config-printer-1.5.7/ui/InstallDialog.ui 2015-04-23 
17:05:58.000000000 +0200
@@ -22,6 +22,7 @@
             <child>
               <object class="GtkButton" id="button18">
                 <property name="label" translatable="yes">Close</property>
+                <property name="use_underline">True</property>
                 <property name="visible">True</property>
                 <property name="can_focus">True</property>
                 <property name="can_default">True</property>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/system-config-printer-1.5.6/ui/NewPrinterName.ui 
new/system-config-printer-1.5.7/ui/NewPrinterName.ui
--- old/system-config-printer-1.5.6/ui/NewPrinterName.ui        2015-03-17 
16:19:09.000000000 +0100
+++ new/system-config-printer-1.5.7/ui/NewPrinterName.ui        2015-04-23 
17:05:58.000000000 +0200
@@ -21,7 +21,8 @@
             <property name="layout_style">end</property>
             <child>
               <object class="GtkButton" id="btnDuplicateCancel">
-                <property name="label" translatable="yes">Cancel</property>
+                <property name="label" translatable="yes">_Cancel</property>
+                <property name="use_underline">True</property>
                 <property name="visible">True</property>
                 <property name="can_focus">True</property>
                 <property name="receives_default">False</property>
@@ -34,7 +35,8 @@
             </child>
             <child>
               <object class="GtkButton" id="btnDuplicateOk">
-                <property name="label" translatable="yes">OK</property>
+                <property name="label" translatable="yes">_OK</property>
+                <property name="use_underline">True</property>
                 <property name="visible">True</property>
                 <property name="can_focus">True</property>
                 <property name="can_default">True</property>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/system-config-printer-1.5.6/ui/NewPrinterWindow.ui 
new/system-config-printer-1.5.7/ui/NewPrinterWindow.ui
--- old/system-config-printer-1.5.6/ui/NewPrinterWindow.ui      2015-03-17 
16:19:09.000000000 +0100
+++ new/system-config-printer-1.5.7/ui/NewPrinterWindow.ui      2015-04-23 
17:05:58.000000000 +0200
@@ -1221,6 +1221,7 @@
                                         <child>
                                           <object class="GtkButton" 
id="btnNetworkFind">
                                             <property name="label" 
translatable="yes">Find</property>
+                                            <property 
name="use_underline">True</property>
                                             <property 
name="visible">True</property>
                                             <property 
name="sensitive">False</property>
                                             <property 
name="can_focus">True</property>
@@ -3101,7 +3102,8 @@
                 <property name="layout_style">end</property>
                 <child>
                   <object class="GtkButton" id="btnNPBack">
-                    <property name="label" translatable="yes">Back</property>
+                    <property name="label" translatable="yes">_Back</property>
+                    <property name="use_underline">True</property>
                     <property name="visible">True</property>
                     <property name="can_focus">True</property>
                     <property name="can_default">True</property>
@@ -3116,7 +3118,8 @@
                 </child>
                 <child>
                   <object class="GtkButton" id="btnNPCancel">
-                    <property name="label" translatable="yes">Cancel</property>
+                    <property name="label" 
translatable="yes">_Cancel</property>
+                    <property name="use_underline" >True</property>
                     <property name="visible">True</property>
                     <property name="can_focus">True</property>
                     <property name="can_default">True</property>
@@ -3131,7 +3134,8 @@
                 </child>
                 <child>
                   <object class="GtkButton" id="btnNPApply">
-                    <property name="label" translatable="yes">Apply</property>
+                    <property name="label" translatable="yes">_Apply</property>
+                    <property name="use_underline">True</property>
                     <property name="visible">True</property>
                     <property name="can_focus">True</property>
                     <property name="can_default">True</property>
@@ -3146,7 +3150,8 @@
                 </child>
                 <child>
                   <object class="GtkButton" id="btnNPForward">
-                    <property name="label" 
translatable="yes">Forward</property>
+                    <property name="label" 
translatable="yes">_Forward</property>
+                    <property name="use_underline">True</property>
                     <property name="visible">True</property>
                     <property name="can_focus">True</property>
                     <property name="can_default">True</property>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/system-config-printer-1.5.6/ui/PrinterPropertiesDialog.ui 
new/system-config-printer-1.5.7/ui/PrinterPropertiesDialog.ui
--- old/system-config-printer-1.5.6/ui/PrinterPropertiesDialog.ui       
2015-03-17 16:19:09.000000000 +0100
+++ new/system-config-printer-1.5.7/ui/PrinterPropertiesDialog.ui       
2015-04-23 17:05:58.000000000 +0200
@@ -149,7 +149,8 @@
             </child>
             <child>
               <object class="GtkButton" id="btnPrinterPropertiesApply">
-                <property name="label" translatable="yes">Apply</property>
+                <property name="label" translatable="yes">_Apply</property>
+                <property name="use_underline">True</property>
                 <property name="visible">True</property>
                 <property name="can_focus">True</property>
                 <property name="can_default">True</property>
@@ -163,7 +164,8 @@
             </child>
             <child>
               <object class="GtkButton" id="btnPrinterPropertiesCancel">
-                <property name="label" translatable="yes">Cancel</property>
+                <property name="label" translatable="yes">_Cancel</property>
+                <property name="use_underline">True</property>
                 <property name="visible">True</property>
                 <property name="can_focus">True</property>
                 <property name="can_default">True</property>
@@ -177,7 +179,8 @@
             </child>
             <child>
               <object class="GtkButton" id="btnPrinterPropertiesOK">
-                <property name="label" translatable="yes">OK</property>
+                <property name="label" translatable="yes">_OK</property>
+                <property name="use_underline">True</property>
                 <property name="visible">True</property>
                 <property name="can_focus">True</property>
                 <property name="can_default">True</property>
@@ -191,7 +194,8 @@
             </child>
             <child>
               <object class="GtkButton" id="btnPrinterPropertiesClose">
-                <property name="label" translatable="yes">Close</property>
+                <property name="label" translatable="yes">_Close</property>
+                <property name="use_underline">True</property>
                 <property name="visible">True</property>
                 <property name="can_focus">True</property>
                 <property name="can_default">True</property>
@@ -1013,7 +1017,8 @@
                             <property name="orientation">vertical</property>
                             <child>
                               <object class="GtkButton" id="btnPDelUser">
-                                <property name="label" 
translatable="yes">Delete</property>
+                                <property name="label" 
translatable="yes">_Delete</property>
+                                <property name="use_underline">True</property>
                                 <property name="visible">True</property>
                                 <property name="can_focus">True</property>
                                 <property 
name="receives_default">False</property>
@@ -1037,7 +1042,8 @@
                         </child>
                         <child>
                           <object class="GtkButton" id="btnPAddUser">
-                            <property name="label" 
translatable="yes">Add</property>
+                            <property name="label" 
translatable="yes">_Add</property>
+                            <property name="use_underline">True</property>
                             <property name="visible">True</property>
                             <property name="can_focus">True</property>
                             <property name="can_default">True</property>
@@ -3328,6 +3334,7 @@
                                             <child>
                                               <object class="GtkButton" 
id="btnNewJobOption">
                                                 <property name="label" 
translatable="yes">Add</property>
+                                                <property 
name="use_underline">True</property>
                                                 <property 
name="visible">True</property>
                                                 <property 
name="can_focus">True</property>
                                                 <property 
name="receives_default">False</property>
@@ -3449,6 +3456,7 @@
                                 <child>
                                   <object class="GtkButton" 
id="btnRefreshMarkerLevels">
                                     <property name="label" 
translatable="yes">Refresh</property>
+                                    <property 
name="use_underline">True</property>
                                     <property name="visible">True</property>
                                     <property name="can_focus">True</property>
                                     <property 
name="can_default">True</property>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/system-config-printer-1.5.6/ui/PrintersWindow.ui 
new/system-config-printer-1.5.7/ui/PrintersWindow.ui
--- old/system-config-printer-1.5.6/ui/PrintersWindow.ui        2015-03-17 
16:19:09.000000000 +0100
+++ new/system-config-printer-1.5.7/ui/PrintersWindow.ui        2015-04-23 
17:05:58.000000000 +0200
@@ -92,6 +92,7 @@
                         <child>
                           <object class="GtkImageMenuItem" id="about">
                             <property name="label" 
translatable="yes">About</property>
+                            <property name="use_underline">True</property>
                             <property 
name="use_action_appearance">False</property>
                             <property name="visible">True</property>
                             <property name="can_focus">False</property>
@@ -198,6 +199,7 @@
                     <child>
                       <object class="GtkButton" id="btnAddFirstPrinter">
                         <property name="label" 
translatable="yes">Add</property>
+                        <property name="use_underline">True</property>
                         <property name="use_action_appearance">False</property>
                         <property name="visible">True</property>
                         <property name="can_focus">True</property>
@@ -277,6 +279,7 @@
                     <child>
                       <object class="GtkButton" id="btnConnectNoService">
                         <property name="label" 
translatable="yes">Connect</property>
+                        <property name="use_underline">True</property>
                         <property name="use_action_appearance">False</property>
                         <property name="visible">True</property>
                         <property name="can_focus">True</property>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/system-config-printer-1.5.6/ui/SMBBrowseDialog.ui 
new/system-config-printer-1.5.7/ui/SMBBrowseDialog.ui
--- old/system-config-printer-1.5.6/ui/SMBBrowseDialog.ui       2015-03-17 
16:19:09.000000000 +0100
+++ new/system-config-printer-1.5.7/ui/SMBBrowseDialog.ui       2015-04-23 
17:05:58.000000000 +0200
@@ -58,7 +58,8 @@
             <property name="homogeneous">True</property>
             <child>
               <object class="GtkButton" id="btnSMBBrowseRefresh">
-                <property name="label" translatable="yes">Refresh</property>
+                <property name="label" translatable="yes">_Refresh</property>
+                <property name="use_underline">True</property>
                 <property name="visible">True</property>
                 <property name="can_focus">True</property>
                 <property name="can_default">True</property>
@@ -73,7 +74,8 @@
             </child>
             <child>
               <object class="GtkButton" id="btnSMBBrowseCancel">
-                <property name="label" translatable="yes">Cancel</property>
+                <property name="label" translatable="yes">_Cancel</property>
+                <property name="use_underline">True</property>
                 <property name="visible">True</property>
                 <property name="can_focus">True</property>
                 <property name="can_default">True</property>
@@ -88,7 +90,8 @@
             </child>
             <child>
               <object class="GtkButton" id="btnSMBBrowseOk">
-                <property name="label" translatable="yes">OK</property>
+                <property name="label" translatable="yes">_OK</property>
+                <property name="use_underline">True</property>
                 <property name="visible">True</property>
                 <property name="can_focus">True</property>
                 <property name="can_default">True</property>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/system-config-printer-1.5.6/ui/ServerSettingsDialog.ui 
new/system-config-printer-1.5.7/ui/ServerSettingsDialog.ui
--- old/system-config-printer-1.5.6/ui/ServerSettingsDialog.ui  2015-03-17 
16:19:09.000000000 +0100
+++ new/system-config-printer-1.5.7/ui/ServerSettingsDialog.ui  2015-04-23 
17:05:58.000000000 +0200
@@ -22,7 +22,8 @@
             <property name="layout_style">end</property>
             <child>
               <object class="GtkButton" id="cancelbutton2">
-                <property name="label" translatable="yes">Cancel</property>
+                <property name="label" translatable="yes">_Cancel</property>
+                <property name="use_underline">True</property>
                 <property name="visible">True</property>
                 <property name="can_focus">True</property>
                 <property name="can_default">True</property>
@@ -36,7 +37,8 @@
             </child>
             <child>
               <object class="GtkButton" id="okbutton4">
-                <property name="label" translatable="yes">OK</property>
+                <property name="label" translatable="yes">_OK</property>
+                <property name="use_underline">True</property>
                 <property name="visible">True</property>
                 <property name="can_focus">True</property>
                 <property name="can_default">True</property>
@@ -332,6 +334,7 @@
                                         <child>
                                           <object class="GtkButton" 
id="btAdvServerAdd">
                                             <property name="label" 
translatable="yes">Add</property>
+                                            <property 
name="use_underline">True</property>
                                             <property 
name="visible">True</property>
                                             <property 
name="can_focus">True</property>
                                             <property 
name="receives_default">True</property>
@@ -346,6 +349,7 @@
                                         <child>
                                           <object class="GtkButton" 
id="btAdvServerRemove">
                                             <property name="label" 
translatable="yes">Remove</property>
+                                            <property 
name="use_underline">True</property>
                                             <property 
name="visible">True</property>
                                             <property 
name="sensitive">False</property>
                                             <property 
name="can_focus">True</property>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/system-config-printer-1.5.6/ui/statusicon_popupmenu.ui 
new/system-config-printer-1.5.7/ui/statusicon_popupmenu.ui
--- old/system-config-printer-1.5.6/ui/statusicon_popupmenu.ui  2015-03-17 
16:19:09.000000000 +0100
+++ new/system-config-printer-1.5.7/ui/statusicon_popupmenu.ui  2015-04-23 
17:05:58.000000000 +0200
@@ -30,7 +30,8 @@
     </child>
     <child>
       <object class="GtkImageMenuItem" id="quit1">
-        <property name="label" translatable="yes">Quit</property>
+        <property name="label" translatable="yes">_Quit</property>
+        <property name="use_underline">True</property>
         <property name="visible">True</property>
         <property name="can_focus">False</property>
         <property name="use_underline">True</property>

++++++ system-config-printer.keyring ++++++
--- /var/tmp/diff_new_pack.Imvjb7/_old  2015-05-16 07:13:54.000000000 +0200
+++ /var/tmp/diff_new_pack.Imvjb7/_new  2015-05-16 07:13:54.000000000 +0200
@@ -45,3 +45,43 @@
 DmyT9AyUiRcD
 =skGP
 -----END PGP PUBLIC KEY BLOCK-----
+-----BEGIN PGP PUBLIC KEY BLOCK-----
+Version: GnuPG v2
+
+mQENBFUxGaABCACej3m5DtNx0dTRelAEi8RQvkDuKjXMmRy2cqo/QAal14Ps5WmR
+Cz0XmCJoH8pEz0Qe9Sr60kjDAhafQWGq6X5XkG3srIK7ajHrmelvOG04SMobU0s8
+AypAH89SgXXIEysqf8SNm0SoYpdYDbqWaUTrEzDekrtPq4YlfOlUz+phOCAboJXe
+gTe+wkEf1ycui5syr8daI/v2u/YDpgsBWB2zAE6PTvyZBqmtyYNDHshdKVMcZ590
+JDKQ6GWbE+5J5rKECNJ9p8B0feJrA8Meb8yCQPTn3dCw/kBnodDQghIDfoBaQpqY
+Kbmy680zEy70clUiMAg5w5KqipOfKvM7/lVNABEBAAG0HFRpbSBXYXVnaCA8dGlt
+QGN5YmVyZWxrLm5ldD6JATcEEwEIACEFAlUxGdMCGwMFCwkIBwIGFQgJCgsCBBYC
+AwECHgECF4AACgkQt8INB5SR6mOTygf7BeYSs0twAIzPDbBIE/yMPF11+mbDHOX+
+ODLEEzzwQrV6QMe1S+5ibtTJPn0fPrNihEkr0tDflHzGwP7LRElPKow9HgTnBZoR
+GNrBAtJKlN80y5THWme2L9Q4NT+8jG+rxyyFJTWZxcjQaX+7lM1yAgrwelEwdyrw
+lfLxDB7y0YpDPL3SLuMC2AawBr/bZOaorVZmi2XyLC4hsA5/DRrq0Xeyr6Nvms+8
+j/7lRjvc04RzPU6QZyZ1B7nFHb2Zr0mQ37QS0wNiOiTp4NxgmpZG/DLqGHnSBsJc
+e5tOeAL9g5NoB57/IC6RjFNBGMp0TQAQ+k6JDlZDAvEMpFd7PBLaLYhGBBARAgAG
+BQJVMSmPAAoJEO3nxuaBAwm9GqUAn2QzjPrp8COLOOIqa+Sc2EJkHjgdAJ9bR3Po
+oe9aMsry9Df1bDFgxOG/qrQdVGltIFdhdWdoIDx0d2F1Z2hAcmVkaGF0LmNvbT6J
+ATcEEwEIACEFAlUxGaACGwMFCwkIBwIGFQgJCgsCBBYCAwECHgECF4AACgkQt8IN
+B5SR6mMNDAgAl9Ejov8B1Y6OGYxAzzFZr8aZ/aGhSpDMAq6/IYWlQnNZ+2a0X099
+j2XCE32vN73Ypm+Tw59XIIV905eYYAd95nuKrUkEfEAU570+So6T7q1pN5s8u7vy
+rEoKR4I6jDSu4+nAQ/FZ/iu7PB5fowMfpMaoxJlaWZbE5nbfdm+Bw/Gfr19VL1ca
+GRuOTbFLrd0oKf45QDO6GLAuBDoWB5QwJBgL6Byq6Asx6z03cesM4kB1VEJzSJ6V
+FbExPT+FqGvJth8n2JQsi0rbWToVNBQtErk9A87kvlmBFlnkRkeSZX78usqQa0Z3
+RwT2u7xaBQK650UVt75lWZDoUIpbTg6wf4hGBBARAgAGBQJVMSmVAAoJEO3nxuaB
+Awm9tv0An0gTMYAPblacwAec49cbKCt3CBHCAJ9JdQJisyWA+FHdevvwibSkhhML
+XrkBDQRVMRmgAQgA6uU43S5QrgUF9i0s1Bw7FfYsMA/2coe/TvsWf/bEpDMWd2aa
+9lsbnR6mymjHCS7ZGlvaZ97eO2e4bD5DiAb2fPrFX0MMsqKTFM5z+IK/tCSDCreg
+v8Js95eN6cGm8BfXyrq4ooKxAy85e8SzSx08jwLdAGMHoqM5+JoaD2KfYSFvLx7d
+gXjEqBWGD57rBUrwQ7i64bHBlphN1ttOyJj58y7/fhwAM9zl53Yb/6oDdMpb3DIl
+lrl6FUslCMvWdO7KI7vwkVTUnedNZKa0d3C2DKx14JjG/W+1gltG+pf97XdPlxGe
+WXoGA+otbsBh/zdID1v+7LCt9oN+vaoGgsLpiwARAQABiQEfBBgBCAAJBQJVMRmg
+AhsMAAoJELfCDQeUkepjvvgIAJOP/RwbMykz+ndAzU5SnvL7GAfY52cfq2upM05N
+pvaDBfWq9gaoVQ01byfkJFLykCeMytmh4uWNHgYtkWfF69mFWg+TlIPDjucR4MB4
+C9/wV0QehcOL8YyF75Y53CF1ZIy/FN2BiWeDW7WGAWEx+alUiyM0L+wy1zxuMbdX
+HbE7lvys2HTvgAnB34H8aqod4A5AYBDFjnWxgsTX5PUStjQZJ7yVLgD5VCNtaAcf
+3ZbTonnLJ519orEx/qPijjQU+YPrzmSWC4/V7yZOumk48THjJ+njtvB69wtAltc7
+5TfZGRNw8a0IR8IpmdbegCcQQFeBO0Dhk08r+zbGSimCYaI=
+=ISXp
+-----END PGP PUBLIC KEY BLOCK-----


Reply via email to