Hello community,

here is the log from the commit of package xfce4-whiskermenu-plugin for 
openSUSE:Leap:15.2 checked in at 2020-03-13 10:58:39
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Leap:15.2/xfce4-whiskermenu-plugin (Old)
 and      /work/SRC/openSUSE:Leap:15.2/.xfce4-whiskermenu-plugin.new.3160 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "xfce4-whiskermenu-plugin"

Fri Mar 13 10:58:39 2020 rev:6 rq:784030 version:2.4.3

Changes:
--------
--- 
/work/SRC/openSUSE:Leap:15.2/xfce4-whiskermenu-plugin/xfce4-whiskermenu-plugin.changes
      2020-02-19 18:43:17.754423787 +0100
+++ 
/work/SRC/openSUSE:Leap:15.2/.xfce4-whiskermenu-plugin.new.3160/xfce4-whiskermenu-plugin.changes
    2020-03-13 11:01:11.964598279 +0100
@@ -1,0 +2,7 @@
+Wed Mar 11 14:35:31 UTC 2020 - Marcel Kuehlhorn <[email protected]>
+
+- Update to 2.4.3
+  * Fix loading incorrect icons for some applications. (bxo#16461)
+  * Translation updates
+
+-------------------------------------------------------------------

Old:
----
  xfce4-whiskermenu-plugin-2.4.2.tar.bz2

New:
----
  xfce4-whiskermenu-plugin-2.4.3.tar.bz2

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

Other differences:
------------------
++++++ xfce4-whiskermenu-plugin.spec ++++++
--- /var/tmp/diff_new_pack.xQoSzu/_old  2020-03-13 11:01:12.328598539 +0100
+++ /var/tmp/diff_new_pack.xQoSzu/_new  2020-03-13 11:01:12.332598542 +0100
@@ -19,12 +19,12 @@
 %define panel_version 4.12.0
 %define plugin whiskermenu
 Name:           xfce4-whiskermenu-plugin
-Version:        2.4.2
+Version:        2.4.3
 Release:        0
 Summary:        Alternate Xfce Menu
 License:        GPL-2.0-or-later
 Group:          System/GUI/XFCE
-URL:            https://gottcode.org/xfce4-whiskermenu-plugin/
+URL:            https://docs.xfce.org/panel-plugins/xfce4-whiskermenu-plugin
 Source0:        
https://archive.xfce.org/src/panel-plugins/%{name}/2.4/%{name}-%{version}.tar.bz2
 BuildRequires:  cmake
 BuildRequires:  gcc-c++

++++++ xfce4-whiskermenu-plugin-2.4.2.tar.bz2 -> 
xfce4-whiskermenu-plugin-2.4.3.tar.bz2 ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xfce4-whiskermenu-plugin-2.4.2/CMakeLists.txt 
new/xfce4-whiskermenu-plugin-2.4.3/CMakeLists.txt
--- old/xfce4-whiskermenu-plugin-2.4.2/CMakeLists.txt   2020-02-15 
11:22:40.000000000 +0100
+++ new/xfce4-whiskermenu-plugin-2.4.3/CMakeLists.txt   2020-03-11 
13:46:21.000000000 +0100
@@ -5,7 +5,7 @@
 # version number
 set(whiskermenu_version_major "2")
 set(whiskermenu_version_minor "4")
-set(whiskermenu_version_micro "2")
+set(whiskermenu_version_micro "3")
 set(whiskermenu_version_tag "")
 set(whiskermenu_version 
"${whiskermenu_version_major}.${whiskermenu_version_minor}.${whiskermenu_version_micro}")
 if(${whiskermenu_version_tag} MATCHES "git")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xfce4-whiskermenu-plugin-2.4.2/NEWS 
new/xfce4-whiskermenu-plugin-2.4.3/NEWS
--- old/xfce4-whiskermenu-plugin-2.4.2/NEWS     2020-02-15 11:22:40.000000000 
+0100
+++ new/xfce4-whiskermenu-plugin-2.4.3/NEWS     2020-03-11 13:46:21.000000000 
+0100
@@ -1,3 +1,9 @@
+2.4.3
+=====
+- Fix loading incorrect icons for some applications. (bug #16461)
+- Translation updates: Bulgarian, Finnish, Greek, Icelandic, Interlingue,
+  Nepali, Norwegian Bokmål, Russian, Slovak.
+
 2.4.2
 =====
 - Fix crash when selecting desktop action. (bug #16445)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/xfce4-whiskermenu-plugin-2.4.2/panel-plugin/category.cpp 
new/xfce4-whiskermenu-plugin-2.4.3/panel-plugin/category.cpp
--- old/xfce4-whiskermenu-plugin-2.4.2/panel-plugin/category.cpp        
2020-02-15 11:22:40.000000000 +0100
+++ new/xfce4-whiskermenu-plugin-2.4.3/panel-plugin/category.cpp        
2020-03-11 13:46:21.000000000 +0100
@@ -49,7 +49,7 @@
        {
                text = _("All Applications");
        }
-       set_icon(!exo_str_is_empty(icon) ? icon : "applications-other");
+       set_icon(!exo_str_is_empty(icon) ? icon : "applications-other", true);
        set_text(text ? text : "");
        set_tooltip(tooltip ? tooltip : "");
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/xfce4-whiskermenu-plugin-2.4.2/panel-plugin/element.cpp 
new/xfce4-whiskermenu-plugin-2.4.3/panel-plugin/element.cpp
--- old/xfce4-whiskermenu-plugin-2.4.2/panel-plugin/element.cpp 2020-02-15 
11:22:40.000000000 +0100
+++ new/xfce4-whiskermenu-plugin-2.4.3/panel-plugin/element.cpp 2020-03-11 
13:46:21.000000000 +0100
@@ -21,7 +21,7 @@
 
 //-----------------------------------------------------------------------------
 
-void Element::set_icon(const gchar* icon)
+void Element::set_icon(const gchar* icon, bool use_fallbacks)
 {
        if (m_icon)
        {
@@ -34,12 +34,14 @@
                return;
        }
 
+       auto themed_icon_new = use_fallbacks ? 
&g_themed_icon_new_with_default_fallbacks : &g_themed_icon_new;
+
        if (!g_path_is_absolute(icon))
        {
                const gchar* pos = g_strrstr(icon, ".");
                if (!pos)
                {
-                       m_icon = g_themed_icon_new_with_default_fallbacks(icon);
+                       m_icon = themed_icon_new(icon);
                }
                else
                {
@@ -50,12 +52,12 @@
                                        || (g_strcmp0(suffix, ".svgz") == 0))
                        {
                                gchar* name = g_strndup(icon, pos - icon);
-                               m_icon = 
g_themed_icon_new_with_default_fallbacks(name);
+                               m_icon = themed_icon_new(name);
                                g_free(name);
                        }
                        else
                        {
-                               m_icon = 
g_themed_icon_new_with_default_fallbacks(icon);
+                               m_icon = themed_icon_new(icon);
                        }
                        g_free(suffix);
                }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/xfce4-whiskermenu-plugin-2.4.2/panel-plugin/element.h 
new/xfce4-whiskermenu-plugin-2.4.3/panel-plugin/element.h
--- old/xfce4-whiskermenu-plugin-2.4.2/panel-plugin/element.h   2020-02-15 
11:22:40.000000000 +0100
+++ new/xfce4-whiskermenu-plugin-2.4.3/panel-plugin/element.h   2020-03-11 
13:46:21.000000000 +0100
@@ -79,7 +79,7 @@
 protected:
        Element() = default;
 
-       void set_icon(const gchar* icon);
+       void set_icon(const gchar* icon, bool use_fallbacks = false);
 
        void set_text(const gchar* text)
        {
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xfce4-whiskermenu-plugin-2.4.2/po/bg.po 
new/xfce4-whiskermenu-plugin-2.4.3/po/bg.po
--- old/xfce4-whiskermenu-plugin-2.4.2/po/bg.po 2020-02-15 11:22:40.000000000 
+0100
+++ new/xfce4-whiskermenu-plugin-2.4.3/po/bg.po 2020-03-11 13:46:21.000000000 
+0100
@@ -9,7 +9,7 @@
 "Project-Id-Version: Whisker Menu\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2020-01-24 09:02-0500\n"
-"PO-Revision-Date: 2020-01-25 14:18+0000\n"
+"PO-Revision-Date: 2020-02-16 11:21+0000\n"
 "Last-Translator: Kiril Kirilov <[email protected]>\n"
 "Language-Team: Bulgarian (http://www.transifex.com/gottcode/xfce4-";
 "whiskermenu-plugin/language/bg/)\n"
@@ -329,11 +329,11 @@
 
 #: ../panel-plugin/configuration-dialog.cpp:595
 msgid "Show as lis_t"
-msgstr "Покажи, като _списък"
+msgstr "Показване, като _списък"
 
 #: ../panel-plugin/configuration-dialog.cpp:603
 msgid "Show as t_ree"
-msgstr "Покажи, като _дърво"
+msgstr "Показване, като _дърво"
 
 #: ../panel-plugin/configuration-dialog.cpp:871
 msgid "Show c_onfirmation dialog"
@@ -341,7 +341,7 @@
 
 #: ../panel-plugin/configuration-dialog.cpp:637
 msgid "Show cate_gory names"
-msgstr "Покажи имената на _категориите"
+msgstr "Показване имената на _категориите"
 
 #: ../panel-plugin/configuration-dialog.cpp:631
 msgid "Show generic application _names"
@@ -487,20 +487,20 @@
 
 #: ../panel-plugin/settings.cpp:167
 msgid "_Hibernate"
-msgstr "Хибернация"
+msgstr "_Хибернация"
 
 #: ../panel-plugin/configuration-dialog.cpp:781
 msgid "_Icon:"
-msgstr "Икона:"
+msgstr "_Икона:"
 
 #: ../panel-plugin/settings.cpp:135
 msgid "_Lock Screen"
-msgstr "Заключване на екрана"
+msgstr "_Заключване на екрана"
 
 #: ../panel-plugin/command-edit.cpp:68
 #: ../panel-plugin/configuration-dialog.cpp:279
 msgid "_OK"
-msgstr "OK"
+msgstr "_OK"
 
 #: ../panel-plugin/configuration-dialog.cpp:100
 msgid "_Panel Button"
@@ -508,7 +508,7 @@
 
 #: ../panel-plugin/configuration-dialog.cpp:997
 msgid "_Pattern:"
-msgstr "Шаблон:"
+msgstr "_Шаблон:"
 
 #: ../panel-plugin/configuration-dialog.cpp:1021
 msgid "_Regular expression"
@@ -516,7 +516,7 @@
 
 #: ../panel-plugin/settings.cpp:149
 msgid "_Restart"
-msgstr "Рестартиране"
+msgstr "_Рестартиране"
 
 #: ../panel-plugin/settings.cpp:131
 msgid "_Settings Manager"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xfce4-whiskermenu-plugin-2.4.2/po/el.po 
new/xfce4-whiskermenu-plugin-2.4.3/po/el.po
--- old/xfce4-whiskermenu-plugin-2.4.2/po/el.po 2020-02-15 11:22:40.000000000 
+0100
+++ new/xfce4-whiskermenu-plugin-2.4.3/po/el.po 2020-03-11 13:46:21.000000000 
+0100
@@ -1,20 +1,23 @@
 # Greek translation of xfce4-whiskermenu-plugin.
-# Copyright (C) 2019 Graeme Gott
+# Copyright (C) 2020 Graeme Gott
 # This file is distributed under the same license as the 
xfce4-whiskermenu-plugin package.
 #
 # Translators:
 # angel_solomos, 2013
-# Ioannis LM, 2016,2018-2019
+# angel_solomos, 2013
+# gapan <[email protected]>, 2014
+# Ioannis LM, 2016,2018-2020
 # Thanos Apostolou <[email protected]>, 2017
 # gapan <[email protected]>, 2014
-# Γιάννης Ανθυμίδης, 2013
+# Yannis Anthymidis, 2013
+# Yannis Anthymidis, 2013
 # Πέτρος Σαμαράς <[email protected]>, 2016
 msgid ""
 msgstr ""
 "Project-Id-Version: Whisker Menu\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2020-01-24 09:02-0500\n"
-"PO-Revision-Date: 2019-09-21 09:00+0000\n"
+"PO-Revision-Date: 2020-02-22 10:10+0000\n"
 "Last-Translator: Ioannis LM\n"
 "Language-Team: Greek (http://www.transifex.com/gottcode/xfce4-whiskermenu-";
 "plugin/language/el/)\n"
@@ -42,7 +45,7 @@
 
 #: ../panel-plugin/category.cpp:49
 msgid "All Applications"
-msgstr "Όλες οι Εφαρμογές"
+msgstr "Όλες οι εφαρμογές"
 
 #: ../panel-plugin/plugin.cpp:409
 msgid "Alternate application launcher for Xfce"
@@ -53,9 +56,8 @@
 msgstr "Σύνολο _αντικειμένων:"
 
 #: ../panel-plugin/configuration-dialog.cpp:683
-#, fuzzy
 msgid "Application icon si_ze:"
-msgstr "Εύρεση Εφαρμογών"
+msgstr "Μέγεθος εικονιδίων _εφαρμογών:"
 
 #: ../panel-plugin/plugin.cpp:213
 msgid "Applications"
@@ -64,7 +66,7 @@
 #: ../panel-plugin/launcher.cpp:232
 #, c-format
 msgid "Are you sure you want to hide \"%s\"?"
-msgstr "Είστε σίγουροι ότι θέλετε να αποκρύψετε το \"%s\";"
+msgstr "Θέλετε σίγουρα να αποκρύψετε την \"%s\";"
 
 #: ../panel-plugin/settings.cpp:146
 msgid "Are you sure you want to log out?"
@@ -187,7 +189,7 @@
 
 #: ../panel-plugin/launcher.cpp:231 ../panel-plugin/page.cpp:418
 msgid "Hide Application"
-msgstr ""
+msgstr "Απόκρυψη εφαρμογής"
 
 #: ../panel-plugin/configuration-dialog.cpp:758
 msgid "Icon"
@@ -331,17 +333,15 @@
 
 #: ../panel-plugin/configuration-dialog.cpp:587
 msgid "Show as _icons"
-msgstr ""
+msgstr "Εμφάνιση _εικονιδίων"
 
 #: ../panel-plugin/configuration-dialog.cpp:595
-#, fuzzy
 msgid "Show as lis_t"
-msgstr "Εμφάνιση αφετηρίας"
+msgstr "Εμφάνιση _λίστας"
 
 #: ../panel-plugin/configuration-dialog.cpp:603
-#, fuzzy
 msgid "Show as t_ree"
-msgstr "Εμ_φάνιση πλαισίου"
+msgstr "Εμφάνιση _δομής"
 
 #: ../panel-plugin/configuration-dialog.cpp:871
 msgid "Show c_onfirmation dialog"
@@ -410,6 +410,8 @@
 "To unhide it you have to manually remove the file \"%s\" or open the file "
 "and remove the line \"%s\"."
 msgstr ""
+"Για να την επαναφέρετε πρέπει να διαγράψετε το αρχείο \"%s\" ή να ανοίξετε "
+"το αρχείο και να αφαιρέσετε τη γραμμή \"%s\"."
 
 #: ../panel-plugin/settings.cpp:159
 #, c-format
@@ -526,7 +528,7 @@
 
 #: ../panel-plugin/settings.cpp:131
 msgid "_Settings Manager"
-msgstr ""
+msgstr "_Διαχειριστής ρυθμίσεων"
 
 #: ../panel-plugin/configuration-dialog.cpp:769
 msgid "_Title:"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xfce4-whiskermenu-plugin-2.4.2/po/fi.po 
new/xfce4-whiskermenu-plugin-2.4.3/po/fi.po
--- old/xfce4-whiskermenu-plugin-2.4.2/po/fi.po 2020-02-15 11:22:40.000000000 
+0100
+++ new/xfce4-whiskermenu-plugin-2.4.3/po/fi.po 2020-03-11 13:46:21.000000000 
+0100
@@ -4,7 +4,9 @@
 #
 # Translators:
 # Ammuu5, 2018-2020
+# Assalat3 <[email protected]>, 2018
 # Pasi Lallinaho <[email protected]>, 2014-2015,2019
+# Sami Korkalainen, 2013-2014
 # Sami Korkalainen, 2014
 # Assalat3 <[email protected]>, 2018
 # Sami Korkalainen, 2013
@@ -13,8 +15,8 @@
 "Project-Id-Version: Whisker Menu\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2020-01-24 09:02-0500\n"
-"PO-Revision-Date: 2020-02-12 22:13+0000\n"
-"Last-Translator: Sami Korkalainen\n"
+"PO-Revision-Date: 2020-02-25 00:44+0000\n"
+"Last-Translator: Ammuu5\n"
 "Language-Team: Finnish (http://www.transifex.com/gottcode/xfce4-whiskermenu-";
 "plugin/language/fi/)\n"
 "Language: fi\n"
@@ -329,15 +331,15 @@
 
 #: ../panel-plugin/configuration-dialog.cpp:587
 msgid "Show as _icons"
-msgstr ""
+msgstr "Näytä _kuvakkeina"
 
 #: ../panel-plugin/configuration-dialog.cpp:595
 msgid "Show as lis_t"
-msgstr ""
+msgstr "Näytä lis_tana"
 
 #: ../panel-plugin/configuration-dialog.cpp:603
 msgid "Show as t_ree"
-msgstr ""
+msgstr "Näytä p_uuna"
 
 #: ../panel-plugin/configuration-dialog.cpp:871
 msgid "Show c_onfirmation dialog"
@@ -522,7 +524,7 @@
 
 #: ../panel-plugin/settings.cpp:131
 msgid "_Settings Manager"
-msgstr ""
+msgstr "_Asetustenhallinta"
 
 #: ../panel-plugin/configuration-dialog.cpp:769
 msgid "_Title:"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xfce4-whiskermenu-plugin-2.4.2/po/ie.po 
new/xfce4-whiskermenu-plugin-2.4.3/po/ie.po
--- old/xfce4-whiskermenu-plugin-2.4.2/po/ie.po 2020-02-15 11:22:40.000000000 
+0100
+++ new/xfce4-whiskermenu-plugin-2.4.3/po/ie.po 2020-03-11 13:46:21.000000000 
+0100
@@ -9,7 +9,7 @@
 "Project-Id-Version: Whisker Menu\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2020-01-24 09:02-0500\n"
-"PO-Revision-Date: 2020-01-12 09:05+0000\n"
+"PO-Revision-Date: 2020-02-21 18:10+0000\n"
 "Last-Translator: Caarmi\n"
 "Language-Team: Interlingue (http://www.transifex.com/gottcode/xfce4-";
 "whiskermenu-plugin/language/ie/)\n"
@@ -48,9 +48,8 @@
 msgstr "Númere de _elementes:"
 
 #: ../panel-plugin/configuration-dialog.cpp:683
-#, fuzzy
 msgid "Application icon si_ze:"
-msgstr "Trovator de applicationes"
+msgstr "Di_m. de icones de apps:"
 
 #: ../panel-plugin/plugin.cpp:213
 msgid "Applications"
@@ -329,14 +328,12 @@
 msgstr "Monstrar quam _icones"
 
 #: ../panel-plugin/configuration-dialog.cpp:595
-#, fuzzy
 msgid "Show as lis_t"
-msgstr "Monstrar quam _icones"
+msgstr "Monstrar quam lis_te"
 
 #: ../panel-plugin/configuration-dialog.cpp:603
-#, fuzzy
 msgid "Show as t_ree"
-msgstr "Monstrar quam _icones"
+msgstr "Monstrar quam á_rbor "
 
 #: ../panel-plugin/configuration-dialog.cpp:871
 msgid "Show c_onfirmation dialog"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xfce4-whiskermenu-plugin-2.4.2/po/is.po 
new/xfce4-whiskermenu-plugin-2.4.3/po/is.po
--- old/xfce4-whiskermenu-plugin-2.4.2/po/is.po 2020-02-15 11:22:40.000000000 
+0100
+++ new/xfce4-whiskermenu-plugin-2.4.3/po/is.po 2020-03-11 13:46:21.000000000 
+0100
@@ -1,16 +1,16 @@
 # Icelandic translation of xfce4-whiskermenu-plugin.
-# Copyright (C) 2019 Graeme Gott
+# Copyright (C) 2020 Graeme Gott
 # This file is distributed under the same license as the 
xfce4-whiskermenu-plugin package.
 #
 # Translators:
 # Kristján Magnússon, 2016-2017
-# Sveinn í Felli <[email protected]>, 2019
+# Sveinn í Felli <[email protected]>, 2019-2020
 msgid ""
 msgstr ""
 "Project-Id-Version: Whisker Menu\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2020-01-24 09:02-0500\n"
-"PO-Revision-Date: 2019-09-23 17:49+0000\n"
+"PO-Revision-Date: 2020-02-16 17:16+0000\n"
 "Last-Translator: Sveinn í Felli <[email protected]>\n"
 "Language-Team: Icelandic (http://www.transifex.com/gottcode/xfce4-";
 "whiskermenu-plugin/language/is/)\n"
@@ -49,9 +49,8 @@
 msgstr "Fjöldi _atriða:"
 
 #: ../panel-plugin/configuration-dialog.cpp:683
-#, fuzzy
 msgid "Application icon si_ze:"
-msgstr "Forritaleit"
+msgstr "Stærð táknmynda fyrir f_orrit:"
 
 #: ../panel-plugin/plugin.cpp:213
 msgid "Applications"
@@ -60,7 +59,7 @@
 #: ../panel-plugin/launcher.cpp:232
 #, c-format
 msgid "Are you sure you want to hide \"%s\"?"
-msgstr "Ertu viss að þú viljir fela \"%s\"?"
+msgstr "Ertu viss um að þú viljir fela \"%s\"?"
 
 #: ../panel-plugin/settings.cpp:146
 msgid "Are you sure you want to log out?"
@@ -183,7 +182,7 @@
 
 #: ../panel-plugin/launcher.cpp:231 ../panel-plugin/page.cpp:418
 msgid "Hide Application"
-msgstr ""
+msgstr "Fela forrit"
 
 #: ../panel-plugin/configuration-dialog.cpp:758
 msgid "Icon"
@@ -327,17 +326,15 @@
 
 #: ../panel-plugin/configuration-dialog.cpp:587
 msgid "Show as _icons"
-msgstr ""
+msgstr "Birta sem táknm_yndir"
 
 #: ../panel-plugin/configuration-dialog.cpp:595
-#, fuzzy
 msgid "Show as lis_t"
-msgstr "Birta grunnlínur"
+msgstr "Birta sem lis_ta"
 
 #: ../panel-plugin/configuration-dialog.cpp:603
-#, fuzzy
 msgid "Show as t_ree"
-msgstr "Sýna ra_mma."
+msgstr "Birta sem g_reinar"
 
 #: ../panel-plugin/configuration-dialog.cpp:871
 msgid "Show c_onfirmation dialog"
@@ -522,7 +519,7 @@
 
 #: ../panel-plugin/settings.cpp:131
 msgid "_Settings Manager"
-msgstr ""
+msgstr "_Stillingastýring"
 
 #: ../panel-plugin/configuration-dialog.cpp:769
 msgid "_Title:"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xfce4-whiskermenu-plugin-2.4.2/po/nb.po 
new/xfce4-whiskermenu-plugin-2.4.3/po/nb.po
--- old/xfce4-whiskermenu-plugin-2.4.2/po/nb.po 2020-02-15 11:22:40.000000000 
+0100
+++ new/xfce4-whiskermenu-plugin-2.4.3/po/nb.po 2020-03-11 13:46:21.000000000 
+0100
@@ -9,7 +9,7 @@
 "Project-Id-Version: Whisker Menu\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2020-01-24 09:02-0500\n"
-"PO-Revision-Date: 2020-02-12 22:14+0000\n"
+"PO-Revision-Date: 2020-03-11 11:41+0000\n"
 "Last-Translator: thomas <[email protected]>\n"
 "Language-Team: Norwegian Bokmål (http://www.transifex.com/gottcode/xfce4-";
 "whiskermenu-plugin/language/nb/)\n"
@@ -37,7 +37,7 @@
 
 #: ../panel-plugin/category.cpp:49
 msgid "All Applications"
-msgstr "Alle programmer"
+msgstr "Alle applikasjoner"
 
 #: ../panel-plugin/plugin.cpp:409
 msgid "Alternate application launcher for Xfce"
@@ -49,7 +49,7 @@
 
 #: ../panel-plugin/configuration-dialog.cpp:683
 msgid "Application icon si_ze:"
-msgstr ""
+msgstr "Applikasjon ikon-størrelse"
 
 #: ../panel-plugin/plugin.cpp:213
 msgid "Applications"
@@ -329,11 +329,11 @@
 
 #: ../panel-plugin/configuration-dialog.cpp:595
 msgid "Show as lis_t"
-msgstr ""
+msgstr "Vis som Lis_te"
 
 #: ../panel-plugin/configuration-dialog.cpp:603
 msgid "Show as t_ree"
-msgstr ""
+msgstr "Vis som t_ree"
 
 #: ../panel-plugin/configuration-dialog.cpp:871
 msgid "Show c_onfirmation dialog"
@@ -520,7 +520,7 @@
 
 #: ../panel-plugin/settings.cpp:131
 msgid "_Settings Manager"
-msgstr ""
+msgstr "_Innstillinger"
 
 #: ../panel-plugin/configuration-dialog.cpp:769
 msgid "_Title:"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xfce4-whiskermenu-plugin-2.4.2/po/ne.po 
new/xfce4-whiskermenu-plugin-2.4.3/po/ne.po
--- old/xfce4-whiskermenu-plugin-2.4.2/po/ne.po 2020-02-15 11:22:40.000000000 
+0100
+++ new/xfce4-whiskermenu-plugin-2.4.3/po/ne.po 2020-03-11 13:46:21.000000000 
+0100
@@ -3,14 +3,14 @@
 # This file is distributed under the same license as the 
xfce4-whiskermenu-plugin package.
 #
 # Translators:
-# starryprabin <[email protected]>, 2013-2019
+# starryprabin <[email protected]>, 2013-2020
 # Prabin Gautam <[email protected]>, 2013-2014
 msgid ""
 msgstr ""
 "Project-Id-Version: Whisker Menu\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2020-01-24 09:02-0500\n"
-"PO-Revision-Date: 2020-02-12 22:13+0000\n"
+"PO-Revision-Date: 2020-02-17 13:39+0000\n"
 "Last-Translator: starryprabin <[email protected]>\n"
 "Language-Team: Nepali (http://www.transifex.com/gottcode/xfce4-whiskermenu-";
 "plugin/language/ne/)\n"
@@ -38,7 +38,7 @@
 
 #: ../panel-plugin/category.cpp:49
 msgid "All Applications"
-msgstr ""
+msgstr "सबै अनुप्रयोगहरू"
 
 #: ../panel-plugin/plugin.cpp:409
 msgid "Alternate application launcher for Xfce"
@@ -50,7 +50,7 @@
 
 #: ../panel-plugin/configuration-dialog.cpp:683
 msgid "Application icon si_ze:"
-msgstr ""
+msgstr "अनुप्रयोगको मूर्तिको आकार"
 
 #: ../panel-plugin/plugin.cpp:213
 msgid "Applications"
@@ -59,7 +59,7 @@
 #: ../panel-plugin/launcher.cpp:232
 #, c-format
 msgid "Are you sure you want to hide \"%s\"?"
-msgstr ""
+msgstr "के तपाइँ पक्का %sलाई लुकाउन चाहनुहुन्छ?"
 
 #: ../panel-plugin/settings.cpp:146
 msgid "Are you sure you want to log out?"
@@ -67,11 +67,11 @@
 
 #: ../panel-plugin/settings.cpp:152
 msgid "Are you sure you want to restart?"
-msgstr "के तपाइँ पक्का पुन: शुरू गर्न चाहानुहुन्छ?"
+msgstr "के तपाइँ पक्का पुन: शुरू गर्न चाहनुहुन्छ?"
 
 #: ../panel-plugin/settings.cpp:158
 msgid "Are you sure you want to shut down?"
-msgstr "के तपाइँ पक्का बन्द गर्न चाहानुहुन्छ?"
+msgstr "के तपाइँ पक्का बन्द गर्न चाहनुहुन्छ?"
 
 #: ../panel-plugin/configuration-dialog.cpp:723
 msgid "Background opacit_y:"
@@ -182,7 +182,7 @@
 
 #: ../panel-plugin/launcher.cpp:231 ../panel-plugin/page.cpp:418
 msgid "Hide Application"
-msgstr ""
+msgstr "अनुप्रयोगहरु लुकाउनुहोस्"
 
 #: ../panel-plugin/configuration-dialog.cpp:758
 msgid "Icon"
@@ -326,15 +326,15 @@
 
 #: ../panel-plugin/configuration-dialog.cpp:587
 msgid "Show as _icons"
-msgstr ""
+msgstr "मूर्तिको आकारमा देखाउनुहोस्"
 
 #: ../panel-plugin/configuration-dialog.cpp:595
 msgid "Show as lis_t"
-msgstr ""
+msgstr "सूचीको आकारमा देखाउनुहोस्"
 
 #: ../panel-plugin/configuration-dialog.cpp:603
 msgid "Show as t_ree"
-msgstr ""
+msgstr "रूखको आकारमा देखाउनुहोस्"
 
 #: ../panel-plugin/configuration-dialog.cpp:871
 msgid "Show c_onfirmation dialog"
@@ -403,6 +403,8 @@
 "To unhide it you have to manually remove the file \"%s\" or open the file "
 "and remove the line \"%s\"."
 msgstr ""
+"यसलाई नलुकाउन तपाईंले मैन्युअल तरिकाले फाइल \"%s\" हटाउनुपर्दछ वा फाइल 
खोल्नुपर्दछ र "
+"लाइन \"%s\" हटाउनुपर्नेछ।"
 
 #: ../panel-plugin/settings.cpp:159
 #, c-format
@@ -519,7 +521,7 @@
 
 #: ../panel-plugin/settings.cpp:131
 msgid "_Settings Manager"
-msgstr ""
+msgstr "प्राथमिकता प्रबन्धक"
 
 #: ../panel-plugin/configuration-dialog.cpp:769
 msgid "_Title:"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xfce4-whiskermenu-plugin-2.4.2/po/ru.po 
new/xfce4-whiskermenu-plugin-2.4.3/po/ru.po
--- old/xfce4-whiskermenu-plugin-2.4.2/po/ru.po 2020-02-15 11:22:40.000000000 
+0100
+++ new/xfce4-whiskermenu-plugin-2.4.3/po/ru.po 2020-03-11 13:46:21.000000000 
+0100
@@ -4,16 +4,18 @@
 #
 # Translators:
 # sorrymak <[email protected]>, 2013
-# Kyrill Detinov <[email protected]>, 2013,2016
+# Kyrill Detinov <[email protected]>, 2013,2016,2020
 # Sergey Alyoshin <[email protected]>, 2013-2015,2017-2018
 # Sergey Shlyapugin <[email protected]>, 2013
+# sorrymak <[email protected]>, 2013
+# Владимир <[email protected]>, 2018
 # Владимир <[email protected]>, 2018
 msgid ""
 msgstr ""
 "Project-Id-Version: Whisker Menu\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2020-01-24 09:02-0500\n"
-"PO-Revision-Date: 2020-02-12 22:13+0000\n"
+"PO-Revision-Date: 2020-03-10 18:35+0000\n"
 "Last-Translator: Kyrill Detinov <[email protected]>\n"
 "Language-Team: Russian (http://www.transifex.com/gottcode/xfce4-whiskermenu-";
 "plugin/language/ru/)\n"
@@ -55,7 +57,7 @@
 
 #: ../panel-plugin/configuration-dialog.cpp:683
 msgid "Application icon si_ze:"
-msgstr ""
+msgstr "Раз_мер иконок приложений:"
 
 #: ../panel-plugin/plugin.cpp:213
 msgid "Applications"
@@ -100,7 +102,7 @@
 
 #: ../panel-plugin/plugin.cpp:410
 msgid "Copyright © 2013-2020 Graeme Gott"
-msgstr ""
+msgstr "Copyright © 2013-2020 Graeme Gott"
 
 #: ../panel-plugin/configuration-dialog.cpp:980
 msgid "Details"
@@ -174,7 +176,7 @@
 
 #: ../panel-plugin/settings.cpp:141
 msgid "Failed to switch user."
-msgstr ""
+msgstr "Не удалось сменить пользователя."
 
 #: ../panel-plugin/window.cpp:159
 msgid "Favorites"
@@ -187,7 +189,7 @@
 
 #: ../panel-plugin/launcher.cpp:231 ../panel-plugin/page.cpp:418
 msgid "Hide Application"
-msgstr ""
+msgstr "Скрыть приложение"
 
 #: ../panel-plugin/configuration-dialog.cpp:758
 msgid "Icon"
@@ -331,15 +333,15 @@
 
 #: ../panel-plugin/configuration-dialog.cpp:587
 msgid "Show as _icons"
-msgstr ""
+msgstr "Показать как _значки"
 
 #: ../panel-plugin/configuration-dialog.cpp:595
 msgid "Show as lis_t"
-msgstr ""
+msgstr "Показать как списо_к"
 
 #: ../panel-plugin/configuration-dialog.cpp:603
 msgid "Show as t_ree"
-msgstr ""
+msgstr "Показать в виде д_ерева"
 
 #: ../panel-plugin/configuration-dialog.cpp:871
 msgid "Show c_onfirmation dialog"
@@ -388,7 +390,7 @@
 
 #: ../panel-plugin/settings.cpp:139
 msgid "Switch _User"
-msgstr ""
+msgstr "Сменить _пользователя"
 
 #: ../panel-plugin/configuration-dialog.cpp:820
 msgid "Switch categories by _hovering"
@@ -408,6 +410,8 @@
 "To unhide it you have to manually remove the file \"%s\" or open the file "
 "and remove the line \"%s\"."
 msgstr ""
+"Чтобы снова показать его, вручную удалите файл \"%s\" или откройте его и "
+"удалите строчку \"%s\"."
 
 #: ../panel-plugin/settings.cpp:159
 #, c-format
@@ -524,7 +528,7 @@
 
 #: ../panel-plugin/settings.cpp:131
 msgid "_Settings Manager"
-msgstr ""
+msgstr "Диспетчер _настроек"
 
 #: ../panel-plugin/configuration-dialog.cpp:769
 msgid "_Title:"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xfce4-whiskermenu-plugin-2.4.2/po/sk.po 
new/xfce4-whiskermenu-plugin-2.4.3/po/sk.po
--- old/xfce4-whiskermenu-plugin-2.4.2/po/sk.po 2020-02-15 11:22:40.000000000 
+0100
+++ new/xfce4-whiskermenu-plugin-2.4.3/po/sk.po 2020-03-11 13:46:21.000000000 
+0100
@@ -10,7 +10,7 @@
 "Project-Id-Version: Whisker Menu\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2020-01-24 09:02-0500\n"
-"PO-Revision-Date: 2020-02-12 22:14+0000\n"
+"PO-Revision-Date: 2020-02-22 11:48+0000\n"
 "Last-Translator: Slavko <[email protected]>\n"
 "Language-Team: Slovak (http://www.transifex.com/gottcode/xfce4-whiskermenu-";
 "plugin/language/sk/)\n"
@@ -51,7 +51,7 @@
 
 #: ../panel-plugin/configuration-dialog.cpp:683
 msgid "Application icon si_ze:"
-msgstr ""
+msgstr "_Veľkosť ikony aplikácie:"
 
 #: ../panel-plugin/plugin.cpp:213
 msgid "Applications"
@@ -331,11 +331,11 @@
 
 #: ../panel-plugin/configuration-dialog.cpp:595
 msgid "Show as lis_t"
-msgstr ""
+msgstr "Zobraziť ako _zoznam:"
 
 #: ../panel-plugin/configuration-dialog.cpp:603
 msgid "Show as t_ree"
-msgstr ""
+msgstr "Zobraziť ako st_rom:"
 
 #: ../panel-plugin/configuration-dialog.cpp:871
 msgid "Show c_onfirmation dialog"
@@ -522,7 +522,7 @@
 
 #: ../panel-plugin/settings.cpp:131
 msgid "_Settings Manager"
-msgstr ""
+msgstr "_Správca nastavení"
 
 #: ../panel-plugin/configuration-dialog.cpp:769
 msgid "_Title:"


Reply via email to