commit homerun for openSUSE:Factory
Hello community, here is the log from the commit of package homerun for openSUSE:Factory checked in at 2014-07-02 15:04:42 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/homerun (Old) and /work/SRC/openSUSE:Factory/.homerun.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Package is "homerun" Changes: -------- --- /work/SRC/openSUSE:Factory/homerun/homerun.changes 2014-05-05 21:09:36.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.homerun.new/homerun.changes 2014-07-02 15:04:44.000000000 +0200 @@ -1,0 +2,7 @@ +Mon Jun 30 22:13:09 UTC 2014 - hrvoje.senjan@gmail.com + +- Update to 1.2.5 + * Searching for applications in Homerun Kicker now also searches + app descriptions + +------------------------------------------------------------------- Old: ---- homerun-1.2.4.tar.xz New: ---- homerun-1.2.5.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ homerun.spec ++++++ --- /var/tmp/diff_new_pack.JNRG4w/_old 2014-07-02 15:04:45.000000000 +0200 +++ /var/tmp/diff_new_pack.JNRG4w/_new 2014-07-02 15:04:45.000000000 +0200 @@ -21,7 +21,7 @@ Summary: Fullscreen Launcher for KDE License: (GPL-2.0 or GPL-3.0) and (LGPL-2.1 or LGPL-3.0) Group: System/GUI/KDE -Version: 1.2.4 +Version: 1.2.5 Release: 0 %define sonum 0 Source0: http://download.kde.org/stable/%{name}/src/%{name}-%{version}.tar.xz ++++++ homerun-1.2.4.tar.xz -> homerun-1.2.5.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/homerun-1.2.4/CMakeLists.txt new/homerun-1.2.5/CMakeLists.txt --- old/homerun-1.2.4/CMakeLists.txt 2014-05-02 16:05:20.000000000 +0200 +++ new/homerun-1.2.5/CMakeLists.txt 2014-06-30 17:12:43.000000000 +0200 @@ -3,7 +3,7 @@ SET(CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake/modules" ${CMAKE_MODULE_PATH}) # Packaging -set(HOMERUN_VERSION "1.2.4") +set(HOMERUN_VERSION "1.2.5") # Dependencies find_package(KDE4 4.10.0 REQUIRED) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/homerun-1.2.4/NEWS new/homerun-1.2.5/NEWS --- old/homerun-1.2.4/NEWS 2014-05-02 16:05:20.000000000 +0200 +++ new/homerun-1.2.5/NEWS 2014-06-30 17:12:43.000000000 +0200 @@ -1,3 +1,8 @@ +# 2014.06.30 - 1.2.5 + +- Searching for applications in Homerun Kicker now also searches app + descriptions. + # 2014.05.02 - 1.2.4 - Added a configuration option for Homerun Kicker's application name display diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/homerun-1.2.4/components/sources/installedapps/filterableinstalledappsmodel.cpp new/homerun-1.2.5/components/sources/installedapps/filterableinstalledappsmodel.cpp --- old/homerun-1.2.4/components/sources/installedapps/filterableinstalledappsmodel.cpp 2014-05-02 16:05:20.000000000 +0200 +++ new/homerun-1.2.5/components/sources/installedapps/filterableinstalledappsmodel.cpp 2014-06-30 17:12:43.000000000 +0200 @@ -41,6 +41,7 @@ { setSourceModel(m_installedAppsModel); setDynamicSortFilter(true); + setFilterRole(InstalledAppsModel::CombinedNameRole); setFilterCaseSensitivity(Qt::CaseInsensitive); connect(this, SIGNAL(modelReset()), this, SIGNAL(countChanged())); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/homerun-1.2.4/components/sources/installedapps/installedappsmodel.cpp new/homerun-1.2.5/components/sources/installedapps/installedappsmodel.cpp --- old/homerun-1.2.4/components/sources/installedapps/installedappsmodel.cpp 2014-05-02 16:05:20.000000000 +0200 +++ new/homerun-1.2.5/components/sources/installedapps/installedappsmodel.cpp 2014-06-30 17:12:43.000000000 +0200 @@ -298,6 +298,9 @@ return actionList; } else if (role == GenericNameRole && node->type() == AbstractNode::AppNodeType) { return static_cast<AppNode *>(node)->genericName(); + } else if (role == CombinedNameRole && node->type() == AbstractNode::AppNodeType) { + AppNode *appNode = static_cast<AppNode *>(node); + return QString(appNode->name() + ' ' + appNode->genericName()); } return QVariant(); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/homerun-1.2.4/components/sources/installedapps/installedappsmodel.h new/homerun-1.2.5/components/sources/installedapps/installedappsmodel.h --- old/homerun-1.2.4/components/sources/installedapps/installedappsmodel.h 2014-05-02 16:05:20.000000000 +0200 +++ new/homerun-1.2.5/components/sources/installedapps/installedappsmodel.h 2014-06-30 17:12:43.000000000 +0200 @@ -126,7 +126,8 @@ FavoriteIdRole = Qt::UserRole + 1, HasActionListRole, ActionListRole, - GenericNameRole + GenericNameRole, + CombinedNameRole }; InstalledAppsModel(const QString &entryPath, const QString &installer, QObject *parent = 0); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/homerun-1.2.4/po/CMakeLists.txt new/homerun-1.2.5/po/CMakeLists.txt --- old/homerun-1.2.4/po/CMakeLists.txt 2014-05-02 16:13:27.000000000 +0200 +++ new/homerun-1.2.5/po/CMakeLists.txt 2014-06-30 17:23:47.000000000 +0200 @@ -8,6 +8,7 @@ add_subdirectory( fi ) add_subdirectory( fr ) add_subdirectory( gl ) +add_subdirectory( hu ) add_subdirectory( it ) add_subdirectory( nl ) add_subdirectory( pl ) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/homerun-1.2.4/po/es/plasma_applet_org.kde.homerun.po new/homerun-1.2.5/po/es/plasma_applet_org.kde.homerun.po --- old/homerun-1.2.4/po/es/plasma_applet_org.kde.homerun.po 2014-05-02 16:06:32.000000000 +0200 +++ new/homerun-1.2.5/po/es/plasma_applet_org.kde.homerun.po 2014-06-30 17:01:07.000000000 +0200 @@ -4,13 +4,14 @@ # Rafael Belmonte <EagleScreen@gmail.com>, 2013. # Eloy Cuadra <ecuadra@eloihr.net>, 2013. # Jose Antonio Moray Serrano <moray33@gmx.com>, 2014. +# Victor Rodrigo Cordoba <vrcordoba@gmail.com>, 2014. msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" "POT-Creation-Date: 2014-04-26 01:50+0000\n" -"PO-Revision-Date: 2014-02-02 20:24+0100\n" -"Last-Translator: Jose Antonio Moray Serrano <moray33@gmx.com>\n" +"PO-Revision-Date: 2014-06-14 17:06+0200\n" +"Last-Translator: Victor Rodrigo Cordoba <vrcordoba@gmail.com>\n" "Language-Team: Spanish <kde-l10n-es@kde.org>\n" "Language: es\n" "MIME-Version: 1.0\n" @@ -21,11 +22,12 @@ msgctxt "NAME OF TRANSLATORS" msgid "Your names" -msgstr "José Antonio Moray Serrano,Rafael Belmonte Muñoz" +msgstr "" +"Víctor Rodrigo Córdoba,José Antonio Moray Serrano,Rafael Belmonte Muñoz" msgctxt "EMAIL OF TRANSLATORS" msgid "Your emails" -msgstr "moray33@gmail.com,EagleScreen@gmail.com" +msgstr "vrcordoba@gmail.com,moray33@gmail.com,EagleScreen@gmail.com" #: components/qml/ActionMenu.qml:75 msgid "(Empty)" @@ -541,7 +543,7 @@ #: internal/aboutdata.cpp:49 msgid "Eike Hein" -msgstr "" +msgstr "Eike Hein" #: internal/i18nconfig.cpp:30 msgctxt "Tab title" @@ -572,7 +574,7 @@ #. i18n: ectx: property (text), widget (QLabel, label_4) #: kicker/package/contents/ui/config.ui:33 msgid "Search bookmarks and files:" -msgstr "" +msgstr "Buscar marcadores y archivos:" #. i18n: ectx: property (whatsThis), widget (QCheckBox, kcfg_runnerSupport) #: kicker/package/contents/ui/config.ui:46 @@ -598,53 +600,49 @@ #. i18n: ectx: property (filter), widget (KUrlRequester, kcfg_buttonImage) #: kicker/package/contents/ui/config.ui:94 msgid "*.jpg *.png *.xpm *.gif *.webp" -msgstr "" +msgstr "*.jpg *.png *.xpm *.gif *.webp" #. i18n: ectx: property (text), widget (QLabel, label_3) #: kicker/package/contents/ui/config.ui:103 -#, fuzzy -#| msgid "Align contents to bottom" msgid "Align contents to bottom:" -msgstr "Alinear contenido al fondo" +msgstr "Alinear contenido al pie:" #. i18n: ectx: property (text), widget (QLabel, label) #: kicker/package/contents/ui/config.ui:123 -#, fuzzy -#| msgid "Applications" msgid "Show applications as:" -msgstr "Aplicaciones" +msgstr "Mostrar aplicaciones como:" #. i18n: ectx: property (text), item, widget (QComboBox, kcfg_nameFormat) #: kicker/package/contents/ui/config.ui:143 msgid "Name only" -msgstr "" +msgstr "Solo el nombre" #. i18n: ectx: property (text), item, widget (QComboBox, kcfg_nameFormat) #: kicker/package/contents/ui/config.ui:148 msgid "Description only" -msgstr "" +msgstr "Solo la descripción" #. i18n: ectx: property (text), item, widget (QComboBox, kcfg_nameFormat) #: kicker/package/contents/ui/config.ui:153 msgid "Name (Description)" -msgstr "" +msgstr "Nombre (Descripción)" #. i18n: ectx: property (text), item, widget (QComboBox, kcfg_nameFormat) #: kicker/package/contents/ui/config.ui:158 msgid "Description (Name)" -msgstr "" +msgstr "Descripción (Nombre)" #: kicker/package/contents/ui/ItemListDelegate.qml:191 #, kde-format msgctxt "App name (Generic name)" msgid "%1 (%2)" -msgstr "" +msgstr "%1 (%2)" #: kicker/package/contents/ui/ItemListDelegate.qml:193 #, kde-format msgctxt "Generic Name (App name)" msgid "%1 (%2)" -msgstr "" +msgstr "%1 (%2)" #: kicker/package/contents/ui/main.qml:304 msgid "Search..." diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/homerun-1.2.4/po/hu/CMakeLists.txt new/homerun-1.2.5/po/hu/CMakeLists.txt --- old/homerun-1.2.4/po/hu/CMakeLists.txt 1970-01-01 01:00:00.000000000 +0100 +++ new/homerun-1.2.5/po/hu/CMakeLists.txt 2014-06-30 17:01:20.000000000 +0200 @@ -0,0 +1,2 @@ +file(GLOB _po_files *.po) +GETTEXT_PROCESS_PO_FILES( hu ALL INSTALL_DESTINATION ${LOCALE_INSTALL_DIR} ${_po_files} ) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/homerun-1.2.4/po/hu/plasma_applet_org.kde.homerun.po new/homerun-1.2.5/po/hu/plasma_applet_org.kde.homerun.po --- old/homerun-1.2.4/po/hu/plasma_applet_org.kde.homerun.po 1970-01-01 01:00:00.000000000 +0100 +++ new/homerun-1.2.5/po/hu/plasma_applet_org.kde.homerun.po 2014-06-30 17:01:20.000000000 +0200 @@ -0,0 +1,657 @@ +# Copyright (C) YEAR This_file_is_part_of_KDE +# This file is distributed under the same license as the PACKAGE package. +# +# Balázs Úr <urbalazs@gmail.com>, 2012, 2013, 2014. +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: http://bugs.kde.org\n" +"POT-Creation-Date: 2014-04-26 01:50+0000\n" +"PO-Revision-Date: 2014-06-15 14:03+0200\n" +"Last-Translator: Balázs Úr <urbalazs@gmail.com>\n" +"Language-Team: Hungarian <kde-l10n-hu@kde.org>\n" +"Language: hu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Lokalize 1.5\n" + +msgctxt "NAME OF TRANSLATORS" +msgid "Your names" +msgstr "Úr Balázs" + +msgctxt "EMAIL OF TRANSLATORS" +msgid "Your emails" +msgstr "urbalazs@gmail.com" + +#: components/qml/ActionMenu.qml:75 +msgid "(Empty)" +msgstr "(Üres)" + +#: components/sourceregistry.cpp:252 +#, kde-format +msgid "Runner: %1" +msgstr "Futtató: %1" + +#: components/sourceregistry.cpp:274 +msgid "Installed Applications" +msgstr "Telepített alkalmazások" + +#: components/sourceregistry.cpp:275 +msgid "Browse installed applications by categories" +msgstr "Telepített alkalmazások böngészése kategóriák szerint" + +#: components/sourceregistry.cpp:278 +msgid "All Installed Applications" +msgstr "Minden telepített alkalmazás" + +#: components/sourceregistry.cpp:279 +msgid "List all installed applications in a flat list, grouped by categories" +msgstr "" + +#: components/sourceregistry.cpp:282 +msgid "All Installed Applications With Filters" +msgstr "Minden telepített alkalmazás szűrőkkel" + +#: components/sourceregistry.cpp:283 +msgid "List all installed applications and filter via the sidebar" +msgstr "" +"Minden telepített alkalmazás és szűrő listázása az oldalsávon keresztül" + +#: components/sourceregistry.cpp:286 +#: components/sources/recentapps/recentappsmodel.cpp:290 +msgid "Recent Applications" +msgstr "Legutóbbi alkalmazások" + +#: components/sourceregistry.cpp:287 +msgid "List the most recently launched applications" +msgstr "" + +#: components/sourceregistry.cpp:290 +msgid "Folder" +msgstr "Mappa" + +#: components/sourceregistry.cpp:291 +msgid "List the content of a folder and let you browse into sub-folders" +msgstr "" + +#: components/sourceregistry.cpp:294 +#: components/sources/favorites/favoriteplacesmodel.cpp:139 +msgid "Favorite Places" +msgstr "Kedvenc helyek" + +#: components/sourceregistry.cpp:295 +msgid "Browse the content of your favorite places" +msgstr "" + +#: components/sourceregistry.cpp:298 +#: components/sources/favorites/favoriteappsmodel.cpp:234 +msgid "Favorite Applications" +msgstr "Kedvenc alkalmazások" + +#: components/sourceregistry.cpp:299 +msgid "List applications marked as favorite" +msgstr "" + +#: components/sourceregistry.cpp:302 +msgid "Power Management" +msgstr "Energiakezelés" + +#: components/sourceregistry.cpp:303 +msgid "Provide buttons to suspend, hibernate, reboot or halt your computer" +msgstr "" + +#: components/sourceregistry.cpp:306 +#: components/sources/session/sessionmodel.cpp:98 +msgid "Session" +msgstr "Munkamenet" + +#: components/sourceregistry.cpp:307 +msgid "Provide buttons to lock the screen, log out, or switch to another user" +msgstr "" + +#: components/sourceregistry.cpp:310 +#: components/sources/session/openedsessionsmodel.cpp:67 +msgid "Opened Sessions" +msgstr "Megnyitott munkamenetek" + +#: components/sourceregistry.cpp:311 +msgid "Provide buttons to switch to opened sessions" +msgstr "" + +#: components/sourceregistry.cpp:314 +#: components/sources/power/combinedpowersessionmodel.cpp:307 +msgid "Power / Session" +msgstr "Erő / munkamenet" + +#: components/sourceregistry.cpp:315 +msgid "" +"Provide buttons to manage your workspace session and the power state of your " +"computer" +msgstr "" + +#: components/sourceregistry.cpp:318 +msgid "KRunner" +msgstr "KRunner" + +#: components/sourceregistry.cpp:319 +msgid "Perform searchs using a selection of runners" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: components/sources/dir/dirconfigurationwidget.ui:32 +msgid "Folder to show:" +msgstr "Megjelenítendő mappa:" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: components/sources/dir/dirconfigurationwidget.ui:52 +msgid "Title:" +msgstr "Cím:" + +#. i18n: ectx: property (text), widget (QLabel, titleHelpLabel) +#: components/sources/dir/dirconfigurationwidget.ui:68 +msgid "If title is left empty, the folder name will be used" +msgstr "Ha a cím üresen van hagyva, a mappanév lesz használva" + +#: components/sources/favorites/fileplacesmodel.cpp:124 +msgctxt "KFile System Bookmarks" +msgid "Home" +msgstr "Saját mappa" + +#: components/sources/favorites/fileplacesmodel.cpp:127 +msgctxt "KFile System Bookmarks" +msgid "Network" +msgstr "Hálózat" + +#: components/sources/favorites/fileplacesmodel.cpp:139 +msgctxt "KFile System Bookmarks" +msgid "Root" +msgstr "Gyökér" + +#: components/sources/favorites/fileplacesmodel.cpp:143 +msgctxt "KFile System Bookmarks" +msgid "Trash" +msgstr "Kuka" + +#: components/sources/favorites/fileplacesmodel.cpp:758 +#, kde-format +msgid "&Release '%1'" +msgstr "„%1” &elengedése" + +#: components/sources/favorites/fileplacesmodel.cpp:760 +#, kde-format +msgid "&Safely Remove '%1'" +msgstr "„%1” &biztonságos eltávolítása" + +#: components/sources/favorites/fileplacesmodel.cpp:763 +#, kde-format +msgid "&Unmount '%1'" +msgstr "„%1” &leválasztása" + +#: components/sources/favorites/fileplacesmodel.cpp:784 +#, kde-format +msgid "&Eject '%1'" +msgstr "„%1” ki&adása" + +#: components/sources/favorites/fileplacesmodel.cpp:818 +#, kde-format +msgid "The device '%1' is not a disk and cannot be ejected." +msgstr "A(z) „%1” eszköz nem lemez, ezért nem adható ki." + +#: components/sources/favorites/fileplacesmodel.cpp:854 +#, kde-format +msgid "An error occurred while accessing '%1', the system responded: %2" +msgstr "Hiba történt „%1” elérése közben, a rendszerüzenet: %2" + +#: components/sources/favorites/fileplacesmodel.cpp:858 +#, kde-format +msgid "An error occurred while accessing '%1'" +msgstr "Hiba történt „%1” elérése közben" + +#: components/sources/installedapps/installedappsconfigurationwidget.cpp:133 +#: components/sources/installedapps/installedappsmodel.cpp:332 +msgid "All Applications" +msgstr "Minden alkalmazás" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: components/sources/installedapps/installedappsconfigurationwidget.ui:17 +msgid "Pick the application folder to display:" +msgstr "" + +#: components/sources/installedapps/installedappsmodel.cpp:258 +#: components/sources/installedapps/installedappsmodel.cpp:269 +#: components/sources/recentapps/recentappsmodel.cpp:121 +#: components/sources/recentapps/recentappsmodel.cpp:132 +msgid "Add to Desktop" +msgstr "Hozzáadás az asztalhoz" + +#: components/sources/installedapps/installedappsmodel.cpp:262 +#: components/sources/installedapps/installedappsmodel.cpp:273 +#: components/sources/recentapps/recentappsmodel.cpp:125 +#: components/sources/recentapps/recentappsmodel.cpp:136 +msgid "Add to Panel" +msgstr "Hozzáadás a panelhez" + +#: components/sources/installedapps/installedappsmodel.cpp:293 +#: components/sources/recentapps/recentappsmodel.cpp:154 +msgid "Add as Launcher" +msgstr "Hozzáadás az indítóhoz" + +#: components/sources/installedapps/installedappsmodel.cpp:437 +msgid "Applications" +msgstr "Alkalmazások" + +#: components/sources/power/combinedpowersessionmodel.cpp:241 +msgid "Remove from Sidebar" +msgstr "Eltávolítás az oldalsávról" + +#: components/sources/power/combinedpowersessionmodel.cpp:245 +msgid "Add to Sidebar" +msgstr "Hozzáadás az oldalsávhoz" + +#: components/sources/power/powermodel.cpp:43 +msgid "Power" +msgstr "Bekapcsolás" + +#: components/sources/power/powermodel.cpp:47 +msgctxt "an action" +msgid "Suspend" +msgstr "Felfüggesztés" + +#: components/sources/power/powermodel.cpp:53 +msgctxt "an action" +msgid "Hibernate" +msgstr "Hibernálás" + +#: components/sources/power/powermodel.cpp:59 +msgctxt "an action" +msgid "Restart" +msgstr "Újraindítás" + +#: components/sources/power/powermodel.cpp:64 +msgctxt "an action" +msgid "Shutdown" +msgstr "Leállítás" + +#: components/sources/recentapps/recentappsmodel.cpp:112 +msgid "Forget Application" +msgstr "Alkalmazás elfelejtése" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: components/sources/runners/runnerconfigurationwidget.ui:17 +msgid "Pick the runners you would like to use in this source:" +msgstr "" + +#: components/sources/session/sessionmodel.cpp:50 +msgctxt "an action" +msgid "Lock" +msgstr "Zárolás" + +#: components/sources/session/sessionmodel.cpp:65 +msgctxt "an action" +msgid "New Session" +msgstr "Új munkamenet" + +#: components/sources/session/sessionmodel.cpp:85 +msgctxt "an action" +msgid "Logout" +msgstr "Kijelentkezés" + +#: devdoc/helloworld/helloworld.cpp:47 +msgid "Hello" +msgstr "Helló" + +#: devdoc/helloworld/helloworld.cpp:52 +msgid "World" +msgstr "Világ" + +#: devdoc/helloworld/helloworld.cpp:67 +msgid "Hello World" +msgstr "Helló, világ" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: fullscreen/applet/generalconfigpage.ui:17 +msgid "Icon:" +msgstr "Ikon:" + +#: fullscreen/applet/homerunlauncher.cpp:60 +#: kicker/package/contents/ui/main.qml:571 +msgid "Edit Applications..." +msgstr "Alkalmazások szerkesztése…" + +#: fullscreen/applet/homerunlauncher.cpp:143 +msgid "General" +msgstr "Általános" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: fullscreen/package/contents/ui/config.ui:17 +msgid "Text Color:" +msgstr "Szövegszín:" + +#. i18n: ectx: property (text), widget (QLabel, label_4) +#: fullscreen/package/contents/ui/config.ui:30 +msgid "Text Shadow:" +msgstr "Szövegárnyék:" + +#. i18n: ectx: property (text), widget (QRadioButton, kcfg_shadowModeNone) +#: fullscreen/package/contents/ui/config.ui:40 +msgid "None" +msgstr "Nincs" + +#. i18n: ectx: property (text), widget (QRadioButton, kcfg_shadowModeAuto) +#: fullscreen/package/contents/ui/config.ui:47 +msgid "Automatic" +msgstr "Automatikus" + +#. i18n: ectx: property (text), widget (QRadioButton, kcfg_shadowModeCustom) +#: fullscreen/package/contents/ui/config.ui:56 +msgid "Custom:" +msgstr "Egyéni:" + +#: fullscreen/package/contents/ui/main.qml:101 +msgid "Go to previous tab" +msgstr "Ugrás az előző lapra" + +#: fullscreen/package/contents/ui/main.qml:107 +msgid "Go to next tab" +msgstr "Ugrás a következő lapra" + +#: fullscreen/package/contents/ui/main.qml:113 +msgid "Focus search field" +msgstr "" + +#: fullscreen/package/contents/ui/main.qml:119 +msgid "Go back" +msgstr "Ugrás vissza" + +#: fullscreen/package/contents/ui/main.qml:125 +msgid "Go forward" +msgstr "Ugrás előre" + +#: fullscreen/package/contents/ui/main.qml:131 +msgid "Go up" +msgstr "Ugrás felfelé" + +#: fullscreen/package/contents/ui/main.qml:156 +msgctxt "Used for tabs which have no name" +msgid "<Untitled>" +msgstr "<Névtelen>" + +#: fullscreen/package/contents/ui/main.qml:241 +msgctxt "Button to leave configure mode" +msgid "Done" +msgstr "Kész" + +#: fullscreen/package/contents/ui/main.qml:263 +msgid "Search in current tab..." +msgstr "Keresés az aktuális lapon…" + +#: fullscreen/package/contents/ui/main.qml:299 +msgid "End Configure Tabs" +msgstr "Lapok beállításának befejezése" + +#: fullscreen/package/contents/ui/main.qml:299 +msgid "Configure Tabs" +msgstr "Lapok beállítása" + +#: fullscreen/package/contents/ui/main.qml:308 +msgid "Configure Shortcuts..." +msgstr "Gyorsbillentyűk beállítása…" + +#: fullscreen/package/contents/ui/main.qml:312 +msgid "Show Action List Buttons" +msgstr "Műveleti listagombok megjelenítése" + +#: fullscreen/package/contents/ui/main.qml:321 +msgid "Show Desktop Tool Box" +msgstr "Asztal eszközdoboz megjelenítése" + +#: fullscreen/package/contents/ui/main.qml:332 +msgid "Restore Tabs to Default" +msgstr "Lapok visszaállítása az alapértelmezettre" + +#: fullscreen/package/contents/ui/main.qml:335 +msgid "" +"Are you sure you want to restore tabs?\n" +"Restoring tabs will reset your configuration to the default Homerun tabs.\n" +"Your lists of favorite applications and places will remain untouched." +msgstr "" + +#: fullscreen/package/contents/ui/main.qml:336 +#: fullscreen/package/contents/ui/main.qml:337 +msgid "Restore Tabs" +msgstr "Lapok visszaállítása" + +#: fullscreen/package/contents/ui/main.qml:350 +#, kde-format +msgid "About %1" +msgstr "%1 névjegye" + +#: fullscreen/package/contents/ui/Result.qml:149 +msgid "Drag to reorder; release to show menu" +msgstr "" + +#: fullscreen/package/contents/ui/Result.qml:151 +msgid "Release to show menu" +msgstr "" + +#: fullscreen/package/contents/ui/Result.qml:153 +msgid "Drag to reorder" +msgstr "Húzza az újrarendezéshez" + +#: fullscreen/package/contents/ui/Result.qml:156 +msgid "This item has no menu and cannot be dragged" +msgstr "Ennek az elemnek nincs menüje és nem lehet húzni" + +#: fullscreen/package/contents/ui/ResultsView.qml:192 +#: kicker/package/contents/ui/ItemListDelegate.qml:268 +#: kicker/package/contents/ui/SidebarItem.qml:122 +msgid "Remove from Favorites" +msgstr "Eltávolítás a kedvencekből" + +#: fullscreen/package/contents/ui/ResultsView.qml:196 +#: kicker/package/contents/ui/ItemListDelegate.qml:272 +#: kicker/package/contents/ui/SidebarItem.qml:126 +msgid "Add to Favorites" +msgstr "Hozzáadás a kedvencekhez" + +#: fullscreen/package/contents/ui/ResultsView.qml:367 +#, kde-format +msgid "%1 has been added to your favorites" +msgstr "%1 hozzá lett adva a kedvencekhez" + +#: fullscreen/package/contents/ui/SourceItem.qml:55 +#, kde-format +msgid "Broken source '%1'" +msgstr "Törött forrás: „%1”" + +#: fullscreen/package/contents/ui/TabContent.qml:86 +msgid "Tab Icon:" +msgstr "Lapikon:" + +#: fullscreen/package/contents/ui/TabContent.qml:105 +msgid "Tab Label:" +msgstr "Lapcímke:" + +#: fullscreen/viewer/main.cpp:41 +#, kde-format +msgid "" +"<p><b>Sorry, Homerun failed to load</b></p><p>Do you want to report this " +"error?</p><p>If you decide to report it, please copy and paste the following " +"output in your report:</p><pre>%1</pre>" +msgstr "" +"<p><b>Elnézést, a Homerun betöltése nem sikerült</b></p><p>Szeretné ezt a " +"hibát jelenteni?</p><p>Ha úgy dönt, hogy jelenti, kérjük másolja ki és " +"illessze be a következő kimenetet a jelentésébe:</p><pre>%1</pre>" + +#: fullscreen/viewer/main.cpp:48 +msgid "Report Error" +msgstr "Hiba jelentése" + +#: fullscreen/viewer/main.cpp:65 +msgid "Log focused item (for debug purposes)" +msgstr "" + +#: fullscreen/viewer/main.cpp:66 +msgid "Use a plain window (for debug purposes)" +msgstr "" + +#: internal/aboutdata.cpp:41 +msgctxt "Program name" +msgid "Homerun" +msgstr "Homerun" + +#: internal/aboutdata.cpp:44 +msgid "(C) 2012-2014 Blue Systems" +msgstr "© Blue Systems, 2012-2014." + +#: internal/aboutdata.cpp:47 +msgid "Shaun Reich" +msgstr "Shaun Reich" + +#: internal/aboutdata.cpp:47 internal/aboutdata.cpp:48 +#: internal/aboutdata.cpp:49 +msgid "Developer" +msgstr "Fejlesztő" + +#: internal/aboutdata.cpp:48 +msgid "Aurélien Gâteau" +msgstr "Aurélien Gâteau" + +#: internal/aboutdata.cpp:49 +msgid "Eike Hein" +msgstr "Eike Hein" + +#: internal/i18nconfig.cpp:30 +msgctxt "Tab title" +msgid "Home" +msgstr "Saját mappa" + +#: internal/i18nconfig.cpp:31 +msgctxt "Tab title" +msgid "Files" +msgstr "Fájlok" + +#: internal/i18nconfig.cpp:32 +msgctxt "Tab title" +msgid "Applications" +msgstr "Alkalmazások" + +#: internal/i18nconfig.cpp:33 +msgctxt "Tab title" +msgid "Power" +msgstr "Bekapcsolás" + +#. i18n: ectx: property (text), widget (QLabel, label_6) +#: kicker/package/contents/ui/config.ui:26 +msgid "Behavior" +msgstr "Viselkedés" + +#. i18n: ectx: property (text), widget (QLabel, label_4) +#: kicker/package/contents/ui/config.ui:33 +msgid "Search bookmarks and files:" +msgstr "Könyvjelzők és fájlok keresése:" + +#. i18n: ectx: property (whatsThis), widget (QCheckBox, kcfg_runnerSupport) +#: kicker/package/contents/ui/config.ui:46 +msgid "" +"If this option is enabled, search may display additional columns with search " +"results powered by certain Plasma runner plugins, such as \"Bookmarks\" and " +"\"Desktop Search\"." +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, label_5) +#: kicker/package/contents/ui/config.ui:62 +msgid "Appearance" +msgstr "Megjelenés" + +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: kicker/package/contents/ui/config.ui:69 +msgid "Custom button image:" +msgstr "Egyéni gombkép:" + +#. i18n: ectx: property (filter), widget (KUrlRequester, kcfg_buttonImage) +#: kicker/package/contents/ui/config.ui:94 +msgid "*.jpg *.png *.xpm *.gif *.webp" +msgstr "*.jpg *.png *.xpm *.gif *.webp" + +#. i18n: ectx: property (text), widget (QLabel, label_3) +#: kicker/package/contents/ui/config.ui:103 +msgid "Align contents to bottom:" +msgstr "Tartalmak igazítása alulra:" + +#. i18n: ectx: property (text), widget (QLabel, label) +#: kicker/package/contents/ui/config.ui:123 +msgid "Show applications as:" +msgstr "Alkalmazások megjelenítése másként:" + +#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_nameFormat) +#: kicker/package/contents/ui/config.ui:143 +msgid "Name only" +msgstr "Csak név" + +#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_nameFormat) +#: kicker/package/contents/ui/config.ui:148 +msgid "Description only" +msgstr "Csak leírás" + +#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_nameFormat) +#: kicker/package/contents/ui/config.ui:153 +msgid "Name (Description)" +msgstr "Név (leírás)" + +#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_nameFormat) +#: kicker/package/contents/ui/config.ui:158 +msgid "Description (Name)" +msgstr "Leírás (név)" + +#: kicker/package/contents/ui/ItemListDelegate.qml:191 +#, kde-format +msgctxt "App name (Generic name)" +msgid "%1 (%2)" +msgstr "%1 (%2)" + +#: kicker/package/contents/ui/ItemListDelegate.qml:193 +#, kde-format +msgctxt "Generic Name (App name)" +msgid "%1 (%2)" +msgstr "%1 (%2)" + +#: kicker/package/contents/ui/main.qml:304 +msgid "Search..." +msgstr "Keresés…" + +#: kicker/package/contents/ui/main.qml:504 +#: plugins/recentdocuments/recentdocuments.cpp:130 +msgid "Recent Documents" +msgstr "Legutóbbi dokumentumok" + +#: kicker/package/contents/ui/main.qml:567 +msgid "Homerun Kicker" +msgstr "Homerun kirúgó" + +#: kicker/package/contents/ui/main.qml:568 +msgid "Launch applications and manage your desktop." +msgstr "Alkalmazások indítása és az asztal kezelése." + +#: lib/actionlist.cpp:75 +msgctxt "@action:inmenu" +msgid "Empty Trash" +msgstr "Kuka ürítése" + +#: lib/actionlist.cpp:93 +msgid "Open with:" +msgstr "Megnyitás ezzel:" + +#: lib/actionlist.cpp:105 +msgid "Properties" +msgstr "Tulajdonságok" + +#: plugins/recentdocuments/recentdocuments.cpp:152 +msgid "Forget Document" +msgstr "Dokumentum elfelejtése" + +#~ msgctxt "an action" +#~ msgid "Switch User" +#~ msgstr "Felhasználóváltás" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/homerun-1.2.4/po/nl/plasma_applet_org.kde.homerun.po new/homerun-1.2.5/po/nl/plasma_applet_org.kde.homerun.po --- old/homerun-1.2.4/po/nl/plasma_applet_org.kde.homerun.po 2014-05-02 16:07:03.000000000 +0200 +++ new/homerun-1.2.5/po/nl/plasma_applet_org.kde.homerun.po 2014-06-30 17:01:39.000000000 +0200 @@ -7,7 +7,7 @@ "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" "POT-Creation-Date: 2014-04-26 01:50+0000\n" -"PO-Revision-Date: 2014-04-26 15:50+0200\n" +"PO-Revision-Date: 2014-06-19 00:01+0200\n" "Last-Translator: Freek de Kruijf <freekdekruijf@kde.nl>\n" "Language-Team: Dutch <kde-i18n-nl@kde.org>\n" "Language: nl\n" @@ -329,7 +329,7 @@ #: fullscreen/applet/homerunlauncher.cpp:60 #: kicker/package/contents/ui/main.qml:571 msgid "Edit Applications..." -msgstr "Programma's bewerken..." +msgstr "Toepassingen bewerken..." #: fullscreen/applet/homerunlauncher.cpp:143 msgid "General" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/homerun-1.2.4/po/sk/plasma_applet_org.kde.homerun.po new/homerun-1.2.5/po/sk/plasma_applet_org.kde.homerun.po --- old/homerun-1.2.4/po/sk/plasma_applet_org.kde.homerun.po 2014-05-02 16:07:15.000000000 +0200 +++ new/homerun-1.2.5/po/sk/plasma_applet_org.kde.homerun.po 2014-06-30 17:01:50.000000000 +0200 @@ -661,6 +661,3 @@ #: plugins/recentdocuments/recentdocuments.cpp:152 msgid "Forget Document" msgstr "Zabudnúť dokument" - -#~ msgid "Use Plasma runners for additional search results" -#~ msgstr "Použiť Plasma runnerov na dodatočné výsledky hľadania" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/homerun-1.2.4/po/tr/plasma_applet_org.kde.homerun.po new/homerun-1.2.5/po/tr/plasma_applet_org.kde.homerun.po --- old/homerun-1.2.4/po/tr/plasma_applet_org.kde.homerun.po 2014-05-02 16:07:24.000000000 +0200 +++ new/homerun-1.2.5/po/tr/plasma_applet_org.kde.homerun.po 2014-06-30 17:01:59.000000000 +0200 @@ -7,7 +7,7 @@ "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" "POT-Creation-Date: 2014-04-26 01:50+0000\n" -"PO-Revision-Date: 2014-02-17 15:23+0100\n" +"PO-Revision-Date: 2014-05-04 15:13+0200\n" "Last-Translator: Volkan Gezer <volkangezer@gmail.com>\n" "Language-Team: Turkish <kde-l10n-tr@kde.org>\n" "Language: tr\n" @@ -561,7 +561,7 @@ #. i18n: ectx: property (text), widget (QLabel, label_4) #: kicker/package/contents/ui/config.ui:33 msgid "Search bookmarks and files:" -msgstr "" +msgstr "Yer imleri ve dosyalarda ara:" #. i18n: ectx: property (whatsThis), widget (QCheckBox, kcfg_runnerSupport) #: kicker/package/contents/ui/config.ui:46 @@ -591,49 +591,45 @@ #. i18n: ectx: property (text), widget (QLabel, label_3) #: kicker/package/contents/ui/config.ui:103 -#, fuzzy -#| msgid "Align contents to bottom" msgid "Align contents to bottom:" -msgstr "İçerikleri alta hizala" +msgstr "İçerikleri alta hizala:" #. i18n: ectx: property (text), widget (QLabel, label) #: kicker/package/contents/ui/config.ui:123 -#, fuzzy -#| msgid "Applications" msgid "Show applications as:" -msgstr "Uygulamalar" +msgstr "Uygulamaları şu şekilde göster:" #. i18n: ectx: property (text), item, widget (QComboBox, kcfg_nameFormat) #: kicker/package/contents/ui/config.ui:143 msgid "Name only" -msgstr "" +msgstr "Sadece isim" #. i18n: ectx: property (text), item, widget (QComboBox, kcfg_nameFormat) #: kicker/package/contents/ui/config.ui:148 msgid "Description only" -msgstr "" +msgstr "Sadece açıklama" #. i18n: ectx: property (text), item, widget (QComboBox, kcfg_nameFormat) #: kicker/package/contents/ui/config.ui:153 msgid "Name (Description)" -msgstr "" +msgstr "İsim (Açıklama)" #. i18n: ectx: property (text), item, widget (QComboBox, kcfg_nameFormat) #: kicker/package/contents/ui/config.ui:158 msgid "Description (Name)" -msgstr "" +msgstr "Açıklama (İsim)" #: kicker/package/contents/ui/ItemListDelegate.qml:191 #, kde-format msgctxt "App name (Generic name)" msgid "%1 (%2)" -msgstr "" +msgstr "%1 (%2)" #: kicker/package/contents/ui/ItemListDelegate.qml:193 #, kde-format msgctxt "Generic Name (App name)" msgid "%1 (%2)" -msgstr "" +msgstr "%1 (%2)" #: kicker/package/contents/ui/main.qml:304 msgid "Search..." diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/homerun-1.2.4/po/uk/plasma_applet_org.kde.homerun.po new/homerun-1.2.5/po/uk/plasma_applet_org.kde.homerun.po --- old/homerun-1.2.4/po/uk/plasma_applet_org.kde.homerun.po 2014-05-02 16:07:27.000000000 +0200 +++ new/homerun-1.2.5/po/uk/plasma_applet_org.kde.homerun.po 2014-06-30 17:02:02.000000000 +0200 @@ -4,7 +4,7 @@ # Yuri Chornoivan <yurchor@ukr.net>, 2012, 2013, 2014. msgid "" msgstr "" -"Project-Id-Version: \n" +"Project-Id-Version: plasma_applet_org.kde.homerun\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" "POT-Creation-Date: 2014-04-26 01:50+0000\n" "PO-Revision-Date: 2014-04-26 09:07+0300\n" -- To unsubscribe, e-mail: opensuse-commit+unsubscribe@opensuse.org For additional commands, e-mail: opensuse-commit+help@opensuse.org
participants (1)
-
root@hilbert.suse.de