Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package xfce4-whiskermenu-plugin for openSUSE:Factory checked in at 2021-10-18 21:59:44 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/xfce4-whiskermenu-plugin (Old) and /work/SRC/openSUSE:Factory/.xfce4-whiskermenu-plugin.new.1890 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "xfce4-whiskermenu-plugin" Mon Oct 18 21:59:44 2021 rev:14 rq:925974 version:2.6.1 Changes: -------- --- /work/SRC/openSUSE:Factory/xfce4-whiskermenu-plugin/xfce4-whiskermenu-plugin.changes 2021-09-21 21:13:40.534674795 +0200 +++ /work/SRC/openSUSE:Factory/.xfce4-whiskermenu-plugin.new.1890/xfce4-whiskermenu-plugin.changes 2021-10-18 22:02:53.070123622 +0200 @@ -1,0 +2,12 @@ +Thu Oct 14 08:50:47 UTC 2021 - Marcel Kuehlhorn <tu...@opensuse.org> + +- Update to version 2.6.1 + * Fix menu not toggling. + (gxo#panel-plugins/xfce4-whiskermenu-plugin#61) + * Fix small icon in multi-row panels. + (gxo#panel-plugins/xfce4-whiskermenu-plugin#37) + * Fix missing minimize and maximize buttons in settings dialog. + * Replace deprecated code for grab check. + * Translation updates + +------------------------------------------------------------------- Old: ---- xfce4-whiskermenu-plugin-2.6.0.tar.bz2 New: ---- xfce4-whiskermenu-plugin-2.6.1.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ xfce4-whiskermenu-plugin.spec ++++++ --- /var/tmp/diff_new_pack.XvbhpI/_old 2021-10-18 22:02:53.482123920 +0200 +++ /var/tmp/diff_new_pack.XvbhpI/_new 2021-10-18 22:02:53.482123920 +0200 @@ -19,7 +19,7 @@ %define panel_version 4.12.0 %define plugin whiskermenu Name: xfce4-whiskermenu-plugin -Version: 2.6.0 +Version: 2.6.1 Release: 0 Summary: Alternate Xfce Menu License: GPL-2.0-or-later ++++++ xfce4-whiskermenu-plugin-2.6.0.tar.bz2 -> xfce4-whiskermenu-plugin-2.6.1.tar.bz2 ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/xfce4-whiskermenu-plugin-2.6.0/CMakeLists.txt new/xfce4-whiskermenu-plugin-2.6.1/CMakeLists.txt --- old/xfce4-whiskermenu-plugin-2.6.0/CMakeLists.txt 2021-09-19 19:11:19.000000000 +0200 +++ new/xfce4-whiskermenu-plugin-2.6.1/CMakeLists.txt 2021-10-13 22:37:13.000000000 +0200 @@ -5,7 +5,7 @@ # version number set(whiskermenu_version_major "2") set(whiskermenu_version_minor "6") -set(whiskermenu_version_micro "0") +set(whiskermenu_version_micro "1") 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.6.0/NEWS new/xfce4-whiskermenu-plugin-2.6.1/NEWS --- old/xfce4-whiskermenu-plugin-2.6.0/NEWS 2021-09-19 19:11:19.000000000 +0200 +++ new/xfce4-whiskermenu-plugin-2.6.1/NEWS 2021-10-13 22:37:13.000000000 +0200 @@ -1,3 +1,11 @@ +2.6.1 +===== +- Fix menu not toggling. (Issue #61) +- Fix small icon in multi-row panels. (Issue #37) +- Fix missing minimize and maximize buttons in settings dialog. +- Replace deprecated code for grab check. +- Translation updates: Greek, Slovak, Spanish. + 2.6.0 ===== - Fix unable to resize with metacity. (Issue #56) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/xfce4-whiskermenu-plugin-2.6.0/panel-plugin/command.cpp new/xfce4-whiskermenu-plugin-2.6.1/panel-plugin/command.cpp --- old/xfce4-whiskermenu-plugin-2.6.0/panel-plugin/command.cpp 2021-09-19 19:11:19.000000000 +0200 +++ new/xfce4-whiskermenu-plugin-2.6.1/panel-plugin/command.cpp 2021-10-13 22:37:13.000000000 +0200 @@ -1,5 +1,5 @@ /* - * Copyright (C) 2013-2020 Graeme Gott <gra...@gottcode.org> + * Copyright (C) 2013-2021 Graeme Gott <gra...@gottcode.org> * * This library is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -18,6 +18,7 @@ #include "command.h" #include "image-menu-item.h" +#include "plugin.h" #include "settings.h" #include "slot.h" @@ -212,7 +213,11 @@ } GError* error = nullptr; - if (!g_spawn_command_line_async(m_command, &error)) + if (g_spawn_command_line_async(m_command, &error)) + { + Plugin::launcher_activated(); + } + else { xfce_dialog_show_error(nullptr, error, m_error_text, nullptr); g_error_free(error); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/xfce4-whiskermenu-plugin-2.6.0/panel-plugin/element.cpp new/xfce4-whiskermenu-plugin-2.6.1/panel-plugin/element.cpp --- old/xfce4-whiskermenu-plugin-2.6.0/panel-plugin/element.cpp 2021-09-19 19:11:19.000000000 +0200 +++ new/xfce4-whiskermenu-plugin-2.6.1/panel-plugin/element.cpp 2021-10-13 22:37:13.000000000 +0200 @@ -17,6 +17,8 @@ #include "element.h" +#include "plugin.h" + #include <libxfce4ui/libxfce4ui.h> using namespace WhiskerMenu; @@ -101,7 +103,11 @@ g_strfreev(argv); } - if (G_UNLIKELY(!result)) + if (result) + { + Plugin::launcher_activated(); + } + else { xfce_dialog_show_error(nullptr, error, _("Failed to execute command \"%s\"."), command); g_error_free(error); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/xfce4-whiskermenu-plugin-2.6.0/panel-plugin/plugin.cpp new/xfce4-whiskermenu-plugin-2.6.1/panel-plugin/plugin.cpp --- old/xfce4-whiskermenu-plugin-2.6.0/panel-plugin/plugin.cpp 2021-09-19 19:11:19.000000000 +0200 +++ new/xfce4-whiskermenu-plugin-2.6.1/panel-plugin/plugin.cpp 2021-10-13 22:37:13.000000000 +0200 @@ -32,6 +32,8 @@ using namespace WhiskerMenu; +bool Plugin::m_menu_shown = false; + //----------------------------------------------------------------------------- extern "C" void whiskermenu_construct(XfcePanelPlugin* plugin) @@ -47,31 +49,28 @@ // Wait for grab; allows modifier as shortcut // Adapted from http://git.xfce.org/xfce/xfce4-panel/tree/common/panel-utils.c#n122 -static bool can_grab() +static bool can_grab(GtkWidget* widget) { - GdkWindow* window = gdk_screen_get_root_window(xfce_gdk_screen_get_active(nullptr)); + GdkWindow* window = gtk_widget_get_window(widget); GdkDisplay* display = gdk_window_get_display(window); GdkSeat* seat = gdk_display_get_default_seat(display); - GdkDevice* keyboard = gdk_seat_get_keyboard(seat); - // Don't try to get the grab for longer then 1/4 second - for (int i = 0; i < 2500; ++i) + for (int i = 0; i < 5; ++i) { -G_GNUC_BEGIN_IGNORE_DEPRECATIONS - const GdkGrabStatus grab_status = gdk_device_grab(keyboard, + const GdkGrabStatus grab_status = gdk_seat_grab(seat, window, - GDK_OWNERSHIP_NONE, - true, - GdkEventMask(GDK_KEY_PRESS_MASK | GDK_KEY_RELEASE_MASK), + GDK_SEAT_CAPABILITY_ALL, + false, + nullptr, nullptr, - GDK_CURRENT_TIME); + nullptr, + nullptr); if (grab_status == GDK_GRAB_SUCCESS) { - gdk_device_ungrab(keyboard, GDK_CURRENT_TIME); + gdk_seat_ungrab(seat); return true; } -G_GNUC_END_IGNORE_DEPRECATIONS - g_usleep(100); + g_usleep(100000); } return false; @@ -95,8 +94,7 @@ m_plugin(plugin), m_window(nullptr), m_opacity(100), - m_file_icon(false), - m_focus_out_time(0) + m_file_icon(false) { // Load settings wm_settings = new Settings; @@ -320,6 +318,7 @@ { if (gtk_widget_get_visible(m_window->get_widget())) { + m_menu_shown = false; m_window->hide(); } xfce_panel_plugin_block_autohide(m_plugin, false); @@ -380,23 +379,19 @@ return false; } - // Ignore event if menu lost focus and hid within last 1/4 second; + // Ignore event if last shown through remote event; // needed for toggling as remote event happens after focus is lost - if (m_focus_out_time) + if (m_menu_shown && !wm_settings->stay_on_focus_out) { - if ((g_get_monotonic_time() - m_focus_out_time) < 250000) - { - m_focus_out_time = 0; - return true; - } - m_focus_out_time = 0; + m_menu_shown = false; + return true; } if (gtk_widget_get_visible(m_window->get_widget())) { m_window->hide(); } - else if (!can_grab()) + else if (!can_grab(gtk_widget_get_toplevel(m_button))) { g_printerr("xfce4-whiskermenu-plugin: Unable to get keyboard. Menu popup failed.\n"); } @@ -467,6 +462,10 @@ } #if LIBXFCE4PANEL_CHECK_VERSION(4,13,0) gint icon_size = xfce_panel_plugin_get_icon_size(m_plugin); + if (!wm_settings->button_single_row) + { + icon_size *= xfce_panel_plugin_get_nrows(m_plugin); + } #else GtkBorder padding, border; GtkStyleContext* context = gtk_widget_get_style_context(m_button); @@ -573,7 +572,7 @@ m_opacity = wm_settings->menu_opacity; } m_window->show(at_cursor ? Window::PositionAtCursor : Window::Position(xfce_panel_plugin_get_orientation(m_plugin))); - m_focus_out_time = 0; + m_menu_shown = true; } //----------------------------------------------------------------------------- diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/xfce4-whiskermenu-plugin-2.6.0/panel-plugin/plugin.h new/xfce4-whiskermenu-plugin-2.6.1/panel-plugin/plugin.h --- old/xfce4-whiskermenu-plugin-2.6.0/panel-plugin/plugin.h 2021-09-19 19:11:19.000000000 +0200 +++ new/xfce4-whiskermenu-plugin-2.6.1/panel-plugin/plugin.h 2021-10-13 22:37:13.000000000 +0200 @@ -1,5 +1,5 @@ /* - * Copyright (C) 2013-2020 Graeme Gott <gra...@gottcode.org> + * Copyright (C) 2013-2021 Graeme Gott <gra...@gottcode.org> * * This library is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -58,11 +58,6 @@ static std::string get_button_title_default(); std::string get_button_icon_name() const; - void focus_lost() - { - m_focus_out_time = g_get_monotonic_time(); - } - void reload(); void set_button_style(ButtonStyle style); void set_button_title(const std::string& title); @@ -70,6 +65,11 @@ void set_configure_enabled(bool enabled); void set_loaded(bool loaded); + static void launcher_activated() + { + m_menu_shown = false; + } + private: void button_toggled(GtkToggleButton* button); void menu_hidden(); @@ -94,7 +94,8 @@ int m_opacity; bool m_file_icon; - gint64 m_focus_out_time; + + static bool m_menu_shown; }; } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/xfce4-whiskermenu-plugin-2.6.0/panel-plugin/settings-dialog.cpp new/xfce4-whiskermenu-plugin-2.6.1/panel-plugin/settings-dialog.cpp --- old/xfce4-whiskermenu-plugin-2.6.0/panel-plugin/settings-dialog.cpp 2021-09-19 19:11:19.000000000 +0200 +++ new/xfce4-whiskermenu-plugin-2.6.1/panel-plugin/settings-dialog.cpp 2021-10-13 22:37:13.000000000 +0200 @@ -84,22 +84,17 @@ m_plugin(plugin) { // Create dialog window - GtkWindow* window = nullptr; - GtkWidget* toplevel = gtk_widget_get_toplevel(m_plugin->get_button()); - if (gtk_widget_is_toplevel(toplevel)) - { - window = GTK_WINDOW(toplevel); - } -#if LIBXFCE4PANEL_CHECK_VERSION(4,13,0) +#if LIBXFCE4UI_CHECK_VERSION(4,13,0) m_window = xfce_titled_dialog_new_with_mixed_buttons(_("Whisker Menu"), - window, + nullptr, GtkDialogFlags(0), "help-browser", _("_Help"), GTK_RESPONSE_HELP, "window-close-symbolic", _("_Close"), GTK_RESPONSE_CLOSE, nullptr); + gtk_window_set_type_hint(GTK_WINDOW(m_window), GDK_WINDOW_TYPE_HINT_NORMAL); #else m_window = xfce_titled_dialog_new_with_buttons(_("Whisker Menu"), - window, + GTK_WINDOW(gtk_widget_get_toplevel(GTK_WIDGET(m_plugin->get_button()))), GtkDialogFlags(0), _("_Help"), GTK_RESPONSE_HELP, _("_Close"), GTK_RESPONSE_CLOSE, diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/xfce4-whiskermenu-plugin-2.6.0/panel-plugin/window.cpp new/xfce4-whiskermenu-plugin-2.6.1/panel-plugin/window.cpp --- old/xfce4-whiskermenu-plugin-2.6.0/panel-plugin/window.cpp 2021-09-19 19:11:19.000000000 +0200 +++ new/xfce4-whiskermenu-plugin-2.6.1/panel-plugin/window.cpp 2021-10-13 22:37:13.000000000 +0200 @@ -75,6 +75,7 @@ g_signal_connect_slot(m_window, "map-event", &Window::on_map_event, this); g_signal_connect_slot(m_window, "state-flags-changed", &Window::on_state_flags_changed_event, this); g_signal_connect_slot(m_window, "configure-event", &Window::on_configure_event, this); + g_signal_connect_slot(m_window, "window-state-event", &Window::on_window_state_event, this); g_signal_connect(m_window, "delete-event", G_CALLBACK(>k_widget_hide_on_delete), nullptr); // Create the border of the window @@ -571,7 +572,6 @@ if (!m_child_has_focus && gtk_widget_get_visible(widget)) { hide(); - m_plugin->focus_lost(); } return GDK_EVENT_PROPAGATE; @@ -709,6 +709,21 @@ return GDK_EVENT_PROPAGATE; } + +//----------------------------------------------------------------------------- + +gboolean WhiskerMenu::Window::on_window_state_event(GtkWidget*, GdkEvent* event) +{ + // Workaround to detect clicking off menu to hide it; xfwm only sets it to this + // state in that case, for all others it is purely GDK_WINDOW_STATE_WITHDRAWN + GdkEventWindowState* state_event = reinterpret_cast<GdkEventWindowState*>(event); + if (state_event->new_window_state == (GDK_WINDOW_STATE_WITHDRAWN | GDK_WINDOW_STATE_STICKY)) + { + Plugin::launcher_activated(); + } + + return GDK_EVENT_PROPAGATE; +} //----------------------------------------------------------------------------- diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/xfce4-whiskermenu-plugin-2.6.0/panel-plugin/window.h new/xfce4-whiskermenu-plugin-2.6.1/panel-plugin/window.h --- old/xfce4-whiskermenu-plugin-2.6.0/panel-plugin/window.h 2021-09-19 19:11:19.000000000 +0200 +++ new/xfce4-whiskermenu-plugin-2.6.1/panel-plugin/window.h 2021-10-13 22:37:13.000000000 +0200 @@ -1,5 +1,5 @@ /* - * Copyright (C) 2013-2020 Graeme Gott <gra...@gottcode.org> + * Copyright (C) 2013-2021 Graeme Gott <gra...@gottcode.org> * * This library is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -95,6 +95,7 @@ gboolean on_map_event(GtkWidget*, GdkEvent*); gboolean on_state_flags_changed_event(GtkWidget*widget, GtkStateFlags); gboolean on_configure_event(GtkWidget*, GdkEvent* event); + gboolean on_window_state_event(GtkWidget*, GdkEvent* event); void on_screen_changed_event(GtkWidget* widget, GdkScreen* old_screen); gboolean on_draw_event(GtkWidget* widget, cairo_t* cr); void check_scrollbar_needed(); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/xfce4-whiskermenu-plugin-2.6.0/po/el.po new/xfce4-whiskermenu-plugin-2.6.1/po/el.po --- old/xfce4-whiskermenu-plugin-2.6.0/po/el.po 2021-09-19 19:11:19.000000000 +0200 +++ new/xfce4-whiskermenu-plugin-2.6.1/po/el.po 2021-10-13 22:37:13.000000000 +0200 @@ -1,5 +1,5 @@ # Greek translation of xfce4-whiskermenu-plugin. -# Copyright (C) 2020 Graeme Gott +# Copyright (C) 2021 Graeme Gott # This file is distributed under the same license as the xfce4-whiskermenu-plugin package. # # Translators: @@ -16,8 +16,8 @@ msgstr "" "Project-Id-Version: Whisker Menu\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-19 19:33-0500\n" -"PO-Revision-Date: 2021-01-12 15:48+0000\n" +"POT-Creation-Date: 2021-03-11 10:52-0500\n" +"PO-Revision-Date: 2021-10-10 07:40+0000\n" "Last-Translator: Ioannis LM\n" "Language-Team: Greek (http://www.transifex.com/gottcode/xfce4-whiskermenu-plugin/language/el/)\n" "MIME-Version: 1.0\n" @@ -26,7 +26,7 @@ "Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ../panel-plugin/settings-dialog.cpp:1060 +#: ../panel-plugin/settings-dialog.cpp:1075 msgid "Add action" msgstr "???????????????? ??????????????????" @@ -43,7 +43,7 @@ msgstr "???????????????? ?????? ????????????" #: ../panel-plugin/applications-page.cpp:40 ../panel-plugin/category.cpp:51 -#: ../panel-plugin/settings-dialog.cpp:908 +#: ../panel-plugin/settings-dialog.cpp:917 msgid "All Applications" msgstr "???????? ???? ??????????????????" @@ -51,36 +51,36 @@ msgid "Alternate application launcher for Xfce" msgstr "???????????????????????? ?????????????????? ?????????????????? ?????? ???? Xfce" -#: ../panel-plugin/settings-dialog.cpp:957 +#: ../panel-plugin/settings-dialog.cpp:972 msgid "Amount of _items:" msgstr "???????????? _????????????????????????:" -#: ../panel-plugin/settings-dialog.cpp:763 +#: ../panel-plugin/settings-dialog.cpp:772 msgid "Application icon si_ze:" msgstr "?????????????? ???????????????????? _??????????????????:" -#: ../panel-plugin/settings.cpp:90 +#: ../panel-plugin/settings.cpp:109 msgid "Applications" msgstr "??????????????????" -#: ../panel-plugin/launcher.cpp:279 +#: ../panel-plugin/launcher.cpp:277 #, c-format msgid "Are you sure you want to hide \"%s\"?" msgstr "???????????? ?????????????? ???? ???????????????????? ?????? \"%s\";" -#: ../panel-plugin/settings.cpp:158 +#: ../panel-plugin/settings.cpp:185 msgid "Are you sure you want to log out?" msgstr "???????????? ?????????????? ????????????????????;" -#: ../panel-plugin/settings.cpp:164 +#: ../panel-plugin/settings.cpp:191 msgid "Are you sure you want to restart?" msgstr "???????????? ?????????????? ????????????????????????;" -#: ../panel-plugin/settings.cpp:170 +#: ../panel-plugin/settings.cpp:197 msgid "Are you sure you want to shut down?" msgstr "???????????? ?????????????? ????????????????????;" -#: ../panel-plugin/settings-dialog.cpp:803 +#: ../panel-plugin/settings-dialog.cpp:812 msgid "Background opacit_y:" msgstr "???????????????????? ??????????????_????????:" @@ -88,11 +88,11 @@ msgid "Browse the file system to choose a custom command." msgstr "?????????????????? ?????? ???????????????????? ?????????????? ?????? ?????? ?????????????? ???????? ??????????????." -#: ../panel-plugin/settings-dialog.cpp:1117 +#: ../panel-plugin/settings-dialog.cpp:1132 msgid "C_ommand:" msgstr "_????????????:" -#: ../panel-plugin/settings-dialog.cpp:781 +#: ../panel-plugin/settings-dialog.cpp:790 msgid "Categ_ory icon size:" msgstr "?????????????? ???????????????????? _????????????????????:" @@ -101,26 +101,26 @@ msgstr "???????????????????? ???????????????? ????????????????????????????????" #: ../panel-plugin/plugin.cpp:439 -msgid "Copyright ?? 2013-2020 Graeme Gott" -msgstr "???????????????????? ???????????????????? ?? 2013-2020 Graeme Gott" +msgid "Copyright ?? 2013-2021 Graeme Gott" +msgstr "???????????????????? ???????????????????? ?? 2013-2021 Graeme Gott" -#: ../panel-plugin/settings-dialog.cpp:895 +#: ../panel-plugin/settings-dialog.cpp:904 msgid "Default Category" msgstr "?????????????????????????? ??????????????????" -#: ../panel-plugin/settings-dialog.cpp:1088 +#: ../panel-plugin/settings-dialog.cpp:1103 msgid "Details" msgstr "????????????????????????" -#: ../panel-plugin/settings-dialog.cpp:833 +#: ../panel-plugin/settings-dialog.cpp:842 msgid "Di_splay:" msgstr "????_????????????:" -#: ../panel-plugin/settings.cpp:176 +#: ../panel-plugin/settings.cpp:203 msgid "Do you want to suspend to RAM?" msgstr "???????????? ???????????????? ?????? RAM;" -#: ../panel-plugin/settings.cpp:182 +#: ../panel-plugin/settings.cpp:209 msgid "Do you want to suspend to disk?" msgstr "???????????? ???????????????????????? ?????? ??????????;" @@ -128,79 +128,78 @@ msgid "Edit Application..." msgstr "?????????????????????? ??????????????????..." -#: ../panel-plugin/settings.cpp:193 +#: ../panel-plugin/settings.cpp:220 msgid "Edit _Profile" msgstr "??????_???????????????? ????????????" -#: ../panel-plugin/settings.cpp:195 +#: ../panel-plugin/settings.cpp:222 msgid "Failed to edit profile." msgstr "?? ?????????????????????? ?????? ???????????? ??????????????." -#: ../panel-plugin/launcher.cpp:333 ../panel-plugin/launcher.cpp:382 -#: ../panel-plugin/run-action.cpp:56 ../panel-plugin/search-action.cpp:202 +#: ../panel-plugin/element.cpp:106 #, c-format msgid "Failed to execute command \"%s\"." msgstr "???????????????? ?????????????????? ?????? ?????????????? \"%s\"." -#: ../panel-plugin/settings.cpp:181 +#: ../panel-plugin/settings.cpp:208 msgid "Failed to hibernate." msgstr "???????????????? ??????????????????????????." -#: ../panel-plugin/settings.cpp:191 +#: ../panel-plugin/settings.cpp:218 msgid "Failed to launch menu editor." msgstr "???????????????? ?????????????????? ?????? ?????????????????????? ??????????." -#: ../panel-plugin/settings.cpp:149 +#: ../panel-plugin/settings.cpp:176 msgid "Failed to lock screen." msgstr "???????????????? ?????????????????????? ????????????." -#: ../panel-plugin/settings.cpp:157 ../panel-plugin/settings.cpp:187 +#: ../panel-plugin/settings.cpp:184 ../panel-plugin/settings.cpp:214 msgid "Failed to log out." msgstr "???????????????? ??????????????????????." -#: ../panel-plugin/settings.cpp:145 +#: ../panel-plugin/settings.cpp:172 msgid "Failed to open settings manager." msgstr "???????????????? ?????????????????? ?????? ?????????????????????? ??????????????????." -#: ../panel-plugin/settings.cpp:163 +#: ../panel-plugin/settings.cpp:190 msgid "Failed to restart." msgstr "???????????????? ??????????????????????????." -#: ../panel-plugin/settings.cpp:169 +#: ../panel-plugin/settings.cpp:196 msgid "Failed to shut down." msgstr "???????????????? ??????????????????????." -#: ../panel-plugin/settings.cpp:175 +#: ../panel-plugin/settings.cpp:202 msgid "Failed to suspend." msgstr "???????????????? ??????????????????." -#: ../panel-plugin/settings.cpp:153 +#: ../panel-plugin/settings.cpp:180 msgid "Failed to switch user." msgstr "???????????????? ?????????????? ????????????." #: ../panel-plugin/favorites-page.cpp:37 -#: ../panel-plugin/settings-dialog.cpp:899 +#: ../panel-plugin/settings-dialog.cpp:908 msgid "Favorites" msgstr "??????????????????" -#: ../panel-plugin/settings.cpp:183 +#: ../panel-plugin/settings.cpp:210 #, c-format msgid "Hibernating computer in %d seconds." msgstr "???????????????????????? ???????????????????? ???? %d ????????????????????????." -#: ../panel-plugin/launcher.cpp:278 ../panel-plugin/page.cpp:430 +#: ../panel-plugin/launcher.cpp:276 ../panel-plugin/page.cpp:430 msgid "Hide Application" msgstr "???????????????? ??????????????????" -#: ../panel-plugin/settings-dialog.cpp:838 +#: ../panel-plugin/settings-dialog.cpp:847 msgid "Icon" msgstr "??????????????????" -#: ../panel-plugin/settings-dialog.cpp:840 +#: ../panel-plugin/settings-dialog.cpp:849 msgid "Icon and title" msgstr "?????????????????? ?????? ????????????" -#: ../panel-plugin/settings-dialog.cpp:968 +#: ../panel-plugin/settings-dialog.cpp:983 msgid "Include _favorites" msgstr "?????????????????????? ??_??????????????????" @@ -212,32 +211,32 @@ msgid "Larger" msgstr "????????????????????" -#: ../panel-plugin/settings.cpp:185 +#: ../panel-plugin/settings.cpp:212 msgid "Log Ou_t..." msgstr "????????????_????????..." -#: ../panel-plugin/settings.cpp:155 +#: ../panel-plugin/settings.cpp:182 msgid "Log _Out" msgstr "_????????????????????" -#: ../panel-plugin/settings.cpp:159 +#: ../panel-plugin/settings.cpp:186 #, c-format msgid "Logging out in %d seconds." msgstr "???????????????????? ???? %d ????????????????????????." -#: ../panel-plugin/settings.cpp:131 +#: ../panel-plugin/settings.cpp:158 msgid "Man Pages" msgstr "?????????????? ??????????????????????" -#: ../panel-plugin/settings-dialog.cpp:932 +#: ../panel-plugin/settings-dialog.cpp:941 msgid "Menu" msgstr "??????????" -#: ../panel-plugin/settings-dialog.cpp:1092 +#: ../panel-plugin/settings-dialog.cpp:1107 msgid "Nam_e:" msgstr "??_????????:" -#: ../panel-plugin/settings-dialog.cpp:1038 +#: ../panel-plugin/settings-dialog.cpp:1053 msgid "Name" msgstr "??????????" @@ -249,32 +248,32 @@ msgid "Normal" msgstr "????????????????" -#: ../panel-plugin/settings.cpp:135 +#: ../panel-plugin/settings.cpp:162 msgid "Open URI" msgstr "?????????????? URI" -#: ../panel-plugin/settings-dialog.cpp:1043 +#: ../panel-plugin/settings-dialog.cpp:1058 msgid "Pattern" msgstr "????????????" -#: ../panel-plugin/settings-dialog.cpp:747 +#: ../panel-plugin/settings-dialog.cpp:756 msgid "Position _search entry next to panel button" msgstr "???????????????????? ?????? ???????????? ????_?????????? ?????????? ?????? ???????????? ?????? ????????????" -#: ../panel-plugin/settings-dialog.cpp:741 +#: ../panel-plugin/settings-dialog.cpp:750 msgid "Position cate_gories next to panel button" msgstr "???????????????????? ?????? ????????_???????????? ?????????? ?????? ???????????? ?????? ????????????" -#: ../panel-plugin/settings-dialog.cpp:753 +#: ../panel-plugin/settings-dialog.cpp:762 msgid "Position commands next to search _entry" msgstr "???????????????????? ?????? ?????????????? ??????_???? ?????? ?????????? ??????????????" -#: ../panel-plugin/recent-page.cpp:37 ../panel-plugin/settings-dialog.cpp:903 -#: ../panel-plugin/settings-dialog.cpp:953 +#: ../panel-plugin/recent-page.cpp:37 ../panel-plugin/settings-dialog.cpp:912 +#: ../panel-plugin/settings-dialog.cpp:968 msgid "Recently Used" msgstr "????????????????" -#: ../panel-plugin/settings-dialog.cpp:537 +#: ../panel-plugin/settings-dialog.cpp:546 #, c-format msgid "Remove action \"%s\"?" msgstr "???????????????? ?????? ?????????????????? \"%s\";" @@ -283,21 +282,21 @@ msgid "Remove from Favorites" msgstr "???????????????? ?????? ???? ??????????????????" -#: ../panel-plugin/settings-dialog.cpp:1069 +#: ../panel-plugin/settings-dialog.cpp:1084 msgid "Remove selected action" msgstr "???????????????? ?????? ?????????????????????? ??????????????????" -#: ../panel-plugin/settings.cpp:165 +#: ../panel-plugin/settings.cpp:192 #, c-format msgid "Restarting computer in %d seconds." msgstr "???????????????????????? ???????????????????? ???? %d ????????????????????????." -#: ../panel-plugin/run-action.cpp:86 +#: ../panel-plugin/run-action.cpp:64 #, c-format msgid "Run %s" msgstr "???????????????? ?????? %s" -#: ../panel-plugin/settings.cpp:134 +#: ../panel-plugin/settings.cpp:161 msgid "Run in Terminal" msgstr "???????????????? ???? ??????????????????" @@ -305,7 +304,7 @@ msgid "Search Actio_ns" msgstr "?????????????????? ??????_??????????????" -#: ../panel-plugin/search-action.cpp:273 +#: ../panel-plugin/search-action.cpp:251 msgid "Search Action" msgstr "?????????????????? ??????????????????" @@ -317,7 +316,7 @@ msgid "Select an Icon" msgstr "???????????????? ??????????????????" -#: ../panel-plugin/settings-dialog.cpp:976 +#: ../panel-plugin/settings-dialog.cpp:991 msgid "Session Commands" msgstr "?????????????? ??????????????????" @@ -325,39 +324,39 @@ msgid "Show a menu to easily access installed applications" msgstr "???????????????? ?????????? ?????? ???????????? ???????????????? ???????? ???????????????????????????? ??????????????????" -#: ../panel-plugin/settings-dialog.cpp:730 +#: ../panel-plugin/settings-dialog.cpp:739 msgid "Show application _descriptions" msgstr "???????????????? _???????????????????? ??????????????????" -#: ../panel-plugin/settings-dialog.cpp:724 +#: ../panel-plugin/settings-dialog.cpp:733 msgid "Show application too_ltips" msgstr "???????????????? ?????????????????????? ??????_???????????? ??????????????????" -#: ../panel-plugin/settings-dialog.cpp:638 +#: ../panel-plugin/settings-dialog.cpp:647 msgid "Show as _icons" msgstr "???????????????? _????????????????????" -#: ../panel-plugin/settings-dialog.cpp:655 +#: ../panel-plugin/settings-dialog.cpp:664 msgid "Show as lis_t" msgstr "???????????????? _????????????" -#: ../panel-plugin/settings-dialog.cpp:673 +#: ../panel-plugin/settings-dialog.cpp:682 msgid "Show as t_ree" msgstr "???????????????? _??????????" -#: ../panel-plugin/settings-dialog.cpp:980 +#: ../panel-plugin/settings-dialog.cpp:995 msgid "Show c_onfirmation dialog" msgstr "???????????????? ???????????????? ??????_??????????????????" -#: ../panel-plugin/settings-dialog.cpp:717 +#: ../panel-plugin/settings-dialog.cpp:726 msgid "Show cate_gory names" msgstr "???????????????? ???????????????? _????????????????????" -#: ../panel-plugin/settings-dialog.cpp:711 +#: ../panel-plugin/settings-dialog.cpp:720 msgid "Show generic application _names" msgstr "???????????????? ?????????????? _???????????????? ??????????????????" -#: ../panel-plugin/settings.cpp:167 +#: ../panel-plugin/settings.cpp:194 msgid "Shut _Down" msgstr "_??????????????????????" @@ -377,43 +376,47 @@ msgid "Sort Alphabetically Z-A" msgstr "???????????????????? ???????????????????? ??-??" -#: ../panel-plugin/settings-dialog.cpp:942 +#: ../panel-plugin/settings-dialog.cpp:957 +msgid "Sort ca_tegories" +msgstr "???????????????????? ????_????????????????" + +#: ../panel-plugin/settings-dialog.cpp:951 msgid "Stay _visible when focus is lost" msgstr "????_???????????? ???????? ?????????????? ?? ??????????????" -#: ../panel-plugin/settings.cpp:173 +#: ../panel-plugin/settings.cpp:200 msgid "Suspe_nd" msgstr "????????????_????" -#: ../panel-plugin/settings.cpp:177 +#: ../panel-plugin/settings.cpp:204 #, c-format msgid "Suspending computer in %d seconds." msgstr "???????????????? ???????????????????? ???? %d ????????????????????????." -#: ../panel-plugin/settings.cpp:151 +#: ../panel-plugin/settings.cpp:178 msgid "Switch _User" msgstr "???????????? _????????????" -#: ../panel-plugin/settings-dialog.cpp:936 +#: ../panel-plugin/settings-dialog.cpp:945 msgid "Switch categories by _hovering" msgstr "???????????? ???????????????????? ?????? _?????????????? ?????? ??????????????????" -#: ../panel-plugin/settings-dialog.cpp:536 +#: ../panel-plugin/settings-dialog.cpp:545 msgid "The action will be deleted permanently." msgstr "???????? ?? ???????????????? ???? ?????????????????? ????????????" -#: ../panel-plugin/settings-dialog.cpp:839 +#: ../panel-plugin/settings-dialog.cpp:848 msgid "Title" msgstr "????????????" -#: ../panel-plugin/launcher.cpp:273 +#: ../panel-plugin/launcher.cpp:271 #, c-format msgid "" "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:171 +#: ../panel-plugin/settings.cpp:198 #, c-format msgid "Turning off computer in %d seconds." msgstr "?????????????????????? ???????????????????? ???? %d ????????????????????????." @@ -426,16 +429,16 @@ msgid "Unable to add launcher to panel." msgstr "?????????????? ?? ???????????????? ???????????????? ?????? ????????????." -#: ../panel-plugin/page.cpp:567 +#: ../panel-plugin/page.cpp:566 msgid "Unable to edit launcher." msgstr "?????????????? ?? ?????????????????????? ????????????????." -#: ../panel-plugin/settings-dialog.cpp:597 +#: ../panel-plugin/settings-dialog.cpp:606 #, c-format msgid "Unable to open the following url: %s" msgstr "?????????????? ???? ?????????????? ?? ?????????????????? ??????????????????: %s" -#: ../panel-plugin/settings-dialog.cpp:874 +#: ../panel-plugin/settings-dialog.cpp:883 msgid "Use a single _panel row" msgstr "?????????? ???????? ???????? _?????????????? ?????? ????????????" @@ -447,7 +450,7 @@ msgid "Very Small" msgstr "???????? ??????????" -#: ../panel-plugin/settings.cpp:132 +#: ../panel-plugin/settings.cpp:159 msgid "Web Search" msgstr "?????????????????? ?????? ??????????????????" @@ -457,7 +460,7 @@ msgid "Whisker Menu" msgstr "?????????? Whisker" -#: ../panel-plugin/settings.cpp:133 +#: ../panel-plugin/settings.cpp:160 msgid "Wikipedia" msgstr "Wikipedia" @@ -482,11 +485,11 @@ msgid "_Commands" msgstr "??_????????????" -#: ../panel-plugin/settings-dialog.cpp:535 +#: ../panel-plugin/settings-dialog.cpp:544 msgid "_Delete" msgstr "_????????????????" -#: ../panel-plugin/settings.cpp:189 +#: ../panel-plugin/settings.cpp:216 msgid "_Edit Applications" msgstr "??_???????????????????? ??????????????????" @@ -495,15 +498,15 @@ msgid "_Help" msgstr "_??????????????" -#: ../panel-plugin/settings.cpp:179 +#: ../panel-plugin/settings.cpp:206 msgid "_Hibernate" msgstr "??_??????????????????????" -#: ../panel-plugin/settings-dialog.cpp:861 +#: ../panel-plugin/settings-dialog.cpp:870 msgid "_Icon:" msgstr "_??????????????????:" -#: ../panel-plugin/settings.cpp:147 +#: ../panel-plugin/settings.cpp:174 msgid "_Lock Screen" msgstr "??_?????????????? ????????????" @@ -515,23 +518,23 @@ msgid "_Panel Button" msgstr "???????????? ????????????" -#: ../panel-plugin/settings-dialog.cpp:1105 +#: ../panel-plugin/settings-dialog.cpp:1120 msgid "_Pattern:" msgstr "??_??????????:" -#: ../panel-plugin/settings-dialog.cpp:1129 +#: ../panel-plugin/settings-dialog.cpp:1144 msgid "_Regular expression" msgstr "_???????????????? ??????????????" -#: ../panel-plugin/settings.cpp:161 +#: ../panel-plugin/settings.cpp:188 msgid "_Restart" msgstr "??????????????_??????????" -#: ../panel-plugin/settings.cpp:143 +#: ../panel-plugin/settings.cpp:170 msgid "_Settings Manager" msgstr "_???????????????????????? ??????????????????" -#: ../panel-plugin/settings-dialog.cpp:849 +#: ../panel-plugin/settings-dialog.cpp:858 msgid "_Title:" msgstr "_????????????:" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/xfce4-whiskermenu-plugin-2.6.0/po/es.po new/xfce4-whiskermenu-plugin-2.6.1/po/es.po --- old/xfce4-whiskermenu-plugin-2.6.0/po/es.po 2021-09-19 19:11:19.000000000 +0200 +++ new/xfce4-whiskermenu-plugin-2.6.1/po/es.po 2021-10-13 22:37:13.000000000 +0200 @@ -13,7 +13,7 @@ # Inti Alonso <intialo...@gmail.com>, 2013 # Jason Collins <jasonpcoll...@protonmail.com>, 2018 # John Teixido <jtdevn...@gmail.com>, 2021 -# Logan 8192 <logan8...@protonmail.com>, 2019 +# a1a9b52a3f40dff112eca965c254c602_089360e <d1597d94e208cfb976efe0f2ce18d2e5_734602>, 2019 # Noe Moreno <noe.mor...@gmail.com>, 2016 # prflr88 <prfl...@gmail.com>, 2013-2015 # prflr88 <prfl...@gmail.com>, 2017 @@ -24,7 +24,7 @@ "Project-Id-Version: Whisker Menu\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2021-03-11 10:52-0500\n" -"PO-Revision-Date: 2021-05-24 11:07+0000\n" +"PO-Revision-Date: 2021-10-11 06:59+0000\n" "Last-Translator: Toni Est??vez <toni.este...@gmail.com>\n" "Language-Team: Spanish (http://www.transifex.com/gottcode/xfce4-whiskermenu-plugin/language/es/)\n" "MIME-Version: 1.0\n" @@ -43,7 +43,7 @@ #: ../panel-plugin/page.cpp:404 msgid "Add to Favorites" -msgstr "A??adir a las aplicaciones favoritas" +msgstr "A??adir a aplicaciones favoritas" #: ../panel-plugin/page.cpp:419 msgid "Add to Panel" @@ -208,7 +208,7 @@ #: ../panel-plugin/settings-dialog.cpp:983 msgid "Include _favorites" -msgstr "_Incluir las aplicaciones favoritas" +msgstr "_Incluir aplicaciones favoritas" #: ../panel-plugin/icon-size.cpp:54 msgid "Large" @@ -265,15 +265,15 @@ #: ../panel-plugin/settings-dialog.cpp:756 msgid "Position _search entry next to panel button" -msgstr "Situar el cuadro de b??s_queda junto al bot??n del panel" +msgstr "Cuadro de b??s_queda junto al bot??n del panel" #: ../panel-plugin/settings-dialog.cpp:750 msgid "Position cate_gories next to panel button" -msgstr "Situar las categor??as junto al bot??n del _panel" +msgstr "Categor??as junto al bot??n del _panel" #: ../panel-plugin/settings-dialog.cpp:762 msgid "Position commands next to search _entry" -msgstr "Situar las ??rdenes _junto al cuadro de b??squeda" +msgstr "??rdenes _junto al cuadro de b??squeda" #: ../panel-plugin/recent-page.cpp:37 ../panel-plugin/settings-dialog.cpp:912 #: ../panel-plugin/settings-dialog.cpp:968 @@ -287,7 +287,7 @@ #: ../panel-plugin/page.cpp:410 msgid "Remove from Favorites" -msgstr "Eliminar de las aplicaciones favoritas" +msgstr "Eliminar de aplicaciones favoritas" #: ../panel-plugin/settings-dialog.cpp:1084 msgid "Remove selected action" @@ -329,7 +329,7 @@ #: ../panel-plugin/whiskermenu.desktop.in:6 msgid "Show a menu to easily access installed applications" -msgstr "Muestra un men?? para acceder f??cilmente a las aplicaciones instaladas" +msgstr "Mostrar un men?? para acceder f??cilmente a las aplicaciones instaladas" #: ../panel-plugin/settings-dialog.cpp:739 msgid "Show application _descriptions" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/xfce4-whiskermenu-plugin-2.6.0/po/sk.po new/xfce4-whiskermenu-plugin-2.6.1/po/sk.po --- old/xfce4-whiskermenu-plugin-2.6.0/po/sk.po 2021-09-19 19:11:19.000000000 +0200 +++ new/xfce4-whiskermenu-plugin-2.6.1/po/sk.po 2021-10-13 22:37:13.000000000 +0200 @@ -1,16 +1,16 @@ # Slovak translation of xfce4-whiskermenu-plugin. -# Copyright (C) 2020 Graeme Gott +# Copyright (C) 2021 Graeme Gott # This file is distributed under the same license as the xfce4-whiskermenu-plugin package. # # Translators: # Jose Riha <jose1...@gmail.com>, 2018-2019 -# Slavko <li...@slavino.sk>, 2013-2020 +# Slavko <li...@slavino.sk>, 2013-2021 msgid "" msgstr "" "Project-Id-Version: Whisker Menu\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-11-19 19:33-0500\n" -"PO-Revision-Date: 2020-02-22 11:48+0000\n" +"POT-Creation-Date: 2021-03-11 10:52-0500\n" +"PO-Revision-Date: 2021-10-09 19:59+0000\n" "Last-Translator: Slavko <li...@slavino.sk>\n" "Language-Team: Slovak (http://www.transifex.com/gottcode/xfce4-whiskermenu-" "plugin/language/sk/)\n" @@ -21,7 +21,7 @@ "Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n " ">= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n" -#: ../panel-plugin/settings-dialog.cpp:1060 +#: ../panel-plugin/settings-dialog.cpp:1075 msgid "Add action" msgstr "Prida?? akciu" @@ -38,7 +38,7 @@ msgstr "Prida?? do panela" #: ../panel-plugin/applications-page.cpp:40 ../panel-plugin/category.cpp:51 -#: ../panel-plugin/settings-dialog.cpp:908 +#: ../panel-plugin/settings-dialog.cpp:917 msgid "All Applications" msgstr "V??etky aplik??cie" @@ -46,36 +46,36 @@ msgid "Alternate application launcher for Xfce" msgstr "Alternat??vny sp??????a?? aplik??ci?? pre XFCE" -#: ../panel-plugin/settings-dialog.cpp:957 +#: ../panel-plugin/settings-dialog.cpp:972 msgid "Amount of _items:" msgstr "Po??et polo??_iek:" -#: ../panel-plugin/settings-dialog.cpp:763 +#: ../panel-plugin/settings-dialog.cpp:772 msgid "Application icon si_ze:" msgstr "_Ve??kos?? ikony aplik??cie:" -#: ../panel-plugin/settings.cpp:90 +#: ../panel-plugin/settings.cpp:109 msgid "Applications" msgstr "Aplik??cie" -#: ../panel-plugin/launcher.cpp:279 +#: ../panel-plugin/launcher.cpp:277 #, c-format msgid "Are you sure you want to hide \"%s\"?" msgstr "Naozaj chcete skry?? ???%s????" -#: ../panel-plugin/settings.cpp:158 +#: ../panel-plugin/settings.cpp:185 msgid "Are you sure you want to log out?" msgstr "Naozaj sa chcete odhl??si???" -#: ../panel-plugin/settings.cpp:164 +#: ../panel-plugin/settings.cpp:191 msgid "Are you sure you want to restart?" msgstr "Naozaj chcete re??tartova?? po????ta???" -#: ../panel-plugin/settings.cpp:170 +#: ../panel-plugin/settings.cpp:197 msgid "Are you sure you want to shut down?" msgstr "Naozaj chcete vypn???? po????ta???" -#: ../panel-plugin/settings-dialog.cpp:803 +#: ../panel-plugin/settings-dialog.cpp:812 msgid "Background opacit_y:" msgstr "Neprie_h??adnos?? pozadia" @@ -83,11 +83,11 @@ msgid "Browse the file system to choose a custom command." msgstr "Prezrie?? s??borov?? syst??m a zvoli?? vlastn?? pr??kaz." -#: ../panel-plugin/settings-dialog.cpp:1117 +#: ../panel-plugin/settings-dialog.cpp:1132 msgid "C_ommand:" msgstr "P_r??kaz:" -#: ../panel-plugin/settings-dialog.cpp:781 +#: ../panel-plugin/settings-dialog.cpp:790 msgid "Categ_ory icon size:" msgstr "Ve??kos?? ikony _kategorie" @@ -96,26 +96,26 @@ msgstr "Vymaza?? ned??vne" #: ../panel-plugin/plugin.cpp:439 -msgid "Copyright ?? 2013-2020 Graeme Gott" -msgstr "Copyright ?? 2013-2020 Graeme Gott" +msgid "Copyright ?? 2013-2021 Graeme Gott" +msgstr "Copyright ?? 2013-2021 Graeme Gott" -#: ../panel-plugin/settings-dialog.cpp:895 +#: ../panel-plugin/settings-dialog.cpp:904 msgid "Default Category" msgstr "Predvolen?? kateg??ria" -#: ../panel-plugin/settings-dialog.cpp:1088 +#: ../panel-plugin/settings-dialog.cpp:1103 msgid "Details" msgstr "Podrobnosti" -#: ../panel-plugin/settings-dialog.cpp:833 +#: ../panel-plugin/settings-dialog.cpp:842 msgid "Di_splay:" msgstr "_Zobrazi??:" -#: ../panel-plugin/settings.cpp:176 +#: ../panel-plugin/settings.cpp:203 msgid "Do you want to suspend to RAM?" msgstr "Naozaj chcete syst??m uspa?? do RAM?" -#: ../panel-plugin/settings.cpp:182 +#: ../panel-plugin/settings.cpp:209 msgid "Do you want to suspend to disk?" msgstr "Naozaj chcete syst??m uspa?? na disk?" @@ -123,79 +123,78 @@ msgid "Edit Application..." msgstr "Upravi?? aplik??ciu..." -#: ../panel-plugin/settings.cpp:193 +#: ../panel-plugin/settings.cpp:220 msgid "Edit _Profile" msgstr "Upravi?? _profil" -#: ../panel-plugin/settings.cpp:195 +#: ../panel-plugin/settings.cpp:222 msgid "Failed to edit profile." msgstr "??prava profilu zlyhala." -#: ../panel-plugin/launcher.cpp:333 ../panel-plugin/launcher.cpp:382 -#: ../panel-plugin/run-action.cpp:56 ../panel-plugin/search-action.cpp:202 +#: ../panel-plugin/element.cpp:106 #, c-format msgid "Failed to execute command \"%s\"." msgstr "Zlyhalo vykonanie pr??kazu ???%s???." -#: ../panel-plugin/settings.cpp:181 +#: ../panel-plugin/settings.cpp:208 msgid "Failed to hibernate." msgstr "Hibern??cia zlyhala." -#: ../panel-plugin/settings.cpp:191 +#: ../panel-plugin/settings.cpp:218 msgid "Failed to launch menu editor." msgstr "Zlyhalo spustenie editora menu." -#: ../panel-plugin/settings.cpp:149 +#: ../panel-plugin/settings.cpp:176 msgid "Failed to lock screen." msgstr "Zlyhalo zamknutie obrazovky." -#: ../panel-plugin/settings.cpp:157 ../panel-plugin/settings.cpp:187 +#: ../panel-plugin/settings.cpp:184 ../panel-plugin/settings.cpp:214 msgid "Failed to log out." msgstr "Zlyhalo odhl??senie." -#: ../panel-plugin/settings.cpp:145 +#: ../panel-plugin/settings.cpp:172 msgid "Failed to open settings manager." msgstr "Zlyhalo otvorenie spr??vcu nastaven??." -#: ../panel-plugin/settings.cpp:163 +#: ../panel-plugin/settings.cpp:190 msgid "Failed to restart." msgstr "Re??tart zlyhal." -#: ../panel-plugin/settings.cpp:169 +#: ../panel-plugin/settings.cpp:196 msgid "Failed to shut down." msgstr "Vypnutie zlyhalo." -#: ../panel-plugin/settings.cpp:175 +#: ../panel-plugin/settings.cpp:202 msgid "Failed to suspend." msgstr "Uspanie zlyhalo." -#: ../panel-plugin/settings.cpp:153 +#: ../panel-plugin/settings.cpp:180 msgid "Failed to switch user." -msgstr "Zlyhalo prepnutie pou????vate??a." +msgstr "Prepnutie pou????vate??a zlyhalo." #: ../panel-plugin/favorites-page.cpp:37 -#: ../panel-plugin/settings-dialog.cpp:899 +#: ../panel-plugin/settings-dialog.cpp:908 msgid "Favorites" msgstr "Ob????ben??" -#: ../panel-plugin/settings.cpp:183 +#: ../panel-plugin/settings.cpp:210 #, c-format msgid "Hibernating computer in %d seconds." -msgstr "Hibernovanie po????ta??a za%d sek??nd." +msgstr "Hibern??cia po????ta??a za%d sek??nd." -#: ../panel-plugin/launcher.cpp:278 ../panel-plugin/page.cpp:430 +#: ../panel-plugin/launcher.cpp:276 ../panel-plugin/page.cpp:430 msgid "Hide Application" msgstr "Skry?? aplik??ciu" -#: ../panel-plugin/settings-dialog.cpp:838 +#: ../panel-plugin/settings-dialog.cpp:847 msgid "Icon" msgstr "Ikona" -#: ../panel-plugin/settings-dialog.cpp:840 +#: ../panel-plugin/settings-dialog.cpp:849 msgid "Icon and title" msgstr "Ikona a n??zov" -#: ../panel-plugin/settings-dialog.cpp:968 +#: ../panel-plugin/settings-dialog.cpp:983 msgid "Include _favorites" msgstr "Zahrn???? ob????ben??" @@ -207,32 +206,32 @@ msgid "Larger" msgstr "V??????ie" -#: ../panel-plugin/settings.cpp:185 +#: ../panel-plugin/settings.cpp:212 msgid "Log Ou_t..." msgstr "O_dhl??si?????" -#: ../panel-plugin/settings.cpp:155 +#: ../panel-plugin/settings.cpp:182 msgid "Log _Out" msgstr "_Odhl??si??" -#: ../panel-plugin/settings.cpp:159 +#: ../panel-plugin/settings.cpp:186 #, c-format msgid "Logging out in %d seconds." msgstr "Odhl??senie za %d sek??nd." -#: ../panel-plugin/settings.cpp:131 +#: ../panel-plugin/settings.cpp:158 msgid "Man Pages" msgstr "Manu??lov?? str??nky" -#: ../panel-plugin/settings-dialog.cpp:932 +#: ../panel-plugin/settings-dialog.cpp:941 msgid "Menu" msgstr "Menu" -#: ../panel-plugin/settings-dialog.cpp:1092 +#: ../panel-plugin/settings-dialog.cpp:1107 msgid "Nam_e:" msgstr "M_eno:" -#: ../panel-plugin/settings-dialog.cpp:1038 +#: ../panel-plugin/settings-dialog.cpp:1053 msgid "Name" msgstr "Meno" @@ -244,32 +243,32 @@ msgid "Normal" msgstr "Norm??lne" -#: ../panel-plugin/settings.cpp:135 +#: ../panel-plugin/settings.cpp:162 msgid "Open URI" msgstr "Otvori?? URI" -#: ../panel-plugin/settings-dialog.cpp:1043 +#: ../panel-plugin/settings-dialog.cpp:1058 msgid "Pattern" msgstr "Vzor" -#: ../panel-plugin/settings-dialog.cpp:747 +#: ../panel-plugin/settings-dialog.cpp:756 msgid "Position _search entry next to panel button" msgstr "Umiestni?? polo??ku h??ada?? ved??a tla??idla panela" -#: ../panel-plugin/settings-dialog.cpp:741 +#: ../panel-plugin/settings-dialog.cpp:750 msgid "Position cate_gories next to panel button" msgstr "Poz??cia kate_g??ri?? ved??a panela tla??idiel" -#: ../panel-plugin/settings-dialog.cpp:753 +#: ../panel-plugin/settings-dialog.cpp:762 msgid "Position commands next to search _entry" msgstr "Umiestni?? pr??kazy _ved??a polo??ky h??ada??" -#: ../panel-plugin/recent-page.cpp:37 ../panel-plugin/settings-dialog.cpp:903 -#: ../panel-plugin/settings-dialog.cpp:953 +#: ../panel-plugin/recent-page.cpp:37 ../panel-plugin/settings-dialog.cpp:912 +#: ../panel-plugin/settings-dialog.cpp:968 msgid "Recently Used" msgstr "Ned??vne" -#: ../panel-plugin/settings-dialog.cpp:537 +#: ../panel-plugin/settings-dialog.cpp:546 #, c-format msgid "Remove action \"%s\"?" msgstr "Odstr??ni?? akciu ???%s????" @@ -278,21 +277,21 @@ msgid "Remove from Favorites" msgstr "Odstr??ni?? z ob????ben??ch" -#: ../panel-plugin/settings-dialog.cpp:1069 +#: ../panel-plugin/settings-dialog.cpp:1084 msgid "Remove selected action" msgstr "Odstr??ni?? zvolen?? akciu" -#: ../panel-plugin/settings.cpp:165 +#: ../panel-plugin/settings.cpp:192 #, c-format msgid "Restarting computer in %d seconds." msgstr "Re??tart po????ta??a za%d sek??nd." -#: ../panel-plugin/run-action.cpp:86 +#: ../panel-plugin/run-action.cpp:64 #, c-format msgid "Run %s" msgstr "Spusti?? %s" -#: ../panel-plugin/settings.cpp:134 +#: ../panel-plugin/settings.cpp:161 msgid "Run in Terminal" msgstr "Spusti?? v termin??li" @@ -300,7 +299,7 @@ msgid "Search Actio_ns" msgstr "H??ada?? ak_cie" -#: ../panel-plugin/search-action.cpp:273 +#: ../panel-plugin/search-action.cpp:251 msgid "Search Action" msgstr "H??ada?? akciu" @@ -312,7 +311,7 @@ msgid "Select an Icon" msgstr "Vyberte ikonu" -#: ../panel-plugin/settings-dialog.cpp:976 +#: ../panel-plugin/settings-dialog.cpp:991 msgid "Session Commands" msgstr "Pr??kazy rel??cie" @@ -320,39 +319,39 @@ msgid "Show a menu to easily access installed applications" msgstr "Zobraz?? menu na jednoduch?? prech??dzanie nain??talovan??mi aplik??ciami" -#: ../panel-plugin/settings-dialog.cpp:730 +#: ../panel-plugin/settings-dialog.cpp:739 msgid "Show application _descriptions" msgstr "Zobrazi?? _popis aplik??cie" -#: ../panel-plugin/settings-dialog.cpp:724 +#: ../panel-plugin/settings-dialog.cpp:733 msgid "Show application too_ltips" msgstr "Zobrazi?? n??strojov?? tipy ap_lik??cie" -#: ../panel-plugin/settings-dialog.cpp:638 +#: ../panel-plugin/settings-dialog.cpp:647 msgid "Show as _icons" msgstr "Zobrazi?? ako _ikony" -#: ../panel-plugin/settings-dialog.cpp:655 +#: ../panel-plugin/settings-dialog.cpp:664 msgid "Show as lis_t" msgstr "Zobrazi?? ako _zoznam:" -#: ../panel-plugin/settings-dialog.cpp:673 +#: ../panel-plugin/settings-dialog.cpp:682 msgid "Show as t_ree" msgstr "Zobrazi?? ako st_rom:" -#: ../panel-plugin/settings-dialog.cpp:980 +#: ../panel-plugin/settings-dialog.cpp:995 msgid "Show c_onfirmation dialog" msgstr "Z_obrazi?? potvrdzovac?? dial??g" -#: ../panel-plugin/settings-dialog.cpp:717 +#: ../panel-plugin/settings-dialog.cpp:726 msgid "Show cate_gory names" msgstr "Zobrazi?? n??zvy kate_g??ri??" -#: ../panel-plugin/settings-dialog.cpp:711 +#: ../panel-plugin/settings-dialog.cpp:720 msgid "Show generic application _names" msgstr "Zobrazi?? v??eobecn?? men?? aplik??ci??" -#: ../panel-plugin/settings.cpp:167 +#: ../panel-plugin/settings.cpp:194 msgid "Shut _Down" msgstr "_Vypn????" @@ -372,36 +371,40 @@ msgid "Sort Alphabetically Z-A" msgstr "Zoradi?? abecedne Z-A" -#: ../panel-plugin/settings-dialog.cpp:942 +#: ../panel-plugin/settings-dialog.cpp:957 +msgid "Sort ca_tegories" +msgstr "Zoradi?? ka_teg??rie" + +#: ../panel-plugin/settings-dialog.cpp:951 msgid "Stay _visible when focus is lost" msgstr "Ponecha?? _zobrazen?? po strate zamerania" -#: ../panel-plugin/settings.cpp:173 +#: ../panel-plugin/settings.cpp:200 msgid "Suspe_nd" msgstr "_Uspa??" -#: ../panel-plugin/settings.cpp:177 +#: ../panel-plugin/settings.cpp:204 #, c-format msgid "Suspending computer in %d seconds." msgstr "Uspanie po????ta??a za%d sek??nd." -#: ../panel-plugin/settings.cpp:151 +#: ../panel-plugin/settings.cpp:178 msgid "Switch _User" msgstr "Prepn???? po_u????vate??a" -#: ../panel-plugin/settings-dialog.cpp:936 +#: ../panel-plugin/settings-dialog.cpp:945 msgid "Switch categories by _hovering" msgstr "Nasledova?? kateg??riu po_d my??ou" -#: ../panel-plugin/settings-dialog.cpp:536 +#: ../panel-plugin/settings-dialog.cpp:545 msgid "The action will be deleted permanently." msgstr "Akcia bude odstr??nen?? natrvalo" -#: ../panel-plugin/settings-dialog.cpp:839 +#: ../panel-plugin/settings-dialog.cpp:848 msgid "Title" msgstr "N??zov" -#: ../panel-plugin/launcher.cpp:273 +#: ../panel-plugin/launcher.cpp:271 #, c-format msgid "" "To unhide it you have to manually remove the file \"%s\" or open the file " @@ -410,7 +413,7 @@ "Na op??tovn?? zobrazenie mus??te manu??lne odstr??ni?? s??bor ???%s??? alebo ho otvori?? " "a odstr??ni?? riadok ???%s???." -#: ../panel-plugin/settings.cpp:171 +#: ../panel-plugin/settings.cpp:198 #, c-format msgid "Turning off computer in %d seconds." msgstr "Vypnutie po????ta??a za%d sek??nd." @@ -423,16 +426,16 @@ msgid "Unable to add launcher to panel." msgstr "Nemo??no prida?? sp??????a?? do panela" -#: ../panel-plugin/page.cpp:567 +#: ../panel-plugin/page.cpp:566 msgid "Unable to edit launcher." msgstr "Nemo??no upravi?? sp??????a??" -#: ../panel-plugin/settings-dialog.cpp:597 +#: ../panel-plugin/settings-dialog.cpp:606 #, c-format msgid "Unable to open the following url: %s" msgstr "Nemo??no otvori?? URL: %s" -#: ../panel-plugin/settings-dialog.cpp:874 +#: ../panel-plugin/settings-dialog.cpp:883 msgid "Use a single _panel row" msgstr "_Panel v jednom riadku" @@ -444,7 +447,7 @@ msgid "Very Small" msgstr "Celkom mal??" -#: ../panel-plugin/settings.cpp:132 +#: ../panel-plugin/settings.cpp:159 msgid "Web Search" msgstr "Webov?? h??adanie" @@ -454,7 +457,7 @@ msgid "Whisker Menu" msgstr "Whisker Menu" -#: ../panel-plugin/settings.cpp:133 +#: ../panel-plugin/settings.cpp:160 msgid "Wikipedia" msgstr "Wikip??dia" @@ -479,11 +482,11 @@ msgid "_Commands" msgstr "Pr??ka_zy" -#: ../panel-plugin/settings-dialog.cpp:535 +#: ../panel-plugin/settings-dialog.cpp:544 msgid "_Delete" msgstr "__Odstr??ni??" -#: ../panel-plugin/settings.cpp:189 +#: ../panel-plugin/settings.cpp:216 msgid "_Edit Applications" msgstr "Upravi?? aplik??ci_e" @@ -492,15 +495,15 @@ msgid "_Help" msgstr "_Pomocn??k" -#: ../panel-plugin/settings.cpp:179 +#: ../panel-plugin/settings.cpp:206 msgid "_Hibernate" msgstr "_Hibernova??" -#: ../panel-plugin/settings-dialog.cpp:861 +#: ../panel-plugin/settings-dialog.cpp:870 msgid "_Icon:" msgstr "_Ikona:" -#: ../panel-plugin/settings.cpp:147 +#: ../panel-plugin/settings.cpp:174 msgid "_Lock Screen" msgstr "_Zamkn???? obrazovku" @@ -512,23 +515,23 @@ msgid "_Panel Button" msgstr "Tla??idlo _panela" -#: ../panel-plugin/settings-dialog.cpp:1105 +#: ../panel-plugin/settings-dialog.cpp:1120 msgid "_Pattern:" msgstr "_Vzor:" -#: ../panel-plugin/settings-dialog.cpp:1129 +#: ../panel-plugin/settings-dialog.cpp:1144 msgid "_Regular expression" msgstr "_Regul??rny v??raz" -#: ../panel-plugin/settings.cpp:161 +#: ../panel-plugin/settings.cpp:188 msgid "_Restart" msgstr "_Re??tartova??" -#: ../panel-plugin/settings.cpp:143 +#: ../panel-plugin/settings.cpp:170 msgid "_Settings Manager" msgstr "_Spr??vca nastaven??" -#: ../panel-plugin/settings-dialog.cpp:849 +#: ../panel-plugin/settings-dialog.cpp:858 msgid "_Title:" msgstr "_N??zov:"