Hello community,

here is the log from the commit of package alacarte for openSUSE:Factory 
checked in at 2013-09-11 10:58:16
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/alacarte (Old)
 and      /work/SRC/openSUSE:Factory/.alacarte.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "alacarte"

Changes:
--------
--- /work/SRC/openSUSE:Factory/alacarte/alacarte.changes        2013-04-02 
11:38:20.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.alacarte.new/alacarte.changes   2013-09-11 
10:58:17.000000000 +0200
@@ -1,0 +2,9 @@
+Tue Sep  3 14:09:49 UTC 2013 - dims...@opensuse.org
+
+- Update to version 3.9.91:
+  + Fix Unicode/binary screwups causing UnicodeDecodeErrors.
+  + Add python3 compatibility.
+  + Don't leave behind stale .desktop files.
+  + Actually quit when hitting the close button.
+
+-------------------------------------------------------------------

Old:
----
  alacarte-3.7.90.tar.xz

New:
----
  alacarte-3.9.91.tar.xz

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

Other differences:
------------------
++++++ alacarte.spec ++++++
--- /var/tmp/diff_new_pack.KS9HUu/_old  2013-09-11 10:58:18.000000000 +0200
+++ /var/tmp/diff_new_pack.KS9HUu/_new  2013-09-11 10:58:18.000000000 +0200
@@ -17,13 +17,13 @@
 
 
 Name:           alacarte
-Version:        3.7.90
+Version:        3.9.91
 Release:        0
 Url:            http://www.realistanew.com/projects/alacarte
 Summary:        Menu editor for GNOME
 License:        LGPL-2.1+
 Group:          System/GUI/GNOME
-Source:         
http://download.gnome.org/sources/alacarte/3.7/%{name}-%{version}.tar.xz
+Source:         
http://download.gnome.org/sources/alacarte/3.9/%{name}-%{version}.tar.xz
 # PATCH-NEEDS-REBASE alacarte_system_edit_mode.patch sree...@novell.com (was 
PATCH-FEATURE-OPENSUSE)
 Patch1:         alacarte_system_edit_mode.patch
 # PATCH-FIX-UPSTREAM alacarte-nohelp.patch bnc#779062 bgo#677332 
dims...@opensuse.org -- Do not show help button, as there is no help in alacarte

++++++ alacarte-3.7.90.tar.xz -> alacarte-3.9.91.tar.xz ++++++
++++ 1777 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/alacarte-3.7.90/Alacarte/ItemEditor.py 
new/alacarte-3.9.91/Alacarte/ItemEditor.py
--- old/alacarte-3.7.90/Alacarte/ItemEditor.py  2013-02-16 02:04:56.000000000 
+0100
+++ new/alacarte-3.9.91/Alacarte/ItemEditor.py  2013-08-30 00:32:55.000000000 
+0200
@@ -20,7 +20,7 @@
 import os
 import gi
 gi.require_version('Gtk', '3.0')
-from gi.repository import GLib, Gtk
+from gi.repository import GLib, GObject, Gtk
 from Alacarte import config, util
 
 _ = gettext.gettext
@@ -91,10 +91,15 @@
             self.image.props.file = chooser.get_filename()
         chooser.destroy()
 
-class ItemEditor(object):
+class ItemEditor(GObject.GObject):
     ui_file = None
 
+    __gsignals__ = {
+        'response': (GObject.SIGNAL_RUN_FIRST, None, (bool,))
+    }
+
     def __init__(self, parent, item_path):
+        GObject.GObject.__init__(self)
         self.builder = Gtk.Builder()
         self.builder.add_from_file(os.path.join(config.pkgdatadir, 
self.ui_file))
 
@@ -158,6 +163,7 @@
         if response == Gtk.ResponseType.OK:
             self.save()
         self.dialog.destroy()
+        self.emit('response', response == Gtk.ResponseType.OK)
 
 class LauncherEditor(ItemEditor):
     ui_file = 'launcher-editor.ui'
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/alacarte-3.7.90/Alacarte/MainWindow.py 
new/alacarte-3.9.91/Alacarte/MainWindow.py
--- old/alacarte-3.7.90/Alacarte/MainWindow.py  2013-02-16 01:20:27.000000000 
+0100
+++ new/alacarte-3.9.91/Alacarte/MainWindow.py  2013-09-03 15:23:58.000000000 
+0200
@@ -20,11 +20,9 @@
 import gi
 gi.require_version('Gtk', '3.0')
 from gi.repository import Gtk, GObject, Gio, GdkPixbuf, Gdk, GMenu, GLib
-import sys
 import cgi
 import os
 import gettext
-import subprocess
 import shutil
 
 from Alacarte import config
@@ -210,8 +208,6 @@
     def loadMenu(self, iters, parent=None):
         for menu, show in self.editor.getMenus(parent):
             name = cgi.escape(menu.get_name())
-            if not show:
-                name = "<small><i>%s</i></small>" % (name,)
 
             icon = util.getIcon(menu)
             iters[menu] = self.menu_store.append(iters[parent], (icon, name, 
menu))
@@ -231,11 +227,12 @@
                 assert False, 'should not be reached'
 
             name = cgi.escape(name)
-            if not show:
-                name = "<small><i>%s</i></small>" % (name,)
 
             self.item_store.append((show, icon, name, item))
 
+    def on_delete_event(self, widget, event):
+        self.quit()
+
     def on_new_menu_button_clicked(self, button):
         menu_tree = self.tree.get_object('menu_tree')
         menus, iter = menu_tree.get_selection().get_selected()
@@ -307,12 +304,19 @@
             file_type = 'Menu'
             Editor = DirectoryEditor
 
+        copied = False
         if not os.path.isfile(file_path):
             shutil.copy(item.get_desktop_file_path(), file_path)
+            copied = True
 
         editor = Editor(self.main_window, file_path)
+        editor.connect('response', self.on_editor_response, file_path if 
copied else None)
         editor.run()
 
+    def on_editor_response(self, editor, modified, file_path):
+        if not modified and file_path is not None:
+            os.remove(file_path)
+
     def on_menu_tree_cursor_changed(self, treeview):
         selection = treeview.get_selection()
         if selection is None:
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/alacarte-3.7.90/Alacarte/MenuEditor.py 
new/alacarte-3.9.91/Alacarte/MenuEditor.py
--- old/alacarte-3.7.90/Alacarte/MenuEditor.py  2013-02-16 02:23:57.000000000 
+0100
+++ new/alacarte-3.9.91/Alacarte/MenuEditor.py  2013-08-30 00:40:01.000000000 
+0200
@@ -41,7 +41,7 @@
     def loadDOM(self):
         try:
             self.dom = xml.dom.minidom.parse(self.path)
-        except (IOError, xml.parsers.expat.ExpatError), e:
+        except (IOError, xml.parsers.expat.ExpatError) as e:
             self.dom = 
xml.dom.minidom.parseString(util.getUserMenuXml(self.tree))
         util.removeWhitespaceNodes(self.dom)
 
@@ -58,14 +58,12 @@
 
     def restoreToSystem(self):
         self.restoreTree(self.tree.get_root_directory())
-        path = os.path.join(util.getUserMenuPath(), 
os.path.basename(self.tree.get_canonical_menu_path()))
         try:
-            os.unlink(path)
+            os.remove(self.path)
         except OSError:
             pass
 
         self.loadDOM()
-        self.save()
 
     def restoreTree(self, menu):
         item_iter = menu.iter()
@@ -263,7 +261,7 @@
 
         contents, length = keyfile.to_data()
 
-        with codecs.open(out_path, 'w', 'utf8') as f:
+        with open(out_path, 'w') as f:
             f.write(contents)
 
         self.addItem(new_parent, file_id, dom)
@@ -404,7 +402,7 @@
         contents, length = keyfile.to_data()
 
         path = os.path.join(util.getUserItemPath(), file_id)
-        with codecs.open(path, 'w', 'utf8') as f:
+        with open(path, 'w') as f:
             f.write(contents)
 
         return file_id
@@ -426,7 +424,7 @@
         contents, length = keyfile.to_data()
 
         path = os.path.join(util.getUserDirectoryPath(), file_id)
-        with codecs.open(path, 'w', 'utf8') as f:
+        with open(path, 'w') as f:
             f.write(contents)
         return file_id
 
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/alacarte-3.7.90/Alacarte/util.py new/alacarte-3.9.91/Alacarte/util.py
--- old/alacarte-3.7.90/Alacarte/util.py        2013-02-16 01:18:31.000000000 
+0100
+++ new/alacarte-3.9.91/Alacarte/util.py        2013-08-30 00:40:01.000000000 
+0200
@@ -28,7 +28,7 @@
 KEY_FILE_FLAGS = GLib.KeyFileFlags.KEEP_COMMENTS | 
GLib.KeyFileFlags.KEEP_TRANSLATIONS
 
 def fillKeyFile(keyfile, items):
-    for key, item in items.iteritems():
+    for key, item in items.items():
         if item is None:
             continue
 
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/alacarte-3.7.90/ChangeLog new/alacarte-3.9.91/ChangeLog
--- old/alacarte-3.7.90/ChangeLog       2013-02-28 03:10:40.000000000 +0100
+++ new/alacarte-3.9.91/ChangeLog       2013-09-03 15:43:45.000000000 +0200
@@ -1,7 +1,39 @@
-374d20e (HEAD, master) Release 3.7.90
+6824432 (HEAD, master) Release 3.9.91
 M      NEWS
 M      configure.ac
-d7a8469 (origin/master, origin/HEAD) Updated Norwegian bokmål translation
+5c1cdb7 (origin/master, origin/HEAD) Remove unused imports
+M      Alacarte/MainWindow.py
+274d46d Add python3 compatibility
+M      Alacarte/MenuEditor.py
+M      Alacarte/util.py
+d1920ec Quit on delete event
+M      Alacarte/MainWindow.py
+M      data/alacarte.ui
+fab91e9 Do not leave behind stale .desktop files
+M      Alacarte/ItemEditor.py
+M      Alacarte/MainWindow.py
+9100bfc Updated Russian translation
+M      po/ru.po
+f1c0f97 MenuEditor: Consistently use os.remove
+M      Alacarte/MenuEditor.py
+e8f3c73 MenuEditor: Don't save after restoring default conditions
+M      Alacarte/MenuEditor.py
+0d7f351 MenuEditor: Don't write binary data as unicode
+M      Alacarte/MenuEditor.py
+ab7684a MainWindow: Remove special formatting for hidden items
+M      Alacarte/MainWindow.py
+8a7c5af Updated Greek translation
+M      po/el.po
+c7ba207 Updated Belarusian translation.
+M      po/be.po
+0f071a3 Finnish translation update by Jiri Grönroos
+M      po/fi.po
+bd6088f Updated Danish translation
+M      po/da.po
+374d20e (tag: 3.7.90) Release 3.7.90
+M      NEWS
+M      configure.ac
+d7a8469 Updated Norwegian bokmål translation
 M      po/nb.po
 7abbf5f Updated Serbian translation
 M      po/sr.po
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/alacarte-3.7.90/NEWS new/alacarte-3.9.91/NEWS
--- old/alacarte-3.7.90/NEWS    2013-02-28 03:09:18.000000000 +0100
+++ new/alacarte-3.9.91/NEWS    2013-09-03 15:25:48.000000000 +0200
@@ -1,4 +1,21 @@
 ==============
+Version 3.9.91
+==============
+
+Bugs Fixed:
+        * Fix Unicode/binary screwups causing UnicodeDecodeErrors
+        * Add python3 compatibility
+        * Don't leave behind stale .desktop files
+        * Actually quit when hitting the close button
+
+Translations updates:
+        * Dimitris Spingos
+        * Ihar Hrachyshka
+        * Joe Hansen
+        * Stas Solovey
+        * Ville-Pekka Vainio
+
+==============
 Version 3.7.90
 ==============
 
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/alacarte-3.7.90/configure.ac new/alacarte-3.9.91/configure.ac
--- old/alacarte-3.7.90/configure.ac    2013-02-28 03:06:34.000000000 +0100
+++ new/alacarte-3.9.91/configure.ac    2013-09-03 15:43:26.000000000 +0200
@@ -1,7 +1,7 @@
 dnl -*- Mode: autoconf -*-
 dnl Process this file with autoconf to produce a configure script.
 AC_PREREQ(2.53)
-AC_INIT(alacarte, 3.7.90, 
http://bugzilla.gnome.org/enter_bug.cgi?product=alacarte)
+AC_INIT(alacarte, 3.9.91, 
http://bugzilla.gnome.org/enter_bug.cgi?product=alacarte)
 m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])])
 AC_CONFIG_SRCDIR(alacarte.in)
 AC_CONFIG_HEADERS([config.h])
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/alacarte-3.7.90/data/alacarte.ui new/alacarte-3.9.91/data/alacarte.ui
--- old/alacarte-3.7.90/data/alacarte.ui        2013-02-16 01:20:27.000000000 
+0100
+++ new/alacarte-3.9.91/data/alacarte.ui        2013-09-03 15:23:58.000000000 
+0200
@@ -39,6 +39,7 @@
     <property name="window_position">center</property>
     <property name="default_width">675</property>
     <property name="default_height">530</property>
+    <signal name="delete_event" handler="on_delete_event" swapped="no"/>
     <child>
       <object class="GtkVBox" id="dialog-vbox5">
         <property name="visible">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/alacarte-3.7.90/po/be.po new/alacarte-3.9.91/po/be.po
--- old/alacarte-3.7.90/po/be.po        2012-05-01 20:38:40.000000000 +0200
+++ new/alacarte-3.9.91/po/be.po        2013-08-30 00:32:55.000000000 +0200
@@ -3,8 +3,9 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: alacarte.master\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-07-24 22:07+0300\n"
+"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?";
+"product=alacarte&keywords=I18N+L10N&component=general\n"
+"POT-Creation-Date: 2013-01-11 06:39+0000\n"
 "PO-Revision-Date: 2011-07-24 22:07+0300\n"
 "Last-Translator: Ihar Hrachyshka <ihar.hrachys...@gmail.com>\n"
 "Language-Team: Belarusian <i18n-bel-gn...@googlegroups.com>\n"
@@ -13,66 +14,83 @@
 "Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: ../Alacarte/MainWindow.py:164
+#: ../Alacarte/MainWindow.py:159
 msgid "Name"
 msgstr "Назва"
 
-#: ../Alacarte/MainWindow.py:180
+#: ../Alacarte/MainWindow.py:172
 msgid "Show"
 msgstr "Паказаць"
 
-#: ../Alacarte/MainWindow.py:188
+#: ../Alacarte/MainWindow.py:180
 msgid "Item"
 msgstr "Элемент"
 
-#: ../data/alacarte.desktop.in.in.h:1
-msgid "Change which applications are shown on the main menu"
-msgstr "Вызначыць праграмы, якія трэба паказваць у галоўным меню"
+#: ../Alacarte/ItemEditor.py:85
+msgid "Choose an icon"
+msgstr "Выберыце значок"
+
+#: ../Alacarte/ItemEditor.py:198
+msgid "Choose a command"
+msgstr "Выберыце загад"
 
-#: ../data/alacarte.desktop.in.in.h:2 ../data/alacarte.ui.h:2
+#: ../data/alacarte.desktop.in.in.h:1 ../data/alacarte.ui.h:1
 msgid "Main Menu"
 msgstr "Галоўнае меню"
 
-#: ../data/alacarte.ui.h:1
-msgid "It_ems:"
-msgstr "_Элементы:"
+#: ../data/alacarte.desktop.in.in.h:2
+msgid "Add or remove applications from the main menu"
+msgstr "Рэдагаванне галоўнага меню праграм"
+
+#: ../data/alacarte.ui.h:2
+msgid "Restore the default menu layout"
+msgstr "Аднавіць прадвызначаны склад меню"
 
 #: ../data/alacarte.ui.h:3
-msgid "Move Down"
-msgstr "Пасунуць ніжэй"
+msgid "_New Menu"
+msgstr "_Новае меню"
 
 #: ../data/alacarte.ui.h:4
-msgid "Move Up"
-msgstr "Пасунуць вышэй"
-
-#: ../data/alacarte.ui.h:5
 msgid "Ne_w Item"
 msgstr "_Новы элемент"
 
-#: ../data/alacarte.ui.h:6
+#: ../data/alacarte.ui.h:5
 msgid "New _Separator"
 msgstr "Новы _падзяляльнік"
 
-#: ../data/alacarte.ui.h:7
-msgid "Restore the default menu layout"
-msgstr "Аднавіць прадвызначаны склад меню"
+#: ../data/alacarte.ui.h:6
+msgid "Move Down"
+msgstr "Пасунуць ніжэй"
 
-#: ../data/alacarte.ui.h:8
-msgid "Revert Changes?"
-msgstr "Адрабіць змены назад?"
-
-#: ../data/alacarte.ui.h:9
-msgid "Revert all menus to original settings?"
-msgstr "Адрабіць склад усіх меню да пачатковай канфігурацыі?"
-
-#: ../data/alacarte.ui.h:10
-msgid "_Menus:"
-msgstr "_Меню:"
+#: ../data/alacarte.ui.h:7
+msgid "Move Up"
+msgstr "Пасунуць вышэй"
 
-#: ../data/alacarte.ui.h:11
-msgid "_New Menu"
-msgstr "_Новае меню"
+#: ../data/launcher-editor.ui.h:1
+msgid "Launcher Properties"
+msgstr "Уласцівасці стартара"
+
+#: ../data/launcher-editor.ui.h:2 ../data/directory-editor.ui.h:2
+msgid "Name:"
+msgstr "Назва:"
+
+#: ../data/launcher-editor.ui.h:3
+msgid "Command:"
+msgstr "Загад:"
+
+#: ../data/launcher-editor.ui.h:4 ../data/directory-editor.ui.h:3
+msgid "Comment:"
+msgstr "Каментарый:"
+
+#: ../data/launcher-editor.ui.h:5
+msgid "Browse"
+msgstr "Аглядзець"
+
+#: ../data/launcher-editor.ui.h:6
+msgid "Launch in Terminal?"
+msgstr "Запускаць у тэрмінале?"
+
+#: ../data/directory-editor.ui.h:1
+msgid "Directory Properties"
+msgstr "Уласцівасці каталога"
 
-#: ../data/alacarte.ui.h:12
-msgid "_Revert to Original"
-msgstr "_Адрабіць да пачатковай канфігурацыі"
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/alacarte-3.7.90/po/da.po new/alacarte-3.9.91/po/da.po
--- old/alacarte-3.7.90/po/da.po        2012-05-01 20:38:40.000000000 +0200
+++ new/alacarte-3.9.91/po/da.po        2013-08-30 00:32:55.000000000 +0200
@@ -1,82 +1,100 @@
 # Danish translation of alacarte.
-# Copyright (C) 2006, 2007 Free Software Foundation, Inc.
+# Copyright (C) 2013 Free Software Foundation, Inc.
 # This file is distributed under the same license as the alacarte
 # package.
 #
 # Peter Bach <bach.pe...@gmail.com>, 2007.
+# Joe Hansen <joedalt...@yahoo.dk>, 2013.
 #
 msgid ""
 msgstr ""
 "Project-Id-Version: alacarte\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-02-18 20:44+0100\n"
-"PO-Revision-Date: 2007-02-18 19:57+0200\n"
-"Last-Translator: Peter bach <bach.pe...@gmail.com>\n"
+"POT-Creation-Date: 2013-03-12 21:07+0100\n"
+"PO-Revision-Date: 2013-03-10 19:57+0200\n"
+"Last-Translator: Joe Hansen <joedalt...@yahoo.dk>\n"
 "Language-Team: Danish <da...@dansk-gruppen.dk>\n"
+"Language: da\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: ../Alacarte/MainWindow.py:167
+#: ../Alacarte/MainWindow.py:160
 msgid "Name"
 msgstr "Navn"
 
-#: ../Alacarte/MainWindow.py:183
+#: ../Alacarte/MainWindow.py:173
 msgid "Show"
 msgstr "Vis"
 
-#: ../Alacarte/MainWindow.py:191
+#: ../Alacarte/MainWindow.py:181
 msgid "Item"
 msgstr "Punkt"
 
-#: ../alacarte.desktop.in.in.h:1
-msgid "Change which applications are shown on the main menu"
-msgstr "Tilret hvilke programmer der vises i hovedmenuen"
+#: ../Alacarte/ItemEditor.py:85
+msgid "Choose an icon"
+msgstr "Vælg et ikon"
+
+#: ../Alacarte/ItemEditor.py:198
+msgid "Choose a command"
+msgstr "Vælg en kommando"
 
-#: ../alacarte.desktop.in.in.h:2 ../alacarte.glade.h:2
+#: ../data/alacarte.desktop.in.in.h:1 ../data/alacarte.ui.h:1
 msgid "Main Menu"
 msgstr "Hovedmenu"
 
-#: ../alacarte.glade.h:1
-msgid "It_ems:"
-msgstr "Punkt_er:"
+#: ../data/alacarte.desktop.in.in.h:2
+msgid "Add or remove applications from the main menu"
+msgstr "Tilføj eller fjern programmer fra hovedmenuen"
 
-#: ../alacarte.glade.h:3
-msgid "Move Down"
-msgstr "Flyt ned"
+#: ../data/alacarte.ui.h:2
+msgid "Restore the default menu layout"
+msgstr "Genskab det oprindelige menuudseende"
 
-#: ../alacarte.glade.h:4
-msgid "Move Up"
-msgstr "Flyt op"
+#: ../data/alacarte.ui.h:3
+msgid "_New Menu"
+msgstr "_Ny menu"
 
-#: ../alacarte.glade.h:5
+#: ../data/alacarte.ui.h:4
 msgid "Ne_w Item"
 msgstr "_Nyt punkt"
 
-#: ../alacarte.glade.h:6
+#: ../data/alacarte.ui.h:5
 msgid "New _Separator"
 msgstr "Ny _separator"
 
-#: ../alacarte.glade.h:7
-msgid "Restore the default menu layout"
-msgstr "Genskab det oprindelige menuudseende"
-
-#: ../alacarte.glade.h:8
-msgid "Revert Changes?"
-msgstr "Fortryd ændringer?"
-
-#: ../alacarte.glade.h:9
-msgid "Revert all menus to original settings?"
-msgstr "Gendan alle menuer til standardopsætninger?"
-
-#: ../alacarte.glade.h:10
-msgid "_Menus:"
-msgstr "_Menuer:"
+#: ../data/alacarte.ui.h:6
+msgid "Move Down"
+msgstr "Flyt ned"
 
-#: ../alacarte.glade.h:11
-msgid "_New Menu"
-msgstr "_Ny menu"
+#: ../data/alacarte.ui.h:7
+msgid "Move Up"
+msgstr "Flyt op"
 
-#: ../alacarte.glade.h:12
-msgid "_Revert to Original"
-msgstr "Gendan til original"
+#: ../data/launcher-editor.ui.h:1
+msgid "Launcher Properties"
+msgstr "Egenskaber for opstarter"
+
+#: ../data/launcher-editor.ui.h:2 ../data/directory-editor.ui.h:2
+msgid "Name:"
+msgstr "Navn:"
+
+#: ../data/launcher-editor.ui.h:3
+msgid "Command:"
+msgstr "Kommando:"
+
+#: ../data/launcher-editor.ui.h:4 ../data/directory-editor.ui.h:3
+msgid "Comment:"
+msgstr "Kommentar:"
+
+#: ../data/launcher-editor.ui.h:5
+msgid "Browse"
+msgstr "Gennemse"
+
+#: ../data/launcher-editor.ui.h:6
+msgid "Launch in Terminal?"
+msgstr "Kør i terminal?"
+
+#: ../data/directory-editor.ui.h:1
+msgid "Directory Properties"
+msgstr "Mappeegenskaber"
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/alacarte-3.7.90/po/el.po new/alacarte-3.9.91/po/el.po
--- old/alacarte-3.7.90/po/el.po        2012-07-17 18:52:41.000000000 +0200
+++ new/alacarte-3.9.91/po/el.po        2013-08-30 00:32:55.000000000 +0200
@@ -2,76 +2,116 @@
 # Copyright (c) (c) 2006 Canonical Ltd, and Rosetta Contributors 2006
 # This file is distributed under the same license as the alacarte package.
 # Kostas Papadimas <p...@gmx.net>, 2006.
-#
+# Dimitris Spingos (Δημήτρης Σπίγγος) <dmtr...@gmail.com>, 2013.
 msgid ""
 msgstr ""
 "Project-Id-Version: alacarte\n"
-"Report-Msgid-Bugs-To: 
http://bugzilla.gnome.org/enter_bug.cgi?product=alacarte&keywords=I18N+L10N&component=general\n";
-"POT-Creation-Date: 2012-06-20 23:01+0000\n"
-"PO-Revision-Date: 2012-06-29 14:14+0200\n"
-"Last-Translator: Tom Tryfonidis <tomt...@gmail.com>\n"
-"Language-Team: Greek <t...@gnome.gr>\n"
+"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?product=alacar";
+"te&keywords=I18N+L10N&component=general\n"
+"POT-Creation-Date: 2013-01-11 06:39+0000\n"
+"PO-Revision-Date: 2013-04-10 17:35+0300\n"
+"Last-Translator: Dimitris Spingos (Δημήτρης Σπίγγος) <dmtr...@gmail.com>\n"
+"Language-Team: t...@gnome.gr\n"
+"Language: el\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Virtaal 0.7.1\n"
+"X-Project-Style: gnome\n"
 
-#: ../Alacarte/MainWindow.py:152
+#: ../Alacarte/MainWindow.py:159
 msgid "Name"
 msgstr "Όνομα"
 
-#: ../Alacarte/MainWindow.py:165
+#: ../Alacarte/MainWindow.py:172
 msgid "Show"
 msgstr "Προβολή"
 
-#: ../Alacarte/MainWindow.py:173
+#: ../Alacarte/MainWindow.py:180
 msgid "Item"
 msgstr "Αντικείμενο"
 
-#: ../data/alacarte.desktop.in.in.h:1
-#: ../data/alacarte.ui.h:2
+#: ../Alacarte/ItemEditor.py:85
+msgid "Choose an icon"
+msgstr "Επιλογή εικονιδίου"
+
+#: ../Alacarte/ItemEditor.py:198
+msgid "Choose a command"
+msgstr "Επιλογή εντολής"
+
+#: ../data/alacarte.desktop.in.in.h:1 ../data/alacarte.ui.h:1
 msgid "Main Menu"
 msgstr "Κυρίως μενού"
 
 #: ../data/alacarte.desktop.in.in.h:2
-#| msgid "Change which applications are shown on the main menu"
 msgid "Add or remove applications from the main menu"
 msgstr "Προσθέστε ή αφαιρέστε εφαρμογές από το κύριο μενού"
 
-#: ../data/alacarte.ui.h:1
-msgid "_Revert to Original"
-msgstr "Επανα_φορά στο αρχικό"
-
-#: ../data/alacarte.ui.h:3
+#: ../data/alacarte.ui.h:2
 msgid "Restore the default menu layout"
 msgstr "Επαναφορά της προεπιλεγμένης διάταξης"
 
-#: ../data/alacarte.ui.h:4
+#: ../data/alacarte.ui.h:3
 msgid "_New Menu"
 msgstr "Νέο _μενού"
 
-#: ../data/alacarte.ui.h:5
+#: ../data/alacarte.ui.h:4
 msgid "Ne_w Item"
 msgstr "Νέ_ο αντικείμενο"
 
-#: ../data/alacarte.ui.h:6
+#: ../data/alacarte.ui.h:5
 msgid "New _Separator"
 msgstr "Νέο δια_χωριστικό"
 
+#: ../data/alacarte.ui.h:6
+msgid "Move Down"
+msgstr "Μετακίνηση κάτω"
+
 #: ../data/alacarte.ui.h:7
 msgid "Move Up"
 msgstr "Μετακίνηση πάνω"
 
-#: ../data/alacarte.ui.h:8
-msgid "Move Down"
-msgstr "Μετακίνηση κάτω"
+#: ../data/launcher-editor.ui.h:1
+#| msgid "Menu Properties"
+msgid "Launcher Properties"
+msgstr "Ιδιότητες εκκινητή"
+
+#: ../data/launcher-editor.ui.h:2 ../data/directory-editor.ui.h:2
+msgid "Name:"
+msgstr "Όνομα:"
+
+#: ../data/launcher-editor.ui.h:3
+msgid "Command:"
+msgstr "Εντολή:"
+
+#: ../data/launcher-editor.ui.h:4 ../data/directory-editor.ui.h:3
+msgid "Comment:"
+msgstr "Σχόλιο:"
+
+#: ../data/launcher-editor.ui.h:5
+#| msgid "Browse..."
+msgid "Browse"
+msgstr "Περιήγηση"
+
+#: ../data/launcher-editor.ui.h:6
+#| msgid "Run command in a terminal"
+msgid "Launch in Terminal?"
+msgstr "Εκκίνηση σε τερματικό;"
+
+#: ../data/directory-editor.ui.h:1
+#| msgid "Menu Properties"
+msgid "Directory Properties"
+msgstr "Ιδιότητες καταλόγου"
+
+#~ msgid "_Revert to Original"
+#~ msgstr "Επανα_φορά στο αρχικό"
+
+#~ msgid "Revert Changes?"
+#~ msgstr "Επαναφορά αλλαγών;"
 
-#: ../data/alacarte.ui.h:9
-msgid "Revert Changes?"
-msgstr "Επαναφορά αλλαγών;"
-
-#: ../data/alacarte.ui.h:10
-msgid "Revert all menus to original settings?"
-msgstr "Επαναφορά όλων των μενού στις αρχικές τους ρυθμίσεις;"
+#~ msgid "Revert all menus to original settings?"
+#~ msgstr "Επαναφορά όλων των μενού στις αρχικές τους ρυθμίσεις;"
 
 #~ msgid "It_ems:"
 #~ msgstr "Αντι_κείμενα:"
@@ -94,15 +134,6 @@
 #~ msgid "Alacarte Menu Editor"
 #~ msgstr "Επεξεργαστής μενού Alacarte"
 
-#~ msgid "Browse..."
-#~ msgstr "Περιήγηση..."
-
-#~ msgid "Command:"
-#~ msgstr "Εντολή:"
-
-#~ msgid "Comment:"
-#~ msgstr "Σχόλιο:"
-
 #~ msgid "Copyright © 2006 Travis Watkins"
 #~ msgstr "Πνευματικά δικαιώματα © 2006 Travis Watkins"
 
@@ -112,15 +143,6 @@
 #~ msgid "Menu Item Properties"
 #~ msgstr "Ιδιότητες αντικειμένου μενού"
 
-#~ msgid "Menu Properties"
-#~ msgstr "Ιδιότητες μενού "
-
-#~ msgid "Name:"
-#~ msgstr "Όνομα:"
-
-#~ msgid "Run command in a terminal"
-#~ msgstr "Εκτέλεση εντολής σε τερματικό"
-
 #~ msgid "Simple fd.o compliant menu editor"
 #~ msgstr "Ένας απλός επεξεργαστής μενού συμβατός με το freedesktop.org"
 
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/alacarte-3.7.90/po/fi.po new/alacarte-3.9.91/po/fi.po
--- old/alacarte-3.7.90/po/fi.po        2012-10-17 18:25:30.000000000 +0200
+++ new/alacarte-3.9.91/po/fi.po        2013-08-30 00:32:55.000000000 +0200
@@ -7,16 +7,16 @@
 # Niklas Laxström
 # Elias Julkunen <vilili...@gmail.com>, 2006.
 # Ilkka Tuohela <h...@iki.fi>, 2006.
-# Jiri Grönroos <jiri.gronr...@iki.fi>, 2012.
+# Jiri Grönroos <jiri.gronr...@iki.fi>, 2012, 2013.
 msgid ""
 msgstr ""
 "Project-Id-Version: alacarte\n"
 "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?";
 "product=alacarte&keywords=I18N+L10N&component=general\n"
-"POT-Creation-Date: 2012-07-17 00:26+0000\n"
-"PO-Revision-Date: 2012-09-08 14:58+0300\n"
-"Last-Translator: Jiri Grönroos <jiri.gronr...@iki.fi>\n"
-"Language-Team: Finnish <>\n"
+"POT-Creation-Date: 2013-01-11 06:39+0000\n"
+"PO-Revision-Date: 2013-03-23 18:14+0200\n"
+"Last-Translator: Jiri Grönroos <jiri.gronroos+l...@iki.fi>\n"
+"Language-Team: Finnish <gnome-fi-la...@lists.sourceforge.net>\n"
 "Language: fi\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -25,24 +25,31 @@
 "X-Generator: Lokalize 1.5\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: ../Alacarte/MainWindow.py:151
+#: ../Alacarte/MainWindow.py:159
 msgid "Name"
 msgstr "Nimi"
 
-#: ../Alacarte/MainWindow.py:164
+#: ../Alacarte/MainWindow.py:172
 msgid "Show"
 msgstr "Näytä"
 
-#: ../Alacarte/MainWindow.py:172
+#: ../Alacarte/MainWindow.py:180
 msgid "Item"
 msgstr "Toiminto"
 
+#: ../Alacarte/ItemEditor.py:85
+msgid "Choose an icon"
+msgstr "Valitse kuvake"
+
+#: ../Alacarte/ItemEditor.py:198
+msgid "Choose a command"
+msgstr "Valitse komento"
+
 #: ../data/alacarte.desktop.in.in.h:1 ../data/alacarte.ui.h:1
 msgid "Main Menu"
 msgstr "Päävalikko"
 
 #: ../data/alacarte.desktop.in.in.h:2
-#| msgid "Change which applications are shown on the main menu"
 msgid "Add or remove applications from the main menu"
 msgstr "Lisää tai poista päävalikossa näytettäviä sovelluksia"
 
@@ -51,28 +58,56 @@
 msgstr "Palauta valikkojen oletusasettelu"
 
 #: ../data/alacarte.ui.h:3
-msgid "Restore System Configuration"
-msgstr "Palauta oletusasetukset"
-
-#: ../data/alacarte.ui.h:4
 msgid "_New Menu"
 msgstr "Uusi v_alikko"
 
-#: ../data/alacarte.ui.h:5
+#: ../data/alacarte.ui.h:4
 msgid "Ne_w Item"
 msgstr "Uu_si toiminto"
 
-#: ../data/alacarte.ui.h:6
+#: ../data/alacarte.ui.h:5
 msgid "New _Separator"
 msgstr "Uusi _erotin"
 
+#: ../data/alacarte.ui.h:6
+msgid "Move Down"
+msgstr "Siirrä alas"
+
 #: ../data/alacarte.ui.h:7
 msgid "Move Up"
 msgstr "Siirrä ylös"
 
-#: ../data/alacarte.ui.h:8
-msgid "Move Down"
-msgstr "Siirrä alas"
+#: ../data/launcher-editor.ui.h:1
+msgid "Launcher Properties"
+msgstr "Käynnistimen ominaisuudet"
+
+#: ../data/launcher-editor.ui.h:2 ../data/directory-editor.ui.h:2
+#| msgid "Name"
+msgid "Name:"
+msgstr "Nimi:"
+
+#: ../data/launcher-editor.ui.h:3
+msgid "Command:"
+msgstr "Komento:"
+
+#: ../data/launcher-editor.ui.h:4 ../data/directory-editor.ui.h:3
+msgid "Comment:"
+msgstr "Kommentti:"
+
+#: ../data/launcher-editor.ui.h:5
+msgid "Browse"
+msgstr "Selaa"
+
+#: ../data/launcher-editor.ui.h:6
+msgid "Launch in Terminal?"
+msgstr "Käynnistetäänkö päätteessä?"
+
+#: ../data/directory-editor.ui.h:1
+msgid "Directory Properties"
+msgstr "Hakemiston ominaisuudet"
+
+#~ msgid "Restore System Configuration"
+#~ msgstr "Palauta oletusasetukset"
 
 #~ msgid "_Revert to Original"
 #~ msgstr "_Palauta alkuperäinen"
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/alacarte-3.7.90/po/ru.po new/alacarte-3.9.91/po/ru.po
--- old/alacarte-3.7.90/po/ru.po        2012-10-17 18:25:30.000000000 +0200
+++ new/alacarte-3.9.91/po/ru.po        2013-08-30 00:32:55.000000000 +0200
@@ -3,38 +3,46 @@
 # This file is distributed under the same license as the alacarte package.
 #
 # Leonid Kanter <l...@asplinux.ru>, 2006, 2007.
-# Stas Solovey <whats...@tut.by>, 2012.
-# Yuri Myasoedov <omert...@yandex.ru>, 2012.
+# Stas Solovey <whats...@tut.by>, 2012, 2013.
+# Yuri Myasoedov <omert...@yandex.ru>, 2012, 2013.
 #
 msgid ""
 msgstr ""
 "Project-Id-Version: alacarte trunk\n"
 "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?";
 "product=alacarte&keywords=I18N+L10N&component=general\n"
-"POT-Creation-Date: 2012-09-23 11:04+0000\n"
-"PO-Revision-Date: 2012-09-29 12:06+0400\n"
+"POT-Creation-Date: 2013-02-28 02:14+0000\n"
+"PO-Revision-Date: 2013-05-14 09:11+0400\n"
 "Last-Translator: Yuri Myasoedov <omert...@yandex.ru>\n"
 "Language-Team: русский <gnome-...@gnome.org>\n"
 "Language: \n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Gtranslator 2.91.5\n"
+"X-Generator: Gtranslator 2.91.6\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"
 
-#: ../Alacarte/MainWindow.py:151
+#: ../Alacarte/MainWindow.py:160
 msgid "Name"
 msgstr "Имя"
 
-#: ../Alacarte/MainWindow.py:164
+#: ../Alacarte/MainWindow.py:173
 msgid "Show"
 msgstr "Показать"
 
-#: ../Alacarte/MainWindow.py:172
+#: ../Alacarte/MainWindow.py:181
 msgid "Item"
 msgstr "Элемент"
 
+#: ../Alacarte/ItemEditor.py:85
+msgid "Choose an icon"
+msgstr "Выберите значок"
+
+#: ../Alacarte/ItemEditor.py:198
+msgid "Choose a command"
+msgstr "Выберите команду"
+
 #: ../data/alacarte.desktop.in.in.h:1 ../data/alacarte.ui.h:1
 msgid "Main Menu"
 msgstr "Главное меню"
@@ -48,40 +56,49 @@
 msgstr "Восстановить первоначальный вид меню"
 
 #: ../data/alacarte.ui.h:3
-msgid "Restore System Configuration"
-msgstr "Восстановить системные настройки"
-
-#: ../data/alacarte.ui.h:4
 msgid "_New Menu"
 msgstr "Создать _меню"
 
-#: ../data/alacarte.ui.h:5
+#: ../data/alacarte.ui.h:4
 msgid "Ne_w Item"
 msgstr "Создать _элемент"
 
-#: ../data/alacarte.ui.h:6
+#: ../data/alacarte.ui.h:5
 msgid "New _Separator"
 msgstr "Создать _разделитель"
 
-#: ../data/alacarte.ui.h:7
-msgid "Move Up"
-msgstr "Переместить вверх"
-
-#: ../data/alacarte.ui.h:8
+#: ../data/alacarte.ui.h:6
 msgid "Move Down"
 msgstr "Переместить вниз"
 
-#~ msgid "_Revert to Original"
-#~ msgstr "_Вернуть исходное состояние"
-
-#~ msgid "_Menus:"
-#~ msgstr "_Меню:"
-
-#~ msgid "It_ems:"
-#~ msgstr "_Элементы:"
-
-#~ msgid "Revert Changes?"
-#~ msgstr "Откатить изменения?"
+#: ../data/alacarte.ui.h:7
+msgid "Move Up"
+msgstr "Переместить вверх"
 
-#~ msgid "Revert all menus to original settings?"
-#~ msgstr "Вернуть все меню к первоначальному состоянию?"
+#: ../data/launcher-editor.ui.h:1
+msgid "Launcher Properties"
+msgstr "Параметры запуска"
+
+#: ../data/launcher-editor.ui.h:2 ../data/directory-editor.ui.h:2
+msgid "Name:"
+msgstr "Имя:"
+
+#: ../data/launcher-editor.ui.h:3
+msgid "Command:"
+msgstr "Команда:"
+
+#: ../data/launcher-editor.ui.h:4 ../data/directory-editor.ui.h:3
+msgid "Comment:"
+msgstr "Примечание:"
+
+#: ../data/launcher-editor.ui.h:5
+msgid "Browse"
+msgstr "Просмотреть"
+
+#: ../data/launcher-editor.ui.h:6
+msgid "Launch in Terminal?"
+msgstr "Запускать в терминале"
+
+#: ../data/directory-editor.ui.h:1
+msgid "Directory Properties"
+msgstr "Параметры каталога"

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org

Reply via email to