diff -Nru xfce4-whiskermenu-plugin-1.5.2/ChangeLog xfce4-whiskermenu-plugin-1.5.3/ChangeLog --- xfce4-whiskermenu-plugin-1.5.2/ChangeLog 2015-12-29 14:42:29.000000000 +0000 +++ xfce4-whiskermenu-plugin-1.5.3/ChangeLog 2016-04-16 17:56:35.000000000 +0000 @@ -1,3 +1,69 @@ +commit 127e8f21a36f5b1b16ffc4e1142620fb0c2522a6 +Author: Graeme Gott +Date: 2016-04-16 + + Bump version number. + +commit 455e90ccf46e2de1857fd8e449ba40195bf5bd81 +Author: Graeme Gott +Date: 2016-04-16 + + I18n: Update translation nl (100%.) + +commit f51d62df942af6e9a297008425bfc666f286d224 +Author: Graeme Gott +Date: 2016-04-16 + + I18n: Update translation lt (100%.) + +commit 50419d41dde570501d7c98ce40a8646ef5471fb5 +Author: Graeme Gott +Date: 2016-04-16 + + I18n: Update translation ko (100%.) + +commit eca1457fe78c7cdd529a3a309be430c96224628f +Author: Graeme Gott +Date: 2016-04-16 + + I18n: Add translation is (100%.) + +commit 423f2d7151593b6c071f59c7718375c427c4ff9c +Author: Graeme Gott +Date: 2016-04-16 + + I18n: Update translation he (100%.) + +commit f3237e45dbba3a6f008ee4cba90dcb14155dade6 +Author: Graeme Gott +Date: 2016-04-16 + + I18n: Update translation eu (16%.) + +commit 0ef821dac3235552b4e704230fff08b59d0649f3 +Author: Graeme Gott +Date: 2016-04-16 + + I18n: Add translation am (100%.) + +commit 56af96df8705cc4aa4292870601ae372943e5737 +Author: Graeme Gott +Date: 2016-04-15 + + Fix stuck button highlight. (bug #12402) + +commit 39e6653c9bc78725114a6b568ed88b613a966bb8 +Author: Graeme Gott +Date: 2016-04-14 + + Fix losing categories by reverting single garcon instance. (bug #12541) + +commit b1d54066640f00b51579929ac3706cd0b2fd5eb4 +Author: Graeme Gott +Date: 2016-01-06 + + Fix warning about infinite recursion. (bug #12398) + commit d08418c8d55edfacef190ec14e03e1e9a6988101 Author: Graeme Gott Date: 2015-12-29 diff -Nru xfce4-whiskermenu-plugin-1.5.2/CMakeLists.txt xfce4-whiskermenu-plugin-1.5.3/CMakeLists.txt --- xfce4-whiskermenu-plugin-1.5.2/CMakeLists.txt 2015-12-29 14:41:36.000000000 +0000 +++ xfce4-whiskermenu-plugin-1.5.3/CMakeLists.txt 2016-04-16 17:58:59.000000000 +0000 @@ -5,7 +5,7 @@ # version number set(whiskermenu_version_major "1") set(whiskermenu_version_minor "5") -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 -Nru xfce4-whiskermenu-plugin-1.5.2/debian/changelog xfce4-whiskermenu-plugin-1.5.3/debian/changelog --- xfce4-whiskermenu-plugin-1.5.2/debian/changelog 2015-12-29 15:04:03.000000000 +0000 +++ xfce4-whiskermenu-plugin-1.5.3/debian/changelog 2016-04-16 18:17:45.000000000 +0000 @@ -1,3 +1,13 @@ +xfce4-whiskermenu-plugin (1.5.3-0ppa1~xenial1) xenial; urgency=low + + * New upstream release + - Fix stuck button highlight. (bug #12402) + - Fix losing categories. (bug #12541) + - Fix warning about infinite recursion. (bug #12398) + - Translation updates: Amharic, Basque, Dutch, Hebrew, Icelandic. + + -- Graeme Gott Sat, 16 Apr 2016 18:02:20 +0000 + xfce4-whiskermenu-plugin (1.5.2-0ppa1~xenial1) xenial; urgency=low * New upstream release diff -Nru xfce4-whiskermenu-plugin-1.5.2/NEWS xfce4-whiskermenu-plugin-1.5.3/NEWS --- xfce4-whiskermenu-plugin-1.5.2/NEWS 2015-12-29 14:41:01.000000000 +0000 +++ xfce4-whiskermenu-plugin-1.5.3/NEWS 2016-04-16 17:58:45.000000000 +0000 @@ -1,3 +1,10 @@ +1.5.3 +===== +- Fix stuck button highlight. (bug #12402) +- Fix losing categories. (bug #12541) +- Fix warning about infinite recursion. (bug #12398) +- Translation updates: Amharic, Basque, Dutch, Hebrew, Icelandic. + 1.5.2 ===== - Fix modifier keys resetting focus to search entry. (bug #12378) diff -Nru xfce4-whiskermenu-plugin-1.5.2/panel-plugin/applications-page.cpp xfce4-whiskermenu-plugin-1.5.3/panel-plugin/applications-page.cpp --- xfce4-whiskermenu-plugin-1.5.2/panel-plugin/applications-page.cpp 2015-10-09 15:18:26.000000000 +0000 +++ xfce4-whiskermenu-plugin-1.5.3/panel-plugin/applications-page.cpp 2016-04-15 00:06:31.000000000 +0000 @@ -69,18 +69,6 @@ ApplicationsPage::~ApplicationsPage() { clear_applications(); - - // Free menu - if (G_LIKELY(m_garcon_menu)) - { - g_object_unref(m_garcon_menu); - } - - // Free settings menu - if (G_LIKELY(m_garcon_settings_menu)) - { - g_object_unref(m_garcon_settings_menu); - } } //----------------------------------------------------------------------------- @@ -217,6 +205,20 @@ delete i->second; } m_items.clear(); + + // Free menu + if (G_LIKELY(m_garcon_menu)) + { + g_object_unref(m_garcon_menu); + m_garcon_menu = NULL; + } + + // Free settings menu + if (G_LIKELY(m_garcon_settings_menu)) + { + g_object_unref(m_garcon_settings_menu); + m_garcon_settings_menu = NULL; + } } //----------------------------------------------------------------------------- @@ -224,47 +226,41 @@ void ApplicationsPage::load_contents() { // Create menu - if (!m_garcon_menu) + if (wm_settings->custom_menu_file.empty()) { - if (wm_settings->custom_menu_file.empty()) - { - m_garcon_menu = garcon_menu_new_applications(); - } - else - { - m_garcon_menu = garcon_menu_new_for_path(wm_settings->custom_menu_file.c_str()); - } - - if (!m_garcon_menu) - { - m_load_status = STATUS_INVALID; - return; - } - - g_signal_connect_slot(m_garcon_menu, "reload-required", &ApplicationsPage::invalidate_applications, this); + m_garcon_menu = garcon_menu_new_applications(); } - - // Create settings menu - if (!m_garcon_settings_menu) + else { - gchar* path = xfce_resource_lookup(XFCE_RESOURCE_CONFIG, "menus/xfce-settings-manager.menu"); - m_garcon_settings_menu = garcon_menu_new_for_path(path != NULL ? path : SETTINGS_MENUFILE); - g_free(path); - - if (m_garcon_settings_menu) - { - g_signal_connect_slot(m_garcon_settings_menu, "reload-required", &ApplicationsPage::invalidate_applications, this); - } + m_garcon_menu = garcon_menu_new_for_path(wm_settings->custom_menu_file.c_str()); } // Load menu - if (!garcon_menu_load(m_garcon_menu, NULL, NULL)) + if (m_garcon_menu && !garcon_menu_load(m_garcon_menu, NULL, NULL)) + { + g_object_unref(m_garcon_menu); + m_garcon_menu = NULL; + } + + if (!m_garcon_menu) { m_load_status = STATUS_INVALID; return; } + + g_signal_connect_slot(m_garcon_menu, "reload-required", &ApplicationsPage::invalidate_applications, this); load_menu(m_garcon_menu, NULL); + // Create settings menu + gchar* path = xfce_resource_lookup(XFCE_RESOURCE_CONFIG, "menus/xfce-settings-manager.menu"); + m_garcon_settings_menu = garcon_menu_new_for_path(path != NULL ? path : SETTINGS_MENUFILE); + g_free(path); + + if (m_garcon_settings_menu) + { + g_signal_connect_slot(m_garcon_settings_menu, "reload-required", &ApplicationsPage::invalidate_applications, this); + } + // Load settings menu if (m_garcon_settings_menu && garcon_menu_load(m_garcon_settings_menu, NULL, NULL)) { diff -Nru xfce4-whiskermenu-plugin-1.5.2/panel-plugin/launcher.cpp xfce4-whiskermenu-plugin-1.5.3/panel-plugin/launcher.cpp --- xfce4-whiskermenu-plugin-1.5.2/panel-plugin/launcher.cpp 2015-12-29 14:39:58.000000000 +0000 +++ xfce4-whiskermenu-plugin-1.5.3/panel-plugin/launcher.cpp 2016-04-16 17:58:59.000000000 +0000 @@ -91,7 +91,7 @@ //----------------------------------------------------------------------------- -static void replace_with_quoted_string(std::string& command, size_t& index, gchar* unquoted) +static void replace_and_free_with_quoted_string(std::string& command, size_t& index, gchar* unquoted) { replace_with_quoted_string(command, index, unquoted); g_free(unquoted); @@ -220,7 +220,7 @@ break; case 'k': - replace_with_quoted_string(command, i, garcon_menu_item_get_uri(m_item)); + replace_and_free_with_quoted_string(command, i, garcon_menu_item_get_uri(m_item)); length = command.length() - 1; break; diff -Nru xfce4-whiskermenu-plugin-1.5.2/panel-plugin/whiskermenu.desktop xfce4-whiskermenu-plugin-1.5.3/panel-plugin/whiskermenu.desktop --- xfce4-whiskermenu-plugin-1.5.2/panel-plugin/whiskermenu.desktop 2015-12-29 12:43:55.000000000 +0000 +++ xfce4-whiskermenu-plugin-1.5.3/panel-plugin/whiskermenu.desktop 2016-04-16 17:51:07.000000000 +0000 @@ -2,6 +2,7 @@ Type=X-XFCE-PanelPlugin Encoding=UTF-8 Name=Whisker Menu +Name[am]=የ ዊስከር ዝርዝር Name[ar]=قائمة Whisker Name[ast]=Menú Whisker Name[bg]=Whisker Меню @@ -13,13 +14,15 @@ Name[en_GB]=Whisker Menu Name[es]=Menú Whisker Name[et]=Whisker Menüü +Name[eu]=Whisker Menua Name[fa]=منوی Whisker Name[fi]=Whisker-valikko Name[fr]=Menu Whisker -Name[he]=תפריט זיף +Name[he]=תפריט Whisker Name[hr]=Whisker Izbornik Name[hu]=Whisker Menü Name[id]=Menu Whisker +Name[is]=Whisker valmynd Name[it]=Menu Whisker Name[ja]=Whisker Menu Name[kk]=Whisker мәзірі @@ -47,6 +50,7 @@ Name[zh_CN]=Whisker 菜单 Name[zh_TW]=Whisker 選單 Comment=Show a menu to easily access installed applications +Comment[am]=የ ተገጠሙ መተግበሪያዎች በ ቀላሉ በ ዝርዝር ውስጥ ማሳያ Comment[ar]=إظهار قائمة لولوج إلى التطبيقات المثبتة بسهولة Comment[ast]=Amuesa un menú p'acceder cenciellamente a les aplicaciones instalaes Comment[bg]=Показване на меню за лесен достъп до инсталираните приложения @@ -64,6 +68,7 @@ Comment[hr]=Prikaži izbornik da bi lakše pristupili instaliranim aplikacijama Comment[hu]=menü megjelenítése a telepített alkalmazások könnyű eléréséhez Comment[id]=Tampilkan menu untuk mempermudah akses aplikasi yang terinstal +Comment[is]=Sýna valmynd til auðveldan aðgang að uppsettum forritum Comment[it]=Mostra un menu per accedere facilmente le applicazioni installate Comment[ja]=インストールされているアプリケーションに簡単にアクセスできるメニューを表示します Comment[kk]=Орнатылған қолданбаларға қатынау үшін қарапайым мәзірді көрсету diff -Nru xfce4-whiskermenu-plugin-1.5.2/panel-plugin/window.cpp xfce4-whiskermenu-plugin-1.5.3/panel-plugin/window.cpp --- xfce4-whiskermenu-plugin-1.5.2/panel-plugin/window.cpp 2015-12-29 14:39:58.000000000 +0000 +++ xfce4-whiskermenu-plugin-1.5.3/panel-plugin/window.cpp 2016-04-16 17:58:59.000000000 +0000 @@ -258,6 +258,12 @@ { gdk_pointer_ungrab(gtk_get_current_event_time()); + // Hide command buttons to remove active border + for (int i = 0; i < 4; ++i) + { + gtk_widget_set_visible(m_commands_button[i], false); + } + // Hide window gtk_widget_hide(GTK_WIDGET(m_window)); diff -Nru xfce4-whiskermenu-plugin-1.5.2/po/am.po xfce4-whiskermenu-plugin-1.5.3/po/am.po --- xfce4-whiskermenu-plugin-1.5.2/po/am.po 1970-01-01 00:00:00.000000000 +0000 +++ xfce4-whiskermenu-plugin-1.5.3/po/am.po 2016-04-16 17:50:48.000000000 +0000 @@ -0,0 +1,371 @@ +# Amharic translation of xfce4-whiskermenu-plugin. +# Copyright (C) 2015 Graeme Gott +# This file is distributed under the same license as the xfce4-whiskermenu-plugin package. +# +# Translators: +# samson , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Whisker Menu\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-02-20 23:57+0000\n" +"PO-Revision-Date: 2016-02-27 20:34+0000\n" +"Last-Translator: samson \n" +"Language-Team: Amharic (http://www.transifex.com/gottcode/xfce4-whiskermenu-" +"plugin/language/am/)\n" +"Language: am\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" + +#: ../panel-plugin/configuration-dialog.cpp:782 +msgid "Add action" +msgstr "ተግባር መጨመሪያ" + +#: ../panel-plugin/page.cpp:214 +msgid "Add to Desktop" +msgstr "ወደ ዴስክቶፕ መጨመሪያ" + +#: ../panel-plugin/page.cpp:199 +msgid "Add to Favorites" +msgstr "ወደ የምወደው መጨመሪያ" + +#: ../panel-plugin/page.cpp:218 +msgid "Add to Panel" +msgstr "ወደ ክፍል መጨመሪያ" + +#: ../panel-plugin/category.cpp:59 +msgid "All" +msgstr "ሁሉንም" + +#: ../panel-plugin/settings.cpp:117 +msgid "All _Settings" +msgstr "ሁሉንም _ማሰናጃዎች " + +#: ../panel-plugin/plugin.cpp:393 +msgid "Alternate application launcher for Xfce" +msgstr "አማራጭ መተግበሪያ ማስጀመሪያ ለ Xfce" + +#: ../panel-plugin/configuration-dialog.cpp:682 +msgid "Amount of _items:" +msgstr "የ _እቃዎች መጠን:" + +#: ../panel-plugin/plugin.cpp:217 +msgid "Applications" +msgstr "መተግበሪያዎች" + +#: ../panel-plugin/configuration-dialog.cpp:616 +msgid "Background opacit_y:" +msgstr "የ መደብ ግልጽነ_ት: " + +#: ../panel-plugin/command-edit.cpp:49 +msgid "Browse the file system to choose a custom command." +msgstr "የ ፋይል ስርአት መቃኛ የ ትእዛዝ ማስተካከያ ለ መምረጥ" + +#: ../panel-plugin/configuration-dialog.cpp:840 +msgid "C_ommand:" +msgstr "ት_እዛዝ:" + +#: ../panel-plugin/configuration-dialog.cpp:601 +msgid "Categ_ory icon size:" +msgstr "የ ምድ_ብ ምልክት መጠን:" + +#: ../panel-plugin/recent-page.cpp:148 +msgid "Clear Recently Used" +msgstr "በ ቅርብ የተጠቀሙትን ማጽጃ" + +#: ../panel-plugin/plugin.cpp:394 +msgid "Copyright © 2013-2015 Graeme Gott" +msgstr "Copyright © 2013-2015 Graeme Gott" + +#: ../panel-plugin/configuration-dialog.cpp:811 +msgid "Details" +msgstr "ዝርዝሮች" + +#: ../panel-plugin/configuration-dialog.cpp:509 +msgid "Di_splay:" +msgstr "ማሳ_ያ:" + +#: ../panel-plugin/configuration-dialog.cpp:699 +msgid "Display by _default" +msgstr "በ _ነባር ማሳያ" + +#: ../panel-plugin/settings.cpp:122 +msgid "Edit _Profile" +msgstr "_ገጽታ ማረሚያ" + +#: ../panel-plugin/settings.cpp:122 +msgid "Failed to edit profile." +msgstr "ገጽታ ማረም አልተቻለም" + +#: ../panel-plugin/launcher.cpp:273 ../panel-plugin/run-action.cpp:41 +#: ../panel-plugin/search-action.cpp:188 +#, c-format +msgid "Failed to execute command \"%s\"." +msgstr "ትእዛዝ መፈጸም አልተቻለም \"%s\"." + +#: ../panel-plugin/settings.cpp:121 +msgid "Failed to launch menu editor." +msgstr "የ ዝርዝር ማረሚያ ማስጀመር አልተቻለም" + +#: ../panel-plugin/settings.cpp:118 +msgid "Failed to lock screen." +msgstr "መመልከቻውን መቆለፍ አልተቻለም" + +#: ../panel-plugin/settings.cpp:120 +msgid "Failed to log out." +msgstr "መውጣት አልተቻለም" + +#: ../panel-plugin/settings.cpp:117 +msgid "Failed to open settings manager." +msgstr "የ ማሰናጃ አስተዳዳሪ መክፈት አልተቻለም" + +#: ../panel-plugin/settings.cpp:119 +msgid "Failed to switch users." +msgstr "ተጠቃሚ መቀየር አልተቻለም" + +#: ../panel-plugin/window.cpp:120 +msgid "Favorites" +msgstr "የምወደቸው" + +#: ../panel-plugin/configuration-dialog.cpp:514 +msgid "Icon" +msgstr "ምልክት" + +#: ../panel-plugin/configuration-dialog.cpp:516 +msgid "Icon and title" +msgstr "ምልክት እና አርእስት" + +#: ../panel-plugin/configuration-dialog.cpp:693 +msgid "Ignore _favorites" +msgstr "_የምወዳቸውን መተው" + +#: ../panel-plugin/configuration-dialog.cpp:585 +msgid "Ite_m icon size:" +msgstr "የ እቃዎ_ች ምልክት መጠን: " + +#: ../panel-plugin/icon-size.cpp:54 +msgid "Large" +msgstr "ትልቅ" + +#: ../panel-plugin/icon-size.cpp:55 +msgid "Larger" +msgstr "በጣም ትልቅ" + +#: ../panel-plugin/settings.cpp:120 +msgid "Log _Out" +msgstr "መው_ጫ" + +#: ../panel-plugin/settings.cpp:124 +msgid "Man Pages" +msgstr "ማን ገጾች" + +#: ../panel-plugin/configuration-dialog.cpp:562 +#: ../panel-plugin/configuration-dialog.cpp:642 +msgid "Menu" +msgstr "ዝርዝር" + +#: ../panel-plugin/configuration-dialog.cpp:816 +msgid "Nam_e:" +msgstr "ስ_ም:" + +#: ../panel-plugin/configuration-dialog.cpp:762 +msgid "Name" +msgstr "ስም" + +#: ../panel-plugin/icon-size.cpp:49 +msgid "None" +msgstr "ምንም" + +#: ../panel-plugin/icon-size.cpp:53 +msgid "Normal" +msgstr "መደበኛ" + +#: ../panel-plugin/settings.cpp:127 +msgid "Open URI" +msgstr "URI መክፈቻ" + +#: ../panel-plugin/configuration-dialog.cpp:504 +msgid "Panel Button" +msgstr "የ ክፍል ቁልፍ" + +#: ../panel-plugin/configuration-dialog.cpp:767 +msgid "Pattern" +msgstr "ድግግሞሽ" + +#: ../panel-plugin/configuration-dialog.cpp:653 +msgid "Position _search entry next to panel button" +msgstr "የ _መፈለጊያ ቦታ ማስገቢያ ከ ክፍል ቁልፍ አጠገብ " + +#: ../panel-plugin/configuration-dialog.cpp:666 +msgid "Position cate_gories next to panel button" +msgstr "የ ምድ_ቦች ቦታ ከ ክፍል ቁልፍ አጠገብ " + +#: ../panel-plugin/configuration-dialog.cpp:659 +msgid "Position commands next to search _entry" +msgstr "የ ትእዛዝ ቦታ ከ መፈለጊያ አጠገብ _ማስገቢያ" + +#: ../panel-plugin/configuration-dialog.cpp:677 ../panel-plugin/window.cpp:126 +msgid "Recently Used" +msgstr "በቅርብ የተጠቀሙት" + +#: ../panel-plugin/page.cpp:207 +msgid "Remove From Favorites" +msgstr "ከምወዳቸው ውስጥ ማስወገጃ" + +#: ../panel-plugin/configuration-dialog.cpp:406 +#, c-format +msgid "Remove action \"%s\"?" +msgstr "ተግባር ማስወገጃ \"%s\"?" + +#: ../panel-plugin/configuration-dialog.cpp:791 +msgid "Remove selected action" +msgstr "የ ተመረጠውን ተግባር ማስወገጃ" + +#: ../panel-plugin/run-action.cpp:71 +#, c-format +msgid "Run %s" +msgstr "ማስኬጃ %s" + +#: ../panel-plugin/settings.cpp:126 +msgid "Run in Terminal" +msgstr "በ ተርሚናል ውስጥ ማስኬጃ" + +#: ../panel-plugin/configuration-dialog.cpp:86 +msgid "Search Actio_ns" +msgstr "ተግባሮች መፈለ_ጊያ" + +#: ../panel-plugin/search-action.cpp:261 +msgid "Search Action" +msgstr "ተግባሮች መፈለጊያ" + +#: ../panel-plugin/configuration-dialog.cpp:119 +msgid "Select An Icon" +msgstr "ምልክት ይምረጡ" + +#: ../panel-plugin/command-edit.cpp:64 +msgid "Select Command" +msgstr "ትእዛዝ ይምረጡ" + +#: ../panel-plugin/whiskermenu.desktop.in.h:2 +msgid "Show a menu to easily access installed applications" +msgstr "የ ተገጠሙ መተግበሪያዎች በ ቀላሉ በ ዝርዝር ውስጥ ማሳያ" + +#: ../panel-plugin/configuration-dialog.cpp:573 +msgid "Show application _descriptions" +msgstr "የ መተግበሪያ _መግለጫዎች ማሳያ" + +#: ../panel-plugin/configuration-dialog.cpp:567 +msgid "Show generic application _names" +msgstr "ባጠቃላይ የ መተገበሪያዎች _ስሞች ማሳያ" + +#: ../panel-plugin/configuration-dialog.cpp:579 +msgid "Show menu hie_rarchy" +msgstr "የ ዝርዝር ቅደም _ተከተል ማሳያ" + +#: ../panel-plugin/icon-size.cpp:52 +msgid "Small" +msgstr "ትንሽ" + +#: ../panel-plugin/icon-size.cpp:51 +msgid "Smaller" +msgstr "በጣም ትንሽ" + +#: ../panel-plugin/favorites-page.cpp:129 +msgid "Sort Alphabetically A-Z" +msgstr "መለያ በ ፊደል ቅደም ተከተል A-Z" + +#: ../panel-plugin/favorites-page.cpp:135 +msgid "Sort Alphabetically Z-A" +msgstr "መለያ በ ፊደል ቅደም ተከተል A-Z" + +#: ../panel-plugin/settings.cpp:119 +msgid "Switch _Users" +msgstr "_ተጠቃሚ መቀየሪያ" + +#: ../panel-plugin/configuration-dialog.cpp:647 +msgid "Switch categories by _hovering" +msgstr "ምድቦች በ _ማንሳፈፍ መቀየሪያ" + +#: ../panel-plugin/configuration-dialog.cpp:405 +msgid "The action will be deleted permanently." +msgstr "ተግባሩ በቋሚነት ይጠፋል" + +#: ../panel-plugin/configuration-dialog.cpp:515 +msgid "Title" +msgstr "አርእስት" + +#: ../panel-plugin/page.cpp:317 +msgid "Unable to add launcher to desktop." +msgstr "ወደ ዴስክቶፕ ማስጀመሪያ መጨመር አልተቻለም" + +#: ../panel-plugin/page.cpp:356 ../panel-plugin/page.cpp:365 +msgid "Unable to add launcher to panel." +msgstr "ወደ ክፍል ማስጀመሪያ መጨመር አልተቻለም" + +#: ../panel-plugin/configuration-dialog.cpp:466 +#, c-format +msgid "Unable to open the following url: %s" +msgstr "መክፈት አልተቻለም የሚቀጥለውን url: %s" + +#: ../panel-plugin/configuration-dialog.cpp:549 +msgid "Use a single _panel row" +msgstr "ይጠቀሙ ነጠላ የ _ክፍል ረድፍ" + +#: ../panel-plugin/icon-size.cpp:56 +msgid "Very Large" +msgstr "በጣም ትልቅ" + +#: ../panel-plugin/icon-size.cpp:50 +msgid "Very Small" +msgstr "በጣም ትንሽ" + +#: ../panel-plugin/configuration-dialog.cpp:70 +#: ../panel-plugin/whiskermenu.desktop.in.h:1 +msgid "Whisker Menu" +msgstr "የ ዊስከር ዝርዝር" + +#: ../panel-plugin/settings.cpp:125 +msgid "Wikipedia" +msgstr "ዊኪፒዲያ" + +#: ../panel-plugin/configuration-dialog.cpp:83 +msgid "_Appearance" +msgstr "_አቀራረብ" + +#: ../panel-plugin/configuration-dialog.cpp:84 +msgid "_Behavior" +msgstr "_ባህሪ" + +#: ../panel-plugin/configuration-dialog.cpp:85 +msgid "_Commands" +msgstr "_ትእዛዞች" + +#: ../panel-plugin/settings.cpp:121 +msgid "_Edit Applications" +msgstr "መተግበሪያዎች _ማረሚያ" + +#: ../panel-plugin/configuration-dialog.cpp:534 +msgid "_Icon:" +msgstr "_ምልክት:" + +#: ../panel-plugin/settings.cpp:118 +msgid "_Lock Screen" +msgstr "መመልከቻ መቆለፊያ" + +#: ../panel-plugin/configuration-dialog.cpp:828 +msgid "_Pattern:" +msgstr "_ድግግሞሽ:" + +#: ../panel-plugin/configuration-dialog.cpp:852 +msgid "_Regular expression" +msgstr "_መደበኛ አገላለጽ" + +#: ../panel-plugin/configuration-dialog.cpp:523 +msgid "_Title:" +msgstr "_አርእስት: " + +#: ../panel-plugin/plugin.cpp:398 +msgid "translator-credits" +msgstr "ምስጋና-ለ ተርጓሚዎች" diff -Nru xfce4-whiskermenu-plugin-1.5.2/po/eu.po xfce4-whiskermenu-plugin-1.5.3/po/eu.po --- xfce4-whiskermenu-plugin-1.5.2/po/eu.po 2015-09-25 14:20:25.000000000 +0000 +++ xfce4-whiskermenu-plugin-1.5.3/po/eu.po 2016-04-16 17:50:54.000000000 +0000 @@ -3,15 +3,15 @@ # This file is distributed under the same license as the xfce4-whiskermenu-plugin package. # # Translators: -# aboutafteragain , 2014 +# aboutafteragain , 2014,2016 msgid "" msgstr "" "Project-Id-Version: Whisker Menu\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2015-02-20 23:57+0000\n" -"PO-Revision-Date: 2014-07-31 21:27+0000\n" +"PO-Revision-Date: 2016-01-24 23:56+0000\n" "Last-Translator: aboutafteragain \n" -"Language-Team: Basque (http://www.transifex.com/projects/p/xfce4-whiskermenu-" +"Language-Team: Basque (http://www.transifex.com/gottcode/xfce4-whiskermenu-" "plugin/language/eu/)\n" "Language: eu\n" "MIME-Version: 1.0\n" @@ -21,7 +21,7 @@ #: ../panel-plugin/configuration-dialog.cpp:782 msgid "Add action" -msgstr "" +msgstr "Ekintza gehitu" #: ../panel-plugin/page.cpp:214 msgid "Add to Desktop" @@ -138,9 +138,8 @@ msgstr "" #: ../panel-plugin/configuration-dialog.cpp:693 -#, fuzzy msgid "Ignore _favorites" -msgstr "Gogokoenetara gehitu" +msgstr "" #: ../panel-plugin/configuration-dialog.cpp:585 msgid "Ite_m icon size:" @@ -316,20 +315,20 @@ #: ../panel-plugin/icon-size.cpp:56 msgid "Very Large" -msgstr "" +msgstr "Oso Handia " #: ../panel-plugin/icon-size.cpp:50 msgid "Very Small" -msgstr "" +msgstr "Oso Txikia" #: ../panel-plugin/configuration-dialog.cpp:70 #: ../panel-plugin/whiskermenu.desktop.in.h:1 msgid "Whisker Menu" -msgstr "" +msgstr "Whisker Menua" #: ../panel-plugin/settings.cpp:125 msgid "Wikipedia" -msgstr "" +msgstr "Wikipedia" #: ../panel-plugin/configuration-dialog.cpp:83 msgid "_Appearance" @@ -349,11 +348,11 @@ #: ../panel-plugin/configuration-dialog.cpp:534 msgid "_Icon:" -msgstr "" +msgstr "_Ikonoa:" #: ../panel-plugin/settings.cpp:118 msgid "_Lock Screen" -msgstr "" +msgstr "_Blokeatu pantaila" #: ../panel-plugin/configuration-dialog.cpp:828 msgid "_Pattern:" diff -Nru xfce4-whiskermenu-plugin-1.5.2/po/he.po xfce4-whiskermenu-plugin-1.5.3/po/he.po --- xfce4-whiskermenu-plugin-1.5.2/po/he.po 2015-09-25 14:20:25.000000000 +0000 +++ xfce4-whiskermenu-plugin-1.5.3/po/he.po 2016-04-16 17:51:00.000000000 +0000 @@ -3,15 +3,16 @@ # This file is distributed under the same license as the xfce4-whiskermenu-plugin package. # # Translators: -# GenghisKhan , 2013-2015 +# Elishai Eliyahu , 2016 +# GenghisKhan , 2013-2016 # GenghisKhan , 2013 msgid "" msgstr "" "Project-Id-Version: Whisker Menu\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2015-02-20 23:57+0000\n" -"PO-Revision-Date: 2015-02-21 06:59+0000\n" -"Last-Translator: GenghisKhan \n" +"PO-Revision-Date: 2016-03-10 19:11+0000\n" +"Last-Translator: Elishai Eliyahu \n" "Language-Team: Hebrew (http://www.transifex.com/gottcode/xfce4-whiskermenu-" "plugin/language/he/)\n" "Language: he\n" @@ -46,7 +47,7 @@ #: ../panel-plugin/plugin.cpp:393 msgid "Alternate application launcher for Xfce" -msgstr "משגר יישומים חלופי עבור Xfce" +msgstr "מפעיל יישום חלופי ל-Xfce " #: ../panel-plugin/configuration-dialog.cpp:682 msgid "Amount of _items:" @@ -54,7 +55,7 @@ #: ../panel-plugin/plugin.cpp:217 msgid "Applications" -msgstr "אפליקציות" +msgstr "יישומים" #: ../panel-plugin/configuration-dialog.cpp:616 msgid "Background opacit_y:" @@ -62,7 +63,7 @@ #: ../panel-plugin/command-edit.cpp:49 msgid "Browse the file system to choose a custom command." -msgstr "עיין במערכת הקבצים כדי למצוא פקודה מותאמת." +msgstr "סייר במערכת הקבצים לבחירת פקודה מותאמת אישית." #: ../panel-plugin/configuration-dialog.cpp:840 msgid "C_ommand:" @@ -70,15 +71,15 @@ #: ../panel-plugin/configuration-dialog.cpp:601 msgid "Categ_ory icon size:" -msgstr "גודל סמל _קטגוריה:" +msgstr "גודל איקון _קטגוריה:" #: ../panel-plugin/recent-page.cpp:148 msgid "Clear Recently Used" -msgstr "טהר תפריט בשימוש לאחרונה" +msgstr "נקה תפריט בשימוש לאחרונה" #: ../panel-plugin/plugin.cpp:394 msgid "Copyright © 2013-2015 Graeme Gott" -msgstr "" +msgstr "זכות יוצרים 2013-2015 Graeme Gott" #: ../panel-plugin/configuration-dialog.cpp:811 msgid "Details" @@ -90,15 +91,15 @@ #: ../panel-plugin/configuration-dialog.cpp:699 msgid "Display by _default" -msgstr "הצג באופן _ברירת מחדל" +msgstr "הצג לפי _ברירת מחדל" #: ../panel-plugin/settings.cpp:122 msgid "Edit _Profile" -msgstr "ערוך _דיוקן" +msgstr "ערוך _פרופיל" #: ../panel-plugin/settings.cpp:122 msgid "Failed to edit profile." -msgstr "נכשל לערוך דיוקן." +msgstr "נכשל לערוך פרופיל." #: ../panel-plugin/launcher.cpp:273 ../panel-plugin/run-action.cpp:41 #: ../panel-plugin/search-action.cpp:188 @@ -108,11 +109,11 @@ #: ../panel-plugin/settings.cpp:121 msgid "Failed to launch menu editor." -msgstr "נכשל לשגר עורך תפריט." +msgstr "נכשל להפעיל עורך תפריט." #: ../panel-plugin/settings.cpp:118 msgid "Failed to lock screen." -msgstr "נכשל לנעול מרקע." +msgstr "נכשל לנעול מסך." #: ../panel-plugin/settings.cpp:120 msgid "Failed to log out." @@ -124,7 +125,7 @@ #: ../panel-plugin/settings.cpp:119 msgid "Failed to switch users." -msgstr "נכשל להחליף משתמשים." +msgstr "נכשל להעביר בין משתמשים." #: ../panel-plugin/window.cpp:120 msgid "Favorites" @@ -132,11 +133,11 @@ #: ../panel-plugin/configuration-dialog.cpp:514 msgid "Icon" -msgstr "סמל" +msgstr "איקון" #: ../panel-plugin/configuration-dialog.cpp:516 msgid "Icon and title" -msgstr "סמל וגם כותרת" +msgstr "איקון וכותרת" #: ../panel-plugin/configuration-dialog.cpp:693 msgid "Ignore _favorites" @@ -144,7 +145,7 @@ #: ../panel-plugin/configuration-dialog.cpp:585 msgid "Ite_m icon size:" -msgstr "גודל סמל _פריט:" +msgstr "גודל איקון _פריט:" #: ../panel-plugin/icon-size.cpp:54 msgid "Large" @@ -177,7 +178,7 @@ #: ../panel-plugin/icon-size.cpp:49 msgid "None" -msgstr "כלום" +msgstr "אף אחד" #: ../panel-plugin/icon-size.cpp:53 msgid "Normal" @@ -189,23 +190,23 @@ #: ../panel-plugin/configuration-dialog.cpp:504 msgid "Panel Button" -msgstr "לחצן לוח" +msgstr "כפתור לוח" #: ../panel-plugin/configuration-dialog.cpp:767 msgid "Pattern" -msgstr "תבנית" +msgstr "דפוס" #: ../panel-plugin/configuration-dialog.cpp:653 msgid "Position _search entry next to panel button" -msgstr "מקם שורת _חיפוש ליד לחצן לוח" +msgstr "מקם ערך _חיפוש ליד כפתור לוח" #: ../panel-plugin/configuration-dialog.cpp:666 msgid "Position cate_gories next to panel button" -msgstr "מקם ק_טגוריות לצד לחצן לוח" +msgstr "מקם ק_טגוריות לצד כפתור לוח" #: ../panel-plugin/configuration-dialog.cpp:659 msgid "Position commands next to search _entry" -msgstr "מקם פקודות ליד _שורת חיפוש" +msgstr "מקם פקודות ליד _ערך חיפוש" #: ../panel-plugin/configuration-dialog.cpp:677 ../panel-plugin/window.cpp:126 msgid "Recently Used" @@ -227,11 +228,11 @@ #: ../panel-plugin/run-action.cpp:71 #, c-format msgid "Run %s" -msgstr "הרץ %s" +msgstr "הפעל %s" #: ../panel-plugin/settings.cpp:126 msgid "Run in Terminal" -msgstr "הרץ בתוך מסוף" +msgstr "הפעל בתוך מסוף" #: ../panel-plugin/configuration-dialog.cpp:86 msgid "Search Actio_ns" @@ -243,7 +244,7 @@ #: ../panel-plugin/configuration-dialog.cpp:119 msgid "Select An Icon" -msgstr "בחר סמל" +msgstr "בחר איקון" #: ../panel-plugin/command-edit.cpp:64 msgid "Select Command" @@ -283,15 +284,15 @@ #: ../panel-plugin/settings.cpp:119 msgid "Switch _Users" -msgstr "החלף _משתמשים" +msgstr "העבר בין _משתמשים" #: ../panel-plugin/configuration-dialog.cpp:647 msgid "Switch categories by _hovering" -msgstr "החלף קטגוריות על ידי _מעבר עליהן" +msgstr "העבר בין קטגוריות על ידי _מיקום עליהן" #: ../panel-plugin/configuration-dialog.cpp:405 msgid "The action will be deleted permanently." -msgstr "הפעולה תימחק לצמיתות." +msgstr "הפעולה תימחק באופן קבוע." #: ../panel-plugin/configuration-dialog.cpp:515 msgid "Title" @@ -299,16 +300,16 @@ #: ../panel-plugin/page.cpp:317 msgid "Unable to add launcher to desktop." -msgstr "לא מסוגל להוסיף משגר לתוך שולחן עבודה." +msgstr "לא יכול להוסיף מפעיל לשולחן עבודה." #: ../panel-plugin/page.cpp:356 ../panel-plugin/page.cpp:365 msgid "Unable to add launcher to panel." -msgstr "לא מסוגל להוסיף משגר לתוך לוח." +msgstr "לא יכול להוסיף מפעיל ללוח." #: ../panel-plugin/configuration-dialog.cpp:466 #, c-format msgid "Unable to open the following url: %s" -msgstr "לא מסוגל לפתוח כתובת url להלן: %s" +msgstr "לא יכול לפתוח כתובת url הבאה: %s" #: ../panel-plugin/configuration-dialog.cpp:549 msgid "Use a single _panel row" @@ -325,7 +326,7 @@ #: ../panel-plugin/configuration-dialog.cpp:70 #: ../panel-plugin/whiskermenu.desktop.in.h:1 msgid "Whisker Menu" -msgstr "תפריט זיף" +msgstr "תפריט Whisker" #: ../panel-plugin/settings.cpp:125 msgid "Wikipedia" @@ -349,7 +350,7 @@ #: ../panel-plugin/configuration-dialog.cpp:534 msgid "_Icon:" -msgstr "ס_מל:" +msgstr "אי_קון:" #: ../panel-plugin/settings.cpp:118 msgid "_Lock Screen" @@ -357,7 +358,7 @@ #: ../panel-plugin/configuration-dialog.cpp:828 msgid "_Pattern:" -msgstr "_תבנית:" +msgstr "_דפוס:" #: ../panel-plugin/configuration-dialog.cpp:852 msgid "_Regular expression" @@ -369,4 +370,4 @@ #: ../panel-plugin/plugin.cpp:398 msgid "translator-credits" -msgstr "הינכם מוזמנים להצטרף אל קבוצת התרגום העברית של Xfce" +msgstr "שבחים-מתרגמים" diff -Nru xfce4-whiskermenu-plugin-1.5.2/po/is.po xfce4-whiskermenu-plugin-1.5.3/po/is.po --- xfce4-whiskermenu-plugin-1.5.2/po/is.po 1970-01-01 00:00:00.000000000 +0000 +++ xfce4-whiskermenu-plugin-1.5.3/po/is.po 2016-04-16 17:51:07.000000000 +0000 @@ -0,0 +1,371 @@ +# Icelandic translation of xfce4-whiskermenu-plugin. +# Copyright (C) 2015 Graeme Gott +# This file is distributed under the same license as the xfce4-whiskermenu-plugin package. +# +# Translators: +# Kristján Magnússon, 2016 +msgid "" +msgstr "" +"Project-Id-Version: Whisker Menu\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-02-20 23:57+0000\n" +"PO-Revision-Date: 2016-03-16 01:23+0000\n" +"Last-Translator: Kristján Magnússon\n" +"Language-Team: Icelandic (http://www.transifex.com/gottcode/xfce4-" +"whiskermenu-plugin/language/is/)\n" +"Language: is\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 % 10 != 1 || n % 100 == 11);\n" + +#: ../panel-plugin/configuration-dialog.cpp:782 +msgid "Add action" +msgstr "Bæta við aðgerð" + +#: ../panel-plugin/page.cpp:214 +msgid "Add to Desktop" +msgstr "Bæta við gluggakerfið" + +#: ../panel-plugin/page.cpp:199 +msgid "Add to Favorites" +msgstr "Bæta við uppáhalds" + +#: ../panel-plugin/page.cpp:218 +msgid "Add to Panel" +msgstr "Bæta við spjaldið" + +#: ../panel-plugin/category.cpp:59 +msgid "All" +msgstr "Allt" + +#: ../panel-plugin/settings.cpp:117 +msgid "All _Settings" +msgstr "Allar_Stillingar" + +#: ../panel-plugin/plugin.cpp:393 +msgid "Alternate application launcher for Xfce" +msgstr "" + +#: ../panel-plugin/configuration-dialog.cpp:682 +msgid "Amount of _items:" +msgstr "Magn af _hlutum:" + +#: ../panel-plugin/plugin.cpp:217 +msgid "Applications" +msgstr "Umsóknir" + +#: ../panel-plugin/configuration-dialog.cpp:616 +msgid "Background opacit_y:" +msgstr "Bakgrunns ógagnsæ_i:" + +#: ../panel-plugin/command-edit.cpp:49 +msgid "Browse the file system to choose a custom command." +msgstr "Skoða skrá kerfi til að velja sérsniðna skipun." + +#: ../panel-plugin/configuration-dialog.cpp:840 +msgid "C_ommand:" +msgstr "S_kipun:" + +#: ../panel-plugin/configuration-dialog.cpp:601 +msgid "Categ_ory icon size:" +msgstr "" + +#: ../panel-plugin/recent-page.cpp:148 +msgid "Clear Recently Used" +msgstr "Hreinsa nýlega notað" + +#: ../panel-plugin/plugin.cpp:394 +msgid "Copyright © 2013-2015 Graeme Gott" +msgstr "Höfundarréttur © 2013-2015 Graeme Gott" + +#: ../panel-plugin/configuration-dialog.cpp:811 +msgid "Details" +msgstr "Nánar" + +#: ../panel-plugin/configuration-dialog.cpp:509 +msgid "Di_splay:" +msgstr "Sk_jár:" + +#: ../panel-plugin/configuration-dialog.cpp:699 +msgid "Display by _default" +msgstr "Skjár _Sjálfgefinn" + +#: ../panel-plugin/settings.cpp:122 +msgid "Edit _Profile" +msgstr "Breyta _Prófíll" + +#: ../panel-plugin/settings.cpp:122 +msgid "Failed to edit profile." +msgstr "Mistókst að breyta snið." + +#: ../panel-plugin/launcher.cpp:273 ../panel-plugin/run-action.cpp:41 +#: ../panel-plugin/search-action.cpp:188 +#, c-format +msgid "Failed to execute command \"%s\"." +msgstr "Mistókst að framkvæma skipun \"%s\"." + +#: ../panel-plugin/settings.cpp:121 +msgid "Failed to launch menu editor." +msgstr "Mistókst að ræsa valmyndaritilinn." + +#: ../panel-plugin/settings.cpp:118 +msgid "Failed to lock screen." +msgstr "Mistókst að læsa skjánum." + +#: ../panel-plugin/settings.cpp:120 +msgid "Failed to log out." +msgstr "Mistókst að skrá þig út." + +#: ../panel-plugin/settings.cpp:117 +msgid "Failed to open settings manager." +msgstr "Mistókst að opna stillinga framkvæmdastjóra." + +#: ../panel-plugin/settings.cpp:119 +msgid "Failed to switch users." +msgstr "Mistókst að skipta notendur." + +#: ../panel-plugin/window.cpp:120 +msgid "Favorites" +msgstr "Uppáhalds" + +#: ../panel-plugin/configuration-dialog.cpp:514 +msgid "Icon" +msgstr "" + +#: ../panel-plugin/configuration-dialog.cpp:516 +msgid "Icon and title" +msgstr "" + +#: ../panel-plugin/configuration-dialog.cpp:693 +msgid "Ignore _favorites" +msgstr "Hunsa _uppáhalds" + +#: ../panel-plugin/configuration-dialog.cpp:585 +msgid "Ite_m icon size:" +msgstr "" + +#: ../panel-plugin/icon-size.cpp:54 +msgid "Large" +msgstr "Stórt" + +#: ../panel-plugin/icon-size.cpp:55 +msgid "Larger" +msgstr "Stærra" + +#: ../panel-plugin/settings.cpp:120 +msgid "Log _Out" +msgstr "Skrá _út" + +#: ../panel-plugin/settings.cpp:124 +msgid "Man Pages" +msgstr "" + +#: ../panel-plugin/configuration-dialog.cpp:562 +#: ../panel-plugin/configuration-dialog.cpp:642 +msgid "Menu" +msgstr "Valmynd" + +#: ../panel-plugin/configuration-dialog.cpp:816 +msgid "Nam_e:" +msgstr "Naf_n:" + +#: ../panel-plugin/configuration-dialog.cpp:762 +msgid "Name" +msgstr "Nafn" + +#: ../panel-plugin/icon-size.cpp:49 +msgid "None" +msgstr "Ekkert" + +#: ../panel-plugin/icon-size.cpp:53 +msgid "Normal" +msgstr "Venjulegt" + +#: ../panel-plugin/settings.cpp:127 +msgid "Open URI" +msgstr "Opna URI" + +#: ../panel-plugin/configuration-dialog.cpp:504 +msgid "Panel Button" +msgstr "" + +#: ../panel-plugin/configuration-dialog.cpp:767 +msgid "Pattern" +msgstr "Mynstur" + +#: ../panel-plugin/configuration-dialog.cpp:653 +msgid "Position _search entry next to panel button" +msgstr "" + +#: ../panel-plugin/configuration-dialog.cpp:666 +msgid "Position cate_gories next to panel button" +msgstr "" + +#: ../panel-plugin/configuration-dialog.cpp:659 +msgid "Position commands next to search _entry" +msgstr "" + +#: ../panel-plugin/configuration-dialog.cpp:677 ../panel-plugin/window.cpp:126 +msgid "Recently Used" +msgstr "Nýlega notað" + +#: ../panel-plugin/page.cpp:207 +msgid "Remove From Favorites" +msgstr "Fjarlægja frá uppáhalds" + +#: ../panel-plugin/configuration-dialog.cpp:406 +#, c-format +msgid "Remove action \"%s\"?" +msgstr "Fjarlægja aðgerð \"%s\"?" + +#: ../panel-plugin/configuration-dialog.cpp:791 +msgid "Remove selected action" +msgstr "Fjarlægja valdna aðgerð" + +#: ../panel-plugin/run-action.cpp:71 +#, c-format +msgid "Run %s" +msgstr "Keyri %s" + +#: ../panel-plugin/settings.cpp:126 +msgid "Run in Terminal" +msgstr "Keyra í skjáhermi" + +#: ../panel-plugin/configuration-dialog.cpp:86 +msgid "Search Actio_ns" +msgstr "Leitar aðgerð_ir" + +#: ../panel-plugin/search-action.cpp:261 +msgid "Search Action" +msgstr "Leitaraðgerð" + +#: ../panel-plugin/configuration-dialog.cpp:119 +msgid "Select An Icon" +msgstr "" + +#: ../panel-plugin/command-edit.cpp:64 +msgid "Select Command" +msgstr "Veldu skipun" + +#: ../panel-plugin/whiskermenu.desktop.in.h:2 +msgid "Show a menu to easily access installed applications" +msgstr "Sýna valmynd til auðveldan aðgang að uppsettum forritum" + +#: ../panel-plugin/configuration-dialog.cpp:573 +msgid "Show application _descriptions" +msgstr "" + +#: ../panel-plugin/configuration-dialog.cpp:567 +msgid "Show generic application _names" +msgstr "" + +#: ../panel-plugin/configuration-dialog.cpp:579 +msgid "Show menu hie_rarchy" +msgstr "" + +#: ../panel-plugin/icon-size.cpp:52 +msgid "Small" +msgstr "Lítið" + +#: ../panel-plugin/icon-size.cpp:51 +msgid "Smaller" +msgstr "Minna" + +#: ../panel-plugin/favorites-page.cpp:129 +msgid "Sort Alphabetically A-Z" +msgstr "Raða eftir stafrófsröð A-Z" + +#: ../panel-plugin/favorites-page.cpp:135 +msgid "Sort Alphabetically Z-A" +msgstr "Raða eftir stafrófsröð Z-A" + +#: ../panel-plugin/settings.cpp:119 +msgid "Switch _Users" +msgstr "Skipta um _Notanda" + +#: ../panel-plugin/configuration-dialog.cpp:647 +msgid "Switch categories by _hovering" +msgstr "" + +#: ../panel-plugin/configuration-dialog.cpp:405 +msgid "The action will be deleted permanently." +msgstr "Aðgerðin verður eytt varanlega." + +#: ../panel-plugin/configuration-dialog.cpp:515 +msgid "Title" +msgstr "Titill" + +#: ../panel-plugin/page.cpp:317 +msgid "Unable to add launcher to desktop." +msgstr "" + +#: ../panel-plugin/page.cpp:356 ../panel-plugin/page.cpp:365 +msgid "Unable to add launcher to panel." +msgstr "" + +#: ../panel-plugin/configuration-dialog.cpp:466 +#, c-format +msgid "Unable to open the following url: %s" +msgstr "Næ ekki að opna slóð: %s" + +#: ../panel-plugin/configuration-dialog.cpp:549 +msgid "Use a single _panel row" +msgstr "" + +#: ../panel-plugin/icon-size.cpp:56 +msgid "Very Large" +msgstr "Mjög stórt" + +#: ../panel-plugin/icon-size.cpp:50 +msgid "Very Small" +msgstr "Mjög lítið" + +#: ../panel-plugin/configuration-dialog.cpp:70 +#: ../panel-plugin/whiskermenu.desktop.in.h:1 +msgid "Whisker Menu" +msgstr "Whisker valmynd" + +#: ../panel-plugin/settings.cpp:125 +msgid "Wikipedia" +msgstr "Wikipedia" + +#: ../panel-plugin/configuration-dialog.cpp:83 +msgid "_Appearance" +msgstr "_Útlit" + +#: ../panel-plugin/configuration-dialog.cpp:84 +msgid "_Behavior" +msgstr "_Hegðun" + +#: ../panel-plugin/configuration-dialog.cpp:85 +msgid "_Commands" +msgstr "_Skipanir" + +#: ../panel-plugin/settings.cpp:121 +msgid "_Edit Applications" +msgstr "_Breyta Umsóknum" + +#: ../panel-plugin/configuration-dialog.cpp:534 +msgid "_Icon:" +msgstr "" + +#: ../panel-plugin/settings.cpp:118 +msgid "_Lock Screen" +msgstr "_Læsa skjá" + +#: ../panel-plugin/configuration-dialog.cpp:828 +msgid "_Pattern:" +msgstr "_Mynstur:" + +#: ../panel-plugin/configuration-dialog.cpp:852 +msgid "_Regular expression" +msgstr "_Venjulegt orðatiltæki" + +#: ../panel-plugin/configuration-dialog.cpp:523 +msgid "_Title:" +msgstr "_Titill:" + +#: ../panel-plugin/plugin.cpp:398 +msgid "translator-credits" +msgstr "" diff -Nru xfce4-whiskermenu-plugin-1.5.2/po/ko.po xfce4-whiskermenu-plugin-1.5.3/po/ko.po --- xfce4-whiskermenu-plugin-1.5.2/po/ko.po 2015-12-29 14:40:03.000000000 +0000 +++ xfce4-whiskermenu-plugin-1.5.3/po/ko.po 2016-04-16 17:51:13.000000000 +0000 @@ -11,11 +11,12 @@ "POT-Creation-Date: 2015-02-20 23:57+0000\n" "PO-Revision-Date: 2015-09-29 15:29+0000\n" "Last-Translator: 박정규(Jung Kyu Park) \n" -"Language-Team: Korean (http://www.transifex.com/gottcode/xfce4-whiskermenu-plugin/language/ko/)\n" +"Language-Team: Korean (http://www.transifex.com/gottcode/xfce4-whiskermenu-" +"plugin/language/ko/)\n" +"Language: ko\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ko\n" "Plural-Forms: nplurals=1; plural=0;\n" #: ../panel-plugin/configuration-dialog.cpp:782 diff -Nru xfce4-whiskermenu-plugin-1.5.2/po/lt.po xfce4-whiskermenu-plugin-1.5.3/po/lt.po --- xfce4-whiskermenu-plugin-1.5.2/po/lt.po 2015-12-29 12:44:01.000000000 +0000 +++ xfce4-whiskermenu-plugin-1.5.3/po/lt.po 2016-04-16 17:51:21.000000000 +0000 @@ -9,7 +9,7 @@ "Project-Id-Version: Whisker Menu\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2015-02-20 23:57+0000\n" -"PO-Revision-Date: 2015-11-26 23:52+0000\n" +"PO-Revision-Date: 2016-01-02 22:02+0000\n" "Last-Translator: Moo\n" "Language-Team: Lithuanian (http://www.transifex.com/gottcode/xfce4-" "whiskermenu-plugin/language/lt/)\n" diff -Nru xfce4-whiskermenu-plugin-1.5.2/po/nl.po xfce4-whiskermenu-plugin-1.5.3/po/nl.po --- xfce4-whiskermenu-plugin-1.5.2/po/nl.po 2015-09-25 14:20:25.000000000 +0000 +++ xfce4-whiskermenu-plugin-1.5.3/po/nl.po 2016-04-16 17:51:28.000000000 +0000 @@ -3,13 +3,13 @@ # This file is distributed under the same license as the xfce4-whiskermenu-plugin package. # # Translators: -# Pjotr , 2013-2015 +# Pjotr , 2013-2016 msgid "" msgstr "" "Project-Id-Version: Whisker Menu\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2015-02-20 23:57+0000\n" -"PO-Revision-Date: 2015-02-22 15:36+0000\n" +"PO-Revision-Date: 2016-01-12 06:36+0000\n" "Last-Translator: Pjotr \n" "Language-Team: Dutch (http://www.transifex.com/gottcode/xfce4-whiskermenu-" "plugin/language/nl/)\n" @@ -53,7 +53,7 @@ #: ../panel-plugin/plugin.cpp:217 msgid "Applications" -msgstr "Toepassingen" +msgstr "Menu" #: ../panel-plugin/configuration-dialog.cpp:616 msgid "Background opacit_y:"