Index: head/Mk/Uses/kde.mk =================================================================== --- head/Mk/Uses/kde.mk (revision 468494) +++ head/Mk/Uses/kde.mk (revision 468495) @@ -1,839 +1,976 @@ # $FreeBSD$ # # Provides support for KDE and KF5-based ports. # # Feature: kde # Valid ARGS: 4 5 # # 4: Depend on KDE4 components and variables. # 5: Depend on KDE Frameworks 5 components and variables. # # Variables that can be set by a port: # # USE_KDE List of KDE4/KF5/Plasma5 components (other ports) that this # port depends on. # * foo_build Add a build-time dependency (BUILD_DEPENDS) # * foo_run Add a run-time dependency (RUN_DEPENDS) # * foo (default) Add both dependencies on component , or # a LIB_DEPENDS if applicable. # # To simplify the ports, also: # CATEGORIES If the port is part of one of the KDE Software distribution, # it can add, in addition to 'kde' one of the following: # kde-frameworks: part of frameworks release # kde-kde4: part of kde4 release +# kde-plasma: part of plasma release # this will then set default values for MASTER_SITES and DIST_SUBDIR # as well as CPE_VENDOR and LICENSE. # # MAINTAINER: kde@FreeBSD.org .if !defined(_INCLUDE_USES_KDE_MK) _INCLUDE_USES_KDE_MK= yes _KDE_SUPPORTED= 4 5 . if empty(kde_ARGS) IGNORE= kde needs a version (${_KDE_SUPPORTED}) . endif . for ver in ${_KDE_SUPPORTED:O:u} . if ${kde_ARGS:M${ver}} . if !defined(_KDE_VERSION) _KDE_VERSION= ${ver} . else IGNORE?= cannot be installed: different KDE versions specified via kde:[${_KDE_SUPPORTED:S/ //g}] #' . endif . endif . endfor . if empty(_KDE_VERSION) IGNORE?= kde:[${_KDE_SUPPORTED:S/ //g}] needs an argument #' . endif _KDE_RELNAME= KDE${_KDE_VERSION} # === VERSIONS OF THE DIFFERENT COMPONENTS ===================================== # Old KDE desktop. KDE4_VERSION?= 4.14.3 KDE4_KDELIBS_VERSION= 4.14.38 KDE4_ACTIVITIES_VERSION= 4.13.3 KDE4_WORKSPACE_VERSION= 4.11.22 KDE4_KDEPIM_VERSION?= 4.14.10 # Applications version for the kde4-applications. KDE4_APPLICATIONS_BRANCH?= Attic KDE4_APPLICATIONS_VERSION?= 15.04.3 KDE4_BRANCH?= stable # Current KDE desktop. +KDE_PLASMA_VERSION?= 5.12.4 +KDE_PLASMA_BRANCH?= stable + +# Current KDE frameworks. KDE_FRAMEWORKS_VERSION?= 5.45.0 KDE_FRAMEWORKS_BRANCH?= stable # Current KDE applications. KDE_APPLICATIONS_VERSION?= 17.12.3 KDE_APPLICATIONS_SHLIB_VER?= 5.7.3 KDE_APPLICATIONS_BRANCH?= stable # Upstream moves old software to Attic/. Specify the newest applications release there. # Only the major version is used for the comparison. _KDE_APPLICATIONS_ATTIC_VERSION= 16.12.3 # Extended KDE universe applications. CALLIGRA_VERSION?= 2.9.11 CALLIGRA_BRANCH?= stable KDEVELOP_VERSION?= 4.7.4 KDEVELOP_BRANCH?= stable KTP_VERSION?= 0.9.0 KTP_BRANCH?= stable # ============================================================================== # === INSTALLATION PREFIXES AND HEADER LOCATION ================================ # Define unversioned prefix variable. KDE_PREFIX= ${LOCALBASE} # ============================================================================== # === CATEGORIES HANDLING -- SETTING DEFAULT VALUES ============================ # Doing MASTER_SITES magic based on the category of the port -_KDE_CATEGORIES_SUPPORTED= kde-applications kde-frameworks kde-kde4 +_KDE_CATEGORIES_SUPPORTED= kde-applications kde-frameworks kde-kde4 kde-plasma . for cat in ${_KDE_CATEGORIES_SUPPORTED} . if ${CATEGORIES:M${cat}} . if !defined(_KDE_CATEGORY) _KDE_CATEGORY= ${cat} . else IGNORE?= cannot be installed: multiple kde-<...> categories specified via CATEGORIES=${CATEGORIES} #' . endif . endif . endfor . if defined(_KDE_CATEGORY) # KDE is normally licensed under the LGPL 2.0. LICENSE?= LGPL20 # Set CPE Vendor Information # As _KDE_CATEGORY is set we can assume it is port release by KDE and the # vendor is therefore kde. CPE_VENDOR?= kde . if ${_KDE_CATEGORY:Mkde-kde4} PORTVERSION?= ${KDE4_VERSION} MASTER_SITES?= KDE/${KDE4_BRANCH}/${KDE4_VERSION}/src DIST_SUBDIR?= KDE/${KDE4_VERSION} PKGNAMESUFFIX= -kde4 CONFLICTS_INSTALL= ${PORTNAME:C/-kde4//}-4.* . elif ${_KDE_CATEGORY:Mkde-applications} PORTVERSION?= ${KDE_APPLICATIONS_VERSION} . if ${_KDE_VERSION:M4} CONFLICTS_INSTALL?= ${PORTNAME}-[0-9]* PKGNAMESUFFIX?= -kde4 . else CONFLICTS_INSTALL?= ${PORTNAME}-kde4-[0-9]* . endif # Decide where the file lies on KDE's servers: Check whether the file lies in Attic . if ${KDE_APPLICATIONS_VERSION:R:R} <= ${_KDE_APPLICATIONS_ATTIC_VERSION:R:R} MASTER_SITES?= KDE/Attic/applications/${KDE_APPLICATIONS_VERSION}/src . else MASTER_SITES?= KDE/${KDE_APPLICATIONS_BRANCH}/applications/${KDE_APPLICATIONS_VERSION}/src # Let bsd.port.mk create the plist-entries for the documentation. # KDE Applications ports install their documentation to # ${PREFIX}/share/doc. DOCSDIR= ${PREFIX}/share/doc PORTDOCS?= HTML/* # Further pass along a SHLIB_VER PLIST_SUB PLIST_SUB+= KDE_APPLICATIONS_SHLIB_VER=${KDE_APPLICATIONS_SHLIB_VER} . endif DIST_SUBDIR?= KDE/applications/${KDE_APPLICATIONS_VERSION} +. elif ${_KDE_CATEGORY:Mkde-plasma} +PORTVERSION?= ${KDE_PLASMA_VERSION} +PKGNAMEPREFIX?= plasma5- +MASTER_SITES?= KDE/${KDE_PLASMA_BRANCH}/plasma/${KDE_PLASMA_VERSION} +DIST_SUBDIR?= KDE/plasma/${KDE_PLASMA_VERSION} . elif ${_KDE_CATEGORY:Mkde-frameworks} PORTVERSION?= ${KDE_FRAMEWORKS_VERSION} PKGNAMEPREFIX?= kf5- # This is a slight duplication of _USE_FRAMEWORKS_PORTING -- it maybe would be # better to rely on ${_USE_FRAMEWORKS_PORTING:S/^/k/g} _PORTINGAIDS= kjs kjsembed kdelibs4support khtml kmediaplayer kross . if ${_PORTINGAIDS:M*${PORTNAME}*} MASTER_SITES?= KDE/${KDE_FRAMEWORKS_BRANCH}/frameworks/${KDE_FRAMEWORKS_VERSION:R}/portingAids . else MASTER_SITES?= KDE/${KDE_FRAMEWORKS_BRANCH}/frameworks/${KDE_FRAMEWORKS_VERSION:R} . endif DIST_SUBDIR?= KDE/frameworks/${KDE_FRAMEWORKS_VERSION} . else IGNORE?= unknown CATEGORY value '${_KDE_CATEGORY}' #' . endif . endif #defined(_KDE_CATEGORY) # ============================================================================== # ==== SETUP CMAKE ENVIRONMENT ================================================= # Help cmake to find files when testing ports with non-default PREFIX. CMAKE_ARGS+= -DCMAKE_PREFIX_PATH="${LOCALBASE}" . if ${_KDE_VERSION:M*4*} CMAKE_ARGS+= -DKDE4_BUILD_TESTS:BOOL=OFF . elif ${_KDE_VERSION:M*5*} # We set KDE_INSTALL_USE_QT_SYS_PATHS to install mkspecs files, plugins and # imports to the Qt 5 install directory. CMAKE_ARGS+= -DBUILD_TESTING:BOOL=OFF \ -DCMAKE_MODULE_PATH="${LOCALBASE};${KDE_PREFIX}" \ -DCMAKE_INSTALL_PREFIX="${KDE_PREFIX}" \ -DKDE_INSTALL_USE_QT_SYS_PATHS:BOOL=TRUE . endif # Set man-page installation prefix. CMAKE_ARGS+= -DKDE_INSTALL_MANDIR:PATH="${KDE_PREFIX}/man" \ -DMAN_INSTALL_DIR:PATH="${KDE_PREFIX}/man" # ============================================================================== # === SET-UP PLIST_SUB ========================================================= # Prefix and include directory. PLIST_SUB+= KDE_PREFIX="${KDE_PREFIX}" # KDE Applications version. PLIST_SUB+= KDE_APPLICATIONS_VERSION="${KDE_APPLICATIONS_VERSION}" # For KDE4 applications provide KDE4 version numbers. . if ${_KDE_VERSION:M*4*} PLIST_SUB+= KDE4_VERSION="${KDE4_VERSION}" \ KDE4_GENERIC_LIB_VERSION=${KDE4_KDELIBS_VERSION} \ KDE4_NON_GENERIC_LIB_VERSION=${KDE4_KDELIBS_VERSION:S,^4,5,} \ KDE4_KDELIBS_VERSION=${KDE4_KDELIBS_VERSION} \ KDE4_NG_KDELIBS_VERSION=${KDE4_KDELIBS_VERSION:S,^4,5,} . elif ${_KDE_VERSION:M*5*} -PLIST_SUB+= KDE_FRAMEWORKS_VERSION="${KDE_FRAMEWORKS_VERSION}" +PLIST_SUB+= KDE_PLASMA_VERSION="${KDE_PLASMA_VERSION}" \ + KDE_FRAMEWORKS_VERSION="${KDE_FRAMEWORKS_VERSION}" . endif # ============================================================================== # === HANDLE PYTHON ============================================================ # TODO: Keep in sync with cmake/modules/PythonMacros.cmake _PYTHON_SHORT_VER= ${PYTHON_VERSION:S/^python//:S/.//} . if ${_PYTHON_SHORT_VER} > 31 PLIST_SUB+= PYCACHE="__pycache__/" \ PYC_SUFFIX=cpython-${_PYTHON_SHORT_VER}.pyc \ PYO_SUFFIX=cpython-${_PYTHON_SHORT_VER}.pyo . else PLIST_SUB+= PYCACHE="" \ PYC_SUFFIX=pyc \ PYO_SUFFIX=pyo . endif # ============================================================================== _USE_KDE_BOTH= akonadi attica libkcddb libkcompactdisc libkdcraw libkdegames \ libkeduvocdocument libkexiv2 libkipi libksane okular \ baloo baloo-widgets kate marble _USE_KDE4_ALL= baloo baloo-widgets baseapps kactivities kdelibs \ kfilemetadata korundum \ libkonq nepomuk-core nepomuk-widgets \ oxygen-icons5 perlkde perlqt pimlibs pykde4 \ pykdeuic4 qtruby runtime smokegen smokekde smokeqt \ workspace # These components are not part of the Software Compilation. _USE_KDE4_ALL+= akonadi automoc4 ontologies qimageblitz soprano \ strigi _USE_KDE4_ALL+= ${_USE_KDE_BOTH} # List of components of the KDE Frameworks distribution. # The *_TIER variables are internal, primarily for checking # that our list of frameworks matches the structure offered upstream. _USE_FRAMEWORKS_TIER1= apidox archive attica5 breeze-icons codecs config \ coreaddons dbusaddons dnssd holidays i18n idletime itemmodels \ itemviews kirigami2 oxygen-icons5 plotting prison solid \ sonnet syntaxhighlighting threadweaver wayland \ widgetsaddons windowsystem # NOT LISTED TIER1: modemmanagerqt networkmanagerqt (not applicable) _USE_FRAMEWORKS_TIER2= auth completion crash doctools \ filemetadata kimageformats jobwidgets notifications \ package pty unitconversion -_USE_FRAMEWORKS_TIER3= activities baloo5 bookmarks configwidgets \ +_USE_FRAMEWORKS_TIER3= activities activities-stats baloo5 bookmarks configwidgets \ designerplugin emoticons globalaccel guiaddons \ iconthemes init kcmutils kdeclarative \ kded kdesu kdewebkit kio newstuff notifyconfig parts \ people plasma-framework purpose runner service texteditor \ textwidgets wallet xmlgui xmlrpcclient _USE_FRAMEWORKS_TIER4= frameworkintegration # Porting Aids frameworks provide code and utilities to ease the transition from # kdelibs 4 to KDE Frameworks 5. Code should aim to port away from this framework, # new projects should avoid using these libraries. _USE_FRAMEWORKS_PORTING=js jsembed kdelibs4support khtml mediaplayer kross _USE_FRAMEWORKS_ALL= ecm \ ${_USE_FRAMEWORKS_TIER1} \ ${_USE_FRAMEWORKS_TIER2} \ ${_USE_FRAMEWORKS_TIER3} \ ${_USE_FRAMEWORKS_TIER4} \ ${_USE_FRAMEWORKS_PORTING} \ ${_USE_FRAMEWORKS_EXTRA} +# List of components of the KDE Plasma distribution. +_USE_PLASMA_ALL= activitymanagerd breeze breeze-gtk \ + breeze-kde4 decoration discover drkonqi hotkeys \ + infocenter kde-cli-tools kde-gtk-config \ + kdeplasma-addons kgamma5 kmenuedit kscreen \ + kscreenlocker ksshaskpass ksysguard kwallet-pam \ + kwayland-integration kwin kwrited libkscreen \ + libksysguard milou oxygen plasma-desktop \ + plasma-integration plasma-pa \ + plasma-sdk plasma-workspace plasma-workspace-wallpapers \ + polkit-kde-agent-1 powerdevil systemsettings \ + user-manager + # List of components of the KDE PIM distribution (part of applications). _USE_KDEPIM5_ALL= akonadicontacts akonadiimportwizard akonadimime akonadinotes \ akonadicalendar akonadisearch alarmcalendar \ blog calendarcore calendarsupport calendarutils \ contacts eventviews gapi grantleetheme \ gravatar identitymanagement imap \ incidenceeditor kdepim-addons kdepim-apps-libs \ kdepim-runtime5 kontactinterface kpimdav \ ksmtp ldap libkdepim libkleo libksieve mailcommon \ mailimporter mailtransport mbox messagelib \ mime pimcommon pimtextedit syndication tnef _USE_KDE5_ALL= ${_USE_FRAMEWORKS_ALL} \ + ${_USE_PLASMA_ALL} \ ${_USE_KDEPIM5_ALL} \ ${_USE_KDE_BOTH} # ====================== kde4 components ======================================= baseapps_PORT= x11/kde-baseapps-kde4 baseapps_PATH= ${KDE_PREFIX}/bin/kfmclient baseapps_TYPE= run kactivities_PORT= x11/kactivities kactivities_LIB= libkactivities.so kdelibs_PORT= x11/kdelibs-kde4 kdelibs_LIB= libkdecore.so kfilemetadata_PORT= sysutils/kfilemetadata-kde4 kfilemetadata_LIB= libkfilemetadata.so korundum_PORT= devel/ruby-korundum-kde4 korundum_PATH= ${KDE_PREFIX}/lib/kde4/krubypluginfactory.so korundum_TYPE= run libkonq_PORT= x11/libkonq-kde4 libkonq_LIB= libkonq.so nepomuk-core_PORT= sysutils/nepomuk-core-kde4 nepomuk-core_LIB= libnepomukcore.so nepomuk-widgets_PORT= sysutils/nepomuk-widgets-kde4 nepomuk-widgets_LIB= libnepomukwidgets.so perlkde_PORT= devel/p5-perlkde-kde4 perlkde_PATH= ${KDE_PREFIX}/lib/kde4/kperlpluginfactory.so perlkde_TYPE= run perlqt_PORT= devel/p5-perlqt-kde4 perlqt_PATH= ${KDE_PREFIX}/bin/puic4 pimlibs_PORT= deskutils/kdepimlibs-kde4 pimlibs_LIB= libkpimutils.so pykde4_PORT= devel/py-pykde4-kde4 pykde4_PATH= ${KDE_PREFIX}/lib/kde4/kpythonpluginfactory.so pykde4_TYPE= run pykdeuic4_PORT= devel/py-pykdeuic4-kde4 pykdeuic4_PATH= ${LOCALBASE}/bin/pykdeuic4 pykdeuic4_TYPE= run qtruby_PORT= devel/ruby-qtruby-kde4 qtruby_LIB= libqtruby4shared.so runtime_PORT= x11/kde-runtime-kde4 runtime_PATH= ${KDE_PREFIX}/bin/knotify4 runtime_TYPE= run smokegen_PORT= devel/smokegen-kde4 smokegen_LIB= libsmokebase.so smokekde_PORT= devel/smokekde-kde4 smokekde_LIB= libsmokekdecore.so smokeqt_PORT= devel/smokeqt-kde4 smokeqt_LIB= libsmokeqtcore.so workspace_PORT= x11/kde-workspace-kde4 workspace_LIB= libkworkspace.so # Non-Software Compilation components automoc4_PORT= devel/automoc4 automoc4_PATH= ${LOCALBASE}/bin/automoc4 automoc4_TYPE= build ontologies_PORT= x11-toolkits/shared-desktop-ontologies ontologies_PATH= ${LOCALBASE}/share/ontology/core/rdf.ontology qimageblitz_PORT= x11/qimageblitz qimageblitz_LIB= libqimageblitz.so soprano_PORT= textproc/soprano soprano_LIB= libsoprano.so strigi_PORT= deskutils/libstreamanalyzer strigi_LIB= libstreamanalyzer.so.0 # ====================== end of kde4 components ================================ # ====================== frameworks components ================================= activities_PORT= x11/kf5-kactivities activities_LIB= libKF5Activities.so +activities-stats_PORT= x11/kf5-kactivities-stats +activities-stats_LIB= libKF5ActivitiesStats.so + apidox_PORT= devel/kf5-kapidox apidox_PATH= ${KDE_PREFIX}/bin/kapidox_generate apidox_TYPE= run archive_PORT= archivers/kf5-karchive archive_LIB= libKF5Archive.so attica5_PORT= x11-toolkits/kf5-attica attica5_LIB= libKF5Attica.so auth_PORT= devel/kf5-kauth auth_LIB= libKF5Auth.so baloo5_PORT= sysutils/kf5-baloo baloo5_LIB= libKF5Baloo.so bookmarks_PORT= devel/kf5-kbookmarks bookmarks_LIB= libKF5Bookmarks.so breeze-icons_PORT= x11-themes/kf5-breeze-icons breeze-icons_PATH= ${KDE_PREFIX}/share/icons/breeze/index.theme breeze-icons_TYPE= run codecs_PORT= textproc/kf5-kcodecs codecs_LIB= libKF5Codecs.so completion_PORT= x11-toolkits/kf5-kcompletion completion_LIB= libKF5Completion.so config_PORT= devel/kf5-kconfig config_LIB= libKF5ConfigCore.so configwidgets_PORT= x11-toolkits/kf5-kconfigwidgets configwidgets_LIB= libKF5ConfigWidgets.so coreaddons_PORT= devel/kf5-kcoreaddons coreaddons_LIB= libKF5CoreAddons.so crash_PORT= devel/kf5-kcrash crash_LIB= libKF5Crash.so dbusaddons_PORT= devel/kf5-kdbusaddons dbusaddons_LIB= libKF5DBusAddons.so designerplugin_PORT= x11-toolkits/kf5-kdesignerplugin designerplugin_PATH= ${QT_PLUGINDIR}/designer/kf5widgets.so designerplugin_TYPE= run dnssd_PORT= dns/kf5-kdnssd dnssd_LIB= libKF5DNSSD.so doctools_PORT= devel/kf5-kdoctools doctools_PATH= ${KDE_PREFIX}/bin/meinproc5 ecm_PORT= devel/kf5-extra-cmake-modules ecm_PATH= ${LOCALBASE}/share/ECM/cmake/ECMConfig.cmake emoticons_PORT= x11-themes/kf5-kemoticons emoticons_LIB= libKF5Emoticons.so filemetadata_PORT= devel/kf5-kfilemetadata filemetadata_LIB= libKF5FileMetaData.so frameworkintegration_PORT= x11/kf5-frameworkintegration frameworkintegration_LIB= libKF5Style.so globalaccel_PORT= x11/kf5-kglobalaccel globalaccel_LIB= libKF5GlobalAccel.so guiaddons_PORT= x11-toolkits/kf5-kguiaddons guiaddons_LIB= libKF5GuiAddons.so holidays_PORT= net/kf5-kholidays holidays_LIB= libKF5Holidays.so i18n_PORT= devel/kf5-ki18n i18n_LIB= libKF5I18n.so iconthemes_PORT= x11-themes/kf5-kiconthemes iconthemes_LIB= libKF5IconThemes.so idletime_PORT= devel/kf5-kidletime idletime_LIB= libKF5IdleTime.so init_PORT= x11/kf5-kinit init_PATH= ${KDE_PREFIX}/bin/kdeinit5 itemmodels_PORT= devel/kf5-kitemmodels itemmodels_LIB= libKF5ItemModels.so itemviews_PORT= x11-toolkits/kf5-kitemviews itemviews_LIB= libKF5ItemViews.so jobwidgets_PORT= x11-toolkits/kf5-kjobwidgets jobwidgets_LIB= libKF5JobWidgets.so js_PORT= www/kf5-kjs js_LIB= libKF5JS.so jsembed_PORT= www/kf5-kjsembed jsembed_LIB= libKF5JsEmbed.so kcmutils_PORT= devel/kf5-kcmutils kcmutils_LIB= libKF5KCMUtils.so kdeclarative_PORT= devel/kf5-kdeclarative kdeclarative_LIB= libKF5Declarative.so kded_PORT= x11/kf5-kded kded_LIB= libkdeinit5_kded5.so kdelibs4support_PORT= x11/kf5-kdelibs4support kdelibs4support_LIB= libKF5KDELibs4Support.so kdesu_PORT= security/kf5-kdesu kdesu_LIB= libKF5Su.so kdewebkit_PORT= www/kf5-kdewebkit kdewebkit_LIB= libKF5WebKit.so khtml_PORT= www/kf5-khtml khtml_LIB= libKF5KHtml.so kimageformats_PORT= graphics/kf5-kimageformats kimageformats_PATH= ${QT_PLUGINDIR}/imageformats/kimg_xcf.so kimageformats_TYPE= run kio_PORT= devel/kf5-kio kio_LIB= libKF5KIOCore.so kirigami2_PORT= x11-toolkits/kf5-kirigami2 kirigami2_PATH= ${QT_QMLDIR}/org/kde/kirigami.2/libkirigamiplugin.so kross_PORT= lang/kf5-kross kross_LIB= libKF5KrossCore.so mediaplayer_PORT= multimedia/kf5-kmediaplayer mediaplayer_LIB= libKF5MediaPlayer.so.5 newstuff_PORT= devel/kf5-knewstuff newstuff_LIB= libKF5NewStuff.so notifications_PORT= devel/kf5-knotifications notifications_LIB= libKF5Notifications.so notifyconfig_PORT= devel/kf5-knotifyconfig notifyconfig_LIB= libKF5NotifyConfig.so # This is a KF5 port used by KDE4 as well, but it's architecture-independent # and only contains icons. oxygen-icons5_PORT= x11-themes/kf5-oxygen-icons5 oxygen-icons5_PATH= ${KDE_PREFIX}/share/icons/oxygen/index.theme oxygen-icons5_TYPE= run package_PORT= devel/kf5-kpackage package_LIB= libKF5Package.so parts_PORT= devel/kf5-kparts parts_LIB= libKF5Parts.so people_PORT= devel/kf5-kpeople people_LIB= libKF5People.so plasma-framework_PORT= x11/kf5-plasma-framework plasma-framework_LIB= libKF5Plasma.so plotting_PORT= graphics/kf5-kplotting plotting_LIB= libKF5Plotting.so prison_PORT= graphics/kf5-prison prison_LIB= libKF5Prison.so pty_PORT= devel/kf5-kpty pty_LIB= libKF5Pty.so purpose_PORT= misc/kf5-purpose purpose_LIB= libKF5Purpose.so runner_PORT= x11/kf5-krunner runner_LIB= libKF5Runner.so service_PORT= devel/kf5-kservice service_PATH= ${KDE_PREFIX}/bin/kbuildsycoca5 solid_PORT= devel/kf5-solid solid_LIB= libKF5Solid.so sonnet_PORT= textproc/kf5-sonnet sonnet_LIB= libKF5SonnetCore.so syntaxhighlighting_PORT= textproc/kf5-syntax-highlighting syntaxhighlighting_LIB= libKF5SyntaxHighlighting.so texteditor_PORT= devel/kf5-ktexteditor texteditor_LIB= libKF5TextEditor.so textwidgets_PORT= x11-toolkits/kf5-ktextwidgets textwidgets_LIB= libKF5TextWidgets.so threadweaver_PORT= devel/kf5-threadweaver threadweaver_LIB= libKF5ThreadWeaver.so unitconversion_PORT= devel/kf5-kunitconversion unitconversion_LIB= libKF5UnitConversion.so wallet_PORT= sysutils/kf5-kwallet wallet_LIB= libKF5Wallet.so wayland_PORT= x11/kf5-kwayland wayland_LIB= libKF5WaylandClient.so widgetsaddons_PORT= x11-toolkits/kf5-kwidgetsaddons widgetsaddons_LIB= libKF5WidgetsAddons.so windowsystem_PORT= x11/kf5-kwindowsystem windowsystem_LIB= libKF5WindowSystem.so xmlgui_PORT= x11-toolkits/kf5-kxmlgui xmlgui_LIB= libKF5XmlGui.so xmlrpcclient_PORT= net/kf5-kxmlrpcclient xmlrpcclient_LIB= libKF5XmlRpcClient.so # ====================== end of frameworks components ========================== +# ====================== plasma components ===================================== +activitymanagerd_PORT= x11/plasma5-kactivitymanagerd +activitymanagerd_LIB= libkactivitymanagerd_plugin.so + +breeze_PORT= x11-themes/plasma5-breeze +breeze_PATH= ${KDE_PREFIX}/share/QtCurve/Breeze.qtcurve + +breeze-gtk_PORT= x11-themes/plasma5-breeze-gtk +breeze-gtk_PATH= ${KDE_PREFIX}/lib/kconf_update_bin/gtkbreeze5.5 + +breeze-kde4_PORT= x11-themes/plasma5-breeze-kde4 +breeze-kde4_PATH= ${KDE_PREFIX}/lib/kde4/kstyle_breeze_config.so + +decoration_PORT= x11-wm/plasma5-kdecoration +decoration_LIB= libkdecorations2.so + +discover_PORT= sysutils/plasma5-discover +discover_PATH= ${KDE_PREFIX}/bin/plasma-discover + +drkonqi_PORT= sysutils/plasma5-drkonqi +drkonqi_PATH= ${KDE_PREFIX}/lib/libexec/drkonqi + +hotkeys_PORT= devel/plasma5-khotkeys +hotkeys_LIB= libkhotkeysprivate.so.5 + +infocenter_PORT= sysutils/plasma5-kinfocenter +infocenter_PATH= ${KDE_PREFIX}/bin/kinfocenter + +kde-cli-tools_PORT= sysutils/plasma5-kde-cli-tools +kde-cli-tools_PATH= ${KDE_PREFIX}/bin/kcmshell5 + +kde-gtk-config_PORT= x11-themes/plasma5-kde-gtk-config +kde-gtk-config_PATH= ${QT_PLUGINDIR}/kcm_kdegtkconfig.so + +kdeplasma-addons_PORT= x11-toolkits/plasma5-kdeplasma-addons +kdeplasma-addons_PATH= ${QT_PLUGINDIR}/kcm_krunner_dictionary.so + +kgamma5_PORT= x11/plasma5-kgamma5 +kgamma5_PATH= ${QT_PLUGINDIR}/kcm_kgamma.so + +kmenuedit_PORT= sysutils/plasma5-kmenuedit +kmenuedit_LIB= libkdeinit5_kmenuedit.so + +kscreen_PORT= x11/plasma5-kscreen +kscreen_PATH= ${KDE_PREFIX}/bin/kscreen-console + +kscreenlocker_PORT= security/plasma5-kscreenlocker +kscreenlocker_LIB= libKScreenLocker.so + +ksshaskpass_PORT= security/plasma5-ksshaskpass +ksshaskpass_PATH= ${KDE_PREFIX}/bin/ksshaskpass + +ksysguard_PORT= sysutils/plasma5-ksysguard +ksysguard_PATH= ${KDE_PREFIX}/bin/ksysguard + +kwallet-pam_PORT= security/plasma5-kwallet-pam +kwallet-pam_PATH= ${KDE_PREFIX}/lib/security/pam_kwallet5.so + +kwayland-integration_PORT= x11/plasma5-kwayland-integration +kwayland-integration_PATH= ${QT_PLUGINDIR}/kf5/org.kde.kidletime.platforms/KF5IdleTimeKWaylandPlugin.so + +kwin_PORT= x11-wm/plasma5-kwin +kwin_PATH= ${KDE_PREFIX}/bin/kwin_x11 + +kwrited_PORT= devel/plasma5-kwrited +kwrited_PATH= ${QT_PLUGINDIR}/kf5/kded/kwrited.so + +libkscreen_PORT= x11/plasma5-libkscreen +libkscreen_LIB= libKF5Screen.so + +libksysguard_PORT= sysutils/plasma5-libksysguard +libksysguard_LIB= libksgrd.so + +milou_PORT= deskutils/plasma5-milou +milou_LIB= libmilou.so.5 + +oxygen_PORT= x11-themes/plasma5-oxygen +oxygen_LIB= liboxygenstyle5.so + +plasma-desktop_PORT= x11/plasma5-plasma-desktop +plasma-desktop_PATH= ${KDE_PREFIX}/bin/krdb + +plasma-integration_PORT= x11/plasma5-plasma-integration +plasma-integration_PATH= ${QT_PLUGINDIR}/platformthemes/KDEPlasmaPlatformTheme.so + +plasma-pa_PORT= audio/plasma5-plasma-pa +plasma-pa_PATH= ${QT_PLUGINDIR}/kcms/kcm_pulseaudio.so + +plasma-sdk_PORT= devel/plasma5-plasma-sdk +plasma-sdk_PATH= ${KDE_PREFIX}/bin/plasmoidviewer + +plasma-workspace_PORT= x11/plasma5-plasma-workspace +plasma-workspace_LIB= libkdeinit5_kcminit.so + +plasma-workspace-wallpapers_PORT= x11-themes/plasma5-plasma-workspace-wallpapers +plasma-workspace-wallpapers_PATH= ${KDE_PREFIX}/share/wallpapers/Autumn/contents/images/1280x1024.jpg + +polkit-kde-agent-1_PORT= sysutils/plasma5-polkit-kde-agent-1 +polkit-kde-agent-1_PATH= ${KDE_PREFIX}/lib/libexec/polkit-kde-authentication-agent-1 + +powerdevil_PORT= sysutils/plasma5-powerdevil +powerdevil_LIB= libpowerdevilcore.so + +systemsettings_PORT= sysutils/plasma5-systemsettings +systemsettings_PATH= ${KDE_PREFIX}/bin/systemsettings5 + +user-manager_PORT= sysutils/plasma5-user-manager +user-manager_PATH= ${QT_PLUGINDIR}/user_manager.so +# ====================== end of plasma components ============================== # ====================== pim5 components ======================================= akonadicontacts_PORT= net/akonadi-contacts akonadicontacts_LIB= libKF5AkonadiContact.so akonadiimportwizard_PORT= deskutils/akonadi-import-wizard akonadiimportwizard_LIB= libKPimImportWizard.so akonadimime_PORT= net/akonadi-mime akonadimime_LIB= libKF5AkonadiMime.so akonadinotes_PORT= net/akonadi-notes akonadinotes_LIB= libKF5AkonadiNotes.so akonadicalendar_PORT= net/akonadi-calendar akonadicalendar_LIB= libKF5AkonadiCalendar.so akonadisearch_PORT= net/akonadi-search akonadisearch_LIB= libKF5AkonadiSearchCore.so alarmcalendar_PORT= net/kalarmcal alarmcalendar_LIB= libKF5AlarmCalendar.so blog_PORT= net/kblog blog_LIB= libKF5Blog.so calendarsupport_PORT= net/calendarsupport calendarsupport_LIB= libKF5CalendarSupport.so calendarcore_PORT= net/kcalcore calendarcore_LIB= libKF5CalendarCore.so calendarutils_PORT= net/kcalutils calendarutils_LIB= libKF5CalendarUtils.so contacts_PORT= net/kcontacts contacts_LIB= libKF5Contacts.so eventviews_PORT= net/eventviews eventviews_LIB= libKF5EventViews.so gapi_PORT= net/libkgapi gapi_LIB= libKPimGAPICore.so grantleetheme_PORT= deskutils/grantleetheme grantleetheme_LIB= libKF5GrantleeTheme.so gravatar_PORT= net/libgravatar gravatar_LIB= libKF5Gravatar.so identitymanagement_PORT= net/kidentitymanagement identitymanagement_LIB= libKF5IdentityManagement.so imap_PORT= net/kimap imap_LIB= libKF5IMAP.so incidenceeditor_PORT= net/incidenceeditor incidenceeditor_LIB= libKF5IncidenceEditor.so kdepim-addons_PORT= deskutils/kdepim-addons kdepim-addons_PATH= ${KDE_PREFIX}/lib/contacteditor/editorpageplugins/cryptopageplugin.so kdepim-apps-libs_PORT= deskutils/kdepim-apps-libs kdepim-apps-libs_LIB= libKF5SendLater.so kdepim-runtime5_PORT= deskutils/kdepim-runtime kdepim-runtime5_LIB= libakonadi-filestore.so.5 kontactinterface_PORT= net/kontactinterface kontactinterface_LIB= libKF5KontactInterface.so kpimdav_PORT= net/kdav kpimdav_LIB= libKPimKDAV.so ksmtp_PORT= net/ksmtp ksmtp_LIB= libKPimSMTP.so ldap_PORT= net/kldap ldap_LIB= libKF5Ldap.so libkdepim_PORT= deskutils/libkdepim libkdepim_LIB= libKF5Libkdepim.so libkleo_PORT= security/libkleo libkleo_LIB= libKF5Libkleo.so libksieve_PORT= net/libksieve libksieve_LIB= libKF5KSieve.so mailcommon_PORT= net/mailcommon mailcommon_LIB= libKF5MailCommon.so mailimporter_PORT= net/mailimporter mailimporter_LIB= libKF5MailImporter.so mailtransport_PORT= net/kmailtransport mailtransport_LIB= libKF5MailTransport.so mbox_PORT= net/kmbox mbox_LIB= libKF5Mbox.so messagelib_PORT= net/messagelib messagelib_LIB= libKF5MessageList.so mime_PORT= net/kmime mime_LIB= libKF5Mime.so pimcommon_PORT= net/pimcommon pimcommon_LIB= libKF5PimCommon.so pimtextedit_PORT= net/kpimtextedit pimtextedit_LIB= libKF5PimTextEdit.so syndication_PORT= net/syndication syndication_LIB= libKF5Syndication.so tnef_PORT= net/ktnef tnef_LIB= libKF5Tnef.so # ====================== end of pim5 components ================================ # ====================== multiversion component ================================ akonadi4_PORT= databases/akonadi-kde4 akonadi4_LIB= libakonadiprotocolinternals.so akonadi5_PORT= databases/akonadi akonadi5_LIB= libKF5AkonadiPrivate.so attica4_PORT= x11-toolkits/attica attica4_LIB= libattica.so baloo4_PORT= sysutils/baloo-kde4 baloo4_LIB= libbaloocore.so baloo-widgets4_PORT= sysutils/baloo-widgets-kde4 baloo-widgets4_LIB= libbaloowidgets.so kate4_PORT= editors/kate-kde4 kate4_LIB= libkateinterfaces.so kate5_PORT= editors/kate kate5_PATH= ${QT_PLUGINDIR}/ktexteditor/katebacktracebrowserplugin.so libkcddb4_PORT= audio/libkcddb-kde4 libkcddb4_LIB= libkcddb.so libkcompactdisc4_PORT= audio/libkcompactdisc-kde4 libkcompactdisc4_LIB= libkcompactdisc.so libkdcraw4_PORT= graphics/libkdcraw-kde4 libkdcraw4_LIB= libkdcraw.so libkdcraw5_PORT= graphics/libkdcraw libkdcraw5_LIB= libKF5KDcraw.so libkdegames4_PORT= games/libkdegames-kde4 libkdegames4_LIB= libkdegames.so libkdegames5_PORT= games/libkdegames libkdegames5_LIB= libKF5KDEGames.so libkeduvocdocument4_PORT= misc/libkdeedu-kde4 libkeduvocdocument4_LIB= libkeduvocdocument.so libkeduvocdocument5_PORT= misc/libkeduvocdocument libkeduvocdocument5_LIB= libKEduVocDocument.so libkexiv24_PORT= graphics/libkexiv2-kde4 libkexiv24_LIB= libkexiv2.so libkexiv25_PORT= graphics/libkexiv2 libkexiv25_LIB= libKF5KExiv2.so libkipi4_PORT= graphics/libkipi-kde4 libkipi4_LIB= libkipi.so libkipi5_PORT= graphics/libkipi libkipi5_LIB= libKF5Kipi.so libksane4_PORT= graphics/libksane-kde4 libksane4_LIB= libksane.so libksane5_PORT= graphics/libksane libksane5_LIB= libKF5Sane.so marble4_PORT= astro/marble-kde4 marble4_LIB= libmarblewidget.so marble5_PORT= astro/marble marble5_LIB= libmarblewidget-qt5.so okular4_PORT= graphics/okular-kde4 okular4_LIB= libokularcore.so okular5_PORT= graphics/okular okular5_LIB= libOkular5Core.so # ====================== end of multiversion components ======================== # ====================== select the proper multiversion component ============== . for comp in ${_USE_KDE_BOTH} ${comp}_PORT= ${${comp}${_KDE_VERSION}_PORT} . if defined(${comp}${_KDE_VERSION}_LIB) ${comp}_LIB= ${${comp}${_KDE_VERSION}_LIB} . else . if defined(${comp}${_KDE_VERSION}_PATH}) ${comp}_PATH= ${${comp}${_KDE_VERSION}_LIB} . endif # If neither is defined, this gets caught below when checking components . endif . endfor #=============================================================================== # end of component list ######################################################## _USE_KDE_ALL= ${_USE_${_KDE_RELNAME}_ALL} # Iterate through components deprived of suffix. . for component in ${USE_KDE:O:u:C/_.+//} # Check that the component is valid. . if ${_USE_KDE_ALL:M${component}} != "" # Skip meta-components (currently none). . if defined(${component}_PORT) && (defined(${component}_PATH) || defined(${component}_LIB)) # Check if a dependency type is explicitly requested. . if ${USE_KDE:M${component}_*} != "" && ${USE_KDE:M${component}} == "" ${component}_TYPE= # empty . if ${USE_KDE:M${component}_build} != "" ${component}_TYPE+= build . endif . if ${USE_KDE:M${component}_run} != "" ${component}_TYPE+= run . endif . endif # ${USE_KDE:M${component}_*} != "" && ${USE_KDE:M${component}} == "" # If no dependency type is set, default to full dependency. . if !defined(${component}_TYPE) ${component}_TYPE= build run . endif # Set real dependencies. . if defined(${component}_LIB) && ${${component}_TYPE:Mbuild} && ${${component}_TYPE:Mrun} LIB_DEPENDS+= ${${component}_LIB}:${${component}_PORT} . else ${component}_PATH?= ${KDE_PREFIX}/lib/${${component}_LIB} ${component}_DEPENDS= ${${component}_PATH}:${${component}_PORT} . if ${${component}_TYPE:Mbuild} != "" BUILD_DEPENDS+= ${${component}_DEPENDS} . endif . if ${${component}_TYPE:Mrun} != "" RUN_DEPENDS+= ${${component}_DEPENDS} . endif . endif # ${${component}_LIB} && ${${component}_TYPE:Mbuild} && ${${component}_TYPE:Mrun} . endif # defined(${component}_PORT) && defined(${component}_PATH) . else # ! ${_USE_KDE_ALL:M${component}} != "" IGNORE= cannot be installed: unknown USE_KDE component '${component}' . endif # ${_USE_KDE_ALL:M${component}} != "" . endfor .endif Index: head/audio/Makefile =================================================================== --- head/audio/Makefile (revision 468494) +++ head/audio/Makefile (revision 468495) @@ -1,919 +1,920 @@ # $FreeBSD$ # COMMENT = Audio tools SUBDIR += GxSwitchlessWah-lv2 SUBDIR += HVSC-Update SUBDIR += Maaate SUBDIR += aacgain SUBDIR += aacplusenc SUBDIR += abcde SUBDIR += abcmidi SUBDIR += abcselect SUBDIR += abgate-lv2 SUBDIR += abraca SUBDIR += acoustid-fingerprinter SUBDIR += adplay SUBDIR += afsp SUBDIR += aften SUBDIR += alac SUBDIR += alienwah SUBDIR += alsa-lib SUBDIR += alsa-plugins SUBDIR += alsa-sndio SUBDIR += alsa-utils SUBDIR += alure SUBDIR += amarok-kde4 SUBDIR += amb-plugins SUBDIR += ample SUBDIR += amsynth SUBDIR += aqualung SUBDIR += ardour SUBDIR += ardour5 SUBDIR += ario SUBDIR += arss SUBDIR += ascd SUBDIR += asmix SUBDIR += asmixer SUBDIR += asterisk-espeak SUBDIR += asterisk-flite SUBDIR += asunder SUBDIR += atunes SUBDIR += aubio SUBDIR += aucatctl SUBDIR += audacity SUBDIR += audex SUBDIR += audiere SUBDIR += audiocd-kio SUBDIR += audiotag SUBDIR += aumix SUBDIR += autocd SUBDIR += autotalent SUBDIR += autozen SUBDIR += avldrums-lv2 SUBDIR += aylet SUBDIR += baresip SUBDIR += baudline SUBDIR += bcg729 SUBDIR += beep SUBDIR += beets SUBDIR += blop SUBDIR += blop-lv2 SUBDIR += boodler SUBDIR += bristol SUBDIR += calf SUBDIR += cam SUBDIR += cantata SUBDIR += caps-lv2 SUBDIR += caps-plugins SUBDIR += carla SUBDIR += cava SUBDIR += ccaudio2 SUBDIR += cd-discid SUBDIR += cd2mp3 SUBDIR += cddb-bundle SUBDIR += cdparanoia SUBDIR += cdplay SUBDIR += celt SUBDIR += checkmate SUBDIR += chordpack SUBDIR += chromaprint SUBDIR += clementine-player SUBDIR += clunk SUBDIR += cmp3 SUBDIR += cmt SUBDIR += cmus SUBDIR += codec2 SUBDIR += cpige SUBDIR += cplay SUBDIR += cpp-xmms2 SUBDIR += creox SUBDIR += crip SUBDIR += csound6 SUBDIR += ctronome SUBDIR += cue2toc SUBDIR += cueplayer SUBDIR += cuetools SUBDIR += cutmp3 SUBDIR += dagrab SUBDIR += darkice SUBDIR += dcd SUBDIR += deadbeef SUBDIR += deadbeef-jack-plugin SUBDIR += deadbeef-mpris2-plugin SUBDIR += deadbeef-musical-spectrum-plugin SUBDIR += deadbeef-playback-status-plugin SUBDIR += deadbeef-quick-search-plugin SUBDIR += deadbeef-spectrogram-plugin SUBDIR += deadbeef-vu-meter-plugin SUBDIR += deadbeef-waveform-seekbar-plugin SUBDIR += decibel-audio-player SUBDIR += deforaos-mixer SUBDIR += dekagen SUBDIR += denemo SUBDIR += dir2ogg SUBDIR += discid SUBDIR += dream SUBDIR += drumgizmo SUBDIR += drumpiler SUBDIR += drumstick SUBDIR += dsbmixer SUBDIR += dssi SUBDIR += dtmfdial SUBDIR += dumb SUBDIR += dumb-allegro SUBDIR += easytag SUBDIR += eawpats SUBDIR += eawplus SUBDIR += ecasound SUBDIR += emms SUBDIR += enscribe SUBDIR += epos-devel SUBDIR += eq10q-lv2 SUBDIR += esound SUBDIR += espeak SUBDIR += esperanza SUBDIR += etcd SUBDIR += eteroj-lv2 SUBDIR += etktab SUBDIR += exaile SUBDIR += exaile-devel SUBDIR += extace SUBDIR += ezstream SUBDIR += faac SUBDIR += faad SUBDIR += fapg SUBDIR += faust SUBDIR += fcplay SUBDIR += fdk-aac SUBDIR += fdmf SUBDIR += festalon SUBDIR += festival SUBDIR += festival-freebsoft-utils SUBDIR += festlex-cmu SUBDIR += festlex-czech SUBDIR += festlex-oald SUBDIR += festlex-ogi SUBDIR += festlex-poslex SUBDIR += festvox-cmu_us_awb_arctic SUBDIR += festvox-cmu_us_bdl_arctic SUBDIR += festvox-cmu_us_clb_arctic SUBDIR += festvox-cmu_us_jmk_arctic SUBDIR += festvox-cmu_us_ksp_arctic SUBDIR += festvox-cmu_us_rms_arctic SUBDIR += festvox-cmu_us_slt_arctic SUBDIR += festvox-czech SUBDIR += festvox-don SUBDIR += festvox-el11 SUBDIR += festvox-kal16 SUBDIR += festvox-kal8 SUBDIR += festvox-ked16 SUBDIR += festvox-ked8 SUBDIR += festvox-rab16 SUBDIR += festvox-rab8 SUBDIR += festvox-russian SUBDIR += firefly SUBDIR += flac SUBDIR += flac123 SUBDIR += flacon SUBDIR += flake SUBDIR += flite SUBDIR += fluid-soundfont SUBDIR += fluidplug-lv2 SUBDIR += fluidsynth SUBDIR += fluidsynth-dssi SUBDIR += fmit SUBDIR += fomp-lv2 SUBDIR += foo-yc20 SUBDIR += forked-daapd SUBDIR += fpc-a52 SUBDIR += fpc-mad SUBDIR += fpc-modplug SUBDIR += fpc-oggvorbis SUBDIR += fpc-openal SUBDIR += fplib SUBDIR += freealut SUBDIR += freedesktop-sound-theme SUBDIR += freepats SUBDIR += funktrackergold SUBDIR += gbemol SUBDIR += gbsplay SUBDIR += gervill SUBDIR += ghostess SUBDIR += gimmix SUBDIR += gkrellmms2 SUBDIR += gkrellmss2 SUBDIR += gkrellmvolume2 SUBDIR += glame SUBDIR += glurp SUBDIR += gmidimonitor SUBDIR += gmixer SUBDIR += gmpc SUBDIR += gmpc-alarm SUBDIR += gmpc-albumview SUBDIR += gmpc-discogs SUBDIR += gmpc-extraplaylist SUBDIR += gmpc-lastfm SUBDIR += gmpc-libnotify SUBDIR += gmpc-lyrics SUBDIR += gmpc-lyricsplugin SUBDIR += gmpc-lyricwiki SUBDIR += gmpc-magnatune SUBDIR += gmpc-mdcover SUBDIR += gmpc-mserver SUBDIR += gmpc-shout SUBDIR += gmpc-wikipedia SUBDIR += gmsynth-lv2 SUBDIR += gmtp SUBDIR += gmusicbrowser SUBDIR += gnaural SUBDIR += gnome-music SUBDIR += gnormalize SUBDIR += gnuitar SUBDIR += gnupod SUBDIR += gnuspeechsa SUBDIR += gnustep-cdplayer SUBDIR += goattracker SUBDIR += gogglesmm SUBDIR += goobox SUBDIR += gqmpeg SUBDIR += gqradio SUBDIR += gradio SUBDIR += gramofile SUBDIR += grip SUBDIR += gsm SUBDIR += gsound SUBDIR += gstreamer-plugins-a52dec SUBDIR += gstreamer-plugins-amrnb SUBDIR += gstreamer-plugins-amrwbdec SUBDIR += gstreamer-plugins-cdaudio SUBDIR += gstreamer-plugins-cdparanoia SUBDIR += gstreamer-plugins-esound SUBDIR += gstreamer-plugins-faac SUBDIR += gstreamer-plugins-faad SUBDIR += gstreamer-plugins-flac SUBDIR += gstreamer-plugins-flite SUBDIR += gstreamer-plugins-fluendo-mp3 SUBDIR += gstreamer-plugins-gme SUBDIR += gstreamer-plugins-gsm SUBDIR += gstreamer-plugins-jack SUBDIR += gstreamer-plugins-ladspa SUBDIR += gstreamer-plugins-lame SUBDIR += gstreamer-plugins-mad SUBDIR += gstreamer-plugins-mp3 SUBDIR += gstreamer-plugins-musepack SUBDIR += gstreamer-plugins-nas SUBDIR += gstreamer-plugins-ogg SUBDIR += gstreamer-plugins-opus SUBDIR += gstreamer-plugins-pulse SUBDIR += gstreamer-plugins-shout2 SUBDIR += gstreamer-plugins-sidplay SUBDIR += gstreamer-plugins-sndfile SUBDIR += gstreamer-plugins-sndio SUBDIR += gstreamer-plugins-soundtouch SUBDIR += gstreamer-plugins-spc SUBDIR += gstreamer-plugins-speex SUBDIR += gstreamer-plugins-taglib SUBDIR += gstreamer-plugins-twolame SUBDIR += gstreamer-plugins-vorbis SUBDIR += gstreamer-plugins-wavpack SUBDIR += gstreamer1-plugins-a52dec SUBDIR += gstreamer1-plugins-amrnb SUBDIR += gstreamer1-plugins-amrwbdec SUBDIR += gstreamer1-plugins-bs2b SUBDIR += gstreamer1-plugins-cdparanoia SUBDIR += gstreamer1-plugins-chromaprint SUBDIR += gstreamer1-plugins-faac SUBDIR += gstreamer1-plugins-faad SUBDIR += gstreamer1-plugins-flac SUBDIR += gstreamer1-plugins-flite SUBDIR += gstreamer1-plugins-gme SUBDIR += gstreamer1-plugins-gsm SUBDIR += gstreamer1-plugins-jack SUBDIR += gstreamer1-plugins-ladspa SUBDIR += gstreamer1-plugins-lame SUBDIR += gstreamer1-plugins-modplug SUBDIR += gstreamer1-plugins-mpg123 SUBDIR += gstreamer1-plugins-musepack SUBDIR += gstreamer1-plugins-ogg SUBDIR += gstreamer1-plugins-opus SUBDIR += gstreamer1-plugins-pulse SUBDIR += gstreamer1-plugins-shout2 SUBDIR += gstreamer1-plugins-sidplay SUBDIR += gstreamer1-plugins-sndfile SUBDIR += gstreamer1-plugins-sndio SUBDIR += gstreamer1-plugins-soundtouch SUBDIR += gstreamer1-plugins-spc SUBDIR += gstreamer1-plugins-speex SUBDIR += gstreamer1-plugins-taglib SUBDIR += gstreamer1-plugins-twolame SUBDIR += gstreamer1-plugins-vorbis SUBDIR += gstreamer1-plugins-wavpack SUBDIR += gtick SUBDIR += gtkguitune SUBDIR += gtkpod SUBDIR += gtmixer SUBDIR += guidolib SUBDIR += guspat SUBDIR += gvolwheel SUBDIR += gxmms2 SUBDIR += gxplugins-lv2 SUBDIR += harp SUBDIR += herrie SUBDIR += hexter SUBDIR += hs-ALUT SUBDIR += hs-OpenAL SUBDIR += hs-libmpd SUBDIR += hts_engine-API SUBDIR += hydrogen SUBDIR += icecast-kh SUBDIR += icecast2 SUBDIR += icegenerator SUBDIR += ices SUBDIR += id3ed SUBDIR += id3el SUBDIR += id3lib SUBDIR += id3mtag SUBDIR += id3ren SUBDIR += id3tool SUBDIR += id3v2 SUBDIR += idjc SUBDIR += ifp-line SUBDIR += infamous-plugins-lv2 SUBDIR += invada-studio-plugins-lv2 SUBDIR += ir-lv2 SUBDIR += jack SUBDIR += jack-keyboard SUBDIR += jack-rack SUBDIR += jack-smf-utils SUBDIR += jack_ghero SUBDIR += jack_mixer SUBDIR += jack_umidi SUBDIR += jalv SUBDIR += jalv-select SUBDIR += jamin SUBDIR += jid3lib SUBDIR += jmusic SUBDIR += jokosher SUBDIR += juk SUBDIR += juk-kde4 SUBDIR += juke SUBDIR += julius SUBDIR += jxm SUBDIR += kaudiocreator SUBDIR += kexis SUBDIR += kid3-kde4 SUBDIR += kid3-qt4 SUBDIR += kid3-qt5 SUBDIR += kio-audiocd-kde4 SUBDIR += kmix SUBDIR += kmix-kde4 SUBDIR += kscd-kde4 SUBDIR += ksmp3play SUBDIR += kstreamripper SUBDIR += kwave SUBDIR += ladspa SUBDIR += lame SUBDIR += lash SUBDIR += lastfm-desktop SUBDIR += liba52 SUBDIR += libaacplus SUBDIR += libadplug SUBDIR += libaiff SUBDIR += libamrnb SUBDIR += libamrwb SUBDIR += libao SUBDIR += libaudiofile SUBDIR += libbpm SUBDIR += libbs2b SUBDIR += libcanberra SUBDIR += libcanberra-gtk3 SUBDIR += libcdaudio SUBDIR += libcddb SUBDIR += libcddb-doc SUBDIR += libconvolve SUBDIR += libcoverart SUBDIR += libdiscid SUBDIR += libdssialsacompat SUBDIR += libebur128 SUBDIR += libechonest SUBDIR += libfilteraudio SUBDIR += libfishsound SUBDIR += libg722 SUBDIR += libgig SUBDIR += libgme SUBDIR += libgpod SUBDIR += libgpod-sharp SUBDIR += libgroove SUBDIR += libid3tag SUBDIR += libkcddb SUBDIR += libkcddb-kde4 SUBDIR += libkcompactdisc SUBDIR += libkcompactdisc-kde4 SUBDIR += liblastfm SUBDIR += liblastfm-qt5 SUBDIR += liblo SUBDIR += liblscp SUBDIR += libltc SUBDIR += libmad SUBDIR += libmatemixer SUBDIR += libmikmod SUBDIR += libmodplug SUBDIR += libmp3-archive-perl SUBDIR += libmp3splt SUBDIR += libmpd SUBDIR += libmpdclient SUBDIR += libmusicbrainz3 SUBDIR += libmusicbrainz5 SUBDIR += libmusicxml SUBDIR += libmysofa SUBDIR += libnjb SUBDIR += libnoise SUBDIR += libogg SUBDIR += liboggz SUBDIR += libopenspc SUBDIR += libsamplerate SUBDIR += libshairport SUBDIR += libshout SUBDIR += libsidplay SUBDIR += libsidplay2 SUBDIR += libsidplayfp SUBDIR += libsmf SUBDIR += libsndfile SUBDIR += libsoxr SUBDIR += libtremor SUBDIR += libumidi SUBDIR += libvorbis SUBDIR += libworkman SUBDIR += libxmp SUBDIR += lilv SUBDIR += lingot SUBDIR += linux-c6-alsa-lib SUBDIR += linux-c6-alsa-plugins-oss SUBDIR += linux-c6-alsa-plugins-pulseaudio SUBDIR += linux-c6-alsa-utils SUBDIR += linux-c6-flac SUBDIR += linux-c6-libaudiofile SUBDIR += linux-c6-libogg SUBDIR += linux-c6-libsndfile SUBDIR += linux-c6-libvorbis SUBDIR += linux-c6-mikmod SUBDIR += linux-c6-nas-libs SUBDIR += linux-c6-openal-soft SUBDIR += linux-c6-pulseaudio-libs SUBDIR += linux-c6-pulseaudio-utils SUBDIR += linux-c6-sdl_mixer SUBDIR += linux-c7-alsa-lib SUBDIR += linux-c7-alsa-plugins-oss SUBDIR += linux-c7-alsa-plugins-pulseaudio SUBDIR += linux-c7-alsa-utils SUBDIR += linux-c7-audiofile SUBDIR += linux-c7-flac SUBDIR += linux-c7-libogg SUBDIR += linux-c7-libsndfile SUBDIR += linux-c7-libvorbis SUBDIR += linux-c7-openal-soft SUBDIR += linux-c7-pulseaudio-libs SUBDIR += linux-c7-pulseaudio-utils SUBDIR += linux-c7-sdl_mixer SUBDIR += linux-genpuid SUBDIR += linux-laudio SUBDIR += linux-skype_oss_wrapper SUBDIR += linuxsampler SUBDIR += listener SUBDIR += lmms SUBDIR += logitechmediaserver SUBDIR += logitechmediaserver-dynamicplaylist SUBDIR += logitechmediaserver-lazysearch SUBDIR += logitechmediaserver-sqlplaylist SUBDIR += logitechmediaserver-trackstat SUBDIR += lollypop SUBDIR += lpac SUBDIR += lua51-mpd SUBDIR += luppp SUBDIR += lv2 SUBDIR += lv2file SUBDIR += lvtk SUBDIR += lxmusic SUBDIR += mac SUBDIR += madfufw SUBDIR += madplay SUBDIR += malint SUBDIR += maplay SUBDIR += mate-media SUBDIR += mbox SUBDIR += mcplay SUBDIR += mctoolame-decoder SUBDIR += mctoolame-encoder SUBDIR += mda-lv2 SUBDIR += mhwaveedit SUBDIR += midi-matrix-lv2 SUBDIR += midipp SUBDIR += mikmod SUBDIR += milkytracker SUBDIR += minitunes SUBDIR += mixer.app SUBDIR += mixmos SUBDIR += mixxx20 SUBDIR += mixxx SUBDIR += mma SUBDIR += moc SUBDIR += modplugplay SUBDIR += moodbar SUBDIR += moony-lv2 SUBDIR += mous SUBDIR += mp-player SUBDIR += mp3-archive-tools SUBDIR += mp32ogg SUBDIR += mp3_check SUBDIR += mp3asm SUBDIR += mp3blaster SUBDIR += mp3burn SUBDIR += mp3c SUBDIR += mp3check SUBDIR += mp3ck SUBDIR += mp3gain SUBDIR += mp3guessenc SUBDIR += mp3info SUBDIR += mp3lint SUBDIR += mp3mover SUBDIR += mp3plot SUBDIR += mp3rename SUBDIR += mp3riot SUBDIR += mp3splt SUBDIR += mp3splt-gtk SUBDIR += mp3stat SUBDIR += mp3unicode SUBDIR += mp3val SUBDIR += mp3wrap SUBDIR += mpdas SUBDIR += mpdbrowser SUBDIR += mpdcon SUBDIR += mpdscribble SUBDIR += mpg123 SUBDIR += mpg123.el SUBDIR += mpg321 SUBDIR += mpiosh SUBDIR += mps SUBDIR += msbcg729 SUBDIR += msilbc SUBDIR += mumble SUBDIR += murmur SUBDIR += musepack SUBDIR += musescore SUBDIR += musicbox-tag-editor SUBDIR += musiccontrol SUBDIR += musicpc SUBDIR += musicpd SUBDIR += mythplugin-mythmusic SUBDIR += napster SUBDIR += nas SUBDIR += ncmpc SUBDIR += ncmpcpp SUBDIR += nekobee SUBDIR += noise-repellent-lv2 SUBDIR += normalize SUBDIR += nosefart SUBDIR += nspmod SUBDIR += nuvolaplayer SUBDIR += ocp SUBDIR += ogg2mp3 SUBDIR += openal SUBDIR += openal-soft SUBDIR += opencore-amr SUBDIR += openspc SUBDIR += optimfrog SUBDIR += optimfrog-sse2 SUBDIR += opus SUBDIR += opus-tools SUBDIR += opusfile SUBDIR += orbit-lv2 SUBDIR += osalp SUBDIR += osd-lyrics SUBDIR += osdmixer SUBDIR += oss SUBDIR += p5-Audio SUBDIR += p5-Audio-CD SUBDIR += p5-Audio-Ecasound SUBDIR += p5-Audio-FLAC-Header SUBDIR += p5-Audio-MPD SUBDIR += p5-Audio-MPD-Common SUBDIR += p5-Audio-Mixer SUBDIR += p5-Audio-Musepack SUBDIR += p5-Audio-Scan SUBDIR += p5-Audio-Scrobbler SUBDIR += p5-Audio-WMA SUBDIR += p5-Audio-Wav SUBDIR += p5-CDDB SUBDIR += p5-CDDB-File SUBDIR += p5-CDDB_get SUBDIR += p5-Filesys-Virtual-DAAP SUBDIR += p5-MIDI SUBDIR += p5-MP3-Find SUBDIR += p5-MP3-ID3v1Tag SUBDIR += p5-MP3-Info SUBDIR += p5-MP3-Tag SUBDIR += p5-MP3-Tag-Utils SUBDIR += p5-MPEG-ID3v2Tag SUBDIR += p5-Music-Audioscrobbler-MPD SUBDIR += p5-Music-Audioscrobbler-Submit SUBDIR += p5-MusicBrainz-DiscID SUBDIR += p5-Net-DAAP-Client SUBDIR += p5-Net-DAAP-DMAP SUBDIR += p5-Net-FreeDB SUBDIR += p5-Net-LibLO SUBDIR += p5-Ogg-Vorbis-Header SUBDIR += p5-Ogg-Vorbis-Header-PurePerl SUBDIR += p5-Shout SUBDIR += p5-Test-Corpus-Audio-MPD SUBDIR += p5-libvorbis SUBDIR += p5-tagged SUBDIR += p5-xmms2 SUBDIR += pacpl SUBDIR += padthv1-lv2 SUBDIR += paman SUBDIR += paprefs SUBDIR += patchage SUBDIR += pavucontrol SUBDIR += pavumeter SUBDIR += pc-mixer SUBDIR += pd SUBDIR += pd-cyclone SUBDIR += pear-Text_Spell_Audio SUBDIR += penguinsap SUBDIR += pianobar SUBDIR += picard SUBDIR += picard-plugins SUBDIR += pithos + SUBDIR += plasma5-plasma-pa SUBDIR += play SUBDIR += playgsf SUBDIR += playmidi SUBDIR += pm3umpdl SUBDIR += pms SUBDIR += pms-devel SUBDIR += pocketsphinx SUBDIR += polyphone SUBDIR += portaudio SUBDIR += praat SUBDIR += pragha SUBDIR += protracker SUBDIR += puddletag SUBDIR += pulseaudio SUBDIR += pulseaudio-module-sndio SUBDIR += py-SoundFile SUBDIR += py-al SUBDIR += py-ao SUBDIR += py-apetag SUBDIR += py-aubio SUBDIR += py-cddb SUBDIR += py-discid SUBDIR += py-discogs-client SUBDIR += py-eyed3 SUBDIR += py-fmoo-audiotools SUBDIR += py-gmusicapi SUBDIR += py-gmusicproxy SUBDIR += py-hsaudiotag SUBDIR += py-id3 SUBDIR += py-karaoke SUBDIR += py-mpd SUBDIR += py-mpd2 SUBDIR += py-musicbrainz2 SUBDIR += py-musicbrainzngs SUBDIR += py-mutagen SUBDIR += py-ogg SUBDIR += py-openal SUBDIR += py-opuslib SUBDIR += py-py-jack SUBDIR += py-pyacoustid SUBDIR += py-pyaudio SUBDIR += py-pylast SUBDIR += py-pyliblo SUBDIR += py-pymad SUBDIR += py-pysndfile SUBDIR += py-shout SUBDIR += py-soundcloud SUBDIR += py-sounddevice SUBDIR += py-soundscrape SUBDIR += py-speechrecognition SUBDIR += py-speex SUBDIR += py-tagpy SUBDIR += py-vorbis SUBDIR += py-wavio SUBDIR += py-xmms2 SUBDIR += pytone SUBDIR += qjackctl SUBDIR += qmidiarp SUBDIR += qmpdclient SUBDIR += qsampler SUBDIR += qsynth SUBDIR += quimup SUBDIR += raop_play SUBDIR += raul SUBDIR += rawrec SUBDIR += re SUBDIR += rebot3 SUBDIR += rem SUBDIR += resid SUBDIR += rexima SUBDIR += rezound SUBDIR += rhythmbox SUBDIR += rio500 SUBDIR += rioutil SUBDIR += ripit SUBDIR += ripperx SUBDIR += rosegarden SUBDIR += rplay SUBDIR += rsynth SUBDIR += rtaudio SUBDIR += rtmidi SUBDIR += rubberband SUBDIR += ruby-smf SUBDIR += ruby-taglib SUBDIR += rubygem-librmpd SUBDIR += rubygem-ruby-mp3info SUBDIR += rubygem-ruby-ogginfo SUBDIR += rubygem-ruby-shout SUBDIR += s3mod SUBDIR += sayonara SUBDIR += sbagen SUBDIR += sc3-plugins SUBDIR += schismtracker SUBDIR += screcord-lv2 SUBDIR += scrobbler SUBDIR += sdl2_mixer SUBDIR += sdl_mixer SUBDIR += sdl_sound SUBDIR += sfront SUBDIR += shairplay SUBDIR += shairport-sync SUBDIR += sherlock-lv2 SUBDIR += shntool SUBDIR += shorten SUBDIR += shout SUBDIR += shout-idjc SUBDIR += shoutcast SUBDIR += sidplay SUBDIR += sidplay2 SUBDIR += sidplayer SUBDIR += simon SUBDIR += simplemod SUBDIR += siren SUBDIR += skype-call-recorder SUBDIR += slv2 SUBDIR += snack SUBDIR += snd SUBDIR += sndio SUBDIR += solfege SUBDIR += sonata SUBDIR += sonic-visualiser SUBDIR += sorcer-lv2 SUBDIR += sound-juicer SUBDIR += soundconverter SUBDIR += soundgrab SUBDIR += soundkonverter SUBDIR += soundtouch SUBDIR += soundtracker SUBDIR += sox SUBDIR += specimen SUBDIR += spectrogram SUBDIR += speex SUBDIR += speexdsp SUBDIR += spek SUBDIR += sphinx SUBDIR += sphinx3 SUBDIR += sphinxbase SUBDIR += spiralloops SUBDIR += spiralsynth SUBDIR += spiralsynthmodular SUBDIR += splay SUBDIR += splaytk SUBDIR += squash SUBDIR += sratom SUBDIR += stk SUBDIR += streamripper SUBDIR += streamtranscoder SUBDIR += stymulator SUBDIR += suil SUBDIR += supercollider SUBDIR += sweep SUBDIR += swh-lv2 SUBDIR += swhplugins SUBDIR += synthpod-lv2 SUBDIR += taglib SUBDIR += taglib-extras SUBDIR += taglib-sharp SUBDIR += taglookup SUBDIR += tagtool SUBDIR += tagutil SUBDIR += tap-plugins SUBDIR += tap-plugins-lv2 SUBDIR += tcd SUBDIR += teamspeak3-server SUBDIR += tempest_for_eliza SUBDIR += terminatorx SUBDIR += thunar-media-tags-plugin SUBDIR += timemachine SUBDIR += timidity SUBDIR += timidity++ SUBDIR += timidity++-emacs SUBDIR += timidity++-gtk SUBDIR += timidity++-motif SUBDIR += timidity++-slang SUBDIR += timidity++-tcltk SUBDIR += timidity++-xaw SUBDIR += timidity++-xskin SUBDIR += tkeca SUBDIR += toolame SUBDIR += tosha SUBDIR += triceratops-lv2 SUBDIR += trommler SUBDIR += tse3 SUBDIR += tta SUBDIR += tuneradio SUBDIR += tuxguitar SUBDIR += twolame SUBDIR += uade SUBDIR += umix SUBDIR += umodplayer SUBDIR += umurmur SUBDIR += vagalume SUBDIR += vamp-plugin-sdk SUBDIR += virtual_oss SUBDIR += virtual_oss_ctl SUBDIR += vitunes SUBDIR += vm-lv2 SUBDIR += vmpk SUBDIR += vo-aacenc SUBDIR += vo-amrwbenc SUBDIR += voipong SUBDIR += volumeicon SUBDIR += vorbis-tools SUBDIR += vorbisgain SUBDIR += vsound SUBDIR += waon SUBDIR += wav2cdr SUBDIR += wavbreaker SUBDIR += wavegain SUBDIR += waveplay SUBDIR += wavpack SUBDIR += wavplay SUBDIR += whysynth SUBDIR += wildmidi SUBDIR += wmalbum SUBDIR += wmix SUBDIR += wmmp SUBDIR += wmrecord SUBDIR += wmsmixer SUBDIR += workman SUBDIR += wxguitar SUBDIR += x42-plugins-lv2 SUBDIR += xanalyser SUBDIR += xcd SUBDIR += xcdplayer SUBDIR += xfce4-mixer SUBDIR += xfce4-mpc-plugin SUBDIR += xfce4-pulseaudio-plugin SUBDIR += xfmpc SUBDIR += xhippo SUBDIR += ximp3 SUBDIR += xmcd SUBDIR += xmix SUBDIR += xmixer SUBDIR += xmmix SUBDIR += xmms-ahx SUBDIR += xmms-curses SUBDIR += xmms-faad SUBDIR += xmms-festalon SUBDIR += xmms-flac SUBDIR += xmms-gbsplay SUBDIR += xmms-ladspa SUBDIR += xmms-mailnotify SUBDIR += xmms-nas SUBDIR += xmms-nsf SUBDIR += xmms-sapplug SUBDIR += xmms-scrobbler SUBDIR += xmms-sexypsf SUBDIR += xmms-shn SUBDIR += xmms-timidity SUBDIR += xmms-volnorm SUBDIR += xmms-wavpack SUBDIR += xmms-xf86audio SUBDIR += xmms-xymms SUBDIR += xmms2 SUBDIR += xmms2-scrobbler SUBDIR += xmmsctrl SUBDIR += xmp SUBDIR += xmradio SUBDIR += xoscope SUBDIR += xsynth-dssi SUBDIR += xvmixer SUBDIR += xwave SUBDIR += yell SUBDIR += yoshimi SUBDIR += zinf SUBDIR += zita-convolver SUBDIR += zita-resampler SUBDIR += zynaddsubfx .include Index: head/audio/plasma5-plasma-pa/Makefile =================================================================== --- head/audio/plasma5-plasma-pa/Makefile (nonexistent) +++ head/audio/plasma5-plasma-pa/Makefile (revision 468495) @@ -0,0 +1,23 @@ +# $FreeBSD$ + +PORTNAME= plasma-pa +DISTVERSION= ${KDE_PLASMA_VERSION} +CATEGORIES= audio kde kde-plasma + +MAINTAINER= kde@FreeBSD.org +COMMENT= Plasma5 Plasma pulse audio mixer + +LIB_DEPENDS= libcanberra.so:audio/libcanberra \ + libpulse.so:audio/pulseaudio + +USES= cmake:outsource compiler:c++11-lib cpe gettext kde:5 \ + pkgconfig shebangfix tar:xz +USE_GNOME= gconf2 +USE_KDE= config configwidgets coreaddons ecm globalaccel i18n \ + kdeclarative package plasma-framework +USE_QT5= core dbus gui network qml quick widgets \ + buildtools_build qmake_build + +SHEBANG_FILES= data/plasmaVolumeDisableKMixAutostart.pl + +.include Property changes on: head/audio/plasma5-plasma-pa/Makefile ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/audio/plasma5-plasma-pa/distinfo =================================================================== --- head/audio/plasma5-plasma-pa/distinfo (nonexistent) +++ head/audio/plasma5-plasma-pa/distinfo (revision 468495) @@ -0,0 +1,3 @@ +TIMESTAMP = 1523811756 +SHA256 (KDE/plasma/5.12.4/plasma-pa-5.12.4.tar.xz) = a6f09665a90f08c86b1a2f020213e6bcc214eea7e3f671642ca49e9292c2cfd6 +SIZE (KDE/plasma/5.12.4/plasma-pa-5.12.4.tar.xz) = 85968 Property changes on: head/audio/plasma5-plasma-pa/distinfo ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/audio/plasma5-plasma-pa/pkg-descr =================================================================== --- head/audio/plasma5-plasma-pa/pkg-descr (nonexistent) +++ head/audio/plasma5-plasma-pa/pkg-descr (revision 468495) @@ -0,0 +1,5 @@ +Plasma applet for audio volume management using PulseAudio + +For users of pulseaudio, this provides extended mixer applet. + +WWW: https://www.kde.org/plasma-desktop Property changes on: head/audio/plasma5-plasma-pa/pkg-descr ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/audio/plasma5-plasma-pa/pkg-plist =================================================================== --- head/audio/plasma5-plasma-pa/pkg-plist (nonexistent) +++ head/audio/plasma5-plasma-pa/pkg-plist (revision 468495) @@ -0,0 +1,134 @@ +%%QT_PLUGINDIR%%/kcms/kcm_pulseaudio.so +%%QT_QMLDIR%%/org/kde/plasma/private/volume/PulseObjectFilterModel.qml +%%QT_QMLDIR%%/org/kde/plasma/private/volume/libplasma-volume-declarative.so +%%QT_QMLDIR%%/org/kde/plasma/private/volume/qmldir +share/doc/HTML/ca/kcontrol/plasma-pa/index.cache.bz2 +share/doc/HTML/ca/kcontrol/plasma-pa/index.docbook +share/doc/HTML/de/kcontrol/plasma-pa/index.cache.bz2 +share/doc/HTML/de/kcontrol/plasma-pa/index.docbook +share/doc/HTML/en/kcontrol/plasma-pa/index.cache.bz2 +share/doc/HTML/en/kcontrol/plasma-pa/index.docbook +share/doc/HTML/it/kcontrol/plasma-pa/index.cache.bz2 +share/doc/HTML/it/kcontrol/plasma-pa/index.docbook +share/doc/HTML/nl/kcontrol/plasma-pa/index.cache.bz2 +share/doc/HTML/nl/kcontrol/plasma-pa/index.docbook +share/doc/HTML/pt/kcontrol/plasma-pa/index.cache.bz2 +share/doc/HTML/pt/kcontrol/plasma-pa/index.docbook +share/doc/HTML/pt_BR/kcontrol/plasma-pa/index.cache.bz2 +share/doc/HTML/pt_BR/kcontrol/plasma-pa/index.docbook +share/doc/HTML/uk/kcontrol/plasma-pa/index.cache.bz2 +share/doc/HTML/uk/kcontrol/plasma-pa/index.docbook +share/kconf_update/disable_kmix.upd +share/kconf_update/plasmaVolumeDisableKMixAutostart.pl +share/kde4/apps/kconf_update/disable_kmix.upd +share/kde4/apps/kconf_update/plasmaVolumeDisableKMixAutostart.pl +share/kpackage/kcms/kcm_pulseaudio/contents/ui/Advanced.qml +share/kpackage/kcms/kcm_pulseaudio/contents/ui/Applications.qml +share/kpackage/kcms/kcm_pulseaudio/contents/ui/CardListItem.qml +share/kpackage/kcms/kcm_pulseaudio/contents/ui/DefaultDeviceButton.qml +share/kpackage/kcms/kcm_pulseaudio/contents/ui/DeviceComboBox.qml +share/kpackage/kcms/kcm_pulseaudio/contents/ui/DeviceListItem.qml +share/kpackage/kcms/kcm_pulseaudio/contents/ui/Devices.qml +share/kpackage/kcms/kcm_pulseaudio/contents/ui/Header.qml +share/kpackage/kcms/kcm_pulseaudio/contents/ui/ListItemSeperator.qml +share/kpackage/kcms/kcm_pulseaudio/contents/ui/MuteButton.qml +share/kpackage/kcms/kcm_pulseaudio/contents/ui/StreamListItem.qml +share/kpackage/kcms/kcm_pulseaudio/contents/ui/VolumeSlider.qml +share/kpackage/kcms/kcm_pulseaudio/contents/ui/main.qml +share/kpackage/kcms/kcm_pulseaudio/metadata.desktop +share/kpackage/kcms/kcm_pulseaudio/metadata.json +share/kservices5/kcm_pulseaudio.desktop +share/kservices5/plasma-applet-org.kde.plasma.volume.desktop +share/locale/ar/LC_MESSAGES/kcm_pulseaudio.mo +share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.volume.mo +share/locale/ast/LC_MESSAGES/kcm_pulseaudio.mo +share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.volume.mo +share/locale/ca/LC_MESSAGES/kcm_pulseaudio.mo +share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.volume.mo +share/locale/ca@valencia/LC_MESSAGES/kcm_pulseaudio.mo +share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.volume.mo +share/locale/cs/LC_MESSAGES/kcm_pulseaudio.mo +share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.volume.mo +share/locale/da/LC_MESSAGES/kcm_pulseaudio.mo +share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.volume.mo +share/locale/de/LC_MESSAGES/kcm_pulseaudio.mo +share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.volume.mo +share/locale/el/LC_MESSAGES/kcm_pulseaudio.mo +share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.volume.mo +share/locale/en_GB/LC_MESSAGES/kcm_pulseaudio.mo +share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.volume.mo +share/locale/es/LC_MESSAGES/kcm_pulseaudio.mo +share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.volume.mo +share/locale/et/LC_MESSAGES/kcm_pulseaudio.mo +share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.volume.mo +share/locale/eu/LC_MESSAGES/kcm_pulseaudio.mo +share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.volume.mo +share/locale/fi/LC_MESSAGES/kcm_pulseaudio.mo +share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.volume.mo +share/locale/fr/LC_MESSAGES/kcm_pulseaudio.mo +share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.volume.mo +share/locale/gl/LC_MESSAGES/kcm_pulseaudio.mo +share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.volume.mo +share/locale/he/LC_MESSAGES/kcm_pulseaudio.mo +share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.volume.mo +share/locale/hu/LC_MESSAGES/kcm_pulseaudio.mo +share/locale/ia/LC_MESSAGES/kcm_pulseaudio.mo +share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.volume.mo +share/locale/it/LC_MESSAGES/kcm_pulseaudio.mo +share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.volume.mo +share/locale/ja/LC_MESSAGES/kcm_pulseaudio.mo +share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.volume.mo +share/locale/ko/LC_MESSAGES/kcm_pulseaudio.mo +share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.volume.mo +share/locale/lt/LC_MESSAGES/kcm_pulseaudio.mo +share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.volume.mo +share/locale/nb/LC_MESSAGES/kcm_pulseaudio.mo +share/locale/nl/LC_MESSAGES/kcm_pulseaudio.mo +share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.volume.mo +share/locale/nn/LC_MESSAGES/kcm_pulseaudio.mo +share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.volume.mo +share/locale/pa/LC_MESSAGES/kcm_pulseaudio.mo +share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.volume.mo +share/locale/pl/LC_MESSAGES/kcm_pulseaudio.mo +share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.volume.mo +share/locale/pt/LC_MESSAGES/kcm_pulseaudio.mo +share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.volume.mo +share/locale/pt_BR/LC_MESSAGES/kcm_pulseaudio.mo +share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.volume.mo +share/locale/ru/LC_MESSAGES/kcm_pulseaudio.mo +share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.volume.mo +share/locale/sk/LC_MESSAGES/kcm_pulseaudio.mo +share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.volume.mo +share/locale/sl/LC_MESSAGES/kcm_pulseaudio.mo +share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.volume.mo +share/locale/sr/LC_MESSAGES/kcm_pulseaudio.mo +share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.volume.mo +share/locale/sr@ijekavian/LC_MESSAGES/kcm_pulseaudio.mo +share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.volume.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_pulseaudio.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.volume.mo +share/locale/sr@latin/LC_MESSAGES/kcm_pulseaudio.mo +share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.volume.mo +share/locale/sv/LC_MESSAGES/kcm_pulseaudio.mo +share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.volume.mo +share/locale/tr/LC_MESSAGES/kcm_pulseaudio.mo +share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.volume.mo +share/locale/uk/LC_MESSAGES/kcm_pulseaudio.mo +share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.volume.mo +share/locale/zh_CN/LC_MESSAGES/kcm_pulseaudio.mo +share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.volume.mo +share/locale/zh_TW/LC_MESSAGES/kcm_pulseaudio.mo +share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.volume.mo +share/metainfo/org.kde.plasma.volume.appdata.xml +share/plasma/plasmoids/org.kde.plasma.volume/contents/code/icon.js +share/plasma/plasmoids/org.kde.plasma.volume/contents/config/config.qml +share/plasma/plasmoids/org.kde.plasma.volume/contents/config/main.xml +share/plasma/plasmoids/org.kde.plasma.volume/contents/ui/ConfigGeneral.qml +share/plasma/plasmoids/org.kde.plasma.volume/contents/ui/DeviceListItem.qml +share/plasma/plasmoids/org.kde.plasma.volume/contents/ui/Header.qml +share/plasma/plasmoids/org.kde.plasma.volume/contents/ui/ListItemBase.qml +share/plasma/plasmoids/org.kde.plasma.volume/contents/ui/SmallToolButton.qml +share/plasma/plasmoids/org.kde.plasma.volume/contents/ui/StreamListItem.qml +share/plasma/plasmoids/org.kde.plasma.volume/contents/ui/main.qml +share/plasma/plasmoids/org.kde.plasma.volume/metadata.desktop +share/plasma/plasmoids/org.kde.plasma.volume/metadata.json Property changes on: head/audio/plasma5-plasma-pa/pkg-plist ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/deskutils/Makefile =================================================================== --- head/deskutils/Makefile (revision 468494) +++ head/deskutils/Makefile (revision 468495) @@ -1,317 +1,318 @@ # $FreeBSD$ # COMMENT = Things that used to be on the desktop before computers were invented SUBDIR += affiche SUBDIR += akonadi-calendar-tools SUBDIR += akonadi-import-wizard SUBDIR += akonadiconsole SUBDIR += akregator SUBDIR += alarm-clock-applet SUBDIR += anamnesis SUBDIR += anydesk SUBDIR += appwrapper SUBDIR += aspostit SUBDIR += autocutsel SUBDIR += baobab SUBDIR += basket SUBDIR += bigyear SUBDIR += bijiben SUBDIR += bitcollider SUBDIR += cairo-dock SUBDIR += cairo-dock-plugins SUBDIR += caja-extensions SUBDIR += cal SUBDIR += calcurse SUBDIR += calibre SUBDIR += cartotheque SUBDIR += cdcat SUBDIR += charmtimetracker SUBDIR += clipit SUBDIR += conduit SUBDIR += conkyemail SUBDIR += conkyforecast SUBDIR += copyq SUBDIR += countdown SUBDIR += cycle SUBDIR += dailystrips SUBDIR += deforaos-todo SUBDIR += devd-notifier SUBDIR += dlume SUBDIR += docear SUBDIR += dosage SUBDIR += drivel SUBDIR += easystroke SUBDIR += egroupware SUBDIR += everygui SUBDIR += fbreader SUBDIR += fet SUBDIR += flameshot SUBDIR += freemind SUBDIR += freeplane SUBDIR += fusenshi SUBDIR += gaddr SUBDIR += ganttproject SUBDIR += ganyremote SUBDIR += gbirthday SUBDIR += gcal SUBDIR += gcalcli SUBDIR += genius SUBDIR += gkrellm-reminder2 SUBDIR += glabels SUBDIR += gnome-calendar SUBDIR += gnome-characters SUBDIR += gnome-clocks SUBDIR += gnome-contacts SUBDIR += gnome-dictionary SUBDIR += gnome-documents SUBDIR += gnome-font-viewer SUBDIR += gnome-initial-setup SUBDIR += gnome-maps SUBDIR += gnome-photos SUBDIR += gnome-screenshot SUBDIR += gnome-search-tool SUBDIR += gnome-shell-extension-audio-output-switcher SUBDIR += gnome-shell-extension-coverflow SUBDIR += gnome-shell-extension-dashtodock SUBDIR += gnome-shell-extension-filesmenu SUBDIR += gnome-shell-extension-hidetopbar SUBDIR += gnome-shell-extension-lockkeys SUBDIR += gnome-shell-extension-mediaplayer SUBDIR += gnome-shell-extension-openweather SUBDIR += gnome-shell-extension-overlay-icons SUBDIR += gnome-shell-extension-panel-osd SUBDIR += gnome-shell-extension-recent-items SUBDIR += gnome-shell-extension-trash SUBDIR += gnome-shell-extension-weather SUBDIR += gnome-shell-extra-extensions SUBDIR += gnome-sound-recorder SUBDIR += gnome-system-log SUBDIR += gnome-todo SUBDIR += gnome-tweak-tool SUBDIR += gnome-utils SUBDIR += gnome-weather SUBDIR += gnote SUBDIR += gnotime SUBDIR += gnustep-wrapper SUBDIR += go-for-it SUBDIR += gourmet SUBDIR += gpicker SUBDIR += grantlee-editor SUBDIR += grantleetheme SUBDIR += griffith SUBDIR += growl-for-linux SUBDIR += gruler SUBDIR += gsimplecal SUBDIR += gtg SUBDIR += gtimer SUBDIR += gtodo SUBDIR += gtweakui SUBDIR += gucharmap SUBDIR += gworkspace SUBDIR += gworkspace-gwmetadata SUBDIR += gxmessage SUBDIR += gxneur SUBDIR += hebcal SUBDIR += helpviewer SUBDIR += homerun SUBDIR += horde-groupware SUBDIR += horde-kronolith SUBDIR += horde-mnemo SUBDIR += horde-nag SUBDIR += hot-babe SUBDIR += howm SUBDIR += hs-fdo-notify SUBDIR += ical SUBDIR += ithought SUBDIR += jjclient SUBDIR += jlj SUBDIR += kaddressbook SUBDIR += kalarm SUBDIR += kcharselect SUBDIR += kcharselect-kde4 SUBDIR += kchmviewer SUBDIR += kdeconnect SUBDIR += kdepim SUBDIR += kdepim-addons SUBDIR += kdepim-apps-libs SUBDIR += kdepim-kde4 SUBDIR += kdepim-runtime SUBDIR += kdepim-runtime-kde4 SUBDIR += kdepimlibs-kde4 SUBDIR += kdeplasma-addons-kde4 SUBDIR += keditbookmarks SUBDIR += kfind SUBDIR += kmail SUBDIR += kmail-account-wizard SUBDIR += knotes SUBDIR += kontact SUBDIR += korganizer SUBDIR += kruler SUBDIR += kruler-kde4 SUBDIR += ksshaskpass SUBDIR += latte-dock SUBDIR += launchy SUBDIR += libkdepim SUBDIR += libopensync-plugin-vformat-devel SUBDIR += libstreamanalyzer SUBDIR += libstreams SUBDIR += ljcharm SUBDIR += ljclive SUBDIR += ljit SUBDIR += logjam SUBDIR += lumina-archiver SUBDIR += lumina-calculator SUBDIR += lumina-fileinfo SUBDIR += lumina-fm SUBDIR += lumina-mediaplayer SUBDIR += lumina-notify SUBDIR += lumina-pdf SUBDIR += lumina-screenshot SUBDIR += lumina-textedit SUBDIR += lumina-xdg-entry SUBDIR += mate-notification-daemon SUBDIR += mate-utils SUBDIR += mbox-importer SUBDIR += mdh SUBDIR += mencal SUBDIR += menumaker SUBDIR += moregroupware SUBDIR += mozo SUBDIR += multisync SUBDIR += multisync-backup SUBDIR += multisync-syncml SUBDIR += myitcrm SUBDIR += nautilus-actions SUBDIR += nautilus-sendto SUBDIR += nemo-extensions SUBDIR += nextcloudclient SUBDIR += note SUBDIR += notecase SUBDIR += noti SUBDIR += notification-daemon SUBDIR += notify-osd SUBDIR += orage SUBDIR += osmo SUBDIR += osynctool SUBDIR += owncloudclient SUBDIR += p5-Data-ICal SUBDIR += p5-Data-ICal-DateTime SUBDIR += p5-Goo SUBDIR += p5-ZConf-BGSet SUBDIR += p5-ZConf-Runner SUBDIR += p5-ZConf-Runner-GUI-GTK SUBDIR += pal SUBDIR += parcellite SUBDIR += phpcollab SUBDIR += phpicalendar SUBDIR += pim-data-exporter SUBDIR += pim-sieve-editor SUBDIR += pinot SUBDIR += plan SUBDIR += planner SUBDIR += plans SUBDIR += plasma-applet-cwp SUBDIR += plasma-applet-daisy SUBDIR += plasma-applet-fancytasks SUBDIR += plasma-applet-panelspacer SUBDIR += plasma-applet-qstardict SUBDIR += plasma-applet-serverstatuswidget SUBDIR += plasma-applet-simpleweatherforecast SUBDIR += plasma-applet-teacooker SUBDIR += plasma-applet-yawp + SUBDIR += plasma5-milou SUBDIR += plopfolio SUBDIR += preferences SUBDIR += projectlibre SUBDIR += puush SUBDIR += py-bugwarrior SUBDIR += py-khal SUBDIR += py-pystash SUBDIR += py-send2trash SUBDIR += py-taskw SUBDIR += py-vdirsyncer SUBDIR += py-vobject SUBDIR += pybookreader SUBDIR += pypanel SUBDIR += qorganizer SUBDIR += qrfcview SUBDIR += qtm SUBDIR += recoll SUBDIR += rednotebook SUBDIR += remind SUBDIR += rolo SUBDIR += rox-memo SUBDIR += rubrica SUBDIR += rubygem-shellplay SUBDIR += rubygem-taskjuggler SUBDIR += semantik SUBDIR += showdown SUBDIR += shutter SUBDIR += silence SUBDIR += simpleagenda SUBDIR += simplegroupware SUBDIR += sliderule SUBDIR += spice-gtk SUBDIR += strigi SUBDIR += strigiclient SUBDIR += strigidaemon SUBDIR += strigiutils SUBDIR += sugarcrm SUBDIR += superkaramba-kde4 SUBDIR += surrealtodo SUBDIR += syncthing-gtk SUBDIR += systempreferences SUBDIR += tagutils SUBDIR += taskcoach SUBDIR += taskd SUBDIR += tasksh SUBDIR += taskwarrior SUBDIR += teapot SUBDIR += tel SUBDIR += thinkingrock SUBDIR += timewarrior SUBDIR += tine20 SUBDIR += tnote SUBDIR += todo SUBDIR += tomboy SUBDIR += tomboy-plugin-latex SUBDIR += tomboy-plugin-reminder SUBDIR += tomboy-plugin-todo SUBDIR += toolboxkit SUBDIR += tpb SUBDIR += treeline SUBDIR += treesheets SUBDIR += tuxcards SUBDIR += virt-manager SUBDIR += vit SUBDIR += vnc2flv SUBDIR += vym SUBDIR += wammu SUBDIR += when SUBDIR += wmpinboard SUBDIR += wyrd SUBDIR += x026 SUBDIR += xcalendar SUBDIR += xchm SUBDIR += xfce4-generic-slider SUBDIR += xfce4-notes-plugin SUBDIR += xfce4-notifyd SUBDIR += xfce4-tumbler SUBDIR += xfce4-volumed SUBDIR += xfce4-volumed-pulse SUBDIR += xfce4-xkb-plugin SUBDIR += xmaddressbook SUBDIR += xmdiary SUBDIR += xneur SUBDIR += xpad SUBDIR += xpad3 SUBDIR += xpostit SUBDIR += xpostitPlus SUBDIR += xrolo SUBDIR += xwrits SUBDIR += zim SUBDIR += znotes SUBDIR += zorro .include Index: head/deskutils/plasma5-milou/Makefile =================================================================== --- head/deskutils/plasma5-milou/Makefile (nonexistent) +++ head/deskutils/plasma5-milou/Makefile (revision 468495) @@ -0,0 +1,16 @@ +# $FreeBSD$ + +PORTNAME= milou +DISTVERSION= ${KDE_PLASMA_VERSION} +CATEGORIES= deskutils kde kde-plasma + +MAINTAINER= kde@FreeBSD.org +COMMENT= Plasma5 Plasmoid for search + +USES= cmake:outsource compiler:c++11-lib cpe gettext kde:5 tar:xz +USE_KDE= auth codecs config coreaddons i18n kdeclarative package \ + plasma-framework runner service +USE_QT5= core gui network qml quick script testlib widgets \ + buildtools_build qmake_build + +.include Property changes on: head/deskutils/plasma5-milou/Makefile ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/deskutils/plasma5-milou/distinfo =================================================================== --- head/deskutils/plasma5-milou/distinfo (nonexistent) +++ head/deskutils/plasma5-milou/distinfo (revision 468495) @@ -0,0 +1,3 @@ +TIMESTAMP = 1523811757 +SHA256 (KDE/plasma/5.12.4/milou-5.12.4.tar.xz) = 87d60635ad3da879604c52b49503e4976346eb34cfbeaa774b09aa168122156c +SIZE (KDE/plasma/5.12.4/milou-5.12.4.tar.xz) = 57408 Property changes on: head/deskutils/plasma5-milou/distinfo ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/deskutils/plasma5-milou/pkg-descr =================================================================== --- head/deskutils/plasma5-milou/pkg-descr (nonexistent) +++ head/deskutils/plasma5-milou/pkg-descr (revision 468495) @@ -0,0 +1,3 @@ +A dedicated search Plasmoid built on top of Baloo. + +WWW: https://www.kde.org/plasma-desktop Property changes on: head/deskutils/plasma5-milou/pkg-descr ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/deskutils/plasma5-milou/pkg-plist =================================================================== --- head/deskutils/plasma5-milou/pkg-plist (nonexistent) +++ head/deskutils/plasma5-milou/pkg-plist (revision 468495) @@ -0,0 +1,109 @@ +lib/libmilou.so.5 +lib/libmilou.so.%%KDE_PLASMA_VERSION%% +%%QT_PLUGINDIR%%/miloutextplugin.so +%%QT_QMLDIR%%/org/kde/milou/ResultDelegate.qml +%%QT_QMLDIR%%/org/kde/milou/ResultsListView.qml +%%QT_QMLDIR%%/org/kde/milou/ResultsListViewDelegate.qml +%%QT_QMLDIR%%/org/kde/milou/ResultsView.qml +%%QT_QMLDIR%%/org/kde/milou/globals.js +%%QT_QMLDIR%%/org/kde/milou/libmilouqmlplugin.so +%%QT_QMLDIR%%/org/kde/milou/qmldir +share/kservices5/miloutextpreview.desktop +share/kservices5/plasma-applet-org.kde.milou.desktop +share/kservicetypes5/miloupreviewplugin.desktop +share/locale/ar/LC_MESSAGES/milou.mo +share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.milou.mo +share/locale/ast/LC_MESSAGES/milou.mo +share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.milou.mo +share/locale/bs/LC_MESSAGES/milou.mo +share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.milou.mo +share/locale/ca/LC_MESSAGES/milou.mo +share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.milou.mo +share/locale/ca@valencia/LC_MESSAGES/milou.mo +share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.milou.mo +share/locale/cs/LC_MESSAGES/milou.mo +share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.milou.mo +share/locale/da/LC_MESSAGES/milou.mo +share/locale/da/LC_MESSAGES/plasma_applet_org.kde.milou.mo +share/locale/de/LC_MESSAGES/milou.mo +share/locale/de/LC_MESSAGES/plasma_applet_org.kde.milou.mo +share/locale/el/LC_MESSAGES/milou.mo +share/locale/el/LC_MESSAGES/plasma_applet_org.kde.milou.mo +share/locale/en_GB/LC_MESSAGES/milou.mo +share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.milou.mo +share/locale/es/LC_MESSAGES/milou.mo +share/locale/es/LC_MESSAGES/plasma_applet_org.kde.milou.mo +share/locale/et/LC_MESSAGES/milou.mo +share/locale/et/LC_MESSAGES/plasma_applet_org.kde.milou.mo +share/locale/eu/LC_MESSAGES/milou.mo +share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.milou.mo +share/locale/fi/LC_MESSAGES/milou.mo +share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.milou.mo +share/locale/fr/LC_MESSAGES/milou.mo +share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.milou.mo +share/locale/gl/LC_MESSAGES/milou.mo +share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.milou.mo +share/locale/he/LC_MESSAGES/milou.mo +share/locale/he/LC_MESSAGES/plasma_applet_org.kde.milou.mo +share/locale/hu/LC_MESSAGES/milou.mo +share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.milou.mo +share/locale/ia/LC_MESSAGES/milou.mo +share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.milou.mo +share/locale/it/LC_MESSAGES/milou.mo +share/locale/it/LC_MESSAGES/plasma_applet_org.kde.milou.mo +share/locale/ja/LC_MESSAGES/milou.mo +share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.milou.mo +share/locale/ko/LC_MESSAGES/milou.mo +share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.milou.mo +share/locale/lt/LC_MESSAGES/milou.mo +share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.milou.mo +share/locale/nb/LC_MESSAGES/milou.mo +share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.milou.mo +share/locale/nds/LC_MESSAGES/milou.mo +share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.milou.mo +share/locale/nl/LC_MESSAGES/milou.mo +share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.milou.mo +share/locale/nn/LC_MESSAGES/milou.mo +share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.milou.mo +share/locale/pa/LC_MESSAGES/milou.mo +share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.milou.mo +share/locale/pl/LC_MESSAGES/milou.mo +share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.milou.mo +share/locale/pt/LC_MESSAGES/milou.mo +share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.milou.mo +share/locale/pt_BR/LC_MESSAGES/milou.mo +share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.milou.mo +share/locale/ro/LC_MESSAGES/milou.mo +share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.milou.mo +share/locale/ru/LC_MESSAGES/milou.mo +share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.milou.mo +share/locale/sk/LC_MESSAGES/milou.mo +share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.milou.mo +share/locale/sl/LC_MESSAGES/milou.mo +share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.milou.mo +share/locale/sr/LC_MESSAGES/milou.mo +share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.milou.mo +share/locale/sr@ijekavian/LC_MESSAGES/milou.mo +share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.milou.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/milou.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.milou.mo +share/locale/sr@latin/LC_MESSAGES/milou.mo +share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.milou.mo +share/locale/sv/LC_MESSAGES/milou.mo +share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.milou.mo +share/locale/tr/LC_MESSAGES/milou.mo +share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.milou.mo +share/locale/uk/LC_MESSAGES/milou.mo +share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.milou.mo +share/locale/zh_CN/LC_MESSAGES/milou.mo +share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.milou.mo +share/locale/zh_TW/LC_MESSAGES/milou.mo +share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.milou.mo +share/metainfo/org.kde.milou.appdata.xml +share/plasma/plasmoids/org.kde.milou/contents/code/globals.js +share/plasma/plasmoids/org.kde.milou/contents/ui/SearchField.qml +share/plasma/plasmoids/org.kde.milou/contents/ui/main.qml +share/plasma/plasmoids/org.kde.milou/contents/ui/previews/Audio.qml +share/plasma/plasmoids/org.kde.milou/contents/ui/previews/TextPreview.qml +share/plasma/plasmoids/org.kde.milou/metadata.desktop +share/plasma/plasmoids/org.kde.milou/metadata.json Property changes on: head/deskutils/plasma5-milou/pkg-plist ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/deskutils/plasma5-sddm-kcm/Makefile =================================================================== --- head/deskutils/plasma5-sddm-kcm/Makefile (nonexistent) +++ head/deskutils/plasma5-sddm-kcm/Makefile (revision 468495) @@ -0,0 +1,20 @@ +# $FreeBSD$ + +PORTNAME= sddm-kcm +DISTVERSION= ${KDE_PLASMA_VERSION} +CATEGORIES= deskutils kde kde-plasma + +MAINTAINER= kde@FreeBSD.org +COMMENT= Plasma5 config module for SDDM + +USES= cmake:outsource compiler:c++11-lib gettext kde:5 cpe pkgconfig \ + tar:xz +USE_KDE= auth archive attica codecs completion config configwidgets \ + coreaddons ecm i18n jobwidgets kio newstuff service \ + widgetsaddons xmlgui +USE_QT5= concurrent core dbus designer gui network qml quick uiplugin widgets \ + x11extras xml \ + buildtools_build qmake_build +USE_XORG= ice sm x11 xcb xcursor xext xfixes + +.include Property changes on: head/deskutils/plasma5-sddm-kcm/Makefile ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/deskutils/plasma5-sddm-kcm/distinfo =================================================================== --- head/deskutils/plasma5-sddm-kcm/distinfo (nonexistent) +++ head/deskutils/plasma5-sddm-kcm/distinfo (revision 468495) @@ -0,0 +1,3 @@ +TIMESTAMP = 1523811758 +SHA256 (KDE/plasma/5.12.4/sddm-kcm-5.12.4.tar.xz) = 072a8f71a381fff763c62e9a09752167a4cb3a0dca63674387c0464b7281a82e +SIZE (KDE/plasma/5.12.4/sddm-kcm-5.12.4.tar.xz) = 59724 Property changes on: head/deskutils/plasma5-sddm-kcm/distinfo ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/deskutils/plasma5-sddm-kcm/pkg-descr =================================================================== --- head/deskutils/plasma5-sddm-kcm/pkg-descr (nonexistent) +++ head/deskutils/plasma5-sddm-kcm/pkg-descr (revision 468495) @@ -0,0 +1,3 @@ +Config module for SDDM. + +WWW: https://www.kde.org/plasma-desktop Property changes on: head/deskutils/plasma5-sddm-kcm/pkg-descr ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/deskutils/plasma5-sddm-kcm/pkg-plist =================================================================== --- head/deskutils/plasma5-sddm-kcm/pkg-plist (nonexistent) +++ head/deskutils/plasma5-sddm-kcm/pkg-plist (revision 468495) @@ -0,0 +1,52 @@ +bin/sddmthemeinstaller +etc/dbus-1/system.d/org.kde.kcontrol.kcmsddm.conf +etc/xdg/sddmtheme.knsrc +lib/libexec/kauth/kcmsddm_authhelper +%%QT_PLUGINDIR%%/kcm_sddm.so +share/dbus-1/system-services/org.kde.kcontrol.kcmsddm.service +share/kservices5/kcm_sddm.desktop +share/locale/ar/LC_MESSAGES/kcm_sddm.mo +share/locale/ast/LC_MESSAGES/kcm_sddm.mo +share/locale/bs/LC_MESSAGES/kcm_sddm.mo +share/locale/ca/LC_MESSAGES/kcm_sddm.mo +share/locale/ca@valencia/LC_MESSAGES/kcm_sddm.mo +share/locale/cs/LC_MESSAGES/kcm_sddm.mo +share/locale/da/LC_MESSAGES/kcm_sddm.mo +share/locale/de/LC_MESSAGES/kcm_sddm.mo +share/locale/el/LC_MESSAGES/kcm_sddm.mo +share/locale/en_GB/LC_MESSAGES/kcm_sddm.mo +share/locale/es/LC_MESSAGES/kcm_sddm.mo +share/locale/et/LC_MESSAGES/kcm_sddm.mo +share/locale/eu/LC_MESSAGES/kcm_sddm.mo +share/locale/fi/LC_MESSAGES/kcm_sddm.mo +share/locale/fr/LC_MESSAGES/kcm_sddm.mo +share/locale/gl/LC_MESSAGES/kcm_sddm.mo +share/locale/he/LC_MESSAGES/kcm_sddm.mo +share/locale/hu/LC_MESSAGES/kcm_sddm.mo +share/locale/ia/LC_MESSAGES/kcm_sddm.mo +share/locale/it/LC_MESSAGES/kcm_sddm.mo +share/locale/ja/LC_MESSAGES/kcm_sddm.mo +share/locale/ko/LC_MESSAGES/kcm_sddm.mo +share/locale/lt/LC_MESSAGES/kcm_sddm.mo +share/locale/nb/LC_MESSAGES/kcm_sddm.mo +share/locale/nl/LC_MESSAGES/kcm_sddm.mo +share/locale/nn/LC_MESSAGES/kcm_sddm.mo +share/locale/pa/LC_MESSAGES/kcm_sddm.mo +share/locale/pl/LC_MESSAGES/kcm_sddm.mo +share/locale/pt/LC_MESSAGES/kcm_sddm.mo +share/locale/pt_BR/LC_MESSAGES/kcm_sddm.mo +share/locale/ro/LC_MESSAGES/kcm_sddm.mo +share/locale/ru/LC_MESSAGES/kcm_sddm.mo +share/locale/sk/LC_MESSAGES/kcm_sddm.mo +share/locale/sl/LC_MESSAGES/kcm_sddm.mo +share/locale/sr/LC_MESSAGES/kcm_sddm.mo +share/locale/sr@ijekavian/LC_MESSAGES/kcm_sddm.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_sddm.mo +share/locale/sr@latin/LC_MESSAGES/kcm_sddm.mo +share/locale/sv/LC_MESSAGES/kcm_sddm.mo +share/locale/tr/LC_MESSAGES/kcm_sddm.mo +share/locale/uk/LC_MESSAGES/kcm_sddm.mo +share/locale/zh_CN/LC_MESSAGES/kcm_sddm.mo +share/locale/zh_TW/LC_MESSAGES/kcm_sddm.mo +share/polkit-1/actions/org.kde.kcontrol.kcmsddm.policy +%%DATADIR%%/main.qml Property changes on: head/deskutils/plasma5-sddm-kcm/pkg-plist ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/devel/Makefile =================================================================== --- head/devel/Makefile (revision 468494) +++ head/devel/Makefile (revision 468495) @@ -1,6211 +1,6214 @@ # $FreeBSD$ # COMMENT = Development utilities SUBDIR += 9base SUBDIR += ChipmunkPhysics SUBDIR += ElectricFence SUBDIR += ORBit2 SUBDIR += ORBit2-reference SUBDIR += R-cran-BH SUBDIR += R-cran-Defaults SUBDIR += R-cran-Hmisc SUBDIR += R-cran-ModelMetrics SUBDIR += R-cran-R6 SUBDIR += R-cran-RUnit SUBDIR += R-cran-Rcpp SUBDIR += R-cran-abind SUBDIR += R-cran-bindr SUBDIR += R-cran-bindrcpp SUBDIR += R-cran-bit SUBDIR += R-cran-bit64 SUBDIR += R-cran-bitops SUBDIR += R-cran-broom SUBDIR += R-cran-caTools SUBDIR += R-cran-caret SUBDIR += R-cran-chron SUBDIR += R-cran-classInt SUBDIR += R-cran-cli SUBDIR += R-cran-crayon SUBDIR += R-cran-data.table SUBDIR += R-cran-doParallel SUBDIR += R-cran-evaluate SUBDIR += R-cran-foreach SUBDIR += R-cran-gbm SUBDIR += R-cran-gdata SUBDIR += R-cran-glmnet SUBDIR += R-cran-glue SUBDIR += R-cran-gmodels SUBDIR += R-cran-gsubfn SUBDIR += R-cran-gtools SUBDIR += R-cran-hms SUBDIR += R-cran-iterators SUBDIR += R-cran-itertools SUBDIR += R-cran-later SUBDIR += R-cran-lubridate SUBDIR += R-cran-magrittr SUBDIR += R-cran-memoise SUBDIR += R-cran-microbenchmark SUBDIR += R-cran-pillar SUBDIR += R-cran-pkgconfig SUBDIR += R-cran-pkgmaker SUBDIR += R-cran-plogr SUBDIR += R-cran-plyr SUBDIR += R-cran-praise SUBDIR += R-cran-promises SUBDIR += R-cran-proto SUBDIR += R-cran-purrr SUBDIR += R-cran-randomForest SUBDIR += R-cran-registry SUBDIR += R-cran-repr SUBDIR += R-cran-reshape SUBDIR += R-cran-reshape2 SUBDIR += R-cran-rgexf SUBDIR += R-cran-rlang SUBDIR += R-cran-rngtools SUBDIR += R-cran-rprojroot SUBDIR += R-cran-rstudioapi SUBDIR += R-cran-sfsmisc SUBDIR += R-cran-sourcetools SUBDIR += R-cran-tibble SUBDIR += R-cran-tidyr SUBDIR += R-cran-tidyselect SUBDIR += R-cran-withr SUBDIR += RStudio SUBDIR += SpecTcl SUBDIR += aap SUBDIR += aarch64-binutils SUBDIR += aarch64-gcc SUBDIR += aarch64-none-elf-binutils SUBDIR += aarch64-none-elf-gcc SUBDIR += aarch64-xtoolchain-gcc SUBDIR += abi-compliance-checker SUBDIR += ace SUBDIR += ace+tao-doc SUBDIR += acsccid SUBDIR += activitymail SUBDIR += ada-util SUBDIR += adabooch SUBDIR += adacurses SUBDIR += adaid SUBDIR += aegis SUBDIR += ahven SUBDIR += aifad SUBDIR += ald SUBDIR += allegro SUBDIR += allegro-devel SUBDIR += alog SUBDIR += amd64-binutils SUBDIR += amd64-gcc SUBDIR += amd64-xtoolchain-gcc SUBDIR += android-tools-adb SUBDIR += android-tools-fastboot SUBDIR += android-tools-simpleperf SUBDIR += anjuta SUBDIR += antlr SUBDIR += antlr3 SUBDIR += antlr4 SUBDIR += apache-ant SUBDIR += apache-rat SUBDIR += aphpbreakdown SUBDIR += aphpunit SUBDIR += api-sanity-autotest SUBDIR += apiextractor SUBDIR += apitrace SUBDIR += appstream-glib SUBDIR += apr1 SUBDIR += apr2 SUBDIR += arcanist SUBDIR += arduino SUBDIR += arduino-avrdude SUBDIR += arduino-bsd-mk SUBDIR += arduino-builder SUBDIR += arduino-core SUBDIR += arduino-ctags SUBDIR += arduino-irremote SUBDIR += arduino-mk SUBDIR += arduino-openglcd SUBDIR += arduino-sevseg SUBDIR += arduino-tools SUBDIR += arduino18 SUBDIR += arduinoOTA SUBDIR += argdata SUBDIR += argouml SUBDIR += argp-standalone SUBDIR += argtable SUBDIR += arm-elf-binutils SUBDIR += arm-gnueabi-binutils SUBDIR += arm-none-eabi-binutils SUBDIR += arm-none-eabi-gcc SUBDIR += arm-none-eabi-gcc492 SUBDIR += arm-none-eabi-gdb SUBDIR += arm-none-eabi-newlib SUBDIR += aros-sdk SUBDIR += arpc SUBDIR += art SUBDIR += artifactory SUBDIR += as31 SUBDIR += asl SUBDIR += asmutils SUBDIR += asmx SUBDIR += astah-community SUBDIR += astyle SUBDIR += atf SUBDIR += atlas SUBDIR += atlas-devel SUBDIR += atlassian-plugin-sdk SUBDIR += aunit SUBDIR += autobook SUBDIR += autoconf SUBDIR += autoconf-archive SUBDIR += autoconf-wrapper SUBDIR += autoconf213 SUBDIR += autodia SUBDIR += autodist SUBDIR += autogen SUBDIR += automake SUBDIR += automake-wrapper SUBDIR += automoc4 SUBDIR += autotools SUBDIR += avalon-framework SUBDIR += avarice SUBDIR += avce00 SUBDIR += avr-binutils SUBDIR += avr-gcc SUBDIR += avr-gdb SUBDIR += avr-libc SUBDIR += avra SUBDIR += avrdude SUBDIR += avro SUBDIR += avro-c SUBDIR += avro-cpp SUBDIR += awless SUBDIR += aws-sdk-cpp SUBDIR += aws-sdk-php SUBDIR += awscli SUBDIR += b2 SUBDIR += babeltrace SUBDIR += bam SUBDIR += bats SUBDIR += bazel SUBDIR += bazel-clang38 SUBDIR += bbfreeze SUBDIR += bbfreeze-loader SUBDIR += bcc SUBDIR += bcpp SUBDIR += bear SUBDIR += bennugd-core SUBDIR += bennugd-modules SUBDIR += bglibs SUBDIR += bhyve-vm-goagent SUBDIR += bicyclerepair SUBDIR += bin86 SUBDIR += bingrep SUBDIR += binutils SUBDIR += bison SUBDIR += bisoncpp SUBDIR += blame SUBDIR += blitz SUBDIR += bmake SUBDIR += bmkdep SUBDIR += bnf SUBDIR += boehm-gc SUBDIR += boehm-gc-redirect SUBDIR += boehm-gc-threaded SUBDIR += boost-all SUBDIR += boost-docs SUBDIR += boost-jam SUBDIR += boost-libs SUBDIR += boost-python-libs SUBDIR += boost_build SUBDIR += bossa SUBDIR += bouml-doc SUBDIR += bpython SUBDIR += breakpad SUBDIR += bsdbuild SUBDIR += bsdcflow SUBDIR += bsdowl SUBDIR += bugzilla44 SUBDIR += bugzilla50 SUBDIR += build SUBDIR += buildtool SUBDIR += buildtool-doc SUBDIR += bullet SUBDIR += busybee SUBDIR += byacc SUBDIR += byaccj SUBDIR += bzr SUBDIR += bzr-builder SUBDIR += bzr-colo SUBDIR += bzr-explorer SUBDIR += bzr-externals SUBDIR += bzr-fastimport SUBDIR += bzr-git SUBDIR += bzr-gtk SUBDIR += bzr-loom SUBDIR += bzr-pipeline SUBDIR += bzr-rewrite SUBDIR += bzr-scmproj SUBDIR += bzr-stats SUBDIR += bzr-svn SUBDIR += bzr-upload SUBDIR += bzrtools SUBDIR += c2mdoc SUBDIR += caf SUBDIR += calibrator SUBDIR += capstone3 SUBDIR += capstone4 SUBDIR += cask SUBDIR += catch SUBDIR += cbrowser SUBDIR += cc65 SUBDIR += ccache SUBDIR += ccache-memcached SUBDIR += ccache-memcached-static SUBDIR += ccache-static SUBDIR += cccc SUBDIR += ccdoc SUBDIR += ccrtp SUBDIR += cctz SUBDIR += cdash SUBDIR += cdecl SUBDIR += cdialog SUBDIR += cdk SUBDIR += cervisia SUBDIR += cervisia-kde4 SUBDIR += cflow SUBDIR += cflow2vcg SUBDIR += cgdb SUBDIR += cgilib SUBDIR += cgit SUBDIR += cgprof SUBDIR += charva SUBDIR += check SUBDIR += checkbashisms SUBDIR += checkheaders SUBDIR += cheritrace-devel SUBDIR += cherivis-devel SUBDIR += chromium-gn SUBDIR += chrpath SUBDIR += chruby SUBDIR += cil SUBDIR += cityhash SUBDIR += cjose SUBDIR += cl-alexandria SUBDIR += cl-alexandria-sbcl SUBDIR += cl-asdf SUBDIR += cl-cffi SUBDIR += cl-infix SUBDIR += cl-infix-sbcl SUBDIR += cl-port SUBDIR += cl-port-sbcl SUBDIR += cl-split-sequence SUBDIR += cl-split-sequence-sbcl SUBDIR += cl-trivial-features SUBDIR += cl-trivial-features-sbcl SUBDIR += cl-trivial-gray-streams SUBDIR += cl-trivial-gray-streams-sbcl SUBDIR += clanlib SUBDIR += clanlib1 SUBDIR += cld2 SUBDIR += clewn SUBDIR += clig SUBDIR += cligen SUBDIR += clinfo SUBDIR += clisp-hyperspec SUBDIR += clixon SUBDIR += clojure-cider SUBDIR += cloudabi SUBDIR += cloudabi-toolchain SUBDIR += clthreads SUBDIR += cltune SUBDIR += cmake SUBDIR += cmake-doc SUBDIR += cmake-fedora SUBDIR += cmake-gui SUBDIR += cmake-modules-webos SUBDIR += cmph SUBDIR += cmunge SUBDIR += cobf SUBDIR += coccinelle SUBDIR += codeblocks SUBDIR += codeblocks-devel SUBDIR += codequery SUBDIR += codesearch-py SUBDIR += codeville SUBDIR += codeworker SUBDIR += colorgcc SUBDIR += colormake SUBDIR += commit-patch SUBDIR += commoncpp SUBDIR += compiler-rt SUBDIR += compiz-bcop SUBDIR += concurrencykit SUBDIR += configkit SUBDIR += cons SUBDIR += cons-test SUBDIR += containers SUBDIR += cook SUBDIR += courier-unicode SUBDIR += covtool SUBDIR += cpan-upload SUBDIR += cpan-upload-http SUBDIR += cpp-hocon SUBDIR += cpp-netlib SUBDIR += cppcheck SUBDIR += cppcheck-gui SUBDIR += cppi SUBDIR += cpprestsdk SUBDIR += cpptest SUBDIR += cppunit SUBDIR += cpputest SUBDIR += cproto SUBDIR += cpuflags SUBDIR += cquery SUBDIR += cram SUBDIR += creduce SUBDIR += critcl SUBDIR += cscope SUBDIR += cscout SUBDIR += csmith SUBDIR += csoap SUBDIR += cssc SUBDIR += ctags SUBDIR += ctypes.sh SUBDIR += cunit SUBDIR += cut SUBDIR += cutils SUBDIR += cutter SUBDIR += cvs SUBDIR += cvs+ipv6 SUBDIR += cvs-devel SUBDIR += cvs-syncmail SUBDIR += cvs2cl SUBDIR += cvs2darcs SUBDIR += cvs2html SUBDIR += cvs2svn SUBDIR += cvsadmin SUBDIR += cvsbook SUBDIR += cvschangelogbuilder SUBDIR += cvschk SUBDIR += cvsd SUBDIR += cvsdadm SUBDIR += cvsdelta SUBDIR += cvsdiff2patch SUBDIR += cvsgraph SUBDIR += cvslines SUBDIR += cvsmonitor SUBDIR += cvsplot SUBDIR += cvsps SUBDIR += cvsps-devel SUBDIR += cvsspam SUBDIR += cvstrac SUBDIR += cvsutils SUBDIR += cvsweb SUBDIR += cvsweb3 SUBDIR += cvswrap SUBDIR += cweb SUBDIR += cx_Freeze SUBDIR += cxmon SUBDIR += cxref SUBDIR += cxxtest SUBDIR += cxxtools SUBDIR += d-feet SUBDIR += d-scanner SUBDIR += darts SUBDIR += dash.el SUBDIR += datadraw SUBDIR += dbus SUBDIR += dbus-c++ SUBDIR += dbus-glib SUBDIR += dbus-sharp SUBDIR += dbus-sharp-glib SUBDIR += dbus-tcl SUBDIR += dcd-client SUBDIR += dcd-server SUBDIR += dcmtk SUBDIR += dconf SUBDIR += dconf-editor SUBDIR += ddd SUBDIR += debugedit SUBDIR += dee SUBDIR += deforaos-libsystem SUBDIR += deheader SUBDIR += delta SUBDIR += dep SUBDIR += derelict-sdl2 SUBDIR += derelict-util SUBDIR += desktop-file-utils SUBDIR += dev86 SUBDIR += devhelp SUBDIR += devtodo SUBDIR += dfmt SUBDIR += dfuife-curses SUBDIR += dia2code SUBDIR += dia2code+ SUBDIR += diffuse SUBDIR += ding-libs SUBDIR += directfb SUBDIR += dissy SUBDIR += distcc SUBDIR += distel SUBDIR += distorm SUBDIR += ditrack SUBDIR += djgpp-binutils SUBDIR += djgpp-crx SUBDIR += dlangui SUBDIR += dlib SUBDIR += dmake SUBDIR += dmalloc SUBDIR += dmucs SUBDIR += doctorj SUBDIR += dolphin-plugins SUBDIR += dolphin-plugins-kde4 SUBDIR += dotconf SUBDIR += doxygen SUBDIR += dparser SUBDIR += dprog SUBDIR += dragon SUBDIR += dreampie SUBDIR += drpython SUBDIR += ds2 SUBDIR += dsymbol SUBDIR += dub SUBDIR += dulwich SUBDIR += duplo SUBDIR += dwarfdump SUBDIR += dxa65 SUBDIR += dyncall SUBDIR += e00compr SUBDIR += e2fsprogs-libss SUBDIR += easygit SUBDIR += easyloggingpp SUBDIR += eblob SUBDIR += ebnf2yacc SUBDIR += ecgi SUBDIR += edb SUBDIR += editline SUBDIR += efivar SUBDIR += efl SUBDIR += eggdbus SUBDIR += egypt SUBDIR += eiffelstudio SUBDIR += elf SUBDIR += elfio SUBDIR += elfkickers SUBDIR += elfrc SUBDIR += elfsh SUBDIR += elftoaout SUBDIR += elfutils SUBDIR += elixir-apex SUBDIR += elixir-bson SUBDIR += elixir-cachex SUBDIR += elixir-calendar SUBDIR += elixir-combine SUBDIR += elixir-conform SUBDIR += elixir-connection SUBDIR += elixir-coverex SUBDIR += elixir-crontab SUBDIR += elixir-csv SUBDIR += elixir-decimal SUBDIR += elixir-deppie SUBDIR += elixir-dialyze SUBDIR += elixir-distillery SUBDIR += elixir-estree SUBDIR += elixir-eternal SUBDIR += elixir-exactor SUBDIR += elixir-excoveralls SUBDIR += elixir-exjsx SUBDIR += elixir-exprotobuf SUBDIR += elixir-gen_stage SUBDIR += elixir-gen_state_machine SUBDIR += elixir-gettext SUBDIR += elixir-hex SUBDIR += elixir-inflex SUBDIR += elixir-lager_logger SUBDIR += elixir-libring SUBDIR += elixir-make SUBDIR += elixir-math SUBDIR += elixir-msgpax SUBDIR += elixir-nadia SUBDIR += elixir-nats SUBDIR += elixir-nimble_csv SUBDIR += elixir-paratize SUBDIR += elixir-plug SUBDIR += elixir-poison SUBDIR += elixir-quantum SUBDIR += elixir-smppex SUBDIR += elixir-swarm SUBDIR += elixir-timex SUBDIR += elixir-tirexs SUBDIR += elixir-trailing_format_plug SUBDIR += elixir-tzdata SUBDIR += embb SUBDIR += epl.el SUBDIR += epm SUBDIR += epydoc SUBDIR += eric6 SUBDIR += eris SUBDIR += erlang-backoff SUBDIR += erlang-bbmustache SUBDIR += erlang-bear SUBDIR += erlang-certifi SUBDIR += erlang-cf SUBDIR += erlang-cl SUBDIR += erlang-clique SUBDIR += erlang-common_lib SUBDIR += erlang-cuttlefish SUBDIR += erlang-erlware_commons SUBDIR += erlang-esdl SUBDIR += erlang-exmpp SUBDIR += erlang-folsom SUBDIR += erlang-gen_leader SUBDIR += erlang-gen_rpc SUBDIR += erlang-gen_smtp SUBDIR += erlang-getopt SUBDIR += erlang-goldrush SUBDIR += erlang-gpb SUBDIR += erlang-gproc SUBDIR += erlang-hut SUBDIR += erlang-jobs SUBDIR += erlang-jsx SUBDIR += erlang-jsxd SUBDIR += erlang-katana SUBDIR += erlang-lager SUBDIR += erlang-lager_syslog SUBDIR += erlang-meck SUBDIR += erlang-metrics SUBDIR += erlang-msgpack SUBDIR += erlang-neotoma SUBDIR += erlang-oserl SUBDIR += erlang-parse_trans SUBDIR += erlang-poolboy SUBDIR += erlang-pooler SUBDIR += erlang-protobuffs SUBDIR += erlang-providers SUBDIR += erlang-rebar3_hex SUBDIR += erlang-recon SUBDIR += erlang-sbroker SUBDIR += erlang-ssl_verify_fun SUBDIR += erlang-syslog SUBDIR += erlang-unicode_util_compat SUBDIR += es-eric6 SUBDIR += etcd SUBDIR += etcd31 SUBDIR += etcd32 SUBDIR += etcd33 SUBDIR += etl SUBDIR += euca2ools SUBDIR += evemu SUBDIR += eventxx SUBDIR += evolution-gconf-tools SUBDIR += exercisix SUBDIR += f77flow SUBDIR += fam SUBDIR += fastcrc SUBDIR += fb-adb SUBDIR += fb303 SUBDIR += fc++ SUBDIR += fga SUBDIR += fhist SUBDIR += fib SUBDIR += fifechan SUBDIR += firmware-utils SUBDIR += fistgen SUBDIR += flang SUBDIR += flang-clang SUBDIR += flatbuffers SUBDIR += flatzebra SUBDIR += flex-sdk SUBDIR += flex-sdk35 SUBDIR += flexdock SUBDIR += flexjson SUBDIR += flickrnet SUBDIR += florist-gpl SUBDIR += flyspray SUBDIR += fmake SUBDIR += fnccheck SUBDIR += fnorb SUBDIR += fortran-utils SUBDIR += fortytwo-encore SUBDIR += fossil SUBDIR += fossology-nomos-standalone SUBDIR += fpc-bfd SUBDIR += fpc-dbus SUBDIR += fpc-fcl-async SUBDIR += fpc-fcl-base SUBDIR += fpc-fcl-db SUBDIR += fpc-fcl-extra SUBDIR += fpc-fcl-fpcunit SUBDIR += fpc-fcl-image SUBDIR += fpc-fcl-js SUBDIR += fpc-fcl-json SUBDIR += fpc-fcl-net SUBDIR += fpc-fcl-passrc SUBDIR += fpc-fcl-pdf SUBDIR += fpc-fcl-registry SUBDIR += fpc-fcl-res SUBDIR += fpc-fcl-sdo SUBDIR += fpc-fcl-sound SUBDIR += fpc-fcl-stl SUBDIR += fpc-fcl-web SUBDIR += fpc-fcl-xml SUBDIR += fpc-fppkg SUBDIR += fpc-fv SUBDIR += fpc-gdbint SUBDIR += fpc-newt SUBDIR += fpc-pthreads SUBDIR += fpc-regexpr SUBDIR += fpc-sdl SUBDIR += fpc-symbolic SUBDIR += fpc-zlib SUBDIR += fpp SUBDIR += frama-c SUBDIR += frink SUBDIR += fstrm SUBDIR += ftjam SUBDIR += ftnchek SUBDIR += fuel SUBDIR += fujaba SUBDIR += funnelweb SUBDIR += fuzzylite SUBDIR += ga SUBDIR += gaa SUBDIR += gamin SUBDIR += gauche-readline SUBDIR += gaul SUBDIR += gazpacho SUBDIR += gb SUBDIR += gcc-arm-embedded SUBDIR += gcc-msp430-ti-toolchain SUBDIR += gccmakedep SUBDIR += gconf2 SUBDIR += gconf2-reference SUBDIR += gconfmm26 SUBDIR += gcvs SUBDIR += gdb SUBDIR += gdbmods SUBDIR += gdcm SUBDIR += geany SUBDIR += geany-plugin-addons SUBDIR += geany-plugin-autoclose SUBDIR += geany-plugin-automark SUBDIR += geany-plugin-codenav SUBDIR += geany-plugin-commander SUBDIR += geany-plugin-ctags SUBDIR += geany-plugin-debugger SUBDIR += geany-plugin-defineformat SUBDIR += geany-plugin-devhelp SUBDIR += geany-plugin-doc SUBDIR += geany-plugin-extrasel SUBDIR += geany-plugin-geanypy SUBDIR += geany-plugin-gendoc SUBDIR += geany-plugin-geniuspaste SUBDIR += geany-plugin-git-changebar SUBDIR += geany-plugin-insertnum SUBDIR += geany-plugin-latex SUBDIR += geany-plugin-lineoperations SUBDIR += geany-plugin-lipsum SUBDIR += geany-plugin-lua SUBDIR += geany-plugin-macro SUBDIR += geany-plugin-markdown SUBDIR += geany-plugin-miniscript SUBDIR += geany-plugin-multiterm SUBDIR += geany-plugin-numberedbookmarks SUBDIR += geany-plugin-overview SUBDIR += geany-plugin-pairtaghighlighter SUBDIR += geany-plugin-pg SUBDIR += geany-plugin-pohelper SUBDIR += geany-plugin-pretty-printer SUBDIR += geany-plugin-prj SUBDIR += geany-plugin-projectorganizer SUBDIR += geany-plugin-scope SUBDIR += geany-plugin-sendmail SUBDIR += geany-plugin-shiftcolumn SUBDIR += geany-plugin-spellcheck SUBDIR += geany-plugin-tableconvert SUBDIR += geany-plugin-treebrowser SUBDIR += geany-plugin-updatechecker SUBDIR += geany-plugin-utilslib SUBDIR += geany-plugin-vc SUBDIR += geany-plugin-webhelper SUBDIR += geany-plugin-workbench SUBDIR += geany-plugin-xmlsnippets SUBDIR += geany-plugins SUBDIR += geany-plugins-l10n SUBDIR += gearmand SUBDIR += gearmand-devel SUBDIR += gecode SUBDIR += generate SUBDIR += generatorrunner SUBDIR += gengetopt SUBDIR += genproto SUBDIR += geoip-java SUBDIR += gettext SUBDIR += gettext-lint SUBDIR += gettext-msghack SUBDIR += gettext-runtime SUBDIR += gettext-tools SUBDIR += gflags SUBDIR += ghub SUBDIR += giggle SUBDIR += gindent SUBDIR += gio-sharp SUBDIR += git SUBDIR += git-bzr-ng SUBDIR += git-cinnabar SUBDIR += git-codereview SUBDIR += git-cola SUBDIR += git-cvs SUBDIR += git-extras SUBDIR += git-gui SUBDIR += git-lfs SUBDIR += git-lite SUBDIR += git-merge-changelog SUBDIR += git-modes SUBDIR += git-review SUBDIR += git-subversion SUBDIR += git-town SUBDIR += gitaly SUBDIR += gitblit SUBDIR += gitflow SUBDIR += gitg SUBDIR += gitg0 SUBDIR += github-backup-utils SUBDIR += gitinspector SUBDIR += gitlab-runner SUBDIR += gitlab-shell SUBDIR += gitlist SUBDIR += gitolite SUBDIR += gitolite2 SUBDIR += gitphp SUBDIR += gittrac SUBDIR += glade SUBDIR += glade2 SUBDIR += glade3 SUBDIR += glademm SUBDIR += glib12 SUBDIR += glib20 SUBDIR += glib20-reference SUBDIR += glibmm SUBDIR += glibmm-reference SUBDIR += global SUBDIR += glog SUBDIR += glrparser SUBDIR += glui SUBDIR += gmake SUBDIR += gnatcoll SUBDIR += gnatpython SUBDIR += gnome-builder SUBDIR += gnome-common SUBDIR += gnome-js-common SUBDIR += gnome-vfs SUBDIR += gnome-vfs-monikers SUBDIR += gnome-vfs-reference SUBDIR += gnome-vfsmm SUBDIR += gnu-efi SUBDIR += gnucflow SUBDIR += gnulib SUBDIR += gnulibiberty SUBDIR += gnustep SUBDIR += gnustep-make SUBDIR += go-bayesian SUBDIR += go-bindata SUBDIR += go-cobra SUBDIR += go-codec SUBDIR += go-cpuid SUBDIR += go-crc32 SUBDIR += go-faker SUBDIR += go-form SUBDIR += go-glide SUBDIR += go-go.uuid SUBDIR += go-gocode SUBDIR += go-godef SUBDIR += go-goregen SUBDIR += go-hashicorp-logutils SUBDIR += go-logrus SUBDIR += go-metrics SUBDIR += go-nuid SUBDIR += go-pflag SUBDIR += go-protobuf SUBDIR += go-raw SUBDIR += go-runewidth SUBDIR += go-slices SUBDIR += go-sql-driver SUBDIR += go-tools SUBDIR += go-uuid SUBDIR += go-yaml SUBDIR += gob2 SUBDIR += gobject-introspection SUBDIR += godep SUBDIR += godot SUBDIR += godot-tools SUBDIR += godot2 SUBDIR += godot2-tools SUBDIR += goffice SUBDIR += goffice010 SUBDIR += gogland-eap SUBDIR += gogs SUBDIR += google-gdata SUBDIR += google-perftools SUBDIR += google-styleguide SUBDIR += googlemock SUBDIR += googletest SUBDIR += goprotobuf SUBDIR += gorm SUBDIR += govendor SUBDIR += gperf SUBDIR += gpm SUBDIR += gprbuild SUBDIR += gps SUBDIR += gpsim SUBDIR += gputils SUBDIR += gradle SUBDIR += grantlee SUBDIR += grantlee5 SUBDIR += grpc SUBDIR += grumpy SUBDIR += grv SUBDIR += gsettings-desktop-schemas SUBDIR += gsoap SUBDIR += gstreamer-plugins-gconf SUBDIR += gstreamer-plugins-gio SUBDIR += gstreamer-plugins-gnomevfs SUBDIR += gstreamer-plugins-sdl SUBDIR += gstreamer-plugins-soup SUBDIR += gstreamer1-plugins-soup SUBDIR += gtgt SUBDIR += gtkparasite SUBDIR += gtranslator SUBDIR += guichan SUBDIR += guile-lib SUBDIR += gumbo SUBDIR += gvfs SUBDIR += gvp SUBDIR += gwenhywfar SUBDIR += gwenhywfar-fox16 SUBDIR += gwenhywfar-gtk2 SUBDIR += gwenhywfar-gtk3 SUBDIR += gwenhywfar-qt4 SUBDIR += gwenhywfar-qt5 SUBDIR += gzstream SUBDIR += hachoir-core SUBDIR += hachoir-parser SUBDIR += hachoir-regex SUBDIR += hadoop SUBDIR += hadoop2 SUBDIR += hapy SUBDIR += hcs12mem SUBDIR += heimdall SUBDIR += hexcompare SUBDIR += hexd SUBDIR += hg-git SUBDIR += hgreviewboard SUBDIR += hgsvn SUBDIR += hgview SUBDIR += hhdate SUBDIR += highlighterkit SUBDIR += hive SUBDIR += horde-content SUBDIR += horde-timeobjects SUBDIR += horde-whups SUBDIR += hp48cc SUBDIR += hp48xgcc SUBDIR += hs-BNFC SUBDIR += hs-Boolean SUBDIR += hs-BoundedChan SUBDIR += hs-ConfigFile SUBDIR += hs-DrIFT SUBDIR += hs-EdisonAPI SUBDIR += hs-EdisonCore SUBDIR += hs-Glob SUBDIR += hs-HUnit SUBDIR += hs-IfElse SUBDIR += hs-List SUBDIR += hs-ListLike SUBDIR += hs-MemoTrie SUBDIR += hs-MissingH SUBDIR += hs-MonadRandom SUBDIR += hs-ObjectName SUBDIR += hs-Only SUBDIR += hs-PSQueue SUBDIR += hs-QuickCheck SUBDIR += hs-ReadArgs SUBDIR += hs-STMonadTrans SUBDIR += hs-SafeSemaphore SUBDIR += hs-ShellCheck SUBDIR += hs-StateVar SUBDIR += hs-Stream SUBDIR += hs-TypeCompose SUBDIR += hs-abstract-deque SUBDIR += hs-abstract-par SUBDIR += hs-activehs-base SUBDIR += hs-alex SUBDIR += hs-ansi-terminal SUBDIR += hs-ansi-wl-pprint SUBDIR += hs-arrows SUBDIR += hs-asn1-data SUBDIR += hs-asn1-encoding SUBDIR += hs-asn1-parse SUBDIR += hs-asn1-types SUBDIR += hs-async SUBDIR += hs-atomic-primops SUBDIR += hs-auto-update SUBDIR += hs-base-compat SUBDIR += hs-base-orphans SUBDIR += hs-base-unicode-symbols SUBDIR += hs-base16-bytestring SUBDIR += hs-base64-bytestring SUBDIR += hs-basic-prelude SUBDIR += hs-bifunctors SUBDIR += hs-bits-atomic SUBDIR += hs-blaze-builder SUBDIR += hs-blaze-builder-enumerator SUBDIR += hs-blaze-textual SUBDIR += hs-bloomfilter SUBDIR += hs-boxes SUBDIR += hs-bsd-sysctl SUBDIR += hs-byteable SUBDIR += hs-byteorder SUBDIR += hs-bytestring-lexing SUBDIR += hs-bytestring-mmap SUBDIR += hs-bytestring-nums SUBDIR += hs-bytestring-show SUBDIR += hs-c2hs SUBDIR += hs-cabal-install SUBDIR += hs-call-stack SUBDIR += hs-cereal SUBDIR += hs-checkers SUBDIR += hs-chunked-data SUBDIR += hs-classy-prelude SUBDIR += hs-classy-prelude-conduit SUBDIR += hs-clock SUBDIR += hs-cmdargs SUBDIR += hs-code-page SUBDIR += hs-colour SUBDIR += hs-concurrent-output SUBDIR += hs-conduit SUBDIR += hs-conduit-combinators SUBDIR += hs-conduit-extra SUBDIR += hs-configurator SUBDIR += hs-constraints SUBDIR += hs-convertible SUBDIR += hs-cpphs SUBDIR += hs-darcs SUBDIR += hs-data-default SUBDIR += hs-data-default-class SUBDIR += hs-data-default-instances-base SUBDIR += hs-data-default-instances-containers SUBDIR += hs-data-default-instances-dlist SUBDIR += hs-data-default-instances-old-locale SUBDIR += hs-data-endian SUBDIR += hs-data-hash SUBDIR += hs-data-ordlist SUBDIR += hs-data-pprint SUBDIR += hs-date-cache SUBDIR += hs-datetime SUBDIR += hs-dbus SUBDIR += hs-deepseq-generics SUBDIR += hs-directory-tree SUBDIR += hs-dlist SUBDIR += hs-dlist-instances SUBDIR += hs-easy-file SUBDIR += hs-edit-distance SUBDIR += hs-either SUBDIR += hs-enclosed-exceptions SUBDIR += hs-enumerator SUBDIR += hs-equivalence SUBDIR += hs-errors SUBDIR += hs-exceptions SUBDIR += hs-extensible-exceptions SUBDIR += hs-extra SUBDIR += hs-fast-logger SUBDIR += hs-fgl SUBDIR += hs-file-embed SUBDIR += hs-filemanip SUBDIR += hs-filestore SUBDIR += hs-fmlist SUBDIR += hs-foundation SUBDIR += hs-free SUBDIR += hs-fsnotify SUBDIR += hs-gconf SUBDIR += hs-generic-deriving SUBDIR += hs-geniplate-mirror SUBDIR += hs-ghc-events SUBDIR += hs-ghc-mtl SUBDIR += hs-ghc-paths SUBDIR += hs-gio SUBDIR += hs-git-annex SUBDIR += hs-gitrev SUBDIR += hs-glib SUBDIR += hs-gtk2hs-buildtools SUBDIR += hs-haddock SUBDIR += hs-haddock-api SUBDIR += hs-haddock-library SUBDIR += hs-happy SUBDIR += hs-hashable SUBDIR += hs-hashed-storage SUBDIR += hs-hashtables SUBDIR += hs-haskell-lexer SUBDIR += hs-haskell-src SUBDIR += hs-haskell-src-exts SUBDIR += hs-hasktags SUBDIR += hs-hastache SUBDIR += hs-hex SUBDIR += hs-hinotify SUBDIR += hs-hint SUBDIR += hs-hlibev SUBDIR += hs-hlint SUBDIR += hs-hoogle SUBDIR += hs-hourglass SUBDIR += hs-hsb2hs SUBDIR += hs-hslogger SUBDIR += hs-hslua SUBDIR += hs-hspec SUBDIR += hs-hspec-core SUBDIR += hs-hspec-discover SUBDIR += hs-hspec-expectations SUBDIR += hs-io-streams SUBDIR += hs-io-streams-haproxy SUBDIR += hs-js-flot SUBDIR += hs-js-jquery SUBDIR += hs-keys SUBDIR += hs-kqueue SUBDIR += hs-language-c SUBDIR += hs-language-javascript SUBDIR += hs-largeword SUBDIR += hs-lazysmallcheck SUBDIR += hs-lens SUBDIR += hs-lifted-async SUBDIR += hs-lifted-base SUBDIR += hs-logict SUBDIR += hs-map-syntax SUBDIR += hs-memory SUBDIR += hs-microlens SUBDIR += hs-microlens-th SUBDIR += hs-microstache SUBDIR += hs-mmap SUBDIR += hs-mmorph SUBDIR += hs-monad-control SUBDIR += hs-monad-logger SUBDIR += hs-monad-loops SUBDIR += hs-monad-par SUBDIR += hs-monad-par-extras SUBDIR += hs-monad-unlift SUBDIR += hs-monadplus SUBDIR += hs-monads-tf SUBDIR += hs-mono-traversable SUBDIR += hs-mono-traversable-instances SUBDIR += hs-mtl SUBDIR += hs-mueval SUBDIR += hs-murmur-hash SUBDIR += hs-mutable-containers SUBDIR += hs-ncurses SUBDIR += hs-newtype SUBDIR += hs-newtype-generics SUBDIR += hs-old-locale SUBDIR += hs-old-time SUBDIR += hs-optparse-applicative SUBDIR += hs-parallel SUBDIR += hs-pcre-light SUBDIR += hs-prelude-extras SUBDIR += hs-preprocessor-tools SUBDIR += hs-prettyclass SUBDIR += hs-primitive SUBDIR += hs-process-extras SUBDIR += hs-profunctors SUBDIR += hs-project-template SUBDIR += hs-psqueues SUBDIR += hs-quickcheck-io SUBDIR += hs-random SUBDIR += hs-readable SUBDIR += hs-readline SUBDIR += hs-refact SUBDIR += hs-reflection SUBDIR += hs-resource-pool SUBDIR += hs-resourcet SUBDIR += hs-safe SUBDIR += hs-safe-exceptions SUBDIR += hs-say SUBDIR += hs-scientific SUBDIR += hs-securemem SUBDIR += hs-setenv SUBDIR += hs-setlocale SUBDIR += hs-shake SUBDIR += hs-show SUBDIR += hs-silently SUBDIR += hs-simple-reflect SUBDIR += hs-smallcheck SUBDIR += hs-split SUBDIR += hs-stm SUBDIR += hs-stm-chans SUBDIR += hs-streaming-commons SUBDIR += hs-strict SUBDIR += hs-syb SUBDIR += hs-syb-with-class SUBDIR += hs-system-fileio SUBDIR += hs-system-filepath SUBDIR += hs-tagged SUBDIR += hs-temporary SUBDIR += hs-terminal-size SUBDIR += hs-test-framework SUBDIR += hs-test-framework-hunit SUBDIR += hs-test-framework-quickcheck2 SUBDIR += hs-text SUBDIR += hs-text-icu SUBDIR += hs-text-short SUBDIR += hs-tf-random SUBDIR += hs-th-abstraction SUBDIR += hs-th-lift SUBDIR += hs-th-lift-instances SUBDIR += hs-threads SUBDIR += hs-threadscope SUBDIR += hs-time-compat SUBDIR += hs-time-locale-compat SUBDIR += hs-timezone-olson SUBDIR += hs-timezone-series SUBDIR += hs-transformers-base SUBDIR += hs-transformers-compat SUBDIR += hs-typed-process SUBDIR += hs-unamb SUBDIR += hs-unexceptionalio SUBDIR += hs-uniplate SUBDIR += hs-unix-compat SUBDIR += hs-unix-time SUBDIR += hs-unordered-containers SUBDIR += hs-utf8-light SUBDIR += hs-utf8-string SUBDIR += hs-utility-ht SUBDIR += hs-uuagc SUBDIR += hs-uuagc-bootstrap SUBDIR += hs-uuagc-cabal SUBDIR += hs-uuid SUBDIR += hs-uuid-types SUBDIR += hs-uulib SUBDIR += hs-vault SUBDIR += hs-vector SUBDIR += hs-vector-algorithms SUBDIR += hs-vector-binary-instances SUBDIR += hs-vector-instances SUBDIR += hs-vector-th-unbox SUBDIR += hs-void SUBDIR += hs-wl-pprint-text SUBDIR += hs-word8 SUBDIR += htable SUBDIR += hub SUBDIR += hwloc SUBDIR += hyperscan SUBDIR += ice SUBDIR += icmake SUBDIR += icu SUBDIR += icu-le-hb SUBDIR += icu-lx SUBDIR += idutils SUBDIR += imake SUBDIR += inastemp SUBDIR += include-what-you-use SUBDIR += inifiled SUBDIR += inilib SUBDIR += iniparser SUBDIR += initutil SUBDIR += injeqt SUBDIR += ioncube SUBDIR += ipython SUBDIR += ireport SUBDIR += isa-l SUBDIR += isl SUBDIR += ispc SUBDIR += itext SUBDIR += ivykis SUBDIR += iz SUBDIR += jakarta-commons-configuration SUBDIR += jakarta-commons-daemon SUBDIR += jakarta-commons-io SUBDIR += jakarta-commons-jxpath SUBDIR += jakarta-commons-modeler SUBDIR += jam SUBDIR += jansson SUBDIR += java-findbugs SUBDIR += javolution SUBDIR += jclassinfo SUBDIR += jcmdline SUBDIR += jech-dht SUBDIR += jenkins SUBDIR += jenkins-lts SUBDIR += jfrog-cli SUBDIR += jiic SUBDIR += jline SUBDIR += jna SUBDIR += jrtplib SUBDIR += jsap SUBDIR += jsl SUBDIR += jsmin SUBDIR += json-c SUBDIR += json-glib SUBDIR += jsoncpp SUBDIR += jsonnet SUBDIR += judy SUBDIR += jwasm SUBDIR += k8048 SUBDIR += kBuild SUBDIR += kapptemplate SUBDIR += kapptemplate-kde4 SUBDIR += kaptain SUBDIR += kcachegrind SUBDIR += kcachegrind-kde4 SUBDIR += kdbg SUBDIR += kde-dev-scripts SUBDIR += kde-dev-scripts-kde4 SUBDIR += kde-dev-utils SUBDIR += kde-dev-utils-kde4 SUBDIR += kdebindings-kde4 SUBDIR += kdesdk-kde4 SUBDIR += kdesdk-kioslaves-kde4 SUBDIR += kdesdk-strigi-analyzers-kde4 SUBDIR += kdesdk-thumbnailers SUBDIR += kdesdk-thumbnailers-kde4 SUBDIR += kdesvn-kde4 SUBDIR += kdevelop-kde4 SUBDIR += kdevelop-pg-qt SUBDIR += kdevelop-php SUBDIR += kdevelop-php-docs SUBDIR += kdevplatform SUBDIR += kf5-extra-cmake-modules SUBDIR += kf5-kapidox SUBDIR += kf5-kauth SUBDIR += kf5-kbookmarks SUBDIR += kf5-kcmutils SUBDIR += kf5-kconfig SUBDIR += kf5-kcoreaddons SUBDIR += kf5-kcrash SUBDIR += kf5-kdbusaddons SUBDIR += kf5-kdeclarative SUBDIR += kf5-kdoctools SUBDIR += kf5-kfilemetadata SUBDIR += kf5-ki18n SUBDIR += kf5-kidletime SUBDIR += kf5-kio SUBDIR += kf5-kitemmodels SUBDIR += kf5-knewstuff SUBDIR += kf5-knotifications SUBDIR += kf5-knotifyconfig SUBDIR += kf5-kpackage SUBDIR += kf5-kparts SUBDIR += kf5-kpeople SUBDIR += kf5-kpty SUBDIR += kf5-kservice SUBDIR += kf5-ktexteditor SUBDIR += kf5-kunitconversion SUBDIR += kf5-solid SUBDIR += kf5-threadweaver SUBDIR += kickassembler SUBDIR += kimwitu SUBDIR += kio-extras SUBDIR += kore SUBDIR += ksql SUBDIR += kyra SUBDIR += kyua SUBDIR += lasi SUBDIR += lcov SUBDIR += leaktracer SUBDIR += leatherman SUBDIR += leiningen SUBDIR += lemon SUBDIR += lfcbase SUBDIR += lfcxml SUBDIR += libCello SUBDIR += libIDL SUBDIR += libPropList SUBDIR += libafterbase SUBDIR += liballium SUBDIR += libantlr3c SUBDIR += libaravis SUBDIR += libarea SUBDIR += libarena SUBDIR += libassa SUBDIR += libassetml SUBDIR += libast SUBDIR += libastylej SUBDIR += libastylej-arduino SUBDIR += libatomic_ops SUBDIR += libaura SUBDIR += libavl SUBDIR += libbde SUBDIR += libbegemot SUBDIR += libbfd SUBDIR += libbinio SUBDIR += libbobcat SUBDIR += libbonobo SUBDIR += libbonobo-reference SUBDIR += libbson SUBDIR += libburn SUBDIR += libccid SUBDIR += libcfg SUBDIR += libcfu SUBDIR += libchipcard SUBDIR += libcidr SUBDIR += libcii SUBDIR += libcjson SUBDIR += libclc SUBDIR += libcli SUBDIR += libconcurrent SUBDIR += libconfig SUBDIR += libconfuse SUBDIR += libcrossguid SUBDIR += libcutl SUBDIR += libcwd SUBDIR += libdaemon SUBDIR += libdap SUBDIR += libdatrie SUBDIR += libdbusmenu SUBDIR += libdbusmenu-qt SUBDIR += libddoc SUBDIR += libdevq SUBDIR += libdfui SUBDIR += libdisasm SUBDIR += libdisorder SUBDIR += libdispatch SUBDIR += libdistance SUBDIR += libdlmalloc SUBDIR += libdlna SUBDIR += libdnsres SUBDIR += libdombey SUBDIR += libdouble-conversion SUBDIR += libdparse SUBDIR += libds SUBDIR += libdsp SUBDIR += libdwarf SUBDIR += libe SUBDIR += libedit SUBDIR += libee SUBDIR += libeio SUBDIR += libelf SUBDIR += libepoll-shim SUBDIR += libepp-nicbr SUBDIR += liberasurecode SUBDIR += libesedb SUBDIR += libestr SUBDIR += libev SUBDIR += libevdev SUBDIR += libevent SUBDIR += libevent-hiphop SUBDIR += libevt SUBDIR += libevtx SUBDIR += libewf SUBDIR += libexplain SUBDIR += libfaketime SUBDIR += libfastcommon SUBDIR += libfastjson SUBDIR += libffcall SUBDIR += libffi SUBDIR += libfirm SUBDIR += libflatarray SUBDIR += libfmt SUBDIR += libfortuna SUBDIR += libfreefare SUBDIR += libfsntfs SUBDIR += libftdi SUBDIR += libftdi1 SUBDIR += libfwnt SUBDIR += libfwsi SUBDIR += libg19 SUBDIR += libg19draw SUBDIR += libgalago SUBDIR += libgamepad SUBDIR += libgdata SUBDIR += libgee SUBDIR += libgee06 SUBDIR += libgetline SUBDIR += libght SUBDIR += libghthash SUBDIR += libgit2 SUBDIR += libgit2-glib SUBDIR += libglade2 SUBDIR += libglade2-reference SUBDIR += libglademm24 SUBDIR += libgpc SUBDIR += libgpkg SUBDIR += libgrading SUBDIR += libgsf SUBDIR += libgta SUBDIR += libgtop SUBDIR += libgudev SUBDIR += libgutenfetch SUBDIR += libhash SUBDIR += libhid SUBDIR += libhoard SUBDIR += libhtp SUBDIR += libhyve-remote SUBDIR += libical SUBDIR += libinotify SUBDIR += libiqxmlrpc SUBDIR += libisofs SUBDIR += libixp SUBDIR += libjson++ SUBDIR += libk8055 SUBDIR += libkgapi-kde4 SUBDIR += libklel SUBDIR += libkolab SUBDIR += liblangtag SUBDIR += liblas SUBDIR += liblas12 SUBDIR += libleaftag SUBDIR += liblnk SUBDIR += liblockfile SUBDIR += liblogging SUBDIR += liblognorm SUBDIR += liblouis SUBDIR += libltdl SUBDIR += liblxqt SUBDIR += liblxqt-l10n SUBDIR += libmaa SUBDIR += libmatheval SUBDIR += libmba SUBDIR += libmill SUBDIR += libmimedir SUBDIR += libmonetra SUBDIR += libmowgli SUBDIR += libmowgli2 SUBDIR += libmpcbdm SUBDIR += libmpsse SUBDIR += libmsiecf SUBDIR += libmsocket SUBDIR += libmtdev SUBDIR += libmtrie SUBDIR += libnaji SUBDIR += libnfc SUBDIR += libnotify SUBDIR += libnsutils SUBDIR += libnxt SUBDIR += liboil SUBDIR += libol SUBDIR += libolecf SUBDIR += liboobs SUBDIR += liboop SUBDIR += libopenbsd SUBDIR += libopencm3 SUBDIR += libopensync SUBDIR += libopkele SUBDIR += liborcus SUBDIR += libosinfo SUBDIR += libosmo-abis SUBDIR += libosmo-netif SUBDIR += libosmo-sccp SUBDIR += libosmocore SUBDIR += libowfat SUBDIR += libpafe SUBDIR += libpafe-ruby SUBDIR += libparserutils SUBDIR += libpasori SUBDIR += libpci SUBDIR += libpciaccess SUBDIR += libpdel SUBDIR += libpeak SUBDIR += libpeas SUBDIR += libpff SUBDIR += libphk SUBDIR += libphutil SUBDIR += libplist SUBDIR += libpo6 SUBDIR += libpololu-avr SUBDIR += libpru SUBDIR += libpthread-stubs SUBDIR += libqb SUBDIR += libqcow SUBDIR += libqtxdg SUBDIR += libr3 SUBDIR += librcc SUBDIR += librcd SUBDIR += libreadline-java SUBDIR += libredblack SUBDIR += libregf SUBDIR += librelp SUBDIR += librest SUBDIR += librevisa SUBDIR += librevisa-vish SUBDIR += librevisa-vxi SUBDIR += librolegen SUBDIR += libruin SUBDIR += libs11n SUBDIR += libscca SUBDIR += libsearpc SUBDIR += libserialport SUBDIR += libserver SUBDIR += libshbuf SUBDIR += libshhmsg SUBDIR += libshhopt SUBDIR += libsigc++12 SUBDIR += libsigc++20 SUBDIR += libsigrok SUBDIR += libsigrokdecode SUBDIR += libsigscan SUBDIR += libsigsegv SUBDIR += libsimdpp SUBDIR += libslang2 SUBDIR += libsmdev SUBDIR += libsmpp34 SUBDIR += libsmraw SUBDIR += libsoup SUBDIR += libsoup-gnome SUBDIR += libsoup-reference SUBDIR += libspark2012 SUBDIR += libspice-server SUBDIR += libstatgrab SUBDIR += libstatgrab0 SUBDIR += libstrfunc SUBDIR += libstroke SUBDIR += libsysinfo SUBDIR += libtai SUBDIR += libtap SUBDIR += libtar SUBDIR += libtecla SUBDIR += libtermkey SUBDIR += libthai SUBDIR += libtifiles2 SUBDIR += libtool SUBDIR += libtpl SUBDIR += libtrue SUBDIR += libtsm SUBDIR += libtuntap SUBDIR += libublio SUBDIR += libudev-devd SUBDIR += libukcprog SUBDIR += libunicode SUBDIR += libuninum SUBDIR += libunistring SUBDIR += libunwind SUBDIR += libuutil SUBDIR += libuv SUBDIR += libvanessa_adt SUBDIR += libvanessa_logger SUBDIR += libvanessa_socket SUBDIR += libvc SUBDIR += libversion SUBDIR += libvhdi SUBDIR += libvirt SUBDIR += libvirt-glib SUBDIR += libvirt-java SUBDIR += libvmdk SUBDIR += libvolume_id SUBDIR += libvshadow SUBDIR += libvslvm SUBDIR += libvterm SUBDIR += libwfut SUBDIR += libx86 SUBDIR += libxalloc SUBDIR += libxo SUBDIR += libxs SUBDIR += libzim SUBDIR += libzookeeper SUBDIR += libzrtpcpp SUBDIR += libzvbi SUBDIR += lightning SUBDIR += linenoise-ng SUBDIR += linux-c6-dbus-glib SUBDIR += linux-c6-dbus-libs SUBDIR += linux-c6-devtools SUBDIR += linux-c6-icu SUBDIR += linux-c6-libelf SUBDIR += linux-c6-libgfortran SUBDIR += linux-c6-libglade2 SUBDIR += linux-c6-libpciaccess SUBDIR += linux-c6-libsigc++20 SUBDIR += linux-c6-libsoup SUBDIR += linux-c6-libthai SUBDIR += linux-c6-libunwind SUBDIR += linux-c6-nspr SUBDIR += linux-c6-qt47 SUBDIR += linux-c6-sdl12 SUBDIR += linux-c7-dbus-glib SUBDIR += linux-c7-dbus-libs SUBDIR += linux-c7-devtools SUBDIR += linux-c7-icu SUBDIR += linux-c7-libelf SUBDIR += linux-c7-libgfortran SUBDIR += linux-c7-libglade2 SUBDIR += linux-c7-libpciaccess SUBDIR += linux-c7-libsigc++20 SUBDIR += linux-c7-libthai SUBDIR += linux-c7-libunwind SUBDIR += linux-c7-nspr SUBDIR += linux-c7-qt SUBDIR += linux-c7-sdl12 SUBDIR += linux-c7-sdl20 SUBDIR += linux-kernel SUBDIR += linux_libusb SUBDIR += lion SUBDIR += listserialc SUBDIR += liteide SUBDIR += llbuild SUBDIR += lldb38 SUBDIR += llnextgen SUBDIR += llvm-cheri SUBDIR += llvm-devel SUBDIR += llvm33 SUBDIR += llvm34 SUBDIR += llvm35 SUBDIR += llvm38 SUBDIR += llvm39 SUBDIR += llvm40 SUBDIR += llvm50 SUBDIR += llvm60 SUBDIR += lm4tools SUBDIR += lmdbg SUBDIR += lndir SUBDIR += lnphost SUBDIR += lockfree-malloc SUBDIR += log4c SUBDIR += log4cplus SUBDIR += log4cpp SUBDIR += log4cxx SUBDIR += log4j SUBDIR += log4net SUBDIR += log4sh SUBDIR += log4shib SUBDIR += lokalize SUBDIR += lokalize-kde4 SUBDIR += loki SUBDIR += looks SUBDIR += love SUBDIR += love07 SUBDIR += love08 SUBDIR += love5 SUBDIR += lpc21isp SUBDIR += lrmi SUBDIR += lua-MessagePack SUBDIR += lua-alien SUBDIR += lua-bitlib SUBDIR += lua-bitop SUBDIR += lua-cjson SUBDIR += lua-gettext SUBDIR += lua-lgi SUBDIR += lua-lpeg SUBDIR += lua-luacheck SUBDIR += lua-luarocks SUBDIR += lua-lunit SUBDIR += lua-posix SUBDIR += lua-pty SUBDIR += lua-stdlib SUBDIR += lua-stdlib-debug SUBDIR += lua-stdlib-normalize SUBDIR += lua-sysctl SUBDIR += lua51-bitop SUBDIR += lua51-cjson SUBDIR += lua51-libevent SUBDIR += luabind SUBDIR += luafilesystem SUBDIR += luafilesystem-51 SUBDIR += luajava SUBDIR += lutok SUBDIR += lwp SUBDIR += lxqt-build-tools SUBDIR += m17n-db SUBDIR += m17n-docs SUBDIR += m17n-lib SUBDIR += m4 SUBDIR += mage SUBDIR += magit SUBDIR += magit-popup SUBDIR += make++ SUBDIR += makedepend SUBDIR += marisa-trie SUBDIR += mate-common SUBDIR += matreshka SUBDIR += maven SUBDIR += maven-wrapper SUBDIR += maven3 SUBDIR += maven31 SUBDIR += maven33 SUBDIR += mcpp SUBDIR += mdb SUBDIR += mdds SUBDIR += memleax SUBDIR += menhir SUBDIR += mercator SUBDIR += mercurial SUBDIR += mercurialeclipse SUBDIR += mergify SUBDIR += meson SUBDIR += mico SUBDIR += mime SUBDIR += mimir SUBDIR += mingw32-bin-msvcrt SUBDIR += mingw32-binutils SUBDIR += mingw32-directx SUBDIR += mingw32-gcc SUBDIR += mingw32-libffi SUBDIR += mingw32-libyaml SUBDIR += mingw32-openssl SUBDIR += mingw32-pdcurses SUBDIR += mingw32-pthreads SUBDIR += mingw32-zlib SUBDIR += mips-binutils SUBDIR += mips-gcc SUBDIR += mips-xtoolchain-gcc SUBDIR += mips64-binutils SUBDIR += mips64-gcc SUBDIR += mips64-xtoolchain-gcc SUBDIR += mk-configure SUBDIR += mkcmd SUBDIR += mm SUBDIR += mm-common SUBDIR += mongo-c-driver SUBDIR += mongo-cxx-driver SUBDIR += mono-addins SUBDIR += monodevelop SUBDIR += monotone SUBDIR += monotone-viz SUBDIR += motor SUBDIR += mpatrol SUBDIR += mph SUBDIR += mq4cpp SUBDIR += msgpack SUBDIR += msgpack-d SUBDIR += msgpuck SUBDIR += msp430-debug-stack SUBDIR += mspdebug SUBDIR += msrc0 SUBDIR += mtbl SUBDIR += myrepos SUBDIR += nana SUBDIR += nant SUBDIR += nasm SUBDIR += naturaldocs SUBDIR += ncc SUBDIR += ncnf SUBDIR += ncurses SUBDIR += ndesk-dbus SUBDIR += ndesk-dbus-glib SUBDIR += ndesk-options SUBDIR += netscape-java40 SUBDIR += netsurf-buildsystem SUBDIR += newfile SUBDIR += newt SUBDIR += newtonsoft-json SUBDIR += nexus2-oss SUBDIR += nimble SUBDIR += nini SUBDIR += ninja SUBDIR += ninja-ide SUBDIR += nlohmann-json SUBDIR += node-thrift SUBDIR += notify-sharp SUBDIR += noweb SUBDIR += npth SUBDIR += nsgenbind SUBDIR += nspr SUBDIR += nuitka SUBDIR += obby SUBDIR += objecthash SUBDIR += ocaml-annexlib SUBDIR += ocaml-calendar SUBDIR += ocaml-camljava SUBDIR += ocaml-camlp4 SUBDIR += ocaml-camlp5 SUBDIR += ocaml-camomile SUBDIR += ocaml-camomile-examples SUBDIR += ocaml-cfg SUBDIR += ocaml-classes SUBDIR += ocaml-cmdliner SUBDIR += ocaml-cppo SUBDIR += ocaml-deriving-ocsigen SUBDIR += ocaml-extlib SUBDIR += ocaml-findlib SUBDIR += ocaml-ipaddr SUBDIR += ocaml-lacaml SUBDIR += ocaml-lwt SUBDIR += ocaml-magic SUBDIR += ocaml-opam SUBDIR += ocaml-ounit SUBDIR += ocaml-parmap SUBDIR += ocaml-pcre SUBDIR += ocaml-pomap SUBDIR += ocaml-ppx-tools SUBDIR += ocaml-re SUBDIR += ocaml-react SUBDIR += ocaml-res SUBDIR += ocaml-sdl SUBDIR += ocaml-sem SUBDIR += ocaml-sexplib SUBDIR += ocaml-type_conv SUBDIR += ocaml-ulex SUBDIR += ocaml-uutf SUBDIR += ocaml-xstr SUBDIR += ocaml-xstrp4 SUBDIR += ocl-icd SUBDIR += oclgrind SUBDIR += ode SUBDIR += ois SUBDIR += okteta SUBDIR += okteta-kde4 SUBDIR += omake SUBDIR += omniNotify SUBDIR += omniORB SUBDIR += omniORB-4.1 SUBDIR += omnisharp-server SUBDIR += oniguruma SUBDIR += onscripter SUBDIR += onscripter-1byte SUBDIR += oozie SUBDIR += open-beagle SUBDIR += open-usp-tukubai SUBDIR += opencl SUBDIR += opencvs SUBDIR += opendht SUBDIR += opengrok SUBDIR += openmp SUBDIR += openocd SUBDIR += openwince-include SUBDIR += openzz SUBDIR += orc SUBDIR += osc SUBDIR += ossp-al SUBDIR += ossp-cfg SUBDIR += ossp-ex SUBDIR += ossp-l2 SUBDIR += ossp-val SUBDIR += ossp-var SUBDIR += ossp-xds SUBDIR += p4 SUBDIR += p4.el SUBDIR += p4api SUBDIR += p4d SUBDIR += p4delta SUBDIR += p4ftpd SUBDIR += p4genpatch SUBDIR += p4p SUBDIR += p4web SUBDIR += p5-AI-Pathfinding-AStar SUBDIR += p5-AI-Prolog SUBDIR += p5-ARGV-Struct SUBDIR += p5-Acme-Comment SUBDIR += p5-Acme-Damn SUBDIR += p5-Acme-MetaSyntactic SUBDIR += p5-Agent SUBDIR += p5-Algorithm-Accounting SUBDIR += p5-Algorithm-Annotate SUBDIR += p5-Algorithm-Binpack SUBDIR += p5-Algorithm-Bucketizer SUBDIR += p5-Algorithm-C3 SUBDIR += p5-Algorithm-ChooseSubsets SUBDIR += p5-Algorithm-Cluster SUBDIR += p5-Algorithm-Cron SUBDIR += p5-Algorithm-Dependency SUBDIR += p5-Algorithm-Dependency-Objects SUBDIR += p5-Algorithm-Diff SUBDIR += p5-Algorithm-Evolutionary SUBDIR += p5-Algorithm-FloodControl SUBDIR += p5-Algorithm-IncludeExclude SUBDIR += p5-Algorithm-Interval2Prefix SUBDIR += p5-Algorithm-LCS SUBDIR += p5-Algorithm-LUHN SUBDIR += p5-Algorithm-MarkovChain SUBDIR += p5-Algorithm-Merge SUBDIR += p5-Algorithm-MinMax SUBDIR += p5-Algorithm-NaiveBayes SUBDIR += p5-Algorithm-Networksort SUBDIR += p5-Algorithm-Numerical-Shuffle SUBDIR += p5-Algorithm-Permute SUBDIR += p5-Algorithm-SVM SUBDIR += p5-Alias SUBDIR += p5-Alien-SDL SUBDIR += p5-Alzabo SUBDIR += p5-Any-Daemon SUBDIR += p5-Any-Moose SUBDIR += p5-Any-Moose-Convert SUBDIR += p5-AnyData SUBDIR += p5-AnyEvent SUBDIR += p5-AnyEvent-AIO SUBDIR += p5-AnyEvent-Connection SUBDIR += p5-AnyEvent-DBI SUBDIR += p5-AnyEvent-DBI-Abstract SUBDIR += p5-AnyEvent-DBus SUBDIR += p5-AnyEvent-Filesys-Notify SUBDIR += p5-AnyEvent-Gearman SUBDIR += p5-AnyEvent-Graphite SUBDIR += p5-AnyEvent-I3 SUBDIR += p5-AnyEvent-MessagePack SUBDIR += p5-AnyEvent-RPC SUBDIR += p5-AnyEvent-Run SUBDIR += p5-AnyEvent-Subprocess SUBDIR += p5-AnyEvent-Task SUBDIR += p5-AnyEvent-Worker SUBDIR += p5-AnyMQ SUBDIR += p5-App-Build SUBDIR += p5-App-CLI SUBDIR += p5-App-CLI-Extension SUBDIR += p5-App-Cache SUBDIR += p5-App-Cmd SUBDIR += p5-App-Control SUBDIR += p5-App-FatPacker SUBDIR += p5-App-GitGot SUBDIR += p5-App-GitHub SUBDIR += p5-App-Info SUBDIR += p5-App-Options SUBDIR += p5-App-Rad SUBDIR += p5-App-SD SUBDIR += p5-App-SVN-Bisect SUBDIR += p5-App-Trace SUBDIR += p5-App-cpanminus SUBDIR += p5-App-cpanminus-reporter SUBDIR += p5-App-cpanoutdated SUBDIR += p5-App-local-lib-helper SUBDIR += p5-App-perlbrew SUBDIR += p5-App-scan_prereqs_cpanfile SUBDIR += p5-AppConfig SUBDIR += p5-AppConfig-Std SUBDIR += p5-Array-Group SUBDIR += p5-Array-Heap SUBDIR += p5-Array-Iterator SUBDIR += p5-Array-Unique SUBDIR += p5-Array-Window SUBDIR += p5-Async-Interrupt SUBDIR += p5-Async-MergePoint SUBDIR += p5-AtExit SUBDIR += p5-Attribute-Handlers SUBDIR += p5-Attribute-Handlers-Prospective SUBDIR += p5-Attribute-Persistent SUBDIR += p5-AutoLoader SUBDIR += p5-AutoXS-Header SUBDIR += p5-B-C SUBDIR += p5-B-Compiling SUBDIR += p5-B-Deobfuscate SUBDIR += p5-B-Flags SUBDIR += p5-B-Generate SUBDIR += p5-B-Graph SUBDIR += p5-B-Hooks-EndOfScope SUBDIR += p5-B-Hooks-OP-Annotation SUBDIR += p5-B-Hooks-OP-Check SUBDIR += p5-B-Hooks-OP-Check-EntersubForCV SUBDIR += p5-B-Hooks-OP-PPAddr SUBDIR += p5-B-Hooks-Parser SUBDIR += p5-B-Keywords SUBDIR += p5-B-OPCheck SUBDIR += p5-B-Size2 SUBDIR += p5-B-Utils SUBDIR += p5-BFD SUBDIR += p5-BS-Event SUBDIR += p5-BSD-Resource SUBDIR += p5-BSD-devstat SUBDIR += p5-BSD-stat SUBDIR += p5-BZ-Client SUBDIR += p5-Badger SUBDIR += p5-Benchmark-Timer SUBDIR += p5-Best SUBDIR += p5-Brannigan SUBDIR += p5-Bread-Board SUBDIR += p5-Bread-Board-Declare SUBDIR += p5-Bundle-Perl6 SUBDIR += p5-C-Scan SUBDIR += p5-CBOR-XS SUBDIR += p5-CHI SUBDIR += p5-CHI-Driver-DBI SUBDIR += p5-CLASS SUBDIR += p5-CPAN-Changes SUBDIR += p5-CPAN-Checksums SUBDIR += p5-CPAN-DistnameInfo SUBDIR += p5-CPAN-Inject SUBDIR += p5-CPAN-Meta SUBDIR += p5-CPAN-Meta-Check SUBDIR += p5-CPAN-Meta-Requirements SUBDIR += p5-CPAN-Meta-YAML SUBDIR += p5-CPAN-Mini SUBDIR += p5-CPAN-Perl-Releases SUBDIR += p5-CPAN-Recent-Uploads SUBDIR += p5-CPAN-Reporter SUBDIR += p5-CPAN-Reporter-Smoker SUBDIR += p5-CPAN-SQLite SUBDIR += p5-CPAN-Site SUBDIR += p5-CPAN-Testers-Common-Client SUBDIR += p5-CPAN-Testers-Report SUBDIR += p5-CPAN-Uploader SUBDIR += p5-CPAN-YACSmoke SUBDIR += p5-CPANPLUS SUBDIR += p5-CPANPLUS-Dist-Build SUBDIR += p5-CPS SUBDIR += p5-Cache SUBDIR += p5-Cache-AgainstFile SUBDIR += p5-Cache-Cache SUBDIR += p5-Cache-FastMmap SUBDIR += p5-Cache-LRU SUBDIR += p5-Cache-Memcached-Tie SUBDIR += p5-Cache-Mmap SUBDIR += p5-Cache-Simple-TimedExpiry SUBDIR += p5-Cairo-GObject SUBDIR += p5-Calendar-Simple SUBDIR += p5-Callback-Frame SUBDIR += p5-Canary-Stability SUBDIR += p5-Capture-Tiny SUBDIR += p5-Carp SUBDIR += p5-Carp-Always SUBDIR += p5-Carp-Always-Color SUBDIR += p5-Carp-Assert SUBDIR += p5-Carp-Assert-More SUBDIR += p5-Carp-Clan SUBDIR += p5-Carp-Clan-Share SUBDIR += p5-Carp-Datum SUBDIR += p5-Carp-REPL SUBDIR += p5-Cdk SUBDIR += p5-Check-ISA SUBDIR += p5-Child SUBDIR += p5-Chooser SUBDIR += p5-Class-Accessor SUBDIR += p5-Class-Accessor-Chained SUBDIR += p5-Class-Accessor-Children SUBDIR += p5-Class-Accessor-Complex SUBDIR += p5-Class-Accessor-Constructor SUBDIR += p5-Class-Accessor-Fast-Contained SUBDIR += p5-Class-Accessor-Fast-XS SUBDIR += p5-Class-Accessor-Grouped SUBDIR += p5-Class-Accessor-Installer SUBDIR += p5-Class-Accessor-Lite SUBDIR += p5-Class-Accessor-Lvalue SUBDIR += p5-Class-Accessor-Named SUBDIR += p5-Class-Adapter SUBDIR += p5-Class-AlzaboWrapper SUBDIR += p5-Class-ArrayObjects SUBDIR += p5-Class-AutoClass SUBDIR += p5-Class-Autouse SUBDIR += p5-Class-Base SUBDIR += p5-Class-BlackHole SUBDIR += p5-Class-C3 SUBDIR += p5-Class-C3-Adopt-NEXT SUBDIR += p5-Class-C3-Componentised SUBDIR += p5-Class-C3-XS SUBDIR += p5-Class-Closure SUBDIR += p5-Class-CodeStyler SUBDIR += p5-Class-Component SUBDIR += p5-Class-Constant SUBDIR += p5-Class-Container SUBDIR += p5-Class-Contract SUBDIR += p5-Class-Data-ConfigHash SUBDIR += p5-Class-Data-Inheritable SUBDIR += p5-Class-Date SUBDIR += p5-Class-Declare SUBDIR += p5-Class-Default SUBDIR += p5-Class-Delegation SUBDIR += p5-Class-EHierarchy SUBDIR += p5-Class-ErrorHandler SUBDIR += p5-Class-Factory SUBDIR += p5-Class-Factory-Util SUBDIR += p5-Class-Field SUBDIR += p5-Class-Fields SUBDIR += p5-Class-Forward SUBDIR += p5-Class-Generate SUBDIR += p5-Class-Gomor SUBDIR += p5-Class-Handle SUBDIR += p5-Class-Hook SUBDIR += p5-Class-ISA SUBDIR += p5-Class-Inner SUBDIR += p5-Class-InsideOut SUBDIR += p5-Class-Inspector SUBDIR += p5-Class-Interfaces SUBDIR += p5-Class-Load SUBDIR += p5-Class-Load-XS SUBDIR += p5-Class-Loader SUBDIR += p5-Class-MakeMethods SUBDIR += p5-Class-Measure SUBDIR += p5-Class-Method-Modifiers SUBDIR += p5-Class-Method-Modifiers-Fast SUBDIR += p5-Class-MethodMaker SUBDIR += p5-Class-MethodMapper SUBDIR += p5-Class-Mix SUBDIR += p5-Class-Mixin SUBDIR += p5-Class-MixinFactory SUBDIR += p5-Class-Multimethods SUBDIR += p5-Class-Multimethods-Pure SUBDIR += p5-Class-NamedParms SUBDIR += p5-Class-Null SUBDIR += p5-Class-OOorNO SUBDIR += p5-Class-ObjectTemplate SUBDIR += p5-Class-ObjectTemplate-DB SUBDIR += p5-Class-Observable SUBDIR += p5-Class-ParmList SUBDIR += p5-Class-Prototyped SUBDIR += p5-Class-ReturnValue SUBDIR += p5-Class-Roles SUBDIR += p5-Class-STL-Containers SUBDIR += p5-Class-Singleton SUBDIR += p5-Class-Spiffy SUBDIR += p5-Class-StateMachine SUBDIR += p5-Class-Std SUBDIR += p5-Class-Std-Fast SUBDIR += p5-Class-Std-Utils SUBDIR += p5-Class-StrongSingleton SUBDIR += p5-Class-Tangram SUBDIR += p5-Class-Throwable SUBDIR += p5-Class-Tiny SUBDIR += p5-Class-Tom SUBDIR += p5-Class-Trigger SUBDIR += p5-Class-Unload SUBDIR += p5-Class-Virtual SUBDIR += p5-Class-WhiteHole SUBDIR += p5-Class-Workflow SUBDIR += p5-Class-XPath SUBDIR += p5-Class-XSAccessor SUBDIR += p5-Clone SUBDIR += p5-Clone-Choose SUBDIR += p5-Clone-Fast SUBDIR += p5-Clone-More SUBDIR += p5-Clone-PP SUBDIR += p5-Code-Perl SUBDIR += p5-Commands-Guarded SUBDIR += p5-CommitBit SUBDIR += p5-Compiler-Lexer SUBDIR += p5-Config-Any SUBDIR += p5-Config-ApacheFormat SUBDIR += p5-Config-Auto SUBDIR += p5-Config-AutoConf SUBDIR += p5-Config-Fast SUBDIR += p5-Config-General SUBDIR += p5-Config-GitLike SUBDIR += p5-Config-Grammar SUBDIR += p5-Config-INI SUBDIR += p5-Config-INI-Reader-Ordered SUBDIR += p5-Config-INI-Simple SUBDIR += p5-Config-Identity SUBDIR += p5-Config-IniFiles SUBDIR += p5-Config-IniHash SUBDIR += p5-Config-IniRegEx SUBDIR += p5-Config-JFDI SUBDIR += p5-Config-JSON SUBDIR += p5-Config-MVP SUBDIR += p5-Config-MVP-Reader-INI SUBDIR += p5-Config-Merge SUBDIR += p5-Config-Model SUBDIR += p5-Config-Model-Tester SUBDIR += p5-Config-MySQL SUBDIR += p5-Config-Objective SUBDIR += p5-Config-Options SUBDIR += p5-Config-Perl-V SUBDIR += p5-Config-Properties SUBDIR += p5-Config-Record SUBDIR += p5-Config-Setting SUBDIR += p5-Config-Simple SUBDIR += p5-Config-Std SUBDIR += p5-Config-Tiny SUBDIR += p5-Config-Validator SUBDIR += p5-Config-Versioned SUBDIR += p5-Config-Wrest SUBDIR += p5-Config-YAML SUBDIR += p5-ConfigReader SUBDIR += p5-ConfigReader-Simple SUBDIR += p5-Connector SUBDIR += p5-Const-Exporter SUBDIR += p5-Const-Fast SUBDIR += p5-Context-Preserve SUBDIR += p5-Contextual-Return SUBDIR += p5-Coro SUBDIR += p5-Curses SUBDIR += p5-Curses-Application SUBDIR += p5-Curses-Forms SUBDIR += p5-Curses-UI SUBDIR += p5-Curses-Widgets SUBDIR += p5-Cvs SUBDIR += p5-Cwd-Guard SUBDIR += p5-DB_File-Lock SUBDIR += p5-Daemon-Control SUBDIR += p5-Dancer-Debug SUBDIR += p5-Dancer-Logger-Syslog SUBDIR += p5-Danga-Socket SUBDIR += p5-Danga-Socket-Callback SUBDIR += p5-Data-ACL SUBDIR += p5-Data-Alias SUBDIR += p5-Data-Average SUBDIR += p5-Data-Bind SUBDIR += p5-Data-Capture SUBDIR += p5-Data-ClearSilver-HDF SUBDIR += p5-Data-Clone SUBDIR += p5-Data-Compare SUBDIR += p5-Data-Diver SUBDIR += p5-Data-Domain SUBDIR += p5-Data-Dump SUBDIR += p5-Data-Dump-Streamer SUBDIR += p5-Data-DumpXML SUBDIR += p5-Data-Dumper SUBDIR += p5-Data-Dumper-Concise SUBDIR += p5-Data-Dumper-Perltidy SUBDIR += p5-Data-Dumper-Simple SUBDIR += p5-Data-Flow SUBDIR += p5-Data-GUID SUBDIR += p5-Data-Grouper SUBDIR += p5-Data-HashArray SUBDIR += p5-Data-HexDump SUBDIR += p5-Data-HexDump-Range SUBDIR += p5-Data-Hexdumper SUBDIR += p5-Data-Hexify SUBDIR += p5-Data-Hierarchy SUBDIR += p5-Data-IEEE754 SUBDIR += p5-Data-Inherited SUBDIR += p5-Data-Inspect SUBDIR += p5-Data-Integer SUBDIR += p5-Data-JavaScript-Anon SUBDIR += p5-Data-Lazy SUBDIR += p5-Data-Localize SUBDIR += p5-Data-Lock SUBDIR += p5-Data-MessagePack SUBDIR += p5-Data-MessagePack-Stream SUBDIR += p5-Data-Miscellany SUBDIR += p5-Data-Model SUBDIR += p5-Data-Munge SUBDIR += p5-Data-Object SUBDIR += p5-Data-ObjectDriver SUBDIR += p5-Data-OptList SUBDIR += p5-Data-Page-NoTotalEntries SUBDIR += p5-Data-Page-Pageset SUBDIR += p5-Data-ParseBinary SUBDIR += p5-Data-Path SUBDIR += p5-Data-Peek SUBDIR += p5-Data-Perl SUBDIR += p5-Data-Printer SUBDIR += p5-Data-Properties SUBDIR += p5-Data-Rand SUBDIR += p5-Data-Rand-Obscure SUBDIR += p5-Data-Random SUBDIR += p5-Data-Range-Compare SUBDIR += p5-Data-Record SUBDIR += p5-Data-Recursive-Encode SUBDIR += p5-Data-Remember SUBDIR += p5-Data-Rmap SUBDIR += p5-Data-RoundRobin SUBDIR += p5-Data-Rx SUBDIR += p5-Data-SExpression SUBDIR += p5-Data-Sah-Normalize SUBDIR += p5-Data-Section SUBDIR += p5-Data-Section-Simple SUBDIR += p5-Data-Serializable SUBDIR += p5-Data-Serializer SUBDIR += p5-Data-Serializer-Sereal SUBDIR += p5-Data-ShowTable SUBDIR += p5-Data-Stag SUBDIR += p5-Data-Stream-Bulk SUBDIR += p5-Data-Structure-Util SUBDIR += p5-Data-Swap SUBDIR += p5-Data-Table SUBDIR += p5-Data-Taxonomy-Tags SUBDIR += p5-Data-TemporaryBag SUBDIR += p5-Data-Throttler SUBDIR += p5-Data-Throttler-Memcached SUBDIR += p5-Data-Thunk SUBDIR += p5-Data-TreeDumper SUBDIR += p5-Data-TreeDumper-Renderer-GTK SUBDIR += p5-Data-Types SUBDIR += p5-Data-URIEncode SUBDIR += p5-Data-UUID SUBDIR += p5-Data-Uniqid SUBDIR += p5-Data-Util SUBDIR += p5-Data-Validate SUBDIR += p5-Data-Validator SUBDIR += p5-Data-Visitor SUBDIR += p5-Data-Visitor-Encode SUBDIR += p5-Data-Walk SUBDIR += p5-Date-Business SUBDIR += p5-Date-Calc SUBDIR += p5-Date-Calc-Iterator SUBDIR += p5-Date-Calc-XS SUBDIR += p5-Date-DayOfWeek SUBDIR += p5-Date-Easter SUBDIR += p5-Date-Extract SUBDIR += p5-Date-EzDate SUBDIR += p5-Date-Holidays-DK SUBDIR += p5-Date-ICal SUBDIR += p5-Date-ISO SUBDIR += p5-Date-Leapyear SUBDIR += p5-Date-Manip SUBDIR += p5-Date-Pcalc SUBDIR += p5-Date-Piece SUBDIR += p5-Date-Range SUBDIR += p5-Date-Roman SUBDIR += p5-Date-Simple SUBDIR += p5-DateConvert SUBDIR += p5-DateTime SUBDIR += p5-DateTime-Astro SUBDIR += p5-DateTime-Calendar-Chinese SUBDIR += p5-DateTime-Calendar-Christian SUBDIR += p5-DateTime-Calendar-Discordian SUBDIR += p5-DateTime-Calendar-FrenchRevolutionary SUBDIR += p5-DateTime-Calendar-Hebrew SUBDIR += p5-DateTime-Calendar-Japanese SUBDIR += p5-DateTime-Calendar-Julian SUBDIR += p5-DateTime-Calendar-Mayan SUBDIR += p5-DateTime-Calendar-Pataphysical SUBDIR += p5-DateTime-Cron-Simple SUBDIR += p5-DateTime-Event-Chinese SUBDIR += p5-DateTime-Event-Cron SUBDIR += p5-DateTime-Event-Easter SUBDIR += p5-DateTime-Event-ICal SUBDIR += p5-DateTime-Event-Lunar SUBDIR += p5-DateTime-Event-NameDay SUBDIR += p5-DateTime-Event-Random SUBDIR += p5-DateTime-Event-Recurrence SUBDIR += p5-DateTime-Event-Sunrise SUBDIR += p5-DateTime-Event-Zodiac SUBDIR += p5-DateTime-Fiscal-Year SUBDIR += p5-DateTime-Format-Baby SUBDIR += p5-DateTime-Format-Bork SUBDIR += p5-DateTime-Format-Builder SUBDIR += p5-DateTime-Format-DBI SUBDIR += p5-DateTime-Format-DateManip SUBDIR += p5-DateTime-Format-DateParse SUBDIR += p5-DateTime-Format-Duration SUBDIR += p5-DateTime-Format-Epoch SUBDIR += p5-DateTime-Format-Excel SUBDIR += p5-DateTime-Format-Flexible SUBDIR += p5-DateTime-Format-HTTP SUBDIR += p5-DateTime-Format-IBeat SUBDIR += p5-DateTime-Format-ICal SUBDIR += p5-DateTime-Format-ISO8601 SUBDIR += p5-DateTime-Format-Mail SUBDIR += p5-DateTime-Format-MySQL SUBDIR += p5-DateTime-Format-Natural SUBDIR += p5-DateTime-Format-Oracle SUBDIR += p5-DateTime-Format-Pg SUBDIR += p5-DateTime-Format-RFC3339 SUBDIR += p5-DateTime-Format-RSS SUBDIR += p5-DateTime-Format-Roman SUBDIR += p5-DateTime-Format-SQLite SUBDIR += p5-DateTime-Format-Strptime SUBDIR += p5-DateTime-Format-W3CDTF SUBDIR += p5-DateTime-Format-XSD SUBDIR += p5-DateTime-Functions SUBDIR += p5-DateTime-HiRes SUBDIR += p5-DateTime-Incomplete SUBDIR += p5-DateTime-Locale SUBDIR += p5-DateTime-Precise SUBDIR += p5-DateTime-Set SUBDIR += p5-DateTime-TimeZone SUBDIR += p5-DateTime-TimeZone-Alias SUBDIR += p5-DateTime-TimeZone-LMT SUBDIR += p5-DateTime-Util-Calc SUBDIR += p5-DateTimeX-Easy SUBDIR += p5-Debug-Client SUBDIR += p5-Decision-ACL SUBDIR += p5-Declare-Constraints-Simple SUBDIR += p5-DefHash SUBDIR += p5-Devel-ArgNames SUBDIR += p5-Devel-Autoflush SUBDIR += p5-Devel-Backtrace SUBDIR += p5-Devel-BeginLift SUBDIR += p5-Devel-CallChecker SUBDIR += p5-Devel-Caller SUBDIR += p5-Devel-Caller-IgnoreNamespaces SUBDIR += p5-Devel-Caller-Perl SUBDIR += p5-Devel-Callsite SUBDIR += p5-Devel-CheckBin SUBDIR += p5-Devel-CheckCompiler SUBDIR += p5-Devel-CheckLib SUBDIR += p5-Devel-CheckOS SUBDIR += p5-Devel-Confess SUBDIR += p5-Devel-Constants SUBDIR += p5-Devel-CoreStack SUBDIR += p5-Devel-Cover SUBDIR += p5-Devel-Cover-Report-Clover SUBDIR += p5-Devel-Cycle SUBDIR += p5-Devel-DProfPP SUBDIR += p5-Devel-Declare SUBDIR += p5-Devel-Declare-Parser SUBDIR += p5-Devel-Diagram SUBDIR += p5-Devel-Ditto SUBDIR += p5-Devel-Dumpvar SUBDIR += p5-Devel-EvalContext SUBDIR += p5-Devel-Events SUBDIR += p5-Devel-Events-Objects SUBDIR += p5-Devel-FindPerl SUBDIR += p5-Devel-Gladiator SUBDIR += p5-Devel-GlobalDestruction SUBDIR += p5-Devel-GlobalDestruction-XS SUBDIR += p5-Devel-Hide SUBDIR += p5-Devel-InheritNamespace SUBDIR += p5-Devel-KYTProf SUBDIR += p5-Devel-Leak SUBDIR += p5-Devel-Leak-Cb SUBDIR += p5-Devel-Leak-Object SUBDIR += p5-Devel-LeakGuard-Object SUBDIR += p5-Devel-LeakTrace SUBDIR += p5-Devel-LexAlias SUBDIR += p5-Devel-MAT SUBDIR += p5-Devel-Messenger SUBDIR += p5-Devel-Modlist SUBDIR += p5-Devel-NYTProf SUBDIR += p5-Devel-OverloadInfo SUBDIR += p5-Devel-PPPort SUBDIR += p5-Devel-PackagePath SUBDIR += p5-Devel-PartialDump SUBDIR += p5-Devel-PatchPerl SUBDIR += p5-Devel-Platform-Info SUBDIR += p5-Devel-Pointer SUBDIR += p5-Devel-Profile SUBDIR += p5-Devel-REPL SUBDIR += p5-Devel-Refactor SUBDIR += p5-Devel-Refcount SUBDIR += p5-Devel-Required SUBDIR += p5-Devel-RingBuffer SUBDIR += p5-Devel-STrace SUBDIR += p5-Devel-SimpleTrace SUBDIR += p5-Devel-Size SUBDIR += p5-Devel-Size-Report SUBDIR += p5-Devel-SmallProf SUBDIR += p5-Devel-StackTrace SUBDIR += p5-Devel-StackTrace-AsHTML SUBDIR += p5-Devel-StackTrace-WithLexicals SUBDIR += p5-Devel-StealthDebug SUBDIR += p5-Devel-Symdump SUBDIR += p5-Devel-Timer SUBDIR += p5-Devel-Trace SUBDIR += p5-Devel-TraceCalls SUBDIR += p5-Devel-TraceUse SUBDIR += p5-Devel-ebug SUBDIR += p5-Devel-ptkdb SUBDIR += p5-Device-USB SUBDIR += p5-Digest-TransformPath SUBDIR += p5-Dir-Project SUBDIR += p5-Dir-Self SUBDIR += p5-Dir-Watch SUBDIR += p5-Directory-Queue SUBDIR += p5-Directory-Scratch SUBDIR += p5-Directory-Scratch-Structured SUBDIR += p5-Dist-CheckConflicts SUBDIR += p5-Dist-Joseki SUBDIR += p5-Dist-Metadata SUBDIR += p5-Dist-Zilla SUBDIR += p5-Doxygen-Filter-Perl SUBDIR += p5-DynaLoader-Functions SUBDIR += p5-EV SUBDIR += p5-Env-PS1 SUBDIR += p5-Env-Path SUBDIR += p5-Error-Helper SUBDIR += p5-Eval-Closure SUBDIR += p5-Eval-Context SUBDIR += p5-Eval-LineNumbers SUBDIR += p5-Eval-WithLexicals SUBDIR += p5-Event SUBDIR += p5-Event-ExecFlow SUBDIR += p5-Event-Join SUBDIR += p5-Event-Lib SUBDIR += p5-Event-Notify SUBDIR += p5-Event-RPC SUBDIR += p5-Every SUBDIR += p5-Exception-Class SUBDIR += p5-Exception-Class-TryCatch SUBDIR += p5-Exception-Handler SUBDIR += p5-Expect-Simple SUBDIR += p5-ExportTo SUBDIR += p5-Exporter SUBDIR += p5-Exporter-Declare SUBDIR += p5-Exporter-Easy SUBDIR += p5-Exporter-Lite SUBDIR += p5-Exporter-Tidy SUBDIR += p5-Exporter-Tiny SUBDIR += p5-ExtUtils-AutoInstall SUBDIR += p5-ExtUtils-CBuilder SUBDIR += p5-ExtUtils-CChecker SUBDIR += p5-ExtUtils-Command SUBDIR += p5-ExtUtils-Config SUBDIR += p5-ExtUtils-Constant SUBDIR += p5-ExtUtils-CppGuess SUBDIR += p5-ExtUtils-Depends SUBDIR += p5-ExtUtils-Helpers SUBDIR += p5-ExtUtils-Install SUBDIR += p5-ExtUtils-InstallPaths SUBDIR += p5-ExtUtils-LibBuilder SUBDIR += p5-ExtUtils-MakeMaker SUBDIR += p5-ExtUtils-MakeMaker-CPANfile SUBDIR += p5-ExtUtils-MakeMaker-Coverage SUBDIR += p5-ExtUtils-Manifest SUBDIR += p5-ExtUtils-ParseXS SUBDIR += p5-ExtUtils-PkgConfig SUBDIR += p5-ExtUtils-XSBuilder SUBDIR += p5-ExtUtils-XSpp SUBDIR += p5-FFI-CheckLib SUBDIR += p5-FFI-Platypus SUBDIR += p5-FSA-Rules SUBDIR += p5-Fennec-Lite SUBDIR += p5-File-Append-TempFile SUBDIR += p5-File-Assets SUBDIR += p5-File-Attributes SUBDIR += p5-File-Attributes-Recursive SUBDIR += p5-File-BOM SUBDIR += p5-File-BaseDir SUBDIR += p5-File-BasicFlock SUBDIR += p5-File-Binary SUBDIR += p5-File-Cache SUBDIR += p5-File-Cat SUBDIR += p5-File-ChangeNotify SUBDIR += p5-File-ConfigDir SUBDIR += p5-File-Copy-Link SUBDIR += p5-File-Copy-Recursive SUBDIR += p5-File-Copy-Recursive-Reduced SUBDIR += p5-File-CountLines SUBDIR += p5-File-CreationTime SUBDIR += p5-File-DesktopEntry SUBDIR += p5-File-Dir-Dumper SUBDIR += p5-File-DirSync SUBDIR += p5-File-ExtAttr SUBDIR += p5-File-FcntlLock SUBDIR += p5-File-Find-Closures SUBDIR += p5-File-Find-Object SUBDIR += p5-File-Find-Rule SUBDIR += p5-File-Find-Rule-Filesys-Virtual SUBDIR += p5-File-Find-Rule-Perl SUBDIR += p5-File-Find-Rule-VCS SUBDIR += p5-File-Finder SUBDIR += p5-File-Flat SUBDIR += p5-File-Flock SUBDIR += p5-File-Flock-Retry SUBDIR += p5-File-FnMatch SUBDIR += p5-File-Grep SUBDIR += p5-File-HStore SUBDIR += p5-File-HomeDir SUBDIR += p5-File-HomeDir-PathClass SUBDIR += p5-File-Iterator SUBDIR += p5-File-LibMagic SUBDIR += p5-File-MMagic SUBDIR += p5-File-MMagic-XS SUBDIR += p5-File-Map SUBDIR += p5-File-MimeInfo SUBDIR += p5-File-Modified SUBDIR += p5-File-Monitor SUBDIR += p5-File-NCopy SUBDIR += p5-File-NFSLock SUBDIR += p5-File-Path SUBDIR += p5-File-Path-Expand SUBDIR += p5-File-Path-Tiny SUBDIR += p5-File-PathConvert SUBDIR += p5-File-Pid SUBDIR += p5-File-Pid-Quick SUBDIR += p5-File-Policy SUBDIR += p5-File-Random SUBDIR += p5-File-ReadBackwards SUBDIR += p5-File-Remove SUBDIR += p5-File-SafeDO SUBDIR += p5-File-SearchPath SUBDIR += p5-File-Share SUBDIR += p5-File-ShareDir SUBDIR += p5-File-ShareDir-Install SUBDIR += p5-File-ShareDir-PAR SUBDIR += p5-File-ShareDir-PathClass SUBDIR += p5-File-ShareDir-ProjectDistDir SUBDIR += p5-File-Slurp SUBDIR += p5-File-Slurp-Tiny SUBDIR += p5-File-Slurp-Tree SUBDIR += p5-File-Slurper SUBDIR += p5-File-Spec-Native SUBDIR += p5-File-Stream SUBDIR += p5-File-Sync SUBDIR += p5-File-Tail SUBDIR += p5-File-Tail-Dir SUBDIR += p5-File-Tail-Multi SUBDIR += p5-File-Tail-Scribe SUBDIR += p5-File-Temp SUBDIR += p5-File-Tempdir SUBDIR += p5-File-Touch SUBDIR += p5-File-Type SUBDIR += p5-File-Util SUBDIR += p5-File-Write-Rotate SUBDIR += p5-File-chdir SUBDIR += p5-File-chmod SUBDIR += p5-File-pushd SUBDIR += p5-FileHandle-Fmode SUBDIR += p5-FileHandle-Unget SUBDIR += p5-Filesys-Notify-KQueue SUBDIR += p5-Filesys-Notify-Simple SUBDIR += p5-Filesys-Virtual SUBDIR += p5-Filesys-Virtual-Plain SUBDIR += p5-Filter SUBDIR += p5-Filter-Template SUBDIR += p5-Find-Lib SUBDIR += p5-FindBin-libs SUBDIR += p5-Forest SUBDIR += p5-Form-Sensible SUBDIR += p5-FreeBSD-i386-Ptrace SUBDIR += p5-FreezeThaw SUBDIR += p5-Function-Parameters SUBDIR += p5-Future SUBDIR += p5-Gearman SUBDIR += p5-Gearman-Client-Async SUBDIR += p5-Gearman-Server SUBDIR += p5-Gearman-XS SUBDIR += p5-Geo-JSON SUBDIR += p5-Geo-ShapeFile SUBDIR += p5-Getargs-Long SUBDIR += p5-Getopt-ArgvFile SUBDIR += p5-Getopt-Attribute SUBDIR += p5-Getopt-Compact SUBDIR += p5-Getopt-Compact-WithCmd SUBDIR += p5-Getopt-Declare SUBDIR += p5-Getopt-EX SUBDIR += p5-Getopt-Euclid SUBDIR += p5-Getopt-GUI-Long SUBDIR += p5-Getopt-Long SUBDIR += p5-Getopt-Long-Descriptive SUBDIR += p5-Getopt-Tabular SUBDIR += p5-Git-PurePerl SUBDIR += p5-Git-Repository SUBDIR += p5-Git-Repository-Plugin-Log SUBDIR += p5-Git-Sub SUBDIR += p5-Git-Version-Compare SUBDIR += p5-Git-Wrapper SUBDIR += p5-Glib-Object-Introspection SUBDIR += p5-Glib2 SUBDIR += p5-Gnome2-GConf SUBDIR += p5-Goo-Canvas SUBDIR += p5-Google-Checkout SUBDIR += p5-Google-ProtocolBuffers SUBDIR += p5-Gravatar-URL SUBDIR += p5-Gtk2-Notify SUBDIR += p5-Gtk2-Spell SUBDIR += p5-Guard SUBDIR += p5-HOP-Lexer SUBDIR += p5-HOP-Stream SUBDIR += p5-Hash-AsObject SUBDIR += p5-Hash-AutoHash SUBDIR += p5-Hash-AutoHash-Args SUBDIR += p5-Hash-Case SUBDIR += p5-Hash-Diff SUBDIR += p5-Hash-FieldHash SUBDIR += p5-Hash-Flatten SUBDIR += p5-Hash-Merge-Simple SUBDIR += p5-Hash-MoreUtils SUBDIR += p5-Hash-MultiKey SUBDIR += p5-Hash-MultiValue SUBDIR += p5-Hash-NoRef SUBDIR += p5-Hash-Objectify SUBDIR += p5-Hash-Slice SUBDIR += p5-Hash-Union SUBDIR += p5-Hash-Util-FieldHash-Compat SUBDIR += p5-Hash-WithDefaults SUBDIR += p5-Heap SUBDIR += p5-Heap-Simple SUBDIR += p5-Heap-Simple-Perl SUBDIR += p5-Heap-Simple-XS SUBDIR += p5-Hook-LexWrap SUBDIR += p5-IO-AIO SUBDIR += p5-IO-All SUBDIR += p5-IO-All-LWP SUBDIR += p5-IO-Any SUBDIR += p5-IO-Async SUBDIR += p5-IO-BufferedSelect SUBDIR += p5-IO-Callback SUBDIR += p5-IO-Capture SUBDIR += p5-IO-CaptureOutput SUBDIR += p5-IO-Digest SUBDIR += p5-IO-Event SUBDIR += p5-IO-FDPass SUBDIR += p5-IO-File-AtomicChange SUBDIR += p5-IO-HTML SUBDIR += p5-IO-Handle-Util SUBDIR += p5-IO-Interactive SUBDIR += p5-IO-KQueue SUBDIR += p5-IO-Lambda SUBDIR += p5-IO-LockedFile SUBDIR += p5-IO-MultiPipe SUBDIR += p5-IO-Multiplex SUBDIR += p5-IO-NestedCapture SUBDIR += p5-IO-Null SUBDIR += p5-IO-Pager SUBDIR += p5-IO-Pipely SUBDIR += p5-IO-Prompt SUBDIR += p5-IO-Prompt-Simple SUBDIR += p5-IO-Prompt-Tiny SUBDIR += p5-IO-Prompter SUBDIR += p5-IO-Pty-Easy SUBDIR += p5-IO-SessionData SUBDIR += p5-IO-String SUBDIR += p5-IO-Stty SUBDIR += p5-IO-Tee SUBDIR += p5-IO-TieCombine SUBDIR += p5-IO-Toolkit SUBDIR += p5-IO-Tty SUBDIR += p5-IO-Util SUBDIR += p5-IO-YAML SUBDIR += p5-IO-stringy SUBDIR += p5-IOC SUBDIR += p5-IPC-Cache SUBDIR += p5-IPC-Cmd SUBDIR += p5-IPC-DirQueue SUBDIR += p5-IPC-Locker SUBDIR += p5-IPC-MM SUBDIR += p5-IPC-MMA SUBDIR += p5-IPC-Mmap SUBDIR += p5-IPC-Mmap-Share SUBDIR += p5-IPC-Open3-Simple SUBDIR += p5-IPC-PerlSSH SUBDIR += p5-IPC-PubSub SUBDIR += p5-IPC-Run SUBDIR += p5-IPC-Run-SafeHandles SUBDIR += p5-IPC-Run3 SUBDIR += p5-IPC-ShareLite SUBDIR += p5-IPC-Shareable SUBDIR += p5-IPC-SharedCache SUBDIR += p5-IPC-ShellCmd SUBDIR += p5-IPC-Signal SUBDIR += p5-IPC-System-Simple SUBDIR += p5-Import-Base SUBDIR += p5-Import-Into SUBDIR += p5-Importer SUBDIR += p5-Inline SUBDIR += p5-Inline-ASM SUBDIR += p5-Inline-C SUBDIR += p5-Inline-CPP SUBDIR += p5-Inline-Files SUBDIR += p5-Inline-Filters SUBDIR += p5-Inline-Java SUBDIR += p5-Inline-Python SUBDIR += p5-Inline-TT SUBDIR += p5-Inline-Tcl SUBDIR += p5-InlineX-C2XS SUBDIR += p5-InlineX-CPP2XS SUBDIR += p5-Input-Validator SUBDIR += p5-Ioctl SUBDIR += p5-Iodef-Pb-Simple SUBDIR += p5-Iterator SUBDIR += p5-Iterator-IO SUBDIR += p5-Iterator-Misc SUBDIR += p5-Iterator-Simple SUBDIR += p5-Iterator-Util SUBDIR += p5-JIRA-REST SUBDIR += p5-JQuery SUBDIR += p5-JSON-Hyper SUBDIR += p5-JSON-Path SUBDIR += p5-JSON-Pointer SUBDIR += p5-JSON-RPC SUBDIR += p5-JSON-RPC-Common SUBDIR += p5-JSON-RPC-Dispatcher SUBDIR += p5-JSON-Schema SUBDIR += p5-Java SUBDIR += p5-Jonk SUBDIR += p5-LV SUBDIR += p5-Lexical-Alias SUBDIR += p5-Lexical-Import SUBDIR += p5-Lexical-Persistence SUBDIR += p5-Lexical-SealRequireHints SUBDIR += p5-Lexical-Var SUBDIR += p5-Lingua-JA-Fold SUBDIR += p5-Lingua-Translit SUBDIR += p5-List-AllUtils SUBDIR += p5-List-Cycle SUBDIR += p5-List-Flatten SUBDIR += p5-List-Gen SUBDIR += p5-List-Group SUBDIR += p5-List-Objects-Types SUBDIR += p5-List-Objects-WithUtils SUBDIR += p5-List-Pairwise SUBDIR += p5-List-Permutor SUBDIR += p5-List-PowerSet SUBDIR += p5-List-Regexp SUBDIR += p5-List-Rotation-Cycle SUBDIR += p5-List-SomeUtils SUBDIR += p5-List-SomeUtils-XS SUBDIR += p5-List-Uniq SUBDIR += p5-List-UtilsBy SUBDIR += p5-List-UtilsBy-XS SUBDIR += p5-Locale-Maketext SUBDIR += p5-Locale-Maketext-Fuzzy SUBDIR += p5-Locale-Maketext-Gettext SUBDIR += p5-Locale-Maketext-Lexicon SUBDIR += p5-Locale-Maketext-Simple SUBDIR += p5-Locale-Msgfmt SUBDIR += p5-Locale-PGetText SUBDIR += p5-Locale-PO SUBDIR += p5-Locale-gettext SUBDIR += p5-Locale-libintl SUBDIR += p5-LockFile-Simple SUBDIR += p5-Log-Accounting-SVK SUBDIR += p5-Log-Accounting-SVN SUBDIR += p5-Log-Agent SUBDIR += p5-Log-Agent-Logger SUBDIR += p5-Log-Any SUBDIR += p5-Log-Any-Adapter-Callback SUBDIR += p5-Log-Any-Adapter-Dispatch SUBDIR += p5-Log-Any-Adapter-Log4perl SUBDIR += p5-Log-Any-App SUBDIR += p5-Log-Any-IfLOG SUBDIR += p5-Log-Contextual SUBDIR += p5-Log-Defer SUBDIR += p5-Log-Dispatch SUBDIR += p5-Log-Dispatch-Array SUBDIR += p5-Log-Dispatch-ArrayWithLimits SUBDIR += p5-Log-Dispatch-Colorful SUBDIR += p5-Log-Dispatch-Config SUBDIR += p5-Log-Dispatch-Configurator-Any SUBDIR += p5-Log-Dispatch-Configurator-YAML SUBDIR += p5-Log-Dispatch-DBI SUBDIR += p5-Log-Dispatch-Dir SUBDIR += p5-Log-Dispatch-Email-EmailSend SUBDIR += p5-Log-Dispatch-File-Rolling SUBDIR += p5-Log-Dispatch-File-Stamped SUBDIR += p5-Log-Dispatch-FileRotate SUBDIR += p5-Log-Dispatch-FileShared SUBDIR += p5-Log-Dispatch-FileWriteRotate SUBDIR += p5-Log-Dispatch-Perl SUBDIR += p5-Log-Dispatch-Screen-Color SUBDIR += p5-Log-Dispatch-Scribe SUBDIR += p5-Log-Dispatchouli SUBDIR += p5-Log-Dump SUBDIR += p5-Log-Handler SUBDIR += p5-Log-Log4perl SUBDIR += p5-Log-Log4perl-Appender-RabbitMQ SUBDIR += p5-Log-Log4perl-Appender-Socket-UNIX SUBDIR += p5-Log-Log4perl-Tiny SUBDIR += p5-Log-Message SUBDIR += p5-Log-Message-Simple SUBDIR += p5-Log-Minimal SUBDIR += p5-Log-Report SUBDIR += p5-Log-Report-Optional SUBDIR += p5-Log-Simple SUBDIR += p5-Log-Trace SUBDIR += p5-Log-TraceMessages SUBDIR += p5-Logfile-Rotate SUBDIR += p5-Luka SUBDIR += p5-Lvalue SUBDIR += p5-MCE SUBDIR += p5-MRO-Compat SUBDIR += p5-MRO-Define SUBDIR += p5-Mac-FileSpec-Unixish SUBDIR += p5-Mac-PropertyList SUBDIR += p5-Make SUBDIR += p5-Media-Type-Simple SUBDIR += p5-Memoize SUBDIR += p5-Memoize-ExpireLRU SUBDIR += p5-Meta-Builder SUBDIR += p5-MetaCPAN-Client SUBDIR += p5-Metabase-Client-Simple SUBDIR += p5-Metabase-Fact SUBDIR += p5-Method-Alias SUBDIR += p5-Method-Signatures SUBDIR += p5-Method-Signatures-Simple SUBDIR += p5-Minilla SUBDIR += p5-Minion SUBDIR += p5-Mixin-Event-Dispatch SUBDIR += p5-Mixin-Linewise SUBDIR += p5-Mknod SUBDIR += p5-Mo SUBDIR += p5-Mock-Quick SUBDIR += p5-Module-Build SUBDIR += p5-Module-Build-Convert SUBDIR += p5-Module-Build-Kwalitee SUBDIR += p5-Module-Build-Pluggable SUBDIR += p5-Module-Build-Pluggable-ReadmeMarkdownFromPod SUBDIR += p5-Module-Build-Tiny SUBDIR += p5-Module-Build-XSUtil SUBDIR += p5-Module-CPANTS-Analyse SUBDIR += p5-Module-CPANfile SUBDIR += p5-Module-CheckDeps SUBDIR += p5-Module-CheckVersion SUBDIR += p5-Module-Collect SUBDIR += p5-Module-Compile SUBDIR += p5-Module-CoreList SUBDIR += p5-Module-Dependency SUBDIR += p5-Module-Depends SUBDIR += p5-Module-Extract SUBDIR += p5-Module-Extract-Use SUBDIR += p5-Module-ExtractUse SUBDIR += p5-Module-Find SUBDIR += p5-Module-Functions SUBDIR += p5-Module-Implementation SUBDIR += p5-Module-Info SUBDIR += p5-Module-Info-File SUBDIR += p5-Module-Inspector SUBDIR += p5-Module-Install SUBDIR += p5-Module-Install-AuthorRequires SUBDIR += p5-Module-Install-AuthorTests SUBDIR += p5-Module-Install-ReadmeFromPod SUBDIR += p5-Module-Install-Repository SUBDIR += p5-Module-Install-Template SUBDIR += p5-Module-Install-TestBase SUBDIR += p5-Module-Install-XSUtil SUBDIR += p5-Module-List SUBDIR += p5-Module-Load SUBDIR += p5-Module-Load-Conditional SUBDIR += p5-Module-Loaded SUBDIR += p5-Module-Manifest SUBDIR += p5-Module-Math-Depends SUBDIR += p5-Module-Metadata SUBDIR += p5-Module-Path SUBDIR += p5-Module-Pluggable SUBDIR += p5-Module-Pluggable-Fast SUBDIR += p5-Module-Pluggable-Ordered SUBDIR += p5-Module-Reader SUBDIR += p5-Module-Recursive-Require SUBDIR += p5-Module-Refresh SUBDIR += p5-Module-Release SUBDIR += p5-Module-Reload SUBDIR += p5-Module-Reload-Sel SUBDIR += p5-Module-Runtime SUBDIR += p5-Module-Runtime-Conflicts SUBDIR += p5-Module-ScanDeps SUBDIR += p5-Module-Setup SUBDIR += p5-Module-Starter SUBDIR += p5-Module-Starter-PBP SUBDIR += p5-Module-Starter-Plugin-SimpleStore SUBDIR += p5-Module-Starter-Plugin-TT2 SUBDIR += p5-Module-Used SUBDIR += p5-Module-Util SUBDIR += p5-Module-Version SUBDIR += p5-Module-Versions SUBDIR += p5-Module-Versions-Report SUBDIR += p5-Mojolicious-Plugin-NYTProf SUBDIR += p5-Moo SUBDIR += p5-MooX-Cmd SUBDIR += p5-MooX-ConfigFromFile SUBDIR += p5-MooX-File-ConfigDir SUBDIR += p5-MooX-HandlesVia SUBDIR += p5-MooX-Options SUBDIR += p5-MooX-StrictConstructor SUBDIR += p5-MooX-Thunking SUBDIR += p5-MooX-TypeTiny SUBDIR += p5-MooX-Types-MooseLike SUBDIR += p5-MooX-Types-MooseLike-Numeric SUBDIR += p5-MooX-late SUBDIR += p5-Moos SUBDIR += p5-Moose SUBDIR += p5-Moose-Autobox SUBDIR += p5-Moose-Policy SUBDIR += p5-Moose-Test SUBDIR += p5-MooseX-Aliases SUBDIR += p5-MooseX-App SUBDIR += p5-MooseX-App-Cmd SUBDIR += p5-MooseX-ArrayRef SUBDIR += p5-MooseX-Async SUBDIR += p5-MooseX-Attribute-Chained SUBDIR += p5-MooseX-Attribute-ENV SUBDIR += p5-MooseX-AttributeHelpers SUBDIR += p5-MooseX-AttributeShortcuts SUBDIR += p5-MooseX-AuthorizedMethods SUBDIR += p5-MooseX-ClassAttribute SUBDIR += p5-MooseX-Clone SUBDIR += p5-MooseX-CompileTime-Traits SUBDIR += p5-MooseX-ConfigFromFile SUBDIR += p5-MooseX-CoverableModifiers SUBDIR += p5-MooseX-Daemonize SUBDIR += p5-MooseX-Declare SUBDIR += p5-MooseX-Emulate-Class-Accessor-Fast SUBDIR += p5-MooseX-FollowPBP SUBDIR += p5-MooseX-Getopt SUBDIR += p5-MooseX-Has-Options SUBDIR += p5-MooseX-Has-Sugar SUBDIR += p5-MooseX-HasDefaults SUBDIR += p5-MooseX-IOC SUBDIR += p5-MooseX-InsideOut SUBDIR += p5-MooseX-LazyRequire SUBDIR += p5-MooseX-Lists SUBDIR += p5-MooseX-Log-Log4perl SUBDIR += p5-MooseX-MarkAsMethods SUBDIR += p5-MooseX-Meta-TypeConstraint-ForceCoercion SUBDIR += p5-MooseX-Meta-TypeConstraint-Mooish SUBDIR += p5-MooseX-MetaDescription SUBDIR += p5-MooseX-Method-Signatures SUBDIR += p5-MooseX-MethodAttributes SUBDIR += p5-MooseX-MultiInitArg SUBDIR += p5-MooseX-MultiMethods SUBDIR += p5-MooseX-NonMoose SUBDIR += p5-MooseX-Object-Pluggable SUBDIR += p5-MooseX-OneArgNew SUBDIR += p5-MooseX-POE SUBDIR += p5-MooseX-Params-Validate SUBDIR += p5-MooseX-RelatedClassRoles SUBDIR += p5-MooseX-Role-Loggable SUBDIR += p5-MooseX-Role-Matcher SUBDIR += p5-MooseX-Role-Parameterized SUBDIR += p5-MooseX-Role-Strict SUBDIR += p5-MooseX-Runnable SUBDIR += p5-MooseX-SemiAffordanceAccessor SUBDIR += p5-MooseX-SetOnce SUBDIR += p5-MooseX-SimpleConfig SUBDIR += p5-MooseX-Singleton SUBDIR += p5-MooseX-Storage SUBDIR += p5-MooseX-StrictConstructor SUBDIR += p5-MooseX-TraitFor-Meta-Class-BetterAnonClassNames SUBDIR += p5-MooseX-Traits SUBDIR += p5-MooseX-Traits-Pluggable SUBDIR += p5-MooseX-TransactionalMethods SUBDIR += p5-MooseX-Types SUBDIR += p5-MooseX-Types-Common SUBDIR += p5-MooseX-Types-DateTime SUBDIR += p5-MooseX-Types-DateTime-ButMaintained SUBDIR += p5-MooseX-Types-DateTime-MoreCoercions SUBDIR += p5-MooseX-Types-DateTime-MySQL SUBDIR += p5-MooseX-Types-DateTimeX SUBDIR += p5-MooseX-Types-ISO8601 SUBDIR += p5-MooseX-Types-JSON SUBDIR += p5-MooseX-Types-LoadableClass SUBDIR += p5-MooseX-Types-Path-Class SUBDIR += p5-MooseX-Types-Path-Tiny SUBDIR += p5-MooseX-Types-Perl SUBDIR += p5-MooseX-Types-PortNumber SUBDIR += p5-MooseX-Types-Set-Object SUBDIR += p5-MooseX-Types-Signal SUBDIR += p5-MooseX-Types-Stringlike SUBDIR += p5-MooseX-Types-Structured SUBDIR += p5-MooseX-Types-URI SUBDIR += p5-MooseX-Types-VariantTable SUBDIR += p5-MooseX-Util SUBDIR += p5-Mouse SUBDIR += p5-MouseX-App-Cmd SUBDIR += p5-MouseX-AttributeHelpers SUBDIR += p5-MouseX-ConfigFromFile SUBDIR += p5-MouseX-Foreign SUBDIR += p5-MouseX-Getopt SUBDIR += p5-MouseX-NativeTraits SUBDIR += p5-MouseX-StrictConstructor SUBDIR += p5-MouseX-Traits SUBDIR += p5-MouseX-Types SUBDIR += p5-MouseX-Types-Path-Class SUBDIR += p5-Multiplex-CMD SUBDIR += p5-NEXT SUBDIR += p5-Net-DBus SUBDIR += p5-Net-ZooKeeper SUBDIR += p5-No-Worries SUBDIR += p5-Number-Bytes-Human SUBDIR += p5-Number-Tolerant SUBDIR += p5-OLE-Storage_Lite SUBDIR += p5-OOTools SUBDIR += p5-Object-Accessor SUBDIR += p5-Object-Array SUBDIR += p5-Object-Authority SUBDIR += p5-Object-Container SUBDIR += p5-Object-Declare SUBDIR += p5-Object-Destroyer SUBDIR += p5-Object-Enum SUBDIR += p5-Object-Event SUBDIR += p5-Object-Import SUBDIR += p5-Object-InsideOut SUBDIR += p5-Object-MultiType SUBDIR += p5-Object-Pluggable SUBDIR += p5-Object-Realize-Later SUBDIR += p5-Object-Role SUBDIR += p5-Object-Signature SUBDIR += p5-Object-Simple SUBDIR += p5-Object-Tiny SUBDIR += p5-Object-Tiny-Lvalue SUBDIR += p5-Olson-Abbreviations SUBDIR += p5-Opcodes SUBDIR += p5-OrePAN2 SUBDIR += p5-Ouch SUBDIR += p5-PAR SUBDIR += p5-PAR-Dist SUBDIR += p5-PAR-Packer SUBDIR += p5-PCSC-Card SUBDIR += p5-PHP-Serialization SUBDIR += p5-POE SUBDIR += p5-POE-API-Hooks SUBDIR += p5-POE-API-Peek SUBDIR += p5-POE-Component-Child SUBDIR += p5-POE-Component-Cron SUBDIR += p5-POE-Component-Daemon SUBDIR += p5-POE-Component-DebugShell SUBDIR += p5-POE-Component-DirWatch SUBDIR += p5-POE-Component-Hailo SUBDIR += p5-POE-Component-IKC SUBDIR += p5-POE-Component-JobQueue SUBDIR += p5-POE-Component-Logger SUBDIR += p5-POE-Component-Pluggable SUBDIR += p5-POE-Component-RSS SUBDIR += p5-POE-Component-RSSAggregator SUBDIR += p5-POE-Component-Schedule SUBDIR += p5-POE-Component-Server-XMLRPC SUBDIR += p5-POE-Component-Syndicator SUBDIR += p5-POE-Component-TSTP SUBDIR += p5-POE-Devel-Profiler SUBDIR += p5-POE-Loop-AnyEvent SUBDIR += p5-POE-Loop-Glib SUBDIR += p5-POE-Loop-Tk SUBDIR += p5-POE-Quickie SUBDIR += p5-POE-Session-MultiDispatch SUBDIR += p5-POE-Stage SUBDIR += p5-POE-Test-Loops SUBDIR += p5-POE-XS-Loop-Poll SUBDIR += p5-POE-XS-Queue-Array SUBDIR += p5-POEx-Role-SessionInstantiation SUBDIR += p5-POEx-Role-Streaming SUBDIR += p5-POEx-Types SUBDIR += p5-POSIX-strftime-Compiler SUBDIR += p5-POSIX-strptime SUBDIR += p5-PPerl SUBDIR += p5-PV SUBDIR += p5-Package-Constants SUBDIR += p5-Package-DeprecationManager SUBDIR += p5-Package-Generator SUBDIR += p5-Package-Stash SUBDIR += p5-Package-Stash-XS SUBDIR += p5-Package-Variant SUBDIR += p5-PadWalker SUBDIR += p5-Parallel-Async SUBDIR += p5-Parallel-Fork-BossWorker SUBDIR += p5-Parallel-ForkManager SUBDIR += p5-Parallel-Iterator SUBDIR += p5-Parallel-Prefork SUBDIR += p5-Parallel-Scoreboard SUBDIR += p5-Params-CallbackRequest SUBDIR += p5-Params-Check SUBDIR += p5-Params-Classify SUBDIR += p5-Params-Coerce SUBDIR += p5-Params-Util SUBDIR += p5-Params-Validate SUBDIR += p5-Params-Validate-Dependencies SUBDIR += p5-Params-ValidationCompiler SUBDIR += p5-Paranoid SUBDIR += p5-Paranoid-Log-Email SUBDIR += p5-Paranoid-Log-Syslog SUBDIR += p5-Parse-CPAN-Packages SUBDIR += p5-Parse-CPAN-Packages-Fast SUBDIR += p5-Parse-ErrorString-Perl SUBDIR += p5-Parse-ExuberantCTags SUBDIR += p5-Parse-LocalDistribution SUBDIR += p5-Parse-Method-Signatures SUBDIR += p5-Parse-PMFile SUBDIR += p5-Parse-PerlConfig SUBDIR += p5-Parse-PlainConfig SUBDIR += p5-Parse-RecDescent SUBDIR += p5-Parse-Win32Registry SUBDIR += p5-Parse-Yapp SUBDIR += p5-ParseLex SUBDIR += p5-ParseTemplate SUBDIR += p5-PatchReader SUBDIR += p5-Path-Abstract SUBDIR += p5-Path-Class SUBDIR += p5-Path-Class-File-Lockable SUBDIR += p5-Path-Dispatcher SUBDIR += p5-Path-Dispatcher-Declarative SUBDIR += p5-Path-Extended SUBDIR += p5-Path-FindDev SUBDIR += p5-Path-IsDev SUBDIR += p5-Path-Iterator-Rule SUBDIR += p5-Path-Resource SUBDIR += p5-Path-Tiny SUBDIR += p5-PathTools SUBDIR += p5-Paws SUBDIR += p5-Pegex SUBDIR += p5-Perl-Critic-Deprecated SUBDIR += p5-Perl-Metrics-Lite SUBDIR += p5-Perl-Metrics-Simple SUBDIR += p5-Perl-OSType SUBDIR += p5-Perl-PrereqScanner SUBDIR += p5-Perl-PrereqScanner-Lite SUBDIR += p5-Perl-Tidy SUBDIR += p5-Perl-Unsafe-Signals SUBDIR += p5-Perl-Version SUBDIR += p5-Perl-osnames SUBDIR += p5-Perl4-CoreLibs SUBDIR += p5-Perl6-Builtins SUBDIR += p5-Perl6-Export SUBDIR += p5-Perl6-Export-Attrs SUBDIR += p5-Perl6-Form SUBDIR += p5-Perl6-Junction SUBDIR += p5-Perl6-Rules SUBDIR += p5-Perl6-Say SUBDIR += p5-Perl6-Slurp SUBDIR += p5-PerlIO-Layers SUBDIR += p5-PerlIO-Util SUBDIR += p5-PerlIO-eol SUBDIR += p5-PerlIO-locale SUBDIR += p5-PerlIO-utf8_strict SUBDIR += p5-PerlIO-via-MD5 SUBDIR += p5-PerlIO-via-Timeout SUBDIR += p5-PerlIO-via-dynamic SUBDIR += p5-PerlIO-via-symlink SUBDIR += p5-PerlX-Maybe SUBDIR += p5-PerlX-Maybe-XS SUBDIR += p5-Pid-File-Flock SUBDIR += p5-Pipeline SUBDIR += p5-Pithub SUBDIR += p5-PkgConfig SUBDIR += p5-PkgConfig-LibPkgConf SUBDIR += p5-Pod-Coverage SUBDIR += p5-Pod-Coverage-Moose SUBDIR += p5-Pod-Coverage-TrustPod SUBDIR += p5-Pod-Tests SUBDIR += p5-Pod-Usage SUBDIR += p5-Pragmatic SUBDIR += p5-Proc-BackOff SUBDIR += p5-Proc-Background SUBDIR += p5-Proc-Daemon SUBDIR += p5-Proc-Fork SUBDIR += p5-Proc-Guard SUBDIR += p5-Proc-PID-File SUBDIR += p5-Proc-Pidfile SUBDIR += p5-Proc-ProcessTable SUBDIR += p5-Proc-Queue SUBDIR += p5-Proc-Reliable SUBDIR += p5-Proc-SafeExec SUBDIR += p5-Proc-Simple SUBDIR += p5-Proc-Wait3 SUBDIR += p5-Proc-WaitStat SUBDIR += p5-Progress-Any SUBDIR += p5-Project-Gantt SUBDIR += p5-Project-Libs SUBDIR += p5-Pthread-GetThreadId SUBDIR += p5-Qudo SUBDIR += p5-RPSL-Parser SUBDIR += p5-RRDTool-OO SUBDIR += p5-Range-String SUBDIR += p5-Rcs SUBDIR += p5-Rcs-Agent SUBDIR += p5-Readonly SUBDIR += p5-Readonly-XS SUBDIR += p5-ReadonlyX SUBDIR += p5-Ref-Util SUBDIR += p5-Ref-Util-XS SUBDIR += p5-Reflex SUBDIR += p5-Regexp-Assemble SUBDIR += p5-Regexp-Assemble-Compressed SUBDIR += p5-Regexp-Bind SUBDIR += p5-Regexp-Compare SUBDIR += p5-Regexp-Grammars SUBDIR += p5-Regexp-Lexer SUBDIR += p5-Regexp-RegGrp SUBDIR += p5-Regexp-Shellish SUBDIR += p5-Regexp-Subst-Parallel SUBDIR += p5-Religion SUBDIR += p5-Reply SUBDIR += p5-ResourcePool SUBDIR += p5-Resources SUBDIR += p5-Return-MultiLevel SUBDIR += p5-Return-Type SUBDIR += p5-Return-Value SUBDIR += p5-Rinci SUBDIR += p5-Role-Basic SUBDIR += p5-Role-HasMessage SUBDIR += p5-Role-Identifiable SUBDIR += p5-Role-Tiny SUBDIR += p5-Rose-DateTime SUBDIR += p5-Rose-Object SUBDIR += p5-Router-R3 SUBDIR += p5-Routes-Tiny SUBDIR += p5-RunApp SUBDIR += p5-SDL SUBDIR += p5-SNMP-Persist SUBDIR += p5-SOAP-WSDL SUBDIR += p5-SPOPS SUBDIR += p5-SSN-Validate SUBDIR += p5-SUPER SUBDIR += p5-SVN-ACL SUBDIR += p5-SVN-Access SUBDIR += p5-SVN-Agent SUBDIR += p5-SVN-Dump SUBDIR += p5-SVN-Dumpfile SUBDIR += p5-SVN-Hook SUBDIR += p5-SVN-Hooks SUBDIR += p5-SVN-Log SUBDIR += p5-SVN-Look SUBDIR += p5-SVN-Mirror SUBDIR += p5-SVN-Notify SUBDIR += p5-SVN-Notify-Config SUBDIR += p5-SVN-Notify-Filter-AuthZMail SUBDIR += p5-SVN-Notify-Filter-EmailFlatFileDB SUBDIR += p5-SVN-Notify-Filter-Markdown SUBDIR += p5-SVN-Notify-Filter-Watchers SUBDIR += p5-SVN-Notify-Mirror SUBDIR += p5-SVN-Notify-Snapshot SUBDIR += p5-SVN-S4 SUBDIR += p5-SVN-Simple SUBDIR += p5-SVN-Statistics SUBDIR += p5-SVN-Web SUBDIR += p5-Safe-Isa SUBDIR += p5-Sah SUBDIR += p5-Scalar-Defer SUBDIR += p5-Scalar-Does SUBDIR += p5-Scalar-Listify SUBDIR += p5-Scalar-String SUBDIR += p5-Scalar-Util-LooksLikeNumber SUBDIR += p5-Scalar-Util-Numeric SUBDIR += p5-Scope-Guard SUBDIR += p5-Scope-Upper SUBDIR += p5-Script-isAperlScript SUBDIR += p5-Search-Binary SUBDIR += p5-Sentinel SUBDIR += p5-Sepia SUBDIR += p5-Set-Array SUBDIR += p5-Set-ConsistentHash SUBDIR += p5-Set-Crontab SUBDIR += p5-Set-CrossProduct SUBDIR += p5-Set-Infinite SUBDIR += p5-Set-NestedGroups SUBDIR += p5-Set-Object SUBDIR += p5-Set-Scalar SUBDIR += p5-Set-Tiny SUBDIR += p5-Shape SUBDIR += p5-Shell-Base SUBDIR += p5-Shell-EnvImporter SUBDIR += p5-Shell-Parser SUBDIR += p5-Shell-Source SUBDIR += p5-ShipIt SUBDIR += p5-ShipIt-Step-Manifest SUBDIR += p5-Slurp SUBDIR += p5-Smart-Comments SUBDIR += p5-Sort-Array SUBDIR += p5-Sort-ArrayOfArrays SUBDIR += p5-Sort-Key SUBDIR += p5-Sort-Key-DateTime SUBDIR += p5-Sort-Key-Top SUBDIR += p5-Sort-Maker SUBDIR += p5-Sort-Tree SUBDIR += p5-Sort-Versions SUBDIR += p5-Specio SUBDIR += p5-Spiffy SUBDIR += p5-Spoon SUBDIR += p5-Storable SUBDIR += p5-Stream SUBDIR += p5-Stream-Buffered SUBDIR += p5-Stream-Reader SUBDIR += p5-String-Approx SUBDIR += p5-String-CRC32 SUBDIR += p5-String-Checker SUBDIR += p5-String-Diff SUBDIR += p5-String-Dump SUBDIR += p5-String-Ediff SUBDIR += p5-String-Errf SUBDIR += p5-String-Formatter SUBDIR += p5-String-LRC SUBDIR += p5-String-Parity SUBDIR += p5-String-Random SUBDIR += p5-String-RexxParse SUBDIR += p5-String-Similarity SUBDIR += p5-String-TT SUBDIR += p5-Struct-Dumb SUBDIR += p5-Sub-Alias SUBDIR += p5-Sub-Current SUBDIR += p5-Sub-Delete SUBDIR += p5-Sub-Exporter SUBDIR += p5-Sub-Exporter-ForMethods SUBDIR += p5-Sub-Exporter-GlobExporter SUBDIR += p5-Sub-Exporter-Lexical SUBDIR += p5-Sub-Exporter-Progressive SUBDIR += p5-Sub-Identify SUBDIR += p5-Sub-Infix SUBDIR += p5-Sub-Info SUBDIR += p5-Sub-Install SUBDIR += p5-Sub-Installer SUBDIR += p5-Sub-Multi SUBDIR += p5-Sub-Name SUBDIR += p5-Sub-Override SUBDIR += p5-Sub-Prototype SUBDIR += p5-Sub-Quote SUBDIR += p5-Sub-Signatures SUBDIR += p5-Sub-Uplevel SUBDIR += p5-Sub-WrapPackages SUBDIR += p5-Symbol-Global-Name SUBDIR += p5-Symbol-Util SUBDIR += p5-Syntax-Keyword-Gather SUBDIR += p5-Syntax-Keyword-Junction SUBDIR += p5-Sys-CPU SUBDIR += p5-Sys-Info SUBDIR += p5-Sys-Info-Base SUBDIR += p5-Sys-Info-Driver-BSD SUBDIR += p5-Sys-MemInfo SUBDIR += p5-Sys-Mmap SUBDIR += p5-Sys-RunAlone SUBDIR += p5-Sys-RunAlways SUBDIR += p5-Sys-Sendfile SUBDIR += p5-Sys-Sendfile-FreeBSD SUBDIR += p5-Sys-Sig SUBDIR += p5-Sys-SigAction SUBDIR += p5-Sys-Syscall SUBDIR += p5-Sys-Trace SUBDIR += p5-Sys-Virt SUBDIR += p5-System-Command SUBDIR += p5-System-Sub SUBDIR += p5-System2 SUBDIR += p5-TAP-Formatter-JUnit SUBDIR += p5-TAP-Harness-JUnit SUBDIR += p5-TAP-SimpleOutput SUBDIR += p5-Taint-Runtime SUBDIR += p5-Taint-Util SUBDIR += p5-Task-Tiny SUBDIR += p5-Task-Weaken SUBDIR += p5-Tee SUBDIR += p5-Template-Provider-Encode SUBDIR += p5-Term-ANSIColor SUBDIR += p5-Term-ANSIScreen SUBDIR += p5-Term-Animation SUBDIR += p5-Term-CallEditor SUBDIR += p5-Term-Clui SUBDIR += p5-Term-EditLine SUBDIR += p5-Term-Encoding SUBDIR += p5-Term-Menus SUBDIR += p5-Term-ProgressBar SUBDIR += p5-Term-ProgressBar-Quiet SUBDIR += p5-Term-ProgressBar-Simple SUBDIR += p5-Term-Prompt SUBDIR += p5-Term-Query SUBDIR += p5-Term-RawInput SUBDIR += p5-Term-ReadKey SUBDIR += p5-Term-ReadLine SUBDIR += p5-Term-ReadLine-Gnu SUBDIR += p5-Term-ReadLine-Perl SUBDIR += p5-Term-ReadLine-TTYtter SUBDIR += p5-Term-ReadLine-Zoid SUBDIR += p5-Term-ReadPassword SUBDIR += p5-Term-Screen SUBDIR += p5-Term-ScreenColor SUBDIR += p5-Term-Shell SUBDIR += p5-Term-Size SUBDIR += p5-Term-Size-Any SUBDIR += p5-Term-Size-Perl SUBDIR += p5-Term-Sk SUBDIR += p5-Term-Table SUBDIR += p5-Term-Title SUBDIR += p5-Term-UI SUBDIR += p5-Term-VT102 SUBDIR += p5-Term-VT102-Boundless SUBDIR += p5-Term-Visual SUBDIR += p5-Test-API SUBDIR += p5-Test-Able SUBDIR += p5-Test-Able-Runner SUBDIR += p5-Test-Aggregate SUBDIR += p5-Test-Assertions SUBDIR += p5-Test-Base SUBDIR += p5-Test-Benchmark SUBDIR += p5-Test-BinaryData SUBDIR += p5-Test-Bits SUBDIR += p5-Test-CPAN-Meta SUBDIR += p5-Test-CPAN-Meta-YAML SUBDIR += p5-Test-CheckDeps SUBDIR += p5-Test-CheckManifest SUBDIR += p5-Test-Class SUBDIR += p5-Test-Class-Most SUBDIR += p5-Test-ClassAPI SUBDIR += p5-Test-Classy SUBDIR += p5-Test-CleanNamespaces SUBDIR += p5-Test-Cmd SUBDIR += p5-Test-Command SUBDIR += p5-Test-Command-Simple SUBDIR += p5-Test-Compile SUBDIR += p5-Test-DBIx-Class SUBDIR += p5-Test-Data SUBDIR += p5-Test-Debugger SUBDIR += p5-Test-Declare SUBDIR += p5-Test-Deep SUBDIR += p5-Test-Dependencies SUBDIR += p5-Test-DependentModules SUBDIR += p5-Test-Differences SUBDIR += p5-Test-Distribution SUBDIR += p5-Test-EOL SUBDIR += p5-Test-Exception SUBDIR += p5-Test-Expect SUBDIR += p5-Test-FailWarnings SUBDIR += p5-Test-Fake-HTTPD SUBDIR += p5-Test-Fatal SUBDIR += p5-Test-File SUBDIR += p5-Test-File-Contents SUBDIR += p5-Test-File-ShareDir SUBDIR += p5-Test-Filename SUBDIR += p5-Test-Fixme SUBDIR += p5-Test-Fixture-DBIC-Schema SUBDIR += p5-Test-Group SUBDIR += p5-Test-HTML-Tidy SUBDIR += p5-Test-Harness SUBDIR += p5-Test-Harness-Straps SUBDIR += p5-Test-HasVersion SUBDIR += p5-Test-HexDifferences SUBDIR += p5-Test-HexString SUBDIR += p5-Test-Identity SUBDIR += p5-Test-If SUBDIR += p5-Test-InDistDir SUBDIR += p5-Test-Inline SUBDIR += p5-Test-Inter SUBDIR += p5-Test-JSON SUBDIR += p5-Test-Kwalitee SUBDIR += p5-Test-Lazy SUBDIR += p5-Test-LeakTrace SUBDIR += p5-Test-LectroTest SUBDIR += p5-Test-LoadAllModules SUBDIR += p5-Test-Log-Log4perl SUBDIR += p5-Test-Log4perl SUBDIR += p5-Test-LongString SUBDIR += p5-Test-Manifest SUBDIR += p5-Test-ManyParams SUBDIR += p5-Test-Memory-Cycle SUBDIR += p5-Test-Mini SUBDIR += p5-Test-Mini-Unit SUBDIR += p5-Test-Mock-Guard SUBDIR += p5-Test-Mock-LWP SUBDIR += p5-Test-Mock-LWP-Dispatch SUBDIR += p5-Test-MockDateTime SUBDIR += p5-Test-MockModule SUBDIR += p5-Test-MockObject SUBDIR += p5-Test-MockRandom SUBDIR += p5-Test-MockTime SUBDIR += p5-Test-Modern SUBDIR += p5-Test-Module-Used SUBDIR += p5-Test-Moose-More SUBDIR += p5-Test-More-UTF8 SUBDIR += p5-Test-Most SUBDIR += p5-Test-Name-FromLine SUBDIR += p5-Test-Needs SUBDIR += p5-Test-Net-LDAP SUBDIR += p5-Test-Net-RabbitMQ SUBDIR += p5-Test-NoTabs SUBDIR += p5-Test-NoWarnings SUBDIR += p5-Test-Number-Delta SUBDIR += p5-Test-Object SUBDIR += p5-Test-OpenLDAP SUBDIR += p5-Test-Output SUBDIR += p5-Test-POE-Client-TCP SUBDIR += p5-Test-POE-Server-TCP SUBDIR += p5-Test-Parser SUBDIR += p5-Test-PerlTidy SUBDIR += p5-Test-Pod SUBDIR += p5-Test-Pod-Coverage SUBDIR += p5-Test-Pod-Coverage-Permissive SUBDIR += p5-Test-Portability-Files SUBDIR += p5-Test-Prereq SUBDIR += p5-Test-RandomResults SUBDIR += p5-Test-Refcount SUBDIR += p5-Test-Reporter SUBDIR += p5-Test-Reporter-Transport-Metabase SUBDIR += p5-Test-Requires SUBDIR += p5-Test-Requires-Git SUBDIR += p5-Test-RequiresInternet SUBDIR += p5-Test-Roo SUBDIR += p5-Test-Script SUBDIR += p5-Test-Script-Run SUBDIR += p5-Test-SharedFork SUBDIR += p5-Test-Signature SUBDIR += p5-Test-Simple SUBDIR += p5-Test-Singleton SUBDIR += p5-Test-Spec SUBDIR += p5-Test-Spelling SUBDIR += p5-Test-Strict SUBDIR += p5-Test-SubCalls SUBDIR += p5-Test-Synopsis SUBDIR += p5-Test-Sys-Info SUBDIR += p5-Test-TAP-HTMLMatrix SUBDIR += p5-Test-TAP-Model SUBDIR += p5-Test-TCP SUBDIR += p5-Test-TableDriven SUBDIR += p5-Test-Taint SUBDIR += p5-Test-TempDir-Tiny SUBDIR += p5-Test-Time SUBDIR += p5-Test-Timer SUBDIR += p5-Test-TinyMocker SUBDIR += p5-Test-Trap SUBDIR += p5-Test-Unit SUBDIR += p5-Test-UseAllModules SUBDIR += p5-Test-Version SUBDIR += p5-Test-WWW-Declare SUBDIR += p5-Test-WWW-Mechanize SUBDIR += p5-Test-WWW-Mechanize-CGI SUBDIR += p5-Test-WWW-Mechanize-CGIApp SUBDIR += p5-Test-WWW-Mechanize-Catalyst SUBDIR += p5-Test-WWW-Mechanize-PSGI SUBDIR += p5-Test-WWW-Selenium SUBDIR += p5-Test-Warn SUBDIR += p5-Test-Warnings SUBDIR += p5-Test-Weaken SUBDIR += p5-Test-Without-Module SUBDIR += p5-Test-XML SUBDIR += p5-Test-XML-Valid SUBDIR += p5-Test-YAML SUBDIR += p5-Test-YAML-Meta SUBDIR += p5-Test-YAML-Valid SUBDIR += p5-Test-utf8 SUBDIR += p5-Test2-Harness SUBDIR += p5-Test2-Plugin-NoWarnings SUBDIR += p5-Test2-Suite SUBDIR += p5-Text-Levenshtein SUBDIR += p5-Text-Levenshtein-Damerau SUBDIR += p5-Text-LevenshteinXS SUBDIR += p5-Text-Outdent SUBDIR += p5-Text-vFile-asData SUBDIR += p5-TheSchwartz SUBDIR += p5-TheSchwartz-Simple SUBDIR += p5-TheSchwartz-Worker-SendEmail SUBDIR += p5-Thread-Apartment SUBDIR += p5-Thread-Cancel SUBDIR += p5-Thread-Pool-Simple SUBDIR += p5-Thread-Queue SUBDIR += p5-Thread-Queue-Duplex SUBDIR += p5-Thread-Suspend SUBDIR += p5-Thrift SUBDIR += p5-Thrift-XS SUBDIR += p5-Throwable SUBDIR += p5-Tie-Array-Pack SUBDIR += p5-Tie-Array-Sorted SUBDIR += p5-Tie-CPHash SUBDIR += p5-Tie-Cache SUBDIR += p5-Tie-DB_File-SplitHash SUBDIR += p5-Tie-DB_FileLock SUBDIR += p5-Tie-File SUBDIR += p5-Tie-File-AsHash SUBDIR += p5-Tie-FileLRUCache SUBDIR += p5-Tie-Function SUBDIR += p5-Tie-Hash-Indexed SUBDIR += p5-Tie-Hash-MultiValue SUBDIR += p5-Tie-Hash-Regex SUBDIR += p5-Tie-Hash-Sorted SUBDIR += p5-Tie-Hash-TwoWay SUBDIR += p5-Tie-IxHash SUBDIR += p5-Tie-LLHash SUBDIR += p5-Tie-RefHash SUBDIR += p5-Tie-RefHash-Weak SUBDIR += p5-Tie-RegexpHash SUBDIR += p5-Tie-Restore SUBDIR += p5-Tie-ShareLite SUBDIR += p5-Tie-Simple SUBDIR += p5-Tie-ToObject SUBDIR += p5-Tie-Util SUBDIR += p5-Tie-iCal SUBDIR += p5-Time-Clock SUBDIR += p5-Time-Crontab SUBDIR += p5-Time-Duration SUBDIR += p5-Time-Duration-Parse SUBDIR += p5-Time-Format SUBDIR += p5-Time-HiRes SUBDIR += p5-Time-Interval SUBDIR += p5-Time-Local SUBDIR += p5-Time-Mock SUBDIR += p5-Time-Object SUBDIR += p5-Time-Out SUBDIR += p5-Time-ParseDate SUBDIR += p5-Time-Period SUBDIR += p5-Time-Piece SUBDIR += p5-Time-Piece-Range SUBDIR += p5-Time-Progress SUBDIR += p5-Time-Stopwatch SUBDIR += p5-Time-Warp SUBDIR += p5-Time-modules SUBDIR += p5-Time-timegm SUBDIR += p5-TimeDate SUBDIR += p5-ToolSet SUBDIR += p5-TraceFuncs SUBDIR += p5-Tree-Binary SUBDIR += p5-Tree-Binary-Dictionary SUBDIR += p5-Tree-DAG_Node SUBDIR += p5-Tree-Node SUBDIR += p5-Tree-Parser SUBDIR += p5-Tree-R SUBDIR += p5-Tree-RedBlack SUBDIR += p5-Tree-Simple SUBDIR += p5-Tree-Simple-View SUBDIR += p5-Tree-Simple-VisitorFactory SUBDIR += p5-Tree-Trie SUBDIR += p5-Type-Tie SUBDIR += p5-Type-Tiny SUBDIR += p5-Type-Tiny-Signatures SUBDIR += p5-Type-Tiny-XS SUBDIR += p5-Types-Core SUBDIR += p5-Types-Path-Tiny SUBDIR += p5-Types-Serialiser SUBDIR += p5-Types-URI SUBDIR += p5-Types-UUID SUBDIR += p5-UDCode SUBDIR += p5-UI-Dialog SUBDIR += p5-UNIVERSAL-can SUBDIR += p5-UNIVERSAL-isa SUBDIR += p5-UNIVERSAL-moniker SUBDIR += p5-UNIVERSAL-ref SUBDIR += p5-UNIVERSAL-require SUBDIR += p5-UNIVERSAL-which SUBDIR += p5-UUID SUBDIR += p5-UUID-Random SUBDIR += p5-UUID-Random-Patch-UseMRS SUBDIR += p5-UUID-Tiny SUBDIR += p5-Uniq SUBDIR += p5-Unix-Groups SUBDIR += p5-Unix-Groups-FFI SUBDIR += p5-Unix-Statgrab SUBDIR += p5-Unix-Uptime SUBDIR += p5-User-Identity SUBDIR += p5-Util-Any SUBDIR += p5-VCP-Dest-svk SUBDIR += p5-VCP-Source-cvsbk SUBDIR += p5-VCP-autrijus SUBDIR += p5-VCS SUBDIR += p5-VCS-CVS SUBDIR += p5-VCS-Lite SUBDIR += p5-Validation-Class SUBDIR += p5-Variable-Eject SUBDIR += p5-Variable-Magic SUBDIR += p5-Want SUBDIR += p5-WeakRef SUBDIR += p5-Workflow SUBDIR += p5-XML-Compile-Tester SUBDIR += p5-XML-Pastor SUBDIR += p5-XS-Object-Magic SUBDIR += p5-XSLoader SUBDIR += p5-Xporter SUBDIR += p5-YAML-AppConfig SUBDIR += p5-Yada-Yada-Yada SUBDIR += p5-ZConf-GUI SUBDIR += p5-ZML SUBDIR += p5-accessors SUBDIR += p5-accessors-fast SUBDIR += p5-aliased SUBDIR += p5-asa SUBDIR += p5-autobox SUBDIR += p5-autobox-Core SUBDIR += p5-autodie SUBDIR += p5-autovivification SUBDIR += p5-bareword-filehandles SUBDIR += p5-boolean SUBDIR += p5-capitalization SUBDIR += p5-carton SUBDIR += p5-common-sense SUBDIR += p5-constant SUBDIR += p5-constant-boolean SUBDIR += p5-constant-def SUBDIR += p5-constant-defer SUBDIR += p5-constant-lexical SUBDIR += p5-cpan-listchanges SUBDIR += p5-curry SUBDIR += p5-enum SUBDIR += p5-ex-lib SUBDIR += p5-experimental SUBDIR += p5-forks SUBDIR += p5-github_creator SUBDIR += p5-goto-file SUBDIR += p5-iCal-Parser SUBDIR += p5-indirect SUBDIR += p5-interface SUBDIR += p5-latest SUBDIR += p5-lexical-underscore SUBDIR += p5-lib-abs SUBDIR += p5-libalarm SUBDIR += p5-libxml-enno SUBDIR += p5-local-lib SUBDIR += p5-match-simple SUBDIR += p5-mem SUBDIR += p5-mixin SUBDIR += p5-mocked SUBDIR += p5-multidimensional SUBDIR += p5-namespace-autoclean SUBDIR += p5-namespace-clean SUBDIR += p5-namespace-clean-xs SUBDIR += p5-namespace-sweep SUBDIR += p5-orz SUBDIR += p5-parent SUBDIR += p5-perlkde-kde4 SUBDIR += p5-perlqt-kde4 SUBDIR += p5-pip SUBDIR += p5-prefork SUBDIR += p5-reaper SUBDIR += p5-relative SUBDIR += p5-rpm-build-perl SUBDIR += p5-self SUBDIR += p5-self-init SUBDIR += p5-strictures SUBDIR += p5-subatom SUBDIR += p5-subversion SUBDIR += p5-superclass SUBDIR += p5-syntax SUBDIR += p5-threads SUBDIR += p5-threads-shared SUBDIR += p5-true SUBDIR += p5-uni-perl SUBDIR += p5-version SUBDIR += p65 SUBDIR += p8-platform SUBDIR += paexec SUBDIR += papi SUBDIR += papilio-loader SUBDIR += pas2dox SUBDIR += pasm SUBDIR += patch SUBDIR += pcc-libs SUBDIR += pccts SUBDIR += pcl SUBDIR += pcre SUBDIR += pcre++ SUBDIR += pcre2 SUBDIR += pcsc-ada SUBDIR += pcsc-lite SUBDIR += pdcurses SUBDIR += pear SUBDIR += pear-Config SUBDIR += pear-Console_Color SUBDIR += pear-Console_CommandLine SUBDIR += pear-Console_Getargs SUBDIR += pear-Console_Table SUBDIR += pear-Date SUBDIR += pear-Date_Holidays SUBDIR += pear-Date_Holidays_Austria SUBDIR += pear-Date_Holidays_Brazil SUBDIR += pear-Date_Holidays_Denmark SUBDIR += pear-Date_Holidays_Discordian SUBDIR += pear-Date_Holidays_EnglandWales SUBDIR += pear-Date_Holidays_Germany SUBDIR += pear-Date_Holidays_Iceland SUBDIR += pear-Date_Holidays_Ireland SUBDIR += pear-Date_Holidays_Italy SUBDIR += pear-Date_Holidays_Japan SUBDIR += pear-Date_Holidays_Netherlands SUBDIR += pear-Date_Holidays_Norway SUBDIR += pear-Date_Holidays_PHPdotNet SUBDIR += pear-Date_Holidays_Romania SUBDIR += pear-Date_Holidays_Slovenia SUBDIR += pear-Date_Holidays_Sweden SUBDIR += pear-Date_Holidays_UNO SUBDIR += pear-Date_Holidays_USA SUBDIR += pear-Date_Holidays_Ukraine SUBDIR += pear-Event_Dispatcher SUBDIR += pear-FSM SUBDIR += pear-File_Iterator SUBDIR += pear-HTML_BBCodeParser SUBDIR += pear-HTML_CSS SUBDIR += pear-HTML_Common SUBDIR += pear-HTML_Common2 SUBDIR += pear-HTML_Form SUBDIR += pear-HTML_Javascript SUBDIR += pear-HTML_Page2 SUBDIR += pear-HTML_QuickForm SUBDIR += pear-HTML_QuickForm2 SUBDIR += pear-HTML_QuickForm_Controller SUBDIR += pear-HTML_QuickForm_Livesearch SUBDIR += pear-HTML_QuickForm_Renderer_Tableless SUBDIR += pear-HTML_QuickForm_SelectFilter SUBDIR += pear-HTML_QuickForm_advmultiselect SUBDIR += pear-HTML_Select SUBDIR += pear-HTML_Select_Common SUBDIR += pear-HTML_Table SUBDIR += pear-HTML_Template_Flexy SUBDIR += pear-HTML_Template_IT SUBDIR += pear-HTML_Template_PHPLIB SUBDIR += pear-HTML_Template_Sigma SUBDIR += pear-HTML_TreeMenu SUBDIR += pear-Horde_Alarm SUBDIR += pear-Horde_Argv SUBDIR += pear-Horde_Autoloader SUBDIR += pear-Horde_Autoloader_Cache SUBDIR += pear-Horde_Cache SUBDIR += pear-Horde_Cli SUBDIR += pear-Horde_Constraint SUBDIR += pear-Horde_Controller SUBDIR += pear-Horde_Core SUBDIR += pear-Horde_Data SUBDIR += pear-Horde_Date SUBDIR += pear-Horde_Date_Parser SUBDIR += pear-Horde_Exception SUBDIR += pear-Horde_History SUBDIR += pear-Horde_Icalendar SUBDIR += pear-Horde_Injector SUBDIR += pear-Horde_Itip SUBDIR += pear-Horde_Lock SUBDIR += pear-Horde_LoginTasks SUBDIR += pear-Horde_Nls SUBDIR += pear-Horde_Notification SUBDIR += pear-Horde_Prefs SUBDIR += pear-Horde_Queue SUBDIR += pear-Horde_Rdo SUBDIR += pear-Horde_Role SUBDIR += pear-Horde_Scheduler SUBDIR += pear-Horde_Serialize SUBDIR += pear-Horde_Stream SUBDIR += pear-Horde_Stream_Filter SUBDIR += pear-Horde_Stream_Wrapper SUBDIR += pear-Horde_Support SUBDIR += pear-Horde_Thrift SUBDIR += pear-Horde_Timezone SUBDIR += pear-Horde_Token SUBDIR += pear-Horde_Translation SUBDIR += pear-Horde_Tree SUBDIR += pear-Horde_Util SUBDIR += pear-Horde_View SUBDIR += pear-I18N SUBDIR += pear-Math_Fraction SUBDIR += pear-Net_Gearman SUBDIR += pear-OLE SUBDIR += pear-PEAR_Info SUBDIR += pear-PEAR_PackageFileManager SUBDIR += pear-PEAR_PackageFileManager2 SUBDIR += pear-PEAR_PackageFileManager_Plugins SUBDIR += pear-PHPDoc SUBDIR += pear-PHPTAL SUBDIR += pear-PHPUnit_MockObject SUBDIR += pear-PHP_ArrayOf SUBDIR += pear-PHP_Beautifier SUBDIR += pear-PHP_CodeBrowser SUBDIR += pear-PHP_CodeCoverage SUBDIR += pear-PHP_CodeSniffer SUBDIR += pear-PHP_Compat SUBDIR += pear-PHP_CompatInfo SUBDIR += pear-PHP_Depend SUBDIR += pear-PHP_PMD SUBDIR += pear-PHP_Parser SUBDIR += pear-PHP_ParserGenerator SUBDIR += pear-PHP_Timer SUBDIR += pear-PHP_TokenStream SUBDIR += pear-PHP_UML SUBDIR += pear-Pager SUBDIR += pear-PhpDocumentor SUBDIR += pear-Pirum SUBDIR += pear-SebastianBergmann_FinderFacade SUBDIR += pear-SebastianBergmann_Git SUBDIR += pear-SebastianBergmann_PHPCPD SUBDIR += pear-SebastianBergmann_PHPLOC SUBDIR += pear-SebastianBergmann_Version SUBDIR += pear-Structure_LinkedList SUBDIR += pear-Structures_DataGrid SUBDIR += pear-Structures_DataGrid_Renderer_Console SUBDIR += pear-Structures_DataGrid_Renderer_HTMLSortForm SUBDIR += pear-Structures_DataGrid_Renderer_HTMLTable SUBDIR += pear-Structures_DataGrid_Renderer_XUL SUBDIR += pear-Symfony_Component_Console SUBDIR += pear-Symfony_Component_Finder SUBDIR += pear-System_Command SUBDIR += pear-Testing_Selenium SUBDIR += pear-Text_Diff SUBDIR += pear-TheSeer_DirectoryScanner SUBDIR += pear-TheSeer_fDOMDocument SUBDIR += pear-TheSeer_fXSL SUBDIR += pear-TheSeer_phpDox SUBDIR += pear-VFS SUBDIR += pear-Validate SUBDIR += pear-Validate_AU SUBDIR += pear-Validate_Finance SUBDIR += pear-Validate_Finance_CreditCard SUBDIR += pear-Validate_US SUBDIR += pear-Var_Dump SUBDIR += pear-VersionControl_Git SUBDIR += pear-VersionControl_SVN SUBDIR += pear-XML_NITF SUBDIR += pear-XML_Parser SUBDIR += pear-XML_RSS SUBDIR += pear-XML_SVG SUBDIR += pear-XML_Serializer SUBDIR += pear-XML_Transformer SUBDIR += pear-XML_Tree SUBDIR += pear-XML_Util SUBDIR += pear-channel-doctrine SUBDIR += pear-channel-ezc SUBDIR += pear-channel-horde SUBDIR += pear-channel-htmlpurifier.org SUBDIR += pear-channel-openpear SUBDIR += pear-channel-pdepend SUBDIR += pear-channel-phing SUBDIR += pear-channel-phpdoc SUBDIR += pear-channel-phpmd SUBDIR += pear-channel-phpunit SUBDIR += pear-channel-pirum SUBDIR += pear-channel-symfony SUBDIR += pear-channel-symfony2 SUBDIR += pear-channel-theseer SUBDIR += pear-channel-twig SUBDIR += pear-codegen SUBDIR += pear-ezc_Base SUBDIR += pear-ezc_ConsoleTools SUBDIR += pear-htmlpurifier SUBDIR += pear-pdepend-staticReflection SUBDIR += pear-phing SUBDIR += pecl-APCu SUBDIR += pecl-APCu4 SUBDIR += pecl-dio SUBDIR += pecl-eio SUBDIR += pecl-ev SUBDIR += pecl-event SUBDIR += pecl-expect SUBDIR += pecl-gearman SUBDIR += pecl-grpc SUBDIR += pecl-hrtime SUBDIR += pecl-htscanner SUBDIR += pecl-inotify SUBDIR += pecl-intl SUBDIR += pecl-jsmin SUBDIR += pecl-jsmin2 SUBDIR += pecl-json_post SUBDIR += pecl-jsonc SUBDIR += pecl-jsond SUBDIR += pecl-jsonnet SUBDIR += pecl-judy SUBDIR += pecl-libevent SUBDIR += pecl-memoize SUBDIR += pecl-msgpack SUBDIR += pecl-msgpack0 SUBDIR += pecl-ncurses SUBDIR += pecl-newt SUBDIR += pecl-params SUBDIR += pecl-propro SUBDIR += pecl-propro2 SUBDIR += pecl-pthreads SUBDIR += pecl-pthreads2 SUBDIR += pecl-qb SUBDIR += pecl-raphf SUBDIR += pecl-raphf2 SUBDIR += pecl-request SUBDIR += pecl-runkit SUBDIR += pecl-scream SUBDIR += pecl-spl_types SUBDIR += pecl-statgrab SUBDIR += pecl-strict SUBDIR += pecl-svn SUBDIR += pecl-swoole SUBDIR += pecl-sync SUBDIR += pecl-test_helpers SUBDIR += pecl-trace SUBDIR += pecl-uopz SUBDIR += pecl-uploadprogress SUBDIR += pecl-uri_template SUBDIR += pecl-uuid SUBDIR += pecl-uv SUBDIR += pecl-vld SUBDIR += pecl-weakref SUBDIR += pecl-weakref2 SUBDIR += pecl-xdebug SUBDIR += pecl-xdebug26 SUBDIR += pecl-xhprof SUBDIR += pecl-yac SUBDIR += pecl-yaconf SUBDIR += pecl-zookeeper SUBDIR += pep8 SUBDIR += performance SUBDIR += perlconsole SUBDIR += phabricator SUBDIR += php-Psr_Log SUBDIR += php-composer SUBDIR += php-geshi SUBDIR += php-jq SUBDIR += php-libawl SUBDIR += php-maxminddb SUBDIR += php-memoize SUBDIR += php-scalar_objects SUBDIR += php-uprofiler SUBDIR += php5-blitz SUBDIR += php5-blitz-devel SUBDIR += php5-dav SUBDIR += php5-ice SUBDIR += php5-pinba SUBDIR += php5-thrift SUBDIR += php56-gettext SUBDIR += php56-json SUBDIR += php56-pcntl SUBDIR += php56-readline SUBDIR += php56-shmop SUBDIR += php56-sysvmsg SUBDIR += php56-sysvsem SUBDIR += php56-sysvshm SUBDIR += php56-tokenizer SUBDIR += php70-gettext SUBDIR += php70-intl SUBDIR += php70-json SUBDIR += php70-pcntl SUBDIR += php70-readline SUBDIR += php70-shmop SUBDIR += php70-sysvmsg SUBDIR += php70-sysvsem SUBDIR += php70-sysvshm SUBDIR += php70-tokenizer SUBDIR += php71-gettext SUBDIR += php71-intl SUBDIR += php71-json SUBDIR += php71-pcntl SUBDIR += php71-readline SUBDIR += php71-shmop SUBDIR += php71-sysvmsg SUBDIR += php71-sysvsem SUBDIR += php71-sysvshm SUBDIR += php71-tokenizer SUBDIR += php72-gettext SUBDIR += php72-intl SUBDIR += php72-json SUBDIR += php72-pcntl SUBDIR += php72-readline SUBDIR += php72-shmop SUBDIR += php72-sysvmsg SUBDIR += php72-sysvsem SUBDIR += php72-sysvshm SUBDIR += php72-tokenizer SUBDIR += phpbt SUBDIR += phpsh SUBDIR += phpunit SUBDIR += phpunit6 SUBDIR += phpunit7 SUBDIR += physfs SUBDIR += physfs-devel SUBDIR += picp SUBDIR += picprog SUBDIR += pig SUBDIR += pijul SUBDIR += piklab SUBDIR += pipestatus SUBDIR += pire SUBDIR += pit SUBDIR += pkg-info.el SUBDIR += pkgconf SUBDIR += plan9port + SUBDIR += plasma5-khotkeys + SUBDIR += plasma5-kwrited + SUBDIR += plasma5-plasma-sdk SUBDIR += pmccabe SUBDIR += pmd SUBDIR += poco SUBDIR += poco-ssl SUBDIR += ponscripter-sekai SUBDIR += popt SUBDIR += poslib SUBDIR += powerpc64-binutils SUBDIR += powerpc64-gcc SUBDIR += powerpc64-xtoolchain-gcc SUBDIR += poxml SUBDIR += poxml-kde4 SUBDIR += ppl SUBDIR += pragmarcs SUBDIR += premake SUBDIR += premake4 SUBDIR += projectcenter SUBDIR += protobuf SUBDIR += protobuf-c SUBDIR += protobuf25 SUBDIR += protozero SUBDIR += pructl SUBDIR += psptoolchain SUBDIR += psptoolchain-binutils SUBDIR += psptoolchain-gcc-stage1 SUBDIR += psptoolchain-gcc-stage2 SUBDIR += psptoolchain-gdb SUBDIR += psptoolchain-newlib SUBDIR += psptoolchain-pspsdk-stage1 SUBDIR += psptoolchain-pspsdk-stage2 SUBDIR += pstreams SUBDIR += psvn SUBDIR += pth SUBDIR += pth-hard SUBDIR += pthsem SUBDIR += ptlib SUBDIR += ptmalloc SUBDIR += ptmalloc2 SUBDIR += pty SUBDIR += ptypes SUBDIR += publib SUBDIR += pure-ffi SUBDIR += pure-readline SUBDIR += pure-stldict SUBDIR += pure-stllib SUBDIR += pushmi SUBDIR += py-Acquisition SUBDIR += py-AddOns SUBDIR += py-Automat SUBDIR += py-Breve SUBDIR += py-BytecodeAssembler SUBDIR += py-DateTime SUBDIR += py-DocumentTemplate SUBDIR += py-ExtensionClass SUBDIR += py-Faker SUBDIR += py-IBMQuantumExperience SUBDIR += py-Jinja2 SUBDIR += py-Jinja2-doc SUBDIR += py-Missing SUBDIR += py-MultiMapping SUBDIR += py-PEAK-Rules SUBDIR += py-Persistence SUBDIR += py-Pint SUBDIR += py-Products.ATContentTypes SUBDIR += py-Products.ATReferenceBrowserWidget SUBDIR += py-Products.Archetypes SUBDIR += py-Products.BTreeFolder2 SUBDIR += py-Products.CMFActionIcons SUBDIR += py-Products.CMFCalendar SUBDIR += py-Products.CMFCore SUBDIR += py-Products.CMFDefault SUBDIR += py-Products.CMFDiffTool SUBDIR += py-Products.CMFDynamicViewFTI SUBDIR += py-Products.CMFEditions SUBDIR += py-Products.CMFFormController SUBDIR += py-Products.CMFPlacefulWorkflow SUBDIR += py-Products.CMFQuickInstallerTool SUBDIR += py-Products.CMFTestCase SUBDIR += py-Products.CMFUid SUBDIR += py-Products.DCWorkflow SUBDIR += py-Products.ExtendedPathIndex SUBDIR += py-Products.ExternalEditor SUBDIR += py-Products.ExternalMethod SUBDIR += py-Products.GenericSetup SUBDIR += py-Products.LDAPMultiPlugins SUBDIR += py-Products.LDAPUserFolder SUBDIR += py-Products.MIMETools SUBDIR += py-Products.Marshall SUBDIR += py-Products.MimetypesRegistry SUBDIR += py-Products.OFSP SUBDIR += py-Products.PasswordResetTool SUBDIR += py-Products.PlacelessTranslationService SUBDIR += py-Products.PloneLanguageTool SUBDIR += py-Products.PloneTestCase SUBDIR += py-Products.PluginRegistry SUBDIR += py-Products.PortalTransforms SUBDIR += py-Products.PythonScripts SUBDIR += py-Products.ResourceRegistries SUBDIR += py-Products.StandardCacheManagers SUBDIR += py-Products.ZCTextIndex SUBDIR += py-Products.ZCatalog SUBDIR += py-Products.ZSQLMethods SUBDIR += py-Products.ZopeVersionControl SUBDIR += py-Products.contentmigration SUBDIR += py-Products.statusmessages SUBDIR += py-Products.validation SUBDIR += py-PyExecJS SUBDIR += py-PyLD SUBDIR += py-PyODE SUBDIR += py-PyUtilib SUBDIR += py-QtPy SUBDIR += py-RPyC SUBDIR += py-Record SUBDIR += py-SymbolType SUBDIR += py-ToscaWidgets SUBDIR += py-XStatic SUBDIR += py-XStatic-Angular SUBDIR += py-XStatic-Angular-Bootstrap SUBDIR += py-XStatic-Angular-FileUpload SUBDIR += py-XStatic-Angular-Gettext SUBDIR += py-XStatic-Angular-Schema-Form SUBDIR += py-XStatic-Angular-lrdragndrop SUBDIR += py-XStatic-Bootstrap-Datepicker SUBDIR += py-XStatic-Bootstrap-SCSS SUBDIR += py-XStatic-D3 SUBDIR += py-XStatic-Font-Awesome SUBDIR += py-XStatic-Hogan SUBDIR += py-XStatic-JQuery-Migrate SUBDIR += py-XStatic-JQuery.TableSorter SUBDIR += py-XStatic-JQuery.quicksearch SUBDIR += py-XStatic-JSEncrypt SUBDIR += py-XStatic-Jasmine SUBDIR += py-XStatic-Rickshaw SUBDIR += py-XStatic-Spin SUBDIR += py-XStatic-bootswatch SUBDIR += py-XStatic-jQuery SUBDIR += py-XStatic-jquery-ui SUBDIR += py-XStatic-mdi SUBDIR += py-XStatic-objectpath SUBDIR += py-XStatic-roboto-fontface SUBDIR += py-XStatic-smart-table SUBDIR += py-XStatic-term.js SUBDIR += py-XStatic-tv4 SUBDIR += py-ZopeUndo SUBDIR += py-adb SUBDIR += py-akismet SUBDIR += py-amalgamate SUBDIR += py-aniso8601 SUBDIR += py-anonfunc SUBDIR += py-anyconfig SUBDIR += py-anyjson SUBDIR += py-apache_conf_parser SUBDIR += py-apipkg SUBDIR += py-apns2 SUBDIR += py-appdirs SUBDIR += py-application SUBDIR += py-apptools SUBDIR += py-apscheduler SUBDIR += py-archetypes.querywidget SUBDIR += py-archetypes.referencebrowserwidget SUBDIR += py-archetypes.schemaextender SUBDIR += py-argcomplete SUBDIR += py-argh SUBDIR += py-argparse SUBDIR += py-args SUBDIR += py-arrow SUBDIR += py-asn1crypto SUBDIR += py-aspects SUBDIR += py-aspyct SUBDIR += py-astor SUBDIR += py-astroid SUBDIR += py-asttokens SUBDIR += py-async_generator SUBDIR += py-async_timeout SUBDIR += py-asyncio SUBDIR += py-atomiclong SUBDIR += py-atomicwrites SUBDIR += py-atpublic SUBDIR += py-attrs SUBDIR += py-automaton SUBDIR += py-avro SUBDIR += py-babel SUBDIR += py-babelfish SUBDIR += py-backports SUBDIR += py-backports.csv SUBDIR += py-backports.functools_lru_cache SUBDIR += py-backports.shutil_get_terminal_size SUBDIR += py-backports.tempfile SUBDIR += py-backports.weakref SUBDIR += py-backports_abc SUBDIR += py-bandit SUBDIR += py-bcdoc SUBDIR += py-bidict SUBDIR += py-billiard SUBDIR += py-binplist SUBDIR += py-biplist SUBDIR += py-bison SUBDIR += py-bitarray SUBDIR += py-bitstring SUBDIR += py-black SUBDIR += py-blessings SUBDIR += py-blinker SUBDIR += py-blist SUBDIR += py-bluelet SUBDIR += py-boto SUBDIR += py-botocore SUBDIR += py-bsd SUBDIR += py-buildbot SUBDIR += py-buildbot-console-view SUBDIR += py-buildbot-grid-view SUBDIR += py-buildbot-pkg SUBDIR += py-buildbot-waterfall-view SUBDIR += py-buildbot-worker SUBDIR += py-buildbot-www SUBDIR += py-bullet3 SUBDIR += py-cached-property SUBDIR += py-cachetools SUBDIR += py-calendar SUBDIR += py-canonicaljson SUBDIR += py-capstone SUBDIR += py-castellan SUBDIR += py-cclib SUBDIR += py-cdg SUBDIR += py-celery SUBDIR += py-certsrv SUBDIR += py-cffi SUBDIR += py-cfgparse SUBDIR += py-chainmap SUBDIR += py-characteristic SUBDIR += py-check-manifest SUBDIR += py-cheetah SUBDIR += py-ciphon SUBDIR += py-circuits SUBDIR += py-cjson SUBDIR += py-cld SUBDIR += py-cli-helpers SUBDIR += py-cliapp SUBDIR += py-click SUBDIR += py-click-log SUBDIR += py-click-plugins SUBDIR += py-click-threading SUBDIR += py-cliff SUBDIR += py-clint SUBDIR += py-clonedigger SUBDIR += py-cloudpickle SUBDIR += py-cluster SUBDIR += py-cmd2 SUBDIR += py-cmdtest SUBDIR += py-codecov SUBDIR += py-codegen SUBDIR += py-cog SUBDIR += py-collective.monkeypatcher SUBDIR += py-collective.z3cform.datetimewidget SUBDIR += py-colorama SUBDIR += py-coloredlogs SUBDIR += py-colorlog SUBDIR += py-columnize SUBDIR += py-conditional SUBDIR += py-configargparse SUBDIR += py-configobj SUBDIR += py-configparser SUBDIR += py-confusable_homoglyphs SUBDIR += py-constantly SUBDIR += py-construct SUBDIR += py-construct28 SUBDIR += py-contextlib2 SUBDIR += py-coreapi SUBDIR += py-coreschema SUBDIR += py-country SUBDIR += py-cov-core SUBDIR += py-coverage SUBDIR += py-crank SUBDIR += py-crcmod SUBDIR += py-ctags SUBDIR += py-cuisine SUBDIR += py-cursive SUBDIR += py-curtsies SUBDIR += py-cxx SUBDIR += py-cycler SUBDIR += py-d2to1 SUBDIR += py-daemon SUBDIR += py-daemon-runner SUBDIR += py-daemonize SUBDIR += py-daemons SUBDIR += py-dal SUBDIR += py-darcsver SUBDIR += py-darts.util.lru SUBDIR += py-dateutil SUBDIR += py-dateutils SUBDIR += py-dbus SUBDIR += py-ddt SUBDIR += py-debtcollector SUBDIR += py-decorator SUBDIR += py-decoratortools SUBDIR += py-defusedxml SUBDIR += py-delfick_error SUBDIR += py-deliciousapi SUBDIR += py-demjson SUBDIR += py-deprecation SUBDIR += py-dexml SUBDIR += py-dialog SUBDIR += py-diazo SUBDIR += py-dill SUBDIR += py-dirspec SUBDIR += py-dis3 SUBDIR += py-distorm SUBDIR += py-django-rq SUBDIR += py-django-rq-dashboard SUBDIR += py-django-tastypie-mongoengine SUBDIR += py-docker-py SUBDIR += py-dockerpty SUBDIR += py-docopt SUBDIR += py-dogpile.cache SUBDIR += py-doit SUBDIR += py-durus SUBDIR += py-dynrules SUBDIR += py-easyprocess SUBDIR += py-editdistance SUBDIR += py-efilter SUBDIR += py-efl SUBDIR += py-eggtestinfo SUBDIR += py-ejson SUBDIR += py-entrypoints SUBDIR += py-enum-compat SUBDIR += py-enum34 SUBDIR += py-envisage SUBDIR += py-epdb SUBDIR += py-epsilon SUBDIR += py-evdev SUBDIR += py-eventlib SUBDIR += py-exam SUBDIR += py-expiringdict SUBDIR += py-extras SUBDIR += py-extremes SUBDIR += py-ezpyinline SUBDIR += py-fabric SUBDIR += py-fabric3 SUBDIR += py-fam SUBDIR += py-fastcache SUBDIR += py-fasteners SUBDIR += py-fastentrypoints SUBDIR += py-fastimport SUBDIR += py-fastnumbers SUBDIR += py-filemagic SUBDIR += py-fileutils SUBDIR += py-first SUBDIR += py-five.customerize SUBDIR += py-five.formlib SUBDIR += py-five.globalrequest SUBDIR += py-five.localsitemanager SUBDIR += py-fixtures SUBDIR += py-flake8 SUBDIR += py-flake8-builtins SUBDIR += py-flake8-docstrings SUBDIR += py-flake8-import-order SUBDIR += py-flake8-polyfill SUBDIR += py-flake8-quotes SUBDIR += py-flask-babel SUBDIR += py-flex SUBDIR += py-flexmock SUBDIR += py-fluent-logger SUBDIR += py-flufl.i18n SUBDIR += py-flufl.lock SUBDIR += py-foolscap SUBDIR += py-fortran SUBDIR += py-freebsd SUBDIR += py-freenas.dispatcher SUBDIR += py-freenas.utils SUBDIR += py-freezegun SUBDIR += py-frozendict SUBDIR += py-fs SUBDIR += py-fsm SUBDIR += py-fudge SUBDIR += py-funcparserlib SUBDIR += py-funcsigs SUBDIR += py-functools32 SUBDIR += py-fusefs SUBDIR += py-fusepy SUBDIR += py-future SUBDIR += py-futures SUBDIR += py-futurist SUBDIR += py-fuzzywuzzy SUBDIR += py-game SUBDIR += py-game_sdl2 SUBDIR += py-gamin SUBDIR += py-gdata SUBDIR += py-gdbgui SUBDIR += py-gearman SUBDIR += py-generate SUBDIR += py-geojson SUBDIR += py-geotypes SUBDIR += py-gevent SUBDIR += py-git-up SUBDIR += py-git_semver SUBDIR += py-gitdb2 SUBDIR += py-gitless SUBDIR += py-gitosis SUBDIR += py-gitpython SUBDIR += py-glance-store SUBDIR += py-glob2 SUBDIR += py-gobject SUBDIR += py-gobject3 SUBDIR += py-google-apputils SUBDIR += py-googleapis-common-protos SUBDIR += py-grab SUBDIR += py-greenlet SUBDIR += py-grizzled SUBDIR += py-grouch SUBDIR += py-grpcio SUBDIR += py-grpcio-tools SUBDIR += py-gtfslib SUBDIR += py-gyp SUBDIR += py-hash_ring SUBDIR += py-hghooks SUBDIR += py-hgsubversion SUBDIR += py-hgtools SUBDIR += py-http-prompt SUBDIR += py-humanize SUBDIR += py-hypothesis SUBDIR += py-icalendar SUBDIR += py-ice SUBDIR += py-imgkit SUBDIR += py-incremental SUBDIR += py-inflect SUBDIR += py-inflection SUBDIR += py-iniparse SUBDIR += py-initgroups SUBDIR += py-instant SUBDIR += py-interface SUBDIR += py-intervaltree SUBDIR += py-invoke SUBDIR += py-ioflo SUBDIR += py-ipaddr SUBDIR += py-ipdb SUBDIR += py-ipykernel SUBDIR += py-ipyparallel SUBDIR += py-ipython_genutils SUBDIR += py-ipywidgets SUBDIR += py-iso8601 SUBDIR += py-isodate SUBDIR += py-isort SUBDIR += py-iterpipes SUBDIR += py-itypes SUBDIR += py-jaraco.classes SUBDIR += py-jaraco.functools SUBDIR += py-jaraco.itertools SUBDIR += py-jaraco.logging SUBDIR += py-jaraco.timing SUBDIR += py-jaraco.util SUBDIR += py-jcc SUBDIR += py-jdcal SUBDIR += py-jedi SUBDIR += py-jellyfish SUBDIR += py-jenkins-job-builder SUBDIR += py-jep SUBDIR += py-jira SUBDIR += py-jmespath SUBDIR += py-joblib SUBDIR += py-jsbeautifier SUBDIR += py-jsmin SUBDIR += py-json-py SUBDIR += py-json-sempai SUBDIR += py-json_tricks SUBDIR += py-jsonlib SUBDIR += py-jsonlib2 SUBDIR += py-jsonlines SUBDIR += py-jsonpatch SUBDIR += py-jsonpointer SUBDIR += py-jsonref SUBDIR += py-jsonrpclib SUBDIR += py-jsonrpclib-pelix SUBDIR += py-jsonschema SUBDIR += py-jupyter_client SUBDIR += py-jupyter_console SUBDIR += py-jupyter_core SUBDIR += py-kaitaistruct SUBDIR += py-kaptan SUBDIR += py-kayako SUBDIR += py-kazoo SUBDIR += py-keystone-engine SUBDIR += py-keystoneauth1 SUBDIR += py-keystonemiddleware SUBDIR += py-kid SUBDIR += py-kitchen SUBDIR += py-kjbuckets SUBDIR += py-kqueue SUBDIR += py-krosspython-kde4 SUBDIR += py-lazr.config SUBDIR += py-lazr.delegates SUBDIR += py-lazy SUBDIR += py-lazy-object-proxy SUBDIR += py-levenshtein SUBDIR += py-liblarch SUBDIR += py-libpeas SUBDIR += py-libplist SUBDIR += py-libtaxii SUBDIR += py-libtmux SUBDIR += py-libusb1 SUBDIR += py-libversion SUBDIR += py-libvirt SUBDIR += py-libzfs SUBDIR += py-linecache2 SUBDIR += py-llfuse SUBDIR += py-llvmcpy SUBDIR += py-llvmlite SUBDIR += py-lock_file SUBDIR += py-lockfile SUBDIR += py-log4py SUBDIR += py-logan SUBDIR += py-logbook SUBDIR += py-logfury SUBDIR += py-logilab-common SUBDIR += py-logutils SUBDIR += py-louie SUBDIR += py-lxml SUBDIR += py-magic SUBDIR += py-mailcap-fix SUBDIR += py-manuel SUBDIR += py-marshmallow SUBDIR += py-matrix-angular-sdk SUBDIR += py-mccabe SUBDIR += py-mdv SUBDIR += py-medikit SUBDIR += py-meliae SUBDIR += py-memory_profiler SUBDIR += py-mercurialserver SUBDIR += py-microversion-parse SUBDIR += py-mimeparse SUBDIR += py-minimongo SUBDIR += py-minio SUBDIR += py-mock SUBDIR += py-mondrian SUBDIR += py-mongoengine SUBDIR += py-mongokit SUBDIR += py-monotonic SUBDIR += py-more-itertools SUBDIR += py-mox SUBDIR += py-msgpack SUBDIR += py-multi_key_dict SUBDIR += py-multipledispatch SUBDIR += py-mwlib SUBDIR += py-mwlib.ext SUBDIR += py-mwlib.rl SUBDIR += py-mx-experimental SUBDIR += py-mygpoclient SUBDIR += py-mypy SUBDIR += py-nagioscheck SUBDIR += py-naiveBayesClassifier SUBDIR += py-natsort SUBDIR += py-natural SUBDIR += py-nbconvert SUBDIR += py-nbformat SUBDIR += py-ncurses SUBDIR += py-nose SUBDIR += py-nose-cov SUBDIR += py-nose2 SUBDIR += py-noseofyeti SUBDIR += py-notifier SUBDIR += py-notify SUBDIR += py-notify2 SUBDIR += py-numba SUBDIR += py-ocempgui SUBDIR += py-odfpy SUBDIR += py-offtrac SUBDIR += py-olefile SUBDIR += py-oletools SUBDIR += py-omnijson SUBDIR += py-omniorb SUBDIR += py-omniorb-3 SUBDIR += py-openapi-codec SUBDIR += py-opendht SUBDIR += py-openstacksdk SUBDIR += py-opster SUBDIR += py-optik SUBDIR += py-option_merge SUBDIR += py-orbit SUBDIR += py-ordered-set SUBDIR += py-ordereddict SUBDIR += py-os-brick SUBDIR += py-os-client-config SUBDIR += py-os-vif SUBDIR += py-os-win SUBDIR += py-osc-lib SUBDIR += py-oslo.cache SUBDIR += py-oslo.concurrency SUBDIR += py-oslo.config SUBDIR += py-oslo.context SUBDIR += py-oslo.db SUBDIR += py-oslo.i18n SUBDIR += py-oslo.log SUBDIR += py-oslo.messaging SUBDIR += py-oslo.middleware SUBDIR += py-oslo.policy SUBDIR += py-oslo.privsep SUBDIR += py-oslo.reports SUBDIR += py-oslo.rootwrap SUBDIR += py-oslo.serialization SUBDIR += py-oslo.service SUBDIR += py-oslo.utils SUBDIR += py-oslo.versionedobjects SUBDIR += py-oslo.vmware SUBDIR += py-osprofiler SUBDIR += py-p4python SUBDIR += py-packaging SUBDIR += py-palm SUBDIR += py-parsedatetime SUBDIR += py-path.py SUBDIR += py-pathlib SUBDIR += py-pathlib2 SUBDIR += py-pathtools SUBDIR += py-paver SUBDIR += py-pbr SUBDIR += py-pefile SUBDIR += py-pep8-naming SUBDIR += py-period SUBDIR += py-petname SUBDIR += py-pew SUBDIR += py-pex SUBDIR += py-phabricator SUBDIR += py-phonenumbers SUBDIR += py-phply SUBDIR += py-phpserialize SUBDIR += py-pid SUBDIR += py-pika SUBDIR += py-pika-pool SUBDIR += py-pinocchio SUBDIR += py-pip SUBDIR += py-pip-tools SUBDIR += py-pipenv SUBDIR += py-pkgconfig SUBDIR += py-plan SUBDIR += py-plex SUBDIR += py-pluggy SUBDIR += py-ply SUBDIR += py-podcastparser SUBDIR += py-polib SUBDIR += py-positional SUBDIR += py-posix_ipc SUBDIR += py-pp SUBDIR += py-pqueue SUBDIR += py-pretend SUBDIR += py-prettytable SUBDIR += py-prioritized_methods SUBDIR += py-prompt_toolkit SUBDIR += py-protobuf SUBDIR += py-protocols SUBDIR += py-ptrace SUBDIR += py-ptvsd SUBDIR += py-pudb SUBDIR += py-py SUBDIR += py-pyasn1 SUBDIR += py-pyasn1-modules SUBDIR += py-pybind11 SUBDIR += py-pybloomfiltermmap SUBDIR += py-pycadf SUBDIR += py-pycalendar SUBDIR += py-pycallgraph SUBDIR += py-pycapsicum SUBDIR += py-pycerberus SUBDIR += py-pycmd SUBDIR += py-pycodestyle SUBDIR += py-pycparser SUBDIR += py-pydenticon SUBDIR += py-pydevd SUBDIR += py-pydispatcher SUBDIR += py-pydocstyle SUBDIR += py-pydoop SUBDIR += py-pydrive SUBDIR += py-pyechonest SUBDIR += py-pyee SUBDIR += py-pyelftools SUBDIR += py-pyev SUBDIR += py-pyface SUBDIR += py-pyfcm SUBDIR += py-pyflakes SUBDIR += py-pygdbmi SUBDIR += py-pygit2 SUBDIR += py-pygithub SUBDIR += py-pygpx SUBDIR += py-pyhashxx SUBDIR += py-pyicu SUBDIR += py-pyinotify SUBDIR += py-pyinstaller SUBDIR += py-pykde4-kde4 SUBDIR += py-pykdeuic4-kde4 SUBDIR += py-pyke SUBDIR += py-pylru SUBDIR += py-pylru-cache SUBDIR += py-pymarc SUBDIR += py-pympler SUBDIR += py-pymtbl SUBDIR += py-pyopencl SUBDIR += py-pyparsing SUBDIR += py-pyperclip SUBDIR += py-pypugjs SUBDIR += py-pyqi SUBDIR += py-pyqtree SUBDIR += py-pyral SUBDIR += py-pyrepl SUBDIR += py-pyrfc3339 SUBDIR += py-pyro SUBDIR += py-pyshapelib SUBDIR += py-pyshp SUBDIR += py-pysparklines SUBDIR += py-pystorm SUBDIR += py-pyte SUBDIR += py-pytemplate SUBDIR += py-pytest SUBDIR += py-pytest-asyncio SUBDIR += py-pytest-cache SUBDIR += py-pytest-capturelog SUBDIR += py-pytest-cov SUBDIR += py-pytest-django SUBDIR += py-pytest-flake8 SUBDIR += py-pytest-localserver SUBDIR += py-pytest-mock SUBDIR += py-pytest-runner SUBDIR += py-pytest-sugar SUBDIR += py-pytest-timeout SUBDIR += py-pytest-tornado SUBDIR += py-pytest-xdist SUBDIR += py-python-Levenshtein SUBDIR += py-python-bugzilla SUBDIR += py-python-distutils-extra SUBDIR += py-python-dtrace SUBDIR += py-python-editor SUBDIR += py-python-engineio SUBDIR += py-python-gflags SUBDIR += py-python-gist SUBDIR += py-python-gitlab SUBDIR += py-python-jenkins SUBDIR += py-python-magic SUBDIR += py-python-pcre SUBDIR += py-python-socketio SUBDIR += py-python-statsd SUBDIR += py-python2-pythondialog SUBDIR += py-pythonbrew SUBDIR += py-pytimeparse SUBDIR += py-pytools SUBDIR += py-pytrie SUBDIR += py-pytvmaze SUBDIR += py-pytz SUBDIR += py-pyutil SUBDIR += py-pyvalid SUBDIR += py-pyvisa SUBDIR += py-pyvisa-py SUBDIR += py-pyxb SUBDIR += py-pyxml2obj SUBDIR += py-qpid SUBDIR += py-qserve SUBDIR += py-qt4 SUBDIR += py-qt4-assistant SUBDIR += py-qt4-core SUBDIR += py-qt4-dbus SUBDIR += py-qt4-dbussupport SUBDIR += py-qt4-declarative SUBDIR += py-qt4-designer SUBDIR += py-qt4-designerplugin SUBDIR += py-qt4-help SUBDIR += py-qt4-qscintilla2 SUBDIR += py-qt4-script SUBDIR += py-qt4-scripttools SUBDIR += py-qt4-test SUBDIR += py-qt5 SUBDIR += py-qt5-core SUBDIR += py-qt5-dbus SUBDIR += py-qt5-dbussupport SUBDIR += py-qt5-designer SUBDIR += py-qt5-designerplugin SUBDIR += py-qt5-help SUBDIR += py-qt5-qscintilla2 SUBDIR += py-qt5-test SUBDIR += py-qtconsole SUBDIR += py-ramlfications SUBDIR += py-rauth SUBDIR += py-raven SUBDIR += py-rcsparse SUBDIR += py-rebulk SUBDIR += py-rednose SUBDIR += py-repoze.lru SUBDIR += py-repoze.sphinx.autointerface SUBDIR += py-repoze.tm2 SUBDIR += py-repoze.what SUBDIR += py-repoze.what-pylons SUBDIR += py-repoze.who SUBDIR += py-repoze.who-friendlyform SUBDIR += py-repoze.who-testutil SUBDIR += py-repoze.xmliter SUBDIR += py-requestsexceptions SUBDIR += py-resolver SUBDIR += py-resourcepackage SUBDIR += py-responses SUBDIR += py-retrying SUBDIR += py-riak_pb SUBDIR += py-rlcompleter2 SUBDIR += py-robotframework SUBDIR += py-robotframework-databaselibrary SUBDIR += py-robotframework-pabot SUBDIR += py-robotframework-ride SUBDIR += py-robotframework-selenium2library SUBDIR += py-robotremoteserver SUBDIR += py-rope SUBDIR += py-rose SUBDIR += py-roxlib SUBDIR += py-rply SUBDIR += py-rq SUBDIR += py-rtree SUBDIR += py-rtslib-fb SUBDIR += py-ruamel.ordereddict SUBDIR += py-ruamel.yaml SUBDIR += py-rubymarshal SUBDIR += py-rwt SUBDIR += py-sanetime SUBDIR += py-sarge SUBDIR += py-schema SUBDIR += py-scripttest SUBDIR += py-sdl2 SUBDIR += py-selection SUBDIR += py-selectors34 SUBDIR += py-semantic_version SUBDIR += py-serpent SUBDIR += py-setproctitle SUBDIR += py-setuptools SUBDIR += py-setuptools-git SUBDIR += py-setuptools-pkg SUBDIR += py-setuptools_darcs SUBDIR += py-setuptools_hg SUBDIR += py-setuptools_scm SUBDIR += py-sh SUBDIR += py-shapely SUBDIR += py-should_dsl SUBDIR += py-simpleeval SUBDIR += py-simplegeneric SUBDIR += py-simplejson SUBDIR += py-simpleparse SUBDIR += py-simpletal SUBDIR += py-simpy SUBDIR += py-singledispatch SUBDIR += py-sip SUBDIR += py-six SUBDIR += py-smmap2 SUBDIR += py-sortedcontainers SUBDIR += py-sourcemap SUBDIR += py-spark SUBDIR += py-speaklater SUBDIR += py-spyder SUBDIR += py-sqlcc SUBDIR += py-stackexchange SUBDIR += py-statgrab SUBDIR += py-statsd SUBDIR += py-stdnum SUBDIR += py-stevedore SUBDIR += py-stopit SUBDIR += py-strategies SUBDIR += py-streamparse SUBDIR += py-strict-rfc3339 SUBDIR += py-structlog SUBDIR += py-stsci.distutils SUBDIR += py-subprocess32 SUBDIR += py-subversion SUBDIR += py-subvertpy SUBDIR += py-sure SUBDIR += py-swagger-spec-validator SUBDIR += py-sysctl SUBDIR += py-sysv_ipc SUBDIR += py-tables SUBDIR += py-tabulate SUBDIR += py-tapi SUBDIR += py-tarantool-queue SUBDIR += py-taskflow SUBDIR += py-tblib SUBDIR += py-tconfpy SUBDIR += py-tempora SUBDIR += py-tempstorage SUBDIR += py-tenacity SUBDIR += py-termcolor SUBDIR += py-terminable_thread SUBDIR += py-termstyle SUBDIR += py-testgears SUBDIR += py-testinfra SUBDIR += py-testoob SUBDIR += py-testpath SUBDIR += py-testresources SUBDIR += py-testscenarios SUBDIR += py-testtools SUBDIR += py-threema-msgapi SUBDIR += py-thrift SUBDIR += py-thriftpy SUBDIR += py-timelib SUBDIR += py-tinyarray SUBDIR += py-tinyrpc SUBDIR += py-tipper SUBDIR += py-toolz SUBDIR += py-tooz SUBDIR += py-toposort SUBDIR += py-total-ordering SUBDIR += py-tox SUBDIR += py-trace2html SUBDIR += py-traceback2 SUBDIR += py-traitlets SUBDIR += py-traits SUBDIR += py-transaction SUBDIR += py-trollius SUBDIR += py-ttystatus SUBDIR += py-tvrage SUBDIR += py-tw.forms SUBDIR += py-twext SUBDIR += py-twiggy SUBDIR += py-twilio SUBDIR += py-twine SUBDIR += py-twisted SUBDIR += py-txaio SUBDIR += py-typed-ast SUBDIR += py-typing SUBDIR += py-tzlocal SUBDIR += py-ua_parser SUBDIR += py-ujson SUBDIR += py-uncompyle2 SUBDIR += py-unicodecsv SUBDIR += py-unipath SUBDIR += py-unittest2 SUBDIR += py-unpaddedbase64 SUBDIR += py-update_checker SUBDIR += py-urlimport SUBDIR += py-urwid SUBDIR += py-urwidtrees SUBDIR += py-usb SUBDIR += py-user_agents SUBDIR += py-utils SUBDIR += py-validators SUBDIR += py-validictory SUBDIR += py-vcrpy SUBDIR += py-vcversioner SUBDIR += py-venusian SUBDIR += py-verboselogs SUBDIR += py-versiontools SUBDIR += py-vine SUBDIR += py-virtualenv SUBDIR += py-virtualenv-clone SUBDIR += py-virtualenvwrapper SUBDIR += py-voluptuous SUBDIR += py-warlock SUBDIR += py-watchdog SUBDIR += py-wcwidth SUBDIR += py-weakrefmethod SUBDIR += py-weblib SUBDIR += py-websockify SUBDIR += py-wheel SUBDIR += py-whistle SUBDIR += py-widgetsnbextension SUBDIR += py-wrapt SUBDIR += py-wsgi_intercept SUBDIR += py-wsgi_xmlrpc SUBDIR += py-wsgitools SUBDIR += py-wsgiutils SUBDIR += py-wsme SUBDIR += py-xattr SUBDIR += py-xcaplib SUBDIR += py-xdg SUBDIR += py-xdis SUBDIR += py-xerox SUBDIR += py-xmltodict SUBDIR += py-xoltar-toolkit SUBDIR += py-xxhash SUBDIR += py-yaml SUBDIR += py-yandex-money-sdk SUBDIR += py-yappi SUBDIR += py-yapps2 SUBDIR += py-ydbf SUBDIR += py-yum-metadata-parser SUBDIR += py-yunomi SUBDIR += py-z3c.autoinclude SUBDIR += py-z3c.batching SUBDIR += py-z3c.caching SUBDIR += py-z3c.form SUBDIR += py-z3c.formwidget.query SUBDIR += py-z3c.zcmlhook SUBDIR += py-zExceptions SUBDIR += py-zLOG SUBDIR += py-zc.buildout SUBDIR += py-zclockfile SUBDIR += py-zconfig SUBDIR += py-zkpython SUBDIR += py-zope.annotation SUBDIR += py-zope.app.applicationcontrol SUBDIR += py-zope.app.appsetup SUBDIR += py-zope.app.basicskin SUBDIR += py-zope.app.broken SUBDIR += py-zope.app.cache SUBDIR += py-zope.app.component SUBDIR += py-zope.app.container SUBDIR += py-zope.app.content SUBDIR += py-zope.app.debug SUBDIR += py-zope.app.dependable SUBDIR += py-zope.app.error SUBDIR += py-zope.app.exception SUBDIR += py-zope.app.file SUBDIR += py-zope.app.folder SUBDIR += py-zope.app.form SUBDIR += py-zope.app.generations SUBDIR += py-zope.app.http SUBDIR += py-zope.app.pagetemplate SUBDIR += py-zope.app.publication SUBDIR += py-zope.app.publisher SUBDIR += py-zope.app.renderer SUBDIR += py-zope.app.rotterdam SUBDIR += py-zope.app.schema SUBDIR += py-zope.app.testing SUBDIR += py-zope.app.zcmlfiles SUBDIR += py-zope.app.zopeappgenerations SUBDIR += py-zope.applicationcontrol SUBDIR += py-zope.broken SUBDIR += py-zope.browser SUBDIR += py-zope.browsermenu SUBDIR += py-zope.browserpage SUBDIR += py-zope.browserresource SUBDIR += py-zope.cachedescriptors SUBDIR += py-zope.component SUBDIR += py-zope.componentvocabulary SUBDIR += py-zope.configuration SUBDIR += py-zope.container SUBDIR += py-zope.contentprovider SUBDIR += py-zope.contenttype SUBDIR += py-zope.copy SUBDIR += py-zope.copypastemove SUBDIR += py-zope.datetime SUBDIR += py-zope.deferredimport SUBDIR += py-zope.deprecation SUBDIR += py-zope.dottedname SUBDIR += py-zope.dublincore SUBDIR += py-zope.error SUBDIR += py-zope.event SUBDIR += py-zope.exceptions SUBDIR += py-zope.filerepresentation SUBDIR += py-zope.formlib SUBDIR += py-zope.generations SUBDIR += py-zope.globalrequest SUBDIR += py-zope.i18n SUBDIR += py-zope.interface SUBDIR += py-zope.lifecycleevent SUBDIR += py-zope.location SUBDIR += py-zope.minmax SUBDIR += py-zope.pagetemplate SUBDIR += py-zope.processlifetime SUBDIR += py-zope.ptresource SUBDIR += py-zope.publisher SUBDIR += py-zope.ramcache SUBDIR += py-zope.schema SUBDIR += py-zope.sequencesort SUBDIR += py-zope.site SUBDIR += py-zope.size SUBDIR += py-zope.tales SUBDIR += py-zope.testbrowser SUBDIR += py-zope.testing SUBDIR += py-zope.traversing SUBDIR += py-zope.viewlet SUBDIR += py_static_check SUBDIR += pybind11 SUBDIR += pybugz SUBDIR += pycanberra SUBDIR += pycharm-ce SUBDIR += pychecker SUBDIR += pycount SUBDIR += pydbus-common SUBDIR += pygobject3-common SUBDIR += pylint SUBDIR += pymacs SUBDIR += pyobfuscate SUBDIR += pypersrc SUBDIR += pyrex SUBDIR += pyside SUBDIR += pyside-tools SUBDIR += pyst SUBDIR += pysvn SUBDIR += pythk SUBDIR += pythontidy SUBDIR += qbs SUBDIR += qbzr SUBDIR += qca SUBDIR += qconf SUBDIR += qct SUBDIR += qdevelop SUBDIR += qgit SUBDIR += qjson SUBDIR += qmake SUBDIR += qprog SUBDIR += qross SUBDIR += qscintilla2 SUBDIR += qscintilla2-designerplugin SUBDIR += qscintilla2-designerplugin-qt5 SUBDIR += qscintilla2-qt5 SUBDIR += qt-maybe SUBDIR += qt4 SUBDIR += qt4-assistant SUBDIR += qt4-assistant-adp SUBDIR += qt4-corelib SUBDIR += qt4-dbus SUBDIR += qt4-designer SUBDIR += qt4-help SUBDIR += qt4-help-tools SUBDIR += qt4-libqtassistantclient SUBDIR += qt4-linguist SUBDIR += qt4-linguisttools SUBDIR += qt4-makeqpf SUBDIR += qt4-moc SUBDIR += qt4-porting SUBDIR += qt4-qdbusviewer SUBDIR += qt4-qdoc3 SUBDIR += qt4-qmake SUBDIR += qt4-qmlviewer SUBDIR += qt4-qt3support SUBDIR += qt4-qtsolutions-singleapplication SUBDIR += qt4-qtsolutions-soap SUBDIR += qt4-qvfb SUBDIR += qt4-rcc SUBDIR += qt4-script SUBDIR += qt4-scripttools SUBDIR += qt4-testlib SUBDIR += qt4-uic SUBDIR += qt4-uic3 SUBDIR += qt5 SUBDIR += qt5-assistant SUBDIR += qt5-buildtools SUBDIR += qt5-concurrent SUBDIR += qt5-core SUBDIR += qt5-dbus SUBDIR += qt5-designer SUBDIR += qt5-help SUBDIR += qt5-linguist SUBDIR += qt5-linguisttools SUBDIR += qt5-location SUBDIR += qt5-qdbus SUBDIR += qt5-qdbusviewer SUBDIR += qt5-qdoc SUBDIR += qt5-qdoc-data SUBDIR += qt5-qmake SUBDIR += qt5-script SUBDIR += qt5-scripttools SUBDIR += qt5-scxml SUBDIR += qt5-testlib SUBDIR += qt5-uitools SUBDIR += qtcreator SUBDIR += qtscriptgenerator SUBDIR += quickcheck++ SUBDIR += quilt SUBDIR += racer SUBDIR += racerd SUBDIR += radare2 SUBDIR += ragel SUBDIR += raknet SUBDIR += range-v3 SUBDIR += rapidjson SUBDIR += raylib SUBDIR += rbenv SUBDIR += rbtools SUBDIR += rclint SUBDIR += rcs SUBDIR += rcs57 SUBDIR += re2 SUBDIR += re2c SUBDIR += readline SUBDIR += rebar SUBDIR += rebar3 SUBDIR += regexx SUBDIR += regexxer SUBDIR += relx SUBDIR += remake SUBDIR += renpy SUBDIR += renpy6 SUBDIR += replay SUBDIR += rhtvision SUBDIR += riscv64-binutils SUBDIR += riscv64-gcc SUBDIR += riscv64-xtoolchain-gcc SUBDIR += rlog SUBDIR += rlvm SUBDIR += rlwrap SUBDIR += roboctl SUBDIR += robodoc SUBDIR += root-doc SUBDIR += rote SUBDIR += rpc2 SUBDIR += rpm-spec-mode.el SUBDIR += rsvndump SUBDIR += rth SUBDIR += ruby-bsearch SUBDIR += ruby-build SUBDIR += ruby-gems SUBDIR += ruby-korundum-kde4 SUBDIR += ruby-krossruby-kde4 SUBDIR += ruby-qtruby-kde4 SUBDIR += ruby-rbprof SUBDIR += ruby-sdl SUBDIR += ruby-setup.rb SUBDIR += ruby-subversion SUBDIR += rubygem-CFPropertyList SUBDIR += rubygem-abstract SUBDIR += rubygem-actionpack-action_caching SUBDIR += rubygem-actionview4 SUBDIR += rubygem-actionview5 SUBDIR += rubygem-actionview50 SUBDIR += rubygem-active_scaffold SUBDIR += rubygem-activejob4 SUBDIR += rubygem-activejob5 SUBDIR += rubygem-activejob50 SUBDIR += rubygem-activemessaging SUBDIR += rubygem-activerecord-deprecated_finders SUBDIR += rubygem-activesupport4 SUBDIR += rubygem-activesupport5 SUBDIR += rubygem-activesupport50 SUBDIR += rubygem-airborne SUBDIR += rubygem-akismet SUBDIR += rubygem-algebrick SUBDIR += rubygem-algorithms SUBDIR += rubygem-allison SUBDIR += rubygem-analogger SUBDIR += rubygem-annoy SUBDIR += rubygem-ansi SUBDIR += rubygem-apipie-bindings SUBDIR += rubygem-apipie-params SUBDIR += rubygem-app_config SUBDIR += rubygem-appraisal SUBDIR += rubygem-arr-pm SUBDIR += rubygem-arrayfields SUBDIR += rubygem-ascii85 SUBDIR += rubygem-asetus SUBDIR += rubygem-aspectr SUBDIR += rubygem-ast SUBDIR += rubygem-astrolabe SUBDIR += rubygem-atomic SUBDIR += rubygem-attic SUBDIR += rubygem-attr_required SUBDIR += rubygem-authlogic SUBDIR += rubygem-awesome_print SUBDIR += rubygem-aws-sdk SUBDIR += rubygem-aws-sdk-core SUBDIR += rubygem-aws-sdk-resources SUBDIR += rubygem-aws-sdk-v1 SUBDIR += rubygem-aws-sigv4 SUBDIR += rubygem-axiom-types SUBDIR += rubygem-backports SUBDIR += rubygem-bacon SUBDIR += rubygem-baf SUBDIR += rubygem-batch-loader SUBDIR += rubygem-benelux SUBDIR += rubygem-bin_utils SUBDIR += rubygem-bindata SUBDIR += rubygem-bindex SUBDIR += rubygem-binding_of_caller SUBDIR += rubygem-bit-struct SUBDIR += rubygem-blankslate SUBDIR += rubygem-blockenspiel SUBDIR += rubygem-bones SUBDIR += rubygem-bootsnap SUBDIR += rubygem-bootstrap_form SUBDIR += rubygem-bson SUBDIR += rubygem-buftok SUBDIR += rubygem-bugspots SUBDIR += rubygem-builder SUBDIR += rubygem-byebug SUBDIR += rubygem-cabin SUBDIR += rubygem-caesars SUBDIR += rubygem-cairo-gobject SUBDIR += rubygem-capybara SUBDIR += rubygem-capybara-screenshot SUBDIR += rubygem-celluloid SUBDIR += rubygem-celluloid-essentials SUBDIR += rubygem-celluloid-extras SUBDIR += rubygem-celluloid-fsm SUBDIR += rubygem-celluloid-io SUBDIR += rubygem-celluloid-pool SUBDIR += rubygem-celluloid-supervision SUBDIR += rubygem-cf-uaa-lib SUBDIR += rubygem-childprocess SUBDIR += rubygem-chronic SUBDIR += rubygem-chronic_duration SUBDIR += rubygem-clamp SUBDIR += rubygem-clamp11 SUBDIR += rubygem-classifier SUBDIR += rubygem-classifier-reborn SUBDIR += rubygem-climate_control SUBDIR += rubygem-clio SUBDIR += rubygem-cliprompt SUBDIR += rubygem-cloudfiles SUBDIR += rubygem-cocaine SUBDIR += rubygem-coercible SUBDIR += rubygem-coffee-rails-rails5 SUBDIR += rubygem-coffee-rails-rails50 SUBDIR += rubygem-coffee-rails4 SUBDIR += rubygem-coffee-rails41 SUBDIR += rubygem-coffee-script SUBDIR += rubygem-coffee-script-source SUBDIR += rubygem-colorize SUBDIR += rubygem-columnize SUBDIR += rubygem-commander SUBDIR += rubygem-concurrent-ruby SUBDIR += rubygem-concurrent-ruby-edge SUBDIR += rubygem-concurrent-ruby-ext SUBDIR += rubygem-configatron SUBDIR += rubygem-configstruct SUBDIR += rubygem-configuration SUBDIR += rubygem-cool.io SUBDIR += rubygem-corefines SUBDIR += rubygem-crack SUBDIR += rubygem-cri SUBDIR += rubygem-cucumber SUBDIR += rubygem-cucumber-core SUBDIR += rubygem-cucumber-expressions SUBDIR += rubygem-cucumber-tag_expressions SUBDIR += rubygem-cucumber-wire SUBDIR += rubygem-curses SUBDIR += rubygem-cyoi SUBDIR += rubygem-daemon_controller SUBDIR += rubygem-daemons SUBDIR += rubygem-ddplugin SUBDIR += rubygem-debug_inspector SUBDIR += rubygem-debugger-linecache SUBDIR += rubygem-debugger-ruby_core_source SUBDIR += rubygem-debugger-xml SUBDIR += rubygem-declarative SUBDIR += rubygem-declarative-option SUBDIR += rubygem-deep_merge SUBDIR += rubygem-deep_test SUBDIR += rubygem-deface SUBDIR += rubygem-default_value_for SUBDIR += rubygem-default_value_for30 SUBDIR += rubygem-delayed_job SUBDIR += rubygem-delayer SUBDIR += rubygem-delayer-deferred SUBDIR += rubygem-deprecated SUBDIR += rubygem-deprecated2 SUBDIR += rubygem-descendants_tracker SUBDIR += rubygem-devise SUBDIR += rubygem-devise-rails5 SUBDIR += rubygem-devise-rails50 SUBDIR += rubygem-directory_watcher SUBDIR += rubygem-ditz SUBDIR += rubygem-diva SUBDIR += rubygem-docile SUBDIR += rubygem-drydock SUBDIR += rubygem-dynflow SUBDIR += rubygem-edavis10-object_daddy SUBDIR += rubygem-elif SUBDIR += rubygem-enumerize SUBDIR += rubygem-equalizer SUBDIR += rubygem-equatable SUBDIR += rubygem-errand SUBDIR += rubygem-et-orbi SUBDIR += rubygem-eventmachine SUBDIR += rubygem-excon SUBDIR += rubygem-execjs SUBDIR += rubygem-extlib SUBDIR += rubygem-extras SUBDIR += rubygem-facets SUBDIR += rubygem-faker SUBDIR += rubygem-faraday_middleware-multi_json SUBDIR += rubygem-fast-stemmer SUBDIR += rubygem-fast_blank SUBDIR += rubygem-fast_gettext SUBDIR += rubygem-fast_stack SUBDIR += rubygem-fast_xor SUBDIR += rubygem-fastercsv SUBDIR += rubygem-fastri SUBDIR += rubygem-fastthread SUBDIR += rubygem-fattr SUBDIR += rubygem-ffi SUBDIR += rubygem-ffi-compiler SUBDIR += rubygem-ffi-yajl SUBDIR += rubygem-file-tail SUBDIR += rubygem-filesize SUBDIR += rubygem-flexmock SUBDIR += rubygem-flipper SUBDIR += rubygem-flipper-active_support_cache_store SUBDIR += rubygem-flipper-active_support_cache_store011 SUBDIR += rubygem-flipper-active_support_cache_store013 SUBDIR += rubygem-flipper011 SUBDIR += rubygem-flipper013 SUBDIR += rubygem-fluent-logger SUBDIR += rubygem-fog SUBDIR += rubygem-fog-core SUBDIR += rubygem-fog-core1 SUBDIR += rubygem-fog-json SUBDIR += rubygem-fog-json102 SUBDIR += rubygem-font-awesome-rails SUBDIR += rubygem-font-awesome-rails-rails4 SUBDIR += rubygem-font-awesome-rails-rails5 SUBDIR += rubygem-foreigner SUBDIR += rubygem-foreman SUBDIR += rubygem-formatador SUBDIR += rubygem-forwardable-extended SUBDIR += rubygem-gdata SUBDIR += rubygem-gem-compare SUBDIR += rubygem-gem_plugin SUBDIR += rubygem-gemcutter SUBDIR += rubygem-gemnasium-gitlab-service SUBDIR += rubygem-gemnasium-parser SUBDIR += rubygem-gems SUBDIR += rubygem-generator_spec-rails4 SUBDIR += rubygem-generator_spec-rails5 SUBDIR += rubygem-georuby SUBDIR += rubygem-get_process_mem SUBDIR += rubygem-getopt SUBDIR += rubygem-gettext SUBDIR += rubygem-gettext-setup SUBDIR += rubygem-gettext_i18n_rails SUBDIR += rubygem-gettext_i18n_rails_js SUBDIR += rubygem-gettext_i18n_rails_js12 SUBDIR += rubygem-gh SUBDIR += rubygem-gibbler SUBDIR += rubygem-gio2 SUBDIR += rubygem-git SUBDIR += rubygem-git-version-bump SUBDIR += rubygem-github_api SUBDIR += rubygem-gitlab-pygments.rb SUBDIR += rubygem-gitlab_git SUBDIR += rubygem-gitlab_meta SUBDIR += rubygem-glib2 SUBDIR += rubygem-gobject-introspection SUBDIR += rubygem-google-api-client SUBDIR += rubygem-google-protobuf SUBDIR += rubygem-google-protobuf351 SUBDIR += rubygem-googleapis-common-protos SUBDIR += rubygem-googleapis-common-protos-types SUBDIR += rubygem-graf SUBDIR += rubygem-grape SUBDIR += rubygem-grape-entity SUBDIR += rubygem-grape-entity060 SUBDIR += rubygem-grape-route-helpers SUBDIR += rubygem-grape-swagger SUBDIR += rubygem-grape0 SUBDIR += rubygem-grape_logging SUBDIR += rubygem-grit SUBDIR += rubygem-guess_html_encoding SUBDIR += rubygem-gyoku SUBDIR += rubygem-hamster SUBDIR += rubygem-hashdiff SUBDIR += rubygem-hashery SUBDIR += rubygem-hashie SUBDIR += rubygem-hashie-forbidden_attributes SUBDIR += rubygem-hashie2 SUBDIR += rubygem-health_check SUBDIR += rubygem-health_check26 SUBDIR += rubygem-highline SUBDIR += rubygem-hike SUBDIR += rubygem-hike1 SUBDIR += rubygem-hitimes SUBDIR += rubygem-hocon SUBDIR += rubygem-hoe SUBDIR += rubygem-holidays SUBDIR += rubygem-http_accept_language SUBDIR += rubygem-i18n SUBDIR += rubygem-icalendar SUBDIR += rubygem-ice_cube SUBDIR += rubygem-ice_nine SUBDIR += rubygem-inflecto SUBDIR += rubygem-iniparse SUBDIR += rubygem-insist SUBDIR += rubygem-instance_storage SUBDIR += rubygem-interact SUBDIR += rubygem-io-like SUBDIR += rubygem-iobuffer SUBDIR += rubygem-iso8601 SUBDIR += rubygem-jammit SUBDIR += rubygem-jasmine-core SUBDIR += rubygem-jbuilder SUBDIR += rubygem-jbuilder-rails5 SUBDIR += rubygem-jbuilder-rails50 SUBDIR += rubygem-jekyll-coffeescript SUBDIR += rubygem-jenkins_api_client SUBDIR += rubygem-jeweler SUBDIR += rubygem-jira-ruby SUBDIR += rubygem-jmespath SUBDIR += rubygem-jquery-ui-themes SUBDIR += rubygem-jruby-jars SUBDIR += rubygem-json SUBDIR += rubygem-json1 SUBDIR += rubygem-json_pure SUBDIR += rubygem-json_pure1 SUBDIR += rubygem-jsonapi-renderer SUBDIR += rubygem-kafo SUBDIR += rubygem-kafo_parsers SUBDIR += rubygem-kafo_wizards SUBDIR += rubygem-kgio SUBDIR += rubygem-launchy SUBDIR += rubygem-launchy22 SUBDIR += rubygem-lazy_priority_queue SUBDIR += rubygem-librarian SUBDIR += rubygem-librarianp SUBDIR += rubygem-libyajl2 SUBDIR += rubygem-licensee SUBDIR += rubygem-licensee8 SUBDIR += rubygem-listen SUBDIR += rubygem-little-plugger SUBDIR += rubygem-local_time SUBDIR += rubygem-local_time-rails5 SUBDIR += rubygem-locale SUBDIR += rubygem-lockfile SUBDIR += rubygem-logging SUBDIR += rubygem-logster SUBDIR += rubygem-loquacious SUBDIR += rubygem-lru_redux SUBDIR += rubygem-lumberjack SUBDIR += rubygem-main SUBDIR += rubygem-manpages SUBDIR += rubygem-map SUBDIR += rubygem-marcel SUBDIR += rubygem-memoist SUBDIR += rubygem-memoizable SUBDIR += rubygem-memoize SUBDIR += rubygem-mercenary SUBDIR += rubygem-message_bus SUBDIR += rubygem-metaclass SUBDIR += rubygem-metaid SUBDIR += rubygem-metasm SUBDIR += rubygem-method_source SUBDIR += rubygem-micromachine SUBDIR += rubygem-micromachine2 SUBDIR += rubygem-minitest SUBDIR += rubygem-mixlib-archive SUBDIR += rubygem-mixlib-authentication SUBDIR += rubygem-mixlib-cli SUBDIR += rubygem-mixlib-config SUBDIR += rubygem-mixlib-log SUBDIR += rubygem-mixlib-shellout SUBDIR += rubygem-mize SUBDIR += rubygem-mkrf SUBDIR += rubygem-mmap2 SUBDIR += rubygem-mocha SUBDIR += rubygem-moneta SUBDIR += rubygem-mongo SUBDIR += rubygem-mono_logger SUBDIR += rubygem-msgpack SUBDIR += rubygem-msgpack1 SUBDIR += rubygem-mspec SUBDIR += rubygem-multi_json SUBDIR += rubygem-multi_test SUBDIR += rubygem-murmurhash3 SUBDIR += rubygem-mustache SUBDIR += rubygem-mustache0 SUBDIR += rubygem-mustermann SUBDIR += rubygem-mustermann-grape SUBDIR += rubygem-mutter SUBDIR += rubygem-native-package-installer SUBDIR += rubygem-naught SUBDIR += rubygem-necromancer SUBDIR += rubygem-needle SUBDIR += rubygem-nenv SUBDIR += rubygem-nesty SUBDIR += rubygem-netaddr SUBDIR += rubygem-newrelic-grape SUBDIR += rubygem-newrelic_rpm SUBDIR += rubygem-nice-ffi SUBDIR += rubygem-nio4r SUBDIR += rubygem-nori SUBDIR += rubygem-notiffany SUBDIR += rubygem-notify SUBDIR += rubygem-nprogress-rails SUBDIR += rubygem-nsa-rails5 SUBDIR += rubygem-numerizer SUBDIR += rubygem-octopress-hooks SUBDIR += rubygem-oj SUBDIR += rubygem-oj2 SUBDIR += rubygem-omniauth_crowd SUBDIR += rubygem-omniauth_crowd22 SUBDIR += rubygem-open3_backport SUBDIR += rubygem-open4 SUBDIR += rubygem-orm_adapter SUBDIR += rubygem-os SUBDIR += rubygem-p4ruby SUBDIR += rubygem-paint SUBDIR += rubygem-paperclip SUBDIR += rubygem-paperclip-rails5 SUBDIR += rubygem-paperclip-rails50 SUBDIR += rubygem-parser SUBDIR += rubygem-pastel SUBDIR += rubygem-patch_finder SUBDIR += rubygem-pathutil SUBDIR += rubygem-peek SUBDIR += rubygem-peek-gc SUBDIR += rubygem-peek-host SUBDIR += rubygem-peek-performance_bar SUBDIR += rubygem-peek-rails4 SUBDIR += rubygem-peek-rblineprof SUBDIR += rubygem-peek-redis SUBDIR += rubygem-peek-sidekiq SUBDIR += rubygem-pkg-config SUBDIR += rubygem-platform SUBDIR += rubygem-pleaserun SUBDIR += rubygem-plist SUBDIR += rubygem-pluggaloid SUBDIR += rubygem-polyamorous SUBDIR += rubygem-polyglot SUBDIR += rubygem-popen4 SUBDIR += rubygem-posix-spawn SUBDIR += rubygem-power_assert SUBDIR += rubygem-powerbar SUBDIR += rubygem-powerpack SUBDIR += rubygem-pqueue SUBDIR += rubygem-progressbar SUBDIR += rubygem-prometheus-client-mmap SUBDIR += rubygem-protected_attributes SUBDIR += rubygem-protocol SUBDIR += rubygem-pry SUBDIR += rubygem-pry-byebug SUBDIR += rubygem-pry-rails SUBDIR += rubygem-pry-remote-em SUBDIR += rubygem-ptreloaded SUBDIR += rubygem-pygments.rb SUBDIR += rubygem-r18n-core SUBDIR += rubygem-rabl SUBDIR += rubygem-rabl-rails50 SUBDIR += rubygem-racc SUBDIR += rubygem-rack-mini-profiler SUBDIR += rubygem-rack-raw-upload SUBDIR += rubygem-rails-deprecated_sanitizer SUBDIR += rubygem-rails-deprecated_sanitizer-rails5 SUBDIR += rubygem-rails-deprecated_sanitizer-rails50 SUBDIR += rubygem-rails-i18n SUBDIR += rubygem-rails-i18n-4 SUBDIR += rubygem-rails-i18n-rails50 SUBDIR += rubygem-rails-observers SUBDIR += rubygem-rainbow SUBDIR += rubygem-rainbow2 SUBDIR += rubygem-rake SUBDIR += rubygem-rake-compiler SUBDIR += rubygem-rake-compiler-dock SUBDIR += rubygem-rake-contrib SUBDIR += rubygem-ransack SUBDIR += rubygem-rapt SUBDIR += rubygem-rash SUBDIR += rubygem-rb-fsevent SUBDIR += rubygem-rb-inotify SUBDIR += rubygem-rb-kqueue SUBDIR += rubygem-rblineprof SUBDIR += rubygem-rbtrace SUBDIR += rubygem-rdoc SUBDIR += rubygem-re2 SUBDIR += rubygem-react-rails SUBDIR += rubygem-react-rails-rails5 SUBDIR += rubygem-readwritesettings SUBDIR += rubygem-recaptcha SUBDIR += rubygem-recaptcha3 SUBDIR += rubygem-recursive-open-struct SUBDIR += rubygem-recursive-open-struct100 SUBDIR += rubygem-redis-activesupport SUBDIR += rubygem-redis-activesupport-rails5 SUBDIR += rubygem-redis-activesupport-rails50 SUBDIR += rubygem-redis-store SUBDIR += rubygem-redmine_plugin_support SUBDIR += rubygem-reentrant_flock SUBDIR += rubygem-ref SUBDIR += rubygem-request_store SUBDIR += rubygem-require_all SUBDIR += rubygem-resque SUBDIR += rubygem-retriable SUBDIR += rubygem-retryable SUBDIR += rubygem-rgl SUBDIR += rubygem-rice SUBDIR += rubygem-rodzilla SUBDIR += rubygem-rotp SUBDIR += rubygem-rr SUBDIR += rubygem-rrd-ffi SUBDIR += rubygem-rscm SUBDIR += rubygem-rspec SUBDIR += rubygem-rspec-core SUBDIR += rubygem-rspec-expectations SUBDIR += rubygem-rspec-its SUBDIR += rubygem-rspec-logsplit SUBDIR += rubygem-rspec-mocks SUBDIR += rubygem-rspec-rails SUBDIR += rubygem-rspec-support SUBDIR += rubygem-rspec_junit_formatter SUBDIR += rubygem-rubocop SUBDIR += rubygem-ruby-atmos-pure SUBDIR += rubygem-ruby-bugzilla SUBDIR += rubygem-ruby-enum SUBDIR += rubygem-ruby-filemagic SUBDIR += rubygem-ruby-fogbugz SUBDIR += rubygem-ruby-libvirt SUBDIR += rubygem-ruby-macho SUBDIR += rubygem-ruby-ole SUBDIR += rubygem-ruby-prof SUBDIR += rubygem-ruby-prof016 SUBDIR += rubygem-ruby-progressbar SUBDIR += rubygem-ruby-sdl-ffi SUBDIR += rubygem-ruby2ruby SUBDIR += rubygem-ruby_dep SUBDIR += rubygem-ruby_parser SUBDIR += rubygem-rubygame SUBDIR += rubygem-rubygems-mirror SUBDIR += rubygem-rubygems-tasks SUBDIR += rubygem-rubygems-test SUBDIR += rubygem-rubyinline SUBDIR += rubygem-rubyinlineaccel SUBDIR += rubygem-rubytree SUBDIR += rubygem-rufus-scheduler SUBDIR += rubygem-rugged SUBDIR += rubygem-runt SUBDIR += rubygem-ruport SUBDIR += rubygem-safe_yaml SUBDIR += rubygem-schash SUBDIR += rubygem-sdoc SUBDIR += rubygem-semantic_puppet SUBDIR += rubygem-semi_semantic SUBDIR += rubygem-semver2 SUBDIR += rubygem-sentry-raven SUBDIR += rubygem-sentry-raven25 SUBDIR += rubygem-sequel SUBDIR += rubygem-settingslogic SUBDIR += rubygem-sexp_processor SUBDIR += rubygem-shoulda SUBDIR += rubygem-shoulda-context SUBDIR += rubygem-shoulda-matchers SUBDIR += rubygem-sidekiq SUBDIR += rubygem-sidekiq-bulk-rails5 SUBDIR += rubygem-sidekiq-cron SUBDIR += rubygem-sidekiq-limit_fetch SUBDIR += rubygem-sidekiq-scheduler SUBDIR += rubygem-sidekiq-unique-jobs SUBDIR += rubygem-sidetiq SUBDIR += rubygem-sigdump SUBDIR += rubygem-simple-navigation SUBDIR += rubygem-simple-navigation-rails50 SUBDIR += rubygem-simple_form SUBDIR += rubygem-simple_form-rails5 SUBDIR += rubygem-simple_form-rails50 SUBDIR += rubygem-simplecov SUBDIR += rubygem-slack-notifier SUBDIR += rubygem-slack-notifier1 SUBDIR += rubygem-slim SUBDIR += rubygem-slop SUBDIR += rubygem-slop3 SUBDIR += rubygem-soap4r SUBDIR += rubygem-spring SUBDIR += rubygem-spring-rails5 SUBDIR += rubygem-spring-rails50 SUBDIR += rubygem-sprockets SUBDIR += rubygem-sprockets-es6 SUBDIR += rubygem-sprockets-helpers SUBDIR += rubygem-sprockets-rails SUBDIR += rubygem-sprockets-rails-rails5 SUBDIR += rubygem-sprockets-rails-rails50 SUBDIR += rubygem-sprockets-sass SUBDIR += rubygem-sprockets3 SUBDIR += rubygem-spruz SUBDIR += rubygem-state_machine SUBDIR += rubygem-state_machines SUBDIR += rubygem-statsd SUBDIR += rubygem-statsd-instrument SUBDIR += rubygem-statsd-ruby SUBDIR += rubygem-stella SUBDIR += rubygem-stemmer SUBDIR += rubygem-stomp SUBDIR += rubygem-storable SUBDIR += rubygem-stream SUBDIR += rubygem-streetaddress SUBDIR += rubygem-stringex SUBDIR += rubygem-strings SUBDIR += rubygem-strong_migrations SUBDIR += rubygem-structured_warnings SUBDIR += rubygem-stud SUBDIR += rubygem-subexec SUBDIR += rubygem-sugar-high SUBDIR += rubygem-sumbur SUBDIR += rubygem-sundawg_country_codes SUBDIR += rubygem-svn2git SUBDIR += rubygem-sysinfo SUBDIR += rubygem-systemu SUBDIR += rubygem-table_print SUBDIR += rubygem-tdiff SUBDIR += rubygem-templater SUBDIR += rubygem-temple SUBDIR += rubygem-temple07 SUBDIR += rubygem-term-ansicolor SUBDIR += rubygem-terrapin SUBDIR += rubygem-test-unit SUBDIR += rubygem-thor SUBDIR += rubygem-thread_safe SUBDIR += rubygem-thread_safe1 SUBDIR += rubygem-thrift SUBDIR += rubygem-tilt SUBDIR += rubygem-tilt1 SUBDIR += rubygem-timers SUBDIR += rubygem-tins SUBDIR += rubygem-titlecase SUBDIR += rubygem-tool SUBDIR += rubygem-transaction-simple SUBDIR += rubygem-travis SUBDIR += rubygem-treetop SUBDIR += rubygem-trollop SUBDIR += rubygem-trollop1 SUBDIR += rubygem-tty SUBDIR += rubygem-tty-color SUBDIR += rubygem-tty-command SUBDIR += rubygem-tty-cursor SUBDIR += rubygem-tty-editor SUBDIR += rubygem-tty-file SUBDIR += rubygem-tty-font SUBDIR += rubygem-tty-markdown SUBDIR += rubygem-tty-pager SUBDIR += rubygem-tty-platform SUBDIR += rubygem-tty-progressbar SUBDIR += rubygem-tty-prompt SUBDIR += rubygem-tty-reader SUBDIR += rubygem-tty-screen SUBDIR += rubygem-tty-spinner SUBDIR += rubygem-tty-table SUBDIR += rubygem-tty-tree SUBDIR += rubygem-tty-which SUBDIR += rubygem-turn SUBDIR += rubygem-typed-array SUBDIR += rubygem-tzinfo SUBDIR += rubygem-tzinfo-data SUBDIR += rubygem-uber SUBDIR += rubygem-unicode SUBDIR += rubygem-unicode-display_width SUBDIR += rubygem-useragent SUBDIR += rubygem-uuid SUBDIR += rubygem-uuidtools SUBDIR += rubygem-validatable SUBDIR += rubygem-versionomy SUBDIR += rubygem-virtus SUBDIR += rubygem-warbler SUBDIR += rubygem-warden SUBDIR += rubygem-wdm SUBDIR += rubygem-web-console SUBDIR += rubygem-web-console-rails50 SUBDIR += rubygem-web-console2 SUBDIR += rubygem-webby SUBDIR += rubygem-webpacker-rails5 SUBDIR += rubygem-webpacker-rails50 SUBDIR += rubygem-will_paginate SUBDIR += rubygem-windows_error SUBDIR += rubygem-wisper SUBDIR += rubygem-wmi-lite SUBDIR += rubygem-xdg SUBDIR += rubygem-xpath SUBDIR += rubygem-yajl-ruby SUBDIR += rubygem-yui-compressor SUBDIR += rubygem-zentest SUBDIR += rudeconfig SUBDIR += rudiments SUBDIR += runsnakerun SUBDIR += rvi SUBDIR += rvm SUBDIR += sabre SUBDIR += safe-iop SUBDIR += samurai SUBDIR += sbt SUBDIR += scalatest SUBDIR += scandoc SUBDIR += scons SUBDIR += sdl12 SUBDIR += sdl20 SUBDIR += sdl2pp SUBDIR += sdl_console SUBDIR += sdl_gnat SUBDIR += sdl_sge SUBDIR += sdlmm SUBDIR += sdlskk SUBDIR += sdts++ SUBDIR += sedsed SUBDIR += serd SUBDIR += serdisplib SUBDIR += sfio SUBDIR += sfml SUBDIR += sfml1 SUBDIR += sgb SUBDIR += shapelib SUBDIR += shards SUBDIR += shedskin SUBDIR += shflags SUBDIR += shiboken SUBDIR += shmap SUBDIR += shtk SUBDIR += shtool SUBDIR += sigar SUBDIR += sigslot SUBDIR += silc-toolkit SUBDIR += silentbob SUBDIR += simavr SUBDIR += simgear SUBDIR += simian SUBDIR += simple_components SUBDIR += skalibs SUBDIR += slf4j SUBDIR += slibtool SUBDIR += smack SUBDIR += smake SUBDIR += smc SUBDIR += smokegen-kde4 SUBDIR += smokekde-kde4 SUBDIR += smokeqt-kde4 SUBDIR += smv SUBDIR += soapui SUBDIR += sonar-ant-task SUBDIR += sonar-scanner-cli SUBDIR += sonarqube SUBDIR += sope2 SUBDIR += sope3 SUBDIR += sope4 SUBDIR += sord SUBDIR += sourcenav SUBDIR += sparc64-binutils SUBDIR += sparc64-gcc SUBDIR += sparc64-xtoolchain-gcc SUBDIR += spark SUBDIR += sparsehash SUBDIR += spatialindex SUBDIR += spdlog SUBDIR += spice-protocol SUBDIR += spin SUBDIR += splint SUBDIR += srecord SUBDIR += st SUBDIR += stack SUBDIR += staf SUBDIR += statcvs SUBDIR += statik SUBDIR += statsvn SUBDIR += stfl SUBDIR += stlfilt SUBDIR += stlink SUBDIR += storm SUBDIR += str SUBDIR += strace SUBDIR += stringencoders SUBDIR += stxxl SUBDIR += styx SUBDIR += subcommander2 SUBDIR += subversion SUBDIR += subversion-book SUBDIR += subversion-static SUBDIR += subversion19 SUBDIR += subversive SUBDIR += svk SUBDIR += svn2git SUBDIR += svn_load_dirs SUBDIR += svntrac SUBDIR += swank-clojure SUBDIR += swig30 SUBDIR += synfig SUBDIR += sysconftool SUBDIR += sysfsutils SUBDIR += t1lib SUBDIR += ta-lib SUBDIR += tablist SUBDIR += tailor SUBDIR += talloc SUBDIR += tass64 SUBDIR += tbb SUBDIR += tcl-memchan SUBDIR += tcl-mmap SUBDIR += tcl-signal SUBDIR += tcl-trf SUBDIR += tclap SUBDIR += tclbsd SUBDIR += tclcheck SUBDIR += tcllauncher SUBDIR += tcllib SUBDIR += tcllibc SUBDIR += tclmore SUBDIR += tcloo SUBDIR += tclreadline SUBDIR += tclthread SUBDIR += tcltls SUBDIR += tclvfs SUBDIR += tclxml SUBDIR += tdl SUBDIR += terminality SUBDIR += tesla SUBDIR += tevent SUBDIR += tex-kpathsea SUBDIR += tex-libtexlua SUBDIR += tex-libtexluajit SUBDIR += tex-synctex SUBDIR += tex-web2c SUBDIR += thrift SUBDIR += thrift-c_glib SUBDIR += thrift-cpp SUBDIR += thunar-vcs-plugin SUBDIR += tig SUBDIR += tigcc SUBDIR += tijmp SUBDIR += tinycbor SUBDIR += tinylaf SUBDIR += tinyq SUBDIR += tkcon SUBDIR += tkcvs SUBDIR += tkmerge SUBDIR += tkp4 SUBDIR += tla SUBDIR += tmake SUBDIR += tnt SUBDIR += toh SUBDIR += tokamak SUBDIR += tokei SUBDIR += tortoisehg SUBDIR += tpasm SUBDIR += trac-bitten SUBDIR += tradcpp SUBDIR += trio SUBDIR += truc SUBDIR += ua_parser-core SUBDIR += uatraits SUBDIR += uboot-mkimage SUBDIR += uclcmd SUBDIR += ucommon SUBDIR += ucpp SUBDIR += udis86 SUBDIR += ultragetopt SUBDIR += umbrello SUBDIR += umbrello-kde4 SUBDIR += umem SUBDIR += umlgraph SUBDIR += unibilium SUBDIR += unittest-cpp SUBDIR += universal-ctags SUBDIR += universalindentgui SUBDIR += upnp SUBDIR += upp SUBDIR += upslug SUBDIR += urjtag SUBDIR += utf8cpp SUBDIR += uthash SUBDIR += valgrind SUBDIR += valgrind-devel SUBDIR += varconf SUBDIR += vasm SUBDIR += vera++ SUBDIR += vexcl SUBDIR += viewvc SUBDIR += violet SUBDIR += visualparadigm SUBDIR += vstr SUBDIR += vxlog SUBDIR += wand-libconfig SUBDIR += wandio SUBDIR += websocketpp SUBDIR += websvn SUBDIR += wininfo SUBDIR += wizardkit SUBDIR += woff2 SUBDIR += wxGlade SUBDIR += wxformbuilder SUBDIR += xa65 SUBDIR += xc3sprog SUBDIR += xdg-user-dirs SUBDIR += xdg-utils SUBDIR += xfce4-dev-tools SUBDIR += xfce4-vala SUBDIR += xmake SUBDIR += xmltooling SUBDIR += xorg-macros SUBDIR += xparam SUBDIR += xsd SUBDIR += xtl SUBDIR += xtoolchain-llvm-devel SUBDIR += xtoolchain-llvm40 SUBDIR += xtoolchain-llvm50 SUBDIR += xtoolchain-llvm60 SUBDIR += xwpe SUBDIR += xxgdb SUBDIR += xxhash SUBDIR += xxl SUBDIR += yaggo SUBDIR += yajl SUBDIR += yajl-tcl SUBDIR += yaml-cpp SUBDIR += yaml-cpp03 SUBDIR += yaml2argdata SUBDIR += yasm SUBDIR += yasm-devel SUBDIR += youcompleteme SUBDIR += z80-asm SUBDIR += z80asm SUBDIR += z80ex SUBDIR += zeal SUBDIR += zookeeper SUBDIR += zpu-binutils SUBDIR += zpu-gcc SUBDIR += ztcl SUBDIR += zthread SUBDIR += zziplib .include Index: head/devel/plasma5-khotkeys/Makefile =================================================================== --- head/devel/plasma5-khotkeys/Makefile (nonexistent) +++ head/devel/plasma5-khotkeys/Makefile (revision 468495) @@ -0,0 +1,21 @@ +# $FreeBSD$ + +PORTNAME= khotkeys +DISTVERSION= ${KDE_PLASMA_VERSION} +CATEGORIES= devel kde kde-plasma + +MAINTAINER= kde@FreeBSD.org +COMMENT= Plasma5 library for hotkeys + +USES= cmake:outsource compiler:c++11-lib cpe gettext kde:5 tar:xz +USE_KDE= auth bookmarks codecs completion config configwidgets \ + coreaddons crash dbusaddons ecm emoticons globalaccel \ + guiaddons i18n iconthemes init itemmodels itemviews jobwidgets \ + kcmutils kdelibs4support kio notifications parts \ + plasma-framework plasma-workspace service solid sonnet \ + textwidgets unitconversion widgetsaddons windowsystem xmlgui +USE_QT5= core dbus gui network printsupport widgets x11extras xml \ + buildtools_build qmake_build +USE_XORG= x11 xtst + +.include Property changes on: head/devel/plasma5-khotkeys/Makefile ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/devel/plasma5-khotkeys/distinfo =================================================================== --- head/devel/plasma5-khotkeys/distinfo (nonexistent) +++ head/devel/plasma5-khotkeys/distinfo (revision 468495) @@ -0,0 +1,3 @@ +TIMESTAMP = 1523811759 +SHA256 (KDE/plasma/5.12.4/khotkeys-5.12.4.tar.xz) = ceb4ba8267cf1e3c772813c3288fc755dae3069cd059feeeda64c01a6f5748d2 +SIZE (KDE/plasma/5.12.4/khotkeys-5.12.4.tar.xz) = 1058428 Property changes on: head/devel/plasma5-khotkeys/distinfo ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/devel/plasma5-khotkeys/files/patch-CMakeLists.txt =================================================================== --- head/devel/plasma5-khotkeys/files/patch-CMakeLists.txt (nonexistent) +++ head/devel/plasma5-khotkeys/files/patch-CMakeLists.txt (revision 468495) @@ -0,0 +1,18 @@ +There is something wonky in the dependency genreation: + khotkeys-5.10.95/app/kded.cpp:31: Error: Plugin Metadata + file "khotkeys.json" does not exist. Declaration will be ignored + +That file should be generated by a custom command, which the target in question +already depends on. As this is only a test application that is not even +installed, simply ignore it. + +--- CMakeLists.txt.orig 2017-09-27 08:23:50 UTC ++++ CMakeLists.txt +@@ -55,7 +55,6 @@ add_subdirectory( app ) + add_subdirectory( kcm_hotkeys ) + # kdedmodule and standalone demon for hotkeys + add_subdirectory( data ) +-add_subdirectory( test ) + add_subdirectory( doc ) + feature_summary(WHAT ALL INCLUDE_QUIET_PACKAGES FATAL_ON_MISSING_REQUIRED_PACKAGES) + Property changes on: head/devel/plasma5-khotkeys/files/patch-CMakeLists.txt ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/devel/plasma5-khotkeys/pkg-descr =================================================================== --- head/devel/plasma5-khotkeys/pkg-descr (nonexistent) +++ head/devel/plasma5-khotkeys/pkg-descr (revision 468495) @@ -0,0 +1,3 @@ +Plasma5 library for hotkeys. + +WWW: https://www.kde.org/plasma-desktop Property changes on: head/devel/plasma5-khotkeys/pkg-descr ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/devel/plasma5-khotkeys/pkg-plist =================================================================== --- head/devel/plasma5-khotkeys/pkg-plist (nonexistent) +++ head/devel/plasma5-khotkeys/pkg-plist (revision 468495) @@ -0,0 +1,132 @@ +lib/cmake/KHotKeysDBusInterface/KHotKeysDBusInterfaceConfig.cmake +lib/libkhotkeysprivate.so.5 +lib/libkhotkeysprivate.so.%%KDE_PLASMA_VERSION%% +%%QT_PLUGINDIR%%/kcm_hotkeys.so +%%QT_PLUGINDIR%%/kf5/kded/khotkeys.so +share/dbus-1/interfaces/org.kde.khotkeys.xml +share/doc/HTML/ca/kcontrol/khotkeys/groups-comment.png +share/doc/HTML/ca/kcontrol/khotkeys/index.cache.bz2 +share/doc/HTML/ca/kcontrol/khotkeys/index.docbook +share/doc/HTML/ca/kcontrol/khotkeys/manage-export.png +share/doc/HTML/ca/kcontrol/khotkeys/oxygen-22x22-edit-clear-locationbar-rtl.png +share/doc/HTML/ca/kcontrol/khotkeys/settings.png +share/doc/HTML/ca/kcontrol/khotkeys/shorcuts-action-command.png +share/doc/HTML/ca/kcontrol/khotkeys/shorcuts-action-keyboard.png +share/doc/HTML/ca/kcontrol/khotkeys/shorcuts-trigger-keyboard.png +share/doc/HTML/ca/kcontrol/khotkeys/shorcuts-trigger-mouse.png +share/doc/HTML/de/kcontrol/khotkeys/index.cache.bz2 +share/doc/HTML/de/kcontrol/khotkeys/index.docbook +share/doc/HTML/en/kcontrol/khotkeys/document-open.png +share/doc/HTML/en/kcontrol/khotkeys/groups-comment.png +share/doc/HTML/en/kcontrol/khotkeys/index.cache.bz2 +share/doc/HTML/en/kcontrol/khotkeys/index.docbook +share/doc/HTML/en/kcontrol/khotkeys/manage-export.png +share/doc/HTML/en/kcontrol/khotkeys/oxygen-22x22-edit-clear-locationbar-rtl.png +share/doc/HTML/en/kcontrol/khotkeys/settings.png +share/doc/HTML/en/kcontrol/khotkeys/shortcuts-action-command.png +share/doc/HTML/en/kcontrol/khotkeys/shortcuts-action-dbus.png +share/doc/HTML/en/kcontrol/khotkeys/shortcuts-action-keyboard.png +share/doc/HTML/en/kcontrol/khotkeys/shortcuts-trigger-keyboard.png +share/doc/HTML/en/kcontrol/khotkeys/shortcuts-trigger-mouse.png +share/doc/HTML/it/kcontrol/khotkeys/index.cache.bz2 +share/doc/HTML/it/kcontrol/khotkeys/index.docbook +share/doc/HTML/nl/kcontrol/khotkeys/index.cache.bz2 +share/doc/HTML/nl/kcontrol/khotkeys/index.docbook +share/doc/HTML/pt/kcontrol/khotkeys/index.cache.bz2 +share/doc/HTML/pt/kcontrol/khotkeys/index.docbook +share/doc/HTML/pt_BR/kcontrol/khotkeys/index.cache.bz2 +share/doc/HTML/pt_BR/kcontrol/khotkeys/index.docbook +share/doc/HTML/uk/kcontrol/khotkeys/index.cache.bz2 +share/doc/HTML/uk/kcontrol/khotkeys/index.docbook +%%DATADIR%%/defaults.khotkeys +%%DATADIR%%/kde32b1.khotkeys +%%DATADIR%%/konqueror_gestures_kde321.khotkeys +share/kservices5/khotkeys.desktop +share/locale/af/LC_MESSAGES/khotkeys.mo +share/locale/ar/LC_MESSAGES/khotkeys.mo +share/locale/ast/LC_MESSAGES/khotkeys.mo +share/locale/be/LC_MESSAGES/khotkeys.mo +share/locale/bg/LC_MESSAGES/khotkeys.mo +share/locale/bn_IN/LC_MESSAGES/khotkeys.mo +share/locale/br/LC_MESSAGES/khotkeys.mo +share/locale/bs/LC_MESSAGES/khotkeys.mo +share/locale/ca/LC_MESSAGES/khotkeys.mo +share/locale/ca@valencia/LC_MESSAGES/khotkeys.mo +share/locale/cs/LC_MESSAGES/khotkeys.mo +share/locale/csb/LC_MESSAGES/khotkeys.mo +share/locale/cy/LC_MESSAGES/khotkeys.mo +share/locale/da/LC_MESSAGES/khotkeys.mo +share/locale/de/LC_MESSAGES/khotkeys.mo +share/locale/el/LC_MESSAGES/khotkeys.mo +share/locale/en_GB/LC_MESSAGES/khotkeys.mo +share/locale/eo/LC_MESSAGES/khotkeys.mo +share/locale/es/LC_MESSAGES/khotkeys.mo +share/locale/et/LC_MESSAGES/khotkeys.mo +share/locale/eu/LC_MESSAGES/khotkeys.mo +share/locale/fa/LC_MESSAGES/khotkeys.mo +share/locale/fi/LC_MESSAGES/khotkeys.mo +share/locale/fr/LC_MESSAGES/khotkeys.mo +share/locale/fy/LC_MESSAGES/khotkeys.mo +share/locale/ga/LC_MESSAGES/khotkeys.mo +share/locale/gl/LC_MESSAGES/khotkeys.mo +share/locale/gu/LC_MESSAGES/khotkeys.mo +share/locale/he/LC_MESSAGES/khotkeys.mo +share/locale/hi/LC_MESSAGES/khotkeys.mo +share/locale/hne/LC_MESSAGES/khotkeys.mo +share/locale/hr/LC_MESSAGES/khotkeys.mo +share/locale/hsb/LC_MESSAGES/khotkeys.mo +share/locale/hu/LC_MESSAGES/khotkeys.mo +share/locale/ia/LC_MESSAGES/khotkeys.mo +share/locale/id/LC_MESSAGES/khotkeys.mo +share/locale/is/LC_MESSAGES/khotkeys.mo +share/locale/it/LC_MESSAGES/khotkeys.mo +share/locale/ja/LC_MESSAGES/khotkeys.mo +share/locale/kk/LC_MESSAGES/khotkeys.mo +share/locale/km/LC_MESSAGES/khotkeys.mo +share/locale/kn/LC_MESSAGES/khotkeys.mo +share/locale/ko/LC_MESSAGES/khotkeys.mo +share/locale/ku/LC_MESSAGES/khotkeys.mo +share/locale/lt/LC_MESSAGES/khotkeys.mo +share/locale/lv/LC_MESSAGES/khotkeys.mo +share/locale/mai/LC_MESSAGES/khotkeys.mo +share/locale/mk/LC_MESSAGES/khotkeys.mo +share/locale/ml/LC_MESSAGES/khotkeys.mo +share/locale/mr/LC_MESSAGES/khotkeys.mo +share/locale/ms/LC_MESSAGES/khotkeys.mo +share/locale/nb/LC_MESSAGES/khotkeys.mo +share/locale/nds/LC_MESSAGES/khotkeys.mo +share/locale/ne/LC_MESSAGES/khotkeys.mo +share/locale/nl/LC_MESSAGES/khotkeys.mo +share/locale/nn/LC_MESSAGES/khotkeys.mo +share/locale/oc/LC_MESSAGES/khotkeys.mo +share/locale/or/LC_MESSAGES/khotkeys.mo +share/locale/pa/LC_MESSAGES/khotkeys.mo +share/locale/pl/LC_MESSAGES/khotkeys.mo +share/locale/pt/LC_MESSAGES/khotkeys.mo +share/locale/pt_BR/LC_MESSAGES/khotkeys.mo +share/locale/ro/LC_MESSAGES/khotkeys.mo +share/locale/ru/LC_MESSAGES/khotkeys.mo +share/locale/se/LC_MESSAGES/khotkeys.mo +share/locale/si/LC_MESSAGES/khotkeys.mo +share/locale/sk/LC_MESSAGES/khotkeys.mo +share/locale/sl/LC_MESSAGES/khotkeys.mo +share/locale/sq/LC_MESSAGES/khotkeys.mo +share/locale/sr/LC_MESSAGES/khotkeys.mo +share/locale/sr@ijekavian/LC_MESSAGES/khotkeys.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/khotkeys.mo +share/locale/sr@latin/LC_MESSAGES/khotkeys.mo +share/locale/sv/LC_MESSAGES/khotkeys.mo +share/locale/ta/LC_MESSAGES/khotkeys.mo +share/locale/te/LC_MESSAGES/khotkeys.mo +share/locale/tg/LC_MESSAGES/khotkeys.mo +share/locale/th/LC_MESSAGES/khotkeys.mo +share/locale/tr/LC_MESSAGES/khotkeys.mo +share/locale/ug/LC_MESSAGES/khotkeys.mo +share/locale/uk/LC_MESSAGES/khotkeys.mo +share/locale/uz/LC_MESSAGES/khotkeys.mo +share/locale/uz@cyrillic/LC_MESSAGES/khotkeys.mo +share/locale/vi/LC_MESSAGES/khotkeys.mo +share/locale/wa/LC_MESSAGES/khotkeys.mo +share/locale/xh/LC_MESSAGES/khotkeys.mo +share/locale/zh_CN/LC_MESSAGES/khotkeys.mo +share/locale/zh_TW/LC_MESSAGES/khotkeys.mo Property changes on: head/devel/plasma5-khotkeys/pkg-plist ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/devel/plasma5-kwrited/Makefile =================================================================== --- head/devel/plasma5-kwrited/Makefile (nonexistent) +++ head/devel/plasma5-kwrited/Makefile (revision 468495) @@ -0,0 +1,15 @@ +# $FreeBSD$ + +PORTNAME= kwrited +DISTVERSION= ${KDE_PLASMA_VERSION} +CATEGORIES= devel kde kde-plasma + +MAINTAINER= kde@FreeBSD.org +COMMENT= Plasma5 daemon listening for wall and write messages + +USES= cmake:outsource compiler:c++11-lib cpe gettext kde:5 tar:xz +USE_KDE= coreaddons dbusaddons ecm i18n notifications pty +USE_QT5= core dbus gui widgets \ + buildtools_build qmake_build + +.include Property changes on: head/devel/plasma5-kwrited/Makefile ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/devel/plasma5-kwrited/distinfo =================================================================== --- head/devel/plasma5-kwrited/distinfo (nonexistent) +++ head/devel/plasma5-kwrited/distinfo (revision 468495) @@ -0,0 +1,3 @@ +TIMESTAMP = 1523811759 +SHA256 (KDE/plasma/5.12.4/kwrited-5.12.4.tar.xz) = fead2852cbafe7dfbe2e57f7a46c3e6ad5ab0c1f17be7d1da4d5baee77b55a54 +SIZE (KDE/plasma/5.12.4/kwrited-5.12.4.tar.xz) = 20320 Property changes on: head/devel/plasma5-kwrited/distinfo ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/devel/plasma5-kwrited/pkg-descr =================================================================== --- head/devel/plasma5-kwrited/pkg-descr (nonexistent) +++ head/devel/plasma5-kwrited/pkg-descr (revision 468495) @@ -0,0 +1,3 @@ +Plasma5 daemon listening for wall and write messages. + +WWW: https://www.kde.org/plasma-desktop Property changes on: head/devel/plasma5-kwrited/pkg-descr ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/devel/plasma5-kwrited/pkg-plist =================================================================== --- head/devel/plasma5-kwrited/pkg-plist (nonexistent) +++ head/devel/plasma5-kwrited/pkg-plist (revision 468495) @@ -0,0 +1,2 @@ +%%QT_PLUGINDIR%%/kf5/kded/kwrited.so +share/knotifications5/kwrited.notifyrc Property changes on: head/devel/plasma5-kwrited/pkg-plist ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/devel/plasma5-plasma-sdk/Makefile =================================================================== --- head/devel/plasma5-plasma-sdk/Makefile (nonexistent) +++ head/devel/plasma5-plasma-sdk/Makefile (revision 468495) @@ -0,0 +1,19 @@ +# $FreeBSD$ + +PORTNAME= plasma-sdk +DISTVERSION= ${KDE_PLASMA_VERSION} +CATEGORIES= devel kde kde-plasma + +MAINTAINER= kde@FreeBSD.org +COMMENT= Plasma5 applications useful for Plasma development + +USES= cmake:outsource compiler:c++11-lib cpe gettext kde:5 tar:xz +USE_KDE= archive attica auth codecs completion config configwidgets \ + coreaddons dbusaddons ecm i18n iconthemes itemmodels \ + jobwidgets kdeclarative kio kirigami2 newstuff package parts \ + plasma-framework service sonnet texteditor textwidgets \ + widgetsaddons windowsystem xmlgui +USE_QT5= concurrent core dbus gui network qml quick webkit widgets x11extras xml \ + buildtools_build qmake_build + +.include Property changes on: head/devel/plasma5-plasma-sdk/Makefile ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/devel/plasma5-plasma-sdk/distinfo =================================================================== --- head/devel/plasma5-plasma-sdk/distinfo (nonexistent) +++ head/devel/plasma5-plasma-sdk/distinfo (revision 468495) @@ -0,0 +1,3 @@ +TIMESTAMP = 1523811760 +SHA256 (KDE/plasma/5.12.4/plasma-sdk-5.12.4.tar.xz) = 624a9b7984f93142cfa333bf34b8c45052b1c065a98ede967e268d1fee3984d7 +SIZE (KDE/plasma/5.12.4/plasma-sdk-5.12.4.tar.xz) = 243864 Property changes on: head/devel/plasma5-plasma-sdk/distinfo ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/devel/plasma5-plasma-sdk/pkg-descr =================================================================== --- head/devel/plasma5-plasma-sdk/pkg-descr (nonexistent) +++ head/devel/plasma5-plasma-sdk/pkg-descr (revision 468495) @@ -0,0 +1,3 @@ +Useful applications for Plasma development. + +WWW: https://www.kde.org/plasma-desktop Property changes on: head/devel/plasma5-plasma-sdk/pkg-descr ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/devel/plasma5-plasma-sdk/pkg-plist =================================================================== --- head/devel/plasma5-plasma-sdk/pkg-plist (nonexistent) +++ head/devel/plasma5-plasma-sdk/pkg-plist (revision 468495) @@ -0,0 +1,495 @@ +bin/cuttlefish +bin/lookandfeelexplorer +bin/plasmaengineexplorer +bin/plasmathemeexplorer +bin/plasmoidviewer +%%QT_PLUGINDIR%%/ktexteditor/cuttlefishplugin.so +man/man1/plasmaengineexplorer.1.gz +man/man1/plasmoidviewer.1.gz +share/applications/org.kde.cuttlefish.desktop +share/applications/org.kde.plasma.lookandfeelexplorer.desktop +share/applications/org.kde.plasma.themeexplorer.desktop +share/kpackage/genericqml/org.kde.plasma.lookandfeelexplorer/contents/ui/FormField.qml +share/kpackage/genericqml/org.kde.plasma.lookandfeelexplorer/contents/ui/FormLabel.qml +share/kpackage/genericqml/org.kde.plasma.lookandfeelexplorer/contents/ui/MetadataEditor.qml +share/kpackage/genericqml/org.kde.plasma.lookandfeelexplorer/contents/ui/main.qml +share/kpackage/genericqml/org.kde.plasma.lookandfeelexplorer/metadata.desktop +share/kpackage/genericqml/org.kde.plasma.lookandfeelexplorer/metadata.json +share/kpackage/genericqml/org.kde.plasma.themeexplorer/contents/code/openInEditor.sh +share/kpackage/genericqml/org.kde.plasma.themeexplorer/contents/data/themeDescription.json +share/kpackage/genericqml/org.kde.plasma.themeexplorer/contents/data/todo +share/kpackage/genericqml/org.kde.plasma.themeexplorer/contents/ui/ColorButton.qml +share/kpackage/genericqml/org.kde.plasma.themeexplorer/contents/ui/ColorEditor.qml +share/kpackage/genericqml/org.kde.plasma.themeexplorer/contents/ui/FormLabel.qml +share/kpackage/genericqml/org.kde.plasma.themeexplorer/contents/ui/MetadataEditor.qml +share/kpackage/genericqml/org.kde.plasma.themeexplorer/contents/ui/delegates/Hand.qml +share/kpackage/genericqml/org.kde.plasma.themeexplorer/contents/ui/delegates/actionbutton.qml +share/kpackage/genericqml/org.kde.plasma.themeexplorer/contents/ui/delegates/allframesvgs.qml +share/kpackage/genericqml/org.kde.plasma.themeexplorer/contents/ui/delegates/analog_meter.qml +share/kpackage/genericqml/org.kde.plasma.themeexplorer/contents/ui/delegates/busyindicator.qml +share/kpackage/genericqml/org.kde.plasma.themeexplorer/contents/ui/delegates/button.qml +share/kpackage/genericqml/org.kde.plasma.themeexplorer/contents/ui/delegates/checkmarks.qml +share/kpackage/genericqml/org.kde.plasma.themeexplorer/contents/ui/delegates/clock.qml +share/kpackage/genericqml/org.kde.plasma.themeexplorer/contents/ui/delegates/containment-controls.qml +share/kpackage/genericqml/org.kde.plasma.themeexplorer/contents/ui/delegates/dialog.qml +share/kpackage/genericqml/org.kde.plasma.themeexplorer/contents/ui/delegates/framesvg.qml +share/kpackage/genericqml/org.kde.plasma.themeexplorer/contents/ui/delegates/icons.qml +share/kpackage/genericqml/org.kde.plasma.themeexplorer/contents/ui/delegates/listitem.qml +share/kpackage/genericqml/org.kde.plasma.themeexplorer/contents/ui/delegates/monitor.qml +share/kpackage/genericqml/org.kde.plasma.themeexplorer/contents/ui/delegates/panel.qml +share/kpackage/genericqml/org.kde.plasma.themeexplorer/contents/ui/delegates/progressbar.qml +share/kpackage/genericqml/org.kde.plasma.themeexplorer/contents/ui/delegates/scrollbar.qml +share/kpackage/genericqml/org.kde.plasma.themeexplorer/contents/ui/delegates/slider.qml +share/kpackage/genericqml/org.kde.plasma.themeexplorer/contents/ui/delegates/tabbar.qml +share/kpackage/genericqml/org.kde.plasma.themeexplorer/contents/ui/delegates/textfield.qml +share/kpackage/genericqml/org.kde.plasma.themeexplorer/contents/ui/fakecontrols/Button.qml +share/kpackage/genericqml/org.kde.plasma.themeexplorer/contents/ui/fakecontrols/CheckBox.qml +share/kpackage/genericqml/org.kde.plasma.themeexplorer/contents/ui/fakecontrols/LineEdit.qml +share/kpackage/genericqml/org.kde.plasma.themeexplorer/contents/ui/main.qml +share/kpackage/genericqml/org.kde.plasma.themeexplorer/metadata.desktop +share/kpackage/genericqml/org.kde.plasma.themeexplorer/metadata.json +share/kservices5/plasma-package-org.kde.plasma.cuttlefish.desktop +share/kservices5/plasma-shell-org.kde.plasma.plasmoidviewershell.desktop +share/locale/ar/LC_MESSAGES/cuttlefish.mo +share/locale/ar/LC_MESSAGES/cuttlefish_editorplugin.mo +share/locale/ar/LC_MESSAGES/org.kde.plasma.themeexplorer.mo +share/locale/ar/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo +share/locale/ar/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/ar/LC_MESSAGES/plasmawallpaperviewer.mo +share/locale/ar/LC_MESSAGES/plasmoidviewer.mo +share/locale/ast/LC_MESSAGES/cuttlefish.mo +share/locale/ast/LC_MESSAGES/cuttlefish_editorplugin.mo +share/locale/ast/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo +share/locale/ast/LC_MESSAGES/org.kde.plasma.themeexplorer.mo +share/locale/ast/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo +share/locale/ast/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/ast/LC_MESSAGES/plasmawallpaperviewer.mo +share/locale/ast/LC_MESSAGES/plasmoidviewer.mo +share/locale/be/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/be@latin/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/be@latin/LC_MESSAGES/plasmoidviewer.mo +share/locale/bg/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/bg/LC_MESSAGES/plasmoidviewer.mo +share/locale/bn_IN/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/bn_IN/LC_MESSAGES/plasmoidviewer.mo +share/locale/bs/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/bs/LC_MESSAGES/plasmawallpaperviewer.mo +share/locale/bs/LC_MESSAGES/plasmoidviewer.mo +share/locale/ca/LC_MESSAGES/cuttlefish.mo +share/locale/ca/LC_MESSAGES/cuttlefish_editorplugin.mo +share/locale/ca/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo +share/locale/ca/LC_MESSAGES/org.kde.plasma.themeexplorer.mo +share/locale/ca/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo +share/locale/ca/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/ca/LC_MESSAGES/plasmawallpaperviewer.mo +share/locale/ca/LC_MESSAGES/plasmoidviewer.mo +share/locale/ca@valencia/LC_MESSAGES/cuttlefish.mo +share/locale/ca@valencia/LC_MESSAGES/cuttlefish_editorplugin.mo +share/locale/ca@valencia/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo +share/locale/ca@valencia/LC_MESSAGES/org.kde.plasma.themeexplorer.mo +share/locale/ca@valencia/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo +share/locale/ca@valencia/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/ca@valencia/LC_MESSAGES/plasmawallpaperviewer.mo +share/locale/ca@valencia/LC_MESSAGES/plasmoidviewer.mo +share/locale/cs/LC_MESSAGES/cuttlefish.mo +share/locale/cs/LC_MESSAGES/cuttlefish_editorplugin.mo +share/locale/cs/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo +share/locale/cs/LC_MESSAGES/org.kde.plasma.themeexplorer.mo +share/locale/cs/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo +share/locale/cs/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/cs/LC_MESSAGES/plasmawallpaperviewer.mo +share/locale/cs/LC_MESSAGES/plasmoidviewer.mo +share/locale/csb/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/csb/LC_MESSAGES/plasmawallpaperviewer.mo +share/locale/csb/LC_MESSAGES/plasmoidviewer.mo +share/locale/da/LC_MESSAGES/cuttlefish.mo +share/locale/da/LC_MESSAGES/cuttlefish_editorplugin.mo +share/locale/da/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo +share/locale/da/LC_MESSAGES/org.kde.plasma.themeexplorer.mo +share/locale/da/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo +share/locale/da/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/da/LC_MESSAGES/plasmawallpaperviewer.mo +share/locale/da/LC_MESSAGES/plasmoidviewer.mo +share/locale/de/LC_MESSAGES/cuttlefish.mo +share/locale/de/LC_MESSAGES/cuttlefish_editorplugin.mo +share/locale/de/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo +share/locale/de/LC_MESSAGES/org.kde.plasma.themeexplorer.mo +share/locale/de/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo +share/locale/de/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/de/LC_MESSAGES/plasmawallpaperviewer.mo +share/locale/de/LC_MESSAGES/plasmoidviewer.mo +share/locale/el/LC_MESSAGES/cuttlefish.mo +share/locale/el/LC_MESSAGES/cuttlefish_editorplugin.mo +share/locale/el/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo +share/locale/el/LC_MESSAGES/org.kde.plasma.themeexplorer.mo +share/locale/el/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo +share/locale/el/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/el/LC_MESSAGES/plasmawallpaperviewer.mo +share/locale/el/LC_MESSAGES/plasmoidviewer.mo +share/locale/en_GB/LC_MESSAGES/cuttlefish.mo +share/locale/en_GB/LC_MESSAGES/cuttlefish_editorplugin.mo +share/locale/en_GB/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo +share/locale/en_GB/LC_MESSAGES/org.kde.plasma.themeexplorer.mo +share/locale/en_GB/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo +share/locale/en_GB/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/en_GB/LC_MESSAGES/plasmawallpaperviewer.mo +share/locale/en_GB/LC_MESSAGES/plasmoidviewer.mo +share/locale/eo/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/eo/LC_MESSAGES/plasmawallpaperviewer.mo +share/locale/eo/LC_MESSAGES/plasmoidviewer.mo +share/locale/es/LC_MESSAGES/cuttlefish.mo +share/locale/es/LC_MESSAGES/cuttlefish_editorplugin.mo +share/locale/es/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo +share/locale/es/LC_MESSAGES/org.kde.plasma.themeexplorer.mo +share/locale/es/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo +share/locale/es/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/es/LC_MESSAGES/plasmawallpaperviewer.mo +share/locale/es/LC_MESSAGES/plasmoidviewer.mo +share/locale/et/LC_MESSAGES/cuttlefish.mo +share/locale/et/LC_MESSAGES/cuttlefish_editorplugin.mo +share/locale/et/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo +share/locale/et/LC_MESSAGES/org.kde.plasma.themeexplorer.mo +share/locale/et/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo +share/locale/et/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/et/LC_MESSAGES/plasmawallpaperviewer.mo +share/locale/et/LC_MESSAGES/plasmoidviewer.mo +share/locale/eu/LC_MESSAGES/cuttlefish.mo +share/locale/eu/LC_MESSAGES/cuttlefish_editorplugin.mo +share/locale/eu/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo +share/locale/eu/LC_MESSAGES/org.kde.plasma.themeexplorer.mo +share/locale/eu/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo +share/locale/eu/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/eu/LC_MESSAGES/plasmawallpaperviewer.mo +share/locale/eu/LC_MESSAGES/plasmoidviewer.mo +share/locale/fa/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/fi/LC_MESSAGES/cuttlefish.mo +share/locale/fi/LC_MESSAGES/cuttlefish_editorplugin.mo +share/locale/fi/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo +share/locale/fi/LC_MESSAGES/org.kde.plasma.themeexplorer.mo +share/locale/fi/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo +share/locale/fi/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/fi/LC_MESSAGES/plasmawallpaperviewer.mo +share/locale/fi/LC_MESSAGES/plasmoidviewer.mo +share/locale/fr/LC_MESSAGES/cuttlefish.mo +share/locale/fr/LC_MESSAGES/cuttlefish_editorplugin.mo +share/locale/fr/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo +share/locale/fr/LC_MESSAGES/org.kde.plasma.themeexplorer.mo +share/locale/fr/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo +share/locale/fr/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/fr/LC_MESSAGES/plasmawallpaperviewer.mo +share/locale/fr/LC_MESSAGES/plasmoidviewer.mo +share/locale/fy/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/fy/LC_MESSAGES/plasmawallpaperviewer.mo +share/locale/fy/LC_MESSAGES/plasmoidviewer.mo +share/locale/ga/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/ga/LC_MESSAGES/plasmawallpaperviewer.mo +share/locale/ga/LC_MESSAGES/plasmoidviewer.mo +share/locale/gl/LC_MESSAGES/cuttlefish.mo +share/locale/gl/LC_MESSAGES/cuttlefish_editorplugin.mo +share/locale/gl/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo +share/locale/gl/LC_MESSAGES/org.kde.plasma.themeexplorer.mo +share/locale/gl/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo +share/locale/gl/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/gl/LC_MESSAGES/plasmawallpaperviewer.mo +share/locale/gl/LC_MESSAGES/plasmoidviewer.mo +share/locale/gu/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/gu/LC_MESSAGES/plasmawallpaperviewer.mo +share/locale/gu/LC_MESSAGES/plasmoidviewer.mo +share/locale/he/LC_MESSAGES/cuttlefish.mo +share/locale/he/LC_MESSAGES/cuttlefish_editorplugin.mo +share/locale/he/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo +share/locale/he/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo +share/locale/he/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/he/LC_MESSAGES/plasmawallpaperviewer.mo +share/locale/he/LC_MESSAGES/plasmoidviewer.mo +share/locale/hi/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/hi/LC_MESSAGES/plasmawallpaperviewer.mo +share/locale/hi/LC_MESSAGES/plasmoidviewer.mo +share/locale/hne/LC_MESSAGES/plasmoidviewer.mo +share/locale/hr/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/hr/LC_MESSAGES/plasmawallpaperviewer.mo +share/locale/hr/LC_MESSAGES/plasmoidviewer.mo +share/locale/hsb/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/hsb/LC_MESSAGES/plasmoidviewer.mo +share/locale/hu/LC_MESSAGES/cuttlefish.mo +share/locale/hu/LC_MESSAGES/cuttlefish_editorplugin.mo +share/locale/hu/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo +share/locale/hu/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/hu/LC_MESSAGES/plasmawallpaperviewer.mo +share/locale/hu/LC_MESSAGES/plasmoidviewer.mo +share/locale/ia/LC_MESSAGES/cuttlefish.mo +share/locale/ia/LC_MESSAGES/cuttlefish_editorplugin.mo +share/locale/ia/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo +share/locale/ia/LC_MESSAGES/org.kde.plasma.themeexplorer.mo +share/locale/ia/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo +share/locale/ia/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/ia/LC_MESSAGES/plasmawallpaperviewer.mo +share/locale/ia/LC_MESSAGES/plasmoidviewer.mo +share/locale/id/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/id/LC_MESSAGES/plasmawallpaperviewer.mo +share/locale/id/LC_MESSAGES/plasmoidviewer.mo +share/locale/is/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/is/LC_MESSAGES/plasmawallpaperviewer.mo +share/locale/is/LC_MESSAGES/plasmoidviewer.mo +share/locale/it/LC_MESSAGES/cuttlefish.mo +share/locale/it/LC_MESSAGES/cuttlefish_editorplugin.mo +share/locale/it/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo +share/locale/it/LC_MESSAGES/org.kde.plasma.themeexplorer.mo +share/locale/it/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo +share/locale/it/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/it/LC_MESSAGES/plasmawallpaperviewer.mo +share/locale/it/LC_MESSAGES/plasmoidviewer.mo +share/locale/ja/LC_MESSAGES/cuttlefish.mo +share/locale/ja/LC_MESSAGES/cuttlefish_editorplugin.mo +share/locale/ja/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo +share/locale/ja/LC_MESSAGES/org.kde.plasma.themeexplorer.mo +share/locale/ja/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo +share/locale/ja/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/ja/LC_MESSAGES/plasmawallpaperviewer.mo +share/locale/ja/LC_MESSAGES/plasmoidviewer.mo +share/locale/kk/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/kk/LC_MESSAGES/plasmawallpaperviewer.mo +share/locale/kk/LC_MESSAGES/plasmoidviewer.mo +share/locale/km/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/km/LC_MESSAGES/plasmawallpaperviewer.mo +share/locale/km/LC_MESSAGES/plasmoidviewer.mo +share/locale/kn/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/kn/LC_MESSAGES/plasmawallpaperviewer.mo +share/locale/ko/LC_MESSAGES/cuttlefish.mo +share/locale/ko/LC_MESSAGES/cuttlefish_editorplugin.mo +share/locale/ko/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo +share/locale/ko/LC_MESSAGES/org.kde.plasma.themeexplorer.mo +share/locale/ko/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo +share/locale/ko/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/ko/LC_MESSAGES/plasmawallpaperviewer.mo +share/locale/ko/LC_MESSAGES/plasmoidviewer.mo +share/locale/ku/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/ku/LC_MESSAGES/plasmoidviewer.mo +share/locale/lt/LC_MESSAGES/cuttlefish.mo +share/locale/lt/LC_MESSAGES/org.kde.plasma.themeexplorer.mo +share/locale/lt/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo +share/locale/lt/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/lt/LC_MESSAGES/plasmawallpaperviewer.mo +share/locale/lt/LC_MESSAGES/plasmoidviewer.mo +share/locale/lv/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/lv/LC_MESSAGES/plasmawallpaperviewer.mo +share/locale/lv/LC_MESSAGES/plasmoidviewer.mo +share/locale/mai/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/mai/LC_MESSAGES/plasmawallpaperviewer.mo +share/locale/mai/LC_MESSAGES/plasmoidviewer.mo +share/locale/mk/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/ml/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/ml/LC_MESSAGES/plasmoidviewer.mo +share/locale/mr/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/mr/LC_MESSAGES/plasmawallpaperviewer.mo +share/locale/mr/LC_MESSAGES/plasmoidviewer.mo +share/locale/ms/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/ms/LC_MESSAGES/plasmawallpaperviewer.mo +share/locale/ms/LC_MESSAGES/plasmoidviewer.mo +share/locale/nb/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/nb/LC_MESSAGES/plasmawallpaperviewer.mo +share/locale/nb/LC_MESSAGES/plasmoidviewer.mo +share/locale/nds/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/nds/LC_MESSAGES/plasmawallpaperviewer.mo +share/locale/nds/LC_MESSAGES/plasmoidviewer.mo +share/locale/ne/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/nl/LC_MESSAGES/cuttlefish.mo +share/locale/nl/LC_MESSAGES/cuttlefish_editorplugin.mo +share/locale/nl/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo +share/locale/nl/LC_MESSAGES/org.kde.plasma.themeexplorer.mo +share/locale/nl/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo +share/locale/nl/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/nl/LC_MESSAGES/plasmawallpaperviewer.mo +share/locale/nl/LC_MESSAGES/plasmoidviewer.mo +share/locale/nn/LC_MESSAGES/cuttlefish.mo +share/locale/nn/LC_MESSAGES/cuttlefish_editorplugin.mo +share/locale/nn/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo +share/locale/nn/LC_MESSAGES/org.kde.plasma.themeexplorer.mo +share/locale/nn/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo +share/locale/nn/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/nn/LC_MESSAGES/plasmawallpaperviewer.mo +share/locale/nn/LC_MESSAGES/plasmoidviewer.mo +share/locale/oc/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/or/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/or/LC_MESSAGES/plasmoidviewer.mo +share/locale/pa/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo +share/locale/pa/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/pa/LC_MESSAGES/plasmawallpaperviewer.mo +share/locale/pa/LC_MESSAGES/plasmoidviewer.mo +share/locale/pl/LC_MESSAGES/cuttlefish.mo +share/locale/pl/LC_MESSAGES/cuttlefish_editorplugin.mo +share/locale/pl/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo +share/locale/pl/LC_MESSAGES/org.kde.plasma.themeexplorer.mo +share/locale/pl/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo +share/locale/pl/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/pl/LC_MESSAGES/plasmawallpaperviewer.mo +share/locale/pl/LC_MESSAGES/plasmoidviewer.mo +share/locale/pt/LC_MESSAGES/cuttlefish.mo +share/locale/pt/LC_MESSAGES/cuttlefish_editorplugin.mo +share/locale/pt/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo +share/locale/pt/LC_MESSAGES/org.kde.plasma.themeexplorer.mo +share/locale/pt/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo +share/locale/pt/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/pt/LC_MESSAGES/plasmawallpaperviewer.mo +share/locale/pt/LC_MESSAGES/plasmoidviewer.mo +share/locale/pt_BR/LC_MESSAGES/cuttlefish.mo +share/locale/pt_BR/LC_MESSAGES/cuttlefish_editorplugin.mo +share/locale/pt_BR/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo +share/locale/pt_BR/LC_MESSAGES/org.kde.plasma.themeexplorer.mo +share/locale/pt_BR/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo +share/locale/pt_BR/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/pt_BR/LC_MESSAGES/plasmawallpaperviewer.mo +share/locale/pt_BR/LC_MESSAGES/plasmoidviewer.mo +share/locale/ro/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/ro/LC_MESSAGES/plasmawallpaperviewer.mo +share/locale/ro/LC_MESSAGES/plasmoidviewer.mo +share/locale/ru/LC_MESSAGES/cuttlefish.mo +share/locale/ru/LC_MESSAGES/cuttlefish_editorplugin.mo +share/locale/ru/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo +share/locale/ru/LC_MESSAGES/org.kde.plasma.themeexplorer.mo +share/locale/ru/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo +share/locale/ru/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/ru/LC_MESSAGES/plasmawallpaperviewer.mo +share/locale/ru/LC_MESSAGES/plasmoidviewer.mo +share/locale/se/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/si/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/si/LC_MESSAGES/plasmawallpaperviewer.mo +share/locale/si/LC_MESSAGES/plasmoidviewer.mo +share/locale/sk/LC_MESSAGES/cuttlefish.mo +share/locale/sk/LC_MESSAGES/cuttlefish_editorplugin.mo +share/locale/sk/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo +share/locale/sk/LC_MESSAGES/org.kde.plasma.themeexplorer.mo +share/locale/sk/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo +share/locale/sk/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/sk/LC_MESSAGES/plasmawallpaperviewer.mo +share/locale/sk/LC_MESSAGES/plasmoidviewer.mo +share/locale/sl/LC_MESSAGES/cuttlefish.mo +share/locale/sl/LC_MESSAGES/cuttlefish_editorplugin.mo +share/locale/sl/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo +share/locale/sl/LC_MESSAGES/org.kde.plasma.themeexplorer.mo +share/locale/sl/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo +share/locale/sl/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/sl/LC_MESSAGES/plasmawallpaperviewer.mo +share/locale/sl/LC_MESSAGES/plasmoidviewer.mo +share/locale/sq/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/sq/LC_MESSAGES/plasmawallpaperviewer.mo +share/locale/sq/LC_MESSAGES/plasmoidviewer.mo +share/locale/sr/LC_MESSAGES/cuttlefish.mo +share/locale/sr/LC_MESSAGES/cuttlefish_editorplugin.mo +share/locale/sr/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo +share/locale/sr/LC_MESSAGES/org.kde.plasma.themeexplorer.mo +share/locale/sr/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo +share/locale/sr/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/sr/LC_MESSAGES/plasmawallpaperviewer.mo +share/locale/sr/LC_MESSAGES/plasmoidviewer.mo +share/locale/sr@ijekavian/LC_MESSAGES/cuttlefish.mo +share/locale/sr@ijekavian/LC_MESSAGES/cuttlefish_editorplugin.mo +share/locale/sr@ijekavian/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo +share/locale/sr@ijekavian/LC_MESSAGES/org.kde.plasma.themeexplorer.mo +share/locale/sr@ijekavian/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo +share/locale/sr@ijekavian/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/sr@ijekavian/LC_MESSAGES/plasmawallpaperviewer.mo +share/locale/sr@ijekavian/LC_MESSAGES/plasmoidviewer.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/cuttlefish.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/cuttlefish_editorplugin.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/org.kde.plasma.themeexplorer.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/plasmawallpaperviewer.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/plasmoidviewer.mo +share/locale/sr@latin/LC_MESSAGES/cuttlefish.mo +share/locale/sr@latin/LC_MESSAGES/cuttlefish_editorplugin.mo +share/locale/sr@latin/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo +share/locale/sr@latin/LC_MESSAGES/org.kde.plasma.themeexplorer.mo +share/locale/sr@latin/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo +share/locale/sr@latin/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/sr@latin/LC_MESSAGES/plasmawallpaperviewer.mo +share/locale/sr@latin/LC_MESSAGES/plasmoidviewer.mo +share/locale/sv/LC_MESSAGES/cuttlefish.mo +share/locale/sv/LC_MESSAGES/cuttlefish_editorplugin.mo +share/locale/sv/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo +share/locale/sv/LC_MESSAGES/org.kde.plasma.themeexplorer.mo +share/locale/sv/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo +share/locale/sv/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/sv/LC_MESSAGES/plasmawallpaperviewer.mo +share/locale/sv/LC_MESSAGES/plasmoidviewer.mo +share/locale/ta/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/ta/LC_MESSAGES/plasmoidviewer.mo +share/locale/te/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/te/LC_MESSAGES/plasmoidviewer.mo +share/locale/tg/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/tg/LC_MESSAGES/plasmoidviewer.mo +share/locale/th/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/th/LC_MESSAGES/plasmawallpaperviewer.mo +share/locale/th/LC_MESSAGES/plasmoidviewer.mo +share/locale/tr/LC_MESSAGES/cuttlefish.mo +share/locale/tr/LC_MESSAGES/cuttlefish_editorplugin.mo +share/locale/tr/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo +share/locale/tr/LC_MESSAGES/org.kde.plasma.themeexplorer.mo +share/locale/tr/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo +share/locale/tr/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/tr/LC_MESSAGES/plasmawallpaperviewer.mo +share/locale/tr/LC_MESSAGES/plasmoidviewer.mo +share/locale/ug/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/ug/LC_MESSAGES/plasmawallpaperviewer.mo +share/locale/ug/LC_MESSAGES/plasmoidviewer.mo +share/locale/uk/LC_MESSAGES/cuttlefish.mo +share/locale/uk/LC_MESSAGES/cuttlefish_editorplugin.mo +share/locale/uk/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo +share/locale/uk/LC_MESSAGES/org.kde.plasma.themeexplorer.mo +share/locale/uk/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo +share/locale/uk/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/uk/LC_MESSAGES/plasmawallpaperviewer.mo +share/locale/uk/LC_MESSAGES/plasmoidviewer.mo +share/locale/wa/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/wa/LC_MESSAGES/plasmawallpaperviewer.mo +share/locale/wa/LC_MESSAGES/plasmoidviewer.mo +share/locale/zh_CN/LC_MESSAGES/cuttlefish.mo +share/locale/zh_CN/LC_MESSAGES/cuttlefish_editorplugin.mo +share/locale/zh_CN/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo +share/locale/zh_CN/LC_MESSAGES/org.kde.plasma.themeexplorer.mo +share/locale/zh_CN/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo +share/locale/zh_CN/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/zh_CN/LC_MESSAGES/plasmawallpaperviewer.mo +share/locale/zh_CN/LC_MESSAGES/plasmoidviewer.mo +share/locale/zh_TW/LC_MESSAGES/cuttlefish.mo +share/locale/zh_TW/LC_MESSAGES/cuttlefish_editorplugin.mo +share/locale/zh_TW/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo +share/locale/zh_TW/LC_MESSAGES/org.kde.plasma.themeexplorer.mo +share/locale/zh_TW/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo +share/locale/zh_TW/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/zh_TW/LC_MESSAGES/plasmawallpaperviewer.mo +share/locale/zh_TW/LC_MESSAGES/plasmoidviewer.mo +share/metainfo/org.kde.cuttlefish.appdata.xml +share/metainfo/org.kde.plasma.cuttlefish.appdata.xml +share/metainfo/org.kde.plasma.lookandfeelexplorer.appdata.xml +share/metainfo/org.kde.plasma.plasmoidviewershell.appdata.xml +share/metainfo/org.kde.plasma.themeexplorer.appdata.xml +share/plasma/packages/org.kde.plasma.cuttlefish/contents/ui/IconGrid.qml +share/plasma/packages/org.kde.plasma.cuttlefish/contents/ui/IconGridDelegate.qml +share/plasma/packages/org.kde.plasma.cuttlefish/contents/ui/Preview.qml +share/plasma/packages/org.kde.plasma.cuttlefish/contents/ui/SvgGrid.qml +share/plasma/packages/org.kde.plasma.cuttlefish/contents/ui/Tools.qml +share/plasma/packages/org.kde.plasma.cuttlefish/contents/ui/cuttlefish.qml +share/plasma/packages/org.kde.plasma.cuttlefish/metadata.desktop +share/plasma/packages/org.kde.plasma.cuttlefish/metadata.json +share/plasma/shells/org.kde.plasma.plasmoidviewershell/contents/applet/AppletError.qml +share/plasma/shells/org.kde.plasma.plasmoidviewershell/contents/applet/CompactApplet.qml +share/plasma/shells/org.kde.plasma.plasmoidviewershell/contents/applet/DefaultCompactRepresentation.qml +share/plasma/shells/org.kde.plasma.plasmoidviewershell/contents/configuration/AppletConfiguration.qml +share/plasma/shells/org.kde.plasma.plasmoidviewershell/contents/configuration/ConfigCategoryDelegate.qml +share/plasma/shells/org.kde.plasma.plasmoidviewershell/contents/configuration/ConfigurationContainmentActions.qml +share/plasma/shells/org.kde.plasma.plasmoidviewershell/contents/configuration/ConfigurationContainmentAppearance.qml +share/plasma/shells/org.kde.plasma.plasmoidviewershell/contents/configuration/ConfigurationKcmPage.qml +share/plasma/shells/org.kde.plasma.plasmoidviewershell/contents/configuration/ConfigurationShortcuts.qml +share/plasma/shells/org.kde.plasma.plasmoidviewershell/contents/configuration/ContainmentConfiguration.qml +share/plasma/shells/org.kde.plasma.plasmoidviewershell/contents/configuration/MouseEventInputButton.qml +share/plasma/shells/org.kde.plasma.plasmoidviewershell/contents/configuration/PanelConfiguration.qml +share/plasma/shells/org.kde.plasma.plasmoidviewershell/contents/defaults +share/plasma/shells/org.kde.plasma.plasmoidviewershell/contents/views/Background.qml +share/plasma/shells/org.kde.plasma.plasmoidviewershell/contents/views/Desktop.qml +share/plasma/shells/org.kde.plasma.plasmoidviewershell/contents/views/Konsole.qml +share/plasma/shells/org.kde.plasma.plasmoidviewershell/contents/views/SdkButtons.qml +share/plasma/shells/org.kde.plasma.plasmoidviewershell/metadata.desktop +share/plasma/shells/org.kde.plasma.plasmoidviewershell/metadata.json Property changes on: head/devel/plasma5-plasma-sdk/pkg-plist ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/security/Makefile =================================================================== --- head/security/Makefile (revision 468494) +++ head/security/Makefile (revision 468495) @@ -1,1339 +1,1342 @@ # $FreeBSD$ # COMMENT = Security tools SUBDIR += 0d1n SUBDIR += 1password-client SUBDIR += 2fa SUBDIR += ADMsmb SUBDIR += ADMsnmp SUBDIR += R-cran-ROAuth SUBDIR += R-cran-digest SUBDIR += R-cran-openssl SUBDIR += acme-client SUBDIR += acme.sh SUBDIR += acmetool SUBDIR += aescrypt SUBDIR += aespipe SUBDIR += afl SUBDIR += afterglow SUBDIR += aide SUBDIR += akmos SUBDIR += amap SUBDIR += amavis-stats SUBDIR += amavisd-milter SUBDIR += amavisd-new SUBDIR += apache-xml-security-c SUBDIR += apg SUBDIR += arirang SUBDIR += arm SUBDIR += arpCounterattack SUBDIR += asignify SUBDIR += authforce SUBDIR += autossh SUBDIR += avcheck SUBDIR += axTLS SUBDIR += barnyard2 SUBDIR += barnyard2-sguil SUBDIR += base SUBDIR += base-audit SUBDIR += bcrypt SUBDIR += bcwipe SUBDIR += bdes SUBDIR += bearssl SUBDIR += beecrypt SUBDIR += belier SUBDIR += bfbtester SUBDIR += binwalk SUBDIR += bitwarden-ruby SUBDIR += blindelephant SUBDIR += boringssl SUBDIR += botan110 SUBDIR += botan2 SUBDIR += bro SUBDIR += broccoli SUBDIR += bruteblock SUBDIR += bruteforceblocker SUBDIR += bsdsfv SUBDIR += bsmtrace SUBDIR += bugs SUBDIR += bzrtp SUBDIR += ca_root_nss SUBDIR += calife SUBDIR += cardpeek SUBDIR += ccrypt SUBDIR += ccsrch SUBDIR += certificate-transparency SUBDIR += cfs SUBDIR += cfv SUBDIR += chaosreader SUBDIR += checkpassword SUBDIR += checkpassword-pam SUBDIR += chkrootkit SUBDIR += chntpw SUBDIR += chroot_safe SUBDIR += chrootuid SUBDIR += cisco-torch SUBDIR += ckpass SUBDIR += cksfv SUBDIR += cl-md5 SUBDIR += cl-md5-sbcl SUBDIR += clamassassin SUBDIR += clamav SUBDIR += clamav-milter SUBDIR += clamav-unofficial-sigs SUBDIR += clamcour SUBDIR += clamd-stream-client SUBDIR += clamfs SUBDIR += clamsmtp SUBDIR += clamtk SUBDIR += clusterssh SUBDIR += cops SUBDIR += courier-authlib SUBDIR += courier-authlib-base SUBDIR += courierpassd SUBDIR += courierpasswd SUBDIR += courieruserinfo SUBDIR += cp2fwb SUBDIR += cracklib SUBDIR += crackpkcs12 SUBDIR += crank SUBDIR += create-cert SUBDIR += cryptlib SUBDIR += cryptopp SUBDIR += ct-submit SUBDIR += cvechecker SUBDIR += cvm SUBDIR += cyberchef SUBDIR += cyrus-sasl2 SUBDIR += cyrus-sasl2-gssapi SUBDIR += cyrus-sasl2-ldapdb SUBDIR += cyrus-sasl2-saslauthd SUBDIR += cyrus-sasl2-sql SUBDIR += cyrus-sasl2-srp SUBDIR += d0_blind_id SUBDIR += dcetest SUBDIR += ddos_scan SUBDIR += dehydrated SUBDIR += denyhosts SUBDIR += destroy SUBDIR += digest SUBDIR += dirbuster SUBDIR += dirmngr SUBDIR += distcache SUBDIR += dmitry SUBDIR += doas SUBDIR += doorman SUBDIR += doscan SUBDIR += dotdotpwn SUBDIR += dropbear SUBDIR += dsniff SUBDIR += duo SUBDIR += easy-rsa SUBDIR += easy-rsa2 SUBDIR += elixir-comeonin SUBDIR += elixir-comeonin_i18n SUBDIR += elixir-jose SUBDIR += enchive SUBDIR += erlang-fast_tls SUBDIR += erlang-jose SUBDIR += eschalot SUBDIR += esteidfirefoxplugin SUBDIR += expiretable SUBDIR += f-prot SUBDIR += fakebo SUBDIR += fakeident SUBDIR += fakeroot SUBDIR += fastd SUBDIR += fastd-devel SUBDIR += fbopenssl SUBDIR += fcheck SUBDIR += fcrackzip SUBDIR += fiked SUBDIR += find-zlib SUBDIR += firewalk SUBDIR += fl0p SUBDIR += flawfinder SUBDIR += fpc-openssl SUBDIR += fpm2 SUBDIR += fprint_demo SUBDIR += fprintd SUBDIR += fragroute SUBDIR += fragrouter SUBDIR += fsh SUBDIR += fswatch SUBDIR += ftimes SUBDIR += fuzz SUBDIR += fwanalog SUBDIR += fwbuilder SUBDIR += fwipe SUBDIR += fwknop SUBDIR += fwlogwatch SUBDIR += gag SUBDIR += gcipher SUBDIR += gcr SUBDIR += git-crypt SUBDIR += git-remote-gcrypt SUBDIR += gnome-gpg SUBDIR += gnome-keyring SUBDIR += gnome-keyring-sharp SUBDIR += gnome-password-generator SUBDIR += gnome-ssh-askpass SUBDIR += gnomint SUBDIR += gnupg SUBDIR += gnupg1 SUBDIR += gnutls SUBDIR += go-cve-dictionary SUBDIR += go.crypto SUBDIR += goptlib SUBDIR += gorilla SUBDIR += govpn SUBDIR += gpa SUBDIR += gpasman SUBDIR += gpass SUBDIR += gpgdir SUBDIR += gpgme SUBDIR += gpgme-cpp SUBDIR += gpgme-qt5 SUBDIR += gputty SUBDIR += greenbone-security-assistant8 SUBDIR += greenbone-security-assistant9 SUBDIR += gringotts SUBDIR += gsasl SUBDIR += gss SUBDIR += gstreamer1-plugins-dtls SUBDIR += gtk-knocker SUBDIR += gtkpasman SUBDIR += gwee SUBDIR += hackbot SUBDIR += hamachi SUBDIR += hardening-check SUBDIR += hashcat SUBDIR += hashcat-legacy SUBDIR += heimdal SUBDIR += highwayhash SUBDIR += hitch SUBDIR += hlfl SUBDIR += hmap SUBDIR += honeybadger SUBDIR += honggfuzz SUBDIR += hotssh SUBDIR += hpenc SUBDIR += hs-Crypto SUBDIR += hs-DRBG SUBDIR += hs-HsOpenSSL SUBDIR += hs-RSA SUBDIR += hs-SHA SUBDIR += hs-certificate SUBDIR += hs-cipher-aes SUBDIR += hs-cipher-aes128 SUBDIR += hs-cipher-blowfish SUBDIR += hs-cipher-camellia SUBDIR += hs-cipher-des SUBDIR += hs-cipher-rc4 SUBDIR += hs-clientsession SUBDIR += hs-cprng-aes SUBDIR += hs-crypto-api SUBDIR += hs-crypto-cipher-types SUBDIR += hs-crypto-conduit SUBDIR += hs-crypto-numbers SUBDIR += hs-crypto-pubkey SUBDIR += hs-crypto-pubkey-types SUBDIR += hs-crypto-random SUBDIR += hs-crypto-random-api SUBDIR += hs-cryptocipher SUBDIR += hs-cryptohash SUBDIR += hs-cryptohash-conduit SUBDIR += hs-cryptohash-cryptoapi SUBDIR += hs-cryptohash-md5 SUBDIR += hs-cryptohash-sha1 SUBDIR += hs-cryptohash-sha256 SUBDIR += hs-cryptonite SUBDIR += hs-digest SUBDIR += hs-ed25519 SUBDIR += hs-entropy SUBDIR += hs-gnutls SUBDIR += hs-hackage-security SUBDIR += hs-monadcryptorandom SUBDIR += hs-nonce SUBDIR += hs-pem SUBDIR += hs-pureMD5 SUBDIR += hs-pwstore-fast SUBDIR += hs-skein SUBDIR += hs-tls SUBDIR += hs-tls-session-manager SUBDIR += hs-x509 SUBDIR += hs-x509-store SUBDIR += hs-x509-system SUBDIR += hs-x509-validation SUBDIR += httprint SUBDIR += hydra SUBDIR += i2p SUBDIR += i2pd SUBDIR += iaikpkcs11wrapper SUBDIR += idea SUBDIR += identify SUBDIR += ike SUBDIR += ike-scan SUBDIR += integrit SUBDIR += ipfcount SUBDIR += ipfilter2dshield SUBDIR += ipfmeta SUBDIR += ipfw2dshield SUBDIR += ipfwcount SUBDIR += ipguard SUBDIR += ipsec-tools SUBDIR += ipv6toolkit SUBDIR += isakmpd SUBDIR += isnprober SUBDIR += jbrofuzz SUBDIR += john SUBDIR += kbfs SUBDIR += kc SUBDIR += kdbx-viewer SUBDIR += kedpm SUBDIR += keepass SUBDIR += keepass-plugin-keepassrpc SUBDIR += keepassx SUBDIR += keepassx-devel SUBDIR += keepassx2 SUBDIR += keepassxc SUBDIR += keybase SUBDIR += keychain SUBDIR += keynote SUBDIR += keyprint SUBDIR += kf5-kdesu SUBDIR += kgpg SUBDIR += kgpg-kde4 SUBDIR += kickpass SUBDIR += kleopatra SUBDIR += knock SUBDIR += knocker SUBDIR += kpcli SUBDIR += kqoauth SUBDIR += kr SUBDIR += krb5 SUBDIR += krb5-114 SUBDIR += krb5-115 SUBDIR += krb5-116 SUBDIR += krb5-appl SUBDIR += krb5-devel SUBDIR += kripp SUBDIR += kstart SUBDIR += kwalletmanager SUBDIR += kwalletmanager-kde4 SUBDIR += l0pht-watch SUBDIR += l0phtcrack SUBDIR += l5 SUBDIR += lasso SUBDIR += lastpass-cli SUBDIR += libadacrypt SUBDIR += libargon2 SUBDIR += libassuan SUBDIR += libbeid SUBDIR += libbf SUBDIR += libcryptui SUBDIR += libdecaf SUBDIR += libecc SUBDIR += libfprint SUBDIR += libgcrypt SUBDIR += libgnome-keyring SUBDIR += libgnomesu SUBDIR += libgpg-error SUBDIR += libgringotts SUBDIR += libhijack SUBDIR += libident SUBDIR += libkleo SUBDIR += libkpass SUBDIR += libksba SUBDIR += libmcrypt SUBDIR += libntlm SUBDIR += libotr SUBDIR += libotr3 SUBDIR += libp11 SUBDIR += libprelude SUBDIR += libpreludedb SUBDIR += libpwquality SUBDIR += libpwstor SUBDIR += libressl SUBDIR += libressl-devel SUBDIR += libscrypt SUBDIR += libsecret SUBDIR += libsectok SUBDIR += libsodium SUBDIR += libsparkcrypto SUBDIR += libssh SUBDIR += libssh2 SUBDIR += libtasn1 SUBDIR += libtomcrypt SUBDIR += libu2f-host SUBDIR += libuecc SUBDIR += libwhisker SUBDIR += libyubikey SUBDIR += libzrtpcppcore SUBDIR += linux-c6-cyrus-sasl2 SUBDIR += linux-c6-gnutls SUBDIR += linux-c6-libgcrypt SUBDIR += linux-c6-libgpg-error SUBDIR += linux-c6-libssh2 SUBDIR += linux-c6-libtasn1 SUBDIR += linux-c6-nss SUBDIR += linux-c6-openssl SUBDIR += linux-c7-cyrus-sasl2 SUBDIR += linux-c7-gnutls SUBDIR += linux-c7-libgcrypt SUBDIR += linux-c7-libgpg-error SUBDIR += linux-c7-libssh2 SUBDIR += linux-c7-libtasn1 SUBDIR += linux-c7-nettle SUBDIR += linux-c7-nss SUBDIR += linux-c7-openssl SUBDIR += linux-c7-p11-kit SUBDIR += linux-c7-trousers SUBDIR += lockdown SUBDIR += log2timeline SUBDIR += logcheck SUBDIR += luasec SUBDIR += luasec-51 SUBDIR += lynis SUBDIR += mac-robber SUBDIR += maia SUBDIR += mailzu SUBDIR += makepasswd SUBDIR += manipulate_data SUBDIR += masscan SUBDIR += matrixssl SUBDIR += mbedtls SUBDIR += mcrypt SUBDIR += md4coll SUBDIR += md5coll SUBDIR += md5deep SUBDIR += medusa SUBDIR += meek SUBDIR += metasploit SUBDIR += mhash SUBDIR += mindterm-binary SUBDIR += minisign SUBDIR += monkeysphere SUBDIR += morphis SUBDIR += munge SUBDIR += mussh SUBDIR += nacl SUBDIR += ncrack SUBDIR += ncrypt SUBDIR += netpgp SUBDIR += nettle SUBDIR += nextcloud-passman SUBDIR += nextcloud-twofactor_totp SUBDIR += nextcloud-twofactor_u2f SUBDIR += ngrok SUBDIR += nikto SUBDIR += nist-kat SUBDIR += nmap SUBDIR += nss SUBDIR += nss_compat_ossl SUBDIR += nyx SUBDIR += oath-toolkit SUBDIR += obfs4proxy-tor SUBDIR += obfsclient SUBDIR += ocaml-cryptgps SUBDIR += ocaml-cryptokit SUBDIR += ocaml-ssl SUBDIR += oidentd SUBDIR += oinkmaster SUBDIR += op SUBDIR += openbsm SUBDIR += openca-tools-forked SUBDIR += opencdk SUBDIR += openconnect SUBDIR += openconnect-gui SUBDIR += opencryptoki SUBDIR += openct SUBDIR += openiked SUBDIR += opensaml2 SUBDIR += opensc SUBDIR += openscep SUBDIR += openssh-askpass SUBDIR += openssh-portable SUBDIR += openssl SUBDIR += openssl-devel SUBDIR += openssl-unsafe SUBDIR += openssl_tpm_engine SUBDIR += openvas8 SUBDIR += openvas8-cli SUBDIR += openvas8-libraries SUBDIR += openvas8-manager SUBDIR += openvas8-scanner SUBDIR += openvas9 SUBDIR += openvas9-cli SUBDIR += openvas9-libraries SUBDIR += openvas9-manager SUBDIR += openvas9-scanner SUBDIR += openvpn SUBDIR += openvpn-admin SUBDIR += openvpn-auth-ldap SUBDIR += openvpn-auth-radius SUBDIR += openvpn-devel SUBDIR += openvpn-mbedtls SUBDIR += ophcrack SUBDIR += orthrus SUBDIR += osiris SUBDIR += ossec-hids-client SUBDIR += ossec-hids-local SUBDIR += ossec-hids-server SUBDIR += osslsigncode SUBDIR += otpw SUBDIR += outguess SUBDIR += owasp-dependency-check SUBDIR += p11-kit SUBDIR += p5-Apache-Htpasswd SUBDIR += p5-App-Genpass SUBDIR += p5-App-TLSMe SUBDIR += p5-Auth-YubikeyDecrypter SUBDIR += p5-AuthCAS SUBDIR += p5-Authen-Bitcard SUBDIR += p5-Authen-Captcha SUBDIR += p5-Authen-CyrusSASL SUBDIR += p5-Authen-DecHpwd SUBDIR += p5-Authen-Htpasswd SUBDIR += p5-Authen-Krb5 SUBDIR += p5-Authen-Krb5-Simple SUBDIR += p5-Authen-Libwrap SUBDIR += p5-Authen-NTLM SUBDIR += p5-Authen-OATH SUBDIR += p5-Authen-PAAS SUBDIR += p5-Authen-PAM SUBDIR += p5-Authen-Passphrase SUBDIR += p5-Authen-PluggableCaptcha SUBDIR += p5-Authen-Radius SUBDIR += p5-Authen-SASL SUBDIR += p5-Authen-SASL-Cyrus SUBDIR += p5-Authen-SASL-SASLprep SUBDIR += p5-Authen-SCRAM SUBDIR += p5-Authen-Simple SUBDIR += p5-Authen-Simple-DBI SUBDIR += p5-Authen-Simple-DBM SUBDIR += p5-Authen-Simple-HTTP SUBDIR += p5-Authen-Simple-Kerberos SUBDIR += p5-Authen-Simple-LDAP SUBDIR += p5-Authen-Simple-Net SUBDIR += p5-Authen-Simple-PAM SUBDIR += p5-Authen-Simple-Passwd SUBDIR += p5-Authen-Simple-RADIUS SUBDIR += p5-Authen-Simple-SMB SUBDIR += p5-Authen-Simple-SSH SUBDIR += p5-Authen-Smb SUBDIR += p5-Authen-TacacsPlus SUBDIR += p5-Authen-Ticket SUBDIR += p5-Authen-TypeKey SUBDIR += p5-Business-PayPal-EWP SUBDIR += p5-Bytes-Random-Secure SUBDIR += p5-CACertOrg-CA SUBDIR += p5-CSP SUBDIR += p5-Cisco-Hash SUBDIR += p5-Crypt-Anubis SUBDIR += p5-Crypt-AppleTwoFish SUBDIR += p5-Crypt-Blowfish SUBDIR += p5-Crypt-Blowfish_PP SUBDIR += p5-Crypt-CAST5 SUBDIR += p5-Crypt-CAST5_PP SUBDIR += p5-Crypt-CBC SUBDIR += p5-Crypt-CBCeasy SUBDIR += p5-Crypt-CFB SUBDIR += p5-Crypt-Caesar SUBDIR += p5-Crypt-Camellia_PP SUBDIR += p5-Crypt-Chimera SUBDIR += p5-Crypt-CipherSaber SUBDIR += p5-Crypt-Cracklib SUBDIR += p5-Crypt-Ctr SUBDIR += p5-Crypt-Curve25519 SUBDIR += p5-Crypt-DES SUBDIR += p5-Crypt-DES_EDE3 SUBDIR += p5-Crypt-DES_PP SUBDIR += p5-Crypt-DH SUBDIR += p5-Crypt-DSA SUBDIR += p5-Crypt-Dining SUBDIR += p5-Crypt-ECB SUBDIR += p5-Crypt-Eksblowfish SUBDIR += p5-Crypt-Enigma SUBDIR += p5-Crypt-Format SUBDIR += p5-Crypt-GCrypt SUBDIR += p5-Crypt-GOST SUBDIR += p5-Crypt-GOST_PP SUBDIR += p5-Crypt-GPG SUBDIR += p5-Crypt-GeneratePassword SUBDIR += p5-Crypt-HCE_MD5 SUBDIR += p5-Crypt-HCE_SHA SUBDIR += p5-Crypt-IDEA SUBDIR += p5-Crypt-Imail SUBDIR += p5-Crypt-Juniper SUBDIR += p5-Crypt-Khazad SUBDIR += p5-Crypt-LE SUBDIR += p5-Crypt-License SUBDIR += p5-Crypt-Lite SUBDIR += p5-Crypt-Loki97 SUBDIR += p5-Crypt-MySQL SUBDIR += p5-Crypt-NULL SUBDIR += p5-Crypt-OFB SUBDIR += p5-Crypt-OICQ SUBDIR += p5-Crypt-OTP SUBDIR += p5-Crypt-OpenPGP SUBDIR += p5-Crypt-OpenSSL-AES SUBDIR += p5-Crypt-OpenSSL-Bignum SUBDIR += p5-Crypt-OpenSSL-CA SUBDIR += p5-Crypt-OpenSSL-DSA SUBDIR += p5-Crypt-OpenSSL-EC SUBDIR += p5-Crypt-OpenSSL-ECDSA SUBDIR += p5-Crypt-OpenSSL-Guess SUBDIR += p5-Crypt-OpenSSL-PKCS10 SUBDIR += p5-Crypt-OpenSSL-RSA SUBDIR += p5-Crypt-OpenSSL-Random SUBDIR += p5-Crypt-OpenSSL-X509 SUBDIR += p5-Crypt-PBKDF2 SUBDIR += p5-Crypt-PKCS10 SUBDIR += p5-Crypt-PWSafe3 SUBDIR += p5-Crypt-PassGen SUBDIR += p5-Crypt-Passwd-XS SUBDIR += p5-Crypt-PasswdMD5 SUBDIR += p5-Crypt-Password-Util SUBDIR += p5-Crypt-Primes SUBDIR += p5-Crypt-RC4 SUBDIR += p5-Crypt-RC5 SUBDIR += p5-Crypt-RC6 SUBDIR += p5-Crypt-RHash SUBDIR += p5-Crypt-RIPEMD160 SUBDIR += p5-Crypt-RSA SUBDIR += p5-Crypt-RSA-Parse SUBDIR += p5-Crypt-RSA-Yandex SUBDIR += p5-Crypt-Rabbit SUBDIR += p5-Crypt-RandPasswd SUBDIR += p5-Crypt-Random SUBDIR += p5-Crypt-Random-Seed SUBDIR += p5-Crypt-Random-Source SUBDIR += p5-Crypt-Random-TESHA2 SUBDIR += p5-Crypt-Rijndael SUBDIR += p5-Crypt-Rijndael_PP SUBDIR += p5-Crypt-SKey SUBDIR += p5-Crypt-SMIME SUBDIR += p5-Crypt-SSLeay SUBDIR += p5-Crypt-Salt SUBDIR += p5-Crypt-SaltedHash SUBDIR += p5-Crypt-Serpent SUBDIR += p5-Crypt-Shark SUBDIR += p5-Crypt-Simple SUBDIR += p5-Crypt-SmbHash SUBDIR += p5-Crypt-Sodium SUBDIR += p5-Crypt-Solitaire SUBDIR += p5-Crypt-TEA SUBDIR += p5-Crypt-T_e_a SUBDIR += p5-Crypt-Tea_JS SUBDIR += p5-Crypt-TripleDES SUBDIR += p5-Crypt-Twofish SUBDIR += p5-Crypt-Twofish2 SUBDIR += p5-Crypt-Twofish_PP SUBDIR += p5-Crypt-URandom SUBDIR += p5-Crypt-UnixCrypt SUBDIR += p5-Crypt-UnixCrypt_XS SUBDIR += p5-Crypt-X509 SUBDIR += p5-Crypt-XTEA SUBDIR += p5-Crypt-xDBM_File SUBDIR += p5-CryptX SUBDIR += p5-Dancer-Plugin-Auth-Extensible SUBDIR += p5-Dancer-Plugin-Auth-Extensible-Provider-Usergroup SUBDIR += p5-Dancer-Plugin-Passphrase SUBDIR += p5-Dancer2-Plugin-Auth-Extensible SUBDIR += p5-Dancer2-Plugin-Auth-Extensible-Provider-DBIC SUBDIR += p5-Dancer2-Plugin-Auth-Extensible-Provider-Database SUBDIR += p5-Dancer2-Plugin-Auth-Extensible-Provider-IMAP SUBDIR += p5-Dancer2-Plugin-Auth-Extensible-Provider-Usergroup SUBDIR += p5-Dancer2-Plugin-Passphrase SUBDIR += p5-Data-Entropy SUBDIR += p5-Data-Password SUBDIR += p5-Digest SUBDIR += p5-Digest-Adler32 SUBDIR += p5-Digest-Bcrypt SUBDIR += p5-Digest-BubbleBabble SUBDIR += p5-Digest-CRC SUBDIR += p5-Digest-Crc32 SUBDIR += p5-Digest-DJB SUBDIR += p5-Digest-DMAC SUBDIR += p5-Digest-EMAC SUBDIR += p5-Digest-Elf SUBDIR += p5-Digest-FNV SUBDIR += p5-Digest-GOST SUBDIR += p5-Digest-HMAC SUBDIR += p5-Digest-Hashcash SUBDIR += p5-Digest-Haval256 SUBDIR += p5-Digest-JHash SUBDIR += p5-Digest-MD2 SUBDIR += p5-Digest-MD4 SUBDIR += p5-Digest-MD5 SUBDIR += p5-Digest-MD5-File SUBDIR += p5-Digest-MD5-M4p SUBDIR += p5-Digest-MD5-Reverse SUBDIR += p5-Digest-ManberHash SUBDIR += p5-Digest-MurmurHash SUBDIR += p5-Digest-Nilsimsa SUBDIR += p5-Digest-Pearson SUBDIR += p5-Digest-Pearson-PurePerl SUBDIR += p5-Digest-Perl-MD4 SUBDIR += p5-Digest-Perl-MD5 SUBDIR += p5-Digest-SHA SUBDIR += p5-Digest-SHA-PurePerl SUBDIR += p5-Digest-SHA1 SUBDIR += p5-Digest-SHA3 SUBDIR += p5-Digest-SV1 SUBDIR += p5-Digest-Tiger SUBDIR += p5-Digest-Whirlpool SUBDIR += p5-File-KeePass SUBDIR += p5-File-KeePass-Agent SUBDIR += p5-File-Scan SUBDIR += p5-File-Scan-ClamAV SUBDIR += p5-Filter-CBC SUBDIR += p5-Filter-Crypto SUBDIR += p5-GD-SecurityImage SUBDIR += p5-GSSAPI SUBDIR += p5-GnuPG SUBDIR += p5-GnuPG-Interface SUBDIR += p5-HTML-Email-Obfuscate SUBDIR += p5-Heimdal-Kadm5 SUBDIR += p5-IO-Async-SSL SUBDIR += p5-IO-Socket-SSL SUBDIR += p5-MD5 SUBDIR += p5-Mcrypt SUBDIR += p5-Module-Signature SUBDIR += p5-Net-Daemon-SSL SUBDIR += p5-Net-OpenID-Common SUBDIR += p5-Net-OpenID-JanRain SUBDIR += p5-Net-OpenID-Server SUBDIR += p5-Net-Radius-Server SUBDIR += p5-Net-SAML SUBDIR += p5-Net-SSH-AuthorizedKeysFile SUBDIR += p5-Net-SSL-ExpireDate SUBDIR += p5-Net-SSLGlue SUBDIR += p5-Net-SSLeay SUBDIR += p5-Net-Server-Mail-ESMTP-AUTH SUBDIR += p5-Net-SinFP SUBDIR += p5-Nmap-Parser SUBDIR += p5-Nmap-Scanner SUBDIR += p5-OpenCA-CRL SUBDIR += p5-OpenCA-CRR SUBDIR += p5-OpenCA-OpenSSL SUBDIR += p5-OpenCA-PKCS7 SUBDIR += p5-OpenCA-REQ SUBDIR += p5-OpenCA-X509 SUBDIR += p5-PBKDF2-Tiny SUBDIR += p5-PGP SUBDIR += p5-PGP-Sign SUBDIR += p5-POE-Component-SSLify SUBDIR += p5-POE-Filter-SSL SUBDIR += p5-Parse-Snort SUBDIR += p5-PerlCryptLib SUBDIR += p5-Protocol-ACME SUBDIR += p5-SAVI-Perl SUBDIR += p5-SHA SUBDIR += p5-Safe-Hole SUBDIR += p5-Session-Token SUBDIR += p5-Snort-Rule SUBDIR += p5-String-MkPasswd SUBDIR += p5-Sudo SUBDIR += p5-Text-Password-Pronounceable SUBDIR += p5-Tie-EncryptedHash SUBDIR += p5-Tree-Authz SUBDIR += p5-Unix-Passwd-File SUBDIR += p5-Yahoo-BBAuth SUBDIR += p5-dicewaregen SUBDIR += p5-openxpki SUBDIR += p5-openxpki-i18n SUBDIR += p5-plog SUBDIR += pad SUBDIR += pam-modules SUBDIR += pam-mysql SUBDIR += pam-pgsql SUBDIR += pam_fprint SUBDIR += pam_google_authenticator SUBDIR += pam_helper SUBDIR += pam_jail SUBDIR += pam_kde SUBDIR += pam_krb5 SUBDIR += pam_krb5-rh SUBDIR += pam_ldap SUBDIR += pam_mkhomedir SUBDIR += pam_ocra SUBDIR += pam_p11 SUBDIR += pam_per_user SUBDIR += pam_pseudo SUBDIR += pam_pwdfile SUBDIR += pam_require SUBDIR += pam_search_list SUBDIR += pam_ssh_agent_auth SUBDIR += pam_yubico SUBDIR += pamtester SUBDIR += paperkey SUBDIR += parano SUBDIR += passivedns SUBDIR += pbc SUBDIR += pbnj SUBDIR += pcsc-tools SUBDIR += pdfcrack SUBDIR += pear-Auth SUBDIR += pear-Auth_HTTP SUBDIR += pear-Auth_PrefManager SUBDIR += pear-Auth_SASL SUBDIR += pear-Crypt_Blowfish SUBDIR += pear-Crypt_CBC SUBDIR += pear-Crypt_CHAP SUBDIR += pear-Crypt_DiffieHellman SUBDIR += pear-Crypt_GPG SUBDIR += pear-Crypt_HMAC2 SUBDIR += pear-Crypt_MicroID SUBDIR += pear-Crypt_RC4 SUBDIR += pear-Crypt_RSA SUBDIR += pear-Crypt_XXTEA SUBDIR += pear-File_HtAccess SUBDIR += pear-File_Passwd SUBDIR += pear-File_SMBPasswd SUBDIR += pear-HTML_Crypt SUBDIR += pear-Horde_Auth SUBDIR += pear-Horde_Crypt SUBDIR += pear-Horde_Crypt_Blowfish SUBDIR += pear-Horde_Group SUBDIR += pear-Horde_Oauth SUBDIR += pear-Horde_Perms SUBDIR += pear-Horde_Secret SUBDIR += pear-Horde_Share SUBDIR += pear-LiveUser SUBDIR += pear-LiveUser_Admin SUBDIR += pear-Net_Portscan SUBDIR += pear-Text_Password SUBDIR += pecl-crack SUBDIR += pecl-crypto SUBDIR += pecl-gnupg SUBDIR += pecl-krb5 SUBDIR += pecl-libsodium SUBDIR += pecl-mcrypt SUBDIR += pecl-pam SUBDIR += pecl-scrypt SUBDIR += pecl-ssh2 SUBDIR += pecl-ssh2-0 SUBDIR += pev SUBDIR += pft SUBDIR += pgpdump SUBDIR += pgpgpg SUBDIR += pgpin SUBDIR += php-suhosin SUBDIR += php56-filter SUBDIR += php56-hash SUBDIR += php56-mcrypt SUBDIR += php56-openssl SUBDIR += php70-filter SUBDIR += php70-hash SUBDIR += php70-mcrypt SUBDIR += php70-openssl SUBDIR += php71-filter SUBDIR += php71-hash SUBDIR += php71-mcrypt SUBDIR += php71-openssl SUBDIR += php72-filter SUBDIR += php72-hash SUBDIR += php72-openssl SUBDIR += php72-sodium SUBDIR += phpdeadlock SUBDIR += phpsecinfo SUBDIR += pidentd SUBDIR += pidgin-encryption SUBDIR += pidgin-otr SUBDIR += pinentry SUBDIR += pinentry-curses SUBDIR += pinentry-fltk SUBDIR += pinentry-gnome3 SUBDIR += pinentry-gtk2 SUBDIR += pinentry-qt4 SUBDIR += pinentry-qt5 SUBDIR += pinentry-tty SUBDIR += pixiewps SUBDIR += pkcrack SUBDIR += pkcs11-dump SUBDIR += pkcs11-gateway SUBDIR += pkcs11-helper SUBDIR += pkesh SUBDIR += pks SUBDIR += pktsuckers + SUBDIR += plasma5-kscreenlocker + SUBDIR += plasma5-ksshaskpass + SUBDIR += plasma5-kwallet-pam SUBDIR += please SUBDIR += polarssl13 SUBDIR += poly1305aes SUBDIR += portsentry SUBDIR += ppars SUBDIR += proftpd-mod_clamav SUBDIR += proxycheck SUBDIR += proxytunnel SUBDIR += pscan SUBDIR += pssh SUBDIR += pulledpork SUBDIR += pure-sfv SUBDIR += putty SUBDIR += putty-gtk2 SUBDIR += putty-nogtk SUBDIR += pvk SUBDIR += pwauth SUBDIR += pwman SUBDIR += pwman3 SUBDIR += pwned-check SUBDIR += pxytest SUBDIR += py-AccessControl SUBDIR += py-PF SUBDIR += py-Products.PlonePAS SUBDIR += py-Products.PluggableAuthService SUBDIR += py-RestrictedPython SUBDIR += py-SecretStorage SUBDIR += py-YubiOTP SUBDIR += py-acme SUBDIR += py-acme-tiny SUBDIR += py-artifacts SUBDIR += py-asyncssh SUBDIR += py-backports.ssl_match_hostname SUBDIR += py-bcrypt SUBDIR += py-borg.localrole SUBDIR += py-btchip-python SUBDIR += py-cerealizer SUBDIR += py-certbot SUBDIR += py-certbot-apache SUBDIR += py-certbot-dns-cloudflare SUBDIR += py-certbot-dns-cloudxns SUBDIR += py-certbot-dns-digitalocean SUBDIR += py-certbot-dns-dnsimple SUBDIR += py-certbot-dns-dnsmadeeasy SUBDIR += py-certbot-dns-google SUBDIR += py-certbot-dns-luadns SUBDIR += py-certbot-dns-nsone SUBDIR += py-certbot-dns-rfc2136 SUBDIR += py-certbot-dns-route53 SUBDIR += py-certbot-nginx SUBDIR += py-certifi SUBDIR += py-cpe SUBDIR += py-cracklib SUBDIR += py-cryptkit SUBDIR += py-cryptlib_py SUBDIR += py-cryptography SUBDIR += py-cybox SUBDIR += py-dfdatetime SUBDIR += py-dfvfs SUBDIR += py-dfwinreg SUBDIR += py-docker-pycreds SUBDIR += py-ecdsa SUBDIR += py-ed25519ll SUBDIR += py-fail2ban SUBDIR += py-fchksum SUBDIR += py-first-server SUBDIR += py-flask-httpauth SUBDIR += py-gixy SUBDIR += py-gnupg SUBDIR += py-gnutls SUBDIR += py-google-auth SUBDIR += py-gpgme SUBDIR += py-gpsoauth SUBDIR += py-halberd SUBDIR += py-hkdf SUBDIR += py-htpasswd SUBDIR += py-itsdangerous SUBDIR += py-josepy SUBDIR += py-kerberos SUBDIR += py-keyczar SUBDIR += py-keyring SUBDIR += py-keyrings.alt SUBDIR += py-keystone SUBDIR += py-libnacl SUBDIR += py-m2crypto SUBDIR += py-maec SUBDIR += py-mcrypt SUBDIR += py-mhash SUBDIR += py-mixbox SUBDIR += py-mnemonic SUBDIR += py-netmiko SUBDIR += py-ntlm-auth SUBDIR += py-oauth2client SUBDIR += py-oauthlib SUBDIR += py-obfsproxy-tor SUBDIR += py-onetime SUBDIR += py-openssl SUBDIR += py-paramiko SUBDIR += py-paramiko1 SUBDIR += py-passlib SUBDIR += py-pbkdf2 SUBDIR += py-pgpdump SUBDIR += py-plaso SUBDIR += py-plone.app.openid SUBDIR += py-plone.keyring SUBDIR += py-plone.openid SUBDIR += py-plone.protect SUBDIR += py-plone.session SUBDIR += py-potr SUBDIR += py-pow SUBDIR += py-pyaes SUBDIR += py-pyaff4 SUBDIR += py-pyaxo SUBDIR += py-pyblake2 SUBDIR += py-pyclamd SUBDIR += py-pycrypto SUBDIR += py-pycryptodome SUBDIR += py-pycryptopp SUBDIR += py-pydeep SUBDIR += py-pyelliptic SUBDIR += py-pylibacl SUBDIR += py-pymacaroons-pynacl SUBDIR += py-pynacl SUBDIR += py-pyotp SUBDIR += py-pyptlib SUBDIR += py-pysaml2 SUBDIR += py-pyscard SUBDIR += py-pysha3 SUBDIR += py-python-gnupg SUBDIR += py-python-nss SUBDIR += py-python-openid SUBDIR += py-python-registry SUBDIR += py-python-social-auth SUBDIR += py-python3-openid SUBDIR += py-rekall SUBDIR += py-rekall-core SUBDIR += py-requests-kerberos SUBDIR += py-rsa SUBDIR += py-safe SUBDIR += py-scp SUBDIR += py-scrypt SUBDIR += py-service_identity SUBDIR += py-signedjson SUBDIR += py-slowaes SUBDIR += py-spake2 SUBDIR += py-ssh SUBDIR += py-ssh-audit SUBDIR += py-sslstrip SUBDIR += py-stem SUBDIR += py-stix SUBDIR += py-tlslite SUBDIR += py-trezor SUBDIR += py-trustedpickle SUBDIR += py-tuf SUBDIR += py-twofish SUBDIR += py-txtorcon SUBDIR += py-virustotal-api SUBDIR += py-volatility SUBDIR += py-vulndb SUBDIR += py-yara SUBDIR += py-yubioath-desktop SUBDIR += py-yubikey-manager SUBDIR += py-zope.app.authentication SUBDIR += py-zope.app.localpermission SUBDIR += py-zope.app.principalannotation SUBDIR += py-zope.app.security SUBDIR += py-zope.app.securitypolicy SUBDIR += py-zope.authentication SUBDIR += py-zope.login SUBDIR += py-zope.password SUBDIR += py-zope.pluggableauth SUBDIR += py-zope.principalannotation SUBDIR += py-zope.principalregistry SUBDIR += py-zope.security SUBDIR += py-zope.securitypolicy SUBDIR += py-zope.session SUBDIR += py-zxcvbn SUBDIR += qtkeychain SUBDIR += quantis SUBDIR += quantis-kmod SUBDIR += racoon2 SUBDIR += radamsa SUBDIR += ranpwd SUBDIR += ratproxy SUBDIR += rats SUBDIR += razorback-api SUBDIR += razorback-archiveInflate SUBDIR += razorback-clamavNugget SUBDIR += razorback-dispatcher SUBDIR += razorback-fileInject SUBDIR += razorback-fsMonitor SUBDIR += razorback-fsWalk SUBDIR += razorback-masterNugget SUBDIR += razorback-officeCat SUBDIR += razorback-pdfFox SUBDIR += razorback-scriptNugget SUBDIR += razorback-swfScanner SUBDIR += razorback-syslogNugget SUBDIR += razorback-virusTotal SUBDIR += razorback-yaraNugget SUBDIR += rcracki_mt SUBDIR += rdigest SUBDIR += regripper SUBDIR += reop SUBDIR += retranslator SUBDIR += revealrk SUBDIR += revelation SUBDIR += rhash SUBDIR += rifiuti2 SUBDIR += rkhunter SUBDIR += rndpassw SUBDIR += ruby-camellia SUBDIR += rubygem-aes_key_wrap SUBDIR += rubygem-airbrussh SUBDIR += rubygem-attr_encrypted SUBDIR += rubygem-attr_encrypted30 SUBDIR += rubygem-bcrypt SUBDIR += rubygem-bcrypt-ruby SUBDIR += rubygem-bcrypt_pbkdf SUBDIR += rubygem-devise_pam_authenticatable2 SUBDIR += rubygem-devise-two-factor SUBDIR += rubygem-devise-two-factor-rails5 SUBDIR += rubygem-devise-two-factor-rails50 SUBDIR += rubygem-digest-crc SUBDIR += rubygem-doorkeeper SUBDIR += rubygem-doorkeeper42 SUBDIR += rubygem-doorkeeper-openid_connect SUBDIR += rubygem-doorkeeper-openid_connect12 SUBDIR += rubygem-doorkeeper-rails5 SUBDIR += rubygem-doorkeeper-rails50 SUBDIR += rubygem-encryptor SUBDIR += rubygem-ezcrypto SUBDIR += rubygem-googleauth SUBDIR += rubygem-gpgme SUBDIR += rubygem-gpgr SUBDIR += rubygem-gssapi SUBDIR += rubygem-hkdf SUBDIR += rubygem-jugyo-twitter_oauth SUBDIR += rubygem-metasploit-aggregator SUBDIR += rubygem-metasploit-concern SUBDIR += rubygem-metasploit-credential SUBDIR += rubygem-metasploit-model SUBDIR += rubygem-metasploit-payloads SUBDIR += rubygem-metasploit_data_models SUBDIR += rubygem-metasploit_payloads-mettle SUBDIR += rubygem-nessus_rest SUBDIR += rubygem-net-scp SUBDIR += rubygem-net-sftp SUBDIR += rubygem-net-ssh SUBDIR += rubygem-net-ssh41 SUBDIR += rubygem-net-ssh-gateway SUBDIR += rubygem-net-ssh-gateway1 SUBDIR += rubygem-net-ssh-multi SUBDIR += rubygem-net-telnet SUBDIR += rubygem-nexpose SUBDIR += rubygem-nmap-parser SUBDIR += rubygem-omniauth SUBDIR += rubygem-omniauth14 SUBDIR += rubygem-omniauth-bitbucket SUBDIR += rubygem-omniauth-cas SUBDIR += rubygem-omniauth-cas3 SUBDIR += rubygem-omniauth-gitlab SUBDIR += rubygem-omniauth-jwt SUBDIR += rubygem-omniauth-multipassword SUBDIR += rubygem-omniauth-oauth2-generic SUBDIR += rubygem-omniauth-saml SUBDIR += rubygem-omniauth-saml17 SUBDIR += rubygem-omniauth-shibboleth SUBDIR += rubygem-omniauth-shibboleth12 SUBDIR += rubygem-openssl SUBDIR += rubygem-openssl-ccm SUBDIR += rubygem-openvas-omp SUBDIR += rubygem-origami SUBDIR += rubygem-pbkdf2-ruby SUBDIR += rubygem-pundit SUBDIR += rubygem-pyu-ruby-sasl SUBDIR += rubygem-rack-oauth2 SUBDIR += rubygem-rack-oauth212 SUBDIR += rubygem-razorback-scriptNugget SUBDIR += rubygem-rbnacl SUBDIR += rubygem-rbnacl-libsodium SUBDIR += rubygem-rbnacl4 SUBDIR += rubygem-recog SUBDIR += rubygem-rex-arch SUBDIR += rubygem-rex-bin_tools SUBDIR += rubygem-rex-core SUBDIR += rubygem-rex-encoder SUBDIR += rubygem-rex-exploitation SUBDIR += rubygem-rex-java SUBDIR += rubygem-rex-mime SUBDIR += rubygem-rex-nop SUBDIR += rubygem-rex-ole SUBDIR += rubygem-rex-powershell SUBDIR += rubygem-rex-random_identifier SUBDIR += rubygem-rex-registry SUBDIR += rubygem-rex-rop_builder SUBDIR += rubygem-rex-socket SUBDIR += rubygem-rex-sslscan SUBDIR += rubygem-rex-struct2 SUBDIR += rubygem-rex-text SUBDIR += rubygem-rex-zip SUBDIR += rubygem-roauth SUBDIR += rubygem-rpam2 SUBDIR += rubygem-ruby-hmac SUBDIR += rubygem-ruby-rc4 SUBDIR += rubygem-ruby-saml SUBDIR += rubygem-scrypt SUBDIR += rubygem-securecompare SUBDIR += rubygem-signet SUBDIR += rubygem-six SUBDIR += rubygem-sshkey SUBDIR += rubygem-sshkit SUBDIR += rubygem-timfel-krb5 SUBDIR += rubygem-twitter_oauth SUBDIR += rubygem-webpush SUBDIR += s2n SUBDIR += safesh SUBDIR += samhain SUBDIR += samhain-client SUBDIR += samhain-server SUBDIR += sancp SUBDIR += sandsifter SUBDIR += sasp SUBDIR += scamp SUBDIR += scanhill SUBDIR += scanlogd SUBDIR += scanssh SUBDIR += scrypt SUBDIR += seahorse SUBDIR += seccure SUBDIR += secpanel SUBDIR += sectok SUBDIR += secure_delete - SUBDIR += setaudit + SUBDIR += setaudit SUBDIR += sguil SUBDIR += sha SUBDIR += sha1collisiondetection SUBDIR += sha2wordlist SUBDIR += shibboleth2-sp SUBDIR += shimmer SUBDIR += shishi SUBDIR += shttpscanner SUBDIR += sig2dot SUBDIR += signify SUBDIR += signing-party SUBDIR += silktools SUBDIR += sinfp SUBDIR += sks SUBDIR += slurpie SUBDIR += slush SUBDIR += smap SUBDIR += smtpscan SUBDIR += smurflog SUBDIR += sniff SUBDIR += snoopy SUBDIR += snort SUBDIR += snort-rep SUBDIR += snort2pfcd SUBDIR += snort3 SUBDIR += snortreport SUBDIR += snortsam SUBDIR += snortsnarf SUBDIR += snuffleupagus SUBDIR += softether SUBDIR += softether-devel SUBDIR += softhsm SUBDIR += softhsm2 SUBDIR += sops SUBDIR += spass SUBDIR += spike-proxy SUBDIR += spybye SUBDIR += sqlmap SUBDIR += sqlninja SUBDIR += srm SUBDIR += ssdeep SUBDIR += ssh-multiadd SUBDIR += ssh-vault SUBDIR += ssh_askpass_gtk2 SUBDIR += sshblock SUBDIR += sshguard SUBDIR += sshpass SUBDIR += ssl-admin SUBDIR += sslscan SUBDIR += sslsniffer SUBDIR += sslsplit SUBDIR += sslwrap SUBDIR += sssd SUBDIR += ssss SUBDIR += sst SUBDIR += starttls SUBDIR += stegdetect SUBDIR += steghide SUBDIR += stoken SUBDIR += strobe SUBDIR += strongswan SUBDIR += stud SUBDIR += stunnel SUBDIR += subversion-gnome-keyring SUBDIR += subversion-kwallet SUBDIR += subweb SUBDIR += sudo SUBDIR += sudoscript SUBDIR += super SUBDIR += suricata SUBDIR += swatch SUBDIR += switzerland SUBDIR += symbion-sslproxy SUBDIR += tclsasl SUBDIR += tcpcrypt SUBDIR += teleport SUBDIR += testssl.sh SUBDIR += tinc SUBDIR += tinc-devel SUBDIR += tinyca SUBDIR += titan SUBDIR += titus SUBDIR += tls-check SUBDIR += tlswrap SUBDIR += tmux-cssh SUBDIR += tor SUBDIR += tor-devel SUBDIR += tpm-tools SUBDIR += tpmmanager SUBDIR += trezord SUBDIR += trinokiller SUBDIR += tripwire SUBDIR += tripwire-131 SUBDIR += tripwire12 SUBDIR += trousers SUBDIR += truecrypt SUBDIR += tsshbatch SUBDIR += tthsum SUBDIR += u2f-devd SUBDIR += umit SUBDIR += unhide SUBDIR += unicornscan SUBDIR += unssh SUBDIR += vault SUBDIR += veracrypt SUBDIR += vinetto SUBDIR += vlock SUBDIR += vm-to-tor SUBDIR += vnccrack SUBDIR += vpnc SUBDIR += vuls SUBDIR += vuxml SUBDIR += vxquery SUBDIR += w3af SUBDIR += wapiti SUBDIR += webfwlog SUBDIR += webscarab SUBDIR += whatweb SUBDIR += wipe SUBDIR += wolfssl SUBDIR += wpa_supplicant SUBDIR += xca SUBDIR += xinetd SUBDIR += xml-security SUBDIR += xmlsec1 SUBDIR += xorsearch SUBDIR += xspy SUBDIR += yafic SUBDIR += yapet SUBDIR += yara SUBDIR += yersinia SUBDIR += ykclient SUBDIR += ykpers SUBDIR += yubico-piv-tool SUBDIR += yubikey-personalization-gui SUBDIR += yubikey-piv-manager SUBDIR += zebedee SUBDIR += zenmap SUBDIR += zeronet SUBDIR += zxid SUBDIR += zzuf .include Index: head/security/plasma5-kscreenlocker/Makefile =================================================================== --- head/security/plasma5-kscreenlocker/Makefile (nonexistent) +++ head/security/plasma5-kscreenlocker/Makefile (revision 468495) @@ -0,0 +1,35 @@ +# $FreeBSD$ + +PORTNAME= kscreenlocker +DISTVERSION= ${KDE_PLASMA_VERSION} +CATEGORIES= security kde kde-plasma + +MAINTAINER= kde@FreeBSD.org +COMMENT= Plasma5 secure lock screen architecture + +LIB_DEPENDS= libwayland-client.so:graphics/wayland \ + libxcb-keysyms.so:x11/xcb-util-keysyms +RUN_DEPENDS= ck-list-sessions:sysutils/consolekit2\ + dbus-send:devel/dbus + +USES= cmake:outsource compiler:c++11-lib cpe gettext kde:5 pkgconfig \ + shebangfix tar:xz +USE_KDE= auth codecs config configwidgets coreaddons crash ecm \ + emoticons globalaccel i18n idletime init itemmodels kcmutils \ + kdeclarative kdelibs4support notifications package \ + plasma-framework sonnet textwidgets wayland widgetsaddons \ + windowsystem xmlgui +USE_QT5= core dbus gui network qml quick testlib widgets x11extras xml \ + buildtools_build qmake_build +USE_XORG= ice sm x11 xcb xcursor xext xi + +SHEBANG_FILES= updaters/ksreenlocker_5_3_separate_autologin.pl + +# Install a generic console kit based program to unlock the screen in the event +# of a failure. +SUB_FILES= ck-unlock-session + +post-install: + ${INSTALL_SCRIPT} ${WRKDIR}/ck-unlock-session ${STAGEDIR}${PREFIX}/bin + +.include Property changes on: head/security/plasma5-kscreenlocker/Makefile ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/security/plasma5-kscreenlocker/distinfo =================================================================== --- head/security/plasma5-kscreenlocker/distinfo (nonexistent) +++ head/security/plasma5-kscreenlocker/distinfo (revision 468495) @@ -0,0 +1,3 @@ +TIMESTAMP = 1523811761 +SHA256 (KDE/plasma/5.12.4/kscreenlocker-5.12.4.tar.xz) = 357cb97d31d5cd91d647169f0fe980fbce08cb71a01087022fdab155bf32eca0 +SIZE (KDE/plasma/5.12.4/kscreenlocker-5.12.4.tar.xz) = 118380 Property changes on: head/security/plasma5-kscreenlocker/distinfo ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/security/plasma5-kscreenlocker/files/ck-unlock-session.in =================================================================== --- head/security/plasma5-kscreenlocker/files/ck-unlock-session.in (nonexistent) +++ head/security/plasma5-kscreenlocker/files/ck-unlock-session.in (revision 468495) @@ -0,0 +1,25 @@ +#!/bin/sh +# This helper script unlocks the Plasma5 screenlocker of the session given by argument, +# should the locker ever crash. +# +# Requirements: consolekit & dbus-send +# + +# list running sesions +list_sessions () +{ + %%PREFIX%%/bin/ck-list-sessions | grep -oE '^Session[^:]*' +} + +# unlock_session +unlock_session () +{ + %%PREFIX%%/bin/dbus-send --system --print-reply --dest="org.freedesktop.ConsoleKit" "/org/freedesktop/ConsoleKit/$1" org.freedesktop.ConsoleKit.Session.Unlock +} + +if [ $# -ne 1 ] ; then + list_sessions +else + unlock_session $1 +fi + Property changes on: head/security/plasma5-kscreenlocker/files/ck-unlock-session.in ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/security/plasma5-kscreenlocker/files/patch-abstractlocker.cpp =================================================================== --- head/security/plasma5-kscreenlocker/files/patch-abstractlocker.cpp (nonexistent) +++ head/security/plasma5-kscreenlocker/files/patch-abstractlocker.cpp (revision 468495) @@ -0,0 +1,21 @@ +Modify the explanation on the crashed lock screen to our situation. +That is, to use ck-unlock-session. + +--- abstractlocker.cpp.orig 2017-09-14 11:49:05 UTC ++++ abstractlocker.cpp +@@ -51,11 +51,11 @@ void BackgroundWindow::paintEvent(QPaintEvent* ) + if (m_greeterFailure) { + auto text = ki18n("The screen locker is broken and unlocking is not possible anymore.\n" + "In order to unlock switch to a virtual terminal (e.g. Ctrl+Alt+F2),\n" +- "log in and execute the command:\n\n" +- "loginctl unlock-session %1\n\n" ++ "log in as root and execute the command:\n\n" ++ "# ck-unlock-session \n\n" ++ "The can be obtained by running the command:\n\n:" ++ "# ck-unlock-session\n\n" + "Afterwards switch back to the running session (Ctrl+Alt+F%2)."); +- text = text.subs(QString::fromLocal8Bit(qgetenv("XDG_SESSION_ID"))); +- text = text.subs(QString::fromLocal8Bit(qgetenv("XDG_VTNR"))); + p.setPen(Qt::white); + QFont f = p.font(); + f.setBold(true); Property changes on: head/security/plasma5-kscreenlocker/files/patch-abstractlocker.cpp ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/security/plasma5-kscreenlocker/pkg-descr =================================================================== --- head/security/plasma5-kscreenlocker/pkg-descr (nonexistent) +++ head/security/plasma5-kscreenlocker/pkg-descr (revision 468495) @@ -0,0 +1,3 @@ +Library and components for secure lock screen architecture. + +WWW: https://www.kde.org/plasma-desktop Property changes on: head/security/plasma5-kscreenlocker/pkg-descr ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/security/plasma5-kscreenlocker/pkg-plist =================================================================== --- head/security/plasma5-kscreenlocker/pkg-plist (nonexistent) +++ head/security/plasma5-kscreenlocker/pkg-plist (revision 468495) @@ -0,0 +1,163 @@ +bin/ck-unlock-session +include/KScreenLocker/KScreenLocker/KsldApp +include/KScreenLocker/KScreenLocker/kscreenlocker_export.h +include/KScreenLocker/KScreenLocker/ksldapp.h +lib/cmake/KScreenLocker/KScreenLockerConfig.cmake +lib/cmake/KScreenLocker/KScreenLockerConfigVersion.cmake +lib/cmake/KScreenLocker/KScreenLockerTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/KScreenLocker/KScreenLockerTargets.cmake +lib/cmake/ScreenSaverDBusInterface/ScreenSaverDBusInterfaceConfig.cmake +lib/libKScreenLocker.so +lib/libKScreenLocker.so.5 +lib/libKScreenLocker.so.%%KDE_PLASMA_VERSION%% +@(,,4555) lib/libexec/kcheckpass +lib/libexec/kscreenlocker_greet +%%QT_PLUGINDIR%%/screenlocker_kcm.so +share/dbus-1/interfaces/kf5_org.freedesktop.ScreenSaver.xml +share/kconf_update/kscreenlocker.upd +share/kconf_update/ksreenlocker_5_3_separate_autologin.pl +share/knotifications5/ksmserver.notifyrc +share/kservices5/screenlocker.desktop +share/ksmserver/screenlocker/org.kde.passworddialog/metadata.desktop +share/locale/ar/LC_MESSAGES/kscreenlocker.mo +share/locale/ar/LC_MESSAGES/kscreenlocker_greet.mo +share/locale/ar/LC_MESSAGES/screenlocker_kcm.mo +share/locale/ast/LC_MESSAGES/kscreenlocker.mo +share/locale/ast/LC_MESSAGES/kscreenlocker_greet.mo +share/locale/ast/LC_MESSAGES/screenlocker_kcm.mo +share/locale/bs/LC_MESSAGES/kscreenlocker.mo +share/locale/bs/LC_MESSAGES/kscreenlocker_greet.mo +share/locale/bs/LC_MESSAGES/screenlocker_kcm.mo +share/locale/ca/LC_MESSAGES/kscreenlocker.mo +share/locale/ca/LC_MESSAGES/kscreenlocker_greet.mo +share/locale/ca/LC_MESSAGES/screenlocker_kcm.mo +share/locale/ca@valencia/LC_MESSAGES/kscreenlocker.mo +share/locale/ca@valencia/LC_MESSAGES/kscreenlocker_greet.mo +share/locale/ca@valencia/LC_MESSAGES/screenlocker_kcm.mo +share/locale/cs/LC_MESSAGES/kscreenlocker.mo +share/locale/cs/LC_MESSAGES/kscreenlocker_greet.mo +share/locale/cs/LC_MESSAGES/screenlocker_kcm.mo +share/locale/da/LC_MESSAGES/kscreenlocker.mo +share/locale/da/LC_MESSAGES/kscreenlocker_greet.mo +share/locale/da/LC_MESSAGES/screenlocker_kcm.mo +share/locale/de/LC_MESSAGES/kscreenlocker.mo +share/locale/de/LC_MESSAGES/kscreenlocker_greet.mo +share/locale/de/LC_MESSAGES/screenlocker_kcm.mo +share/locale/el/LC_MESSAGES/kscreenlocker.mo +share/locale/el/LC_MESSAGES/kscreenlocker_greet.mo +share/locale/el/LC_MESSAGES/screenlocker_kcm.mo +share/locale/en_GB/LC_MESSAGES/kscreenlocker.mo +share/locale/en_GB/LC_MESSAGES/kscreenlocker_greet.mo +share/locale/en_GB/LC_MESSAGES/screenlocker_kcm.mo +share/locale/es/LC_MESSAGES/kscreenlocker.mo +share/locale/es/LC_MESSAGES/kscreenlocker_greet.mo +share/locale/es/LC_MESSAGES/screenlocker_kcm.mo +share/locale/et/LC_MESSAGES/kscreenlocker.mo +share/locale/et/LC_MESSAGES/kscreenlocker_greet.mo +share/locale/et/LC_MESSAGES/screenlocker_kcm.mo +share/locale/eu/LC_MESSAGES/kscreenlocker.mo +share/locale/eu/LC_MESSAGES/kscreenlocker_greet.mo +share/locale/eu/LC_MESSAGES/screenlocker_kcm.mo +share/locale/fi/LC_MESSAGES/kscreenlocker.mo +share/locale/fi/LC_MESSAGES/kscreenlocker_greet.mo +share/locale/fi/LC_MESSAGES/screenlocker_kcm.mo +share/locale/fr/LC_MESSAGES/kscreenlocker.mo +share/locale/fr/LC_MESSAGES/kscreenlocker_greet.mo +share/locale/fr/LC_MESSAGES/screenlocker_kcm.mo +share/locale/ga/LC_MESSAGES/kscreenlocker.mo +share/locale/ga/LC_MESSAGES/kscreenlocker_greet.mo +share/locale/gl/LC_MESSAGES/kscreenlocker.mo +share/locale/gl/LC_MESSAGES/kscreenlocker_greet.mo +share/locale/gl/LC_MESSAGES/screenlocker_kcm.mo +share/locale/he/LC_MESSAGES/kscreenlocker.mo +share/locale/he/LC_MESSAGES/kscreenlocker_greet.mo +share/locale/he/LC_MESSAGES/screenlocker_kcm.mo +share/locale/hu/LC_MESSAGES/kscreenlocker.mo +share/locale/hu/LC_MESSAGES/kscreenlocker_greet.mo +share/locale/hu/LC_MESSAGES/screenlocker_kcm.mo +share/locale/ia/LC_MESSAGES/kscreenlocker.mo +share/locale/ia/LC_MESSAGES/kscreenlocker_greet.mo +share/locale/ia/LC_MESSAGES/screenlocker_kcm.mo +share/locale/it/LC_MESSAGES/kscreenlocker.mo +share/locale/it/LC_MESSAGES/kscreenlocker_greet.mo +share/locale/it/LC_MESSAGES/screenlocker_kcm.mo +share/locale/ja/LC_MESSAGES/kscreenlocker.mo +share/locale/ja/LC_MESSAGES/kscreenlocker_greet.mo +share/locale/ja/LC_MESSAGES/screenlocker_kcm.mo +share/locale/kk/LC_MESSAGES/kscreenlocker.mo +share/locale/kk/LC_MESSAGES/kscreenlocker_greet.mo +share/locale/ko/LC_MESSAGES/kscreenlocker.mo +share/locale/ko/LC_MESSAGES/kscreenlocker_greet.mo +share/locale/ko/LC_MESSAGES/screenlocker_kcm.mo +share/locale/lt/LC_MESSAGES/kscreenlocker.mo +share/locale/lt/LC_MESSAGES/kscreenlocker_greet.mo +share/locale/lt/LC_MESSAGES/screenlocker_kcm.mo +share/locale/mr/LC_MESSAGES/kscreenlocker.mo +share/locale/mr/LC_MESSAGES/kscreenlocker_greet.mo +share/locale/nb/LC_MESSAGES/kscreenlocker.mo +share/locale/nb/LC_MESSAGES/kscreenlocker_greet.mo +share/locale/nb/LC_MESSAGES/screenlocker_kcm.mo +share/locale/nds/LC_MESSAGES/kscreenlocker.mo +share/locale/nds/LC_MESSAGES/kscreenlocker_greet.mo +share/locale/nds/LC_MESSAGES/screenlocker_kcm.mo +share/locale/nl/LC_MESSAGES/kscreenlocker.mo +share/locale/nl/LC_MESSAGES/kscreenlocker_greet.mo +share/locale/nl/LC_MESSAGES/screenlocker_kcm.mo +share/locale/nn/LC_MESSAGES/kscreenlocker.mo +share/locale/nn/LC_MESSAGES/kscreenlocker_greet.mo +share/locale/nn/LC_MESSAGES/screenlocker_kcm.mo +share/locale/pa/LC_MESSAGES/kscreenlocker.mo +share/locale/pa/LC_MESSAGES/kscreenlocker_greet.mo +share/locale/pa/LC_MESSAGES/screenlocker_kcm.mo +share/locale/pl/LC_MESSAGES/kscreenlocker.mo +share/locale/pl/LC_MESSAGES/kscreenlocker_greet.mo +share/locale/pl/LC_MESSAGES/screenlocker_kcm.mo +share/locale/pt/LC_MESSAGES/kscreenlocker.mo +share/locale/pt/LC_MESSAGES/kscreenlocker_greet.mo +share/locale/pt/LC_MESSAGES/screenlocker_kcm.mo +share/locale/pt_BR/LC_MESSAGES/kscreenlocker.mo +share/locale/pt_BR/LC_MESSAGES/kscreenlocker_greet.mo +share/locale/pt_BR/LC_MESSAGES/screenlocker_kcm.mo +share/locale/ro/LC_MESSAGES/kscreenlocker.mo +share/locale/ro/LC_MESSAGES/kscreenlocker_greet.mo +share/locale/ro/LC_MESSAGES/screenlocker_kcm.mo +share/locale/ru/LC_MESSAGES/kscreenlocker.mo +share/locale/ru/LC_MESSAGES/kscreenlocker_greet.mo +share/locale/ru/LC_MESSAGES/screenlocker_kcm.mo +share/locale/sk/LC_MESSAGES/kscreenlocker.mo +share/locale/sk/LC_MESSAGES/kscreenlocker_greet.mo +share/locale/sk/LC_MESSAGES/screenlocker_kcm.mo +share/locale/sl/LC_MESSAGES/kscreenlocker.mo +share/locale/sl/LC_MESSAGES/kscreenlocker_greet.mo +share/locale/sl/LC_MESSAGES/screenlocker_kcm.mo +share/locale/sr/LC_MESSAGES/kscreenlocker.mo +share/locale/sr/LC_MESSAGES/kscreenlocker_greet.mo +share/locale/sr/LC_MESSAGES/screenlocker_kcm.mo +share/locale/sr@ijekavian/LC_MESSAGES/kscreenlocker.mo +share/locale/sr@ijekavian/LC_MESSAGES/kscreenlocker_greet.mo +share/locale/sr@ijekavian/LC_MESSAGES/screenlocker_kcm.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kscreenlocker.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kscreenlocker_greet.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/screenlocker_kcm.mo +share/locale/sr@latin/LC_MESSAGES/kscreenlocker.mo +share/locale/sr@latin/LC_MESSAGES/kscreenlocker_greet.mo +share/locale/sr@latin/LC_MESSAGES/screenlocker_kcm.mo +share/locale/sv/LC_MESSAGES/kscreenlocker.mo +share/locale/sv/LC_MESSAGES/kscreenlocker_greet.mo +share/locale/sv/LC_MESSAGES/screenlocker_kcm.mo +share/locale/tr/LC_MESSAGES/kscreenlocker.mo +share/locale/tr/LC_MESSAGES/kscreenlocker_greet.mo +share/locale/tr/LC_MESSAGES/screenlocker_kcm.mo +share/locale/ug/LC_MESSAGES/kscreenlocker.mo +share/locale/ug/LC_MESSAGES/kscreenlocker_greet.mo +share/locale/uk/LC_MESSAGES/kscreenlocker.mo +share/locale/uk/LC_MESSAGES/kscreenlocker_greet.mo +share/locale/uk/LC_MESSAGES/screenlocker_kcm.mo +share/locale/wa/LC_MESSAGES/kscreenlocker.mo +share/locale/wa/LC_MESSAGES/kscreenlocker_greet.mo +share/locale/zh_CN/LC_MESSAGES/kscreenlocker.mo +share/locale/zh_CN/LC_MESSAGES/kscreenlocker_greet.mo +share/locale/zh_CN/LC_MESSAGES/screenlocker_kcm.mo +share/locale/zh_TW/LC_MESSAGES/kscreenlocker.mo +share/locale/zh_TW/LC_MESSAGES/kscreenlocker_greet.mo +share/locale/zh_TW/LC_MESSAGES/screenlocker_kcm.mo Property changes on: head/security/plasma5-kscreenlocker/pkg-plist ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/security/plasma5-ksshaskpass/Makefile =================================================================== --- head/security/plasma5-ksshaskpass/Makefile (nonexistent) +++ head/security/plasma5-ksshaskpass/Makefile (revision 468495) @@ -0,0 +1,15 @@ +# $FreeBSD$ + +PORTNAME= ksshaskpass +DISTVERSION= ${KDE_PLASMA_VERSION} +CATEGORIES= security kde kde-plasma + +MAINTAINER= kde@FreeBSD.org +COMMENT= Plasma5 ssh-add frontend + +USES= cmake:outsource compiler:c++11-lib cpe gettext kde:5 tar:xz +USE_KDE= coreaddons doctools ecm i18n wallet widgetsaddons +USE_QT5= core gui widgets \ + buildtools_build qmake_build + +.include Property changes on: head/security/plasma5-ksshaskpass/Makefile ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/security/plasma5-ksshaskpass/distinfo =================================================================== --- head/security/plasma5-ksshaskpass/distinfo (nonexistent) +++ head/security/plasma5-ksshaskpass/distinfo (revision 468495) @@ -0,0 +1,3 @@ +TIMESTAMP = 1523811762 +SHA256 (KDE/plasma/5.12.4/ksshaskpass-5.12.4.tar.xz) = e59794af3cb9fcd4285049d229f82ce51fe535745ed3014f7b0445892e2e804c +SIZE (KDE/plasma/5.12.4/ksshaskpass-5.12.4.tar.xz) = 21060 Property changes on: head/security/plasma5-ksshaskpass/distinfo ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/security/plasma5-ksshaskpass/pkg-descr =================================================================== --- head/security/plasma5-ksshaskpass/pkg-descr (nonexistent) +++ head/security/plasma5-ksshaskpass/pkg-descr (revision 468495) @@ -0,0 +1,3 @@ +ssh-add helper that uses kwallet and kpassworddialog. + +WWW: https://www.kde.org/plasma-desktop Property changes on: head/security/plasma5-ksshaskpass/pkg-descr ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/security/plasma5-ksshaskpass/pkg-plist =================================================================== --- head/security/plasma5-ksshaskpass/pkg-plist (nonexistent) +++ head/security/plasma5-ksshaskpass/pkg-plist (revision 468495) @@ -0,0 +1,44 @@ +bin/ksshaskpass +man/man1/ksshaskpass.1.gz +share/locale/ar/LC_MESSAGES/ksshaskpass.mo +share/locale/ast/LC_MESSAGES/ksshaskpass.mo +share/locale/bs/LC_MESSAGES/ksshaskpass.mo +share/locale/ca/LC_MESSAGES/ksshaskpass.mo +share/locale/ca@valencia/LC_MESSAGES/ksshaskpass.mo +share/locale/cs/LC_MESSAGES/ksshaskpass.mo +share/locale/da/LC_MESSAGES/ksshaskpass.mo +share/locale/de/LC_MESSAGES/ksshaskpass.mo +share/locale/el/LC_MESSAGES/ksshaskpass.mo +share/locale/en_GB/LC_MESSAGES/ksshaskpass.mo +share/locale/es/LC_MESSAGES/ksshaskpass.mo +share/locale/et/LC_MESSAGES/ksshaskpass.mo +share/locale/eu/LC_MESSAGES/ksshaskpass.mo +share/locale/fi/LC_MESSAGES/ksshaskpass.mo +share/locale/fr/LC_MESSAGES/ksshaskpass.mo +share/locale/gl/LC_MESSAGES/ksshaskpass.mo +share/locale/he/LC_MESSAGES/ksshaskpass.mo +share/locale/ia/LC_MESSAGES/ksshaskpass.mo +share/locale/it/LC_MESSAGES/ksshaskpass.mo +share/locale/ja/LC_MESSAGES/ksshaskpass.mo +share/locale/ko/LC_MESSAGES/ksshaskpass.mo +share/locale/lt/LC_MESSAGES/ksshaskpass.mo +share/locale/nb/LC_MESSAGES/ksshaskpass.mo +share/locale/nl/LC_MESSAGES/ksshaskpass.mo +share/locale/nn/LC_MESSAGES/ksshaskpass.mo +share/locale/pa/LC_MESSAGES/ksshaskpass.mo +share/locale/pl/LC_MESSAGES/ksshaskpass.mo +share/locale/pt/LC_MESSAGES/ksshaskpass.mo +share/locale/pt_BR/LC_MESSAGES/ksshaskpass.mo +share/locale/ro/LC_MESSAGES/ksshaskpass.mo +share/locale/ru/LC_MESSAGES/ksshaskpass.mo +share/locale/sk/LC_MESSAGES/ksshaskpass.mo +share/locale/sl/LC_MESSAGES/ksshaskpass.mo +share/locale/sr/LC_MESSAGES/ksshaskpass.mo +share/locale/sr@ijekavian/LC_MESSAGES/ksshaskpass.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/ksshaskpass.mo +share/locale/sr@latin/LC_MESSAGES/ksshaskpass.mo +share/locale/sv/LC_MESSAGES/ksshaskpass.mo +share/locale/tr/LC_MESSAGES/ksshaskpass.mo +share/locale/uk/LC_MESSAGES/ksshaskpass.mo +share/locale/zh_CN/LC_MESSAGES/ksshaskpass.mo +share/locale/zh_TW/LC_MESSAGES/ksshaskpass.mo Property changes on: head/security/plasma5-ksshaskpass/pkg-plist ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/security/plasma5-kwallet-pam/Makefile =================================================================== --- head/security/plasma5-kwallet-pam/Makefile (nonexistent) +++ head/security/plasma5-kwallet-pam/Makefile (revision 468495) @@ -0,0 +1,24 @@ +# $FreeBSD$ + +PORTNAME= kwallet-pam +DISTVERSION= ${KDE_PLASMA_VERSION} +CATEGORIES= security kde kde-plasma + +MAINTAINER= kde@FreeBSD.org +COMMENT= Plasma5 KWallet PAM Integration + +LIB_DEPENDS= libgcrypt.so:security/libgcrypt \ + libgpg-error.so:security/libgpg-error + +USES= cmake:outsource cpe gettext kde:5 tar:xz +USE_KDE= ecm +USE_QT5= buildtools_build qmake_build + +# The qmake dependency is only needed so that kf5-e-c-m can query qmake for +# some installation directories. +# We explicitly prevent it from looking for qt5-core and specify qmake's path +# to avoid needlessly depending on qt5-core. +CMAKE_ARGS= -DCMAKE_DISABLE_FIND_PACKAGE_Qt5Core=TRUE \ + -DQMAKE_EXECUTABLE:PATH=${QMAKE} + +.include Property changes on: head/security/plasma5-kwallet-pam/Makefile ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/security/plasma5-kwallet-pam/distinfo =================================================================== --- head/security/plasma5-kwallet-pam/distinfo (nonexistent) +++ head/security/plasma5-kwallet-pam/distinfo (revision 468495) @@ -0,0 +1,3 @@ +TIMESTAMP = 1523811762 +SHA256 (KDE/plasma/5.12.4/kwallet-pam-5.12.4.tar.xz) = 58586c4d5fec26b68b086ef14d5ea0233a33979957d5c523199647ef27ee1d15 +SIZE (KDE/plasma/5.12.4/kwallet-pam-5.12.4.tar.xz) = 18476 Property changes on: head/security/plasma5-kwallet-pam/distinfo ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/security/plasma5-kwallet-pam/pkg-descr =================================================================== --- head/security/plasma5-kwallet-pam/pkg-descr (nonexistent) +++ head/security/plasma5-kwallet-pam/pkg-descr (revision 468495) @@ -0,0 +1,3 @@ +KWallet PAM Integration + +WWW: https://www.kde.org/plasma-desktop Property changes on: head/security/plasma5-kwallet-pam/pkg-descr ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/security/plasma5-kwallet-pam/pkg-plist =================================================================== --- head/security/plasma5-kwallet-pam/pkg-plist (nonexistent) +++ head/security/plasma5-kwallet-pam/pkg-plist (revision 468495) @@ -0,0 +1,3 @@ +etc/xdg/autostart/pam_kwallet_init.desktop +lib/libexec/pam_kwallet_init +lib/security/pam_kwallet5.so Property changes on: head/security/plasma5-kwallet-pam/pkg-plist ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/sysutils/Makefile =================================================================== --- head/sysutils/Makefile (revision 468494) +++ head/sysutils/Makefile (revision 468495) @@ -1,1433 +1,1444 @@ # $FreeBSD$ # COMMENT = System utilities SUBDIR += 3dm SUBDIR += 44bsd-more SUBDIR += 915resolution SUBDIR += DTraceToolkit SUBDIR += LPRng SUBDIR += LPRngTool SUBDIR += UEFITool SUBDIR += abck SUBDIR += abduco SUBDIR += abgx360 SUBDIR += abgx360gui SUBDIR += accountsservice SUBDIR += acerhdf-kmod SUBDIR += acpi_call SUBDIR += acpica-tools SUBDIR += acts SUBDIR += adtool SUBDIR += afbinit SUBDIR += afflib SUBDIR += afio SUBDIR += agedu SUBDIR += ah-tty SUBDIR += aimage SUBDIR += aird SUBDIR += am-utils SUBDIR += amazon-ssm-agent SUBDIR += amdmsrtweaker SUBDIR += amrstat SUBDIR += amtc SUBDIR += anacron SUBDIR += and SUBDIR += android-file-transfer SUBDIR += android-file-transfer-qt4 SUBDIR += android-file-transfer-qt5 SUBDIR += ansible SUBDIR += ansible1 SUBDIR += ansible23 SUBDIR += ansible24 SUBDIR += anvil SUBDIR += apachetop SUBDIR += apcpwr SUBDIR += apcupsd SUBDIR += aptly SUBDIR += arcconf SUBDIR += archivemount SUBDIR += areca-cli SUBDIR += ascpu SUBDIR += asfsm SUBDIR += asmctl SUBDIR += asmem SUBDIR += asmon SUBDIR += asusoled SUBDIR += ataidle SUBDIR += atf-allwinner SUBDIR += atitvout SUBDIR += atop SUBDIR += auto-admin SUBDIR += autojump SUBDIR += automount SUBDIR += automounter SUBDIR += autopsy SUBDIR += avfs SUBDIR += azure-agent SUBDIR += b2sum SUBDIR += b43-fwcutter SUBDIR += backupchecker SUBDIR += backuppc SUBDIR += backuppc-devel SUBDIR += backuppc4 SUBDIR += bacula-bat SUBDIR += bacula-client SUBDIR += bacula-client-static SUBDIR += bacula-docs SUBDIR += bacula-server SUBDIR += bacula9-bat SUBDIR += bacula9-client SUBDIR += bacula9-client-static SUBDIR += bacula9-docs SUBDIR += bacula9-server SUBDIR += baloo-kde4 SUBDIR += baloo-widgets SUBDIR += baloo-widgets-kde4 SUBDIR += bamf SUBDIR += bareos-bat SUBDIR += bareos-client SUBDIR += bareos-client-static SUBDIR += bareos-docs SUBDIR += bareos-server SUBDIR += bareos-traymonitor SUBDIR += batmon SUBDIR += battfink SUBDIR += battmond SUBDIR += battray SUBDIR += bbapm SUBDIR += bbcp SUBDIR += bchunk SUBDIR += beadm SUBDIR += beadm-devel SUBDIR += beats SUBDIR += bhyve-firmware SUBDIR += bhyve-rc SUBDIR += biosfont SUBDIR += bkpupsd SUBDIR += bksh SUBDIR += boxbackup SUBDIR += boxbackup-devel SUBDIR += brasero SUBDIR += bsd-splash-changer SUBDIR += bsdconfig SUBDIR += bsdcrashtar SUBDIR += bsdhwmon SUBDIR += bsdinfo SUBDIR += bsdisks SUBDIR += bsdmoted SUBDIR += bsdploy SUBDIR += bsdstats SUBDIR += bstack SUBDIR += btsixad SUBDIR += bulk_extractor SUBDIR += burp SUBDIR += busybox SUBDIR += byobu SUBDIR += catfish SUBDIR += cbsd SUBDIR += ccd2iso SUBDIR += cciss_vol_status SUBDIR += ccze SUBDIR += cdargs SUBDIR += cdbkup SUBDIR += cdeploy SUBDIR += cdf SUBDIR += cdircmp SUBDIR += cdls SUBDIR += cdrdao SUBDIR += cdrkit SUBDIR += cdroot SUBDIR += cdrtools SUBDIR += cdrtools-devel SUBDIR += cfengine SUBDIR += cfengine-devel SUBDIR += cfengine-masterfiles SUBDIR += cfengine-masterfiles-devel SUBDIR += cfengine-masterfiles310 SUBDIR += cfengine-masterfiles311 SUBDIR += cfengine-masterfiles36 SUBDIR += cfengine-masterfiles37 SUBDIR += cfengine-masterfiles38 SUBDIR += cfengine-masterfiles39 SUBDIR += cfengine22 SUBDIR += cfengine310 SUBDIR += cfengine311 SUBDIR += cfengine32 SUBDIR += cfengine33 SUBDIR += cfengine34 SUBDIR += cfengine35 SUBDIR += cfengine36 SUBDIR += cfengine37 SUBDIR += cfengine38 SUBDIR += cfengine39 SUBDIR += chgrep SUBDIR += chyves SUBDIR += cinnamon-control-center SUBDIR += cinnamon-settings-daemon SUBDIR += circonus-agent SUBDIR += ciso SUBDIR += ciso-maker SUBDIR += ck4up SUBDIR += clean SUBDIR += clockspeed SUBDIR += clone SUBDIR += clonehdd SUBDIR += cloop-utils SUBDIR += cloudabi-utils SUBDIR += clsync SUBDIR += cluster-glue SUBDIR += cmdwatch SUBDIR += cmocka SUBDIR += cmockery2 SUBDIR += cmogstored SUBDIR += cmospwd SUBDIR += cog SUBDIR += colorize SUBDIR += condor SUBDIR += confctl SUBDIR += confman SUBDIR += conky SUBDIR += conky-awesome SUBDIR += consolehm SUBDIR += consolekit2 SUBDIR += consul SUBDIR += consul-alerts SUBDIR += consul-replicate SUBDIR += consul_exporter SUBDIR += container-diff SUBDIR += contractor SUBDIR += copytape SUBDIR += coreutils SUBDIR += cotty SUBDIR += cpdup SUBDIR += cpu SUBDIR += cpu-x SUBDIR += cpuburn SUBDIR += cpuid SUBDIR += cpulimit SUBDIR += cpupdate SUBDIR += cramfs SUBDIR += crashme SUBDIR += createrepo SUBDIR += cronic SUBDIR += cronolog SUBDIR += cronolog-devel SUBDIR += curly SUBDIR += currtime SUBDIR += cw SUBDIR += daa2iso SUBDIR += dae SUBDIR += daemonize SUBDIR += daemontools SUBDIR += daemontools-encore SUBDIR += dar SUBDIR += dateutils SUBDIR += dc3dd SUBDIR += dcfldd SUBDIR += dd_rescue SUBDIR += ddpt SUBDIR += ddrescue SUBDIR += debhelper SUBDIR += debootstrap SUBDIR += deltarpm SUBDIR += deltup SUBDIR += desktop-installer SUBDIR += detach SUBDIR += detox SUBDIR += devcpu-data SUBDIR += devstat SUBDIR += dfc SUBDIR += di SUBDIR += dim SUBDIR += dirdiff SUBDIR += direnv SUBDIR += dirvish SUBDIR += diskcheckd SUBDIR += diskimage-tools SUBDIR += diskscrub SUBDIR += disktool SUBDIR += disktype SUBDIR += djmount SUBDIR += dmg2img SUBDIR += dmidecode SUBDIR += docker SUBDIR += docker-compose SUBDIR += docker-freebsd SUBDIR += docker-machine SUBDIR += doctl SUBDIR += doinkd SUBDIR += dolly SUBDIR += downtime SUBDIR += downtimed SUBDIR += dsbbatmon SUBDIR += dsbdriverd SUBDIR += dsblogoutmgr SUBDIR += dsbmc SUBDIR += dsbmc-cli SUBDIR += dsbmd SUBDIR += dsbwrtsysctl SUBDIR += dt SUBDIR += dtc SUBDIR += dtpstree SUBDIR += du2ps SUBDIR += duff SUBDIR += dunst SUBDIR += dupd SUBDIR += duplicity SUBDIR += duply SUBDIR += dupmerge SUBDIR += dvd+rw-tools SUBDIR += dvdbackup SUBDIR += dvdimagecmp SUBDIR += dvdisaster SUBDIR += dvdvideo SUBDIR += dvtm SUBDIR += dwatch SUBDIR += e2fsprogs SUBDIR += ec2-scripts SUBDIR += edid-decode SUBDIR += eject SUBDIR += endian SUBDIR += enteruser SUBDIR += entr SUBDIR += env4801 SUBDIR += envconsul SUBDIR += epazote SUBDIR += etcmerge SUBDIR += etcupdate SUBDIR += eventlog SUBDIR += evtviewer SUBDIR += exa SUBDIR += exfat-utils SUBDIR += extipl SUBDIR += ezjail SUBDIR += f3 SUBDIR += facter SUBDIR += fanout SUBDIR += farbot SUBDIR += fastest_cvsup SUBDIR += fatback SUBDIR += fconfig SUBDIR += fcron SUBDIR += fd SUBDIR += fdupes SUBDIR += feather SUBDIR += fetchlog SUBDIR += ffs2recov SUBDIR += file SUBDIR += filedupe SUBDIR += filelight SUBDIR += filelight-kde4 SUBDIR += fileprune SUBDIR += fileschanged SUBDIR += filetype SUBDIR += filevercmp SUBDIR += filewatcherd SUBDIR += finfo SUBDIR += firstboot-freebsd-update SUBDIR += firstboot-growfs SUBDIR += firstboot-pkgs SUBDIR += flasher SUBDIR += flashrom SUBDIR += flexbackup SUBDIR += flock SUBDIR += flog SUBDIR += flowgger SUBDIR += fluent-bit SUBDIR += fonteditfs SUBDIR += foremost SUBDIR += fortunelock SUBDIR += fpart SUBDIR += fpc-syslog SUBDIR += fpc-users SUBDIR += fpc-utmp SUBDIR += fpc-uuid SUBDIR += freebsd-snapshot SUBDIR += freecolor SUBDIR += freedt SUBDIR += freefilesync SUBDIR += freeipmi SUBDIR += freesbie SUBDIR += froxlor SUBDIR += fsbackup SUBDIR += fsc SUBDIR += fsearch SUBDIR += fstyp SUBDIR += fswatch-mon SUBDIR += ftwin SUBDIR += fusefs-afuse SUBDIR += fusefs-chironfs SUBDIR += fusefs-cryptofs SUBDIR += fusefs-curlftpfs SUBDIR += fusefs-encfs SUBDIR += fusefs-exfat SUBDIR += fusefs-ext2 SUBDIR += fusefs-ext4fuse SUBDIR += fusefs-funionfs SUBDIR += fusefs-fusepak SUBDIR += fusefs-fusexmp_fh SUBDIR += fusefs-gitfs SUBDIR += fusefs-gnome-vfs SUBDIR += fusefs-gstfs SUBDIR += fusefs-gunzip SUBDIR += fusefs-hfsfuse SUBDIR += fusefs-httpfs SUBDIR += fusefs-ifuse SUBDIR += fusefs-libs SUBDIR += fusefs-libs3 SUBDIR += fusefs-lkl SUBDIR += fusefs-mhddfs SUBDIR += fusefs-mp3fs SUBDIR += fusefs-ntfs SUBDIR += fusefs-ntfs-compression SUBDIR += fusefs-pod SUBDIR += fusefs-rar2fs SUBDIR += fusefs-s3fs SUBDIR += fusefs-simple-mtpfs SUBDIR += fusefs-smbnetfs SUBDIR += fusefs-sqlfs SUBDIR += fusefs-squashfuse SUBDIR += fusefs-sshfs SUBDIR += fusefs-unionfs SUBDIR += fusefs-wdfs SUBDIR += fusefs-webdavfs SUBDIR += fusefs-wikipediafs SUBDIR += fusefs-zip SUBDIR += fvcool SUBDIR += gaffitter SUBDIR += gai-leds SUBDIR += ganglia-monitor-core SUBDIR += ganglia-webfrontend SUBDIR += gapcmon SUBDIR += garcon SUBDIR += gather SUBDIR += gcdmaster SUBDIR += gcombust SUBDIR += gconf-editor SUBDIR += gdisk SUBDIR += gdmap SUBDIR += genisoimage SUBDIR += geomWatch SUBDIR += getdelta SUBDIR += geteltorito SUBDIR += getssl SUBDIR += gigolo SUBDIR += gkfreq SUBDIR += gkleds2 SUBDIR += gkrellfire SUBDIR += gkrellflynn SUBDIR += gkrellm-trayicons SUBDIR += gkrellm2 SUBDIR += gkrelltop SUBDIR += gksu SUBDIR += glogg SUBDIR += gnome-control-center SUBDIR += gnome-device-manager SUBDIR += gnome-mount SUBDIR += gnome-pkgview SUBDIR += gnome-power-manager SUBDIR += gnome-schedule SUBDIR += gnome-settings-daemon SUBDIR += gnome-system-monitor SUBDIR += gnome_subr SUBDIR += goaccess SUBDIR += google-compute-engine-oslogin SUBDIR += goss SUBDIR += gpart SUBDIR += gpte SUBDIR += graffer SUBDIR += graid5 SUBDIR += graveman SUBDIR += graylog SUBDIR += grub2 SUBDIR += grub2-bhyve SUBDIR += grub2-efi SUBDIR += grub2-pcbsd SUBDIR += gsh SUBDIR += gsmartcontrol SUBDIR += gstopd SUBDIR += gstreamer-plugins-cdio SUBDIR += gstreamer-plugins-hal SUBDIR += gstreamer1-plugins-cdio SUBDIR += gtk-imonc SUBDIR += hachoir-metadata SUBDIR += hachoir-subfile SUBDIR += hachoir-urwid SUBDIR += hachoir-wx SUBDIR += hal SUBDIR += hal-info SUBDIR += hardlink SUBDIR += hare SUBDIR += hared SUBDIR += hatop SUBDIR += hdrecover SUBDIR += healthd SUBDIR += heartbeat SUBDIR += heirloom SUBDIR += hextools SUBDIR += hfm SUBDIR += hfsexplorer SUBDIR += hfsutils SUBDIR += hidesvn SUBDIR += highlnk SUBDIR += hilite SUBDIR += host-setup SUBDIR += hourglass SUBDIR += hoz SUBDIR += hpacucli SUBDIR += hploscripts SUBDIR += hptcli SUBDIR += hs-angel SUBDIR += hs-cpu SUBDIR += hs-disk-free-space SUBDIR += hs-ekg SUBDIR += hs-ekg-core SUBDIR += hs-ekg-json SUBDIR += hs-mountpoints SUBDIR += hstr SUBDIR += htop SUBDIR += httplog SUBDIR += hwstat SUBDIR += i2c-tools SUBDIR += i7z SUBDIR += iat SUBDIR += immortal SUBDIR += incron SUBDIR += inotify-tools SUBDIR += installwatch SUBDIR += intel-nvmupdate SUBDIR += intel-pcm SUBDIR += intel-pcm-devel SUBDIR += intel-qcu SUBDIR += iocage SUBDIR += iocell SUBDIR += iogen SUBDIR += iograph SUBDIR += iohyve SUBDIR += ioping SUBDIR += ipa SUBDIR += ipad_charge SUBDIR += ipdbtools SUBDIR += ipfs-go SUBDIR += ipmitool SUBDIR += ipsc SUBDIR += isc-cron SUBDIR += isomaster SUBDIR += isomd5sum SUBDIR += istatserver SUBDIR += jadm SUBDIR += jail-primer SUBDIR += jailadmin SUBDIR += jailctl SUBDIR += jaildaemon SUBDIR += jailme SUBDIR += jailrc SUBDIR += jailutils SUBDIR += javaservicewrapper SUBDIR += jdiskreport SUBDIR += jdupes SUBDIR += jkill SUBDIR += jobd SUBDIR += jps SUBDIR += jtop SUBDIR += jtopen SUBDIR += jvmtop SUBDIR += jx SUBDIR += k3b SUBDIR += k3b-kde4 SUBDIR += k8temp SUBDIR += kcm-polkit-kde SUBDIR += kcron SUBDIR += kcron-kde4 SUBDIR += kdeadmin-kde4 SUBDIR += kdebugsettings SUBDIR += kdf SUBDIR += kdf-kde4 SUBDIR += kdialog SUBDIR += kdirstat SUBDIR += keyboard-daemon SUBDIR += kf5-baloo SUBDIR += kf5-kwallet SUBDIR += kfilemetadata-kde4 SUBDIR += kfloppy SUBDIR += kfloppy-kde4 SUBDIR += khelpcenter SUBDIR += kiconvtool SUBDIR += kldfind SUBDIR += kldpatch SUBDIR += knutclient-kde4 SUBDIR += krename SUBDIR += kshutdown-kde4 SUBDIR += ksysguardd-kde4 SUBDIR += ksystemlog SUBDIR += ksystemlog-kde4 SUBDIR += kuser-kde4 SUBDIR += lava SUBDIR += lbl-cf SUBDIR += lbl-hf SUBDIR += lcdproc SUBDIR += ldap-account-manager SUBDIR += ldapvi SUBDIR += ledit SUBDIR += less SUBDIR += lfm SUBDIR += libcdio SUBDIR += libcdio-paranoia SUBDIR += libchk SUBDIR += libcpuid SUBDIR += libfvde SUBDIR += libgksu SUBDIR += libieee1284 SUBDIR += libretto-config SUBDIR += libsunacl SUBDIR += liburcu SUBDIR += libutempter SUBDIR += life-preserver SUBDIR += lineak-defaultplugin SUBDIR += lineak-xosdplugin SUBDIR += lineakd SUBDIR += linrename SUBDIR += linux-c6-lttng-ust SUBDIR += linux-c6-userspace-rcu SUBDIR += linux-c7-lttng-ust SUBDIR += linux-c7-userspace-rcu SUBDIR += linux-crashplan SUBDIR += linuxfdisk SUBDIR += livecd SUBDIR += lmmon SUBDIR += lmon SUBDIR += lnav SUBDIR += lockfile-progs SUBDIR += log-courier SUBDIR += log_analysis SUBDIR += logrotate SUBDIR += logstalgia SUBDIR += logstash SUBDIR += logstash-forwarder SUBDIR += logstash5 SUBDIR += logstash6 SUBDIR += logtool SUBDIR += logwatch SUBDIR += lookat SUBDIR += lr SUBDIR += lscpu SUBDIR += lsof SUBDIR += lsop SUBDIR += ltrace SUBDIR += lttng-tools SUBDIR += lttng-ust SUBDIR += luckybackup SUBDIR += lxinput SUBDIR += lxsplit SUBDIR += lxtask SUBDIR += lxterminal SUBDIR += mac_nonet SUBDIR += mac_rtprio SUBDIR += magicrescue SUBDIR += manck SUBDIR += mapchan SUBDIR += massadmin SUBDIR += mate-control-center SUBDIR += mate-polkit SUBDIR += mate-power-manager SUBDIR += mate-settings-daemon SUBDIR += mate-system-monitor SUBDIR += mbgtools SUBDIR += mcelog SUBDIR += mcollective SUBDIR += mcollective-actionpolicy-auth SUBDIR += mcollective-nettest-agent SUBDIR += mcollective-nettest-client SUBDIR += mcollective-nettest-common SUBDIR += mcollective-nrpe-agent SUBDIR += mcollective-nrpe-client SUBDIR += mcollective-nrpe-common SUBDIR += mcollective-puppet-agent SUBDIR += mcollective-puppet-client SUBDIR += mcollective-puppet-common SUBDIR += mcollective-service-agent SUBDIR += mcollective-service-client SUBDIR += mcollective-service-common SUBDIR += mcollective-shell-agent SUBDIR += mcollective-shell-client SUBDIR += mcron SUBDIR += mcweject SUBDIR += mdcp SUBDIR += mdf2iso SUBDIR += megacli SUBDIR += megarc SUBDIR += memdump SUBDIR += memfetch SUBDIR += memtest86 SUBDIR += memtest86+ SUBDIR += memtester SUBDIR += metalog SUBDIR += mfid SUBDIR += mgeupsd SUBDIR += minimunin SUBDIR += minirsyslogd SUBDIR += mixer SUBDIR += mkdesktop SUBDIR += mkfile SUBDIR += mkfwimage SUBDIR += mkntpwd SUBDIR += mksunbootcd SUBDIR += mmc-utils SUBDIR += mnrpes SUBDIR += modman SUBDIR += modules SUBDIR += mog SUBDIR += monit SUBDIR += monitord SUBDIR += monitorix SUBDIR += mono-kmod SUBDIR += moosefs2-cgi SUBDIR += moosefs2-cgiserv SUBDIR += moosefs2-chunkserver SUBDIR += moosefs2-cli SUBDIR += moosefs2-client SUBDIR += moosefs2-master SUBDIR += moosefs2-metalogger SUBDIR += moosefs2-netdump SUBDIR += moosefs3-cgi SUBDIR += moosefs3-cgiserv SUBDIR += moosefs3-chunkserver SUBDIR += moosefs3-cli SUBDIR += moosefs3-client SUBDIR += moosefs3-master SUBDIR += moosefs3-metalogger SUBDIR += moosefs3-netdump SUBDIR += moreutils SUBDIR += most SUBDIR += mount.app SUBDIR += mountsmb2 SUBDIR += mpiexec SUBDIR += mptd SUBDIR += msiklm SUBDIR += msktutil SUBDIR += msyslog SUBDIR += mtpfs SUBDIR += mtxorbd SUBDIR += multitail SUBDIR += munin-common SUBDIR += munin-contrib SUBDIR += munin-master SUBDIR += munin-node SUBDIR += muse SUBDIR += mybashburn SUBDIR += myrescue SUBDIR += n98-magerun SUBDIR += nagios-statd SUBDIR += namefix SUBDIR += nbosd SUBDIR += ncdu SUBDIR += ndmpd SUBDIR += neofetch SUBDIR += nepomuk-core-kde4 SUBDIR += nepomuk-widgets-kde4 SUBDIR += nfcutils SUBDIR += nfsping SUBDIR += nitrogen SUBDIR += no-login SUBDIR += node_exporter SUBDIR += nomad SUBDIR += npadmin SUBDIR += nq SUBDIR += nrg2iso SUBDIR += nut SUBDIR += nvclock SUBDIR += nvramtool SUBDIR += oak SUBDIR += obliterate SUBDIR += odo SUBDIR += ods2 SUBDIR += ohmu SUBDIR += open SUBDIR += openhpi SUBDIR += openipmi SUBDIR += openupsd SUBDIR += ori SUBDIR += osinfo-db-tools SUBDIR += osquery SUBDIR += p5-BSD-Jail-Object SUBDIR += p5-BSD-Process SUBDIR += p5-BSD-Sysctl SUBDIR += p5-BackupPC-XS SUBDIR += p5-Brackup SUBDIR += p5-Dir-Purge SUBDIR += p5-File-DirCompare SUBDIR += p5-File-Listing SUBDIR += p5-File-Log SUBDIR += p5-File-Next SUBDIR += p5-File-Signature SUBDIR += p5-File-Stat-Bits SUBDIR += p5-File-Stat-ModeString SUBDIR += p5-File-Tee SUBDIR += p5-File-Which SUBDIR += p5-Filesys-Df SUBDIR += p5-Filesys-DfPortable SUBDIR += p5-Filesys-DiskFree SUBDIR += p5-Filesys-DiskSpace SUBDIR += p5-Filesys-DiskUsage SUBDIR += p5-Filesys-Statvfs SUBDIR += p5-Fuse SUBDIR += p5-Fuse-Simple SUBDIR += p5-Giovanni SUBDIR += p5-Iterator-File SUBDIR += p5-Lchown SUBDIR += p5-Linux-Cpuinfo SUBDIR += p5-Log-Syslog-Constants SUBDIR += p5-Log-Syslog-Fast SUBDIR += p5-MogileFS-Client SUBDIR += p5-MogileFS-Network SUBDIR += p5-MogileFS-Server SUBDIR += p5-MogileFS-Utils SUBDIR += p5-Monitor-Simple SUBDIR += p5-Plugtools SUBDIR += p5-Plugtools-Plugins-HomeOU SUBDIR += p5-Probe-Perl SUBDIR += p5-Proc-PidUtil SUBDIR += p5-Proclet SUBDIR += p5-Quota SUBDIR += p5-Rex SUBDIR += p5-Samba-SIDhelper SUBDIR += p5-Schedule-At SUBDIR += p5-Schedule-Cron SUBDIR += p5-Schedule-Cron-Events SUBDIR += p5-Schedule-Load SUBDIR += p5-Schedule-Match SUBDIR += p5-Shell-Command SUBDIR += p5-Stat-lsMode SUBDIR += p5-Sys-CpuLoad SUBDIR += p5-Sys-Filesystem SUBDIR += p5-Sys-Gamin SUBDIR += p5-Sys-Group-GIDhelper SUBDIR += p5-Sys-HostIP SUBDIR += p5-Sys-Hostname-FQDN SUBDIR += p5-Sys-Hostname-Long SUBDIR += p5-Sys-Load SUBDIR += p5-Sys-Syslog SUBDIR += p5-Sys-User-UIDhelper SUBDIR += p5-Sysadm-Install SUBDIR += p5-SyslogScan SUBDIR += p5-Tail-Stat SUBDIR += p5-Tie-Syslog SUBDIR += p5-Ubic SUBDIR += p5-Unix-ConfigFile SUBDIR += p5-Unix-Lsof SUBDIR += p5-Unix-Mknod SUBDIR += p5-Unix-Processors SUBDIR += p5-Unix-Syslog SUBDIR += p5-User SUBDIR += p5-ZConf-Cron SUBDIR += p5-arclog SUBDIR += p5-reslog SUBDIR += packer SUBDIR += pacman SUBDIR += paicc SUBDIR += paladin SUBDIR += pam_mount SUBDIR += panicmail SUBDIR += parafly SUBDIR += parallel SUBDIR += password-store SUBDIR += passwordsafe SUBDIR += patchelf SUBDIR += pax-utils SUBDIR += pbi-manager SUBDIR += pbimaker SUBDIR += pc-networkmanager SUBDIR += pcapfix SUBDIR += pcbsd-appweb SUBDIR += pcbsd-libsh SUBDIR += pcbsd-syscache SUBDIR += pcbsd-utils SUBDIR += pcbsd-utils-qt5 SUBDIR += pciutils SUBDIR += pcpustat SUBDIR += pdixtract SUBDIR += pdumpfs SUBDIR += pear-Cache SUBDIR += pear-Cache_Lite SUBDIR += pear-File SUBDIR += pear-File_Find SUBDIR += pear-File_Fstab SUBDIR += pear-File_Gettext SUBDIR += pear-Horde_Log SUBDIR += pear-Horde_Vfs SUBDIR += pear-I18Nv2 SUBDIR += pear-Log SUBDIR += pear-Translation2 SUBDIR += pecl-mogilefs SUBDIR += pecl-proctitle SUBDIR += pefs-kmod SUBDIR += personality SUBDIR += pesign SUBDIR += pflogx SUBDIR += pfstat SUBDIR += pftables SUBDIR += pftop SUBDIR += phantom SUBDIR += php56-fileinfo SUBDIR += php56-posix SUBDIR += php70-fileinfo SUBDIR += php70-posix SUBDIR += php71-fileinfo SUBDIR += php71-posix SUBDIR += php72-fileinfo SUBDIR += php72-posix SUBDIR += phpfpm_exporter SUBDIR += phybs SUBDIR += pick SUBDIR += pidof SUBDIR += pipemeter + SUBDIR += plasma5-discover + SUBDIR += plasma5-drkonqi + SUBDIR += plasma5-kde-cli-tools + SUBDIR += plasma5-kinfocenter + SUBDIR += plasma5-kmenuedit + SUBDIR += plasma5-ksysguard + SUBDIR += plasma5-libksysguard + SUBDIR += plasma5-polkit-kde-agent-1 + SUBDIR += plasma5-powerdevil + SUBDIR += plasma5-systemsettings + SUBDIR += plasma5-user-manager SUBDIR += plconfig SUBDIR += pmt SUBDIR += policykit SUBDIR += policykit-gnome SUBDIR += policykit-qt SUBDIR += polkit SUBDIR += polkit-gnome SUBDIR += polkit-kde SUBDIR += polkit-qt SUBDIR += pot SUBDIR += powerdxx SUBDIR += powerman SUBDIR += powermon SUBDIR += pp SUBDIR += pprotectd SUBDIR += prelink SUBDIR += prips SUBDIR += procenv SUBDIR += procmap SUBDIR += progsreiserfs SUBDIR += pslist SUBDIR += psmisc SUBDIR += pstack SUBDIR += pstacku SUBDIR += pstree SUBDIR += ptools SUBDIR += puppet-lint SUBDIR += puppet-mode.el SUBDIR += puppet4 SUBDIR += puppet5 SUBDIR += puppetserver SUBDIR += puppetserver5 SUBDIR += pv SUBDIR += pwd_unmkdb SUBDIR += pwgen SUBDIR += pwsafe SUBDIR += pxattr SUBDIR += py-XenAPI SUBDIR += py-analyzemft SUBDIR += py-bcfg2 SUBDIR += py-cdmi SUBDIR += py-consul SUBDIR += py-croniter SUBDIR += py-crontab SUBDIR += py-diffoscope SUBDIR += py-dirsync SUBDIR += py-distro SUBDIR += py-dlipower SUBDIR += py-docker SUBDIR += py-drmaa SUBDIR += py-execnet SUBDIR += py-ezjailremote SUBDIR += py-filelike SUBDIR += py-filelock SUBDIR += py-freenas.cli SUBDIR += py-glances SUBDIR += py-gmailfs-fuse SUBDIR += py-google-compute-engine SUBDIR += py-halite SUBDIR += py-hared SUBDIR += py-honcho SUBDIR += py-hpilo SUBDIR += py-iowait SUBDIR += py-mqttwarn SUBDIR += py-nagiosplugin SUBDIR += py-nomad SUBDIR += py-pkginfo SUBDIR += py-ploy SUBDIR += py-ploy_ansible SUBDIR += py-ploy_ec2 SUBDIR += py-ploy_ezjail SUBDIR += py-ploy_fabric SUBDIR += py-plumbum SUBDIR += py-power SUBDIR += py-psutil SUBDIR += py-psutil121 SUBDIR += py-ptyprocess SUBDIR += py-pytsk SUBDIR += py-pywatchman SUBDIR += py-queuelib SUBDIR += py-ranger SUBDIR += py-salt SUBDIR += py-scandir SUBDIR += py-scriptine SUBDIR += py-shutilwhich SUBDIR += py-stdiff SUBDIR += py-superlance SUBDIR += py-supervisor SUBDIR += py-tmuxp SUBDIR += py-uptime SUBDIR += py-zdaemon SUBDIR += pydf SUBDIR += qchroot SUBDIR += qdirstat SUBDIR += qjail SUBDIR += qjail4 SUBDIR += qlogtools SUBDIR += qpxtool SUBDIR += qsudo SUBDIR += qsynergy SUBDIR += qt5-qtdiag SUBDIR += qt5-qtpaths SUBDIR += qt5-qtplugininfo SUBDIR += qtpass SUBDIR += quicksynergy SUBDIR += qzeitgeist SUBDIR += racktables SUBDIR += radeontool SUBDIR += radeontop SUBDIR += radmind SUBDIR += rainbarf SUBDIR += raincoat SUBDIR += rcadm SUBDIR += rclean SUBDIR += rcm SUBDIR += rdate SUBDIR += rdiff-backup SUBDIR += rdiff-backup-devel SUBDIR += rdup SUBDIR += read-edid SUBDIR += realsync SUBDIR += recoverdm SUBDIR += reed SUBDIR += rej SUBDIR += relaxconf SUBDIR += rename SUBDIR += renameutils SUBDIR += reoback SUBDIR += reptyr SUBDIR += respond SUBDIR += restic SUBDIR += retail SUBDIR += rex SUBDIR += rfstool SUBDIR += rhc SUBDIR += riak-cs SUBDIR += rinse SUBDIR += rmonitor SUBDIR += roottail SUBDIR += rovclock SUBDIR += rpi-firmware SUBDIR += rsnapshot SUBDIR += rsyncbackup SUBDIR += rsyncrypto SUBDIR += rsyslog8 SUBDIR += rtty SUBDIR += rubygem-backup SUBDIR += rubygem-bosh-gen SUBDIR += rubygem-bundler SUBDIR += rubygem-bundler_ext SUBDIR += rubygem-capistrano SUBDIR += rubygem-capistrano-ext SUBDIR += rubygem-capistrano-harrow SUBDIR += rubygem-chef SUBDIR += rubygem-chef-api SUBDIR += rubygem-chef-config SUBDIR += rubygem-chef-zero SUBDIR += rubygem-facter SUBDIR += rubygem-fluent-mixin-plaintextformatter SUBDIR += rubygem-fluent-plugin-config-expander SUBDIR += rubygem-fluent-plugin-file-alternative SUBDIR += rubygem-fluent-plugin-graylog SUBDIR += rubygem-fluent-plugin-tail-asis SUBDIR += rubygem-fluentd SUBDIR += rubygem-fluentd010 SUBDIR += rubygem-fssm SUBDIR += rubygem-god SUBDIR += rubygem-guard SUBDIR += rubygem-guard-compat SUBDIR += rubygem-guard-livereload SUBDIR += rubygem-guard-minitest SUBDIR += rubygem-guard-rspec SUBDIR += rubygem-hammer_cli SUBDIR += rubygem-hammer_cli_foreman SUBDIR += rubygem-hammer_cli_foreman_bootdisk SUBDIR += rubygem-hammer_cli_foreman_salt SUBDIR += rubygem-hammer_cli_foreman_ssh SUBDIR += rubygem-hiera SUBDIR += rubygem-hiera-eyaml SUBDIR += rubygem-hiera-file SUBDIR += rubygem-hieracles SUBDIR += rubygem-httplog SUBDIR += rubygem-itamae SUBDIR += rubygem-librarian-puppet SUBDIR += rubygem-log4r SUBDIR += rubygem-logify SUBDIR += rubygem-mogilefs-client SUBDIR += rubygem-mothra SUBDIR += rubygem-murder SUBDIR += rubygem-ohai SUBDIR += rubygem-parallel SUBDIR += rubygem-puppet_forge SUBDIR += rubygem-r10k SUBDIR += rubygem-rubyipmi SUBDIR += rubygem-serverspec SUBDIR += rubygem-shellany SUBDIR += rubygem-smart_proxy_chef SUBDIR += rubygem-smart_proxy_dynflow SUBDIR += rubygem-smart_proxy_remote_execution_ssh SUBDIR += rubygem-smart_proxy_salt SUBDIR += rubygem-specinfra SUBDIR += rubygem-sys-admin SUBDIR += rubygem-sys-cpu SUBDIR += rubygem-sys-filesystem SUBDIR += rubygem-sys-host SUBDIR += rubygem-sys-proctable SUBDIR += rubygem-sys-uname SUBDIR += rubygem-sys-uptime SUBDIR += rubygem-syslog-logger SUBDIR += rubygem-teamocil SUBDIR += rubygem-tmuxinator SUBDIR += rubygem-vagrant-bhyve SUBDIR += rubygem-vagrant-mutate SUBDIR += rubygem-vagrant-vbguest SUBDIR += rubygem-vmstat SUBDIR += rubygem-winrm SUBDIR += rubygem-winrm-elevated SUBDIR += rubygem-winrm-fs SUBDIR += rubygem-yell SUBDIR += rundeck SUBDIR += runit SUBDIR += runit-faster SUBDIR += runwhen SUBDIR += rw SUBDIR += s-tui SUBDIR += s6 SUBDIR += s6-rc SUBDIR += safe-rm SUBDIR += safecat SUBDIR += safecopy SUBDIR += samefile SUBDIR += samesame SUBDIR += sample SUBDIR += sas2ircu SUBDIR += sas3ircu SUBDIR += savelogs SUBDIR += sb16config SUBDIR += sbase SUBDIR += sbsigntool SUBDIR += scalpel SUBDIR += scan_ffs SUBDIR += scanbuttond SUBDIR += scct SUBDIR += schedutils SUBDIR += scprotect SUBDIR += screen SUBDIR += screenfetch SUBDIR += screenie SUBDIR += scterc SUBDIR += sd-agent SUBDIR += sdparm SUBDIR += searchmonkey SUBDIR += seatools SUBDIR += sec SUBDIR += serf SUBDIR += setcdboot SUBDIR += setquota SUBDIR += sformat SUBDIR += sg3_utils SUBDIR += shim SUBDIR += shlock SUBDIR += shmcat SUBDIR += showbeastie SUBDIR += siegfried SUBDIR += signon-kwallet-extension SUBDIR += signon-plugin-oauth2 SUBDIR += signon-qt5 SUBDIR += signon-ui SUBDIR += skill SUBDIR += slack SUBDIR += sleuthkit SUBDIR += sloth SUBDIR += slst SUBDIR += slurm-wlm SUBDIR += smart SUBDIR += smartmontools SUBDIR += smenu SUBDIR += smp_utils SUBDIR += snap SUBDIR += snmp_exporter SUBDIR += snooze SUBDIR += snowlog SUBDIR += socket SUBDIR += socklog SUBDIR += solaar SUBDIR += sortu SUBDIR += spindown SUBDIR += spinner SUBDIR += spiped SUBDIR += squashfs-tools SUBDIR += sshsudo SUBDIR += ssid SUBDIR += ssync SUBDIR += stalepid SUBDIR += stanchion SUBDIR += stmpclean SUBDIR += storcli SUBDIR += stow SUBDIR += stowES SUBDIR += stress SUBDIR += superiotool SUBDIR += swapd SUBDIR += swapexd SUBDIR += swapmon SUBDIR += sweeper-kde4 SUBDIR += symlinks SUBDIR += symon SUBDIR += synergy SUBDIR += sysadm SUBDIR += sysadm-client SUBDIR += sysgather SUBDIR += sysinfo SUBDIR += syslinux SUBDIR += syslog-ng SUBDIR += syslog-ng-incubator SUBDIR += syslog-ng310 SUBDIR += syslog-ng311 SUBDIR += syslog-ng312 SUBDIR += syslog-ng313 SUBDIR += syslog-ng314 SUBDIR += syslog-ng36 SUBDIR += syslog-ng37 SUBDIR += syslog-ng39 SUBDIR += syslogger SUBDIR += sysrc SUBDIR += system-tools-backends SUBDIR += sysvbanner SUBDIR += tai64nfrac SUBDIR += tarsnap SUBDIR += tarsnap-gui SUBDIR += tarsnap-periodic SUBDIR += tartarus SUBDIR += tbku SUBDIR += tclsyslog SUBDIR += tcplist SUBDIR += tdir SUBDIR += tenshi SUBDIR += tentakel SUBDIR += terraform SUBDIR += testdisk SUBDIR += thefish SUBDIR += timelimit SUBDIR += timemon SUBDIR += titlefix SUBDIR += tkdvd SUBDIR += tlsdate SUBDIR += tm SUBDIR += tmate SUBDIR += tmate-slave SUBDIR += tmpreaper SUBDIR += tmpwatch SUBDIR += tmux SUBDIR += tmux-mem-cpu-load SUBDIR += tmux23 SUBDIR += topless SUBDIR += torque SUBDIR += toshctl SUBDIR += tracker SUBDIR += tree SUBDIR += tren SUBDIR += trueos-libqt5 SUBDIR += ts SUBDIR += tss SUBDIR += tty-clock SUBDIR += ttyd SUBDIR += ttyload SUBDIR += tuptime SUBDIR += tw_cli SUBDIR += twmn SUBDIR += tzdialog SUBDIR += u-boot-a13-olinuxino SUBDIR += u-boot-a64-olinuxino SUBDIR += u-boot-bananapi SUBDIR += u-boot-bananapim2 SUBDIR += u-boot-beaglebone SUBDIR += u-boot-chip SUBDIR += u-boot-cubieboard SUBDIR += u-boot-cubieboard2 SUBDIR += u-boot-cubox-hummingboard SUBDIR += u-boot-duovero SUBDIR += u-boot-imx-serial-loader SUBDIR += u-boot-master SUBDIR += u-boot-nanopi-m1plus SUBDIR += u-boot-nanopi-neo SUBDIR += u-boot-nanopi-neo-air SUBDIR += u-boot-olimex-a20-som-evb SUBDIR += u-boot-olinuxino-lime SUBDIR += u-boot-orangepi-one SUBDIR += u-boot-orangepi-pc SUBDIR += u-boot-orangepi-pc2 SUBDIR += u-boot-orangepi-plus-2e SUBDIR += u-boot-orangepi-zero SUBDIR += u-boot-pandaboard SUBDIR += u-boot-pcduino3 SUBDIR += u-boot-pine64 SUBDIR += u-boot-rpi SUBDIR += u-boot-rpi2 SUBDIR += u-boot-rpi3 SUBDIR += u-boot-sinovoip-bpi-m3 SUBDIR += u-boot-sopine SUBDIR += u-boot-tools SUBDIR += u-boot-utilite SUBDIR += u-boot-wandboard SUBDIR += u-boot-zedboard SUBDIR += u-boot-zybo SUBDIR += ua SUBDIR += ucspi-ipc SUBDIR += ucspi-proxy SUBDIR += ucspi-ssl SUBDIR += ucspi-tcp SUBDIR += ucspi-unix SUBDIR += udfclient SUBDIR += uefi-edk2-bhyve SUBDIR += uefi-edk2-bhyve-csm SUBDIR += ufs_copy SUBDIR += uhidd SUBDIR += uif2iso SUBDIR += unetbootin SUBDIR += unieject SUBDIR += uniutils SUBDIR += unquote SUBDIR += unstow SUBDIR += upower SUBDIR += upsdaemon SUBDIR += uptimed SUBDIR += usb_modeswitch SUBDIR += usbhid-dump SUBDIR += usbhotkey SUBDIR += usbtop SUBDIR += usbutils SUBDIR += uschedule SUBDIR += userinfo SUBDIR += userlist SUBDIR += usermatic SUBDIR += usermin SUBDIR += userneu SUBDIR += userneu-devel SUBDIR += usrinfo SUBDIR += utcount SUBDIR += vagrant SUBDIR += vbetool SUBDIR += vchanger SUBDIR += vcp SUBDIR += videogen SUBDIR += vii SUBDIR += vils SUBDIR += vimpager SUBDIR += virtualmin SUBDIR += vm-bhyve SUBDIR += vmdktool SUBDIR += vmtouch SUBDIR += vobcopy SUBDIR += volman SUBDIR += vordog SUBDIR += vpnc-scripts SUBDIR += vstrip SUBDIR += vttest SUBDIR += vzvol SUBDIR += wait_on SUBDIR += warden SUBDIR += watchdog SUBDIR += watchfolder SUBDIR += watchman SUBDIR += watchmen SUBDIR += webjob SUBDIR += webmin SUBDIR += weedit SUBDIR += wemux SUBDIR += whatpix SUBDIR += whowatch SUBDIR += wiimms SUBDIR += wmapmload SUBDIR += wmbluecpu SUBDIR += wmbsdbatt SUBDIR += wmcpuload SUBDIR += wmcube SUBDIR += wmcube-gdk SUBDIR += wmdiskmon SUBDIR += wmfire SUBDIR += wmflame SUBDIR += wmmemfree SUBDIR += wmmemload SUBDIR += wmtop SUBDIR += wmupmon SUBDIR += worldtools SUBDIR += wtail SUBDIR += wuzzah SUBDIR += x86info SUBDIR += xbatt SUBDIR += xbattbar SUBDIR += xcdroast SUBDIR += xcpustate SUBDIR += xdu SUBDIR += xe SUBDIR += xe-guest-utilities SUBDIR += xen-guest-tools SUBDIR += xen-tools SUBDIR += xfburn SUBDIR += xfce4-battery-plugin SUBDIR += xfce4-bsdcpufreq-plugin SUBDIR += xfce4-cpugraph-plugin SUBDIR += xfce4-diskperf-plugin SUBDIR += xfce4-fsguard-plugin SUBDIR += xfce4-genmon-plugin SUBDIR += xfce4-mount-plugin SUBDIR += xfce4-netload-plugin SUBDIR += xfce4-power-manager SUBDIR += xfce4-settings SUBDIR += xfce4-systemload-plugin SUBDIR += xfce4-wavelan-plugin SUBDIR += xfsm SUBDIR += xfsprogs SUBDIR += xin SUBDIR += xjobs SUBDIR += xlogmaster SUBDIR += xmbmon SUBDIR += xorriso SUBDIR += xosview SUBDIR += xstow SUBDIR += xsysstats SUBDIR += xvidcap SUBDIR += yadm SUBDIR += yum SUBDIR += zap SUBDIR += zbackup SUBDIR += zeitgeist SUBDIR += zeroer SUBDIR += zetaback SUBDIR += zfs-periodic SUBDIR += zfs-replicate SUBDIR += zfs-snap-diff SUBDIR += zfs-snapshot-clean SUBDIR += zfs-snapshot-mgmt SUBDIR += zfs-stats SUBDIR += zfs-stats-lite SUBDIR += zfsnap SUBDIR += zfsnap2 SUBDIR += zfstools SUBDIR += zidrav SUBDIR += zisofs-tools SUBDIR += znapzend SUBDIR += zogftw SUBDIR += zrep SUBDIR += zrepl SUBDIR += zsd SUBDIR += zxfer .include Index: head/sysutils/plasma5-discover/Makefile =================================================================== --- head/sysutils/plasma5-discover/Makefile (nonexistent) +++ head/sysutils/plasma5-discover/Makefile (revision 468495) @@ -0,0 +1,24 @@ +# $FreeBSD$ + +PORTNAME= discover +DISTVERSION= ${KDE_PLASMA_VERSION} +CATEGORIES= sysutils kde kde-plasma + +MAINTAINER= kde@FreeBSD.org +COMMENT= Plasma5 package management tools + +# TODO: update packagekit-qt5 +#LIB_DEPENDS= libpackagekit-qt.so:ports-mgmt/packagekit-qt5 + +USES= cmake:outsource compiler:c++11-lib cpe desktop-file-utils \ + gettext kde:5 pkgconfig tar:xz +USE_KDE= archive attica auth codecs completion config configwidgets \ + coreaddons crash dbusaddons ecm i18n iconthemes itemmodels \ + itemviews jobwidgets kdeclarative kio kirigami2 newstuff \ + notifications package plasma-framework service solid \ + textwidgets wallet widgetsaddons xmlgui +USE_QT5= concurrent core dbus gui network qml quick svg testlib widgets xml \ + buildtools_build qmake_build + +.include + Property changes on: head/sysutils/plasma5-discover/Makefile ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/sysutils/plasma5-discover/distinfo =================================================================== --- head/sysutils/plasma5-discover/distinfo (nonexistent) +++ head/sysutils/plasma5-discover/distinfo (revision 468495) @@ -0,0 +1,3 @@ +TIMESTAMP = 1523811765 +SHA256 (KDE/plasma/5.12.4/discover-5.12.4.tar.xz) = 981be31dac5d18007d5d8eef0e7ec1b65fa498dc1ffc1620743ee8e8d46dcdbf +SIZE (KDE/plasma/5.12.4/discover-5.12.4.tar.xz) = 10214992 Property changes on: head/sysutils/plasma5-discover/distinfo ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/sysutils/plasma5-discover/pkg-descr =================================================================== --- head/sysutils/plasma5-discover/pkg-descr (nonexistent) +++ head/sysutils/plasma5-discover/pkg-descr (revision 468495) @@ -0,0 +1,3 @@ +A collection of package management tools for KDE. + +WWW: https://www.kde.org/plasma-desktop Property changes on: head/sysutils/plasma5-discover/pkg-descr ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/sysutils/plasma5-discover/pkg-plist =================================================================== --- head/sysutils/plasma5-discover/pkg-plist (nonexistent) +++ head/sysutils/plasma5-discover/pkg-plist (revision 468495) @@ -0,0 +1,211 @@ +bin/plasma-discover +etc/xdg/discover_ktexteditor_codesnippets_core.knsrc +lib/plasma-discover/libDiscoverCommon.so +lib/plasma-discover/libDiscoverNotifiers.so +%%QT_PLUGINDIR%%/discover/kns-backend.so +%%QT_QMLDIR%%/org/kde/discovernotifier/libDiscoverNotifierDeclarativePlugin.so +%%QT_QMLDIR%%/org/kde/discovernotifier/qmldir +share/applications/org.kde.discover.desktop +share/applications/org.kde.discover.urlhandler.desktop +share/icons/hicolor/128x128/apps/plasmadiscover.png +share/icons/hicolor/16x16/apps/plasmadiscover.png +share/icons/hicolor/22x22/apps/plasmadiscover.png +share/icons/hicolor/32x32/apps/plasmadiscover.png +share/icons/hicolor/48x48/apps/plasmadiscover.png +share/icons/hicolor/scalable/apps/plasmadiscover.svgz +share/knotifications5/discoverabstractnotifier.notifyrc +share/kservices5/plasma-applet-org.kde.discovernotifier.desktop +share/kxmlgui5/plasmadiscover/plasmadiscoverui.rc +share/locale/ar/LC_MESSAGES/libdiscover.mo +share/locale/ar/LC_MESSAGES/plasma-discover-notifier.mo +share/locale/ar/LC_MESSAGES/plasma-discover.mo +share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.discovernotifier.mo +share/locale/ast/LC_MESSAGES/libdiscover.mo +share/locale/ast/LC_MESSAGES/plasma-discover-notifier.mo +share/locale/ast/LC_MESSAGES/plasma-discover.mo +share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.discovernotifier.mo +share/locale/bg/LC_MESSAGES/libdiscover.mo +share/locale/bs/LC_MESSAGES/libdiscover.mo +share/locale/bs/LC_MESSAGES/plasma-discover.mo +share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.discovernotifier.mo +share/locale/ca/LC_MESSAGES/libdiscover.mo +share/locale/ca/LC_MESSAGES/plasma-discover-notifier.mo +share/locale/ca/LC_MESSAGES/plasma-discover.mo +share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.discovernotifier.mo +share/locale/ca@valencia/LC_MESSAGES/libdiscover.mo +share/locale/ca@valencia/LC_MESSAGES/plasma-discover-notifier.mo +share/locale/ca@valencia/LC_MESSAGES/plasma-discover.mo +share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.discovernotifier.mo +share/locale/cs/LC_MESSAGES/libdiscover.mo +share/locale/cs/LC_MESSAGES/plasma-discover-notifier.mo +share/locale/cs/LC_MESSAGES/plasma-discover.mo +share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.discovernotifier.mo +share/locale/da/LC_MESSAGES/libdiscover.mo +share/locale/da/LC_MESSAGES/plasma-discover-notifier.mo +share/locale/da/LC_MESSAGES/plasma-discover.mo +share/locale/da/LC_MESSAGES/plasma_applet_org.kde.discovernotifier.mo +share/locale/de/LC_MESSAGES/libdiscover.mo +share/locale/de/LC_MESSAGES/plasma-discover-notifier.mo +share/locale/de/LC_MESSAGES/plasma-discover.mo +share/locale/de/LC_MESSAGES/plasma_applet_org.kde.discovernotifier.mo +share/locale/el/LC_MESSAGES/libdiscover.mo +share/locale/el/LC_MESSAGES/plasma-discover-notifier.mo +share/locale/el/LC_MESSAGES/plasma-discover.mo +share/locale/el/LC_MESSAGES/plasma_applet_org.kde.discovernotifier.mo +share/locale/en_GB/LC_MESSAGES/libdiscover.mo +share/locale/en_GB/LC_MESSAGES/plasma-discover-notifier.mo +share/locale/en_GB/LC_MESSAGES/plasma-discover.mo +share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.discovernotifier.mo +share/locale/es/LC_MESSAGES/libdiscover.mo +share/locale/es/LC_MESSAGES/plasma-discover-notifier.mo +share/locale/es/LC_MESSAGES/plasma-discover.mo +share/locale/es/LC_MESSAGES/plasma_applet_org.kde.discovernotifier.mo +share/locale/et/LC_MESSAGES/libdiscover.mo +share/locale/et/LC_MESSAGES/plasma-discover-notifier.mo +share/locale/et/LC_MESSAGES/plasma-discover.mo +share/locale/et/LC_MESSAGES/plasma_applet_org.kde.discovernotifier.mo +share/locale/eu/LC_MESSAGES/libdiscover.mo +share/locale/eu/LC_MESSAGES/plasma-discover-notifier.mo +share/locale/eu/LC_MESSAGES/plasma-discover.mo +share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.discovernotifier.mo +share/locale/fi/LC_MESSAGES/libdiscover.mo +share/locale/fi/LC_MESSAGES/plasma-discover-notifier.mo +share/locale/fi/LC_MESSAGES/plasma-discover.mo +share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.discovernotifier.mo +share/locale/fr/LC_MESSAGES/libdiscover.mo +share/locale/fr/LC_MESSAGES/plasma-discover-notifier.mo +share/locale/fr/LC_MESSAGES/plasma-discover.mo +share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.discovernotifier.mo +share/locale/ga/LC_MESSAGES/libdiscover.mo +share/locale/ga/LC_MESSAGES/plasma-discover.mo +share/locale/gl/LC_MESSAGES/libdiscover.mo +share/locale/gl/LC_MESSAGES/plasma-discover-notifier.mo +share/locale/gl/LC_MESSAGES/plasma-discover.mo +share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.discovernotifier.mo +share/locale/he/LC_MESSAGES/libdiscover.mo +share/locale/he/LC_MESSAGES/plasma-discover-notifier.mo +share/locale/he/LC_MESSAGES/plasma-discover.mo +share/locale/he/LC_MESSAGES/plasma_applet_org.kde.discovernotifier.mo +share/locale/hu/LC_MESSAGES/libdiscover.mo +share/locale/hu/LC_MESSAGES/plasma-discover-notifier.mo +share/locale/hu/LC_MESSAGES/plasma-discover.mo +share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.discovernotifier.mo +share/locale/ia/LC_MESSAGES/libdiscover.mo +share/locale/ia/LC_MESSAGES/plasma-discover-notifier.mo +share/locale/ia/LC_MESSAGES/plasma-discover.mo +share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.discovernotifier.mo +share/locale/id/LC_MESSAGES/libdiscover.mo +share/locale/id/LC_MESSAGES/plasma-discover-notifier.mo +share/locale/id/LC_MESSAGES/plasma-discover.mo +share/locale/id/LC_MESSAGES/plasma_applet_org.kde.discovernotifier.mo +share/locale/it/LC_MESSAGES/libdiscover.mo +share/locale/it/LC_MESSAGES/plasma-discover-notifier.mo +share/locale/it/LC_MESSAGES/plasma-discover.mo +share/locale/it/LC_MESSAGES/plasma_applet_org.kde.discovernotifier.mo +share/locale/ja/LC_MESSAGES/libdiscover.mo +share/locale/ja/LC_MESSAGES/plasma-discover-notifier.mo +share/locale/ja/LC_MESSAGES/plasma-discover.mo +share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.discovernotifier.mo +share/locale/kk/LC_MESSAGES/libdiscover.mo +share/locale/kk/LC_MESSAGES/plasma-discover.mo +share/locale/ko/LC_MESSAGES/libdiscover.mo +share/locale/ko/LC_MESSAGES/plasma-discover-notifier.mo +share/locale/ko/LC_MESSAGES/plasma-discover.mo +share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.discovernotifier.mo +share/locale/lt/LC_MESSAGES/libdiscover.mo +share/locale/lt/LC_MESSAGES/plasma-discover-notifier.mo +share/locale/lt/LC_MESSAGES/plasma-discover.mo +share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.discovernotifier.mo +share/locale/mr/LC_MESSAGES/libdiscover.mo +share/locale/mr/LC_MESSAGES/plasma-discover.mo +share/locale/nb/LC_MESSAGES/libdiscover.mo +share/locale/nb/LC_MESSAGES/plasma-discover-notifier.mo +share/locale/nb/LC_MESSAGES/plasma-discover.mo +share/locale/nds/LC_MESSAGES/libdiscover.mo +share/locale/nds/LC_MESSAGES/plasma-discover.mo +share/locale/nl/LC_MESSAGES/libdiscover.mo +share/locale/nl/LC_MESSAGES/plasma-discover-notifier.mo +share/locale/nl/LC_MESSAGES/plasma-discover.mo +share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.discovernotifier.mo +share/locale/nn/LC_MESSAGES/libdiscover.mo +share/locale/nn/LC_MESSAGES/plasma-discover-notifier.mo +share/locale/nn/LC_MESSAGES/plasma-discover.mo +share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.discovernotifier.mo +share/locale/pa/LC_MESSAGES/libdiscover.mo +share/locale/pa/LC_MESSAGES/plasma-discover-notifier.mo +share/locale/pa/LC_MESSAGES/plasma-discover.mo +share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.discovernotifier.mo +share/locale/pl/LC_MESSAGES/libdiscover.mo +share/locale/pl/LC_MESSAGES/plasma-discover-notifier.mo +share/locale/pl/LC_MESSAGES/plasma-discover.mo +share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.discovernotifier.mo +share/locale/pt/LC_MESSAGES/libdiscover.mo +share/locale/pt/LC_MESSAGES/plasma-discover-notifier.mo +share/locale/pt/LC_MESSAGES/plasma-discover.mo +share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.discovernotifier.mo +share/locale/pt_BR/LC_MESSAGES/libdiscover.mo +share/locale/pt_BR/LC_MESSAGES/plasma-discover-notifier.mo +share/locale/pt_BR/LC_MESSAGES/plasma-discover.mo +share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.discovernotifier.mo +share/locale/ro/LC_MESSAGES/libdiscover.mo +share/locale/ro/LC_MESSAGES/plasma-discover-notifier.mo +share/locale/ro/LC_MESSAGES/plasma-discover.mo +share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.discovernotifier.mo +share/locale/ru/LC_MESSAGES/libdiscover.mo +share/locale/ru/LC_MESSAGES/plasma-discover-notifier.mo +share/locale/ru/LC_MESSAGES/plasma-discover.mo +share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.discovernotifier.mo +share/locale/sk/LC_MESSAGES/libdiscover.mo +share/locale/sk/LC_MESSAGES/plasma-discover-notifier.mo +share/locale/sk/LC_MESSAGES/plasma-discover.mo +share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.discovernotifier.mo +share/locale/sl/LC_MESSAGES/libdiscover.mo +share/locale/sl/LC_MESSAGES/plasma-discover-notifier.mo +share/locale/sl/LC_MESSAGES/plasma-discover.mo +share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.discovernotifier.mo +share/locale/sr/LC_MESSAGES/libdiscover.mo +share/locale/sr/LC_MESSAGES/plasma-discover-notifier.mo +share/locale/sr/LC_MESSAGES/plasma-discover.mo +share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.discovernotifier.mo +share/locale/sr@ijekavian/LC_MESSAGES/libdiscover.mo +share/locale/sr@ijekavian/LC_MESSAGES/plasma-discover-notifier.mo +share/locale/sr@ijekavian/LC_MESSAGES/plasma-discover.mo +share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.discovernotifier.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/libdiscover.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma-discover-notifier.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma-discover.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.discovernotifier.mo +share/locale/sr@latin/LC_MESSAGES/libdiscover.mo +share/locale/sr@latin/LC_MESSAGES/plasma-discover-notifier.mo +share/locale/sr@latin/LC_MESSAGES/plasma-discover.mo +share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.discovernotifier.mo +share/locale/sv/LC_MESSAGES/libdiscover.mo +share/locale/sv/LC_MESSAGES/plasma-discover-notifier.mo +share/locale/sv/LC_MESSAGES/plasma-discover.mo +share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.discovernotifier.mo +share/locale/tr/LC_MESSAGES/libdiscover.mo +share/locale/tr/LC_MESSAGES/plasma-discover-notifier.mo +share/locale/tr/LC_MESSAGES/plasma-discover.mo +share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.discovernotifier.mo +share/locale/ug/LC_MESSAGES/libdiscover.mo +share/locale/ug/LC_MESSAGES/plasma-discover.mo +share/locale/uk/LC_MESSAGES/libdiscover.mo +share/locale/uk/LC_MESSAGES/plasma-discover-notifier.mo +share/locale/uk/LC_MESSAGES/plasma-discover.mo +share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.discovernotifier.mo +share/locale/vi/LC_MESSAGES/libdiscover.mo +share/locale/vi/LC_MESSAGES/plasma-discover.mo +share/locale/zh_CN/LC_MESSAGES/libdiscover.mo +share/locale/zh_CN/LC_MESSAGES/plasma-discover-notifier.mo +share/locale/zh_CN/LC_MESSAGES/plasma-discover.mo +share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.discovernotifier.mo +share/locale/zh_TW/LC_MESSAGES/libdiscover.mo +share/locale/zh_TW/LC_MESSAGES/plasma-discover-notifier.mo +share/locale/zh_TW/LC_MESSAGES/plasma-discover.mo +share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.discovernotifier.mo +share/metainfo/org.kde.discover.appdata.xml +share/metainfo/org.kde.discovernotifier.appdata.xml +share/plasma/plasmoids/org.kde.discovernotifier/contents/ui/Full.qml +share/plasma/plasmoids/org.kde.discovernotifier/contents/ui/main.qml +share/plasma/plasmoids/org.kde.discovernotifier/metadata.desktop +share/plasma/plasmoids/org.kde.discovernotifier/metadata.json Property changes on: head/sysutils/plasma5-discover/pkg-plist ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/sysutils/plasma5-drkonqi/Makefile =================================================================== --- head/sysutils/plasma5-drkonqi/Makefile (nonexistent) +++ head/sysutils/plasma5-drkonqi/Makefile (revision 468495) @@ -0,0 +1,17 @@ +# $FreeBSD$ + +PORTNAME= drkonqi +DISTVERSION= ${KDE_PLASMA_VERSION} +CATEGORIES= sysutils kde kde-plasma + +MAINTAINER= kde@FreeBSD.org +COMMENT= Plasma5 crash handler + +USES= cmake:outsource kde:5 pkgconfig tar:xz +USE_KDE= auth codecs completion config configwidgets coreaddons \ + crash i18n idletime jobwidgets kio notifications \ + service wallet widgetsaddons xmlrpcclient +USE_QT5= concurrent core dbus gui network widgets x11extras xml \ + buildtools_build qmake_build + +.include Property changes on: head/sysutils/plasma5-drkonqi/Makefile ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/sysutils/plasma5-drkonqi/distinfo =================================================================== --- head/sysutils/plasma5-drkonqi/distinfo (nonexistent) +++ head/sysutils/plasma5-drkonqi/distinfo (revision 468495) @@ -0,0 +1,3 @@ +TIMESTAMP = 1523811765 +SHA256 (KDE/plasma/5.12.4/drkonqi-5.12.4.tar.xz) = 6679bbc795bc03dc44bb8bf17375958ec3020d3fdbcd181779d7f0844c835946 +SIZE (KDE/plasma/5.12.4/drkonqi-5.12.4.tar.xz) = 735824 Property changes on: head/sysutils/plasma5-drkonqi/distinfo ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/sysutils/plasma5-drkonqi/pkg-descr =================================================================== --- head/sysutils/plasma5-drkonqi/pkg-descr (nonexistent) +++ head/sysutils/plasma5-drkonqi/pkg-descr (revision 468495) @@ -0,0 +1,3 @@ +Plasma5 crash handler + +WWW: https://www.kde.org/plasma-desktop Property changes on: head/sysutils/plasma5-drkonqi/pkg-descr ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/sysutils/plasma5-drkonqi/pkg-plist =================================================================== --- head/sysutils/plasma5-drkonqi/pkg-plist (nonexistent) +++ head/sysutils/plasma5-drkonqi/pkg-plist (revision 468495) @@ -0,0 +1,97 @@ +lib/libexec/drkonqi +share/applications/org.kde.drkonqi.desktop +%%DATADIR%%/debuggers/external/gdbrc +%%DATADIR%%/debuggers/external/kdbgrc +%%DATADIR%%/debuggers/internal/dbxrc +%%DATADIR%%/debuggers/internal/gdbrc +%%DATADIR%%/debuggers/internal/kdbgwinrc +%%DATADIR%%/mappings +share/locale/af/LC_MESSAGES/drkonqi5.mo +share/locale/ar/LC_MESSAGES/drkonqi5.mo +share/locale/ast/LC_MESSAGES/drkonqi5.mo +share/locale/be/LC_MESSAGES/drkonqi5.mo +share/locale/bg/LC_MESSAGES/drkonqi5.mo +share/locale/bn/LC_MESSAGES/drkonqi5.mo +share/locale/bn_IN/LC_MESSAGES/drkonqi5.mo +share/locale/br/LC_MESSAGES/drkonqi5.mo +share/locale/bs/LC_MESSAGES/drkonqi5.mo +share/locale/ca/LC_MESSAGES/drkonqi5.mo +share/locale/ca@valencia/LC_MESSAGES/drkonqi5.mo +share/locale/cs/LC_MESSAGES/drkonqi5.mo +share/locale/csb/LC_MESSAGES/drkonqi5.mo +share/locale/cy/LC_MESSAGES/drkonqi5.mo +share/locale/da/LC_MESSAGES/drkonqi5.mo +share/locale/de/LC_MESSAGES/drkonqi5.mo +share/locale/el/LC_MESSAGES/drkonqi5.mo +share/locale/en_GB/LC_MESSAGES/drkonqi5.mo +share/locale/eo/LC_MESSAGES/drkonqi5.mo +share/locale/es/LC_MESSAGES/drkonqi5.mo +share/locale/et/LC_MESSAGES/drkonqi5.mo +share/locale/eu/LC_MESSAGES/drkonqi5.mo +share/locale/fa/LC_MESSAGES/drkonqi5.mo +share/locale/fi/LC_MESSAGES/drkonqi5.mo +share/locale/fr/LC_MESSAGES/drkonqi5.mo +share/locale/fy/LC_MESSAGES/drkonqi5.mo +share/locale/ga/LC_MESSAGES/drkonqi5.mo +share/locale/gl/LC_MESSAGES/drkonqi5.mo +share/locale/gu/LC_MESSAGES/drkonqi5.mo +share/locale/he/LC_MESSAGES/drkonqi5.mo +share/locale/hi/LC_MESSAGES/drkonqi5.mo +share/locale/hne/LC_MESSAGES/drkonqi5.mo +share/locale/hr/LC_MESSAGES/drkonqi5.mo +share/locale/hsb/LC_MESSAGES/drkonqi5.mo +share/locale/hu/LC_MESSAGES/drkonqi5.mo +share/locale/ia/LC_MESSAGES/drkonqi5.mo +share/locale/id/LC_MESSAGES/drkonqi5.mo +share/locale/is/LC_MESSAGES/drkonqi5.mo +share/locale/it/LC_MESSAGES/drkonqi5.mo +share/locale/ja/LC_MESSAGES/drkonqi5.mo +share/locale/kk/LC_MESSAGES/drkonqi5.mo +share/locale/km/LC_MESSAGES/drkonqi5.mo +share/locale/kn/LC_MESSAGES/drkonqi5.mo +share/locale/ko/LC_MESSAGES/drkonqi5.mo +share/locale/ku/LC_MESSAGES/drkonqi5.mo +share/locale/lt/LC_MESSAGES/drkonqi5.mo +share/locale/lv/LC_MESSAGES/drkonqi5.mo +share/locale/mai/LC_MESSAGES/drkonqi5.mo +share/locale/mk/LC_MESSAGES/drkonqi5.mo +share/locale/ml/LC_MESSAGES/drkonqi5.mo +share/locale/mr/LC_MESSAGES/drkonqi5.mo +share/locale/ms/LC_MESSAGES/drkonqi5.mo +share/locale/nb/LC_MESSAGES/drkonqi5.mo +share/locale/nds/LC_MESSAGES/drkonqi5.mo +share/locale/ne/LC_MESSAGES/drkonqi5.mo +share/locale/nl/LC_MESSAGES/drkonqi5.mo +share/locale/nn/LC_MESSAGES/drkonqi5.mo +share/locale/oc/LC_MESSAGES/drkonqi5.mo +share/locale/or/LC_MESSAGES/drkonqi5.mo +share/locale/pa/LC_MESSAGES/drkonqi5.mo +share/locale/pl/LC_MESSAGES/drkonqi5.mo +share/locale/pt/LC_MESSAGES/drkonqi5.mo +share/locale/pt_BR/LC_MESSAGES/drkonqi5.mo +share/locale/ro/LC_MESSAGES/drkonqi5.mo +share/locale/ru/LC_MESSAGES/drkonqi5.mo +share/locale/se/LC_MESSAGES/drkonqi5.mo +share/locale/si/LC_MESSAGES/drkonqi5.mo +share/locale/sk/LC_MESSAGES/drkonqi5.mo +share/locale/sl/LC_MESSAGES/drkonqi5.mo +share/locale/sq/LC_MESSAGES/drkonqi5.mo +share/locale/sr/LC_MESSAGES/drkonqi5.mo +share/locale/sr@ijekavian/LC_MESSAGES/drkonqi5.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/drkonqi5.mo +share/locale/sr@latin/LC_MESSAGES/drkonqi5.mo +share/locale/sv/LC_MESSAGES/drkonqi5.mo +share/locale/ta/LC_MESSAGES/drkonqi5.mo +share/locale/te/LC_MESSAGES/drkonqi5.mo +share/locale/tg/LC_MESSAGES/drkonqi5.mo +share/locale/th/LC_MESSAGES/drkonqi5.mo +share/locale/tr/LC_MESSAGES/drkonqi5.mo +share/locale/ug/LC_MESSAGES/drkonqi5.mo +share/locale/uk/LC_MESSAGES/drkonqi5.mo +share/locale/uz/LC_MESSAGES/drkonqi5.mo +share/locale/uz@cyrillic/LC_MESSAGES/drkonqi5.mo +share/locale/vi/LC_MESSAGES/drkonqi5.mo +share/locale/wa/LC_MESSAGES/drkonqi5.mo +share/locale/xh/LC_MESSAGES/drkonqi5.mo +share/locale/zh_CN/LC_MESSAGES/drkonqi5.mo +share/locale/zh_TW/LC_MESSAGES/drkonqi5.mo Property changes on: head/sysutils/plasma5-drkonqi/pkg-plist ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/sysutils/plasma5-kde-cli-tools/Makefile =================================================================== --- head/sysutils/plasma5-kde-cli-tools/Makefile (nonexistent) +++ head/sysutils/plasma5-kde-cli-tools/Makefile (revision 468495) @@ -0,0 +1,20 @@ +# $FreeBSD$ + +PORTNAME= kde-cli-tools +DISTVERSION= ${KDE_PLASMA_VERSION} +CATEGORIES= sysutils kde kde-plasma + +MAINTAINER= kde@FreeBSD.org +COMMENT= Plasma5 non-interactive system tools + +USES= cmake:outsource compiler:c++11-lib cpe gettext kde:5 tar:xz +USE_KDE= activities auth bookmarks codecs completion config configwidgets \ + coreaddons crash ecm emoticons guiaddons i18n iconthemes init \ + itemmodels itemviews jobwidgets kcmutils kdelibs4support kdesu \ + kio notifications parts pty service solid sonnet textwidgets \ + unitconversion widgetsaddons windowsystem xmlgui +USE_QT5= concurrent core dbus gui network printsupport svg testlib widgets x11extras xml \ + buildtools_build qmake_build +USE_XORG= x11 + +.include Property changes on: head/sysutils/plasma5-kde-cli-tools/Makefile ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/sysutils/plasma5-kde-cli-tools/distinfo =================================================================== --- head/sysutils/plasma5-kde-cli-tools/distinfo (nonexistent) +++ head/sysutils/plasma5-kde-cli-tools/distinfo (revision 468495) @@ -0,0 +1,3 @@ +TIMESTAMP = 1523811766 +SHA256 (KDE/plasma/5.12.4/kde-cli-tools-5.12.4.tar.xz) = 8b978ae3c5efd5072a635d3d075b0882904c0b547a768982df66a58873fad170 +SIZE (KDE/plasma/5.12.4/kde-cli-tools-5.12.4.tar.xz) = 570832 Property changes on: head/sysutils/plasma5-kde-cli-tools/distinfo ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/sysutils/plasma5-kde-cli-tools/pkg-descr =================================================================== --- head/sysutils/plasma5-kde-cli-tools/pkg-descr (nonexistent) +++ head/sysutils/plasma5-kde-cli-tools/pkg-descr (revision 468495) @@ -0,0 +1,3 @@ +Tools based on KDE Frameworks 5 to better interact with the system. + +WWW: https://www.kde.org/plasma-desktop Property changes on: head/sysutils/plasma5-kde-cli-tools/pkg-descr ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/sysutils/plasma5-kde-cli-tools/pkg-plist =================================================================== --- head/sysutils/plasma5-kde-cli-tools/pkg-plist (nonexistent) +++ head/sysutils/plasma5-kde-cli-tools/pkg-plist (revision 468495) @@ -0,0 +1,712 @@ +bin/kbroadcastnotification +bin/kcmshell5 +bin/kde-open5 +bin/kdecp5 +bin/kdemv5 +bin/keditfiletype5 +bin/kioclient5 +bin/kmimetypefinder5 +bin/kstart5 +bin/ksvgtopng5 +bin/ktraderclient5 +lib/libexec/kf5/kdeeject +lib/libexec/kf5/kdesu +lib/libkdeinit5_kcmshell5.so +%%QT_PLUGINDIR%%/kcm_filetypes.so +man/ca/man1/kdesu.1.gz +man/de/man1/kdesu.1.gz +man/es/man1/kdesu.1.gz +man/et/man1/kdesu.1.gz +man/it/man1/kdesu.1.gz +man/man1/kdesu.1.gz +man/nb/man1/kdesu.1.gz +man/nl/man1/kdesu.1.gz +man/pt/man1/kdesu.1.gz +man/pt_BR/man1/kdesu.1.gz +man/sr/man1/kdesu.1.gz +man/sr@latin/man1/kdesu.1.gz +man/uk/man1/kdesu.1.gz +share/doc/HTML/ca/kcontrol5/filetypes/index.cache.bz2 +share/doc/HTML/ca/kcontrol5/filetypes/index.docbook +share/doc/HTML/ca/kdesu/index.cache.bz2 +share/doc/HTML/ca/kdesu/index.docbook +share/doc/HTML/de/kcontrol5/filetypes/index.cache.bz2 +share/doc/HTML/de/kcontrol5/filetypes/index.docbook +share/doc/HTML/de/kdesu/index.cache.bz2 +share/doc/HTML/de/kdesu/index.docbook +share/doc/HTML/en/kcontrol5/filetypes/index.cache.bz2 +share/doc/HTML/en/kcontrol5/filetypes/index.docbook +share/doc/HTML/en/kdesu/index.cache.bz2 +share/doc/HTML/en/kdesu/index.docbook +share/doc/HTML/es/kcontrol5/filetypes/index.cache.bz2 +share/doc/HTML/es/kcontrol5/filetypes/index.docbook +share/doc/HTML/es/kdesu/index.cache.bz2 +share/doc/HTML/es/kdesu/index.docbook +share/doc/HTML/et/kdesu/index.cache.bz2 +share/doc/HTML/et/kdesu/index.docbook +share/doc/HTML/it/kcontrol5/filetypes/index.cache.bz2 +share/doc/HTML/it/kcontrol5/filetypes/index.docbook +share/doc/HTML/it/kdesu/index.cache.bz2 +share/doc/HTML/it/kdesu/index.docbook +share/doc/HTML/nl/kcontrol5/filetypes/index.cache.bz2 +share/doc/HTML/nl/kcontrol5/filetypes/index.docbook +share/doc/HTML/nl/kdesu/index.cache.bz2 +share/doc/HTML/nl/kdesu/index.docbook +share/doc/HTML/pt/kcontrol5/filetypes/index.cache.bz2 +share/doc/HTML/pt/kcontrol5/filetypes/index.docbook +share/doc/HTML/pt/kdesu/index.cache.bz2 +share/doc/HTML/pt/kdesu/index.docbook +share/doc/HTML/pt_BR/kcontrol5/filetypes/index.cache.bz2 +share/doc/HTML/pt_BR/kcontrol5/filetypes/index.docbook +share/doc/HTML/pt_BR/kdesu/index.cache.bz2 +share/doc/HTML/pt_BR/kdesu/index.docbook +share/doc/HTML/sr/kcontrol5/filetypes/index.cache.bz2 +share/doc/HTML/sr/kcontrol5/filetypes/index.docbook +share/doc/HTML/sr/kdesu/index.cache.bz2 +share/doc/HTML/sr/kdesu/index.docbook +share/doc/HTML/sr@latin/kcontrol5/filetypes/index.cache.bz2 +share/doc/HTML/sr@latin/kcontrol5/filetypes/index.docbook +share/doc/HTML/sr@latin/kdesu/index.cache.bz2 +share/doc/HTML/sr@latin/kdesu/index.docbook +share/doc/HTML/uk/kcontrol5/filetypes/index.cache.bz2 +share/doc/HTML/uk/kcontrol5/filetypes/index.docbook +share/doc/HTML/uk/kdesu/index.cache.bz2 +share/doc/HTML/uk/kdesu/index.docbook +share/kservices5/filetypes.desktop +share/locale/af/LC_MESSAGES/kcm5_filetypes.mo +share/locale/af/LC_MESSAGES/kcmshell5.mo +share/locale/af/LC_MESSAGES/kdesu5.mo +share/locale/af/LC_MESSAGES/kstart5.mo +share/locale/ar/LC_MESSAGES/kcm5_filetypes.mo +share/locale/ar/LC_MESSAGES/kcmshell5.mo +share/locale/ar/LC_MESSAGES/kdesu5.mo +share/locale/ar/LC_MESSAGES/kioclient5.mo +share/locale/ar/LC_MESSAGES/kmimetypefinder5.mo +share/locale/ar/LC_MESSAGES/kstart5.mo +share/locale/ar/LC_MESSAGES/ktraderclient5.mo +share/locale/ast/LC_MESSAGES/kbroadcastnotification.mo +share/locale/ast/LC_MESSAGES/kcm5_filetypes.mo +share/locale/ast/LC_MESSAGES/kcmshell5.mo +share/locale/ast/LC_MESSAGES/kdesu5.mo +share/locale/ast/LC_MESSAGES/kioclient5.mo +share/locale/ast/LC_MESSAGES/kmimetypefinder5.mo +share/locale/ast/LC_MESSAGES/kstart5.mo +share/locale/ast/LC_MESSAGES/ktraderclient5.mo +share/locale/be/LC_MESSAGES/kcm5_filetypes.mo +share/locale/be/LC_MESSAGES/kcmshell5.mo +share/locale/be/LC_MESSAGES/kdesu5.mo +share/locale/be/LC_MESSAGES/kioclient5.mo +share/locale/be/LC_MESSAGES/kmimetypefinder5.mo +share/locale/be/LC_MESSAGES/kstart5.mo +share/locale/be/LC_MESSAGES/ktraderclient5.mo +share/locale/be@latin/LC_MESSAGES/kcm5_filetypes.mo +share/locale/be@latin/LC_MESSAGES/kdesu5.mo +share/locale/be@latin/LC_MESSAGES/kmimetypefinder5.mo +share/locale/be@latin/LC_MESSAGES/kstart5.mo +share/locale/bg/LC_MESSAGES/kcm5_filetypes.mo +share/locale/bg/LC_MESSAGES/kcmshell5.mo +share/locale/bg/LC_MESSAGES/kdesu5.mo +share/locale/bg/LC_MESSAGES/kioclient5.mo +share/locale/bg/LC_MESSAGES/kmimetypefinder5.mo +share/locale/bg/LC_MESSAGES/kstart5.mo +share/locale/bg/LC_MESSAGES/ktraderclient5.mo +share/locale/bn/LC_MESSAGES/kcm5_filetypes.mo +share/locale/bn/LC_MESSAGES/kcmshell5.mo +share/locale/bn/LC_MESSAGES/kstart5.mo +share/locale/bn_IN/LC_MESSAGES/kcm5_filetypes.mo +share/locale/bn_IN/LC_MESSAGES/kcmshell5.mo +share/locale/bn_IN/LC_MESSAGES/kdesu5.mo +share/locale/bn_IN/LC_MESSAGES/kioclient5.mo +share/locale/bn_IN/LC_MESSAGES/kmimetypefinder5.mo +share/locale/bn_IN/LC_MESSAGES/kstart5.mo +share/locale/bn_IN/LC_MESSAGES/ktraderclient5.mo +share/locale/br/LC_MESSAGES/kcm5_filetypes.mo +share/locale/br/LC_MESSAGES/kcmshell5.mo +share/locale/br/LC_MESSAGES/kdesu5.mo +share/locale/br/LC_MESSAGES/kstart5.mo +share/locale/bs/LC_MESSAGES/kcm5_filetypes.mo +share/locale/bs/LC_MESSAGES/kcmshell5.mo +share/locale/bs/LC_MESSAGES/kdesu5.mo +share/locale/bs/LC_MESSAGES/kioclient5.mo +share/locale/bs/LC_MESSAGES/kmimetypefinder5.mo +share/locale/bs/LC_MESSAGES/kstart5.mo +share/locale/bs/LC_MESSAGES/ktraderclient5.mo +share/locale/ca/LC_MESSAGES/kbroadcastnotification.mo +share/locale/ca/LC_MESSAGES/kcm5_filetypes.mo +share/locale/ca/LC_MESSAGES/kcmshell5.mo +share/locale/ca/LC_MESSAGES/kdesu5.mo +share/locale/ca/LC_MESSAGES/kioclient5.mo +share/locale/ca/LC_MESSAGES/kmimetypefinder5.mo +share/locale/ca/LC_MESSAGES/kstart5.mo +share/locale/ca/LC_MESSAGES/ktraderclient5.mo +share/locale/ca@valencia/LC_MESSAGES/kbroadcastnotification.mo +share/locale/ca@valencia/LC_MESSAGES/kcm5_filetypes.mo +share/locale/ca@valencia/LC_MESSAGES/kcmshell5.mo +share/locale/ca@valencia/LC_MESSAGES/kdesu5.mo +share/locale/ca@valencia/LC_MESSAGES/kioclient5.mo +share/locale/ca@valencia/LC_MESSAGES/kmimetypefinder5.mo +share/locale/ca@valencia/LC_MESSAGES/kstart5.mo +share/locale/ca@valencia/LC_MESSAGES/ktraderclient5.mo +share/locale/cs/LC_MESSAGES/kbroadcastnotification.mo +share/locale/cs/LC_MESSAGES/kcm5_filetypes.mo +share/locale/cs/LC_MESSAGES/kcmshell5.mo +share/locale/cs/LC_MESSAGES/kdesu5.mo +share/locale/cs/LC_MESSAGES/kioclient5.mo +share/locale/cs/LC_MESSAGES/kmimetypefinder5.mo +share/locale/cs/LC_MESSAGES/kstart5.mo +share/locale/cs/LC_MESSAGES/ktraderclient5.mo +share/locale/csb/LC_MESSAGES/kcm5_filetypes.mo +share/locale/csb/LC_MESSAGES/kcmshell5.mo +share/locale/csb/LC_MESSAGES/kdesu5.mo +share/locale/csb/LC_MESSAGES/kioclient5.mo +share/locale/csb/LC_MESSAGES/kmimetypefinder5.mo +share/locale/csb/LC_MESSAGES/kstart5.mo +share/locale/csb/LC_MESSAGES/ktraderclient5.mo +share/locale/cy/LC_MESSAGES/kcm5_filetypes.mo +share/locale/cy/LC_MESSAGES/kcmshell5.mo +share/locale/cy/LC_MESSAGES/kdesu5.mo +share/locale/cy/LC_MESSAGES/kstart5.mo +share/locale/da/LC_MESSAGES/kbroadcastnotification.mo +share/locale/da/LC_MESSAGES/kcm5_filetypes.mo +share/locale/da/LC_MESSAGES/kcmshell5.mo +share/locale/da/LC_MESSAGES/kdesu5.mo +share/locale/da/LC_MESSAGES/kioclient5.mo +share/locale/da/LC_MESSAGES/kmimetypefinder5.mo +share/locale/da/LC_MESSAGES/kstart5.mo +share/locale/da/LC_MESSAGES/ktraderclient5.mo +share/locale/de/LC_MESSAGES/kbroadcastnotification.mo +share/locale/de/LC_MESSAGES/kcm5_filetypes.mo +share/locale/de/LC_MESSAGES/kcmshell5.mo +share/locale/de/LC_MESSAGES/kdesu5.mo +share/locale/de/LC_MESSAGES/kioclient5.mo +share/locale/de/LC_MESSAGES/kmimetypefinder5.mo +share/locale/de/LC_MESSAGES/kstart5.mo +share/locale/de/LC_MESSAGES/ktraderclient5.mo +share/locale/el/LC_MESSAGES/kcm5_filetypes.mo +share/locale/el/LC_MESSAGES/kcmshell5.mo +share/locale/el/LC_MESSAGES/kdesu5.mo +share/locale/el/LC_MESSAGES/kioclient5.mo +share/locale/el/LC_MESSAGES/kmimetypefinder5.mo +share/locale/el/LC_MESSAGES/kstart5.mo +share/locale/el/LC_MESSAGES/ktraderclient5.mo +share/locale/en_GB/LC_MESSAGES/kbroadcastnotification.mo +share/locale/en_GB/LC_MESSAGES/kcm5_filetypes.mo +share/locale/en_GB/LC_MESSAGES/kcmshell5.mo +share/locale/en_GB/LC_MESSAGES/kdesu5.mo +share/locale/en_GB/LC_MESSAGES/kioclient5.mo +share/locale/en_GB/LC_MESSAGES/kmimetypefinder5.mo +share/locale/en_GB/LC_MESSAGES/kstart5.mo +share/locale/en_GB/LC_MESSAGES/ktraderclient5.mo +share/locale/eo/LC_MESSAGES/kcm5_filetypes.mo +share/locale/eo/LC_MESSAGES/kcmshell5.mo +share/locale/eo/LC_MESSAGES/kdesu5.mo +share/locale/eo/LC_MESSAGES/kioclient5.mo +share/locale/eo/LC_MESSAGES/kmimetypefinder5.mo +share/locale/eo/LC_MESSAGES/kstart5.mo +share/locale/eo/LC_MESSAGES/ktraderclient5.mo +share/locale/es/LC_MESSAGES/kbroadcastnotification.mo +share/locale/es/LC_MESSAGES/kcm5_filetypes.mo +share/locale/es/LC_MESSAGES/kcmshell5.mo +share/locale/es/LC_MESSAGES/kdesu5.mo +share/locale/es/LC_MESSAGES/kioclient5.mo +share/locale/es/LC_MESSAGES/kmimetypefinder5.mo +share/locale/es/LC_MESSAGES/kstart5.mo +share/locale/es/LC_MESSAGES/ktraderclient5.mo +share/locale/et/LC_MESSAGES/kcm5_filetypes.mo +share/locale/et/LC_MESSAGES/kcmshell5.mo +share/locale/et/LC_MESSAGES/kdesu5.mo +share/locale/et/LC_MESSAGES/kioclient5.mo +share/locale/et/LC_MESSAGES/kmimetypefinder5.mo +share/locale/et/LC_MESSAGES/kstart5.mo +share/locale/et/LC_MESSAGES/ktraderclient5.mo +share/locale/eu/LC_MESSAGES/kbroadcastnotification.mo +share/locale/eu/LC_MESSAGES/kcm5_filetypes.mo +share/locale/eu/LC_MESSAGES/kcmshell5.mo +share/locale/eu/LC_MESSAGES/kdesu5.mo +share/locale/eu/LC_MESSAGES/kioclient5.mo +share/locale/eu/LC_MESSAGES/kmimetypefinder5.mo +share/locale/eu/LC_MESSAGES/kstart5.mo +share/locale/eu/LC_MESSAGES/ktraderclient5.mo +share/locale/fa/LC_MESSAGES/kcm5_filetypes.mo +share/locale/fa/LC_MESSAGES/kcmshell5.mo +share/locale/fa/LC_MESSAGES/kdesu5.mo +share/locale/fa/LC_MESSAGES/kioclient5.mo +share/locale/fa/LC_MESSAGES/kmimetypefinder5.mo +share/locale/fa/LC_MESSAGES/kstart5.mo +share/locale/fa/LC_MESSAGES/ktraderclient5.mo +share/locale/fi/LC_MESSAGES/kbroadcastnotification.mo +share/locale/fi/LC_MESSAGES/kcm5_filetypes.mo +share/locale/fi/LC_MESSAGES/kcmshell5.mo +share/locale/fi/LC_MESSAGES/kdesu5.mo +share/locale/fi/LC_MESSAGES/kioclient5.mo +share/locale/fi/LC_MESSAGES/kmimetypefinder5.mo +share/locale/fi/LC_MESSAGES/kstart5.mo +share/locale/fi/LC_MESSAGES/ktraderclient5.mo +share/locale/fr/LC_MESSAGES/kbroadcastnotification.mo +share/locale/fr/LC_MESSAGES/kcm5_filetypes.mo +share/locale/fr/LC_MESSAGES/kcmshell5.mo +share/locale/fr/LC_MESSAGES/kdesu5.mo +share/locale/fr/LC_MESSAGES/kioclient5.mo +share/locale/fr/LC_MESSAGES/kmimetypefinder5.mo +share/locale/fr/LC_MESSAGES/kstart5.mo +share/locale/fr/LC_MESSAGES/ktraderclient5.mo +share/locale/fy/LC_MESSAGES/kcm5_filetypes.mo +share/locale/fy/LC_MESSAGES/kcmshell5.mo +share/locale/fy/LC_MESSAGES/kdesu5.mo +share/locale/fy/LC_MESSAGES/kioclient5.mo +share/locale/fy/LC_MESSAGES/kmimetypefinder5.mo +share/locale/fy/LC_MESSAGES/kstart5.mo +share/locale/fy/LC_MESSAGES/ktraderclient5.mo +share/locale/ga/LC_MESSAGES/kcm5_filetypes.mo +share/locale/ga/LC_MESSAGES/kcmshell5.mo +share/locale/ga/LC_MESSAGES/kdesu5.mo +share/locale/ga/LC_MESSAGES/kioclient5.mo +share/locale/ga/LC_MESSAGES/kmimetypefinder5.mo +share/locale/ga/LC_MESSAGES/kstart5.mo +share/locale/ga/LC_MESSAGES/ktraderclient5.mo +share/locale/gl/LC_MESSAGES/kbroadcastnotification.mo +share/locale/gl/LC_MESSAGES/kcm5_filetypes.mo +share/locale/gl/LC_MESSAGES/kcmshell5.mo +share/locale/gl/LC_MESSAGES/kdesu5.mo +share/locale/gl/LC_MESSAGES/kioclient5.mo +share/locale/gl/LC_MESSAGES/kmimetypefinder5.mo +share/locale/gl/LC_MESSAGES/kstart5.mo +share/locale/gl/LC_MESSAGES/ktraderclient5.mo +share/locale/gu/LC_MESSAGES/kcm5_filetypes.mo +share/locale/gu/LC_MESSAGES/kcmshell5.mo +share/locale/gu/LC_MESSAGES/kdesu5.mo +share/locale/gu/LC_MESSAGES/kioclient5.mo +share/locale/gu/LC_MESSAGES/kmimetypefinder5.mo +share/locale/gu/LC_MESSAGES/kstart5.mo +share/locale/gu/LC_MESSAGES/ktraderclient5.mo +share/locale/he/LC_MESSAGES/kbroadcastnotification.mo +share/locale/he/LC_MESSAGES/kcm5_filetypes.mo +share/locale/he/LC_MESSAGES/kcmshell5.mo +share/locale/he/LC_MESSAGES/kdesu5.mo +share/locale/he/LC_MESSAGES/kioclient5.mo +share/locale/he/LC_MESSAGES/kmimetypefinder5.mo +share/locale/he/LC_MESSAGES/kstart5.mo +share/locale/he/LC_MESSAGES/ktraderclient5.mo +share/locale/hi/LC_MESSAGES/kcm5_filetypes.mo +share/locale/hi/LC_MESSAGES/kcmshell5.mo +share/locale/hi/LC_MESSAGES/kdesu5.mo +share/locale/hi/LC_MESSAGES/kioclient5.mo +share/locale/hi/LC_MESSAGES/kmimetypefinder5.mo +share/locale/hi/LC_MESSAGES/kstart5.mo +share/locale/hi/LC_MESSAGES/ktraderclient5.mo +share/locale/hne/LC_MESSAGES/kcm5_filetypes.mo +share/locale/hne/LC_MESSAGES/kcmshell5.mo +share/locale/hne/LC_MESSAGES/kdesu5.mo +share/locale/hne/LC_MESSAGES/kioclient5.mo +share/locale/hne/LC_MESSAGES/kmimetypefinder5.mo +share/locale/hne/LC_MESSAGES/kstart5.mo +share/locale/hne/LC_MESSAGES/ktraderclient5.mo +share/locale/hr/LC_MESSAGES/kcm5_filetypes.mo +share/locale/hr/LC_MESSAGES/kcmshell5.mo +share/locale/hr/LC_MESSAGES/kdesu5.mo +share/locale/hr/LC_MESSAGES/kioclient5.mo +share/locale/hr/LC_MESSAGES/kmimetypefinder5.mo +share/locale/hr/LC_MESSAGES/kstart5.mo +share/locale/hr/LC_MESSAGES/ktraderclient5.mo +share/locale/hsb/LC_MESSAGES/kcm5_filetypes.mo +share/locale/hsb/LC_MESSAGES/kcmshell5.mo +share/locale/hsb/LC_MESSAGES/kdesu5.mo +share/locale/hsb/LC_MESSAGES/kioclient5.mo +share/locale/hsb/LC_MESSAGES/kmimetypefinder5.mo +share/locale/hsb/LC_MESSAGES/kstart5.mo +share/locale/hsb/LC_MESSAGES/ktraderclient5.mo +share/locale/hu/LC_MESSAGES/kbroadcastnotification.mo +share/locale/hu/LC_MESSAGES/kcm5_filetypes.mo +share/locale/hu/LC_MESSAGES/kcmshell5.mo +share/locale/hu/LC_MESSAGES/kdesu5.mo +share/locale/hu/LC_MESSAGES/kioclient5.mo +share/locale/hu/LC_MESSAGES/kmimetypefinder5.mo +share/locale/hu/LC_MESSAGES/kstart5.mo +share/locale/hu/LC_MESSAGES/ktraderclient5.mo +share/locale/ia/LC_MESSAGES/kbroadcastnotification.mo +share/locale/ia/LC_MESSAGES/kcm5_filetypes.mo +share/locale/ia/LC_MESSAGES/kcmshell5.mo +share/locale/ia/LC_MESSAGES/kdesu5.mo +share/locale/ia/LC_MESSAGES/kioclient5.mo +share/locale/ia/LC_MESSAGES/kmimetypefinder5.mo +share/locale/ia/LC_MESSAGES/kstart5.mo +share/locale/ia/LC_MESSAGES/ktraderclient5.mo +share/locale/id/LC_MESSAGES/kcm5_filetypes.mo +share/locale/id/LC_MESSAGES/kcmshell5.mo +share/locale/id/LC_MESSAGES/kdesu5.mo +share/locale/id/LC_MESSAGES/kioclient5.mo +share/locale/id/LC_MESSAGES/kmimetypefinder5.mo +share/locale/id/LC_MESSAGES/kstart5.mo +share/locale/id/LC_MESSAGES/ktraderclient5.mo +share/locale/is/LC_MESSAGES/kcm5_filetypes.mo +share/locale/is/LC_MESSAGES/kcmshell5.mo +share/locale/is/LC_MESSAGES/kdesu5.mo +share/locale/is/LC_MESSAGES/kioclient5.mo +share/locale/is/LC_MESSAGES/kmimetypefinder5.mo +share/locale/is/LC_MESSAGES/kstart5.mo +share/locale/is/LC_MESSAGES/ktraderclient5.mo +share/locale/it/LC_MESSAGES/kbroadcastnotification.mo +share/locale/it/LC_MESSAGES/kcm5_filetypes.mo +share/locale/it/LC_MESSAGES/kcmshell5.mo +share/locale/it/LC_MESSAGES/kdesu5.mo +share/locale/it/LC_MESSAGES/kioclient5.mo +share/locale/it/LC_MESSAGES/kmimetypefinder5.mo +share/locale/it/LC_MESSAGES/kstart5.mo +share/locale/it/LC_MESSAGES/ktraderclient5.mo +share/locale/ja/LC_MESSAGES/kbroadcastnotification.mo +share/locale/ja/LC_MESSAGES/kcm5_filetypes.mo +share/locale/ja/LC_MESSAGES/kcmshell5.mo +share/locale/ja/LC_MESSAGES/kdesu5.mo +share/locale/ja/LC_MESSAGES/kioclient5.mo +share/locale/ja/LC_MESSAGES/kmimetypefinder5.mo +share/locale/ja/LC_MESSAGES/kstart5.mo +share/locale/ja/LC_MESSAGES/ktraderclient5.mo +share/locale/kk/LC_MESSAGES/kcm5_filetypes.mo +share/locale/kk/LC_MESSAGES/kcmshell5.mo +share/locale/kk/LC_MESSAGES/kdesu5.mo +share/locale/kk/LC_MESSAGES/kioclient5.mo +share/locale/kk/LC_MESSAGES/kmimetypefinder5.mo +share/locale/kk/LC_MESSAGES/kstart5.mo +share/locale/kk/LC_MESSAGES/ktraderclient5.mo +share/locale/km/LC_MESSAGES/kcm5_filetypes.mo +share/locale/km/LC_MESSAGES/kcmshell5.mo +share/locale/km/LC_MESSAGES/kdesu5.mo +share/locale/km/LC_MESSAGES/kioclient5.mo +share/locale/km/LC_MESSAGES/kmimetypefinder5.mo +share/locale/km/LC_MESSAGES/kstart5.mo +share/locale/km/LC_MESSAGES/ktraderclient5.mo +share/locale/kn/LC_MESSAGES/kcm5_filetypes.mo +share/locale/kn/LC_MESSAGES/kcmshell5.mo +share/locale/kn/LC_MESSAGES/kdesu5.mo +share/locale/kn/LC_MESSAGES/kioclient5.mo +share/locale/kn/LC_MESSAGES/kmimetypefinder5.mo +share/locale/kn/LC_MESSAGES/kstart5.mo +share/locale/kn/LC_MESSAGES/ktraderclient5.mo +share/locale/ko/LC_MESSAGES/kbroadcastnotification.mo +share/locale/ko/LC_MESSAGES/kcm5_filetypes.mo +share/locale/ko/LC_MESSAGES/kcmshell5.mo +share/locale/ko/LC_MESSAGES/kdesu5.mo +share/locale/ko/LC_MESSAGES/kioclient5.mo +share/locale/ko/LC_MESSAGES/kmimetypefinder5.mo +share/locale/ko/LC_MESSAGES/kstart5.mo +share/locale/ko/LC_MESSAGES/ktraderclient5.mo +share/locale/ku/LC_MESSAGES/kcm5_filetypes.mo +share/locale/ku/LC_MESSAGES/kcmshell5.mo +share/locale/ku/LC_MESSAGES/kdesu5.mo +share/locale/ku/LC_MESSAGES/kioclient5.mo +share/locale/ku/LC_MESSAGES/kmimetypefinder5.mo +share/locale/ku/LC_MESSAGES/kstart5.mo +share/locale/ku/LC_MESSAGES/ktraderclient5.mo +share/locale/lb/LC_MESSAGES/kcmshell5.mo +share/locale/lt/LC_MESSAGES/kcm5_filetypes.mo +share/locale/lt/LC_MESSAGES/kcmshell5.mo +share/locale/lt/LC_MESSAGES/kdesu5.mo +share/locale/lt/LC_MESSAGES/kioclient5.mo +share/locale/lt/LC_MESSAGES/kmimetypefinder5.mo +share/locale/lt/LC_MESSAGES/kstart5.mo +share/locale/lt/LC_MESSAGES/ktraderclient5.mo +share/locale/lv/LC_MESSAGES/kcm5_filetypes.mo +share/locale/lv/LC_MESSAGES/kcmshell5.mo +share/locale/lv/LC_MESSAGES/kdesu5.mo +share/locale/lv/LC_MESSAGES/kioclient5.mo +share/locale/lv/LC_MESSAGES/kmimetypefinder5.mo +share/locale/lv/LC_MESSAGES/kstart5.mo +share/locale/lv/LC_MESSAGES/ktraderclient5.mo +share/locale/mai/LC_MESSAGES/kcm5_filetypes.mo +share/locale/mai/LC_MESSAGES/kcmshell5.mo +share/locale/mai/LC_MESSAGES/kdesu5.mo +share/locale/mai/LC_MESSAGES/kioclient5.mo +share/locale/mai/LC_MESSAGES/kmimetypefinder5.mo +share/locale/mai/LC_MESSAGES/kstart5.mo +share/locale/mai/LC_MESSAGES/ktraderclient5.mo +share/locale/mk/LC_MESSAGES/kcm5_filetypes.mo +share/locale/mk/LC_MESSAGES/kcmshell5.mo +share/locale/mk/LC_MESSAGES/kdesu5.mo +share/locale/mk/LC_MESSAGES/kioclient5.mo +share/locale/mk/LC_MESSAGES/kmimetypefinder5.mo +share/locale/mk/LC_MESSAGES/kstart5.mo +share/locale/mk/LC_MESSAGES/ktraderclient5.mo +share/locale/ml/LC_MESSAGES/kcm5_filetypes.mo +share/locale/ml/LC_MESSAGES/kcmshell5.mo +share/locale/ml/LC_MESSAGES/kdesu5.mo +share/locale/ml/LC_MESSAGES/kioclient5.mo +share/locale/ml/LC_MESSAGES/kmimetypefinder5.mo +share/locale/ml/LC_MESSAGES/kstart5.mo +share/locale/ml/LC_MESSAGES/ktraderclient5.mo +share/locale/mr/LC_MESSAGES/kcm5_filetypes.mo +share/locale/mr/LC_MESSAGES/kcmshell5.mo +share/locale/mr/LC_MESSAGES/kdesu5.mo +share/locale/mr/LC_MESSAGES/kioclient5.mo +share/locale/mr/LC_MESSAGES/kmimetypefinder5.mo +share/locale/mr/LC_MESSAGES/kstart5.mo +share/locale/mr/LC_MESSAGES/ktraderclient5.mo +share/locale/ms/LC_MESSAGES/kcm5_filetypes.mo +share/locale/ms/LC_MESSAGES/kcmshell5.mo +share/locale/ms/LC_MESSAGES/kdesu5.mo +share/locale/ms/LC_MESSAGES/kioclient5.mo +share/locale/ms/LC_MESSAGES/kmimetypefinder5.mo +share/locale/ms/LC_MESSAGES/kstart5.mo +share/locale/ms/LC_MESSAGES/ktraderclient5.mo +share/locale/nb/LC_MESSAGES/kcm5_filetypes.mo +share/locale/nb/LC_MESSAGES/kcmshell5.mo +share/locale/nb/LC_MESSAGES/kdesu5.mo +share/locale/nb/LC_MESSAGES/kioclient5.mo +share/locale/nb/LC_MESSAGES/kmimetypefinder5.mo +share/locale/nb/LC_MESSAGES/kstart5.mo +share/locale/nb/LC_MESSAGES/ktraderclient5.mo +share/locale/nds/LC_MESSAGES/kcm5_filetypes.mo +share/locale/nds/LC_MESSAGES/kcmshell5.mo +share/locale/nds/LC_MESSAGES/kdesu5.mo +share/locale/nds/LC_MESSAGES/kioclient5.mo +share/locale/nds/LC_MESSAGES/kmimetypefinder5.mo +share/locale/nds/LC_MESSAGES/kstart5.mo +share/locale/nds/LC_MESSAGES/ktraderclient5.mo +share/locale/ne/LC_MESSAGES/kcm5_filetypes.mo +share/locale/ne/LC_MESSAGES/kcmshell5.mo +share/locale/ne/LC_MESSAGES/kdesu5.mo +share/locale/ne/LC_MESSAGES/kioclient5.mo +share/locale/ne/LC_MESSAGES/kmimetypefinder5.mo +share/locale/ne/LC_MESSAGES/kstart5.mo +share/locale/ne/LC_MESSAGES/ktraderclient5.mo +share/locale/nl/LC_MESSAGES/kbroadcastnotification.mo +share/locale/nl/LC_MESSAGES/kcm5_filetypes.mo +share/locale/nl/LC_MESSAGES/kcmshell5.mo +share/locale/nl/LC_MESSAGES/kdesu5.mo +share/locale/nl/LC_MESSAGES/kioclient5.mo +share/locale/nl/LC_MESSAGES/kmimetypefinder5.mo +share/locale/nl/LC_MESSAGES/kstart5.mo +share/locale/nl/LC_MESSAGES/ktraderclient5.mo +share/locale/nn/LC_MESSAGES/kbroadcastnotification.mo +share/locale/nn/LC_MESSAGES/kcm5_filetypes.mo +share/locale/nn/LC_MESSAGES/kcmshell5.mo +share/locale/nn/LC_MESSAGES/kdesu5.mo +share/locale/nn/LC_MESSAGES/kioclient5.mo +share/locale/nn/LC_MESSAGES/kmimetypefinder5.mo +share/locale/nn/LC_MESSAGES/kstart5.mo +share/locale/nn/LC_MESSAGES/ktraderclient5.mo +share/locale/oc/LC_MESSAGES/kcm5_filetypes.mo +share/locale/oc/LC_MESSAGES/kcmshell5.mo +share/locale/oc/LC_MESSAGES/kdesu5.mo +share/locale/oc/LC_MESSAGES/kioclient5.mo +share/locale/oc/LC_MESSAGES/kmimetypefinder5.mo +share/locale/oc/LC_MESSAGES/kstart5.mo +share/locale/oc/LC_MESSAGES/ktraderclient5.mo +share/locale/or/LC_MESSAGES/kcmshell5.mo +share/locale/or/LC_MESSAGES/kdesu5.mo +share/locale/or/LC_MESSAGES/kioclient5.mo +share/locale/or/LC_MESSAGES/kmimetypefinder5.mo +share/locale/or/LC_MESSAGES/kstart5.mo +share/locale/or/LC_MESSAGES/ktraderclient5.mo +share/locale/pa/LC_MESSAGES/kcm5_filetypes.mo +share/locale/pa/LC_MESSAGES/kcmshell5.mo +share/locale/pa/LC_MESSAGES/kdesu5.mo +share/locale/pa/LC_MESSAGES/kioclient5.mo +share/locale/pa/LC_MESSAGES/kmimetypefinder5.mo +share/locale/pa/LC_MESSAGES/kstart5.mo +share/locale/pa/LC_MESSAGES/ktraderclient5.mo +share/locale/pl/LC_MESSAGES/kbroadcastnotification.mo +share/locale/pl/LC_MESSAGES/kcm5_filetypes.mo +share/locale/pl/LC_MESSAGES/kcmshell5.mo +share/locale/pl/LC_MESSAGES/kdesu5.mo +share/locale/pl/LC_MESSAGES/kioclient5.mo +share/locale/pl/LC_MESSAGES/kmimetypefinder5.mo +share/locale/pl/LC_MESSAGES/kstart5.mo +share/locale/pl/LC_MESSAGES/ktraderclient5.mo +share/locale/pt/LC_MESSAGES/kbroadcastnotification.mo +share/locale/pt/LC_MESSAGES/kcm5_filetypes.mo +share/locale/pt/LC_MESSAGES/kcmshell5.mo +share/locale/pt/LC_MESSAGES/kdesu5.mo +share/locale/pt/LC_MESSAGES/kioclient5.mo +share/locale/pt/LC_MESSAGES/kmimetypefinder5.mo +share/locale/pt/LC_MESSAGES/kstart5.mo +share/locale/pt/LC_MESSAGES/ktraderclient5.mo +share/locale/pt_BR/LC_MESSAGES/kbroadcastnotification.mo +share/locale/pt_BR/LC_MESSAGES/kcm5_filetypes.mo +share/locale/pt_BR/LC_MESSAGES/kcmshell5.mo +share/locale/pt_BR/LC_MESSAGES/kdesu5.mo +share/locale/pt_BR/LC_MESSAGES/kioclient5.mo +share/locale/pt_BR/LC_MESSAGES/kmimetypefinder5.mo +share/locale/pt_BR/LC_MESSAGES/kstart5.mo +share/locale/pt_BR/LC_MESSAGES/ktraderclient5.mo +share/locale/ro/LC_MESSAGES/kcm5_filetypes.mo +share/locale/ro/LC_MESSAGES/kcmshell5.mo +share/locale/ro/LC_MESSAGES/kdesu5.mo +share/locale/ro/LC_MESSAGES/kioclient5.mo +share/locale/ro/LC_MESSAGES/kmimetypefinder5.mo +share/locale/ro/LC_MESSAGES/kstart5.mo +share/locale/ro/LC_MESSAGES/ktraderclient5.mo +share/locale/ru/LC_MESSAGES/kbroadcastnotification.mo +share/locale/ru/LC_MESSAGES/kcm5_filetypes.mo +share/locale/ru/LC_MESSAGES/kcmshell5.mo +share/locale/ru/LC_MESSAGES/kdesu5.mo +share/locale/ru/LC_MESSAGES/kioclient5.mo +share/locale/ru/LC_MESSAGES/kmimetypefinder5.mo +share/locale/ru/LC_MESSAGES/kstart5.mo +share/locale/ru/LC_MESSAGES/ktraderclient5.mo +share/locale/se/LC_MESSAGES/kcm5_filetypes.mo +share/locale/se/LC_MESSAGES/kcmshell5.mo +share/locale/se/LC_MESSAGES/kdesu5.mo +share/locale/se/LC_MESSAGES/kioclient5.mo +share/locale/se/LC_MESSAGES/kmimetypefinder5.mo +share/locale/se/LC_MESSAGES/kstart5.mo +share/locale/se/LC_MESSAGES/ktraderclient5.mo +share/locale/si/LC_MESSAGES/kcm5_filetypes.mo +share/locale/si/LC_MESSAGES/kcmshell5.mo +share/locale/si/LC_MESSAGES/kdesu5.mo +share/locale/si/LC_MESSAGES/kioclient5.mo +share/locale/si/LC_MESSAGES/kmimetypefinder5.mo +share/locale/si/LC_MESSAGES/kstart5.mo +share/locale/si/LC_MESSAGES/ktraderclient5.mo +share/locale/sk/LC_MESSAGES/kbroadcastnotification.mo +share/locale/sk/LC_MESSAGES/kcm5_filetypes.mo +share/locale/sk/LC_MESSAGES/kcmshell5.mo +share/locale/sk/LC_MESSAGES/kdesu5.mo +share/locale/sk/LC_MESSAGES/kioclient5.mo +share/locale/sk/LC_MESSAGES/kmimetypefinder5.mo +share/locale/sk/LC_MESSAGES/kstart5.mo +share/locale/sk/LC_MESSAGES/ktraderclient5.mo +share/locale/sl/LC_MESSAGES/kbroadcastnotification.mo +share/locale/sl/LC_MESSAGES/kcm5_filetypes.mo +share/locale/sl/LC_MESSAGES/kcmshell5.mo +share/locale/sl/LC_MESSAGES/kdesu5.mo +share/locale/sl/LC_MESSAGES/kioclient5.mo +share/locale/sl/LC_MESSAGES/kmimetypefinder5.mo +share/locale/sl/LC_MESSAGES/kstart5.mo +share/locale/sl/LC_MESSAGES/ktraderclient5.mo +share/locale/sq/LC_MESSAGES/kcm5_filetypes.mo +share/locale/sq/LC_MESSAGES/kcmshell5.mo +share/locale/sq/LC_MESSAGES/kdesu5.mo +share/locale/sq/LC_MESSAGES/kioclient5.mo +share/locale/sq/LC_MESSAGES/kmimetypefinder5.mo +share/locale/sq/LC_MESSAGES/kstart5.mo +share/locale/sq/LC_MESSAGES/ktraderclient5.mo +share/locale/sr/LC_MESSAGES/kbroadcastnotification.mo +share/locale/sr/LC_MESSAGES/kcm5_filetypes.mo +share/locale/sr/LC_MESSAGES/kcmshell5.mo +share/locale/sr/LC_MESSAGES/kdesu5.mo +share/locale/sr/LC_MESSAGES/kioclient5.mo +share/locale/sr/LC_MESSAGES/kmimetypefinder5.mo +share/locale/sr/LC_MESSAGES/kstart5.mo +share/locale/sr/LC_MESSAGES/ktraderclient5.mo +share/locale/sr@ijekavian/LC_MESSAGES/kbroadcastnotification.mo +share/locale/sr@ijekavian/LC_MESSAGES/kcm5_filetypes.mo +share/locale/sr@ijekavian/LC_MESSAGES/kcmshell5.mo +share/locale/sr@ijekavian/LC_MESSAGES/kdesu5.mo +share/locale/sr@ijekavian/LC_MESSAGES/kioclient5.mo +share/locale/sr@ijekavian/LC_MESSAGES/kmimetypefinder5.mo +share/locale/sr@ijekavian/LC_MESSAGES/kstart5.mo +share/locale/sr@ijekavian/LC_MESSAGES/ktraderclient5.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kbroadcastnotification.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm5_filetypes.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmshell5.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kdesu5.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kioclient5.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kmimetypefinder5.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kstart5.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/ktraderclient5.mo +share/locale/sr@latin/LC_MESSAGES/kbroadcastnotification.mo +share/locale/sr@latin/LC_MESSAGES/kcm5_filetypes.mo +share/locale/sr@latin/LC_MESSAGES/kcmshell5.mo +share/locale/sr@latin/LC_MESSAGES/kdesu5.mo +share/locale/sr@latin/LC_MESSAGES/kioclient5.mo +share/locale/sr@latin/LC_MESSAGES/kmimetypefinder5.mo +share/locale/sr@latin/LC_MESSAGES/kstart5.mo +share/locale/sr@latin/LC_MESSAGES/ktraderclient5.mo +share/locale/sv/LC_MESSAGES/kbroadcastnotification.mo +share/locale/sv/LC_MESSAGES/kcm5_filetypes.mo +share/locale/sv/LC_MESSAGES/kcmshell5.mo +share/locale/sv/LC_MESSAGES/kdesu5.mo +share/locale/sv/LC_MESSAGES/kioclient5.mo +share/locale/sv/LC_MESSAGES/kmimetypefinder5.mo +share/locale/sv/LC_MESSAGES/kstart5.mo +share/locale/sv/LC_MESSAGES/ktraderclient5.mo +share/locale/ta/LC_MESSAGES/kcm5_filetypes.mo +share/locale/ta/LC_MESSAGES/kcmshell5.mo +share/locale/ta/LC_MESSAGES/kdesu5.mo +share/locale/ta/LC_MESSAGES/kioclient5.mo +share/locale/ta/LC_MESSAGES/kmimetypefinder5.mo +share/locale/ta/LC_MESSAGES/kstart5.mo +share/locale/ta/LC_MESSAGES/ktraderclient5.mo +share/locale/te/LC_MESSAGES/kcm5_filetypes.mo +share/locale/te/LC_MESSAGES/kcmshell5.mo +share/locale/te/LC_MESSAGES/kdesu5.mo +share/locale/te/LC_MESSAGES/kioclient5.mo +share/locale/te/LC_MESSAGES/kmimetypefinder5.mo +share/locale/te/LC_MESSAGES/kstart5.mo +share/locale/te/LC_MESSAGES/ktraderclient5.mo +share/locale/tg/LC_MESSAGES/kcm5_filetypes.mo +share/locale/tg/LC_MESSAGES/kcmshell5.mo +share/locale/tg/LC_MESSAGES/kdesu5.mo +share/locale/tg/LC_MESSAGES/kioclient5.mo +share/locale/tg/LC_MESSAGES/kmimetypefinder5.mo +share/locale/tg/LC_MESSAGES/kstart5.mo +share/locale/tg/LC_MESSAGES/ktraderclient5.mo +share/locale/th/LC_MESSAGES/kcm5_filetypes.mo +share/locale/th/LC_MESSAGES/kcmshell5.mo +share/locale/th/LC_MESSAGES/kdesu5.mo +share/locale/th/LC_MESSAGES/kioclient5.mo +share/locale/th/LC_MESSAGES/kmimetypefinder5.mo +share/locale/th/LC_MESSAGES/kstart5.mo +share/locale/th/LC_MESSAGES/ktraderclient5.mo +share/locale/tr/LC_MESSAGES/kbroadcastnotification.mo +share/locale/tr/LC_MESSAGES/kcm5_filetypes.mo +share/locale/tr/LC_MESSAGES/kcmshell5.mo +share/locale/tr/LC_MESSAGES/kdesu5.mo +share/locale/tr/LC_MESSAGES/kioclient5.mo +share/locale/tr/LC_MESSAGES/kmimetypefinder5.mo +share/locale/tr/LC_MESSAGES/kstart5.mo +share/locale/tr/LC_MESSAGES/ktraderclient5.mo +share/locale/ug/LC_MESSAGES/kcm5_filetypes.mo +share/locale/ug/LC_MESSAGES/kcmshell5.mo +share/locale/ug/LC_MESSAGES/kdesu5.mo +share/locale/ug/LC_MESSAGES/kioclient5.mo +share/locale/ug/LC_MESSAGES/kmimetypefinder5.mo +share/locale/ug/LC_MESSAGES/kstart5.mo +share/locale/ug/LC_MESSAGES/ktraderclient5.mo +share/locale/uk/LC_MESSAGES/kbroadcastnotification.mo +share/locale/uk/LC_MESSAGES/kcm5_filetypes.mo +share/locale/uk/LC_MESSAGES/kcmshell5.mo +share/locale/uk/LC_MESSAGES/kdesu5.mo +share/locale/uk/LC_MESSAGES/kioclient5.mo +share/locale/uk/LC_MESSAGES/kmimetypefinder5.mo +share/locale/uk/LC_MESSAGES/kstart5.mo +share/locale/uk/LC_MESSAGES/ktraderclient5.mo +share/locale/uz/LC_MESSAGES/kcm5_filetypes.mo +share/locale/uz/LC_MESSAGES/kdesu5.mo +share/locale/uz/LC_MESSAGES/kstart5.mo +share/locale/uz@cyrillic/LC_MESSAGES/kcm5_filetypes.mo +share/locale/uz@cyrillic/LC_MESSAGES/kdesu5.mo +share/locale/uz@cyrillic/LC_MESSAGES/kstart5.mo +share/locale/vi/LC_MESSAGES/kcm5_filetypes.mo +share/locale/vi/LC_MESSAGES/kcmshell5.mo +share/locale/vi/LC_MESSAGES/kdesu5.mo +share/locale/vi/LC_MESSAGES/kioclient5.mo +share/locale/vi/LC_MESSAGES/kmimetypefinder5.mo +share/locale/vi/LC_MESSAGES/kstart5.mo +share/locale/vi/LC_MESSAGES/ktraderclient5.mo +share/locale/wa/LC_MESSAGES/kcm5_filetypes.mo +share/locale/wa/LC_MESSAGES/kcmshell5.mo +share/locale/wa/LC_MESSAGES/kdesu5.mo +share/locale/wa/LC_MESSAGES/kioclient5.mo +share/locale/wa/LC_MESSAGES/kmimetypefinder5.mo +share/locale/wa/LC_MESSAGES/kstart5.mo +share/locale/wa/LC_MESSAGES/ktraderclient5.mo +share/locale/xh/LC_MESSAGES/kcm5_filetypes.mo +share/locale/xh/LC_MESSAGES/kdesu5.mo +share/locale/xh/LC_MESSAGES/kstart5.mo +share/locale/zh_CN/LC_MESSAGES/kbroadcastnotification.mo +share/locale/zh_CN/LC_MESSAGES/kcm5_filetypes.mo +share/locale/zh_CN/LC_MESSAGES/kcmshell5.mo +share/locale/zh_CN/LC_MESSAGES/kdesu5.mo +share/locale/zh_CN/LC_MESSAGES/kioclient5.mo +share/locale/zh_CN/LC_MESSAGES/kmimetypefinder5.mo +share/locale/zh_CN/LC_MESSAGES/kstart5.mo +share/locale/zh_CN/LC_MESSAGES/ktraderclient5.mo +share/locale/zh_TW/LC_MESSAGES/kbroadcastnotification.mo +share/locale/zh_TW/LC_MESSAGES/kcm5_filetypes.mo +share/locale/zh_TW/LC_MESSAGES/kcmshell5.mo +share/locale/zh_TW/LC_MESSAGES/kdesu5.mo +share/locale/zh_TW/LC_MESSAGES/kioclient5.mo +share/locale/zh_TW/LC_MESSAGES/kmimetypefinder5.mo +share/locale/zh_TW/LC_MESSAGES/kstart5.mo +share/locale/zh_TW/LC_MESSAGES/ktraderclient5.mo Property changes on: head/sysutils/plasma5-kde-cli-tools/pkg-plist ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/sysutils/plasma5-kinfocenter/Makefile =================================================================== --- head/sysutils/plasma5-kinfocenter/Makefile (nonexistent) +++ head/sysutils/plasma5-kinfocenter/Makefile (revision 468495) @@ -0,0 +1,37 @@ +# $FreeBSD$ + +PORTNAME= kinfocenter +DISTVERSION= ${KDE_PLASMA_VERSION} +CATEGORIES= sysutils kde kde-plasma + +MAINTAINER= kde@FreeBSD.org +COMMENT= Plasma5 utility providing system information + +LIB_DEPENDS= libpci.so:devel/libpci + +USES= cmake:outsource compiler:c++11-lib cpe gettext kde:5 pkgconfig \ + tar:xz +USE_GL= egl gl glu +USE_KDE= auth bookmarks codecs completion config configwidgets \ + coreaddons crash dbusaddons doctools ecm emoticons guiaddons \ + i18n iconthemes jobwidgets kcmutils kdeclarative \ + kdelibs4support kio notifications package parts init \ + itemmodels itemviews service solid sonnet textwidgets \ + unitconversion wayland wayland widgetsaddons windowsystem xmlgui +USE_QT5= concurrent core dbus gui network printsupport widgets xml \ + buildtools_build qmake_build +USE_XORG= ice sm x11 xext + +# TODO -- this should be handled correctly... +LDFLAGS+=-ldevinfo + +# install freebsd-logo and distrorc +post-install: + ${MKDIR} ${STAGEDIR}/${DATADIR}/images + ${INSTALL_DATA} ${FILESDIR}/freebsd_logo.svg ${STAGEDIR}/${DATADIR}/images/ + ${MKDIR} ${STAGEDIR}/${PREFIX}/etc/xdg + ${INSTALL_DATA} ${FILESDIR}/kcm-about-distrorc ${STAGEDIR}/${PREFIX}/etc/xdg/ + ${REINPLACE_CMD} -i "" -e "s#%%DATADIR%%#${DATADIR}#" ${STAGEDIR}/${PREFIX}/etc/xdg/kcm-about-distrorc + +.include + Property changes on: head/sysutils/plasma5-kinfocenter/Makefile ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/sysutils/plasma5-kinfocenter/distinfo =================================================================== --- head/sysutils/plasma5-kinfocenter/distinfo (nonexistent) +++ head/sysutils/plasma5-kinfocenter/distinfo (revision 468495) @@ -0,0 +1,3 @@ +TIMESTAMP = 1523811768 +SHA256 (KDE/plasma/5.12.4/kinfocenter-5.12.4.tar.xz) = 436a6b36917f745ec710802bd34bc541a482802fd0753b787d9d16d5115bfe35 +SIZE (KDE/plasma/5.12.4/kinfocenter-5.12.4.tar.xz) = 1267316 Property changes on: head/sysutils/plasma5-kinfocenter/distinfo ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/sysutils/plasma5-kinfocenter/files/freebsd_logo.svg =================================================================== --- head/sysutils/plasma5-kinfocenter/files/freebsd_logo.svg (nonexistent) +++ head/sysutils/plasma5-kinfocenter/files/freebsd_logo.svg (revision 468495) @@ -0,0 +1,74 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + Property changes on: head/sysutils/plasma5-kinfocenter/files/freebsd_logo.svg ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/sysutils/plasma5-kinfocenter/files/kcm-about-distrorc =================================================================== --- head/sysutils/plasma5-kinfocenter/files/kcm-about-distrorc (nonexistent) +++ head/sysutils/plasma5-kinfocenter/files/kcm-about-distrorc (revision 468495) @@ -0,0 +1,4 @@ +[General] +Name=FreeBSD +LogoPath=%%DATADIR%%/images/freebsd_logo.svg +Website=https://www.freebsd.org Property changes on: head/sysutils/plasma5-kinfocenter/files/kcm-about-distrorc ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/sysutils/plasma5-kinfocenter/files/patch-Modules_about-distro_src_OSRelease.cpp =================================================================== --- head/sysutils/plasma5-kinfocenter/files/patch-Modules_about-distro_src_OSRelease.cpp (nonexistent) +++ head/sysutils/plasma5-kinfocenter/files/patch-Modules_about-distro_src_OSRelease.cpp (revision 468495) @@ -0,0 +1,87 @@ +Dirtily patch in FreeBSD Name/Information. This should be done +in a better way down the line. + + +--- Modules/about-distro/src/OSRelease.cpp.orig 2018-02-01 13:18:11 UTC ++++ Modules/about-distro/src/OSRelease.cpp +@@ -63,73 +63,10 @@ static void setVar(QStringList *var, const QString &va + + OSRelease::OSRelease() + { +- // Set default values for non-optional fields. +- name = QStringLiteral("Linux"); +- id = QStringLiteral("linux"); +- prettyName = QStringLiteral("Linux"); +- +- QString fileName; +- +- if (QFile::exists(QStringLiteral("/etc/os-release"))) { +- fileName = QStringLiteral("/etc/os-release"); +- } else if (QFile::exists(QStringLiteral("/usr/lib/os-release"))) { +- fileName = QStringLiteral("/usr/lib/os-release"); +- } else { +- return; +- } +- +- +- QFile file(fileName); +- // NOTE: The os-release specification defines default values for specific +- // fields which means that even if we can not read the os-release file +- // we have sort of expected default values to use. +- // TODO: it might still be handy to indicate to the outside whether +- // fallback values are being used or not. +- file.open(QIODevice::ReadOnly | QIODevice::Text); +- QString line; +- QStringList comps; +- while (!file.atEnd()) { +- line = file.readLine(); +- +- if (line.startsWith(QLatin1Char('#'))) { +- // Comment line +- continue; +- } +- +- comps = line.split(QLatin1Char('=')); +- +- if (comps.size() != 2) { +- // Invalid line. +- continue; +- } +- +- QString key = comps.at(0); +- QString value = comps.at(1).trimmed(); +- if (key == QLatin1String("NAME")) +- setVar(&name, value); +- else if (key == QLatin1String("VERSION")) +- setVar(&version, value); +- else if (key == QLatin1String("ID")) +- setVar(&id, value); +- else if (key == QLatin1String("ID_LIKE")) +- setVar(&idLike, value); +- else if (key == QLatin1String("VERSION_ID")) +- setVar(&versionId, value); +- else if (key == QLatin1String("PRETTY_NAME")) +- setVar(&prettyName, value); +- else if (key == QLatin1String("ANSI_COLOR")) +- setVar(&ansiColor, value); +- else if (key == QLatin1String("CPE_NAME")) +- setVar(&cpeName, value); +- else if (key == QLatin1String("HOME_URL")) +- setVar(&homeUrl, value); +- else if (key == QLatin1String("SUPPORT_URL")) +- setVar(&supportUrl, value); +- else if (key == QLatin1String("BUG_REPORT_URL")) +- setVar(&bugReportUrl, value); +- else if (key == QLatin1String("BUILD_ID")) +- setVar(&buildId, value); +- // os-release explicitly allows for vendor specific aditions. We have no +- // interest in those right now. +- } +-} ++ name = QLatin1String("FreeBSD"); ++ id = QLatin1String("FreeBSD"); ++ prettyName = QLatin1String("FreeBSD"); ++ homeUrl = QLatin1String("https://freebsd.org"); ++ supportUrl = QLatin1String("https://www.freebsd.org/support.html"); ++ bugReportUrl = QLatin1String("https://bugs.freebsd.org/bugzilla"); ++} Property changes on: head/sysutils/plasma5-kinfocenter/files/patch-Modules_about-distro_src_OSRelease.cpp ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/sysutils/plasma5-kinfocenter/pkg-descr =================================================================== --- head/sysutils/plasma5-kinfocenter/pkg-descr (nonexistent) +++ head/sysutils/plasma5-kinfocenter/pkg-descr (revision 468495) @@ -0,0 +1,3 @@ +KInfoCenter is a utility that provides information about a computer system. + +WWW: https://www.kde.org/plasma-desktop Property changes on: head/sysutils/plasma5-kinfocenter/pkg-descr ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/sysutils/plasma5-kinfocenter/pkg-plist =================================================================== --- head/sysutils/plasma5-kinfocenter/pkg-plist (nonexistent) +++ head/sysutils/plasma5-kinfocenter/pkg-plist (revision 468495) @@ -0,0 +1,984 @@ +bin/kinfocenter +etc/xdg/kcm-about-distrorc +etc/xdg/menus/kinfocenter.menu +%%QT_PLUGINDIR%%/kcm_about_distro.so +%%QT_PLUGINDIR%%/kcm_devinfo.so +%%QT_PLUGINDIR%%/kcm_info.so +%%QT_PLUGINDIR%%/kcm_memory.so +%%QT_PLUGINDIR%%/kcm_nic.so +%%QT_PLUGINDIR%%/kcm_opengl.so +%%QT_PLUGINDIR%%/kcm_pci.so +%%QT_PLUGINDIR%%/kcm_samba.so +%%QT_PLUGINDIR%%/kcm_usb.so +share/applications/org.kde.kinfocenter.desktop +share/desktop-directories/kinfocenter.directory +share/doc/HTML/ca/kinfocenter/index.cache.bz2 +share/doc/HTML/ca/kinfocenter/index.docbook +share/doc/HTML/ca/kinfocenter/kinfocenter.png +share/doc/HTML/de/kinfocenter/index.cache.bz2 +share/doc/HTML/de/kinfocenter/index.docbook +share/doc/HTML/en/kinfocenter/index.cache.bz2 +share/doc/HTML/en/kinfocenter/index.docbook +share/doc/HTML/en/kinfocenter/kinfocenter.png +share/doc/HTML/it/kinfocenter/index.cache.bz2 +share/doc/HTML/it/kinfocenter/index.docbook +share/doc/HTML/nl/kinfocenter/index.cache.bz2 +share/doc/HTML/nl/kinfocenter/index.docbook +share/doc/HTML/pt/kinfocenter/index.cache.bz2 +share/doc/HTML/pt/kinfocenter/index.docbook +share/doc/HTML/pt_BR/kinfocenter/index.cache.bz2 +share/doc/HTML/pt_BR/kinfocenter/index.docbook +share/doc/HTML/pt_BR/kinfocenter/kinfocenter.png +share/doc/HTML/sr/kinfocenter/index.cache.bz2 +share/doc/HTML/sr/kinfocenter/index.docbook +share/doc/HTML/sr@latin/kinfocenter/index.cache.bz2 +share/doc/HTML/sr@latin/kinfocenter/index.docbook +share/doc/HTML/uk/kinfocenter/index.cache.bz2 +share/doc/HTML/uk/kinfocenter/index.docbook +share/kcmusb/usb.ids +%%DATADIR%%/images/freebsd_logo.svg +share/kservices5/about-distro.desktop +share/kservices5/deviceinfocategory.desktop +share/kservices5/devinfo.desktop +share/kservices5/dma.desktop +share/kservices5/graphicalinfocategory.desktop +share/kservices5/interrupts.desktop +share/kservices5/ioports.desktop +share/kservices5/kcm_memory.desktop +share/kservices5/kcm_pci.desktop +share/kservices5/kcmusb.desktop +share/kservices5/lostfoundcategory.desktop +share/kservices5/networkinfocategory.desktop +share/kservices5/nic.desktop +share/kservices5/opengl.desktop +share/kservices5/smbstatus.desktop +share/kservices5/wayland.desktop +share/kservices5/xserver.desktop +share/kservicetypes5/kinfocentercategory.desktop +share/kxmlgui5/kinfocenter/kinfocenterui.rc +share/locale/af/LC_MESSAGES/kcminfo.mo +share/locale/af/LC_MESSAGES/kcmsamba.mo +share/locale/af/LC_MESSAGES/kcmusb.mo +share/locale/af/LC_MESSAGES/kcmview1394.mo +share/locale/af/LC_MESSAGES/kinfocenter.mo +share/locale/ar/LC_MESSAGES/kcm-about-distro.mo +share/locale/ar/LC_MESSAGES/kcm_energyinfo.mo +share/locale/ar/LC_MESSAGES/kcm_fileindexermonitor.mo +share/locale/ar/LC_MESSAGES/kcm_memory.mo +share/locale/ar/LC_MESSAGES/kcm_pci.mo +share/locale/ar/LC_MESSAGES/kcmdevinfo.mo +share/locale/ar/LC_MESSAGES/kcminfo.mo +share/locale/ar/LC_MESSAGES/kcmnic.mo +share/locale/ar/LC_MESSAGES/kcmopengl.mo +share/locale/ar/LC_MESSAGES/kcmsamba.mo +share/locale/ar/LC_MESSAGES/kcmusb.mo +share/locale/ar/LC_MESSAGES/kcmview1394.mo +share/locale/ar/LC_MESSAGES/kinfocenter.mo +share/locale/ast/LC_MESSAGES/kcm-about-distro.mo +share/locale/ast/LC_MESSAGES/kcm_energyinfo.mo +share/locale/ast/LC_MESSAGES/kcm_fileindexermonitor.mo +share/locale/ast/LC_MESSAGES/kcm_memory.mo +share/locale/ast/LC_MESSAGES/kcm_pci.mo +share/locale/ast/LC_MESSAGES/kcmdevinfo.mo +share/locale/ast/LC_MESSAGES/kcminfo.mo +share/locale/ast/LC_MESSAGES/kcmnic.mo +share/locale/ast/LC_MESSAGES/kcmopengl.mo +share/locale/ast/LC_MESSAGES/kcmsamba.mo +share/locale/ast/LC_MESSAGES/kcmusb.mo +share/locale/ast/LC_MESSAGES/kcmview1394.mo +share/locale/ast/LC_MESSAGES/kinfocenter.mo +share/locale/be/LC_MESSAGES/kcminfo.mo +share/locale/be/LC_MESSAGES/kcmopengl.mo +share/locale/be/LC_MESSAGES/kcmsamba.mo +share/locale/be/LC_MESSAGES/kcmusb.mo +share/locale/be/LC_MESSAGES/kcmview1394.mo +share/locale/be/LC_MESSAGES/kinfocenter.mo +share/locale/be@latin/LC_MESSAGES/kcminfo.mo +share/locale/bg/LC_MESSAGES/kcm-about-distro.mo +share/locale/bg/LC_MESSAGES/kcm_memory.mo +share/locale/bg/LC_MESSAGES/kcm_pci.mo +share/locale/bg/LC_MESSAGES/kcmdevinfo.mo +share/locale/bg/LC_MESSAGES/kcminfo.mo +share/locale/bg/LC_MESSAGES/kcmnic.mo +share/locale/bg/LC_MESSAGES/kcmopengl.mo +share/locale/bg/LC_MESSAGES/kcmsamba.mo +share/locale/bg/LC_MESSAGES/kcmusb.mo +share/locale/bg/LC_MESSAGES/kcmview1394.mo +share/locale/bg/LC_MESSAGES/kinfocenter.mo +share/locale/bn/LC_MESSAGES/kcminfo.mo +share/locale/bn/LC_MESSAGES/kcmusb.mo +share/locale/bn/LC_MESSAGES/kcmview1394.mo +share/locale/bn/LC_MESSAGES/kinfocenter.mo +share/locale/bn_IN/LC_MESSAGES/kcm_memory.mo +share/locale/bn_IN/LC_MESSAGES/kcm_pci.mo +share/locale/bn_IN/LC_MESSAGES/kcminfo.mo +share/locale/bn_IN/LC_MESSAGES/kcmsamba.mo +share/locale/bn_IN/LC_MESSAGES/kcmusb.mo +share/locale/bn_IN/LC_MESSAGES/kcmview1394.mo +share/locale/bn_IN/LC_MESSAGES/kinfocenter.mo +share/locale/br/LC_MESSAGES/kcminfo.mo +share/locale/br/LC_MESSAGES/kcmsamba.mo +share/locale/br/LC_MESSAGES/kcmusb.mo +share/locale/br/LC_MESSAGES/kcmview1394.mo +share/locale/br/LC_MESSAGES/kinfocenter.mo +share/locale/bs/LC_MESSAGES/kcm-about-distro.mo +share/locale/bs/LC_MESSAGES/kcm_memory.mo +share/locale/bs/LC_MESSAGES/kcm_pci.mo +share/locale/bs/LC_MESSAGES/kcmdevinfo.mo +share/locale/bs/LC_MESSAGES/kcminfo.mo +share/locale/bs/LC_MESSAGES/kcmnic.mo +share/locale/bs/LC_MESSAGES/kcmopengl.mo +share/locale/bs/LC_MESSAGES/kcmsamba.mo +share/locale/bs/LC_MESSAGES/kcmusb.mo +share/locale/bs/LC_MESSAGES/kcmview1394.mo +share/locale/bs/LC_MESSAGES/kinfocenter.mo +share/locale/ca/LC_MESSAGES/kcm-about-distro.mo +share/locale/ca/LC_MESSAGES/kcm_energyinfo.mo +share/locale/ca/LC_MESSAGES/kcm_fileindexermonitor.mo +share/locale/ca/LC_MESSAGES/kcm_memory.mo +share/locale/ca/LC_MESSAGES/kcm_pci.mo +share/locale/ca/LC_MESSAGES/kcmdevinfo.mo +share/locale/ca/LC_MESSAGES/kcminfo.mo +share/locale/ca/LC_MESSAGES/kcmnic.mo +share/locale/ca/LC_MESSAGES/kcmopengl.mo +share/locale/ca/LC_MESSAGES/kcmsamba.mo +share/locale/ca/LC_MESSAGES/kcmusb.mo +share/locale/ca/LC_MESSAGES/kcmview1394.mo +share/locale/ca/LC_MESSAGES/kinfocenter.mo +share/locale/ca@valencia/LC_MESSAGES/kcm-about-distro.mo +share/locale/ca@valencia/LC_MESSAGES/kcm_energyinfo.mo +share/locale/ca@valencia/LC_MESSAGES/kcm_fileindexermonitor.mo +share/locale/ca@valencia/LC_MESSAGES/kcm_memory.mo +share/locale/ca@valencia/LC_MESSAGES/kcm_pci.mo +share/locale/ca@valencia/LC_MESSAGES/kcmdevinfo.mo +share/locale/ca@valencia/LC_MESSAGES/kcminfo.mo +share/locale/ca@valencia/LC_MESSAGES/kcmnic.mo +share/locale/ca@valencia/LC_MESSAGES/kcmopengl.mo +share/locale/ca@valencia/LC_MESSAGES/kcmsamba.mo +share/locale/ca@valencia/LC_MESSAGES/kcmusb.mo +share/locale/ca@valencia/LC_MESSAGES/kcmview1394.mo +share/locale/ca@valencia/LC_MESSAGES/kinfocenter.mo +share/locale/cs/LC_MESSAGES/kcm-about-distro.mo +share/locale/cs/LC_MESSAGES/kcm_energyinfo.mo +share/locale/cs/LC_MESSAGES/kcm_fileindexermonitor.mo +share/locale/cs/LC_MESSAGES/kcm_memory.mo +share/locale/cs/LC_MESSAGES/kcm_pci.mo +share/locale/cs/LC_MESSAGES/kcmdevinfo.mo +share/locale/cs/LC_MESSAGES/kcminfo.mo +share/locale/cs/LC_MESSAGES/kcmnic.mo +share/locale/cs/LC_MESSAGES/kcmopengl.mo +share/locale/cs/LC_MESSAGES/kcmsamba.mo +share/locale/cs/LC_MESSAGES/kcmusb.mo +share/locale/cs/LC_MESSAGES/kcmview1394.mo +share/locale/cs/LC_MESSAGES/kinfocenter.mo +share/locale/csb/LC_MESSAGES/kcmsamba.mo +share/locale/csb/LC_MESSAGES/kcmusb.mo +share/locale/csb/LC_MESSAGES/kcmview1394.mo +share/locale/csb/LC_MESSAGES/kinfocenter.mo +share/locale/cy/LC_MESSAGES/kcminfo.mo +share/locale/cy/LC_MESSAGES/kcmsamba.mo +share/locale/cy/LC_MESSAGES/kcmusb.mo +share/locale/cy/LC_MESSAGES/kcmview1394.mo +share/locale/cy/LC_MESSAGES/kinfocenter.mo +share/locale/da/LC_MESSAGES/kcm-about-distro.mo +share/locale/da/LC_MESSAGES/kcm_energyinfo.mo +share/locale/da/LC_MESSAGES/kcm_fileindexermonitor.mo +share/locale/da/LC_MESSAGES/kcm_memory.mo +share/locale/da/LC_MESSAGES/kcm_pci.mo +share/locale/da/LC_MESSAGES/kcmdevinfo.mo +share/locale/da/LC_MESSAGES/kcminfo.mo +share/locale/da/LC_MESSAGES/kcmnic.mo +share/locale/da/LC_MESSAGES/kcmopengl.mo +share/locale/da/LC_MESSAGES/kcmsamba.mo +share/locale/da/LC_MESSAGES/kcmusb.mo +share/locale/da/LC_MESSAGES/kcmview1394.mo +share/locale/da/LC_MESSAGES/kinfocenter.mo +share/locale/de/LC_MESSAGES/kcm-about-distro.mo +share/locale/de/LC_MESSAGES/kcm_energyinfo.mo +share/locale/de/LC_MESSAGES/kcm_fileindexermonitor.mo +share/locale/de/LC_MESSAGES/kcm_memory.mo +share/locale/de/LC_MESSAGES/kcm_pci.mo +share/locale/de/LC_MESSAGES/kcmdevinfo.mo +share/locale/de/LC_MESSAGES/kcminfo.mo +share/locale/de/LC_MESSAGES/kcmnic.mo +share/locale/de/LC_MESSAGES/kcmopengl.mo +share/locale/de/LC_MESSAGES/kcmsamba.mo +share/locale/de/LC_MESSAGES/kcmusb.mo +share/locale/de/LC_MESSAGES/kcmview1394.mo +share/locale/de/LC_MESSAGES/kinfocenter.mo +share/locale/el/LC_MESSAGES/kcm-about-distro.mo +share/locale/el/LC_MESSAGES/kcm_energyinfo.mo +share/locale/el/LC_MESSAGES/kcm_fileindexermonitor.mo +share/locale/el/LC_MESSAGES/kcm_memory.mo +share/locale/el/LC_MESSAGES/kcm_pci.mo +share/locale/el/LC_MESSAGES/kcmdevinfo.mo +share/locale/el/LC_MESSAGES/kcminfo.mo +share/locale/el/LC_MESSAGES/kcmnic.mo +share/locale/el/LC_MESSAGES/kcmopengl.mo +share/locale/el/LC_MESSAGES/kcmsamba.mo +share/locale/el/LC_MESSAGES/kcmusb.mo +share/locale/el/LC_MESSAGES/kcmview1394.mo +share/locale/el/LC_MESSAGES/kinfocenter.mo +share/locale/en_GB/LC_MESSAGES/kcm-about-distro.mo +share/locale/en_GB/LC_MESSAGES/kcm_energyinfo.mo +share/locale/en_GB/LC_MESSAGES/kcm_fileindexermonitor.mo +share/locale/en_GB/LC_MESSAGES/kcm_memory.mo +share/locale/en_GB/LC_MESSAGES/kcm_pci.mo +share/locale/en_GB/LC_MESSAGES/kcmdevinfo.mo +share/locale/en_GB/LC_MESSAGES/kcminfo.mo +share/locale/en_GB/LC_MESSAGES/kcmnic.mo +share/locale/en_GB/LC_MESSAGES/kcmopengl.mo +share/locale/en_GB/LC_MESSAGES/kcmsamba.mo +share/locale/en_GB/LC_MESSAGES/kcmusb.mo +share/locale/en_GB/LC_MESSAGES/kcmview1394.mo +share/locale/en_GB/LC_MESSAGES/kinfocenter.mo +share/locale/eo/LC_MESSAGES/kcm_memory.mo +share/locale/eo/LC_MESSAGES/kcm_pci.mo +share/locale/eo/LC_MESSAGES/kcmdevinfo.mo +share/locale/eo/LC_MESSAGES/kcminfo.mo +share/locale/eo/LC_MESSAGES/kcmnic.mo +share/locale/eo/LC_MESSAGES/kcmopengl.mo +share/locale/eo/LC_MESSAGES/kcmsamba.mo +share/locale/eo/LC_MESSAGES/kcmusb.mo +share/locale/eo/LC_MESSAGES/kcmview1394.mo +share/locale/eo/LC_MESSAGES/kinfocenter.mo +share/locale/es/LC_MESSAGES/kcm-about-distro.mo +share/locale/es/LC_MESSAGES/kcm_energyinfo.mo +share/locale/es/LC_MESSAGES/kcm_fileindexermonitor.mo +share/locale/es/LC_MESSAGES/kcm_memory.mo +share/locale/es/LC_MESSAGES/kcm_pci.mo +share/locale/es/LC_MESSAGES/kcmdevinfo.mo +share/locale/es/LC_MESSAGES/kcminfo.mo +share/locale/es/LC_MESSAGES/kcmnic.mo +share/locale/es/LC_MESSAGES/kcmopengl.mo +share/locale/es/LC_MESSAGES/kcmsamba.mo +share/locale/es/LC_MESSAGES/kcmusb.mo +share/locale/es/LC_MESSAGES/kcmview1394.mo +share/locale/es/LC_MESSAGES/kinfocenter.mo +share/locale/et/LC_MESSAGES/kcm-about-distro.mo +share/locale/et/LC_MESSAGES/kcm_energyinfo.mo +share/locale/et/LC_MESSAGES/kcm_fileindexermonitor.mo +share/locale/et/LC_MESSAGES/kcm_memory.mo +share/locale/et/LC_MESSAGES/kcm_pci.mo +share/locale/et/LC_MESSAGES/kcmdevinfo.mo +share/locale/et/LC_MESSAGES/kcminfo.mo +share/locale/et/LC_MESSAGES/kcmnic.mo +share/locale/et/LC_MESSAGES/kcmopengl.mo +share/locale/et/LC_MESSAGES/kcmsamba.mo +share/locale/et/LC_MESSAGES/kcmusb.mo +share/locale/et/LC_MESSAGES/kcmview1394.mo +share/locale/et/LC_MESSAGES/kinfocenter.mo +share/locale/eu/LC_MESSAGES/kcm-about-distro.mo +share/locale/eu/LC_MESSAGES/kcm_energyinfo.mo +share/locale/eu/LC_MESSAGES/kcm_fileindexermonitor.mo +share/locale/eu/LC_MESSAGES/kcm_memory.mo +share/locale/eu/LC_MESSAGES/kcm_pci.mo +share/locale/eu/LC_MESSAGES/kcmdevinfo.mo +share/locale/eu/LC_MESSAGES/kcminfo.mo +share/locale/eu/LC_MESSAGES/kcmnic.mo +share/locale/eu/LC_MESSAGES/kcmopengl.mo +share/locale/eu/LC_MESSAGES/kcmsamba.mo +share/locale/eu/LC_MESSAGES/kcmusb.mo +share/locale/eu/LC_MESSAGES/kcmview1394.mo +share/locale/eu/LC_MESSAGES/kinfocenter.mo +share/locale/fa/LC_MESSAGES/kcm_memory.mo +share/locale/fa/LC_MESSAGES/kcm_pci.mo +share/locale/fa/LC_MESSAGES/kcmdevinfo.mo +share/locale/fa/LC_MESSAGES/kcminfo.mo +share/locale/fa/LC_MESSAGES/kcmopengl.mo +share/locale/fa/LC_MESSAGES/kcmsamba.mo +share/locale/fa/LC_MESSAGES/kcmusb.mo +share/locale/fa/LC_MESSAGES/kcmview1394.mo +share/locale/fa/LC_MESSAGES/kinfocenter.mo +share/locale/fi/LC_MESSAGES/kcm-about-distro.mo +share/locale/fi/LC_MESSAGES/kcm_energyinfo.mo +share/locale/fi/LC_MESSAGES/kcm_fileindexermonitor.mo +share/locale/fi/LC_MESSAGES/kcm_memory.mo +share/locale/fi/LC_MESSAGES/kcm_pci.mo +share/locale/fi/LC_MESSAGES/kcmdevinfo.mo +share/locale/fi/LC_MESSAGES/kcminfo.mo +share/locale/fi/LC_MESSAGES/kcmnic.mo +share/locale/fi/LC_MESSAGES/kcmopengl.mo +share/locale/fi/LC_MESSAGES/kcmsamba.mo +share/locale/fi/LC_MESSAGES/kcmusb.mo +share/locale/fi/LC_MESSAGES/kcmview1394.mo +share/locale/fi/LC_MESSAGES/kinfocenter.mo +share/locale/fr/LC_MESSAGES/kcm-about-distro.mo +share/locale/fr/LC_MESSAGES/kcm_energyinfo.mo +share/locale/fr/LC_MESSAGES/kcm_fileindexermonitor.mo +share/locale/fr/LC_MESSAGES/kcm_memory.mo +share/locale/fr/LC_MESSAGES/kcm_pci.mo +share/locale/fr/LC_MESSAGES/kcmdevinfo.mo +share/locale/fr/LC_MESSAGES/kcminfo.mo +share/locale/fr/LC_MESSAGES/kcmnic.mo +share/locale/fr/LC_MESSAGES/kcmopengl.mo +share/locale/fr/LC_MESSAGES/kcmsamba.mo +share/locale/fr/LC_MESSAGES/kcmusb.mo +share/locale/fr/LC_MESSAGES/kcmview1394.mo +share/locale/fr/LC_MESSAGES/kinfocenter.mo +share/locale/fy/LC_MESSAGES/kcm_memory.mo +share/locale/fy/LC_MESSAGES/kcm_pci.mo +share/locale/fy/LC_MESSAGES/kcminfo.mo +share/locale/fy/LC_MESSAGES/kcmopengl.mo +share/locale/fy/LC_MESSAGES/kcmsamba.mo +share/locale/fy/LC_MESSAGES/kcmusb.mo +share/locale/fy/LC_MESSAGES/kcmview1394.mo +share/locale/fy/LC_MESSAGES/kinfocenter.mo +share/locale/ga/LC_MESSAGES/kcm_memory.mo +share/locale/ga/LC_MESSAGES/kcm_pci.mo +share/locale/ga/LC_MESSAGES/kcmdevinfo.mo +share/locale/ga/LC_MESSAGES/kcminfo.mo +share/locale/ga/LC_MESSAGES/kcmnic.mo +share/locale/ga/LC_MESSAGES/kcmopengl.mo +share/locale/ga/LC_MESSAGES/kcmsamba.mo +share/locale/ga/LC_MESSAGES/kcmusb.mo +share/locale/ga/LC_MESSAGES/kcmview1394.mo +share/locale/ga/LC_MESSAGES/kinfocenter.mo +share/locale/gl/LC_MESSAGES/kcm-about-distro.mo +share/locale/gl/LC_MESSAGES/kcm_energyinfo.mo +share/locale/gl/LC_MESSAGES/kcm_fileindexermonitor.mo +share/locale/gl/LC_MESSAGES/kcm_memory.mo +share/locale/gl/LC_MESSAGES/kcm_pci.mo +share/locale/gl/LC_MESSAGES/kcmdevinfo.mo +share/locale/gl/LC_MESSAGES/kcminfo.mo +share/locale/gl/LC_MESSAGES/kcmnic.mo +share/locale/gl/LC_MESSAGES/kcmopengl.mo +share/locale/gl/LC_MESSAGES/kcmsamba.mo +share/locale/gl/LC_MESSAGES/kcmusb.mo +share/locale/gl/LC_MESSAGES/kcmview1394.mo +share/locale/gl/LC_MESSAGES/kinfocenter.mo +share/locale/gu/LC_MESSAGES/kcm_memory.mo +share/locale/gu/LC_MESSAGES/kcm_pci.mo +share/locale/gu/LC_MESSAGES/kcmdevinfo.mo +share/locale/gu/LC_MESSAGES/kcminfo.mo +share/locale/gu/LC_MESSAGES/kcmnic.mo +share/locale/gu/LC_MESSAGES/kcmopengl.mo +share/locale/gu/LC_MESSAGES/kcmsamba.mo +share/locale/gu/LC_MESSAGES/kcmusb.mo +share/locale/gu/LC_MESSAGES/kcmview1394.mo +share/locale/gu/LC_MESSAGES/kinfocenter.mo +share/locale/he/LC_MESSAGES/kcm-about-distro.mo +share/locale/he/LC_MESSAGES/kcm_energyinfo.mo +share/locale/he/LC_MESSAGES/kcm_fileindexermonitor.mo +share/locale/he/LC_MESSAGES/kcm_memory.mo +share/locale/he/LC_MESSAGES/kcm_pci.mo +share/locale/he/LC_MESSAGES/kcmdevinfo.mo +share/locale/he/LC_MESSAGES/kcminfo.mo +share/locale/he/LC_MESSAGES/kcmnic.mo +share/locale/he/LC_MESSAGES/kcmopengl.mo +share/locale/he/LC_MESSAGES/kcmsamba.mo +share/locale/he/LC_MESSAGES/kcmusb.mo +share/locale/he/LC_MESSAGES/kcmview1394.mo +share/locale/he/LC_MESSAGES/kinfocenter.mo +share/locale/hi/LC_MESSAGES/kcm_memory.mo +share/locale/hi/LC_MESSAGES/kcm_pci.mo +share/locale/hi/LC_MESSAGES/kcmdevinfo.mo +share/locale/hi/LC_MESSAGES/kcminfo.mo +share/locale/hi/LC_MESSAGES/kcmnic.mo +share/locale/hi/LC_MESSAGES/kcmopengl.mo +share/locale/hi/LC_MESSAGES/kcmsamba.mo +share/locale/hi/LC_MESSAGES/kcmusb.mo +share/locale/hi/LC_MESSAGES/kcmview1394.mo +share/locale/hi/LC_MESSAGES/kinfocenter.mo +share/locale/hne/LC_MESSAGES/kcm_memory.mo +share/locale/hne/LC_MESSAGES/kcm_pci.mo +share/locale/hne/LC_MESSAGES/kcminfo.mo +share/locale/hne/LC_MESSAGES/kcmopengl.mo +share/locale/hne/LC_MESSAGES/kcmsamba.mo +share/locale/hne/LC_MESSAGES/kcmusb.mo +share/locale/hne/LC_MESSAGES/kcmview1394.mo +share/locale/hne/LC_MESSAGES/kinfocenter.mo +share/locale/hr/LC_MESSAGES/kcm_memory.mo +share/locale/hr/LC_MESSAGES/kcm_pci.mo +share/locale/hr/LC_MESSAGES/kcmdevinfo.mo +share/locale/hr/LC_MESSAGES/kcminfo.mo +share/locale/hr/LC_MESSAGES/kcmnic.mo +share/locale/hr/LC_MESSAGES/kcmopengl.mo +share/locale/hr/LC_MESSAGES/kcmsamba.mo +share/locale/hr/LC_MESSAGES/kcmusb.mo +share/locale/hr/LC_MESSAGES/kcmview1394.mo +share/locale/hr/LC_MESSAGES/kinfocenter.mo +share/locale/hsb/LC_MESSAGES/kcm_memory.mo +share/locale/hsb/LC_MESSAGES/kcm_pci.mo +share/locale/hsb/LC_MESSAGES/kcminfo.mo +share/locale/hsb/LC_MESSAGES/kcmopengl.mo +share/locale/hsb/LC_MESSAGES/kcmsamba.mo +share/locale/hsb/LC_MESSAGES/kcmusb.mo +share/locale/hsb/LC_MESSAGES/kcmview1394.mo +share/locale/hsb/LC_MESSAGES/kinfocenter.mo +share/locale/hu/LC_MESSAGES/kcm-about-distro.mo +share/locale/hu/LC_MESSAGES/kcm_energyinfo.mo +share/locale/hu/LC_MESSAGES/kcm_fileindexermonitor.mo +share/locale/hu/LC_MESSAGES/kcm_memory.mo +share/locale/hu/LC_MESSAGES/kcm_pci.mo +share/locale/hu/LC_MESSAGES/kcmdevinfo.mo +share/locale/hu/LC_MESSAGES/kcminfo.mo +share/locale/hu/LC_MESSAGES/kcmnic.mo +share/locale/hu/LC_MESSAGES/kcmopengl.mo +share/locale/hu/LC_MESSAGES/kcmsamba.mo +share/locale/hu/LC_MESSAGES/kcmusb.mo +share/locale/hu/LC_MESSAGES/kcmview1394.mo +share/locale/hu/LC_MESSAGES/kinfocenter.mo +share/locale/ia/LC_MESSAGES/kcm-about-distro.mo +share/locale/ia/LC_MESSAGES/kcm_energyinfo.mo +share/locale/ia/LC_MESSAGES/kcm_fileindexermonitor.mo +share/locale/ia/LC_MESSAGES/kcm_memory.mo +share/locale/ia/LC_MESSAGES/kcm_pci.mo +share/locale/ia/LC_MESSAGES/kcmdevinfo.mo +share/locale/ia/LC_MESSAGES/kcminfo.mo +share/locale/ia/LC_MESSAGES/kcmnic.mo +share/locale/ia/LC_MESSAGES/kcmopengl.mo +share/locale/ia/LC_MESSAGES/kcmsamba.mo +share/locale/ia/LC_MESSAGES/kcmusb.mo +share/locale/ia/LC_MESSAGES/kcmview1394.mo +share/locale/ia/LC_MESSAGES/kinfocenter.mo +share/locale/id/LC_MESSAGES/kcm_memory.mo +share/locale/id/LC_MESSAGES/kcm_pci.mo +share/locale/id/LC_MESSAGES/kcmdevinfo.mo +share/locale/id/LC_MESSAGES/kcminfo.mo +share/locale/id/LC_MESSAGES/kcmnic.mo +share/locale/id/LC_MESSAGES/kcmopengl.mo +share/locale/id/LC_MESSAGES/kcmsamba.mo +share/locale/id/LC_MESSAGES/kcmusb.mo +share/locale/id/LC_MESSAGES/kcmview1394.mo +share/locale/id/LC_MESSAGES/kinfocenter.mo +share/locale/is/LC_MESSAGES/kcm_memory.mo +share/locale/is/LC_MESSAGES/kcm_pci.mo +share/locale/is/LC_MESSAGES/kcmdevinfo.mo +share/locale/is/LC_MESSAGES/kcminfo.mo +share/locale/is/LC_MESSAGES/kcmnic.mo +share/locale/is/LC_MESSAGES/kcmopengl.mo +share/locale/is/LC_MESSAGES/kcmsamba.mo +share/locale/is/LC_MESSAGES/kcmusb.mo +share/locale/is/LC_MESSAGES/kcmview1394.mo +share/locale/is/LC_MESSAGES/kinfocenter.mo +share/locale/it/LC_MESSAGES/kcm-about-distro.mo +share/locale/it/LC_MESSAGES/kcm_energyinfo.mo +share/locale/it/LC_MESSAGES/kcm_fileindexermonitor.mo +share/locale/it/LC_MESSAGES/kcm_memory.mo +share/locale/it/LC_MESSAGES/kcm_pci.mo +share/locale/it/LC_MESSAGES/kcmdevinfo.mo +share/locale/it/LC_MESSAGES/kcminfo.mo +share/locale/it/LC_MESSAGES/kcmnic.mo +share/locale/it/LC_MESSAGES/kcmopengl.mo +share/locale/it/LC_MESSAGES/kcmsamba.mo +share/locale/it/LC_MESSAGES/kcmusb.mo +share/locale/it/LC_MESSAGES/kcmview1394.mo +share/locale/it/LC_MESSAGES/kinfocenter.mo +share/locale/ja/LC_MESSAGES/kcm-about-distro.mo +share/locale/ja/LC_MESSAGES/kcm_energyinfo.mo +share/locale/ja/LC_MESSAGES/kcm_fileindexermonitor.mo +share/locale/ja/LC_MESSAGES/kcm_memory.mo +share/locale/ja/LC_MESSAGES/kcm_pci.mo +share/locale/ja/LC_MESSAGES/kcmdevinfo.mo +share/locale/ja/LC_MESSAGES/kcminfo.mo +share/locale/ja/LC_MESSAGES/kcmnic.mo +share/locale/ja/LC_MESSAGES/kcmopengl.mo +share/locale/ja/LC_MESSAGES/kcmsamba.mo +share/locale/ja/LC_MESSAGES/kcmusb.mo +share/locale/ja/LC_MESSAGES/kcmview1394.mo +share/locale/ja/LC_MESSAGES/kinfocenter.mo +share/locale/kk/LC_MESSAGES/kcm_memory.mo +share/locale/kk/LC_MESSAGES/kcm_pci.mo +share/locale/kk/LC_MESSAGES/kcmdevinfo.mo +share/locale/kk/LC_MESSAGES/kcminfo.mo +share/locale/kk/LC_MESSAGES/kcmnic.mo +share/locale/kk/LC_MESSAGES/kcmopengl.mo +share/locale/kk/LC_MESSAGES/kcmsamba.mo +share/locale/kk/LC_MESSAGES/kcmusb.mo +share/locale/kk/LC_MESSAGES/kcmview1394.mo +share/locale/kk/LC_MESSAGES/kinfocenter.mo +share/locale/km/LC_MESSAGES/kcm_memory.mo +share/locale/km/LC_MESSAGES/kcm_pci.mo +share/locale/km/LC_MESSAGES/kcmdevinfo.mo +share/locale/km/LC_MESSAGES/kcminfo.mo +share/locale/km/LC_MESSAGES/kcmnic.mo +share/locale/km/LC_MESSAGES/kcmopengl.mo +share/locale/km/LC_MESSAGES/kcmsamba.mo +share/locale/km/LC_MESSAGES/kcmusb.mo +share/locale/km/LC_MESSAGES/kcmview1394.mo +share/locale/km/LC_MESSAGES/kinfocenter.mo +share/locale/kn/LC_MESSAGES/kcm_memory.mo +share/locale/kn/LC_MESSAGES/kcm_pci.mo +share/locale/kn/LC_MESSAGES/kcmdevinfo.mo +share/locale/kn/LC_MESSAGES/kcminfo.mo +share/locale/kn/LC_MESSAGES/kcmnic.mo +share/locale/kn/LC_MESSAGES/kcmopengl.mo +share/locale/kn/LC_MESSAGES/kcmsamba.mo +share/locale/kn/LC_MESSAGES/kcmusb.mo +share/locale/kn/LC_MESSAGES/kcmview1394.mo +share/locale/kn/LC_MESSAGES/kinfocenter.mo +share/locale/ko/LC_MESSAGES/kcm-about-distro.mo +share/locale/ko/LC_MESSAGES/kcm_energyinfo.mo +share/locale/ko/LC_MESSAGES/kcm_fileindexermonitor.mo +share/locale/ko/LC_MESSAGES/kcm_memory.mo +share/locale/ko/LC_MESSAGES/kcm_pci.mo +share/locale/ko/LC_MESSAGES/kcmdevinfo.mo +share/locale/ko/LC_MESSAGES/kcminfo.mo +share/locale/ko/LC_MESSAGES/kcmnic.mo +share/locale/ko/LC_MESSAGES/kcmopengl.mo +share/locale/ko/LC_MESSAGES/kcmsamba.mo +share/locale/ko/LC_MESSAGES/kcmusb.mo +share/locale/ko/LC_MESSAGES/kcmview1394.mo +share/locale/ko/LC_MESSAGES/kinfocenter.mo +share/locale/ku/LC_MESSAGES/kcm_memory.mo +share/locale/ku/LC_MESSAGES/kcm_pci.mo +share/locale/ku/LC_MESSAGES/kcminfo.mo +share/locale/ku/LC_MESSAGES/kcmopengl.mo +share/locale/ku/LC_MESSAGES/kcmsamba.mo +share/locale/ku/LC_MESSAGES/kcmusb.mo +share/locale/ku/LC_MESSAGES/kcmview1394.mo +share/locale/ku/LC_MESSAGES/kinfocenter.mo +share/locale/lt/LC_MESSAGES/kcm-about-distro.mo +share/locale/lt/LC_MESSAGES/kcm_energyinfo.mo +share/locale/lt/LC_MESSAGES/kcm_memory.mo +share/locale/lt/LC_MESSAGES/kcm_pci.mo +share/locale/lt/LC_MESSAGES/kcmdevinfo.mo +share/locale/lt/LC_MESSAGES/kcminfo.mo +share/locale/lt/LC_MESSAGES/kcmnic.mo +share/locale/lt/LC_MESSAGES/kcmopengl.mo +share/locale/lt/LC_MESSAGES/kcmsamba.mo +share/locale/lt/LC_MESSAGES/kcmusb.mo +share/locale/lt/LC_MESSAGES/kcmview1394.mo +share/locale/lt/LC_MESSAGES/kinfocenter.mo +share/locale/lv/LC_MESSAGES/kcm_memory.mo +share/locale/lv/LC_MESSAGES/kcm_pci.mo +share/locale/lv/LC_MESSAGES/kcmdevinfo.mo +share/locale/lv/LC_MESSAGES/kcminfo.mo +share/locale/lv/LC_MESSAGES/kcmnic.mo +share/locale/lv/LC_MESSAGES/kcmopengl.mo +share/locale/lv/LC_MESSAGES/kcmsamba.mo +share/locale/lv/LC_MESSAGES/kcmusb.mo +share/locale/lv/LC_MESSAGES/kcmview1394.mo +share/locale/lv/LC_MESSAGES/kinfocenter.mo +share/locale/mai/LC_MESSAGES/kcm_memory.mo +share/locale/mai/LC_MESSAGES/kcm_pci.mo +share/locale/mai/LC_MESSAGES/kcmdevinfo.mo +share/locale/mai/LC_MESSAGES/kcminfo.mo +share/locale/mai/LC_MESSAGES/kcmnic.mo +share/locale/mai/LC_MESSAGES/kcmopengl.mo +share/locale/mai/LC_MESSAGES/kcmsamba.mo +share/locale/mai/LC_MESSAGES/kcmusb.mo +share/locale/mai/LC_MESSAGES/kcmview1394.mo +share/locale/mai/LC_MESSAGES/kinfocenter.mo +share/locale/mk/LC_MESSAGES/kcm_memory.mo +share/locale/mk/LC_MESSAGES/kcm_pci.mo +share/locale/mk/LC_MESSAGES/kcminfo.mo +share/locale/mk/LC_MESSAGES/kcmsamba.mo +share/locale/mk/LC_MESSAGES/kcmusb.mo +share/locale/mk/LC_MESSAGES/kcmview1394.mo +share/locale/mk/LC_MESSAGES/kinfocenter.mo +share/locale/ml/LC_MESSAGES/kcm_memory.mo +share/locale/ml/LC_MESSAGES/kcm_pci.mo +share/locale/ml/LC_MESSAGES/kcmdevinfo.mo +share/locale/ml/LC_MESSAGES/kcminfo.mo +share/locale/ml/LC_MESSAGES/kcmnic.mo +share/locale/ml/LC_MESSAGES/kcmopengl.mo +share/locale/ml/LC_MESSAGES/kcmsamba.mo +share/locale/ml/LC_MESSAGES/kcmusb.mo +share/locale/ml/LC_MESSAGES/kcmview1394.mo +share/locale/ml/LC_MESSAGES/kinfocenter.mo +share/locale/mr/LC_MESSAGES/kcm_memory.mo +share/locale/mr/LC_MESSAGES/kcm_pci.mo +share/locale/mr/LC_MESSAGES/kcmdevinfo.mo +share/locale/mr/LC_MESSAGES/kcminfo.mo +share/locale/mr/LC_MESSAGES/kcmnic.mo +share/locale/mr/LC_MESSAGES/kcmopengl.mo +share/locale/mr/LC_MESSAGES/kcmsamba.mo +share/locale/mr/LC_MESSAGES/kcmusb.mo +share/locale/mr/LC_MESSAGES/kcmview1394.mo +share/locale/mr/LC_MESSAGES/kinfocenter.mo +share/locale/ms/LC_MESSAGES/kcm_memory.mo +share/locale/ms/LC_MESSAGES/kcm_pci.mo +share/locale/ms/LC_MESSAGES/kcmdevinfo.mo +share/locale/ms/LC_MESSAGES/kcminfo.mo +share/locale/ms/LC_MESSAGES/kcmnic.mo +share/locale/ms/LC_MESSAGES/kcmopengl.mo +share/locale/ms/LC_MESSAGES/kcmsamba.mo +share/locale/ms/LC_MESSAGES/kcmusb.mo +share/locale/ms/LC_MESSAGES/kcmview1394.mo +share/locale/ms/LC_MESSAGES/kinfocenter.mo +share/locale/nb/LC_MESSAGES/kcm-about-distro.mo +share/locale/nb/LC_MESSAGES/kcm_energyinfo.mo +share/locale/nb/LC_MESSAGES/kcm_memory.mo +share/locale/nb/LC_MESSAGES/kcm_pci.mo +share/locale/nb/LC_MESSAGES/kcmdevinfo.mo +share/locale/nb/LC_MESSAGES/kcminfo.mo +share/locale/nb/LC_MESSAGES/kcmnic.mo +share/locale/nb/LC_MESSAGES/kcmopengl.mo +share/locale/nb/LC_MESSAGES/kcmsamba.mo +share/locale/nb/LC_MESSAGES/kcmusb.mo +share/locale/nb/LC_MESSAGES/kcmview1394.mo +share/locale/nb/LC_MESSAGES/kinfocenter.mo +share/locale/nds/LC_MESSAGES/kcm_memory.mo +share/locale/nds/LC_MESSAGES/kcm_pci.mo +share/locale/nds/LC_MESSAGES/kcmdevinfo.mo +share/locale/nds/LC_MESSAGES/kcminfo.mo +share/locale/nds/LC_MESSAGES/kcmnic.mo +share/locale/nds/LC_MESSAGES/kcmopengl.mo +share/locale/nds/LC_MESSAGES/kcmsamba.mo +share/locale/nds/LC_MESSAGES/kcmusb.mo +share/locale/nds/LC_MESSAGES/kcmview1394.mo +share/locale/nds/LC_MESSAGES/kinfocenter.mo +share/locale/ne/LC_MESSAGES/kcminfo.mo +share/locale/ne/LC_MESSAGES/kcmsamba.mo +share/locale/ne/LC_MESSAGES/kcmusb.mo +share/locale/ne/LC_MESSAGES/kcmview1394.mo +share/locale/ne/LC_MESSAGES/kinfocenter.mo +share/locale/nl/LC_MESSAGES/kcm-about-distro.mo +share/locale/nl/LC_MESSAGES/kcm_energyinfo.mo +share/locale/nl/LC_MESSAGES/kcm_fileindexermonitor.mo +share/locale/nl/LC_MESSAGES/kcm_memory.mo +share/locale/nl/LC_MESSAGES/kcm_pci.mo +share/locale/nl/LC_MESSAGES/kcmdevinfo.mo +share/locale/nl/LC_MESSAGES/kcminfo.mo +share/locale/nl/LC_MESSAGES/kcmnic.mo +share/locale/nl/LC_MESSAGES/kcmopengl.mo +share/locale/nl/LC_MESSAGES/kcmsamba.mo +share/locale/nl/LC_MESSAGES/kcmusb.mo +share/locale/nl/LC_MESSAGES/kcmview1394.mo +share/locale/nl/LC_MESSAGES/kinfocenter.mo +share/locale/nn/LC_MESSAGES/kcm-about-distro.mo +share/locale/nn/LC_MESSAGES/kcm_energyinfo.mo +share/locale/nn/LC_MESSAGES/kcm_fileindexermonitor.mo +share/locale/nn/LC_MESSAGES/kcm_memory.mo +share/locale/nn/LC_MESSAGES/kcm_pci.mo +share/locale/nn/LC_MESSAGES/kcmdevinfo.mo +share/locale/nn/LC_MESSAGES/kcminfo.mo +share/locale/nn/LC_MESSAGES/kcmnic.mo +share/locale/nn/LC_MESSAGES/kcmopengl.mo +share/locale/nn/LC_MESSAGES/kcmsamba.mo +share/locale/nn/LC_MESSAGES/kcmusb.mo +share/locale/nn/LC_MESSAGES/kcmview1394.mo +share/locale/nn/LC_MESSAGES/kinfocenter.mo +share/locale/oc/LC_MESSAGES/kcminfo.mo +share/locale/oc/LC_MESSAGES/kcmsamba.mo +share/locale/oc/LC_MESSAGES/kcmusb.mo +share/locale/oc/LC_MESSAGES/kcmview1394.mo +share/locale/oc/LC_MESSAGES/kinfocenter.mo +share/locale/or/LC_MESSAGES/kcm_memory.mo +share/locale/or/LC_MESSAGES/kcm_pci.mo +share/locale/or/LC_MESSAGES/kcminfo.mo +share/locale/or/LC_MESSAGES/kcmopengl.mo +share/locale/or/LC_MESSAGES/kcmsamba.mo +share/locale/or/LC_MESSAGES/kcmusb.mo +share/locale/or/LC_MESSAGES/kcmview1394.mo +share/locale/or/LC_MESSAGES/kinfocenter.mo +share/locale/pa/LC_MESSAGES/kcm-about-distro.mo +share/locale/pa/LC_MESSAGES/kcm_energyinfo.mo +share/locale/pa/LC_MESSAGES/kcm_memory.mo +share/locale/pa/LC_MESSAGES/kcm_pci.mo +share/locale/pa/LC_MESSAGES/kcmdevinfo.mo +share/locale/pa/LC_MESSAGES/kcminfo.mo +share/locale/pa/LC_MESSAGES/kcmnic.mo +share/locale/pa/LC_MESSAGES/kcmopengl.mo +share/locale/pa/LC_MESSAGES/kcmsamba.mo +share/locale/pa/LC_MESSAGES/kcmusb.mo +share/locale/pa/LC_MESSAGES/kcmview1394.mo +share/locale/pa/LC_MESSAGES/kinfocenter.mo +share/locale/pl/LC_MESSAGES/kcm-about-distro.mo +share/locale/pl/LC_MESSAGES/kcm_energyinfo.mo +share/locale/pl/LC_MESSAGES/kcm_fileindexermonitor.mo +share/locale/pl/LC_MESSAGES/kcm_memory.mo +share/locale/pl/LC_MESSAGES/kcm_pci.mo +share/locale/pl/LC_MESSAGES/kcmdevinfo.mo +share/locale/pl/LC_MESSAGES/kcminfo.mo +share/locale/pl/LC_MESSAGES/kcmnic.mo +share/locale/pl/LC_MESSAGES/kcmopengl.mo +share/locale/pl/LC_MESSAGES/kcmsamba.mo +share/locale/pl/LC_MESSAGES/kcmusb.mo +share/locale/pl/LC_MESSAGES/kcmview1394.mo +share/locale/pl/LC_MESSAGES/kinfocenter.mo +share/locale/pt/LC_MESSAGES/kcm-about-distro.mo +share/locale/pt/LC_MESSAGES/kcm_energyinfo.mo +share/locale/pt/LC_MESSAGES/kcm_fileindexermonitor.mo +share/locale/pt/LC_MESSAGES/kcm_memory.mo +share/locale/pt/LC_MESSAGES/kcm_pci.mo +share/locale/pt/LC_MESSAGES/kcmdevinfo.mo +share/locale/pt/LC_MESSAGES/kcminfo.mo +share/locale/pt/LC_MESSAGES/kcmnic.mo +share/locale/pt/LC_MESSAGES/kcmopengl.mo +share/locale/pt/LC_MESSAGES/kcmsamba.mo +share/locale/pt/LC_MESSAGES/kcmusb.mo +share/locale/pt/LC_MESSAGES/kcmview1394.mo +share/locale/pt/LC_MESSAGES/kinfocenter.mo +share/locale/pt_BR/LC_MESSAGES/kcm-about-distro.mo +share/locale/pt_BR/LC_MESSAGES/kcm_energyinfo.mo +share/locale/pt_BR/LC_MESSAGES/kcm_fileindexermonitor.mo +share/locale/pt_BR/LC_MESSAGES/kcm_memory.mo +share/locale/pt_BR/LC_MESSAGES/kcm_pci.mo +share/locale/pt_BR/LC_MESSAGES/kcmdevinfo.mo +share/locale/pt_BR/LC_MESSAGES/kcminfo.mo +share/locale/pt_BR/LC_MESSAGES/kcmnic.mo +share/locale/pt_BR/LC_MESSAGES/kcmopengl.mo +share/locale/pt_BR/LC_MESSAGES/kcmsamba.mo +share/locale/pt_BR/LC_MESSAGES/kcmusb.mo +share/locale/pt_BR/LC_MESSAGES/kcmview1394.mo +share/locale/pt_BR/LC_MESSAGES/kinfocenter.mo +share/locale/ro/LC_MESSAGES/kcm-about-distro.mo +share/locale/ro/LC_MESSAGES/kcm_energyinfo.mo +share/locale/ro/LC_MESSAGES/kcm_memory.mo +share/locale/ro/LC_MESSAGES/kcm_pci.mo +share/locale/ro/LC_MESSAGES/kcmdevinfo.mo +share/locale/ro/LC_MESSAGES/kcminfo.mo +share/locale/ro/LC_MESSAGES/kcmnic.mo +share/locale/ro/LC_MESSAGES/kcmopengl.mo +share/locale/ro/LC_MESSAGES/kcmsamba.mo +share/locale/ro/LC_MESSAGES/kcmusb.mo +share/locale/ro/LC_MESSAGES/kcmview1394.mo +share/locale/ro/LC_MESSAGES/kinfocenter.mo +share/locale/ru/LC_MESSAGES/kcm-about-distro.mo +share/locale/ru/LC_MESSAGES/kcm_energyinfo.mo +share/locale/ru/LC_MESSAGES/kcm_fileindexermonitor.mo +share/locale/ru/LC_MESSAGES/kcm_memory.mo +share/locale/ru/LC_MESSAGES/kcm_pci.mo +share/locale/ru/LC_MESSAGES/kcmdevinfo.mo +share/locale/ru/LC_MESSAGES/kcminfo.mo +share/locale/ru/LC_MESSAGES/kcmnic.mo +share/locale/ru/LC_MESSAGES/kcmopengl.mo +share/locale/ru/LC_MESSAGES/kcmsamba.mo +share/locale/ru/LC_MESSAGES/kcmusb.mo +share/locale/ru/LC_MESSAGES/kcmview1394.mo +share/locale/ru/LC_MESSAGES/kinfocenter.mo +share/locale/se/LC_MESSAGES/kcminfo.mo +share/locale/se/LC_MESSAGES/kcmnic.mo +share/locale/se/LC_MESSAGES/kcmsamba.mo +share/locale/se/LC_MESSAGES/kcmusb.mo +share/locale/se/LC_MESSAGES/kcmview1394.mo +share/locale/si/LC_MESSAGES/kcm_memory.mo +share/locale/si/LC_MESSAGES/kcm_pci.mo +share/locale/si/LC_MESSAGES/kcmdevinfo.mo +share/locale/si/LC_MESSAGES/kcminfo.mo +share/locale/si/LC_MESSAGES/kcmopengl.mo +share/locale/si/LC_MESSAGES/kcmsamba.mo +share/locale/si/LC_MESSAGES/kcmusb.mo +share/locale/si/LC_MESSAGES/kcmview1394.mo +share/locale/si/LC_MESSAGES/kinfocenter.mo +share/locale/sk/LC_MESSAGES/kcm-about-distro.mo +share/locale/sk/LC_MESSAGES/kcm_energyinfo.mo +share/locale/sk/LC_MESSAGES/kcm_fileindexermonitor.mo +share/locale/sk/LC_MESSAGES/kcm_memory.mo +share/locale/sk/LC_MESSAGES/kcm_pci.mo +share/locale/sk/LC_MESSAGES/kcmdevinfo.mo +share/locale/sk/LC_MESSAGES/kcminfo.mo +share/locale/sk/LC_MESSAGES/kcmnic.mo +share/locale/sk/LC_MESSAGES/kcmopengl.mo +share/locale/sk/LC_MESSAGES/kcmsamba.mo +share/locale/sk/LC_MESSAGES/kcmusb.mo +share/locale/sk/LC_MESSAGES/kcmview1394.mo +share/locale/sk/LC_MESSAGES/kinfocenter.mo +share/locale/sl/LC_MESSAGES/kcm-about-distro.mo +share/locale/sl/LC_MESSAGES/kcm_energyinfo.mo +share/locale/sl/LC_MESSAGES/kcm_fileindexermonitor.mo +share/locale/sl/LC_MESSAGES/kcm_memory.mo +share/locale/sl/LC_MESSAGES/kcm_pci.mo +share/locale/sl/LC_MESSAGES/kcmdevinfo.mo +share/locale/sl/LC_MESSAGES/kcminfo.mo +share/locale/sl/LC_MESSAGES/kcmnic.mo +share/locale/sl/LC_MESSAGES/kcmopengl.mo +share/locale/sl/LC_MESSAGES/kcmsamba.mo +share/locale/sl/LC_MESSAGES/kcmusb.mo +share/locale/sl/LC_MESSAGES/kcmview1394.mo +share/locale/sl/LC_MESSAGES/kinfocenter.mo +share/locale/sq/LC_MESSAGES/kcm_memory.mo +share/locale/sq/LC_MESSAGES/kcm_pci.mo +share/locale/sq/LC_MESSAGES/kcminfo.mo +share/locale/sq/LC_MESSAGES/kcmnic.mo +share/locale/sq/LC_MESSAGES/kcmopengl.mo +share/locale/sq/LC_MESSAGES/kcmsamba.mo +share/locale/sq/LC_MESSAGES/kcmusb.mo +share/locale/sq/LC_MESSAGES/kcmview1394.mo +share/locale/sq/LC_MESSAGES/kinfocenter.mo +share/locale/sr/LC_MESSAGES/kcm-about-distro.mo +share/locale/sr/LC_MESSAGES/kcm_energyinfo.mo +share/locale/sr/LC_MESSAGES/kcm_fileindexermonitor.mo +share/locale/sr/LC_MESSAGES/kcm_memory.mo +share/locale/sr/LC_MESSAGES/kcm_pci.mo +share/locale/sr/LC_MESSAGES/kcmdevinfo.mo +share/locale/sr/LC_MESSAGES/kcminfo.mo +share/locale/sr/LC_MESSAGES/kcmnic.mo +share/locale/sr/LC_MESSAGES/kcmopengl.mo +share/locale/sr/LC_MESSAGES/kcmsamba.mo +share/locale/sr/LC_MESSAGES/kcmusb.mo +share/locale/sr/LC_MESSAGES/kcmview1394.mo +share/locale/sr/LC_MESSAGES/kinfocenter.mo +share/locale/sr@ijekavian/LC_MESSAGES/kcm-about-distro.mo +share/locale/sr@ijekavian/LC_MESSAGES/kcm_energyinfo.mo +share/locale/sr@ijekavian/LC_MESSAGES/kcm_fileindexermonitor.mo +share/locale/sr@ijekavian/LC_MESSAGES/kcm_memory.mo +share/locale/sr@ijekavian/LC_MESSAGES/kcm_pci.mo +share/locale/sr@ijekavian/LC_MESSAGES/kcmdevinfo.mo +share/locale/sr@ijekavian/LC_MESSAGES/kcminfo.mo +share/locale/sr@ijekavian/LC_MESSAGES/kcmnic.mo +share/locale/sr@ijekavian/LC_MESSAGES/kcmopengl.mo +share/locale/sr@ijekavian/LC_MESSAGES/kcmsamba.mo +share/locale/sr@ijekavian/LC_MESSAGES/kcmusb.mo +share/locale/sr@ijekavian/LC_MESSAGES/kcmview1394.mo +share/locale/sr@ijekavian/LC_MESSAGES/kinfocenter.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm-about-distro.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_energyinfo.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_fileindexermonitor.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_memory.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_pci.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmdevinfo.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kcminfo.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmnic.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmopengl.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmsamba.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmusb.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmview1394.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kinfocenter.mo +share/locale/sr@latin/LC_MESSAGES/kcm-about-distro.mo +share/locale/sr@latin/LC_MESSAGES/kcm_energyinfo.mo +share/locale/sr@latin/LC_MESSAGES/kcm_fileindexermonitor.mo +share/locale/sr@latin/LC_MESSAGES/kcm_memory.mo +share/locale/sr@latin/LC_MESSAGES/kcm_pci.mo +share/locale/sr@latin/LC_MESSAGES/kcmdevinfo.mo +share/locale/sr@latin/LC_MESSAGES/kcminfo.mo +share/locale/sr@latin/LC_MESSAGES/kcmnic.mo +share/locale/sr@latin/LC_MESSAGES/kcmopengl.mo +share/locale/sr@latin/LC_MESSAGES/kcmsamba.mo +share/locale/sr@latin/LC_MESSAGES/kcmusb.mo +share/locale/sr@latin/LC_MESSAGES/kcmview1394.mo +share/locale/sr@latin/LC_MESSAGES/kinfocenter.mo +share/locale/sv/LC_MESSAGES/kcm-about-distro.mo +share/locale/sv/LC_MESSAGES/kcm_energyinfo.mo +share/locale/sv/LC_MESSAGES/kcm_fileindexermonitor.mo +share/locale/sv/LC_MESSAGES/kcm_memory.mo +share/locale/sv/LC_MESSAGES/kcm_pci.mo +share/locale/sv/LC_MESSAGES/kcmdevinfo.mo +share/locale/sv/LC_MESSAGES/kcminfo.mo +share/locale/sv/LC_MESSAGES/kcmnic.mo +share/locale/sv/LC_MESSAGES/kcmopengl.mo +share/locale/sv/LC_MESSAGES/kcmsamba.mo +share/locale/sv/LC_MESSAGES/kcmusb.mo +share/locale/sv/LC_MESSAGES/kcmview1394.mo +share/locale/sv/LC_MESSAGES/kinfocenter.mo +share/locale/ta/LC_MESSAGES/kcm_memory.mo +share/locale/ta/LC_MESSAGES/kcm_pci.mo +share/locale/ta/LC_MESSAGES/kcminfo.mo +share/locale/ta/LC_MESSAGES/kcmopengl.mo +share/locale/ta/LC_MESSAGES/kcmsamba.mo +share/locale/ta/LC_MESSAGES/kcmusb.mo +share/locale/ta/LC_MESSAGES/kcmview1394.mo +share/locale/ta/LC_MESSAGES/kinfocenter.mo +share/locale/te/LC_MESSAGES/kcm_memory.mo +share/locale/te/LC_MESSAGES/kcm_pci.mo +share/locale/te/LC_MESSAGES/kcminfo.mo +share/locale/te/LC_MESSAGES/kcmopengl.mo +share/locale/te/LC_MESSAGES/kcmsamba.mo +share/locale/te/LC_MESSAGES/kcmusb.mo +share/locale/te/LC_MESSAGES/kcmview1394.mo +share/locale/te/LC_MESSAGES/kinfocenter.mo +share/locale/tg/LC_MESSAGES/kcm_memory.mo +share/locale/tg/LC_MESSAGES/kcm_pci.mo +share/locale/tg/LC_MESSAGES/kcmdevinfo.mo +share/locale/tg/LC_MESSAGES/kcminfo.mo +share/locale/tg/LC_MESSAGES/kcmnic.mo +share/locale/tg/LC_MESSAGES/kcmopengl.mo +share/locale/tg/LC_MESSAGES/kcmsamba.mo +share/locale/tg/LC_MESSAGES/kcmusb.mo +share/locale/tg/LC_MESSAGES/kcmview1394.mo +share/locale/tg/LC_MESSAGES/kinfocenter.mo +share/locale/th/LC_MESSAGES/kcm_memory.mo +share/locale/th/LC_MESSAGES/kcm_pci.mo +share/locale/th/LC_MESSAGES/kcmdevinfo.mo +share/locale/th/LC_MESSAGES/kcminfo.mo +share/locale/th/LC_MESSAGES/kcmnic.mo +share/locale/th/LC_MESSAGES/kcmopengl.mo +share/locale/th/LC_MESSAGES/kcmsamba.mo +share/locale/th/LC_MESSAGES/kcmusb.mo +share/locale/th/LC_MESSAGES/kcmview1394.mo +share/locale/th/LC_MESSAGES/kinfocenter.mo +share/locale/tr/LC_MESSAGES/kcm-about-distro.mo +share/locale/tr/LC_MESSAGES/kcm_energyinfo.mo +share/locale/tr/LC_MESSAGES/kcm_fileindexermonitor.mo +share/locale/tr/LC_MESSAGES/kcm_memory.mo +share/locale/tr/LC_MESSAGES/kcm_pci.mo +share/locale/tr/LC_MESSAGES/kcmdevinfo.mo +share/locale/tr/LC_MESSAGES/kcminfo.mo +share/locale/tr/LC_MESSAGES/kcmnic.mo +share/locale/tr/LC_MESSAGES/kcmopengl.mo +share/locale/tr/LC_MESSAGES/kcmsamba.mo +share/locale/tr/LC_MESSAGES/kcmusb.mo +share/locale/tr/LC_MESSAGES/kcmview1394.mo +share/locale/tr/LC_MESSAGES/kinfocenter.mo +share/locale/ug/LC_MESSAGES/kcm-about-distro.mo +share/locale/ug/LC_MESSAGES/kcm_memory.mo +share/locale/ug/LC_MESSAGES/kcm_pci.mo +share/locale/ug/LC_MESSAGES/kcmdevinfo.mo +share/locale/ug/LC_MESSAGES/kcminfo.mo +share/locale/ug/LC_MESSAGES/kcmnic.mo +share/locale/ug/LC_MESSAGES/kcmopengl.mo +share/locale/ug/LC_MESSAGES/kcmsamba.mo +share/locale/ug/LC_MESSAGES/kcmusb.mo +share/locale/ug/LC_MESSAGES/kcmview1394.mo +share/locale/ug/LC_MESSAGES/kinfocenter.mo +share/locale/uk/LC_MESSAGES/kcm-about-distro.mo +share/locale/uk/LC_MESSAGES/kcm_energyinfo.mo +share/locale/uk/LC_MESSAGES/kcm_fileindexermonitor.mo +share/locale/uk/LC_MESSAGES/kcm_memory.mo +share/locale/uk/LC_MESSAGES/kcm_pci.mo +share/locale/uk/LC_MESSAGES/kcmdevinfo.mo +share/locale/uk/LC_MESSAGES/kcminfo.mo +share/locale/uk/LC_MESSAGES/kcmnic.mo +share/locale/uk/LC_MESSAGES/kcmopengl.mo +share/locale/uk/LC_MESSAGES/kcmsamba.mo +share/locale/uk/LC_MESSAGES/kcmusb.mo +share/locale/uk/LC_MESSAGES/kcmview1394.mo +share/locale/uk/LC_MESSAGES/kinfocenter.mo +share/locale/uz/LC_MESSAGES/kcminfo.mo +share/locale/uz/LC_MESSAGES/kcmsamba.mo +share/locale/uz/LC_MESSAGES/kcmusb.mo +share/locale/uz/LC_MESSAGES/kcmview1394.mo +share/locale/uz/LC_MESSAGES/kinfocenter.mo +share/locale/uz@cyrillic/LC_MESSAGES/kcminfo.mo +share/locale/uz@cyrillic/LC_MESSAGES/kcmsamba.mo +share/locale/uz@cyrillic/LC_MESSAGES/kcmusb.mo +share/locale/uz@cyrillic/LC_MESSAGES/kcmview1394.mo +share/locale/uz@cyrillic/LC_MESSAGES/kinfocenter.mo +share/locale/vi/LC_MESSAGES/kcminfo.mo +share/locale/vi/LC_MESSAGES/kcmsamba.mo +share/locale/vi/LC_MESSAGES/kcmusb.mo +share/locale/vi/LC_MESSAGES/kcmview1394.mo +share/locale/vi/LC_MESSAGES/kinfocenter.mo +share/locale/wa/LC_MESSAGES/kcm_memory.mo +share/locale/wa/LC_MESSAGES/kcm_pci.mo +share/locale/wa/LC_MESSAGES/kcmdevinfo.mo +share/locale/wa/LC_MESSAGES/kcminfo.mo +share/locale/wa/LC_MESSAGES/kcmnic.mo +share/locale/wa/LC_MESSAGES/kcmopengl.mo +share/locale/wa/LC_MESSAGES/kcmsamba.mo +share/locale/wa/LC_MESSAGES/kcmusb.mo +share/locale/wa/LC_MESSAGES/kcmview1394.mo +share/locale/wa/LC_MESSAGES/kinfocenter.mo +share/locale/xh/LC_MESSAGES/kcminfo.mo +share/locale/xh/LC_MESSAGES/kcmsamba.mo +share/locale/xh/LC_MESSAGES/kcmusb.mo +share/locale/xh/LC_MESSAGES/kinfocenter.mo +share/locale/zh_CN/LC_MESSAGES/kcm-about-distro.mo +share/locale/zh_CN/LC_MESSAGES/kcm_energyinfo.mo +share/locale/zh_CN/LC_MESSAGES/kcm_fileindexermonitor.mo +share/locale/zh_CN/LC_MESSAGES/kcm_memory.mo +share/locale/zh_CN/LC_MESSAGES/kcm_pci.mo +share/locale/zh_CN/LC_MESSAGES/kcmdevinfo.mo +share/locale/zh_CN/LC_MESSAGES/kcminfo.mo +share/locale/zh_CN/LC_MESSAGES/kcmnic.mo +share/locale/zh_CN/LC_MESSAGES/kcmopengl.mo +share/locale/zh_CN/LC_MESSAGES/kcmsamba.mo +share/locale/zh_CN/LC_MESSAGES/kcmusb.mo +share/locale/zh_CN/LC_MESSAGES/kcmview1394.mo +share/locale/zh_CN/LC_MESSAGES/kinfocenter.mo +share/locale/zh_TW/LC_MESSAGES/kcm-about-distro.mo +share/locale/zh_TW/LC_MESSAGES/kcm_energyinfo.mo +share/locale/zh_TW/LC_MESSAGES/kcm_fileindexermonitor.mo +share/locale/zh_TW/LC_MESSAGES/kcm_memory.mo +share/locale/zh_TW/LC_MESSAGES/kcm_pci.mo +share/locale/zh_TW/LC_MESSAGES/kcmdevinfo.mo +share/locale/zh_TW/LC_MESSAGES/kcminfo.mo +share/locale/zh_TW/LC_MESSAGES/kcmnic.mo +share/locale/zh_TW/LC_MESSAGES/kcmopengl.mo +share/locale/zh_TW/LC_MESSAGES/kcmsamba.mo +share/locale/zh_TW/LC_MESSAGES/kcmusb.mo +share/locale/zh_TW/LC_MESSAGES/kcmview1394.mo +share/locale/zh_TW/LC_MESSAGES/kinfocenter.mo Property changes on: head/sysutils/plasma5-kinfocenter/pkg-plist ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/sysutils/plasma5-kmenuedit/Makefile =================================================================== --- head/sysutils/plasma5-kmenuedit/Makefile (nonexistent) +++ head/sysutils/plasma5-kmenuedit/Makefile (revision 468495) @@ -0,0 +1,19 @@ +# $FreeBSD$ + +PORTNAME= kmenuedit +DISTVERSION= ${KDE_PLASMA_VERSION} +CATEGORIES= sysutils kde kde-plasma + +MAINTAINER= kde@FreeBSD.org +COMMENT= Plasma5 menu editor + +USES= cmake:outsource compiler:c++11-lib cpe gettext kde:5 tar:xz +USE_KDE= auth bookmarks codecs completion config configwidgets \ + coreaddons crash dbusaddons guiaddons ecm emoticons hotkeys \ + i18n iconthemes init itemmodels itemviews jobwidgets \ + kdelibs4support kio notifications parts service solid sonnet \ + textwidgets unitconversion widgetsaddons windowsystem xmlgui +USE_QT5= core dbus gui network printsupport widgets xml\ + buildtools_build qmake_build + +.include Property changes on: head/sysutils/plasma5-kmenuedit/Makefile ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/sysutils/plasma5-kmenuedit/distinfo =================================================================== --- head/sysutils/plasma5-kmenuedit/distinfo (nonexistent) +++ head/sysutils/plasma5-kmenuedit/distinfo (revision 468495) @@ -0,0 +1,3 @@ +TIMESTAMP = 1523811770 +SHA256 (KDE/plasma/5.12.4/kmenuedit-5.12.4.tar.xz) = 29819b6a94e43d28fdbd8172e64ddf9fecb0349b825eab0cb262debd7a026518 +SIZE (KDE/plasma/5.12.4/kmenuedit-5.12.4.tar.xz) = 651916 Property changes on: head/sysutils/plasma5-kmenuedit/distinfo ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/sysutils/plasma5-kmenuedit/pkg-descr =================================================================== --- head/sysutils/plasma5-kmenuedit/pkg-descr (nonexistent) +++ head/sysutils/plasma5-kmenuedit/pkg-descr (revision 468495) @@ -0,0 +1,3 @@ +Plasma5 menu editor. + +WWW: https://www.kde.org/plasma-desktop Property changes on: head/sysutils/plasma5-kmenuedit/pkg-descr ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/sysutils/plasma5-kmenuedit/pkg-plist =================================================================== --- head/sysutils/plasma5-kmenuedit/pkg-plist (nonexistent) +++ head/sysutils/plasma5-kmenuedit/pkg-plist (revision 468495) @@ -0,0 +1,135 @@ +bin/kmenuedit +lib/libkdeinit5_kmenuedit.so +share/applications/org.kde.kmenuedit.desktop +share/doc/HTML/ca/kmenuedit/done.png +share/doc/HTML/ca/kmenuedit/index.cache.bz2 +share/doc/HTML/ca/kmenuedit/index.docbook +share/doc/HTML/ca/kmenuedit/itemname.png +share/doc/HTML/ca/kmenuedit/new.png +share/doc/HTML/ca/kmenuedit/reset.png +share/doc/HTML/ca/kmenuedit/selectinternet.png +share/doc/HTML/ca/kmenuedit/selection.png +share/doc/HTML/de/kmenuedit/index.cache.bz2 +share/doc/HTML/de/kmenuedit/index.docbook +share/doc/HTML/en/kmenuedit/done.png +share/doc/HTML/en/kmenuedit/index.cache.bz2 +share/doc/HTML/en/kmenuedit/index.docbook +share/doc/HTML/en/kmenuedit/itemname.png +share/doc/HTML/en/kmenuedit/new.png +share/doc/HTML/en/kmenuedit/reset.png +share/doc/HTML/en/kmenuedit/selecticon.png +share/doc/HTML/en/kmenuedit/selectinternet.png +share/doc/HTML/it/kmenuedit/index.cache.bz2 +share/doc/HTML/it/kmenuedit/index.docbook +share/doc/HTML/nl/kmenuedit/index.cache.bz2 +share/doc/HTML/nl/kmenuedit/index.docbook +share/doc/HTML/pt/kmenuedit/index.cache.bz2 +share/doc/HTML/pt/kmenuedit/index.docbook +share/doc/HTML/pt_BR/kmenuedit/done.png +share/doc/HTML/pt_BR/kmenuedit/index.cache.bz2 +share/doc/HTML/pt_BR/kmenuedit/index.docbook +share/doc/HTML/pt_BR/kmenuedit/itemname.png +share/doc/HTML/pt_BR/kmenuedit/new.png +share/doc/HTML/pt_BR/kmenuedit/reset.png +share/doc/HTML/pt_BR/kmenuedit/selecticon.png +share/doc/HTML/pt_BR/kmenuedit/selectinternet.png +share/doc/HTML/uk/kmenuedit/index.cache.bz2 +share/doc/HTML/uk/kmenuedit/index.docbook +share/icons/hicolor/16x16/apps/kmenuedit.png +share/icons/hicolor/22x22/apps/kmenuedit.png +share/icons/hicolor/32x32/apps/kmenuedit.png +share/icons/hicolor/48x48/apps/kmenuedit.png +%%DATADIR%%/icons/hicolor/22x22/actions/menu_new.png +%%DATADIR%%/icons/hicolor/22x22/actions/menu_new_sep.png +%%DATADIR%%/icons/hicolor/32x32/actions/menu_new.png +%%DATADIR%%/icons/hicolor/32x32/actions/menu_new_sep.png +share/kxmlgui5/kmenuedit/kmenueditui.rc +share/locale/af/LC_MESSAGES/kmenuedit.mo +share/locale/ar/LC_MESSAGES/kmenuedit.mo +share/locale/ast/LC_MESSAGES/kmenuedit.mo +share/locale/be/LC_MESSAGES/kmenuedit.mo +share/locale/bg/LC_MESSAGES/kmenuedit.mo +share/locale/bn/LC_MESSAGES/kmenuedit.mo +share/locale/bn_IN/LC_MESSAGES/kmenuedit.mo +share/locale/br/LC_MESSAGES/kmenuedit.mo +share/locale/bs/LC_MESSAGES/kmenuedit.mo +share/locale/ca/LC_MESSAGES/kmenuedit.mo +share/locale/ca@valencia/LC_MESSAGES/kmenuedit.mo +share/locale/cs/LC_MESSAGES/kmenuedit.mo +share/locale/csb/LC_MESSAGES/kmenuedit.mo +share/locale/cy/LC_MESSAGES/kmenuedit.mo +share/locale/da/LC_MESSAGES/kmenuedit.mo +share/locale/de/LC_MESSAGES/kmenuedit.mo +share/locale/el/LC_MESSAGES/kmenuedit.mo +share/locale/en_GB/LC_MESSAGES/kmenuedit.mo +share/locale/eo/LC_MESSAGES/kmenuedit.mo +share/locale/es/LC_MESSAGES/kmenuedit.mo +share/locale/et/LC_MESSAGES/kmenuedit.mo +share/locale/eu/LC_MESSAGES/kmenuedit.mo +share/locale/fa/LC_MESSAGES/kmenuedit.mo +share/locale/fi/LC_MESSAGES/kmenuedit.mo +share/locale/fr/LC_MESSAGES/kmenuedit.mo +share/locale/fy/LC_MESSAGES/kmenuedit.mo +share/locale/ga/LC_MESSAGES/kmenuedit.mo +share/locale/gl/LC_MESSAGES/kmenuedit.mo +share/locale/gu/LC_MESSAGES/kmenuedit.mo +share/locale/he/LC_MESSAGES/kmenuedit.mo +share/locale/hi/LC_MESSAGES/kmenuedit.mo +share/locale/hne/LC_MESSAGES/kmenuedit.mo +share/locale/hr/LC_MESSAGES/kmenuedit.mo +share/locale/hsb/LC_MESSAGES/kmenuedit.mo +share/locale/hu/LC_MESSAGES/kmenuedit.mo +share/locale/ia/LC_MESSAGES/kmenuedit.mo +share/locale/id/LC_MESSAGES/kmenuedit.mo +share/locale/is/LC_MESSAGES/kmenuedit.mo +share/locale/it/LC_MESSAGES/kmenuedit.mo +share/locale/ja/LC_MESSAGES/kmenuedit.mo +share/locale/kk/LC_MESSAGES/kmenuedit.mo +share/locale/km/LC_MESSAGES/kmenuedit.mo +share/locale/kn/LC_MESSAGES/kmenuedit.mo +share/locale/ko/LC_MESSAGES/kmenuedit.mo +share/locale/ku/LC_MESSAGES/kmenuedit.mo +share/locale/lt/LC_MESSAGES/kmenuedit.mo +share/locale/lv/LC_MESSAGES/kmenuedit.mo +share/locale/mai/LC_MESSAGES/kmenuedit.mo +share/locale/mk/LC_MESSAGES/kmenuedit.mo +share/locale/ml/LC_MESSAGES/kmenuedit.mo +share/locale/mr/LC_MESSAGES/kmenuedit.mo +share/locale/ms/LC_MESSAGES/kmenuedit.mo +share/locale/nb/LC_MESSAGES/kmenuedit.mo +share/locale/nds/LC_MESSAGES/kmenuedit.mo +share/locale/ne/LC_MESSAGES/kmenuedit.mo +share/locale/nl/LC_MESSAGES/kmenuedit.mo +share/locale/nn/LC_MESSAGES/kmenuedit.mo +share/locale/oc/LC_MESSAGES/kmenuedit.mo +share/locale/or/LC_MESSAGES/kmenuedit.mo +share/locale/pa/LC_MESSAGES/kmenuedit.mo +share/locale/pl/LC_MESSAGES/kmenuedit.mo +share/locale/pt/LC_MESSAGES/kmenuedit.mo +share/locale/pt_BR/LC_MESSAGES/kmenuedit.mo +share/locale/ro/LC_MESSAGES/kmenuedit.mo +share/locale/ru/LC_MESSAGES/kmenuedit.mo +share/locale/se/LC_MESSAGES/kmenuedit.mo +share/locale/si/LC_MESSAGES/kmenuedit.mo +share/locale/sk/LC_MESSAGES/kmenuedit.mo +share/locale/sl/LC_MESSAGES/kmenuedit.mo +share/locale/sq/LC_MESSAGES/kmenuedit.mo +share/locale/sr/LC_MESSAGES/kmenuedit.mo +share/locale/sr@ijekavian/LC_MESSAGES/kmenuedit.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kmenuedit.mo +share/locale/sr@latin/LC_MESSAGES/kmenuedit.mo +share/locale/sv/LC_MESSAGES/kmenuedit.mo +share/locale/ta/LC_MESSAGES/kmenuedit.mo +share/locale/te/LC_MESSAGES/kmenuedit.mo +share/locale/tg/LC_MESSAGES/kmenuedit.mo +share/locale/th/LC_MESSAGES/kmenuedit.mo +share/locale/tr/LC_MESSAGES/kmenuedit.mo +share/locale/ug/LC_MESSAGES/kmenuedit.mo +share/locale/uk/LC_MESSAGES/kmenuedit.mo +share/locale/uz/LC_MESSAGES/kmenuedit.mo +share/locale/uz@cyrillic/LC_MESSAGES/kmenuedit.mo +share/locale/vi/LC_MESSAGES/kmenuedit.mo +share/locale/wa/LC_MESSAGES/kmenuedit.mo +share/locale/xh/LC_MESSAGES/kmenuedit.mo +share/locale/zh_CN/LC_MESSAGES/kmenuedit.mo +share/locale/zh_TW/LC_MESSAGES/kmenuedit.mo Property changes on: head/sysutils/plasma5-kmenuedit/pkg-plist ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/sysutils/plasma5-ksysguard/Makefile =================================================================== --- head/sysutils/plasma5-ksysguard/Makefile (nonexistent) +++ head/sysutils/plasma5-ksysguard/Makefile (revision 468495) @@ -0,0 +1,28 @@ +# $FreeBSD$ + +PORTNAME= ksysguard +DISTVERSION= ${KDE_PLASMA_VERSION} +CATEGORIES= sysutils kde kde-plasma + +MAINTAINER= kde@FreeBSD.org +COMMENT= Plasma5 utility to track and control the running processes + +USES= cmake:outsource compiler:c++11-lib cpe desktop-file-utils \ + gettext kde:5 tar:xz +USE_KDE= attica auth codecs completion config configwidgets coreaddons \ + dbusaddons emoticons i18n iconthemes init itemmodels \ + itemviews jobwidgets kdelibs4support kio libksysguard \ + newstuff notifications service widgetsaddons windowsystem \ + xmlgui +USE_QT5= concurrent core dbus gui network widgets xml \ + buildtools_build qmake_build + +OPTIONS_DEFINE= INOTIFY +OPTIONS_DEFAULT=INOTIFY +OPTIONS_SUB= yes + +INOTIFY_DESC= Filesystem alteration notifications using inotify +INOTIFY_LIB_DEPENDS= libinotify.so:devel/libinotify + +.include + Property changes on: head/sysutils/plasma5-ksysguard/Makefile ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/sysutils/plasma5-ksysguard/distinfo =================================================================== --- head/sysutils/plasma5-ksysguard/distinfo (nonexistent) +++ head/sysutils/plasma5-ksysguard/distinfo (revision 468495) @@ -0,0 +1,3 @@ +TIMESTAMP = 1523811771 +SHA256 (KDE/plasma/5.12.4/ksysguard-5.12.4.tar.xz) = 9357689af7959cd01696a1ee3a5b1db6f2658f9791bf471e4d18cbd5de2b736b +SIZE (KDE/plasma/5.12.4/ksysguard-5.12.4.tar.xz) = 486016 Property changes on: head/sysutils/plasma5-ksysguard/distinfo ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/sysutils/plasma5-ksysguard/files/patch-gui_SystemLoad2.sgrd =================================================================== --- head/sysutils/plasma5-ksysguard/files/patch-gui_SystemLoad2.sgrd (nonexistent) +++ head/sysutils/plasma5-ksysguard/files/patch-gui_SystemLoad2.sgrd (revision 468495) @@ -0,0 +1,15 @@ +The default behaviour of ksysguard is to display the memory used by applications +in the memory graph. This is confusing as the user probably expects to see the +total amount of used memory in this graph. + +--- gui/SystemLoad2.sgrd.orig 2015-11-28 14:43:19 UTC ++++ gui/SystemLoad2.sgrd +@@ -6,7 +6,7 @@ + + + +- ++ + + + Property changes on: head/sysutils/plasma5-ksysguard/files/patch-gui_SystemLoad2.sgrd ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/sysutils/plasma5-ksysguard/files/patch-ksysguardd_CMakeLists.txt =================================================================== --- head/sysutils/plasma5-ksysguard/files/patch-ksysguardd_CMakeLists.txt (nonexistent) +++ head/sysutils/plasma5-ksysguard/files/patch-ksysguardd_CMakeLists.txt (revision 468495) @@ -0,0 +1,35 @@ +--- ksysguardd/CMakeLists.txt.orig 2015-05-21 16:59:06 UTC ++++ ksysguardd/CMakeLists.txt +@@ -9,9 +9,12 @@ add_definitions(-DOSTYPE_${CMAKE_SYSTEM_ + + set(HAVE_LMSENSORS ${SENSORS_FOUND}) + +-check_include_files(sys/inotify.h SYS_INOTIFY_H_FOUND) +-set(HAVE_SYS_INOTIFY_H ${SYS_INOTIFY_H_FOUND}) ++# Find libinotify ++find_package(Inotify) ++set_package_properties(Inotify PROPERTIES ++ PURPOSE "Filesystem alteration notifications using inotify") + ++set(HAVE_SYS_INOTIFY_H ${Inotify_FOUND}) + + configure_file(config-ksysguardd.h.cmake ${CMAKE_CURRENT_BINARY_DIR}/config-ksysguardd.h) + +@@ -43,10 +46,15 @@ endif() + conf.c + ksysguardd.c + PWUIDCache.c ) +- ++ ++ if (Inotify_FOUND) ++ include_directories(${Inotify_INCLUDE_DIRS}) ++ set(ksysguardd_OPTIONAL_LIBS ${ksysguardd_OPTIONAL_LIBS} ${Inotify_LIBRARIES}) ++ endif() ++ + add_executable(ksysguardd ${ksysguardd_SRCS}) + +- target_link_libraries(ksysguardd libksysguardd) ++ target_link_libraries(ksysguardd libksysguardd ${ksysguardd_OPTIONAL_LIBS}) + + if( NOT ${CMAKE_SYSTEM_NAME} MATCHES "Linux" OR NOT ${CMAKE_SYSTEM_NAME} MATCHES "kFreeBSD" ) + target_link_libraries(ksysguardd ${KDE4_KDEFAKES_LIBS}) Property changes on: head/sysutils/plasma5-ksysguard/files/patch-ksysguardd_CMakeLists.txt ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/sysutils/plasma5-ksysguard/pkg-descr =================================================================== --- head/sysutils/plasma5-ksysguard/pkg-descr (nonexistent) +++ head/sysutils/plasma5-ksysguard/pkg-descr (revision 468495) @@ -0,0 +1,6 @@ +KSysGuard, also known as KDE System Guard and KDE System Monitor, is designed +to make simple process control available to a user without needing to do any +special setup - the defaults are usually perfectly adequate. There are two +worksheets - the System Load page, pictured above, and the Process Table. + +WWW: https://www.kde.org/plasma-desktop Property changes on: head/sysutils/plasma5-ksysguard/pkg-descr ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/sysutils/plasma5-ksysguard/pkg-plist =================================================================== --- head/sysutils/plasma5-ksysguard/pkg-plist (nonexistent) +++ head/sysutils/plasma5-ksysguard/pkg-plist (revision 468495) @@ -0,0 +1,127 @@ +bin/ksysguard +bin/ksysguardd +etc/ksysguarddrc +etc/xdg/ksysguard.knsrc +lib/libkdeinit5_ksysguard.so +share/applications/org.kde.ksysguard.desktop +share/doc/HTML/ca/ksysguard/index.cache.bz2 +share/doc/HTML/ca/ksysguard/index.docbook +share/doc/HTML/de/ksysguard/index.cache.bz2 +share/doc/HTML/de/ksysguard/index.docbook +share/doc/HTML/en/ksysguard/index.cache.bz2 +share/doc/HTML/en/ksysguard/index.docbook +share/doc/HTML/et/ksysguard/index.cache.bz2 +share/doc/HTML/et/ksysguard/index.docbook +share/doc/HTML/it/ksysguard/index.cache.bz2 +share/doc/HTML/it/ksysguard/index.docbook +share/doc/HTML/nl/ksysguard/index.cache.bz2 +share/doc/HTML/nl/ksysguard/index.docbook +share/doc/HTML/pt/ksysguard/index.cache.bz2 +share/doc/HTML/pt/ksysguard/index.docbook +share/doc/HTML/pt_BR/ksysguard/index.cache.bz2 +share/doc/HTML/pt_BR/ksysguard/index.docbook +share/doc/HTML/uk/ksysguard/index.cache.bz2 +share/doc/HTML/uk/ksysguard/index.docbook +share/icons/hicolor/16x16/apps/computer.png +share/icons/hicolor/16x16/apps/daemon.png +share/icons/hicolor/16x16/apps/kdeapp.png +share/icons/hicolor/16x16/apps/kernel.png +share/icons/hicolor/16x16/apps/ksysguardd.png +share/icons/hicolor/16x16/apps/running.png +share/icons/hicolor/16x16/apps/shell.png +share/icons/hicolor/16x16/apps/unknownapp.png +share/icons/hicolor/16x16/apps/waiting.png +share/knotifications5/ksysguard.notifyrc +%%DATADIR%%/ProcessTable.sgrd +%%DATADIR%%/SystemLoad2.sgrd +share/kxmlgui5/ksysguard/ksysguardui.rc +share/locale/af/LC_MESSAGES/ksysguard.mo +share/locale/ar/LC_MESSAGES/ksysguard.mo +share/locale/ast/LC_MESSAGES/ksysguard.mo +share/locale/be/LC_MESSAGES/ksysguard.mo +share/locale/be@latin/LC_MESSAGES/ksysguard.mo +share/locale/bg/LC_MESSAGES/ksysguard.mo +share/locale/bn/LC_MESSAGES/ksysguard.mo +share/locale/bn_IN/LC_MESSAGES/ksysguard.mo +share/locale/br/LC_MESSAGES/ksysguard.mo +share/locale/bs/LC_MESSAGES/ksysguard.mo +share/locale/ca/LC_MESSAGES/ksysguard.mo +share/locale/ca@valencia/LC_MESSAGES/ksysguard.mo +share/locale/cs/LC_MESSAGES/ksysguard.mo +share/locale/csb/LC_MESSAGES/ksysguard.mo +share/locale/cy/LC_MESSAGES/ksysguard.mo +share/locale/da/LC_MESSAGES/ksysguard.mo +share/locale/de/LC_MESSAGES/ksysguard.mo +share/locale/el/LC_MESSAGES/ksysguard.mo +share/locale/en_GB/LC_MESSAGES/ksysguard.mo +share/locale/eo/LC_MESSAGES/ksysguard.mo +share/locale/es/LC_MESSAGES/ksysguard.mo +share/locale/et/LC_MESSAGES/ksysguard.mo +share/locale/eu/LC_MESSAGES/ksysguard.mo +share/locale/fa/LC_MESSAGES/ksysguard.mo +share/locale/fi/LC_MESSAGES/ksysguard.mo +share/locale/fr/LC_MESSAGES/ksysguard.mo +share/locale/fy/LC_MESSAGES/ksysguard.mo +share/locale/ga/LC_MESSAGES/ksysguard.mo +share/locale/gl/LC_MESSAGES/ksysguard.mo +share/locale/gu/LC_MESSAGES/ksysguard.mo +share/locale/he/LC_MESSAGES/ksysguard.mo +share/locale/hi/LC_MESSAGES/ksysguard.mo +share/locale/hne/LC_MESSAGES/ksysguard.mo +share/locale/hr/LC_MESSAGES/ksysguard.mo +share/locale/hsb/LC_MESSAGES/ksysguard.mo +share/locale/hu/LC_MESSAGES/ksysguard.mo +share/locale/ia/LC_MESSAGES/ksysguard.mo +share/locale/id/LC_MESSAGES/ksysguard.mo +share/locale/is/LC_MESSAGES/ksysguard.mo +share/locale/it/LC_MESSAGES/ksysguard.mo +share/locale/ja/LC_MESSAGES/ksysguard.mo +share/locale/kk/LC_MESSAGES/ksysguard.mo +share/locale/km/LC_MESSAGES/ksysguard.mo +share/locale/kn/LC_MESSAGES/ksysguard.mo +share/locale/ko/LC_MESSAGES/ksysguard.mo +share/locale/ku/LC_MESSAGES/ksysguard.mo +share/locale/lt/LC_MESSAGES/ksysguard.mo +share/locale/lv/LC_MESSAGES/ksysguard.mo +share/locale/mai/LC_MESSAGES/ksysguard.mo +share/locale/mk/LC_MESSAGES/ksysguard.mo +share/locale/ml/LC_MESSAGES/ksysguard.mo +share/locale/mr/LC_MESSAGES/ksysguard.mo +share/locale/ms/LC_MESSAGES/ksysguard.mo +share/locale/nb/LC_MESSAGES/ksysguard.mo +share/locale/nds/LC_MESSAGES/ksysguard.mo +share/locale/ne/LC_MESSAGES/ksysguard.mo +share/locale/nl/LC_MESSAGES/ksysguard.mo +share/locale/nn/LC_MESSAGES/ksysguard.mo +share/locale/oc/LC_MESSAGES/ksysguard.mo +share/locale/or/LC_MESSAGES/ksysguard.mo +share/locale/pa/LC_MESSAGES/ksysguard.mo +share/locale/pl/LC_MESSAGES/ksysguard.mo +share/locale/pt/LC_MESSAGES/ksysguard.mo +share/locale/pt_BR/LC_MESSAGES/ksysguard.mo +share/locale/ro/LC_MESSAGES/ksysguard.mo +share/locale/ru/LC_MESSAGES/ksysguard.mo +share/locale/se/LC_MESSAGES/ksysguard.mo +share/locale/si/LC_MESSAGES/ksysguard.mo +share/locale/sk/LC_MESSAGES/ksysguard.mo +share/locale/sl/LC_MESSAGES/ksysguard.mo +share/locale/sq/LC_MESSAGES/ksysguard.mo +share/locale/sr/LC_MESSAGES/ksysguard.mo +share/locale/sr@ijekavian/LC_MESSAGES/ksysguard.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/ksysguard.mo +share/locale/sr@latin/LC_MESSAGES/ksysguard.mo +share/locale/sv/LC_MESSAGES/ksysguard.mo +share/locale/ta/LC_MESSAGES/ksysguard.mo +share/locale/te/LC_MESSAGES/ksysguard.mo +share/locale/tg/LC_MESSAGES/ksysguard.mo +share/locale/th/LC_MESSAGES/ksysguard.mo +share/locale/tr/LC_MESSAGES/ksysguard.mo +share/locale/ug/LC_MESSAGES/ksysguard.mo +share/locale/uk/LC_MESSAGES/ksysguard.mo +share/locale/uz/LC_MESSAGES/ksysguard.mo +share/locale/uz@cyrillic/LC_MESSAGES/ksysguard.mo +share/locale/vi/LC_MESSAGES/ksysguard.mo +share/locale/wa/LC_MESSAGES/ksysguard.mo +share/locale/xh/LC_MESSAGES/ksysguard.mo +share/locale/zh_CN/LC_MESSAGES/ksysguard.mo +share/locale/zh_TW/LC_MESSAGES/ksysguard.mo Property changes on: head/sysutils/plasma5-ksysguard/pkg-plist ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/sysutils/plasma5-libksysguard/Makefile =================================================================== --- head/sysutils/plasma5-libksysguard/Makefile (nonexistent) +++ head/sysutils/plasma5-libksysguard/Makefile (revision 468495) @@ -0,0 +1,17 @@ +# $FreeBSD$ + +PORTNAME= libksysguard +DISTVERSION= ${KDE_PLASMA_VERSION} +CATEGORIES= sysutils kde kde-plasma + +MAINTAINER= kde@FreeBSD.org +COMMENT= Plasma5 library to track and control running processes + +USES= cmake:outsource compiler:c++11-lib cpe gettext kde:5 tar:xz +USE_KDE= auth codecs completion config configwidgets coreaddons i18n \ + iconthemes package plasma-framework service widgetsaddons \ + windowsystem +USE_QT5= core dbus gui network script webkit widgets x11extras xml \ + buildtools_build qmake_build + +.include Property changes on: head/sysutils/plasma5-libksysguard/Makefile ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/sysutils/plasma5-libksysguard/distinfo =================================================================== --- head/sysutils/plasma5-libksysguard/distinfo (nonexistent) +++ head/sysutils/plasma5-libksysguard/distinfo (revision 468495) @@ -0,0 +1,3 @@ +TIMESTAMP = 1523811772 +SHA256 (KDE/plasma/5.12.4/libksysguard-5.12.4.tar.xz) = ed3a83435b85bb6b405cb2507b69ac5f21c793d2bb671889ee04c7de4876b826 +SIZE (KDE/plasma/5.12.4/libksysguard-5.12.4.tar.xz) = 567216 Property changes on: head/sysutils/plasma5-libksysguard/distinfo ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/sysutils/plasma5-libksysguard/pkg-descr =================================================================== --- head/sysutils/plasma5-libksysguard/pkg-descr (nonexistent) +++ head/sysutils/plasma5-libksysguard/pkg-descr (revision 468495) @@ -0,0 +1,3 @@ +Track and control the processes running in your system. + +WWW: https://www.kde.org/plasma-desktop Property changes on: head/sysutils/plasma5-libksysguard/pkg-descr ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/sysutils/plasma5-libksysguard/pkg-plist =================================================================== --- head/sysutils/plasma5-libksysguard/pkg-plist (nonexistent) +++ head/sysutils/plasma5-libksysguard/pkg-plist (revision 468495) @@ -0,0 +1,323 @@ +etc/dbus-1/system.d/org.kde.ksysguard.processlisthelper.conf +include/ksysguard/ksgrd/SensorAgent.h +include/ksysguard/ksgrd/SensorClient.h +include/ksysguard/ksgrd/SensorManager.h +include/ksysguard/ksgrd/SensorShellAgent.h +include/ksysguard/ksgrd/SensorSocketAgent.h +include/ksysguard/ksignalplotter.h +include/ksysguard/lsof.h +include/ksysguard/processcore/process.h +include/ksysguard/processcore/processes.h +include/ksysguard/processui/KTextEditVT.h +include/ksysguard/processui/ProcessFilter.h +include/ksysguard/processui/ProcessModel.h +include/ksysguard/processui/ksysguardprocesslist.h +lib/cmake/KF5SysGuard/KF5SysGuardConfig.cmake +lib/cmake/KF5SysGuard/KF5SysGuardConfigVersion.cmake +lib/cmake/KF5SysGuard/KF5SysGuardLibraryTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/KF5SysGuard/KF5SysGuardLibraryTargets.cmake +lib/libexec/kauth/ksysguardprocesslist_helper +lib/libksgrd.so +lib/libksgrd.so.%%KDE_PLASMA_VERSION%% +lib/libksgrd.so.7 +lib/libksignalplotter.so +lib/libksignalplotter.so.%%KDE_PLASMA_VERSION%% +lib/libksignalplotter.so.7 +lib/liblsofui.so +lib/liblsofui.so.%%KDE_PLASMA_VERSION%% +lib/liblsofui.so.7 +lib/libprocesscore.so +lib/libprocesscore.so.%%KDE_PLASMA_VERSION%% +lib/libprocesscore.so.7 +lib/libprocessui.so +lib/libprocessui.so.%%KDE_PLASMA_VERSION%% +lib/libprocessui.so.7 +share/dbus-1/system-services/org.kde.ksysguard.processlisthelper.service +share/ksysguard/scripts/README +share/ksysguard/scripts/smaps/helper.js +share/ksysguard/scripts/smaps/index.html +share/ksysguard/scripts/smaps/main.js +share/ksysguard/scripts/smaps/smaps.desktop +share/ksysguard/scripts/smaps/sorttable.js +share/ksysguard/scripts/smaps/style.css +share/locale/ar/LC_MESSAGES/ksgrd.mo +share/locale/ar/LC_MESSAGES/ksysguardlsofwidgets.mo +share/locale/ar/LC_MESSAGES/processcore.mo +share/locale/ar/LC_MESSAGES/processui.mo +share/locale/as/LC_MESSAGES/processui.mo +share/locale/ast/LC_MESSAGES/ksgrd.mo +share/locale/ast/LC_MESSAGES/ksysguardlsofwidgets.mo +share/locale/ast/LC_MESSAGES/processcore.mo +share/locale/ast/LC_MESSAGES/processui.mo +share/locale/be/LC_MESSAGES/processcore.mo +share/locale/be/LC_MESSAGES/processui.mo +share/locale/be@latin/LC_MESSAGES/ksysguardlsofwidgets.mo +share/locale/bg/LC_MESSAGES/ksysguardlsofwidgets.mo +share/locale/bg/LC_MESSAGES/processcore.mo +share/locale/bg/LC_MESSAGES/processui.mo +share/locale/bn_IN/LC_MESSAGES/ksysguardlsofwidgets.mo +share/locale/bn_IN/LC_MESSAGES/processcore.mo +share/locale/bn_IN/LC_MESSAGES/processui.mo +share/locale/bs/LC_MESSAGES/ksgrd.mo +share/locale/bs/LC_MESSAGES/ksysguardlsofwidgets.mo +share/locale/bs/LC_MESSAGES/processcore.mo +share/locale/bs/LC_MESSAGES/processui.mo +share/locale/ca/LC_MESSAGES/ksgrd.mo +share/locale/ca/LC_MESSAGES/ksysguardlsofwidgets.mo +share/locale/ca/LC_MESSAGES/processcore.mo +share/locale/ca/LC_MESSAGES/processui.mo +share/locale/ca@valencia/LC_MESSAGES/ksgrd.mo +share/locale/ca@valencia/LC_MESSAGES/ksysguardlsofwidgets.mo +share/locale/ca@valencia/LC_MESSAGES/processcore.mo +share/locale/ca@valencia/LC_MESSAGES/processui.mo +share/locale/cs/LC_MESSAGES/ksgrd.mo +share/locale/cs/LC_MESSAGES/ksysguardlsofwidgets.mo +share/locale/cs/LC_MESSAGES/processcore.mo +share/locale/cs/LC_MESSAGES/processui.mo +share/locale/csb/LC_MESSAGES/processcore.mo +share/locale/csb/LC_MESSAGES/processui.mo +share/locale/da/LC_MESSAGES/ksgrd.mo +share/locale/da/LC_MESSAGES/ksysguardlsofwidgets.mo +share/locale/da/LC_MESSAGES/processcore.mo +share/locale/da/LC_MESSAGES/processui.mo +share/locale/de/LC_MESSAGES/ksgrd.mo +share/locale/de/LC_MESSAGES/ksysguardlsofwidgets.mo +share/locale/de/LC_MESSAGES/processcore.mo +share/locale/de/LC_MESSAGES/processui.mo +share/locale/el/LC_MESSAGES/ksgrd.mo +share/locale/el/LC_MESSAGES/ksysguardlsofwidgets.mo +share/locale/el/LC_MESSAGES/processcore.mo +share/locale/el/LC_MESSAGES/processui.mo +share/locale/en_GB/LC_MESSAGES/ksgrd.mo +share/locale/en_GB/LC_MESSAGES/ksysguardlsofwidgets.mo +share/locale/en_GB/LC_MESSAGES/processcore.mo +share/locale/en_GB/LC_MESSAGES/processui.mo +share/locale/eo/LC_MESSAGES/ksysguardlsofwidgets.mo +share/locale/eo/LC_MESSAGES/processcore.mo +share/locale/eo/LC_MESSAGES/processui.mo +share/locale/es/LC_MESSAGES/ksgrd.mo +share/locale/es/LC_MESSAGES/ksysguardlsofwidgets.mo +share/locale/es/LC_MESSAGES/processcore.mo +share/locale/es/LC_MESSAGES/processui.mo +share/locale/et/LC_MESSAGES/ksgrd.mo +share/locale/et/LC_MESSAGES/ksysguardlsofwidgets.mo +share/locale/et/LC_MESSAGES/processcore.mo +share/locale/et/LC_MESSAGES/processui.mo +share/locale/eu/LC_MESSAGES/ksgrd.mo +share/locale/eu/LC_MESSAGES/ksysguardlsofwidgets.mo +share/locale/eu/LC_MESSAGES/processcore.mo +share/locale/eu/LC_MESSAGES/processui.mo +share/locale/fa/LC_MESSAGES/processcore.mo +share/locale/fa/LC_MESSAGES/processui.mo +share/locale/fi/LC_MESSAGES/ksgrd.mo +share/locale/fi/LC_MESSAGES/ksysguardlsofwidgets.mo +share/locale/fi/LC_MESSAGES/processcore.mo +share/locale/fi/LC_MESSAGES/processui.mo +share/locale/fr/LC_MESSAGES/ksgrd.mo +share/locale/fr/LC_MESSAGES/ksysguardlsofwidgets.mo +share/locale/fr/LC_MESSAGES/processcore.mo +share/locale/fr/LC_MESSAGES/processui.mo +share/locale/fy/LC_MESSAGES/ksysguardlsofwidgets.mo +share/locale/fy/LC_MESSAGES/processcore.mo +share/locale/fy/LC_MESSAGES/processui.mo +share/locale/ga/LC_MESSAGES/ksysguardlsofwidgets.mo +share/locale/ga/LC_MESSAGES/processcore.mo +share/locale/ga/LC_MESSAGES/processui.mo +share/locale/gl/LC_MESSAGES/ksgrd.mo +share/locale/gl/LC_MESSAGES/ksysguardlsofwidgets.mo +share/locale/gl/LC_MESSAGES/processcore.mo +share/locale/gl/LC_MESSAGES/processui.mo +share/locale/gu/LC_MESSAGES/ksysguardlsofwidgets.mo +share/locale/gu/LC_MESSAGES/processcore.mo +share/locale/gu/LC_MESSAGES/processui.mo +share/locale/he/LC_MESSAGES/ksgrd.mo +share/locale/he/LC_MESSAGES/ksysguardlsofwidgets.mo +share/locale/he/LC_MESSAGES/processcore.mo +share/locale/he/LC_MESSAGES/processui.mo +share/locale/hi/LC_MESSAGES/ksysguardlsofwidgets.mo +share/locale/hi/LC_MESSAGES/processcore.mo +share/locale/hi/LC_MESSAGES/processui.mo +share/locale/hne/LC_MESSAGES/processcore.mo +share/locale/hr/LC_MESSAGES/ksysguardlsofwidgets.mo +share/locale/hr/LC_MESSAGES/processcore.mo +share/locale/hr/LC_MESSAGES/processui.mo +share/locale/hsb/LC_MESSAGES/ksysguardlsofwidgets.mo +share/locale/hsb/LC_MESSAGES/processcore.mo +share/locale/hsb/LC_MESSAGES/processui.mo +share/locale/hu/LC_MESSAGES/ksgrd.mo +share/locale/hu/LC_MESSAGES/ksysguardlsofwidgets.mo +share/locale/hu/LC_MESSAGES/processcore.mo +share/locale/hu/LC_MESSAGES/processui.mo +share/locale/ia/LC_MESSAGES/ksgrd.mo +share/locale/ia/LC_MESSAGES/ksysguardlsofwidgets.mo +share/locale/ia/LC_MESSAGES/processcore.mo +share/locale/ia/LC_MESSAGES/processui.mo +share/locale/id/LC_MESSAGES/ksysguardlsofwidgets.mo +share/locale/id/LC_MESSAGES/processcore.mo +share/locale/id/LC_MESSAGES/processui.mo +share/locale/is/LC_MESSAGES/ksysguardlsofwidgets.mo +share/locale/is/LC_MESSAGES/processcore.mo +share/locale/is/LC_MESSAGES/processui.mo +share/locale/it/LC_MESSAGES/ksgrd.mo +share/locale/it/LC_MESSAGES/ksysguardlsofwidgets.mo +share/locale/it/LC_MESSAGES/processcore.mo +share/locale/it/LC_MESSAGES/processui.mo +share/locale/ja/LC_MESSAGES/ksgrd.mo +share/locale/ja/LC_MESSAGES/ksysguardlsofwidgets.mo +share/locale/ja/LC_MESSAGES/processcore.mo +share/locale/ja/LC_MESSAGES/processui.mo +share/locale/kk/LC_MESSAGES/ksgrd.mo +share/locale/kk/LC_MESSAGES/ksysguardlsofwidgets.mo +share/locale/kk/LC_MESSAGES/processcore.mo +share/locale/kk/LC_MESSAGES/processui.mo +share/locale/km/LC_MESSAGES/ksysguardlsofwidgets.mo +share/locale/km/LC_MESSAGES/processcore.mo +share/locale/km/LC_MESSAGES/processui.mo +share/locale/kn/LC_MESSAGES/ksysguardlsofwidgets.mo +share/locale/ko/LC_MESSAGES/ksgrd.mo +share/locale/ko/LC_MESSAGES/ksysguardlsofwidgets.mo +share/locale/ko/LC_MESSAGES/processcore.mo +share/locale/ko/LC_MESSAGES/processui.mo +share/locale/ku/LC_MESSAGES/ksysguardlsofwidgets.mo +share/locale/ku/LC_MESSAGES/processcore.mo +share/locale/ku/LC_MESSAGES/processui.mo +share/locale/lt/LC_MESSAGES/ksgrd.mo +share/locale/lt/LC_MESSAGES/ksysguardlsofwidgets.mo +share/locale/lt/LC_MESSAGES/processcore.mo +share/locale/lt/LC_MESSAGES/processui.mo +share/locale/lv/LC_MESSAGES/ksysguardlsofwidgets.mo +share/locale/lv/LC_MESSAGES/processcore.mo +share/locale/lv/LC_MESSAGES/processui.mo +share/locale/mai/LC_MESSAGES/ksysguardlsofwidgets.mo +share/locale/mai/LC_MESSAGES/processcore.mo +share/locale/mai/LC_MESSAGES/processui.mo +share/locale/mk/LC_MESSAGES/processcore.mo +share/locale/mk/LC_MESSAGES/processui.mo +share/locale/ml/LC_MESSAGES/ksysguardlsofwidgets.mo +share/locale/ml/LC_MESSAGES/processcore.mo +share/locale/ml/LC_MESSAGES/processui.mo +share/locale/mr/LC_MESSAGES/ksgrd.mo +share/locale/mr/LC_MESSAGES/ksysguardlsofwidgets.mo +share/locale/mr/LC_MESSAGES/processcore.mo +share/locale/mr/LC_MESSAGES/processui.mo +share/locale/ms/LC_MESSAGES/ksysguardlsofwidgets.mo +share/locale/ms/LC_MESSAGES/processcore.mo +share/locale/ms/LC_MESSAGES/processui.mo +share/locale/nb/LC_MESSAGES/ksgrd.mo +share/locale/nb/LC_MESSAGES/ksysguardlsofwidgets.mo +share/locale/nb/LC_MESSAGES/processcore.mo +share/locale/nb/LC_MESSAGES/processui.mo +share/locale/nds/LC_MESSAGES/ksgrd.mo +share/locale/nds/LC_MESSAGES/ksysguardlsofwidgets.mo +share/locale/nds/LC_MESSAGES/processcore.mo +share/locale/nds/LC_MESSAGES/processui.mo +share/locale/ne/LC_MESSAGES/processcore.mo +share/locale/ne/LC_MESSAGES/processui.mo +share/locale/nl/LC_MESSAGES/ksgrd.mo +share/locale/nl/LC_MESSAGES/ksysguardlsofwidgets.mo +share/locale/nl/LC_MESSAGES/processcore.mo +share/locale/nl/LC_MESSAGES/processui.mo +share/locale/nn/LC_MESSAGES/ksgrd.mo +share/locale/nn/LC_MESSAGES/ksysguardlsofwidgets.mo +share/locale/nn/LC_MESSAGES/processcore.mo +share/locale/nn/LC_MESSAGES/processui.mo +share/locale/oc/LC_MESSAGES/processcore.mo +share/locale/oc/LC_MESSAGES/processui.mo +share/locale/or/LC_MESSAGES/ksysguardlsofwidgets.mo +share/locale/or/LC_MESSAGES/processcore.mo +share/locale/or/LC_MESSAGES/processui.mo +share/locale/pa/LC_MESSAGES/ksgrd.mo +share/locale/pa/LC_MESSAGES/ksysguardlsofwidgets.mo +share/locale/pa/LC_MESSAGES/processcore.mo +share/locale/pa/LC_MESSAGES/processui.mo +share/locale/pl/LC_MESSAGES/ksgrd.mo +share/locale/pl/LC_MESSAGES/ksysguardlsofwidgets.mo +share/locale/pl/LC_MESSAGES/processcore.mo +share/locale/pl/LC_MESSAGES/processui.mo +share/locale/pt/LC_MESSAGES/ksgrd.mo +share/locale/pt/LC_MESSAGES/ksysguardlsofwidgets.mo +share/locale/pt/LC_MESSAGES/processcore.mo +share/locale/pt/LC_MESSAGES/processui.mo +share/locale/pt_BR/LC_MESSAGES/ksgrd.mo +share/locale/pt_BR/LC_MESSAGES/ksysguardlsofwidgets.mo +share/locale/pt_BR/LC_MESSAGES/processcore.mo +share/locale/pt_BR/LC_MESSAGES/processui.mo +share/locale/ro/LC_MESSAGES/ksgrd.mo +share/locale/ro/LC_MESSAGES/ksysguardlsofwidgets.mo +share/locale/ro/LC_MESSAGES/processcore.mo +share/locale/ro/LC_MESSAGES/processui.mo +share/locale/ru/LC_MESSAGES/ksgrd.mo +share/locale/ru/LC_MESSAGES/ksysguardlsofwidgets.mo +share/locale/ru/LC_MESSAGES/processcore.mo +share/locale/ru/LC_MESSAGES/processui.mo +share/locale/se/LC_MESSAGES/processcore.mo +share/locale/se/LC_MESSAGES/processui.mo +share/locale/si/LC_MESSAGES/ksysguardlsofwidgets.mo +share/locale/si/LC_MESSAGES/processcore.mo +share/locale/si/LC_MESSAGES/processui.mo +share/locale/sk/LC_MESSAGES/ksgrd.mo +share/locale/sk/LC_MESSAGES/ksysguardlsofwidgets.mo +share/locale/sk/LC_MESSAGES/processcore.mo +share/locale/sk/LC_MESSAGES/processui.mo +share/locale/sl/LC_MESSAGES/ksgrd.mo +share/locale/sl/LC_MESSAGES/ksysguardlsofwidgets.mo +share/locale/sl/LC_MESSAGES/processcore.mo +share/locale/sl/LC_MESSAGES/processui.mo +share/locale/sq/LC_MESSAGES/ksysguardlsofwidgets.mo +share/locale/sq/LC_MESSAGES/processcore.mo +share/locale/sq/LC_MESSAGES/processui.mo +share/locale/sr/LC_MESSAGES/ksgrd.mo +share/locale/sr/LC_MESSAGES/ksysguardlsofwidgets.mo +share/locale/sr/LC_MESSAGES/processcore.mo +share/locale/sr/LC_MESSAGES/processui.mo +share/locale/sr@ijekavian/LC_MESSAGES/ksgrd.mo +share/locale/sr@ijekavian/LC_MESSAGES/ksysguardlsofwidgets.mo +share/locale/sr@ijekavian/LC_MESSAGES/processcore.mo +share/locale/sr@ijekavian/LC_MESSAGES/processui.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/ksgrd.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/ksysguardlsofwidgets.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/processcore.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/processui.mo +share/locale/sr@latin/LC_MESSAGES/ksgrd.mo +share/locale/sr@latin/LC_MESSAGES/ksysguardlsofwidgets.mo +share/locale/sr@latin/LC_MESSAGES/processcore.mo +share/locale/sr@latin/LC_MESSAGES/processui.mo +share/locale/sv/LC_MESSAGES/ksgrd.mo +share/locale/sv/LC_MESSAGES/ksysguardlsofwidgets.mo +share/locale/sv/LC_MESSAGES/processcore.mo +share/locale/sv/LC_MESSAGES/processui.mo +share/locale/ta/LC_MESSAGES/processcore.mo +share/locale/ta/LC_MESSAGES/processui.mo +share/locale/te/LC_MESSAGES/ksysguardlsofwidgets.mo +share/locale/te/LC_MESSAGES/processcore.mo +share/locale/te/LC_MESSAGES/processui.mo +share/locale/tg/LC_MESSAGES/ksysguardlsofwidgets.mo +share/locale/tg/LC_MESSAGES/processcore.mo +share/locale/tg/LC_MESSAGES/processui.mo +share/locale/th/LC_MESSAGES/ksysguardlsofwidgets.mo +share/locale/th/LC_MESSAGES/processcore.mo +share/locale/th/LC_MESSAGES/processui.mo +share/locale/tr/LC_MESSAGES/ksgrd.mo +share/locale/tr/LC_MESSAGES/ksysguardlsofwidgets.mo +share/locale/tr/LC_MESSAGES/processcore.mo +share/locale/tr/LC_MESSAGES/processui.mo +share/locale/ug/LC_MESSAGES/ksgrd.mo +share/locale/ug/LC_MESSAGES/ksysguardlsofwidgets.mo +share/locale/ug/LC_MESSAGES/processcore.mo +share/locale/ug/LC_MESSAGES/processui.mo +share/locale/uk/LC_MESSAGES/ksgrd.mo +share/locale/uk/LC_MESSAGES/ksysguardlsofwidgets.mo +share/locale/uk/LC_MESSAGES/processcore.mo +share/locale/uk/LC_MESSAGES/processui.mo +share/locale/wa/LC_MESSAGES/ksysguardlsofwidgets.mo +share/locale/wa/LC_MESSAGES/processcore.mo +share/locale/wa/LC_MESSAGES/processui.mo +share/locale/zh_CN/LC_MESSAGES/ksgrd.mo +share/locale/zh_CN/LC_MESSAGES/ksysguardlsofwidgets.mo +share/locale/zh_CN/LC_MESSAGES/processcore.mo +share/locale/zh_CN/LC_MESSAGES/processui.mo +share/locale/zh_TW/LC_MESSAGES/ksgrd.mo +share/locale/zh_TW/LC_MESSAGES/ksysguardlsofwidgets.mo +share/locale/zh_TW/LC_MESSAGES/processcore.mo +share/locale/zh_TW/LC_MESSAGES/processui.mo +share/polkit-1/actions/org.kde.ksysguard.processlisthelper.policy Property changes on: head/sysutils/plasma5-libksysguard/pkg-plist ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/sysutils/plasma5-polkit-kde-agent-1/Makefile =================================================================== --- head/sysutils/plasma5-polkit-kde-agent-1/Makefile (nonexistent) +++ head/sysutils/plasma5-polkit-kde-agent-1/Makefile (revision 468495) @@ -0,0 +1,18 @@ +# $FreeBSD$ + +PORTNAME= polkit-kde-agent-1 +DISTVERSION= ${KDE_PLASMA_VERSION} +CATEGORIES= sysutils kde kde-plasma + +MAINTAINER= kde@FreeBSD.org +COMMENT= Plasma5 daemon providing a polkit authentication UI + +LIB_DEPENDS= libpolkit-qt5-core-1.so:sysutils/polkit-qt@qt5 + +USES= cmake:outsource compiler:c++11-lib cpe gettext kde:5 tar:xz +USE_KDE= config coreaddons crash dbusaddons ecm i18n iconthemes \ + notifications widgetsaddons windowsystem +USE_QT5= core dbus gui widgets \ + buildtools_build qmake_build + +.include Property changes on: head/sysutils/plasma5-polkit-kde-agent-1/Makefile ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/sysutils/plasma5-polkit-kde-agent-1/distinfo =================================================================== --- head/sysutils/plasma5-polkit-kde-agent-1/distinfo (nonexistent) +++ head/sysutils/plasma5-polkit-kde-agent-1/distinfo (revision 468495) @@ -0,0 +1,3 @@ +TIMESTAMP = 1523811773 +SHA256 (KDE/plasma/5.12.4/polkit-kde-agent-1-5.12.4.tar.xz) = 58a895834a9bb5ee200ae5ff3450b31f3ddf3dff50e50eb6d44cc04a320b9373 +SIZE (KDE/plasma/5.12.4/polkit-kde-agent-1-5.12.4.tar.xz) = 41576 Property changes on: head/sysutils/plasma5-polkit-kde-agent-1/distinfo ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/sysutils/plasma5-polkit-kde-agent-1/pkg-descr =================================================================== --- head/sysutils/plasma5-polkit-kde-agent-1/pkg-descr (nonexistent) +++ head/sysutils/plasma5-polkit-kde-agent-1/pkg-descr (revision 468495) @@ -0,0 +1,3 @@ +Daemon providing a polkit authentication UI for KDE + +WWW: https://www.kde.org/plasma-desktop Property changes on: head/sysutils/plasma5-polkit-kde-agent-1/pkg-descr ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/sysutils/plasma5-polkit-kde-agent-1/pkg-plist =================================================================== --- head/sysutils/plasma5-polkit-kde-agent-1/pkg-plist (nonexistent) +++ head/sysutils/plasma5-polkit-kde-agent-1/pkg-plist (revision 468495) @@ -0,0 +1,59 @@ +etc/xdg/autostart/polkit-kde-authentication-agent-1.desktop +lib/libexec/polkit-kde-authentication-agent-1 +share/knotifications5/policykit1-kde.notifyrc +share/locale/ar/LC_MESSAGES/polkit-kde-authentication-agent-1.mo +share/locale/ast/LC_MESSAGES/polkit-kde-authentication-agent-1.mo +share/locale/bs/LC_MESSAGES/polkit-kde-authentication-agent-1.mo +share/locale/ca/LC_MESSAGES/polkit-kde-authentication-agent-1.mo +share/locale/ca@valencia/LC_MESSAGES/polkit-kde-authentication-agent-1.mo +share/locale/cs/LC_MESSAGES/polkit-kde-authentication-agent-1.mo +share/locale/da/LC_MESSAGES/polkit-kde-authentication-agent-1.mo +share/locale/de/LC_MESSAGES/polkit-kde-authentication-agent-1.mo +share/locale/el/LC_MESSAGES/polkit-kde-authentication-agent-1.mo +share/locale/en_GB/LC_MESSAGES/polkit-kde-authentication-agent-1.mo +share/locale/eo/LC_MESSAGES/polkit-kde-authentication-agent-1.mo +share/locale/es/LC_MESSAGES/polkit-kde-authentication-agent-1.mo +share/locale/et/LC_MESSAGES/polkit-kde-authentication-agent-1.mo +share/locale/fi/LC_MESSAGES/polkit-kde-authentication-agent-1.mo +share/locale/fr/LC_MESSAGES/polkit-kde-authentication-agent-1.mo +share/locale/ga/LC_MESSAGES/polkit-kde-authentication-agent-1.mo +share/locale/gl/LC_MESSAGES/polkit-kde-authentication-agent-1.mo +share/locale/he/LC_MESSAGES/polkit-kde-authentication-agent-1.mo +share/locale/hr/LC_MESSAGES/polkit-kde-authentication-agent-1.mo +share/locale/hu/LC_MESSAGES/polkit-kde-authentication-agent-1.mo +share/locale/ia/LC_MESSAGES/polkit-kde-authentication-agent-1.mo +share/locale/id/LC_MESSAGES/polkit-kde-authentication-agent-1.mo +share/locale/is/LC_MESSAGES/polkit-kde-authentication-agent-1.mo +share/locale/it/LC_MESSAGES/polkit-kde-authentication-agent-1.mo +share/locale/ja/LC_MESSAGES/polkit-kde-authentication-agent-1.mo +share/locale/kk/LC_MESSAGES/polkit-kde-authentication-agent-1.mo +share/locale/km/LC_MESSAGES/polkit-kde-authentication-agent-1.mo +share/locale/ko/LC_MESSAGES/polkit-kde-authentication-agent-1.mo +share/locale/lt/LC_MESSAGES/polkit-kde-authentication-agent-1.mo +share/locale/mai/LC_MESSAGES/polkit-kde-authentication-agent-1.mo +share/locale/mr/LC_MESSAGES/polkit-kde-authentication-agent-1.mo +share/locale/ms/LC_MESSAGES/polkit-kde-authentication-agent-1.mo +share/locale/nb/LC_MESSAGES/polkit-kde-authentication-agent-1.mo +share/locale/nds/LC_MESSAGES/polkit-kde-authentication-agent-1.mo +share/locale/nl/LC_MESSAGES/polkit-kde-authentication-agent-1.mo +share/locale/nn/LC_MESSAGES/polkit-kde-authentication-agent-1.mo +share/locale/pa/LC_MESSAGES/polkit-kde-authentication-agent-1.mo +share/locale/pl/LC_MESSAGES/polkit-kde-authentication-agent-1.mo +share/locale/pt/LC_MESSAGES/polkit-kde-authentication-agent-1.mo +share/locale/pt_BR/LC_MESSAGES/polkit-kde-authentication-agent-1.mo +share/locale/ro/LC_MESSAGES/polkit-kde-authentication-agent-1.mo +share/locale/ru/LC_MESSAGES/polkit-kde-authentication-agent-1.mo +share/locale/sk/LC_MESSAGES/polkit-kde-authentication-agent-1.mo +share/locale/sl/LC_MESSAGES/polkit-kde-authentication-agent-1.mo +share/locale/sr/LC_MESSAGES/polkit-kde-authentication-agent-1.mo +share/locale/sr@ijekavian/LC_MESSAGES/polkit-kde-authentication-agent-1.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/polkit-kde-authentication-agent-1.mo +share/locale/sr@latin/LC_MESSAGES/polkit-kde-authentication-agent-1.mo +share/locale/sv/LC_MESSAGES/polkit-kde-authentication-agent-1.mo +share/locale/th/LC_MESSAGES/polkit-kde-authentication-agent-1.mo +share/locale/tr/LC_MESSAGES/polkit-kde-authentication-agent-1.mo +share/locale/ug/LC_MESSAGES/polkit-kde-authentication-agent-1.mo +share/locale/uk/LC_MESSAGES/polkit-kde-authentication-agent-1.mo +share/locale/vi/LC_MESSAGES/polkit-kde-authentication-agent-1.mo +share/locale/zh_CN/LC_MESSAGES/polkit-kde-authentication-agent-1.mo +share/locale/zh_TW/LC_MESSAGES/polkit-kde-authentication-agent-1.mo Property changes on: head/sysutils/plasma5-polkit-kde-agent-1/pkg-plist ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/sysutils/plasma5-powerdevil/Makefile =================================================================== --- head/sysutils/plasma5-powerdevil/Makefile (nonexistent) +++ head/sysutils/plasma5-powerdevil/Makefile (revision 468495) @@ -0,0 +1,22 @@ +# $FreeBSD$ + +PORTNAME= powerdevil +DISTVERSION= ${KDE_PLASMA_VERSION} +CATEGORIES= sysutils kde kde-plasma + +MAINTAINER= kde@FreeBSD.org +COMMENT= Plasma5 tool to manage the power consumption settings + +USES= cmake:outsource compiler:c++11-lib cpe gettext kde:5 pkgconfig tar:xz +USE_KDE= activities auth bookmarks codecs completion configwidgets \ + coreaddons crash config dbusaddons ecm emoticons globalaccel \ + guiaddons i18n idletime iconthemes init itemmodels itemviews \ + jobwidgets kdelibs4support kio libkscreen notifications \ + notifyconfig parts plasma-workspace service solid sonnet \ + textwidgets unitconversion wayland widgetsaddons windowsystem \ + xmlgui +USE_QT5= core dbus gui network printsupport widgets x11extras xml \ + buildtools_build qmake_build +USE_XORG= xcb + +.include Property changes on: head/sysutils/plasma5-powerdevil/Makefile ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/sysutils/plasma5-powerdevil/distinfo =================================================================== --- head/sysutils/plasma5-powerdevil/distinfo (nonexistent) +++ head/sysutils/plasma5-powerdevil/distinfo (revision 468495) @@ -0,0 +1,3 @@ +TIMESTAMP = 1523811773 +SHA256 (KDE/plasma/5.12.4/powerdevil-5.12.4.tar.xz) = 1d2a1f0df349386acce2197ee0e5693ac8f3246aa925c06650d89aa5e0077310 +SIZE (KDE/plasma/5.12.4/powerdevil-5.12.4.tar.xz) = 381604 Property changes on: head/sysutils/plasma5-powerdevil/distinfo ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/sysutils/plasma5-powerdevil/files/patch-CMakeLists.txt =================================================================== --- head/sysutils/plasma5-powerdevil/files/patch-CMakeLists.txt (nonexistent) +++ head/sysutils/plasma5-powerdevil/files/patch-CMakeLists.txt (revision 468495) @@ -0,0 +1,11 @@ +--- CMakeLists.txt.orig 2017-09-13 23:02:54 UTC ++++ CMakeLists.txt +@@ -48,8 +48,6 @@ add_feature_info( + "Support turning off signal-transmitting devices to save energy" + ) + +-find_package(UDev REQUIRED) +- + find_package(XCB REQUIRED COMPONENTS XCB RANDR DPMS) + + if(WITH_DDCUTIL) Property changes on: head/sysutils/plasma5-powerdevil/files/patch-CMakeLists.txt ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/sysutils/plasma5-powerdevil/files/patch-daemon_CMakeLists.txt =================================================================== --- head/sysutils/plasma5-powerdevil/files/patch-daemon_CMakeLists.txt (nonexistent) +++ head/sysutils/plasma5-powerdevil/files/patch-daemon_CMakeLists.txt (revision 468495) @@ -0,0 +1,11 @@ +--- daemon/CMakeLists.txt.orig 2017-09-13 23:01:05 UTC ++++ daemon/CMakeLists.txt +@@ -130,8 +130,6 @@ if (XCB_FOUND) + target_link_libraries(powerdevil Qt5::X11Extras) + endif () + +-target_link_libraries(powerdevil ${UDEV_LIBS}) +- + install(TARGETS powerdevil DESTINATION ${CMAKE_INSTALL_FULL_LIBEXECDIR}) + install(FILES ${CMAKE_CURRENT_BINARY_DIR}/powerdevil.desktop + DESTINATION ${KDE_INSTALL_AUTOSTARTDIR}) Property changes on: head/sysutils/plasma5-powerdevil/files/patch-daemon_CMakeLists.txt ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/sysutils/plasma5-powerdevil/files/patch-daemon_backends_CMakeLists.txt =================================================================== --- head/sysutils/plasma5-powerdevil/files/patch-daemon_backends_CMakeLists.txt (nonexistent) +++ head/sysutils/plasma5-powerdevil/files/patch-daemon_backends_CMakeLists.txt (revision 468495) @@ -0,0 +1,19 @@ +--- daemon/backends/CMakeLists.txt.orig 2017-11-07 13:26:00 UTC ++++ daemon/backends/CMakeLists.txt +@@ -10,8 +10,6 @@ set(powerdevilupowerbackend_SRCS + upower/powerdevilupowerbackend.cpp + upower/xrandrbrightness.cpp + upower/xrandrxcbhelper.cpp +- upower/udevqtclient.cpp +- upower/udevqtdevice.cpp + upower/ddcutilbrightness.cpp + ) + +@@ -55,7 +53,6 @@ target_link_libraries(powerdevilupowerba + KF5::CoreAddons + KF5::DBusAddons + KF5::I18n +- ${UDEV_LIBS} + ${X11_LIBRARIES} + ${X11_Xrandr_LIB} + ${XCB_XCB_LIBRARY} Property changes on: head/sysutils/plasma5-powerdevil/files/patch-daemon_backends_CMakeLists.txt ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/sysutils/plasma5-powerdevil/files/patch-daemon_backends_upower_powerdevilupowerbackend.cpp =================================================================== --- head/sysutils/plasma5-powerdevil/files/patch-daemon_backends_upower_powerdevilupowerbackend.cpp (nonexistent) +++ head/sysutils/plasma5-powerdevil/files/patch-daemon_backends_upower_powerdevilupowerbackend.cpp (revision 468495) @@ -0,0 +1,38 @@ +--- daemon/backends/upower/powerdevilupowerbackend.cpp.orig 2017-12-10 06:14:30 UTC ++++ daemon/backends/upower/powerdevilupowerbackend.cpp +@@ -41,7 +41,7 @@ + #include "ddcutilbrightness.h" + #include "upowersuspendjob.h" + #include "login1suspendjob.h" +-#include "udevqt.h" ++//#include "udevqt.h" + + #define HELPER_ID "org.kde.powerdevil.backlighthelper" + +@@ -200,8 +200,10 @@ void PowerDevilUPowerBackend::init() + + m_isLedBrightnessControl = m_syspath.contains(QLatin1String("/leds/")); + if (!m_isLedBrightnessControl) { ++ /* + UdevQt::Client *client = new UdevQt::Client(QStringList("backlight"), this); + connect(client, SIGNAL(deviceChanged(UdevQt::Device)), SLOT(onDeviceChanged(UdevQt::Device))); ++ */ + } + + Q_EMIT brightnessSupportQueried(m_brightnessMax > 0); +@@ -358,6 +360,7 @@ void PowerDevilUPowerBackend::initWithBr + + void PowerDevilUPowerBackend::onDeviceChanged(const UdevQt::Device &device) + { ++ /* + qCDebug(POWERDEVIL) << "Udev device changed" << m_syspath << device.sysfsPath(); + if (device.sysfsPath() != m_syspath) { + return; +@@ -373,6 +376,7 @@ void PowerDevilUPowerBackend::onDeviceCh + m_cachedBrightnessMap[Screen] = newBrightness; + onBrightnessChanged(Screen, newBrightness, maxBrightness); + } ++ */ + } + + int PowerDevilUPowerBackend::brightnessKeyPressed(PowerDevil::BrightnessLogic::BrightnessKeyType type, BrightnessControlType controlType) Property changes on: head/sysutils/plasma5-powerdevil/files/patch-daemon_backends_upower_powerdevilupowerbackend.cpp ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/sysutils/plasma5-powerdevil/pkg-descr =================================================================== --- head/sysutils/plasma5-powerdevil/pkg-descr (nonexistent) +++ head/sysutils/plasma5-powerdevil/pkg-descr (revision 468495) @@ -0,0 +1,3 @@ +Manages the power consumption settings of a Plasma Shell. + +WWW: https://www.kde.org/plasma-desktop Property changes on: head/sysutils/plasma5-powerdevil/pkg-descr ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/sysutils/plasma5-powerdevil/pkg-plist =================================================================== --- head/sysutils/plasma5-powerdevil/pkg-plist (nonexistent) +++ head/sysutils/plasma5-powerdevil/pkg-plist (revision 468495) @@ -0,0 +1,352 @@ +etc/dbus-1/system.d/org.kde.powerdevil.backlighthelper.conf +etc/dbus-1/system.d/org.kde.powerdevil.discretegpuhelper.conf +etc/xdg/autostart/powerdevil.desktop +lib/libexec/kauth/backlighthelper +lib/libexec/kauth/discretegpuhelper +lib/libexec/org_kde_powerdevil +lib/libpowerdevilconfigcommonprivate.so +lib/libpowerdevilconfigcommonprivate.so.5 +lib/libpowerdevilconfigcommonprivate.so.%%KDE_PLASMA_VERSION%% +lib/libpowerdevilcore.so +lib/libpowerdevilcore.so.2 +lib/libpowerdevilcore.so.2.0.0 +lib/libpowerdevilui.so +lib/libpowerdevilui.so.5 +lib/libpowerdevilui.so.%%KDE_PLASMA_VERSION%% +%%QT_PLUGINDIR%%/kcm_powerdevilactivitiesconfig.so +%%QT_PLUGINDIR%%/kcm_powerdevilglobalconfig.so +%%QT_PLUGINDIR%%/kcm_powerdevilprofilesconfig.so +%%QT_PLUGINDIR%%/kf5/powerdevil/powerdevilupowerbackend.so +%%QT_PLUGINDIR%%/powerdevilbrightnesscontrolaction_config.so +%%QT_PLUGINDIR%%/powerdevildimdisplayaction_config.so +%%QT_PLUGINDIR%%/powerdevildpmsaction.so +%%QT_PLUGINDIR%%/powerdevildpmsaction_config.so +%%QT_PLUGINDIR%%/powerdevilhandlebuttoneventsaction_config.so +%%QT_PLUGINDIR%%/powerdevilkeyboardbrightnesscontrolaction_config.so +%%QT_PLUGINDIR%%/powerdevilrunscriptaction_config.so +%%QT_PLUGINDIR%%/powerdevilsuspendsessionaction_config.so +share/dbus-1/system-services/org.kde.powerdevil.backlighthelper.service +share/dbus-1/system-services/org.kde.powerdevil.discretegpuhelper.service +share/doc/HTML/ca/kcontrol/powerdevil/index.cache.bz2 +share/doc/HTML/ca/kcontrol/powerdevil/index.docbook +share/doc/HTML/de/kcontrol/powerdevil/index.cache.bz2 +share/doc/HTML/de/kcontrol/powerdevil/index.docbook +share/doc/HTML/en/kcontrol/powerdevil/activity.png +share/doc/HTML/en/kcontrol/powerdevil/advanced.png +share/doc/HTML/en/kcontrol/powerdevil/energy.png +share/doc/HTML/en/kcontrol/powerdevil/index.cache.bz2 +share/doc/HTML/en/kcontrol/powerdevil/index.docbook +share/doc/HTML/et/kcontrol/powerdevil/index.cache.bz2 +share/doc/HTML/et/kcontrol/powerdevil/index.docbook +share/doc/HTML/it/kcontrol/powerdevil/index.cache.bz2 +share/doc/HTML/it/kcontrol/powerdevil/index.docbook +share/doc/HTML/nl/kcontrol/powerdevil/index.cache.bz2 +share/doc/HTML/nl/kcontrol/powerdevil/index.docbook +share/doc/HTML/pt/kcontrol/powerdevil/index.cache.bz2 +share/doc/HTML/pt/kcontrol/powerdevil/index.docbook +share/doc/HTML/pt_BR/kcontrol/powerdevil/index.cache.bz2 +share/doc/HTML/pt_BR/kcontrol/powerdevil/index.docbook +share/doc/HTML/ru/kcontrol/powerdevil/index.cache.bz2 +share/doc/HTML/ru/kcontrol/powerdevil/index.docbook +share/doc/HTML/uk/kcontrol/powerdevil/index.cache.bz2 +share/doc/HTML/uk/kcontrol/powerdevil/index.docbook +share/knotifications5/powerdevil.notifyrc +share/kservices5/powerdevilactivitiesconfig.desktop +share/kservices5/powerdevilbrightnesscontrolaction.desktop +share/kservices5/powerdevildimdisplayaction.desktop +share/kservices5/powerdevildpmsaction.desktop +share/kservices5/powerdevilglobalconfig.desktop +share/kservices5/powerdevilhandlebuttoneventsaction.desktop +share/kservices5/powerdevilkeyboardbrightnesscontrolaction.desktop +share/kservices5/powerdevilprofilesconfig.desktop +share/kservices5/powerdevilrunscriptaction.desktop +share/kservices5/powerdevilsuspendsessionaction.desktop +share/kservicetypes5/powerdevilaction.desktop +share/locale/ar/LC_MESSAGES/libpowerdevilcommonconfig.mo +share/locale/ar/LC_MESSAGES/powerdevil.mo +share/locale/ar/LC_MESSAGES/powerdevilactivitiesconfig.mo +share/locale/ar/LC_MESSAGES/powerdevilglobalconfig.mo +share/locale/ar/LC_MESSAGES/powerdevilprofilesconfig.mo +share/locale/as/LC_MESSAGES/powerdevil.mo +share/locale/ast/LC_MESSAGES/libpowerdevilcommonconfig.mo +share/locale/ast/LC_MESSAGES/powerdevil.mo +share/locale/ast/LC_MESSAGES/powerdevilactivitiesconfig.mo +share/locale/ast/LC_MESSAGES/powerdevilglobalconfig.mo +share/locale/ast/LC_MESSAGES/powerdevilprofilesconfig.mo +share/locale/be@latin/LC_MESSAGES/powerdevil.mo +share/locale/bg/LC_MESSAGES/powerdevil.mo +share/locale/bg/LC_MESSAGES/powerdevilactivitiesconfig.mo +share/locale/bg/LC_MESSAGES/powerdevilglobalconfig.mo +share/locale/bg/LC_MESSAGES/powerdevilprofilesconfig.mo +share/locale/bn/LC_MESSAGES/powerdevil.mo +share/locale/bn_IN/LC_MESSAGES/powerdevil.mo +share/locale/bs/LC_MESSAGES/libpowerdevilcommonconfig.mo +share/locale/bs/LC_MESSAGES/powerdevil.mo +share/locale/bs/LC_MESSAGES/powerdevilactivitiesconfig.mo +share/locale/bs/LC_MESSAGES/powerdevilglobalconfig.mo +share/locale/bs/LC_MESSAGES/powerdevilprofilesconfig.mo +share/locale/ca/LC_MESSAGES/libpowerdevilcommonconfig.mo +share/locale/ca/LC_MESSAGES/powerdevil.mo +share/locale/ca/LC_MESSAGES/powerdevilactivitiesconfig.mo +share/locale/ca/LC_MESSAGES/powerdevilglobalconfig.mo +share/locale/ca/LC_MESSAGES/powerdevilprofilesconfig.mo +share/locale/ca@valencia/LC_MESSAGES/libpowerdevilcommonconfig.mo +share/locale/ca@valencia/LC_MESSAGES/powerdevil.mo +share/locale/ca@valencia/LC_MESSAGES/powerdevilactivitiesconfig.mo +share/locale/ca@valencia/LC_MESSAGES/powerdevilglobalconfig.mo +share/locale/ca@valencia/LC_MESSAGES/powerdevilprofilesconfig.mo +share/locale/cs/LC_MESSAGES/libpowerdevilcommonconfig.mo +share/locale/cs/LC_MESSAGES/powerdevil.mo +share/locale/cs/LC_MESSAGES/powerdevilactivitiesconfig.mo +share/locale/cs/LC_MESSAGES/powerdevilglobalconfig.mo +share/locale/cs/LC_MESSAGES/powerdevilprofilesconfig.mo +share/locale/da/LC_MESSAGES/libpowerdevilcommonconfig.mo +share/locale/da/LC_MESSAGES/powerdevil.mo +share/locale/da/LC_MESSAGES/powerdevilactivitiesconfig.mo +share/locale/da/LC_MESSAGES/powerdevilglobalconfig.mo +share/locale/da/LC_MESSAGES/powerdevilprofilesconfig.mo +share/locale/de/LC_MESSAGES/libpowerdevilcommonconfig.mo +share/locale/de/LC_MESSAGES/powerdevil.mo +share/locale/de/LC_MESSAGES/powerdevilactivitiesconfig.mo +share/locale/de/LC_MESSAGES/powerdevilglobalconfig.mo +share/locale/de/LC_MESSAGES/powerdevilprofilesconfig.mo +share/locale/el/LC_MESSAGES/libpowerdevilcommonconfig.mo +share/locale/el/LC_MESSAGES/powerdevil.mo +share/locale/el/LC_MESSAGES/powerdevilactivitiesconfig.mo +share/locale/el/LC_MESSAGES/powerdevilglobalconfig.mo +share/locale/el/LC_MESSAGES/powerdevilprofilesconfig.mo +share/locale/en_GB/LC_MESSAGES/libpowerdevilcommonconfig.mo +share/locale/en_GB/LC_MESSAGES/powerdevil.mo +share/locale/en_GB/LC_MESSAGES/powerdevilactivitiesconfig.mo +share/locale/en_GB/LC_MESSAGES/powerdevilglobalconfig.mo +share/locale/en_GB/LC_MESSAGES/powerdevilprofilesconfig.mo +share/locale/eo/LC_MESSAGES/powerdevil.mo +share/locale/es/LC_MESSAGES/libpowerdevilcommonconfig.mo +share/locale/es/LC_MESSAGES/powerdevil.mo +share/locale/es/LC_MESSAGES/powerdevilactivitiesconfig.mo +share/locale/es/LC_MESSAGES/powerdevilglobalconfig.mo +share/locale/es/LC_MESSAGES/powerdevilprofilesconfig.mo +share/locale/et/LC_MESSAGES/libpowerdevilcommonconfig.mo +share/locale/et/LC_MESSAGES/powerdevil.mo +share/locale/et/LC_MESSAGES/powerdevilactivitiesconfig.mo +share/locale/et/LC_MESSAGES/powerdevilglobalconfig.mo +share/locale/et/LC_MESSAGES/powerdevilprofilesconfig.mo +share/locale/eu/LC_MESSAGES/libpowerdevilcommonconfig.mo +share/locale/eu/LC_MESSAGES/powerdevil.mo +share/locale/eu/LC_MESSAGES/powerdevilactivitiesconfig.mo +share/locale/eu/LC_MESSAGES/powerdevilglobalconfig.mo +share/locale/eu/LC_MESSAGES/powerdevilprofilesconfig.mo +share/locale/fi/LC_MESSAGES/libpowerdevilcommonconfig.mo +share/locale/fi/LC_MESSAGES/powerdevil.mo +share/locale/fi/LC_MESSAGES/powerdevilactivitiesconfig.mo +share/locale/fi/LC_MESSAGES/powerdevilglobalconfig.mo +share/locale/fi/LC_MESSAGES/powerdevilprofilesconfig.mo +share/locale/fr/LC_MESSAGES/libpowerdevilcommonconfig.mo +share/locale/fr/LC_MESSAGES/powerdevil.mo +share/locale/fr/LC_MESSAGES/powerdevilactivitiesconfig.mo +share/locale/fr/LC_MESSAGES/powerdevilglobalconfig.mo +share/locale/fr/LC_MESSAGES/powerdevilprofilesconfig.mo +share/locale/fy/LC_MESSAGES/powerdevil.mo +share/locale/ga/LC_MESSAGES/powerdevil.mo +share/locale/ga/LC_MESSAGES/powerdevilactivitiesconfig.mo +share/locale/ga/LC_MESSAGES/powerdevilglobalconfig.mo +share/locale/ga/LC_MESSAGES/powerdevilprofilesconfig.mo +share/locale/gl/LC_MESSAGES/libpowerdevilcommonconfig.mo +share/locale/gl/LC_MESSAGES/powerdevil.mo +share/locale/gl/LC_MESSAGES/powerdevilactivitiesconfig.mo +share/locale/gl/LC_MESSAGES/powerdevilglobalconfig.mo +share/locale/gl/LC_MESSAGES/powerdevilprofilesconfig.mo +share/locale/gu/LC_MESSAGES/powerdevil.mo +share/locale/gu/LC_MESSAGES/powerdevilglobalconfig.mo +share/locale/gu/LC_MESSAGES/powerdevilprofilesconfig.mo +share/locale/he/LC_MESSAGES/libpowerdevilcommonconfig.mo +share/locale/he/LC_MESSAGES/powerdevil.mo +share/locale/he/LC_MESSAGES/powerdevilactivitiesconfig.mo +share/locale/he/LC_MESSAGES/powerdevilglobalconfig.mo +share/locale/he/LC_MESSAGES/powerdevilprofilesconfig.mo +share/locale/hi/LC_MESSAGES/powerdevil.mo +share/locale/hr/LC_MESSAGES/powerdevil.mo +share/locale/hr/LC_MESSAGES/powerdevilglobalconfig.mo +share/locale/hr/LC_MESSAGES/powerdevilprofilesconfig.mo +share/locale/hsb/LC_MESSAGES/powerdevil.mo +share/locale/hu/LC_MESSAGES/libpowerdevilcommonconfig.mo +share/locale/hu/LC_MESSAGES/powerdevil.mo +share/locale/hu/LC_MESSAGES/powerdevilactivitiesconfig.mo +share/locale/hu/LC_MESSAGES/powerdevilglobalconfig.mo +share/locale/hu/LC_MESSAGES/powerdevilprofilesconfig.mo +share/locale/ia/LC_MESSAGES/libpowerdevilcommonconfig.mo +share/locale/ia/LC_MESSAGES/powerdevil.mo +share/locale/ia/LC_MESSAGES/powerdevilactivitiesconfig.mo +share/locale/ia/LC_MESSAGES/powerdevilglobalconfig.mo +share/locale/ia/LC_MESSAGES/powerdevilprofilesconfig.mo +share/locale/id/LC_MESSAGES/libpowerdevilcommonconfig.mo +share/locale/id/LC_MESSAGES/powerdevil.mo +share/locale/id/LC_MESSAGES/powerdevilactivitiesconfig.mo +share/locale/id/LC_MESSAGES/powerdevilglobalconfig.mo +share/locale/id/LC_MESSAGES/powerdevilprofilesconfig.mo +share/locale/is/LC_MESSAGES/powerdevil.mo +share/locale/it/LC_MESSAGES/libpowerdevilcommonconfig.mo +share/locale/it/LC_MESSAGES/powerdevil.mo +share/locale/it/LC_MESSAGES/powerdevilactivitiesconfig.mo +share/locale/it/LC_MESSAGES/powerdevilglobalconfig.mo +share/locale/it/LC_MESSAGES/powerdevilprofilesconfig.mo +share/locale/ja/LC_MESSAGES/libpowerdevilcommonconfig.mo +share/locale/ja/LC_MESSAGES/powerdevil.mo +share/locale/ja/LC_MESSAGES/powerdevilactivitiesconfig.mo +share/locale/ja/LC_MESSAGES/powerdevilglobalconfig.mo +share/locale/ja/LC_MESSAGES/powerdevilprofilesconfig.mo +share/locale/kk/LC_MESSAGES/libpowerdevilcommonconfig.mo +share/locale/kk/LC_MESSAGES/powerdevil.mo +share/locale/kk/LC_MESSAGES/powerdevilactivitiesconfig.mo +share/locale/kk/LC_MESSAGES/powerdevilglobalconfig.mo +share/locale/kk/LC_MESSAGES/powerdevilprofilesconfig.mo +share/locale/km/LC_MESSAGES/powerdevil.mo +share/locale/km/LC_MESSAGES/powerdevilactivitiesconfig.mo +share/locale/km/LC_MESSAGES/powerdevilglobalconfig.mo +share/locale/km/LC_MESSAGES/powerdevilprofilesconfig.mo +share/locale/ko/LC_MESSAGES/libpowerdevilcommonconfig.mo +share/locale/ko/LC_MESSAGES/powerdevil.mo +share/locale/ko/LC_MESSAGES/powerdevilactivitiesconfig.mo +share/locale/ko/LC_MESSAGES/powerdevilglobalconfig.mo +share/locale/ko/LC_MESSAGES/powerdevilprofilesconfig.mo +share/locale/ku/LC_MESSAGES/powerdevil.mo +share/locale/lt/LC_MESSAGES/libpowerdevilcommonconfig.mo +share/locale/lt/LC_MESSAGES/powerdevil.mo +share/locale/lt/LC_MESSAGES/powerdevilactivitiesconfig.mo +share/locale/lt/LC_MESSAGES/powerdevilglobalconfig.mo +share/locale/lt/LC_MESSAGES/powerdevilprofilesconfig.mo +share/locale/lv/LC_MESSAGES/powerdevil.mo +share/locale/lv/LC_MESSAGES/powerdevilglobalconfig.mo +share/locale/lv/LC_MESSAGES/powerdevilprofilesconfig.mo +share/locale/mai/LC_MESSAGES/powerdevil.mo +share/locale/ml/LC_MESSAGES/powerdevil.mo +share/locale/mr/LC_MESSAGES/powerdevil.mo +share/locale/mr/LC_MESSAGES/powerdevilactivitiesconfig.mo +share/locale/mr/LC_MESSAGES/powerdevilglobalconfig.mo +share/locale/mr/LC_MESSAGES/powerdevilprofilesconfig.mo +share/locale/ms/LC_MESSAGES/powerdevil.mo +share/locale/ms/LC_MESSAGES/powerdevilglobalconfig.mo +share/locale/ms/LC_MESSAGES/powerdevilprofilesconfig.mo +share/locale/nb/LC_MESSAGES/libpowerdevilcommonconfig.mo +share/locale/nb/LC_MESSAGES/powerdevil.mo +share/locale/nb/LC_MESSAGES/powerdevilactivitiesconfig.mo +share/locale/nb/LC_MESSAGES/powerdevilglobalconfig.mo +share/locale/nb/LC_MESSAGES/powerdevilprofilesconfig.mo +share/locale/nds/LC_MESSAGES/libpowerdevilcommonconfig.mo +share/locale/nds/LC_MESSAGES/powerdevil.mo +share/locale/nds/LC_MESSAGES/powerdevilactivitiesconfig.mo +share/locale/nds/LC_MESSAGES/powerdevilglobalconfig.mo +share/locale/nds/LC_MESSAGES/powerdevilprofilesconfig.mo +share/locale/nl/LC_MESSAGES/libpowerdevilcommonconfig.mo +share/locale/nl/LC_MESSAGES/powerdevil.mo +share/locale/nl/LC_MESSAGES/powerdevilactivitiesconfig.mo +share/locale/nl/LC_MESSAGES/powerdevilglobalconfig.mo +share/locale/nl/LC_MESSAGES/powerdevilprofilesconfig.mo +share/locale/nn/LC_MESSAGES/libpowerdevilcommonconfig.mo +share/locale/nn/LC_MESSAGES/powerdevil.mo +share/locale/nn/LC_MESSAGES/powerdevilactivitiesconfig.mo +share/locale/nn/LC_MESSAGES/powerdevilglobalconfig.mo +share/locale/nn/LC_MESSAGES/powerdevilprofilesconfig.mo +share/locale/or/LC_MESSAGES/powerdevil.mo +share/locale/pa/LC_MESSAGES/libpowerdevilcommonconfig.mo +share/locale/pa/LC_MESSAGES/powerdevil.mo +share/locale/pa/LC_MESSAGES/powerdevilactivitiesconfig.mo +share/locale/pa/LC_MESSAGES/powerdevilglobalconfig.mo +share/locale/pa/LC_MESSAGES/powerdevilprofilesconfig.mo +share/locale/pl/LC_MESSAGES/libpowerdevilcommonconfig.mo +share/locale/pl/LC_MESSAGES/powerdevil.mo +share/locale/pl/LC_MESSAGES/powerdevilactivitiesconfig.mo +share/locale/pl/LC_MESSAGES/powerdevilglobalconfig.mo +share/locale/pl/LC_MESSAGES/powerdevilprofilesconfig.mo +share/locale/pt/LC_MESSAGES/libpowerdevilcommonconfig.mo +share/locale/pt/LC_MESSAGES/powerdevil.mo +share/locale/pt/LC_MESSAGES/powerdevilactivitiesconfig.mo +share/locale/pt/LC_MESSAGES/powerdevilglobalconfig.mo +share/locale/pt/LC_MESSAGES/powerdevilprofilesconfig.mo +share/locale/pt_BR/LC_MESSAGES/libpowerdevilcommonconfig.mo +share/locale/pt_BR/LC_MESSAGES/powerdevil.mo +share/locale/pt_BR/LC_MESSAGES/powerdevilactivitiesconfig.mo +share/locale/pt_BR/LC_MESSAGES/powerdevilglobalconfig.mo +share/locale/pt_BR/LC_MESSAGES/powerdevilprofilesconfig.mo +share/locale/ro/LC_MESSAGES/libpowerdevilcommonconfig.mo +share/locale/ro/LC_MESSAGES/powerdevil.mo +share/locale/ro/LC_MESSAGES/powerdevilactivitiesconfig.mo +share/locale/ro/LC_MESSAGES/powerdevilglobalconfig.mo +share/locale/ro/LC_MESSAGES/powerdevilprofilesconfig.mo +share/locale/ru/LC_MESSAGES/libpowerdevilcommonconfig.mo +share/locale/ru/LC_MESSAGES/powerdevil.mo +share/locale/ru/LC_MESSAGES/powerdevilactivitiesconfig.mo +share/locale/ru/LC_MESSAGES/powerdevilglobalconfig.mo +share/locale/ru/LC_MESSAGES/powerdevilprofilesconfig.mo +share/locale/si/LC_MESSAGES/powerdevil.mo +share/locale/sk/LC_MESSAGES/libpowerdevilcommonconfig.mo +share/locale/sk/LC_MESSAGES/powerdevil.mo +share/locale/sk/LC_MESSAGES/powerdevilactivitiesconfig.mo +share/locale/sk/LC_MESSAGES/powerdevilglobalconfig.mo +share/locale/sk/LC_MESSAGES/powerdevilprofilesconfig.mo +share/locale/sl/LC_MESSAGES/libpowerdevilcommonconfig.mo +share/locale/sl/LC_MESSAGES/powerdevil.mo +share/locale/sl/LC_MESSAGES/powerdevilactivitiesconfig.mo +share/locale/sl/LC_MESSAGES/powerdevilglobalconfig.mo +share/locale/sl/LC_MESSAGES/powerdevilprofilesconfig.mo +share/locale/sq/LC_MESSAGES/powerdevil.mo +share/locale/sr/LC_MESSAGES/libpowerdevilcommonconfig.mo +share/locale/sr/LC_MESSAGES/powerdevil.mo +share/locale/sr/LC_MESSAGES/powerdevilactivitiesconfig.mo +share/locale/sr/LC_MESSAGES/powerdevilglobalconfig.mo +share/locale/sr/LC_MESSAGES/powerdevilprofilesconfig.mo +share/locale/sr@ijekavian/LC_MESSAGES/libpowerdevilcommonconfig.mo +share/locale/sr@ijekavian/LC_MESSAGES/powerdevil.mo +share/locale/sr@ijekavian/LC_MESSAGES/powerdevilactivitiesconfig.mo +share/locale/sr@ijekavian/LC_MESSAGES/powerdevilglobalconfig.mo +share/locale/sr@ijekavian/LC_MESSAGES/powerdevilprofilesconfig.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/libpowerdevilcommonconfig.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/powerdevil.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/powerdevilactivitiesconfig.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/powerdevilglobalconfig.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/powerdevilprofilesconfig.mo +share/locale/sr@latin/LC_MESSAGES/libpowerdevilcommonconfig.mo +share/locale/sr@latin/LC_MESSAGES/powerdevil.mo +share/locale/sr@latin/LC_MESSAGES/powerdevilactivitiesconfig.mo +share/locale/sr@latin/LC_MESSAGES/powerdevilglobalconfig.mo +share/locale/sr@latin/LC_MESSAGES/powerdevilprofilesconfig.mo +share/locale/sv/LC_MESSAGES/libpowerdevilcommonconfig.mo +share/locale/sv/LC_MESSAGES/powerdevil.mo +share/locale/sv/LC_MESSAGES/powerdevilactivitiesconfig.mo +share/locale/sv/LC_MESSAGES/powerdevilglobalconfig.mo +share/locale/sv/LC_MESSAGES/powerdevilprofilesconfig.mo +share/locale/te/LC_MESSAGES/powerdevil.mo +share/locale/tg/LC_MESSAGES/powerdevil.mo +share/locale/th/LC_MESSAGES/powerdevil.mo +share/locale/th/LC_MESSAGES/powerdevilglobalconfig.mo +share/locale/th/LC_MESSAGES/powerdevilprofilesconfig.mo +share/locale/tr/LC_MESSAGES/libpowerdevilcommonconfig.mo +share/locale/tr/LC_MESSAGES/powerdevil.mo +share/locale/tr/LC_MESSAGES/powerdevilactivitiesconfig.mo +share/locale/tr/LC_MESSAGES/powerdevilglobalconfig.mo +share/locale/tr/LC_MESSAGES/powerdevilprofilesconfig.mo +share/locale/ug/LC_MESSAGES/libpowerdevilcommonconfig.mo +share/locale/ug/LC_MESSAGES/powerdevil.mo +share/locale/ug/LC_MESSAGES/powerdevilactivitiesconfig.mo +share/locale/ug/LC_MESSAGES/powerdevilglobalconfig.mo +share/locale/ug/LC_MESSAGES/powerdevilprofilesconfig.mo +share/locale/uk/LC_MESSAGES/libpowerdevilcommonconfig.mo +share/locale/uk/LC_MESSAGES/powerdevil.mo +share/locale/uk/LC_MESSAGES/powerdevilactivitiesconfig.mo +share/locale/uk/LC_MESSAGES/powerdevilglobalconfig.mo +share/locale/uk/LC_MESSAGES/powerdevilprofilesconfig.mo +share/locale/wa/LC_MESSAGES/powerdevil.mo +share/locale/wa/LC_MESSAGES/powerdevilglobalconfig.mo +share/locale/wa/LC_MESSAGES/powerdevilprofilesconfig.mo +share/locale/zh_CN/LC_MESSAGES/libpowerdevilcommonconfig.mo +share/locale/zh_CN/LC_MESSAGES/powerdevil.mo +share/locale/zh_CN/LC_MESSAGES/powerdevilactivitiesconfig.mo +share/locale/zh_CN/LC_MESSAGES/powerdevilglobalconfig.mo +share/locale/zh_CN/LC_MESSAGES/powerdevilprofilesconfig.mo +share/locale/zh_TW/LC_MESSAGES/libpowerdevilcommonconfig.mo +share/locale/zh_TW/LC_MESSAGES/powerdevil.mo +share/locale/zh_TW/LC_MESSAGES/powerdevilactivitiesconfig.mo +share/locale/zh_TW/LC_MESSAGES/powerdevilglobalconfig.mo +share/locale/zh_TW/LC_MESSAGES/powerdevilprofilesconfig.mo +share/polkit-1/actions/org.kde.powerdevil.backlighthelper.policy +share/polkit-1/actions/org.kde.powerdevil.discretegpuhelper.policy Property changes on: head/sysutils/plasma5-powerdevil/pkg-plist ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/sysutils/plasma5-systemsettings/Makefile =================================================================== --- head/sysutils/plasma5-systemsettings/Makefile (nonexistent) +++ head/sysutils/plasma5-systemsettings/Makefile (revision 468495) @@ -0,0 +1,20 @@ +# $FreeBSD$ + +PORTNAME= systemsettings +DISTVERSION= ${KDE_PLASMA_VERSION} +CATEGORIES= sysutils kde kde-plasma + +MAINTAINER= kde@FreeBSD.org +COMMENT= Plasma5 system settings + +USES= cmake:outsource compiler:c++11-lib cpe gettext kde:5 tar:xz +USE_KDE= activities activities-stats auth codecs completion config \ + configwidgets coreaddons crash dbusaddons doctools ecm i18n \ + iconthemes itemviews jobwidgets js kcmutils kdeclarative khtml \ + kio kirigami2 package parts service sonnet textwidgets \ + widgetsaddons windowsystem xmlgui +USE_QT5= concurrent core dbus gui network qml quick widgets xml \ + buildtools_build qmake_build + +.include + Property changes on: head/sysutils/plasma5-systemsettings/Makefile ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/sysutils/plasma5-systemsettings/distinfo =================================================================== --- head/sysutils/plasma5-systemsettings/distinfo (nonexistent) +++ head/sysutils/plasma5-systemsettings/distinfo (revision 468495) @@ -0,0 +1,3 @@ +TIMESTAMP = 1523811774 +SHA256 (KDE/plasma/5.12.4/systemsettings-5.12.4.tar.xz) = 8a6cc50e8d00bf6d59e087f344f011426516307fc0a3a372a347754e2ddec229 +SIZE (KDE/plasma/5.12.4/systemsettings-5.12.4.tar.xz) = 171740 Property changes on: head/sysutils/plasma5-systemsettings/distinfo ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/sysutils/plasma5-systemsettings/pkg-descr =================================================================== --- head/sysutils/plasma5-systemsettings/pkg-descr (nonexistent) +++ head/sysutils/plasma5-systemsettings/pkg-descr (revision 468495) @@ -0,0 +1,3 @@ +Plasma5 system configuration utility. + +WWW: https://www.kde.org/plasma-desktop Property changes on: head/sysutils/plasma5-systemsettings/pkg-descr ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/sysutils/plasma5-systemsettings/pkg-plist =================================================================== --- head/sysutils/plasma5-systemsettings/pkg-plist (nonexistent) +++ head/sysutils/plasma5-systemsettings/pkg-plist (revision 468495) @@ -0,0 +1,159 @@ +bin/systemsettings5 +include/systemsettingsview/BaseData.h +include/systemsettingsview/BaseMode.h +include/systemsettingsview/MenuItem.h +include/systemsettingsview/MenuModel.h +include/systemsettingsview/MenuProxyModel.h +include/systemsettingsview/ModuleView.h +include/systemsettingsview/systemsettingsview_export.h +lib/libsystemsettingsview.so +lib/libsystemsettingsview.so.3 +%%QT_PLUGINDIR%%/classic_mode.so +%%QT_PLUGINDIR%%/icon_mode.so +%%QT_PLUGINDIR%%/systemsettings_sidebar_mode.so +share/applications/kdesystemsettings.desktop +share/applications/systemsettings.desktop +share/doc/HTML/ca/systemsettings/index.cache.bz2 +share/doc/HTML/ca/systemsettings/index.docbook +share/doc/HTML/de/systemsettings/index.cache.bz2 +share/doc/HTML/de/systemsettings/index.docbook +share/doc/HTML/en/systemsettings/index.cache.bz2 +share/doc/HTML/en/systemsettings/index.docbook +share/doc/HTML/it/systemsettings/index.cache.bz2 +share/doc/HTML/it/systemsettings/index.docbook +share/doc/HTML/nl/systemsettings/index.cache.bz2 +share/doc/HTML/nl/systemsettings/index.docbook +share/doc/HTML/pt/systemsettings/index.cache.bz2 +share/doc/HTML/pt/systemsettings/index.docbook +share/doc/HTML/pt_BR/systemsettings/index.cache.bz2 +share/doc/HTML/pt_BR/systemsettings/index.docbook +share/doc/HTML/uk/systemsettings/index.cache.bz2 +share/doc/HTML/uk/systemsettings/index.docbook +share/kpackage/genericqml/org.kde.systemsettings.sidebar/contents/ui/ActionMenu.qml +share/kpackage/genericqml/org.kde.systemsettings.sidebar/contents/ui/CategoriesPage.qml +share/kpackage/genericqml/org.kde.systemsettings.sidebar/contents/ui/IntroIcon.qml +share/kpackage/genericqml/org.kde.systemsettings.sidebar/contents/ui/SubCategoryPage.qml +share/kpackage/genericqml/org.kde.systemsettings.sidebar/contents/ui/introPage.qml +share/kpackage/genericqml/org.kde.systemsettings.sidebar/contents/ui/main.qml +share/kpackage/genericqml/org.kde.systemsettings.sidebar/metadata.desktop +share/kservices5/settings-appearance-applicationstyle.desktop +share/kservices5/settings-appearance-color.desktop +share/kservices5/settings-appearance-font.desktop +share/kservices5/settings-appearance-icons.desktop +share/kservices5/settings-appearance-workspacetheme.desktop +share/kservices5/settings-appearance.desktop +share/kservices5/settings-classic-view.desktop +share/kservices5/settings-hardware-display.desktop +share/kservices5/settings-hardware-input.desktop +share/kservices5/settings-hardware-multimedia.desktop +share/kservices5/settings-hardware-peripherals.desktop +share/kservices5/settings-hardware-powermanagement.desktop +share/kservices5/settings-hardware-removable-storage.desktop +share/kservices5/settings-hardware.desktop +share/kservices5/settings-icon-view.desktop +share/kservices5/settings-network-bluetooth.desktop +share/kservices5/settings-network-connectivity.desktop +share/kservices5/settings-network-networksettings.desktop +share/kservices5/settings-network.desktop +share/kservices5/settings-personalization-accessibility.desktop +share/kservices5/settings-personalization-accountdetails.desktop +share/kservices5/settings-personalization-applications.desktop +share/kservices5/settings-personalization-notification.desktop +share/kservices5/settings-personalization-regionalsettings.desktop +share/kservices5/settings-personalization.desktop +share/kservices5/settings-sidebar-view.desktop +share/kservices5/settings-workspace-desktopbehavior.desktop +share/kservices5/settings-workspace-search.desktop +share/kservices5/settings-workspace-session.desktop +share/kservices5/settings-workspace-shortcuts.desktop +share/kservices5/settings-workspace-windowmanagement.desktop +share/kservices5/settings-workspace.desktop +share/kservicetypes5/systemsettingscategory.desktop +share/kservicetypes5/systemsettingsexternalapp.desktop +share/kservicetypes5/systemsettingsview.desktop +share/kxmlgui5/systemsettings/systemsettingsui.rc +share/locale/ar/LC_MESSAGES/systemsettings.mo +share/locale/ast/LC_MESSAGES/systemsettings.mo +share/locale/be/LC_MESSAGES/systemsettings.mo +share/locale/be@latin/LC_MESSAGES/systemsettings.mo +share/locale/bg/LC_MESSAGES/systemsettings.mo +share/locale/bn_IN/LC_MESSAGES/systemsettings.mo +share/locale/bs/LC_MESSAGES/systemsettings.mo +share/locale/ca/LC_MESSAGES/systemsettings.mo +share/locale/ca@valencia/LC_MESSAGES/systemsettings.mo +share/locale/cs/LC_MESSAGES/systemsettings.mo +share/locale/csb/LC_MESSAGES/systemsettings.mo +share/locale/da/LC_MESSAGES/systemsettings.mo +share/locale/de/LC_MESSAGES/systemsettings.mo +share/locale/el/LC_MESSAGES/systemsettings.mo +share/locale/en_GB/LC_MESSAGES/systemsettings.mo +share/locale/eo/LC_MESSAGES/systemsettings.mo +share/locale/es/LC_MESSAGES/systemsettings.mo +share/locale/et/LC_MESSAGES/systemsettings.mo +share/locale/eu/LC_MESSAGES/systemsettings.mo +share/locale/fa/LC_MESSAGES/systemsettings.mo +share/locale/fi/LC_MESSAGES/systemsettings.mo +share/locale/fr/LC_MESSAGES/systemsettings.mo +share/locale/fy/LC_MESSAGES/systemsettings.mo +share/locale/ga/LC_MESSAGES/systemsettings.mo +share/locale/gl/LC_MESSAGES/systemsettings.mo +share/locale/gu/LC_MESSAGES/systemsettings.mo +share/locale/he/LC_MESSAGES/systemsettings.mo +share/locale/hi/LC_MESSAGES/systemsettings.mo +share/locale/hne/LC_MESSAGES/systemsettings.mo +share/locale/hr/LC_MESSAGES/systemsettings.mo +share/locale/hsb/LC_MESSAGES/systemsettings.mo +share/locale/hu/LC_MESSAGES/systemsettings.mo +share/locale/ia/LC_MESSAGES/systemsettings.mo +share/locale/id/LC_MESSAGES/systemsettings.mo +share/locale/is/LC_MESSAGES/systemsettings.mo +share/locale/it/LC_MESSAGES/systemsettings.mo +share/locale/ja/LC_MESSAGES/systemsettings.mo +share/locale/kk/LC_MESSAGES/systemsettings.mo +share/locale/km/LC_MESSAGES/systemsettings.mo +share/locale/ko/LC_MESSAGES/systemsettings.mo +share/locale/ku/LC_MESSAGES/systemsettings.mo +share/locale/lt/LC_MESSAGES/systemsettings.mo +share/locale/lv/LC_MESSAGES/systemsettings.mo +share/locale/mai/LC_MESSAGES/systemsettings.mo +share/locale/mk/LC_MESSAGES/systemsettings.mo +share/locale/ml/LC_MESSAGES/systemsettings.mo +share/locale/mr/LC_MESSAGES/systemsettings.mo +share/locale/ms/LC_MESSAGES/systemsettings.mo +share/locale/nb/LC_MESSAGES/systemsettings.mo +share/locale/nds/LC_MESSAGES/systemsettings.mo +share/locale/ne/LC_MESSAGES/systemsettings.mo +share/locale/nl/LC_MESSAGES/systemsettings.mo +share/locale/nn/LC_MESSAGES/systemsettings.mo +share/locale/oc/LC_MESSAGES/systemsettings.mo +share/locale/or/LC_MESSAGES/systemsettings.mo +share/locale/pa/LC_MESSAGES/systemsettings.mo +share/locale/pl/LC_MESSAGES/systemsettings.mo +share/locale/pt/LC_MESSAGES/systemsettings.mo +share/locale/pt_BR/LC_MESSAGES/systemsettings.mo +share/locale/ro/LC_MESSAGES/systemsettings.mo +share/locale/ru/LC_MESSAGES/systemsettings.mo +share/locale/se/LC_MESSAGES/systemsettings.mo +share/locale/si/LC_MESSAGES/systemsettings.mo +share/locale/sk/LC_MESSAGES/systemsettings.mo +share/locale/sl/LC_MESSAGES/systemsettings.mo +share/locale/sq/LC_MESSAGES/systemsettings.mo +share/locale/sr/LC_MESSAGES/systemsettings.mo +share/locale/sr@ijekavian/LC_MESSAGES/systemsettings.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/systemsettings.mo +share/locale/sr@latin/LC_MESSAGES/systemsettings.mo +share/locale/sv/LC_MESSAGES/systemsettings.mo +share/locale/ta/LC_MESSAGES/systemsettings.mo +share/locale/te/LC_MESSAGES/systemsettings.mo +share/locale/tg/LC_MESSAGES/systemsettings.mo +share/locale/th/LC_MESSAGES/systemsettings.mo +share/locale/tr/LC_MESSAGES/systemsettings.mo +share/locale/ug/LC_MESSAGES/systemsettings.mo +share/locale/uk/LC_MESSAGES/systemsettings.mo +share/locale/vi/LC_MESSAGES/systemsettings.mo +share/locale/wa/LC_MESSAGES/systemsettings.mo +share/locale/zh_CN/LC_MESSAGES/systemsettings.mo +share/locale/zh_TW/LC_MESSAGES/systemsettings.mo +%%DATADIR%%/classic/main.html +%%DATADIR%%/classic/systemsettings-classic.css +%%DATADIR%%/systemsettings.kcfg Property changes on: head/sysutils/plasma5-systemsettings/pkg-plist ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/sysutils/plasma5-user-manager/Makefile =================================================================== --- head/sysutils/plasma5-user-manager/Makefile (nonexistent) +++ head/sysutils/plasma5-user-manager/Makefile (revision 468495) @@ -0,0 +1,23 @@ +# $FreeBSD$ + +PORTNAME= user-manager +DISTVERSION= ${KDE_PLASMA_VERSION} +CATEGORIES= sysutils kde kde-plasma + +MAINTAINER= kde@FreeBSD.org +COMMENT= Plasma5 user manager + +LIB_DEPENDS= libpwquality.so:security/libpwquality + +USES= cmake:outsource compiler:c++11-lib cpe gettext \ + kde:5 pkgconfig tar:xz +USE_KDE= auth bookmarks codecs completion config configwidgets \ + coreaddons crash ecm emoticons guiaddons i18n iconthemes \ + init itemmodels itemviews jobwidgets kcmutils kdelibs4support \ + kio notifications parts service solid sonnet textwidgets \ + unitconversion widgetsaddons windowsystem xmlgui +USE_QT5= concurrent core dbus gui network printsupport widgets xml \ + buildtools_build qmake_build +USE_LDCONFIG= ${QT_PLUGINDIR} + +.include Property changes on: head/sysutils/plasma5-user-manager/Makefile ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/sysutils/plasma5-user-manager/distinfo =================================================================== --- head/sysutils/plasma5-user-manager/distinfo (nonexistent) +++ head/sysutils/plasma5-user-manager/distinfo (revision 468495) @@ -0,0 +1,3 @@ +TIMESTAMP = 1523811775 +SHA256 (KDE/plasma/5.12.4/user-manager-5.12.4.tar.xz) = 959af1859aaa8fdcd853ebae78d2b8a15e6700ca340c0ed3bd041315382524f8 +SIZE (KDE/plasma/5.12.4/user-manager-5.12.4.tar.xz) = 544660 Property changes on: head/sysutils/plasma5-user-manager/distinfo ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/sysutils/plasma5-user-manager/pkg-descr =================================================================== --- head/sysutils/plasma5-user-manager/pkg-descr (nonexistent) +++ head/sysutils/plasma5-user-manager/pkg-descr (revision 468495) @@ -0,0 +1,3 @@ +Plasma5 user manager + +WWW: https://www.kde.org/plasma-desktop Property changes on: head/sysutils/plasma5-user-manager/pkg-descr ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/sysutils/plasma5-user-manager/pkg-plist =================================================================== --- head/sysutils/plasma5-user-manager/pkg-plist (nonexistent) +++ head/sysutils/plasma5-user-manager/pkg-plist (revision 468495) @@ -0,0 +1,73 @@ +%%QT_PLUGINDIR%%/user_manager.so +share/kservices5/user_manager.desktop +%%DATADIR%%/avatars/bluesstyle/Ada Lovelace.png +%%DATADIR%%/avatars/bluesstyle/Alice in Wonderland.png +%%DATADIR%%/avatars/bluesstyle/Grace Hopper.png +%%DATADIR%%/avatars/bluesstyle/Leonardo da Vinci.png +%%DATADIR%%/avatars/bluesstyle/Mahatma Gandhi.png +%%DATADIR%%/avatars/bluesstyle/Mowgli jungle book.png +%%DATADIR%%/avatars/bluesstyle/User.png +%%DATADIR%%/avatars/circles/Cat.png +%%DATADIR%%/avatars/circles/Female.png +%%DATADIR%%/avatars/circles/Konqui.png +%%DATADIR%%/avatars/circles/Male.png +%%DATADIR%%/avatars/circles/Penguin.png +%%DATADIR%%/avatars/circles/Zebra.png +%%DATADIR%%/avatars/classic/Blackbox.png +%%DATADIR%%/avatars/classic/Bomb.png +%%DATADIR%%/avatars/classic/Dragon.png +%%DATADIR%%/avatars/classic/Green.png +%%DATADIR%%/avatars/classic/Happy.png +%%DATADIR%%/avatars/classic/Listening.png +%%DATADIR%%/avatars/classic/Notme.png +%%DATADIR%%/avatars/classic/TV.png +%%DATADIR%%/avatars/konqui/Kati.png +%%DATADIR%%/avatars/konqui/Konqui.png +%%DATADIR%%/avatars/konqui/Logger.png +%%DATADIR%%/avatars/konqui/Parley.png +%%DATADIR%%/avatars/konqui/Rekonqui.png +share/locale/ar/LC_MESSAGES/user_manager.mo +share/locale/ast/LC_MESSAGES/user_manager.mo +share/locale/bs/LC_MESSAGES/user_manager.mo +share/locale/ca/LC_MESSAGES/user_manager.mo +share/locale/ca@valencia/LC_MESSAGES/user_manager.mo +share/locale/cs/LC_MESSAGES/user_manager.mo +share/locale/da/LC_MESSAGES/user_manager.mo +share/locale/de/LC_MESSAGES/user_manager.mo +share/locale/el/LC_MESSAGES/user_manager.mo +share/locale/en_GB/LC_MESSAGES/user_manager.mo +share/locale/es/LC_MESSAGES/user_manager.mo +share/locale/et/LC_MESSAGES/user_manager.mo +share/locale/eu/LC_MESSAGES/user_manager.mo +share/locale/fi/LC_MESSAGES/user_manager.mo +share/locale/fr/LC_MESSAGES/user_manager.mo +share/locale/gl/LC_MESSAGES/user_manager.mo +share/locale/he/LC_MESSAGES/user_manager.mo +share/locale/hu/LC_MESSAGES/user_manager.mo +share/locale/ia/LC_MESSAGES/user_manager.mo +share/locale/it/LC_MESSAGES/user_manager.mo +share/locale/ja/LC_MESSAGES/user_manager.mo +share/locale/ko/LC_MESSAGES/user_manager.mo +share/locale/lt/LC_MESSAGES/user_manager.mo +share/locale/mr/LC_MESSAGES/user_manager.mo +share/locale/nb/LC_MESSAGES/user_manager.mo +share/locale/nl/LC_MESSAGES/user_manager.mo +share/locale/nn/LC_MESSAGES/user_manager.mo +share/locale/pa/LC_MESSAGES/user_manager.mo +share/locale/pl/LC_MESSAGES/user_manager.mo +share/locale/pt/LC_MESSAGES/user_manager.mo +share/locale/pt_BR/LC_MESSAGES/user_manager.mo +share/locale/ro/LC_MESSAGES/user_manager.mo +share/locale/ru/LC_MESSAGES/user_manager.mo +share/locale/sk/LC_MESSAGES/user_manager.mo +share/locale/sl/LC_MESSAGES/user_manager.mo +share/locale/sr/LC_MESSAGES/user_manager.mo +share/locale/sr@ijekavian/LC_MESSAGES/user_manager.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/user_manager.mo +share/locale/sr@latin/LC_MESSAGES/user_manager.mo +share/locale/sv/LC_MESSAGES/user_manager.mo +share/locale/tr/LC_MESSAGES/user_manager.mo +share/locale/ug/LC_MESSAGES/user_manager.mo +share/locale/uk/LC_MESSAGES/user_manager.mo +share/locale/zh_CN/LC_MESSAGES/user_manager.mo +share/locale/zh_TW/LC_MESSAGES/user_manager.mo Property changes on: head/sysutils/plasma5-user-manager/pkg-plist ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/www/Makefile =================================================================== --- head/www/Makefile (revision 468494) +++ head/www/Makefile (revision 468495) @@ -1,2570 +1,2571 @@ # $FreeBSD$ # COMMENT = Ports related to the World Wide Web SUBDIR += R-cran-RgoogleMaps SUBDIR += R-cran-Rook SUBDIR += R-cran-crosstalk SUBDIR += R-cran-downloader SUBDIR += R-cran-htmlwidgets SUBDIR += R-cran-httpuv SUBDIR += R-cran-httr SUBDIR += R-cran-rvest SUBDIR += R-cran-scrapeR SUBDIR += R-cran-selectr SUBDIR += R-cran-shiny SUBDIR += Stikked SUBDIR += UniversalFeedCreator SUBDIR += WebMagick SUBDIR += ach SUBDIR += adzap SUBDIR += alef-webfont SUBDIR += amphetadesk SUBDIR += analog SUBDIR += anyremote2html SUBDIR += anyterm SUBDIR += apache-forrest SUBDIR += apache-mode.el SUBDIR += apache24 SUBDIR += apercu SUBDIR += aria2 SUBDIR += aria2fe SUBDIR += asql SUBDIR += asterisk-stat SUBDIR += atutor SUBDIR += august SUBDIR += awffull SUBDIR += aws SUBDIR += aws-demos SUBDIR += awstats SUBDIR += axis SUBDIR += axis2 SUBDIR += bacula-web SUBDIR += baikal SUBDIR += bareos-webui SUBDIR += bigbluebutton SUBDIR += bins SUBDIR += bkmrkconv SUBDIR += blastbeat SUBDIR += blogsum SUBDIR += bluefish SUBDIR += boa SUBDIR += bolt SUBDIR += bookmarkbridge SUBDIR += bozohttpd SUBDIR += butterfly SUBDIR += c-icap SUBDIR += c-icap-modules SUBDIR += cadaver SUBDIR += caddy SUBDIR += calamaris SUBDIR += calamaris-devel SUBDIR += caldavzap SUBDIR += calendarserver SUBDIR += carbonapi SUBDIR += castget SUBDIR += cblog SUBDIR += cgi-lib SUBDIR += cgi-lib.pl SUBDIR += cgicc SUBDIR += cgichk SUBDIR += cgihtml SUBDIR += cgiparse SUBDIR += cgiwrap SUBDIR += checkbot SUBDIR += chems SUBDIR += cherokee SUBDIR += choqok SUBDIR += chpasswd SUBDIR += chromium SUBDIR += ckeditor SUBDIR += cl-lml SUBDIR += cl-lml-sbcl SUBDIR += claroline SUBDIR += clearsilver SUBDIR += clearsilver-python SUBDIR += closure-compiler SUBDIR += cmsmadesimple SUBDIR += cntlm SUBDIR += codeigniter SUBDIR += coppermine SUBDIR += cplanet SUBDIR += cppcms SUBDIR += crawl SUBDIR += crp SUBDIR += css-mode.el SUBDIR += cssed SUBDIR += csso SUBDIR += csstidy SUBDIR += ctemplate SUBDIR += cutycapt SUBDIR += davical SUBDIR += dddbl SUBDIR += ddgr SUBDIR += decss SUBDIR += deforaos-surfer SUBDIR += demoroniser SUBDIR += dfileserver SUBDIR += dhttpd SUBDIR += dillo2 SUBDIR += dojo SUBDIR += dojo-shrinksafe SUBDIR += dokuwiki SUBDIR += domoticz SUBDIR += dotproject SUBDIR += drood SUBDIR += drraw SUBDIR += drupal7 SUBDIR += drupal7-wysiwyg SUBDIR += drupal8 SUBDIR += drush SUBDIR += dtse SUBDIR += e107 SUBDIR += e2guardian SUBDIR += edbrowse SUBDIR += efront SUBDIR += elgg SUBDIR += elinks SUBDIR += elixir-html_entities SUBDIR += elixir-html_sanitize_ex SUBDIR += elixir-httpoison SUBDIR += elixir-httpotion SUBDIR += elixir-joken SUBDIR += elixir-maru SUBDIR += elixir-phoenix SUBDIR += elixir-phoenix_ecto SUBDIR += elixir-phoenix_html SUBDIR += elixir-phoenix_pubsub SUBDIR += elixir-webassembly SUBDIR += emacs-w3m SUBDIR += encode-explorer SUBDIR += entrans SUBDIR += ephemera SUBDIR += epiphany SUBDIR += erlang-cowboy SUBDIR += erlang-cowlib SUBDIR += erlang-hackney SUBDIR += erlang-ibrowse SUBDIR += erlang-mochiweb SUBDIR += erlang-mochiweb-basho SUBDIR += erlang-webmachine SUBDIR += erwn SUBDIR += fabio SUBDIR += falkon SUBDIR += fancybox SUBDIR += faup SUBDIR += fcgi SUBDIR += fcgiwrap SUBDIR += feedjack SUBDIR += ffproxy SUBDIR += fgallery SUBDIR += firefox SUBDIR += firefox-esr SUBDIR += firefox-esr-i18n SUBDIR += firefox-i18n SUBDIR += flashplayer SUBDIR += flat-frog SUBDIR += flickcurl SUBDIR += flood SUBDIR += flot SUBDIR += fluxbb SUBDIR += fnord SUBDIR += formication SUBDIR += foswiki SUBDIR += fpc-fastcgi SUBDIR += fpc-googleapi SUBDIR += fpc-httpd22 SUBDIR += fpc-httpd24 SUBDIR += fpc-libmicrohttpd SUBDIR += free-sa-devel SUBDIR += fswiki SUBDIR += ftasv SUBDIR += g-cows SUBDIR += g-gcl SUBDIR += gaeutilities SUBDIR += gallery2 SUBDIR += gallery3 SUBDIR += gatling SUBDIR += gecko-mediaplayer SUBDIR += geckodriver SUBDIR += geeknote SUBDIR += geneweb SUBDIR += geolizer SUBDIR += geronimo SUBDIR += get_flash_videos SUBDIR += getleft SUBDIR += gist SUBDIR += gitea SUBDIR += gitlab SUBDIR += gitlab-pages SUBDIR += gitlab-workhorse SUBDIR += glassfish SUBDIR += glpi SUBDIR += gnome-user-share SUBDIR += gnome-web-photo SUBDIR += go-appengine-sdk SUBDIR += go-fasthttp SUBDIR += go-www SUBDIR += gobuffalo SUBDIR += gohugo SUBDIR += google-appengine SUBDIR += google-sitemapgen SUBDIR += googlebook_dl SUBDIR += googler SUBDIR += goose SUBDIR += gotty SUBDIR += gpx2map SUBDIR += grafana SUBDIR += grafana2 SUBDIR += grafana3 SUBDIR += grafana4 SUBDIR += grafana5 SUBDIR += grails SUBDIR += gregarius SUBDIR += groupoffice SUBDIR += grr SUBDIR += gstreamer-plugins-neon SUBDIR += gstreamer1-plugins-neon SUBDIR += gtkhtml3 SUBDIR += gtkhtml4 SUBDIR += guacamole-client SUBDIR += guile-www SUBDIR += gurlchecker SUBDIR += h2o SUBDIR += habari SUBDIR += hastymail2-devel SUBDIR += havp SUBDIR += helma SUBDIR += hiawatha SUBDIR += horde-ansel SUBDIR += horde-base SUBDIR += horde-passwd SUBDIR += horde-trean SUBDIR += horde-wicked SUBDIR += hotcrp SUBDIR += hs-DAV SUBDIR += hs-HTTP SUBDIR += hs-activehs SUBDIR += hs-authenticate SUBDIR += hs-cgi SUBDIR += hs-cookie SUBDIR += hs-css-text SUBDIR += hs-fastcgi SUBDIR += hs-gitit SUBDIR += hs-hS3 SUBDIR += hs-happstack SUBDIR += hs-happstack-server SUBDIR += hs-heist SUBDIR += hs-hjsmin SUBDIR += hs-http-api-data SUBDIR += hs-http-client SUBDIR += hs-http-client-tls SUBDIR += hs-http-conduit SUBDIR += hs-http-date SUBDIR += hs-http-reverse-proxy SUBDIR += hs-http-server SUBDIR += hs-http-types SUBDIR += hs-http2 SUBDIR += hs-multipart SUBDIR += hs-oeis SUBDIR += hs-path-pieces SUBDIR += hs-recaptcha SUBDIR += hs-shakespeare SUBDIR += hs-snap SUBDIR += hs-snap-core SUBDIR += hs-snap-server SUBDIR += hs-url SUBDIR += hs-wai SUBDIR += hs-wai-app-static SUBDIR += hs-wai-extra SUBDIR += hs-wai-logger SUBDIR += hs-warp SUBDIR += hs-warp-tls SUBDIR += hs-webkit SUBDIR += hs-xss-sanitize SUBDIR += hs-yesod SUBDIR += hs-yesod-auth SUBDIR += hs-yesod-auth-hashdb SUBDIR += hs-yesod-bin SUBDIR += hs-yesod-core SUBDIR += hs-yesod-form SUBDIR += hs-yesod-persistent SUBDIR += hs-yesod-static SUBDIR += hs-yesod-test SUBDIR += htdigest SUBDIR += htdump SUBDIR += html2hdml SUBDIR += html2wml SUBDIR += htmlcompressor SUBDIR += htmlcxx SUBDIR += htmlpp SUBDIR += httest SUBDIR += http-analyze SUBDIR += http_get SUBDIR += http_load SUBDIR += http_post SUBDIR += httpasyncclient SUBDIR += httpclient SUBDIR += httpcore SUBDIR += httptunnel SUBDIR += httrack SUBDIR += hypermail SUBDIR += igal2 SUBDIR += ikiwiki SUBDIR += ilias SUBDIR += imgsizer SUBDIR += interchange SUBDIR += iridium SUBDIR += itop SUBDIR += jdresolve SUBDIR += jericho-html SUBDIR += jesred SUBDIR += jetty8 SUBDIR += jetty9 SUBDIR += jmeter SUBDIR += joomla3 SUBDIR += jspwiki SUBDIR += jtoolkit SUBDIR += junkbuster SUBDIR += kanboard SUBDIR += kannel SUBDIR += kannel-sqlbox SUBDIR += kcgi SUBDIR += kdewebdev-kde4 SUBDIR += kf5-kdewebkit SUBDIR += kf5-khtml SUBDIR += kf5-kjs SUBDIR += kf5-kjsembed SUBDIR += kohana SUBDIR += kpartsplugin SUBDIR += kplaylist SUBDIR += kwebkitpart SUBDIR += larbin SUBDIR += libapreq2 SUBDIR += libdom SUBDIR += libecap SUBDIR += libepc SUBDIR += libevhtp SUBDIR += libgtkhtml SUBDIR += libhpack SUBDIR += libhubbub SUBDIR += libjwt SUBDIR += libmicrohttpd SUBDIR += libnghttp2 SUBDIR += libresonic-standalone SUBDIR += libsocialweb SUBDIR += libwww SUBDIR += libxul SUBDIR += lightsquid SUBDIR += lighttpd SUBDIR += lighttpd-mod_h264_streaming SUBDIR += limesurvey SUBDIR += linkcheck SUBDIR += linkchecker SUBDIR += linklint SUBDIR += links SUBDIR += links-hacked SUBDIR += links1 SUBDIR += linux-c6-qt47-webkit SUBDIR += linux-c7-qtwebkit SUBDIR += linux-flashplayer SUBDIR += linux-opera SUBDIR += litmus SUBDIR += ljdeps SUBDIR += ljdump SUBDIR += llgal SUBDIR += logtools SUBDIR += luakit SUBDIR += lynx SUBDIR += lynx-current SUBDIR += madsonic SUBDIR += madsonic-standalone SUBDIR += magento SUBDIR += mahara SUBDIR += man2web SUBDIR += mathjax SUBDIR += mathopd SUBDIR += matomo SUBDIR += mattermost-server SUBDIR += mattermost-webapp SUBDIR += mediawiki127 SUBDIR += mediawiki129 SUBDIR += mediawiki130 SUBDIR += mergelog SUBDIR += mgstat SUBDIR += mhonarc SUBDIR += micro_httpd SUBDIR += middleman SUBDIR += midori SUBDIR += mimetex SUBDIR += mini_httpd SUBDIR += miniflux SUBDIR += miniminiweb SUBDIR += minio SUBDIR += minio-client SUBDIR += mitmproxy SUBDIR += mkapachepw SUBDIR += mknmz-wwwoffle SUBDIR += mnogosearch SUBDIR += mod_amazon_proxy SUBDIR += mod_asn SUBDIR += mod_auth_cas SUBDIR += mod_auth_cookie_mysql2 SUBDIR += mod_auth_external2 SUBDIR += mod_auth_gssapi SUBDIR += mod_auth_kerb2 SUBDIR += mod_auth_mysql2 SUBDIR += mod_auth_mysql_another SUBDIR += mod_auth_openid SUBDIR += mod_auth_openidc SUBDIR += mod_auth_pam2 SUBDIR += mod_auth_pgsql2 SUBDIR += mod_auth_pubtkt SUBDIR += mod_auth_tkt SUBDIR += mod_auth_xradius SUBDIR += mod_authnz_crowd SUBDIR += mod_authnz_external24 SUBDIR += mod_backtrace SUBDIR += mod_cfg_ldap SUBDIR += mod_chroot SUBDIR += mod_cloudflare SUBDIR += mod_cvs2 SUBDIR += mod_dav_svn SUBDIR += mod_dnssd SUBDIR += mod_domaintree SUBDIR += mod_encoding SUBDIR += mod_evasive SUBDIR += mod_fastcgi SUBDIR += mod_fcgid SUBDIR += mod_fileiri SUBDIR += mod_flickr SUBDIR += mod_geoip2 SUBDIR += mod_gnutls SUBDIR += mod_gzip2 SUBDIR += mod_h264_streaming SUBDIR += mod_http2-devel SUBDIR += mod_jk SUBDIR += mod_layout22 SUBDIR += mod_limitipconn2 SUBDIR += mod_line_edit SUBDIR += mod_log_sql2 SUBDIR += mod_md-devel SUBDIR += mod_memcache SUBDIR += mod_memcache_block SUBDIR += mod_mono SUBDIR += mod_mpm_itk SUBDIR += mod_pagespeed SUBDIR += mod_perl2 SUBDIR += mod_php56 SUBDIR += mod_php70 SUBDIR += mod_php71 SUBDIR += mod_php72 SUBDIR += mod_proctitle SUBDIR += mod_proxy_uwsgi SUBDIR += mod_proxy_xml SUBDIR += mod_python35 SUBDIR += mod_qos SUBDIR += mod_realdoc SUBDIR += mod_reproxy SUBDIR += mod_rivet SUBDIR += mod_rpaf2 SUBDIR += mod_scgi SUBDIR += mod_security SUBDIR += mod_security3 SUBDIR += mod_setenvifplus SUBDIR += mod_tidy SUBDIR += mod_tsa SUBDIR += mod_umask SUBDIR += mod_vhs SUBDIR += mod_webauth SUBDIR += mod_webkit SUBDIR += mod_wsgi4 SUBDIR += mod_xmlns SUBDIR += mod_xsendfile SUBDIR += mohawk SUBDIR += moinmoin SUBDIR += monast SUBDIR += mongoose SUBDIR += mongrel2 SUBDIR += moodle31 SUBDIR += moodle32 SUBDIR += moodle33 SUBDIR += moodle34 SUBDIR += mozplugger SUBDIR += multisort SUBDIR += multiwatch SUBDIR += mybb SUBDIR += myfaces SUBDIR += mysar SUBDIR += mysqlphp2postgres SUBDIR += mythplugin-mythweb SUBDIR += nanoblogger SUBDIR += nanoblogger-extra SUBDIR += neon SUBDIR += netoffice SUBDIR += netrik SUBDIR += netstiff SUBDIR += netsurf SUBDIR += newsboat SUBDIR += nextcloud SUBDIR += nextcloud-calendar SUBDIR += nextcloud-contacts SUBDIR += nextcloud-notes SUBDIR += nextcloud-tasks SUBDIR += nghttp2 SUBDIR += nginx SUBDIR += nginx-devel SUBDIR += nginx-full SUBDIR += nginx-lite SUBDIR += nginx-naxsi SUBDIR += nibbleblog SUBDIR += node SUBDIR += node4 SUBDIR += node6 SUBDIR += node8 SUBDIR += nostromo SUBDIR += novnc SUBDIR += novnc-websockify SUBDIR += npapi-vlc SUBDIR += npapi-xine SUBDIR += npc SUBDIR += npm SUBDIR += npm-node4 SUBDIR += npm-node6 SUBDIR += npm-node8 SUBDIR += nspluginwrapper SUBDIR += nuvolaplayer-8tracks SUBDIR += nuvolaplayer-all-services SUBDIR += nuvolaplayer-amazon-cloud-player SUBDIR += nuvolaplayer-bandcamp SUBDIR += nuvolaplayer-google-play-music SUBDIR += nuvolaplayer-groove SUBDIR += nuvolaplayer-jango SUBDIR += nuvolaplayer-kexp SUBDIR += nuvolaplayer-logitech-media-server SUBDIR += nuvolaplayer-mixcloud SUBDIR += nuvolaplayer-plex SUBDIR += nuvolaplayer-soundcloud SUBDIR += nuvolaplayer-spotify SUBDIR += nuvolaplayer-tunein SUBDIR += nuvolaplayer-yandex-music SUBDIR += nuvolaplayer-youtube SUBDIR += obhttpd SUBDIR += ocaml-net SUBDIR += opencart SUBDIR += opera SUBDIR += opera-linuxplugins SUBDIR += orangehrm SUBDIR += oscommerce SUBDIR += osrm-backend SUBDIR += otrs SUBDIR += otter-browser SUBDIR += owncloud SUBDIR += p5-AMF-Perl SUBDIR += p5-Acme-Monta SUBDIR += p5-Amon2 SUBDIR += p5-Amon2-Lite SUBDIR += p5-Amon2-Plugin-LogDispatch SUBDIR += p5-Amon2-Plugin-Web-CSRFDefender SUBDIR += p5-Amon2-Plugin-Web-MobileAgent SUBDIR += p5-Any-Template SUBDIR += p5-Any-URI-Escape SUBDIR += p5-AnyEvent-HTTP SUBDIR += p5-AnyEvent-HTTP-LWP-UserAgent SUBDIR += p5-AnyEvent-HTTPD SUBDIR += p5-AnyEvent-Mojo SUBDIR += p5-AnyEvent-ReverseHTTP SUBDIR += p5-AnyEvent-SCGI SUBDIR += p5-AnyEvent-WebSocket-Client SUBDIR += p5-Apache-ASP SUBDIR += p5-Apache-Admin-Config SUBDIR += p5-Apache-AuthCookie SUBDIR += p5-Apache-AuthTicket SUBDIR += p5-Apache-Clean2 SUBDIR += p5-Apache-ConfigFile SUBDIR += p5-Apache-ConfigParser SUBDIR += p5-Apache-DB SUBDIR += p5-Apache-DBI SUBDIR += p5-Apache-Gallery SUBDIR += p5-Apache-Htgroup SUBDIR += p5-Apache-LogFormat-Compiler SUBDIR += p5-Apache-MP3 SUBDIR += p5-Apache-ParseFormData SUBDIR += p5-Apache-Profiler SUBDIR += p5-Apache-Session SUBDIR += p5-Apache-Session-PHP SUBDIR += p5-Apache-Session-SQLite3 SUBDIR += p5-Apache-Session-SharedMem SUBDIR += p5-Apache-Session-Wrapper SUBDIR += p5-Apache-SessionX SUBDIR += p5-Apache-Singleton SUBDIR += p5-Apache2-SiteControl SUBDIR += p5-ApacheBench SUBDIR += p5-App-Nopaste SUBDIR += p5-App-gist SUBDIR += p5-Ark SUBDIR += p5-Bigtop SUBDIR += p5-Blog-Spam SUBDIR += p5-Browser-Open SUBDIR += p5-Business-PayPal SUBDIR += p5-CGI SUBDIR += p5-CGI-Ajax SUBDIR += p5-CGI-Application SUBDIR += p5-CGI-Application-Dispatch SUBDIR += p5-CGI-Application-Dispatch-Server SUBDIR += p5-CGI-Application-PSGI SUBDIR += p5-CGI-Application-Plugin-AnyTemplate SUBDIR += p5-CGI-Application-Plugin-Apache SUBDIR += p5-CGI-Application-Plugin-Authentication SUBDIR += p5-CGI-Application-Plugin-Authorization SUBDIR += p5-CGI-Application-Plugin-AutoRunmode SUBDIR += p5-CGI-Application-Plugin-Config-YAML SUBDIR += p5-CGI-Application-Plugin-ConfigAuto SUBDIR += p5-CGI-Application-Plugin-DBH SUBDIR += p5-CGI-Application-Plugin-DebugScreen SUBDIR += p5-CGI-Application-Plugin-DevPopup SUBDIR += p5-CGI-Application-Plugin-Forward SUBDIR += p5-CGI-Application-Plugin-HTDot SUBDIR += p5-CGI-Application-Plugin-HTMLPrototype SUBDIR += p5-CGI-Application-Plugin-HtmlTidy SUBDIR += p5-CGI-Application-Plugin-JSON SUBDIR += p5-CGI-Application-Plugin-LinkIntegrity SUBDIR += p5-CGI-Application-Plugin-LogDispatch SUBDIR += p5-CGI-Application-Plugin-MessageStack SUBDIR += p5-CGI-Application-Plugin-Redirect SUBDIR += p5-CGI-Application-Plugin-Session SUBDIR += p5-CGI-Application-Plugin-Stream SUBDIR += p5-CGI-Application-Plugin-TT SUBDIR += p5-CGI-Application-Plugin-ValidateRM SUBDIR += p5-CGI-Application-Plugin-ViewCode SUBDIR += p5-CGI-Application-Server SUBDIR += p5-CGI-ArgChecker SUBDIR += p5-CGI-Builder SUBDIR += p5-CGI-Builder-TT2 SUBDIR += p5-CGI-Cache SUBDIR += p5-CGI-Compile SUBDIR += p5-CGI-Compress-Gzip SUBDIR += p5-CGI-Cookie-Splitter SUBDIR += p5-CGI-Cookie-XS SUBDIR += p5-CGI-Deurl-XS SUBDIR += p5-CGI-Emulate-PSGI SUBDIR += p5-CGI-EncryptForm SUBDIR += p5-CGI-Enurl SUBDIR += p5-CGI-Ex SUBDIR += p5-CGI-Expand SUBDIR += p5-CGI-ExtDirect SUBDIR += p5-CGI-FCKeditor SUBDIR += p5-CGI-Fast SUBDIR += p5-CGI-FastTemplate SUBDIR += p5-CGI-FormBuilder SUBDIR += p5-CGI-Framework SUBDIR += p5-CGI-Kwiki SUBDIR += p5-CGI-Minimal SUBDIR += p5-CGI-PSGI SUBDIR += p5-CGI-Pager SUBDIR += p5-CGI-Prototype SUBDIR += p5-CGI-Response SUBDIR += p5-CGI-SSI SUBDIR += p5-CGI-Session SUBDIR += p5-CGI-Session-ExpireSessions SUBDIR += p5-CGI-Simple SUBDIR += p5-CGI-SpeedyCGI SUBDIR += p5-CGI-Struct SUBDIR += p5-CGI-Thin SUBDIR += p5-CGI-Untaint SUBDIR += p5-CGI-Untaint-date SUBDIR += p5-CGI-Untaint-email SUBDIR += p5-CGI-Upload SUBDIR += p5-CGI-Utils SUBDIR += p5-CGI-XMLApplication SUBDIR += p5-CGI.pm SUBDIR += p5-CGI_Lite SUBDIR += p5-CIF-Client SUBDIR += p5-CSS-DOM SUBDIR += p5-CSS-Inliner SUBDIR += p5-Catalyst-Action-REST SUBDIR += p5-Catalyst-Action-RenderView SUBDIR += p5-Catalyst-Action-Serialize-XML-Hash-LX SUBDIR += p5-Catalyst-ActionRole-ACL SUBDIR += p5-Catalyst-Authentication-Credential-HTTP SUBDIR += p5-Catalyst-Authentication-Credential-OpenID SUBDIR += p5-Catalyst-Authentication-Store-DBIx-Class SUBDIR += p5-Catalyst-Authentication-Store-LDAP SUBDIR += p5-Catalyst-Component-ACCEPT_CONTEXT SUBDIR += p5-Catalyst-Component-InstancePerContext SUBDIR += p5-Catalyst-Controller-ActionRole SUBDIR += p5-Catalyst-Controller-BindLex SUBDIR += p5-Catalyst-Controller-FormBuilder SUBDIR += p5-Catalyst-Controller-HTML-FormFu SUBDIR += p5-Catalyst-Controller-RateLimit SUBDIR += p5-Catalyst-Controller-RequestToken SUBDIR += p5-Catalyst-Controller-SOAP SUBDIR += p5-Catalyst-Devel SUBDIR += p5-Catalyst-DispatchType-Regex SUBDIR += p5-Catalyst-Engine-Apache SUBDIR += p5-Catalyst-Engine-HTTP-Prefork SUBDIR += p5-Catalyst-Engine-PSGI SUBDIR += p5-Catalyst-Enzyme SUBDIR += p5-Catalyst-Helper-Controller-Scaffold SUBDIR += p5-Catalyst-Manual SUBDIR += p5-Catalyst-Model-Adaptor SUBDIR += p5-Catalyst-Model-CDBI SUBDIR += p5-Catalyst-Model-CDBI-Plain SUBDIR += p5-Catalyst-Model-CDBI-Sweet SUBDIR += p5-Catalyst-Model-DBIC-Plain SUBDIR += p5-Catalyst-Model-DBIC-Schema SUBDIR += p5-Catalyst-Model-DynamicAdaptor SUBDIR += p5-Catalyst-Model-LDAP SUBDIR += p5-Catalyst-Model-Memcached SUBDIR += p5-Catalyst-Model-Oryx SUBDIR += p5-Catalyst-Model-Tarantool SUBDIR += p5-Catalyst-Model-XML-Feed SUBDIR += p5-Catalyst-Model-Xapian SUBDIR += p5-Catalyst-Model-Xapian10 SUBDIR += p5-Catalyst-Plugin-AtomServer SUBDIR += p5-Catalyst-Plugin-Authentication SUBDIR += p5-Catalyst-Plugin-Authentication-CDBI SUBDIR += p5-Catalyst-Plugin-Authentication-OpenID SUBDIR += p5-Catalyst-Plugin-Authentication-Store-Htpasswd SUBDIR += p5-Catalyst-Plugin-Authorization-ACL SUBDIR += p5-Catalyst-Plugin-Authorization-Roles SUBDIR += p5-Catalyst-Plugin-AutoCRUD SUBDIR += p5-Catalyst-Plugin-Browser SUBDIR += p5-Catalyst-Plugin-C3 SUBDIR += p5-Catalyst-Plugin-Cache SUBDIR += p5-Catalyst-Plugin-Cache-FastMmap SUBDIR += p5-Catalyst-Plugin-Cache-Memcached SUBDIR += p5-Catalyst-Plugin-Cache-Memcached-Fast SUBDIR += p5-Catalyst-Plugin-Captcha SUBDIR += p5-Catalyst-Plugin-ConfigLoader SUBDIR += p5-Catalyst-Plugin-ConfigLoader-Environment SUBDIR += p5-Catalyst-Plugin-CookiedSession SUBDIR += p5-Catalyst-Plugin-DateTime SUBDIR += p5-Catalyst-Plugin-DefaultEnd SUBDIR += p5-Catalyst-Plugin-Email SUBDIR += p5-Catalyst-Plugin-ErrorCatcher SUBDIR += p5-Catalyst-Plugin-FillInForm SUBDIR += p5-Catalyst-Plugin-FormBuilder SUBDIR += p5-Catalyst-Plugin-FormValidator SUBDIR += p5-Catalyst-Plugin-I18N SUBDIR += p5-Catalyst-Plugin-Log-Dispatch SUBDIR += p5-Catalyst-Plugin-Log-Handler SUBDIR += p5-Catalyst-Plugin-LogWarnings SUBDIR += p5-Catalyst-Plugin-PageCache SUBDIR += p5-Catalyst-Plugin-Params-Nested SUBDIR += p5-Catalyst-Plugin-Pluggable SUBDIR += p5-Catalyst-Plugin-Prototype SUBDIR += p5-Catalyst-Plugin-RunAfterRequest SUBDIR += p5-Catalyst-Plugin-Scheduler SUBDIR += p5-Catalyst-Plugin-Server SUBDIR += p5-Catalyst-Plugin-Session SUBDIR += p5-Catalyst-Plugin-Session-FastMmap SUBDIR += p5-Catalyst-Plugin-Session-PerUser SUBDIR += p5-Catalyst-Plugin-Session-State-Cookie SUBDIR += p5-Catalyst-Plugin-Session-State-URI SUBDIR += p5-Catalyst-Plugin-Session-Store-Cache SUBDIR += p5-Catalyst-Plugin-Session-Store-DBI SUBDIR += p5-Catalyst-Plugin-Session-Store-DBIC SUBDIR += p5-Catalyst-Plugin-Session-Store-Delegate SUBDIR += p5-Catalyst-Plugin-Session-Store-FastMmap SUBDIR += p5-Catalyst-Plugin-Session-Store-File SUBDIR += p5-Catalyst-Plugin-Session-Store-Memcached SUBDIR += p5-Catalyst-Plugin-Session-Store-Memcached-Fast SUBDIR += p5-Catalyst-Plugin-Setenv SUBDIR += p5-Catalyst-Plugin-SmartURI SUBDIR += p5-Catalyst-Plugin-StackTrace SUBDIR += p5-Catalyst-Plugin-Static SUBDIR += p5-Catalyst-Plugin-Static-Simple SUBDIR += p5-Catalyst-Plugin-StatusMessage SUBDIR += p5-Catalyst-Plugin-SubRequest SUBDIR += p5-Catalyst-Plugin-Textile SUBDIR += p5-Catalyst-Plugin-Unicode SUBDIR += p5-Catalyst-Plugin-XMLRPC SUBDIR += p5-Catalyst-Runtime SUBDIR += p5-Catalyst-TraitFor-Controller-DBIC-DoesPaging SUBDIR += p5-Catalyst-TraitFor-Request-BrowserDetect SUBDIR += p5-Catalyst-View-ClearSilver SUBDIR += p5-Catalyst-View-Email SUBDIR += p5-Catalyst-View-GraphViz SUBDIR += p5-Catalyst-View-HTML-Template SUBDIR += p5-Catalyst-View-HTML-Template-Compiled SUBDIR += p5-Catalyst-View-JSON SUBDIR += p5-Catalyst-View-Jemplate SUBDIR += p5-Catalyst-View-Mason SUBDIR += p5-Catalyst-View-REST-XML SUBDIR += p5-Catalyst-View-RRDGraph SUBDIR += p5-Catalyst-View-TT SUBDIR += p5-Catalyst-View-TT-Alloy SUBDIR += p5-Catalyst-View-TT-ControllerLocal SUBDIR += p5-Catalyst-View-Template-Declare SUBDIR += p5-Catalyst-View-Templated SUBDIR += p5-Catalyst-View-XML-Feed SUBDIR += p5-Catalyst-View-XML-Simple SUBDIR += p5-Catalyst-View-XSLT SUBDIR += p5-CatalystX-AppBuilder SUBDIR += p5-CatalystX-Component-Traits SUBDIR += p5-CatalystX-InjectComponent SUBDIR += p5-CatalystX-LeakChecker SUBDIR += p5-CatalystX-Profile SUBDIR += p5-CatalystX-REPL SUBDIR += p5-CatalystX-RoleApplicator SUBDIR += p5-CatalystX-SimpleLogin SUBDIR += p5-CatalystX-VirtualComponents SUBDIR += p5-Class-DBI-FromForm SUBDIR += p5-ClearSilver SUBDIR += p5-Compress-LeadingBlankSpaces SUBDIR += p5-Continuity SUBDIR += p5-Cookie-Baker SUBDIR += p5-Corona SUBDIR += p5-Dancer SUBDIR += p5-Dancer-Logger-Log4perl SUBDIR += p5-Dancer-Plugin-ExtDirect SUBDIR += p5-Dancer-Plugin-Feed SUBDIR += p5-Dancer-Plugin-FlashMessage SUBDIR += p5-Dancer-Plugin-Lexicon SUBDIR += p5-Dancer-Plugin-Memcached SUBDIR += p5-Dancer-Plugin-REST SUBDIR += p5-Dancer-Plugin-RPC SUBDIR += p5-Dancer-Plugin-SiteMap SUBDIR += p5-Dancer-Plugin-ValidationClass SUBDIR += p5-Dancer-Session-Cookie SUBDIR += p5-Dancer-Template-Xslate SUBDIR += p5-Dancer2 SUBDIR += p5-Dancer2-Plugin-Ajax SUBDIR += p5-Dancer2-Plugin-Deferred SUBDIR += p5-Dancer2-Plugin-Interchange6 SUBDIR += p5-Dancer2-Plugin-Path-Class SUBDIR += p5-Data-TreeDumper-Renderer-DHTML SUBDIR += p5-Data-Validate-URI SUBDIR += p5-Emplacken SUBDIR += p5-FAQ-OMatic SUBDIR += p5-FCGI SUBDIR += p5-FCGI-Async SUBDIR += p5-FCGI-Client SUBDIR += p5-FCGI-Engine SUBDIR += p5-FCGI-ProcManager SUBDIR += p5-FCGI-Spawn SUBDIR += p5-FEAR-API SUBDIR += p5-Facebook-Graph SUBDIR += p5-Feed-Find SUBDIR += p5-Feersum SUBDIR += p5-File-Mork SUBDIR += p5-Flea SUBDIR += p5-Flickr-API SUBDIR += p5-Flickr-Upload SUBDIR += p5-Fliggy SUBDIR += p5-Furl SUBDIR += p5-FurlX-Coro SUBDIR += p5-Gantry SUBDIR += p5-Geo-Caching SUBDIR += p5-Google-Search SUBDIR += p5-Gtk2-WebKit SUBDIR += p5-Gungho SUBDIR += p5-GunghoX-FollowLinks SUBDIR += p5-HTML-Adsense SUBDIR += p5-HTML-Breadcrumbs SUBDIR += p5-HTML-CalendarMonthSimple SUBDIR += p5-HTML-Chunks SUBDIR += p5-HTML-Clean SUBDIR += p5-HTML-ContentExtractor SUBDIR += p5-HTML-DOM SUBDIR += p5-HTML-Declare SUBDIR += p5-HTML-Defaultify SUBDIR += p5-HTML-Diff SUBDIR += p5-HTML-Display SUBDIR += p5-HTML-Element-Extended SUBDIR += p5-HTML-Element-Library SUBDIR += p5-HTML-Element-Replacer SUBDIR += p5-HTML-Encoding SUBDIR += p5-HTML-ExtractContent SUBDIR += p5-HTML-ExtractMain SUBDIR += p5-HTML-Field SUBDIR += p5-HTML-FillInForm SUBDIR += p5-HTML-FillInForm-ForceUTF8 SUBDIR += p5-HTML-FillInForm-Lite SUBDIR += p5-HTML-Form SUBDIR += p5-HTML-FormFu SUBDIR += p5-HTML-FormFu-Imager SUBDIR += p5-HTML-FormFu-Model-DBIC SUBDIR += p5-HTML-FormFu-MultiForm SUBDIR += p5-HTML-FormHandler SUBDIR += p5-HTML-FromANSI SUBDIR += p5-HTML-FromText SUBDIR += p5-HTML-GenToc SUBDIR += p5-HTML-GenerateUtil SUBDIR += p5-HTML-GoogleMaps SUBDIR += p5-HTML-Highlight SUBDIR += p5-HTML-LinkExtractor SUBDIR += p5-HTML-LinkList SUBDIR += p5-HTML-Lint SUBDIR += p5-HTML-Location SUBDIR += p5-HTML-Macro SUBDIR += p5-HTML-Mason SUBDIR += p5-HTML-Mason-PSGIHandler SUBDIR += p5-HTML-MobileConverter SUBDIR += p5-HTML-Pager SUBDIR += p5-HTML-Parser SUBDIR += p5-HTML-Parser-Simple SUBDIR += p5-HTML-Perlinfo SUBDIR += p5-HTML-PrettyPrinter SUBDIR += p5-HTML-Prototype SUBDIR += p5-HTML-Query SUBDIR += p5-HTML-QuickCheck SUBDIR += p5-HTML-RSSAutodiscovery SUBDIR += p5-HTML-ResolveLink SUBDIR += p5-HTML-Restrict SUBDIR += p5-HTML-RobotsMETA SUBDIR += p5-HTML-Scrubber SUBDIR += p5-HTML-Seamstress SUBDIR += p5-HTML-Selector-XPath SUBDIR += p5-HTML-Shakan SUBDIR += p5-HTML-SimpleLinkExtor SUBDIR += p5-HTML-SimpleParse SUBDIR += p5-HTML-StickyQuery SUBDIR += p5-HTML-StickyQuery-DoCoMoGUID SUBDIR += p5-HTML-Stream SUBDIR += p5-HTML-Strip SUBDIR += p5-HTML-StripScripts SUBDIR += p5-HTML-StripScripts-Parser SUBDIR += p5-HTML-Summary SUBDIR += p5-HTML-Table SUBDIR += p5-HTML-TableContentParser SUBDIR += p5-HTML-TableExtract SUBDIR += p5-HTML-TableLayout SUBDIR += p5-HTML-TableParser SUBDIR += p5-HTML-TableTiler SUBDIR += p5-HTML-TagCloud SUBDIR += p5-HTML-TagCloud-Extended SUBDIR += p5-HTML-TagParser SUBDIR += p5-HTML-Tagset SUBDIR += p5-HTML-Template SUBDIR += p5-HTML-Template-Associate SUBDIR += p5-HTML-Template-Compiled SUBDIR += p5-HTML-Template-Expr SUBDIR += p5-HTML-Template-HashWrapper SUBDIR += p5-HTML-Template-JIT SUBDIR += p5-HTML-Template-Pluggable SUBDIR += p5-HTML-Template-Pro SUBDIR += p5-HTML-Toc SUBDIR += p5-HTML-TokeParser-Simple SUBDIR += p5-HTML-Tree SUBDIR += p5-HTML-TreeBuilder-LibXML SUBDIR += p5-HTML-TreeBuilder-XPath SUBDIR += p5-HTML-Widgets-SelectLayers SUBDIR += p5-HTML-WikiConverter SUBDIR += p5-HTML-WikiConverter-DokuWiki SUBDIR += p5-HTML-WikiConverter-GoogleCode SUBDIR += p5-HTML-WikiConverter-Kwiki SUBDIR += p5-HTML-WikiConverter-Markdown SUBDIR += p5-HTML-WikiConverter-MediaWiki SUBDIR += p5-HTML-WikiConverter-MoinMoin SUBDIR += p5-HTML-WikiConverter-Oddmuse SUBDIR += p5-HTML-WikiConverter-PbWiki SUBDIR += p5-HTML-WikiConverter-PhpWiki SUBDIR += p5-HTML-WikiConverter-PmWiki SUBDIR += p5-HTML-WikiConverter-SnipSnap SUBDIR += p5-HTML-WikiConverter-Socialtext SUBDIR += p5-HTML-WikiConverter-TikiWiki SUBDIR += p5-HTML-WikiConverter-UseMod SUBDIR += p5-HTML-WikiConverter-WakkaWiki SUBDIR += p5-HTML-WikiConverter-WikkaWiki SUBDIR += p5-HTTP-Async SUBDIR += p5-HTTP-Body SUBDIR += p5-HTTP-BrowserDetect SUBDIR += p5-HTTP-Cache-Transparent SUBDIR += p5-HTTP-CookieJar SUBDIR += p5-HTTP-Cookies SUBDIR += p5-HTTP-Cookies-Mozilla SUBDIR += p5-HTTP-Cookies-iCab SUBDIR += p5-HTTP-Cookies-w3m SUBDIR += p5-HTTP-DAV SUBDIR += p5-HTTP-Daemon SUBDIR += p5-HTTP-Daemon-SSL SUBDIR += p5-HTTP-Date SUBDIR += p5-HTTP-Engine SUBDIR += p5-HTTP-Engine-Middleware SUBDIR += p5-HTTP-Exception SUBDIR += p5-HTTP-HeaderParser-XS SUBDIR += p5-HTTP-Headers-Fast SUBDIR += p5-HTTP-Link-Parser SUBDIR += p5-HTTP-Lite SUBDIR += p5-HTTP-MHTTP SUBDIR += p5-HTTP-Message SUBDIR += p5-HTTP-MobileAgent SUBDIR += p5-HTTP-MobileAgent-Plugin-Charset SUBDIR += p5-HTTP-MobileAgent-Plugin-Locator SUBDIR += p5-HTTP-Negotiate SUBDIR += p5-HTTP-Parser SUBDIR += p5-HTTP-Parser-XS SUBDIR += p5-HTTP-Proxy SUBDIR += p5-HTTP-ProxyPAC SUBDIR += p5-HTTP-Recorder SUBDIR += p5-HTTP-Request-AsCGI SUBDIR += p5-HTTP-Request-Params SUBDIR += p5-HTTP-Response-Encoding SUBDIR += p5-HTTP-Router SUBDIR += p5-HTTP-Server-Simple SUBDIR += p5-HTTP-Server-Simple-Authen SUBDIR += p5-HTTP-Server-Simple-Mason SUBDIR += p5-HTTP-Server-Simple-PSGI SUBDIR += p5-HTTP-Server-Simple-Recorder SUBDIR += p5-HTTP-Server-Simple-Static SUBDIR += p5-HTTP-Session SUBDIR += p5-HTTP-Session-State-MobileAgentID SUBDIR += p5-HTTP-Session-Store-DBI SUBDIR += p5-HTTP-Session2 SUBDIR += p5-HTTP-SimpleLinkChecker SUBDIR += p5-HTTP-Size SUBDIR += p5-HTTP-Thin SUBDIR += p5-HTTP-Tiny SUBDIR += p5-HTTP-Tiny-SPDY SUBDIR += p5-HTTP-Tiny-UA SUBDIR += p5-HTTP-WebTest SUBDIR += p5-HTTP-XSCookies SUBDIR += p5-HTTPD-Log-Filter SUBDIR += p5-HTTPD-User-Manage SUBDIR += p5-Hijk SUBDIR += p5-I18N-AcceptLanguage SUBDIR += p5-IMDB-Film SUBDIR += p5-Image-Delivery SUBDIR += p5-Interchange6 SUBDIR += p5-JE SUBDIR += p5-JSON-API SUBDIR += p5-Jemplate SUBDIR += p5-Jifty SUBDIR += p5-Kwiki SUBDIR += p5-LWP-Authen-Negotiate SUBDIR += p5-LWP-Authen-OAuth SUBDIR += p5-LWP-Authen-Wsse SUBDIR += p5-LWP-ConnCache-MaxKeepAliveRequests SUBDIR += p5-LWP-MediaTypes SUBDIR += p5-LWP-Online SUBDIR += p5-LWP-Protocol-PSGI SUBDIR += p5-LWP-Protocol-connect SUBDIR += p5-LWP-Protocol-http10 SUBDIR += p5-LWP-Protocol-https SUBDIR += p5-LWP-Protocol-socks SUBDIR += p5-LWP-UserAgent-Determined SUBDIR += p5-LWP-UserAgent-POE SUBDIR += p5-LWP-UserAgent-WithCache SUBDIR += p5-LWPx-ParanoidAgent SUBDIR += p5-LWPx-TimedHTTP SUBDIR += p5-Markup-Perl SUBDIR += p5-Mason SUBDIR += p5-MasonX-Interp-WithCallbacks SUBDIR += p5-MasonX-Profiler SUBDIR += p5-MasonX-Request-WithApacheSession SUBDIR += p5-MasonX-WebApp SUBDIR += p5-Maypole SUBDIR += p5-Maypole-Authentication-UserSessionCookie SUBDIR += p5-Maypole-Component SUBDIR += p5-McBain SUBDIR += p5-McBain-WithPSGI SUBDIR += p5-MediaWiki SUBDIR += p5-MediaWiki-API SUBDIR += p5-Mobile-UserAgent SUBDIR += p5-ModPerl-VersionUtil SUBDIR += p5-Mojo-IOLoop-ForkCall SUBDIR += p5-Mojo-Server-FastCGI SUBDIR += p5-MojoMojo SUBDIR += p5-MojoX-Log-Dispatch-Simple SUBDIR += p5-MojoX-Renderer-Xslate SUBDIR += p5-Mojolicious SUBDIR += p5-Mojolicious-Plugin-Authentication SUBDIR += p5-Mojolicious-Plugin-Database SUBDIR += p5-Mojolicious-Plugin-Mongodb SUBDIR += p5-Mojolicious-Plugin-SetUserGroup SUBDIR += p5-Mojolicious-Plugin-TtRenderer SUBDIR += p5-Mojolicious-Plugin-YamlConfig SUBDIR += p5-Monoceros SUBDIR += p5-Mozilla-CA SUBDIR += p5-Net-Akismet SUBDIR += p5-Net-Amazon-AWIS SUBDIR += p5-Net-Async-FastCGI SUBDIR += p5-Net-Async-HTTP SUBDIR += p5-Net-FastCGI SUBDIR += p5-Net-FireEagle SUBDIR += p5-Net-Flickr-API SUBDIR += p5-Net-Flickr-Backup SUBDIR += p5-Net-Flickr-RDF SUBDIR += p5-Net-FreshBooks-API SUBDIR += p5-Net-GeoPlanet SUBDIR += p5-Net-Plurk SUBDIR += p5-Net-STF-Client SUBDIR += p5-Net-Trac SUBDIR += p5-Net-UPS SUBDIR += p5-Net-YAP SUBDIR += p5-Net-eBay SUBDIR += p5-Newsletter SUBDIR += p5-Nginx-ReadBody SUBDIR += p5-Nginx-Simple SUBDIR += p5-PHP-Session SUBDIR += p5-POE-Component-Client-HTTP SUBDIR += p5-POE-Component-Client-UserAgent SUBDIR += p5-POE-Component-Server-HTTP SUBDIR += p5-POE-Component-Server-HTTPServer SUBDIR += p5-POE-Component-Server-PSGI SUBDIR += p5-POE-Component-Server-SOAP SUBDIR += p5-POE-Component-Server-SimpleHTTP SUBDIR += p5-POE-Filter-HTTP-Parser SUBDIR += p5-POEx-Role-PSGIServer SUBDIR += p5-PSGI SUBDIR += p5-ParallelUserAgent SUBDIR += p5-Parse-HTTP-UserAgent SUBDIR += p5-Path-Class-URI SUBDIR += p5-Perlanet SUBDIR += p5-Perlbal-Plugin-PSGI SUBDIR += p5-Plack SUBDIR += p5-Plack-App-Proxy SUBDIR += p5-Plack-Builder-Conditionals SUBDIR += p5-Plack-Handler-AnyEvent-HTTPD SUBDIR += p5-Plack-Handler-AnyEvent-ReverseHTTP SUBDIR += p5-Plack-Handler-AnyEvent-SCGI SUBDIR += p5-Plack-Handler-CLI SUBDIR += p5-Plack-Handler-SCGI SUBDIR += p5-Plack-Middleware-AMF SUBDIR += p5-Plack-Middleware-AddDefaultCharset SUBDIR += p5-Plack-Middleware-Auth-Digest SUBDIR += p5-Plack-Middleware-AutoRefresh SUBDIR += p5-Plack-Middleware-ConsoleLogger SUBDIR += p5-Plack-Middleware-CrossOrigin SUBDIR += p5-Plack-Middleware-Debug SUBDIR += p5-Plack-Middleware-Deflater SUBDIR += p5-Plack-Middleware-Expires SUBDIR += p5-Plack-Middleware-ExtDirect SUBDIR += p5-Plack-Middleware-File-Sass SUBDIR += p5-Plack-Middleware-FixMissingBodyInRedirect SUBDIR += p5-Plack-Middleware-ForceEnv SUBDIR += p5-Plack-Middleware-Header SUBDIR += p5-Plack-Middleware-IEnosniff SUBDIR += p5-Plack-Middleware-InteractiveDebugger SUBDIR += p5-Plack-Middleware-JSConcat SUBDIR += p5-Plack-Middleware-MemoryUsage SUBDIR += p5-Plack-Middleware-MethodOverride SUBDIR += p5-Plack-Middleware-NoMultipleSlashes SUBDIR += p5-Plack-Middleware-Precompressed SUBDIR += p5-Plack-Middleware-RemoveRedundantBody SUBDIR += p5-Plack-Middleware-Reproxy SUBDIR += p5-Plack-Middleware-ReverseProxy SUBDIR += p5-Plack-Middleware-Rewrite SUBDIR += p5-Plack-Middleware-ServerStatus-Lite SUBDIR += p5-Plack-Middleware-Session SUBDIR += p5-Plack-Middleware-SocketIO SUBDIR += p5-Plack-Middleware-Status SUBDIR += p5-Plack-Middleware-Test-StashWarnings SUBDIR += p5-Plack-Middleware-Throttle SUBDIR += p5-Plack-Middleware-XForwardedFor SUBDIR += p5-Plack-Server-Coro SUBDIR += p5-Plack-Server-POE SUBDIR += p5-Plack-Server-ReverseHTTP SUBDIR += p5-Plack-Test-ExternalServer SUBDIR += p5-PocketIO SUBDIR += p5-Pod-Site SUBDIR += p5-PodToHTML SUBDIR += p5-Protocol-HTTP2 SUBDIR += p5-Protocol-SocketIO SUBDIR += p5-Protocol-WebSocket SUBDIR += p5-Protocol-XMLRPC SUBDIR += p5-REST-Client SUBDIR += p5-REST-Google-Apps-Provisioning SUBDIR += p5-RPC-ExtDirect SUBDIR += p5-RT-Authen-ExternalAuth SUBDIR += p5-RT-Client-REST SUBDIR += p5-RT-Extension-CommandByMail SUBDIR += p5-RT-Extension-Gravatar SUBDIR += p5-RT-Extension-LDAPImport SUBDIR += p5-RT-Extension-MandatoryOnTransition SUBDIR += p5-RT-Extension-QuickAssign SUBDIR += p5-RT-Extension-SLA SUBDIR += p5-RTx-Calendar SUBDIR += p5-Reaction SUBDIR += p5-Reddit SUBDIR += p5-Reddit-Client SUBDIR += p5-Role-REST-Client SUBDIR += p5-Rose-HTML-Objects SUBDIR += p5-Router-Boom SUBDIR += p5-Router-Simple SUBDIR += p5-Router-Simple-Sinatraish SUBDIR += p5-SCGI SUBDIR += p5-SOAP-Transport-HTTP-Plack SUBDIR += p5-SRU SUBDIR += p5-STF-Dispatcher-PSGI SUBDIR += p5-SWF-Chart SUBDIR += p5-Scrappy SUBDIR += p5-Selenium-Remote-Driver SUBDIR += p5-Session-Storage-Secure SUBDIR += p5-Squatting SUBDIR += p5-Squatting-On-PSGI SUBDIR += p5-Starlet SUBDIR += p5-Starman SUBDIR += p5-Syntax-Highlight-HTML SUBDIR += p5-Syntax-Highlight-Shell SUBDIR += p5-Task-Catalyst SUBDIR += p5-Task-Plack SUBDIR += p5-Tatsumaki SUBDIR += p5-Template-Alloy SUBDIR += p5-Template-GD SUBDIR += p5-Template-Iterator-AlzaboWrapperCursor SUBDIR += p5-Template-Multilingual SUBDIR += p5-Template-Mustache SUBDIR += p5-Template-Plugin-Class SUBDIR += p5-Template-Plugin-Clickable SUBDIR += p5-Template-Plugin-Clickable-Email SUBDIR += p5-Template-Plugin-Comma SUBDIR += p5-Template-Plugin-FillInForm SUBDIR += p5-Template-Plugin-JSON SUBDIR += p5-Template-Plugin-JavaScript SUBDIR += p5-Template-Plugin-MP3 SUBDIR += p5-Template-Plugin-Markdown SUBDIR += p5-Template-Plugin-Monta SUBDIR += p5-Template-Plugin-Number-Format SUBDIR += p5-Template-Plugin-StripScripts SUBDIR += p5-Template-Plugin-Subst SUBDIR += p5-Template-Plugin-VMethods SUBDIR += p5-Template-Provider-Encoding SUBDIR += p5-Template-Provider-FromDATA SUBDIR += p5-Template-Simple SUBDIR += p5-Template-Stash-AutoEscape SUBDIR += p5-Template-Timer SUBDIR += p5-Template-Toolkit SUBDIR += p5-Template-Toolkit-Simple SUBDIR += p5-Tenjin SUBDIR += p5-Test-HTTP SUBDIR += p5-Test-HTTP-Server-Simple SUBDIR += p5-Test-LWP-UserAgent SUBDIR += p5-Test-Nginx SUBDIR += p5-TestGen4Web-Runner SUBDIR += p5-Text-MultiMarkdown-ApacheHandler SUBDIR += p5-Tie-TinyURL SUBDIR += p5-Toader SUBDIR += p5-Toadfarm SUBDIR += p5-Twiggy SUBDIR += p5-Twiggy-TLS SUBDIR += p5-URI-Encode SUBDIR += p5-URI-Escape-JavaScript SUBDIR += p5-URI-Escape-XS SUBDIR += p5-URI-Fetch SUBDIR += p5-URI-ParseSearchString SUBDIR += p5-URI-Sequin SUBDIR += p5-URI-Title SUBDIR += p5-URI-ToDisk SUBDIR += p5-URL-Encode SUBDIR += p5-URL-Encode-XS SUBDIR += p5-VUser-Google-ProvisioningAPI SUBDIR += p5-W3C-LinkChecker SUBDIR += p5-W3C-LogValidator SUBDIR += p5-WWW-AtMovies-TV SUBDIR += p5-WWW-Babelfish SUBDIR += p5-WWW-Baseball-NPB SUBDIR += p5-WWW-Comic SUBDIR += p5-WWW-Contact SUBDIR += p5-WWW-Curl SUBDIR += p5-WWW-DHL SUBDIR += p5-WWW-Dilbert SUBDIR += p5-WWW-Facebook-API SUBDIR += p5-WWW-Form-UrlEncoded SUBDIR += p5-WWW-FreeProxy SUBDIR += p5-WWW-GitHub-Gist SUBDIR += p5-WWW-Google-Calculator SUBDIR += p5-WWW-Google-News SUBDIR += p5-WWW-Google-News-TW SUBDIR += p5-WWW-Google-PageRank SUBDIR += p5-WWW-Google-Video SUBDIR += p5-WWW-HatenaDiary SUBDIR += p5-WWW-HatenaLogin SUBDIR += p5-WWW-HatenaStar SUBDIR += p5-WWW-IMDb SUBDIR += p5-WWW-Instapaper-Client SUBDIR += p5-WWW-LongURL SUBDIR += p5-WWW-Mechanize SUBDIR += p5-WWW-Mechanize-CGI SUBDIR += p5-WWW-Mechanize-DecodedContent SUBDIR += p5-WWW-Mechanize-FormFiller SUBDIR += p5-WWW-Mechanize-GZip SUBDIR += p5-WWW-Mechanize-Meta SUBDIR += p5-WWW-Mechanize-PhantomJS SUBDIR += p5-WWW-Mechanize-Pluggable SUBDIR += p5-WWW-Mechanize-Plugin-phpBB SUBDIR += p5-WWW-Mechanize-Shell SUBDIR += p5-WWW-Mechanize-SpamCop SUBDIR += p5-WWW-Mechanize-TreeBuilder SUBDIR += p5-WWW-Mediawiki-Client SUBDIR += p5-WWW-Mixi SUBDIR += p5-WWW-Mixi-Scraper SUBDIR += p5-WWW-Myspace SUBDIR += p5-WWW-NicoVideo-Download SUBDIR += p5-WWW-NioTV SUBDIR += p5-WWW-OpenSVN SUBDIR += p5-WWW-OpenSearch SUBDIR += p5-WWW-Pastebin-PastebinCom-Create SUBDIR += p5-WWW-Plurk SUBDIR += p5-WWW-Robot SUBDIR += p5-WWW-RobotRules SUBDIR += p5-WWW-RobotRules-Parser SUBDIR += p5-WWW-Salesforce SUBDIR += p5-WWW-Scraper-ISBN SUBDIR += p5-WWW-Scraper-ISBN-Amazon_Driver SUBDIR += p5-WWW-Scraper-ISBN-ORA_Driver SUBDIR += p5-WWW-Scripter SUBDIR += p5-WWW-Scripter-Plugin-Ajax SUBDIR += p5-WWW-Scripter-Plugin-JavaScript SUBDIR += p5-WWW-Search SUBDIR += p5-WWW-Search-AltaVista SUBDIR += p5-WWW-Search-Google SUBDIR += p5-WWW-Search-MSN SUBDIR += p5-WWW-Shorten SUBDIR += p5-WWW-Shorten-0rz SUBDIR += p5-WWW-Shorten-Bitly SUBDIR += p5-WWW-Shorten-Googl SUBDIR += p5-WWW-Shorten-KUSO SUBDIR += p5-WWW-Shorten-Yourls SUBDIR += p5-WWW-Shorten-isgd SUBDIR += p5-WWW-SourceForge SUBDIR += p5-WWW-Spinn3r SUBDIR += p5-WWW-TV SUBDIR += p5-WWW-TWSMS SUBDIR += p5-WWW-TinySong SUBDIR += p5-WWW-Tumblr SUBDIR += p5-WWW-VenusEnvy SUBDIR += p5-WWW-WebArchive SUBDIR += p5-WWW-Wikipedia SUBDIR += p5-WWW-Yandex-TIC SUBDIR += p5-WWW-iTunesConnect SUBDIR += p5-Web-Query SUBDIR += p5-Web-Scraper SUBDIR += p5-Web-Scraper-Config SUBDIR += p5-Web-Simple SUBDIR += p5-Web-oEmbed SUBDIR += p5-WebDAO SUBDIR += p5-WebDriver-Tiny SUBDIR += p5-WebService-Basecamp SUBDIR += p5-WebService-Bloglines SUBDIR += p5-WebService-BuzzurlAPI SUBDIR += p5-WebService-CIA SUBDIR += p5-WebService-GData SUBDIR += p5-WebService-Google-Reader SUBDIR += p5-WebService-Google-Sets SUBDIR += p5-WebService-IMDB SUBDIR += p5-WebService-ISBNDB SUBDIR += p5-WebService-Linode SUBDIR += p5-WebService-MoviePosterDB SUBDIR += p5-WebService-MusicBrainz SUBDIR += p5-WebService-MusicBrainz0 SUBDIR += p5-WebService-NoPaste SUBDIR += p5-WebService-Pushover SUBDIR += p5-WebService-Rakuten SUBDIR += p5-WebService-Redmine SUBDIR += p5-WebService-Simple SUBDIR += p5-WebService-Technorati SUBDIR += p5-WebService-YouTube SUBDIR += p5-WordPress-XMLRPC SUBDIR += p5-Yahoo-Search SUBDIR += p5-ZConf-RSS SUBDIR += p5-ZConf-RSS-GUI-GTK SUBDIR += p5-chklinks SUBDIR += p5-jQuery-File-Upload SUBDIR += p5-libapreq2 SUBDIR += p5-libservlet SUBDIR += p5-libwww SUBDIR += p5-pQuery SUBDIR += p5-webservice-validator-css-w3c SUBDIR += p5-webservice-validator-html-w3c SUBDIR += palemoon SUBDIR += paros SUBDIR += payara SUBDIR += pear-HTML_AJAX SUBDIR += pear-HTML_TagCloud SUBDIR += pear-HTTP SUBDIR += pear-HTTP_Client SUBDIR += pear-HTTP_Download SUBDIR += pear-HTTP_FloodControl SUBDIR += pear-HTTP_Header SUBDIR += pear-HTTP_Request SUBDIR += pear-HTTP_Request2 SUBDIR += pear-HTTP_Server SUBDIR += pear-HTTP_Session2 SUBDIR += pear-HTTP_Upload SUBDIR += pear-HTTP_WebDAV_Client SUBDIR += pear-HTTP_WebDAV_Server SUBDIR += pear-Horde_Browser SUBDIR += pear-Horde_Css_Parser SUBDIR += pear-Horde_Dav SUBDIR += pear-Horde_Editor SUBDIR += pear-Horde_Feed SUBDIR += pear-Horde_Form SUBDIR += pear-Horde_Http SUBDIR += pear-Horde_Routes SUBDIR += pear-Horde_Service_Facebook SUBDIR += pear-Horde_Service_Gravatar SUBDIR += pear-Horde_Service_Twitter SUBDIR += pear-Horde_Service_UrlShortener SUBDIR += pear-Horde_Service_Weather SUBDIR += pear-Horde_SessionHandler SUBDIR += pear-Horde_Template SUBDIR += pear-Services_Amazon SUBDIR += pear-Services_Amazon_S3 SUBDIR += pear-Services_Blogging SUBDIR += pear-Services_Compete SUBDIR += pear-Services_Delicious SUBDIR += pear-Services_Digg SUBDIR += pear-Services_Facebook SUBDIR += pear-Services_GeoNames SUBDIR += pear-Services_Google SUBDIR += pear-Services_OpenSearch SUBDIR += pear-Services_ShortURL SUBDIR += pear-Services_TinyURL SUBDIR += pear-Services_TwitPic SUBDIR += pear-Services_W3C_CSSValidator SUBDIR += pear-Services_W3C_HTMLValidator SUBDIR += pear-Services_Yadis SUBDIR += pear-Services_Yahoo SUBDIR += pear-Services_urlTea SUBDIR += pear-Structures_DataGrid_Renderer_Flexy SUBDIR += pear-Structures_DataGrid_Renderer_Pager SUBDIR += pear-Structures_DataGrid_Renderer_Smarty SUBDIR += pear-Text_Wiki SUBDIR += pear-UDDI SUBDIR += pear-XML_GRDDL SUBDIR += pear-twig SUBDIR += pebble SUBDIR += pecl-amfext SUBDIR += pecl-http SUBDIR += pecl-http1 SUBDIR += pecl-http2 SUBDIR += pecl-solr SUBDIR += pecl-sphinx SUBDIR += pecl-swish SUBDIR += pecl-twig SUBDIR += pecl-yaf SUBDIR += pecl-yaf2 SUBDIR += pecl-yar SUBDIR += pecl-yar1 SUBDIR += perlbal SUBDIR += pglogd SUBDIR += phalcon SUBDIR += photo_gallery SUBDIR += php-screw SUBDIR += php-templates SUBDIR += php56-opcache SUBDIR += php56-session SUBDIR += php56-tidy SUBDIR += php70-opcache SUBDIR += php70-session SUBDIR += php70-tidy SUBDIR += php71-opcache SUBDIR += php71-session SUBDIR += php71-tidy SUBDIR += php72-opcache SUBDIR += php72-session SUBDIR += php72-tidy SUBDIR += phpbb SUBDIR += phpbb3 SUBDIR += phpgroupware SUBDIR += phpmustache SUBDIR += phpmyfaq SUBDIR += phprecipebook SUBDIR += phproxy SUBDIR += phpsysinfo SUBDIR += phpvirtualbox SUBDIR += pivotx SUBDIR += piwigo SUBDIR += planet + SUBDIR += plasma5-plasma-browser-integration SUBDIR += plexwatchweb SUBDIR += plone SUBDIR += plugger SUBDIR += pmwiki SUBDIR += pnews SUBDIR += podcastamatic SUBDIR += polipo SUBDIR += pound SUBDIR += privatebin SUBDIR += privoxy SUBDIR += protovis SUBDIR += pserv SUBDIR += publicfile SUBDIR += punbb SUBDIR += pwebstats SUBDIR += py-HTMLgen SUBDIR += py-MechanicalSoup SUBDIR += py-Products.CMFPlone SUBDIR += py-Products.PloneLDAP SUBDIR += py-Products.TinyMCE SUBDIR += py-Tenjin SUBDIR += py-WebError SUBDIR += py-WebFlash SUBDIR += py-WebTest SUBDIR += py-aiohttp SUBDIR += py-aiohttp-wsgi SUBDIR += py-albatross SUBDIR += py-amf SUBDIR += py-apachelog SUBDIR += py-autobahn SUBDIR += py-aws-requests-auth SUBDIR += py-azure-common SUBDIR += py-azure-storage SUBDIR += py-beaker SUBDIR += py-beautifulsoup SUBDIR += py-beautifulsoup32 SUBDIR += py-bjoern SUBDIR += py-bleach SUBDIR += py-blogofile SUBDIR += py-bokeh SUBDIR += py-boto3 SUBDIR += py-bottle SUBDIR += py-bottle-cork SUBDIR += py-buku SUBDIR += py-cachecontrol SUBDIR += py-caldav SUBDIR += py-cheroot SUBDIR += py-cherrypy SUBDIR += py-cherrypy-old SUBDIR += py-clientform SUBDIR += py-collective.easytemplate SUBDIR += py-collective.templateengines SUBDIR += py-cookies SUBDIR += py-cssmin SUBDIR += py-cssselect SUBDIR += py-cssutils SUBDIR += py-ddgr SUBDIR += py-django SUBDIR += py-django-allauth SUBDIR += py-django-annotations SUBDIR += py-django-annoying SUBDIR += py-django-appconf SUBDIR += py-django-appmedia SUBDIR += py-django-assets SUBDIR += py-django-auth-ldap SUBDIR += py-django-babel SUBDIR += py-django-bitfield SUBDIR += py-django-bootstrap-form SUBDIR += py-django-braces SUBDIR += py-django-bulk-update SUBDIR += py-django-caching-app-plugins SUBDIR += py-django-classy-tags SUBDIR += py-django-cms SUBDIR += py-django-configurations SUBDIR += py-django-constance SUBDIR += py-django-contact-form SUBDIR += py-django-contrib-comments SUBDIR += py-django-cors-headers SUBDIR += py-django-countries SUBDIR += py-django-crispy-forms SUBDIR += py-django-datetime-widget SUBDIR += py-django-debug-toolbar SUBDIR += py-django-dpaste SUBDIR += py-django-evolution SUBDIR += py-django-extensions SUBDIR += py-django-filer SUBDIR += py-django-filter SUBDIR += py-django-formtools SUBDIR += py-django-guardian SUBDIR += py-django-happenings SUBDIR += py-django-haystack SUBDIR += py-django-hijack SUBDIR += py-django-htmlmin SUBDIR += py-django-js-asset SUBDIR += py-django-json-rpc SUBDIR += py-django-jsonfield SUBDIR += py-django-keyedcache SUBDIR += py-django-ldapdb SUBDIR += py-django-livesettings SUBDIR += py-django-markdownx SUBDIR += py-django-markwhat SUBDIR += py-django-mezzanine SUBDIR += py-django-mezzanine-filebrowser SUBDIR += py-django-mezzanine-grappelli SUBDIR += py-django-model-utils SUBDIR += py-django-mptt SUBDIR += py-django-netfields SUBDIR += py-django-openid-auth SUBDIR += py-django-otp SUBDIR += py-django-otp-yubikey SUBDIR += py-django-overextends SUBDIR += py-django-paging SUBDIR += py-django-photologue SUBDIR += py-django-picklefield SUBDIR += py-django-pipeline SUBDIR += py-django-post_office SUBDIR += py-django-profiles SUBDIR += py-django-pyscss SUBDIR += py-django-recaptcha SUBDIR += py-django-redis SUBDIR += py-django-registration SUBDIR += py-django-registration-defaults SUBDIR += py-django-registration-redux SUBDIR += py-django-rest-swagger SUBDIR += py-django-reversion SUBDIR += py-django-sekizai SUBDIR += py-django-signals-ahoy SUBDIR += py-django-simple-captcha SUBDIR += py-django-simple-history SUBDIR += py-django-social-auth SUBDIR += py-django-sortedm2m SUBDIR += py-django-star-ratings SUBDIR += py-django-statici18n SUBDIR += py-django-storages SUBDIR += py-django-subdomains SUBDIR += py-django-sudo SUBDIR += py-django-tables2 SUBDIR += py-django-tagging SUBDIR += py-django-taggit SUBDIR += py-django-tastypie SUBDIR += py-django-templatetag-sugar SUBDIR += py-django-threaded-multihost SUBDIR += py-django-timezone-field SUBDIR += py-django-tinymce SUBDIR += py-django-voting SUBDIR += py-django111 SUBDIR += py-django18 SUBDIR += py-django20 SUBDIR += py-django_compressor SUBDIR += py-django_openstack_auth SUBDIR += py-django_polymorphic SUBDIR += py-djangorestframework SUBDIR += py-djangorestframework36 SUBDIR += py-djangorestframework-csv SUBDIR += py-djangorestframework-filters SUBDIR += py-djangorestframework-xml SUBDIR += py-djangotoolbox SUBDIR += py-dojango SUBDIR += py-drf-yasg SUBDIR += py-dtflickr SUBDIR += py-evernote SUBDIR += py-falcon SUBDIR += py-fcgi SUBDIR += py-fedex SUBDIR += py-feedgenerator SUBDIR += py-flask SUBDIR += py-flask-admin SUBDIR += py-flask-api SUBDIR += py-flask-apscheduler SUBDIR += py-flask-assets SUBDIR += py-flask-bootstrap SUBDIR += py-flask-cache SUBDIR += py-flask-compress SUBDIR += py-flask-cors SUBDIR += py-flask-flatpages SUBDIR += py-flask-login SUBDIR += py-flask-marshmallow SUBDIR += py-flask-migrate SUBDIR += py-flask-oauthlib SUBDIR += py-flask-principal SUBDIR += py-flask-restful SUBDIR += py-flask-restplus SUBDIR += py-flask-script SUBDIR += py-flask-socketio SUBDIR += py-flask-sockets SUBDIR += py-flask-uploads SUBDIR += py-flask-wtf SUBDIR += py-flexget SUBDIR += py-flup6 SUBDIR += py-formalchemy SUBDIR += py-formencode SUBDIR += py-frappe-bench SUBDIR += py-frozen-flask SUBDIR += py-funkload SUBDIR += py-gandi.cli SUBDIR += py-gevent-websocket SUBDIR += py-goobook SUBDIR += py-google SUBDIR += py-google-api-core SUBDIR += py-google-api-python-client SUBDIR += py-google-cloud-core SUBDIR += py-google-cloud-storage SUBDIR += py-google-resumable-media SUBDIR += py-graphite-api SUBDIR += py-graphite-web SUBDIR += py-grequests SUBDIR += py-gunicorn SUBDIR += py-h2 SUBDIR += py-horizon SUBDIR += py-hpack SUBDIR += py-html SUBDIR += py-html5-parser SUBDIR += py-html5lib SUBDIR += py-httmock SUBDIR += py-http-parser SUBDIR += py-httpie SUBDIR += py-httplib2 SUBDIR += py-hyper SUBDIR += py-hyperframe SUBDIR += py-hyperlink SUBDIR += py-imdbpy SUBDIR += py-internetarchive SUBDIR += py-jonpy SUBDIR += py-jsonfield SUBDIR += py-jswebkit SUBDIR += py-kallithea SUBDIR += py-lesscpy SUBDIR += py-libsass SUBDIR += py-livereload SUBDIR += py-mechanize SUBDIR += py-meld SUBDIR += py-meld3 SUBDIR += py-mt SUBDIR += py-multidict SUBDIR += py-mwoauth SUBDIR += py-nevow SUBDIR += py-notebook SUBDIR += py-pafy SUBDIR += py-paste SUBDIR += py-pastedeploy SUBDIR += py-pastescript SUBDIR += py-pelican SUBDIR += py-planet SUBDIR += py-plone.alterego SUBDIR += py-plone.app.blob SUBDIR += py-plone.app.caching SUBDIR += py-plone.app.collection SUBDIR += py-plone.app.content SUBDIR += py-plone.app.contentlisting SUBDIR += py-plone.app.contentmenu SUBDIR += py-plone.app.contentrules SUBDIR += py-plone.app.controlpanel SUBDIR += py-plone.app.customerize SUBDIR += py-plone.app.dexterity SUBDIR += py-plone.app.discussion SUBDIR += py-plone.app.folder SUBDIR += py-plone.app.form SUBDIR += py-plone.app.i18n SUBDIR += py-plone.app.imaging SUBDIR += py-plone.app.iterate SUBDIR += py-plone.app.jquery SUBDIR += py-plone.app.jquerytools SUBDIR += py-plone.app.layout SUBDIR += py-plone.app.ldap SUBDIR += py-plone.app.linkintegrity SUBDIR += py-plone.app.locales SUBDIR += py-plone.app.portlets SUBDIR += py-plone.app.querystring SUBDIR += py-plone.app.redirector SUBDIR += py-plone.app.registry SUBDIR += py-plone.app.search SUBDIR += py-plone.app.testing SUBDIR += py-plone.app.textfield SUBDIR += py-plone.app.theming SUBDIR += py-plone.app.upgrade SUBDIR += py-plone.app.users SUBDIR += py-plone.app.uuid SUBDIR += py-plone.app.viewletmanager SUBDIR += py-plone.app.vocabularies SUBDIR += py-plone.app.workflow SUBDIR += py-plone.app.z3cform SUBDIR += py-plone.autoform SUBDIR += py-plone.batching SUBDIR += py-plone.behavior SUBDIR += py-plone.browserlayer SUBDIR += py-plone.cachepurging SUBDIR += py-plone.caching SUBDIR += py-plone.contentrules SUBDIR += py-plone.dexterity SUBDIR += py-plone.fieldsets SUBDIR += py-plone.folder SUBDIR += py-plone.formwidget.namedfile SUBDIR += py-plone.i18n SUBDIR += py-plone.indexer SUBDIR += py-plone.intelligenttext SUBDIR += py-plone.locking SUBDIR += py-plone.memoize SUBDIR += py-plone.namedfile SUBDIR += py-plone.outputfilters SUBDIR += py-plone.portlet.collection SUBDIR += py-plone.portlet.static SUBDIR += py-plone.portlets SUBDIR += py-plone.registry SUBDIR += py-plone.resource SUBDIR += py-plone.resourceeditor SUBDIR += py-plone.rfc822 SUBDIR += py-plone.scale SUBDIR += py-plone.schemaeditor SUBDIR += py-plone.stringinterp SUBDIR += py-plone.subrequest SUBDIR += py-plone.supermodel SUBDIR += py-plone.synchronize SUBDIR += py-plone.testing SUBDIR += py-plone.theme SUBDIR += py-plone.transformchain SUBDIR += py-plone.uuid SUBDIR += py-plone.z3cform SUBDIR += py-plonetheme.classic SUBDIR += py-plonetheme.sunburst SUBDIR += py-poster SUBDIR += py-praw SUBDIR += py-prewikka SUBDIR += py-puppetboard SUBDIR += py-puppetboard02 SUBDIR += py-puppetboard03 SUBDIR += py-py-restclient SUBDIR += py-pySmartDL SUBDIR += py-pyjwt SUBDIR += py-pylons SUBDIR += py-pyocclient SUBDIR += py-pyquery SUBDIR += py-pyramid SUBDIR += py-pyramid_rpc SUBDIR += py-pysearch SUBDIR += py-python-digitalocean SUBDIR += py-python-dotenv SUBDIR += py-pywebdav SUBDIR += py-pyweblib SUBDIR += py-pywikibot SUBDIR += py-qp SUBDIR += py-qpy SUBDIR += py-qt4-webkit SUBDIR += py-qt5-webchannel SUBDIR += py-qt5-webengine SUBDIR += py-qt5-webkit SUBDIR += py-qt5-webkitwidgets SUBDIR += py-rackspace-monitoring SUBDIR += py-recaptcha SUBDIR += py-requestbuilder SUBDIR += py-requests SUBDIR += py-requests-cache SUBDIR += py-requests-file SUBDIR += py-requests-futures SUBDIR += py-requests-mock SUBDIR += py-requests-oauthlib SUBDIR += py-requests-toolbelt SUBDIR += py-requests1 SUBDIR += py-requests_ntlm SUBDIR += py-restclient SUBDIR += py-rfc3986 SUBDIR += py-rfc3987 SUBDIR += py-rhodecode SUBDIR += py-rollbar SUBDIR += py-routes SUBDIR += py-scgi SUBDIR += py-scrapy SUBDIR += py-seafdav SUBDIR += py-seafobj SUBDIR += py-searx SUBDIR += py-selector SUBDIR += py-selenium SUBDIR += py-slimit SUBDIR += py-slimmer SUBDIR += py-slumber SUBDIR += py-sockjs-tornado SUBDIR += py-splinter SUBDIR += py-spyne SUBDIR += py-sseclient SUBDIR += py-surl SUBDIR += py-swapper SUBDIR += py-textile SUBDIR += py-tmdb3 SUBDIR += py-tornado SUBDIR += py-tornado4 SUBDIR += py-trello SUBDIR += py-treq SUBDIR += py-turbogears2 SUBDIR += py-tvdb_api SUBDIR += py-txrequests SUBDIR += py-uliweb SUBDIR += py-unit SUBDIR += py-urlgrabber SUBDIR += py-urlobject SUBDIR += py-user_agent SUBDIR += py-utidylib SUBDIR += py-w3lib SUBDIR += py-waitress SUBDIR += py-webassets SUBDIR += py-webhelpers SUBDIR += py-webkitgtk SUBDIR += py-webob SUBDIR += py-weboob SUBDIR += py-websocket-client SUBDIR += py-webunit SUBDIR += py-werkzeug SUBDIR += py-wikipedia SUBDIR += py-wikitools SUBDIR += py-ws4py SUBDIR += py-wsaccel SUBDIR += py-wsgiauth SUBDIR += py-wsgidav SUBDIR += py-yarl SUBDIR += py-zope.app.wsgi SUBDIR += pyblosxom SUBDIR += pycarddav SUBDIR += pydio SUBDIR += pyjamas SUBDIR += qdecoder SUBDIR += qooxdoo SUBDIR += qt4-webkit SUBDIR += qt5-webchannel SUBDIR += qt5-webengine SUBDIR += qt5-webkit SUBDIR += qt5-websockets SUBDIR += qt5-websockets-qml SUBDIR += quark SUBDIR += qupzilla-qt4 SUBDIR += qupzilla-qt5 SUBDIR += qutebrowser SUBDIR += radicale SUBDIR += red5 SUBDIR += redaxo SUBDIR += redmine SUBDIR += redmine-a_common_libs SUBDIR += redmine-backlogs SUBDIR += redmine-basecamp SUBDIR += redmine-default_assign SUBDIR += redmine-graphs SUBDIR += redmine-http-auth SUBDIR += redmine-issue_templates SUBDIR += redmine-knowledgebase SUBDIR += redmine-ldap_sync SUBDIR += redmine-qa_contact SUBDIR += redmine-redcarpet_formatter SUBDIR += redmine-sidebar_hide SUBDIR += redmine-single_auth SUBDIR += redmine-wiki_notes SUBDIR += rejik SUBDIR += rekonq SUBDIR += reportmagic SUBDIR += repos-style SUBDIR += resin3 SUBDIR += restbed SUBDIR += retawq SUBDIR += revive-adserver SUBDIR += rnews SUBDIR += roundup SUBDIR += rsskit SUBDIR += rssowl SUBDIR += rssroll SUBDIR += rsstail SUBDIR += rsstool SUBDIR += rt42 SUBDIR += rt44 SUBDIR += rtv SUBDIR += rubygem-ace-rails-ap SUBDIR += rubygem-actioncable5 SUBDIR += rubygem-actioncable50 SUBDIR += rubygem-actionpack4 SUBDIR += rubygem-actionpack5 SUBDIR += rubygem-actionpack50 SUBDIR += rubygem-activeresource4 SUBDIR += rubygem-activeresource5 SUBDIR += rubygem-acts-as-taggable-on SUBDIR += rubygem-acts-as-taggable-on3 SUBDIR += rubygem-acts-as-taggable-on5 SUBDIR += rubygem-acts_as_taggable SUBDIR += rubygem-addressable SUBDIR += rubygem-addressable23 SUBDIR += rubygem-adsf SUBDIR += rubygem-akami SUBDIR += rubygem-amazon-ecs SUBDIR += rubygem-anemone SUBDIR += rubygem-asana SUBDIR += rubygem-async_sinatra SUBDIR += rubygem-best_in_place SUBDIR += rubygem-best_in_place-rails5 SUBDIR += rubygem-bluecloth SUBDIR += rubygem-bootstrap-sass SUBDIR += rubygem-browser SUBDIR += rubygem-cal-heatmap-rails SUBDIR += rubygem-cal-heatmap-rails-rails4 SUBDIR += rubygem-carrierwave SUBDIR += rubygem-cgi_multipart_eof_fix SUBDIR += rubygem-chosen-rails SUBDIR += rubygem-cookiejar SUBDIR += rubygem-crass SUBDIR += rubygem-cuba SUBDIR += rubygem-d3_rails SUBDIR += rubygem-d3_rails-rails4 SUBDIR += rubygem-dashing SUBDIR += rubygem-davclient SUBDIR += rubygem-deckar01-task_list SUBDIR += rubygem-domainatrix SUBDIR += rubygem-dropzonejs-rails SUBDIR += rubygem-dropzonejs-rails07 SUBDIR += rubygem-em-http-request SUBDIR += rubygem-em-socksify SUBDIR += rubygem-em-twitter SUBDIR += rubygem-em-websocket SUBDIR += rubygem-emk-sinatra-url-for SUBDIR += rubygem-erubi SUBDIR += rubygem-erubis SUBDIR += rubygem-ethon SUBDIR += rubygem-eventmachine_httpserver SUBDIR += rubygem-faraday SUBDIR += rubygem-faraday_middleware SUBDIR += rubygem-faye SUBDIR += rubygem-faye-websocket SUBDIR += rubygem-fcgi SUBDIR += rubygem-feed-normalizer SUBDIR += rubygem-feedjira SUBDIR += rubygem-flowdock SUBDIR += rubygem-fuzzyurl SUBDIR += rubygem-geminabox SUBDIR += rubygem-gitlab-flowdock-git-hook SUBDIR += rubygem-gitlab-gollum-lib SUBDIR += rubygem-gitlab-grack SUBDIR += rubygem-gitlab-turbolinks-classic SUBDIR += rubygem-goldfinger SUBDIR += rubygem-gollum SUBDIR += rubygem-gollum-grit_adapter SUBDIR += rubygem-gollum-lib SUBDIR += rubygem-gollum-lib-gitlab SUBDIR += rubygem-gollum-rugged_adapter SUBDIR += rubygem-gon SUBDIR += rubygem-gon61 SUBDIR += rubygem-hackpad-cli SUBDIR += rubygem-haml SUBDIR += rubygem-haml-coderay SUBDIR += rubygem-haml-contrib SUBDIR += rubygem-haml-rails-rails4 SUBDIR += rubygem-haml4 SUBDIR += rubygem-hamlit SUBDIR += rubygem-hamlit-rails SUBDIR += rubygem-hamlit-rails-rails5 SUBDIR += rubygem-hamlit-rails-rails50 SUBDIR += rubygem-hamlit26 SUBDIR += rubygem-hashicorp-checkpoint SUBDIR += rubygem-heroku SUBDIR += rubygem-heroku-api SUBDIR += rubygem-heroku-nav SUBDIR += rubygem-hpricot SUBDIR += rubygem-html2haml SUBDIR += rubygem-http SUBDIR += rubygem-http-cookie SUBDIR += rubygem-http-form_data SUBDIR += rubygem-http-form_data1 SUBDIR += rubygem-http_router SUBDIR += rubygem-httparty SUBDIR += rubygem-httpclient SUBDIR += rubygem-httpi SUBDIR += rubygem-hurley SUBDIR += rubygem-innate SUBDIR += rubygem-jekyll SUBDIR += rubygem-jekyll-sanity SUBDIR += rubygem-jekyll-watch SUBDIR += rubygem-journey SUBDIR += rubygem-jquery-atwho-rails SUBDIR += rubygem-jquery-atwho-rails13 SUBDIR += rubygem-jquery-rails SUBDIR += rubygem-jquery-rails-rails5 SUBDIR += rubygem-jquery-rails-rails50 SUBDIR += rubygem-jquery-scrollto-rails SUBDIR += rubygem-jquery-turbolinks SUBDIR += rubygem-jquery-ui-rails-rails4 SUBDIR += rubygem-jruby-rack SUBDIR += rubygem-jsobfu SUBDIR += rubygem-json-jwt SUBDIR += rubygem-jwt SUBDIR += rubygem-jwt1 SUBDIR += rubygem-kaminari SUBDIR += rubygem-kaminari-actionview SUBDIR += rubygem-kaminari-actionview-rails5 SUBDIR += rubygem-kaminari-actionview-rails50 SUBDIR += rubygem-kaminari-activerecord SUBDIR += rubygem-kaminari-activerecord-rails5 SUBDIR += rubygem-kaminari-activerecord-rails50 SUBDIR += rubygem-kaminari-core SUBDIR += rubygem-kaminari-rails4 SUBDIR += rubygem-kaminari-rails5 SUBDIR += rubygem-kaminari-rails50 SUBDIR += rubygem-kensa SUBDIR += rubygem-kubeclient SUBDIR += rubygem-kubeclient22 SUBDIR += rubygem-layout_yullio_generator SUBDIR += rubygem-less SUBDIR += rubygem-lighthouse-api SUBDIR += rubygem-link_header SUBDIR += rubygem-lograge SUBDIR += rubygem-lograge-rails5 SUBDIR += rubygem-lograge-rails50 SUBDIR += rubygem-maruku SUBDIR += rubygem-mechanize SUBDIR += rubygem-merb-assets SUBDIR += rubygem-merb-core SUBDIR += rubygem-merb-haml SUBDIR += rubygem-merb-helpers SUBDIR += rubygem-merb-param-protection SUBDIR += rubygem-mousetrap-rails SUBDIR += rubygem-multipart-post SUBDIR += rubygem-nanoc SUBDIR += rubygem-nested_form SUBDIR += rubygem-net-http-digest_auth SUBDIR += rubygem-net-http-persistent SUBDIR += rubygem-net-http-persistent2 SUBDIR += rubygem-net-http-pipeline SUBDIR += rubygem-nicovideo SUBDIR += rubygem-ntlm-http SUBDIR += rubygem-octopress SUBDIR += rubygem-oembed SUBDIR += rubygem-ostatus2 SUBDIR += rubygem-pagerduty SUBDIR += rubygem-passenger SUBDIR += rubygem-puma SUBDIR += rubygem-pusher-client SUBDIR += rubygem-rabbirack SUBDIR += rubygem-rack SUBDIR += rubygem-rack-accept SUBDIR += rubygem-rack-attack SUBDIR += rubygem-rack-attack44 SUBDIR += rubygem-rack-cache SUBDIR += rubygem-rack-contrib SUBDIR += rubygem-rack-cors SUBDIR += rubygem-rack-cors0 SUBDIR += rubygem-rack-mount SUBDIR += rubygem-rack-openid SUBDIR += rubygem-rack-protection SUBDIR += rubygem-rack-protection1 SUBDIR += rubygem-rack-proxy SUBDIR += rubygem-rack-ssl SUBDIR += rubygem-rack-test SUBDIR += rubygem-rack-timeout SUBDIR += rubygem-rack15 SUBDIR += rubygem-rack16 SUBDIR += rubygem-rack_csrf SUBDIR += rubygem-rails-settings-cached SUBDIR += rubygem-rails-settings-cached-rails5 SUBDIR += rubygem-rails-settings-cached-rails50 SUBDIR += rubygem-rails4 SUBDIR += rubygem-rails5 SUBDIR += rubygem-rails50 SUBDIR += rubygem-rails_12factor SUBDIR += rubygem-rails_autolink SUBDIR += rubygem-rails_serve_static_assets SUBDIR += rubygem-rails_stdout_logging SUBDIR += rubygem-railties4 SUBDIR += rubygem-railties5 SUBDIR += rubygem-railties50 SUBDIR += rubygem-raindrops SUBDIR += rubygem-ramaze SUBDIR += rubygem-raphael-rails SUBDIR += rubygem-rbovirt SUBDIR += rubygem-rdf SUBDIR += rubygem-rdf-normalize SUBDIR += rubygem-redcloth SUBDIR += rubygem-redis-rack SUBDIR += rubygem-redis-rack1 SUBDIR += rubygem-redis-rails SUBDIR += rubygem-redis-rails-rails5 SUBDIR += rubygem-redis-rails-rails50 SUBDIR += rubygem-redmine_acts_as_taggable_on SUBDIR += rubygem-responders SUBDIR += rubygem-responders-rails5 SUBDIR += rubygem-responders-rails50 SUBDIR += rubygem-rest-client SUBDIR += rubygem-rfacebook SUBDIR += rubygem-rfeedfinder SUBDIR += rubygem-rinku SUBDIR += rubygem-rkelly-remix SUBDIR += rubygem-robotex SUBDIR += rubygem-robots SUBDIR += rubygem-roda SUBDIR += rubygem-rqrcode SUBDIR += rubygem-rqrcode-rails3 SUBDIR += rubygem-rtlit SUBDIR += rubygem-ruby-oembed SUBDIR += rubygem-ruby-readability SUBDIR += rubygem-savon SUBDIR += rubygem-sawyer SUBDIR += rubygem-select2-rails SUBDIR += rubygem-select2-rails3 SUBDIR += rubygem-selenium-webdriver SUBDIR += rubygem-semantic-ui-sass SUBDIR += rubygem-simple-rss SUBDIR += rubygem-sinatra SUBDIR += rubygem-sinatra-contrib SUBDIR += rubygem-sinatra-contrib1 SUBDIR += rubygem-sinatra-r18n SUBDIR += rubygem-sinatra-respond_to SUBDIR += rubygem-sinatra1 SUBDIR += rubygem-smashing SUBDIR += rubygem-socksify SUBDIR += rubygem-task_list SUBDIR += rubygem-thin SUBDIR += rubygem-tinyatom SUBDIR += rubygem-tinymce-rails SUBDIR += rubygem-toml-rb SUBDIR += rubygem-toml-rb03 SUBDIR += rubygem-toml-rb10 SUBDIR += rubygem-totoridipjp SUBDIR += rubygem-tumblr_client SUBDIR += rubygem-turbolinks SUBDIR += rubygem-turbolinks-rails5 SUBDIR += rubygem-turbolinks-rails50 SUBDIR += rubygem-turbolinks-source SUBDIR += rubygem-typhoeus SUBDIR += rubygem-uglifier SUBDIR += rubygem-uglifier27 SUBDIR += rubygem-underscore-rails SUBDIR += rubygem-unicorn SUBDIR += rubygem-unicorn-worker-killer SUBDIR += rubygem-unicorn-worker-killer044 SUBDIR += rubygem-unicorn51 SUBDIR += rubygem-url_escape SUBDIR += rubygem-url_mount SUBDIR += rubygem-vegas SUBDIR += rubygem-wasabi SUBDIR += rubygem-webkit-gtk SUBDIR += rubygem-webkit-gtk2 SUBDIR += rubygem-webmock SUBDIR += rubygem-webpack-rails SUBDIR += rubygem-webrobots SUBDIR += rubygem-websocket SUBDIR += rubygem-websocket-driver SUBDIR += rubygem-websocket-extensions SUBDIR += rubygem-yapra SUBDIR += sabredav SUBDIR += sahi SUBDIR += sakai SUBDIR += sams2 SUBDIR += sarg SUBDIR += scloader SUBDIR += script4rss SUBDIR += seahub SUBDIR += seamonkey SUBDIR += seamonkey-i18n SUBDIR += selenium SUBDIR += serendipity SUBDIR += serf SUBDIR += servlet-api SUBDIR += sfnt2woff SUBDIR += shellinabox SUBDIR += shttpd SUBDIR += sit SUBDIR += sitebar SUBDIR += sitecopy SUBDIR += skytemplate SUBDIR += slowcgi SUBDIR += smarty2 SUBDIR += smarty3 SUBDIR += smb_auth SUBDIR += snarf SUBDIR += sogo2 SUBDIR += sogo2-activesync SUBDIR += sogo3 SUBDIR += sogo3-activesync SUBDIR += spawn-fcgi SUBDIR += spdylay SUBDIR += spreadlogd SUBDIR += sqstat SUBDIR += squid SUBDIR += squid-devel SUBDIR += squid_radius_auth SUBDIR += squidanalyzer SUBDIR += squidclamav SUBDIR += squidguard SUBDIR += squidpurge SUBDIR += squidview SUBDIR += srg SUBDIR += stagit SUBDIR += subsonic-standalone SUBDIR += suphp SUBDIR += surf SUBDIR += surfraw SUBDIR += swfdec-plugin SUBDIR += swiggle SUBDIR += swish++ SUBDIR += swish-e SUBDIR += sws SUBDIR += sxweb SUBDIR += syndigator SUBDIR += tclhttpd SUBDIR += tclwebtest SUBDIR += tdiary SUBDIR += tdom SUBDIR += template_ SUBDIR += templatelite SUBDIR += testlink SUBDIR += thttpd SUBDIR += thumbnail_index SUBDIR += thundercache SUBDIR += thundersnarf SUBDIR += tickr SUBDIR += tidy SUBDIR += tidy-devel SUBDIR += tidy-html5 SUBDIR += tidy-lib SUBDIR += tikiwiki SUBDIR += tinymce SUBDIR += tinyproxy SUBDIR += tinytinyhttpd SUBDIR += tivoka SUBDIR += tntnet SUBDIR += tokyopromenade SUBDIR += tomcat-native SUBDIR += tomcat6 SUBDIR += tomcat7 SUBDIR += tomcat8 SUBDIR += tomcat85 SUBDIR += tomcat9 SUBDIR += tomee SUBDIR += trac SUBDIR += trac-OhlohWidgetsMacro SUBDIR += trac-TracGoogleAnalytics SUBDIR += trac-accountmanager SUBDIR += trac-advancedticketworkflow SUBDIR += trac-attachmentpolicy SUBDIR += trac-autocomplete SUBDIR += trac-bzr SUBDIR += trac-ccselector SUBDIR += trac-childtickets SUBDIR += trac-customfieldadmin SUBDIR += trac-datefield SUBDIR += trac-defaultcc SUBDIR += trac-devel SUBDIR += trac-discussion SUBDIR += trac-downloads SUBDIR += trac-email2trac SUBDIR += trac-email2trac-postfix SUBDIR += trac-estimator SUBDIR += trac-fivestarvote SUBDIR += trac-fullblog SUBDIR += trac-fullblognotification SUBDIR += trac-gantt SUBDIR += trac-graphviz SUBDIR += trac-iniadmin SUBDIR += trac-keywords SUBDIR += trac-keywordsecretticket SUBDIR += trac-ldap SUBDIR += trac-ldapauthstore SUBDIR += trac-math SUBDIR += trac-mercurial SUBDIR += trac-navadd SUBDIR += trac-permredirect SUBDIR += trac-privatetickets SUBDIR += trac-pydotorgtheme SUBDIR += trac-scrumburndown SUBDIR += trac-spam-filter SUBDIR += trac-subtickets SUBDIR += trac-tags SUBDIR += trac-themeengine SUBDIR += trac-ticketimport SUBDIR += trac-tickettemplate SUBDIR += trac-timingandestimation SUBDIR += trac-tocmacro SUBDIR += trac-tracdragdrop SUBDIR += trac-tweakui SUBDIR += trac-vote SUBDIR += trac-watchlist SUBDIR += trac-wikigoodies SUBDIR += trac-wikinotification SUBDIR += trac-wikitemplates SUBDIR += trac-wikitopdf SUBDIR += trac-wysiwyg SUBDIR += trac-xmlrpc SUBDIR += trafficserver SUBDIR += transmission-web SUBDIR += transproxy SUBDIR += trytond28_google_maps SUBDIR += tt-rss SUBDIR += ttf2eot SUBDIR += twiki SUBDIR += twiki-BehaviourContrib SUBDIR += twiki-BlogAddOn SUBDIR += twiki-BugzillaLinkPlugin SUBDIR += twiki-ClassicSkin SUBDIR += twiki-CommentPlugin SUBDIR += twiki-EditTablePlugin SUBDIR += twiki-EmptyPlugin SUBDIR += twiki-GluePlugin SUBDIR += twiki-InterwikiPlugin SUBDIR += twiki-JSCalendarContrib SUBDIR += twiki-LDAPPasswordChangerPlugin SUBDIR += twiki-LdapContrib SUBDIR += twiki-LdapNgPlugin SUBDIR += twiki-MailerContrib SUBDIR += twiki-MathModePlugin SUBDIR += twiki-NewUserPlugin SUBDIR += twiki-PatternSkin SUBDIR += twiki-PreferencesPlugin SUBDIR += twiki-RenderListPlugin SUBDIR += twiki-SlideShowPlugin SUBDIR += twiki-SmiliesPlugin SUBDIR += twiki-SpreadSheetPlugin SUBDIR += twiki-SubscribePlugin SUBDIR += twiki-TWikiUserMappingContrib SUBDIR += twiki-TablePlugin SUBDIR += twiki-TagMePlugin SUBDIR += twiki-TinyMCEPlugin SUBDIR += twiki-TipsContrib SUBDIR += twiki-TopicVarsPlugin SUBDIR += twiki-TwistyContrib SUBDIR += twiki-TwistyPlugin SUBDIR += twiki-WysiwygPlugin SUBDIR += twill SUBDIR += twms SUBDIR += typo3-7 SUBDIR += typo3-8 SUBDIR += uchiwa SUBDIR += udmsearch SUBDIR += ufdbguard SUBDIR += unit SUBDIR += unit-go SUBDIR += unit-perl SUBDIR += unit-php SUBDIR += usermanager SUBDIR += uwsgi SUBDIR += uwsgitop SUBDIR += uzbl SUBDIR += validator SUBDIR += varnish-libvmod-awsrest SUBDIR += varnish-libvmod-digest SUBDIR += varnish-libvmod-maxminddb SUBDIR += varnish-modules SUBDIR += varnish-nagios SUBDIR += varnish4 SUBDIR += varnish5 SUBDIR += varnish6 SUBDIR += vdr-plugin-live SUBDIR += vdradmin-am SUBDIR += vee SUBDIR += vertx SUBDIR += vimb-gtk2 SUBDIR += vimb-gtk3 SUBDIR += visitors SUBDIR += volta SUBDIR += w3m SUBDIR += w3m-img SUBDIR += w3mir SUBDIR += waccess SUBDIR += wadcomblog SUBDIR += waterfox SUBDIR += web2ldap SUBDIR += webalizer SUBDIR += webbrowser SUBDIR += webcheck SUBDIR += webcopy SUBDIR += webcrawl SUBDIR += webfs SUBDIR += webgo SUBDIR += webgrind SUBDIR += webhook SUBDIR += webinject SUBDIR += webkit-gtk2 SUBDIR += webkit-gtk3 SUBDIR += webkit-sharp SUBDIR += webkit2-gtk3 SUBDIR += weblint SUBDIR += weblint++ SUBDIR += webpy SUBDIR += webreport SUBDIR += webresolve SUBDIR += websh SUBDIR += websocketd SUBDIR += webstats SUBDIR += webstone SUBDIR += webstone-ssl SUBDIR += webtrees SUBDIR += wgetpaste SUBDIR += wikicalc SUBDIR += woof SUBDIR += wordpress SUBDIR += wsdlpull SUBDIR += wsmake SUBDIR += wt SUBDIR += www6to4 SUBDIR += wwwoffle SUBDIR += xapian-omega SUBDIR += xapian-omega12 SUBDIR += xcache SUBDIR += xfce4-smartbookmark-plugin SUBDIR += xist SUBDIR += xombrero SUBDIR += xoops SUBDIR += xpi-adblock SUBDIR += xpi-adblock_plus SUBDIR += xpi-clear_cache_button SUBDIR += xpi-close-all-tabs SUBDIR += xpi-colorfultabs SUBDIR += xpi-conkeror SUBDIR += xpi-cssviewer SUBDIR += xpi-cutemenus-crystalsvg SUBDIR += xpi-default_full_zoom_level SUBDIR += xpi-delicious SUBDIR += xpi-downthemall SUBDIR += xpi-errorzilla SUBDIR += xpi-firebug SUBDIR += xpi-firefox-showcase SUBDIR += xpi-firemobilesimulator SUBDIR += xpi-fission SUBDIR += xpi-flagfox SUBDIR += xpi-flashblock SUBDIR += xpi-flashgot SUBDIR += xpi-flatbmark SUBDIR += xpi-forecastfox SUBDIR += xpi-formfox SUBDIR += xpi-foxmarks SUBDIR += xpi-foxyproxy SUBDIR += xpi-gdata_provider SUBDIR += xpi-ghostery SUBDIR += xpi-gmail-manager SUBDIR += xpi-google-notebook SUBDIR += xpi-google_shortcuts SUBDIR += xpi-grab_and_drag SUBDIR += xpi-greasemonkey SUBDIR += xpi-httpfox SUBDIR += xpi-imagezoom SUBDIR += xpi-imdbpreview SUBDIR += xpi-imglikeopera SUBDIR += xpi-infolister SUBDIR += xpi-informenter SUBDIR += xpi-inline-google-definitions SUBDIR += xpi-it_s_all_text SUBDIR += xpi-jslib SUBDIR += xpi-jsview SUBDIR += xpi-jv SUBDIR += xpi-leechblock SUBDIR += xpi-linkification SUBDIR += xpi-live_http_headers SUBDIR += xpi-live_pagerank SUBDIR += xpi-menueditor SUBDIR += xpi-modify_headers SUBDIR += xpi-mrtech-local-install SUBDIR += xpi-neo-diggler SUBDIR += xpi-no-referrer SUBDIR += xpi-passwordmaker SUBDIR += xpi-pdf_download SUBDIR += xpi-permatabs SUBDIR += xpi-quick-locale-switcher SUBDIR += xpi-quickproxy SUBDIR += xpi-resurrectpages SUBDIR += xpi-sameplace SUBDIR += xpi-scrapbook SUBDIR += xpi-searchstatus SUBDIR += xpi-server_spy SUBDIR += xpi-server_switcher SUBDIR += xpi-sessionmanager SUBDIR += xpi-showip SUBDIR += xpi-speed-dial SUBDIR += xpi-splash SUBDIR += xpi-stumbleupon SUBDIR += xpi-stylish SUBDIR += xpi-table2clipboard SUBDIR += xpi-tabmixplus SUBDIR += xpi-tagzilla SUBDIR += xpi-togglewordwrap SUBDIR += xpi-torbutton SUBDIR += xpi-twitterfox SUBDIR += xpi-u2f4moz SUBDIR += xpi-uBlock_origin SUBDIR += xpi-unplug SUBDIR += xpi-urllink SUBDIR += xpi-user_agent_switcher SUBDIR += xpi-vimperator SUBDIR += xpi-web_developer SUBDIR += xpi-wmlbrowser SUBDIR += xpi-xhtml-ruby-support SUBDIR += xpi-xmpp4moz SUBDIR += xpi-yslow SUBDIR += xshttpd SUBDIR += xshttpd-devel SUBDIR += xsp SUBDIR += yabb SUBDIR += yanopaste SUBDIR += yarn SUBDIR += yaws SUBDIR += you-get SUBDIR += yourls SUBDIR += youtube_dl SUBDIR += yuicompressor SUBDIR += zend-framework SUBDIR += zend-framework1 SUBDIR += zenphoto SUBDIR += zerowait-httpd SUBDIR += zope213 .include Index: head/www/plasma5-plasma-browser-integration/Makefile =================================================================== --- head/www/plasma5-plasma-browser-integration/Makefile (nonexistent) +++ head/www/plasma5-plasma-browser-integration/Makefile (revision 468495) @@ -0,0 +1,20 @@ +# $FreeBSD$ + +PORTNAME= plasma-browser-integration +DISTVERSION= 5.10.95.20181011 +CATEGORIES= www kde +PKGNAMEPREFIX= plasma5- # this port is not yet using CATEGORIES=kde-plasma + +MAINTAINER= kde@FreeBSD.org +COMMENT= Plasma5 components to integrate browsers into the desktop + +USES= cmake:outsource kde:5 +USE_KDE= activities config coreaddons i18n kio notifications package \ + plasma-framework runner service windowsystem +USE_QT5= core dbus gui widgets \ + buildtools_build qmake_build +USE_GITHUB= yes +GH_ACCOUNT= KDE +GH_TAGNAME= c593654 + +.include Property changes on: head/www/plasma5-plasma-browser-integration/Makefile ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/www/plasma5-plasma-browser-integration/distinfo =================================================================== --- head/www/plasma5-plasma-browser-integration/distinfo (nonexistent) +++ head/www/plasma5-plasma-browser-integration/distinfo (revision 468495) @@ -0,0 +1,3 @@ +TIMESTAMP = 1515933863 +SHA256 (KDE-plasma-browser-integration-5.10.95.20181011-c593654_GH0.tar.gz) = 690fe2ac61591803acf7a0fe6136eb8b9790ba2b4c9f8247aa22a71df4a8c0b7 +SIZE (KDE-plasma-browser-integration-5.10.95.20181011-c593654_GH0.tar.gz) = 155622 Property changes on: head/www/plasma5-plasma-browser-integration/distinfo ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/www/plasma5-plasma-browser-integration/files/patch-CMakeLists.txt =================================================================== --- head/www/plasma5-plasma-browser-integration/files/patch-CMakeLists.txt (nonexistent) +++ head/www/plasma5-plasma-browser-integration/files/patch-CMakeLists.txt (revision 468495) @@ -0,0 +1,39 @@ +--- CMakeLists.txt.orig 2018-01-14 12:51:06 UTC ++++ CMakeLists.txt +@@ -51,19 +51,19 @@ configure_file(org.kde.plasma.chrome_integration.json. + configure_file(org.kde.plasma.firefox_integration.json.in org.kde.plasma.firefox_integration.json @ONLY) + + # #chromium +-install(FILES ${CMAKE_CURRENT_BINARY_DIR}/org.kde.plasma.chrome_integration.json DESTINATION /etc/chromium/native-messaging-hosts/ RENAME org.kde.plasma.browser_integration.json) ++install(FILES ${CMAKE_CURRENT_BINARY_DIR}/org.kde.plasma.chrome_integration.json DESTINATION ${CMAKE_INSTALL_PREFIX}/etc/chromium/native-messaging-hosts/ RENAME org.kde.plasma.browser_integration.json) + # #google-chrome +-install(FILES ${CMAKE_CURRENT_BINARY_DIR}/org.kde.plasma.chrome_integration.json DESTINATION /etc/opt/chrome/native-messaging-hosts/ RENAME org.kde.plasma.browser_integration.json) ++install(FILES ${CMAKE_CURRENT_BINARY_DIR}/org.kde.plasma.chrome_integration.json DESTINATION ${CMAKE_INSTALL_PREFIX}/etc/opt/chrome/native-messaging-hosts/ RENAME org.kde.plasma.browser_integration.json) + # firefox +-install(FILES ${CMAKE_CURRENT_BINARY_DIR}/org.kde.plasma.firefox_integration.json DESTINATION /usr/lib/mozilla/native-messaging-hosts/ RENAME org.kde.plasma.browser_integration.json) ++install(FILES ${CMAKE_CURRENT_BINARY_DIR}/org.kde.plasma.firefox_integration.json DESTINATION ${CMAKE_INSTALL_PREFIX}/lib/mozilla/native-messaging-hosts/ RENAME org.kde.plasma.browser_integration.json) + + if(INSTALL_CHROME_EXTENSION) + configure_file(chrome_install_locally_policy.in chrome_install_locally_policy @ONLY) + + # google-chrome +- install(FILES ${CMAKE_CURRENT_BINARY_DIR}/chrome_install_locally_policy DESTINATION /usr/share/google-chrome/extensions RENAME ${CHROME_EXTENSION_ID}.json) ++ install(FILES ${CMAKE_CURRENT_BINARY_DIR}/chrome_install_locally_policy DESTINATION ${CMAKE_INSTALL_PREFIX}/share/google-chrome/extensions RENAME ${CHROME_EXTENSION_ID}.json) + # chromium +- install(FILES ${CMAKE_CURRENT_BINARY_DIR}/chrome_install_locally_policy DESTINATION /usr/share/chromium-browser/extensions RENAME ${CHROME_EXTENSION_ID}.json) ++ install(FILES ${CMAKE_CURRENT_BINARY_DIR}/chrome_install_locally_policy DESTINATION ${CMAKE_INSTALL_PREFIX}/share/chromium-browser/extensions RENAME ${CHROME_EXTENSION_ID}.json) + + # The actual extension file + # TODO would be nice if we could automate the packaging and generation of the crx +@@ -73,9 +73,9 @@ if(INSTALL_CHROME_EXTENSION) + elseif (INSTALL_CHROME_MANIFEST) # Install a policy to have browsers automatically add the extension + + # google-chrome +- install(FILES chrome_install_from_store_policy DESTINATION /usr/share/google-chrome/extensions RENAME ${CHROME_EXTENSION_ID}.json) ++ install(FILES chrome_install_from_store_policy DESTINATION ${CMAKE_INSTALL_PREFIX}/share/google-chrome/extensions RENAME ${CHROME_EXTENSION_ID}.json) + # chromium +- install(FILES chrome_install_from_store_policy DESTINATION /usr/share/chromium-browser/extensions RENAME ${CHROME_EXTENSION_ID}.json) ++ install(FILES chrome_install_from_store_policy DESTINATION ${CMAKE_INSTALL_PREFIX}/share/chromium-browser/extensions RENAME ${CHROME_EXTENSION_ID}.json) + endif() + + # TODO firefox Property changes on: head/www/plasma5-plasma-browser-integration/files/patch-CMakeLists.txt ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/www/plasma5-plasma-browser-integration/pkg-descr =================================================================== --- head/www/plasma5-plasma-browser-integration/pkg-descr (nonexistent) +++ head/www/plasma5-plasma-browser-integration/pkg-descr (revision 468495) @@ -0,0 +1,3 @@ +Components necessary to integrate browsers into the Plasma Desktop. + +WWW: https://www.kde.org/plasma-desktop Property changes on: head/www/plasma5-plasma-browser-integration/pkg-descr ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/www/plasma5-plasma-browser-integration/pkg-plist =================================================================== --- head/www/plasma5-plasma-browser-integration/pkg-plist (nonexistent) +++ head/www/plasma5-plasma-browser-integration/pkg-plist (revision 468495) @@ -0,0 +1,8 @@ +bin/plasma-browser-integration-host +etc/chromium/native-messaging-hosts/org.kde.plasma.browser_integration.json +etc/opt/chrome/native-messaging-hosts/org.kde.plasma.browser_integration.json +lib/mozilla/native-messaging-hosts/org.kde.plasma.browser_integration.json +%%QT_PLUGINDIR%%/krunner_browsertabs.so +share/chromium-browser/extensions/cimiefiiaegbelhefglklhhakcgmhkai.json +share/google-chrome/extensions/cimiefiiaegbelhefglklhhakcgmhkai.json +share/kservices5/plasma-runner-browsertabs.desktop Property changes on: head/www/plasma5-plasma-browser-integration/pkg-plist ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/x11/Makefile =================================================================== --- head/x11/Makefile (revision 468494) +++ head/x11/Makefile (revision 468495) @@ -1,550 +1,560 @@ # $FreeBSD$ # COMMENT = Ports to support the X window system SUBDIR += 3ddesktop SUBDIR += 9box SUBDIR += 9menu SUBDIR += alacritty SUBDIR += alltray SUBDIR += alttab SUBDIR += altyo SUBDIR += antimicro SUBDIR += appres SUBDIR += apwal SUBDIR += arandr SUBDIR += aterm SUBDIR += babl SUBDIR += bbappconf SUBDIR += bbdock SUBDIR += bbrun SUBDIR += beforelight SUBDIR += bgrot SUBDIR += bgs SUBDIR += bigreqsproto SUBDIR += bitmap SUBDIR += blast SUBDIR += bmpanel2 SUBDIR += bricons SUBDIR += brightside SUBDIR += cinnamon SUBDIR += cinnamon-desktop SUBDIR += cinnamon-menus SUBDIR += cinnamon-screensaver SUBDIR += cinnamon-session SUBDIR += cl-clx SUBDIR += cl-clx-sbcl SUBDIR += compositeproto SUBDIR += controllermap SUBDIR += cool-retro-term SUBDIR += damageproto SUBDIR += decurs SUBDIR += deforaos-desktop SUBDIR += deforaos-keyboard SUBDIR += deforaos-libdesktop SUBDIR += deforaos-locker SUBDIR += deforaos-panel SUBDIR += deskmenu SUBDIR += deskpaint SUBDIR += dgs SUBDIR += dmenu SUBDIR += dmenu2 SUBDIR += dmxproto SUBDIR += docker-tray SUBDIR += dri2proto SUBDIR += dri3proto SUBDIR += dsbautostart SUBDIR += dxpc SUBDIR += dynamag SUBDIR += dzen2 SUBDIR += eaglemode SUBDIR += editres SUBDIR += emprint SUBDIR += enventor SUBDIR += erun SUBDIR += eterm SUBDIR += evieext SUBDIR += evilvte SUBDIR += fbdesk SUBDIR += fbpanel SUBDIR += fireflies SUBDIR += fixesproto SUBDIR += florence SUBDIR += flruler SUBDIR += fluxbg SUBDIR += fpc-x11 SUBDIR += fstobdf SUBDIR += gcb SUBDIR += gdkxft SUBDIR += gdm SUBDIR += glproto SUBDIR += gmrun SUBDIR += gnome-clipboard-daemon SUBDIR += gnome-desktop SUBDIR += gnome-desktop-reference SUBDIR += gnome-menus SUBDIR += gnome-pie SUBDIR += gnome-session SUBDIR += gnome-shell SUBDIR += gnome-shell-extensions SUBDIR += gnome-terminal SUBDIR += gnome3 SUBDIR += gnome3-lite SUBDIR += gnustep-app SUBDIR += gpctool SUBDIR += grabc SUBDIR += gromit SUBDIR += gskrab SUBDIR += gstreamer1-plugins-x SUBDIR += gstreamer1-plugins-ximagesrc SUBDIR += gsynaptics SUBDIR += gtk-launch SUBDIR += gtk-theme-switch SUBDIR += gtk-theme-switch2 SUBDIR += gtkchtheme SUBDIR += gtkterm2 SUBDIR += guake SUBDIR += gxkb SUBDIR += hhpc SUBDIR += hs-X11 SUBDIR += hs-X11-xft SUBDIR += hs-xmobar SUBDIR += hsetroot SUBDIR += i3lock SUBDIR += i3status SUBDIR += iceauth SUBDIR += ico SUBDIR += idesk SUBDIR += imwheel SUBDIR += innerspace SUBDIR += inputproto SUBDIR += ipager SUBDIR += kactivities SUBDIR += kactivitymanagerd SUBDIR += kb2mb2 SUBDIR += kbproto SUBDIR += kde-baseapps-kde4 SUBDIR += kde-runtime-kde4 SUBDIR += kde-workspace-kde4 SUBDIR += kde4 SUBDIR += kdelibs-kde4 SUBDIR += keybinder SUBDIR += keybinder-gtk3 SUBDIR += keyboardcast SUBDIR += keylaunch SUBDIR += kf5-frameworkintegration SUBDIR += kf5-frameworks SUBDIR += kf5-kactivities + SUBDIR += kf5-kactivities-stats SUBDIR += kf5-kded SUBDIR += kf5-kdelibs4support SUBDIR += kf5-kglobalaccel SUBDIR += kf5-kinit SUBDIR += kf5-krunner SUBDIR += kf5-kwayland SUBDIR += kf5-kwindowsystem SUBDIR += kf5-plasma-framework SUBDIR += kgamma-kde4 SUBDIR += konsole SUBDIR += konsole-kde4 SUBDIR += leechcraft SUBDIR += lemonbar SUBDIR += libICE SUBDIR += libSM SUBDIR += libX11 SUBDIR += libXScrnSaver SUBDIR += libXTrap SUBDIR += libXau SUBDIR += libXcm SUBDIR += libXcomposite SUBDIR += libXcursor SUBDIR += libXdamage SUBDIR += libXdmcp SUBDIR += libXevie SUBDIR += libXext SUBDIR += libXfixes SUBDIR += libXi SUBDIR += libXinerama SUBDIR += libXp SUBDIR += libXpm SUBDIR += libXprintAppUtil SUBDIR += libXprintUtil SUBDIR += libXrandr SUBDIR += libXrender SUBDIR += libXres SUBDIR += libXtst SUBDIR += libXv SUBDIR += libXvMC SUBDIR += libXxf86dga SUBDIR += libXxf86misc SUBDIR += libXxf86vm SUBDIR += libdmx SUBDIR += libexo SUBDIR += libfakekey SUBDIR += libfm SUBDIR += libfm-extra SUBDIR += libfm-qt SUBDIR += libfmqt-l10n SUBDIR += libgnome SUBDIR += libgnome-reference SUBDIR += libgnomekbd SUBDIR += libgnomemm26 SUBDIR += libinput SUBDIR += libkonq-kde4 SUBDIR += libmatekbd SUBDIR += liboldX SUBDIR += libsx SUBDIR += libsynaptics SUBDIR += libwacom SUBDIR += libxcb SUBDIR += libxdg-basedir SUBDIR += libxfce4menu SUBDIR += libxfce4util SUBDIR += libxkbcommon SUBDIR += libxkbfile SUBDIR += libxkbui SUBDIR += libxklavier SUBDIR += libxshmfence SUBDIR += lightdm SUBDIR += lightdm-gtk-greeter SUBDIR += lilyterm SUBDIR += linux-c6-pixman SUBDIR += linux-c6-xorg-libs SUBDIR += linux-c7-pixman SUBDIR += linux-c7-xorg-libs SUBDIR += listres SUBDIR += lsw SUBDIR += luit SUBDIR += lumina SUBDIR += lumina-core SUBDIR += lumina-coreutils SUBDIR += lupe SUBDIR += lxde-meta SUBDIR += lxhotkey SUBDIR += lxmenu-data SUBDIR += lxpanel SUBDIR += lxqt-l10n SUBDIR += lxrandr SUBDIR += mate SUBDIR += mate-applets SUBDIR += mate-base SUBDIR += mate-desktop SUBDIR += mate-menus SUBDIR += mate-panel SUBDIR += mate-screensaver SUBDIR += mate-session-manager SUBDIR += mate-terminal SUBDIR += menu-cache SUBDIR += metalock SUBDIR += metisse SUBDIR += mkcomposecache SUBDIR += mlterm SUBDIR += mrxvt SUBDIR += mrxvt-devel SUBDIR += multi-aterm SUBDIR += mxico SUBDIR += numlockx SUBDIR += nvidia-driver SUBDIR += nvidia-driver-304 SUBDIR += nvidia-driver-340 SUBDIR += nvidia-settings SUBDIR += nvidia-xconfig SUBDIR += nxcomp SUBDIR += ooxcb SUBDIR += p5-Clipboard SUBDIR += p5-X11-GUITest SUBDIR += p5-X11-IdleTime SUBDIR += p5-X11-Protocol SUBDIR += p5-X11-Protocol-Other SUBDIR += p5-X11-Resolution SUBDIR += p5-X11-XCB SUBDIR += p5-X11-Xlib SUBDIR += p5-XTerm-Conf SUBDIR += pantheon-terminal SUBDIR += pcdm SUBDIR += pipeglade SUBDIR += pixman SUBDIR += plasma-scriptengine-python-kde4 SUBDIR += plasma-scriptengine-ruby-kde4 + SUBDIR += plasma5-kactivitymanagerd + SUBDIR += plasma5-kgamma5 + SUBDIR += plasma5-kscreen + SUBDIR += plasma5-kwayland-integration + SUBDIR += plasma5-libkscreen + SUBDIR += plasma5-plasma + SUBDIR += plasma5-plasma-desktop + SUBDIR += plasma5-plasma-integration + SUBDIR += plasma5-plasma-workspace SUBDIR += polybar SUBDIR += presentproto SUBDIR += printproto SUBDIR += printscreen SUBDIR += props SUBDIR += py-pyvirtualdisplay SUBDIR += py-qt4-opengl SUBDIR += py-qt5-opengl SUBDIR += py-xdot SUBDIR += py-xdot06 SUBDIR += qimageblitz SUBDIR += qt4-graphicssystems-opengl SUBDIR += qt4-inputmethods SUBDIR += qt5-qev SUBDIR += qt5-x11extras SUBDIR += qterminal SUBDIR += qterminal-l10n SUBDIR += qxkb SUBDIR += radare-cutter SUBDIR += randrproto SUBDIR += recordproto SUBDIR += rendercheck SUBDIR += renderproto SUBDIR += resourceproto SUBDIR += rgb SUBDIR += rofi SUBDIR += rox-wallpaper SUBDIR += roxbg SUBDIR += roxterm SUBDIR += rsibreak SUBDIR += rstart SUBDIR += rubygem-gnome2 SUBDIR += rxvt SUBDIR += rxvt-unicode SUBDIR += sakura SUBDIR += sbxkb SUBDIR += screen-message SUBDIR += scripts SUBDIR += scrnsaverproto SUBDIR += sddm SUBDIR += sessreg SUBDIR += setlayout SUBDIR += setxkbmap SUBDIR += simdock SUBDIR += simplestroke SUBDIR += sisctrl SUBDIR += slim SUBDIR += slock SUBDIR += slop SUBDIR += smproxy SUBDIR += sselp SUBDIR += stalonetray SUBDIR += startup-notification SUBDIR += sterm SUBDIR += stjerm SUBDIR += swarp SUBDIR += sxhkd SUBDIR += sxpc SUBDIR += tabbed SUBDIR += temperature.app SUBDIR += terminal.app SUBDIR += terminator SUBDIR += terminology SUBDIR += thinglaunch SUBDIR += thingylaunch SUBDIR += tilda SUBDIR += tint SUBDIR += tint-devel SUBDIR += trapproto SUBDIR += trayer SUBDIR += tycoon SUBDIR += urxvt-font-size SUBDIR += urxvt-perls SUBDIR += vdesk SUBDIR += videoproto SUBDIR += viewres SUBDIR += virtualgl SUBDIR += wbar SUBDIR += wbarconf SUBDIR += wdm SUBDIR += wmappl SUBDIR += wmblob SUBDIR += wmbutton SUBDIR += wmcliphist SUBDIR += wmctrl SUBDIR += wmdrawer SUBDIR += wmmatrix SUBDIR += wmutils-core SUBDIR += wmutils-opt SUBDIR += wmxss SUBDIR += workrave SUBDIR += x11perf SUBDIR += x3270 SUBDIR += xaniroc SUBDIR += xantfarm SUBDIR += xascii SUBDIR += xauth SUBDIR += xautolock SUBDIR += xautomation SUBDIR += xbacklight SUBDIR += xballoon SUBDIR += xbanish SUBDIR += xbanner SUBDIR += xbelld SUBDIR += xbiff SUBDIR += xbindkeys SUBDIR += xbitmaps SUBDIR += xbrightness SUBDIR += xcalc SUBDIR += xcalib SUBDIR += xcape SUBDIR += xcb SUBDIR += xcb-proto SUBDIR += xcb-util SUBDIR += xcb-util-cursor SUBDIR += xcb-util-image SUBDIR += xcb-util-keysyms SUBDIR += xcb-util-renderutil SUBDIR += xcb-util-wm SUBDIR += xcb-util-xrm SUBDIR += xcbautolock SUBDIR += xclip SUBDIR += xclipboard SUBDIR += xcm SUBDIR += xcmd SUBDIR += xcmiscproto SUBDIR += xcmsdb SUBDIR += xcoloredit SUBDIR += xcolors SUBDIR += xcolorsel SUBDIR += xconsole SUBDIR += xcurs SUBDIR += xcursorgen SUBDIR += xcut SUBDIR += xdbedizzy SUBDIR += xdialog SUBDIR += xditview SUBDIR += xdm SUBDIR += xdotool SUBDIR += xdpyinfo SUBDIR += xdriinfo SUBDIR += xdtm SUBDIR += xedit SUBDIR += xev SUBDIR += xextproto SUBDIR += xeyes SUBDIR += xf86dga SUBDIR += xf86dgaproto SUBDIR += xf86driproto SUBDIR += xf86miscproto SUBDIR += xf86rushproto SUBDIR += xf86vidmodeproto SUBDIR += xfce4-clipman-plugin SUBDIR += xfce4-conf SUBDIR += xfce4-dashboard SUBDIR += xfce4-embed-plugin SUBDIR += xfce4-goodies SUBDIR += xfce4-quicklauncher-plugin SUBDIR += xfce4-screenshooter-plugin SUBDIR += xfce4-taskmanager SUBDIR += xfce4-terminal SUBDIR += xfce4-verve-plugin SUBDIR += xfce4-whiskermenu-plugin SUBDIR += xfce4-wmdock-plugin SUBDIR += xfd SUBDIR += xfindproxy SUBDIR += xfishtank SUBDIR += xforward SUBDIR += xfree86_xkb_xml SUBDIR += xfwp SUBDIR += xgamma SUBDIR += xgc SUBDIR += xgrab SUBDIR += xhost SUBDIR += xidle SUBDIR += xineramaproto SUBDIR += xinit SUBDIR += xinput SUBDIR += xkb-switch SUBDIR += xkbcomp SUBDIR += xkbctrl SUBDIR += xkbevd SUBDIR += xkbind SUBDIR += xkbprint SUBDIR += xkbset SUBDIR += xkbutils SUBDIR += xkeyboard-config SUBDIR += xkeycaps SUBDIR += xkeywrap SUBDIR += xkill SUBDIR += xload SUBDIR += xloadimage SUBDIR += xlockmore SUBDIR += xlogo SUBDIR += xlsatoms SUBDIR += xlsclients SUBDIR += xmag SUBDIR += xman SUBDIR += xmangekyou SUBDIR += xmascot SUBDIR += xmessage SUBDIR += xmh SUBDIR += xmodmap SUBDIR += xmon SUBDIR += xmore SUBDIR += xmotd SUBDIR += xmove SUBDIR += xmsg SUBDIR += xmx SUBDIR += xnee SUBDIR += xnodecor SUBDIR += xorg SUBDIR += xorg-apps SUBDIR += xorg-cf-files SUBDIR += xorg-docs SUBDIR += xorg-libraries SUBDIR += xorg-minimal SUBDIR += xplsprinters SUBDIR += xpr SUBDIR += xpra SUBDIR += xprehashprinterlist SUBDIR += xprompt SUBDIR += xprop SUBDIR += xproto SUBDIR += xproxymanagementprotocol SUBDIR += xpyb SUBDIR += xrandr SUBDIR += xrdb SUBDIR += xrefresh SUBDIR += xrestop SUBDIR += xrootconsole SUBDIR += xrsh SUBDIR += xrsi SUBDIR += xrx SUBDIR += xscreensaver SUBDIR += xscreensaver-gnome SUBDIR += xscreensaver-gnome-hacks SUBDIR += xscreensaver.app SUBDIR += xsel SUBDIR += xsel-conrad SUBDIR += xset SUBDIR += xsetmode SUBDIR += xsetpointer SUBDIR += xsetroot SUBDIR += xskyroot SUBDIR += xsm SUBDIR += xsnow SUBDIR += xstarroll SUBDIR += xstdcmap SUBDIR += xstroke SUBDIR += xtacy SUBDIR += xterm SUBDIR += xtermcontrol SUBDIR += xtermset SUBDIR += xtestpicture SUBDIR += xtoolwait SUBDIR += xtrans SUBDIR += xtrap SUBDIR += xtrlock SUBDIR += xtset SUBDIR += xvattr SUBDIR += xvidtune SUBDIR += xvinfo SUBDIR += xvkbd SUBDIR += xvmcinfo SUBDIR += xvt SUBDIR += xwatchwin SUBDIR += xwd SUBDIR += xwininfo SUBDIR += xwinwrap SUBDIR += xwit SUBDIR += xwud SUBDIR += xxkb SUBDIR += xzoom SUBDIR += yad SUBDIR += yakuake-kde4 SUBDIR += yalias SUBDIR += yeahconsole SUBDIR += yelp SUBDIR += zenity .include Index: head/x11/kf5-frameworks/Makefile =================================================================== --- head/x11/kf5-frameworks/Makefile (revision 468494) +++ head/x11/kf5-frameworks/Makefile (revision 468495) @@ -1,18 +1,19 @@ # $FreeBSD$ PORTNAME= frameworks DISTVERSION= ${KDE_FRAMEWORKS_VERSION} +PORTREVISION= 1 CATEGORIES= x11 kde PKGNAMEPREFIX= kf5- MAINTAINER= kde@FreeBSD.org COMMENT= KF5 frameworks meta port USES= metaport kde:5 # remove: # * bluez-qt as we do have bluez USE_KDE= ${_USE_FRAMEWORKS_ALL:Nbluez-qt} # pull bsd.qt.mk for QT_PLUGINDIR in the kf5-dependencies USE_QT5= # .include Index: head/x11/kf5-kactivities-stats/Makefile =================================================================== --- head/x11/kf5-kactivities-stats/Makefile (nonexistent) +++ head/x11/kf5-kactivities-stats/Makefile (revision 468495) @@ -0,0 +1,17 @@ +# $FreeBSD$ + +PORTNAME= kactivities-stats +DISTVERSION= ${KDE_FRAMEWORKS_VERSION} +CATEGORIES= x11 kde kde-frameworks + +MAINTAINER= kde@FreeBSD.org +COMMENT= KF5 statistics for activities + +LIB_DEPENDS= libboost_system.so:devel/boost-libs +RUN_DEPENDS= kactivitymanagerd:x11/plasma5-kactivitymanagerd + +USES= cmake:outsource compiler:c++11-lib kde:5 pathfix tar:xz +USE_KDE= activities config ecm +USE_QT5= buildtools_build core dbus qmake_build sql + +.include Property changes on: head/x11/kf5-kactivities-stats/Makefile ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/x11/kf5-kactivities-stats/distinfo =================================================================== --- head/x11/kf5-kactivities-stats/distinfo (nonexistent) +++ head/x11/kf5-kactivities-stats/distinfo (revision 468495) @@ -0,0 +1,3 @@ +TIMESTAMP = 1523650476 +SHA256 (KDE/frameworks/5.45.0/kactivities-stats-5.45.0.tar.xz) = 54e2cf422fa1c1c3a53d409114b46d7e30e17a9ed590df3e9a516e7ff28c9b49 +SIZE (KDE/frameworks/5.45.0/kactivities-stats-5.45.0.tar.xz) = 60916 Property changes on: head/x11/kf5-kactivities-stats/distinfo ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/x11/kf5-kactivities-stats/pkg-descr =================================================================== --- head/x11/kf5-kactivities-stats/pkg-descr (nonexistent) +++ head/x11/kf5-kactivities-stats/pkg-descr (revision 468495) @@ -0,0 +1,7 @@ +KActivities provides the infrastructure needed to manage a user's activites, +allowing them to switch between tasks, and for applications to update their +state to match the user's current activity. This includes a daemon, a library +for interacting with that daemon, and plugins for integration with other +frameworks. + +WWW: http://api.kde.org/frameworks-api/frameworks5-apidocs/kactivities/html/index.html Property changes on: head/x11/kf5-kactivities-stats/pkg-descr ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/x11/kf5-kactivities-stats/pkg-plist =================================================================== --- head/x11/kf5-kactivities-stats/pkg-plist (nonexistent) +++ head/x11/kf5-kactivities-stats/pkg-plist (revision 468495) @@ -0,0 +1,23 @@ +include/KF5/KActivitiesStats/KActivities/Stats/Cleaning +include/KF5/KActivitiesStats/KActivities/Stats/Query +include/KF5/KActivitiesStats/KActivities/Stats/ResultModel +include/KF5/KActivitiesStats/KActivities/Stats/ResultSet +include/KF5/KActivitiesStats/KActivities/Stats/ResultWatcher +include/KF5/KActivitiesStats/KActivities/Stats/Terms +include/KF5/KActivitiesStats/kactivitiesstats/cleaning.h +include/KF5/KActivitiesStats/kactivitiesstats/kactivitiesstats_export.h +include/KF5/KActivitiesStats/kactivitiesstats/query.h +include/KF5/KActivitiesStats/kactivitiesstats/resultmodel.h +include/KF5/KActivitiesStats/kactivitiesstats/resultset.h +include/KF5/KActivitiesStats/kactivitiesstats/resultwatcher.h +include/KF5/KActivitiesStats/kactivitiesstats/terms.h +include/KF5/kactivitiesstats_version.h +lib/cmake/KF5ActivitiesStats/KF5ActivitiesStatsConfig.cmake +lib/cmake/KF5ActivitiesStats/KF5ActivitiesStatsConfigVersion.cmake +lib/cmake/KF5ActivitiesStats/KF5ActivitiesStatsLibraryTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/KF5ActivitiesStats/KF5ActivitiesStatsLibraryTargets.cmake +lib/libKF5ActivitiesStats.so +lib/libKF5ActivitiesStats.so.1 +lib/libKF5ActivitiesStats.so.%%KDE_FRAMEWORKS_VERSION%% +libdata/pkgconfig/libKActivitiesStats.pc +%%QT_MKSPECDIR%%/modules/qt_KActivitiesStats.pri Property changes on: head/x11/kf5-kactivities-stats/pkg-plist ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/x11/plasma5-kactivitymanagerd/Makefile =================================================================== --- head/x11/plasma5-kactivitymanagerd/Makefile (nonexistent) +++ head/x11/plasma5-kactivitymanagerd/Makefile (revision 468495) @@ -0,0 +1,19 @@ +# $FreeBSD$ + +PORTNAME= kactivitymanagerd +DISTVERSION= ${KDE_PLASMA_VERSION} +CATEGORIES= x11 kde kde-plasma + +MAINTAINER= kde@FreeBSD.org +COMMENT= System service to manage user's activities, track the usage patterns + +USES= cmake:outsource compiler:c++11-lib gettext kde:5 tar:xz +USE_KDE= auth codecs config configwidgets coreaddons dbusaddons ecm \ + globalaccel i18n kio service widgetsaddons windowsystem xmlgui +USE_QT5= concurrent core dbus gui network sql widgets xml \ + buildtools_build qmake_build + +# https://bugs.kde.org/show_bug.cgi?id=305529#c10 +CMAKE_ARGS+= -DCMAKE_SHARED_LIBRARY_LINK_CXX_FLAGS=-rdynamic + +.include Property changes on: head/x11/plasma5-kactivitymanagerd/Makefile ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/x11/plasma5-kactivitymanagerd/distinfo =================================================================== --- head/x11/plasma5-kactivitymanagerd/distinfo (nonexistent) +++ head/x11/plasma5-kactivitymanagerd/distinfo (revision 468495) @@ -0,0 +1,3 @@ +TIMESTAMP = 1523811826 +SHA256 (KDE/plasma/5.12.4/kactivitymanagerd-5.12.4.tar.xz) = 8fdde5f82b3f1ad5dc8bdeade3f196301a6bc1ebcac2a81eca2400f49b8996d2 +SIZE (KDE/plasma/5.12.4/kactivitymanagerd-5.12.4.tar.xz) = 84984 Property changes on: head/x11/plasma5-kactivitymanagerd/distinfo ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/x11/plasma5-kactivitymanagerd/pkg-descr =================================================================== --- head/x11/plasma5-kactivitymanagerd/pkg-descr (nonexistent) +++ head/x11/plasma5-kactivitymanagerd/pkg-descr (revision 468495) @@ -0,0 +1,7 @@ +KActivities provides the infrastructure needed to manage a user's activites, +allowing them to switch between tasks, and for applications to update their +state to match the user's current activity. This includes a daemon, a library +for interacting with that daemon, and plugins for integration with other +frameworks. + +WWW: https://www.kde.org/plasma-desktop Property changes on: head/x11/plasma5-kactivitymanagerd/pkg-descr ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/x11/plasma5-kactivitymanagerd/pkg-plist =================================================================== --- head/x11/plasma5-kactivitymanagerd/pkg-plist (nonexistent) +++ head/x11/plasma5-kactivitymanagerd/pkg-plist (revision 468495) @@ -0,0 +1,74 @@ +bin/kactivitymanagerd +lib/libkactivitymanagerd_plugin.so +share/dbus-1/services/org.kde.activitymanager.service +%%QT_PLUGINDIR%%/kactivitymanagerd/1/kactivitymanagerd_plugin_activitytemplates.so +%%QT_PLUGINDIR%%/kactivitymanagerd/1/kactivitymanagerd_plugin_eventspy.so +%%QT_PLUGINDIR%%/kactivitymanagerd/1/kactivitymanagerd_plugin_globalshortcuts.so +%%QT_PLUGINDIR%%/kactivitymanagerd/1/kactivitymanagerd_plugin_runapplication.so +%%QT_PLUGINDIR%%/kactivitymanagerd/1/kactivitymanagerd_plugin_slc.so +%%QT_PLUGINDIR%%/kactivitymanagerd/1/kactivitymanagerd_plugin_sqlite.so +%%QT_PLUGINDIR%%/kactivitymanagerd/1/kactivitymanagerd_plugin_virtualdesktopswitch.so +share/kservices5/kactivitymanagerd.desktop +share/kservicetypes5/kactivitymanagerd-plugin.desktop +share/locale/ar/LC_MESSAGES/kactivities5.mo +share/locale/ast/LC_MESSAGES/kactivities5.mo +share/locale/bg/LC_MESSAGES/kactivities5.mo +share/locale/bs/LC_MESSAGES/kactivities5.mo +share/locale/ca/LC_MESSAGES/kactivities5.mo +share/locale/ca@valencia/LC_MESSAGES/kactivities5.mo +share/locale/cs/LC_MESSAGES/kactivities5.mo +share/locale/da/LC_MESSAGES/kactivities5.mo +share/locale/de/LC_MESSAGES/kactivities5.mo +share/locale/el/LC_MESSAGES/kactivities5.mo +share/locale/en_GB/LC_MESSAGES/kactivities5.mo +share/locale/es/LC_MESSAGES/kactivities5.mo +share/locale/et/LC_MESSAGES/kactivities5.mo +share/locale/eu/LC_MESSAGES/kactivities5.mo +share/locale/fi/LC_MESSAGES/kactivities5.mo +share/locale/fr/LC_MESSAGES/kactivities5.mo +share/locale/ga/LC_MESSAGES/kactivities5.mo +share/locale/gd/LC_MESSAGES/kactivities5.mo +share/locale/gl/LC_MESSAGES/kactivities5.mo +share/locale/gu/LC_MESSAGES/kactivities5.mo +share/locale/he/LC_MESSAGES/kactivities5.mo +share/locale/hi/LC_MESSAGES/kactivities5.mo +share/locale/hr/LC_MESSAGES/kactivities5.mo +share/locale/hu/LC_MESSAGES/kactivities5.mo +share/locale/ia/LC_MESSAGES/kactivities5.mo +share/locale/is/LC_MESSAGES/kactivities5.mo +share/locale/it/LC_MESSAGES/kactivities5.mo +share/locale/ja/LC_MESSAGES/kactivities5.mo +share/locale/kk/LC_MESSAGES/kactivities5.mo +share/locale/km/LC_MESSAGES/kactivities5.mo +share/locale/kn/LC_MESSAGES/kactivities5.mo +share/locale/ko/LC_MESSAGES/kactivities5.mo +share/locale/lt/LC_MESSAGES/kactivities5.mo +share/locale/lv/LC_MESSAGES/kactivities5.mo +share/locale/mr/LC_MESSAGES/kactivities5.mo +share/locale/ms/LC_MESSAGES/kactivities5.mo +share/locale/nb/LC_MESSAGES/kactivities5.mo +share/locale/nds/LC_MESSAGES/kactivities5.mo +share/locale/nl/LC_MESSAGES/kactivities5.mo +share/locale/nn/LC_MESSAGES/kactivities5.mo +share/locale/pa/LC_MESSAGES/kactivities5.mo +share/locale/pl/LC_MESSAGES/kactivities5.mo +share/locale/pt/LC_MESSAGES/kactivities5.mo +share/locale/pt_BR/LC_MESSAGES/kactivities5.mo +share/locale/ro/LC_MESSAGES/kactivities5.mo +share/locale/ru/LC_MESSAGES/kactivities5.mo +share/locale/se/LC_MESSAGES/kactivities5.mo +share/locale/sk/LC_MESSAGES/kactivities5.mo +share/locale/sl/LC_MESSAGES/kactivities5.mo +share/locale/sr/LC_MESSAGES/kactivities5.mo +share/locale/sr@ijekavian/LC_MESSAGES/kactivities5.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kactivities5.mo +share/locale/sr@latin/LC_MESSAGES/kactivities5.mo +share/locale/sv/LC_MESSAGES/kactivities5.mo +share/locale/tg/LC_MESSAGES/kactivities5.mo +share/locale/th/LC_MESSAGES/kactivities5.mo +share/locale/tr/LC_MESSAGES/kactivities5.mo +share/locale/ug/LC_MESSAGES/kactivities5.mo +share/locale/uk/LC_MESSAGES/kactivities5.mo +share/locale/wa/LC_MESSAGES/kactivities5.mo +share/locale/zh_CN/LC_MESSAGES/kactivities5.mo +share/locale/zh_TW/LC_MESSAGES/kactivities5.mo Property changes on: head/x11/plasma5-kactivitymanagerd/pkg-plist ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/x11/plasma5-kgamma5/Makefile =================================================================== --- head/x11/plasma5-kgamma5/Makefile (nonexistent) +++ head/x11/plasma5-kgamma5/Makefile (revision 468495) @@ -0,0 +1,20 @@ +# $FreeBSD$ + +PORTNAME= kgamma5 +DISTVERSION= ${KDE_PLASMA_VERSION} +CATEGORIES= x11 kde kde-plasma + +MAINTAINER= kde@FreeBSD.org +COMMENT= Plasma5 monitor's gamma settings + +USES= cmake:outsource cpe gettext kde:5 tar:xz +USE_KDE= auth bookmarks codecs completion config configwidgets \ + coreaddons crash doctools ecm emoticons guiaddons i18n \ + iconthemes init itemmodels itemviews jobwidgets \ + kdelibs4support kio notifications parts service solid sonnet \ + textwidgets unitconversion widgetsaddons windowsystem xmlgui +USE_QT5= core dbus gui network printsupport widgets x11extras xml \ + buildtools_build qmake_build +USE_XORG= ice sm x11 xext xxf86vm + +.include Property changes on: head/x11/plasma5-kgamma5/Makefile ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/x11/plasma5-kgamma5/distinfo =================================================================== --- head/x11/plasma5-kgamma5/distinfo (nonexistent) +++ head/x11/plasma5-kgamma5/distinfo (revision 468495) @@ -0,0 +1,3 @@ +TIMESTAMP = 1523811826 +SHA256 (KDE/plasma/5.12.4/kgamma5-5.12.4.tar.xz) = 10e84fe879a8fd4790cabd93fe3a97ea5200699e362adcef191eed7d8e5729ec +SIZE (KDE/plasma/5.12.4/kgamma5-5.12.4.tar.xz) = 60244 Property changes on: head/x11/plasma5-kgamma5/distinfo ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/x11/plasma5-kgamma5/pkg-descr =================================================================== --- head/x11/plasma5-kgamma5/pkg-descr (nonexistent) +++ head/x11/plasma5-kgamma5/pkg-descr (revision 468495) @@ -0,0 +1,3 @@ +Adjust your monitor's gamma settings + +WWW: https://www.kde.org/plasma-desktop Property changes on: head/x11/plasma5-kgamma5/pkg-descr ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/x11/plasma5-kgamma5/pkg-plist =================================================================== --- head/x11/plasma5-kgamma5/pkg-plist (nonexistent) +++ head/x11/plasma5-kgamma5/pkg-plist (revision 468495) @@ -0,0 +1,83 @@ +%%QT_PLUGINDIR%%/kcm_kgamma.so +share/doc/HTML/en/kcontrol/kgamma/index.cache.bz2 +share/doc/HTML/en/kcontrol/kgamma/index.docbook +share/kgamma/pics/background.png +share/kgamma/pics/cmyscale.png +share/kgamma/pics/darkgrey.png +share/kgamma/pics/greyscale.png +share/kgamma/pics/lightgrey.png +share/kgamma/pics/midgrey.png +share/kgamma/pics/rgbscale.png +share/kservices5/kgamma.desktop +share/locale/ar/LC_MESSAGES/kcmkgamma.mo +share/locale/ast/LC_MESSAGES/kcmkgamma.mo +share/locale/be/LC_MESSAGES/kcmkgamma.mo +share/locale/bg/LC_MESSAGES/kcmkgamma.mo +share/locale/br/LC_MESSAGES/kcmkgamma.mo +share/locale/bs/LC_MESSAGES/kcmkgamma.mo +share/locale/ca/LC_MESSAGES/kcmkgamma.mo +share/locale/ca@valencia/LC_MESSAGES/kcmkgamma.mo +share/locale/cs/LC_MESSAGES/kcmkgamma.mo +share/locale/cy/LC_MESSAGES/kcmkgamma.mo +share/locale/da/LC_MESSAGES/kcmkgamma.mo +share/locale/de/LC_MESSAGES/kcmkgamma.mo +share/locale/el/LC_MESSAGES/kcmkgamma.mo +share/locale/en_GB/LC_MESSAGES/kcmkgamma.mo +share/locale/eo/LC_MESSAGES/kcmkgamma.mo +share/locale/es/LC_MESSAGES/kcmkgamma.mo +share/locale/et/LC_MESSAGES/kcmkgamma.mo +share/locale/eu/LC_MESSAGES/kcmkgamma.mo +share/locale/fa/LC_MESSAGES/kcmkgamma.mo +share/locale/fi/LC_MESSAGES/kcmkgamma.mo +share/locale/fr/LC_MESSAGES/kcmkgamma.mo +share/locale/fy/LC_MESSAGES/kcmkgamma.mo +share/locale/ga/LC_MESSAGES/kcmkgamma.mo +share/locale/gl/LC_MESSAGES/kcmkgamma.mo +share/locale/he/LC_MESSAGES/kcmkgamma.mo +share/locale/hi/LC_MESSAGES/kcmkgamma.mo +share/locale/hne/LC_MESSAGES/kcmkgamma.mo +share/locale/hr/LC_MESSAGES/kcmkgamma.mo +share/locale/hu/LC_MESSAGES/kcmkgamma.mo +share/locale/ia/LC_MESSAGES/kcmkgamma.mo +share/locale/is/LC_MESSAGES/kcmkgamma.mo +share/locale/it/LC_MESSAGES/kcmkgamma.mo +share/locale/ja/LC_MESSAGES/kcmkgamma.mo +share/locale/kk/LC_MESSAGES/kcmkgamma.mo +share/locale/km/LC_MESSAGES/kcmkgamma.mo +share/locale/ko/LC_MESSAGES/kcmkgamma.mo +share/locale/lt/LC_MESSAGES/kcmkgamma.mo +share/locale/lv/LC_MESSAGES/kcmkgamma.mo +share/locale/mk/LC_MESSAGES/kcmkgamma.mo +share/locale/mr/LC_MESSAGES/kcmkgamma.mo +share/locale/ms/LC_MESSAGES/kcmkgamma.mo +share/locale/nb/LC_MESSAGES/kcmkgamma.mo +share/locale/nds/LC_MESSAGES/kcmkgamma.mo +share/locale/ne/LC_MESSAGES/kcmkgamma.mo +share/locale/nl/LC_MESSAGES/kcmkgamma.mo +share/locale/nn/LC_MESSAGES/kcmkgamma.mo +share/locale/oc/LC_MESSAGES/kcmkgamma.mo +share/locale/pa/LC_MESSAGES/kcmkgamma.mo +share/locale/pl/LC_MESSAGES/kcmkgamma.mo +share/locale/pt/LC_MESSAGES/kcmkgamma.mo +share/locale/pt_BR/LC_MESSAGES/kcmkgamma.mo +share/locale/ro/LC_MESSAGES/kcmkgamma.mo +share/locale/ru/LC_MESSAGES/kcmkgamma.mo +share/locale/se/LC_MESSAGES/kcmkgamma.mo +share/locale/si/LC_MESSAGES/kcmkgamma.mo +share/locale/sk/LC_MESSAGES/kcmkgamma.mo +share/locale/sl/LC_MESSAGES/kcmkgamma.mo +share/locale/sq/LC_MESSAGES/kcmkgamma.mo +share/locale/sr/LC_MESSAGES/kcmkgamma.mo +share/locale/sr@ijekavian/LC_MESSAGES/kcmkgamma.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmkgamma.mo +share/locale/sr@latin/LC_MESSAGES/kcmkgamma.mo +share/locale/sv/LC_MESSAGES/kcmkgamma.mo +share/locale/ta/LC_MESSAGES/kcmkgamma.mo +share/locale/tg/LC_MESSAGES/kcmkgamma.mo +share/locale/th/LC_MESSAGES/kcmkgamma.mo +share/locale/tr/LC_MESSAGES/kcmkgamma.mo +share/locale/ug/LC_MESSAGES/kcmkgamma.mo +share/locale/uk/LC_MESSAGES/kcmkgamma.mo +share/locale/zh_CN/LC_MESSAGES/kcmkgamma.mo +share/locale/zh_HK/LC_MESSAGES/kcmkgamma.mo +share/locale/zh_TW/LC_MESSAGES/kcmkgamma.mo Property changes on: head/x11/plasma5-kgamma5/pkg-plist ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/x11/plasma5-kscreen/Makefile =================================================================== --- head/x11/plasma5-kscreen/Makefile (nonexistent) +++ head/x11/plasma5-kscreen/Makefile (revision 468495) @@ -0,0 +1,16 @@ +# $FreeBSD$ + +PORTNAME= kscreen +DISTVERSION= ${KDE_PLASMA_VERSION} +CATEGORIES= x11 kde kde-plasma + +MAINTAINER= kde@FreeBSD.org +COMMENT= Plasma5 screen management library + +USES= cmake:outsource cpe gettext kde:5 tar:xz +USE_KDE= auth codecs config configwidgets coreaddons dbusaddons ecm \ + globalaccel i18n libkscreen widgetsaddons xmlgui +USE_QT5= core dbus gui network qml quick testlib widgets xml \ + buildtools_build qmake_build + +.include Property changes on: head/x11/plasma5-kscreen/Makefile ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/x11/plasma5-kscreen/distinfo =================================================================== --- head/x11/plasma5-kscreen/distinfo (nonexistent) +++ head/x11/plasma5-kscreen/distinfo (revision 468495) @@ -0,0 +1,3 @@ +TIMESTAMP = 1523811827 +SHA256 (KDE/plasma/5.12.4/kscreen-5.12.4.tar.xz) = 250cace7cd2cca780db0a63c448d6df5dd6037f68749cc36bce5c5b7dd433dde +SIZE (KDE/plasma/5.12.4/kscreen-5.12.4.tar.xz) = 117192 Property changes on: head/x11/plasma5-kscreen/distinfo ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/x11/plasma5-kscreen/pkg-descr =================================================================== --- head/x11/plasma5-kscreen/pkg-descr (nonexistent) +++ head/x11/plasma5-kscreen/pkg-descr (revision 468495) @@ -0,0 +1,3 @@ +KDE's screen management software + +WWW: https://www.kde.org/plasma-desktop Property changes on: head/x11/plasma5-kscreen/pkg-descr ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/x11/plasma5-kscreen/pkg-plist =================================================================== --- head/x11/plasma5-kscreen/pkg-plist (nonexistent) +++ head/x11/plasma5-kscreen/pkg-plist (revision 468495) @@ -0,0 +1,139 @@ +bin/kscreen-console +etc/xdg/kscreen.categories +%%QT_PLUGINDIR%%/kcm_kscreen.so +%%QT_PLUGINDIR%%/kf5/kded/kscreen.so +share/icons/hicolor/48x48/actions/kdocumentinfo.png +share/icons/hicolor/scalable/actions/kdocumentinfo.svgz +share/kcm_kscreen/qml/Output.qml +share/kcm_kscreen/qml/OutputIdentifier.qml +share/kcm_kscreen/qml/Tip.qml +share/kcm_kscreen/qml/main.qml +share/kservices5/kcm_kscreen.desktop +share/locale/ar/LC_MESSAGES/kcm_displayconfiguration.mo +share/locale/ar/LC_MESSAGES/kscreen.mo +share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.kscreen.mo +share/locale/ast/LC_MESSAGES/kcm_displayconfiguration.mo +share/locale/ast/LC_MESSAGES/kscreen.mo +share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.kscreen.mo +share/locale/bs/LC_MESSAGES/kcm_displayconfiguration.mo +share/locale/bs/LC_MESSAGES/kscreen.mo +share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.kscreen.mo +share/locale/ca/LC_MESSAGES/kcm_displayconfiguration.mo +share/locale/ca/LC_MESSAGES/kscreen.mo +share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.kscreen.mo +share/locale/ca@valencia/LC_MESSAGES/kcm_displayconfiguration.mo +share/locale/ca@valencia/LC_MESSAGES/kscreen.mo +share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.kscreen.mo +share/locale/cs/LC_MESSAGES/kcm_displayconfiguration.mo +share/locale/cs/LC_MESSAGES/kscreen.mo +share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.kscreen.mo +share/locale/da/LC_MESSAGES/kcm_displayconfiguration.mo +share/locale/da/LC_MESSAGES/kscreen.mo +share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.kscreen.mo +share/locale/de/LC_MESSAGES/kcm_displayconfiguration.mo +share/locale/de/LC_MESSAGES/kscreen.mo +share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.kscreen.mo +share/locale/el/LC_MESSAGES/kcm_displayconfiguration.mo +share/locale/el/LC_MESSAGES/kscreen.mo +share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.kscreen.mo +share/locale/en_GB/LC_MESSAGES/kcm_displayconfiguration.mo +share/locale/en_GB/LC_MESSAGES/kscreen.mo +share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.kscreen.mo +share/locale/es/LC_MESSAGES/kcm_displayconfiguration.mo +share/locale/es/LC_MESSAGES/kscreen.mo +share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.kscreen.mo +share/locale/et/LC_MESSAGES/kcm_displayconfiguration.mo +share/locale/et/LC_MESSAGES/kscreen.mo +share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.kscreen.mo +share/locale/eu/LC_MESSAGES/kcm_displayconfiguration.mo +share/locale/eu/LC_MESSAGES/kscreen.mo +share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.kscreen.mo +share/locale/fi/LC_MESSAGES/kcm_displayconfiguration.mo +share/locale/fi/LC_MESSAGES/kscreen.mo +share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.kscreen.mo +share/locale/fr/LC_MESSAGES/kcm_displayconfiguration.mo +share/locale/fr/LC_MESSAGES/kscreen.mo +share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.kscreen.mo +share/locale/gl/LC_MESSAGES/kcm_displayconfiguration.mo +share/locale/gl/LC_MESSAGES/kscreen.mo +share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.kscreen.mo +share/locale/he/LC_MESSAGES/kcm_displayconfiguration.mo +share/locale/he/LC_MESSAGES/kscreen.mo +share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.kscreen.mo +share/locale/hu/LC_MESSAGES/kcm_displayconfiguration.mo +share/locale/hu/LC_MESSAGES/kscreen.mo +share/locale/ia/LC_MESSAGES/kcm_displayconfiguration.mo +share/locale/ia/LC_MESSAGES/kscreen.mo +share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.kscreen.mo +share/locale/it/LC_MESSAGES/kcm_displayconfiguration.mo +share/locale/it/LC_MESSAGES/kscreen.mo +share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.kscreen.mo +share/locale/ja/LC_MESSAGES/kcm_displayconfiguration.mo +share/locale/ja/LC_MESSAGES/kscreen.mo +share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.kscreen.mo +share/locale/ko/LC_MESSAGES/kcm_displayconfiguration.mo +share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.kscreen.mo +share/locale/ko/LC_MESSAGES/kscreen.mo +share/locale/lt/LC_MESSAGES/kcm_displayconfiguration.mo +share/locale/lt/LC_MESSAGES/kscreen.mo +share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.kscreen.mo +share/locale/nb/LC_MESSAGES/kcm_displayconfiguration.mo +share/locale/nb/LC_MESSAGES/kscreen.mo +share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.kscreen.mo +share/locale/nl/LC_MESSAGES/kcm_displayconfiguration.mo +share/locale/nl/LC_MESSAGES/kscreen.mo +share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.kscreen.mo +share/locale/nn/LC_MESSAGES/kcm_displayconfiguration.mo +share/locale/nn/LC_MESSAGES/kscreen.mo +share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.kscreen.mo +share/locale/pa/LC_MESSAGES/kcm_displayconfiguration.mo +share/locale/pa/LC_MESSAGES/kscreen.mo +share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.kscreen.mo +share/locale/pl/LC_MESSAGES/kcm_displayconfiguration.mo +share/locale/pl/LC_MESSAGES/kscreen.mo +share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.kscreen.mo +share/locale/pt/LC_MESSAGES/kcm_displayconfiguration.mo +share/locale/pt/LC_MESSAGES/kscreen.mo +share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.kscreen.mo +share/locale/pt_BR/LC_MESSAGES/kcm_displayconfiguration.mo +share/locale/pt_BR/LC_MESSAGES/kscreen.mo +share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.kscreen.mo +share/locale/ro/LC_MESSAGES/kcm_displayconfiguration.mo +share/locale/ro/LC_MESSAGES/kscreen.mo +share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.kscreen.mo +share/locale/ru/LC_MESSAGES/kcm_displayconfiguration.mo +share/locale/ru/LC_MESSAGES/kscreen.mo +share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.kscreen.mo +share/locale/sk/LC_MESSAGES/kcm_displayconfiguration.mo +share/locale/sk/LC_MESSAGES/kscreen.mo +share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.kscreen.mo +share/locale/sl/LC_MESSAGES/kcm_displayconfiguration.mo +share/locale/sl/LC_MESSAGES/kscreen.mo +share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.kscreen.mo +share/locale/sr/LC_MESSAGES/kcm_displayconfiguration.mo +share/locale/sr/LC_MESSAGES/kscreen.mo +share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.kscreen.mo +share/locale/sr@ijekavian/LC_MESSAGES/kcm_displayconfiguration.mo +share/locale/sr@ijekavian/LC_MESSAGES/kscreen.mo +share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.kscreen.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_displayconfiguration.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kscreen.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.kscreen.mo +share/locale/sr@latin/LC_MESSAGES/kcm_displayconfiguration.mo +share/locale/sr@latin/LC_MESSAGES/kscreen.mo +share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.kscreen.mo +share/locale/sv/LC_MESSAGES/kcm_displayconfiguration.mo +share/locale/sv/LC_MESSAGES/kscreen.mo +share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.kscreen.mo +share/locale/tr/LC_MESSAGES/kcm_displayconfiguration.mo +share/locale/tr/LC_MESSAGES/kscreen.mo +share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.kscreen.mo +share/locale/uk/LC_MESSAGES/kcm_displayconfiguration.mo +share/locale/uk/LC_MESSAGES/kscreen.mo +share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.kscreen.mo +share/locale/zh_CN/LC_MESSAGES/kcm_displayconfiguration.mo +share/locale/zh_CN/LC_MESSAGES/kscreen.mo +share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.kscreen.mo +share/locale/zh_TW/LC_MESSAGES/kcm_displayconfiguration.mo +share/locale/zh_TW/LC_MESSAGES/kscreen.mo +share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.kscreen.mo Property changes on: head/x11/plasma5-kscreen/pkg-plist ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/x11/plasma5-kwayland-integration/Makefile =================================================================== --- head/x11/plasma5-kwayland-integration/Makefile (nonexistent) +++ head/x11/plasma5-kwayland-integration/Makefile (revision 468495) @@ -0,0 +1,19 @@ +# $FreeBSD$ + +PORTNAME= kwayland-integration +DISTVERSION= ${KDE_PLASMA_VERSION} +CATEGORIES= x11 kde kde-plasma + +MAINTAINER= kde@FreeBSD.org +COMMENT= Integration plugins for a Wayland-based desktop + +LIB_DEPENDS= libepoxy.so:graphics/libepoxy \ + libwayland-client.so:graphics/wayland +BUILD_DEPENDS= ${LOCALBASE}/include/linux/input.h:multimedia/v4l_compat + +USES= cmake:outsource compiler:c++11-lib cpe kde:5 tar:xz +USE_KDE= ecm idletime wayland windowsystem +USE_QT5= core gui widgets \ + buildtools_build qmake_build + +.include Property changes on: head/x11/plasma5-kwayland-integration/Makefile ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/x11/plasma5-kwayland-integration/distinfo =================================================================== --- head/x11/plasma5-kwayland-integration/distinfo (nonexistent) +++ head/x11/plasma5-kwayland-integration/distinfo (revision 468495) @@ -0,0 +1,3 @@ +TIMESTAMP = 1523811827 +SHA256 (KDE/plasma/5.12.4/kwayland-integration-5.12.4.tar.xz) = 8aeae5633eff4728a4b18ba6e61dfde257459b95af4ab259149aea88a3089fd1 +SIZE (KDE/plasma/5.12.4/kwayland-integration-5.12.4.tar.xz) = 18504 Property changes on: head/x11/plasma5-kwayland-integration/distinfo ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/x11/plasma5-kwayland-integration/pkg-descr =================================================================== --- head/x11/plasma5-kwayland-integration/pkg-descr (nonexistent) +++ head/x11/plasma5-kwayland-integration/pkg-descr (revision 468495) @@ -0,0 +1,4 @@ +Provides integration plugins for various KDE frameworks for +the wayland windowing system. + +WWW: https://www.kde.org/plasma-desktop Property changes on: head/x11/plasma5-kwayland-integration/pkg-descr ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/x11/plasma5-kwayland-integration/pkg-plist =================================================================== --- head/x11/plasma5-kwayland-integration/pkg-plist (nonexistent) +++ head/x11/plasma5-kwayland-integration/pkg-plist (revision 468495) @@ -0,0 +1,2 @@ +%%QT_PLUGINDIR%%/kf5/org.kde.kidletime.platforms/KF5IdleTimeKWaylandPlugin.so +%%QT_PLUGINDIR%%/kf5/org.kde.kwindowsystem.platforms/KF5WindowSystemKWaylandPlugin.so Property changes on: head/x11/plasma5-kwayland-integration/pkg-plist ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/x11/plasma5-libkscreen/Makefile =================================================================== --- head/x11/plasma5-libkscreen/Makefile (nonexistent) +++ head/x11/plasma5-libkscreen/Makefile (revision 468495) @@ -0,0 +1,17 @@ +# $FreeBSD$ + +PORTNAME= libkscreen +DISTVERSION= ${KDE_PLASMA_VERSION} +CATEGORIES= x11 kde kde-plasma + +MAINTAINER= kde@FreeBSD.org +COMMENT= Plasma5 screen management library + +USES= cmake:outsource compiler:c++11-lib cpe kde:5 pathfix \ + pkgconfig tar:xz +USE_KDE= ecm wayland +USE_QT5= core dbus gui testlib x11extras \ + buildtools_build qmake_build +USE_XORG= x11 xcb xrandr + +.include Property changes on: head/x11/plasma5-libkscreen/Makefile ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/x11/plasma5-libkscreen/distinfo =================================================================== --- head/x11/plasma5-libkscreen/distinfo (nonexistent) +++ head/x11/plasma5-libkscreen/distinfo (revision 468495) @@ -0,0 +1,3 @@ +TIMESTAMP = 1523811828 +SHA256 (KDE/plasma/5.12.4/libkscreen-5.12.4.tar.xz) = 59634d2480732fe65e6318258de33f0d806f9fafafeb6bdf6fe4e37dfeaa05b7 +SIZE (KDE/plasma/5.12.4/libkscreen-5.12.4.tar.xz) = 94492 Property changes on: head/x11/plasma5-libkscreen/distinfo ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/x11/plasma5-libkscreen/files/patch-backends_CMakeLists.txt =================================================================== --- head/x11/plasma5-libkscreen/files/patch-backends_CMakeLists.txt (nonexistent) +++ head/x11/plasma5-libkscreen/files/patch-backends_CMakeLists.txt (revision 468495) @@ -0,0 +1,13 @@ +--- backends/CMakeLists.txt.orig 2017-01-19 20:29:18 UTC ++++ backends/CMakeLists.txt +@@ -1,6 +1,9 @@ + add_subdirectory(fake) + add_subdirectory(qscreen) +-add_subdirectory(kwayland) ++ ++if (KF5Wayland_FOUND) ++ add_subdirectory(kwayland) ++endif() + + if(${XCB_RANDR_FOUND}) + message(STATUS "Will build xrandr backend.") Property changes on: head/x11/plasma5-libkscreen/files/patch-backends_CMakeLists.txt ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/x11/plasma5-libkscreen/files/patch-src_CMakeLists.txt =================================================================== --- head/x11/plasma5-libkscreen/files/patch-src_CMakeLists.txt (nonexistent) +++ head/x11/plasma5-libkscreen/files/patch-src_CMakeLists.txt (revision 468495) @@ -0,0 +1,14 @@ +--- src/CMakeLists.txt.orig 2017-01-19 20:29:23 UTC ++++ src/CMakeLists.txt +@@ -1,7 +1,11 @@ + include_directories(${CMAKE_SOURCE_DIR} ${CMAKE_BINARY_DIR} ${CMAKE_CURRENT_BINARY_DIR} ${QT_INCLUDES}) + + add_subdirectory(backendlauncher) ++ ++if(KF5Wayland_FOUND) + add_subdirectory(doctor) ++endif() ++ + set(libkscreen_SRCS + abstractbackend.cpp + backendmanager.cpp Property changes on: head/x11/plasma5-libkscreen/files/patch-src_CMakeLists.txt ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/x11/plasma5-libkscreen/files/patch-tests_CMakeLists.txt =================================================================== --- head/x11/plasma5-libkscreen/files/patch-tests_CMakeLists.txt (nonexistent) +++ head/x11/plasma5-libkscreen/files/patch-tests_CMakeLists.txt (revision 468495) @@ -0,0 +1,9 @@ +--- tests/CMakeLists.txt.orig 2017-01-19 20:29:18 UTC ++++ tests/CMakeLists.txt +@@ -1,4 +1,6 @@ + add_executable(printconfig testplugandplay.cpp testpnp.cpp) + target_link_libraries(printconfig Qt5::Gui KF5::Screen) + ++if (KF5Wayland_FOUND) + add_subdirectory(kwayland) ++endif() Property changes on: head/x11/plasma5-libkscreen/files/patch-tests_CMakeLists.txt ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/x11/plasma5-libkscreen/pkg-descr =================================================================== --- head/x11/plasma5-libkscreen/pkg-descr (nonexistent) +++ head/x11/plasma5-libkscreen/pkg-descr (revision 468495) @@ -0,0 +1,3 @@ +Plasma5's screen management software + +WWW: https://www.kde.org/plasma-desktop Property changes on: head/x11/plasma5-libkscreen/pkg-descr ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/x11/plasma5-libkscreen/pkg-plist =================================================================== --- head/x11/plasma5-libkscreen/pkg-plist (nonexistent) +++ head/x11/plasma5-libkscreen/pkg-plist (revision 468495) @@ -0,0 +1,42 @@ +bin/kscreen-doctor +include/KF5/KScreen/KScreen/Config +include/KF5/KScreen/KScreen/ConfigMonitor +include/KF5/KScreen/KScreen/ConfigOperation +include/KF5/KScreen/KScreen/EDID +include/KF5/KScreen/KScreen/GetConfigOperation +include/KF5/KScreen/KScreen/Log +include/KF5/KScreen/KScreen/Mode +include/KF5/KScreen/KScreen/Output +include/KF5/KScreen/KScreen/Screen +include/KF5/KScreen/KScreen/SetConfigOperation +include/KF5/KScreen/KScreen/Types +include/KF5/KScreen/kscreen/backendmanager_p.h +include/KF5/KScreen/kscreen/config.h +include/KF5/KScreen/kscreen/configmonitor.h +include/KF5/KScreen/kscreen/configoperation.h +include/KF5/KScreen/kscreen/edid.h +include/KF5/KScreen/kscreen/getconfigoperation.h +include/KF5/KScreen/kscreen/kscreen_export.h +include/KF5/KScreen/kscreen/log.h +include/KF5/KScreen/kscreen/mode.h +include/KF5/KScreen/kscreen/output.h +include/KF5/KScreen/kscreen/screen.h +include/KF5/KScreen/kscreen/setconfigoperation.h +include/KF5/KScreen/kscreen/types.h +include/KF5/kscreen_version.h +lib/cmake/KF5Screen/KF5ScreenConfig.cmake +lib/cmake/KF5Screen/KF5ScreenConfigVersion.cmake +lib/cmake/KF5Screen/KF5ScreenTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/KF5Screen/KF5ScreenTargets.cmake +lib/libKF5Screen.so +lib/libKF5Screen.so.%%KDE_PLASMA_VERSION%% +lib/libKF5Screen.so.7 +lib/libexec/kf5/kscreen_backend_launcher +%%QT_PLUGINDIR%%/kf5/kscreen/KSC_Fake.so +%%QT_PLUGINDIR%%/kf5/kscreen/KSC_KWayland.so +%%QT_PLUGINDIR%%/kf5/kscreen/KSC_QScreen.so +%%QT_PLUGINDIR%%/kf5/kscreen/KSC_XRandR.so +%%QT_PLUGINDIR%%/kf5/kscreen/KSC_XRandR11.so +libdata/pkgconfig/kscreen2.pc +%%QT_MKSPECDIR%%/modules/qt_KScreen.pri +share/dbus-1/services/org.kde.kscreen.service Property changes on: head/x11/plasma5-libkscreen/pkg-plist ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/x11/plasma5-plasma/Makefile =================================================================== --- head/x11/plasma5-plasma/Makefile (nonexistent) +++ head/x11/plasma5-plasma/Makefile (revision 468495) @@ -0,0 +1,22 @@ +# $FreeBSD$ + +PORTNAME= plasma +DISTVERSION= ${KDE_PLASMA_VERSION} +CATEGORIES= x11 kde +PKGNAMEPREFIX= plasma5- + +MAINTAINER= kde@FreeBSD.org +COMMENT= KDE5 plasma meta port + +LICENSE= LGPL20 + +USES= kde:5 metaport +# remove: +# * bluedevil as we do have bluez +# * plasma-pa don't depend on plamsa-pa by default +# * breeze-kde4 don't pull in qt4 bits +USE_KDE= ${_USE_PLASMA_ALL:Nplasma-pa:Nbreeze-kde4} +# pull bsd.qt.mk for QT_PLUGINDIR in the kf5-dependencies +USE_QT5= # + +.include Property changes on: head/x11/plasma5-plasma/Makefile ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/x11/plasma5-plasma/pkg-descr =================================================================== --- head/x11/plasma5-plasma/pkg-descr (nonexistent) +++ head/x11/plasma5-plasma/pkg-descr (revision 468495) @@ -0,0 +1,3 @@ +KDE5 Plasma Meta Port + +WWW: https://www.kde.org/plasma-desktop Property changes on: head/x11/plasma5-plasma/pkg-descr ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/x11/plasma5-plasma-desktop/Makefile =================================================================== --- head/x11/plasma5-plasma-desktop/Makefile (nonexistent) +++ head/x11/plasma5-plasma-desktop/Makefile (revision 468495) @@ -0,0 +1,73 @@ +# $FreeBSD$ + +PORTNAME= plasma-desktop +DISTVERSION= ${KDE_PLASMA_VERSION} +CATEGORIES= x11 kde kde-plasma + +MAINTAINER= kde@FreeBSD.org +COMMENT= Plasma5 plasma desktop + +# TODO: update packagekit-qt5 +#LIB_DEPENDS= libpackagekit-qt.so:ports-mgmt/packagekit-qt5 +LIB_DEPENDS= libboost_system.so:devel/boost-libs \ + libfontconfig.so:x11-fonts/fontconfig \ + libfreetype.so:print/freetype2 \ + libxcb-image.so:x11/xcb-util-image \ + libxcb-keysyms.so:x11/xcb-util-keysyms \ + libxkbfile.so:x11/libxkbfile +RUN_DEPENDS= iso-codes>=0:misc/iso-codes \ + xf86-input-evdev>0:x11-drivers/xf86-input-evdev \ + xf86-input-libinput>0:x11-drivers/xf86-input-libinput +BUILD_DEPENDS= xf86-input-evdev>0:x11-drivers/xf86-input-evdev \ + xf86-input-libinput>0:x11-drivers/xf86-input-libinput + +USES= cmake:outsource compiler:c++11-lib cpe desktop-file-utils \ + gettext kde:5 pkgconfig tar:xz +USE_GNOME= glib20 +USE_KDE= activities activities-stats archive attica auth baloo \ + bookmarks codecs completion config configwidgets coreaddons \ + crash dbusaddons doctools ecm emoticons filemetadata \ + globalaccel guiaddons i18n iconthemes init itemmodels \ + itemviews jobwidgets kcmutils kdeclarative kdelibs4support \ + kio newstuff notifications \ + notifyconfig package parts people plasma-framework \ + plasma-workspace runner service solid \ + sonnet textwidgets unitconversion wallet \ + widgetsaddons windowsystem xmlgui +USE_KDE+= drkonqi_run infocenter_run kmenuedit_run ksysguard_run \ + polkit-kde-agent-1_run systemsettings_run +USE_QT5= concurrent core dbus gui network phonon4 printsupport qml \ + quick sql svg widgets x11extras xml \ + buildtools_build qmake_build +USE_XORG= ice sm x11 xcb xcursor xext xfixes xft xi xrender + +OPTIONS_DEFINE= PULSEAUDIO SYNAPTICS +OPTIONS_SUB= yes + +OPTIONS_GROUP= IM +OPTIONS_GROUP_IM= IBUS SCIM +IM_DESC= Input Method Support + +OPTIONS_DEFAULT= SYNAPTICS + +PULSEAUDIO_CMAKE_BOOL= WANT_PULSEAUDIO +PULSEAUDIO_LIB_DEPENDS= libpulse.so:audio/pulseaudio + +SYNAPTICS_DESC= Build touchpad KCM +SYNAPTICS_BUILD_DEPENDS= xf86-input-synaptics>0:x11-drivers/xf86-input-synaptics +SYNAPTICS_RUN_DEPENDS= xf86-input-synaptics>0:x11-drivers/xf86-input-synaptics +SYNAPTICS_CMAKE_BOOL= WANT_SYNAPTICS + +IBUS_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_IBus +IBUS_LIB_DEPENDS= libibus-1.0.so:textproc/ibus +IBUS_DESC= Enable IBUS backend for input dialog +SCIM_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_SCIM +SCIM_LIB_DEPENDS= libscim-1.0.so:textproc/scim +SCIM_DESC= Enable SCIM backend for input dialog + +post-patch: +# Set the correct iso-codes directory + ${REINPLACE_CMD} -e '/isoCodesXmlDir/ s#/usr/share#${LOCALBASE}/share#g' \ + ${PATCH_WRKSRC}/kcms/keyboard/iso_codes.h + +.include Property changes on: head/x11/plasma5-plasma-desktop/Makefile ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/x11/plasma5-plasma-desktop/distinfo =================================================================== --- head/x11/plasma5-plasma-desktop/distinfo (nonexistent) +++ head/x11/plasma5-plasma-desktop/distinfo (revision 468495) @@ -0,0 +1,3 @@ +TIMESTAMP = 1523811830 +SHA256 (KDE/plasma/5.12.4/plasma-desktop-5.12.4.tar.xz) = bec2bf03d3cc44e12a92cb16b40957425708ea58269eee6030d49ee696dde299 +SIZE (KDE/plasma/5.12.4/plasma-desktop-5.12.4.tar.xz) = 8532112 Property changes on: head/x11/plasma5-plasma-desktop/distinfo ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/x11/plasma5-plasma-desktop/files/patch-CMakeLists.txt =================================================================== --- head/x11/plasma5-plasma-desktop/files/patch-CMakeLists.txt (nonexistent) +++ head/x11/plasma5-plasma-desktop/files/patch-CMakeLists.txt (revision 468495) @@ -0,0 +1,14 @@ +--- CMakeLists.txt.orig 2016-03-17 10:58:23 UTC ++++ CMakeLists.txt +@@ -115,7 +115,11 @@ find_package(Evdev) + set_package_properties(Evdev PROPERTIES TYPE OPTIONAL) + add_feature_info("Evdev" EVDEV_FOUND "Evdev driver headers needed for input KCM") + ++if (WANT_SYNAPTICS) + find_package(Synaptics) ++else() ++set(SYNAPTICS_FOUND FALSE) ++endif() + set_package_properties(Synaptics PROPERTIES TYPE OPTIONAL) + add_feature_info("Synaptics" SYNAPTICS_FOUND "Synaptics libraries needed for touchpad KCM") + include(ConfigureChecks.cmake) Property changes on: head/x11/plasma5-plasma-desktop/files/patch-CMakeLists.txt ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/x11/plasma5-plasma-desktop/files/patch-kcms_keyboard_kcmmisc.cpp =================================================================== --- head/x11/plasma5-plasma-desktop/files/patch-kcms_keyboard_kcmmisc.cpp (nonexistent) +++ head/x11/plasma5-plasma-desktop/files/patch-kcms_keyboard_kcmmisc.cpp (revision 468495) @@ -0,0 +1,10 @@ +--- kcms/keyboard/kcmmisc.cpp.orig 2015-01-08 16:15:45 UTC ++++ kcms/keyboard/kcmmisc.cpp +@@ -40,6 +40,7 @@ + + #include + ++#include + + KCMiscKeyboardWidget::KCMiscKeyboardWidget(QWidget *parent) + : QWidget(parent), Property changes on: head/x11/plasma5-plasma-desktop/files/patch-kcms_keyboard_kcmmisc.cpp ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/x11/plasma5-plasma-desktop/files/patch-kcms_phonon_CMakeLists.txt =================================================================== --- head/x11/plasma5-plasma-desktop/files/patch-kcms_phonon_CMakeLists.txt (nonexistent) +++ head/x11/plasma5-plasma-desktop/files/patch-kcms_phonon_CMakeLists.txt (revision 468495) @@ -0,0 +1,18 @@ +--- kcms/phonon/CMakeLists.txt.orig 2015-10-13 06:47:10 UTC ++++ kcms/phonon/CMakeLists.txt +@@ -35,6 +35,7 @@ set(kcmphonon_LIBS + KF5::KIOWidgets + ${PHONON_LIBRARY}) + ++if(WANT_PULSEAUDIO) + if(GLIB2_FOUND AND PULSEAUDIO_FOUND AND CANBERRA_FOUND) + add_definitions(-DHAVE_PULSEAUDIO) + +@@ -45,6 +46,7 @@ if(GLIB2_FOUND AND PULSEAUDIO_FOUND AND + + set(kcmphonon_LIBS ${kcmphonon_LIBS} ${GLIB2_LIBRARIES} ${PULSEAUDIO_LIBRARY} ${PULSEAUDIO_MAINLOOP_LIBRARY} ${CANBERRA_LIBRARIES}) + endif() ++endif() + + add_library(kcm_phonon MODULE ${kcmphonon_SRCS}) + target_link_libraries(kcm_phonon ${kcmphonon_LIBS} KF5::ConfigWidgets) Property changes on: head/x11/plasma5-plasma-desktop/files/patch-kcms_phonon_CMakeLists.txt ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/x11/plasma5-plasma-desktop/files/patch-kcms_touchpad_src_backends_x11_synapticstouchpad.cpp =================================================================== --- head/x11/plasma5-plasma-desktop/files/patch-kcms_touchpad_src_backends_x11_synapticstouchpad.cpp (nonexistent) +++ head/x11/plasma5-plasma-desktop/files/patch-kcms_touchpad_src_backends_x11_synapticstouchpad.cpp (revision 468495) @@ -0,0 +1,10 @@ +--- kcms/touchpad/src/backends/x11/synapticstouchpad.cpp.orig 2016-03-29 09:10:43 UTC ++++ kcms/touchpad/src/backends/x11/synapticstouchpad.cpp +@@ -50,6 +50,7 @@ + + #include "synapticstouchpad.h" + ++#include + #include + #include + #include Property changes on: head/x11/plasma5-plasma-desktop/files/patch-kcms_touchpad_src_backends_x11_synapticstouchpad.cpp ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/x11/plasma5-plasma-desktop/pkg-descr =================================================================== --- head/x11/plasma5-plasma-desktop/pkg-descr (nonexistent) +++ head/x11/plasma5-plasma-desktop/pkg-descr (revision 468495) @@ -0,0 +1,4 @@ +Plasma Desktop offers all the tools required for a modern desktop computing +experience so you can be productive right from the start. + +WWW: https://www.kde.org/plasma-desktop Property changes on: head/x11/plasma5-plasma-desktop/pkg-descr ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/x11/plasma5-plasma-desktop/pkg-plist =================================================================== --- head/x11/plasma5-plasma-desktop/pkg-plist (nonexistent) +++ head/x11/plasma5-plasma-desktop/pkg-plist (revision 468495) @@ -0,0 +1,5014 @@ +bin/kaccess +bin/kapplymousetheme +%%SYNAPTICS%%bin/kcm-touchpad-list-devices +bin/kcolorschemeeditor +bin/kfontinst +bin/kfontview +bin/knetattach +bin/krdb +bin/lookandfeeltool +bin/solid-action-desktop-gen +etc/dbus-1/system.d/org.kde.fontinst.conf +etc/dbus-1/system.d/org.kde.kcontrol.kcmclock.conf +etc/xdg/colorschemes.knsrc +etc/xdg/emoticons.knsrc +etc/xdg/icons.knsrc +etc/xdg/kfontinst.knsrc +etc/xdg/lookandfeel.knsrc +etc/xdg/plasma-themes.knsrc +etc/xdg/xcursor.knsrc +lib/kconf_update_bin/krdb_clearlibrarypath +lib/libexec/kauth/fontinst +lib/libexec/kauth/fontinst_helper +lib/libexec/kauth/fontinst_x11 +lib/libexec/kauth/kcmdatetimehelper +lib/libexec/kfontprint +%%IBUS%%lib/libexec/kimpanel-ibus-panel +%%IBUS%%lib/libexec/kimpanel-ibus-panel-launcher +%%SCIM%%lib/libexec/kimpanel-scim-panel +lib/libexec/plasma-changeicons +lib/libkdeinit5_kaccess.so +lib/libkfontinst.so +lib/libkfontinst.so.5 +lib/libkfontinst.so.%%KDE_PLASMA_VERSION%% +lib/libkfontinstui.so +lib/libkfontinstui.so.5 +lib/libkfontinstui.so.%%KDE_PLASMA_VERSION%% +%%QT_PLUGINDIR%%/attica_kde.so +%%QT_PLUGINDIR%%/fontthumbnail.so +%%QT_PLUGINDIR%%/kcm_access.so +%%QT_PLUGINDIR%%/kcm_activities.so +%%QT_PLUGINDIR%%/kcm_autostart.so +%%QT_PLUGINDIR%%/kcm_baloofile.so +%%QT_PLUGINDIR%%/kcm_clock.so +%%QT_PLUGINDIR%%/kcm_colors.so +%%QT_PLUGINDIR%%/kcm_componentchooser.so +%%QT_PLUGINDIR%%/kcm_cursortheme.so +%%QT_PLUGINDIR%%/kcm_desktoppaths.so +%%QT_PLUGINDIR%%/kcm_emoticons.so +%%QT_PLUGINDIR%%/kcm_fontinst.so +%%QT_PLUGINDIR%%/kcm_fonts.so +%%QT_PLUGINDIR%%/kcm_formats.so +%%QT_PLUGINDIR%%/kcm_icons.so +%%QT_PLUGINDIR%%/kcm_input.so +%%QT_PLUGINDIR%%/kcm_kded.so +%%QT_PLUGINDIR%%/kcm_keyboard.so +%%QT_PLUGINDIR%%/kcm_keys.so +%%QT_PLUGINDIR%%/kcm_knotify.so +%%QT_PLUGINDIR%%/kcm_launch.so +%%QT_PLUGINDIR%%/kcm_phonon.so +%%QT_PLUGINDIR%%/kcm_plasmasearch.so +%%QT_PLUGINDIR%%/kcm_smserver.so +%%QT_PLUGINDIR%%/kcm_solid_actions.so +%%QT_PLUGINDIR%%/kcm_standard_actions.so +%%QT_PLUGINDIR%%/kcm_style.so +%%QT_PLUGINDIR%%/kcm_workspaceoptions.so +%%QT_PLUGINDIR%%/kcms/kcm_desktoptheme.so +%%QT_PLUGINDIR%%/kcms/kcm_lookandfeel.so +%%QT_PLUGINDIR%%/kcms/kcm_nightcolor.so +%%QT_PLUGINDIR%%/kcms/kcm_splashscreen.so +%%QT_PLUGINDIR%%/kcmspellchecking.so +%%SYNAPTICS%%%%QT_PLUGINDIR%%/kded_touchpad.so +%%QT_PLUGINDIR%%/kf5/kded/device_automounter.so +%%QT_PLUGINDIR%%/kf5/kded/keyboard.so +%%QT_PLUGINDIR%%/kfontviewpart.so +%%QT_PLUGINDIR%%/kio_fonts.so +%%QT_PLUGINDIR%%/krunner_kwin.so +%%QT_PLUGINDIR%%/krunner_plasma-desktop.so +%%QT_PLUGINDIR%%/libkcm_device_automounter.so +%%QT_PLUGINDIR%%/libkcm_translations.so +%%QT_PLUGINDIR%%/plasma/dataengine/plasma_engine_kimpanel.so +%%SYNAPTICS%%%%QT_PLUGINDIR%%/plasma/dataengine/plasma_engine_touchpad.so +%%QT_QMLDIR%%/org/kde/activities/settings/libkactivitiessettingsplugin.so +%%QT_QMLDIR%%/org/kde/activities/settings/qmldir +%%QT_QMLDIR%%/org/kde/plasma/activityswitcher/libactivityswitcherextensionplugin.so +%%QT_QMLDIR%%/org/kde/plasma/activityswitcher/qmldir +%%QT_QMLDIR%%/org/kde/plasma/private/kicker/libkickerplugin.so +%%QT_QMLDIR%%/org/kde/plasma/private/kicker/qmldir +%%QT_QMLDIR%%/org/kde/plasma/private/kimpanel/libkimpanelplugin.so +%%QT_QMLDIR%%/org/kde/plasma/private/kimpanel/qmldir +%%QT_QMLDIR%%/org/kde/plasma/private/pager/libpagerplugin.so +%%QT_QMLDIR%%/org/kde/plasma/private/pager/qmldir +%%QT_QMLDIR%%/org/kde/plasma/private/taskmanager/libtaskmanagerplugin.so +%%QT_QMLDIR%%/org/kde/plasma/private/taskmanager/qmldir +%%QT_QMLDIR%%/org/kde/plasma/private/trash/libtrashplugin.so +%%QT_QMLDIR%%/org/kde/plasma/private/trash/qmldir +%%QT_QMLDIR%%/org/kde/private/desktopcontainment/desktop/libdesktopplugin.so +%%QT_QMLDIR%%/org/kde/private/desktopcontainment/desktop/qmldir +%%QT_QMLDIR%%/org/kde/private/desktopcontainment/folder/libfolderplugin.so +%%QT_QMLDIR%%/org/kde/private/desktopcontainment/folder/qmldir +share/applications/org.kde.kcolorschemeeditor.desktop +share/applications/org.kde.kfontview.desktop +share/applications/org.kde.knetattach.desktop +share/color-schemes/Honeycomb.colors +share/color-schemes/Norway.colors +share/color-schemes/ObsidianCoast.colors +share/color-schemes/Oxygen.colors +share/color-schemes/OxygenCold.colors +share/color-schemes/Steel.colors +share/color-schemes/WontonSoup.colors +share/color-schemes/Zion.colors +share/color-schemes/ZionReversed.colors +%%SYNAPTICS%%share/config.kcfg/touchpad.kcfg +%%SYNAPTICS%%share/config.kcfg/touchpaddaemon.kcfg +%%SYNAPTICS%%share/dbus-1/interfaces/org.kde.touchpad.xml +share/dbus-1/services/org.kde.fontinst.service +share/dbus-1/system-services/org.kde.fontinst.service +share/dbus-1/system-services/org.kde.kcontrol.kcmclock.service +share/doc/HTML/ca/kcontrol/autostart/index.cache.bz2 +share/doc/HTML/ca/kcontrol/autostart/index.docbook +share/doc/HTML/ca/kcontrol/baloo/index.cache.bz2 +share/doc/HTML/ca/kcontrol/baloo/index.docbook +share/doc/HTML/ca/kcontrol/clock/index.cache.bz2 +share/doc/HTML/ca/kcontrol/clock/index.docbook +share/doc/HTML/ca/kcontrol/colors/index.cache.bz2 +share/doc/HTML/ca/kcontrol/colors/index.docbook +share/doc/HTML/ca/kcontrol/componentchooser/index.cache.bz2 +share/doc/HTML/ca/kcontrol/componentchooser/index.docbook +share/doc/HTML/ca/kcontrol/cursortheme/index.cache.bz2 +share/doc/HTML/ca/kcontrol/cursortheme/index.docbook +share/doc/HTML/ca/kcontrol/desktopthemedetails/index.cache.bz2 +share/doc/HTML/ca/kcontrol/desktopthemedetails/index.docbook +share/doc/HTML/ca/kcontrol/emoticons/emoticons.png +share/doc/HTML/ca/kcontrol/emoticons/index.cache.bz2 +share/doc/HTML/ca/kcontrol/emoticons/index.docbook +share/doc/HTML/ca/kcontrol/fontinst/index.cache.bz2 +share/doc/HTML/ca/kcontrol/fontinst/index.docbook +share/doc/HTML/ca/kcontrol/fonts/adjust-all.png +share/doc/HTML/ca/kcontrol/fonts/anti-aliasing.png +share/doc/HTML/ca/kcontrol/fonts/index.cache.bz2 +share/doc/HTML/ca/kcontrol/fonts/index.docbook +share/doc/HTML/ca/kcontrol/fonts/main.png +share/doc/HTML/ca/kcontrol/formats/index.cache.bz2 +share/doc/HTML/ca/kcontrol/formats/index.docbook +share/doc/HTML/ca/kcontrol/icons/delete-theme.png +share/doc/HTML/ca/kcontrol/icons/effects.png +share/doc/HTML/ca/kcontrol/icons/get-new-theme.png +share/doc/HTML/ca/kcontrol/icons/index.cache.bz2 +share/doc/HTML/ca/kcontrol/icons/index.docbook +share/doc/HTML/ca/kcontrol/icons/install-theme.png +share/doc/HTML/ca/kcontrol/icons/main.png +share/doc/HTML/ca/kcontrol/icons/size.png +share/doc/HTML/ca/kcontrol/icons/use-of-icons.png +share/doc/HTML/ca/kcontrol/joystick/index.cache.bz2 +share/doc/HTML/ca/kcontrol/joystick/index.docbook +share/doc/HTML/ca/kcontrol/kcmaccess/index.cache.bz2 +share/doc/HTML/ca/kcontrol/kcmaccess/index.docbook +share/doc/HTML/ca/kcontrol/kcmlaunch/index.cache.bz2 +share/doc/HTML/ca/kcontrol/kcmlaunch/index.docbook +share/doc/HTML/ca/kcontrol/kcmnotify/index.cache.bz2 +share/doc/HTML/ca/kcontrol/kcmnotify/index.docbook +share/doc/HTML/ca/kcontrol/kcmsmserver/index.cache.bz2 +share/doc/HTML/ca/kcontrol/kcmsmserver/index.docbook +share/doc/HTML/ca/kcontrol/kcmstyle/index.cache.bz2 +share/doc/HTML/ca/kcontrol/kcmstyle/index.docbook +share/doc/HTML/ca/kcontrol/kded/index.cache.bz2 +share/doc/HTML/ca/kcontrol/kded/index.docbook +share/doc/HTML/ca/kcontrol/keyboard/index.cache.bz2 +share/doc/HTML/ca/kcontrol/keyboard/index.docbook +share/doc/HTML/ca/kcontrol/keys/index.cache.bz2 +share/doc/HTML/ca/kcontrol/keys/index.docbook +share/doc/HTML/ca/kcontrol/mouse/index.cache.bz2 +share/doc/HTML/ca/kcontrol/mouse/index.docbook +share/doc/HTML/ca/kcontrol/paths/index.cache.bz2 +share/doc/HTML/ca/kcontrol/paths/index.docbook +share/doc/HTML/ca/kcontrol/paths/paths.png +share/doc/HTML/ca/kcontrol/phonon/index.cache.bz2 +share/doc/HTML/ca/kcontrol/phonon/index.docbook +share/doc/HTML/ca/kcontrol/solid-actions/add-action.png +share/doc/HTML/ca/kcontrol/solid-actions/edit-action.png +share/doc/HTML/ca/kcontrol/solid-actions/index.cache.bz2 +share/doc/HTML/ca/kcontrol/solid-actions/index.docbook +share/doc/HTML/ca/kcontrol/solid-actions/main.png +share/doc/HTML/ca/kcontrol/solid-device-automounter/index.cache.bz2 +share/doc/HTML/ca/kcontrol/solid-device-automounter/index.docbook +share/doc/HTML/ca/kcontrol/spellchecking/index.cache.bz2 +share/doc/HTML/ca/kcontrol/spellchecking/index.docbook +share/doc/HTML/ca/kcontrol/splashscreen/index.cache.bz2 +share/doc/HTML/ca/kcontrol/splashscreen/index.docbook +share/doc/HTML/ca/kcontrol/splashscreen/splash-main.png +share/doc/HTML/ca/kcontrol/translations/index.cache.bz2 +share/doc/HTML/ca/kcontrol/translations/index.docbook +share/doc/HTML/ca/kfontview/index.cache.bz2 +share/doc/HTML/ca/kfontview/index.docbook +share/doc/HTML/ca/kfontview/kfontview.png +share/doc/HTML/ca/knetattach/index.cache.bz2 +share/doc/HTML/ca/knetattach/index.docbook +share/doc/HTML/ca/knetattach/screenshot.png +share/doc/HTML/ca/knetattach/screenshot1.png +share/doc/HTML/ca/knetattach/screenshot2.png +share/doc/HTML/ca/knetattach/screenshot3.png +share/doc/HTML/ca/knetattach/screenshot4.png +share/doc/HTML/ca/plasma-desktop/add-widgets.png +share/doc/HTML/ca/plasma-desktop/application-launcher-settings.png +share/doc/HTML/ca/plasma-desktop/application-launcher.png +share/doc/HTML/ca/plasma-desktop/application-menu.png +share/doc/HTML/ca/plasma-desktop/desktop-settings.png +share/doc/HTML/ca/plasma-desktop/device_notifier_widget.png +share/doc/HTML/ca/plasma-desktop/device_notifier_widget_actions.png +share/doc/HTML/ca/plasma-desktop/folder-view.png +share/doc/HTML/ca/plasma-desktop/index.cache.bz2 +share/doc/HTML/ca/plasma-desktop/index.docbook +share/doc/HTML/ca/plasma-desktop/krunner-configure.png +share/doc/HTML/ca/plasma-desktop/krunner-desktop-actions.png +share/doc/HTML/ca/plasma-desktop/krunner.png +share/doc/HTML/ca/plasma-desktop/panel-settings.png +share/doc/HTML/ca/plasma-desktop/plasma-desktop-annotated.png +share/doc/HTML/ca/plasma-desktop/remove.png +share/doc/HTML/ca/plasma-desktop/system-tray-settings.png +share/doc/HTML/ca/plasma-desktop/system-tray-up-arrow.png +share/doc/HTML/ca/plasma-desktop/taskbar-settings.png +share/doc/HTML/de/kcontrol/autostart/index.cache.bz2 +share/doc/HTML/de/kcontrol/autostart/index.docbook +share/doc/HTML/de/kcontrol/baloo/index.cache.bz2 +share/doc/HTML/de/kcontrol/baloo/index.docbook +share/doc/HTML/de/kcontrol/clock/index.cache.bz2 +share/doc/HTML/de/kcontrol/clock/index.docbook +share/doc/HTML/de/kcontrol/colors/index.cache.bz2 +share/doc/HTML/de/kcontrol/colors/index.docbook +share/doc/HTML/de/kcontrol/componentchooser/index.cache.bz2 +share/doc/HTML/de/kcontrol/componentchooser/index.docbook +share/doc/HTML/de/kcontrol/cursortheme/index.cache.bz2 +share/doc/HTML/de/kcontrol/cursortheme/index.docbook +share/doc/HTML/de/kcontrol/desktopthemedetails/index.cache.bz2 +share/doc/HTML/de/kcontrol/desktopthemedetails/index.docbook +share/doc/HTML/de/kcontrol/emoticons/index.cache.bz2 +share/doc/HTML/de/kcontrol/emoticons/index.docbook +share/doc/HTML/de/kcontrol/fontinst/index.cache.bz2 +share/doc/HTML/de/kcontrol/fontinst/index.docbook +share/doc/HTML/de/kcontrol/fonts/index.cache.bz2 +share/doc/HTML/de/kcontrol/fonts/index.docbook +share/doc/HTML/de/kcontrol/formats/index.cache.bz2 +share/doc/HTML/de/kcontrol/formats/index.docbook +share/doc/HTML/de/kcontrol/icons/index.cache.bz2 +share/doc/HTML/de/kcontrol/icons/index.docbook +share/doc/HTML/de/kcontrol/joystick/index.cache.bz2 +share/doc/HTML/de/kcontrol/joystick/index.docbook +share/doc/HTML/de/kcontrol/kcmaccess/index.cache.bz2 +share/doc/HTML/de/kcontrol/kcmaccess/index.docbook +share/doc/HTML/de/kcontrol/kcmlaunch/index.cache.bz2 +share/doc/HTML/de/kcontrol/kcmlaunch/index.docbook +share/doc/HTML/de/kcontrol/kcmnotify/index.cache.bz2 +share/doc/HTML/de/kcontrol/kcmnotify/index.docbook +share/doc/HTML/de/kcontrol/kcmsmserver/index.cache.bz2 +share/doc/HTML/de/kcontrol/kcmsmserver/index.docbook +share/doc/HTML/de/kcontrol/kcmstyle/index.cache.bz2 +share/doc/HTML/de/kcontrol/kcmstyle/index.docbook +share/doc/HTML/de/kcontrol/kded/index.cache.bz2 +share/doc/HTML/de/kcontrol/kded/index.docbook +share/doc/HTML/de/kcontrol/keyboard/index.cache.bz2 +share/doc/HTML/de/kcontrol/keyboard/index.docbook +share/doc/HTML/de/kcontrol/keys/index.cache.bz2 +share/doc/HTML/de/kcontrol/keys/index.docbook +share/doc/HTML/de/kcontrol/mouse/index.cache.bz2 +share/doc/HTML/de/kcontrol/mouse/index.docbook +share/doc/HTML/de/kcontrol/paths/index.cache.bz2 +share/doc/HTML/de/kcontrol/paths/index.docbook +share/doc/HTML/de/kcontrol/phonon/index.cache.bz2 +share/doc/HTML/de/kcontrol/phonon/index.docbook +share/doc/HTML/de/kcontrol/solid-actions/index.cache.bz2 +share/doc/HTML/de/kcontrol/solid-actions/index.docbook +share/doc/HTML/de/kcontrol/solid-device-automounter/index.cache.bz2 +share/doc/HTML/de/kcontrol/solid-device-automounter/index.docbook +share/doc/HTML/de/kcontrol/spellchecking/index.cache.bz2 +share/doc/HTML/de/kcontrol/spellchecking/index.docbook +share/doc/HTML/de/kcontrol/splashscreen/index.cache.bz2 +share/doc/HTML/de/kcontrol/splashscreen/index.docbook +share/doc/HTML/de/kcontrol/translations/index.cache.bz2 +share/doc/HTML/de/kcontrol/translations/index.docbook +share/doc/HTML/de/kfontview/index.cache.bz2 +share/doc/HTML/de/kfontview/index.docbook +share/doc/HTML/de/knetattach/index.cache.bz2 +share/doc/HTML/de/knetattach/index.docbook +share/doc/HTML/de/plasma-desktop/index.cache.bz2 +share/doc/HTML/de/plasma-desktop/index.docbook +share/doc/HTML/en/kcontrol/autostart/index.cache.bz2 +share/doc/HTML/en/kcontrol/autostart/index.docbook +share/doc/HTML/en/kcontrol/baloo/index.cache.bz2 +share/doc/HTML/en/kcontrol/baloo/index.docbook +share/doc/HTML/en/kcontrol/clock/index.cache.bz2 +share/doc/HTML/en/kcontrol/clock/index.docbook +share/doc/HTML/en/kcontrol/colors/index.cache.bz2 +share/doc/HTML/en/kcontrol/colors/index.docbook +share/doc/HTML/en/kcontrol/componentchooser/index.cache.bz2 +share/doc/HTML/en/kcontrol/componentchooser/index.docbook +share/doc/HTML/en/kcontrol/cursortheme/index.cache.bz2 +share/doc/HTML/en/kcontrol/cursortheme/index.docbook +share/doc/HTML/en/kcontrol/desktopthemedetails/index.cache.bz2 +share/doc/HTML/en/kcontrol/desktopthemedetails/index.docbook +share/doc/HTML/en/kcontrol/emoticons/emoticons.png +share/doc/HTML/en/kcontrol/emoticons/index.cache.bz2 +share/doc/HTML/en/kcontrol/emoticons/index.docbook +share/doc/HTML/en/kcontrol/fontinst/index.cache.bz2 +share/doc/HTML/en/kcontrol/fontinst/index.docbook +share/doc/HTML/en/kcontrol/fonts/adjust-all.png +share/doc/HTML/en/kcontrol/fonts/anti-aliasing.png +share/doc/HTML/en/kcontrol/fonts/index.cache.bz2 +share/doc/HTML/en/kcontrol/fonts/index.docbook +share/doc/HTML/en/kcontrol/fonts/main.png +share/doc/HTML/en/kcontrol/formats/index.cache.bz2 +share/doc/HTML/en/kcontrol/formats/index.docbook +share/doc/HTML/en/kcontrol/icons/delete-theme.png +share/doc/HTML/en/kcontrol/icons/effects.png +share/doc/HTML/en/kcontrol/icons/get-new-theme.png +share/doc/HTML/en/kcontrol/icons/index.cache.bz2 +share/doc/HTML/en/kcontrol/icons/index.docbook +share/doc/HTML/en/kcontrol/icons/install-theme.png +share/doc/HTML/en/kcontrol/icons/main.png +share/doc/HTML/en/kcontrol/icons/size.png +share/doc/HTML/en/kcontrol/icons/use-of-icons.png +share/doc/HTML/en/kcontrol/joystick/index.cache.bz2 +share/doc/HTML/en/kcontrol/joystick/index.docbook +share/doc/HTML/en/kcontrol/joystick/joystick-calibration.png +share/doc/HTML/en/kcontrol/joystick/joystick-main.png +share/doc/HTML/en/kcontrol/kcmaccess/index.cache.bz2 +share/doc/HTML/en/kcontrol/kcmaccess/index.docbook +share/doc/HTML/en/kcontrol/kcmlaunch/index.cache.bz2 +share/doc/HTML/en/kcontrol/kcmlaunch/index.docbook +share/doc/HTML/en/kcontrol/kcmnotify/index.cache.bz2 +share/doc/HTML/en/kcontrol/kcmnotify/index.docbook +share/doc/HTML/en/kcontrol/kcmsmserver/index.cache.bz2 +share/doc/HTML/en/kcontrol/kcmsmserver/index.docbook +share/doc/HTML/en/kcontrol/kcmstyle/index.cache.bz2 +share/doc/HTML/en/kcontrol/kcmstyle/index.docbook +share/doc/HTML/en/kcontrol/kded/index.cache.bz2 +share/doc/HTML/en/kcontrol/kded/index.docbook +share/doc/HTML/en/kcontrol/keyboard/index.cache.bz2 +share/doc/HTML/en/kcontrol/keyboard/index.docbook +share/doc/HTML/en/kcontrol/keys/index.cache.bz2 +share/doc/HTML/en/kcontrol/keys/index.docbook +share/doc/HTML/en/kcontrol/keys/list-add.png +share/doc/HTML/en/kcontrol/keys/remove.png +share/doc/HTML/en/kcontrol/mouse/index.cache.bz2 +share/doc/HTML/en/kcontrol/mouse/index.docbook +share/doc/HTML/en/kcontrol/paths/index.cache.bz2 +share/doc/HTML/en/kcontrol/paths/index.docbook +share/doc/HTML/en/kcontrol/paths/paths.png +share/doc/HTML/en/kcontrol/phonon/index.cache.bz2 +share/doc/HTML/en/kcontrol/phonon/index.docbook +share/doc/HTML/en/kcontrol/solid-actions/add-action.png +share/doc/HTML/en/kcontrol/solid-actions/edit-action.png +share/doc/HTML/en/kcontrol/solid-actions/index.cache.bz2 +share/doc/HTML/en/kcontrol/solid-actions/index.docbook +share/doc/HTML/en/kcontrol/solid-actions/main.png +share/doc/HTML/en/kcontrol/solid-device-automounter/index.cache.bz2 +share/doc/HTML/en/kcontrol/solid-device-automounter/index.docbook +share/doc/HTML/en/kcontrol/spellchecking/index.cache.bz2 +share/doc/HTML/en/kcontrol/spellchecking/index.docbook +share/doc/HTML/en/kcontrol/splashscreen/get-new-theme.png +share/doc/HTML/en/kcontrol/splashscreen/index.cache.bz2 +share/doc/HTML/en/kcontrol/splashscreen/index.docbook +share/doc/HTML/en/kcontrol/splashscreen/splash-main.png +share/doc/HTML/en/kcontrol/translations/index.cache.bz2 +share/doc/HTML/en/kcontrol/translations/index.docbook +share/doc/HTML/en/kfontview/index.cache.bz2 +share/doc/HTML/en/kfontview/index.docbook +share/doc/HTML/en/kfontview/kfontview.png +share/doc/HTML/en/knetattach/index.cache.bz2 +share/doc/HTML/en/knetattach/index.docbook +share/doc/HTML/en/knetattach/screenshot.png +share/doc/HTML/en/knetattach/screenshot1.png +share/doc/HTML/en/knetattach/screenshot2.png +share/doc/HTML/en/knetattach/screenshot3.png +share/doc/HTML/en/knetattach/screenshot4.png +share/doc/HTML/en/plasma-desktop/add-widgets.png +share/doc/HTML/en/plasma-desktop/application-launcher-settings.png +share/doc/HTML/en/plasma-desktop/application-launcher.png +share/doc/HTML/en/plasma-desktop/application-menu.png +share/doc/HTML/en/plasma-desktop/desktop-settings.png +share/doc/HTML/en/plasma-desktop/device_notifier_widget.png +share/doc/HTML/en/plasma-desktop/device_notifier_widget_actions.png +share/doc/HTML/en/plasma-desktop/folder-view.png +share/doc/HTML/en/plasma-desktop/index.cache.bz2 +share/doc/HTML/en/plasma-desktop/index.docbook +share/doc/HTML/en/plasma-desktop/krunner-configure.png +share/doc/HTML/en/plasma-desktop/krunner-desktop-actions.png +share/doc/HTML/en/plasma-desktop/krunner.png +share/doc/HTML/en/plasma-desktop/panel-settings.png +share/doc/HTML/en/plasma-desktop/plasma-desktop-annotated.png +share/doc/HTML/en/plasma-desktop/remove.png +share/doc/HTML/en/plasma-desktop/system-tray-settings.png +share/doc/HTML/en/plasma-desktop/system-tray-up-arrow.png +share/doc/HTML/en/plasma-desktop/taskbar-settings.png +share/doc/HTML/es/kcontrol/autostart/index.cache.bz2 +share/doc/HTML/es/kcontrol/autostart/index.docbook +share/doc/HTML/es/kcontrol/clock/index.cache.bz2 +share/doc/HTML/es/kcontrol/clock/index.docbook +share/doc/HTML/es/kcontrol/componentchooser/index.cache.bz2 +share/doc/HTML/es/kcontrol/componentchooser/index.docbook +share/doc/HTML/es/kcontrol/cursortheme/index.cache.bz2 +share/doc/HTML/es/kcontrol/cursortheme/index.docbook +share/doc/HTML/es/kcontrol/desktopthemedetails/index.cache.bz2 +share/doc/HTML/es/kcontrol/desktopthemedetails/index.docbook +share/doc/HTML/es/kcontrol/emoticons/index.cache.bz2 +share/doc/HTML/es/kcontrol/emoticons/index.docbook +share/doc/HTML/es/kcontrol/fontinst/index.cache.bz2 +share/doc/HTML/es/kcontrol/fontinst/index.docbook +share/doc/HTML/es/kcontrol/fonts/index.cache.bz2 +share/doc/HTML/es/kcontrol/fonts/index.docbook +share/doc/HTML/es/kcontrol/joystick/index.cache.bz2 +share/doc/HTML/es/kcontrol/joystick/index.docbook +share/doc/HTML/es/kcontrol/kcmlaunch/index.cache.bz2 +share/doc/HTML/es/kcontrol/kcmlaunch/index.docbook +share/doc/HTML/es/kcontrol/kcmnotify/index.cache.bz2 +share/doc/HTML/es/kcontrol/kcmnotify/index.docbook +share/doc/HTML/es/kcontrol/kcmsmserver/index.cache.bz2 +share/doc/HTML/es/kcontrol/kcmsmserver/index.docbook +share/doc/HTML/es/kcontrol/kded/index.cache.bz2 +share/doc/HTML/es/kcontrol/kded/index.docbook +share/doc/HTML/es/kcontrol/mouse/index.cache.bz2 +share/doc/HTML/es/kcontrol/mouse/index.docbook +share/doc/HTML/es/kcontrol/paths/index.cache.bz2 +share/doc/HTML/es/kcontrol/paths/index.docbook +share/doc/HTML/es/kcontrol/phonon/index.cache.bz2 +share/doc/HTML/es/kcontrol/phonon/index.docbook +share/doc/HTML/es/kcontrol/solid-device-automounter/index.cache.bz2 +share/doc/HTML/es/kcontrol/solid-device-automounter/index.docbook +share/doc/HTML/es/kfontview/index.cache.bz2 +share/doc/HTML/es/kfontview/index.docbook +share/doc/HTML/es/knetattach/index.cache.bz2 +share/doc/HTML/es/knetattach/index.docbook +share/doc/HTML/et/kcontrol/clock/index.cache.bz2 +share/doc/HTML/et/kcontrol/clock/index.docbook +share/doc/HTML/et/kcontrol/phonon/index.cache.bz2 +share/doc/HTML/et/kcontrol/phonon/index.docbook +share/doc/HTML/et/kcontrol/solid-actions/index.cache.bz2 +share/doc/HTML/et/kcontrol/solid-actions/index.docbook +share/doc/HTML/et/kcontrol/solid-device-automounter/index.cache.bz2 +share/doc/HTML/et/kcontrol/solid-device-automounter/index.docbook +share/doc/HTML/it/kcontrol/autostart/index.cache.bz2 +share/doc/HTML/it/kcontrol/autostart/index.docbook +share/doc/HTML/it/kcontrol/baloo/index.cache.bz2 +share/doc/HTML/it/kcontrol/baloo/index.docbook +share/doc/HTML/it/kcontrol/clock/index.cache.bz2 +share/doc/HTML/it/kcontrol/clock/index.docbook +share/doc/HTML/it/kcontrol/colors/index.cache.bz2 +share/doc/HTML/it/kcontrol/colors/index.docbook +share/doc/HTML/it/kcontrol/componentchooser/index.cache.bz2 +share/doc/HTML/it/kcontrol/componentchooser/index.docbook +share/doc/HTML/it/kcontrol/cursortheme/index.cache.bz2 +share/doc/HTML/it/kcontrol/cursortheme/index.docbook +share/doc/HTML/it/kcontrol/desktopthemedetails/index.cache.bz2 +share/doc/HTML/it/kcontrol/desktopthemedetails/index.docbook +share/doc/HTML/it/kcontrol/emoticons/index.cache.bz2 +share/doc/HTML/it/kcontrol/emoticons/index.docbook +share/doc/HTML/it/kcontrol/fontinst/index.cache.bz2 +share/doc/HTML/it/kcontrol/fontinst/index.docbook +share/doc/HTML/it/kcontrol/fonts/index.cache.bz2 +share/doc/HTML/it/kcontrol/fonts/index.docbook +share/doc/HTML/it/kcontrol/formats/index.cache.bz2 +share/doc/HTML/it/kcontrol/formats/index.docbook +share/doc/HTML/it/kcontrol/icons/index.cache.bz2 +share/doc/HTML/it/kcontrol/icons/index.docbook +share/doc/HTML/it/kcontrol/joystick/index.cache.bz2 +share/doc/HTML/it/kcontrol/joystick/index.docbook +share/doc/HTML/it/kcontrol/kcmaccess/index.cache.bz2 +share/doc/HTML/it/kcontrol/kcmaccess/index.docbook +share/doc/HTML/it/kcontrol/kcmlaunch/index.cache.bz2 +share/doc/HTML/it/kcontrol/kcmlaunch/index.docbook +share/doc/HTML/it/kcontrol/kcmnotify/index.cache.bz2 +share/doc/HTML/it/kcontrol/kcmnotify/index.docbook +share/doc/HTML/it/kcontrol/kcmsmserver/index.cache.bz2 +share/doc/HTML/it/kcontrol/kcmsmserver/index.docbook +share/doc/HTML/it/kcontrol/kcmstyle/index.cache.bz2 +share/doc/HTML/it/kcontrol/kcmstyle/index.docbook +share/doc/HTML/it/kcontrol/kded/index.cache.bz2 +share/doc/HTML/it/kcontrol/kded/index.docbook +share/doc/HTML/it/kcontrol/keyboard/index.cache.bz2 +share/doc/HTML/it/kcontrol/keyboard/index.docbook +share/doc/HTML/it/kcontrol/keys/index.cache.bz2 +share/doc/HTML/it/kcontrol/keys/index.docbook +share/doc/HTML/it/kcontrol/mouse/index.cache.bz2 +share/doc/HTML/it/kcontrol/mouse/index.docbook +share/doc/HTML/it/kcontrol/paths/index.cache.bz2 +share/doc/HTML/it/kcontrol/paths/index.docbook +share/doc/HTML/it/kcontrol/phonon/index.cache.bz2 +share/doc/HTML/it/kcontrol/phonon/index.docbook +share/doc/HTML/it/kcontrol/solid-actions/index.cache.bz2 +share/doc/HTML/it/kcontrol/solid-actions/index.docbook +share/doc/HTML/it/kcontrol/solid-device-automounter/index.cache.bz2 +share/doc/HTML/it/kcontrol/solid-device-automounter/index.docbook +share/doc/HTML/it/kcontrol/spellchecking/index.cache.bz2 +share/doc/HTML/it/kcontrol/spellchecking/index.docbook +share/doc/HTML/it/kcontrol/splashscreen/index.cache.bz2 +share/doc/HTML/it/kcontrol/splashscreen/index.docbook +share/doc/HTML/it/kcontrol/translations/index.cache.bz2 +share/doc/HTML/it/kcontrol/translations/index.docbook +share/doc/HTML/it/kfontview/index.cache.bz2 +share/doc/HTML/it/kfontview/index.docbook +share/doc/HTML/it/knetattach/index.cache.bz2 +share/doc/HTML/it/knetattach/index.docbook +share/doc/HTML/it/plasma-desktop/index.cache.bz2 +share/doc/HTML/it/plasma-desktop/index.docbook +share/doc/HTML/nl/kcontrol/autostart/index.cache.bz2 +share/doc/HTML/nl/kcontrol/autostart/index.docbook +share/doc/HTML/nl/kcontrol/baloo/index.cache.bz2 +share/doc/HTML/nl/kcontrol/baloo/index.docbook +share/doc/HTML/nl/kcontrol/clock/index.cache.bz2 +share/doc/HTML/nl/kcontrol/clock/index.docbook +share/doc/HTML/nl/kcontrol/colors/index.cache.bz2 +share/doc/HTML/nl/kcontrol/colors/index.docbook +share/doc/HTML/nl/kcontrol/componentchooser/index.cache.bz2 +share/doc/HTML/nl/kcontrol/componentchooser/index.docbook +share/doc/HTML/nl/kcontrol/cursortheme/index.cache.bz2 +share/doc/HTML/nl/kcontrol/cursortheme/index.docbook +share/doc/HTML/nl/kcontrol/desktopthemedetails/index.cache.bz2 +share/doc/HTML/nl/kcontrol/desktopthemedetails/index.docbook +share/doc/HTML/nl/kcontrol/emoticons/index.cache.bz2 +share/doc/HTML/nl/kcontrol/emoticons/index.docbook +share/doc/HTML/nl/kcontrol/fontinst/index.cache.bz2 +share/doc/HTML/nl/kcontrol/fontinst/index.docbook +share/doc/HTML/nl/kcontrol/fonts/index.cache.bz2 +share/doc/HTML/nl/kcontrol/fonts/index.docbook +share/doc/HTML/nl/kcontrol/formats/index.cache.bz2 +share/doc/HTML/nl/kcontrol/formats/index.docbook +share/doc/HTML/nl/kcontrol/icons/index.cache.bz2 +share/doc/HTML/nl/kcontrol/icons/index.docbook +share/doc/HTML/nl/kcontrol/joystick/index.cache.bz2 +share/doc/HTML/nl/kcontrol/joystick/index.docbook +share/doc/HTML/nl/kcontrol/kcmaccess/index.cache.bz2 +share/doc/HTML/nl/kcontrol/kcmaccess/index.docbook +share/doc/HTML/nl/kcontrol/kcmlaunch/index.cache.bz2 +share/doc/HTML/nl/kcontrol/kcmlaunch/index.docbook +share/doc/HTML/nl/kcontrol/kcmnotify/index.cache.bz2 +share/doc/HTML/nl/kcontrol/kcmnotify/index.docbook +share/doc/HTML/nl/kcontrol/kcmsmserver/index.cache.bz2 +share/doc/HTML/nl/kcontrol/kcmsmserver/index.docbook +share/doc/HTML/nl/kcontrol/kcmstyle/index.cache.bz2 +share/doc/HTML/nl/kcontrol/kcmstyle/index.docbook +share/doc/HTML/nl/kcontrol/kded/index.cache.bz2 +share/doc/HTML/nl/kcontrol/kded/index.docbook +share/doc/HTML/nl/kcontrol/keyboard/index.cache.bz2 +share/doc/HTML/nl/kcontrol/keyboard/index.docbook +share/doc/HTML/nl/kcontrol/keys/index.cache.bz2 +share/doc/HTML/nl/kcontrol/keys/index.docbook +share/doc/HTML/nl/kcontrol/mouse/index.cache.bz2 +share/doc/HTML/nl/kcontrol/mouse/index.docbook +share/doc/HTML/nl/kcontrol/paths/index.cache.bz2 +share/doc/HTML/nl/kcontrol/paths/index.docbook +share/doc/HTML/nl/kcontrol/phonon/index.cache.bz2 +share/doc/HTML/nl/kcontrol/phonon/index.docbook +share/doc/HTML/nl/kcontrol/solid-actions/index.cache.bz2 +share/doc/HTML/nl/kcontrol/solid-actions/index.docbook +share/doc/HTML/nl/kcontrol/solid-device-automounter/index.cache.bz2 +share/doc/HTML/nl/kcontrol/solid-device-automounter/index.docbook +share/doc/HTML/nl/kcontrol/spellchecking/index.cache.bz2 +share/doc/HTML/nl/kcontrol/spellchecking/index.docbook +share/doc/HTML/nl/kcontrol/splashscreen/index.cache.bz2 +share/doc/HTML/nl/kcontrol/splashscreen/index.docbook +share/doc/HTML/nl/kcontrol/translations/index.cache.bz2 +share/doc/HTML/nl/kcontrol/translations/index.docbook +share/doc/HTML/nl/kfontview/index.cache.bz2 +share/doc/HTML/nl/kfontview/index.docbook +share/doc/HTML/nl/knetattach/index.cache.bz2 +share/doc/HTML/nl/knetattach/index.docbook +share/doc/HTML/nl/plasma-desktop/index.cache.bz2 +share/doc/HTML/nl/plasma-desktop/index.docbook +share/doc/HTML/pt/kcontrol/autostart/index.cache.bz2 +share/doc/HTML/pt/kcontrol/autostart/index.docbook +share/doc/HTML/pt/kcontrol/baloo/index.cache.bz2 +share/doc/HTML/pt/kcontrol/baloo/index.docbook +share/doc/HTML/pt/kcontrol/clock/index.cache.bz2 +share/doc/HTML/pt/kcontrol/clock/index.docbook +share/doc/HTML/pt/kcontrol/colors/index.cache.bz2 +share/doc/HTML/pt/kcontrol/colors/index.docbook +share/doc/HTML/pt/kcontrol/componentchooser/index.cache.bz2 +share/doc/HTML/pt/kcontrol/componentchooser/index.docbook +share/doc/HTML/pt/kcontrol/cursortheme/index.cache.bz2 +share/doc/HTML/pt/kcontrol/cursortheme/index.docbook +share/doc/HTML/pt/kcontrol/desktopthemedetails/index.cache.bz2 +share/doc/HTML/pt/kcontrol/desktopthemedetails/index.docbook +share/doc/HTML/pt/kcontrol/emoticons/index.cache.bz2 +share/doc/HTML/pt/kcontrol/emoticons/index.docbook +share/doc/HTML/pt/kcontrol/fontinst/index.cache.bz2 +share/doc/HTML/pt/kcontrol/fontinst/index.docbook +share/doc/HTML/pt/kcontrol/fonts/index.cache.bz2 +share/doc/HTML/pt/kcontrol/fonts/index.docbook +share/doc/HTML/pt/kcontrol/formats/index.cache.bz2 +share/doc/HTML/pt/kcontrol/formats/index.docbook +share/doc/HTML/pt/kcontrol/joystick/index.cache.bz2 +share/doc/HTML/pt/kcontrol/joystick/index.docbook +share/doc/HTML/pt/kcontrol/kcmaccess/index.cache.bz2 +share/doc/HTML/pt/kcontrol/kcmaccess/index.docbook +share/doc/HTML/pt/kcontrol/kcmlaunch/index.cache.bz2 +share/doc/HTML/pt/kcontrol/kcmlaunch/index.docbook +share/doc/HTML/pt/kcontrol/kcmnotify/index.cache.bz2 +share/doc/HTML/pt/kcontrol/kcmnotify/index.docbook +share/doc/HTML/pt/kcontrol/kcmsmserver/index.cache.bz2 +share/doc/HTML/pt/kcontrol/kcmsmserver/index.docbook +share/doc/HTML/pt/kcontrol/kcmstyle/index.cache.bz2 +share/doc/HTML/pt/kcontrol/kcmstyle/index.docbook +share/doc/HTML/pt/kcontrol/kded/index.cache.bz2 +share/doc/HTML/pt/kcontrol/kded/index.docbook +share/doc/HTML/pt/kcontrol/keyboard/index.cache.bz2 +share/doc/HTML/pt/kcontrol/keyboard/index.docbook +share/doc/HTML/pt/kcontrol/keys/index.cache.bz2 +share/doc/HTML/pt/kcontrol/keys/index.docbook +share/doc/HTML/pt/kcontrol/mouse/index.cache.bz2 +share/doc/HTML/pt/kcontrol/mouse/index.docbook +share/doc/HTML/pt/kcontrol/paths/index.cache.bz2 +share/doc/HTML/pt/kcontrol/paths/index.docbook +share/doc/HTML/pt/kcontrol/phonon/index.cache.bz2 +share/doc/HTML/pt/kcontrol/phonon/index.docbook +share/doc/HTML/pt/kcontrol/solid-actions/index.cache.bz2 +share/doc/HTML/pt/kcontrol/solid-actions/index.docbook +share/doc/HTML/pt/kcontrol/solid-device-automounter/index.cache.bz2 +share/doc/HTML/pt/kcontrol/solid-device-automounter/index.docbook +share/doc/HTML/pt/kcontrol/spellchecking/index.cache.bz2 +share/doc/HTML/pt/kcontrol/spellchecking/index.docbook +share/doc/HTML/pt/kcontrol/splashscreen/index.cache.bz2 +share/doc/HTML/pt/kcontrol/splashscreen/index.docbook +share/doc/HTML/pt/kcontrol/translations/index.cache.bz2 +share/doc/HTML/pt/kcontrol/translations/index.docbook +share/doc/HTML/pt/kfontview/index.cache.bz2 +share/doc/HTML/pt/kfontview/index.docbook +share/doc/HTML/pt/knetattach/index.cache.bz2 +share/doc/HTML/pt/knetattach/index.docbook +share/doc/HTML/pt/plasma-desktop/index.cache.bz2 +share/doc/HTML/pt/plasma-desktop/index.docbook +share/doc/HTML/pt_BR/kcontrol/autostart/index.cache.bz2 +share/doc/HTML/pt_BR/kcontrol/autostart/index.docbook +share/doc/HTML/pt_BR/kcontrol/baloo/index.cache.bz2 +share/doc/HTML/pt_BR/kcontrol/baloo/index.docbook +share/doc/HTML/pt_BR/kcontrol/clock/index.cache.bz2 +share/doc/HTML/pt_BR/kcontrol/clock/index.docbook +share/doc/HTML/pt_BR/kcontrol/colors/index.cache.bz2 +share/doc/HTML/pt_BR/kcontrol/colors/index.docbook +share/doc/HTML/pt_BR/kcontrol/componentchooser/index.cache.bz2 +share/doc/HTML/pt_BR/kcontrol/componentchooser/index.docbook +share/doc/HTML/pt_BR/kcontrol/cursortheme/index.cache.bz2 +share/doc/HTML/pt_BR/kcontrol/cursortheme/index.docbook +share/doc/HTML/pt_BR/kcontrol/desktopthemedetails/customizing.png +share/doc/HTML/pt_BR/kcontrol/desktopthemedetails/index.cache.bz2 +share/doc/HTML/pt_BR/kcontrol/desktopthemedetails/index.docbook +share/doc/HTML/pt_BR/kcontrol/emoticons/emoticons.png +share/doc/HTML/pt_BR/kcontrol/emoticons/index.cache.bz2 +share/doc/HTML/pt_BR/kcontrol/emoticons/index.docbook +share/doc/HTML/pt_BR/kcontrol/fontinst/index.cache.bz2 +share/doc/HTML/pt_BR/kcontrol/fontinst/index.docbook +share/doc/HTML/pt_BR/kcontrol/fonts/adjust-all.png +share/doc/HTML/pt_BR/kcontrol/fonts/anti-aliasing.png +share/doc/HTML/pt_BR/kcontrol/fonts/index.cache.bz2 +share/doc/HTML/pt_BR/kcontrol/fonts/index.docbook +share/doc/HTML/pt_BR/kcontrol/fonts/main.png +share/doc/HTML/pt_BR/kcontrol/formats/index.cache.bz2 +share/doc/HTML/pt_BR/kcontrol/formats/index.docbook +share/doc/HTML/pt_BR/kcontrol/icons/effects.png +share/doc/HTML/pt_BR/kcontrol/icons/index.cache.bz2 +share/doc/HTML/pt_BR/kcontrol/icons/index.docbook +share/doc/HTML/pt_BR/kcontrol/icons/install-theme.png +share/doc/HTML/pt_BR/kcontrol/icons/main.png +share/doc/HTML/pt_BR/kcontrol/icons/use-of-icons.png +share/doc/HTML/pt_BR/kcontrol/joystick/index.cache.bz2 +share/doc/HTML/pt_BR/kcontrol/joystick/index.docbook +share/doc/HTML/pt_BR/kcontrol/kcmaccess/index.cache.bz2 +share/doc/HTML/pt_BR/kcontrol/kcmaccess/index.docbook +share/doc/HTML/pt_BR/kcontrol/kcmlaunch/index.cache.bz2 +share/doc/HTML/pt_BR/kcontrol/kcmlaunch/index.docbook +share/doc/HTML/pt_BR/kcontrol/kcmnotify/index.cache.bz2 +share/doc/HTML/pt_BR/kcontrol/kcmnotify/index.docbook +share/doc/HTML/pt_BR/kcontrol/kcmsmserver/index.cache.bz2 +share/doc/HTML/pt_BR/kcontrol/kcmsmserver/index.docbook +share/doc/HTML/pt_BR/kcontrol/kcmstyle/index.cache.bz2 +share/doc/HTML/pt_BR/kcontrol/kcmstyle/index.docbook +share/doc/HTML/pt_BR/kcontrol/kded/index.cache.bz2 +share/doc/HTML/pt_BR/kcontrol/kded/index.docbook +share/doc/HTML/pt_BR/kcontrol/keyboard/index.cache.bz2 +share/doc/HTML/pt_BR/kcontrol/keyboard/index.docbook +share/doc/HTML/pt_BR/kcontrol/keys/index.cache.bz2 +share/doc/HTML/pt_BR/kcontrol/keys/index.docbook +share/doc/HTML/pt_BR/kcontrol/mouse/index.cache.bz2 +share/doc/HTML/pt_BR/kcontrol/mouse/index.docbook +share/doc/HTML/pt_BR/kcontrol/paths/index.cache.bz2 +share/doc/HTML/pt_BR/kcontrol/paths/index.docbook +share/doc/HTML/pt_BR/kcontrol/phonon/index.cache.bz2 +share/doc/HTML/pt_BR/kcontrol/phonon/index.docbook +share/doc/HTML/pt_BR/kcontrol/solid-actions/index.cache.bz2 +share/doc/HTML/pt_BR/kcontrol/solid-actions/index.docbook +share/doc/HTML/pt_BR/kcontrol/solid-device-automounter/index.cache.bz2 +share/doc/HTML/pt_BR/kcontrol/solid-device-automounter/index.docbook +share/doc/HTML/pt_BR/kcontrol/spellchecking/index.cache.bz2 +share/doc/HTML/pt_BR/kcontrol/spellchecking/index.docbook +share/doc/HTML/pt_BR/kcontrol/splashscreen/index.cache.bz2 +share/doc/HTML/pt_BR/kcontrol/splashscreen/index.docbook +share/doc/HTML/pt_BR/kcontrol/splashscreen/splash-main.png +share/doc/HTML/pt_BR/kcontrol/translations/index.cache.bz2 +share/doc/HTML/pt_BR/kcontrol/translations/index.docbook +share/doc/HTML/pt_BR/kfontview/index.cache.bz2 +share/doc/HTML/pt_BR/kfontview/index.docbook +share/doc/HTML/pt_BR/knetattach/index.cache.bz2 +share/doc/HTML/pt_BR/knetattach/index.docbook +share/doc/HTML/pt_BR/knetattach/screenshot.png +share/doc/HTML/pt_BR/knetattach/screenshot1.png +share/doc/HTML/pt_BR/knetattach/screenshot2.png +share/doc/HTML/pt_BR/knetattach/screenshot3.png +share/doc/HTML/pt_BR/knetattach/screenshot4.png +share/doc/HTML/pt_BR/plasma-desktop/add-widgets.png +share/doc/HTML/pt_BR/plasma-desktop/desktop-settings.png +share/doc/HTML/pt_BR/plasma-desktop/index.cache.bz2 +share/doc/HTML/pt_BR/plasma-desktop/index.docbook +share/doc/HTML/pt_BR/plasma-desktop/krunner-configure.png +share/doc/HTML/pt_BR/plasma-desktop/krunner.png +share/doc/HTML/pt_BR/plasma-desktop/panel-settings.png +share/doc/HTML/pt_BR/plasma-desktop/system-tray-settings.png +share/doc/HTML/pt_BR/plasma-desktop/system-tray-up-arrow.png +share/doc/HTML/pt_BR/plasma-desktop/taskbar-settings.png +share/doc/HTML/ru/kcontrol/baloo/index.cache.bz2 +share/doc/HTML/ru/kcontrol/baloo/index.docbook +share/doc/HTML/ru/kcontrol/componentchooser/index.cache.bz2 +share/doc/HTML/ru/kcontrol/componentchooser/index.docbook +share/doc/HTML/ru/kcontrol/desktopthemedetails/index.cache.bz2 +share/doc/HTML/ru/kcontrol/desktopthemedetails/index.docbook +share/doc/HTML/ru/kcontrol/emoticons/index.cache.bz2 +share/doc/HTML/ru/kcontrol/emoticons/index.docbook +share/doc/HTML/ru/kcontrol/joystick/index.cache.bz2 +share/doc/HTML/ru/kcontrol/joystick/index.docbook +share/doc/HTML/ru/kcontrol/kded/index.cache.bz2 +share/doc/HTML/ru/kcontrol/kded/index.docbook +share/doc/HTML/ru/kcontrol/mouse/index.cache.bz2 +share/doc/HTML/ru/kcontrol/mouse/index.docbook +share/doc/HTML/ru/kcontrol/phonon/index.cache.bz2 +share/doc/HTML/ru/kcontrol/phonon/index.docbook +share/doc/HTML/ru/kcontrol/solid-actions/index.cache.bz2 +share/doc/HTML/ru/kcontrol/solid-actions/index.docbook +share/doc/HTML/ru/kcontrol/solid-device-automounter/index.cache.bz2 +share/doc/HTML/ru/kcontrol/solid-device-automounter/index.docbook +share/doc/HTML/ru/kcontrol/splashscreen/index.cache.bz2 +share/doc/HTML/ru/kcontrol/splashscreen/index.docbook +share/doc/HTML/ru/kcontrol/translations/index.cache.bz2 +share/doc/HTML/ru/kcontrol/translations/index.docbook +share/doc/HTML/ru/plasma-desktop/index.cache.bz2 +share/doc/HTML/ru/plasma-desktop/index.docbook +share/doc/HTML/sr/kcontrol/autostart/index.cache.bz2 +share/doc/HTML/sr/kcontrol/autostart/index.docbook +share/doc/HTML/sr/kcontrol/clock/index.cache.bz2 +share/doc/HTML/sr/kcontrol/clock/index.docbook +share/doc/HTML/sr/kcontrol/emoticons/index.cache.bz2 +share/doc/HTML/sr/kcontrol/emoticons/index.docbook +share/doc/HTML/sr/kcontrol/icons/index.cache.bz2 +share/doc/HTML/sr/kcontrol/icons/index.docbook +share/doc/HTML/sr/kcontrol/kcmlaunch/index.cache.bz2 +share/doc/HTML/sr/kcontrol/kcmlaunch/index.docbook +share/doc/HTML/sr/kcontrol/kcmnotify/index.cache.bz2 +share/doc/HTML/sr/kcontrol/kcmnotify/index.docbook +share/doc/HTML/sr/kcontrol/paths/index.cache.bz2 +share/doc/HTML/sr/kcontrol/paths/index.docbook +share/doc/HTML/sr/kcontrol/spellchecking/index.cache.bz2 +share/doc/HTML/sr/kcontrol/spellchecking/index.docbook +share/doc/HTML/sr/knetattach/index.cache.bz2 +share/doc/HTML/sr/knetattach/index.docbook +share/doc/HTML/sr@latin/kcontrol/autostart/index.cache.bz2 +share/doc/HTML/sr@latin/kcontrol/autostart/index.docbook +share/doc/HTML/sr@latin/kcontrol/clock/index.cache.bz2 +share/doc/HTML/sr@latin/kcontrol/clock/index.docbook +share/doc/HTML/sr@latin/kcontrol/emoticons/index.cache.bz2 +share/doc/HTML/sr@latin/kcontrol/emoticons/index.docbook +share/doc/HTML/sr@latin/kcontrol/icons/index.cache.bz2 +share/doc/HTML/sr@latin/kcontrol/icons/index.docbook +share/doc/HTML/sr@latin/kcontrol/kcmlaunch/index.cache.bz2 +share/doc/HTML/sr@latin/kcontrol/kcmlaunch/index.docbook +share/doc/HTML/sr@latin/kcontrol/kcmnotify/index.cache.bz2 +share/doc/HTML/sr@latin/kcontrol/kcmnotify/index.docbook +share/doc/HTML/sr@latin/kcontrol/paths/index.cache.bz2 +share/doc/HTML/sr@latin/kcontrol/paths/index.docbook +share/doc/HTML/sr@latin/kcontrol/spellchecking/index.cache.bz2 +share/doc/HTML/sr@latin/kcontrol/spellchecking/index.docbook +share/doc/HTML/sr@latin/knetattach/index.cache.bz2 +share/doc/HTML/sr@latin/knetattach/index.docbook +share/doc/HTML/uk/kcontrol/autostart/index.cache.bz2 +share/doc/HTML/uk/kcontrol/autostart/index.docbook +share/doc/HTML/uk/kcontrol/baloo/index.cache.bz2 +share/doc/HTML/uk/kcontrol/baloo/index.docbook +share/doc/HTML/uk/kcontrol/clock/index.cache.bz2 +share/doc/HTML/uk/kcontrol/clock/index.docbook +share/doc/HTML/uk/kcontrol/colors/index.cache.bz2 +share/doc/HTML/uk/kcontrol/colors/index.docbook +share/doc/HTML/uk/kcontrol/componentchooser/index.cache.bz2 +share/doc/HTML/uk/kcontrol/componentchooser/index.docbook +share/doc/HTML/uk/kcontrol/cursortheme/index.cache.bz2 +share/doc/HTML/uk/kcontrol/cursortheme/index.docbook +share/doc/HTML/uk/kcontrol/desktopthemedetails/index.cache.bz2 +share/doc/HTML/uk/kcontrol/desktopthemedetails/index.docbook +share/doc/HTML/uk/kcontrol/emoticons/index.cache.bz2 +share/doc/HTML/uk/kcontrol/emoticons/index.docbook +share/doc/HTML/uk/kcontrol/fontinst/index.cache.bz2 +share/doc/HTML/uk/kcontrol/fontinst/index.docbook +share/doc/HTML/uk/kcontrol/fonts/adjust-all.png +share/doc/HTML/uk/kcontrol/fonts/anti-aliasing.png +share/doc/HTML/uk/kcontrol/fonts/index.cache.bz2 +share/doc/HTML/uk/kcontrol/fonts/index.docbook +share/doc/HTML/uk/kcontrol/fonts/main.png +share/doc/HTML/uk/kcontrol/formats/index.cache.bz2 +share/doc/HTML/uk/kcontrol/formats/index.docbook +share/doc/HTML/uk/kcontrol/icons/delete-theme.png +share/doc/HTML/uk/kcontrol/icons/effects.png +share/doc/HTML/uk/kcontrol/icons/get-new-theme.png +share/doc/HTML/uk/kcontrol/icons/index.cache.bz2 +share/doc/HTML/uk/kcontrol/icons/index.docbook +share/doc/HTML/uk/kcontrol/icons/install-theme.png +share/doc/HTML/uk/kcontrol/icons/main.png +share/doc/HTML/uk/kcontrol/icons/size.png +share/doc/HTML/uk/kcontrol/icons/use-of-icons.png +share/doc/HTML/uk/kcontrol/joystick/index.cache.bz2 +share/doc/HTML/uk/kcontrol/joystick/index.docbook +share/doc/HTML/uk/kcontrol/kcmaccess/index.cache.bz2 +share/doc/HTML/uk/kcontrol/kcmaccess/index.docbook +share/doc/HTML/uk/kcontrol/kcmlaunch/index.cache.bz2 +share/doc/HTML/uk/kcontrol/kcmlaunch/index.docbook +share/doc/HTML/uk/kcontrol/kcmnotify/index.cache.bz2 +share/doc/HTML/uk/kcontrol/kcmnotify/index.docbook +share/doc/HTML/uk/kcontrol/kcmsmserver/index.cache.bz2 +share/doc/HTML/uk/kcontrol/kcmsmserver/index.docbook +share/doc/HTML/uk/kcontrol/kcmstyle/index.cache.bz2 +share/doc/HTML/uk/kcontrol/kcmstyle/index.docbook +share/doc/HTML/uk/kcontrol/kded/index.cache.bz2 +share/doc/HTML/uk/kcontrol/kded/index.docbook +share/doc/HTML/uk/kcontrol/keyboard/index.cache.bz2 +share/doc/HTML/uk/kcontrol/keyboard/index.docbook +share/doc/HTML/uk/kcontrol/keys/index.cache.bz2 +share/doc/HTML/uk/kcontrol/keys/index.docbook +share/doc/HTML/uk/kcontrol/mouse/index.cache.bz2 +share/doc/HTML/uk/kcontrol/mouse/index.docbook +share/doc/HTML/uk/kcontrol/paths/index.cache.bz2 +share/doc/HTML/uk/kcontrol/paths/index.docbook +share/doc/HTML/uk/kcontrol/phonon/index.cache.bz2 +share/doc/HTML/uk/kcontrol/phonon/index.docbook +share/doc/HTML/uk/kcontrol/solid-actions/index.cache.bz2 +share/doc/HTML/uk/kcontrol/solid-actions/index.docbook +share/doc/HTML/uk/kcontrol/solid-device-automounter/index.cache.bz2 +share/doc/HTML/uk/kcontrol/solid-device-automounter/index.docbook +share/doc/HTML/uk/kcontrol/spellchecking/index.cache.bz2 +share/doc/HTML/uk/kcontrol/spellchecking/index.docbook +share/doc/HTML/uk/kcontrol/splashscreen/index.cache.bz2 +share/doc/HTML/uk/kcontrol/splashscreen/index.docbook +share/doc/HTML/uk/kcontrol/translations/index.cache.bz2 +share/doc/HTML/uk/kcontrol/translations/index.docbook +share/doc/HTML/uk/kfontview/index.cache.bz2 +share/doc/HTML/uk/kfontview/index.docbook +share/doc/HTML/uk/knetattach/index.cache.bz2 +share/doc/HTML/uk/knetattach/index.docbook +share/doc/HTML/uk/plasma-desktop/index.cache.bz2 +share/doc/HTML/uk/plasma-desktop/index.docbook +%%SYNAPTICS%%share/icons/hicolor/128x128/devices/input-touchpad.png +share/icons/hicolor/128x128/mimetypes/fonts-package.png +share/icons/hicolor/16x16/apps/kfontview.png +%%SYNAPTICS%%share/icons/hicolor/16x16/devices/input-touchpad.png +share/icons/hicolor/16x16/mimetypes/fonts-package.png +share/icons/hicolor/22x22/apps/kfontview.png +%%SYNAPTICS%%share/icons/hicolor/22x22/devices/input-touchpad.png +share/icons/hicolor/22x22/mimetypes/fonts-package.png +%%SYNAPTICS%%share/icons/hicolor/24x24/devices/input-touchpad.png +%%SYNAPTICS%%share/icons/hicolor/256x256/devices/input-touchpad.png +share/icons/hicolor/32x32/apps/kfontview.png +%%SYNAPTICS%%share/icons/hicolor/32x32/devices/input-touchpad.png +share/icons/hicolor/32x32/mimetypes/fonts-package.png +share/icons/hicolor/48x48/apps/kfontview.png +%%SYNAPTICS%%share/icons/hicolor/48x48/devices/input-touchpad.png +share/icons/hicolor/48x48/mimetypes/fonts-package.png +share/icons/hicolor/64x64/apps/kfontview.png +%%SYNAPTICS%%share/icons/hicolor/64x64/devices/input-touchpad.png +share/icons/hicolor/64x64/mimetypes/fonts-package.png +%%SYNAPTICS%%share/icons/hicolor/96x96/devices/input-touchpad.png +share/icons/hicolor/scalable/apps/preferences-desktop-font-installer.svgz +%%SYNAPTICS%%share/icons/hicolor/scalable/devices/input-touchpad.svgz +share/kcm_componentchooser/kcm_browser.desktop +share/kcm_componentchooser/kcm_filemanager.desktop +share/kcm_componentchooser/kcm_kemail.desktop +share/kcm_componentchooser/kcm_terminal.desktop +share/kcm_phonon/listview-background.png +share/kcminput/cursor_large_black.pcf.gz +share/kcminput/cursor_large_white.pcf.gz +share/kcminput/cursor_small_white.pcf.gz +share/kcminput/pics/mouse_lh.png +share/kcminput/pics/mouse_rh.png +share/kcmkeyboard/pics/epo.png +share/kcmkeys/kde3.kksrc +share/kcmkeys/kde4.kksrc +share/kcmkeys/mac4.kksrc +share/kcmkeys/unix3.kksrc +share/kcmkeys/win3.kksrc +share/kcmkeys/win4.kksrc +share/kcmkeys/wm3.kksrc +share/kcmsolidactions/solid-action-template.desktop +share/kconf_update/krdb_libpathwipe.upd +share/kcontrol/pics/logo.png +share/kcontrol/pics/mini-world.png +share/kdisplay/app-defaults/AAAAAAGeneral.ad +share/kdisplay/app-defaults/AAAMotif.ad +share/kdisplay/app-defaults/AAATk.ad +share/kdisplay/app-defaults/AAAXaw.ad +share/kdisplay/app-defaults/AcroRead.ad +share/kdisplay/app-defaults/Editres.ad +share/kdisplay/app-defaults/Emacs.ad +share/kdisplay/app-defaults/GV.ad +share/kdisplay/app-defaults/ML.ad +share/kdisplay/app-defaults/Nedit.ad +share/kdisplay/app-defaults/Netscape.ad +share/kdisplay/app-defaults/RVPlayer.ad +share/kdisplay/app-defaults/WPerfect.ad +share/kdisplay/app-defaults/XCalc.ad +share/kdisplay/app-defaults/XOsview.ad +share/kdisplay/app-defaults/XTerm.ad +share/kdisplay/app-defaults/XV.ad +share/kdisplay/app-defaults/Xawtv.ad +share/kdisplay/app-defaults/Xdvi.ad +share/kdisplay/app-defaults/Xpdf.ad +share/kf5/kactivitymanagerd/workspace/settings/qml/activitiesTab/ActivitiesView.qml +share/kf5/kactivitymanagerd/workspace/settings/qml/activitiesTab/main.qml +share/kf5/kactivitymanagerd/workspace/settings/qml/activityDialog/GeneralTab.qml +share/kf5/kactivitymanagerd/workspace/settings/qml/activityDialog/OtherTab.qml +share/kf5/kactivitymanagerd/workspace/settings/qml/activityDialog/components/DialogButtons.qml +share/kf5/kactivitymanagerd/workspace/settings/qml/activityDialog/components/IconChooser.qml +share/kf5/kactivitymanagerd/workspace/settings/qml/activityDialog/components/LabeledTextField.qml +share/kf5/kactivitymanagerd/workspace/settings/qml/activityDialog/components/ShortcutChooser.qml +share/kf5/kactivitymanagerd/workspace/settings/qml/privacyTab/BlacklistApplicationView.qml +share/kfontinst/icons/hicolor/16x16/actions/addfont.png +share/kfontinst/icons/hicolor/16x16/actions/disablefont.png +share/kfontinst/icons/hicolor/16x16/actions/enablefont.png +share/kfontinst/icons/hicolor/16x16/actions/fontstatus.png +share/kfontinst/icons/hicolor/22x22/actions/addfont.png +share/kfontinst/icons/hicolor/22x22/actions/disablefont.png +share/kfontinst/icons/hicolor/22x22/actions/enablefont.png +share/kfontinst/icons/hicolor/22x22/actions/fontstatus.png +share/knotifications5/kaccess.notifyrc +%%SYNAPTICS%%share/knotifications5/kcm_touchpad.notifyrc +share/konqsidebartng/virtual_folders/services/fonts.desktop +share/kpackage/kcms/kcm_desktoptheme/contents/ui/Hand.qml +share/kpackage/kcms/kcm_desktoptheme/contents/ui/ThemePreview.qml +share/kpackage/kcms/kcm_desktoptheme/contents/ui/main.qml +share/kpackage/kcms/kcm_desktoptheme/metadata.desktop +share/kpackage/kcms/kcm_desktoptheme/metadata.json +share/kpackage/kcms/kcm_lookandfeel/contents/ui/main.qml +share/kpackage/kcms/kcm_lookandfeel/metadata.desktop +share/kpackage/kcms/kcm_lookandfeel/metadata.json +share/kpackage/kcms/kcm_nightcolor/contents/ui/LocationsAutoView.qml +share/kpackage/kcms/kcm_nightcolor/contents/ui/LocationsFixedView.qml +share/kpackage/kcms/kcm_nightcolor/contents/ui/NumberField.qml +share/kpackage/kcms/kcm_nightcolor/contents/ui/TimeField.qml +share/kpackage/kcms/kcm_nightcolor/contents/ui/TimingsView.qml +share/kpackage/kcms/kcm_nightcolor/contents/ui/main.qml +share/kpackage/kcms/kcm_nightcolor/metadata.desktop +share/kpackage/kcms/kcm_nightcolor/metadata.json +share/kpackage/kcms/kcm_splashscreen/contents/ui/main.qml +share/kpackage/kcms/kcm_splashscreen/metadata.desktop +share/kpackage/kcms/kcm_splashscreen/metadata.json +share/kservices5/ServiceMenus/installfont.desktop +share/kservices5/autostart.desktop +share/kservices5/clock.desktop +share/kservices5/colors.desktop +share/kservices5/componentchooser.desktop +share/kservices5/cursortheme.desktop +share/kservices5/desktoppath.desktop +share/kservices5/device_automounter_kcm.desktop +share/kservices5/emoticons.desktop +share/kservices5/fontinst.desktop +share/kservices5/fonts.desktop +share/kservices5/fonts.protocol +share/kservices5/fontthumbnail.desktop +share/kservices5/formats.desktop +share/kservices5/icons.desktop +share/kservices5/kaccess.desktop +share/kservices5/kcm_activities.desktop +share/kservices5/kcm_baloofile.desktop +share/kservices5/kcm_desktoptheme.desktop +share/kservices5/kcm_keyboard.desktop +share/kservices5/kcm_lookandfeel.desktop +share/kservices5/kcm_nightcolor.desktop +share/kservices5/kcm_phonon.desktop +share/kservices5/kcm_plasmasearch.desktop +share/kservices5/kcm_splashscreen.desktop +%%SYNAPTICS%%share/kservices5/kcm_touchpad.desktop +share/kservices5/kcmaccess.desktop +share/kservices5/kcmkded.desktop +share/kservices5/kcmlaunch.desktop +share/kservices5/kcmnotify.desktop +share/kservices5/kcmsmserver.desktop +%%SYNAPTICS%%share/kservices5/kded/touchpad.desktop +share/kservices5/keys.desktop +share/kservices5/kfontviewpart.desktop +share/kservices5/mouse.desktop +share/kservices5/plasma-applet-org.kde.plasma.icontasks.desktop +share/kservices5/plasma-applet-org.kde.plasma.kicker.desktop +share/kservices5/plasma-applet-org.kde.plasma.kickoff.desktop +share/kservices5/plasma-applet-org.kde.plasma.kimpanel.desktop +share/kservices5/plasma-applet-org.kde.plasma.pager.desktop +share/kservices5/plasma-applet-org.kde.plasma.showActivityManager.desktop +share/kservices5/plasma-applet-org.kde.plasma.taskmanager.desktop +share/kservices5/plasma-applet-org.kde.plasma.trash.desktop +share/kservices5/plasma-applet-org.kde.plasma.windowlist.desktop +%%SYNAPTICS%%share/kservices5/plasma-applet-touchpad.desktop +share/kservices5/plasma-containment-org.kde.desktopcontainment.desktop +share/kservices5/plasma-containment-org.kde.panel.desktop +share/kservices5/plasma-containment-org.kde.plasma.folder.desktop +share/kservices5/plasma-dataengine-kimpanel.desktop +%%SYNAPTICS%%share/kservices5/plasma-dataengine-touchpad.desktop +share/kservices5/plasma-layout-template-org.kde.plasma.desktop.appmenubar.desktop +share/kservices5/plasma-layout-template-org.kde.plasma.desktop.defaultPanel.desktop +share/kservices5/plasma-layout-template-org.kde.plasma.desktop.emptyPanel.desktop +share/kservices5/plasma-package-org.kde.desktoptoolbox.desktop +share/kservices5/plasma-package-org.kde.paneltoolbox.desktop +share/kservices5/plasma-runner-kwin.desktop +share/kservices5/plasma-runner-plasma-desktop.desktop +share/kservices5/plasma-shell-org.kde.plasma.desktop.desktop +share/kservices5/solid-actions.desktop +share/kservices5/spellchecking.desktop +share/kservices5/standard_actions.desktop +share/kservices5/style.desktop +share/kservices5/translations.desktop +share/kservices5/workspaceoptions.desktop +share/kservicetypes5/solid-device-type.desktop +share/kxmlgui5/kfontinst/kfontviewpart.rc +share/kxmlgui5/kfontview/kfontviewui.rc +share/locale/af/LC_MESSAGES/joystick.mo +share/locale/af/LC_MESSAGES/kaccess.mo +share/locale/af/LC_MESSAGES/kcm5_componentchooser.mo +share/locale/af/LC_MESSAGES/kcm5_icons.mo +share/locale/af/LC_MESSAGES/kcm5_kded.mo +share/locale/af/LC_MESSAGES/kcm5_notify.mo +share/locale/af/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/af/LC_MESSAGES/kcmaccess.mo +share/locale/af/LC_MESSAGES/kcmcolors.mo +share/locale/af/LC_MESSAGES/kcmfonts.mo +share/locale/af/LC_MESSAGES/kcmformats.mo +share/locale/af/LC_MESSAGES/kcminput.mo +share/locale/af/LC_MESSAGES/kcmkclock.mo +share/locale/af/LC_MESSAGES/kcmkeyboard.mo +share/locale/af/LC_MESSAGES/kcmkeys.mo +share/locale/af/LC_MESSAGES/kcmlaunch.mo +share/locale/af/LC_MESSAGES/kcmmousetheme.mo +share/locale/af/LC_MESSAGES/kcmsmserver.mo +share/locale/af/LC_MESSAGES/kcmstyle.mo +share/locale/af/LC_MESSAGES/kfontinst.mo +share/locale/af/LC_MESSAGES/knetattach5.mo +share/locale/af/LC_MESSAGES/krdb.mo +share/locale/af/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/ar/LC_MESSAGES/attica_kde_plugin.mo +share/locale/ar/LC_MESSAGES/joystick.mo +share/locale/ar/LC_MESSAGES/kaccess.mo +share/locale/ar/LC_MESSAGES/kcm5_baloofile.mo +share/locale/ar/LC_MESSAGES/kcm5_componentchooser.mo +share/locale/ar/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/ar/LC_MESSAGES/kcm5_emoticons.mo +share/locale/ar/LC_MESSAGES/kcm5_icons.mo +share/locale/ar/LC_MESSAGES/kcm5_kded.mo +share/locale/ar/LC_MESSAGES/kcm5_notify.mo +share/locale/ar/LC_MESSAGES/kcm5_phonon.mo +share/locale/ar/LC_MESSAGES/kcm_activities5.mo +share/locale/ar/LC_MESSAGES/kcm_autostart.mo +share/locale/ar/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/ar/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/ar/LC_MESSAGES/kcm_lookandfeel.mo +share/locale/ar/LC_MESSAGES/kcm_search.mo +share/locale/ar/LC_MESSAGES/kcm_solid_actions.mo +share/locale/ar/LC_MESSAGES/kcm_splashscreen.mo +share/locale/ar/LC_MESSAGES/kcm_standard_actions.mo +share/locale/ar/LC_MESSAGES/kcm_touchpad.mo +share/locale/ar/LC_MESSAGES/kcmaccess.mo +share/locale/ar/LC_MESSAGES/kcmcolors.mo +share/locale/ar/LC_MESSAGES/kcmfonts.mo +share/locale/ar/LC_MESSAGES/kcmformats.mo +share/locale/ar/LC_MESSAGES/kcminput.mo +share/locale/ar/LC_MESSAGES/kcmkclock.mo +share/locale/ar/LC_MESSAGES/kcmkeyboard.mo +share/locale/ar/LC_MESSAGES/kcmkeys.mo +share/locale/ar/LC_MESSAGES/kcmlaunch.mo +share/locale/ar/LC_MESSAGES/kcmmousetheme.mo +share/locale/ar/LC_MESSAGES/kcmsmserver.mo +share/locale/ar/LC_MESSAGES/kcmstyle.mo +share/locale/ar/LC_MESSAGES/kcmtranslations.mo +share/locale/ar/LC_MESSAGES/kcmworkspaceoptions.mo +share/locale/ar/LC_MESSAGES/kfontinst.mo +share/locale/ar/LC_MESSAGES/knetattach5.mo +share/locale/ar/LC_MESSAGES/krdb.mo +share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo +share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo +share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo +share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo +share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo +share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo +share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo +share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo +share/locale/ar/LC_MESSAGES/plasma_applet_touchpad.mo +share/locale/ar/LC_MESSAGES/plasma_runner_kwin.mo +share/locale/ar/LC_MESSAGES/plasma_runner_plasma-desktop.mo +share/locale/ar/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo +share/locale/ar/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo +share/locale/ar/LC_MESSAGES/plasmaactivitymanager.mo +share/locale/as/LC_MESSAGES/kcmaccess.mo +share/locale/ast/LC_MESSAGES/attica_kde_plugin.mo +share/locale/ast/LC_MESSAGES/joystick.mo +share/locale/ast/LC_MESSAGES/kaccess.mo +share/locale/ast/LC_MESSAGES/kcm5_baloofile.mo +share/locale/ast/LC_MESSAGES/kcm5_componentchooser.mo +share/locale/ast/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/ast/LC_MESSAGES/kcm5_emoticons.mo +share/locale/ast/LC_MESSAGES/kcm5_icons.mo +share/locale/ast/LC_MESSAGES/kcm5_kded.mo +share/locale/ast/LC_MESSAGES/kcm5_notify.mo +share/locale/ast/LC_MESSAGES/kcm5_phonon.mo +share/locale/ast/LC_MESSAGES/kcm_activities5.mo +share/locale/ast/LC_MESSAGES/kcm_autostart.mo +share/locale/ast/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/ast/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/ast/LC_MESSAGES/kcm_lookandfeel.mo +share/locale/ast/LC_MESSAGES/kcm_search.mo +share/locale/ast/LC_MESSAGES/kcm_solid_actions.mo +share/locale/ast/LC_MESSAGES/kcm_splashscreen.mo +share/locale/ast/LC_MESSAGES/kcm_standard_actions.mo +share/locale/ast/LC_MESSAGES/kcm_touchpad.mo +share/locale/ast/LC_MESSAGES/kcmaccess.mo +share/locale/ast/LC_MESSAGES/kcmcolors.mo +share/locale/ast/LC_MESSAGES/kcmfonts.mo +share/locale/ast/LC_MESSAGES/kcmformats.mo +share/locale/ast/LC_MESSAGES/kcminput.mo +share/locale/ast/LC_MESSAGES/kcmkclock.mo +share/locale/ast/LC_MESSAGES/kcmkeyboard.mo +share/locale/ast/LC_MESSAGES/kcmkeys.mo +share/locale/ast/LC_MESSAGES/kcmlaunch.mo +share/locale/ast/LC_MESSAGES/kcmmousetheme.mo +share/locale/ast/LC_MESSAGES/kcmsmserver.mo +share/locale/ast/LC_MESSAGES/kcmstyle.mo +share/locale/ast/LC_MESSAGES/kcmtranslations.mo +share/locale/ast/LC_MESSAGES/kcmworkspaceoptions.mo +share/locale/ast/LC_MESSAGES/kfontinst.mo +share/locale/ast/LC_MESSAGES/knetattach5.mo +share/locale/ast/LC_MESSAGES/krdb.mo +share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo +share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo +share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo +share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo +share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo +share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo +share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo +share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo +share/locale/ast/LC_MESSAGES/plasma_applet_touchpad.mo +share/locale/ast/LC_MESSAGES/plasma_runner_kwin.mo +share/locale/ast/LC_MESSAGES/plasma_runner_plasma-desktop.mo +share/locale/ast/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo +share/locale/ast/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo +share/locale/ast/LC_MESSAGES/plasmaactivitymanager.mo +share/locale/be/LC_MESSAGES/joystick.mo +share/locale/be/LC_MESSAGES/kaccess.mo +share/locale/be/LC_MESSAGES/kcm5_componentchooser.mo +share/locale/be/LC_MESSAGES/kcm5_emoticons.mo +share/locale/be/LC_MESSAGES/kcm5_icons.mo +share/locale/be/LC_MESSAGES/kcm5_kded.mo +share/locale/be/LC_MESSAGES/kcm5_notify.mo +share/locale/be/LC_MESSAGES/kcm5_phonon.mo +share/locale/be/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/be/LC_MESSAGES/kcmaccess.mo +share/locale/be/LC_MESSAGES/kcmcolors.mo +share/locale/be/LC_MESSAGES/kcmfonts.mo +share/locale/be/LC_MESSAGES/kcmformats.mo +share/locale/be/LC_MESSAGES/kcminput.mo +share/locale/be/LC_MESSAGES/kcmkclock.mo +share/locale/be/LC_MESSAGES/kcmkeyboard.mo +share/locale/be/LC_MESSAGES/kcmkeys.mo +share/locale/be/LC_MESSAGES/kcmlaunch.mo +share/locale/be/LC_MESSAGES/kcmmousetheme.mo +share/locale/be/LC_MESSAGES/kcmsmserver.mo +share/locale/be/LC_MESSAGES/kcmstyle.mo +share/locale/be/LC_MESSAGES/kfontinst.mo +share/locale/be/LC_MESSAGES/knetattach5.mo +share/locale/be/LC_MESSAGES/krdb.mo +share/locale/be/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo +share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo +share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo +share/locale/be@latin/LC_MESSAGES/kcm5_icons.mo +share/locale/be@latin/LC_MESSAGES/kcm5_phonon.mo +share/locale/be@latin/LC_MESSAGES/kcm_autostart.mo +share/locale/be@latin/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/be@latin/LC_MESSAGES/kcm_standard_actions.mo +share/locale/be@latin/LC_MESSAGES/kcmcolors.mo +share/locale/be@latin/LC_MESSAGES/kcmformats.mo +share/locale/be@latin/LC_MESSAGES/kcmkclock.mo +share/locale/be@latin/LC_MESSAGES/kcmkeyboard.mo +share/locale/be@latin/LC_MESSAGES/krdb.mo +share/locale/be@latin/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/be@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo +share/locale/be@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo +share/locale/be@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo +share/locale/bg/LC_MESSAGES/attica_kde_plugin.mo +share/locale/bg/LC_MESSAGES/joystick.mo +share/locale/bg/LC_MESSAGES/kaccess.mo +share/locale/bg/LC_MESSAGES/kcm5_baloofile.mo +share/locale/bg/LC_MESSAGES/kcm5_componentchooser.mo +share/locale/bg/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/bg/LC_MESSAGES/kcm5_emoticons.mo +share/locale/bg/LC_MESSAGES/kcm5_icons.mo +share/locale/bg/LC_MESSAGES/kcm5_kded.mo +share/locale/bg/LC_MESSAGES/kcm5_notify.mo +share/locale/bg/LC_MESSAGES/kcm5_phonon.mo +share/locale/bg/LC_MESSAGES/kcm_autostart.mo +share/locale/bg/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/bg/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/bg/LC_MESSAGES/kcm_solid_actions.mo +share/locale/bg/LC_MESSAGES/kcm_standard_actions.mo +share/locale/bg/LC_MESSAGES/kcmaccess.mo +share/locale/bg/LC_MESSAGES/kcmcolors.mo +share/locale/bg/LC_MESSAGES/kcmfonts.mo +share/locale/bg/LC_MESSAGES/kcmformats.mo +share/locale/bg/LC_MESSAGES/kcminput.mo +share/locale/bg/LC_MESSAGES/kcmkclock.mo +share/locale/bg/LC_MESSAGES/kcmkeyboard.mo +share/locale/bg/LC_MESSAGES/kcmkeys.mo +share/locale/bg/LC_MESSAGES/kcmlaunch.mo +share/locale/bg/LC_MESSAGES/kcmmousetheme.mo +share/locale/bg/LC_MESSAGES/kcmsmserver.mo +share/locale/bg/LC_MESSAGES/kcmstyle.mo +share/locale/bg/LC_MESSAGES/kfontinst.mo +share/locale/bg/LC_MESSAGES/knetattach5.mo +share/locale/bg/LC_MESSAGES/krdb.mo +share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo +share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo +share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo +share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo +share/locale/bg/LC_MESSAGES/plasma_runner_plasma-desktop.mo +share/locale/bn/LC_MESSAGES/kaccess.mo +share/locale/bn/LC_MESSAGES/kcm5_componentchooser.mo +share/locale/bn/LC_MESSAGES/kcm5_icons.mo +share/locale/bn/LC_MESSAGES/kcm5_kded.mo +share/locale/bn/LC_MESSAGES/kcm5_notify.mo +share/locale/bn/LC_MESSAGES/kcm5_phonon.mo +share/locale/bn/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/bn/LC_MESSAGES/kcmaccess.mo +share/locale/bn/LC_MESSAGES/kcmfonts.mo +share/locale/bn/LC_MESSAGES/kcmformats.mo +share/locale/bn/LC_MESSAGES/kcmkclock.mo +share/locale/bn/LC_MESSAGES/kcmkeyboard.mo +share/locale/bn/LC_MESSAGES/kcmsmserver.mo +share/locale/bn/LC_MESSAGES/kcmstyle.mo +share/locale/bn/LC_MESSAGES/kfontinst.mo +share/locale/bn/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/bn_IN/LC_MESSAGES/kaccess.mo +share/locale/bn_IN/LC_MESSAGES/kcm5_icons.mo +share/locale/bn_IN/LC_MESSAGES/kcm5_kded.mo +share/locale/bn_IN/LC_MESSAGES/kcm5_notify.mo +share/locale/bn_IN/LC_MESSAGES/kcm5_phonon.mo +share/locale/bn_IN/LC_MESSAGES/kcm_autostart.mo +share/locale/bn_IN/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/bn_IN/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/bn_IN/LC_MESSAGES/kcm_standard_actions.mo +share/locale/bn_IN/LC_MESSAGES/kcmaccess.mo +share/locale/bn_IN/LC_MESSAGES/kcmcolors.mo +share/locale/bn_IN/LC_MESSAGES/kcmformats.mo +share/locale/bn_IN/LC_MESSAGES/kcmkclock.mo +share/locale/bn_IN/LC_MESSAGES/kcmkeyboard.mo +share/locale/bn_IN/LC_MESSAGES/kcmkeys.mo +share/locale/bn_IN/LC_MESSAGES/kcmsmserver.mo +share/locale/bn_IN/LC_MESSAGES/kcmstyle.mo +share/locale/bn_IN/LC_MESSAGES/kfontinst.mo +share/locale/bn_IN/LC_MESSAGES/knetattach5.mo +share/locale/bn_IN/LC_MESSAGES/krdb.mo +share/locale/bn_IN/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/bn_IN/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo +share/locale/bn_IN/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo +share/locale/bn_IN/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo +share/locale/br/LC_MESSAGES/joystick.mo +share/locale/br/LC_MESSAGES/kaccess.mo +share/locale/br/LC_MESSAGES/kcm5_componentchooser.mo +share/locale/br/LC_MESSAGES/kcm5_icons.mo +share/locale/br/LC_MESSAGES/kcm5_kded.mo +share/locale/br/LC_MESSAGES/kcm5_notify.mo +share/locale/br/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/br/LC_MESSAGES/kcmaccess.mo +share/locale/br/LC_MESSAGES/kcmcolors.mo +share/locale/br/LC_MESSAGES/kcmfonts.mo +share/locale/br/LC_MESSAGES/kcmformats.mo +share/locale/br/LC_MESSAGES/kcminput.mo +share/locale/br/LC_MESSAGES/kcmkclock.mo +share/locale/br/LC_MESSAGES/kcmkeyboard.mo +share/locale/br/LC_MESSAGES/kcmkeys.mo +share/locale/br/LC_MESSAGES/kcmlaunch.mo +share/locale/br/LC_MESSAGES/kcmmousetheme.mo +share/locale/br/LC_MESSAGES/kcmsmserver.mo +share/locale/br/LC_MESSAGES/kcmstyle.mo +share/locale/br/LC_MESSAGES/kfontinst.mo +share/locale/br/LC_MESSAGES/knetattach5.mo +share/locale/br/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/bs/LC_MESSAGES/attica_kde_plugin.mo +share/locale/bs/LC_MESSAGES/joystick.mo +share/locale/bs/LC_MESSAGES/kaccess.mo +share/locale/bs/LC_MESSAGES/kcm5_baloofile.mo +share/locale/bs/LC_MESSAGES/kcm5_componentchooser.mo +share/locale/bs/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/bs/LC_MESSAGES/kcm5_emoticons.mo +share/locale/bs/LC_MESSAGES/kcm5_icons.mo +share/locale/bs/LC_MESSAGES/kcm5_kded.mo +share/locale/bs/LC_MESSAGES/kcm5_notify.mo +share/locale/bs/LC_MESSAGES/kcm5_phonon.mo +share/locale/bs/LC_MESSAGES/kcm_autostart.mo +share/locale/bs/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/bs/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/bs/LC_MESSAGES/kcm_lookandfeel.mo +share/locale/bs/LC_MESSAGES/kcm_search.mo +share/locale/bs/LC_MESSAGES/kcm_solid_actions.mo +share/locale/bs/LC_MESSAGES/kcm_splashscreen.mo +share/locale/bs/LC_MESSAGES/kcm_standard_actions.mo +share/locale/bs/LC_MESSAGES/kcm_touchpad.mo +share/locale/bs/LC_MESSAGES/kcmaccess.mo +share/locale/bs/LC_MESSAGES/kcmcolors.mo +share/locale/bs/LC_MESSAGES/kcmfonts.mo +share/locale/bs/LC_MESSAGES/kcmformats.mo +share/locale/bs/LC_MESSAGES/kcminput.mo +share/locale/bs/LC_MESSAGES/kcmkclock.mo +share/locale/bs/LC_MESSAGES/kcmkeyboard.mo +share/locale/bs/LC_MESSAGES/kcmkeys.mo +share/locale/bs/LC_MESSAGES/kcmlaunch.mo +share/locale/bs/LC_MESSAGES/kcmmousetheme.mo +share/locale/bs/LC_MESSAGES/kcmsmserver.mo +share/locale/bs/LC_MESSAGES/kcmstyle.mo +share/locale/bs/LC_MESSAGES/kcmtranslations.mo +share/locale/bs/LC_MESSAGES/kcmworkspaceoptions.mo +share/locale/bs/LC_MESSAGES/kfontinst.mo +share/locale/bs/LC_MESSAGES/knetattach5.mo +share/locale/bs/LC_MESSAGES/krdb.mo +share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo +share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo +share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo +share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo +share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo +share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo +share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo +share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo +share/locale/bs/LC_MESSAGES/plasma_applet_touchpad.mo +share/locale/bs/LC_MESSAGES/plasma_runner_plasma-desktop.mo +share/locale/bs/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo +share/locale/bs/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo +share/locale/ca/LC_MESSAGES/attica_kde_plugin.mo +share/locale/ca/LC_MESSAGES/joystick.mo +share/locale/ca/LC_MESSAGES/kaccess.mo +share/locale/ca/LC_MESSAGES/kcm5_baloofile.mo +share/locale/ca/LC_MESSAGES/kcm5_componentchooser.mo +share/locale/ca/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/ca/LC_MESSAGES/kcm5_emoticons.mo +share/locale/ca/LC_MESSAGES/kcm5_icons.mo +share/locale/ca/LC_MESSAGES/kcm5_kded.mo +share/locale/ca/LC_MESSAGES/kcm5_notify.mo +share/locale/ca/LC_MESSAGES/kcm5_phonon.mo +share/locale/ca/LC_MESSAGES/kcm_activities5.mo +share/locale/ca/LC_MESSAGES/kcm_autostart.mo +share/locale/ca/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/ca/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/ca/LC_MESSAGES/kcm_lookandfeel.mo +share/locale/ca/LC_MESSAGES/kcm_nightcolor.mo +share/locale/ca/LC_MESSAGES/kcm_search.mo +share/locale/ca/LC_MESSAGES/kcm_solid_actions.mo +share/locale/ca/LC_MESSAGES/kcm_splashscreen.mo +share/locale/ca/LC_MESSAGES/kcm_standard_actions.mo +share/locale/ca/LC_MESSAGES/kcm_touchpad.mo +share/locale/ca/LC_MESSAGES/kcmaccess.mo +share/locale/ca/LC_MESSAGES/kcmcolors.mo +share/locale/ca/LC_MESSAGES/kcmfonts.mo +share/locale/ca/LC_MESSAGES/kcmformats.mo +share/locale/ca/LC_MESSAGES/kcminput.mo +share/locale/ca/LC_MESSAGES/kcmkclock.mo +share/locale/ca/LC_MESSAGES/kcmkeyboard.mo +share/locale/ca/LC_MESSAGES/kcmkeys.mo +share/locale/ca/LC_MESSAGES/kcmlaunch.mo +share/locale/ca/LC_MESSAGES/kcmmousetheme.mo +share/locale/ca/LC_MESSAGES/kcmsmserver.mo +share/locale/ca/LC_MESSAGES/kcmstyle.mo +share/locale/ca/LC_MESSAGES/kcmtranslations.mo +share/locale/ca/LC_MESSAGES/kcmworkspaceoptions.mo +share/locale/ca/LC_MESSAGES/kfontinst.mo +share/locale/ca/LC_MESSAGES/knetattach5.mo +share/locale/ca/LC_MESSAGES/krdb.mo +share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo +share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo +share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo +share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo +share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo +share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo +share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo +share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo +share/locale/ca/LC_MESSAGES/plasma_applet_touchpad.mo +share/locale/ca/LC_MESSAGES/plasma_runner_kwin.mo +share/locale/ca/LC_MESSAGES/plasma_runner_plasma-desktop.mo +share/locale/ca/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo +share/locale/ca/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo +share/locale/ca/LC_MESSAGES/plasmaactivitymanager.mo +share/locale/ca@valencia/LC_MESSAGES/attica_kde_plugin.mo +share/locale/ca@valencia/LC_MESSAGES/joystick.mo +share/locale/ca@valencia/LC_MESSAGES/kaccess.mo +share/locale/ca@valencia/LC_MESSAGES/kcm5_baloofile.mo +share/locale/ca@valencia/LC_MESSAGES/kcm5_componentchooser.mo +share/locale/ca@valencia/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/ca@valencia/LC_MESSAGES/kcm5_emoticons.mo +share/locale/ca@valencia/LC_MESSAGES/kcm5_icons.mo +share/locale/ca@valencia/LC_MESSAGES/kcm5_kded.mo +share/locale/ca@valencia/LC_MESSAGES/kcm5_notify.mo +share/locale/ca@valencia/LC_MESSAGES/kcm5_phonon.mo +share/locale/ca@valencia/LC_MESSAGES/kcm_activities5.mo +share/locale/ca@valencia/LC_MESSAGES/kcm_autostart.mo +share/locale/ca@valencia/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/ca@valencia/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/ca@valencia/LC_MESSAGES/kcm_lookandfeel.mo +share/locale/ca@valencia/LC_MESSAGES/kcm_nightcolor.mo +share/locale/ca@valencia/LC_MESSAGES/kcm_search.mo +share/locale/ca@valencia/LC_MESSAGES/kcm_solid_actions.mo +share/locale/ca@valencia/LC_MESSAGES/kcm_splashscreen.mo +share/locale/ca@valencia/LC_MESSAGES/kcm_standard_actions.mo +share/locale/ca@valencia/LC_MESSAGES/kcm_touchpad.mo +share/locale/ca@valencia/LC_MESSAGES/kcmaccess.mo +share/locale/ca@valencia/LC_MESSAGES/kcmcolors.mo +share/locale/ca@valencia/LC_MESSAGES/kcmfonts.mo +share/locale/ca@valencia/LC_MESSAGES/kcmformats.mo +share/locale/ca@valencia/LC_MESSAGES/kcminput.mo +share/locale/ca@valencia/LC_MESSAGES/kcmkclock.mo +share/locale/ca@valencia/LC_MESSAGES/kcmkeyboard.mo +share/locale/ca@valencia/LC_MESSAGES/kcmkeys.mo +share/locale/ca@valencia/LC_MESSAGES/kcmlaunch.mo +share/locale/ca@valencia/LC_MESSAGES/kcmmousetheme.mo +share/locale/ca@valencia/LC_MESSAGES/kcmsmserver.mo +share/locale/ca@valencia/LC_MESSAGES/kcmstyle.mo +share/locale/ca@valencia/LC_MESSAGES/kcmtranslations.mo +share/locale/ca@valencia/LC_MESSAGES/kcmworkspaceoptions.mo +share/locale/ca@valencia/LC_MESSAGES/kfontinst.mo +share/locale/ca@valencia/LC_MESSAGES/knetattach5.mo +share/locale/ca@valencia/LC_MESSAGES/krdb.mo +share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo +share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo +share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo +share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo +share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo +share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo +share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo +share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo +share/locale/ca@valencia/LC_MESSAGES/plasma_applet_touchpad.mo +share/locale/ca@valencia/LC_MESSAGES/plasma_runner_kwin.mo +share/locale/ca@valencia/LC_MESSAGES/plasma_runner_plasma-desktop.mo +share/locale/ca@valencia/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo +share/locale/ca@valencia/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo +share/locale/ca@valencia/LC_MESSAGES/plasmaactivitymanager.mo +share/locale/cs/LC_MESSAGES/attica_kde_plugin.mo +share/locale/cs/LC_MESSAGES/joystick.mo +share/locale/cs/LC_MESSAGES/kaccess.mo +share/locale/cs/LC_MESSAGES/kcm5_baloofile.mo +share/locale/cs/LC_MESSAGES/kcm5_componentchooser.mo +share/locale/cs/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/cs/LC_MESSAGES/kcm5_emoticons.mo +share/locale/cs/LC_MESSAGES/kcm5_icons.mo +share/locale/cs/LC_MESSAGES/kcm5_kded.mo +share/locale/cs/LC_MESSAGES/kcm5_notify.mo +share/locale/cs/LC_MESSAGES/kcm5_phonon.mo +share/locale/cs/LC_MESSAGES/kcm_activities5.mo +share/locale/cs/LC_MESSAGES/kcm_autostart.mo +share/locale/cs/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/cs/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/cs/LC_MESSAGES/kcm_lookandfeel.mo +share/locale/cs/LC_MESSAGES/kcm_nightcolor.mo +share/locale/cs/LC_MESSAGES/kcm_search.mo +share/locale/cs/LC_MESSAGES/kcm_solid_actions.mo +share/locale/cs/LC_MESSAGES/kcm_splashscreen.mo +share/locale/cs/LC_MESSAGES/kcm_standard_actions.mo +share/locale/cs/LC_MESSAGES/kcm_touchpad.mo +share/locale/cs/LC_MESSAGES/kcmaccess.mo +share/locale/cs/LC_MESSAGES/kcmcolors.mo +share/locale/cs/LC_MESSAGES/kcmfonts.mo +share/locale/cs/LC_MESSAGES/kcmformats.mo +share/locale/cs/LC_MESSAGES/kcminput.mo +share/locale/cs/LC_MESSAGES/kcmkclock.mo +share/locale/cs/LC_MESSAGES/kcmkeyboard.mo +share/locale/cs/LC_MESSAGES/kcmkeys.mo +share/locale/cs/LC_MESSAGES/kcmlaunch.mo +share/locale/cs/LC_MESSAGES/kcmmousetheme.mo +share/locale/cs/LC_MESSAGES/kcmsmserver.mo +share/locale/cs/LC_MESSAGES/kcmstyle.mo +share/locale/cs/LC_MESSAGES/kcmtranslations.mo +share/locale/cs/LC_MESSAGES/kcmworkspaceoptions.mo +share/locale/cs/LC_MESSAGES/kfontinst.mo +share/locale/cs/LC_MESSAGES/knetattach5.mo +share/locale/cs/LC_MESSAGES/krdb.mo +share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo +share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo +share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo +share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo +share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo +share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo +share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo +share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo +share/locale/cs/LC_MESSAGES/plasma_applet_touchpad.mo +share/locale/cs/LC_MESSAGES/plasma_runner_kwin.mo +share/locale/cs/LC_MESSAGES/plasma_runner_plasma-desktop.mo +share/locale/cs/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo +share/locale/cs/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo +share/locale/cs/LC_MESSAGES/plasmaactivitymanager.mo +share/locale/csb/LC_MESSAGES/joystick.mo +share/locale/csb/LC_MESSAGES/kaccess.mo +share/locale/csb/LC_MESSAGES/kcm5_componentchooser.mo +share/locale/csb/LC_MESSAGES/kcm5_emoticons.mo +share/locale/csb/LC_MESSAGES/kcm5_icons.mo +share/locale/csb/LC_MESSAGES/kcm5_kded.mo +share/locale/csb/LC_MESSAGES/kcm5_notify.mo +share/locale/csb/LC_MESSAGES/kcm5_phonon.mo +share/locale/csb/LC_MESSAGES/kcmaccess.mo +share/locale/csb/LC_MESSAGES/kcmcolors.mo +share/locale/csb/LC_MESSAGES/kcmfonts.mo +share/locale/csb/LC_MESSAGES/kcmformats.mo +share/locale/csb/LC_MESSAGES/kcmkclock.mo +share/locale/csb/LC_MESSAGES/kcmkeyboard.mo +share/locale/csb/LC_MESSAGES/kcmlaunch.mo +share/locale/csb/LC_MESSAGES/kcmsmserver.mo +share/locale/csb/LC_MESSAGES/kcmstyle.mo +share/locale/csb/LC_MESSAGES/kfontinst.mo +share/locale/csb/LC_MESSAGES/knetattach5.mo +share/locale/csb/LC_MESSAGES/krdb.mo +share/locale/csb/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/csb/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo +share/locale/csb/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo +share/locale/csb/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo +share/locale/csb/LC_MESSAGES/plasma_runner_plasma-desktop.mo +share/locale/cy/LC_MESSAGES/joystick.mo +share/locale/cy/LC_MESSAGES/kaccess.mo +share/locale/cy/LC_MESSAGES/kcm5_componentchooser.mo +share/locale/cy/LC_MESSAGES/kcm5_icons.mo +share/locale/cy/LC_MESSAGES/kcm5_kded.mo +share/locale/cy/LC_MESSAGES/kcm5_notify.mo +share/locale/cy/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/cy/LC_MESSAGES/kcmaccess.mo +share/locale/cy/LC_MESSAGES/kcmcolors.mo +share/locale/cy/LC_MESSAGES/kcmfonts.mo +share/locale/cy/LC_MESSAGES/kcmformats.mo +share/locale/cy/LC_MESSAGES/kcminput.mo +share/locale/cy/LC_MESSAGES/kcmkclock.mo +share/locale/cy/LC_MESSAGES/kcmkeyboard.mo +share/locale/cy/LC_MESSAGES/kcmkeys.mo +share/locale/cy/LC_MESSAGES/kcmlaunch.mo +share/locale/cy/LC_MESSAGES/kcmmousetheme.mo +share/locale/cy/LC_MESSAGES/kcmsmserver.mo +share/locale/cy/LC_MESSAGES/kcmstyle.mo +share/locale/cy/LC_MESSAGES/kfontinst.mo +share/locale/cy/LC_MESSAGES/knetattach5.mo +share/locale/cy/LC_MESSAGES/krdb.mo +share/locale/cy/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/da/LC_MESSAGES/attica_kde_plugin.mo +share/locale/da/LC_MESSAGES/joystick.mo +share/locale/da/LC_MESSAGES/kaccess.mo +share/locale/da/LC_MESSAGES/kcm5_baloofile.mo +share/locale/da/LC_MESSAGES/kcm5_componentchooser.mo +share/locale/da/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/da/LC_MESSAGES/kcm5_emoticons.mo +share/locale/da/LC_MESSAGES/kcm5_icons.mo +share/locale/da/LC_MESSAGES/kcm5_kded.mo +share/locale/da/LC_MESSAGES/kcm5_notify.mo +share/locale/da/LC_MESSAGES/kcm5_phonon.mo +share/locale/da/LC_MESSAGES/kcm_activities5.mo +share/locale/da/LC_MESSAGES/kcm_autostart.mo +share/locale/da/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/da/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/da/LC_MESSAGES/kcm_lookandfeel.mo +share/locale/da/LC_MESSAGES/kcm_nightcolor.mo +share/locale/da/LC_MESSAGES/kcm_search.mo +share/locale/da/LC_MESSAGES/kcm_solid_actions.mo +share/locale/da/LC_MESSAGES/kcm_splashscreen.mo +share/locale/da/LC_MESSAGES/kcm_standard_actions.mo +share/locale/da/LC_MESSAGES/kcm_touchpad.mo +share/locale/da/LC_MESSAGES/kcmaccess.mo +share/locale/da/LC_MESSAGES/kcmcolors.mo +share/locale/da/LC_MESSAGES/kcmfonts.mo +share/locale/da/LC_MESSAGES/kcmformats.mo +share/locale/da/LC_MESSAGES/kcminput.mo +share/locale/da/LC_MESSAGES/kcmkclock.mo +share/locale/da/LC_MESSAGES/kcmkeyboard.mo +share/locale/da/LC_MESSAGES/kcmkeys.mo +share/locale/da/LC_MESSAGES/kcmlaunch.mo +share/locale/da/LC_MESSAGES/kcmmousetheme.mo +share/locale/da/LC_MESSAGES/kcmsmserver.mo +share/locale/da/LC_MESSAGES/kcmstyle.mo +share/locale/da/LC_MESSAGES/kcmtranslations.mo +share/locale/da/LC_MESSAGES/kcmworkspaceoptions.mo +share/locale/da/LC_MESSAGES/kfontinst.mo +share/locale/da/LC_MESSAGES/knetattach5.mo +share/locale/da/LC_MESSAGES/krdb.mo +share/locale/da/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/da/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo +share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo +share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo +share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo +share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo +share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo +share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo +share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo +share/locale/da/LC_MESSAGES/plasma_applet_touchpad.mo +share/locale/da/LC_MESSAGES/plasma_runner_kwin.mo +share/locale/da/LC_MESSAGES/plasma_runner_plasma-desktop.mo +share/locale/da/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo +share/locale/da/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo +share/locale/da/LC_MESSAGES/plasmaactivitymanager.mo +share/locale/de/LC_MESSAGES/attica_kde_plugin.mo +share/locale/de/LC_MESSAGES/joystick.mo +share/locale/de/LC_MESSAGES/kaccess.mo +share/locale/de/LC_MESSAGES/kcm5_baloofile.mo +share/locale/de/LC_MESSAGES/kcm5_componentchooser.mo +share/locale/de/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/de/LC_MESSAGES/kcm5_emoticons.mo +share/locale/de/LC_MESSAGES/kcm5_icons.mo +share/locale/de/LC_MESSAGES/kcm5_kded.mo +share/locale/de/LC_MESSAGES/kcm5_notify.mo +share/locale/de/LC_MESSAGES/kcm5_phonon.mo +share/locale/de/LC_MESSAGES/kcm_activities5.mo +share/locale/de/LC_MESSAGES/kcm_autostart.mo +share/locale/de/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/de/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/de/LC_MESSAGES/kcm_lookandfeel.mo +share/locale/de/LC_MESSAGES/kcm_nightcolor.mo +share/locale/de/LC_MESSAGES/kcm_search.mo +share/locale/de/LC_MESSAGES/kcm_solid_actions.mo +share/locale/de/LC_MESSAGES/kcm_splashscreen.mo +share/locale/de/LC_MESSAGES/kcm_standard_actions.mo +share/locale/de/LC_MESSAGES/kcm_touchpad.mo +share/locale/de/LC_MESSAGES/kcmaccess.mo +share/locale/de/LC_MESSAGES/kcmcolors.mo +share/locale/de/LC_MESSAGES/kcmfonts.mo +share/locale/de/LC_MESSAGES/kcmformats.mo +share/locale/de/LC_MESSAGES/kcminput.mo +share/locale/de/LC_MESSAGES/kcmkclock.mo +share/locale/de/LC_MESSAGES/kcmkeyboard.mo +share/locale/de/LC_MESSAGES/kcmkeys.mo +share/locale/de/LC_MESSAGES/kcmlaunch.mo +share/locale/de/LC_MESSAGES/kcmmousetheme.mo +share/locale/de/LC_MESSAGES/kcmsmserver.mo +share/locale/de/LC_MESSAGES/kcmstyle.mo +share/locale/de/LC_MESSAGES/kcmtranslations.mo +share/locale/de/LC_MESSAGES/kcmworkspaceoptions.mo +share/locale/de/LC_MESSAGES/kfontinst.mo +share/locale/de/LC_MESSAGES/knetattach5.mo +share/locale/de/LC_MESSAGES/krdb.mo +share/locale/de/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/de/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo +share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo +share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo +share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo +share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo +share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo +share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo +share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo +share/locale/de/LC_MESSAGES/plasma_applet_touchpad.mo +share/locale/de/LC_MESSAGES/plasma_runner_kwin.mo +share/locale/de/LC_MESSAGES/plasma_runner_plasma-desktop.mo +share/locale/de/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo +share/locale/de/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo +share/locale/de/LC_MESSAGES/plasmaactivitymanager.mo +share/locale/el/LC_MESSAGES/attica_kde_plugin.mo +share/locale/el/LC_MESSAGES/joystick.mo +share/locale/el/LC_MESSAGES/kaccess.mo +share/locale/el/LC_MESSAGES/kcm5_baloofile.mo +share/locale/el/LC_MESSAGES/kcm5_componentchooser.mo +share/locale/el/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/el/LC_MESSAGES/kcm5_emoticons.mo +share/locale/el/LC_MESSAGES/kcm5_icons.mo +share/locale/el/LC_MESSAGES/kcm5_kded.mo +share/locale/el/LC_MESSAGES/kcm5_notify.mo +share/locale/el/LC_MESSAGES/kcm5_phonon.mo +share/locale/el/LC_MESSAGES/kcm_activities5.mo +share/locale/el/LC_MESSAGES/kcm_autostart.mo +share/locale/el/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/el/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/el/LC_MESSAGES/kcm_lookandfeel.mo +share/locale/el/LC_MESSAGES/kcm_search.mo +share/locale/el/LC_MESSAGES/kcm_solid_actions.mo +share/locale/el/LC_MESSAGES/kcm_splashscreen.mo +share/locale/el/LC_MESSAGES/kcm_standard_actions.mo +share/locale/el/LC_MESSAGES/kcm_touchpad.mo +share/locale/el/LC_MESSAGES/kcmaccess.mo +share/locale/el/LC_MESSAGES/kcmcolors.mo +share/locale/el/LC_MESSAGES/kcmfonts.mo +share/locale/el/LC_MESSAGES/kcmformats.mo +share/locale/el/LC_MESSAGES/kcminput.mo +share/locale/el/LC_MESSAGES/kcmkclock.mo +share/locale/el/LC_MESSAGES/kcmkeyboard.mo +share/locale/el/LC_MESSAGES/kcmkeys.mo +share/locale/el/LC_MESSAGES/kcmlaunch.mo +share/locale/el/LC_MESSAGES/kcmmousetheme.mo +share/locale/el/LC_MESSAGES/kcmsmserver.mo +share/locale/el/LC_MESSAGES/kcmstyle.mo +share/locale/el/LC_MESSAGES/kcmtranslations.mo +share/locale/el/LC_MESSAGES/kcmworkspaceoptions.mo +share/locale/el/LC_MESSAGES/kfontinst.mo +share/locale/el/LC_MESSAGES/knetattach5.mo +share/locale/el/LC_MESSAGES/krdb.mo +share/locale/el/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/el/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo +share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo +share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo +share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo +share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo +share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo +share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo +share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo +share/locale/el/LC_MESSAGES/plasma_applet_touchpad.mo +share/locale/el/LC_MESSAGES/plasma_runner_kwin.mo +share/locale/el/LC_MESSAGES/plasma_runner_plasma-desktop.mo +share/locale/el/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo +share/locale/el/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo +share/locale/el/LC_MESSAGES/plasmaactivitymanager.mo +share/locale/en_GB/LC_MESSAGES/attica_kde_plugin.mo +share/locale/en_GB/LC_MESSAGES/joystick.mo +share/locale/en_GB/LC_MESSAGES/kaccess.mo +share/locale/en_GB/LC_MESSAGES/kcm5_baloofile.mo +share/locale/en_GB/LC_MESSAGES/kcm5_componentchooser.mo +share/locale/en_GB/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/en_GB/LC_MESSAGES/kcm5_emoticons.mo +share/locale/en_GB/LC_MESSAGES/kcm5_icons.mo +share/locale/en_GB/LC_MESSAGES/kcm5_kded.mo +share/locale/en_GB/LC_MESSAGES/kcm5_notify.mo +share/locale/en_GB/LC_MESSAGES/kcm5_phonon.mo +share/locale/en_GB/LC_MESSAGES/kcm_activities5.mo +share/locale/en_GB/LC_MESSAGES/kcm_autostart.mo +share/locale/en_GB/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/en_GB/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/en_GB/LC_MESSAGES/kcm_lookandfeel.mo +share/locale/en_GB/LC_MESSAGES/kcm_nightcolor.mo +share/locale/en_GB/LC_MESSAGES/kcm_search.mo +share/locale/en_GB/LC_MESSAGES/kcm_solid_actions.mo +share/locale/en_GB/LC_MESSAGES/kcm_splashscreen.mo +share/locale/en_GB/LC_MESSAGES/kcm_standard_actions.mo +share/locale/en_GB/LC_MESSAGES/kcm_touchpad.mo +share/locale/en_GB/LC_MESSAGES/kcmaccess.mo +share/locale/en_GB/LC_MESSAGES/kcmcolors.mo +share/locale/en_GB/LC_MESSAGES/kcmfonts.mo +share/locale/en_GB/LC_MESSAGES/kcmformats.mo +share/locale/en_GB/LC_MESSAGES/kcminput.mo +share/locale/en_GB/LC_MESSAGES/kcmkclock.mo +share/locale/en_GB/LC_MESSAGES/kcmkeyboard.mo +share/locale/en_GB/LC_MESSAGES/kcmkeys.mo +share/locale/en_GB/LC_MESSAGES/kcmlaunch.mo +share/locale/en_GB/LC_MESSAGES/kcmmousetheme.mo +share/locale/en_GB/LC_MESSAGES/kcmsmserver.mo +share/locale/en_GB/LC_MESSAGES/kcmstyle.mo +share/locale/en_GB/LC_MESSAGES/kcmtranslations.mo +share/locale/en_GB/LC_MESSAGES/kcmworkspaceoptions.mo +share/locale/en_GB/LC_MESSAGES/kfontinst.mo +share/locale/en_GB/LC_MESSAGES/knetattach5.mo +share/locale/en_GB/LC_MESSAGES/krdb.mo +share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo +share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo +share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo +share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo +share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo +share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo +share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo +share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo +share/locale/en_GB/LC_MESSAGES/plasma_applet_touchpad.mo +share/locale/en_GB/LC_MESSAGES/plasma_runner_kwin.mo +share/locale/en_GB/LC_MESSAGES/plasma_runner_plasma-desktop.mo +share/locale/en_GB/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo +share/locale/en_GB/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo +share/locale/en_GB/LC_MESSAGES/plasmaactivitymanager.mo +share/locale/eo/LC_MESSAGES/attica_kde_plugin.mo +share/locale/eo/LC_MESSAGES/joystick.mo +share/locale/eo/LC_MESSAGES/kaccess.mo +share/locale/eo/LC_MESSAGES/kcm5_componentchooser.mo +share/locale/eo/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/eo/LC_MESSAGES/kcm5_emoticons.mo +share/locale/eo/LC_MESSAGES/kcm5_icons.mo +share/locale/eo/LC_MESSAGES/kcm5_kded.mo +share/locale/eo/LC_MESSAGES/kcm5_notify.mo +share/locale/eo/LC_MESSAGES/kcm5_phonon.mo +share/locale/eo/LC_MESSAGES/kcm_autostart.mo +share/locale/eo/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/eo/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/eo/LC_MESSAGES/kcm_solid_actions.mo +share/locale/eo/LC_MESSAGES/kcm_standard_actions.mo +share/locale/eo/LC_MESSAGES/kcmaccess.mo +share/locale/eo/LC_MESSAGES/kcmcolors.mo +share/locale/eo/LC_MESSAGES/kcmfonts.mo +share/locale/eo/LC_MESSAGES/kcmformats.mo +share/locale/eo/LC_MESSAGES/kcminput.mo +share/locale/eo/LC_MESSAGES/kcmkclock.mo +share/locale/eo/LC_MESSAGES/kcmkeyboard.mo +share/locale/eo/LC_MESSAGES/kcmkeys.mo +share/locale/eo/LC_MESSAGES/kcmlaunch.mo +share/locale/eo/LC_MESSAGES/kcmmousetheme.mo +share/locale/eo/LC_MESSAGES/kcmsmserver.mo +share/locale/eo/LC_MESSAGES/kcmstyle.mo +share/locale/eo/LC_MESSAGES/kfontinst.mo +share/locale/eo/LC_MESSAGES/knetattach5.mo +share/locale/eo/LC_MESSAGES/krdb.mo +share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo +share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo +share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo +share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo +share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo +share/locale/eo/LC_MESSAGES/plasma_runner_plasma-desktop.mo +share/locale/es/LC_MESSAGES/attica_kde_plugin.mo +share/locale/es/LC_MESSAGES/joystick.mo +share/locale/es/LC_MESSAGES/kaccess.mo +share/locale/es/LC_MESSAGES/kcm5_baloofile.mo +share/locale/es/LC_MESSAGES/kcm5_componentchooser.mo +share/locale/es/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/es/LC_MESSAGES/kcm5_emoticons.mo +share/locale/es/LC_MESSAGES/kcm5_icons.mo +share/locale/es/LC_MESSAGES/kcm5_kded.mo +share/locale/es/LC_MESSAGES/kcm5_notify.mo +share/locale/es/LC_MESSAGES/kcm5_phonon.mo +share/locale/es/LC_MESSAGES/kcm_activities5.mo +share/locale/es/LC_MESSAGES/kcm_autostart.mo +share/locale/es/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/es/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/es/LC_MESSAGES/kcm_lookandfeel.mo +share/locale/es/LC_MESSAGES/kcm_nightcolor.mo +share/locale/es/LC_MESSAGES/kcm_search.mo +share/locale/es/LC_MESSAGES/kcm_solid_actions.mo +share/locale/es/LC_MESSAGES/kcm_splashscreen.mo +share/locale/es/LC_MESSAGES/kcm_standard_actions.mo +share/locale/es/LC_MESSAGES/kcm_touchpad.mo +share/locale/es/LC_MESSAGES/kcmaccess.mo +share/locale/es/LC_MESSAGES/kcmcolors.mo +share/locale/es/LC_MESSAGES/kcmfonts.mo +share/locale/es/LC_MESSAGES/kcmformats.mo +share/locale/es/LC_MESSAGES/kcminput.mo +share/locale/es/LC_MESSAGES/kcmkclock.mo +share/locale/es/LC_MESSAGES/kcmkeyboard.mo +share/locale/es/LC_MESSAGES/kcmkeys.mo +share/locale/es/LC_MESSAGES/kcmlaunch.mo +share/locale/es/LC_MESSAGES/kcmmousetheme.mo +share/locale/es/LC_MESSAGES/kcmsmserver.mo +share/locale/es/LC_MESSAGES/kcmstyle.mo +share/locale/es/LC_MESSAGES/kcmtranslations.mo +share/locale/es/LC_MESSAGES/kcmworkspaceoptions.mo +share/locale/es/LC_MESSAGES/kfontinst.mo +share/locale/es/LC_MESSAGES/knetattach5.mo +share/locale/es/LC_MESSAGES/krdb.mo +share/locale/es/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/es/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo +share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo +share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo +share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo +share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo +share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo +share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo +share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo +share/locale/es/LC_MESSAGES/plasma_applet_touchpad.mo +share/locale/es/LC_MESSAGES/plasma_runner_kwin.mo +share/locale/es/LC_MESSAGES/plasma_runner_plasma-desktop.mo +share/locale/es/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo +share/locale/es/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo +share/locale/es/LC_MESSAGES/plasmaactivitymanager.mo +share/locale/et/LC_MESSAGES/attica_kde_plugin.mo +share/locale/et/LC_MESSAGES/joystick.mo +share/locale/et/LC_MESSAGES/kaccess.mo +share/locale/et/LC_MESSAGES/kcm5_baloofile.mo +share/locale/et/LC_MESSAGES/kcm5_componentchooser.mo +share/locale/et/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/et/LC_MESSAGES/kcm5_emoticons.mo +share/locale/et/LC_MESSAGES/kcm5_icons.mo +share/locale/et/LC_MESSAGES/kcm5_kded.mo +share/locale/et/LC_MESSAGES/kcm5_notify.mo +share/locale/et/LC_MESSAGES/kcm5_phonon.mo +share/locale/et/LC_MESSAGES/kcm_activities5.mo +share/locale/et/LC_MESSAGES/kcm_autostart.mo +share/locale/et/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/et/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/et/LC_MESSAGES/kcm_lookandfeel.mo +share/locale/et/LC_MESSAGES/kcm_search.mo +share/locale/et/LC_MESSAGES/kcm_solid_actions.mo +share/locale/et/LC_MESSAGES/kcm_splashscreen.mo +share/locale/et/LC_MESSAGES/kcm_standard_actions.mo +share/locale/et/LC_MESSAGES/kcm_touchpad.mo +share/locale/et/LC_MESSAGES/kcmaccess.mo +share/locale/et/LC_MESSAGES/kcmcolors.mo +share/locale/et/LC_MESSAGES/kcmfonts.mo +share/locale/et/LC_MESSAGES/kcmformats.mo +share/locale/et/LC_MESSAGES/kcminput.mo +share/locale/et/LC_MESSAGES/kcmkclock.mo +share/locale/et/LC_MESSAGES/kcmkeyboard.mo +share/locale/et/LC_MESSAGES/kcmkeys.mo +share/locale/et/LC_MESSAGES/kcmlaunch.mo +share/locale/et/LC_MESSAGES/kcmmousetheme.mo +share/locale/et/LC_MESSAGES/kcmsmserver.mo +share/locale/et/LC_MESSAGES/kcmstyle.mo +share/locale/et/LC_MESSAGES/kcmtranslations.mo +share/locale/et/LC_MESSAGES/kcmworkspaceoptions.mo +share/locale/et/LC_MESSAGES/kfontinst.mo +share/locale/et/LC_MESSAGES/knetattach5.mo +share/locale/et/LC_MESSAGES/krdb.mo +share/locale/et/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/et/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo +share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo +share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo +share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo +share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo +share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo +share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo +share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo +share/locale/et/LC_MESSAGES/plasma_applet_touchpad.mo +share/locale/et/LC_MESSAGES/plasma_runner_kwin.mo +share/locale/et/LC_MESSAGES/plasma_runner_plasma-desktop.mo +share/locale/et/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo +share/locale/et/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo +share/locale/et/LC_MESSAGES/plasmaactivitymanager.mo +share/locale/eu/LC_MESSAGES/attica_kde_plugin.mo +share/locale/eu/LC_MESSAGES/joystick.mo +share/locale/eu/LC_MESSAGES/kaccess.mo +share/locale/eu/LC_MESSAGES/kcm5_baloofile.mo +share/locale/eu/LC_MESSAGES/kcm5_componentchooser.mo +share/locale/eu/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/eu/LC_MESSAGES/kcm5_emoticons.mo +share/locale/eu/LC_MESSAGES/kcm5_icons.mo +share/locale/eu/LC_MESSAGES/kcm5_kded.mo +share/locale/eu/LC_MESSAGES/kcm5_notify.mo +share/locale/eu/LC_MESSAGES/kcm5_phonon.mo +share/locale/eu/LC_MESSAGES/kcm_activities5.mo +share/locale/eu/LC_MESSAGES/kcm_autostart.mo +share/locale/eu/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/eu/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/eu/LC_MESSAGES/kcm_lookandfeel.mo +share/locale/eu/LC_MESSAGES/kcm_nightcolor.mo +share/locale/eu/LC_MESSAGES/kcm_search.mo +share/locale/eu/LC_MESSAGES/kcm_solid_actions.mo +share/locale/eu/LC_MESSAGES/kcm_splashscreen.mo +share/locale/eu/LC_MESSAGES/kcm_standard_actions.mo +share/locale/eu/LC_MESSAGES/kcm_touchpad.mo +share/locale/eu/LC_MESSAGES/kcmaccess.mo +share/locale/eu/LC_MESSAGES/kcmcolors.mo +share/locale/eu/LC_MESSAGES/kcmfonts.mo +share/locale/eu/LC_MESSAGES/kcmformats.mo +share/locale/eu/LC_MESSAGES/kcminput.mo +share/locale/eu/LC_MESSAGES/kcmkclock.mo +share/locale/eu/LC_MESSAGES/kcmkeyboard.mo +share/locale/eu/LC_MESSAGES/kcmkeys.mo +share/locale/eu/LC_MESSAGES/kcmlaunch.mo +share/locale/eu/LC_MESSAGES/kcmmousetheme.mo +share/locale/eu/LC_MESSAGES/kcmsmserver.mo +share/locale/eu/LC_MESSAGES/kcmstyle.mo +share/locale/eu/LC_MESSAGES/kcmtranslations.mo +share/locale/eu/LC_MESSAGES/kcmworkspaceoptions.mo +share/locale/eu/LC_MESSAGES/kfontinst.mo +share/locale/eu/LC_MESSAGES/knetattach5.mo +share/locale/eu/LC_MESSAGES/krdb.mo +share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo +share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo +share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo +share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo +share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo +share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo +share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo +share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo +share/locale/eu/LC_MESSAGES/plasma_applet_touchpad.mo +share/locale/eu/LC_MESSAGES/plasma_runner_plasma-desktop.mo +share/locale/eu/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo +share/locale/fa/LC_MESSAGES/attica_kde_plugin.mo +share/locale/fa/LC_MESSAGES/joystick.mo +share/locale/fa/LC_MESSAGES/kaccess.mo +share/locale/fa/LC_MESSAGES/kcm5_componentchooser.mo +share/locale/fa/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/fa/LC_MESSAGES/kcm5_emoticons.mo +share/locale/fa/LC_MESSAGES/kcm5_icons.mo +share/locale/fa/LC_MESSAGES/kcm5_kded.mo +share/locale/fa/LC_MESSAGES/kcm5_notify.mo +share/locale/fa/LC_MESSAGES/kcm5_phonon.mo +share/locale/fa/LC_MESSAGES/kcm_autostart.mo +share/locale/fa/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/fa/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/fa/LC_MESSAGES/kcm_solid_actions.mo +share/locale/fa/LC_MESSAGES/kcm_standard_actions.mo +share/locale/fa/LC_MESSAGES/kcmaccess.mo +share/locale/fa/LC_MESSAGES/kcmcolors.mo +share/locale/fa/LC_MESSAGES/kcmfonts.mo +share/locale/fa/LC_MESSAGES/kcmformats.mo +share/locale/fa/LC_MESSAGES/kcminput.mo +share/locale/fa/LC_MESSAGES/kcmkclock.mo +share/locale/fa/LC_MESSAGES/kcmkeyboard.mo +share/locale/fa/LC_MESSAGES/kcmkeys.mo +share/locale/fa/LC_MESSAGES/kcmlaunch.mo +share/locale/fa/LC_MESSAGES/kcmmousetheme.mo +share/locale/fa/LC_MESSAGES/kcmsmserver.mo +share/locale/fa/LC_MESSAGES/kcmstyle.mo +share/locale/fa/LC_MESSAGES/kfontinst.mo +share/locale/fa/LC_MESSAGES/knetattach5.mo +share/locale/fa/LC_MESSAGES/krdb.mo +share/locale/fa/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/fa/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo +share/locale/fa/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo +share/locale/fa/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo +share/locale/fi/LC_MESSAGES/attica_kde_plugin.mo +share/locale/fi/LC_MESSAGES/joystick.mo +share/locale/fi/LC_MESSAGES/kaccess.mo +share/locale/fi/LC_MESSAGES/kcm5_baloofile.mo +share/locale/fi/LC_MESSAGES/kcm5_componentchooser.mo +share/locale/fi/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/fi/LC_MESSAGES/kcm5_emoticons.mo +share/locale/fi/LC_MESSAGES/kcm5_icons.mo +share/locale/fi/LC_MESSAGES/kcm5_kded.mo +share/locale/fi/LC_MESSAGES/kcm5_notify.mo +share/locale/fi/LC_MESSAGES/kcm5_phonon.mo +share/locale/fi/LC_MESSAGES/kcm_activities5.mo +share/locale/fi/LC_MESSAGES/kcm_autostart.mo +share/locale/fi/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/fi/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/fi/LC_MESSAGES/kcm_lookandfeel.mo +share/locale/fi/LC_MESSAGES/kcm_nightcolor.mo +share/locale/fi/LC_MESSAGES/kcm_search.mo +share/locale/fi/LC_MESSAGES/kcm_solid_actions.mo +share/locale/fi/LC_MESSAGES/kcm_splashscreen.mo +share/locale/fi/LC_MESSAGES/kcm_standard_actions.mo +share/locale/fi/LC_MESSAGES/kcm_touchpad.mo +share/locale/fi/LC_MESSAGES/kcmaccess.mo +share/locale/fi/LC_MESSAGES/kcmcolors.mo +share/locale/fi/LC_MESSAGES/kcmfonts.mo +share/locale/fi/LC_MESSAGES/kcmformats.mo +share/locale/fi/LC_MESSAGES/kcminput.mo +share/locale/fi/LC_MESSAGES/kcmkclock.mo +share/locale/fi/LC_MESSAGES/kcmkeyboard.mo +share/locale/fi/LC_MESSAGES/kcmkeys.mo +share/locale/fi/LC_MESSAGES/kcmlaunch.mo +share/locale/fi/LC_MESSAGES/kcmmousetheme.mo +share/locale/fi/LC_MESSAGES/kcmsmserver.mo +share/locale/fi/LC_MESSAGES/kcmstyle.mo +share/locale/fi/LC_MESSAGES/kcmtranslations.mo +share/locale/fi/LC_MESSAGES/kcmworkspaceoptions.mo +share/locale/fi/LC_MESSAGES/kfontinst.mo +share/locale/fi/LC_MESSAGES/knetattach5.mo +share/locale/fi/LC_MESSAGES/krdb.mo +share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo +share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo +share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo +share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo +share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo +share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo +share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo +share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo +share/locale/fi/LC_MESSAGES/plasma_applet_touchpad.mo +share/locale/fi/LC_MESSAGES/plasma_runner_kwin.mo +share/locale/fi/LC_MESSAGES/plasma_runner_plasma-desktop.mo +share/locale/fi/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo +share/locale/fi/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo +share/locale/fi/LC_MESSAGES/plasmaactivitymanager.mo +share/locale/fr/LC_MESSAGES/attica_kde_plugin.mo +share/locale/fr/LC_MESSAGES/joystick.mo +share/locale/fr/LC_MESSAGES/kaccess.mo +share/locale/fr/LC_MESSAGES/kcm5_baloofile.mo +share/locale/fr/LC_MESSAGES/kcm5_componentchooser.mo +share/locale/fr/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/fr/LC_MESSAGES/kcm5_emoticons.mo +share/locale/fr/LC_MESSAGES/kcm5_icons.mo +share/locale/fr/LC_MESSAGES/kcm5_kded.mo +share/locale/fr/LC_MESSAGES/kcm5_notify.mo +share/locale/fr/LC_MESSAGES/kcm5_phonon.mo +share/locale/fr/LC_MESSAGES/kcm_activities5.mo +share/locale/fr/LC_MESSAGES/kcm_autostart.mo +share/locale/fr/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/fr/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/fr/LC_MESSAGES/kcm_lookandfeel.mo +share/locale/fr/LC_MESSAGES/kcm_nightcolor.mo +share/locale/fr/LC_MESSAGES/kcm_search.mo +share/locale/fr/LC_MESSAGES/kcm_solid_actions.mo +share/locale/fr/LC_MESSAGES/kcm_splashscreen.mo +share/locale/fr/LC_MESSAGES/kcm_standard_actions.mo +share/locale/fr/LC_MESSAGES/kcm_touchpad.mo +share/locale/fr/LC_MESSAGES/kcmaccess.mo +share/locale/fr/LC_MESSAGES/kcmcolors.mo +share/locale/fr/LC_MESSAGES/kcmfonts.mo +share/locale/fr/LC_MESSAGES/kcmformats.mo +share/locale/fr/LC_MESSAGES/kcminput.mo +share/locale/fr/LC_MESSAGES/kcmkclock.mo +share/locale/fr/LC_MESSAGES/kcmkeyboard.mo +share/locale/fr/LC_MESSAGES/kcmkeys.mo +share/locale/fr/LC_MESSAGES/kcmlaunch.mo +share/locale/fr/LC_MESSAGES/kcmmousetheme.mo +share/locale/fr/LC_MESSAGES/kcmsmserver.mo +share/locale/fr/LC_MESSAGES/kcmstyle.mo +share/locale/fr/LC_MESSAGES/kcmtranslations.mo +share/locale/fr/LC_MESSAGES/kcmworkspaceoptions.mo +share/locale/fr/LC_MESSAGES/kfontinst.mo +share/locale/fr/LC_MESSAGES/knetattach5.mo +share/locale/fr/LC_MESSAGES/krdb.mo +share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo +share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo +share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo +share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo +share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo +share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo +share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo +share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo +share/locale/fr/LC_MESSAGES/plasma_applet_touchpad.mo +share/locale/fr/LC_MESSAGES/plasma_runner_kwin.mo +share/locale/fr/LC_MESSAGES/plasma_runner_plasma-desktop.mo +share/locale/fr/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo +share/locale/fr/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo +share/locale/fr/LC_MESSAGES/plasmaactivitymanager.mo +share/locale/fy/LC_MESSAGES/attica_kde_plugin.mo +share/locale/fy/LC_MESSAGES/joystick.mo +share/locale/fy/LC_MESSAGES/kaccess.mo +share/locale/fy/LC_MESSAGES/kcm5_componentchooser.mo +share/locale/fy/LC_MESSAGES/kcm5_emoticons.mo +share/locale/fy/LC_MESSAGES/kcm5_icons.mo +share/locale/fy/LC_MESSAGES/kcm5_kded.mo +share/locale/fy/LC_MESSAGES/kcm5_notify.mo +share/locale/fy/LC_MESSAGES/kcm5_phonon.mo +share/locale/fy/LC_MESSAGES/kcm_autostart.mo +share/locale/fy/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/fy/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/fy/LC_MESSAGES/kcm_solid_actions.mo +share/locale/fy/LC_MESSAGES/kcm_standard_actions.mo +share/locale/fy/LC_MESSAGES/kcmaccess.mo +share/locale/fy/LC_MESSAGES/kcmcolors.mo +share/locale/fy/LC_MESSAGES/kcmfonts.mo +share/locale/fy/LC_MESSAGES/kcmformats.mo +share/locale/fy/LC_MESSAGES/kcminput.mo +share/locale/fy/LC_MESSAGES/kcmkclock.mo +share/locale/fy/LC_MESSAGES/kcmkeyboard.mo +share/locale/fy/LC_MESSAGES/kcmkeys.mo +share/locale/fy/LC_MESSAGES/kcmlaunch.mo +share/locale/fy/LC_MESSAGES/kcmmousetheme.mo +share/locale/fy/LC_MESSAGES/kcmsmserver.mo +share/locale/fy/LC_MESSAGES/kcmstyle.mo +share/locale/fy/LC_MESSAGES/kfontinst.mo +share/locale/fy/LC_MESSAGES/knetattach5.mo +share/locale/fy/LC_MESSAGES/krdb.mo +share/locale/fy/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/fy/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo +share/locale/fy/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo +share/locale/fy/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo +share/locale/ga/LC_MESSAGES/attica_kde_plugin.mo +share/locale/ga/LC_MESSAGES/joystick.mo +share/locale/ga/LC_MESSAGES/kaccess.mo +share/locale/ga/LC_MESSAGES/kcm5_componentchooser.mo +share/locale/ga/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/ga/LC_MESSAGES/kcm5_emoticons.mo +share/locale/ga/LC_MESSAGES/kcm5_icons.mo +share/locale/ga/LC_MESSAGES/kcm5_kded.mo +share/locale/ga/LC_MESSAGES/kcm5_notify.mo +share/locale/ga/LC_MESSAGES/kcm5_phonon.mo +share/locale/ga/LC_MESSAGES/kcm_autostart.mo +share/locale/ga/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/ga/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/ga/LC_MESSAGES/kcm_solid_actions.mo +share/locale/ga/LC_MESSAGES/kcm_standard_actions.mo +share/locale/ga/LC_MESSAGES/kcmaccess.mo +share/locale/ga/LC_MESSAGES/kcmcolors.mo +share/locale/ga/LC_MESSAGES/kcmfonts.mo +share/locale/ga/LC_MESSAGES/kcmformats.mo +share/locale/ga/LC_MESSAGES/kcminput.mo +share/locale/ga/LC_MESSAGES/kcmkclock.mo +share/locale/ga/LC_MESSAGES/kcmkeyboard.mo +share/locale/ga/LC_MESSAGES/kcmkeys.mo +share/locale/ga/LC_MESSAGES/kcmlaunch.mo +share/locale/ga/LC_MESSAGES/kcmmousetheme.mo +share/locale/ga/LC_MESSAGES/kcmsmserver.mo +share/locale/ga/LC_MESSAGES/kcmstyle.mo +share/locale/ga/LC_MESSAGES/kfontinst.mo +share/locale/ga/LC_MESSAGES/knetattach5.mo +share/locale/ga/LC_MESSAGES/krdb.mo +share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo +share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo +share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo +share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo +share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo +share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo +share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo +share/locale/ga/LC_MESSAGES/plasma_runner_plasma-desktop.mo +share/locale/gl/LC_MESSAGES/attica_kde_plugin.mo +share/locale/gl/LC_MESSAGES/joystick.mo +share/locale/gl/LC_MESSAGES/kaccess.mo +share/locale/gl/LC_MESSAGES/kcm5_baloofile.mo +share/locale/gl/LC_MESSAGES/kcm5_componentchooser.mo +share/locale/gl/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/gl/LC_MESSAGES/kcm5_emoticons.mo +share/locale/gl/LC_MESSAGES/kcm5_icons.mo +share/locale/gl/LC_MESSAGES/kcm5_kded.mo +share/locale/gl/LC_MESSAGES/kcm5_notify.mo +share/locale/gl/LC_MESSAGES/kcm5_phonon.mo +share/locale/gl/LC_MESSAGES/kcm_activities5.mo +share/locale/gl/LC_MESSAGES/kcm_autostart.mo +share/locale/gl/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/gl/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/gl/LC_MESSAGES/kcm_lookandfeel.mo +share/locale/gl/LC_MESSAGES/kcm_search.mo +share/locale/gl/LC_MESSAGES/kcm_solid_actions.mo +share/locale/gl/LC_MESSAGES/kcm_splashscreen.mo +share/locale/gl/LC_MESSAGES/kcm_standard_actions.mo +share/locale/gl/LC_MESSAGES/kcm_touchpad.mo +share/locale/gl/LC_MESSAGES/kcmaccess.mo +share/locale/gl/LC_MESSAGES/kcmcolors.mo +share/locale/gl/LC_MESSAGES/kcmfonts.mo +share/locale/gl/LC_MESSAGES/kcmformats.mo +share/locale/gl/LC_MESSAGES/kcminput.mo +share/locale/gl/LC_MESSAGES/kcmkclock.mo +share/locale/gl/LC_MESSAGES/kcmkeyboard.mo +share/locale/gl/LC_MESSAGES/kcmkeys.mo +share/locale/gl/LC_MESSAGES/kcmlaunch.mo +share/locale/gl/LC_MESSAGES/kcmmousetheme.mo +share/locale/gl/LC_MESSAGES/kcmsmserver.mo +share/locale/gl/LC_MESSAGES/kcmstyle.mo +share/locale/gl/LC_MESSAGES/kcmtranslations.mo +share/locale/gl/LC_MESSAGES/kcmworkspaceoptions.mo +share/locale/gl/LC_MESSAGES/kfontinst.mo +share/locale/gl/LC_MESSAGES/knetattach5.mo +share/locale/gl/LC_MESSAGES/krdb.mo +share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo +share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo +share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo +share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo +share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo +share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo +share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo +share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo +share/locale/gl/LC_MESSAGES/plasma_applet_touchpad.mo +share/locale/gl/LC_MESSAGES/plasma_runner_kwin.mo +share/locale/gl/LC_MESSAGES/plasma_runner_plasma-desktop.mo +share/locale/gl/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo +share/locale/gl/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo +share/locale/gl/LC_MESSAGES/plasmaactivitymanager.mo +share/locale/gu/LC_MESSAGES/attica_kde_plugin.mo +share/locale/gu/LC_MESSAGES/joystick.mo +share/locale/gu/LC_MESSAGES/kaccess.mo +share/locale/gu/LC_MESSAGES/kcm5_componentchooser.mo +share/locale/gu/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/gu/LC_MESSAGES/kcm5_emoticons.mo +share/locale/gu/LC_MESSAGES/kcm5_icons.mo +share/locale/gu/LC_MESSAGES/kcm5_kded.mo +share/locale/gu/LC_MESSAGES/kcm5_notify.mo +share/locale/gu/LC_MESSAGES/kcm5_phonon.mo +share/locale/gu/LC_MESSAGES/kcm_autostart.mo +share/locale/gu/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/gu/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/gu/LC_MESSAGES/kcm_solid_actions.mo +share/locale/gu/LC_MESSAGES/kcm_standard_actions.mo +share/locale/gu/LC_MESSAGES/kcmaccess.mo +share/locale/gu/LC_MESSAGES/kcmcolors.mo +share/locale/gu/LC_MESSAGES/kcmfonts.mo +share/locale/gu/LC_MESSAGES/kcmformats.mo +share/locale/gu/LC_MESSAGES/kcminput.mo +share/locale/gu/LC_MESSAGES/kcmkclock.mo +share/locale/gu/LC_MESSAGES/kcmkeyboard.mo +share/locale/gu/LC_MESSAGES/kcmkeys.mo +share/locale/gu/LC_MESSAGES/kcmlaunch.mo +share/locale/gu/LC_MESSAGES/kcmmousetheme.mo +share/locale/gu/LC_MESSAGES/kcmsmserver.mo +share/locale/gu/LC_MESSAGES/kcmstyle.mo +share/locale/gu/LC_MESSAGES/kfontinst.mo +share/locale/gu/LC_MESSAGES/knetattach5.mo +share/locale/gu/LC_MESSAGES/krdb.mo +share/locale/gu/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/gu/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo +share/locale/gu/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo +share/locale/gu/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo +share/locale/gu/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo +share/locale/gu/LC_MESSAGES/plasma_runner_plasma-desktop.mo +share/locale/he/LC_MESSAGES/attica_kde_plugin.mo +share/locale/he/LC_MESSAGES/joystick.mo +share/locale/he/LC_MESSAGES/kaccess.mo +share/locale/he/LC_MESSAGES/kcm5_baloofile.mo +share/locale/he/LC_MESSAGES/kcm5_componentchooser.mo +share/locale/he/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/he/LC_MESSAGES/kcm5_emoticons.mo +share/locale/he/LC_MESSAGES/kcm5_icons.mo +share/locale/he/LC_MESSAGES/kcm5_kded.mo +share/locale/he/LC_MESSAGES/kcm5_notify.mo +share/locale/he/LC_MESSAGES/kcm5_phonon.mo +share/locale/he/LC_MESSAGES/kcm_activities5.mo +share/locale/he/LC_MESSAGES/kcm_autostart.mo +share/locale/he/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/he/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/he/LC_MESSAGES/kcm_lookandfeel.mo +share/locale/he/LC_MESSAGES/kcm_search.mo +share/locale/he/LC_MESSAGES/kcm_solid_actions.mo +share/locale/he/LC_MESSAGES/kcm_splashscreen.mo +share/locale/he/LC_MESSAGES/kcm_standard_actions.mo +share/locale/he/LC_MESSAGES/kcm_touchpad.mo +share/locale/he/LC_MESSAGES/kcmaccess.mo +share/locale/he/LC_MESSAGES/kcmcolors.mo +share/locale/he/LC_MESSAGES/kcmfonts.mo +share/locale/he/LC_MESSAGES/kcmformats.mo +share/locale/he/LC_MESSAGES/kcminput.mo +share/locale/he/LC_MESSAGES/kcmkclock.mo +share/locale/he/LC_MESSAGES/kcmkeyboard.mo +share/locale/he/LC_MESSAGES/kcmkeys.mo +share/locale/he/LC_MESSAGES/kcmlaunch.mo +share/locale/he/LC_MESSAGES/kcmmousetheme.mo +share/locale/he/LC_MESSAGES/kcmsmserver.mo +share/locale/he/LC_MESSAGES/kcmstyle.mo +share/locale/he/LC_MESSAGES/kcmtranslations.mo +share/locale/he/LC_MESSAGES/kcmworkspaceoptions.mo +share/locale/he/LC_MESSAGES/kfontinst.mo +share/locale/he/LC_MESSAGES/knetattach5.mo +share/locale/he/LC_MESSAGES/krdb.mo +share/locale/he/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/he/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo +share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo +share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo +share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo +share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo +share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo +share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo +share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo +share/locale/he/LC_MESSAGES/plasma_applet_touchpad.mo +share/locale/he/LC_MESSAGES/plasma_runner_plasma-desktop.mo +share/locale/he/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo +share/locale/he/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo +share/locale/he/LC_MESSAGES/plasmaactivitymanager.mo +share/locale/hi/LC_MESSAGES/attica_kde_plugin.mo +share/locale/hi/LC_MESSAGES/joystick.mo +share/locale/hi/LC_MESSAGES/kaccess.mo +share/locale/hi/LC_MESSAGES/kcm5_componentchooser.mo +share/locale/hi/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/hi/LC_MESSAGES/kcm5_emoticons.mo +share/locale/hi/LC_MESSAGES/kcm5_icons.mo +share/locale/hi/LC_MESSAGES/kcm5_kded.mo +share/locale/hi/LC_MESSAGES/kcm5_notify.mo +share/locale/hi/LC_MESSAGES/kcm5_phonon.mo +share/locale/hi/LC_MESSAGES/kcm_autostart.mo +share/locale/hi/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/hi/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/hi/LC_MESSAGES/kcm_solid_actions.mo +share/locale/hi/LC_MESSAGES/kcmaccess.mo +share/locale/hi/LC_MESSAGES/kcmcolors.mo +share/locale/hi/LC_MESSAGES/kcmfonts.mo +share/locale/hi/LC_MESSAGES/kcmformats.mo +share/locale/hi/LC_MESSAGES/kcminput.mo +share/locale/hi/LC_MESSAGES/kcmkclock.mo +share/locale/hi/LC_MESSAGES/kcmkeyboard.mo +share/locale/hi/LC_MESSAGES/kcmkeys.mo +share/locale/hi/LC_MESSAGES/kcmlaunch.mo +share/locale/hi/LC_MESSAGES/kcmmousetheme.mo +share/locale/hi/LC_MESSAGES/kcmsmserver.mo +share/locale/hi/LC_MESSAGES/kcmstyle.mo +share/locale/hi/LC_MESSAGES/kfontinst.mo +share/locale/hi/LC_MESSAGES/knetattach5.mo +share/locale/hi/LC_MESSAGES/krdb.mo +share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo +share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo +share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo +share/locale/hi/LC_MESSAGES/plasma_runner_plasma-desktop.mo +share/locale/hne/LC_MESSAGES/joystick.mo +share/locale/hne/LC_MESSAGES/kaccess.mo +share/locale/hne/LC_MESSAGES/kcm5_componentchooser.mo +share/locale/hne/LC_MESSAGES/kcm5_emoticons.mo +share/locale/hne/LC_MESSAGES/kcm5_icons.mo +share/locale/hne/LC_MESSAGES/kcm5_kded.mo +share/locale/hne/LC_MESSAGES/kcm5_notify.mo +share/locale/hne/LC_MESSAGES/kcm5_phonon.mo +share/locale/hne/LC_MESSAGES/kcm_autostart.mo +share/locale/hne/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/hne/LC_MESSAGES/kcmaccess.mo +share/locale/hne/LC_MESSAGES/kcmcolors.mo +share/locale/hne/LC_MESSAGES/kcmfonts.mo +share/locale/hne/LC_MESSAGES/kcmformats.mo +share/locale/hne/LC_MESSAGES/kcminput.mo +share/locale/hne/LC_MESSAGES/kcmkclock.mo +share/locale/hne/LC_MESSAGES/kcmkeyboard.mo +share/locale/hne/LC_MESSAGES/kcmkeys.mo +share/locale/hne/LC_MESSAGES/kcmlaunch.mo +share/locale/hne/LC_MESSAGES/kcmmousetheme.mo +share/locale/hne/LC_MESSAGES/kcmsmserver.mo +share/locale/hne/LC_MESSAGES/kcmstyle.mo +share/locale/hne/LC_MESSAGES/kfontinst.mo +share/locale/hne/LC_MESSAGES/knetattach5.mo +share/locale/hne/LC_MESSAGES/krdb.mo +share/locale/hne/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/hne/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo +share/locale/hne/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo +share/locale/hne/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo +share/locale/hr/LC_MESSAGES/attica_kde_plugin.mo +share/locale/hr/LC_MESSAGES/joystick.mo +share/locale/hr/LC_MESSAGES/kaccess.mo +share/locale/hr/LC_MESSAGES/kcm5_componentchooser.mo +share/locale/hr/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/hr/LC_MESSAGES/kcm5_emoticons.mo +share/locale/hr/LC_MESSAGES/kcm5_icons.mo +share/locale/hr/LC_MESSAGES/kcm5_kded.mo +share/locale/hr/LC_MESSAGES/kcm5_notify.mo +share/locale/hr/LC_MESSAGES/kcm5_phonon.mo +share/locale/hr/LC_MESSAGES/kcm_autostart.mo +share/locale/hr/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/hr/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/hr/LC_MESSAGES/kcm_solid_actions.mo +share/locale/hr/LC_MESSAGES/kcm_standard_actions.mo +share/locale/hr/LC_MESSAGES/kcmaccess.mo +share/locale/hr/LC_MESSAGES/kcmcolors.mo +share/locale/hr/LC_MESSAGES/kcmfonts.mo +share/locale/hr/LC_MESSAGES/kcmformats.mo +share/locale/hr/LC_MESSAGES/kcminput.mo +share/locale/hr/LC_MESSAGES/kcmkclock.mo +share/locale/hr/LC_MESSAGES/kcmkeyboard.mo +share/locale/hr/LC_MESSAGES/kcmkeys.mo +share/locale/hr/LC_MESSAGES/kcmlaunch.mo +share/locale/hr/LC_MESSAGES/kcmmousetheme.mo +share/locale/hr/LC_MESSAGES/kcmsmserver.mo +share/locale/hr/LC_MESSAGES/kcmstyle.mo +share/locale/hr/LC_MESSAGES/kfontinst.mo +share/locale/hr/LC_MESSAGES/knetattach5.mo +share/locale/hr/LC_MESSAGES/krdb.mo +share/locale/hr/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/hr/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo +share/locale/hr/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo +share/locale/hr/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo +share/locale/hr/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo +share/locale/hr/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo +share/locale/hr/LC_MESSAGES/plasma_runner_plasma-desktop.mo +share/locale/hsb/LC_MESSAGES/joystick.mo +share/locale/hsb/LC_MESSAGES/kaccess.mo +share/locale/hsb/LC_MESSAGES/kcm5_componentchooser.mo +share/locale/hsb/LC_MESSAGES/kcm5_emoticons.mo +share/locale/hsb/LC_MESSAGES/kcm5_icons.mo +share/locale/hsb/LC_MESSAGES/kcm5_kded.mo +share/locale/hsb/LC_MESSAGES/kcm5_notify.mo +share/locale/hsb/LC_MESSAGES/kcm5_phonon.mo +share/locale/hsb/LC_MESSAGES/kcm_autostart.mo +share/locale/hsb/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/hsb/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/hsb/LC_MESSAGES/kcm_standard_actions.mo +share/locale/hsb/LC_MESSAGES/kcmaccess.mo +share/locale/hsb/LC_MESSAGES/kcmcolors.mo +share/locale/hsb/LC_MESSAGES/kcmfonts.mo +share/locale/hsb/LC_MESSAGES/kcmformats.mo +share/locale/hsb/LC_MESSAGES/kcminput.mo +share/locale/hsb/LC_MESSAGES/kcmkclock.mo +share/locale/hsb/LC_MESSAGES/kcmkeyboard.mo +share/locale/hsb/LC_MESSAGES/kcmkeys.mo +share/locale/hsb/LC_MESSAGES/kcmlaunch.mo +share/locale/hsb/LC_MESSAGES/kcmmousetheme.mo +share/locale/hsb/LC_MESSAGES/kcmsmserver.mo +share/locale/hsb/LC_MESSAGES/kcmstyle.mo +share/locale/hsb/LC_MESSAGES/kfontinst.mo +share/locale/hsb/LC_MESSAGES/knetattach5.mo +share/locale/hsb/LC_MESSAGES/krdb.mo +share/locale/hsb/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/hsb/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo +share/locale/hsb/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo +share/locale/hsb/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo +share/locale/hu/LC_MESSAGES/attica_kde_plugin.mo +share/locale/hu/LC_MESSAGES/joystick.mo +share/locale/hu/LC_MESSAGES/kaccess.mo +share/locale/hu/LC_MESSAGES/kcm5_baloofile.mo +share/locale/hu/LC_MESSAGES/kcm5_componentchooser.mo +share/locale/hu/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/hu/LC_MESSAGES/kcm5_emoticons.mo +share/locale/hu/LC_MESSAGES/kcm5_icons.mo +share/locale/hu/LC_MESSAGES/kcm5_kded.mo +share/locale/hu/LC_MESSAGES/kcm5_notify.mo +share/locale/hu/LC_MESSAGES/kcm5_phonon.mo +share/locale/hu/LC_MESSAGES/kcm_activities5.mo +share/locale/hu/LC_MESSAGES/kcm_autostart.mo +share/locale/hu/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/hu/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/hu/LC_MESSAGES/kcm_lookandfeel.mo +share/locale/hu/LC_MESSAGES/kcm_search.mo +share/locale/hu/LC_MESSAGES/kcm_solid_actions.mo +share/locale/hu/LC_MESSAGES/kcm_splashscreen.mo +share/locale/hu/LC_MESSAGES/kcm_standard_actions.mo +share/locale/hu/LC_MESSAGES/kcm_touchpad.mo +share/locale/hu/LC_MESSAGES/kcmaccess.mo +share/locale/hu/LC_MESSAGES/kcmcolors.mo +share/locale/hu/LC_MESSAGES/kcmfonts.mo +share/locale/hu/LC_MESSAGES/kcmformats.mo +share/locale/hu/LC_MESSAGES/kcminput.mo +share/locale/hu/LC_MESSAGES/kcmkclock.mo +share/locale/hu/LC_MESSAGES/kcmkeyboard.mo +share/locale/hu/LC_MESSAGES/kcmkeys.mo +share/locale/hu/LC_MESSAGES/kcmlaunch.mo +share/locale/hu/LC_MESSAGES/kcmmousetheme.mo +share/locale/hu/LC_MESSAGES/kcmsmserver.mo +share/locale/hu/LC_MESSAGES/kcmstyle.mo +share/locale/hu/LC_MESSAGES/kcmtranslations.mo +share/locale/hu/LC_MESSAGES/kcmworkspaceoptions.mo +share/locale/hu/LC_MESSAGES/kfontinst.mo +share/locale/hu/LC_MESSAGES/knetattach5.mo +share/locale/hu/LC_MESSAGES/krdb.mo +share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo +share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo +share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo +share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo +share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo +share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo +share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo +share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo +share/locale/hu/LC_MESSAGES/plasma_applet_touchpad.mo +share/locale/hu/LC_MESSAGES/plasma_runner_kwin.mo +share/locale/hu/LC_MESSAGES/plasma_runner_plasma-desktop.mo +share/locale/hu/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo +share/locale/hu/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo +share/locale/hu/LC_MESSAGES/plasmaactivitymanager.mo +share/locale/hy/LC_MESSAGES/kfontinst.mo +share/locale/ia/LC_MESSAGES/attica_kde_plugin.mo +share/locale/ia/LC_MESSAGES/joystick.mo +share/locale/ia/LC_MESSAGES/kaccess.mo +share/locale/ia/LC_MESSAGES/kcm5_baloofile.mo +share/locale/ia/LC_MESSAGES/kcm5_componentchooser.mo +share/locale/ia/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/ia/LC_MESSAGES/kcm5_emoticons.mo +share/locale/ia/LC_MESSAGES/kcm5_icons.mo +share/locale/ia/LC_MESSAGES/kcm5_kded.mo +share/locale/ia/LC_MESSAGES/kcm5_notify.mo +share/locale/ia/LC_MESSAGES/kcm5_phonon.mo +share/locale/ia/LC_MESSAGES/kcm_activities5.mo +share/locale/ia/LC_MESSAGES/kcm_autostart.mo +share/locale/ia/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/ia/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/ia/LC_MESSAGES/kcm_lookandfeel.mo +share/locale/ia/LC_MESSAGES/kcm_search.mo +share/locale/ia/LC_MESSAGES/kcm_solid_actions.mo +share/locale/ia/LC_MESSAGES/kcm_splashscreen.mo +share/locale/ia/LC_MESSAGES/kcm_standard_actions.mo +share/locale/ia/LC_MESSAGES/kcm_touchpad.mo +share/locale/ia/LC_MESSAGES/kcmaccess.mo +share/locale/ia/LC_MESSAGES/kcmcolors.mo +share/locale/ia/LC_MESSAGES/kcmfonts.mo +share/locale/ia/LC_MESSAGES/kcmformats.mo +share/locale/ia/LC_MESSAGES/kcminput.mo +share/locale/ia/LC_MESSAGES/kcmkclock.mo +share/locale/ia/LC_MESSAGES/kcmkeyboard.mo +share/locale/ia/LC_MESSAGES/kcmkeys.mo +share/locale/ia/LC_MESSAGES/kcmlaunch.mo +share/locale/ia/LC_MESSAGES/kcmmousetheme.mo +share/locale/ia/LC_MESSAGES/kcmsmserver.mo +share/locale/ia/LC_MESSAGES/kcmstyle.mo +share/locale/ia/LC_MESSAGES/kcmtranslations.mo +share/locale/ia/LC_MESSAGES/kcmworkspaceoptions.mo +share/locale/ia/LC_MESSAGES/kfontinst.mo +share/locale/ia/LC_MESSAGES/knetattach5.mo +share/locale/ia/LC_MESSAGES/krdb.mo +share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo +share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo +share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo +share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo +share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo +share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo +share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo +share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo +share/locale/ia/LC_MESSAGES/plasma_applet_touchpad.mo +share/locale/ia/LC_MESSAGES/plasma_runner_kwin.mo +share/locale/ia/LC_MESSAGES/plasma_runner_plasma-desktop.mo +share/locale/ia/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo +share/locale/ia/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo +share/locale/ia/LC_MESSAGES/plasmaactivitymanager.mo +share/locale/id/LC_MESSAGES/attica_kde_plugin.mo +share/locale/id/LC_MESSAGES/joystick.mo +share/locale/id/LC_MESSAGES/kaccess.mo +share/locale/id/LC_MESSAGES/kcm5_componentchooser.mo +share/locale/id/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/id/LC_MESSAGES/kcm5_emoticons.mo +share/locale/id/LC_MESSAGES/kcm5_icons.mo +share/locale/id/LC_MESSAGES/kcm5_kded.mo +share/locale/id/LC_MESSAGES/kcm5_notify.mo +share/locale/id/LC_MESSAGES/kcm5_phonon.mo +share/locale/id/LC_MESSAGES/kcm_autostart.mo +share/locale/id/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/id/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/id/LC_MESSAGES/kcm_solid_actions.mo +share/locale/id/LC_MESSAGES/kcm_standard_actions.mo +share/locale/id/LC_MESSAGES/kcm_touchpad.mo +share/locale/id/LC_MESSAGES/kcmaccess.mo +share/locale/id/LC_MESSAGES/kcmcolors.mo +share/locale/id/LC_MESSAGES/kcmfonts.mo +share/locale/id/LC_MESSAGES/kcmformats.mo +share/locale/id/LC_MESSAGES/kcminput.mo +share/locale/id/LC_MESSAGES/kcmkclock.mo +share/locale/id/LC_MESSAGES/kcmkeyboard.mo +share/locale/id/LC_MESSAGES/kcmkeys.mo +share/locale/id/LC_MESSAGES/kcmlaunch.mo +share/locale/id/LC_MESSAGES/kcmmousetheme.mo +share/locale/id/LC_MESSAGES/kcmsmserver.mo +share/locale/id/LC_MESSAGES/kcmstyle.mo +share/locale/id/LC_MESSAGES/kfontinst.mo +share/locale/id/LC_MESSAGES/knetattach5.mo +share/locale/id/LC_MESSAGES/krdb.mo +share/locale/id/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo +share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo +share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo +share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo +share/locale/id/LC_MESSAGES/plasma_applet_touchpad.mo +share/locale/id/LC_MESSAGES/plasma_runner_plasma-desktop.mo +share/locale/is/LC_MESSAGES/attica_kde_plugin.mo +share/locale/is/LC_MESSAGES/joystick.mo +share/locale/is/LC_MESSAGES/kaccess.mo +share/locale/is/LC_MESSAGES/kcm5_componentchooser.mo +share/locale/is/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/is/LC_MESSAGES/kcm5_emoticons.mo +share/locale/is/LC_MESSAGES/kcm5_icons.mo +share/locale/is/LC_MESSAGES/kcm5_kded.mo +share/locale/is/LC_MESSAGES/kcm5_notify.mo +share/locale/is/LC_MESSAGES/kcm5_phonon.mo +share/locale/is/LC_MESSAGES/kcm_autostart.mo +share/locale/is/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/is/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/is/LC_MESSAGES/kcm_solid_actions.mo +share/locale/is/LC_MESSAGES/kcm_standard_actions.mo +share/locale/is/LC_MESSAGES/kcmaccess.mo +share/locale/is/LC_MESSAGES/kcmcolors.mo +share/locale/is/LC_MESSAGES/kcmfonts.mo +share/locale/is/LC_MESSAGES/kcmformats.mo +share/locale/is/LC_MESSAGES/kcminput.mo +share/locale/is/LC_MESSAGES/kcmkclock.mo +share/locale/is/LC_MESSAGES/kcmkeyboard.mo +share/locale/is/LC_MESSAGES/kcmkeys.mo +share/locale/is/LC_MESSAGES/kcmlaunch.mo +share/locale/is/LC_MESSAGES/kcmmousetheme.mo +share/locale/is/LC_MESSAGES/kcmsmserver.mo +share/locale/is/LC_MESSAGES/kcmstyle.mo +share/locale/is/LC_MESSAGES/kfontinst.mo +share/locale/is/LC_MESSAGES/knetattach5.mo +share/locale/is/LC_MESSAGES/krdb.mo +share/locale/is/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo +share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo +share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo +share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo +share/locale/is/LC_MESSAGES/plasma_runner_plasma-desktop.mo +share/locale/it/LC_MESSAGES/attica_kde_plugin.mo +share/locale/it/LC_MESSAGES/joystick.mo +share/locale/it/LC_MESSAGES/kaccess.mo +share/locale/it/LC_MESSAGES/kcm5_baloofile.mo +share/locale/it/LC_MESSAGES/kcm5_componentchooser.mo +share/locale/it/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/it/LC_MESSAGES/kcm5_emoticons.mo +share/locale/it/LC_MESSAGES/kcm5_icons.mo +share/locale/it/LC_MESSAGES/kcm5_kded.mo +share/locale/it/LC_MESSAGES/kcm5_notify.mo +share/locale/it/LC_MESSAGES/kcm5_phonon.mo +share/locale/it/LC_MESSAGES/kcm_activities5.mo +share/locale/it/LC_MESSAGES/kcm_autostart.mo +share/locale/it/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/it/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/it/LC_MESSAGES/kcm_lookandfeel.mo +share/locale/it/LC_MESSAGES/kcm_nightcolor.mo +share/locale/it/LC_MESSAGES/kcm_search.mo +share/locale/it/LC_MESSAGES/kcm_solid_actions.mo +share/locale/it/LC_MESSAGES/kcm_splashscreen.mo +share/locale/it/LC_MESSAGES/kcm_standard_actions.mo +share/locale/it/LC_MESSAGES/kcm_touchpad.mo +share/locale/it/LC_MESSAGES/kcmaccess.mo +share/locale/it/LC_MESSAGES/kcmcolors.mo +share/locale/it/LC_MESSAGES/kcmfonts.mo +share/locale/it/LC_MESSAGES/kcmformats.mo +share/locale/it/LC_MESSAGES/kcminput.mo +share/locale/it/LC_MESSAGES/kcmkclock.mo +share/locale/it/LC_MESSAGES/kcmkeyboard.mo +share/locale/it/LC_MESSAGES/kcmkeys.mo +share/locale/it/LC_MESSAGES/kcmlaunch.mo +share/locale/it/LC_MESSAGES/kcmmousetheme.mo +share/locale/it/LC_MESSAGES/kcmsmserver.mo +share/locale/it/LC_MESSAGES/kcmstyle.mo +share/locale/it/LC_MESSAGES/kcmtranslations.mo +share/locale/it/LC_MESSAGES/kcmworkspaceoptions.mo +share/locale/it/LC_MESSAGES/kfontinst.mo +share/locale/it/LC_MESSAGES/knetattach5.mo +share/locale/it/LC_MESSAGES/krdb.mo +share/locale/it/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/it/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo +share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo +share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo +share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo +share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo +share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo +share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo +share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo +share/locale/it/LC_MESSAGES/plasma_applet_touchpad.mo +share/locale/it/LC_MESSAGES/plasma_runner_kwin.mo +share/locale/it/LC_MESSAGES/plasma_runner_plasma-desktop.mo +share/locale/it/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo +share/locale/it/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo +share/locale/it/LC_MESSAGES/plasmaactivitymanager.mo +share/locale/ja/LC_MESSAGES/attica_kde_plugin.mo +share/locale/ja/LC_MESSAGES/joystick.mo +share/locale/ja/LC_MESSAGES/kaccess.mo +share/locale/ja/LC_MESSAGES/kcm5_baloofile.mo +share/locale/ja/LC_MESSAGES/kcm5_componentchooser.mo +share/locale/ja/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/ja/LC_MESSAGES/kcm5_emoticons.mo +share/locale/ja/LC_MESSAGES/kcm5_icons.mo +share/locale/ja/LC_MESSAGES/kcm5_kded.mo +share/locale/ja/LC_MESSAGES/kcm5_notify.mo +share/locale/ja/LC_MESSAGES/kcm5_phonon.mo +share/locale/ja/LC_MESSAGES/kcm_activities5.mo +share/locale/ja/LC_MESSAGES/kcm_autostart.mo +share/locale/ja/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/ja/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/ja/LC_MESSAGES/kcm_lookandfeel.mo +share/locale/ja/LC_MESSAGES/kcm_nightcolor.mo +share/locale/ja/LC_MESSAGES/kcm_search.mo +share/locale/ja/LC_MESSAGES/kcm_solid_actions.mo +share/locale/ja/LC_MESSAGES/kcm_splashscreen.mo +share/locale/ja/LC_MESSAGES/kcm_standard_actions.mo +share/locale/ja/LC_MESSAGES/kcm_touchpad.mo +share/locale/ja/LC_MESSAGES/kcmaccess.mo +share/locale/ja/LC_MESSAGES/kcmcolors.mo +share/locale/ja/LC_MESSAGES/kcmfonts.mo +share/locale/ja/LC_MESSAGES/kcmformats.mo +share/locale/ja/LC_MESSAGES/kcminput.mo +share/locale/ja/LC_MESSAGES/kcmkclock.mo +share/locale/ja/LC_MESSAGES/kcmkeyboard.mo +share/locale/ja/LC_MESSAGES/kcmkeys.mo +share/locale/ja/LC_MESSAGES/kcmlaunch.mo +share/locale/ja/LC_MESSAGES/kcmmousetheme.mo +share/locale/ja/LC_MESSAGES/kcmsmserver.mo +share/locale/ja/LC_MESSAGES/kcmstyle.mo +share/locale/ja/LC_MESSAGES/kcmtranslations.mo +share/locale/ja/LC_MESSAGES/kcmworkspaceoptions.mo +share/locale/ja/LC_MESSAGES/kfontinst.mo +share/locale/ja/LC_MESSAGES/knetattach5.mo +share/locale/ja/LC_MESSAGES/krdb.mo +share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo +share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo +share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo +share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo +share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo +share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo +share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo +share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo +share/locale/ja/LC_MESSAGES/plasma_applet_touchpad.mo +share/locale/ja/LC_MESSAGES/plasma_runner_kwin.mo +share/locale/ja/LC_MESSAGES/plasma_runner_plasma-desktop.mo +share/locale/ja/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo +share/locale/ja/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo +share/locale/ja/LC_MESSAGES/plasmaactivitymanager.mo +share/locale/kk/LC_MESSAGES/attica_kde_plugin.mo +share/locale/kk/LC_MESSAGES/joystick.mo +share/locale/kk/LC_MESSAGES/kaccess.mo +share/locale/kk/LC_MESSAGES/kcm5_componentchooser.mo +share/locale/kk/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/kk/LC_MESSAGES/kcm5_emoticons.mo +share/locale/kk/LC_MESSAGES/kcm5_icons.mo +share/locale/kk/LC_MESSAGES/kcm5_kded.mo +share/locale/kk/LC_MESSAGES/kcm5_notify.mo +share/locale/kk/LC_MESSAGES/kcm5_phonon.mo +share/locale/kk/LC_MESSAGES/kcm_autostart.mo +share/locale/kk/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/kk/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/kk/LC_MESSAGES/kcm_solid_actions.mo +share/locale/kk/LC_MESSAGES/kcm_standard_actions.mo +share/locale/kk/LC_MESSAGES/kcmaccess.mo +share/locale/kk/LC_MESSAGES/kcmcolors.mo +share/locale/kk/LC_MESSAGES/kcmfonts.mo +share/locale/kk/LC_MESSAGES/kcmformats.mo +share/locale/kk/LC_MESSAGES/kcminput.mo +share/locale/kk/LC_MESSAGES/kcmkclock.mo +share/locale/kk/LC_MESSAGES/kcmkeyboard.mo +share/locale/kk/LC_MESSAGES/kcmkeys.mo +share/locale/kk/LC_MESSAGES/kcmlaunch.mo +share/locale/kk/LC_MESSAGES/kcmmousetheme.mo +share/locale/kk/LC_MESSAGES/kcmsmserver.mo +share/locale/kk/LC_MESSAGES/kcmstyle.mo +share/locale/kk/LC_MESSAGES/kfontinst.mo +share/locale/kk/LC_MESSAGES/knetattach5.mo +share/locale/kk/LC_MESSAGES/krdb.mo +share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo +share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo +share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo +share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo +share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo +share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo +share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo +share/locale/kk/LC_MESSAGES/plasma_runner_plasma-desktop.mo +share/locale/kk/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo +share/locale/km/LC_MESSAGES/attica_kde_plugin.mo +share/locale/km/LC_MESSAGES/joystick.mo +share/locale/km/LC_MESSAGES/kaccess.mo +share/locale/km/LC_MESSAGES/kcm5_componentchooser.mo +share/locale/km/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/km/LC_MESSAGES/kcm5_emoticons.mo +share/locale/km/LC_MESSAGES/kcm5_icons.mo +share/locale/km/LC_MESSAGES/kcm5_kded.mo +share/locale/km/LC_MESSAGES/kcm5_notify.mo +share/locale/km/LC_MESSAGES/kcm5_phonon.mo +share/locale/km/LC_MESSAGES/kcm_autostart.mo +share/locale/km/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/km/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/km/LC_MESSAGES/kcm_solid_actions.mo +share/locale/km/LC_MESSAGES/kcm_standard_actions.mo +share/locale/km/LC_MESSAGES/kcmaccess.mo +share/locale/km/LC_MESSAGES/kcmcolors.mo +share/locale/km/LC_MESSAGES/kcmfonts.mo +share/locale/km/LC_MESSAGES/kcmformats.mo +share/locale/km/LC_MESSAGES/kcminput.mo +share/locale/km/LC_MESSAGES/kcmkclock.mo +share/locale/km/LC_MESSAGES/kcmkeyboard.mo +share/locale/km/LC_MESSAGES/kcmkeys.mo +share/locale/km/LC_MESSAGES/kcmlaunch.mo +share/locale/km/LC_MESSAGES/kcmmousetheme.mo +share/locale/km/LC_MESSAGES/kcmsmserver.mo +share/locale/km/LC_MESSAGES/kcmstyle.mo +share/locale/km/LC_MESSAGES/kfontinst.mo +share/locale/km/LC_MESSAGES/knetattach5.mo +share/locale/km/LC_MESSAGES/krdb.mo +share/locale/km/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/km/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo +share/locale/km/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo +share/locale/km/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo +share/locale/km/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo +share/locale/km/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo +share/locale/km/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo +share/locale/km/LC_MESSAGES/plasma_runner_plasma-desktop.mo +share/locale/kn/LC_MESSAGES/attica_kde_plugin.mo +share/locale/kn/LC_MESSAGES/joystick.mo +share/locale/kn/LC_MESSAGES/kaccess.mo +share/locale/kn/LC_MESSAGES/kcm5_componentchooser.mo +share/locale/kn/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/kn/LC_MESSAGES/kcm5_emoticons.mo +share/locale/kn/LC_MESSAGES/kcm5_icons.mo +share/locale/kn/LC_MESSAGES/kcm5_kded.mo +share/locale/kn/LC_MESSAGES/kcm5_notify.mo +share/locale/kn/LC_MESSAGES/kcm5_phonon.mo +share/locale/kn/LC_MESSAGES/kcm_autostart.mo +share/locale/kn/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/kn/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/kn/LC_MESSAGES/kcm_standard_actions.mo +share/locale/kn/LC_MESSAGES/kcmaccess.mo +share/locale/kn/LC_MESSAGES/kcmcolors.mo +share/locale/kn/LC_MESSAGES/kcmfonts.mo +share/locale/kn/LC_MESSAGES/kcmformats.mo +share/locale/kn/LC_MESSAGES/kcminput.mo +share/locale/kn/LC_MESSAGES/kcmkclock.mo +share/locale/kn/LC_MESSAGES/kcmkeyboard.mo +share/locale/kn/LC_MESSAGES/kcmkeys.mo +share/locale/kn/LC_MESSAGES/kcmlaunch.mo +share/locale/kn/LC_MESSAGES/kcmmousetheme.mo +share/locale/kn/LC_MESSAGES/kcmsmserver.mo +share/locale/kn/LC_MESSAGES/kcmstyle.mo +share/locale/kn/LC_MESSAGES/kfontinst.mo +share/locale/kn/LC_MESSAGES/knetattach5.mo +share/locale/kn/LC_MESSAGES/krdb.mo +share/locale/kn/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/kn/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo +share/locale/kn/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo +share/locale/kn/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo +share/locale/kn/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo +share/locale/kn/LC_MESSAGES/plasma_runner_plasma-desktop.mo +share/locale/ko/LC_MESSAGES/attica_kde_plugin.mo +share/locale/ko/LC_MESSAGES/joystick.mo +share/locale/ko/LC_MESSAGES/kaccess.mo +share/locale/ko/LC_MESSAGES/kcm5_baloofile.mo +share/locale/ko/LC_MESSAGES/kcm5_componentchooser.mo +share/locale/ko/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/ko/LC_MESSAGES/kcm5_emoticons.mo +share/locale/ko/LC_MESSAGES/kcm5_icons.mo +share/locale/ko/LC_MESSAGES/kcm5_kded.mo +share/locale/ko/LC_MESSAGES/kcm5_notify.mo +share/locale/ko/LC_MESSAGES/kcm5_phonon.mo +share/locale/ko/LC_MESSAGES/kcm_activities5.mo +share/locale/ko/LC_MESSAGES/kcm_autostart.mo +share/locale/ko/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/ko/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/ko/LC_MESSAGES/kcm_lookandfeel.mo +share/locale/ko/LC_MESSAGES/kcm_search.mo +share/locale/ko/LC_MESSAGES/kcm_solid_actions.mo +share/locale/ko/LC_MESSAGES/kcm_splashscreen.mo +share/locale/ko/LC_MESSAGES/kcm_standard_actions.mo +share/locale/ko/LC_MESSAGES/kcm_touchpad.mo +share/locale/ko/LC_MESSAGES/kcmaccess.mo +share/locale/ko/LC_MESSAGES/kcmcolors.mo +share/locale/ko/LC_MESSAGES/kcmfonts.mo +share/locale/ko/LC_MESSAGES/kcmformats.mo +share/locale/ko/LC_MESSAGES/kcminput.mo +share/locale/ko/LC_MESSAGES/kcmkclock.mo +share/locale/ko/LC_MESSAGES/kcmkeyboard.mo +share/locale/ko/LC_MESSAGES/kcmkeys.mo +share/locale/ko/LC_MESSAGES/kcmlaunch.mo +share/locale/ko/LC_MESSAGES/kcmmousetheme.mo +share/locale/ko/LC_MESSAGES/kcmsmserver.mo +share/locale/ko/LC_MESSAGES/kcmstyle.mo +share/locale/ko/LC_MESSAGES/kcmtranslations.mo +share/locale/ko/LC_MESSAGES/kcmworkspaceoptions.mo +share/locale/ko/LC_MESSAGES/kfontinst.mo +share/locale/ko/LC_MESSAGES/knetattach5.mo +share/locale/ko/LC_MESSAGES/krdb.mo +share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo +share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo +share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo +share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo +share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo +share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo +share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo +share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo +share/locale/ko/LC_MESSAGES/plasma_applet_touchpad.mo +share/locale/ko/LC_MESSAGES/plasma_runner_kwin.mo +share/locale/ko/LC_MESSAGES/plasma_runner_plasma-desktop.mo +share/locale/ko/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo +share/locale/ko/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo +share/locale/ko/LC_MESSAGES/plasmaactivitymanager.mo +share/locale/ku/LC_MESSAGES/joystick.mo +share/locale/ku/LC_MESSAGES/kaccess.mo +share/locale/ku/LC_MESSAGES/kcm5_componentchooser.mo +share/locale/ku/LC_MESSAGES/kcm5_emoticons.mo +share/locale/ku/LC_MESSAGES/kcm5_icons.mo +share/locale/ku/LC_MESSAGES/kcm5_kded.mo +share/locale/ku/LC_MESSAGES/kcm5_notify.mo +share/locale/ku/LC_MESSAGES/kcm5_phonon.mo +share/locale/ku/LC_MESSAGES/kcm_autostart.mo +share/locale/ku/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/ku/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/ku/LC_MESSAGES/kcm_standard_actions.mo +share/locale/ku/LC_MESSAGES/kcmaccess.mo +share/locale/ku/LC_MESSAGES/kcmcolors.mo +share/locale/ku/LC_MESSAGES/kcmfonts.mo +share/locale/ku/LC_MESSAGES/kcmformats.mo +share/locale/ku/LC_MESSAGES/kcminput.mo +share/locale/ku/LC_MESSAGES/kcmkclock.mo +share/locale/ku/LC_MESSAGES/kcmkeyboard.mo +share/locale/ku/LC_MESSAGES/kcmkeys.mo +share/locale/ku/LC_MESSAGES/kcmlaunch.mo +share/locale/ku/LC_MESSAGES/kcmmousetheme.mo +share/locale/ku/LC_MESSAGES/kcmsmserver.mo +share/locale/ku/LC_MESSAGES/kcmstyle.mo +share/locale/ku/LC_MESSAGES/kfontinst.mo +share/locale/ku/LC_MESSAGES/knetattach5.mo +share/locale/ku/LC_MESSAGES/krdb.mo +share/locale/ku/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/ku/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo +share/locale/ku/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo +share/locale/ku/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo +share/locale/lt/LC_MESSAGES/attica_kde_plugin.mo +share/locale/lt/LC_MESSAGES/joystick.mo +share/locale/lt/LC_MESSAGES/kaccess.mo +share/locale/lt/LC_MESSAGES/kcm5_baloofile.mo +share/locale/lt/LC_MESSAGES/kcm5_componentchooser.mo +share/locale/lt/LC_MESSAGES/kcm5_emoticons.mo +share/locale/lt/LC_MESSAGES/kcm5_icons.mo +share/locale/lt/LC_MESSAGES/kcm5_kded.mo +share/locale/lt/LC_MESSAGES/kcm5_notify.mo +share/locale/lt/LC_MESSAGES/kcm5_phonon.mo +share/locale/lt/LC_MESSAGES/kcm_activities5.mo +share/locale/lt/LC_MESSAGES/kcm_autostart.mo +share/locale/lt/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/lt/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/lt/LC_MESSAGES/kcm_lookandfeel.mo +share/locale/lt/LC_MESSAGES/kcm_search.mo +share/locale/lt/LC_MESSAGES/kcm_solid_actions.mo +share/locale/lt/LC_MESSAGES/kcm_splashscreen.mo +share/locale/lt/LC_MESSAGES/kcm_standard_actions.mo +share/locale/lt/LC_MESSAGES/kcm_touchpad.mo +share/locale/lt/LC_MESSAGES/kcmaccess.mo +share/locale/lt/LC_MESSAGES/kcmcolors.mo +share/locale/lt/LC_MESSAGES/kcmfonts.mo +share/locale/lt/LC_MESSAGES/kcmformats.mo +share/locale/lt/LC_MESSAGES/kcminput.mo +share/locale/lt/LC_MESSAGES/kcmkclock.mo +share/locale/lt/LC_MESSAGES/kcmkeyboard.mo +share/locale/lt/LC_MESSAGES/kcmkeys.mo +share/locale/lt/LC_MESSAGES/kcmlaunch.mo +share/locale/lt/LC_MESSAGES/kcmmousetheme.mo +share/locale/lt/LC_MESSAGES/kcmsmserver.mo +share/locale/lt/LC_MESSAGES/kcmstyle.mo +share/locale/lt/LC_MESSAGES/kcmtranslations.mo +share/locale/lt/LC_MESSAGES/kcmworkspaceoptions.mo +share/locale/lt/LC_MESSAGES/kfontinst.mo +share/locale/lt/LC_MESSAGES/knetattach5.mo +share/locale/lt/LC_MESSAGES/krdb.mo +share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo +share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo +share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo +share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo +share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo +share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo +share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo +share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo +share/locale/lt/LC_MESSAGES/plasma_applet_touchpad.mo +share/locale/lt/LC_MESSAGES/plasma_runner_plasma-desktop.mo +share/locale/lt/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo +share/locale/lt/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo +share/locale/lv/LC_MESSAGES/attica_kde_plugin.mo +share/locale/lv/LC_MESSAGES/joystick.mo +share/locale/lv/LC_MESSAGES/kaccess.mo +share/locale/lv/LC_MESSAGES/kcm5_componentchooser.mo +share/locale/lv/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/lv/LC_MESSAGES/kcm5_emoticons.mo +share/locale/lv/LC_MESSAGES/kcm5_icons.mo +share/locale/lv/LC_MESSAGES/kcm5_kded.mo +share/locale/lv/LC_MESSAGES/kcm5_notify.mo +share/locale/lv/LC_MESSAGES/kcm5_phonon.mo +share/locale/lv/LC_MESSAGES/kcm_autostart.mo +share/locale/lv/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/lv/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/lv/LC_MESSAGES/kcm_solid_actions.mo +share/locale/lv/LC_MESSAGES/kcm_standard_actions.mo +share/locale/lv/LC_MESSAGES/kcmaccess.mo +share/locale/lv/LC_MESSAGES/kcmcolors.mo +share/locale/lv/LC_MESSAGES/kcmfonts.mo +share/locale/lv/LC_MESSAGES/kcmformats.mo +share/locale/lv/LC_MESSAGES/kcminput.mo +share/locale/lv/LC_MESSAGES/kcmkclock.mo +share/locale/lv/LC_MESSAGES/kcmkeyboard.mo +share/locale/lv/LC_MESSAGES/kcmkeys.mo +share/locale/lv/LC_MESSAGES/kcmlaunch.mo +share/locale/lv/LC_MESSAGES/kcmmousetheme.mo +share/locale/lv/LC_MESSAGES/kcmsmserver.mo +share/locale/lv/LC_MESSAGES/kcmstyle.mo +share/locale/lv/LC_MESSAGES/kfontinst.mo +share/locale/lv/LC_MESSAGES/knetattach5.mo +share/locale/lv/LC_MESSAGES/krdb.mo +share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo +share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo +share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo +share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo +share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo +share/locale/lv/LC_MESSAGES/plasma_runner_plasma-desktop.mo +share/locale/mai/LC_MESSAGES/attica_kde_plugin.mo +share/locale/mai/LC_MESSAGES/joystick.mo +share/locale/mai/LC_MESSAGES/kaccess.mo +share/locale/mai/LC_MESSAGES/kcm5_componentchooser.mo +share/locale/mai/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/mai/LC_MESSAGES/kcm5_emoticons.mo +share/locale/mai/LC_MESSAGES/kcm5_icons.mo +share/locale/mai/LC_MESSAGES/kcm5_kded.mo +share/locale/mai/LC_MESSAGES/kcm5_notify.mo +share/locale/mai/LC_MESSAGES/kcm5_phonon.mo +share/locale/mai/LC_MESSAGES/kcm_autostart.mo +share/locale/mai/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/mai/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/mai/LC_MESSAGES/kcm_solid_actions.mo +share/locale/mai/LC_MESSAGES/kcm_standard_actions.mo +share/locale/mai/LC_MESSAGES/kcmaccess.mo +share/locale/mai/LC_MESSAGES/kcmcolors.mo +share/locale/mai/LC_MESSAGES/kcmfonts.mo +share/locale/mai/LC_MESSAGES/kcmformats.mo +share/locale/mai/LC_MESSAGES/kcminput.mo +share/locale/mai/LC_MESSAGES/kcmkclock.mo +share/locale/mai/LC_MESSAGES/kcmkeyboard.mo +share/locale/mai/LC_MESSAGES/kcmkeys.mo +share/locale/mai/LC_MESSAGES/kcmlaunch.mo +share/locale/mai/LC_MESSAGES/kcmmousetheme.mo +share/locale/mai/LC_MESSAGES/kcmsmserver.mo +share/locale/mai/LC_MESSAGES/kcmstyle.mo +share/locale/mai/LC_MESSAGES/kfontinst.mo +share/locale/mai/LC_MESSAGES/knetattach5.mo +share/locale/mai/LC_MESSAGES/krdb.mo +share/locale/mai/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/mai/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo +share/locale/mai/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo +share/locale/mai/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo +share/locale/mai/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo +share/locale/mai/LC_MESSAGES/plasma_runner_plasma-desktop.mo +share/locale/mk/LC_MESSAGES/joystick.mo +share/locale/mk/LC_MESSAGES/kaccess.mo +share/locale/mk/LC_MESSAGES/kcm5_componentchooser.mo +share/locale/mk/LC_MESSAGES/kcm5_emoticons.mo +share/locale/mk/LC_MESSAGES/kcm5_icons.mo +share/locale/mk/LC_MESSAGES/kcm5_kded.mo +share/locale/mk/LC_MESSAGES/kcm5_notify.mo +share/locale/mk/LC_MESSAGES/kcm5_phonon.mo +share/locale/mk/LC_MESSAGES/kcm_autostart.mo +share/locale/mk/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/mk/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/mk/LC_MESSAGES/kcm_standard_actions.mo +share/locale/mk/LC_MESSAGES/kcmaccess.mo +share/locale/mk/LC_MESSAGES/kcmcolors.mo +share/locale/mk/LC_MESSAGES/kcmfonts.mo +share/locale/mk/LC_MESSAGES/kcmformats.mo +share/locale/mk/LC_MESSAGES/kcminput.mo +share/locale/mk/LC_MESSAGES/kcmkclock.mo +share/locale/mk/LC_MESSAGES/kcmkeyboard.mo +share/locale/mk/LC_MESSAGES/kcmkeys.mo +share/locale/mk/LC_MESSAGES/kcmlaunch.mo +share/locale/mk/LC_MESSAGES/kcmmousetheme.mo +share/locale/mk/LC_MESSAGES/kcmsmserver.mo +share/locale/mk/LC_MESSAGES/kcmstyle.mo +share/locale/mk/LC_MESSAGES/kfontinst.mo +share/locale/mk/LC_MESSAGES/knetattach5.mo +share/locale/mk/LC_MESSAGES/krdb.mo +share/locale/mk/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/mk/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo +share/locale/mk/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo +share/locale/mk/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo +share/locale/ml/LC_MESSAGES/attica_kde_plugin.mo +share/locale/ml/LC_MESSAGES/joystick.mo +share/locale/ml/LC_MESSAGES/kaccess.mo +share/locale/ml/LC_MESSAGES/kcm5_componentchooser.mo +share/locale/ml/LC_MESSAGES/kcm5_emoticons.mo +share/locale/ml/LC_MESSAGES/kcm5_icons.mo +share/locale/ml/LC_MESSAGES/kcm5_kded.mo +share/locale/ml/LC_MESSAGES/kcm5_notify.mo +share/locale/ml/LC_MESSAGES/kcm5_phonon.mo +share/locale/ml/LC_MESSAGES/kcm_autostart.mo +share/locale/ml/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/ml/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/ml/LC_MESSAGES/kcm_solid_actions.mo +share/locale/ml/LC_MESSAGES/kcm_standard_actions.mo +share/locale/ml/LC_MESSAGES/kcmaccess.mo +share/locale/ml/LC_MESSAGES/kcmcolors.mo +share/locale/ml/LC_MESSAGES/kcmfonts.mo +share/locale/ml/LC_MESSAGES/kcmformats.mo +share/locale/ml/LC_MESSAGES/kcminput.mo +share/locale/ml/LC_MESSAGES/kcmkclock.mo +share/locale/ml/LC_MESSAGES/kcmkeyboard.mo +share/locale/ml/LC_MESSAGES/kcmkeys.mo +share/locale/ml/LC_MESSAGES/kcmlaunch.mo +share/locale/ml/LC_MESSAGES/kcmmousetheme.mo +share/locale/ml/LC_MESSAGES/kcmsmserver.mo +share/locale/ml/LC_MESSAGES/kcmstyle.mo +share/locale/ml/LC_MESSAGES/kfontinst.mo +share/locale/ml/LC_MESSAGES/knetattach5.mo +share/locale/ml/LC_MESSAGES/krdb.mo +share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo +share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo +share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo +share/locale/mr/LC_MESSAGES/attica_kde_plugin.mo +share/locale/mr/LC_MESSAGES/joystick.mo +share/locale/mr/LC_MESSAGES/kaccess.mo +share/locale/mr/LC_MESSAGES/kcm5_componentchooser.mo +share/locale/mr/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/mr/LC_MESSAGES/kcm5_emoticons.mo +share/locale/mr/LC_MESSAGES/kcm5_icons.mo +share/locale/mr/LC_MESSAGES/kcm5_kded.mo +share/locale/mr/LC_MESSAGES/kcm5_notify.mo +share/locale/mr/LC_MESSAGES/kcm5_phonon.mo +share/locale/mr/LC_MESSAGES/kcm_autostart.mo +share/locale/mr/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/mr/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/mr/LC_MESSAGES/kcm_solid_actions.mo +share/locale/mr/LC_MESSAGES/kcm_standard_actions.mo +share/locale/mr/LC_MESSAGES/kcmaccess.mo +share/locale/mr/LC_MESSAGES/kcmcolors.mo +share/locale/mr/LC_MESSAGES/kcmfonts.mo +share/locale/mr/LC_MESSAGES/kcmformats.mo +share/locale/mr/LC_MESSAGES/kcminput.mo +share/locale/mr/LC_MESSAGES/kcmkclock.mo +share/locale/mr/LC_MESSAGES/kcmkeyboard.mo +share/locale/mr/LC_MESSAGES/kcmkeys.mo +share/locale/mr/LC_MESSAGES/kcmlaunch.mo +share/locale/mr/LC_MESSAGES/kcmmousetheme.mo +share/locale/mr/LC_MESSAGES/kcmsmserver.mo +share/locale/mr/LC_MESSAGES/kcmstyle.mo +share/locale/mr/LC_MESSAGES/kfontinst.mo +share/locale/mr/LC_MESSAGES/knetattach5.mo +share/locale/mr/LC_MESSAGES/krdb.mo +share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo +share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo +share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo +share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo +share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo +share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo +share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo +share/locale/mr/LC_MESSAGES/plasma_runner_plasma-desktop.mo +share/locale/mr/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo +share/locale/ms/LC_MESSAGES/attica_kde_plugin.mo +share/locale/ms/LC_MESSAGES/joystick.mo +share/locale/ms/LC_MESSAGES/kaccess.mo +share/locale/ms/LC_MESSAGES/kcm5_componentchooser.mo +share/locale/ms/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/ms/LC_MESSAGES/kcm5_emoticons.mo +share/locale/ms/LC_MESSAGES/kcm5_icons.mo +share/locale/ms/LC_MESSAGES/kcm5_kded.mo +share/locale/ms/LC_MESSAGES/kcm5_notify.mo +share/locale/ms/LC_MESSAGES/kcm5_phonon.mo +share/locale/ms/LC_MESSAGES/kcm_autostart.mo +share/locale/ms/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/ms/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/ms/LC_MESSAGES/kcm_solid_actions.mo +share/locale/ms/LC_MESSAGES/kcm_standard_actions.mo +share/locale/ms/LC_MESSAGES/kcmaccess.mo +share/locale/ms/LC_MESSAGES/kcmcolors.mo +share/locale/ms/LC_MESSAGES/kcmfonts.mo +share/locale/ms/LC_MESSAGES/kcmformats.mo +share/locale/ms/LC_MESSAGES/kcminput.mo +share/locale/ms/LC_MESSAGES/kcmkclock.mo +share/locale/ms/LC_MESSAGES/kcmkeyboard.mo +share/locale/ms/LC_MESSAGES/kcmkeys.mo +share/locale/ms/LC_MESSAGES/kcmlaunch.mo +share/locale/ms/LC_MESSAGES/kcmmousetheme.mo +share/locale/ms/LC_MESSAGES/kcmsmserver.mo +share/locale/ms/LC_MESSAGES/kcmstyle.mo +share/locale/ms/LC_MESSAGES/kfontinst.mo +share/locale/ms/LC_MESSAGES/knetattach5.mo +share/locale/ms/LC_MESSAGES/krdb.mo +share/locale/ms/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/ms/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo +share/locale/ms/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo +share/locale/ms/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo +share/locale/ms/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo +share/locale/ms/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo +share/locale/ms/LC_MESSAGES/plasma_runner_plasma-desktop.mo +share/locale/nb/LC_MESSAGES/attica_kde_plugin.mo +share/locale/nb/LC_MESSAGES/joystick.mo +share/locale/nb/LC_MESSAGES/kaccess.mo +share/locale/nb/LC_MESSAGES/kcm5_baloofile.mo +share/locale/nb/LC_MESSAGES/kcm5_componentchooser.mo +share/locale/nb/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/nb/LC_MESSAGES/kcm5_emoticons.mo +share/locale/nb/LC_MESSAGES/kcm5_icons.mo +share/locale/nb/LC_MESSAGES/kcm5_kded.mo +share/locale/nb/LC_MESSAGES/kcm5_notify.mo +share/locale/nb/LC_MESSAGES/kcm5_phonon.mo +share/locale/nb/LC_MESSAGES/kcm_autostart.mo +share/locale/nb/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/nb/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/nb/LC_MESSAGES/kcm_lookandfeel.mo +share/locale/nb/LC_MESSAGES/kcm_search.mo +share/locale/nb/LC_MESSAGES/kcm_solid_actions.mo +share/locale/nb/LC_MESSAGES/kcm_splashscreen.mo +share/locale/nb/LC_MESSAGES/kcm_standard_actions.mo +share/locale/nb/LC_MESSAGES/kcm_touchpad.mo +share/locale/nb/LC_MESSAGES/kcmaccess.mo +share/locale/nb/LC_MESSAGES/kcmcolors.mo +share/locale/nb/LC_MESSAGES/kcmfonts.mo +share/locale/nb/LC_MESSAGES/kcmformats.mo +share/locale/nb/LC_MESSAGES/kcminput.mo +share/locale/nb/LC_MESSAGES/kcmkclock.mo +share/locale/nb/LC_MESSAGES/kcmkeyboard.mo +share/locale/nb/LC_MESSAGES/kcmkeys.mo +share/locale/nb/LC_MESSAGES/kcmlaunch.mo +share/locale/nb/LC_MESSAGES/kcmmousetheme.mo +share/locale/nb/LC_MESSAGES/kcmsmserver.mo +share/locale/nb/LC_MESSAGES/kcmstyle.mo +share/locale/nb/LC_MESSAGES/kcmtranslations.mo +share/locale/nb/LC_MESSAGES/kcmworkspaceoptions.mo +share/locale/nb/LC_MESSAGES/kfontinst.mo +share/locale/nb/LC_MESSAGES/knetattach5.mo +share/locale/nb/LC_MESSAGES/krdb.mo +share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo +share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo +share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo +share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo +share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo +share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo +share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo +share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo +share/locale/nb/LC_MESSAGES/plasma_runner_plasma-desktop.mo +share/locale/nb/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo +share/locale/nb/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo +share/locale/nds/LC_MESSAGES/attica_kde_plugin.mo +share/locale/nds/LC_MESSAGES/joystick.mo +share/locale/nds/LC_MESSAGES/kaccess.mo +share/locale/nds/LC_MESSAGES/kcm5_baloofile.mo +share/locale/nds/LC_MESSAGES/kcm5_componentchooser.mo +share/locale/nds/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/nds/LC_MESSAGES/kcm5_emoticons.mo +share/locale/nds/LC_MESSAGES/kcm5_icons.mo +share/locale/nds/LC_MESSAGES/kcm5_kded.mo +share/locale/nds/LC_MESSAGES/kcm5_notify.mo +share/locale/nds/LC_MESSAGES/kcm5_phonon.mo +share/locale/nds/LC_MESSAGES/kcm_autostart.mo +share/locale/nds/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/nds/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/nds/LC_MESSAGES/kcm_lookandfeel.mo +share/locale/nds/LC_MESSAGES/kcm_search.mo +share/locale/nds/LC_MESSAGES/kcm_solid_actions.mo +share/locale/nds/LC_MESSAGES/kcm_splashscreen.mo +share/locale/nds/LC_MESSAGES/kcm_standard_actions.mo +share/locale/nds/LC_MESSAGES/kcmaccess.mo +share/locale/nds/LC_MESSAGES/kcmcolors.mo +share/locale/nds/LC_MESSAGES/kcmfonts.mo +share/locale/nds/LC_MESSAGES/kcmformats.mo +share/locale/nds/LC_MESSAGES/kcminput.mo +share/locale/nds/LC_MESSAGES/kcmkclock.mo +share/locale/nds/LC_MESSAGES/kcmkeyboard.mo +share/locale/nds/LC_MESSAGES/kcmkeys.mo +share/locale/nds/LC_MESSAGES/kcmlaunch.mo +share/locale/nds/LC_MESSAGES/kcmmousetheme.mo +share/locale/nds/LC_MESSAGES/kcmsmserver.mo +share/locale/nds/LC_MESSAGES/kcmstyle.mo +share/locale/nds/LC_MESSAGES/kcmtranslations.mo +share/locale/nds/LC_MESSAGES/kcmworkspaceoptions.mo +share/locale/nds/LC_MESSAGES/kfontinst.mo +share/locale/nds/LC_MESSAGES/knetattach5.mo +share/locale/nds/LC_MESSAGES/krdb.mo +share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo +share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo +share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo +share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo +share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo +share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo +share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo +share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo +share/locale/nds/LC_MESSAGES/plasma_runner_plasma-desktop.mo +share/locale/nds/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo +share/locale/nds/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo +share/locale/ne/LC_MESSAGES/joystick.mo +share/locale/ne/LC_MESSAGES/kaccess.mo +share/locale/ne/LC_MESSAGES/kcm5_componentchooser.mo +share/locale/ne/LC_MESSAGES/kcm5_icons.mo +share/locale/ne/LC_MESSAGES/kcm5_kded.mo +share/locale/ne/LC_MESSAGES/kcm5_notify.mo +share/locale/ne/LC_MESSAGES/kcm5_phonon.mo +share/locale/ne/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/ne/LC_MESSAGES/kcmaccess.mo +share/locale/ne/LC_MESSAGES/kcmcolors.mo +share/locale/ne/LC_MESSAGES/kcmfonts.mo +share/locale/ne/LC_MESSAGES/kcmformats.mo +share/locale/ne/LC_MESSAGES/kcminput.mo +share/locale/ne/LC_MESSAGES/kcmkclock.mo +share/locale/ne/LC_MESSAGES/kcmkeyboard.mo +share/locale/ne/LC_MESSAGES/kcmkeys.mo +share/locale/ne/LC_MESSAGES/kcmlaunch.mo +share/locale/ne/LC_MESSAGES/kcmmousetheme.mo +share/locale/ne/LC_MESSAGES/kcmsmserver.mo +share/locale/ne/LC_MESSAGES/kcmstyle.mo +share/locale/ne/LC_MESSAGES/kfontinst.mo +share/locale/ne/LC_MESSAGES/knetattach5.mo +share/locale/ne/LC_MESSAGES/krdb.mo +share/locale/ne/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/ne/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo +share/locale/nl/LC_MESSAGES/attica_kde_plugin.mo +share/locale/nl/LC_MESSAGES/joystick.mo +share/locale/nl/LC_MESSAGES/kaccess.mo +share/locale/nl/LC_MESSAGES/kcm5_baloofile.mo +share/locale/nl/LC_MESSAGES/kcm5_componentchooser.mo +share/locale/nl/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/nl/LC_MESSAGES/kcm5_emoticons.mo +share/locale/nl/LC_MESSAGES/kcm5_icons.mo +share/locale/nl/LC_MESSAGES/kcm5_kded.mo +share/locale/nl/LC_MESSAGES/kcm5_notify.mo +share/locale/nl/LC_MESSAGES/kcm5_phonon.mo +share/locale/nl/LC_MESSAGES/kcm_activities5.mo +share/locale/nl/LC_MESSAGES/kcm_autostart.mo +share/locale/nl/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/nl/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/nl/LC_MESSAGES/kcm_lookandfeel.mo +share/locale/nl/LC_MESSAGES/kcm_nightcolor.mo +share/locale/nl/LC_MESSAGES/kcm_search.mo +share/locale/nl/LC_MESSAGES/kcm_solid_actions.mo +share/locale/nl/LC_MESSAGES/kcm_splashscreen.mo +share/locale/nl/LC_MESSAGES/kcm_standard_actions.mo +share/locale/nl/LC_MESSAGES/kcm_touchpad.mo +share/locale/nl/LC_MESSAGES/kcmaccess.mo +share/locale/nl/LC_MESSAGES/kcmcolors.mo +share/locale/nl/LC_MESSAGES/kcmfonts.mo +share/locale/nl/LC_MESSAGES/kcmformats.mo +share/locale/nl/LC_MESSAGES/kcminput.mo +share/locale/nl/LC_MESSAGES/kcmkclock.mo +share/locale/nl/LC_MESSAGES/kcmkeyboard.mo +share/locale/nl/LC_MESSAGES/kcmkeys.mo +share/locale/nl/LC_MESSAGES/kcmlaunch.mo +share/locale/nl/LC_MESSAGES/kcmmousetheme.mo +share/locale/nl/LC_MESSAGES/kcmsmserver.mo +share/locale/nl/LC_MESSAGES/kcmstyle.mo +share/locale/nl/LC_MESSAGES/kcmtranslations.mo +share/locale/nl/LC_MESSAGES/kcmworkspaceoptions.mo +share/locale/nl/LC_MESSAGES/kfontinst.mo +share/locale/nl/LC_MESSAGES/knetattach5.mo +share/locale/nl/LC_MESSAGES/krdb.mo +share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo +share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo +share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo +share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo +share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo +share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo +share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo +share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo +share/locale/nl/LC_MESSAGES/plasma_applet_touchpad.mo +share/locale/nl/LC_MESSAGES/plasma_runner_kwin.mo +share/locale/nl/LC_MESSAGES/plasma_runner_plasma-desktop.mo +share/locale/nl/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo +share/locale/nl/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo +share/locale/nl/LC_MESSAGES/plasmaactivitymanager.mo +share/locale/nn/LC_MESSAGES/attica_kde_plugin.mo +share/locale/nn/LC_MESSAGES/joystick.mo +share/locale/nn/LC_MESSAGES/kaccess.mo +share/locale/nn/LC_MESSAGES/kcm5_baloofile.mo +share/locale/nn/LC_MESSAGES/kcm5_componentchooser.mo +share/locale/nn/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/nn/LC_MESSAGES/kcm5_emoticons.mo +share/locale/nn/LC_MESSAGES/kcm5_icons.mo +share/locale/nn/LC_MESSAGES/kcm5_kded.mo +share/locale/nn/LC_MESSAGES/kcm5_notify.mo +share/locale/nn/LC_MESSAGES/kcm5_phonon.mo +share/locale/nn/LC_MESSAGES/kcm_activities5.mo +share/locale/nn/LC_MESSAGES/kcm_autostart.mo +share/locale/nn/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/nn/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/nn/LC_MESSAGES/kcm_lookandfeel.mo +share/locale/nn/LC_MESSAGES/kcm_nightcolor.mo +share/locale/nn/LC_MESSAGES/kcm_search.mo +share/locale/nn/LC_MESSAGES/kcm_solid_actions.mo +share/locale/nn/LC_MESSAGES/kcm_splashscreen.mo +share/locale/nn/LC_MESSAGES/kcm_standard_actions.mo +share/locale/nn/LC_MESSAGES/kcm_touchpad.mo +share/locale/nn/LC_MESSAGES/kcmaccess.mo +share/locale/nn/LC_MESSAGES/kcmcolors.mo +share/locale/nn/LC_MESSAGES/kcmfonts.mo +share/locale/nn/LC_MESSAGES/kcmformats.mo +share/locale/nn/LC_MESSAGES/kcminput.mo +share/locale/nn/LC_MESSAGES/kcmkclock.mo +share/locale/nn/LC_MESSAGES/kcmkeyboard.mo +share/locale/nn/LC_MESSAGES/kcmkeys.mo +share/locale/nn/LC_MESSAGES/kcmlaunch.mo +share/locale/nn/LC_MESSAGES/kcmmousetheme.mo +share/locale/nn/LC_MESSAGES/kcmsmserver.mo +share/locale/nn/LC_MESSAGES/kcmstyle.mo +share/locale/nn/LC_MESSAGES/kcmtranslations.mo +share/locale/nn/LC_MESSAGES/kcmworkspaceoptions.mo +share/locale/nn/LC_MESSAGES/kfontinst.mo +share/locale/nn/LC_MESSAGES/knetattach5.mo +share/locale/nn/LC_MESSAGES/krdb.mo +share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo +share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo +share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo +share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo +share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo +share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo +share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo +share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo +share/locale/nn/LC_MESSAGES/plasma_applet_touchpad.mo +share/locale/nn/LC_MESSAGES/plasma_runner_kwin.mo +share/locale/nn/LC_MESSAGES/plasma_runner_plasma-desktop.mo +share/locale/nn/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo +share/locale/nn/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo +share/locale/nn/LC_MESSAGES/plasmaactivitymanager.mo +share/locale/oc/LC_MESSAGES/joystick.mo +share/locale/oc/LC_MESSAGES/kaccess.mo +share/locale/oc/LC_MESSAGES/kcm5_componentchooser.mo +share/locale/oc/LC_MESSAGES/kcm5_icons.mo +share/locale/oc/LC_MESSAGES/kcm5_kded.mo +share/locale/oc/LC_MESSAGES/kcm5_notify.mo +share/locale/oc/LC_MESSAGES/kcm5_phonon.mo +share/locale/oc/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/oc/LC_MESSAGES/kcmaccess.mo +share/locale/oc/LC_MESSAGES/kcmcolors.mo +share/locale/oc/LC_MESSAGES/kcmfonts.mo +share/locale/oc/LC_MESSAGES/kcminput.mo +share/locale/oc/LC_MESSAGES/kcmkclock.mo +share/locale/oc/LC_MESSAGES/kcmkeyboard.mo +share/locale/oc/LC_MESSAGES/kcmkeys.mo +share/locale/oc/LC_MESSAGES/kcmlaunch.mo +share/locale/oc/LC_MESSAGES/kcmmousetheme.mo +share/locale/oc/LC_MESSAGES/kcmsmserver.mo +share/locale/oc/LC_MESSAGES/kcmstyle.mo +share/locale/oc/LC_MESSAGES/kfontinst.mo +share/locale/oc/LC_MESSAGES/knetattach5.mo +share/locale/oc/LC_MESSAGES/krdb.mo +share/locale/oc/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo +share/locale/or/LC_MESSAGES/joystick.mo +share/locale/or/LC_MESSAGES/kaccess.mo +share/locale/or/LC_MESSAGES/kcm5_componentchooser.mo +share/locale/or/LC_MESSAGES/kcm5_emoticons.mo +share/locale/or/LC_MESSAGES/kcm5_icons.mo +share/locale/or/LC_MESSAGES/kcm5_kded.mo +share/locale/or/LC_MESSAGES/kcm5_notify.mo +share/locale/or/LC_MESSAGES/kcm5_phonon.mo +share/locale/or/LC_MESSAGES/kcm_autostart.mo +share/locale/or/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/or/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/or/LC_MESSAGES/kcm_standard_actions.mo +share/locale/or/LC_MESSAGES/kcmaccess.mo +share/locale/or/LC_MESSAGES/kcmcolors.mo +share/locale/or/LC_MESSAGES/kcmfonts.mo +share/locale/or/LC_MESSAGES/kcmformats.mo +share/locale/or/LC_MESSAGES/kcminput.mo +share/locale/or/LC_MESSAGES/kcmkclock.mo +share/locale/or/LC_MESSAGES/kcmkeyboard.mo +share/locale/or/LC_MESSAGES/kcmkeys.mo +share/locale/or/LC_MESSAGES/kcmlaunch.mo +share/locale/or/LC_MESSAGES/kcmmousetheme.mo +share/locale/or/LC_MESSAGES/kcmsmserver.mo +share/locale/or/LC_MESSAGES/kcmstyle.mo +share/locale/or/LC_MESSAGES/kfontinst.mo +share/locale/or/LC_MESSAGES/knetattach5.mo +share/locale/or/LC_MESSAGES/krdb.mo +share/locale/or/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/or/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo +share/locale/or/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo +share/locale/or/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo +share/locale/pa/LC_MESSAGES/attica_kde_plugin.mo +share/locale/pa/LC_MESSAGES/joystick.mo +share/locale/pa/LC_MESSAGES/kaccess.mo +share/locale/pa/LC_MESSAGES/kcm5_baloofile.mo +share/locale/pa/LC_MESSAGES/kcm5_componentchooser.mo +share/locale/pa/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/pa/LC_MESSAGES/kcm5_emoticons.mo +share/locale/pa/LC_MESSAGES/kcm5_icons.mo +share/locale/pa/LC_MESSAGES/kcm5_kded.mo +share/locale/pa/LC_MESSAGES/kcm5_notify.mo +share/locale/pa/LC_MESSAGES/kcm5_phonon.mo +share/locale/pa/LC_MESSAGES/kcm_activities5.mo +share/locale/pa/LC_MESSAGES/kcm_autostart.mo +share/locale/pa/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/pa/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/pa/LC_MESSAGES/kcm_lookandfeel.mo +share/locale/pa/LC_MESSAGES/kcm_search.mo +share/locale/pa/LC_MESSAGES/kcm_solid_actions.mo +share/locale/pa/LC_MESSAGES/kcm_splashscreen.mo +share/locale/pa/LC_MESSAGES/kcm_standard_actions.mo +share/locale/pa/LC_MESSAGES/kcm_touchpad.mo +share/locale/pa/LC_MESSAGES/kcmaccess.mo +share/locale/pa/LC_MESSAGES/kcmcolors.mo +share/locale/pa/LC_MESSAGES/kcmfonts.mo +share/locale/pa/LC_MESSAGES/kcmformats.mo +share/locale/pa/LC_MESSAGES/kcminput.mo +share/locale/pa/LC_MESSAGES/kcmkclock.mo +share/locale/pa/LC_MESSAGES/kcmkeyboard.mo +share/locale/pa/LC_MESSAGES/kcmkeys.mo +share/locale/pa/LC_MESSAGES/kcmlaunch.mo +share/locale/pa/LC_MESSAGES/kcmmousetheme.mo +share/locale/pa/LC_MESSAGES/kcmsmserver.mo +share/locale/pa/LC_MESSAGES/kcmstyle.mo +share/locale/pa/LC_MESSAGES/kcmtranslations.mo +share/locale/pa/LC_MESSAGES/kcmworkspaceoptions.mo +share/locale/pa/LC_MESSAGES/kfontinst.mo +share/locale/pa/LC_MESSAGES/knetattach5.mo +share/locale/pa/LC_MESSAGES/krdb.mo +share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo +share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo +share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo +share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo +share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo +share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo +share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo +share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo +share/locale/pa/LC_MESSAGES/plasma_applet_touchpad.mo +share/locale/pa/LC_MESSAGES/plasma_runner_kwin.mo +share/locale/pa/LC_MESSAGES/plasma_runner_plasma-desktop.mo +share/locale/pa/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo +share/locale/pa/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo +share/locale/pa/LC_MESSAGES/plasmaactivitymanager.mo +share/locale/pl/LC_MESSAGES/attica_kde_plugin.mo +share/locale/pl/LC_MESSAGES/joystick.mo +share/locale/pl/LC_MESSAGES/kaccess.mo +share/locale/pl/LC_MESSAGES/kcm5_baloofile.mo +share/locale/pl/LC_MESSAGES/kcm5_componentchooser.mo +share/locale/pl/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/pl/LC_MESSAGES/kcm5_emoticons.mo +share/locale/pl/LC_MESSAGES/kcm5_icons.mo +share/locale/pl/LC_MESSAGES/kcm5_kded.mo +share/locale/pl/LC_MESSAGES/kcm5_notify.mo +share/locale/pl/LC_MESSAGES/kcm5_phonon.mo +share/locale/pl/LC_MESSAGES/kcm_activities5.mo +share/locale/pl/LC_MESSAGES/kcm_autostart.mo +share/locale/pl/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/pl/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/pl/LC_MESSAGES/kcm_lookandfeel.mo +share/locale/pl/LC_MESSAGES/kcm_nightcolor.mo +share/locale/pl/LC_MESSAGES/kcm_search.mo +share/locale/pl/LC_MESSAGES/kcm_solid_actions.mo +share/locale/pl/LC_MESSAGES/kcm_splashscreen.mo +share/locale/pl/LC_MESSAGES/kcm_standard_actions.mo +share/locale/pl/LC_MESSAGES/kcm_touchpad.mo +share/locale/pl/LC_MESSAGES/kcmaccess.mo +share/locale/pl/LC_MESSAGES/kcmcolors.mo +share/locale/pl/LC_MESSAGES/kcmfonts.mo +share/locale/pl/LC_MESSAGES/kcmformats.mo +share/locale/pl/LC_MESSAGES/kcminput.mo +share/locale/pl/LC_MESSAGES/kcmkclock.mo +share/locale/pl/LC_MESSAGES/kcmkeyboard.mo +share/locale/pl/LC_MESSAGES/kcmkeys.mo +share/locale/pl/LC_MESSAGES/kcmlaunch.mo +share/locale/pl/LC_MESSAGES/kcmmousetheme.mo +share/locale/pl/LC_MESSAGES/kcmsmserver.mo +share/locale/pl/LC_MESSAGES/kcmstyle.mo +share/locale/pl/LC_MESSAGES/kcmtranslations.mo +share/locale/pl/LC_MESSAGES/kcmworkspaceoptions.mo +share/locale/pl/LC_MESSAGES/kfontinst.mo +share/locale/pl/LC_MESSAGES/knetattach5.mo +share/locale/pl/LC_MESSAGES/krdb.mo +share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo +share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo +share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo +share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo +share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo +share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo +share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo +share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo +share/locale/pl/LC_MESSAGES/plasma_applet_touchpad.mo +share/locale/pl/LC_MESSAGES/plasma_runner_kwin.mo +share/locale/pl/LC_MESSAGES/plasma_runner_plasma-desktop.mo +share/locale/pl/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo +share/locale/pl/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo +share/locale/pl/LC_MESSAGES/plasmaactivitymanager.mo +share/locale/pt/LC_MESSAGES/attica_kde_plugin.mo +share/locale/pt/LC_MESSAGES/joystick.mo +share/locale/pt/LC_MESSAGES/kaccess.mo +share/locale/pt/LC_MESSAGES/kcm5_baloofile.mo +share/locale/pt/LC_MESSAGES/kcm5_componentchooser.mo +share/locale/pt/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/pt/LC_MESSAGES/kcm5_emoticons.mo +share/locale/pt/LC_MESSAGES/kcm5_icons.mo +share/locale/pt/LC_MESSAGES/kcm5_kded.mo +share/locale/pt/LC_MESSAGES/kcm5_notify.mo +share/locale/pt/LC_MESSAGES/kcm5_phonon.mo +share/locale/pt/LC_MESSAGES/kcm_activities5.mo +share/locale/pt/LC_MESSAGES/kcm_autostart.mo +share/locale/pt/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/pt/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/pt/LC_MESSAGES/kcm_lookandfeel.mo +share/locale/pt/LC_MESSAGES/kcm_nightcolor.mo +share/locale/pt/LC_MESSAGES/kcm_search.mo +share/locale/pt/LC_MESSAGES/kcm_solid_actions.mo +share/locale/pt/LC_MESSAGES/kcm_splashscreen.mo +share/locale/pt/LC_MESSAGES/kcm_standard_actions.mo +share/locale/pt/LC_MESSAGES/kcm_touchpad.mo +share/locale/pt/LC_MESSAGES/kcmaccess.mo +share/locale/pt/LC_MESSAGES/kcmcolors.mo +share/locale/pt/LC_MESSAGES/kcmfonts.mo +share/locale/pt/LC_MESSAGES/kcmformats.mo +share/locale/pt/LC_MESSAGES/kcminput.mo +share/locale/pt/LC_MESSAGES/kcmkclock.mo +share/locale/pt/LC_MESSAGES/kcmkeyboard.mo +share/locale/pt/LC_MESSAGES/kcmkeys.mo +share/locale/pt/LC_MESSAGES/kcmlaunch.mo +share/locale/pt/LC_MESSAGES/kcmmousetheme.mo +share/locale/pt/LC_MESSAGES/kcmsmserver.mo +share/locale/pt/LC_MESSAGES/kcmstyle.mo +share/locale/pt/LC_MESSAGES/kcmtranslations.mo +share/locale/pt/LC_MESSAGES/kcmworkspaceoptions.mo +share/locale/pt/LC_MESSAGES/kfontinst.mo +share/locale/pt/LC_MESSAGES/knetattach5.mo +share/locale/pt/LC_MESSAGES/krdb.mo +share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo +share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo +share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo +share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo +share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo +share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo +share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo +share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo +share/locale/pt/LC_MESSAGES/plasma_applet_touchpad.mo +share/locale/pt/LC_MESSAGES/plasma_runner_kwin.mo +share/locale/pt/LC_MESSAGES/plasma_runner_plasma-desktop.mo +share/locale/pt/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo +share/locale/pt/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo +share/locale/pt/LC_MESSAGES/plasmaactivitymanager.mo +share/locale/pt_BR/LC_MESSAGES/attica_kde_plugin.mo +share/locale/pt_BR/LC_MESSAGES/joystick.mo +share/locale/pt_BR/LC_MESSAGES/kaccess.mo +share/locale/pt_BR/LC_MESSAGES/kcm5_baloofile.mo +share/locale/pt_BR/LC_MESSAGES/kcm5_componentchooser.mo +share/locale/pt_BR/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/pt_BR/LC_MESSAGES/kcm5_emoticons.mo +share/locale/pt_BR/LC_MESSAGES/kcm5_icons.mo +share/locale/pt_BR/LC_MESSAGES/kcm5_kded.mo +share/locale/pt_BR/LC_MESSAGES/kcm5_notify.mo +share/locale/pt_BR/LC_MESSAGES/kcm5_phonon.mo +share/locale/pt_BR/LC_MESSAGES/kcm_activities5.mo +share/locale/pt_BR/LC_MESSAGES/kcm_autostart.mo +share/locale/pt_BR/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/pt_BR/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/pt_BR/LC_MESSAGES/kcm_lookandfeel.mo +share/locale/pt_BR/LC_MESSAGES/kcm_nightcolor.mo +share/locale/pt_BR/LC_MESSAGES/kcm_search.mo +share/locale/pt_BR/LC_MESSAGES/kcm_solid_actions.mo +share/locale/pt_BR/LC_MESSAGES/kcm_splashscreen.mo +share/locale/pt_BR/LC_MESSAGES/kcm_standard_actions.mo +share/locale/pt_BR/LC_MESSAGES/kcm_touchpad.mo +share/locale/pt_BR/LC_MESSAGES/kcmaccess.mo +share/locale/pt_BR/LC_MESSAGES/kcmcolors.mo +share/locale/pt_BR/LC_MESSAGES/kcmfonts.mo +share/locale/pt_BR/LC_MESSAGES/kcmformats.mo +share/locale/pt_BR/LC_MESSAGES/kcminput.mo +share/locale/pt_BR/LC_MESSAGES/kcmkclock.mo +share/locale/pt_BR/LC_MESSAGES/kcmkeyboard.mo +share/locale/pt_BR/LC_MESSAGES/kcmkeys.mo +share/locale/pt_BR/LC_MESSAGES/kcmlaunch.mo +share/locale/pt_BR/LC_MESSAGES/kcmmousetheme.mo +share/locale/pt_BR/LC_MESSAGES/kcmsmserver.mo +share/locale/pt_BR/LC_MESSAGES/kcmstyle.mo +share/locale/pt_BR/LC_MESSAGES/kcmtranslations.mo +share/locale/pt_BR/LC_MESSAGES/kcmworkspaceoptions.mo +share/locale/pt_BR/LC_MESSAGES/kfontinst.mo +share/locale/pt_BR/LC_MESSAGES/knetattach5.mo +share/locale/pt_BR/LC_MESSAGES/krdb.mo +share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo +share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo +share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo +share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo +share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo +share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo +share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo +share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo +share/locale/pt_BR/LC_MESSAGES/plasma_applet_touchpad.mo +share/locale/pt_BR/LC_MESSAGES/plasma_runner_kwin.mo +share/locale/pt_BR/LC_MESSAGES/plasma_runner_plasma-desktop.mo +share/locale/pt_BR/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo +share/locale/pt_BR/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo +share/locale/pt_BR/LC_MESSAGES/plasmaactivitymanager.mo +share/locale/ro/LC_MESSAGES/attica_kde_plugin.mo +share/locale/ro/LC_MESSAGES/joystick.mo +share/locale/ro/LC_MESSAGES/kaccess.mo +share/locale/ro/LC_MESSAGES/kcm5_baloofile.mo +share/locale/ro/LC_MESSAGES/kcm5_componentchooser.mo +share/locale/ro/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/ro/LC_MESSAGES/kcm5_emoticons.mo +share/locale/ro/LC_MESSAGES/kcm5_icons.mo +share/locale/ro/LC_MESSAGES/kcm5_kded.mo +share/locale/ro/LC_MESSAGES/kcm5_notify.mo +share/locale/ro/LC_MESSAGES/kcm5_phonon.mo +share/locale/ro/LC_MESSAGES/kcm_autostart.mo +share/locale/ro/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/ro/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/ro/LC_MESSAGES/kcm_lookandfeel.mo +share/locale/ro/LC_MESSAGES/kcm_search.mo +share/locale/ro/LC_MESSAGES/kcm_solid_actions.mo +share/locale/ro/LC_MESSAGES/kcm_splashscreen.mo +share/locale/ro/LC_MESSAGES/kcm_standard_actions.mo +share/locale/ro/LC_MESSAGES/kcm_touchpad.mo +share/locale/ro/LC_MESSAGES/kcmaccess.mo +share/locale/ro/LC_MESSAGES/kcmcolors.mo +share/locale/ro/LC_MESSAGES/kcmfonts.mo +share/locale/ro/LC_MESSAGES/kcmformats.mo +share/locale/ro/LC_MESSAGES/kcminput.mo +share/locale/ro/LC_MESSAGES/kcmkclock.mo +share/locale/ro/LC_MESSAGES/kcmkeyboard.mo +share/locale/ro/LC_MESSAGES/kcmkeys.mo +share/locale/ro/LC_MESSAGES/kcmlaunch.mo +share/locale/ro/LC_MESSAGES/kcmmousetheme.mo +share/locale/ro/LC_MESSAGES/kcmsmserver.mo +share/locale/ro/LC_MESSAGES/kcmstyle.mo +share/locale/ro/LC_MESSAGES/kcmtranslations.mo +share/locale/ro/LC_MESSAGES/kcmworkspaceoptions.mo +share/locale/ro/LC_MESSAGES/kfontinst.mo +share/locale/ro/LC_MESSAGES/knetattach5.mo +share/locale/ro/LC_MESSAGES/krdb.mo +share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo +share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo +share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo +share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo +share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo +share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo +share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo +share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo +share/locale/ro/LC_MESSAGES/plasma_applet_touchpad.mo +share/locale/ro/LC_MESSAGES/plasma_runner_plasma-desktop.mo +share/locale/ro/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo +share/locale/ro/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo +share/locale/ru/LC_MESSAGES/attica_kde_plugin.mo +share/locale/ru/LC_MESSAGES/joystick.mo +share/locale/ru/LC_MESSAGES/kaccess.mo +share/locale/ru/LC_MESSAGES/kcm5_baloofile.mo +share/locale/ru/LC_MESSAGES/kcm5_componentchooser.mo +share/locale/ru/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/ru/LC_MESSAGES/kcm5_emoticons.mo +share/locale/ru/LC_MESSAGES/kcm5_icons.mo +share/locale/ru/LC_MESSAGES/kcm5_kded.mo +share/locale/ru/LC_MESSAGES/kcm5_notify.mo +share/locale/ru/LC_MESSAGES/kcm5_phonon.mo +share/locale/ru/LC_MESSAGES/kcm_activities5.mo +share/locale/ru/LC_MESSAGES/kcm_autostart.mo +share/locale/ru/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/ru/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/ru/LC_MESSAGES/kcm_lookandfeel.mo +share/locale/ru/LC_MESSAGES/kcm_nightcolor.mo +share/locale/ru/LC_MESSAGES/kcm_search.mo +share/locale/ru/LC_MESSAGES/kcm_solid_actions.mo +share/locale/ru/LC_MESSAGES/kcm_splashscreen.mo +share/locale/ru/LC_MESSAGES/kcm_standard_actions.mo +share/locale/ru/LC_MESSAGES/kcm_touchpad.mo +share/locale/ru/LC_MESSAGES/kcmaccess.mo +share/locale/ru/LC_MESSAGES/kcmcolors.mo +share/locale/ru/LC_MESSAGES/kcmfonts.mo +share/locale/ru/LC_MESSAGES/kcmformats.mo +share/locale/ru/LC_MESSAGES/kcminput.mo +share/locale/ru/LC_MESSAGES/kcmkclock.mo +share/locale/ru/LC_MESSAGES/kcmkeyboard.mo +share/locale/ru/LC_MESSAGES/kcmkeys.mo +share/locale/ru/LC_MESSAGES/kcmlaunch.mo +share/locale/ru/LC_MESSAGES/kcmmousetheme.mo +share/locale/ru/LC_MESSAGES/kcmsmserver.mo +share/locale/ru/LC_MESSAGES/kcmstyle.mo +share/locale/ru/LC_MESSAGES/kcmtranslations.mo +share/locale/ru/LC_MESSAGES/kcmworkspaceoptions.mo +share/locale/ru/LC_MESSAGES/kfontinst.mo +share/locale/ru/LC_MESSAGES/knetattach5.mo +share/locale/ru/LC_MESSAGES/krdb.mo +share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo +share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo +share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo +share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo +share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo +share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo +share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo +share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo +share/locale/ru/LC_MESSAGES/plasma_applet_touchpad.mo +share/locale/ru/LC_MESSAGES/plasma_runner_kwin.mo +share/locale/ru/LC_MESSAGES/plasma_runner_plasma-desktop.mo +share/locale/ru/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo +share/locale/ru/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo +share/locale/ru/LC_MESSAGES/plasmaactivitymanager.mo +share/locale/se/LC_MESSAGES/joystick.mo +share/locale/se/LC_MESSAGES/kaccess.mo +share/locale/se/LC_MESSAGES/kcm5_componentchooser.mo +share/locale/se/LC_MESSAGES/kcm5_icons.mo +share/locale/se/LC_MESSAGES/kcm5_kded.mo +share/locale/se/LC_MESSAGES/kcm5_notify.mo +share/locale/se/LC_MESSAGES/kcm5_phonon.mo +share/locale/se/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/se/LC_MESSAGES/kcmaccess.mo +share/locale/se/LC_MESSAGES/kcmcolors.mo +share/locale/se/LC_MESSAGES/kcmfonts.mo +share/locale/se/LC_MESSAGES/kcmformats.mo +share/locale/se/LC_MESSAGES/kcminput.mo +share/locale/se/LC_MESSAGES/kcmkclock.mo +share/locale/se/LC_MESSAGES/kcmkeyboard.mo +share/locale/se/LC_MESSAGES/kcmkeys.mo +share/locale/se/LC_MESSAGES/kcmlaunch.mo +share/locale/se/LC_MESSAGES/kcmmousetheme.mo +share/locale/se/LC_MESSAGES/kcmsmserver.mo +share/locale/se/LC_MESSAGES/kcmstyle.mo +share/locale/se/LC_MESSAGES/kfontinst.mo +share/locale/se/LC_MESSAGES/knetattach5.mo +share/locale/se/LC_MESSAGES/krdb.mo +share/locale/se/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/se/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo +share/locale/si/LC_MESSAGES/joystick.mo +share/locale/si/LC_MESSAGES/kaccess.mo +share/locale/si/LC_MESSAGES/kcm5_componentchooser.mo +share/locale/si/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/si/LC_MESSAGES/kcm5_emoticons.mo +share/locale/si/LC_MESSAGES/kcm5_icons.mo +share/locale/si/LC_MESSAGES/kcm5_kded.mo +share/locale/si/LC_MESSAGES/kcm5_notify.mo +share/locale/si/LC_MESSAGES/kcm5_phonon.mo +share/locale/si/LC_MESSAGES/kcm_autostart.mo +share/locale/si/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/si/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/si/LC_MESSAGES/kcm_solid_actions.mo +share/locale/si/LC_MESSAGES/kcm_standard_actions.mo +share/locale/si/LC_MESSAGES/kcmaccess.mo +share/locale/si/LC_MESSAGES/kcmcolors.mo +share/locale/si/LC_MESSAGES/kcmfonts.mo +share/locale/si/LC_MESSAGES/kcmformats.mo +share/locale/si/LC_MESSAGES/kcminput.mo +share/locale/si/LC_MESSAGES/kcmkclock.mo +share/locale/si/LC_MESSAGES/kcmkeyboard.mo +share/locale/si/LC_MESSAGES/kcmkeys.mo +share/locale/si/LC_MESSAGES/kcmlaunch.mo +share/locale/si/LC_MESSAGES/kcmmousetheme.mo +share/locale/si/LC_MESSAGES/kcmsmserver.mo +share/locale/si/LC_MESSAGES/kcmstyle.mo +share/locale/si/LC_MESSAGES/kfontinst.mo +share/locale/si/LC_MESSAGES/knetattach5.mo +share/locale/si/LC_MESSAGES/krdb.mo +share/locale/si/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/si/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo +share/locale/si/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo +share/locale/si/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo +share/locale/si/LC_MESSAGES/plasma_runner_plasma-desktop.mo +share/locale/sk/LC_MESSAGES/attica_kde_plugin.mo +share/locale/sk/LC_MESSAGES/joystick.mo +share/locale/sk/LC_MESSAGES/kaccess.mo +share/locale/sk/LC_MESSAGES/kcm5_baloofile.mo +share/locale/sk/LC_MESSAGES/kcm5_componentchooser.mo +share/locale/sk/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/sk/LC_MESSAGES/kcm5_emoticons.mo +share/locale/sk/LC_MESSAGES/kcm5_icons.mo +share/locale/sk/LC_MESSAGES/kcm5_kded.mo +share/locale/sk/LC_MESSAGES/kcm5_notify.mo +share/locale/sk/LC_MESSAGES/kcm5_phonon.mo +share/locale/sk/LC_MESSAGES/kcm_activities5.mo +share/locale/sk/LC_MESSAGES/kcm_autostart.mo +share/locale/sk/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/sk/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/sk/LC_MESSAGES/kcm_lookandfeel.mo +share/locale/sk/LC_MESSAGES/kcm_nightcolor.mo +share/locale/sk/LC_MESSAGES/kcm_search.mo +share/locale/sk/LC_MESSAGES/kcm_solid_actions.mo +share/locale/sk/LC_MESSAGES/kcm_splashscreen.mo +share/locale/sk/LC_MESSAGES/kcm_standard_actions.mo +share/locale/sk/LC_MESSAGES/kcm_touchpad.mo +share/locale/sk/LC_MESSAGES/kcmaccess.mo +share/locale/sk/LC_MESSAGES/kcmcolors.mo +share/locale/sk/LC_MESSAGES/kcmfonts.mo +share/locale/sk/LC_MESSAGES/kcmformats.mo +share/locale/sk/LC_MESSAGES/kcminput.mo +share/locale/sk/LC_MESSAGES/kcmkclock.mo +share/locale/sk/LC_MESSAGES/kcmkeyboard.mo +share/locale/sk/LC_MESSAGES/kcmkeys.mo +share/locale/sk/LC_MESSAGES/kcmlaunch.mo +share/locale/sk/LC_MESSAGES/kcmmousetheme.mo +share/locale/sk/LC_MESSAGES/kcmsmserver.mo +share/locale/sk/LC_MESSAGES/kcmstyle.mo +share/locale/sk/LC_MESSAGES/kcmtranslations.mo +share/locale/sk/LC_MESSAGES/kcmworkspaceoptions.mo +share/locale/sk/LC_MESSAGES/kfontinst.mo +share/locale/sk/LC_MESSAGES/knetattach5.mo +share/locale/sk/LC_MESSAGES/krdb.mo +share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo +share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo +share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo +share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo +share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo +share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo +share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo +share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo +share/locale/sk/LC_MESSAGES/plasma_applet_touchpad.mo +share/locale/sk/LC_MESSAGES/plasma_runner_kwin.mo +share/locale/sk/LC_MESSAGES/plasma_runner_plasma-desktop.mo +share/locale/sk/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo +share/locale/sk/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo +share/locale/sk/LC_MESSAGES/plasmaactivitymanager.mo +share/locale/sl/LC_MESSAGES/attica_kde_plugin.mo +share/locale/sl/LC_MESSAGES/joystick.mo +share/locale/sl/LC_MESSAGES/kaccess.mo +share/locale/sl/LC_MESSAGES/kcm5_baloofile.mo +share/locale/sl/LC_MESSAGES/kcm5_componentchooser.mo +share/locale/sl/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/sl/LC_MESSAGES/kcm5_emoticons.mo +share/locale/sl/LC_MESSAGES/kcm5_icons.mo +share/locale/sl/LC_MESSAGES/kcm5_kded.mo +share/locale/sl/LC_MESSAGES/kcm5_notify.mo +share/locale/sl/LC_MESSAGES/kcm5_phonon.mo +share/locale/sl/LC_MESSAGES/kcm_activities5.mo +share/locale/sl/LC_MESSAGES/kcm_autostart.mo +share/locale/sl/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/sl/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/sl/LC_MESSAGES/kcm_lookandfeel.mo +share/locale/sl/LC_MESSAGES/kcm_nightcolor.mo +share/locale/sl/LC_MESSAGES/kcm_search.mo +share/locale/sl/LC_MESSAGES/kcm_solid_actions.mo +share/locale/sl/LC_MESSAGES/kcm_splashscreen.mo +share/locale/sl/LC_MESSAGES/kcm_standard_actions.mo +share/locale/sl/LC_MESSAGES/kcm_touchpad.mo +share/locale/sl/LC_MESSAGES/kcmaccess.mo +share/locale/sl/LC_MESSAGES/kcmcolors.mo +share/locale/sl/LC_MESSAGES/kcmfonts.mo +share/locale/sl/LC_MESSAGES/kcmformats.mo +share/locale/sl/LC_MESSAGES/kcminput.mo +share/locale/sl/LC_MESSAGES/kcmkclock.mo +share/locale/sl/LC_MESSAGES/kcmkeyboard.mo +share/locale/sl/LC_MESSAGES/kcmkeys.mo +share/locale/sl/LC_MESSAGES/kcmlaunch.mo +share/locale/sl/LC_MESSAGES/kcmmousetheme.mo +share/locale/sl/LC_MESSAGES/kcmsmserver.mo +share/locale/sl/LC_MESSAGES/kcmstyle.mo +share/locale/sl/LC_MESSAGES/kcmtranslations.mo +share/locale/sl/LC_MESSAGES/kcmworkspaceoptions.mo +share/locale/sl/LC_MESSAGES/kfontinst.mo +share/locale/sl/LC_MESSAGES/knetattach5.mo +share/locale/sl/LC_MESSAGES/krdb.mo +share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo +share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo +share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo +share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo +share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo +share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo +share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo +share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo +share/locale/sl/LC_MESSAGES/plasma_applet_touchpad.mo +share/locale/sl/LC_MESSAGES/plasma_runner_kwin.mo +share/locale/sl/LC_MESSAGES/plasma_runner_plasma-desktop.mo +share/locale/sl/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo +share/locale/sl/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo +share/locale/sl/LC_MESSAGES/plasmaactivitymanager.mo +share/locale/sq/LC_MESSAGES/joystick.mo +share/locale/sq/LC_MESSAGES/kaccess.mo +share/locale/sq/LC_MESSAGES/kcm5_componentchooser.mo +share/locale/sq/LC_MESSAGES/kcm5_emoticons.mo +share/locale/sq/LC_MESSAGES/kcm5_icons.mo +share/locale/sq/LC_MESSAGES/kcm5_kded.mo +share/locale/sq/LC_MESSAGES/kcm5_notify.mo +share/locale/sq/LC_MESSAGES/kcm5_phonon.mo +share/locale/sq/LC_MESSAGES/kcm_autostart.mo +share/locale/sq/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/sq/LC_MESSAGES/kcm_solid_actions.mo +share/locale/sq/LC_MESSAGES/kcm_standard_actions.mo +share/locale/sq/LC_MESSAGES/kcmaccess.mo +share/locale/sq/LC_MESSAGES/kcmcolors.mo +share/locale/sq/LC_MESSAGES/kcmfonts.mo +share/locale/sq/LC_MESSAGES/kcmformats.mo +share/locale/sq/LC_MESSAGES/kcminput.mo +share/locale/sq/LC_MESSAGES/kcmkclock.mo +share/locale/sq/LC_MESSAGES/kcmkeyboard.mo +share/locale/sq/LC_MESSAGES/kcmkeys.mo +share/locale/sq/LC_MESSAGES/kcmlaunch.mo +share/locale/sq/LC_MESSAGES/kcmmousetheme.mo +share/locale/sq/LC_MESSAGES/kcmsmserver.mo +share/locale/sq/LC_MESSAGES/kcmstyle.mo +share/locale/sq/LC_MESSAGES/kfontinst.mo +share/locale/sq/LC_MESSAGES/knetattach5.mo +share/locale/sq/LC_MESSAGES/krdb.mo +share/locale/sq/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/sq/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo +share/locale/sq/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo +share/locale/sq/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo +share/locale/sq/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo +share/locale/sq/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo +share/locale/sr/LC_MESSAGES/attica_kde_plugin.mo +share/locale/sr/LC_MESSAGES/joystick.mo +share/locale/sr/LC_MESSAGES/kaccess.mo +share/locale/sr/LC_MESSAGES/kcm5_baloofile.mo +share/locale/sr/LC_MESSAGES/kcm5_componentchooser.mo +share/locale/sr/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/sr/LC_MESSAGES/kcm5_emoticons.mo +share/locale/sr/LC_MESSAGES/kcm5_icons.mo +share/locale/sr/LC_MESSAGES/kcm5_kded.mo +share/locale/sr/LC_MESSAGES/kcm5_notify.mo +share/locale/sr/LC_MESSAGES/kcm5_phonon.mo +share/locale/sr/LC_MESSAGES/kcm_activities5.mo +share/locale/sr/LC_MESSAGES/kcm_autostart.mo +share/locale/sr/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/sr/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/sr/LC_MESSAGES/kcm_lookandfeel.mo +share/locale/sr/LC_MESSAGES/kcm_nightcolor.mo +share/locale/sr/LC_MESSAGES/kcm_search.mo +share/locale/sr/LC_MESSAGES/kcm_solid_actions.mo +share/locale/sr/LC_MESSAGES/kcm_splashscreen.mo +share/locale/sr/LC_MESSAGES/kcm_standard_actions.mo +share/locale/sr/LC_MESSAGES/kcm_touchpad.mo +share/locale/sr/LC_MESSAGES/kcmaccess.mo +share/locale/sr/LC_MESSAGES/kcmcolors.mo +share/locale/sr/LC_MESSAGES/kcmfonts.mo +share/locale/sr/LC_MESSAGES/kcmformats.mo +share/locale/sr/LC_MESSAGES/kcminput.mo +share/locale/sr/LC_MESSAGES/kcmkclock.mo +share/locale/sr/LC_MESSAGES/kcmkeyboard.mo +share/locale/sr/LC_MESSAGES/kcmkeys.mo +share/locale/sr/LC_MESSAGES/kcmlaunch.mo +share/locale/sr/LC_MESSAGES/kcmmousetheme.mo +share/locale/sr/LC_MESSAGES/kcmsmserver.mo +share/locale/sr/LC_MESSAGES/kcmstyle.mo +share/locale/sr/LC_MESSAGES/kcmtranslations.mo +share/locale/sr/LC_MESSAGES/kcmworkspaceoptions.mo +share/locale/sr/LC_MESSAGES/kfontinst.mo +share/locale/sr/LC_MESSAGES/knetattach5.mo +share/locale/sr/LC_MESSAGES/krdb.mo +share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo +share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo +share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo +share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo +share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo +share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo +share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo +share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo +share/locale/sr/LC_MESSAGES/plasma_applet_touchpad.mo +share/locale/sr/LC_MESSAGES/plasma_runner_kwin.mo +share/locale/sr/LC_MESSAGES/plasma_runner_plasma-desktop.mo +share/locale/sr/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo +share/locale/sr/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo +share/locale/sr/LC_MESSAGES/plasmaactivitymanager.mo +share/locale/sr/LC_SCRIPTS/kfontinst/kfontinst.js +share/locale/sr@ijekavian/LC_MESSAGES/attica_kde_plugin.mo +share/locale/sr@ijekavian/LC_MESSAGES/joystick.mo +share/locale/sr@ijekavian/LC_MESSAGES/kaccess.mo +share/locale/sr@ijekavian/LC_MESSAGES/kcm5_baloofile.mo +share/locale/sr@ijekavian/LC_MESSAGES/kcm5_componentchooser.mo +share/locale/sr@ijekavian/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/sr@ijekavian/LC_MESSAGES/kcm5_emoticons.mo +share/locale/sr@ijekavian/LC_MESSAGES/kcm5_icons.mo +share/locale/sr@ijekavian/LC_MESSAGES/kcm5_kded.mo +share/locale/sr@ijekavian/LC_MESSAGES/kcm5_notify.mo +share/locale/sr@ijekavian/LC_MESSAGES/kcm5_phonon.mo +share/locale/sr@ijekavian/LC_MESSAGES/kcm_activities5.mo +share/locale/sr@ijekavian/LC_MESSAGES/kcm_autostart.mo +share/locale/sr@ijekavian/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/sr@ijekavian/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/sr@ijekavian/LC_MESSAGES/kcm_lookandfeel.mo +share/locale/sr@ijekavian/LC_MESSAGES/kcm_nightcolor.mo +share/locale/sr@ijekavian/LC_MESSAGES/kcm_search.mo +share/locale/sr@ijekavian/LC_MESSAGES/kcm_solid_actions.mo +share/locale/sr@ijekavian/LC_MESSAGES/kcm_splashscreen.mo +share/locale/sr@ijekavian/LC_MESSAGES/kcm_standard_actions.mo +share/locale/sr@ijekavian/LC_MESSAGES/kcm_touchpad.mo +share/locale/sr@ijekavian/LC_MESSAGES/kcmaccess.mo +share/locale/sr@ijekavian/LC_MESSAGES/kcmcolors.mo +share/locale/sr@ijekavian/LC_MESSAGES/kcmfonts.mo +share/locale/sr@ijekavian/LC_MESSAGES/kcmformats.mo +share/locale/sr@ijekavian/LC_MESSAGES/kcminput.mo +share/locale/sr@ijekavian/LC_MESSAGES/kcmkclock.mo +share/locale/sr@ijekavian/LC_MESSAGES/kcmkeyboard.mo +share/locale/sr@ijekavian/LC_MESSAGES/kcmkeys.mo +share/locale/sr@ijekavian/LC_MESSAGES/kcmlaunch.mo +share/locale/sr@ijekavian/LC_MESSAGES/kcmmousetheme.mo +share/locale/sr@ijekavian/LC_MESSAGES/kcmsmserver.mo +share/locale/sr@ijekavian/LC_MESSAGES/kcmstyle.mo +share/locale/sr@ijekavian/LC_MESSAGES/kcmtranslations.mo +share/locale/sr@ijekavian/LC_MESSAGES/kcmworkspaceoptions.mo +share/locale/sr@ijekavian/LC_MESSAGES/kfontinst.mo +share/locale/sr@ijekavian/LC_MESSAGES/knetattach5.mo +share/locale/sr@ijekavian/LC_MESSAGES/krdb.mo +share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo +share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo +share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo +share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo +share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo +share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo +share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo +share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo +share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_touchpad.mo +share/locale/sr@ijekavian/LC_MESSAGES/plasma_runner_kwin.mo +share/locale/sr@ijekavian/LC_MESSAGES/plasma_runner_plasma-desktop.mo +share/locale/sr@ijekavian/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo +share/locale/sr@ijekavian/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo +share/locale/sr@ijekavian/LC_MESSAGES/plasmaactivitymanager.mo +share/locale/sr@ijekavian/LC_SCRIPTS/kfontinst/kfontinst.js +share/locale/sr@ijekavianlatin/LC_MESSAGES/attica_kde_plugin.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/joystick.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kaccess.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm5_baloofile.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm5_componentchooser.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm5_emoticons.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm5_icons.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm5_kded.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm5_notify.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm5_phonon.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_activities5.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_autostart.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_lookandfeel.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_nightcolor.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_search.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_solid_actions.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_splashscreen.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_standard_actions.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_touchpad.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmaccess.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmcolors.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmfonts.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmformats.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kcminput.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmkclock.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmkeyboard.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmkeys.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmlaunch.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmmousetheme.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmsmserver.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmstyle.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmtranslations.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmworkspaceoptions.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kfontinst.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/knetattach5.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/krdb.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_touchpad.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_runner_kwin.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_runner_plasma-desktop.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/plasmaactivitymanager.mo +share/locale/sr@ijekavianlatin/LC_SCRIPTS/kfontinst/kfontinst.js +share/locale/sr@latin/LC_MESSAGES/attica_kde_plugin.mo +share/locale/sr@latin/LC_MESSAGES/joystick.mo +share/locale/sr@latin/LC_MESSAGES/kaccess.mo +share/locale/sr@latin/LC_MESSAGES/kcm5_baloofile.mo +share/locale/sr@latin/LC_MESSAGES/kcm5_componentchooser.mo +share/locale/sr@latin/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/sr@latin/LC_MESSAGES/kcm5_emoticons.mo +share/locale/sr@latin/LC_MESSAGES/kcm5_icons.mo +share/locale/sr@latin/LC_MESSAGES/kcm5_kded.mo +share/locale/sr@latin/LC_MESSAGES/kcm5_notify.mo +share/locale/sr@latin/LC_MESSAGES/kcm5_phonon.mo +share/locale/sr@latin/LC_MESSAGES/kcm_activities5.mo +share/locale/sr@latin/LC_MESSAGES/kcm_autostart.mo +share/locale/sr@latin/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/sr@latin/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/sr@latin/LC_MESSAGES/kcm_lookandfeel.mo +share/locale/sr@latin/LC_MESSAGES/kcm_nightcolor.mo +share/locale/sr@latin/LC_MESSAGES/kcm_search.mo +share/locale/sr@latin/LC_MESSAGES/kcm_solid_actions.mo +share/locale/sr@latin/LC_MESSAGES/kcm_splashscreen.mo +share/locale/sr@latin/LC_MESSAGES/kcm_standard_actions.mo +share/locale/sr@latin/LC_MESSAGES/kcm_touchpad.mo +share/locale/sr@latin/LC_MESSAGES/kcmaccess.mo +share/locale/sr@latin/LC_MESSAGES/kcmcolors.mo +share/locale/sr@latin/LC_MESSAGES/kcmfonts.mo +share/locale/sr@latin/LC_MESSAGES/kcmformats.mo +share/locale/sr@latin/LC_MESSAGES/kcminput.mo +share/locale/sr@latin/LC_MESSAGES/kcmkclock.mo +share/locale/sr@latin/LC_MESSAGES/kcmkeyboard.mo +share/locale/sr@latin/LC_MESSAGES/kcmkeys.mo +share/locale/sr@latin/LC_MESSAGES/kcmlaunch.mo +share/locale/sr@latin/LC_MESSAGES/kcmmousetheme.mo +share/locale/sr@latin/LC_MESSAGES/kcmsmserver.mo +share/locale/sr@latin/LC_MESSAGES/kcmstyle.mo +share/locale/sr@latin/LC_MESSAGES/kcmtranslations.mo +share/locale/sr@latin/LC_MESSAGES/kcmworkspaceoptions.mo +share/locale/sr@latin/LC_MESSAGES/kfontinst.mo +share/locale/sr@latin/LC_MESSAGES/knetattach5.mo +share/locale/sr@latin/LC_MESSAGES/krdb.mo +share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo +share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo +share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo +share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo +share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo +share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo +share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo +share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo +share/locale/sr@latin/LC_MESSAGES/plasma_applet_touchpad.mo +share/locale/sr@latin/LC_MESSAGES/plasma_runner_kwin.mo +share/locale/sr@latin/LC_MESSAGES/plasma_runner_plasma-desktop.mo +share/locale/sr@latin/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo +share/locale/sr@latin/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo +share/locale/sr@latin/LC_MESSAGES/plasmaactivitymanager.mo +share/locale/sr@latin/LC_SCRIPTS/kfontinst/kfontinst.js +share/locale/sv/LC_MESSAGES/attica_kde_plugin.mo +share/locale/sv/LC_MESSAGES/joystick.mo +share/locale/sv/LC_MESSAGES/kaccess.mo +share/locale/sv/LC_MESSAGES/kcm5_baloofile.mo +share/locale/sv/LC_MESSAGES/kcm5_componentchooser.mo +share/locale/sv/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/sv/LC_MESSAGES/kcm5_emoticons.mo +share/locale/sv/LC_MESSAGES/kcm5_icons.mo +share/locale/sv/LC_MESSAGES/kcm5_kded.mo +share/locale/sv/LC_MESSAGES/kcm5_notify.mo +share/locale/sv/LC_MESSAGES/kcm5_phonon.mo +share/locale/sv/LC_MESSAGES/kcm_activities5.mo +share/locale/sv/LC_MESSAGES/kcm_autostart.mo +share/locale/sv/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/sv/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/sv/LC_MESSAGES/kcm_lookandfeel.mo +share/locale/sv/LC_MESSAGES/kcm_nightcolor.mo +share/locale/sv/LC_MESSAGES/kcm_search.mo +share/locale/sv/LC_MESSAGES/kcm_solid_actions.mo +share/locale/sv/LC_MESSAGES/kcm_splashscreen.mo +share/locale/sv/LC_MESSAGES/kcm_standard_actions.mo +share/locale/sv/LC_MESSAGES/kcm_touchpad.mo +share/locale/sv/LC_MESSAGES/kcmaccess.mo +share/locale/sv/LC_MESSAGES/kcmcolors.mo +share/locale/sv/LC_MESSAGES/kcmfonts.mo +share/locale/sv/LC_MESSAGES/kcmformats.mo +share/locale/sv/LC_MESSAGES/kcminput.mo +share/locale/sv/LC_MESSAGES/kcmkclock.mo +share/locale/sv/LC_MESSAGES/kcmkeyboard.mo +share/locale/sv/LC_MESSAGES/kcmkeys.mo +share/locale/sv/LC_MESSAGES/kcmlaunch.mo +share/locale/sv/LC_MESSAGES/kcmmousetheme.mo +share/locale/sv/LC_MESSAGES/kcmsmserver.mo +share/locale/sv/LC_MESSAGES/kcmstyle.mo +share/locale/sv/LC_MESSAGES/kcmtranslations.mo +share/locale/sv/LC_MESSAGES/kcmworkspaceoptions.mo +share/locale/sv/LC_MESSAGES/kfontinst.mo +share/locale/sv/LC_MESSAGES/knetattach5.mo +share/locale/sv/LC_MESSAGES/krdb.mo +share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo +share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo +share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo +share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo +share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo +share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo +share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo +share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo +share/locale/sv/LC_MESSAGES/plasma_applet_touchpad.mo +share/locale/sv/LC_MESSAGES/plasma_runner_kwin.mo +share/locale/sv/LC_MESSAGES/plasma_runner_plasma-desktop.mo +share/locale/sv/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo +share/locale/sv/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo +share/locale/sv/LC_MESSAGES/plasmaactivitymanager.mo +share/locale/ta/LC_MESSAGES/joystick.mo +share/locale/ta/LC_MESSAGES/kaccess.mo +share/locale/ta/LC_MESSAGES/kcm5_componentchooser.mo +share/locale/ta/LC_MESSAGES/kcm5_emoticons.mo +share/locale/ta/LC_MESSAGES/kcm5_icons.mo +share/locale/ta/LC_MESSAGES/kcm5_kded.mo +share/locale/ta/LC_MESSAGES/kcm5_notify.mo +share/locale/ta/LC_MESSAGES/kcm5_phonon.mo +share/locale/ta/LC_MESSAGES/kcm_autostart.mo +share/locale/ta/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/ta/LC_MESSAGES/kcmaccess.mo +share/locale/ta/LC_MESSAGES/kcmcolors.mo +share/locale/ta/LC_MESSAGES/kcmfonts.mo +share/locale/ta/LC_MESSAGES/kcmformats.mo +share/locale/ta/LC_MESSAGES/kcminput.mo +share/locale/ta/LC_MESSAGES/kcmkclock.mo +share/locale/ta/LC_MESSAGES/kcmkeyboard.mo +share/locale/ta/LC_MESSAGES/kcmkeys.mo +share/locale/ta/LC_MESSAGES/kcmlaunch.mo +share/locale/ta/LC_MESSAGES/kcmmousetheme.mo +share/locale/ta/LC_MESSAGES/kcmsmserver.mo +share/locale/ta/LC_MESSAGES/kcmstyle.mo +share/locale/ta/LC_MESSAGES/kfontinst.mo +share/locale/ta/LC_MESSAGES/knetattach5.mo +share/locale/ta/LC_MESSAGES/krdb.mo +share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo +share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo +share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo +share/locale/te/LC_MESSAGES/joystick.mo +share/locale/te/LC_MESSAGES/kaccess.mo +share/locale/te/LC_MESSAGES/kcm5_componentchooser.mo +share/locale/te/LC_MESSAGES/kcm5_emoticons.mo +share/locale/te/LC_MESSAGES/kcm5_icons.mo +share/locale/te/LC_MESSAGES/kcm5_kded.mo +share/locale/te/LC_MESSAGES/kcm5_notify.mo +share/locale/te/LC_MESSAGES/kcm5_phonon.mo +share/locale/te/LC_MESSAGES/kcm_autostart.mo +share/locale/te/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/te/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/te/LC_MESSAGES/kcm_standard_actions.mo +share/locale/te/LC_MESSAGES/kcmaccess.mo +share/locale/te/LC_MESSAGES/kcmcolors.mo +share/locale/te/LC_MESSAGES/kcmfonts.mo +share/locale/te/LC_MESSAGES/kcmformats.mo +share/locale/te/LC_MESSAGES/kcminput.mo +share/locale/te/LC_MESSAGES/kcmkclock.mo +share/locale/te/LC_MESSAGES/kcmkeyboard.mo +share/locale/te/LC_MESSAGES/kcmkeys.mo +share/locale/te/LC_MESSAGES/kcmlaunch.mo +share/locale/te/LC_MESSAGES/kcmmousetheme.mo +share/locale/te/LC_MESSAGES/kcmsmserver.mo +share/locale/te/LC_MESSAGES/kcmstyle.mo +share/locale/te/LC_MESSAGES/kfontinst.mo +share/locale/te/LC_MESSAGES/knetattach5.mo +share/locale/te/LC_MESSAGES/krdb.mo +share/locale/te/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/te/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo +share/locale/te/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo +share/locale/te/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo +share/locale/tg/LC_MESSAGES/attica_kde_plugin.mo +share/locale/tg/LC_MESSAGES/joystick.mo +share/locale/tg/LC_MESSAGES/kaccess.mo +share/locale/tg/LC_MESSAGES/kcm5_componentchooser.mo +share/locale/tg/LC_MESSAGES/kcm5_emoticons.mo +share/locale/tg/LC_MESSAGES/kcm5_icons.mo +share/locale/tg/LC_MESSAGES/kcm5_kded.mo +share/locale/tg/LC_MESSAGES/kcm5_notify.mo +share/locale/tg/LC_MESSAGES/kcm5_phonon.mo +share/locale/tg/LC_MESSAGES/kcm_autostart.mo +share/locale/tg/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/tg/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/tg/LC_MESSAGES/kcm_standard_actions.mo +share/locale/tg/LC_MESSAGES/kcmaccess.mo +share/locale/tg/LC_MESSAGES/kcmcolors.mo +share/locale/tg/LC_MESSAGES/kcmfonts.mo +share/locale/tg/LC_MESSAGES/kcmformats.mo +share/locale/tg/LC_MESSAGES/kcminput.mo +share/locale/tg/LC_MESSAGES/kcmkclock.mo +share/locale/tg/LC_MESSAGES/kcmkeyboard.mo +share/locale/tg/LC_MESSAGES/kcmkeys.mo +share/locale/tg/LC_MESSAGES/kcmlaunch.mo +share/locale/tg/LC_MESSAGES/kcmmousetheme.mo +share/locale/tg/LC_MESSAGES/kcmsmserver.mo +share/locale/tg/LC_MESSAGES/kcmstyle.mo +share/locale/tg/LC_MESSAGES/kfontinst.mo +share/locale/tg/LC_MESSAGES/knetattach5.mo +share/locale/tg/LC_MESSAGES/krdb.mo +share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo +share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo +share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo +share/locale/th/LC_MESSAGES/attica_kde_plugin.mo +share/locale/th/LC_MESSAGES/joystick.mo +share/locale/th/LC_MESSAGES/kaccess.mo +share/locale/th/LC_MESSAGES/kcm5_componentchooser.mo +share/locale/th/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/th/LC_MESSAGES/kcm5_emoticons.mo +share/locale/th/LC_MESSAGES/kcm5_icons.mo +share/locale/th/LC_MESSAGES/kcm5_kded.mo +share/locale/th/LC_MESSAGES/kcm5_notify.mo +share/locale/th/LC_MESSAGES/kcm5_phonon.mo +share/locale/th/LC_MESSAGES/kcm_autostart.mo +share/locale/th/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/th/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/th/LC_MESSAGES/kcm_solid_actions.mo +share/locale/th/LC_MESSAGES/kcm_standard_actions.mo +share/locale/th/LC_MESSAGES/kcmaccess.mo +share/locale/th/LC_MESSAGES/kcmcolors.mo +share/locale/th/LC_MESSAGES/kcmfonts.mo +share/locale/th/LC_MESSAGES/kcmformats.mo +share/locale/th/LC_MESSAGES/kcminput.mo +share/locale/th/LC_MESSAGES/kcmkclock.mo +share/locale/th/LC_MESSAGES/kcmkeyboard.mo +share/locale/th/LC_MESSAGES/kcmkeys.mo +share/locale/th/LC_MESSAGES/kcmlaunch.mo +share/locale/th/LC_MESSAGES/kcmmousetheme.mo +share/locale/th/LC_MESSAGES/kcmsmserver.mo +share/locale/th/LC_MESSAGES/kcmstyle.mo +share/locale/th/LC_MESSAGES/kfontinst.mo +share/locale/th/LC_MESSAGES/knetattach5.mo +share/locale/th/LC_MESSAGES/krdb.mo +share/locale/th/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/th/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo +share/locale/th/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo +share/locale/th/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo +share/locale/th/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo +share/locale/th/LC_MESSAGES/plasma_runner_plasma-desktop.mo +share/locale/tr/LC_MESSAGES/attica_kde_plugin.mo +share/locale/tr/LC_MESSAGES/joystick.mo +share/locale/tr/LC_MESSAGES/kaccess.mo +share/locale/tr/LC_MESSAGES/kcm5_baloofile.mo +share/locale/tr/LC_MESSAGES/kcm5_componentchooser.mo +share/locale/tr/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/tr/LC_MESSAGES/kcm5_emoticons.mo +share/locale/tr/LC_MESSAGES/kcm5_icons.mo +share/locale/tr/LC_MESSAGES/kcm5_kded.mo +share/locale/tr/LC_MESSAGES/kcm5_notify.mo +share/locale/tr/LC_MESSAGES/kcm5_phonon.mo +share/locale/tr/LC_MESSAGES/kcm_activities5.mo +share/locale/tr/LC_MESSAGES/kcm_autostart.mo +share/locale/tr/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/tr/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/tr/LC_MESSAGES/kcm_lookandfeel.mo +share/locale/tr/LC_MESSAGES/kcm_search.mo +share/locale/tr/LC_MESSAGES/kcm_solid_actions.mo +share/locale/tr/LC_MESSAGES/kcm_splashscreen.mo +share/locale/tr/LC_MESSAGES/kcm_standard_actions.mo +share/locale/tr/LC_MESSAGES/kcm_touchpad.mo +share/locale/tr/LC_MESSAGES/kcmaccess.mo +share/locale/tr/LC_MESSAGES/kcmcolors.mo +share/locale/tr/LC_MESSAGES/kcmfonts.mo +share/locale/tr/LC_MESSAGES/kcmformats.mo +share/locale/tr/LC_MESSAGES/kcminput.mo +share/locale/tr/LC_MESSAGES/kcmkclock.mo +share/locale/tr/LC_MESSAGES/kcmkeyboard.mo +share/locale/tr/LC_MESSAGES/kcmkeys.mo +share/locale/tr/LC_MESSAGES/kcmlaunch.mo +share/locale/tr/LC_MESSAGES/kcmmousetheme.mo +share/locale/tr/LC_MESSAGES/kcmsmserver.mo +share/locale/tr/LC_MESSAGES/kcmstyle.mo +share/locale/tr/LC_MESSAGES/kcmtranslations.mo +share/locale/tr/LC_MESSAGES/kcmworkspaceoptions.mo +share/locale/tr/LC_MESSAGES/kfontinst.mo +share/locale/tr/LC_MESSAGES/knetattach5.mo +share/locale/tr/LC_MESSAGES/krdb.mo +share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo +share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo +share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo +share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo +share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo +share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo +share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo +share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo +share/locale/tr/LC_MESSAGES/plasma_applet_touchpad.mo +share/locale/tr/LC_MESSAGES/plasma_runner_kwin.mo +share/locale/tr/LC_MESSAGES/plasma_runner_plasma-desktop.mo +share/locale/tr/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo +share/locale/tr/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo +share/locale/tr/LC_MESSAGES/plasmaactivitymanager.mo +share/locale/ug/LC_MESSAGES/attica_kde_plugin.mo +share/locale/ug/LC_MESSAGES/joystick.mo +share/locale/ug/LC_MESSAGES/kaccess.mo +share/locale/ug/LC_MESSAGES/kcm5_componentchooser.mo +share/locale/ug/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/ug/LC_MESSAGES/kcm5_emoticons.mo +share/locale/ug/LC_MESSAGES/kcm5_icons.mo +share/locale/ug/LC_MESSAGES/kcm5_kded.mo +share/locale/ug/LC_MESSAGES/kcm5_notify.mo +share/locale/ug/LC_MESSAGES/kcm5_phonon.mo +share/locale/ug/LC_MESSAGES/kcm_autostart.mo +share/locale/ug/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/ug/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/ug/LC_MESSAGES/kcm_solid_actions.mo +share/locale/ug/LC_MESSAGES/kcm_standard_actions.mo +share/locale/ug/LC_MESSAGES/kcmaccess.mo +share/locale/ug/LC_MESSAGES/kcmcolors.mo +share/locale/ug/LC_MESSAGES/kcmfonts.mo +share/locale/ug/LC_MESSAGES/kcmformats.mo +share/locale/ug/LC_MESSAGES/kcminput.mo +share/locale/ug/LC_MESSAGES/kcmkclock.mo +share/locale/ug/LC_MESSAGES/kcmkeyboard.mo +share/locale/ug/LC_MESSAGES/kcmkeys.mo +share/locale/ug/LC_MESSAGES/kcmlaunch.mo +share/locale/ug/LC_MESSAGES/kcmmousetheme.mo +share/locale/ug/LC_MESSAGES/kcmsmserver.mo +share/locale/ug/LC_MESSAGES/kcmstyle.mo +share/locale/ug/LC_MESSAGES/kfontinst.mo +share/locale/ug/LC_MESSAGES/knetattach5.mo +share/locale/ug/LC_MESSAGES/krdb.mo +share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo +share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo +share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo +share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo +share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo +share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo +share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo +share/locale/ug/LC_MESSAGES/plasma_runner_plasma-desktop.mo +share/locale/ug/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo +share/locale/uk/LC_MESSAGES/attica_kde_plugin.mo +share/locale/uk/LC_MESSAGES/joystick.mo +share/locale/uk/LC_MESSAGES/kaccess.mo +share/locale/uk/LC_MESSAGES/kcm5_baloofile.mo +share/locale/uk/LC_MESSAGES/kcm5_componentchooser.mo +share/locale/uk/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/uk/LC_MESSAGES/kcm5_emoticons.mo +share/locale/uk/LC_MESSAGES/kcm5_icons.mo +share/locale/uk/LC_MESSAGES/kcm5_kded.mo +share/locale/uk/LC_MESSAGES/kcm5_notify.mo +share/locale/uk/LC_MESSAGES/kcm5_phonon.mo +share/locale/uk/LC_MESSAGES/kcm_activities5.mo +share/locale/uk/LC_MESSAGES/kcm_autostart.mo +share/locale/uk/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/uk/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/uk/LC_MESSAGES/kcm_lookandfeel.mo +share/locale/uk/LC_MESSAGES/kcm_nightcolor.mo +share/locale/uk/LC_MESSAGES/kcm_search.mo +share/locale/uk/LC_MESSAGES/kcm_solid_actions.mo +share/locale/uk/LC_MESSAGES/kcm_splashscreen.mo +share/locale/uk/LC_MESSAGES/kcm_standard_actions.mo +share/locale/uk/LC_MESSAGES/kcm_touchpad.mo +share/locale/uk/LC_MESSAGES/kcmaccess.mo +share/locale/uk/LC_MESSAGES/kcmcolors.mo +share/locale/uk/LC_MESSAGES/kcmfonts.mo +share/locale/uk/LC_MESSAGES/kcmformats.mo +share/locale/uk/LC_MESSAGES/kcminput.mo +share/locale/uk/LC_MESSAGES/kcmkclock.mo +share/locale/uk/LC_MESSAGES/kcmkeyboard.mo +share/locale/uk/LC_MESSAGES/kcmkeys.mo +share/locale/uk/LC_MESSAGES/kcmlaunch.mo +share/locale/uk/LC_MESSAGES/kcmmousetheme.mo +share/locale/uk/LC_MESSAGES/kcmsmserver.mo +share/locale/uk/LC_MESSAGES/kcmstyle.mo +share/locale/uk/LC_MESSAGES/kcmtranslations.mo +share/locale/uk/LC_MESSAGES/kcmworkspaceoptions.mo +share/locale/uk/LC_MESSAGES/kfontinst.mo +share/locale/uk/LC_MESSAGES/knetattach5.mo +share/locale/uk/LC_MESSAGES/krdb.mo +share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo +share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo +share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo +share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo +share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo +share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo +share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo +share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo +share/locale/uk/LC_MESSAGES/plasma_applet_touchpad.mo +share/locale/uk/LC_MESSAGES/plasma_runner_kwin.mo +share/locale/uk/LC_MESSAGES/plasma_runner_plasma-desktop.mo +share/locale/uk/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo +share/locale/uk/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo +share/locale/uk/LC_MESSAGES/plasmaactivitymanager.mo +share/locale/uz/LC_MESSAGES/joystick.mo +share/locale/uz/LC_MESSAGES/kaccess.mo +share/locale/uz/LC_MESSAGES/kcm5_componentchooser.mo +share/locale/uz/LC_MESSAGES/kcm5_icons.mo +share/locale/uz/LC_MESSAGES/kcm5_kded.mo +share/locale/uz/LC_MESSAGES/kcm5_notify.mo +share/locale/uz/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/uz/LC_MESSAGES/kcmaccess.mo +share/locale/uz/LC_MESSAGES/kcmcolors.mo +share/locale/uz/LC_MESSAGES/kcmfonts.mo +share/locale/uz/LC_MESSAGES/kcmformats.mo +share/locale/uz/LC_MESSAGES/kcminput.mo +share/locale/uz/LC_MESSAGES/kcmkclock.mo +share/locale/uz/LC_MESSAGES/kcmkeyboard.mo +share/locale/uz/LC_MESSAGES/kcmkeys.mo +share/locale/uz/LC_MESSAGES/kcmlaunch.mo +share/locale/uz/LC_MESSAGES/kcmmousetheme.mo +share/locale/uz/LC_MESSAGES/kcmsmserver.mo +share/locale/uz/LC_MESSAGES/kcmstyle.mo +share/locale/uz/LC_MESSAGES/kfontinst.mo +share/locale/uz/LC_MESSAGES/knetattach5.mo +share/locale/uz/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/uz@cyrillic/LC_MESSAGES/joystick.mo +share/locale/uz@cyrillic/LC_MESSAGES/kaccess.mo +share/locale/uz@cyrillic/LC_MESSAGES/kcm5_componentchooser.mo +share/locale/uz@cyrillic/LC_MESSAGES/kcm5_icons.mo +share/locale/uz@cyrillic/LC_MESSAGES/kcm5_kded.mo +share/locale/uz@cyrillic/LC_MESSAGES/kcm5_notify.mo +share/locale/uz@cyrillic/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/uz@cyrillic/LC_MESSAGES/kcmaccess.mo +share/locale/uz@cyrillic/LC_MESSAGES/kcmcolors.mo +share/locale/uz@cyrillic/LC_MESSAGES/kcmfonts.mo +share/locale/uz@cyrillic/LC_MESSAGES/kcmformats.mo +share/locale/uz@cyrillic/LC_MESSAGES/kcminput.mo +share/locale/uz@cyrillic/LC_MESSAGES/kcmkclock.mo +share/locale/uz@cyrillic/LC_MESSAGES/kcmkeyboard.mo +share/locale/uz@cyrillic/LC_MESSAGES/kcmkeys.mo +share/locale/uz@cyrillic/LC_MESSAGES/kcmlaunch.mo +share/locale/uz@cyrillic/LC_MESSAGES/kcmmousetheme.mo +share/locale/uz@cyrillic/LC_MESSAGES/kcmsmserver.mo +share/locale/uz@cyrillic/LC_MESSAGES/kcmstyle.mo +share/locale/uz@cyrillic/LC_MESSAGES/kfontinst.mo +share/locale/uz@cyrillic/LC_MESSAGES/knetattach5.mo +share/locale/uz@cyrillic/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/vi/LC_MESSAGES/attica_kde_plugin.mo +share/locale/vi/LC_MESSAGES/joystick.mo +share/locale/vi/LC_MESSAGES/kaccess.mo +share/locale/vi/LC_MESSAGES/kcm5_componentchooser.mo +share/locale/vi/LC_MESSAGES/kcm5_emoticons.mo +share/locale/vi/LC_MESSAGES/kcm5_icons.mo +share/locale/vi/LC_MESSAGES/kcm5_kded.mo +share/locale/vi/LC_MESSAGES/kcm5_notify.mo +share/locale/vi/LC_MESSAGES/kcm5_phonon.mo +share/locale/vi/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/vi/LC_MESSAGES/kcmaccess.mo +share/locale/vi/LC_MESSAGES/kcmcolors.mo +share/locale/vi/LC_MESSAGES/kcmfonts.mo +share/locale/vi/LC_MESSAGES/kcmformats.mo +share/locale/vi/LC_MESSAGES/kcminput.mo +share/locale/vi/LC_MESSAGES/kcmkclock.mo +share/locale/vi/LC_MESSAGES/kcmkeyboard.mo +share/locale/vi/LC_MESSAGES/kcmkeys.mo +share/locale/vi/LC_MESSAGES/kcmlaunch.mo +share/locale/vi/LC_MESSAGES/kcmmousetheme.mo +share/locale/vi/LC_MESSAGES/kcmsmserver.mo +share/locale/vi/LC_MESSAGES/kcmstyle.mo +share/locale/vi/LC_MESSAGES/kfontinst.mo +share/locale/vi/LC_MESSAGES/knetattach5.mo +share/locale/vi/LC_MESSAGES/krdb.mo +share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo +share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo +share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo +share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo +share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo +share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo +share/locale/wa/LC_MESSAGES/attica_kde_plugin.mo +share/locale/wa/LC_MESSAGES/joystick.mo +share/locale/wa/LC_MESSAGES/kaccess.mo +share/locale/wa/LC_MESSAGES/kcm5_componentchooser.mo +share/locale/wa/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/wa/LC_MESSAGES/kcm5_emoticons.mo +share/locale/wa/LC_MESSAGES/kcm5_icons.mo +share/locale/wa/LC_MESSAGES/kcm5_kded.mo +share/locale/wa/LC_MESSAGES/kcm5_notify.mo +share/locale/wa/LC_MESSAGES/kcm5_phonon.mo +share/locale/wa/LC_MESSAGES/kcm_autostart.mo +share/locale/wa/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/wa/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/wa/LC_MESSAGES/kcm_solid_actions.mo +share/locale/wa/LC_MESSAGES/kcm_standard_actions.mo +share/locale/wa/LC_MESSAGES/kcmaccess.mo +share/locale/wa/LC_MESSAGES/kcmcolors.mo +share/locale/wa/LC_MESSAGES/kcmfonts.mo +share/locale/wa/LC_MESSAGES/kcmformats.mo +share/locale/wa/LC_MESSAGES/kcminput.mo +share/locale/wa/LC_MESSAGES/kcmkclock.mo +share/locale/wa/LC_MESSAGES/kcmkeyboard.mo +share/locale/wa/LC_MESSAGES/kcmkeys.mo +share/locale/wa/LC_MESSAGES/kcmlaunch.mo +share/locale/wa/LC_MESSAGES/kcmmousetheme.mo +share/locale/wa/LC_MESSAGES/kcmsmserver.mo +share/locale/wa/LC_MESSAGES/kcmstyle.mo +share/locale/wa/LC_MESSAGES/kfontinst.mo +share/locale/wa/LC_MESSAGES/knetattach5.mo +share/locale/wa/LC_MESSAGES/krdb.mo +share/locale/wa/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/wa/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo +share/locale/wa/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo +share/locale/wa/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo +share/locale/wa/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo +share/locale/wa/LC_MESSAGES/plasma_runner_plasma-desktop.mo +share/locale/xh/LC_MESSAGES/kaccess.mo +share/locale/xh/LC_MESSAGES/kcm5_componentchooser.mo +share/locale/xh/LC_MESSAGES/kcm5_icons.mo +share/locale/xh/LC_MESSAGES/kcm5_kded.mo +share/locale/xh/LC_MESSAGES/kcm5_notify.mo +share/locale/xh/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/xh/LC_MESSAGES/kcmaccess.mo +share/locale/xh/LC_MESSAGES/kcmcolors.mo +share/locale/xh/LC_MESSAGES/kcmfonts.mo +share/locale/xh/LC_MESSAGES/kcmformats.mo +share/locale/xh/LC_MESSAGES/kcminput.mo +share/locale/xh/LC_MESSAGES/kcmkclock.mo +share/locale/xh/LC_MESSAGES/kcmkeyboard.mo +share/locale/xh/LC_MESSAGES/kcmkeys.mo +share/locale/xh/LC_MESSAGES/kcmlaunch.mo +share/locale/xh/LC_MESSAGES/kcmmousetheme.mo +share/locale/xh/LC_MESSAGES/kcmsmserver.mo +share/locale/xh/LC_MESSAGES/kcmstyle.mo +share/locale/xh/LC_MESSAGES/kfontinst.mo +share/locale/xh/LC_MESSAGES/krdb.mo +share/locale/xh/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/zh_CN/LC_MESSAGES/attica_kde_plugin.mo +share/locale/zh_CN/LC_MESSAGES/joystick.mo +share/locale/zh_CN/LC_MESSAGES/kaccess.mo +share/locale/zh_CN/LC_MESSAGES/kcm5_baloofile.mo +share/locale/zh_CN/LC_MESSAGES/kcm5_componentchooser.mo +share/locale/zh_CN/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/zh_CN/LC_MESSAGES/kcm5_emoticons.mo +share/locale/zh_CN/LC_MESSAGES/kcm5_icons.mo +share/locale/zh_CN/LC_MESSAGES/kcm5_kded.mo +share/locale/zh_CN/LC_MESSAGES/kcm5_notify.mo +share/locale/zh_CN/LC_MESSAGES/kcm5_phonon.mo +share/locale/zh_CN/LC_MESSAGES/kcm_activities5.mo +share/locale/zh_CN/LC_MESSAGES/kcm_autostart.mo +share/locale/zh_CN/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/zh_CN/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/zh_CN/LC_MESSAGES/kcm_lookandfeel.mo +share/locale/zh_CN/LC_MESSAGES/kcm_nightcolor.mo +share/locale/zh_CN/LC_MESSAGES/kcm_search.mo +share/locale/zh_CN/LC_MESSAGES/kcm_solid_actions.mo +share/locale/zh_CN/LC_MESSAGES/kcm_splashscreen.mo +share/locale/zh_CN/LC_MESSAGES/kcm_standard_actions.mo +share/locale/zh_CN/LC_MESSAGES/kcm_touchpad.mo +share/locale/zh_CN/LC_MESSAGES/kcmaccess.mo +share/locale/zh_CN/LC_MESSAGES/kcmcolors.mo +share/locale/zh_CN/LC_MESSAGES/kcmfonts.mo +share/locale/zh_CN/LC_MESSAGES/kcmformats.mo +share/locale/zh_CN/LC_MESSAGES/kcminput.mo +share/locale/zh_CN/LC_MESSAGES/kcmkclock.mo +share/locale/zh_CN/LC_MESSAGES/kcmkeyboard.mo +share/locale/zh_CN/LC_MESSAGES/kcmkeys.mo +share/locale/zh_CN/LC_MESSAGES/kcmlaunch.mo +share/locale/zh_CN/LC_MESSAGES/kcmmousetheme.mo +share/locale/zh_CN/LC_MESSAGES/kcmsmserver.mo +share/locale/zh_CN/LC_MESSAGES/kcmstyle.mo +share/locale/zh_CN/LC_MESSAGES/kcmtranslations.mo +share/locale/zh_CN/LC_MESSAGES/kcmworkspaceoptions.mo +share/locale/zh_CN/LC_MESSAGES/kfontinst.mo +share/locale/zh_CN/LC_MESSAGES/knetattach5.mo +share/locale/zh_CN/LC_MESSAGES/krdb.mo +share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo +share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo +share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo +share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo +share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo +share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo +share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo +share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo +share/locale/zh_CN/LC_MESSAGES/plasma_applet_touchpad.mo +share/locale/zh_CN/LC_MESSAGES/plasma_runner_kwin.mo +share/locale/zh_CN/LC_MESSAGES/plasma_runner_plasma-desktop.mo +share/locale/zh_CN/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo +share/locale/zh_CN/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo +share/locale/zh_CN/LC_MESSAGES/plasmaactivitymanager.mo +share/locale/zh_TW/LC_MESSAGES/attica_kde_plugin.mo +share/locale/zh_TW/LC_MESSAGES/joystick.mo +share/locale/zh_TW/LC_MESSAGES/kaccess.mo +share/locale/zh_TW/LC_MESSAGES/kcm5_baloofile.mo +share/locale/zh_TW/LC_MESSAGES/kcm5_componentchooser.mo +share/locale/zh_TW/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/zh_TW/LC_MESSAGES/kcm5_emoticons.mo +share/locale/zh_TW/LC_MESSAGES/kcm5_icons.mo +share/locale/zh_TW/LC_MESSAGES/kcm5_kded.mo +share/locale/zh_TW/LC_MESSAGES/kcm5_notify.mo +share/locale/zh_TW/LC_MESSAGES/kcm5_phonon.mo +share/locale/zh_TW/LC_MESSAGES/kcm_activities5.mo +share/locale/zh_TW/LC_MESSAGES/kcm_autostart.mo +share/locale/zh_TW/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/zh_TW/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/zh_TW/LC_MESSAGES/kcm_lookandfeel.mo +share/locale/zh_TW/LC_MESSAGES/kcm_search.mo +share/locale/zh_TW/LC_MESSAGES/kcm_solid_actions.mo +share/locale/zh_TW/LC_MESSAGES/kcm_splashscreen.mo +share/locale/zh_TW/LC_MESSAGES/kcm_standard_actions.mo +share/locale/zh_TW/LC_MESSAGES/kcm_touchpad.mo +share/locale/zh_TW/LC_MESSAGES/kcmaccess.mo +share/locale/zh_TW/LC_MESSAGES/kcmcolors.mo +share/locale/zh_TW/LC_MESSAGES/kcmfonts.mo +share/locale/zh_TW/LC_MESSAGES/kcmformats.mo +share/locale/zh_TW/LC_MESSAGES/kcminput.mo +share/locale/zh_TW/LC_MESSAGES/kcmkclock.mo +share/locale/zh_TW/LC_MESSAGES/kcmkeyboard.mo +share/locale/zh_TW/LC_MESSAGES/kcmkeys.mo +share/locale/zh_TW/LC_MESSAGES/kcmlaunch.mo +share/locale/zh_TW/LC_MESSAGES/kcmmousetheme.mo +share/locale/zh_TW/LC_MESSAGES/kcmsmserver.mo +share/locale/zh_TW/LC_MESSAGES/kcmstyle.mo +share/locale/zh_TW/LC_MESSAGES/kcmtranslations.mo +share/locale/zh_TW/LC_MESSAGES/kcmworkspaceoptions.mo +share/locale/zh_TW/LC_MESSAGES/kfontinst.mo +share/locale/zh_TW/LC_MESSAGES/knetattach5.mo +share/locale/zh_TW/LC_MESSAGES/krdb.mo +share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo +share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo +share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo +share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo +share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo +share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo +share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo +share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo +share/locale/zh_TW/LC_MESSAGES/plasma_applet_touchpad.mo +share/locale/zh_TW/LC_MESSAGES/plasma_runner_kwin.mo +share/locale/zh_TW/LC_MESSAGES/plasma_runner_plasma-desktop.mo +share/locale/zh_TW/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo +share/locale/zh_TW/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo +share/locale/zh_TW/LC_MESSAGES/plasmaactivitymanager.mo +share/metainfo/org.kde.desktopcontainment.appdata.xml +share/metainfo/org.kde.desktoptoolbox.appdata.xml +share/metainfo/org.kde.paneltoolbox.appdata.xml +share/metainfo/org.kde.plasma.desktop.appdata.xml +share/metainfo/org.kde.plasma.desktop.appmenubar.appdata.xml +share/metainfo/org.kde.plasma.desktop.defaultPanel.appdata.xml +share/metainfo/org.kde.plasma.desktop.emptyPanel.appdata.xml +share/metainfo/org.kde.plasma.folder.appdata.xml +share/metainfo/org.kde.plasma.icontasks.appdata.xml +share/metainfo/org.kde.plasma.kicker.appdata.xml +share/metainfo/org.kde.plasma.kickoff.appdata.xml +share/metainfo/org.kde.plasma.kimpanel.appdata.xml +share/metainfo/org.kde.plasma.pager.appdata.xml +share/metainfo/org.kde.plasma.showActivityManager.appdata.xml +share/metainfo/org.kde.plasma.taskmanager.appdata.xml +share/metainfo/org.kde.plasma.trash.appdata.xml +share/metainfo/org.kde.plasma.windowlist.appdata.xml +share/metainfo/org.kde.plasmashell.metainfo.xml +%%SYNAPTICS%%share/plasma/desktoptheme/default/icons/touchpad.svg +share/plasma/layout-templates/org.kde.plasma.desktop.appmenubar/contents/layout.js +share/plasma/layout-templates/org.kde.plasma.desktop.appmenubar/metadata.desktop +share/plasma/layout-templates/org.kde.plasma.desktop.appmenubar/metadata.json +share/plasma/layout-templates/org.kde.plasma.desktop.defaultPanel/contents/layout.js +share/plasma/layout-templates/org.kde.plasma.desktop.defaultPanel/metadata.desktop +share/plasma/layout-templates/org.kde.plasma.desktop.defaultPanel/metadata.json +share/plasma/layout-templates/org.kde.plasma.desktop.emptyPanel/contents/layout.js +share/plasma/layout-templates/org.kde.plasma.desktop.emptyPanel/metadata.desktop +share/plasma/layout-templates/org.kde.plasma.desktop.emptyPanel/metadata.json +share/plasma/packages/org.kde.desktoptoolbox/contents/config/main.xml +share/plasma/packages/org.kde.desktoptoolbox/contents/ui/ToolBoxButton.qml +share/plasma/packages/org.kde.desktoptoolbox/contents/ui/ToolBoxItem.qml +share/plasma/packages/org.kde.desktoptoolbox/contents/ui/ToolBoxRoot.qml +share/plasma/packages/org.kde.desktoptoolbox/metadata.desktop +share/plasma/packages/org.kde.desktoptoolbox/metadata.json +share/plasma/packages/org.kde.paneltoolbox/contents/ui/main.qml +share/plasma/packages/org.kde.paneltoolbox/metadata.desktop +share/plasma/packages/org.kde.paneltoolbox/metadata.json +share/plasma/plasmoids/org.kde.desktopcontainment/contents/code/FolderTools.js +share/plasma/plasmoids/org.kde.desktopcontainment/contents/code/LayoutManager.js +share/plasma/plasmoids/org.kde.desktopcontainment/contents/config/config.qml +share/plasma/plasmoids/org.kde.desktopcontainment/contents/config/main.xml +share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/ActionButton.qml +share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/AppletAppearance.qml +share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/AppletHandle.qml +share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/BackButtonItem.qml +share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/BusyOverlay.qml +share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/CompactRepresentation.qml +share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/ConfigFilter.qml +share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/ConfigIcons.qml +share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/ConfigLocation.qml +share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/ConfigTweaks.qml +share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/FolderItemActionButton.qml +share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/FolderItemDelegate.qml +share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/FolderItemPreviewPluginsDialog.qml +share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/FolderView.qml +share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/FolderViewDialog.qml +share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/FolderViewDropArea.qml +share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/FolderViewLayer.qml +share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/ResizeHandle.qml +share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/main.qml +share/plasma/plasmoids/org.kde.desktopcontainment/metadata.desktop +share/plasma/plasmoids/org.kde.desktopcontainment/metadata.json +share/plasma/plasmoids/org.kde.panel/contents/code/LayoutManager.js +share/plasma/plasmoids/org.kde.panel/contents/config/main.xml +share/plasma/plasmoids/org.kde.panel/contents/ui/ConfigOverlay.qml +share/plasma/plasmoids/org.kde.panel/contents/ui/main.qml +share/plasma/plasmoids/org.kde.panel/metadata.desktop +share/plasma/plasmoids/org.kde.panel/metadata.json +share/plasma/plasmoids/org.kde.panel/plasma-containment-panel.desktop +share/plasma/plasmoids/org.kde.plasma.folder/metadata.desktop +share/plasma/plasmoids/org.kde.plasma.folder/metadata.json +share/plasma/plasmoids/org.kde.plasma.icontasks/metadata.desktop +share/plasma/plasmoids/org.kde.plasma.icontasks/metadata.json +share/plasma/plasmoids/org.kde.plasma.kicker/contents/code/tools.js +share/plasma/plasmoids/org.kde.plasma.kicker/contents/config/config.qml +share/plasma/plasmoids/org.kde.plasma.kicker/contents/config/main.xml +share/plasma/plasmoids/org.kde.plasma.kicker/contents/ui/ActionMenu.qml +share/plasma/plasmoids/org.kde.plasma.kicker/contents/ui/CompactRepresentation.qml +share/plasma/plasmoids/org.kde.plasma.kicker/contents/ui/ConfigGeneral.qml +share/plasma/plasmoids/org.kde.plasma.kicker/contents/ui/DashboardRepresentation.qml +share/plasma/plasmoids/org.kde.plasma.kicker/contents/ui/DashboardTabBar.qml +share/plasma/plasmoids/org.kde.plasma.kicker/contents/ui/DashboardTabButton.qml +share/plasma/plasmoids/org.kde.plasma.kicker/contents/ui/ItemGridDelegate.qml +share/plasma/plasmoids/org.kde.plasma.kicker/contents/ui/ItemGridView.qml +share/plasma/plasmoids/org.kde.plasma.kicker/contents/ui/ItemListDelegate.qml +share/plasma/plasmoids/org.kde.plasma.kicker/contents/ui/ItemListDialog.qml +share/plasma/plasmoids/org.kde.plasma.kicker/contents/ui/ItemListView.qml +share/plasma/plasmoids/org.kde.plasma.kicker/contents/ui/ItemMultiGridView.qml +share/plasma/plasmoids/org.kde.plasma.kicker/contents/ui/MenuRepresentation.qml +share/plasma/plasmoids/org.kde.plasma.kicker/contents/ui/RunnerResultsList.qml +share/plasma/plasmoids/org.kde.plasma.kicker/contents/ui/SideBarItem.qml +share/plasma/plasmoids/org.kde.plasma.kicker/contents/ui/SideBarSection.qml +share/plasma/plasmoids/org.kde.plasma.kicker/contents/ui/main.qml +share/plasma/plasmoids/org.kde.plasma.kicker/metadata.desktop +share/plasma/plasmoids/org.kde.plasma.kicker/metadata.json +share/plasma/plasmoids/org.kde.plasma.kickoff/contents/code/tools.js +share/plasma/plasmoids/org.kde.plasma.kickoff/contents/config/config.qml +share/plasma/plasmoids/org.kde.plasma.kickoff/contents/config/main.xml +share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/ActionMenu.qml +share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/ApplicationsView.qml +share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/BaseView.qml +share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/Breadcrumb.qml +share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/ComputerView.qml +share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/ConfigButtons.qml +share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/ConfigGeneral.qml +share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/FavoritesView.qml +share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/Footer.qml +share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/FullRepresentation.qml +share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/Header.qml +share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/Kickoff.qml +share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/KickoffButton.qml +share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/KickoffConfigurationButton.qml +share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/KickoffHighlight.qml +share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/KickoffItem.qml +share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/LeaveView.qml +share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/OftenUsedView.qml +share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/RecentlyUsedView.qml +share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/SearchView.qml +share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/SectionDelegate.qml +share/plasma/plasmoids/org.kde.plasma.kickoff/metadata.desktop +share/plasma/plasmoids/org.kde.plasma.kickoff/metadata.json +share/plasma/plasmoids/org.kde.plasma.kimpanel/contents/config/config.qml +share/plasma/plasmoids/org.kde.plasma.kimpanel/contents/config/main.xml +share/plasma/plasmoids/org.kde.plasma.kimpanel/contents/ui/ActionMenu.qml +share/plasma/plasmoids/org.kde.plasma.kimpanel/contents/ui/CandidateHighlight.qml +share/plasma/plasmoids/org.kde.plasma.kimpanel/contents/ui/ConfigAppearance.qml +share/plasma/plasmoids/org.kde.plasma.kimpanel/contents/ui/ContextMenu.qml +share/plasma/plasmoids/org.kde.plasma.kimpanel/contents/ui/InputPanel.qml +share/plasma/plasmoids/org.kde.plasma.kimpanel/contents/ui/StatusIcon.qml +share/plasma/plasmoids/org.kde.plasma.kimpanel/contents/ui/main.qml +share/plasma/plasmoids/org.kde.plasma.kimpanel/metadata.desktop +share/plasma/plasmoids/org.kde.plasma.kimpanel/metadata.json +share/plasma/plasmoids/org.kde.plasma.pager/contents/config/config.qml +share/plasma/plasmoids/org.kde.plasma.pager/contents/config/main.xml +share/plasma/plasmoids/org.kde.plasma.pager/contents/ui/configGeneral.qml +share/plasma/plasmoids/org.kde.plasma.pager/contents/ui/main.qml +share/plasma/plasmoids/org.kde.plasma.pager/metadata.desktop +share/plasma/plasmoids/org.kde.plasma.pager/metadata.json +share/plasma/plasmoids/org.kde.plasma.showActivityManager/contents/ui/main.qml +share/plasma/plasmoids/org.kde.plasma.showActivityManager/metadata.desktop +share/plasma/plasmoids/org.kde.plasma.showActivityManager/metadata.json +share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/code/layout.js +share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/code/tools.js +share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/config/config.qml +share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/config/main.xml +share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/AudioStream.qml +share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/Badge.qml +share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/ConfigGeneral.qml +share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/ContextMenu.qml +share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/GroupDialog.qml +share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/GroupExpanderOverlay.qml +share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/MouseHandler.qml +share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/PulseAudio.qml +share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/Task.qml +share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/TaskBadgeOverlay.qml +share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/TaskList.qml +share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/TaskProgressOverlay.qml +share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/ToolTipDelegate.qml +share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/ToolTipInstance.qml +share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/ToolTipWindowMouseArea.qml +share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/main.qml +share/plasma/plasmoids/org.kde.plasma.taskmanager/metadata.desktop +share/plasma/plasmoids/org.kde.plasma.taskmanager/metadata.json +share/plasma/plasmoids/org.kde.plasma.trash/contents/ui/main.qml +share/plasma/plasmoids/org.kde.plasma.trash/metadata.desktop +share/plasma/plasmoids/org.kde.plasma.trash/metadata.json +share/plasma/plasmoids/org.kde.plasma.windowlist/contents/ui/main.qml +share/plasma/plasmoids/org.kde.plasma.windowlist/metadata.desktop +share/plasma/plasmoids/org.kde.plasma.windowlist/metadata.json +%%SYNAPTICS%%share/plasma/plasmoids/touchpad/contents/ui/touchpad.qml +%%SYNAPTICS%%share/plasma/plasmoids/touchpad/metadata.desktop +%%SYNAPTICS%%share/plasma/plasmoids/touchpad/metadata.json +share/plasma/services/kimpanel.operations +%%SYNAPTICS%%share/plasma/services/touchpad.operations +share/plasma/shells/org.kde.plasma.desktop/contents/InteractiveConsole.qml +share/plasma/shells/org.kde.plasma.desktop/contents/activitymanager/ActivityItem.qml +share/plasma/shells/org.kde.plasma.desktop/contents/activitymanager/ActivityList.qml +share/plasma/shells/org.kde.plasma.desktop/contents/activitymanager/ActivityManager.qml +share/plasma/shells/org.kde.plasma.desktop/contents/activitymanager/Heading.qml +share/plasma/shells/org.kde.plasma.desktop/contents/activitymanager/StoppedActivityItem.qml +share/plasma/shells/org.kde.plasma.desktop/contents/activitymanager/WindowPreview.qml +share/plasma/shells/org.kde.plasma.desktop/contents/activitymanager/static.js +share/plasma/shells/org.kde.plasma.desktop/contents/applet/AppletError.qml +share/plasma/shells/org.kde.plasma.desktop/contents/applet/CompactApplet.qml +share/plasma/shells/org.kde.plasma.desktop/contents/applet/DefaultCompactRepresentation.qml +share/plasma/shells/org.kde.plasma.desktop/contents/configuration/AppletConfiguration.qml +share/plasma/shells/org.kde.plasma.desktop/contents/configuration/ConfigCategoryDelegate.qml +share/plasma/shells/org.kde.plasma.desktop/contents/configuration/ConfigurationContainmentActions.qml +share/plasma/shells/org.kde.plasma.desktop/contents/configuration/ConfigurationContainmentAppearance.qml +share/plasma/shells/org.kde.plasma.desktop/contents/configuration/ConfigurationKcmPage.qml +share/plasma/shells/org.kde.plasma.desktop/contents/configuration/ConfigurationShortcuts.qml +share/plasma/shells/org.kde.plasma.desktop/contents/configuration/ContainmentConfiguration.qml +share/plasma/shells/org.kde.plasma.desktop/contents/configuration/MouseEventInputButton.qml +share/plasma/shells/org.kde.plasma.desktop/contents/configuration/PanelConfiguration.qml +share/plasma/shells/org.kde.plasma.desktop/contents/configuration/panelconfiguration/EdgeHandle.qml +share/plasma/shells/org.kde.plasma.desktop/contents/configuration/panelconfiguration/MoreSettingsMenu.qml +share/plasma/shells/org.kde.plasma.desktop/contents/configuration/panelconfiguration/Ruler.qml +share/plasma/shells/org.kde.plasma.desktop/contents/configuration/panelconfiguration/SizeHandle.qml +share/plasma/shells/org.kde.plasma.desktop/contents/configuration/panelconfiguration/SliderHandle.qml +share/plasma/shells/org.kde.plasma.desktop/contents/configuration/panelconfiguration/ToolBar.qml +share/plasma/shells/org.kde.plasma.desktop/contents/defaults +share/plasma/shells/org.kde.plasma.desktop/contents/explorer/AppletAlternatives.qml +share/plasma/shells/org.kde.plasma.desktop/contents/explorer/AppletDelegate.qml +share/plasma/shells/org.kde.plasma.desktop/contents/explorer/Tooltip.qml +share/plasma/shells/org.kde.plasma.desktop/contents/explorer/WidgetExplorer.qml +share/plasma/shells/org.kde.plasma.desktop/contents/layout.js +share/plasma/shells/org.kde.plasma.desktop/contents/loader.qml +share/plasma/shells/org.kde.plasma.desktop/contents/updates/obsolete_kickoffrc.js +share/plasma/shells/org.kde.plasma.desktop/contents/views/Desktop.qml +share/plasma/shells/org.kde.plasma.desktop/contents/views/Panel.qml +share/plasma/shells/org.kde.plasma.desktop/metadata.desktop +share/plasma/shells/org.kde.plasma.desktop/metadata.json +share/polkit-1/actions/org.kde.fontinst.policy +share/polkit-1/actions/org.kde.kcontrol.kcmclock.policy +share/solid/devices/solid-device-Battery.desktop +share/solid/devices/solid-device-Block.desktop +share/solid/devices/solid-device-Camera.desktop +share/solid/devices/solid-device-OpticalDisc.desktop +share/solid/devices/solid-device-OpticalDrive.desktop +share/solid/devices/solid-device-PortableMediaPlayer.desktop +share/solid/devices/solid-device-Processor.desktop +share/solid/devices/solid-device-StorageAccess.desktop +share/solid/devices/solid-device-StorageDrive.desktop +share/solid/devices/solid-device-StorageVolume.desktop Property changes on: head/x11/plasma5-plasma-desktop/pkg-plist ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/x11/plasma5-plasma-integration/Makefile =================================================================== --- head/x11/plasma5-plasma-integration/Makefile (nonexistent) +++ head/x11/plasma5-plasma-integration/Makefile (revision 468495) @@ -0,0 +1,38 @@ +# $FreeBSD$ + +PORTNAME= plasma-integration +DISTVERSION= ${KDE_PLASMA_VERSION} +CATEGORIES= x11 kde kde-plasma + +MAINTAINER= kde@FreeBSD.org +COMMENT= Qt Platform Theme integration plugins for the Plasma workspaces + +RUN_DEPENDS= hack-font>=0:x11-fonts/hack-font + +USES= cmake:outsource compiler:c++11-lib cpe gettext kde:5 pkgconfig \ + shebangfix tar:xz +USE_KDE= auth bookmarks breeze codecs completion config configwidgets \ + coreaddons ecm i18n iconthemes itemviews jobwidgets kio \ + notifications service solid wayland \ + widgetsaddons windowsystem xmlgui +USE_QT5= concurrent core dbus gui network qml quick quickcontrols2 widgets \ + x11extras xml \ + buildtools_build qmake_build +USE_XORG= xcb xcursor + +SHEBANG_FILES= src/platformtheme/fonts_akregator.pl \ + src/platformtheme/fonts_global.pl \ + src/platformtheme/fonts_kate.pl \ + src/platformtheme/mono_font.pl + +OPTIONS_SINGLE= NOTO +OPTIONS_SINGLE_NOTO= LIGHT BIG +OPTIONS_DEFAULT= LIGHT +NOTO_DESC= KDE default font +LIGHT_DESC= Use noto-light +BIG_DESC= Use complete noto + +LIGHT_RUN_DEPENDS= noto-lite>=0:x11-fonts/noto-lite +BIG_RUN_DEPENDS= noto>=0:x11-fonts/noto + +.include Property changes on: head/x11/plasma5-plasma-integration/Makefile ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/x11/plasma5-plasma-integration/distinfo =================================================================== --- head/x11/plasma5-plasma-integration/distinfo (nonexistent) +++ head/x11/plasma5-plasma-integration/distinfo (revision 468495) @@ -0,0 +1,3 @@ +TIMESTAMP = 1523811831 +SHA256 (KDE/plasma/5.12.4/plasma-integration-5.12.4.tar.xz) = 8b4e25cea0e533b95682e613b8dcc3f8ebe2e100610b03805ba08952eb64be61 +SIZE (KDE/plasma/5.12.4/plasma-integration-5.12.4.tar.xz) = 53488 Property changes on: head/x11/plasma5-plasma-integration/distinfo ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/x11/plasma5-plasma-integration/pkg-descr =================================================================== --- head/x11/plasma5-plasma-integration/pkg-descr (nonexistent) +++ head/x11/plasma5-plasma-integration/pkg-descr (revision 468495) @@ -0,0 +1,3 @@ +Qt Platform Theme integration plugins for the Plasma workspaces. + +WWW: https://www.kde.org/plasma-desktop Property changes on: head/x11/plasma5-plasma-integration/pkg-descr ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/x11/plasma5-plasma-integration/pkg-plist =================================================================== --- head/x11/plasma5-plasma-integration/pkg-plist (nonexistent) +++ head/x11/plasma5-plasma-integration/pkg-plist (revision 468495) @@ -0,0 +1,48 @@ +%%QT_PLUGINDIR%%/platformthemes/KDEPlasmaPlatformTheme.so +share/kconf_update/fonts_akregator.pl +share/kconf_update/fonts_akregator.upd +share/kconf_update/fonts_global.pl +share/kconf_update/fonts_global.upd +share/kconf_update/fonts_global_toolbar.upd +share/kconf_update/fonts_kate.pl +share/kconf_update/fonts_kate.upd +share/locale/ar/LC_MESSAGES/plasmaintegration5.mo +share/locale/ast/LC_MESSAGES/plasmaintegration5.mo +share/locale/ca/LC_MESSAGES/plasmaintegration5.mo +share/locale/ca@valencia/LC_MESSAGES/plasmaintegration5.mo +share/locale/cs/LC_MESSAGES/plasmaintegration5.mo +share/locale/da/LC_MESSAGES/plasmaintegration5.mo +share/locale/de/LC_MESSAGES/plasmaintegration5.mo +share/locale/el/LC_MESSAGES/plasmaintegration5.mo +share/locale/en_GB/LC_MESSAGES/plasmaintegration5.mo +share/locale/es/LC_MESSAGES/plasmaintegration5.mo +share/locale/et/LC_MESSAGES/plasmaintegration5.mo +share/locale/eu/LC_MESSAGES/plasmaintegration5.mo +share/locale/fi/LC_MESSAGES/plasmaintegration5.mo +share/locale/fr/LC_MESSAGES/plasmaintegration5.mo +share/locale/gl/LC_MESSAGES/plasmaintegration5.mo +share/locale/he/LC_MESSAGES/plasmaintegration5.mo +share/locale/hu/LC_MESSAGES/plasmaintegration5.mo +share/locale/ia/LC_MESSAGES/plasmaintegration5.mo +share/locale/it/LC_MESSAGES/plasmaintegration5.mo +share/locale/ja/LC_MESSAGES/plasmaintegration5.mo +share/locale/ko/LC_MESSAGES/plasmaintegration5.mo +share/locale/nb/LC_MESSAGES/plasmaintegration5.mo +share/locale/nl/LC_MESSAGES/plasmaintegration5.mo +share/locale/nn/LC_MESSAGES/plasmaintegration5.mo +share/locale/pa/LC_MESSAGES/plasmaintegration5.mo +share/locale/pl/LC_MESSAGES/plasmaintegration5.mo +share/locale/pt/LC_MESSAGES/plasmaintegration5.mo +share/locale/pt_BR/LC_MESSAGES/plasmaintegration5.mo +share/locale/ru/LC_MESSAGES/plasmaintegration5.mo +share/locale/sk/LC_MESSAGES/plasmaintegration5.mo +share/locale/sl/LC_MESSAGES/plasmaintegration5.mo +share/locale/sr/LC_MESSAGES/plasmaintegration5.mo +share/locale/sr@ijekavian/LC_MESSAGES/plasmaintegration5.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/plasmaintegration5.mo +share/locale/sr@latin/LC_MESSAGES/plasmaintegration5.mo +share/locale/sv/LC_MESSAGES/plasmaintegration5.mo +share/locale/tr/LC_MESSAGES/plasmaintegration5.mo +share/locale/uk/LC_MESSAGES/plasmaintegration5.mo +share/locale/zh_CN/LC_MESSAGES/plasmaintegration5.mo +share/locale/zh_TW/LC_MESSAGES/plasmaintegration5.mo Property changes on: head/x11/plasma5-plasma-integration/pkg-plist ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/x11/plasma5-plasma-workspace/Makefile =================================================================== --- head/x11/plasma5-plasma-workspace/Makefile (nonexistent) +++ head/x11/plasma5-plasma-workspace/Makefile (revision 468495) @@ -0,0 +1,57 @@ +# $FreeBSD$ + +PORTNAME= plasma-workspace +DISTVERSION= ${KDE_PLASMA_VERSION} +CATEGORIES= x11 kde kde-plasma + +MAINTAINER= kde@FreeBSD.org +COMMENT= Plasma5 Plasma workspace + +LIB_DEPENDS= libcln.so:math/cln \ + libdbusmenu-qt5.so:devel/libdbusmenu-qt@qt5 \ + libqalculate.so:math/libqalculate \ + libxcb-image.so:x11/xcb-util-image \ + libxcb-util.so:x11/xcb-util +RUN_DEPENDS= ck-launch-session:sysutils/consolekit2\ + iceauth:x11/iceauth \ + xsetroot:x11/xsetroot \ + xset:x11/xset \ + xmessage:x11/xmessage \ + ${LOCALBASE}/libdata/pkgconfig/xkeyboard-config.pc:x11/xkeyboard-config \ + iso-codes>=0:misc/iso-codes + +USES= cmake:outsource compiler:c++11-lib cpe gettext kde:5 pkgconfig \ + tar:xz +USE_KDE= activities activitymanagerd attica auth baloo bookmarks \ + codecs completion config configwidgets coreaddons crash \ + dbusaddons doctools emoticons filemetadata globalaccel \ + guiaddons holidays i18n iconthemes idletime init itemmodels \ + itemviews jobwidgets js jsembed kcmutils kdeclarative \ + kdelibs4support kdesu kdewebkit kio kscreenlocker \ + notifications package pty kwin libkscreen libksysguard \ + newstuff notifyconfig parts plasma-framework \ + plasma-integration prison runner service solid sonnet \ + texteditor textwidgets unitconversion wallet wayland \ + widgetsaddons windowsystem xmlgui xmlrpcclient \ + breeze_run breeze-icons_run oxygen-icons5_run \ + kde-cli-tools_run kded_run milou_run +USE_QT5= concurrent core dbus graphicaleffects gui network phonon4 \ + printsupport qdbus qml quick quickcontrols_run script sql \ + testlib webkit widgets x11extras xml \ + paths_run \ + buildtools_build qmake_build +USE_XORG= ice sm x11 xau xcb xcomposite xext xfixes xft xkbfile xrender xtst + +CMAKE_OFF= BUILD_TESTING + +post-patch: +# set the paths in startkde + ${REINPLACE_CMD} -e 's|%%KDE_PREFIX%%|${KDE_PREFIX}|g' \ + -e 's|%%LOCALBASE%%|${LOCALBASE}|g' \ + -e 's|%%QT_BINDIR%%|${QT_BINDIR}|g' \ + -e 's|%%QT_IMPORTDIR%%|${QT_IMPORTDIR}|g' \ + -e 's|%%QT_PLUGINDIR%%|${QT_PLUGINDIR}|g' \ + -e 's|%%QT_QMLDIR%%|${QT_QMLDIR}|g' \ + ${PATCH_WRKSRC}/startkde/startkde.cmake + +.include Property changes on: head/x11/plasma5-plasma-workspace/Makefile ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/x11/plasma5-plasma-workspace/distinfo =================================================================== --- head/x11/plasma5-plasma-workspace/distinfo (nonexistent) +++ head/x11/plasma5-plasma-workspace/distinfo (revision 468495) @@ -0,0 +1,3 @@ +TIMESTAMP = 1523811832 +SHA256 (KDE/plasma/5.12.4/plasma-workspace-5.12.4.tar.xz) = 07d63fc73293d0c1244d67f018e8986a79a7c570b0d5fa92d11a3b20a189c202 +SIZE (KDE/plasma/5.12.4/plasma-workspace-5.12.4.tar.xz) = 4556108 Property changes on: head/x11/plasma5-plasma-workspace/distinfo ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/x11/plasma5-plasma-workspace/files/patch-startkde__startkde.cmake =================================================================== --- head/x11/plasma5-plasma-workspace/files/patch-startkde__startkde.cmake (nonexistent) +++ head/x11/plasma5-plasma-workspace/files/patch-startkde__startkde.cmake (revision 468495) @@ -0,0 +1,25 @@ +--- startkde/startkde.cmake.orig 2017-01-12 17:46:38 UTC ++++ startkde/startkde.cmake +@@ -2,6 +2,22 @@ + # + # DEFAULT KDE STARTUP SCRIPT ( @PROJECT_VERSION@ ) + # ++# FreeBSD: add ${QTPREFIX}/lib/qt5/bin to path - note, this should be done better ++PATH=${PATH}:%%QT_BINDIR%% ++export PATH ++ ++# FreeBSD: add xdg-dirs (see misc/kde4-xdg-env) ++XDG_CONFIG_DIRS=${XDG_CONFIG_DIRS}:/etc/xdg:%%LOCALBASE%%/etc/xdg:%%LOCALBASE%%/etc/xdg/xfce:%%KDE_PREFIX%%/etc/xdg ++export XDG_CONFIG_DIRS ++ ++XDG_DATA_DIRS=${XDG_DATA_DIRS}:/usr/share:%%KDE_PREFIX%%/share:%%LOCALBASE%%/share:%%LOCALBASE%%/share/gnome ++export XDG_DATA_DIRS ++ ++# FreeBSD: add qml/qt-plugin paths ++QML2_IMPORT_PATH="%%KDE_PREFIX%%/lib/qml:%%QT_QMLDIR%%:%%QT_IMPORTDIR%%:${QML2_IMPORT_PATH}" ++export QML2_IMPORT_PATH ++QT_PLUGIN_PATH="%%KDE_PREFIX%%/lib/plugins:%%QT_PLUGINDIR%%:${QT_PLUGIN_PATH}" ++export QT_PLUGIN_PATH + + # When the X server dies we get a HUP signal from xinit. We must ignore it + # because we still need to do some cleanup. Property changes on: head/x11/plasma5-plasma-workspace/files/patch-startkde__startkde.cmake ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/x11/plasma5-plasma-workspace/pkg-descr =================================================================== --- head/x11/plasma5-plasma-workspace/pkg-descr (nonexistent) +++ head/x11/plasma5-plasma-workspace/pkg-descr (revision 468495) @@ -0,0 +1,3 @@ +Plasma5 Plasma Workspace + +WWW: https://www.kde.org/plasma-desktop Property changes on: head/x11/plasma5-plasma-workspace/pkg-descr ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/x11/plasma5-plasma-workspace/pkg-message =================================================================== --- head/x11/plasma5-plasma-workspace/pkg-message (nonexistent) +++ head/x11/plasma5-plasma-workspace/pkg-message (revision 468495) @@ -0,0 +1,4 @@ +To start plasma5 via x11/startx add the following to your .xinitrc file: + + exec ck-launch-session startkde + Property changes on: head/x11/plasma5-plasma-workspace/pkg-message ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/x11/plasma5-plasma-workspace/pkg-plist =================================================================== --- head/x11/plasma5-plasma-workspace/pkg-plist (nonexistent) +++ head/x11/plasma5-plasma-workspace/pkg-plist (revision 468495) @@ -0,0 +1,4826 @@ +bin/kcheckrunning +bin/kcminit +bin/kcminit_startup +bin/kdostartupconfig5 +bin/klipper +bin/krunner +bin/ksmserver +bin/ksplashqml +bin/kstartupconfig5 +bin/kuiserver5 +bin/plasma_waitforname +bin/plasmashell +bin/plasmawindowed +bin/startkde +bin/startplasmacompositor +bin/systemmonitor +bin/xembedsniproxy +etc/xdg/autostart/klipper.desktop +etc/xdg/autostart/krunner.desktop +etc/xdg/autostart/org.kde.plasmashell.desktop +etc/xdg/autostart/xembedsniproxy.desktop +etc/xdg/kuiserver.categories +etc/xdg/plasmoids.knsrc +etc/xdg/taskmanagerrulesrc +etc/xdg/wallpaper.knsrc +include/colorcorrect/colorcorrect_export.h +include/colorcorrect/colorcorrectconstants.h +include/colorcorrect/compositorcoloradaptor.h +include/colorcorrect/geolocator.h +include/kworkspace5/config-libkworkspace.h +include/kworkspace5/kdisplaymanager.h +include/kworkspace5/kworkspace.h +include/kworkspace5/kworkspace_export.h +include/plasma/weather/ion.h +include/plasma/weather/ion_export.h +include/taskmanager/abstracttasksmodel.h +include/taskmanager/abstracttasksmodeliface.h +include/taskmanager/abstracttasksproxymodeliface.h +include/taskmanager/abstractwindowtasksmodel.h +include/taskmanager/activityinfo.h +include/taskmanager/concatenatetasksproxymodel.h +include/taskmanager/flattentaskgroupsproxymodel.h +include/taskmanager/launchertasksmodel.h +include/taskmanager/startuptasksmodel.h +include/taskmanager/taskfilterproxymodel.h +include/taskmanager/taskgroupingproxymodel.h +include/taskmanager/taskmanager_export.h +include/taskmanager/tasksmodel.h +include/taskmanager/tasktools.h +include/taskmanager/virtualdesktopinfo.h +include/taskmanager/waylandtasksmodel.h +include/taskmanager/windowtasksmodel.h +include/taskmanager/xwindowtasksmodel.h +lib/cmake/KRunnerAppDBusInterface/KRunnerAppDBusInterfaceConfig.cmake +lib/cmake/KSMServerDBusInterface/KSMServerDBusInterfaceConfig.cmake +lib/cmake/LibColorCorrect/LibColorCorrectConfig.cmake +lib/cmake/LibColorCorrect/LibColorCorrectConfigVersion.cmake +lib/cmake/LibColorCorrect/LibColorCorrectLibraryTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/LibColorCorrect/LibColorCorrectLibraryTargets.cmake +lib/cmake/LibKWorkspace/LibKWorkspaceConfig.cmake +lib/cmake/LibKWorkspace/LibKWorkspaceConfigVersion.cmake +lib/cmake/LibKWorkspace/LibKWorkspaceLibraryTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/LibKWorkspace/LibKWorkspaceLibraryTargets.cmake +lib/cmake/LibTaskManager/LibTaskManagerConfig.cmake +lib/cmake/LibTaskManager/LibTaskManagerConfigVersion.cmake +lib/cmake/LibTaskManager/LibTaskManagerLibraryTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/LibTaskManager/LibTaskManagerLibraryTargets.cmake +lib/kconf_update_bin/krunnerplugins +lib/libcolorcorrect.so +lib/libcolorcorrect.so.5 +lib/libcolorcorrect.so.%%KDE_PLASMA_VERSION%% +lib/libexec/baloorunner +lib/libexec/ksmserver-logout-greeter +lib/libexec/ksmserver-switchuser-greeter +lib/libexec/ksyncdbusenv +lib/libexec/startplasma +lib/libkdeinit5_kcminit.so +lib/libkdeinit5_kcminit_startup.so +lib/libkdeinit5_klipper.so +lib/libkdeinit5_ksmserver.so +lib/libkdeinit5_kuiserver5.so +lib/libkworkspace5.so +lib/libkworkspace5.so.5 +lib/libkworkspace5.so.%%KDE_PLASMA_VERSION%% +lib/libtaskmanager.so +lib/libtaskmanager.so.%%KDE_PLASMA_VERSION%% +lib/libtaskmanager.so.6 +lib/libweather_ion.so +lib/libweather_ion.so.7 +lib/libweather_ion.so.7.0.0 +%%QT_PLUGINDIR%%/kcm_krunner_kill.so +%%QT_PLUGINDIR%%/kf5/kded/appmenu.so +%%QT_PLUGINDIR%%/kf5/kded/colorcorrectlocationupdater.so +%%QT_PLUGINDIR%%/kf5/kded/desktopnotifier.so +%%QT_PLUGINDIR%%/kf5/kded/freespacenotifier.so +%%QT_PLUGINDIR%%/kf5/kded/ksysguard.so +%%QT_PLUGINDIR%%/kf5/kded/ktimezoned.so +%%QT_PLUGINDIR%%/kf5/kded/solidautoeject.so +%%QT_PLUGINDIR%%/kf5/kded/soliduiserver.so +%%QT_PLUGINDIR%%/kf5/kded/statusnotifierwatcher.so +%%QT_PLUGINDIR%%/kf5/kio/desktop.so +%%QT_PLUGINDIR%%/kio_applications.so +%%QT_PLUGINDIR%%/kpackage/packagestructure/plasma_packagestructure_layoutemplate.so +%%QT_PLUGINDIR%%/kpackage/packagestructure/plasma_packagestructure_lookandfeel.so +%%QT_PLUGINDIR%%/kpackage/packagestructure/plasma_packagestructure_plasmashell.so +%%QT_PLUGINDIR%%/kpackage/packagestructure/plasma_packagestructure_wallpaper.so +%%QT_PLUGINDIR%%/kpackage/packagestructure/plasma_packagestructure_wallpaperimages.so +%%QT_PLUGINDIR%%/krunner_activities.so +%%QT_PLUGINDIR%%/krunner_bookmarksrunner.so +%%QT_PLUGINDIR%%/krunner_calculatorrunner.so +%%QT_PLUGINDIR%%/krunner_kill.so +%%QT_PLUGINDIR%%/krunner_locations.so +%%QT_PLUGINDIR%%/krunner_placesrunner.so +%%QT_PLUGINDIR%%/krunner_powerdevil.so +%%QT_PLUGINDIR%%/krunner_recentdocuments.so +%%QT_PLUGINDIR%%/krunner_services.so +%%QT_PLUGINDIR%%/krunner_sessions.so +%%QT_PLUGINDIR%%/krunner_shell.so +%%QT_PLUGINDIR%%/krunner_webshortcuts.so +%%QT_PLUGINDIR%%/krunner_windowedwidgets.so +%%QT_PLUGINDIR%%/krunner_windows.so +%%QT_PLUGINDIR%%/phonon_platform/kde.so +%%QT_PLUGINDIR%%/plasma/applets/org.kde.plasma.private.systemtray.so +%%QT_PLUGINDIR%%/plasma/applets/org.kde.plasma.systemtray.so +%%QT_PLUGINDIR%%/plasma/applets/plasma_applet_appmenu.so +%%QT_PLUGINDIR%%/plasma/applets/plasma_applet_calendar.so +%%QT_PLUGINDIR%%/plasma/applets/plasma_applet_icon.so +%%QT_PLUGINDIR%%/plasma/applets/plasma_applet_notifications.so +%%QT_PLUGINDIR%%/plasma/dataengine/ion_bbcukmet.so +%%QT_PLUGINDIR%%/plasma/dataengine/ion_envcan.so +%%QT_PLUGINDIR%%/plasma/dataengine/ion_noaa.so +%%QT_PLUGINDIR%%/plasma/dataengine/ion_wettercom.so +%%QT_PLUGINDIR%%/plasma/dataengine/plasma_engine_activities.so +%%QT_PLUGINDIR%%/plasma/dataengine/plasma_engine_applicationjobs.so +%%QT_PLUGINDIR%%/plasma/dataengine/plasma_engine_apps.so +%%QT_PLUGINDIR%%/plasma/dataengine/plasma_engine_clipboard.so +%%QT_PLUGINDIR%%/plasma/dataengine/plasma_engine_devicenotifications.so +%%QT_PLUGINDIR%%/plasma/dataengine/plasma_engine_dict.so +%%QT_PLUGINDIR%%/plasma/dataengine/plasma_engine_executable.so +%%QT_PLUGINDIR%%/plasma/dataengine/plasma_engine_favicons.so +%%QT_PLUGINDIR%%/plasma/dataengine/plasma_engine_filebrowser.so +%%QT_PLUGINDIR%%/plasma/dataengine/plasma_engine_hotplug.so +%%QT_PLUGINDIR%%/plasma/dataengine/plasma_engine_keystate.so +%%QT_PLUGINDIR%%/plasma/dataengine/plasma_engine_mouse.so +%%QT_PLUGINDIR%%/plasma/dataengine/plasma_engine_mpris2.so +%%QT_PLUGINDIR%%/plasma/dataengine/plasma_engine_notifications.so +%%QT_PLUGINDIR%%/plasma/dataengine/plasma_engine_packagekit.so +%%QT_PLUGINDIR%%/plasma/dataengine/plasma_engine_places.so +%%QT_PLUGINDIR%%/plasma/dataengine/plasma_engine_powermanagement.so +%%QT_PLUGINDIR%%/plasma/dataengine/plasma_engine_share.so +%%QT_PLUGINDIR%%/plasma/dataengine/plasma_engine_soliddevice.so +%%QT_PLUGINDIR%%/plasma/dataengine/plasma_engine_statusnotifieritem.so +%%QT_PLUGINDIR%%/plasma/dataengine/plasma_engine_systemmonitor.so +%%QT_PLUGINDIR%%/plasma/dataengine/plasma_engine_time.so +%%QT_PLUGINDIR%%/plasma/dataengine/plasma_engine_weather.so +%%QT_PLUGINDIR%%/plasma/packagestructure/plasma_packagestructure_share.so +%%QT_PLUGINDIR%%/plasma_containmentactions_applauncher.so +%%QT_PLUGINDIR%%/plasma_containmentactions_contextmenu.so +%%QT_PLUGINDIR%%/plasma_containmentactions_paste.so +%%QT_PLUGINDIR%%/plasma_containmentactions_switchactivity.so +%%QT_PLUGINDIR%%/plasma_containmentactions_switchdesktop.so +%%QT_PLUGINDIR%%/plasma_containmentactions_switchwindow.so +%%QT_PLUGINDIR%%/plasmacalendarplugins/holidays/HolidaysConfig.qml +%%QT_PLUGINDIR%%/plasmacalendarplugins/holidaysevents.so +%%QT_QMLDIR%%/org/kde/colorcorrect/libcolorcorrectplugin.so +%%QT_QMLDIR%%/org/kde/colorcorrect/qmldir +%%QT_QMLDIR%%/org/kde/holidayeventshelperplugin/libholidayeventshelperplugin.so +%%QT_QMLDIR%%/org/kde/holidayeventshelperplugin/qmldir +%%QT_QMLDIR%%/org/kde/plasma/private/appmenu/libappmenuplugin.so +%%QT_QMLDIR%%/org/kde/plasma/private/appmenu/qmldir +%%QT_QMLDIR%%/org/kde/plasma/private/digitalclock/libdigitalclockplugin.so +%%QT_QMLDIR%%/org/kde/plasma/private/digitalclock/qmldir +%%QT_QMLDIR%%/org/kde/plasma/private/notifications/libnotificationshelperplugin.so +%%QT_QMLDIR%%/org/kde/plasma/private/notifications/qmldir +%%QT_QMLDIR%%/org/kde/plasma/private/sessions/libsessionsprivateplugin.so +%%QT_QMLDIR%%/org/kde/plasma/private/sessions/qmldir +%%QT_QMLDIR%%/org/kde/plasma/private/shell/libplasmashellprivateplugin.so +%%QT_QMLDIR%%/org/kde/plasma/private/shell/qmldir +%%QT_QMLDIR%%/org/kde/plasma/wallpapers/image/libplasma_wallpaper_imageplugin.so +%%QT_QMLDIR%%/org/kde/plasma/wallpapers/image/qmldir +%%QT_QMLDIR%%/org/kde/plasma/workspace/components/BatteryIcon.qml +%%QT_QMLDIR%%/org/kde/plasma/workspace/components/qmldir +%%QT_QMLDIR%%/org/kde/plasma/workspace/keyboardlayout/libkeyboardlayoutplugin.so +%%QT_QMLDIR%%/org/kde/plasma/workspace/keyboardlayout/qmldir +%%QT_QMLDIR%%/org/kde/taskmanager/libtaskmanagerplugin.so +%%QT_QMLDIR%%/org/kde/taskmanager/qmldir +share/applications/org.kde.klipper.desktop +share/applications/org.kde.plasmashell.desktop +share/applications/org.kde.systemmonitor.desktop +share/applications/plasma-windowed.desktop +share/config.kcfg/freespacenotifier.kcfg +share/dbus-1/interfaces/com.canonical.AppMenu.Registrar.xml +share/dbus-1/interfaces/org.kde.KSMServerInterface.xml +share/dbus-1/interfaces/org.kde.KSplash.xml +share/dbus-1/interfaces/org.kde.PlasmaShell.xml +share/dbus-1/interfaces/org.kde.kappmenu.xml +share/dbus-1/interfaces/org.kde.krunner.App.xml +share/dbus-1/services/kf5_org.kde.kuiserver.service +share/dbus-1/services/org.kde.baloorunner.service +share/dbus-1/services/org.kde.krunner.service +share/dbus-1/services/org.kde.plasma.Notifications.service +share/desktop-directories/kf5-development-translation.directory +share/desktop-directories/kf5-development-webdevelopment.directory +share/desktop-directories/kf5-development.directory +share/desktop-directories/kf5-editors.directory +share/desktop-directories/kf5-edu-languages.directory +share/desktop-directories/kf5-edu-mathematics.directory +share/desktop-directories/kf5-edu-miscellaneous.directory +share/desktop-directories/kf5-edu-science.directory +share/desktop-directories/kf5-edu-tools.directory +share/desktop-directories/kf5-education.directory +share/desktop-directories/kf5-games-arcade.directory +share/desktop-directories/kf5-games-board.directory +share/desktop-directories/kf5-games-card.directory +share/desktop-directories/kf5-games-kids.directory +share/desktop-directories/kf5-games-logic.directory +share/desktop-directories/kf5-games-roguelikes.directory +share/desktop-directories/kf5-games-strategy.directory +share/desktop-directories/kf5-games.directory +share/desktop-directories/kf5-graphics.directory +share/desktop-directories/kf5-internet-terminal.directory +share/desktop-directories/kf5-internet.directory +share/desktop-directories/kf5-main.directory +share/desktop-directories/kf5-more.directory +share/desktop-directories/kf5-multimedia.directory +share/desktop-directories/kf5-office.directory +share/desktop-directories/kf5-science.directory +share/desktop-directories/kf5-settingsmenu.directory +share/desktop-directories/kf5-system-terminal.directory +share/desktop-directories/kf5-system.directory +share/desktop-directories/kf5-toys.directory +share/desktop-directories/kf5-unknown.directory +share/desktop-directories/kf5-utilities-accessibility.directory +share/desktop-directories/kf5-utilities-desktop.directory +share/desktop-directories/kf5-utilities-file.directory +share/desktop-directories/kf5-utilities-peripherals.directory +share/desktop-directories/kf5-utilities-pim.directory +share/desktop-directories/kf5-utilities-xutils.directory +share/desktop-directories/kf5-utilities.directory +share/doc/HTML/ca/kcontrol/screenlocker/index.cache.bz2 +share/doc/HTML/ca/kcontrol/screenlocker/index.docbook +share/doc/HTML/ca/klipper/index.cache.bz2 +share/doc/HTML/ca/klipper/index.docbook +share/doc/HTML/ca/klipper/klipper-widget.png +share/doc/HTML/ca/klipper/screenshot.png +share/doc/HTML/de/kcontrol/screenlocker/index.cache.bz2 +share/doc/HTML/de/kcontrol/screenlocker/index.docbook +share/doc/HTML/de/klipper/index.cache.bz2 +share/doc/HTML/de/klipper/index.docbook +share/doc/HTML/en/PolicyKit-kde/authdialog_1.png +share/doc/HTML/en/PolicyKit-kde/authdialog_2.png +share/doc/HTML/en/PolicyKit-kde/authdialog_3.png +share/doc/HTML/en/PolicyKit-kde/authdialog_4.png +share/doc/HTML/en/PolicyKit-kde/authdialog_5.png +share/doc/HTML/en/PolicyKit-kde/authdialog_6.png +share/doc/HTML/en/PolicyKit-kde/authorization.docbook +share/doc/HTML/en/PolicyKit-kde/authorization_1.png +share/doc/HTML/en/PolicyKit-kde/authorization_2.png +share/doc/HTML/en/PolicyKit-kde/authorizationagent.docbook +share/doc/HTML/en/PolicyKit-kde/howitworks.docbook +share/doc/HTML/en/PolicyKit-kde/index.cache.bz2 +share/doc/HTML/en/PolicyKit-kde/index.docbook +share/doc/HTML/en/PolicyKit-kde/introduction.docbook +share/doc/HTML/en/kcontrol/screenlocker/index.cache.bz2 +share/doc/HTML/en/kcontrol/screenlocker/index.docbook +share/doc/HTML/en/klipper/index.cache.bz2 +share/doc/HTML/en/klipper/index.docbook +share/doc/HTML/en/klipper/klipper-application.png +share/doc/HTML/en/klipper/klipper-widget.png +share/doc/HTML/en/klipper/screenshot.png +share/doc/HTML/it/kcontrol/screenlocker/index.cache.bz2 +share/doc/HTML/it/kcontrol/screenlocker/index.docbook +share/doc/HTML/it/klipper/index.cache.bz2 +share/doc/HTML/it/klipper/index.docbook +share/doc/HTML/nl/kcontrol/screenlocker/index.cache.bz2 +share/doc/HTML/nl/kcontrol/screenlocker/index.docbook +share/doc/HTML/nl/klipper/index.cache.bz2 +share/doc/HTML/nl/klipper/index.docbook +share/doc/HTML/pt/kcontrol/screenlocker/index.cache.bz2 +share/doc/HTML/pt/kcontrol/screenlocker/index.docbook +share/doc/HTML/pt/klipper/index.cache.bz2 +share/doc/HTML/pt/klipper/index.docbook +share/doc/HTML/pt_BR/kcontrol/screenlocker/index.cache.bz2 +share/doc/HTML/pt_BR/kcontrol/screenlocker/index.docbook +share/doc/HTML/pt_BR/klipper/index.cache.bz2 +share/doc/HTML/pt_BR/klipper/index.docbook +share/doc/HTML/pt_BR/klipper/klipper-application.png +share/doc/HTML/pt_BR/klipper/klipper-widget.png +share/doc/HTML/pt_BR/klipper/screenshot.png +share/doc/HTML/uk/kcontrol/screenlocker/index.cache.bz2 +share/doc/HTML/uk/kcontrol/screenlocker/index.docbook +share/doc/HTML/uk/klipper/index.cache.bz2 +share/doc/HTML/uk/klipper/index.docbook +share/kconf_update/krunnerplugins.upd +share/kdevappwizard/templates/ion-dataengine.tar.bz2 +share/kio_desktop/DesktopLinks/Home.desktop +share/kio_desktop/directory.desktop +share/kio_desktop/directory.trash +share/knotifications5/freespacenotifier.notifyrc +share/knotifications5/phonon.notifyrc +share/kservices5/applications.protocol +share/kservices5/desktop.protocol +share/kservices5/ion-bbcukmet.desktop +share/kservices5/ion-envcan.desktop +share/kservices5/ion-noaa.desktop +share/kservices5/ion-wettercom.desktop +share/kservices5/kuiserver.desktop +share/kservices5/plasma-applet-org.kde.plasma.activitybar.desktop +share/kservices5/plasma-applet-org.kde.plasma.analogclock.desktop +share/kservices5/plasma-applet-org.kde.plasma.appmenu.desktop +share/kservices5/plasma-applet-org.kde.plasma.battery.desktop +share/kservices5/plasma-applet-org.kde.plasma.calendar.desktop +share/kservices5/plasma-applet-org.kde.plasma.clipboard.desktop +share/kservices5/plasma-applet-org.kde.plasma.devicenotifier.desktop +share/kservices5/plasma-applet-org.kde.plasma.digitalclock.desktop +share/kservices5/plasma-applet-org.kde.plasma.icon.desktop +share/kservices5/plasma-applet-org.kde.plasma.lock_logout.desktop +share/kservices5/plasma-applet-org.kde.plasma.mediacontroller.desktop +share/kservices5/plasma-applet-org.kde.plasma.notifications.desktop +share/kservices5/plasma-applet-org.kde.plasma.panelspacer.desktop +share/kservices5/plasma-applet-org.kde.plasma.private.systemtray.desktop +share/kservices5/plasma-applet-org.kde.plasma.systemmonitor.cpu.desktop +share/kservices5/plasma-applet-org.kde.plasma.systemmonitor.diskactivity.desktop +share/kservices5/plasma-applet-org.kde.plasma.systemmonitor.diskusage.desktop +share/kservices5/plasma-applet-org.kde.plasma.systemmonitor.memory.desktop +share/kservices5/plasma-applet-org.kde.plasma.systemmonitor.net.desktop +share/kservices5/plasma-applet-org.kde.plasma.systemtray.desktop +share/kservices5/plasma-containmentactions-applauncher.desktop +share/kservices5/plasma-containmentactions-contextmenu.desktop +share/kservices5/plasma-containmentactions-paste.desktop +share/kservices5/plasma-containmentactions-switchactivity.desktop +share/kservices5/plasma-containmentactions-switchdesktop.desktop +share/kservices5/plasma-containmentactions-switchwindow.desktop +share/kservices5/plasma-dataengine-activities.desktop +share/kservices5/plasma-dataengine-applicationjobs.desktop +share/kservices5/plasma-dataengine-apps.desktop +share/kservices5/plasma-dataengine-clipboard.desktop +share/kservices5/plasma-dataengine-devicenotifications.desktop +share/kservices5/plasma-dataengine-dict.desktop +share/kservices5/plasma-dataengine-executable.desktop +share/kservices5/plasma-dataengine-favicons.desktop +share/kservices5/plasma-dataengine-filebrowser.desktop +share/kservices5/plasma-dataengine-hotplug.desktop +share/kservices5/plasma-dataengine-keystate.desktop +share/kservices5/plasma-dataengine-mouse.desktop +share/kservices5/plasma-dataengine-mpris2.desktop +share/kservices5/plasma-dataengine-notifications.desktop +share/kservices5/plasma-dataengine-packagekit.desktop +share/kservices5/plasma-dataengine-places.desktop +share/kservices5/plasma-dataengine-powermanagement.desktop +share/kservices5/plasma-dataengine-share-addon-im9.desktop +share/kservices5/plasma-dataengine-share-addon-imgsusepasteorg.desktop +share/kservices5/plasma-dataengine-share-addon-imgur.desktop +share/kservices5/plasma-dataengine-share-addon-kde.desktop +share/kservices5/plasma-dataengine-share-addon-pastebincom.desktop +share/kservices5/plasma-dataengine-share-addon-pasteopensuseorg.desktop +share/kservices5/plasma-dataengine-share-addon-pasteubuntucom.desktop +share/kservices5/plasma-dataengine-share-addon-privatepastecom.desktop +share/kservices5/plasma-dataengine-share-addon-simplestimagehosting.desktop +share/kservices5/plasma-dataengine-share-addon-wklej.desktop +share/kservices5/plasma-dataengine-share-addon-wstaw.desktop +share/kservices5/plasma-dataengine-share.desktop +share/kservices5/plasma-dataengine-soliddevice.desktop +share/kservices5/plasma-dataengine-statusnotifieritem.desktop +share/kservices5/plasma-dataengine-systemmonitor.desktop +share/kservices5/plasma-dataengine-time.desktop +share/kservices5/plasma-dataengine-weather.desktop +share/kservices5/plasma-lookandfeel-org.kde.breeze.desktop.desktop +share/kservices5/plasma-runner-activityrunner.desktop +share/kservices5/plasma-runner-baloosearch.desktop +share/kservices5/plasma-runner-bookmarks.desktop +share/kservices5/plasma-runner-calculator.desktop +share/kservices5/plasma-runner-kill.desktop +share/kservices5/plasma-runner-kill_config.desktop +share/kservices5/plasma-runner-locations.desktop +share/kservices5/plasma-runner-places.desktop +share/kservices5/plasma-runner-powerdevil.desktop +share/kservices5/plasma-runner-recentdocuments.desktop +share/kservices5/plasma-runner-services.desktop +share/kservices5/plasma-runner-sessions.desktop +share/kservices5/plasma-runner-shell.desktop +share/kservices5/plasma-runner-webshortcuts.desktop +share/kservices5/plasma-runner-windowedwidgets.desktop +share/kservices5/plasma-runner-windows.desktop +share/kservices5/plasma-wallpaper-org.kde.color.desktop +share/kservices5/plasma-wallpaper-org.kde.image.desktop +share/kservices5/plasma-wallpaper-org.kde.slideshow.desktop +share/kservices5/programs.protocol +share/kservicetypes5/phononbackend.desktop +share/kservicetypes5/plasma-layouttemplate.desktop +share/kservicetypes5/plasma_shareprovider.desktop +share/ksplash/Themes/Classic/FadeIn.qml +share/ksplash/Themes/Classic/Preview.png +share/ksplash/Themes/Classic/Theme.rc +share/ksplash/Themes/Classic/images/background.png +share/ksplash/Themes/Classic/images/icon1.png +share/ksplash/Themes/Classic/images/icon2.png +share/ksplash/Themes/Classic/images/icon3.png +share/ksplash/Themes/Classic/images/icon4.png +share/ksplash/Themes/Classic/images/icon5.png +share/ksplash/Themes/Classic/images/rectangle.png +share/ksplash/Themes/Classic/main.qml +share/ksplash/Themes/Minimalistic/Preview.png +share/ksplash/Themes/Minimalistic/Theme.rc +share/ksplash/Themes/Minimalistic/images/kdegear.png +share/ksplash/Themes/Minimalistic/images/kdeletter.png +share/ksplash/Themes/Minimalistic/images/kdelogo-contrast.png +share/ksplash/Themes/Minimalistic/images/kdelogo.png +share/ksplash/Themes/Minimalistic/images/kdemask.png +share/ksplash/Themes/Minimalistic/main.qml +share/ksplash/Themes/None/Theme.rc +share/kstyle/themes/qtcde.themerc +share/kstyle/themes/qtcleanlooks.themerc +share/kstyle/themes/qtgtk.themerc +share/kstyle/themes/qtmotif.themerc +share/kstyle/themes/qtplastique.themerc +share/kstyle/themes/qtwindows.themerc +share/locale/af/LC_MESSAGES/kio5_applications.mo +share/locale/af/LC_MESSAGES/klipper.mo +share/locale/af/LC_MESSAGES/ksmserver.mo +share/locale/ar/LC_MESSAGES/freespacenotifier.mo +share/locale/ar/LC_MESSAGES/kcminit.mo +share/locale/ar/LC_MESSAGES/kholidays_calendar_plugin.mo +share/locale/ar/LC_MESSAGES/kio5_applications.mo +share/locale/ar/LC_MESSAGES/klipper.mo +share/locale/ar/LC_MESSAGES/krunner.mo +share/locale/ar/LC_MESSAGES/ksmserver.mo +share/locale/ar/LC_MESSAGES/kuiserver5.mo +share/locale/ar/LC_MESSAGES/libkworkspace.mo +share/locale/ar/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.color.mo +share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.image.mo +share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo +share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo +share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo +share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo +share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo +share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo +share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo +share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo +share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo +share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo +share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo +share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo +share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo +share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.cpu.mo +share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskactivity.mo +share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskusage.mo +share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.memory.mo +share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.net.mo +share/locale/ar/LC_MESSAGES/plasma_containmentactions_applauncher.mo +share/locale/ar/LC_MESSAGES/plasma_containmentactions_contextmenu.mo +share/locale/ar/LC_MESSAGES/plasma_containmentactions_switchwindow.mo +share/locale/ar/LC_MESSAGES/plasma_engine_applicationjobs.mo +share/locale/ar/LC_MESSAGES/plasma_engine_devicenotifications.mo +share/locale/ar/LC_MESSAGES/plasma_engine_keystate.mo +share/locale/ar/LC_MESSAGES/plasma_engine_mpris2.mo +share/locale/ar/LC_MESSAGES/plasma_engine_network.mo +share/locale/ar/LC_MESSAGES/plasma_engine_notifications.mo +share/locale/ar/LC_MESSAGES/plasma_engine_powermanagement.mo +share/locale/ar/LC_MESSAGES/plasma_engine_rss.mo +share/locale/ar/LC_MESSAGES/plasma_engine_share.mo +share/locale/ar/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/ar/LC_MESSAGES/plasma_engine_time.mo +share/locale/ar/LC_MESSAGES/plasma_engine_weather.mo +share/locale/ar/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo +share/locale/ar/LC_MESSAGES/plasma_package_plasmashell.mo +share/locale/ar/LC_MESSAGES/plasma_runner_activities.mo +share/locale/ar/LC_MESSAGES/plasma_runner_baloosearch5.mo +share/locale/ar/LC_MESSAGES/plasma_runner_bookmarksrunner.mo +share/locale/ar/LC_MESSAGES/plasma_runner_calculatorrunner.mo +share/locale/ar/LC_MESSAGES/plasma_runner_kill.mo +share/locale/ar/LC_MESSAGES/plasma_runner_locations.mo +share/locale/ar/LC_MESSAGES/plasma_runner_placesrunner.mo +share/locale/ar/LC_MESSAGES/plasma_runner_powerdevil.mo +share/locale/ar/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/ar/LC_MESSAGES/plasma_runner_services.mo +share/locale/ar/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/ar/LC_MESSAGES/plasma_runner_shell.mo +share/locale/ar/LC_MESSAGES/plasma_runner_solid.mo +share/locale/ar/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/ar/LC_MESSAGES/plasma_runner_windowedwidgets.mo +share/locale/ar/LC_MESSAGES/plasma_runner_windows.mo +share/locale/ar/LC_MESSAGES/plasmashell.mo +share/locale/ar/LC_MESSAGES/plasmashellprivateplugin.mo +share/locale/ar/LC_MESSAGES/soliduiserver5.mo +share/locale/ar/LC_MESSAGES/systemmonitor.mo +share/locale/ast/LC_MESSAGES/freespacenotifier.mo +share/locale/ast/LC_MESSAGES/kcminit.mo +share/locale/ast/LC_MESSAGES/kholidays_calendar_plugin.mo +share/locale/ast/LC_MESSAGES/kio5_applications.mo +share/locale/ast/LC_MESSAGES/kio_desktop.mo +share/locale/ast/LC_MESSAGES/klipper.mo +share/locale/ast/LC_MESSAGES/krunner.mo +share/locale/ast/LC_MESSAGES/ksmserver.mo +share/locale/ast/LC_MESSAGES/kuiserver5.mo +share/locale/ast/LC_MESSAGES/libkworkspace.mo +share/locale/ast/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.color.mo +share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.image.mo +share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo +share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo +share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo +share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo +share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo +share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo +share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo +share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo +share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo +share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo +share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo +share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo +share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo +share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.cpu.mo +share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskactivity.mo +share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskusage.mo +share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.memory.mo +share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.net.mo +share/locale/ast/LC_MESSAGES/plasma_containmentactions_applauncher.mo +share/locale/ast/LC_MESSAGES/plasma_containmentactions_contextmenu.mo +share/locale/ast/LC_MESSAGES/plasma_containmentactions_switchwindow.mo +share/locale/ast/LC_MESSAGES/plasma_engine_applicationjobs.mo +share/locale/ast/LC_MESSAGES/plasma_engine_devicenotifications.mo +share/locale/ast/LC_MESSAGES/plasma_engine_keystate.mo +share/locale/ast/LC_MESSAGES/plasma_engine_mpris2.mo +share/locale/ast/LC_MESSAGES/plasma_engine_network.mo +share/locale/ast/LC_MESSAGES/plasma_engine_notifications.mo +share/locale/ast/LC_MESSAGES/plasma_engine_powermanagement.mo +share/locale/ast/LC_MESSAGES/plasma_engine_rss.mo +share/locale/ast/LC_MESSAGES/plasma_engine_share.mo +share/locale/ast/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/ast/LC_MESSAGES/plasma_engine_time.mo +share/locale/ast/LC_MESSAGES/plasma_engine_weather.mo +share/locale/ast/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo +share/locale/ast/LC_MESSAGES/plasma_package_plasmashell.mo +share/locale/ast/LC_MESSAGES/plasma_runner_activities.mo +share/locale/ast/LC_MESSAGES/plasma_runner_baloosearch5.mo +share/locale/ast/LC_MESSAGES/plasma_runner_bookmarksrunner.mo +share/locale/ast/LC_MESSAGES/plasma_runner_calculatorrunner.mo +share/locale/ast/LC_MESSAGES/plasma_runner_kill.mo +share/locale/ast/LC_MESSAGES/plasma_runner_locations.mo +share/locale/ast/LC_MESSAGES/plasma_runner_placesrunner.mo +share/locale/ast/LC_MESSAGES/plasma_runner_powerdevil.mo +share/locale/ast/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/ast/LC_MESSAGES/plasma_runner_services.mo +share/locale/ast/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/ast/LC_MESSAGES/plasma_runner_shell.mo +share/locale/ast/LC_MESSAGES/plasma_runner_solid.mo +share/locale/ast/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/ast/LC_MESSAGES/plasma_runner_windowedwidgets.mo +share/locale/ast/LC_MESSAGES/plasma_runner_windows.mo +share/locale/ast/LC_MESSAGES/plasmashell.mo +share/locale/ast/LC_MESSAGES/plasmashellprivateplugin.mo +share/locale/ast/LC_MESSAGES/soliduiserver5.mo +share/locale/ast/LC_MESSAGES/systemmonitor.mo +share/locale/be/LC_MESSAGES/kcminit.mo +share/locale/be/LC_MESSAGES/kio5_applications.mo +share/locale/be/LC_MESSAGES/klipper.mo +share/locale/be/LC_MESSAGES/ksmserver.mo +share/locale/be/LC_MESSAGES/kuiserver5.mo +share/locale/be/LC_MESSAGES/libkworkspace.mo +share/locale/be/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo +share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo +share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo +share/locale/be/LC_MESSAGES/plasma_engine_weather.mo +share/locale/be/LC_MESSAGES/plasma_runner_locations.mo +share/locale/be/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/be/LC_MESSAGES/soliduiserver5.mo +share/locale/be@latin/LC_MESSAGES/kcminit.mo +share/locale/be@latin/LC_MESSAGES/kio5_applications.mo +share/locale/be@latin/LC_MESSAGES/klipper.mo +share/locale/be@latin/LC_MESSAGES/libkworkspace.mo +share/locale/be@latin/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/be@latin/LC_MESSAGES/plasma_applet_org.kde.image.mo +share/locale/be@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo +share/locale/be@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo +share/locale/be@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo +share/locale/be@latin/LC_MESSAGES/plasma_engine_applicationjobs.mo +share/locale/be@latin/LC_MESSAGES/plasma_engine_rss.mo +share/locale/be@latin/LC_MESSAGES/soliduiserver5.mo +share/locale/bg/LC_MESSAGES/freespacenotifier.mo +share/locale/bg/LC_MESSAGES/kcminit.mo +share/locale/bg/LC_MESSAGES/kio5_applications.mo +share/locale/bg/LC_MESSAGES/klipper.mo +share/locale/bg/LC_MESSAGES/ksmserver.mo +share/locale/bg/LC_MESSAGES/kuiserver5.mo +share/locale/bg/LC_MESSAGES/libkworkspace.mo +share/locale/bg/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo +share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo +share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo +share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo +share/locale/bg/LC_MESSAGES/plasma_containmentactions_switchwindow.mo +share/locale/bg/LC_MESSAGES/plasma_engine_applicationjobs.mo +share/locale/bg/LC_MESSAGES/plasma_engine_notifications.mo +share/locale/bg/LC_MESSAGES/plasma_engine_rss.mo +share/locale/bg/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/bg/LC_MESSAGES/plasma_engine_weather.mo +share/locale/bg/LC_MESSAGES/plasma_runner_activities.mo +share/locale/bg/LC_MESSAGES/plasma_runner_bookmarksrunner.mo +share/locale/bg/LC_MESSAGES/plasma_runner_calculatorrunner.mo +share/locale/bg/LC_MESSAGES/plasma_runner_locations.mo +share/locale/bg/LC_MESSAGES/plasma_runner_placesrunner.mo +share/locale/bg/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/bg/LC_MESSAGES/plasma_runner_services.mo +share/locale/bg/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/bg/LC_MESSAGES/plasma_runner_shell.mo +share/locale/bg/LC_MESSAGES/plasma_runner_solid.mo +share/locale/bg/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/bg/LC_MESSAGES/plasma_runner_windowedwidgets.mo +share/locale/bg/LC_MESSAGES/soliduiserver5.mo +share/locale/bn/LC_MESSAGES/klipper.mo +share/locale/bn/LC_MESSAGES/ksmserver.mo +share/locale/bn/LC_MESSAGES/plasma_engine_weather.mo +share/locale/bn_IN/LC_MESSAGES/kcminit.mo +share/locale/bn_IN/LC_MESSAGES/kio5_applications.mo +share/locale/bn_IN/LC_MESSAGES/klipper.mo +share/locale/bn_IN/LC_MESSAGES/ksmserver.mo +share/locale/bn_IN/LC_MESSAGES/kuiserver5.mo +share/locale/bn_IN/LC_MESSAGES/libkworkspace.mo +share/locale/bn_IN/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/bn_IN/LC_MESSAGES/plasma_applet_org.kde.image.mo +share/locale/bn_IN/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo +share/locale/bn_IN/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo +share/locale/bn_IN/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo +share/locale/bn_IN/LC_MESSAGES/plasma_engine_applicationjobs.mo +share/locale/bn_IN/LC_MESSAGES/plasma_engine_rss.mo +share/locale/bn_IN/LC_MESSAGES/plasma_engine_weather.mo +share/locale/bn_IN/LC_MESSAGES/plasma_runner_locations.mo +share/locale/bn_IN/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/bn_IN/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/bn_IN/LC_MESSAGES/plasma_runner_shell.mo +share/locale/bn_IN/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/bn_IN/LC_MESSAGES/soliduiserver5.mo +share/locale/br/LC_MESSAGES/kio5_applications.mo +share/locale/br/LC_MESSAGES/klipper.mo +share/locale/br/LC_MESSAGES/ksmserver.mo +share/locale/bs/LC_MESSAGES/freespacenotifier.mo +share/locale/bs/LC_MESSAGES/kcminit.mo +share/locale/bs/LC_MESSAGES/kio5_applications.mo +share/locale/bs/LC_MESSAGES/klipper.mo +share/locale/bs/LC_MESSAGES/krunner.mo +share/locale/bs/LC_MESSAGES/ksmserver.mo +share/locale/bs/LC_MESSAGES/kuiserver5.mo +share/locale/bs/LC_MESSAGES/libkworkspace.mo +share/locale/bs/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.color.mo +share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.image.mo +share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo +share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo +share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo +share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo +share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo +share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo +share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo +share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo +share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo +share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo +share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo +share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.cpu.mo +share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskactivity.mo +share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskusage.mo +share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.memory.mo +share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.net.mo +share/locale/bs/LC_MESSAGES/plasma_containmentactions_contextmenu.mo +share/locale/bs/LC_MESSAGES/plasma_containmentactions_switchwindow.mo +share/locale/bs/LC_MESSAGES/plasma_engine_applicationjobs.mo +share/locale/bs/LC_MESSAGES/plasma_engine_keystate.mo +share/locale/bs/LC_MESSAGES/plasma_engine_mpris2.mo +share/locale/bs/LC_MESSAGES/plasma_engine_network.mo +share/locale/bs/LC_MESSAGES/plasma_engine_notifications.mo +share/locale/bs/LC_MESSAGES/plasma_engine_powermanagement.mo +share/locale/bs/LC_MESSAGES/plasma_engine_rss.mo +share/locale/bs/LC_MESSAGES/plasma_engine_share.mo +share/locale/bs/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/bs/LC_MESSAGES/plasma_engine_time.mo +share/locale/bs/LC_MESSAGES/plasma_engine_weather.mo +share/locale/bs/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo +share/locale/bs/LC_MESSAGES/plasma_package_plasmashell.mo +share/locale/bs/LC_MESSAGES/plasma_runner_activities.mo +share/locale/bs/LC_MESSAGES/plasma_runner_baloosearch5.mo +share/locale/bs/LC_MESSAGES/plasma_runner_bookmarksrunner.mo +share/locale/bs/LC_MESSAGES/plasma_runner_calculatorrunner.mo +share/locale/bs/LC_MESSAGES/plasma_runner_kill.mo +share/locale/bs/LC_MESSAGES/plasma_runner_locations.mo +share/locale/bs/LC_MESSAGES/plasma_runner_placesrunner.mo +share/locale/bs/LC_MESSAGES/plasma_runner_powerdevil.mo +share/locale/bs/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/bs/LC_MESSAGES/plasma_runner_services.mo +share/locale/bs/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/bs/LC_MESSAGES/plasma_runner_shell.mo +share/locale/bs/LC_MESSAGES/plasma_runner_solid.mo +share/locale/bs/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/bs/LC_MESSAGES/plasma_runner_windowedwidgets.mo +share/locale/bs/LC_MESSAGES/plasma_runner_windows.mo +share/locale/bs/LC_MESSAGES/plasmashell.mo +share/locale/bs/LC_MESSAGES/plasmashellprivateplugin.mo +share/locale/bs/LC_MESSAGES/soliduiserver5.mo +share/locale/bs/LC_MESSAGES/systemmonitor.mo +share/locale/ca/LC_MESSAGES/freespacenotifier.mo +share/locale/ca/LC_MESSAGES/kcminit.mo +share/locale/ca/LC_MESSAGES/kholidays_calendar_plugin.mo +share/locale/ca/LC_MESSAGES/kio5_applications.mo +share/locale/ca/LC_MESSAGES/kio_desktop.mo +share/locale/ca/LC_MESSAGES/klipper.mo +share/locale/ca/LC_MESSAGES/krunner.mo +share/locale/ca/LC_MESSAGES/ksmserver.mo +share/locale/ca/LC_MESSAGES/kuiserver5.mo +share/locale/ca/LC_MESSAGES/libkworkspace.mo +share/locale/ca/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.color.mo +share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.image.mo +share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo +share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo +share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo +share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo +share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo +share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo +share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo +share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo +share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo +share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo +share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo +share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo +share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo +share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.cpu.mo +share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskactivity.mo +share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskusage.mo +share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.memory.mo +share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.net.mo +share/locale/ca/LC_MESSAGES/plasma_containmentactions_applauncher.mo +share/locale/ca/LC_MESSAGES/plasma_containmentactions_contextmenu.mo +share/locale/ca/LC_MESSAGES/plasma_containmentactions_switchwindow.mo +share/locale/ca/LC_MESSAGES/plasma_engine_applicationjobs.mo +share/locale/ca/LC_MESSAGES/plasma_engine_devicenotifications.mo +share/locale/ca/LC_MESSAGES/plasma_engine_dict.mo +share/locale/ca/LC_MESSAGES/plasma_engine_keystate.mo +share/locale/ca/LC_MESSAGES/plasma_engine_mpris2.mo +share/locale/ca/LC_MESSAGES/plasma_engine_network.mo +share/locale/ca/LC_MESSAGES/plasma_engine_notifications.mo +share/locale/ca/LC_MESSAGES/plasma_engine_powermanagement.mo +share/locale/ca/LC_MESSAGES/plasma_engine_rss.mo +share/locale/ca/LC_MESSAGES/plasma_engine_share.mo +share/locale/ca/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/ca/LC_MESSAGES/plasma_engine_time.mo +share/locale/ca/LC_MESSAGES/plasma_engine_weather.mo +share/locale/ca/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo +share/locale/ca/LC_MESSAGES/plasma_package_plasmashell.mo +share/locale/ca/LC_MESSAGES/plasma_runner_activities.mo +share/locale/ca/LC_MESSAGES/plasma_runner_appstream.mo +share/locale/ca/LC_MESSAGES/plasma_runner_baloosearch5.mo +share/locale/ca/LC_MESSAGES/plasma_runner_bookmarksrunner.mo +share/locale/ca/LC_MESSAGES/plasma_runner_calculatorrunner.mo +share/locale/ca/LC_MESSAGES/plasma_runner_kill.mo +share/locale/ca/LC_MESSAGES/plasma_runner_locations.mo +share/locale/ca/LC_MESSAGES/plasma_runner_placesrunner.mo +share/locale/ca/LC_MESSAGES/plasma_runner_powerdevil.mo +share/locale/ca/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/ca/LC_MESSAGES/plasma_runner_services.mo +share/locale/ca/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/ca/LC_MESSAGES/plasma_runner_shell.mo +share/locale/ca/LC_MESSAGES/plasma_runner_solid.mo +share/locale/ca/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/ca/LC_MESSAGES/plasma_runner_windowedwidgets.mo +share/locale/ca/LC_MESSAGES/plasma_runner_windows.mo +share/locale/ca/LC_MESSAGES/plasmashell.mo +share/locale/ca/LC_MESSAGES/plasmashellprivateplugin.mo +share/locale/ca/LC_MESSAGES/soliduiserver5.mo +share/locale/ca/LC_MESSAGES/systemmonitor.mo +share/locale/ca@valencia/LC_MESSAGES/freespacenotifier.mo +share/locale/ca@valencia/LC_MESSAGES/kcminit.mo +share/locale/ca@valencia/LC_MESSAGES/kholidays_calendar_plugin.mo +share/locale/ca@valencia/LC_MESSAGES/kio5_applications.mo +share/locale/ca@valencia/LC_MESSAGES/kio_desktop.mo +share/locale/ca@valencia/LC_MESSAGES/klipper.mo +share/locale/ca@valencia/LC_MESSAGES/krunner.mo +share/locale/ca@valencia/LC_MESSAGES/ksmserver.mo +share/locale/ca@valencia/LC_MESSAGES/kuiserver5.mo +share/locale/ca@valencia/LC_MESSAGES/libkworkspace.mo +share/locale/ca@valencia/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.color.mo +share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.image.mo +share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo +share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo +share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo +share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo +share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo +share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo +share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo +share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo +share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo +share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo +share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo +share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo +share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo +share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.cpu.mo +share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskactivity.mo +share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskusage.mo +share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.memory.mo +share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.net.mo +share/locale/ca@valencia/LC_MESSAGES/plasma_containmentactions_applauncher.mo +share/locale/ca@valencia/LC_MESSAGES/plasma_containmentactions_contextmenu.mo +share/locale/ca@valencia/LC_MESSAGES/plasma_containmentactions_switchwindow.mo +share/locale/ca@valencia/LC_MESSAGES/plasma_engine_applicationjobs.mo +share/locale/ca@valencia/LC_MESSAGES/plasma_engine_devicenotifications.mo +share/locale/ca@valencia/LC_MESSAGES/plasma_engine_dict.mo +share/locale/ca@valencia/LC_MESSAGES/plasma_engine_keystate.mo +share/locale/ca@valencia/LC_MESSAGES/plasma_engine_mpris2.mo +share/locale/ca@valencia/LC_MESSAGES/plasma_engine_network.mo +share/locale/ca@valencia/LC_MESSAGES/plasma_engine_notifications.mo +share/locale/ca@valencia/LC_MESSAGES/plasma_engine_powermanagement.mo +share/locale/ca@valencia/LC_MESSAGES/plasma_engine_rss.mo +share/locale/ca@valencia/LC_MESSAGES/plasma_engine_share.mo +share/locale/ca@valencia/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/ca@valencia/LC_MESSAGES/plasma_engine_time.mo +share/locale/ca@valencia/LC_MESSAGES/plasma_engine_weather.mo +share/locale/ca@valencia/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo +share/locale/ca@valencia/LC_MESSAGES/plasma_package_plasmashell.mo +share/locale/ca@valencia/LC_MESSAGES/plasma_runner_activities.mo +share/locale/ca@valencia/LC_MESSAGES/plasma_runner_appstream.mo +share/locale/ca@valencia/LC_MESSAGES/plasma_runner_baloosearch5.mo +share/locale/ca@valencia/LC_MESSAGES/plasma_runner_bookmarksrunner.mo +share/locale/ca@valencia/LC_MESSAGES/plasma_runner_calculatorrunner.mo +share/locale/ca@valencia/LC_MESSAGES/plasma_runner_kill.mo +share/locale/ca@valencia/LC_MESSAGES/plasma_runner_locations.mo +share/locale/ca@valencia/LC_MESSAGES/plasma_runner_placesrunner.mo +share/locale/ca@valencia/LC_MESSAGES/plasma_runner_powerdevil.mo +share/locale/ca@valencia/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/ca@valencia/LC_MESSAGES/plasma_runner_services.mo +share/locale/ca@valencia/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/ca@valencia/LC_MESSAGES/plasma_runner_shell.mo +share/locale/ca@valencia/LC_MESSAGES/plasma_runner_solid.mo +share/locale/ca@valencia/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/ca@valencia/LC_MESSAGES/plasma_runner_windowedwidgets.mo +share/locale/ca@valencia/LC_MESSAGES/plasma_runner_windows.mo +share/locale/ca@valencia/LC_MESSAGES/plasmashell.mo +share/locale/ca@valencia/LC_MESSAGES/plasmashellprivateplugin.mo +share/locale/ca@valencia/LC_MESSAGES/soliduiserver5.mo +share/locale/ca@valencia/LC_MESSAGES/systemmonitor.mo +share/locale/cs/LC_MESSAGES/freespacenotifier.mo +share/locale/cs/LC_MESSAGES/kcminit.mo +share/locale/cs/LC_MESSAGES/kholidays_calendar_plugin.mo +share/locale/cs/LC_MESSAGES/kio5_applications.mo +share/locale/cs/LC_MESSAGES/kio_desktop.mo +share/locale/cs/LC_MESSAGES/klipper.mo +share/locale/cs/LC_MESSAGES/krunner.mo +share/locale/cs/LC_MESSAGES/ksmserver.mo +share/locale/cs/LC_MESSAGES/kuiserver5.mo +share/locale/cs/LC_MESSAGES/libkworkspace.mo +share/locale/cs/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.color.mo +share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.image.mo +share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo +share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo +share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo +share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo +share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo +share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo +share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo +share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo +share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo +share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo +share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo +share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo +share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo +share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.cpu.mo +share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskactivity.mo +share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskusage.mo +share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.memory.mo +share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.net.mo +share/locale/cs/LC_MESSAGES/plasma_containmentactions_applauncher.mo +share/locale/cs/LC_MESSAGES/plasma_containmentactions_contextmenu.mo +share/locale/cs/LC_MESSAGES/plasma_containmentactions_switchwindow.mo +share/locale/cs/LC_MESSAGES/plasma_engine_applicationjobs.mo +share/locale/cs/LC_MESSAGES/plasma_engine_devicenotifications.mo +share/locale/cs/LC_MESSAGES/plasma_engine_dict.mo +share/locale/cs/LC_MESSAGES/plasma_engine_keystate.mo +share/locale/cs/LC_MESSAGES/plasma_engine_mpris2.mo +share/locale/cs/LC_MESSAGES/plasma_engine_network.mo +share/locale/cs/LC_MESSAGES/plasma_engine_notifications.mo +share/locale/cs/LC_MESSAGES/plasma_engine_powermanagement.mo +share/locale/cs/LC_MESSAGES/plasma_engine_rss.mo +share/locale/cs/LC_MESSAGES/plasma_engine_share.mo +share/locale/cs/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/cs/LC_MESSAGES/plasma_engine_time.mo +share/locale/cs/LC_MESSAGES/plasma_engine_weather.mo +share/locale/cs/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo +share/locale/cs/LC_MESSAGES/plasma_package_plasmashell.mo +share/locale/cs/LC_MESSAGES/plasma_runner_activities.mo +share/locale/cs/LC_MESSAGES/plasma_runner_baloosearch5.mo +share/locale/cs/LC_MESSAGES/plasma_runner_bookmarksrunner.mo +share/locale/cs/LC_MESSAGES/plasma_runner_calculatorrunner.mo +share/locale/cs/LC_MESSAGES/plasma_runner_kill.mo +share/locale/cs/LC_MESSAGES/plasma_runner_locations.mo +share/locale/cs/LC_MESSAGES/plasma_runner_placesrunner.mo +share/locale/cs/LC_MESSAGES/plasma_runner_powerdevil.mo +share/locale/cs/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/cs/LC_MESSAGES/plasma_runner_services.mo +share/locale/cs/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/cs/LC_MESSAGES/plasma_runner_shell.mo +share/locale/cs/LC_MESSAGES/plasma_runner_solid.mo +share/locale/cs/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/cs/LC_MESSAGES/plasma_runner_windowedwidgets.mo +share/locale/cs/LC_MESSAGES/plasma_runner_windows.mo +share/locale/cs/LC_MESSAGES/plasmashell.mo +share/locale/cs/LC_MESSAGES/plasmashellprivateplugin.mo +share/locale/cs/LC_MESSAGES/soliduiserver5.mo +share/locale/cs/LC_MESSAGES/systemmonitor.mo +share/locale/csb/LC_MESSAGES/kcminit.mo +share/locale/csb/LC_MESSAGES/kio5_applications.mo +share/locale/csb/LC_MESSAGES/klipper.mo +share/locale/csb/LC_MESSAGES/ksmserver.mo +share/locale/csb/LC_MESSAGES/kuiserver5.mo +share/locale/csb/LC_MESSAGES/libkworkspace.mo +share/locale/csb/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/csb/LC_MESSAGES/plasma_applet_org.kde.image.mo +share/locale/csb/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo +share/locale/csb/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo +share/locale/csb/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo +share/locale/csb/LC_MESSAGES/plasma_engine_applicationjobs.mo +share/locale/csb/LC_MESSAGES/plasma_engine_network.mo +share/locale/csb/LC_MESSAGES/plasma_engine_notifications.mo +share/locale/csb/LC_MESSAGES/plasma_engine_rss.mo +share/locale/csb/LC_MESSAGES/plasma_engine_weather.mo +share/locale/csb/LC_MESSAGES/plasma_runner_bookmarksrunner.mo +share/locale/csb/LC_MESSAGES/plasma_runner_calculatorrunner.mo +share/locale/csb/LC_MESSAGES/plasma_runner_locations.mo +share/locale/csb/LC_MESSAGES/plasma_runner_placesrunner.mo +share/locale/csb/LC_MESSAGES/plasma_runner_powerdevil.mo +share/locale/csb/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/csb/LC_MESSAGES/plasma_runner_services.mo +share/locale/csb/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/csb/LC_MESSAGES/plasma_runner_shell.mo +share/locale/csb/LC_MESSAGES/plasma_runner_solid.mo +share/locale/csb/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/csb/LC_MESSAGES/plasma_runner_windows.mo +share/locale/csb/LC_MESSAGES/soliduiserver5.mo +share/locale/cy/LC_MESSAGES/kio5_applications.mo +share/locale/cy/LC_MESSAGES/klipper.mo +share/locale/cy/LC_MESSAGES/ksmserver.mo +share/locale/da/LC_MESSAGES/freespacenotifier.mo +share/locale/da/LC_MESSAGES/kcminit.mo +share/locale/da/LC_MESSAGES/kholidays_calendar_plugin.mo +share/locale/da/LC_MESSAGES/kio5_applications.mo +share/locale/da/LC_MESSAGES/kio_desktop.mo +share/locale/da/LC_MESSAGES/klipper.mo +share/locale/da/LC_MESSAGES/krunner.mo +share/locale/da/LC_MESSAGES/ksmserver.mo +share/locale/da/LC_MESSAGES/kuiserver5.mo +share/locale/da/LC_MESSAGES/libkworkspace.mo +share/locale/da/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/da/LC_MESSAGES/plasma_applet_org.kde.color.mo +share/locale/da/LC_MESSAGES/plasma_applet_org.kde.image.mo +share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo +share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo +share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo +share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo +share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo +share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo +share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo +share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo +share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo +share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo +share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo +share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo +share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo +share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.cpu.mo +share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskactivity.mo +share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskusage.mo +share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.memory.mo +share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.net.mo +share/locale/da/LC_MESSAGES/plasma_containmentactions_contextmenu.mo +share/locale/da/LC_MESSAGES/plasma_containmentactions_switchwindow.mo +share/locale/da/LC_MESSAGES/plasma_engine_applicationjobs.mo +share/locale/da/LC_MESSAGES/plasma_engine_devicenotifications.mo +share/locale/da/LC_MESSAGES/plasma_engine_keystate.mo +share/locale/da/LC_MESSAGES/plasma_engine_mpris2.mo +share/locale/da/LC_MESSAGES/plasma_engine_network.mo +share/locale/da/LC_MESSAGES/plasma_engine_notifications.mo +share/locale/da/LC_MESSAGES/plasma_engine_powermanagement.mo +share/locale/da/LC_MESSAGES/plasma_engine_rss.mo +share/locale/da/LC_MESSAGES/plasma_engine_share.mo +share/locale/da/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/da/LC_MESSAGES/plasma_engine_time.mo +share/locale/da/LC_MESSAGES/plasma_engine_weather.mo +share/locale/da/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo +share/locale/da/LC_MESSAGES/plasma_package_plasmashell.mo +share/locale/da/LC_MESSAGES/plasma_runner_activities.mo +share/locale/da/LC_MESSAGES/plasma_runner_baloosearch5.mo +share/locale/da/LC_MESSAGES/plasma_runner_bookmarksrunner.mo +share/locale/da/LC_MESSAGES/plasma_runner_calculatorrunner.mo +share/locale/da/LC_MESSAGES/plasma_runner_kill.mo +share/locale/da/LC_MESSAGES/plasma_runner_locations.mo +share/locale/da/LC_MESSAGES/plasma_runner_placesrunner.mo +share/locale/da/LC_MESSAGES/plasma_runner_powerdevil.mo +share/locale/da/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/da/LC_MESSAGES/plasma_runner_services.mo +share/locale/da/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/da/LC_MESSAGES/plasma_runner_shell.mo +share/locale/da/LC_MESSAGES/plasma_runner_solid.mo +share/locale/da/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/da/LC_MESSAGES/plasma_runner_windowedwidgets.mo +share/locale/da/LC_MESSAGES/plasma_runner_windows.mo +share/locale/da/LC_MESSAGES/plasmashell.mo +share/locale/da/LC_MESSAGES/plasmashellprivateplugin.mo +share/locale/da/LC_MESSAGES/soliduiserver5.mo +share/locale/da/LC_MESSAGES/systemmonitor.mo +share/locale/de/LC_MESSAGES/freespacenotifier.mo +share/locale/de/LC_MESSAGES/kcminit.mo +share/locale/de/LC_MESSAGES/kholidays_calendar_plugin.mo +share/locale/de/LC_MESSAGES/kio5_applications.mo +share/locale/de/LC_MESSAGES/kio_desktop.mo +share/locale/de/LC_MESSAGES/klipper.mo +share/locale/de/LC_MESSAGES/krunner.mo +share/locale/de/LC_MESSAGES/ksmserver.mo +share/locale/de/LC_MESSAGES/kuiserver5.mo +share/locale/de/LC_MESSAGES/libkworkspace.mo +share/locale/de/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/de/LC_MESSAGES/plasma_applet_org.kde.color.mo +share/locale/de/LC_MESSAGES/plasma_applet_org.kde.image.mo +share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo +share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo +share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo +share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo +share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo +share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo +share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo +share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo +share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo +share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo +share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo +share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo +share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo +share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.cpu.mo +share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskactivity.mo +share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskusage.mo +share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.memory.mo +share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.net.mo +share/locale/de/LC_MESSAGES/plasma_containmentactions_applauncher.mo +share/locale/de/LC_MESSAGES/plasma_containmentactions_contextmenu.mo +share/locale/de/LC_MESSAGES/plasma_containmentactions_switchwindow.mo +share/locale/de/LC_MESSAGES/plasma_engine_applicationjobs.mo +share/locale/de/LC_MESSAGES/plasma_engine_devicenotifications.mo +share/locale/de/LC_MESSAGES/plasma_engine_dict.mo +share/locale/de/LC_MESSAGES/plasma_engine_keystate.mo +share/locale/de/LC_MESSAGES/plasma_engine_mpris2.mo +share/locale/de/LC_MESSAGES/plasma_engine_network.mo +share/locale/de/LC_MESSAGES/plasma_engine_notifications.mo +share/locale/de/LC_MESSAGES/plasma_engine_powermanagement.mo +share/locale/de/LC_MESSAGES/plasma_engine_rss.mo +share/locale/de/LC_MESSAGES/plasma_engine_share.mo +share/locale/de/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/de/LC_MESSAGES/plasma_engine_time.mo +share/locale/de/LC_MESSAGES/plasma_engine_weather.mo +share/locale/de/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo +share/locale/de/LC_MESSAGES/plasma_package_plasmashell.mo +share/locale/de/LC_MESSAGES/plasma_runner_activities.mo +share/locale/de/LC_MESSAGES/plasma_runner_appstream.mo +share/locale/de/LC_MESSAGES/plasma_runner_baloosearch5.mo +share/locale/de/LC_MESSAGES/plasma_runner_bookmarksrunner.mo +share/locale/de/LC_MESSAGES/plasma_runner_calculatorrunner.mo +share/locale/de/LC_MESSAGES/plasma_runner_kill.mo +share/locale/de/LC_MESSAGES/plasma_runner_locations.mo +share/locale/de/LC_MESSAGES/plasma_runner_placesrunner.mo +share/locale/de/LC_MESSAGES/plasma_runner_powerdevil.mo +share/locale/de/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/de/LC_MESSAGES/plasma_runner_services.mo +share/locale/de/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/de/LC_MESSAGES/plasma_runner_shell.mo +share/locale/de/LC_MESSAGES/plasma_runner_solid.mo +share/locale/de/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/de/LC_MESSAGES/plasma_runner_windowedwidgets.mo +share/locale/de/LC_MESSAGES/plasma_runner_windows.mo +share/locale/de/LC_MESSAGES/plasmashell.mo +share/locale/de/LC_MESSAGES/plasmashellprivateplugin.mo +share/locale/de/LC_MESSAGES/soliduiserver5.mo +share/locale/de/LC_MESSAGES/systemmonitor.mo +share/locale/el/LC_MESSAGES/freespacenotifier.mo +share/locale/el/LC_MESSAGES/kcminit.mo +share/locale/el/LC_MESSAGES/kholidays_calendar_plugin.mo +share/locale/el/LC_MESSAGES/kio5_applications.mo +share/locale/el/LC_MESSAGES/kio_desktop.mo +share/locale/el/LC_MESSAGES/klipper.mo +share/locale/el/LC_MESSAGES/krunner.mo +share/locale/el/LC_MESSAGES/ksmserver.mo +share/locale/el/LC_MESSAGES/kuiserver5.mo +share/locale/el/LC_MESSAGES/libkworkspace.mo +share/locale/el/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/el/LC_MESSAGES/plasma_applet_org.kde.color.mo +share/locale/el/LC_MESSAGES/plasma_applet_org.kde.image.mo +share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo +share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo +share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo +share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo +share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo +share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo +share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo +share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo +share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo +share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo +share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo +share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo +share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo +share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.cpu.mo +share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskactivity.mo +share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskusage.mo +share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.memory.mo +share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.net.mo +share/locale/el/LC_MESSAGES/plasma_containmentactions_contextmenu.mo +share/locale/el/LC_MESSAGES/plasma_containmentactions_switchwindow.mo +share/locale/el/LC_MESSAGES/plasma_engine_applicationjobs.mo +share/locale/el/LC_MESSAGES/plasma_engine_devicenotifications.mo +share/locale/el/LC_MESSAGES/plasma_engine_keystate.mo +share/locale/el/LC_MESSAGES/plasma_engine_mpris2.mo +share/locale/el/LC_MESSAGES/plasma_engine_network.mo +share/locale/el/LC_MESSAGES/plasma_engine_notifications.mo +share/locale/el/LC_MESSAGES/plasma_engine_powermanagement.mo +share/locale/el/LC_MESSAGES/plasma_engine_rss.mo +share/locale/el/LC_MESSAGES/plasma_engine_share.mo +share/locale/el/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/el/LC_MESSAGES/plasma_engine_time.mo +share/locale/el/LC_MESSAGES/plasma_engine_weather.mo +share/locale/el/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo +share/locale/el/LC_MESSAGES/plasma_runner_activities.mo +share/locale/el/LC_MESSAGES/plasma_runner_baloosearch5.mo +share/locale/el/LC_MESSAGES/plasma_runner_bookmarksrunner.mo +share/locale/el/LC_MESSAGES/plasma_runner_calculatorrunner.mo +share/locale/el/LC_MESSAGES/plasma_runner_kill.mo +share/locale/el/LC_MESSAGES/plasma_runner_locations.mo +share/locale/el/LC_MESSAGES/plasma_runner_placesrunner.mo +share/locale/el/LC_MESSAGES/plasma_runner_powerdevil.mo +share/locale/el/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/el/LC_MESSAGES/plasma_runner_services.mo +share/locale/el/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/el/LC_MESSAGES/plasma_runner_shell.mo +share/locale/el/LC_MESSAGES/plasma_runner_solid.mo +share/locale/el/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/el/LC_MESSAGES/plasma_runner_windowedwidgets.mo +share/locale/el/LC_MESSAGES/plasma_runner_windows.mo +share/locale/el/LC_MESSAGES/plasmashell.mo +share/locale/el/LC_MESSAGES/plasmashellprivateplugin.mo +share/locale/el/LC_MESSAGES/soliduiserver5.mo +share/locale/el/LC_MESSAGES/systemmonitor.mo +share/locale/en_GB/LC_MESSAGES/freespacenotifier.mo +share/locale/en_GB/LC_MESSAGES/kcminit.mo +share/locale/en_GB/LC_MESSAGES/kholidays_calendar_plugin.mo +share/locale/en_GB/LC_MESSAGES/kio5_applications.mo +share/locale/en_GB/LC_MESSAGES/kio_desktop.mo +share/locale/en_GB/LC_MESSAGES/klipper.mo +share/locale/en_GB/LC_MESSAGES/krunner.mo +share/locale/en_GB/LC_MESSAGES/ksmserver.mo +share/locale/en_GB/LC_MESSAGES/kuiserver5.mo +share/locale/en_GB/LC_MESSAGES/libkworkspace.mo +share/locale/en_GB/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.color.mo +share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.image.mo +share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo +share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo +share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo +share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo +share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo +share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo +share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo +share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo +share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo +share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo +share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo +share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo +share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo +share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.cpu.mo +share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskactivity.mo +share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskusage.mo +share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.memory.mo +share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.net.mo +share/locale/en_GB/LC_MESSAGES/plasma_containmentactions_applauncher.mo +share/locale/en_GB/LC_MESSAGES/plasma_containmentactions_contextmenu.mo +share/locale/en_GB/LC_MESSAGES/plasma_containmentactions_switchwindow.mo +share/locale/en_GB/LC_MESSAGES/plasma_engine_applicationjobs.mo +share/locale/en_GB/LC_MESSAGES/plasma_engine_devicenotifications.mo +share/locale/en_GB/LC_MESSAGES/plasma_engine_dict.mo +share/locale/en_GB/LC_MESSAGES/plasma_engine_keystate.mo +share/locale/en_GB/LC_MESSAGES/plasma_engine_mpris2.mo +share/locale/en_GB/LC_MESSAGES/plasma_engine_network.mo +share/locale/en_GB/LC_MESSAGES/plasma_engine_notifications.mo +share/locale/en_GB/LC_MESSAGES/plasma_engine_powermanagement.mo +share/locale/en_GB/LC_MESSAGES/plasma_engine_rss.mo +share/locale/en_GB/LC_MESSAGES/plasma_engine_share.mo +share/locale/en_GB/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/en_GB/LC_MESSAGES/plasma_engine_time.mo +share/locale/en_GB/LC_MESSAGES/plasma_engine_weather.mo +share/locale/en_GB/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo +share/locale/en_GB/LC_MESSAGES/plasma_package_plasmashell.mo +share/locale/en_GB/LC_MESSAGES/plasma_runner_activities.mo +share/locale/en_GB/LC_MESSAGES/plasma_runner_appstream.mo +share/locale/en_GB/LC_MESSAGES/plasma_runner_baloosearch5.mo +share/locale/en_GB/LC_MESSAGES/plasma_runner_bookmarksrunner.mo +share/locale/en_GB/LC_MESSAGES/plasma_runner_calculatorrunner.mo +share/locale/en_GB/LC_MESSAGES/plasma_runner_kill.mo +share/locale/en_GB/LC_MESSAGES/plasma_runner_locations.mo +share/locale/en_GB/LC_MESSAGES/plasma_runner_placesrunner.mo +share/locale/en_GB/LC_MESSAGES/plasma_runner_powerdevil.mo +share/locale/en_GB/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/en_GB/LC_MESSAGES/plasma_runner_services.mo +share/locale/en_GB/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/en_GB/LC_MESSAGES/plasma_runner_shell.mo +share/locale/en_GB/LC_MESSAGES/plasma_runner_solid.mo +share/locale/en_GB/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/en_GB/LC_MESSAGES/plasma_runner_windowedwidgets.mo +share/locale/en_GB/LC_MESSAGES/plasma_runner_windows.mo +share/locale/en_GB/LC_MESSAGES/plasmashell.mo +share/locale/en_GB/LC_MESSAGES/plasmashellprivateplugin.mo +share/locale/en_GB/LC_MESSAGES/soliduiserver5.mo +share/locale/en_GB/LC_MESSAGES/systemmonitor.mo +share/locale/eo/LC_MESSAGES/freespacenotifier.mo +share/locale/eo/LC_MESSAGES/kcminit.mo +share/locale/eo/LC_MESSAGES/kio5_applications.mo +share/locale/eo/LC_MESSAGES/klipper.mo +share/locale/eo/LC_MESSAGES/ksmserver.mo +share/locale/eo/LC_MESSAGES/kuiserver5.mo +share/locale/eo/LC_MESSAGES/libkworkspace.mo +share/locale/eo/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.image.mo +share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo +share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo +share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo +share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo +share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo +share/locale/eo/LC_MESSAGES/plasma_containmentactions_contextmenu.mo +share/locale/eo/LC_MESSAGES/plasma_containmentactions_switchwindow.mo +share/locale/eo/LC_MESSAGES/plasma_engine_applicationjobs.mo +share/locale/eo/LC_MESSAGES/plasma_engine_keystate.mo +share/locale/eo/LC_MESSAGES/plasma_engine_network.mo +share/locale/eo/LC_MESSAGES/plasma_engine_notifications.mo +share/locale/eo/LC_MESSAGES/plasma_engine_rss.mo +share/locale/eo/LC_MESSAGES/plasma_engine_share.mo +share/locale/eo/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/eo/LC_MESSAGES/plasma_engine_weather.mo +share/locale/eo/LC_MESSAGES/plasma_runner_bookmarksrunner.mo +share/locale/eo/LC_MESSAGES/plasma_runner_calculatorrunner.mo +share/locale/eo/LC_MESSAGES/plasma_runner_kill.mo +share/locale/eo/LC_MESSAGES/plasma_runner_locations.mo +share/locale/eo/LC_MESSAGES/plasma_runner_placesrunner.mo +share/locale/eo/LC_MESSAGES/plasma_runner_powerdevil.mo +share/locale/eo/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/eo/LC_MESSAGES/plasma_runner_services.mo +share/locale/eo/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/eo/LC_MESSAGES/plasma_runner_shell.mo +share/locale/eo/LC_MESSAGES/plasma_runner_solid.mo +share/locale/eo/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/eo/LC_MESSAGES/plasma_runner_windowedwidgets.mo +share/locale/eo/LC_MESSAGES/plasma_runner_windows.mo +share/locale/eo/LC_MESSAGES/soliduiserver5.mo +share/locale/es/LC_MESSAGES/freespacenotifier.mo +share/locale/es/LC_MESSAGES/kcminit.mo +share/locale/es/LC_MESSAGES/kholidays_calendar_plugin.mo +share/locale/es/LC_MESSAGES/kio5_applications.mo +share/locale/es/LC_MESSAGES/kio_desktop.mo +share/locale/es/LC_MESSAGES/klipper.mo +share/locale/es/LC_MESSAGES/krunner.mo +share/locale/es/LC_MESSAGES/ksmserver.mo +share/locale/es/LC_MESSAGES/kuiserver5.mo +share/locale/es/LC_MESSAGES/libkworkspace.mo +share/locale/es/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/es/LC_MESSAGES/plasma_applet_org.kde.color.mo +share/locale/es/LC_MESSAGES/plasma_applet_org.kde.image.mo +share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo +share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo +share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo +share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo +share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo +share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo +share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo +share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo +share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo +share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo +share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo +share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo +share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo +share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.cpu.mo +share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskactivity.mo +share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskusage.mo +share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.memory.mo +share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.net.mo +share/locale/es/LC_MESSAGES/plasma_containmentactions_applauncher.mo +share/locale/es/LC_MESSAGES/plasma_containmentactions_contextmenu.mo +share/locale/es/LC_MESSAGES/plasma_containmentactions_switchwindow.mo +share/locale/es/LC_MESSAGES/plasma_engine_applicationjobs.mo +share/locale/es/LC_MESSAGES/plasma_engine_devicenotifications.mo +share/locale/es/LC_MESSAGES/plasma_engine_dict.mo +share/locale/es/LC_MESSAGES/plasma_engine_keystate.mo +share/locale/es/LC_MESSAGES/plasma_engine_mpris2.mo +share/locale/es/LC_MESSAGES/plasma_engine_network.mo +share/locale/es/LC_MESSAGES/plasma_engine_notifications.mo +share/locale/es/LC_MESSAGES/plasma_engine_powermanagement.mo +share/locale/es/LC_MESSAGES/plasma_engine_rss.mo +share/locale/es/LC_MESSAGES/plasma_engine_share.mo +share/locale/es/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/es/LC_MESSAGES/plasma_engine_time.mo +share/locale/es/LC_MESSAGES/plasma_engine_weather.mo +share/locale/es/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo +share/locale/es/LC_MESSAGES/plasma_package_plasmashell.mo +share/locale/es/LC_MESSAGES/plasma_runner_activities.mo +share/locale/es/LC_MESSAGES/plasma_runner_appstream.mo +share/locale/es/LC_MESSAGES/plasma_runner_baloosearch5.mo +share/locale/es/LC_MESSAGES/plasma_runner_bookmarksrunner.mo +share/locale/es/LC_MESSAGES/plasma_runner_calculatorrunner.mo +share/locale/es/LC_MESSAGES/plasma_runner_kill.mo +share/locale/es/LC_MESSAGES/plasma_runner_locations.mo +share/locale/es/LC_MESSAGES/plasma_runner_placesrunner.mo +share/locale/es/LC_MESSAGES/plasma_runner_powerdevil.mo +share/locale/es/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/es/LC_MESSAGES/plasma_runner_services.mo +share/locale/es/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/es/LC_MESSAGES/plasma_runner_shell.mo +share/locale/es/LC_MESSAGES/plasma_runner_solid.mo +share/locale/es/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/es/LC_MESSAGES/plasma_runner_windowedwidgets.mo +share/locale/es/LC_MESSAGES/plasma_runner_windows.mo +share/locale/es/LC_MESSAGES/plasmashell.mo +share/locale/es/LC_MESSAGES/plasmashellprivateplugin.mo +share/locale/es/LC_MESSAGES/soliduiserver5.mo +share/locale/es/LC_MESSAGES/systemmonitor.mo +share/locale/et/LC_MESSAGES/freespacenotifier.mo +share/locale/et/LC_MESSAGES/kcminit.mo +share/locale/et/LC_MESSAGES/kholidays_calendar_plugin.mo +share/locale/et/LC_MESSAGES/kio5_applications.mo +share/locale/et/LC_MESSAGES/klipper.mo +share/locale/et/LC_MESSAGES/krunner.mo +share/locale/et/LC_MESSAGES/ksmserver.mo +share/locale/et/LC_MESSAGES/kuiserver5.mo +share/locale/et/LC_MESSAGES/libkworkspace.mo +share/locale/et/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/et/LC_MESSAGES/plasma_applet_org.kde.color.mo +share/locale/et/LC_MESSAGES/plasma_applet_org.kde.image.mo +share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo +share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo +share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo +share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo +share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo +share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo +share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo +share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo +share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo +share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo +share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo +share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.cpu.mo +share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskactivity.mo +share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskusage.mo +share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.memory.mo +share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.net.mo +share/locale/et/LC_MESSAGES/plasma_containmentactions_contextmenu.mo +share/locale/et/LC_MESSAGES/plasma_containmentactions_switchwindow.mo +share/locale/et/LC_MESSAGES/plasma_engine_applicationjobs.mo +share/locale/et/LC_MESSAGES/plasma_engine_devicenotifications.mo +share/locale/et/LC_MESSAGES/plasma_engine_keystate.mo +share/locale/et/LC_MESSAGES/plasma_engine_mpris2.mo +share/locale/et/LC_MESSAGES/plasma_engine_network.mo +share/locale/et/LC_MESSAGES/plasma_engine_notifications.mo +share/locale/et/LC_MESSAGES/plasma_engine_powermanagement.mo +share/locale/et/LC_MESSAGES/plasma_engine_rss.mo +share/locale/et/LC_MESSAGES/plasma_engine_share.mo +share/locale/et/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/et/LC_MESSAGES/plasma_engine_time.mo +share/locale/et/LC_MESSAGES/plasma_engine_weather.mo +share/locale/et/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo +share/locale/et/LC_MESSAGES/plasma_package_plasmashell.mo +share/locale/et/LC_MESSAGES/plasma_runner_activities.mo +share/locale/et/LC_MESSAGES/plasma_runner_baloosearch5.mo +share/locale/et/LC_MESSAGES/plasma_runner_bookmarksrunner.mo +share/locale/et/LC_MESSAGES/plasma_runner_calculatorrunner.mo +share/locale/et/LC_MESSAGES/plasma_runner_kill.mo +share/locale/et/LC_MESSAGES/plasma_runner_locations.mo +share/locale/et/LC_MESSAGES/plasma_runner_placesrunner.mo +share/locale/et/LC_MESSAGES/plasma_runner_powerdevil.mo +share/locale/et/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/et/LC_MESSAGES/plasma_runner_services.mo +share/locale/et/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/et/LC_MESSAGES/plasma_runner_shell.mo +share/locale/et/LC_MESSAGES/plasma_runner_solid.mo +share/locale/et/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/et/LC_MESSAGES/plasma_runner_windowedwidgets.mo +share/locale/et/LC_MESSAGES/plasma_runner_windows.mo +share/locale/et/LC_MESSAGES/plasmashell.mo +share/locale/et/LC_MESSAGES/plasmashellprivateplugin.mo +share/locale/et/LC_MESSAGES/soliduiserver5.mo +share/locale/et/LC_MESSAGES/systemmonitor.mo +share/locale/eu/LC_MESSAGES/freespacenotifier.mo +share/locale/eu/LC_MESSAGES/kcminit.mo +share/locale/eu/LC_MESSAGES/kholidays_calendar_plugin.mo +share/locale/eu/LC_MESSAGES/kio5_applications.mo +share/locale/eu/LC_MESSAGES/kio_desktop.mo +share/locale/eu/LC_MESSAGES/klipper.mo +share/locale/eu/LC_MESSAGES/krunner.mo +share/locale/eu/LC_MESSAGES/ksmserver.mo +share/locale/eu/LC_MESSAGES/kuiserver5.mo +share/locale/eu/LC_MESSAGES/libkworkspace.mo +share/locale/eu/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.color.mo +share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.image.mo +share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo +share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo +share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo +share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo +share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo +share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo +share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo +share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo +share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo +share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo +share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo +share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo +share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo +share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.cpu.mo +share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskactivity.mo +share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskusage.mo +share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.memory.mo +share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.net.mo +share/locale/eu/LC_MESSAGES/plasma_containmentactions_contextmenu.mo +share/locale/eu/LC_MESSAGES/plasma_containmentactions_switchwindow.mo +share/locale/eu/LC_MESSAGES/plasma_engine_applicationjobs.mo +share/locale/eu/LC_MESSAGES/plasma_engine_devicenotifications.mo +share/locale/eu/LC_MESSAGES/plasma_engine_keystate.mo +share/locale/eu/LC_MESSAGES/plasma_engine_network.mo +share/locale/eu/LC_MESSAGES/plasma_engine_notifications.mo +share/locale/eu/LC_MESSAGES/plasma_engine_rss.mo +share/locale/eu/LC_MESSAGES/plasma_engine_share.mo +share/locale/eu/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/eu/LC_MESSAGES/plasma_engine_weather.mo +share/locale/eu/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo +share/locale/eu/LC_MESSAGES/plasma_runner_activities.mo +share/locale/eu/LC_MESSAGES/plasma_runner_bookmarksrunner.mo +share/locale/eu/LC_MESSAGES/plasma_runner_calculatorrunner.mo +share/locale/eu/LC_MESSAGES/plasma_runner_kill.mo +share/locale/eu/LC_MESSAGES/plasma_runner_locations.mo +share/locale/eu/LC_MESSAGES/plasma_runner_placesrunner.mo +share/locale/eu/LC_MESSAGES/plasma_runner_powerdevil.mo +share/locale/eu/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/eu/LC_MESSAGES/plasma_runner_services.mo +share/locale/eu/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/eu/LC_MESSAGES/plasma_runner_shell.mo +share/locale/eu/LC_MESSAGES/plasma_runner_solid.mo +share/locale/eu/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/eu/LC_MESSAGES/plasma_runner_windowedwidgets.mo +share/locale/eu/LC_MESSAGES/plasma_runner_windows.mo +share/locale/eu/LC_MESSAGES/plasmashell.mo +share/locale/eu/LC_MESSAGES/plasmashellprivateplugin.mo +share/locale/eu/LC_MESSAGES/soliduiserver5.mo +share/locale/eu/LC_MESSAGES/systemmonitor.mo +share/locale/fa/LC_MESSAGES/freespacenotifier.mo +share/locale/fa/LC_MESSAGES/kcminit.mo +share/locale/fa/LC_MESSAGES/kio5_applications.mo +share/locale/fa/LC_MESSAGES/klipper.mo +share/locale/fa/LC_MESSAGES/ksmserver.mo +share/locale/fa/LC_MESSAGES/kuiserver5.mo +share/locale/fa/LC_MESSAGES/libkworkspace.mo +share/locale/fa/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/fa/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo +share/locale/fa/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo +share/locale/fa/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo +share/locale/fa/LC_MESSAGES/plasma_containmentactions_contextmenu.mo +share/locale/fa/LC_MESSAGES/plasma_runner_locations.mo +share/locale/fa/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/fa/LC_MESSAGES/soliduiserver5.mo +share/locale/fi/LC_MESSAGES/freespacenotifier.mo +share/locale/fi/LC_MESSAGES/kcminit.mo +share/locale/fi/LC_MESSAGES/kholidays_calendar_plugin.mo +share/locale/fi/LC_MESSAGES/kio5_applications.mo +share/locale/fi/LC_MESSAGES/kio_desktop.mo +share/locale/fi/LC_MESSAGES/klipper.mo +share/locale/fi/LC_MESSAGES/krunner.mo +share/locale/fi/LC_MESSAGES/ksmserver.mo +share/locale/fi/LC_MESSAGES/kuiserver5.mo +share/locale/fi/LC_MESSAGES/libkworkspace.mo +share/locale/fi/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.color.mo +share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.image.mo +share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo +share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo +share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo +share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo +share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo +share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo +share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo +share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo +share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo +share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo +share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo +share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo +share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo +share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.cpu.mo +share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskactivity.mo +share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskusage.mo +share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.memory.mo +share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.net.mo +share/locale/fi/LC_MESSAGES/plasma_containmentactions_applauncher.mo +share/locale/fi/LC_MESSAGES/plasma_containmentactions_contextmenu.mo +share/locale/fi/LC_MESSAGES/plasma_containmentactions_switchwindow.mo +share/locale/fi/LC_MESSAGES/plasma_engine_applicationjobs.mo +share/locale/fi/LC_MESSAGES/plasma_engine_devicenotifications.mo +share/locale/fi/LC_MESSAGES/plasma_engine_dict.mo +share/locale/fi/LC_MESSAGES/plasma_engine_keystate.mo +share/locale/fi/LC_MESSAGES/plasma_engine_mpris2.mo +share/locale/fi/LC_MESSAGES/plasma_engine_network.mo +share/locale/fi/LC_MESSAGES/plasma_engine_notifications.mo +share/locale/fi/LC_MESSAGES/plasma_engine_powermanagement.mo +share/locale/fi/LC_MESSAGES/plasma_engine_rss.mo +share/locale/fi/LC_MESSAGES/plasma_engine_share.mo +share/locale/fi/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/fi/LC_MESSAGES/plasma_engine_time.mo +share/locale/fi/LC_MESSAGES/plasma_engine_weather.mo +share/locale/fi/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo +share/locale/fi/LC_MESSAGES/plasma_package_plasmashell.mo +share/locale/fi/LC_MESSAGES/plasma_runner_activities.mo +share/locale/fi/LC_MESSAGES/plasma_runner_appstream.mo +share/locale/fi/LC_MESSAGES/plasma_runner_baloosearch5.mo +share/locale/fi/LC_MESSAGES/plasma_runner_bookmarksrunner.mo +share/locale/fi/LC_MESSAGES/plasma_runner_calculatorrunner.mo +share/locale/fi/LC_MESSAGES/plasma_runner_kill.mo +share/locale/fi/LC_MESSAGES/plasma_runner_locations.mo +share/locale/fi/LC_MESSAGES/plasma_runner_placesrunner.mo +share/locale/fi/LC_MESSAGES/plasma_runner_powerdevil.mo +share/locale/fi/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/fi/LC_MESSAGES/plasma_runner_services.mo +share/locale/fi/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/fi/LC_MESSAGES/plasma_runner_shell.mo +share/locale/fi/LC_MESSAGES/plasma_runner_solid.mo +share/locale/fi/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/fi/LC_MESSAGES/plasma_runner_windowedwidgets.mo +share/locale/fi/LC_MESSAGES/plasma_runner_windows.mo +share/locale/fi/LC_MESSAGES/plasmashell.mo +share/locale/fi/LC_MESSAGES/plasmashellprivateplugin.mo +share/locale/fi/LC_MESSAGES/soliduiserver5.mo +share/locale/fi/LC_MESSAGES/systemmonitor.mo +share/locale/fr/LC_MESSAGES/freespacenotifier.mo +share/locale/fr/LC_MESSAGES/kcminit.mo +share/locale/fr/LC_MESSAGES/kholidays_calendar_plugin.mo +share/locale/fr/LC_MESSAGES/kio5_applications.mo +share/locale/fr/LC_MESSAGES/kio_desktop.mo +share/locale/fr/LC_MESSAGES/klipper.mo +share/locale/fr/LC_MESSAGES/krunner.mo +share/locale/fr/LC_MESSAGES/ksmserver.mo +share/locale/fr/LC_MESSAGES/kuiserver5.mo +share/locale/fr/LC_MESSAGES/libkworkspace.mo +share/locale/fr/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.color.mo +share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.image.mo +share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo +share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo +share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo +share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo +share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo +share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo +share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo +share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo +share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo +share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo +share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo +share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo +share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo +share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.cpu.mo +share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskactivity.mo +share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskusage.mo +share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.memory.mo +share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.net.mo +share/locale/fr/LC_MESSAGES/plasma_containmentactions_applauncher.mo +share/locale/fr/LC_MESSAGES/plasma_containmentactions_contextmenu.mo +share/locale/fr/LC_MESSAGES/plasma_containmentactions_switchwindow.mo +share/locale/fr/LC_MESSAGES/plasma_engine_applicationjobs.mo +share/locale/fr/LC_MESSAGES/plasma_engine_devicenotifications.mo +share/locale/fr/LC_MESSAGES/plasma_engine_dict.mo +share/locale/fr/LC_MESSAGES/plasma_engine_keystate.mo +share/locale/fr/LC_MESSAGES/plasma_engine_mpris2.mo +share/locale/fr/LC_MESSAGES/plasma_engine_network.mo +share/locale/fr/LC_MESSAGES/plasma_engine_notifications.mo +share/locale/fr/LC_MESSAGES/plasma_engine_powermanagement.mo +share/locale/fr/LC_MESSAGES/plasma_engine_rss.mo +share/locale/fr/LC_MESSAGES/plasma_engine_share.mo +share/locale/fr/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/fr/LC_MESSAGES/plasma_engine_time.mo +share/locale/fr/LC_MESSAGES/plasma_engine_weather.mo +share/locale/fr/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo +share/locale/fr/LC_MESSAGES/plasma_package_plasmashell.mo +share/locale/fr/LC_MESSAGES/plasma_runner_activities.mo +share/locale/fr/LC_MESSAGES/plasma_runner_appstream.mo +share/locale/fr/LC_MESSAGES/plasma_runner_baloosearch5.mo +share/locale/fr/LC_MESSAGES/plasma_runner_bookmarksrunner.mo +share/locale/fr/LC_MESSAGES/plasma_runner_calculatorrunner.mo +share/locale/fr/LC_MESSAGES/plasma_runner_kill.mo +share/locale/fr/LC_MESSAGES/plasma_runner_locations.mo +share/locale/fr/LC_MESSAGES/plasma_runner_placesrunner.mo +share/locale/fr/LC_MESSAGES/plasma_runner_powerdevil.mo +share/locale/fr/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/fr/LC_MESSAGES/plasma_runner_services.mo +share/locale/fr/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/fr/LC_MESSAGES/plasma_runner_shell.mo +share/locale/fr/LC_MESSAGES/plasma_runner_solid.mo +share/locale/fr/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/fr/LC_MESSAGES/plasma_runner_windowedwidgets.mo +share/locale/fr/LC_MESSAGES/plasma_runner_windows.mo +share/locale/fr/LC_MESSAGES/plasmashell.mo +share/locale/fr/LC_MESSAGES/plasmashellprivateplugin.mo +share/locale/fr/LC_MESSAGES/soliduiserver5.mo +share/locale/fr/LC_MESSAGES/systemmonitor.mo +share/locale/fy/LC_MESSAGES/kcminit.mo +share/locale/fy/LC_MESSAGES/kio5_applications.mo +share/locale/fy/LC_MESSAGES/klipper.mo +share/locale/fy/LC_MESSAGES/ksmserver.mo +share/locale/fy/LC_MESSAGES/kuiserver5.mo +share/locale/fy/LC_MESSAGES/libkworkspace.mo +share/locale/fy/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/fy/LC_MESSAGES/plasma_applet_org.kde.image.mo +share/locale/fy/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo +share/locale/fy/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo +share/locale/fy/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo +share/locale/fy/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo +share/locale/fy/LC_MESSAGES/plasma_engine_applicationjobs.mo +share/locale/fy/LC_MESSAGES/plasma_engine_keystate.mo +share/locale/fy/LC_MESSAGES/plasma_engine_network.mo +share/locale/fy/LC_MESSAGES/plasma_engine_notifications.mo +share/locale/fy/LC_MESSAGES/plasma_engine_rss.mo +share/locale/fy/LC_MESSAGES/plasma_engine_weather.mo +share/locale/fy/LC_MESSAGES/plasma_runner_bookmarksrunner.mo +share/locale/fy/LC_MESSAGES/plasma_runner_calculatorrunner.mo +share/locale/fy/LC_MESSAGES/plasma_runner_locations.mo +share/locale/fy/LC_MESSAGES/plasma_runner_placesrunner.mo +share/locale/fy/LC_MESSAGES/plasma_runner_powerdevil.mo +share/locale/fy/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/fy/LC_MESSAGES/plasma_runner_services.mo +share/locale/fy/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/fy/LC_MESSAGES/plasma_runner_shell.mo +share/locale/fy/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/fy/LC_MESSAGES/soliduiserver5.mo +share/locale/ga/LC_MESSAGES/freespacenotifier.mo +share/locale/ga/LC_MESSAGES/kcminit.mo +share/locale/ga/LC_MESSAGES/kio5_applications.mo +share/locale/ga/LC_MESSAGES/klipper.mo +share/locale/ga/LC_MESSAGES/ksmserver.mo +share/locale/ga/LC_MESSAGES/kuiserver5.mo +share/locale/ga/LC_MESSAGES/libkworkspace.mo +share/locale/ga/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.image.mo +share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo +share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo +share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo +share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo +share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo +share/locale/ga/LC_MESSAGES/plasma_containmentactions_contextmenu.mo +share/locale/ga/LC_MESSAGES/plasma_containmentactions_switchwindow.mo +share/locale/ga/LC_MESSAGES/plasma_engine_applicationjobs.mo +share/locale/ga/LC_MESSAGES/plasma_engine_keystate.mo +share/locale/ga/LC_MESSAGES/plasma_engine_mpris2.mo +share/locale/ga/LC_MESSAGES/plasma_engine_network.mo +share/locale/ga/LC_MESSAGES/plasma_engine_notifications.mo +share/locale/ga/LC_MESSAGES/plasma_engine_rss.mo +share/locale/ga/LC_MESSAGES/plasma_engine_share.mo +share/locale/ga/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/ga/LC_MESSAGES/plasma_engine_weather.mo +share/locale/ga/LC_MESSAGES/plasma_runner_activities.mo +share/locale/ga/LC_MESSAGES/plasma_runner_bookmarksrunner.mo +share/locale/ga/LC_MESSAGES/plasma_runner_calculatorrunner.mo +share/locale/ga/LC_MESSAGES/plasma_runner_kill.mo +share/locale/ga/LC_MESSAGES/plasma_runner_locations.mo +share/locale/ga/LC_MESSAGES/plasma_runner_placesrunner.mo +share/locale/ga/LC_MESSAGES/plasma_runner_powerdevil.mo +share/locale/ga/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/ga/LC_MESSAGES/plasma_runner_services.mo +share/locale/ga/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/ga/LC_MESSAGES/plasma_runner_shell.mo +share/locale/ga/LC_MESSAGES/plasma_runner_solid.mo +share/locale/ga/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/ga/LC_MESSAGES/plasma_runner_windowedwidgets.mo +share/locale/ga/LC_MESSAGES/plasma_runner_windows.mo +share/locale/ga/LC_MESSAGES/soliduiserver5.mo +share/locale/gl/LC_MESSAGES/freespacenotifier.mo +share/locale/gl/LC_MESSAGES/kcminit.mo +share/locale/gl/LC_MESSAGES/kholidays_calendar_plugin.mo +share/locale/gl/LC_MESSAGES/kio5_applications.mo +share/locale/gl/LC_MESSAGES/kio_desktop.mo +share/locale/gl/LC_MESSAGES/klipper.mo +share/locale/gl/LC_MESSAGES/krunner.mo +share/locale/gl/LC_MESSAGES/ksmserver.mo +share/locale/gl/LC_MESSAGES/kuiserver5.mo +share/locale/gl/LC_MESSAGES/libkworkspace.mo +share/locale/gl/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.color.mo +share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.image.mo +share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo +share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo +share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo +share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo +share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo +share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo +share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo +share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo +share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo +share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo +share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo +share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo +share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo +share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.cpu.mo +share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskactivity.mo +share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskusage.mo +share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.memory.mo +share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.net.mo +share/locale/gl/LC_MESSAGES/plasma_containmentactions_applauncher.mo +share/locale/gl/LC_MESSAGES/plasma_containmentactions_contextmenu.mo +share/locale/gl/LC_MESSAGES/plasma_containmentactions_switchwindow.mo +share/locale/gl/LC_MESSAGES/plasma_engine_applicationjobs.mo +share/locale/gl/LC_MESSAGES/plasma_engine_devicenotifications.mo +share/locale/gl/LC_MESSAGES/plasma_engine_keystate.mo +share/locale/gl/LC_MESSAGES/plasma_engine_mpris2.mo +share/locale/gl/LC_MESSAGES/plasma_engine_network.mo +share/locale/gl/LC_MESSAGES/plasma_engine_notifications.mo +share/locale/gl/LC_MESSAGES/plasma_engine_powermanagement.mo +share/locale/gl/LC_MESSAGES/plasma_engine_rss.mo +share/locale/gl/LC_MESSAGES/plasma_engine_share.mo +share/locale/gl/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/gl/LC_MESSAGES/plasma_engine_time.mo +share/locale/gl/LC_MESSAGES/plasma_engine_weather.mo +share/locale/gl/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo +share/locale/gl/LC_MESSAGES/plasma_package_plasmashell.mo +share/locale/gl/LC_MESSAGES/plasma_runner_activities.mo +share/locale/gl/LC_MESSAGES/plasma_runner_baloosearch5.mo +share/locale/gl/LC_MESSAGES/plasma_runner_bookmarksrunner.mo +share/locale/gl/LC_MESSAGES/plasma_runner_calculatorrunner.mo +share/locale/gl/LC_MESSAGES/plasma_runner_kill.mo +share/locale/gl/LC_MESSAGES/plasma_runner_locations.mo +share/locale/gl/LC_MESSAGES/plasma_runner_placesrunner.mo +share/locale/gl/LC_MESSAGES/plasma_runner_powerdevil.mo +share/locale/gl/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/gl/LC_MESSAGES/plasma_runner_services.mo +share/locale/gl/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/gl/LC_MESSAGES/plasma_runner_shell.mo +share/locale/gl/LC_MESSAGES/plasma_runner_solid.mo +share/locale/gl/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/gl/LC_MESSAGES/plasma_runner_windowedwidgets.mo +share/locale/gl/LC_MESSAGES/plasma_runner_windows.mo +share/locale/gl/LC_MESSAGES/plasmashell.mo +share/locale/gl/LC_MESSAGES/plasmashellprivateplugin.mo +share/locale/gl/LC_MESSAGES/soliduiserver5.mo +share/locale/gl/LC_MESSAGES/systemmonitor.mo +share/locale/gu/LC_MESSAGES/freespacenotifier.mo +share/locale/gu/LC_MESSAGES/kcminit.mo +share/locale/gu/LC_MESSAGES/kio5_applications.mo +share/locale/gu/LC_MESSAGES/klipper.mo +share/locale/gu/LC_MESSAGES/ksmserver.mo +share/locale/gu/LC_MESSAGES/kuiserver5.mo +share/locale/gu/LC_MESSAGES/libkworkspace.mo +share/locale/gu/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/gu/LC_MESSAGES/plasma_applet_org.kde.image.mo +share/locale/gu/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo +share/locale/gu/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo +share/locale/gu/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo +share/locale/gu/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo +share/locale/gu/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo +share/locale/gu/LC_MESSAGES/plasma_containmentactions_contextmenu.mo +share/locale/gu/LC_MESSAGES/plasma_containmentactions_switchwindow.mo +share/locale/gu/LC_MESSAGES/plasma_engine_applicationjobs.mo +share/locale/gu/LC_MESSAGES/plasma_engine_keystate.mo +share/locale/gu/LC_MESSAGES/plasma_engine_network.mo +share/locale/gu/LC_MESSAGES/plasma_engine_notifications.mo +share/locale/gu/LC_MESSAGES/plasma_engine_rss.mo +share/locale/gu/LC_MESSAGES/plasma_engine_share.mo +share/locale/gu/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/gu/LC_MESSAGES/plasma_engine_weather.mo +share/locale/gu/LC_MESSAGES/plasma_runner_bookmarksrunner.mo +share/locale/gu/LC_MESSAGES/plasma_runner_kill.mo +share/locale/gu/LC_MESSAGES/plasma_runner_locations.mo +share/locale/gu/LC_MESSAGES/plasma_runner_placesrunner.mo +share/locale/gu/LC_MESSAGES/plasma_runner_powerdevil.mo +share/locale/gu/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/gu/LC_MESSAGES/plasma_runner_services.mo +share/locale/gu/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/gu/LC_MESSAGES/plasma_runner_shell.mo +share/locale/gu/LC_MESSAGES/plasma_runner_solid.mo +share/locale/gu/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/gu/LC_MESSAGES/plasma_runner_windowedwidgets.mo +share/locale/gu/LC_MESSAGES/plasma_runner_windows.mo +share/locale/gu/LC_MESSAGES/soliduiserver5.mo +share/locale/he/LC_MESSAGES/freespacenotifier.mo +share/locale/he/LC_MESSAGES/kcminit.mo +share/locale/he/LC_MESSAGES/kholidays_calendar_plugin.mo +share/locale/he/LC_MESSAGES/kio5_applications.mo +share/locale/he/LC_MESSAGES/kio_desktop.mo +share/locale/he/LC_MESSAGES/klipper.mo +share/locale/he/LC_MESSAGES/krunner.mo +share/locale/he/LC_MESSAGES/ksmserver.mo +share/locale/he/LC_MESSAGES/kuiserver5.mo +share/locale/he/LC_MESSAGES/libkworkspace.mo +share/locale/he/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/he/LC_MESSAGES/plasma_applet_org.kde.color.mo +share/locale/he/LC_MESSAGES/plasma_applet_org.kde.image.mo +share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo +share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo +share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo +share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo +share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo +share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo +share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo +share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo +share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo +share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo +share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo +share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo +share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo +share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.cpu.mo +share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskactivity.mo +share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskusage.mo +share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.memory.mo +share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.net.mo +share/locale/he/LC_MESSAGES/plasma_containmentactions_contextmenu.mo +share/locale/he/LC_MESSAGES/plasma_containmentactions_switchwindow.mo +share/locale/he/LC_MESSAGES/plasma_engine_applicationjobs.mo +share/locale/he/LC_MESSAGES/plasma_engine_devicenotifications.mo +share/locale/he/LC_MESSAGES/plasma_engine_keystate.mo +share/locale/he/LC_MESSAGES/plasma_engine_mpris2.mo +share/locale/he/LC_MESSAGES/plasma_engine_network.mo +share/locale/he/LC_MESSAGES/plasma_engine_notifications.mo +share/locale/he/LC_MESSAGES/plasma_engine_powermanagement.mo +share/locale/he/LC_MESSAGES/plasma_engine_rss.mo +share/locale/he/LC_MESSAGES/plasma_engine_share.mo +share/locale/he/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/he/LC_MESSAGES/plasma_engine_time.mo +share/locale/he/LC_MESSAGES/plasma_engine_weather.mo +share/locale/he/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo +share/locale/he/LC_MESSAGES/plasma_runner_activities.mo +share/locale/he/LC_MESSAGES/plasma_runner_baloosearch5.mo +share/locale/he/LC_MESSAGES/plasma_runner_bookmarksrunner.mo +share/locale/he/LC_MESSAGES/plasma_runner_calculatorrunner.mo +share/locale/he/LC_MESSAGES/plasma_runner_kill.mo +share/locale/he/LC_MESSAGES/plasma_runner_locations.mo +share/locale/he/LC_MESSAGES/plasma_runner_placesrunner.mo +share/locale/he/LC_MESSAGES/plasma_runner_powerdevil.mo +share/locale/he/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/he/LC_MESSAGES/plasma_runner_services.mo +share/locale/he/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/he/LC_MESSAGES/plasma_runner_shell.mo +share/locale/he/LC_MESSAGES/plasma_runner_solid.mo +share/locale/he/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/he/LC_MESSAGES/plasma_runner_windowedwidgets.mo +share/locale/he/LC_MESSAGES/plasma_runner_windows.mo +share/locale/he/LC_MESSAGES/plasmashell.mo +share/locale/he/LC_MESSAGES/plasmashellprivateplugin.mo +share/locale/he/LC_MESSAGES/soliduiserver5.mo +share/locale/he/LC_MESSAGES/systemmonitor.mo +share/locale/hi/LC_MESSAGES/freespacenotifier.mo +share/locale/hi/LC_MESSAGES/kcminit.mo +share/locale/hi/LC_MESSAGES/kio5_applications.mo +share/locale/hi/LC_MESSAGES/klipper.mo +share/locale/hi/LC_MESSAGES/ksmserver.mo +share/locale/hi/LC_MESSAGES/kuiserver5.mo +share/locale/hi/LC_MESSAGES/libkworkspace.mo +share/locale/hi/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.image.mo +share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo +share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo +share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo +share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo +share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo +share/locale/hi/LC_MESSAGES/plasma_containmentactions_contextmenu.mo +share/locale/hi/LC_MESSAGES/plasma_containmentactions_switchwindow.mo +share/locale/hi/LC_MESSAGES/plasma_engine_applicationjobs.mo +share/locale/hi/LC_MESSAGES/plasma_engine_keystate.mo +share/locale/hi/LC_MESSAGES/plasma_engine_network.mo +share/locale/hi/LC_MESSAGES/plasma_engine_notifications.mo +share/locale/hi/LC_MESSAGES/plasma_engine_rss.mo +share/locale/hi/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/hi/LC_MESSAGES/plasma_engine_weather.mo +share/locale/hi/LC_MESSAGES/plasma_runner_bookmarksrunner.mo +share/locale/hi/LC_MESSAGES/plasma_runner_calculatorrunner.mo +share/locale/hi/LC_MESSAGES/plasma_runner_kill.mo +share/locale/hi/LC_MESSAGES/plasma_runner_locations.mo +share/locale/hi/LC_MESSAGES/plasma_runner_placesrunner.mo +share/locale/hi/LC_MESSAGES/plasma_runner_powerdevil.mo +share/locale/hi/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/hi/LC_MESSAGES/plasma_runner_services.mo +share/locale/hi/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/hi/LC_MESSAGES/plasma_runner_shell.mo +share/locale/hi/LC_MESSAGES/plasma_runner_solid.mo +share/locale/hi/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/hi/LC_MESSAGES/plasma_runner_windows.mo +share/locale/hi/LC_MESSAGES/soliduiserver5.mo +share/locale/hne/LC_MESSAGES/kcminit.mo +share/locale/hne/LC_MESSAGES/kio5_applications.mo +share/locale/hne/LC_MESSAGES/ksmserver.mo +share/locale/hne/LC_MESSAGES/kuiserver5.mo +share/locale/hne/LC_MESSAGES/libkworkspace.mo +share/locale/hne/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/hne/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo +share/locale/hne/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo +share/locale/hne/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo +share/locale/hne/LC_MESSAGES/plasma_runner_locations.mo +share/locale/hne/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/hne/LC_MESSAGES/plasma_runner_shell.mo +share/locale/hne/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/hne/LC_MESSAGES/soliduiserver5.mo +share/locale/hr/LC_MESSAGES/freespacenotifier.mo +share/locale/hr/LC_MESSAGES/kcminit.mo +share/locale/hr/LC_MESSAGES/kio5_applications.mo +share/locale/hr/LC_MESSAGES/klipper.mo +share/locale/hr/LC_MESSAGES/ksmserver.mo +share/locale/hr/LC_MESSAGES/kuiserver5.mo +share/locale/hr/LC_MESSAGES/libkworkspace.mo +share/locale/hr/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/hr/LC_MESSAGES/plasma_applet_org.kde.image.mo +share/locale/hr/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo +share/locale/hr/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo +share/locale/hr/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo +share/locale/hr/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo +share/locale/hr/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo +share/locale/hr/LC_MESSAGES/plasma_containmentactions_contextmenu.mo +share/locale/hr/LC_MESSAGES/plasma_containmentactions_switchwindow.mo +share/locale/hr/LC_MESSAGES/plasma_engine_applicationjobs.mo +share/locale/hr/LC_MESSAGES/plasma_engine_keystate.mo +share/locale/hr/LC_MESSAGES/plasma_engine_network.mo +share/locale/hr/LC_MESSAGES/plasma_engine_notifications.mo +share/locale/hr/LC_MESSAGES/plasma_engine_rss.mo +share/locale/hr/LC_MESSAGES/plasma_engine_share.mo +share/locale/hr/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/hr/LC_MESSAGES/plasma_engine_weather.mo +share/locale/hr/LC_MESSAGES/plasma_runner_bookmarksrunner.mo +share/locale/hr/LC_MESSAGES/plasma_runner_calculatorrunner.mo +share/locale/hr/LC_MESSAGES/plasma_runner_kill.mo +share/locale/hr/LC_MESSAGES/plasma_runner_locations.mo +share/locale/hr/LC_MESSAGES/plasma_runner_placesrunner.mo +share/locale/hr/LC_MESSAGES/plasma_runner_powerdevil.mo +share/locale/hr/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/hr/LC_MESSAGES/plasma_runner_services.mo +share/locale/hr/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/hr/LC_MESSAGES/plasma_runner_shell.mo +share/locale/hr/LC_MESSAGES/plasma_runner_solid.mo +share/locale/hr/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/hr/LC_MESSAGES/plasma_runner_windowedwidgets.mo +share/locale/hr/LC_MESSAGES/plasma_runner_windows.mo +share/locale/hr/LC_MESSAGES/soliduiserver5.mo +share/locale/hsb/LC_MESSAGES/kcminit.mo +share/locale/hsb/LC_MESSAGES/kio5_applications.mo +share/locale/hsb/LC_MESSAGES/klipper.mo +share/locale/hsb/LC_MESSAGES/ksmserver.mo +share/locale/hsb/LC_MESSAGES/kuiserver5.mo +share/locale/hsb/LC_MESSAGES/libkworkspace.mo +share/locale/hsb/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/hsb/LC_MESSAGES/plasma_applet_org.kde.image.mo +share/locale/hsb/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo +share/locale/hsb/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo +share/locale/hsb/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo +share/locale/hsb/LC_MESSAGES/plasma_engine_rss.mo +share/locale/hsb/LC_MESSAGES/plasma_runner_locations.mo +share/locale/hsb/LC_MESSAGES/plasma_runner_powerdevil.mo +share/locale/hsb/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/hsb/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/hsb/LC_MESSAGES/plasma_runner_shell.mo +share/locale/hsb/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/hsb/LC_MESSAGES/soliduiserver5.mo +share/locale/hu/LC_MESSAGES/freespacenotifier.mo +share/locale/hu/LC_MESSAGES/kcminit.mo +share/locale/hu/LC_MESSAGES/kholidays_calendar_plugin.mo +share/locale/hu/LC_MESSAGES/kio5_applications.mo +share/locale/hu/LC_MESSAGES/kio_desktop.mo +share/locale/hu/LC_MESSAGES/klipper.mo +share/locale/hu/LC_MESSAGES/krunner.mo +share/locale/hu/LC_MESSAGES/ksmserver.mo +share/locale/hu/LC_MESSAGES/kuiserver5.mo +share/locale/hu/LC_MESSAGES/libkworkspace.mo +share/locale/hu/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.color.mo +share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.image.mo +share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo +share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo +share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo +share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo +share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo +share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo +share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo +share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo +share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo +share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo +share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo +share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.cpu.mo +share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskactivity.mo +share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskusage.mo +share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.memory.mo +share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.net.mo +share/locale/hu/LC_MESSAGES/plasma_containmentactions_contextmenu.mo +share/locale/hu/LC_MESSAGES/plasma_containmentactions_switchwindow.mo +share/locale/hu/LC_MESSAGES/plasma_engine_applicationjobs.mo +share/locale/hu/LC_MESSAGES/plasma_engine_devicenotifications.mo +share/locale/hu/LC_MESSAGES/plasma_engine_keystate.mo +share/locale/hu/LC_MESSAGES/plasma_engine_mpris2.mo +share/locale/hu/LC_MESSAGES/plasma_engine_network.mo +share/locale/hu/LC_MESSAGES/plasma_engine_notifications.mo +share/locale/hu/LC_MESSAGES/plasma_engine_powermanagement.mo +share/locale/hu/LC_MESSAGES/plasma_engine_rss.mo +share/locale/hu/LC_MESSAGES/plasma_engine_share.mo +share/locale/hu/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/hu/LC_MESSAGES/plasma_engine_time.mo +share/locale/hu/LC_MESSAGES/plasma_engine_weather.mo +share/locale/hu/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo +share/locale/hu/LC_MESSAGES/plasma_package_plasmashell.mo +share/locale/hu/LC_MESSAGES/plasma_runner_activities.mo +share/locale/hu/LC_MESSAGES/plasma_runner_baloosearch5.mo +share/locale/hu/LC_MESSAGES/plasma_runner_bookmarksrunner.mo +share/locale/hu/LC_MESSAGES/plasma_runner_calculatorrunner.mo +share/locale/hu/LC_MESSAGES/plasma_runner_kill.mo +share/locale/hu/LC_MESSAGES/plasma_runner_locations.mo +share/locale/hu/LC_MESSAGES/plasma_runner_placesrunner.mo +share/locale/hu/LC_MESSAGES/plasma_runner_powerdevil.mo +share/locale/hu/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/hu/LC_MESSAGES/plasma_runner_services.mo +share/locale/hu/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/hu/LC_MESSAGES/plasma_runner_shell.mo +share/locale/hu/LC_MESSAGES/plasma_runner_solid.mo +share/locale/hu/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/hu/LC_MESSAGES/plasma_runner_windowedwidgets.mo +share/locale/hu/LC_MESSAGES/plasma_runner_windows.mo +share/locale/hu/LC_MESSAGES/plasmashell.mo +share/locale/hu/LC_MESSAGES/plasmashellprivateplugin.mo +share/locale/hu/LC_MESSAGES/soliduiserver5.mo +share/locale/hu/LC_MESSAGES/systemmonitor.mo +share/locale/hy/LC_MESSAGES/kcminit.mo +share/locale/hy/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/hy/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo +share/locale/hy/LC_MESSAGES/plasma_runner_locations.mo +share/locale/ia/LC_MESSAGES/freespacenotifier.mo +share/locale/ia/LC_MESSAGES/kcminit.mo +share/locale/ia/LC_MESSAGES/kholidays_calendar_plugin.mo +share/locale/ia/LC_MESSAGES/kio5_applications.mo +share/locale/ia/LC_MESSAGES/klipper.mo +share/locale/ia/LC_MESSAGES/krunner.mo +share/locale/ia/LC_MESSAGES/ksmserver.mo +share/locale/ia/LC_MESSAGES/kuiserver5.mo +share/locale/ia/LC_MESSAGES/libkworkspace.mo +share/locale/ia/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.color.mo +share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.image.mo +share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo +share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo +share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo +share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo +share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo +share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo +share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo +share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo +share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo +share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo +share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo +share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo +share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo +share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.cpu.mo +share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskactivity.mo +share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskusage.mo +share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.memory.mo +share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.net.mo +share/locale/ia/LC_MESSAGES/plasma_containmentactions_contextmenu.mo +share/locale/ia/LC_MESSAGES/plasma_containmentactions_switchwindow.mo +share/locale/ia/LC_MESSAGES/plasma_engine_applicationjobs.mo +share/locale/ia/LC_MESSAGES/plasma_engine_devicenotifications.mo +share/locale/ia/LC_MESSAGES/plasma_engine_keystate.mo +share/locale/ia/LC_MESSAGES/plasma_engine_mpris2.mo +share/locale/ia/LC_MESSAGES/plasma_engine_network.mo +share/locale/ia/LC_MESSAGES/plasma_engine_notifications.mo +share/locale/ia/LC_MESSAGES/plasma_engine_powermanagement.mo +share/locale/ia/LC_MESSAGES/plasma_engine_rss.mo +share/locale/ia/LC_MESSAGES/plasma_engine_share.mo +share/locale/ia/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/ia/LC_MESSAGES/plasma_engine_time.mo +share/locale/ia/LC_MESSAGES/plasma_engine_weather.mo +share/locale/ia/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo +share/locale/ia/LC_MESSAGES/plasma_package_plasmashell.mo +share/locale/ia/LC_MESSAGES/plasma_runner_activities.mo +share/locale/ia/LC_MESSAGES/plasma_runner_baloosearch5.mo +share/locale/ia/LC_MESSAGES/plasma_runner_bookmarksrunner.mo +share/locale/ia/LC_MESSAGES/plasma_runner_calculatorrunner.mo +share/locale/ia/LC_MESSAGES/plasma_runner_kill.mo +share/locale/ia/LC_MESSAGES/plasma_runner_locations.mo +share/locale/ia/LC_MESSAGES/plasma_runner_placesrunner.mo +share/locale/ia/LC_MESSAGES/plasma_runner_powerdevil.mo +share/locale/ia/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/ia/LC_MESSAGES/plasma_runner_services.mo +share/locale/ia/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/ia/LC_MESSAGES/plasma_runner_shell.mo +share/locale/ia/LC_MESSAGES/plasma_runner_solid.mo +share/locale/ia/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/ia/LC_MESSAGES/plasma_runner_windowedwidgets.mo +share/locale/ia/LC_MESSAGES/plasma_runner_windows.mo +share/locale/ia/LC_MESSAGES/plasmashell.mo +share/locale/ia/LC_MESSAGES/plasmashellprivateplugin.mo +share/locale/ia/LC_MESSAGES/soliduiserver5.mo +share/locale/ia/LC_MESSAGES/systemmonitor.mo +share/locale/id/LC_MESSAGES/freespacenotifier.mo +share/locale/id/LC_MESSAGES/kcminit.mo +share/locale/id/LC_MESSAGES/kio5_applications.mo +share/locale/id/LC_MESSAGES/klipper.mo +share/locale/id/LC_MESSAGES/ksmserver.mo +share/locale/id/LC_MESSAGES/kuiserver5.mo +share/locale/id/LC_MESSAGES/libkworkspace.mo +share/locale/id/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/id/LC_MESSAGES/plasma_applet_org.kde.image.mo +share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo +share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo +share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo +share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo +share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo +share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo +share/locale/id/LC_MESSAGES/plasma_containmentactions_contextmenu.mo +share/locale/id/LC_MESSAGES/plasma_containmentactions_switchwindow.mo +share/locale/id/LC_MESSAGES/plasma_engine_applicationjobs.mo +share/locale/id/LC_MESSAGES/plasma_engine_devicenotifications.mo +share/locale/id/LC_MESSAGES/plasma_engine_keystate.mo +share/locale/id/LC_MESSAGES/plasma_engine_network.mo +share/locale/id/LC_MESSAGES/plasma_engine_notifications.mo +share/locale/id/LC_MESSAGES/plasma_engine_rss.mo +share/locale/id/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/id/LC_MESSAGES/plasma_engine_weather.mo +share/locale/id/LC_MESSAGES/plasma_runner_bookmarksrunner.mo +share/locale/id/LC_MESSAGES/plasma_runner_calculatorrunner.mo +share/locale/id/LC_MESSAGES/plasma_runner_kill.mo +share/locale/id/LC_MESSAGES/plasma_runner_locations.mo +share/locale/id/LC_MESSAGES/plasma_runner_placesrunner.mo +share/locale/id/LC_MESSAGES/plasma_runner_powerdevil.mo +share/locale/id/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/id/LC_MESSAGES/plasma_runner_services.mo +share/locale/id/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/id/LC_MESSAGES/plasma_runner_shell.mo +share/locale/id/LC_MESSAGES/plasma_runner_solid.mo +share/locale/id/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/id/LC_MESSAGES/plasma_runner_windowedwidgets.mo +share/locale/id/LC_MESSAGES/plasma_runner_windows.mo +share/locale/id/LC_MESSAGES/soliduiserver5.mo +share/locale/is/LC_MESSAGES/freespacenotifier.mo +share/locale/is/LC_MESSAGES/kcminit.mo +share/locale/is/LC_MESSAGES/kio5_applications.mo +share/locale/is/LC_MESSAGES/klipper.mo +share/locale/is/LC_MESSAGES/ksmserver.mo +share/locale/is/LC_MESSAGES/kuiserver5.mo +share/locale/is/LC_MESSAGES/libkworkspace.mo +share/locale/is/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/is/LC_MESSAGES/plasma_applet_org.kde.image.mo +share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo +share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo +share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo +share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo +share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo +share/locale/is/LC_MESSAGES/plasma_containmentactions_contextmenu.mo +share/locale/is/LC_MESSAGES/plasma_containmentactions_switchwindow.mo +share/locale/is/LC_MESSAGES/plasma_engine_applicationjobs.mo +share/locale/is/LC_MESSAGES/plasma_engine_network.mo +share/locale/is/LC_MESSAGES/plasma_engine_notifications.mo +share/locale/is/LC_MESSAGES/plasma_engine_rss.mo +share/locale/is/LC_MESSAGES/plasma_engine_share.mo +share/locale/is/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/is/LC_MESSAGES/plasma_engine_weather.mo +share/locale/is/LC_MESSAGES/plasma_runner_bookmarksrunner.mo +share/locale/is/LC_MESSAGES/plasma_runner_calculatorrunner.mo +share/locale/is/LC_MESSAGES/plasma_runner_kill.mo +share/locale/is/LC_MESSAGES/plasma_runner_locations.mo +share/locale/is/LC_MESSAGES/plasma_runner_placesrunner.mo +share/locale/is/LC_MESSAGES/plasma_runner_powerdevil.mo +share/locale/is/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/is/LC_MESSAGES/plasma_runner_services.mo +share/locale/is/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/is/LC_MESSAGES/plasma_runner_shell.mo +share/locale/is/LC_MESSAGES/plasma_runner_solid.mo +share/locale/is/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/is/LC_MESSAGES/plasma_runner_windows.mo +share/locale/is/LC_MESSAGES/soliduiserver5.mo +share/locale/it/LC_MESSAGES/freespacenotifier.mo +share/locale/it/LC_MESSAGES/kcminit.mo +share/locale/it/LC_MESSAGES/kholidays_calendar_plugin.mo +share/locale/it/LC_MESSAGES/kio5_applications.mo +share/locale/it/LC_MESSAGES/kio_desktop.mo +share/locale/it/LC_MESSAGES/klipper.mo +share/locale/it/LC_MESSAGES/krunner.mo +share/locale/it/LC_MESSAGES/ksmserver.mo +share/locale/it/LC_MESSAGES/kuiserver5.mo +share/locale/it/LC_MESSAGES/libkworkspace.mo +share/locale/it/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/it/LC_MESSAGES/plasma_applet_org.kde.color.mo +share/locale/it/LC_MESSAGES/plasma_applet_org.kde.image.mo +share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo +share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo +share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo +share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo +share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo +share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo +share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo +share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo +share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo +share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo +share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo +share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo +share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo +share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.cpu.mo +share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskactivity.mo +share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskusage.mo +share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.memory.mo +share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.net.mo +share/locale/it/LC_MESSAGES/plasma_containmentactions_applauncher.mo +share/locale/it/LC_MESSAGES/plasma_containmentactions_contextmenu.mo +share/locale/it/LC_MESSAGES/plasma_containmentactions_switchwindow.mo +share/locale/it/LC_MESSAGES/plasma_engine_applicationjobs.mo +share/locale/it/LC_MESSAGES/plasma_engine_devicenotifications.mo +share/locale/it/LC_MESSAGES/plasma_engine_dict.mo +share/locale/it/LC_MESSAGES/plasma_engine_keystate.mo +share/locale/it/LC_MESSAGES/plasma_engine_mpris2.mo +share/locale/it/LC_MESSAGES/plasma_engine_network.mo +share/locale/it/LC_MESSAGES/plasma_engine_notifications.mo +share/locale/it/LC_MESSAGES/plasma_engine_powermanagement.mo +share/locale/it/LC_MESSAGES/plasma_engine_rss.mo +share/locale/it/LC_MESSAGES/plasma_engine_share.mo +share/locale/it/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/it/LC_MESSAGES/plasma_engine_time.mo +share/locale/it/LC_MESSAGES/plasma_engine_weather.mo +share/locale/it/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo +share/locale/it/LC_MESSAGES/plasma_package_plasmashell.mo +share/locale/it/LC_MESSAGES/plasma_runner_activities.mo +share/locale/it/LC_MESSAGES/plasma_runner_baloosearch5.mo +share/locale/it/LC_MESSAGES/plasma_runner_bookmarksrunner.mo +share/locale/it/LC_MESSAGES/plasma_runner_calculatorrunner.mo +share/locale/it/LC_MESSAGES/plasma_runner_kill.mo +share/locale/it/LC_MESSAGES/plasma_runner_locations.mo +share/locale/it/LC_MESSAGES/plasma_runner_placesrunner.mo +share/locale/it/LC_MESSAGES/plasma_runner_powerdevil.mo +share/locale/it/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/it/LC_MESSAGES/plasma_runner_services.mo +share/locale/it/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/it/LC_MESSAGES/plasma_runner_shell.mo +share/locale/it/LC_MESSAGES/plasma_runner_solid.mo +share/locale/it/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/it/LC_MESSAGES/plasma_runner_windowedwidgets.mo +share/locale/it/LC_MESSAGES/plasma_runner_windows.mo +share/locale/it/LC_MESSAGES/plasmashell.mo +share/locale/it/LC_MESSAGES/plasmashellprivateplugin.mo +share/locale/it/LC_MESSAGES/soliduiserver5.mo +share/locale/it/LC_MESSAGES/systemmonitor.mo +share/locale/ja/LC_MESSAGES/freespacenotifier.mo +share/locale/ja/LC_MESSAGES/kcminit.mo +share/locale/ja/LC_MESSAGES/kholidays_calendar_plugin.mo +share/locale/ja/LC_MESSAGES/kio5_applications.mo +share/locale/ja/LC_MESSAGES/kio_desktop.mo +share/locale/ja/LC_MESSAGES/klipper.mo +share/locale/ja/LC_MESSAGES/krunner.mo +share/locale/ja/LC_MESSAGES/ksmserver.mo +share/locale/ja/LC_MESSAGES/kuiserver5.mo +share/locale/ja/LC_MESSAGES/libkworkspace.mo +share/locale/ja/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.color.mo +share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.image.mo +share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo +share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo +share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo +share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo +share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo +share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo +share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo +share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo +share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo +share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo +share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo +share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo +share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo +share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.cpu.mo +share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskactivity.mo +share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskusage.mo +share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.memory.mo +share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.net.mo +share/locale/ja/LC_MESSAGES/plasma_containmentactions_applauncher.mo +share/locale/ja/LC_MESSAGES/plasma_containmentactions_contextmenu.mo +share/locale/ja/LC_MESSAGES/plasma_containmentactions_switchwindow.mo +share/locale/ja/LC_MESSAGES/plasma_engine_applicationjobs.mo +share/locale/ja/LC_MESSAGES/plasma_engine_devicenotifications.mo +share/locale/ja/LC_MESSAGES/plasma_engine_dict.mo +share/locale/ja/LC_MESSAGES/plasma_engine_keystate.mo +share/locale/ja/LC_MESSAGES/plasma_engine_mpris2.mo +share/locale/ja/LC_MESSAGES/plasma_engine_network.mo +share/locale/ja/LC_MESSAGES/plasma_engine_notifications.mo +share/locale/ja/LC_MESSAGES/plasma_engine_powermanagement.mo +share/locale/ja/LC_MESSAGES/plasma_engine_rss.mo +share/locale/ja/LC_MESSAGES/plasma_engine_share.mo +share/locale/ja/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/ja/LC_MESSAGES/plasma_engine_time.mo +share/locale/ja/LC_MESSAGES/plasma_engine_weather.mo +share/locale/ja/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo +share/locale/ja/LC_MESSAGES/plasma_package_plasmashell.mo +share/locale/ja/LC_MESSAGES/plasma_runner_activities.mo +share/locale/ja/LC_MESSAGES/plasma_runner_appstream.mo +share/locale/ja/LC_MESSAGES/plasma_runner_baloosearch5.mo +share/locale/ja/LC_MESSAGES/plasma_runner_bookmarksrunner.mo +share/locale/ja/LC_MESSAGES/plasma_runner_calculatorrunner.mo +share/locale/ja/LC_MESSAGES/plasma_runner_kill.mo +share/locale/ja/LC_MESSAGES/plasma_runner_locations.mo +share/locale/ja/LC_MESSAGES/plasma_runner_placesrunner.mo +share/locale/ja/LC_MESSAGES/plasma_runner_powerdevil.mo +share/locale/ja/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/ja/LC_MESSAGES/plasma_runner_services.mo +share/locale/ja/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/ja/LC_MESSAGES/plasma_runner_shell.mo +share/locale/ja/LC_MESSAGES/plasma_runner_solid.mo +share/locale/ja/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/ja/LC_MESSAGES/plasma_runner_windowedwidgets.mo +share/locale/ja/LC_MESSAGES/plasma_runner_windows.mo +share/locale/ja/LC_MESSAGES/plasmashell.mo +share/locale/ja/LC_MESSAGES/plasmashellprivateplugin.mo +share/locale/ja/LC_MESSAGES/soliduiserver5.mo +share/locale/ja/LC_MESSAGES/systemmonitor.mo +share/locale/kk/LC_MESSAGES/freespacenotifier.mo +share/locale/kk/LC_MESSAGES/kcminit.mo +share/locale/kk/LC_MESSAGES/kio5_applications.mo +share/locale/kk/LC_MESSAGES/klipper.mo +share/locale/kk/LC_MESSAGES/ksmserver.mo +share/locale/kk/LC_MESSAGES/kuiserver5.mo +share/locale/kk/LC_MESSAGES/libkworkspace.mo +share/locale/kk/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.image.mo +share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo +share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo +share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo +share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo +share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo +share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo +share/locale/kk/LC_MESSAGES/plasma_containmentactions_contextmenu.mo +share/locale/kk/LC_MESSAGES/plasma_containmentactions_switchwindow.mo +share/locale/kk/LC_MESSAGES/plasma_engine_applicationjobs.mo +share/locale/kk/LC_MESSAGES/plasma_engine_keystate.mo +share/locale/kk/LC_MESSAGES/plasma_engine_mpris2.mo +share/locale/kk/LC_MESSAGES/plasma_engine_network.mo +share/locale/kk/LC_MESSAGES/plasma_engine_notifications.mo +share/locale/kk/LC_MESSAGES/plasma_engine_rss.mo +share/locale/kk/LC_MESSAGES/plasma_engine_share.mo +share/locale/kk/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/kk/LC_MESSAGES/plasma_engine_weather.mo +share/locale/kk/LC_MESSAGES/plasma_runner_activities.mo +share/locale/kk/LC_MESSAGES/plasma_runner_bookmarksrunner.mo +share/locale/kk/LC_MESSAGES/plasma_runner_calculatorrunner.mo +share/locale/kk/LC_MESSAGES/plasma_runner_kill.mo +share/locale/kk/LC_MESSAGES/plasma_runner_locations.mo +share/locale/kk/LC_MESSAGES/plasma_runner_placesrunner.mo +share/locale/kk/LC_MESSAGES/plasma_runner_powerdevil.mo +share/locale/kk/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/kk/LC_MESSAGES/plasma_runner_services.mo +share/locale/kk/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/kk/LC_MESSAGES/plasma_runner_shell.mo +share/locale/kk/LC_MESSAGES/plasma_runner_solid.mo +share/locale/kk/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/kk/LC_MESSAGES/plasma_runner_windowedwidgets.mo +share/locale/kk/LC_MESSAGES/plasma_runner_windows.mo +share/locale/kk/LC_MESSAGES/soliduiserver5.mo +share/locale/km/LC_MESSAGES/freespacenotifier.mo +share/locale/km/LC_MESSAGES/kcminit.mo +share/locale/km/LC_MESSAGES/kio5_applications.mo +share/locale/km/LC_MESSAGES/klipper.mo +share/locale/km/LC_MESSAGES/ksmserver.mo +share/locale/km/LC_MESSAGES/kuiserver5.mo +share/locale/km/LC_MESSAGES/libkworkspace.mo +share/locale/km/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/km/LC_MESSAGES/plasma_applet_org.kde.image.mo +share/locale/km/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo +share/locale/km/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo +share/locale/km/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo +share/locale/km/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo +share/locale/km/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo +share/locale/km/LC_MESSAGES/plasma_containmentactions_contextmenu.mo +share/locale/km/LC_MESSAGES/plasma_containmentactions_switchwindow.mo +share/locale/km/LC_MESSAGES/plasma_engine_applicationjobs.mo +share/locale/km/LC_MESSAGES/plasma_engine_keystate.mo +share/locale/km/LC_MESSAGES/plasma_engine_mpris2.mo +share/locale/km/LC_MESSAGES/plasma_engine_network.mo +share/locale/km/LC_MESSAGES/plasma_engine_notifications.mo +share/locale/km/LC_MESSAGES/plasma_engine_rss.mo +share/locale/km/LC_MESSAGES/plasma_engine_share.mo +share/locale/km/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/km/LC_MESSAGES/plasma_engine_weather.mo +share/locale/km/LC_MESSAGES/plasma_runner_activities.mo +share/locale/km/LC_MESSAGES/plasma_runner_bookmarksrunner.mo +share/locale/km/LC_MESSAGES/plasma_runner_calculatorrunner.mo +share/locale/km/LC_MESSAGES/plasma_runner_kill.mo +share/locale/km/LC_MESSAGES/plasma_runner_locations.mo +share/locale/km/LC_MESSAGES/plasma_runner_placesrunner.mo +share/locale/km/LC_MESSAGES/plasma_runner_powerdevil.mo +share/locale/km/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/km/LC_MESSAGES/plasma_runner_services.mo +share/locale/km/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/km/LC_MESSAGES/plasma_runner_shell.mo +share/locale/km/LC_MESSAGES/plasma_runner_solid.mo +share/locale/km/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/km/LC_MESSAGES/plasma_runner_windowedwidgets.mo +share/locale/km/LC_MESSAGES/plasma_runner_windows.mo +share/locale/km/LC_MESSAGES/soliduiserver5.mo +share/locale/kn/LC_MESSAGES/freespacenotifier.mo +share/locale/kn/LC_MESSAGES/kcminit.mo +share/locale/kn/LC_MESSAGES/kio5_applications.mo +share/locale/kn/LC_MESSAGES/klipper.mo +share/locale/kn/LC_MESSAGES/ksmserver.mo +share/locale/kn/LC_MESSAGES/kuiserver5.mo +share/locale/kn/LC_MESSAGES/libkworkspace.mo +share/locale/kn/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/kn/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo +share/locale/kn/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo +share/locale/kn/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo +share/locale/kn/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo +share/locale/kn/LC_MESSAGES/plasma_containmentactions_contextmenu.mo +share/locale/kn/LC_MESSAGES/plasma_containmentactions_switchwindow.mo +share/locale/kn/LC_MESSAGES/plasma_engine_applicationjobs.mo +share/locale/kn/LC_MESSAGES/plasma_engine_keystate.mo +share/locale/kn/LC_MESSAGES/plasma_engine_network.mo +share/locale/kn/LC_MESSAGES/plasma_engine_notifications.mo +share/locale/kn/LC_MESSAGES/plasma_engine_rss.mo +share/locale/kn/LC_MESSAGES/plasma_engine_weather.mo +share/locale/kn/LC_MESSAGES/plasma_runner_bookmarksrunner.mo +share/locale/kn/LC_MESSAGES/plasma_runner_calculatorrunner.mo +share/locale/kn/LC_MESSAGES/plasma_runner_kill.mo +share/locale/kn/LC_MESSAGES/plasma_runner_locations.mo +share/locale/kn/LC_MESSAGES/plasma_runner_placesrunner.mo +share/locale/kn/LC_MESSAGES/plasma_runner_powerdevil.mo +share/locale/kn/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/kn/LC_MESSAGES/plasma_runner_services.mo +share/locale/kn/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/kn/LC_MESSAGES/plasma_runner_shell.mo +share/locale/kn/LC_MESSAGES/plasma_runner_solid.mo +share/locale/kn/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/kn/LC_MESSAGES/plasma_runner_windows.mo +share/locale/kn/LC_MESSAGES/soliduiserver5.mo +share/locale/ko/LC_MESSAGES/freespacenotifier.mo +share/locale/ko/LC_MESSAGES/kcminit.mo +share/locale/ko/LC_MESSAGES/kholidays_calendar_plugin.mo +share/locale/ko/LC_MESSAGES/kio5_applications.mo +share/locale/ko/LC_MESSAGES/kio_desktop.mo +share/locale/ko/LC_MESSAGES/klipper.mo +share/locale/ko/LC_MESSAGES/krunner.mo +share/locale/ko/LC_MESSAGES/ksmserver.mo +share/locale/ko/LC_MESSAGES/kuiserver5.mo +share/locale/ko/LC_MESSAGES/libkworkspace.mo +share/locale/ko/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.color.mo +share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.image.mo +share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo +share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo +share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo +share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo +share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo +share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo +share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo +share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo +share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo +share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo +share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo +share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo +share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo +share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.cpu.mo +share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskactivity.mo +share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskusage.mo +share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.memory.mo +share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.net.mo +share/locale/ko/LC_MESSAGES/plasma_containmentactions_applauncher.mo +share/locale/ko/LC_MESSAGES/plasma_containmentactions_contextmenu.mo +share/locale/ko/LC_MESSAGES/plasma_containmentactions_switchwindow.mo +share/locale/ko/LC_MESSAGES/plasma_engine_applicationjobs.mo +share/locale/ko/LC_MESSAGES/plasma_engine_devicenotifications.mo +share/locale/ko/LC_MESSAGES/plasma_engine_dict.mo +share/locale/ko/LC_MESSAGES/plasma_engine_keystate.mo +share/locale/ko/LC_MESSAGES/plasma_engine_mpris2.mo +share/locale/ko/LC_MESSAGES/plasma_engine_network.mo +share/locale/ko/LC_MESSAGES/plasma_engine_notifications.mo +share/locale/ko/LC_MESSAGES/plasma_engine_powermanagement.mo +share/locale/ko/LC_MESSAGES/plasma_engine_rss.mo +share/locale/ko/LC_MESSAGES/plasma_engine_share.mo +share/locale/ko/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/ko/LC_MESSAGES/plasma_engine_time.mo +share/locale/ko/LC_MESSAGES/plasma_engine_weather.mo +share/locale/ko/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo +share/locale/ko/LC_MESSAGES/plasma_package_plasmashell.mo +share/locale/ko/LC_MESSAGES/plasma_runner_activities.mo +share/locale/ko/LC_MESSAGES/plasma_runner_baloosearch5.mo +share/locale/ko/LC_MESSAGES/plasma_runner_bookmarksrunner.mo +share/locale/ko/LC_MESSAGES/plasma_runner_calculatorrunner.mo +share/locale/ko/LC_MESSAGES/plasma_runner_kill.mo +share/locale/ko/LC_MESSAGES/plasma_runner_locations.mo +share/locale/ko/LC_MESSAGES/plasma_runner_placesrunner.mo +share/locale/ko/LC_MESSAGES/plasma_runner_powerdevil.mo +share/locale/ko/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/ko/LC_MESSAGES/plasma_runner_services.mo +share/locale/ko/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/ko/LC_MESSAGES/plasma_runner_shell.mo +share/locale/ko/LC_MESSAGES/plasma_runner_solid.mo +share/locale/ko/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/ko/LC_MESSAGES/plasma_runner_windowedwidgets.mo +share/locale/ko/LC_MESSAGES/plasma_runner_windows.mo +share/locale/ko/LC_MESSAGES/plasmashell.mo +share/locale/ko/LC_MESSAGES/plasmashellprivateplugin.mo +share/locale/ko/LC_MESSAGES/soliduiserver5.mo +share/locale/ko/LC_MESSAGES/systemmonitor.mo +share/locale/ku/LC_MESSAGES/kcminit.mo +share/locale/ku/LC_MESSAGES/kio5_applications.mo +share/locale/ku/LC_MESSAGES/klipper.mo +share/locale/ku/LC_MESSAGES/ksmserver.mo +share/locale/ku/LC_MESSAGES/kuiserver5.mo +share/locale/ku/LC_MESSAGES/libkworkspace.mo +share/locale/ku/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/ku/LC_MESSAGES/plasma_applet_org.kde.image.mo +share/locale/ku/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo +share/locale/ku/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo +share/locale/ku/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo +share/locale/ku/LC_MESSAGES/plasma_engine_applicationjobs.mo +share/locale/ku/LC_MESSAGES/plasma_engine_rss.mo +share/locale/ku/LC_MESSAGES/plasma_runner_locations.mo +share/locale/ku/LC_MESSAGES/plasma_runner_powerdevil.mo +share/locale/ku/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/ku/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/ku/LC_MESSAGES/plasma_runner_shell.mo +share/locale/ku/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/ku/LC_MESSAGES/soliduiserver5.mo +share/locale/lb/LC_MESSAGES/kio5_applications.mo +share/locale/lt/LC_MESSAGES/freespacenotifier.mo +share/locale/lt/LC_MESSAGES/kcminit.mo +share/locale/lt/LC_MESSAGES/kio5_applications.mo +share/locale/lt/LC_MESSAGES/klipper.mo +share/locale/lt/LC_MESSAGES/krunner.mo +share/locale/lt/LC_MESSAGES/ksmserver.mo +share/locale/lt/LC_MESSAGES/kuiserver5.mo +share/locale/lt/LC_MESSAGES/libkworkspace.mo +share/locale/lt/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.color.mo +share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.image.mo +share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo +share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo +share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo +share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo +share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo +share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo +share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo +share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo +share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo +share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo +share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo +share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.cpu.mo +share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskactivity.mo +share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskusage.mo +share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.memory.mo +share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.net.mo +share/locale/lt/LC_MESSAGES/plasma_containmentactions_contextmenu.mo +share/locale/lt/LC_MESSAGES/plasma_containmentactions_switchwindow.mo +share/locale/lt/LC_MESSAGES/plasma_engine_applicationjobs.mo +share/locale/lt/LC_MESSAGES/plasma_engine_devicenotifications.mo +share/locale/lt/LC_MESSAGES/plasma_engine_keystate.mo +share/locale/lt/LC_MESSAGES/plasma_engine_mpris2.mo +share/locale/lt/LC_MESSAGES/plasma_engine_network.mo +share/locale/lt/LC_MESSAGES/plasma_engine_notifications.mo +share/locale/lt/LC_MESSAGES/plasma_engine_powermanagement.mo +share/locale/lt/LC_MESSAGES/plasma_engine_rss.mo +share/locale/lt/LC_MESSAGES/plasma_engine_share.mo +share/locale/lt/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/lt/LC_MESSAGES/plasma_engine_time.mo +share/locale/lt/LC_MESSAGES/plasma_engine_weather.mo +share/locale/lt/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo +share/locale/lt/LC_MESSAGES/plasma_package_plasmashell.mo +share/locale/lt/LC_MESSAGES/plasma_runner_activities.mo +share/locale/lt/LC_MESSAGES/plasma_runner_baloosearch5.mo +share/locale/lt/LC_MESSAGES/plasma_runner_bookmarksrunner.mo +share/locale/lt/LC_MESSAGES/plasma_runner_calculatorrunner.mo +share/locale/lt/LC_MESSAGES/plasma_runner_kill.mo +share/locale/lt/LC_MESSAGES/plasma_runner_locations.mo +share/locale/lt/LC_MESSAGES/plasma_runner_placesrunner.mo +share/locale/lt/LC_MESSAGES/plasma_runner_powerdevil.mo +share/locale/lt/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/lt/LC_MESSAGES/plasma_runner_services.mo +share/locale/lt/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/lt/LC_MESSAGES/plasma_runner_shell.mo +share/locale/lt/LC_MESSAGES/plasma_runner_solid.mo +share/locale/lt/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/lt/LC_MESSAGES/plasma_runner_windowedwidgets.mo +share/locale/lt/LC_MESSAGES/plasma_runner_windows.mo +share/locale/lt/LC_MESSAGES/plasmashell.mo +share/locale/lt/LC_MESSAGES/plasmashellprivateplugin.mo +share/locale/lt/LC_MESSAGES/soliduiserver5.mo +share/locale/lt/LC_MESSAGES/systemmonitor.mo +share/locale/lv/LC_MESSAGES/freespacenotifier.mo +share/locale/lv/LC_MESSAGES/kcminit.mo +share/locale/lv/LC_MESSAGES/kio5_applications.mo +share/locale/lv/LC_MESSAGES/klipper.mo +share/locale/lv/LC_MESSAGES/ksmserver.mo +share/locale/lv/LC_MESSAGES/kuiserver5.mo +share/locale/lv/LC_MESSAGES/libkworkspace.mo +share/locale/lv/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.image.mo +share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo +share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo +share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo +share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo +share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo +share/locale/lv/LC_MESSAGES/plasma_containmentactions_contextmenu.mo +share/locale/lv/LC_MESSAGES/plasma_containmentactions_switchwindow.mo +share/locale/lv/LC_MESSAGES/plasma_engine_applicationjobs.mo +share/locale/lv/LC_MESSAGES/plasma_engine_keystate.mo +share/locale/lv/LC_MESSAGES/plasma_engine_network.mo +share/locale/lv/LC_MESSAGES/plasma_engine_notifications.mo +share/locale/lv/LC_MESSAGES/plasma_engine_rss.mo +share/locale/lv/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/lv/LC_MESSAGES/plasma_engine_weather.mo +share/locale/lv/LC_MESSAGES/plasma_runner_bookmarksrunner.mo +share/locale/lv/LC_MESSAGES/plasma_runner_calculatorrunner.mo +share/locale/lv/LC_MESSAGES/plasma_runner_kill.mo +share/locale/lv/LC_MESSAGES/plasma_runner_locations.mo +share/locale/lv/LC_MESSAGES/plasma_runner_placesrunner.mo +share/locale/lv/LC_MESSAGES/plasma_runner_powerdevil.mo +share/locale/lv/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/lv/LC_MESSAGES/plasma_runner_services.mo +share/locale/lv/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/lv/LC_MESSAGES/plasma_runner_shell.mo +share/locale/lv/LC_MESSAGES/plasma_runner_solid.mo +share/locale/lv/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/lv/LC_MESSAGES/plasma_runner_windows.mo +share/locale/lv/LC_MESSAGES/soliduiserver5.mo +share/locale/mai/LC_MESSAGES/freespacenotifier.mo +share/locale/mai/LC_MESSAGES/kcminit.mo +share/locale/mai/LC_MESSAGES/kio5_applications.mo +share/locale/mai/LC_MESSAGES/klipper.mo +share/locale/mai/LC_MESSAGES/ksmserver.mo +share/locale/mai/LC_MESSAGES/kuiserver5.mo +share/locale/mai/LC_MESSAGES/libkworkspace.mo +share/locale/mai/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/mai/LC_MESSAGES/plasma_applet_org.kde.image.mo +share/locale/mai/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo +share/locale/mai/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo +share/locale/mai/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo +share/locale/mai/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo +share/locale/mai/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo +share/locale/mai/LC_MESSAGES/plasma_containmentactions_contextmenu.mo +share/locale/mai/LC_MESSAGES/plasma_containmentactions_switchwindow.mo +share/locale/mai/LC_MESSAGES/plasma_engine_applicationjobs.mo +share/locale/mai/LC_MESSAGES/plasma_engine_keystate.mo +share/locale/mai/LC_MESSAGES/plasma_engine_network.mo +share/locale/mai/LC_MESSAGES/plasma_engine_notifications.mo +share/locale/mai/LC_MESSAGES/plasma_engine_rss.mo +share/locale/mai/LC_MESSAGES/plasma_engine_share.mo +share/locale/mai/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/mai/LC_MESSAGES/plasma_engine_weather.mo +share/locale/mai/LC_MESSAGES/plasma_runner_bookmarksrunner.mo +share/locale/mai/LC_MESSAGES/plasma_runner_calculatorrunner.mo +share/locale/mai/LC_MESSAGES/plasma_runner_kill.mo +share/locale/mai/LC_MESSAGES/plasma_runner_locations.mo +share/locale/mai/LC_MESSAGES/plasma_runner_placesrunner.mo +share/locale/mai/LC_MESSAGES/plasma_runner_powerdevil.mo +share/locale/mai/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/mai/LC_MESSAGES/plasma_runner_services.mo +share/locale/mai/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/mai/LC_MESSAGES/plasma_runner_shell.mo +share/locale/mai/LC_MESSAGES/plasma_runner_solid.mo +share/locale/mai/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/mai/LC_MESSAGES/plasma_runner_windowedwidgets.mo +share/locale/mai/LC_MESSAGES/plasma_runner_windows.mo +share/locale/mai/LC_MESSAGES/soliduiserver5.mo +share/locale/mk/LC_MESSAGES/kcminit.mo +share/locale/mk/LC_MESSAGES/kio5_applications.mo +share/locale/mk/LC_MESSAGES/klipper.mo +share/locale/mk/LC_MESSAGES/ksmserver.mo +share/locale/mk/LC_MESSAGES/kuiserver5.mo +share/locale/mk/LC_MESSAGES/libkworkspace.mo +share/locale/mk/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/mk/LC_MESSAGES/plasma_applet_org.kde.image.mo +share/locale/mk/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo +share/locale/mk/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo +share/locale/mk/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo +share/locale/mk/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo +share/locale/mk/LC_MESSAGES/plasma_runner_locations.mo +share/locale/mk/LC_MESSAGES/plasma_runner_powerdevil.mo +share/locale/mk/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/mk/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/mk/LC_MESSAGES/plasma_runner_shell.mo +share/locale/mk/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/mk/LC_MESSAGES/soliduiserver5.mo +share/locale/ml/LC_MESSAGES/freespacenotifier.mo +share/locale/ml/LC_MESSAGES/kcminit.mo +share/locale/ml/LC_MESSAGES/kio5_applications.mo +share/locale/ml/LC_MESSAGES/klipper.mo +share/locale/ml/LC_MESSAGES/ksmserver.mo +share/locale/ml/LC_MESSAGES/kuiserver5.mo +share/locale/ml/LC_MESSAGES/libkworkspace.mo +share/locale/ml/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.image.mo +share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo +share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo +share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo +share/locale/ml/LC_MESSAGES/plasma_engine_applicationjobs.mo +share/locale/ml/LC_MESSAGES/plasma_engine_network.mo +share/locale/ml/LC_MESSAGES/plasma_engine_rss.mo +share/locale/ml/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/ml/LC_MESSAGES/plasma_engine_weather.mo +share/locale/ml/LC_MESSAGES/plasma_runner_kill.mo +share/locale/ml/LC_MESSAGES/plasma_runner_locations.mo +share/locale/ml/LC_MESSAGES/plasma_runner_powerdevil.mo +share/locale/ml/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/ml/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/ml/LC_MESSAGES/plasma_runner_shell.mo +share/locale/ml/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/ml/LC_MESSAGES/soliduiserver5.mo +share/locale/mr/LC_MESSAGES/freespacenotifier.mo +share/locale/mr/LC_MESSAGES/kcminit.mo +share/locale/mr/LC_MESSAGES/kio5_applications.mo +share/locale/mr/LC_MESSAGES/klipper.mo +share/locale/mr/LC_MESSAGES/ksmserver.mo +share/locale/mr/LC_MESSAGES/kuiserver5.mo +share/locale/mr/LC_MESSAGES/libkworkspace.mo +share/locale/mr/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.image.mo +share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo +share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo +share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo +share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo +share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo +share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo +share/locale/mr/LC_MESSAGES/plasma_containmentactions_contextmenu.mo +share/locale/mr/LC_MESSAGES/plasma_containmentactions_switchwindow.mo +share/locale/mr/LC_MESSAGES/plasma_engine_applicationjobs.mo +share/locale/mr/LC_MESSAGES/plasma_engine_keystate.mo +share/locale/mr/LC_MESSAGES/plasma_engine_mpris2.mo +share/locale/mr/LC_MESSAGES/plasma_engine_network.mo +share/locale/mr/LC_MESSAGES/plasma_engine_notifications.mo +share/locale/mr/LC_MESSAGES/plasma_engine_rss.mo +share/locale/mr/LC_MESSAGES/plasma_engine_share.mo +share/locale/mr/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/mr/LC_MESSAGES/plasma_engine_weather.mo +share/locale/mr/LC_MESSAGES/plasma_runner_activities.mo +share/locale/mr/LC_MESSAGES/plasma_runner_bookmarksrunner.mo +share/locale/mr/LC_MESSAGES/plasma_runner_calculatorrunner.mo +share/locale/mr/LC_MESSAGES/plasma_runner_kill.mo +share/locale/mr/LC_MESSAGES/plasma_runner_locations.mo +share/locale/mr/LC_MESSAGES/plasma_runner_placesrunner.mo +share/locale/mr/LC_MESSAGES/plasma_runner_powerdevil.mo +share/locale/mr/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/mr/LC_MESSAGES/plasma_runner_services.mo +share/locale/mr/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/mr/LC_MESSAGES/plasma_runner_shell.mo +share/locale/mr/LC_MESSAGES/plasma_runner_solid.mo +share/locale/mr/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/mr/LC_MESSAGES/plasma_runner_windowedwidgets.mo +share/locale/mr/LC_MESSAGES/plasma_runner_windows.mo +share/locale/mr/LC_MESSAGES/soliduiserver5.mo +share/locale/ms/LC_MESSAGES/freespacenotifier.mo +share/locale/ms/LC_MESSAGES/kcminit.mo +share/locale/ms/LC_MESSAGES/kio5_applications.mo +share/locale/ms/LC_MESSAGES/klipper.mo +share/locale/ms/LC_MESSAGES/ksmserver.mo +share/locale/ms/LC_MESSAGES/kuiserver5.mo +share/locale/ms/LC_MESSAGES/libkworkspace.mo +share/locale/ms/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/ms/LC_MESSAGES/plasma_applet_org.kde.image.mo +share/locale/ms/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo +share/locale/ms/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo +share/locale/ms/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo +share/locale/ms/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo +share/locale/ms/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo +share/locale/ms/LC_MESSAGES/plasma_containmentactions_contextmenu.mo +share/locale/ms/LC_MESSAGES/plasma_containmentactions_switchwindow.mo +share/locale/ms/LC_MESSAGES/plasma_engine_applicationjobs.mo +share/locale/ms/LC_MESSAGES/plasma_engine_keystate.mo +share/locale/ms/LC_MESSAGES/plasma_engine_network.mo +share/locale/ms/LC_MESSAGES/plasma_engine_notifications.mo +share/locale/ms/LC_MESSAGES/plasma_engine_rss.mo +share/locale/ms/LC_MESSAGES/plasma_engine_share.mo +share/locale/ms/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/ms/LC_MESSAGES/plasma_engine_weather.mo +share/locale/ms/LC_MESSAGES/plasma_runner_bookmarksrunner.mo +share/locale/ms/LC_MESSAGES/plasma_runner_calculatorrunner.mo +share/locale/ms/LC_MESSAGES/plasma_runner_kill.mo +share/locale/ms/LC_MESSAGES/plasma_runner_locations.mo +share/locale/ms/LC_MESSAGES/plasma_runner_placesrunner.mo +share/locale/ms/LC_MESSAGES/plasma_runner_powerdevil.mo +share/locale/ms/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/ms/LC_MESSAGES/plasma_runner_services.mo +share/locale/ms/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/ms/LC_MESSAGES/plasma_runner_shell.mo +share/locale/ms/LC_MESSAGES/plasma_runner_solid.mo +share/locale/ms/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/ms/LC_MESSAGES/plasma_runner_windowedwidgets.mo +share/locale/ms/LC_MESSAGES/plasma_runner_windows.mo +share/locale/ms/LC_MESSAGES/soliduiserver5.mo +share/locale/nb/LC_MESSAGES/freespacenotifier.mo +share/locale/nb/LC_MESSAGES/kcminit.mo +share/locale/nb/LC_MESSAGES/kio5_applications.mo +share/locale/nb/LC_MESSAGES/klipper.mo +share/locale/nb/LC_MESSAGES/krunner.mo +share/locale/nb/LC_MESSAGES/ksmserver.mo +share/locale/nb/LC_MESSAGES/kuiserver5.mo +share/locale/nb/LC_MESSAGES/libkworkspace.mo +share/locale/nb/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.color.mo +share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.image.mo +share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo +share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo +share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo +share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo +share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo +share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo +share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo +share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo +share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo +share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo +share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo +share/locale/nb/LC_MESSAGES/plasma_containmentactions_contextmenu.mo +share/locale/nb/LC_MESSAGES/plasma_containmentactions_switchwindow.mo +share/locale/nb/LC_MESSAGES/plasma_engine_applicationjobs.mo +share/locale/nb/LC_MESSAGES/plasma_engine_devicenotifications.mo +share/locale/nb/LC_MESSAGES/plasma_engine_keystate.mo +share/locale/nb/LC_MESSAGES/plasma_engine_mpris2.mo +share/locale/nb/LC_MESSAGES/plasma_engine_network.mo +share/locale/nb/LC_MESSAGES/plasma_engine_notifications.mo +share/locale/nb/LC_MESSAGES/plasma_engine_powermanagement.mo +share/locale/nb/LC_MESSAGES/plasma_engine_rss.mo +share/locale/nb/LC_MESSAGES/plasma_engine_share.mo +share/locale/nb/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/nb/LC_MESSAGES/plasma_engine_time.mo +share/locale/nb/LC_MESSAGES/plasma_engine_weather.mo +share/locale/nb/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo +share/locale/nb/LC_MESSAGES/plasma_package_plasmashell.mo +share/locale/nb/LC_MESSAGES/plasma_runner_activities.mo +share/locale/nb/LC_MESSAGES/plasma_runner_baloosearch5.mo +share/locale/nb/LC_MESSAGES/plasma_runner_bookmarksrunner.mo +share/locale/nb/LC_MESSAGES/plasma_runner_calculatorrunner.mo +share/locale/nb/LC_MESSAGES/plasma_runner_kill.mo +share/locale/nb/LC_MESSAGES/plasma_runner_locations.mo +share/locale/nb/LC_MESSAGES/plasma_runner_placesrunner.mo +share/locale/nb/LC_MESSAGES/plasma_runner_powerdevil.mo +share/locale/nb/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/nb/LC_MESSAGES/plasma_runner_services.mo +share/locale/nb/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/nb/LC_MESSAGES/plasma_runner_shell.mo +share/locale/nb/LC_MESSAGES/plasma_runner_solid.mo +share/locale/nb/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/nb/LC_MESSAGES/plasma_runner_windowedwidgets.mo +share/locale/nb/LC_MESSAGES/plasma_runner_windows.mo +share/locale/nb/LC_MESSAGES/plasmashell.mo +share/locale/nb/LC_MESSAGES/plasmashellprivateplugin.mo +share/locale/nb/LC_MESSAGES/soliduiserver5.mo +share/locale/nb/LC_MESSAGES/systemmonitor.mo +share/locale/nds/LC_MESSAGES/freespacenotifier.mo +share/locale/nds/LC_MESSAGES/kcminit.mo +share/locale/nds/LC_MESSAGES/kio5_applications.mo +share/locale/nds/LC_MESSAGES/klipper.mo +share/locale/nds/LC_MESSAGES/krunner.mo +share/locale/nds/LC_MESSAGES/ksmserver.mo +share/locale/nds/LC_MESSAGES/kuiserver5.mo +share/locale/nds/LC_MESSAGES/libkworkspace.mo +share/locale/nds/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.color.mo +share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.image.mo +share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo +share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo +share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo +share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo +share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo +share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo +share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo +share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo +share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo +share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo +share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo +share/locale/nds/LC_MESSAGES/plasma_containmentactions_contextmenu.mo +share/locale/nds/LC_MESSAGES/plasma_containmentactions_switchwindow.mo +share/locale/nds/LC_MESSAGES/plasma_engine_applicationjobs.mo +share/locale/nds/LC_MESSAGES/plasma_engine_keystate.mo +share/locale/nds/LC_MESSAGES/plasma_engine_mpris2.mo +share/locale/nds/LC_MESSAGES/plasma_engine_network.mo +share/locale/nds/LC_MESSAGES/plasma_engine_notifications.mo +share/locale/nds/LC_MESSAGES/plasma_engine_powermanagement.mo +share/locale/nds/LC_MESSAGES/plasma_engine_rss.mo +share/locale/nds/LC_MESSAGES/plasma_engine_share.mo +share/locale/nds/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/nds/LC_MESSAGES/plasma_engine_time.mo +share/locale/nds/LC_MESSAGES/plasma_engine_weather.mo +share/locale/nds/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo +share/locale/nds/LC_MESSAGES/plasma_package_plasmashell.mo +share/locale/nds/LC_MESSAGES/plasma_runner_activities.mo +share/locale/nds/LC_MESSAGES/plasma_runner_baloosearch5.mo +share/locale/nds/LC_MESSAGES/plasma_runner_bookmarksrunner.mo +share/locale/nds/LC_MESSAGES/plasma_runner_calculatorrunner.mo +share/locale/nds/LC_MESSAGES/plasma_runner_kill.mo +share/locale/nds/LC_MESSAGES/plasma_runner_locations.mo +share/locale/nds/LC_MESSAGES/plasma_runner_placesrunner.mo +share/locale/nds/LC_MESSAGES/plasma_runner_powerdevil.mo +share/locale/nds/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/nds/LC_MESSAGES/plasma_runner_services.mo +share/locale/nds/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/nds/LC_MESSAGES/plasma_runner_shell.mo +share/locale/nds/LC_MESSAGES/plasma_runner_solid.mo +share/locale/nds/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/nds/LC_MESSAGES/plasma_runner_windowedwidgets.mo +share/locale/nds/LC_MESSAGES/plasma_runner_windows.mo +share/locale/nds/LC_MESSAGES/plasmashell.mo +share/locale/nds/LC_MESSAGES/plasmashellprivateplugin.mo +share/locale/nds/LC_MESSAGES/soliduiserver5.mo +share/locale/nds/LC_MESSAGES/systemmonitor.mo +share/locale/ne/LC_MESSAGES/kcminit.mo +share/locale/ne/LC_MESSAGES/kio5_applications.mo +share/locale/ne/LC_MESSAGES/klipper.mo +share/locale/ne/LC_MESSAGES/ksmserver.mo +share/locale/ne/LC_MESSAGES/kuiserver5.mo +share/locale/ne/LC_MESSAGES/libkworkspace.mo +share/locale/ne/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/ne/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo +share/locale/ne/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo +share/locale/ne/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo +share/locale/ne/LC_MESSAGES/soliduiserver5.mo +share/locale/nl/LC_MESSAGES/freespacenotifier.mo +share/locale/nl/LC_MESSAGES/kcminit.mo +share/locale/nl/LC_MESSAGES/kholidays_calendar_plugin.mo +share/locale/nl/LC_MESSAGES/kio5_applications.mo +share/locale/nl/LC_MESSAGES/kio_desktop.mo +share/locale/nl/LC_MESSAGES/klipper.mo +share/locale/nl/LC_MESSAGES/krunner.mo +share/locale/nl/LC_MESSAGES/ksmserver.mo +share/locale/nl/LC_MESSAGES/kuiserver5.mo +share/locale/nl/LC_MESSAGES/libkworkspace.mo +share/locale/nl/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.color.mo +share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.image.mo +share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo +share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo +share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo +share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo +share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo +share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo +share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo +share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo +share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo +share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo +share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo +share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo +share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo +share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.cpu.mo +share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskactivity.mo +share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskusage.mo +share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.memory.mo +share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.net.mo +share/locale/nl/LC_MESSAGES/plasma_containmentactions_applauncher.mo +share/locale/nl/LC_MESSAGES/plasma_containmentactions_contextmenu.mo +share/locale/nl/LC_MESSAGES/plasma_containmentactions_switchwindow.mo +share/locale/nl/LC_MESSAGES/plasma_engine_applicationjobs.mo +share/locale/nl/LC_MESSAGES/plasma_engine_devicenotifications.mo +share/locale/nl/LC_MESSAGES/plasma_engine_dict.mo +share/locale/nl/LC_MESSAGES/plasma_engine_keystate.mo +share/locale/nl/LC_MESSAGES/plasma_engine_mpris2.mo +share/locale/nl/LC_MESSAGES/plasma_engine_network.mo +share/locale/nl/LC_MESSAGES/plasma_engine_notifications.mo +share/locale/nl/LC_MESSAGES/plasma_engine_powermanagement.mo +share/locale/nl/LC_MESSAGES/plasma_engine_rss.mo +share/locale/nl/LC_MESSAGES/plasma_engine_share.mo +share/locale/nl/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/nl/LC_MESSAGES/plasma_engine_time.mo +share/locale/nl/LC_MESSAGES/plasma_engine_weather.mo +share/locale/nl/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo +share/locale/nl/LC_MESSAGES/plasma_package_plasmashell.mo +share/locale/nl/LC_MESSAGES/plasma_runner_activities.mo +share/locale/nl/LC_MESSAGES/plasma_runner_appstream.mo +share/locale/nl/LC_MESSAGES/plasma_runner_baloosearch5.mo +share/locale/nl/LC_MESSAGES/plasma_runner_bookmarksrunner.mo +share/locale/nl/LC_MESSAGES/plasma_runner_calculatorrunner.mo +share/locale/nl/LC_MESSAGES/plasma_runner_kill.mo +share/locale/nl/LC_MESSAGES/plasma_runner_locations.mo +share/locale/nl/LC_MESSAGES/plasma_runner_placesrunner.mo +share/locale/nl/LC_MESSAGES/plasma_runner_powerdevil.mo +share/locale/nl/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/nl/LC_MESSAGES/plasma_runner_services.mo +share/locale/nl/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/nl/LC_MESSAGES/plasma_runner_shell.mo +share/locale/nl/LC_MESSAGES/plasma_runner_solid.mo +share/locale/nl/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/nl/LC_MESSAGES/plasma_runner_windowedwidgets.mo +share/locale/nl/LC_MESSAGES/plasma_runner_windows.mo +share/locale/nl/LC_MESSAGES/plasmashell.mo +share/locale/nl/LC_MESSAGES/plasmashellprivateplugin.mo +share/locale/nl/LC_MESSAGES/soliduiserver5.mo +share/locale/nl/LC_MESSAGES/systemmonitor.mo +share/locale/nn/LC_MESSAGES/freespacenotifier.mo +share/locale/nn/LC_MESSAGES/kcminit.mo +share/locale/nn/LC_MESSAGES/kholidays_calendar_plugin.mo +share/locale/nn/LC_MESSAGES/kio5_applications.mo +share/locale/nn/LC_MESSAGES/kio_desktop.mo +share/locale/nn/LC_MESSAGES/klipper.mo +share/locale/nn/LC_MESSAGES/krunner.mo +share/locale/nn/LC_MESSAGES/ksmserver.mo +share/locale/nn/LC_MESSAGES/kuiserver5.mo +share/locale/nn/LC_MESSAGES/libkworkspace.mo +share/locale/nn/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.color.mo +share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.image.mo +share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo +share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo +share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo +share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo +share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo +share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo +share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo +share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo +share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo +share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo +share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo +share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo +share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo +share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.cpu.mo +share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskactivity.mo +share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskusage.mo +share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.memory.mo +share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.net.mo +share/locale/nn/LC_MESSAGES/plasma_containmentactions_applauncher.mo +share/locale/nn/LC_MESSAGES/plasma_containmentactions_contextmenu.mo +share/locale/nn/LC_MESSAGES/plasma_containmentactions_switchwindow.mo +share/locale/nn/LC_MESSAGES/plasma_engine_applicationjobs.mo +share/locale/nn/LC_MESSAGES/plasma_engine_devicenotifications.mo +share/locale/nn/LC_MESSAGES/plasma_engine_dict.mo +share/locale/nn/LC_MESSAGES/plasma_engine_keystate.mo +share/locale/nn/LC_MESSAGES/plasma_engine_mpris2.mo +share/locale/nn/LC_MESSAGES/plasma_engine_network.mo +share/locale/nn/LC_MESSAGES/plasma_engine_notifications.mo +share/locale/nn/LC_MESSAGES/plasma_engine_powermanagement.mo +share/locale/nn/LC_MESSAGES/plasma_engine_rss.mo +share/locale/nn/LC_MESSAGES/plasma_engine_share.mo +share/locale/nn/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/nn/LC_MESSAGES/plasma_engine_time.mo +share/locale/nn/LC_MESSAGES/plasma_engine_weather.mo +share/locale/nn/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo +share/locale/nn/LC_MESSAGES/plasma_package_plasmashell.mo +share/locale/nn/LC_MESSAGES/plasma_runner_activities.mo +share/locale/nn/LC_MESSAGES/plasma_runner_appstream.mo +share/locale/nn/LC_MESSAGES/plasma_runner_baloosearch5.mo +share/locale/nn/LC_MESSAGES/plasma_runner_bookmarksrunner.mo +share/locale/nn/LC_MESSAGES/plasma_runner_calculatorrunner.mo +share/locale/nn/LC_MESSAGES/plasma_runner_kill.mo +share/locale/nn/LC_MESSAGES/plasma_runner_locations.mo +share/locale/nn/LC_MESSAGES/plasma_runner_placesrunner.mo +share/locale/nn/LC_MESSAGES/plasma_runner_powerdevil.mo +share/locale/nn/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/nn/LC_MESSAGES/plasma_runner_services.mo +share/locale/nn/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/nn/LC_MESSAGES/plasma_runner_shell.mo +share/locale/nn/LC_MESSAGES/plasma_runner_solid.mo +share/locale/nn/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/nn/LC_MESSAGES/plasma_runner_windowedwidgets.mo +share/locale/nn/LC_MESSAGES/plasma_runner_windows.mo +share/locale/nn/LC_MESSAGES/plasmashell.mo +share/locale/nn/LC_MESSAGES/plasmashellprivateplugin.mo +share/locale/nn/LC_MESSAGES/soliduiserver5.mo +share/locale/nn/LC_MESSAGES/systemmonitor.mo +share/locale/oc/LC_MESSAGES/kcminit.mo +share/locale/oc/LC_MESSAGES/kio5_applications.mo +share/locale/oc/LC_MESSAGES/klipper.mo +share/locale/oc/LC_MESSAGES/ksmserver.mo +share/locale/oc/LC_MESSAGES/libkworkspace.mo +share/locale/oc/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/oc/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo +share/locale/oc/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo +share/locale/oc/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo +share/locale/oc/LC_MESSAGES/soliduiserver5.mo +share/locale/or/LC_MESSAGES/kcminit.mo +share/locale/or/LC_MESSAGES/kio5_applications.mo +share/locale/or/LC_MESSAGES/klipper.mo +share/locale/or/LC_MESSAGES/ksmserver.mo +share/locale/or/LC_MESSAGES/kuiserver5.mo +share/locale/or/LC_MESSAGES/libkworkspace.mo +share/locale/or/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/or/LC_MESSAGES/plasma_applet_org.kde.image.mo +share/locale/or/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo +share/locale/or/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo +share/locale/or/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo +share/locale/or/LC_MESSAGES/plasma_engine_applicationjobs.mo +share/locale/or/LC_MESSAGES/plasma_engine_rss.mo +share/locale/or/LC_MESSAGES/plasma_runner_locations.mo +share/locale/or/LC_MESSAGES/plasma_runner_powerdevil.mo +share/locale/or/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/or/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/or/LC_MESSAGES/plasma_runner_shell.mo +share/locale/or/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/or/LC_MESSAGES/soliduiserver5.mo +share/locale/pa/LC_MESSAGES/freespacenotifier.mo +share/locale/pa/LC_MESSAGES/kcminit.mo +share/locale/pa/LC_MESSAGES/kio5_applications.mo +share/locale/pa/LC_MESSAGES/kio_desktop.mo +share/locale/pa/LC_MESSAGES/klipper.mo +share/locale/pa/LC_MESSAGES/krunner.mo +share/locale/pa/LC_MESSAGES/ksmserver.mo +share/locale/pa/LC_MESSAGES/kuiserver5.mo +share/locale/pa/LC_MESSAGES/libkworkspace.mo +share/locale/pa/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.color.mo +share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.image.mo +share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo +share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo +share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo +share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo +share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo +share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo +share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo +share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo +share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo +share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo +share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo +share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo +share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.cpu.mo +share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskactivity.mo +share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskusage.mo +share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.memory.mo +share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.net.mo +share/locale/pa/LC_MESSAGES/plasma_containmentactions_contextmenu.mo +share/locale/pa/LC_MESSAGES/plasma_containmentactions_switchwindow.mo +share/locale/pa/LC_MESSAGES/plasma_engine_applicationjobs.mo +share/locale/pa/LC_MESSAGES/plasma_engine_devicenotifications.mo +share/locale/pa/LC_MESSAGES/plasma_engine_keystate.mo +share/locale/pa/LC_MESSAGES/plasma_engine_mpris2.mo +share/locale/pa/LC_MESSAGES/plasma_engine_network.mo +share/locale/pa/LC_MESSAGES/plasma_engine_notifications.mo +share/locale/pa/LC_MESSAGES/plasma_engine_powermanagement.mo +share/locale/pa/LC_MESSAGES/plasma_engine_rss.mo +share/locale/pa/LC_MESSAGES/plasma_engine_share.mo +share/locale/pa/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/pa/LC_MESSAGES/plasma_engine_time.mo +share/locale/pa/LC_MESSAGES/plasma_engine_weather.mo +share/locale/pa/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo +share/locale/pa/LC_MESSAGES/plasma_package_plasmashell.mo +share/locale/pa/LC_MESSAGES/plasma_runner_activities.mo +share/locale/pa/LC_MESSAGES/plasma_runner_baloosearch5.mo +share/locale/pa/LC_MESSAGES/plasma_runner_bookmarksrunner.mo +share/locale/pa/LC_MESSAGES/plasma_runner_calculatorrunner.mo +share/locale/pa/LC_MESSAGES/plasma_runner_kill.mo +share/locale/pa/LC_MESSAGES/plasma_runner_locations.mo +share/locale/pa/LC_MESSAGES/plasma_runner_placesrunner.mo +share/locale/pa/LC_MESSAGES/plasma_runner_powerdevil.mo +share/locale/pa/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/pa/LC_MESSAGES/plasma_runner_services.mo +share/locale/pa/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/pa/LC_MESSAGES/plasma_runner_shell.mo +share/locale/pa/LC_MESSAGES/plasma_runner_solid.mo +share/locale/pa/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/pa/LC_MESSAGES/plasma_runner_windowedwidgets.mo +share/locale/pa/LC_MESSAGES/plasma_runner_windows.mo +share/locale/pa/LC_MESSAGES/plasmashell.mo +share/locale/pa/LC_MESSAGES/plasmashellprivateplugin.mo +share/locale/pa/LC_MESSAGES/soliduiserver5.mo +share/locale/pa/LC_MESSAGES/systemmonitor.mo +share/locale/pl/LC_MESSAGES/freespacenotifier.mo +share/locale/pl/LC_MESSAGES/kcminit.mo +share/locale/pl/LC_MESSAGES/kholidays_calendar_plugin.mo +share/locale/pl/LC_MESSAGES/kio5_applications.mo +share/locale/pl/LC_MESSAGES/kio_desktop.mo +share/locale/pl/LC_MESSAGES/klipper.mo +share/locale/pl/LC_MESSAGES/krunner.mo +share/locale/pl/LC_MESSAGES/ksmserver.mo +share/locale/pl/LC_MESSAGES/kuiserver5.mo +share/locale/pl/LC_MESSAGES/libkworkspace.mo +share/locale/pl/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.color.mo +share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.image.mo +share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo +share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo +share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo +share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo +share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo +share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo +share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo +share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo +share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo +share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo +share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo +share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo +share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo +share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.cpu.mo +share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskactivity.mo +share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskusage.mo +share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.memory.mo +share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.net.mo +share/locale/pl/LC_MESSAGES/plasma_containmentactions_applauncher.mo +share/locale/pl/LC_MESSAGES/plasma_containmentactions_contextmenu.mo +share/locale/pl/LC_MESSAGES/plasma_containmentactions_switchwindow.mo +share/locale/pl/LC_MESSAGES/plasma_engine_applicationjobs.mo +share/locale/pl/LC_MESSAGES/plasma_engine_devicenotifications.mo +share/locale/pl/LC_MESSAGES/plasma_engine_dict.mo +share/locale/pl/LC_MESSAGES/plasma_engine_keystate.mo +share/locale/pl/LC_MESSAGES/plasma_engine_mpris2.mo +share/locale/pl/LC_MESSAGES/plasma_engine_network.mo +share/locale/pl/LC_MESSAGES/plasma_engine_notifications.mo +share/locale/pl/LC_MESSAGES/plasma_engine_powermanagement.mo +share/locale/pl/LC_MESSAGES/plasma_engine_rss.mo +share/locale/pl/LC_MESSAGES/plasma_engine_share.mo +share/locale/pl/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/pl/LC_MESSAGES/plasma_engine_time.mo +share/locale/pl/LC_MESSAGES/plasma_engine_weather.mo +share/locale/pl/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo +share/locale/pl/LC_MESSAGES/plasma_package_plasmashell.mo +share/locale/pl/LC_MESSAGES/plasma_runner_activities.mo +share/locale/pl/LC_MESSAGES/plasma_runner_baloosearch5.mo +share/locale/pl/LC_MESSAGES/plasma_runner_bookmarksrunner.mo +share/locale/pl/LC_MESSAGES/plasma_runner_calculatorrunner.mo +share/locale/pl/LC_MESSAGES/plasma_runner_kill.mo +share/locale/pl/LC_MESSAGES/plasma_runner_locations.mo +share/locale/pl/LC_MESSAGES/plasma_runner_placesrunner.mo +share/locale/pl/LC_MESSAGES/plasma_runner_powerdevil.mo +share/locale/pl/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/pl/LC_MESSAGES/plasma_runner_services.mo +share/locale/pl/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/pl/LC_MESSAGES/plasma_runner_shell.mo +share/locale/pl/LC_MESSAGES/plasma_runner_solid.mo +share/locale/pl/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/pl/LC_MESSAGES/plasma_runner_windowedwidgets.mo +share/locale/pl/LC_MESSAGES/plasma_runner_windows.mo +share/locale/pl/LC_MESSAGES/plasmashell.mo +share/locale/pl/LC_MESSAGES/plasmashellprivateplugin.mo +share/locale/pl/LC_MESSAGES/soliduiserver5.mo +share/locale/pl/LC_MESSAGES/systemmonitor.mo +share/locale/pt/LC_MESSAGES/freespacenotifier.mo +share/locale/pt/LC_MESSAGES/kcminit.mo +share/locale/pt/LC_MESSAGES/kholidays_calendar_plugin.mo +share/locale/pt/LC_MESSAGES/kio5_applications.mo +share/locale/pt/LC_MESSAGES/kio_desktop.mo +share/locale/pt/LC_MESSAGES/klipper.mo +share/locale/pt/LC_MESSAGES/krunner.mo +share/locale/pt/LC_MESSAGES/ksmserver.mo +share/locale/pt/LC_MESSAGES/kuiserver5.mo +share/locale/pt/LC_MESSAGES/libkworkspace.mo +share/locale/pt/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.color.mo +share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.image.mo +share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo +share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo +share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo +share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo +share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo +share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo +share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo +share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo +share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo +share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo +share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo +share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo +share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo +share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.cpu.mo +share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskactivity.mo +share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskusage.mo +share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.memory.mo +share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.net.mo +share/locale/pt/LC_MESSAGES/plasma_containmentactions_applauncher.mo +share/locale/pt/LC_MESSAGES/plasma_containmentactions_contextmenu.mo +share/locale/pt/LC_MESSAGES/plasma_containmentactions_switchwindow.mo +share/locale/pt/LC_MESSAGES/plasma_engine_applicationjobs.mo +share/locale/pt/LC_MESSAGES/plasma_engine_devicenotifications.mo +share/locale/pt/LC_MESSAGES/plasma_engine_dict.mo +share/locale/pt/LC_MESSAGES/plasma_engine_keystate.mo +share/locale/pt/LC_MESSAGES/plasma_engine_mpris2.mo +share/locale/pt/LC_MESSAGES/plasma_engine_network.mo +share/locale/pt/LC_MESSAGES/plasma_engine_notifications.mo +share/locale/pt/LC_MESSAGES/plasma_engine_powermanagement.mo +share/locale/pt/LC_MESSAGES/plasma_engine_rss.mo +share/locale/pt/LC_MESSAGES/plasma_engine_share.mo +share/locale/pt/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/pt/LC_MESSAGES/plasma_engine_time.mo +share/locale/pt/LC_MESSAGES/plasma_engine_weather.mo +share/locale/pt/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo +share/locale/pt/LC_MESSAGES/plasma_package_plasmashell.mo +share/locale/pt/LC_MESSAGES/plasma_runner_activities.mo +share/locale/pt/LC_MESSAGES/plasma_runner_appstream.mo +share/locale/pt/LC_MESSAGES/plasma_runner_baloosearch5.mo +share/locale/pt/LC_MESSAGES/plasma_runner_bookmarksrunner.mo +share/locale/pt/LC_MESSAGES/plasma_runner_calculatorrunner.mo +share/locale/pt/LC_MESSAGES/plasma_runner_kill.mo +share/locale/pt/LC_MESSAGES/plasma_runner_locations.mo +share/locale/pt/LC_MESSAGES/plasma_runner_placesrunner.mo +share/locale/pt/LC_MESSAGES/plasma_runner_powerdevil.mo +share/locale/pt/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/pt/LC_MESSAGES/plasma_runner_services.mo +share/locale/pt/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/pt/LC_MESSAGES/plasma_runner_shell.mo +share/locale/pt/LC_MESSAGES/plasma_runner_solid.mo +share/locale/pt/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/pt/LC_MESSAGES/plasma_runner_windowedwidgets.mo +share/locale/pt/LC_MESSAGES/plasma_runner_windows.mo +share/locale/pt/LC_MESSAGES/plasmashell.mo +share/locale/pt/LC_MESSAGES/plasmashellprivateplugin.mo +share/locale/pt/LC_MESSAGES/soliduiserver5.mo +share/locale/pt/LC_MESSAGES/systemmonitor.mo +share/locale/pt_BR/LC_MESSAGES/freespacenotifier.mo +share/locale/pt_BR/LC_MESSAGES/kcminit.mo +share/locale/pt_BR/LC_MESSAGES/kholidays_calendar_plugin.mo +share/locale/pt_BR/LC_MESSAGES/kio5_applications.mo +share/locale/pt_BR/LC_MESSAGES/kio_desktop.mo +share/locale/pt_BR/LC_MESSAGES/klipper.mo +share/locale/pt_BR/LC_MESSAGES/krunner.mo +share/locale/pt_BR/LC_MESSAGES/ksmserver.mo +share/locale/pt_BR/LC_MESSAGES/kuiserver5.mo +share/locale/pt_BR/LC_MESSAGES/libkworkspace.mo +share/locale/pt_BR/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.color.mo +share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.image.mo +share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo +share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo +share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo +share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo +share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo +share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo +share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo +share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo +share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo +share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo +share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo +share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo +share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo +share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.cpu.mo +share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskactivity.mo +share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskusage.mo +share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.memory.mo +share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.net.mo +share/locale/pt_BR/LC_MESSAGES/plasma_containmentactions_applauncher.mo +share/locale/pt_BR/LC_MESSAGES/plasma_containmentactions_contextmenu.mo +share/locale/pt_BR/LC_MESSAGES/plasma_containmentactions_switchwindow.mo +share/locale/pt_BR/LC_MESSAGES/plasma_engine_applicationjobs.mo +share/locale/pt_BR/LC_MESSAGES/plasma_engine_devicenotifications.mo +share/locale/pt_BR/LC_MESSAGES/plasma_engine_dict.mo +share/locale/pt_BR/LC_MESSAGES/plasma_engine_keystate.mo +share/locale/pt_BR/LC_MESSAGES/plasma_engine_mpris2.mo +share/locale/pt_BR/LC_MESSAGES/plasma_engine_network.mo +share/locale/pt_BR/LC_MESSAGES/plasma_engine_notifications.mo +share/locale/pt_BR/LC_MESSAGES/plasma_engine_powermanagement.mo +share/locale/pt_BR/LC_MESSAGES/plasma_engine_rss.mo +share/locale/pt_BR/LC_MESSAGES/plasma_engine_share.mo +share/locale/pt_BR/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/pt_BR/LC_MESSAGES/plasma_engine_time.mo +share/locale/pt_BR/LC_MESSAGES/plasma_engine_weather.mo +share/locale/pt_BR/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo +share/locale/pt_BR/LC_MESSAGES/plasma_package_plasmashell.mo +share/locale/pt_BR/LC_MESSAGES/plasma_runner_activities.mo +share/locale/pt_BR/LC_MESSAGES/plasma_runner_appstream.mo +share/locale/pt_BR/LC_MESSAGES/plasma_runner_baloosearch5.mo +share/locale/pt_BR/LC_MESSAGES/plasma_runner_bookmarksrunner.mo +share/locale/pt_BR/LC_MESSAGES/plasma_runner_calculatorrunner.mo +share/locale/pt_BR/LC_MESSAGES/plasma_runner_kill.mo +share/locale/pt_BR/LC_MESSAGES/plasma_runner_locations.mo +share/locale/pt_BR/LC_MESSAGES/plasma_runner_placesrunner.mo +share/locale/pt_BR/LC_MESSAGES/plasma_runner_powerdevil.mo +share/locale/pt_BR/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/pt_BR/LC_MESSAGES/plasma_runner_services.mo +share/locale/pt_BR/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/pt_BR/LC_MESSAGES/plasma_runner_shell.mo +share/locale/pt_BR/LC_MESSAGES/plasma_runner_solid.mo +share/locale/pt_BR/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/pt_BR/LC_MESSAGES/plasma_runner_windowedwidgets.mo +share/locale/pt_BR/LC_MESSAGES/plasma_runner_windows.mo +share/locale/pt_BR/LC_MESSAGES/plasmashell.mo +share/locale/pt_BR/LC_MESSAGES/plasmashellprivateplugin.mo +share/locale/pt_BR/LC_MESSAGES/soliduiserver5.mo +share/locale/pt_BR/LC_MESSAGES/systemmonitor.mo +share/locale/ro/LC_MESSAGES/freespacenotifier.mo +share/locale/ro/LC_MESSAGES/kcminit.mo +share/locale/ro/LC_MESSAGES/kio5_applications.mo +share/locale/ro/LC_MESSAGES/klipper.mo +share/locale/ro/LC_MESSAGES/krunner.mo +share/locale/ro/LC_MESSAGES/ksmserver.mo +share/locale/ro/LC_MESSAGES/kuiserver5.mo +share/locale/ro/LC_MESSAGES/libkworkspace.mo +share/locale/ro/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.color.mo +share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.image.mo +share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo +share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo +share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo +share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo +share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo +share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo +share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo +share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo +share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo +share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo +share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo +share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.cpu.mo +share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskactivity.mo +share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskusage.mo +share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.memory.mo +share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.net.mo +share/locale/ro/LC_MESSAGES/plasma_containmentactions_contextmenu.mo +share/locale/ro/LC_MESSAGES/plasma_containmentactions_switchwindow.mo +share/locale/ro/LC_MESSAGES/plasma_engine_applicationjobs.mo +share/locale/ro/LC_MESSAGES/plasma_engine_keystate.mo +share/locale/ro/LC_MESSAGES/plasma_engine_mpris2.mo +share/locale/ro/LC_MESSAGES/plasma_engine_network.mo +share/locale/ro/LC_MESSAGES/plasma_engine_notifications.mo +share/locale/ro/LC_MESSAGES/plasma_engine_powermanagement.mo +share/locale/ro/LC_MESSAGES/plasma_engine_rss.mo +share/locale/ro/LC_MESSAGES/plasma_engine_share.mo +share/locale/ro/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/ro/LC_MESSAGES/plasma_engine_time.mo +share/locale/ro/LC_MESSAGES/plasma_engine_weather.mo +share/locale/ro/LC_MESSAGES/plasma_runner_activities.mo +share/locale/ro/LC_MESSAGES/plasma_runner_baloosearch5.mo +share/locale/ro/LC_MESSAGES/plasma_runner_bookmarksrunner.mo +share/locale/ro/LC_MESSAGES/plasma_runner_calculatorrunner.mo +share/locale/ro/LC_MESSAGES/plasma_runner_kill.mo +share/locale/ro/LC_MESSAGES/plasma_runner_locations.mo +share/locale/ro/LC_MESSAGES/plasma_runner_placesrunner.mo +share/locale/ro/LC_MESSAGES/plasma_runner_powerdevil.mo +share/locale/ro/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/ro/LC_MESSAGES/plasma_runner_services.mo +share/locale/ro/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/ro/LC_MESSAGES/plasma_runner_shell.mo +share/locale/ro/LC_MESSAGES/plasma_runner_solid.mo +share/locale/ro/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/ro/LC_MESSAGES/plasma_runner_windowedwidgets.mo +share/locale/ro/LC_MESSAGES/plasma_runner_windows.mo +share/locale/ro/LC_MESSAGES/plasmashell.mo +share/locale/ro/LC_MESSAGES/soliduiserver5.mo +share/locale/ro/LC_MESSAGES/systemmonitor.mo +share/locale/ru/LC_MESSAGES/freespacenotifier.mo +share/locale/ru/LC_MESSAGES/kcminit.mo +share/locale/ru/LC_MESSAGES/kholidays_calendar_plugin.mo +share/locale/ru/LC_MESSAGES/kio5_applications.mo +share/locale/ru/LC_MESSAGES/kio_desktop.mo +share/locale/ru/LC_MESSAGES/klipper.mo +share/locale/ru/LC_MESSAGES/krunner.mo +share/locale/ru/LC_MESSAGES/ksmserver.mo +share/locale/ru/LC_MESSAGES/kuiserver5.mo +share/locale/ru/LC_MESSAGES/libkworkspace.mo +share/locale/ru/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.color.mo +share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.image.mo +share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo +share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo +share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo +share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo +share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo +share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo +share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo +share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo +share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo +share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo +share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo +share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo +share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo +share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.cpu.mo +share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskactivity.mo +share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskusage.mo +share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.memory.mo +share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.net.mo +share/locale/ru/LC_MESSAGES/plasma_containmentactions_applauncher.mo +share/locale/ru/LC_MESSAGES/plasma_containmentactions_contextmenu.mo +share/locale/ru/LC_MESSAGES/plasma_containmentactions_switchwindow.mo +share/locale/ru/LC_MESSAGES/plasma_engine_applicationjobs.mo +share/locale/ru/LC_MESSAGES/plasma_engine_devicenotifications.mo +share/locale/ru/LC_MESSAGES/plasma_engine_dict.mo +share/locale/ru/LC_MESSAGES/plasma_engine_keystate.mo +share/locale/ru/LC_MESSAGES/plasma_engine_mpris2.mo +share/locale/ru/LC_MESSAGES/plasma_engine_network.mo +share/locale/ru/LC_MESSAGES/plasma_engine_notifications.mo +share/locale/ru/LC_MESSAGES/plasma_engine_powermanagement.mo +share/locale/ru/LC_MESSAGES/plasma_engine_rss.mo +share/locale/ru/LC_MESSAGES/plasma_engine_share.mo +share/locale/ru/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/ru/LC_MESSAGES/plasma_engine_time.mo +share/locale/ru/LC_MESSAGES/plasma_engine_weather.mo +share/locale/ru/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo +share/locale/ru/LC_MESSAGES/plasma_package_plasmashell.mo +share/locale/ru/LC_MESSAGES/plasma_runner_activities.mo +share/locale/ru/LC_MESSAGES/plasma_runner_baloosearch5.mo +share/locale/ru/LC_MESSAGES/plasma_runner_bookmarksrunner.mo +share/locale/ru/LC_MESSAGES/plasma_runner_calculatorrunner.mo +share/locale/ru/LC_MESSAGES/plasma_runner_kill.mo +share/locale/ru/LC_MESSAGES/plasma_runner_locations.mo +share/locale/ru/LC_MESSAGES/plasma_runner_placesrunner.mo +share/locale/ru/LC_MESSAGES/plasma_runner_powerdevil.mo +share/locale/ru/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/ru/LC_MESSAGES/plasma_runner_services.mo +share/locale/ru/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/ru/LC_MESSAGES/plasma_runner_shell.mo +share/locale/ru/LC_MESSAGES/plasma_runner_solid.mo +share/locale/ru/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/ru/LC_MESSAGES/plasma_runner_windowedwidgets.mo +share/locale/ru/LC_MESSAGES/plasma_runner_windows.mo +share/locale/ru/LC_MESSAGES/plasmashell.mo +share/locale/ru/LC_MESSAGES/plasmashellprivateplugin.mo +share/locale/ru/LC_MESSAGES/soliduiserver5.mo +share/locale/ru/LC_MESSAGES/systemmonitor.mo +share/locale/se/LC_MESSAGES/kcminit.mo +share/locale/se/LC_MESSAGES/kio5_applications.mo +share/locale/se/LC_MESSAGES/klipper.mo +share/locale/se/LC_MESSAGES/krunner.mo +share/locale/se/LC_MESSAGES/ksmserver.mo +share/locale/se/LC_MESSAGES/kuiserver5.mo +share/locale/se/LC_MESSAGES/libkworkspace.mo +share/locale/se/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/se/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo +share/locale/se/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo +share/locale/se/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo +share/locale/se/LC_MESSAGES/plasma_engine_devicenotifications.mo +share/locale/se/LC_MESSAGES/soliduiserver5.mo +share/locale/si/LC_MESSAGES/kcminit.mo +share/locale/si/LC_MESSAGES/kio5_applications.mo +share/locale/si/LC_MESSAGES/klipper.mo +share/locale/si/LC_MESSAGES/ksmserver.mo +share/locale/si/LC_MESSAGES/kuiserver5.mo +share/locale/si/LC_MESSAGES/libkworkspace.mo +share/locale/si/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/si/LC_MESSAGES/plasma_applet_org.kde.image.mo +share/locale/si/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo +share/locale/si/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo +share/locale/si/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo +share/locale/si/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo +share/locale/si/LC_MESSAGES/plasma_containmentactions_contextmenu.mo +share/locale/si/LC_MESSAGES/plasma_containmentactions_switchwindow.mo +share/locale/si/LC_MESSAGES/plasma_engine_applicationjobs.mo +share/locale/si/LC_MESSAGES/plasma_engine_keystate.mo +share/locale/si/LC_MESSAGES/plasma_engine_network.mo +share/locale/si/LC_MESSAGES/plasma_engine_notifications.mo +share/locale/si/LC_MESSAGES/plasma_engine_rss.mo +share/locale/si/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/si/LC_MESSAGES/plasma_engine_weather.mo +share/locale/si/LC_MESSAGES/plasma_runner_bookmarksrunner.mo +share/locale/si/LC_MESSAGES/plasma_runner_calculatorrunner.mo +share/locale/si/LC_MESSAGES/plasma_runner_locations.mo +share/locale/si/LC_MESSAGES/plasma_runner_placesrunner.mo +share/locale/si/LC_MESSAGES/plasma_runner_powerdevil.mo +share/locale/si/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/si/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/si/LC_MESSAGES/plasma_runner_shell.mo +share/locale/si/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/si/LC_MESSAGES/plasma_runner_windows.mo +share/locale/si/LC_MESSAGES/soliduiserver5.mo +share/locale/sk/LC_MESSAGES/freespacenotifier.mo +share/locale/sk/LC_MESSAGES/kcminit.mo +share/locale/sk/LC_MESSAGES/kholidays_calendar_plugin.mo +share/locale/sk/LC_MESSAGES/kio5_applications.mo +share/locale/sk/LC_MESSAGES/kio_desktop.mo +share/locale/sk/LC_MESSAGES/klipper.mo +share/locale/sk/LC_MESSAGES/krunner.mo +share/locale/sk/LC_MESSAGES/ksmserver.mo +share/locale/sk/LC_MESSAGES/kuiserver5.mo +share/locale/sk/LC_MESSAGES/libkworkspace.mo +share/locale/sk/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.color.mo +share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.image.mo +share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo +share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo +share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo +share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo +share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo +share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo +share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo +share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo +share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo +share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo +share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo +share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo +share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo +share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.cpu.mo +share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskactivity.mo +share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskusage.mo +share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.memory.mo +share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.net.mo +share/locale/sk/LC_MESSAGES/plasma_containmentactions_applauncher.mo +share/locale/sk/LC_MESSAGES/plasma_containmentactions_contextmenu.mo +share/locale/sk/LC_MESSAGES/plasma_containmentactions_switchwindow.mo +share/locale/sk/LC_MESSAGES/plasma_engine_applicationjobs.mo +share/locale/sk/LC_MESSAGES/plasma_engine_devicenotifications.mo +share/locale/sk/LC_MESSAGES/plasma_engine_dict.mo +share/locale/sk/LC_MESSAGES/plasma_engine_keystate.mo +share/locale/sk/LC_MESSAGES/plasma_engine_mpris2.mo +share/locale/sk/LC_MESSAGES/plasma_engine_network.mo +share/locale/sk/LC_MESSAGES/plasma_engine_notifications.mo +share/locale/sk/LC_MESSAGES/plasma_engine_powermanagement.mo +share/locale/sk/LC_MESSAGES/plasma_engine_rss.mo +share/locale/sk/LC_MESSAGES/plasma_engine_share.mo +share/locale/sk/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/sk/LC_MESSAGES/plasma_engine_time.mo +share/locale/sk/LC_MESSAGES/plasma_engine_weather.mo +share/locale/sk/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo +share/locale/sk/LC_MESSAGES/plasma_package_plasmashell.mo +share/locale/sk/LC_MESSAGES/plasma_runner_activities.mo +share/locale/sk/LC_MESSAGES/plasma_runner_appstream.mo +share/locale/sk/LC_MESSAGES/plasma_runner_baloosearch5.mo +share/locale/sk/LC_MESSAGES/plasma_runner_bookmarksrunner.mo +share/locale/sk/LC_MESSAGES/plasma_runner_calculatorrunner.mo +share/locale/sk/LC_MESSAGES/plasma_runner_kill.mo +share/locale/sk/LC_MESSAGES/plasma_runner_locations.mo +share/locale/sk/LC_MESSAGES/plasma_runner_placesrunner.mo +share/locale/sk/LC_MESSAGES/plasma_runner_powerdevil.mo +share/locale/sk/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/sk/LC_MESSAGES/plasma_runner_services.mo +share/locale/sk/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/sk/LC_MESSAGES/plasma_runner_shell.mo +share/locale/sk/LC_MESSAGES/plasma_runner_solid.mo +share/locale/sk/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/sk/LC_MESSAGES/plasma_runner_windowedwidgets.mo +share/locale/sk/LC_MESSAGES/plasma_runner_windows.mo +share/locale/sk/LC_MESSAGES/plasmashell.mo +share/locale/sk/LC_MESSAGES/plasmashellprivateplugin.mo +share/locale/sk/LC_MESSAGES/soliduiserver5.mo +share/locale/sk/LC_MESSAGES/systemmonitor.mo +share/locale/sl/LC_MESSAGES/freespacenotifier.mo +share/locale/sl/LC_MESSAGES/kcminit.mo +share/locale/sl/LC_MESSAGES/kholidays_calendar_plugin.mo +share/locale/sl/LC_MESSAGES/kio5_applications.mo +share/locale/sl/LC_MESSAGES/kio_desktop.mo +share/locale/sl/LC_MESSAGES/klipper.mo +share/locale/sl/LC_MESSAGES/krunner.mo +share/locale/sl/LC_MESSAGES/ksmserver.mo +share/locale/sl/LC_MESSAGES/kuiserver5.mo +share/locale/sl/LC_MESSAGES/libkworkspace.mo +share/locale/sl/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.color.mo +share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.image.mo +share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo +share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo +share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo +share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo +share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo +share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo +share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo +share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo +share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo +share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo +share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo +share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo +share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo +share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.cpu.mo +share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskactivity.mo +share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskusage.mo +share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.memory.mo +share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.net.mo +share/locale/sl/LC_MESSAGES/plasma_containmentactions_applauncher.mo +share/locale/sl/LC_MESSAGES/plasma_containmentactions_contextmenu.mo +share/locale/sl/LC_MESSAGES/plasma_containmentactions_switchwindow.mo +share/locale/sl/LC_MESSAGES/plasma_engine_applicationjobs.mo +share/locale/sl/LC_MESSAGES/plasma_engine_devicenotifications.mo +share/locale/sl/LC_MESSAGES/plasma_engine_dict.mo +share/locale/sl/LC_MESSAGES/plasma_engine_keystate.mo +share/locale/sl/LC_MESSAGES/plasma_engine_mpris2.mo +share/locale/sl/LC_MESSAGES/plasma_engine_network.mo +share/locale/sl/LC_MESSAGES/plasma_engine_notifications.mo +share/locale/sl/LC_MESSAGES/plasma_engine_powermanagement.mo +share/locale/sl/LC_MESSAGES/plasma_engine_rss.mo +share/locale/sl/LC_MESSAGES/plasma_engine_share.mo +share/locale/sl/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/sl/LC_MESSAGES/plasma_engine_time.mo +share/locale/sl/LC_MESSAGES/plasma_engine_weather.mo +share/locale/sl/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo +share/locale/sl/LC_MESSAGES/plasma_package_plasmashell.mo +share/locale/sl/LC_MESSAGES/plasma_runner_activities.mo +share/locale/sl/LC_MESSAGES/plasma_runner_baloosearch5.mo +share/locale/sl/LC_MESSAGES/plasma_runner_bookmarksrunner.mo +share/locale/sl/LC_MESSAGES/plasma_runner_calculatorrunner.mo +share/locale/sl/LC_MESSAGES/plasma_runner_kill.mo +share/locale/sl/LC_MESSAGES/plasma_runner_locations.mo +share/locale/sl/LC_MESSAGES/plasma_runner_placesrunner.mo +share/locale/sl/LC_MESSAGES/plasma_runner_powerdevil.mo +share/locale/sl/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/sl/LC_MESSAGES/plasma_runner_services.mo +share/locale/sl/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/sl/LC_MESSAGES/plasma_runner_shell.mo +share/locale/sl/LC_MESSAGES/plasma_runner_solid.mo +share/locale/sl/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/sl/LC_MESSAGES/plasma_runner_windowedwidgets.mo +share/locale/sl/LC_MESSAGES/plasma_runner_windows.mo +share/locale/sl/LC_MESSAGES/plasmashell.mo +share/locale/sl/LC_MESSAGES/plasmashellprivateplugin.mo +share/locale/sl/LC_MESSAGES/soliduiserver5.mo +share/locale/sl/LC_MESSAGES/systemmonitor.mo +share/locale/sq/LC_MESSAGES/kcminit.mo +share/locale/sq/LC_MESSAGES/kio5_applications.mo +share/locale/sq/LC_MESSAGES/klipper.mo +share/locale/sq/LC_MESSAGES/ksmserver.mo +share/locale/sq/LC_MESSAGES/kuiserver5.mo +share/locale/sq/LC_MESSAGES/libkworkspace.mo +share/locale/sq/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/sq/LC_MESSAGES/plasma_applet_org.kde.image.mo +share/locale/sq/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo +share/locale/sq/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo +share/locale/sq/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo +share/locale/sq/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo +share/locale/sq/LC_MESSAGES/plasma_containmentactions_contextmenu.mo +share/locale/sq/LC_MESSAGES/plasma_containmentactions_switchwindow.mo +share/locale/sq/LC_MESSAGES/plasma_engine_applicationjobs.mo +share/locale/sq/LC_MESSAGES/plasma_engine_keystate.mo +share/locale/sq/LC_MESSAGES/plasma_engine_network.mo +share/locale/sq/LC_MESSAGES/plasma_engine_notifications.mo +share/locale/sq/LC_MESSAGES/plasma_engine_rss.mo +share/locale/sq/LC_MESSAGES/plasma_engine_weather.mo +share/locale/sq/LC_MESSAGES/plasma_runner_bookmarksrunner.mo +share/locale/sq/LC_MESSAGES/plasma_runner_calculatorrunner.mo +share/locale/sq/LC_MESSAGES/plasma_runner_locations.mo +share/locale/sq/LC_MESSAGES/plasma_runner_placesrunner.mo +share/locale/sq/LC_MESSAGES/plasma_runner_powerdevil.mo +share/locale/sq/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/sq/LC_MESSAGES/plasma_runner_services.mo +share/locale/sq/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/sq/LC_MESSAGES/plasma_runner_shell.mo +share/locale/sq/LC_MESSAGES/plasma_runner_solid.mo +share/locale/sq/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/sq/LC_MESSAGES/soliduiserver5.mo +share/locale/sr/LC_MESSAGES/freespacenotifier.mo +share/locale/sr/LC_MESSAGES/kcminit.mo +share/locale/sr/LC_MESSAGES/kholidays_calendar_plugin.mo +share/locale/sr/LC_MESSAGES/kio5_applications.mo +share/locale/sr/LC_MESSAGES/kio_desktop.mo +share/locale/sr/LC_MESSAGES/klipper.mo +share/locale/sr/LC_MESSAGES/krunner.mo +share/locale/sr/LC_MESSAGES/ksmserver.mo +share/locale/sr/LC_MESSAGES/kuiserver5.mo +share/locale/sr/LC_MESSAGES/libkworkspace.mo +share/locale/sr/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.color.mo +share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.image.mo +share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo +share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo +share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo +share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo +share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo +share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo +share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo +share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo +share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo +share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo +share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo +share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo +share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo +share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.cpu.mo +share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskactivity.mo +share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskusage.mo +share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.memory.mo +share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.net.mo +share/locale/sr/LC_MESSAGES/plasma_containmentactions_applauncher.mo +share/locale/sr/LC_MESSAGES/plasma_containmentactions_contextmenu.mo +share/locale/sr/LC_MESSAGES/plasma_containmentactions_switchwindow.mo +share/locale/sr/LC_MESSAGES/plasma_engine_applicationjobs.mo +share/locale/sr/LC_MESSAGES/plasma_engine_devicenotifications.mo +share/locale/sr/LC_MESSAGES/plasma_engine_dict.mo +share/locale/sr/LC_MESSAGES/plasma_engine_keystate.mo +share/locale/sr/LC_MESSAGES/plasma_engine_mpris2.mo +share/locale/sr/LC_MESSAGES/plasma_engine_network.mo +share/locale/sr/LC_MESSAGES/plasma_engine_notifications.mo +share/locale/sr/LC_MESSAGES/plasma_engine_powermanagement.mo +share/locale/sr/LC_MESSAGES/plasma_engine_rss.mo +share/locale/sr/LC_MESSAGES/plasma_engine_share.mo +share/locale/sr/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/sr/LC_MESSAGES/plasma_engine_time.mo +share/locale/sr/LC_MESSAGES/plasma_engine_weather.mo +share/locale/sr/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo +share/locale/sr/LC_MESSAGES/plasma_package_plasmashell.mo +share/locale/sr/LC_MESSAGES/plasma_runner_activities.mo +share/locale/sr/LC_MESSAGES/plasma_runner_baloosearch5.mo +share/locale/sr/LC_MESSAGES/plasma_runner_bookmarksrunner.mo +share/locale/sr/LC_MESSAGES/plasma_runner_calculatorrunner.mo +share/locale/sr/LC_MESSAGES/plasma_runner_kill.mo +share/locale/sr/LC_MESSAGES/plasma_runner_locations.mo +share/locale/sr/LC_MESSAGES/plasma_runner_placesrunner.mo +share/locale/sr/LC_MESSAGES/plasma_runner_powerdevil.mo +share/locale/sr/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/sr/LC_MESSAGES/plasma_runner_services.mo +share/locale/sr/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/sr/LC_MESSAGES/plasma_runner_shell.mo +share/locale/sr/LC_MESSAGES/plasma_runner_solid.mo +share/locale/sr/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/sr/LC_MESSAGES/plasma_runner_windowedwidgets.mo +share/locale/sr/LC_MESSAGES/plasma_runner_windows.mo +share/locale/sr/LC_MESSAGES/plasmashell.mo +share/locale/sr/LC_MESSAGES/plasmashellprivateplugin.mo +share/locale/sr/LC_MESSAGES/soliduiserver5.mo +share/locale/sr/LC_MESSAGES/systemmonitor.mo +share/locale/sr@ijekavian/LC_MESSAGES/freespacenotifier.mo +share/locale/sr@ijekavian/LC_MESSAGES/kcminit.mo +share/locale/sr@ijekavian/LC_MESSAGES/kholidays_calendar_plugin.mo +share/locale/sr@ijekavian/LC_MESSAGES/kio5_applications.mo +share/locale/sr@ijekavian/LC_MESSAGES/kio_desktop.mo +share/locale/sr@ijekavian/LC_MESSAGES/klipper.mo +share/locale/sr@ijekavian/LC_MESSAGES/krunner.mo +share/locale/sr@ijekavian/LC_MESSAGES/ksmserver.mo +share/locale/sr@ijekavian/LC_MESSAGES/kuiserver5.mo +share/locale/sr@ijekavian/LC_MESSAGES/libkworkspace.mo +share/locale/sr@ijekavian/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.color.mo +share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.image.mo +share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo +share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo +share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo +share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo +share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo +share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo +share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo +share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo +share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo +share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo +share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo +share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo +share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo +share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.cpu.mo +share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskactivity.mo +share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskusage.mo +share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.memory.mo +share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.net.mo +share/locale/sr@ijekavian/LC_MESSAGES/plasma_containmentactions_applauncher.mo +share/locale/sr@ijekavian/LC_MESSAGES/plasma_containmentactions_contextmenu.mo +share/locale/sr@ijekavian/LC_MESSAGES/plasma_containmentactions_switchwindow.mo +share/locale/sr@ijekavian/LC_MESSAGES/plasma_engine_applicationjobs.mo +share/locale/sr@ijekavian/LC_MESSAGES/plasma_engine_devicenotifications.mo +share/locale/sr@ijekavian/LC_MESSAGES/plasma_engine_dict.mo +share/locale/sr@ijekavian/LC_MESSAGES/plasma_engine_keystate.mo +share/locale/sr@ijekavian/LC_MESSAGES/plasma_engine_mpris2.mo +share/locale/sr@ijekavian/LC_MESSAGES/plasma_engine_network.mo +share/locale/sr@ijekavian/LC_MESSAGES/plasma_engine_notifications.mo +share/locale/sr@ijekavian/LC_MESSAGES/plasma_engine_powermanagement.mo +share/locale/sr@ijekavian/LC_MESSAGES/plasma_engine_rss.mo +share/locale/sr@ijekavian/LC_MESSAGES/plasma_engine_share.mo +share/locale/sr@ijekavian/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/sr@ijekavian/LC_MESSAGES/plasma_engine_time.mo +share/locale/sr@ijekavian/LC_MESSAGES/plasma_engine_weather.mo +share/locale/sr@ijekavian/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo +share/locale/sr@ijekavian/LC_MESSAGES/plasma_package_plasmashell.mo +share/locale/sr@ijekavian/LC_MESSAGES/plasma_runner_activities.mo +share/locale/sr@ijekavian/LC_MESSAGES/plasma_runner_baloosearch5.mo +share/locale/sr@ijekavian/LC_MESSAGES/plasma_runner_bookmarksrunner.mo +share/locale/sr@ijekavian/LC_MESSAGES/plasma_runner_calculatorrunner.mo +share/locale/sr@ijekavian/LC_MESSAGES/plasma_runner_kill.mo +share/locale/sr@ijekavian/LC_MESSAGES/plasma_runner_locations.mo +share/locale/sr@ijekavian/LC_MESSAGES/plasma_runner_placesrunner.mo +share/locale/sr@ijekavian/LC_MESSAGES/plasma_runner_powerdevil.mo +share/locale/sr@ijekavian/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/sr@ijekavian/LC_MESSAGES/plasma_runner_services.mo +share/locale/sr@ijekavian/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/sr@ijekavian/LC_MESSAGES/plasma_runner_shell.mo +share/locale/sr@ijekavian/LC_MESSAGES/plasma_runner_solid.mo +share/locale/sr@ijekavian/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/sr@ijekavian/LC_MESSAGES/plasma_runner_windowedwidgets.mo +share/locale/sr@ijekavian/LC_MESSAGES/plasma_runner_windows.mo +share/locale/sr@ijekavian/LC_MESSAGES/plasmashell.mo +share/locale/sr@ijekavian/LC_MESSAGES/plasmashellprivateplugin.mo +share/locale/sr@ijekavian/LC_MESSAGES/soliduiserver5.mo +share/locale/sr@ijekavian/LC_MESSAGES/systemmonitor.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/freespacenotifier.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kcminit.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kholidays_calendar_plugin.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kio5_applications.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kio_desktop.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/klipper.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/krunner.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/ksmserver.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kuiserver5.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/libkworkspace.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.color.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.image.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.cpu.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskactivity.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskusage.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.memory.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.net.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_containmentactions_applauncher.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_containmentactions_contextmenu.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_containmentactions_switchwindow.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_engine_applicationjobs.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_engine_devicenotifications.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_engine_dict.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_engine_keystate.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_engine_mpris2.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_engine_network.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_engine_notifications.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_engine_powermanagement.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_engine_rss.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_engine_share.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_engine_time.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_engine_weather.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_package_plasmashell.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_runner_activities.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_runner_baloosearch5.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_runner_bookmarksrunner.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_runner_calculatorrunner.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_runner_kill.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_runner_locations.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_runner_placesrunner.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_runner_powerdevil.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_runner_services.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_runner_shell.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_runner_solid.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_runner_windowedwidgets.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_runner_windows.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/plasmashell.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/plasmashellprivateplugin.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/soliduiserver5.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/systemmonitor.mo +share/locale/sr@latin/LC_MESSAGES/freespacenotifier.mo +share/locale/sr@latin/LC_MESSAGES/kcminit.mo +share/locale/sr@latin/LC_MESSAGES/kholidays_calendar_plugin.mo +share/locale/sr@latin/LC_MESSAGES/kio5_applications.mo +share/locale/sr@latin/LC_MESSAGES/kio_desktop.mo +share/locale/sr@latin/LC_MESSAGES/klipper.mo +share/locale/sr@latin/LC_MESSAGES/krunner.mo +share/locale/sr@latin/LC_MESSAGES/ksmserver.mo +share/locale/sr@latin/LC_MESSAGES/kuiserver5.mo +share/locale/sr@latin/LC_MESSAGES/libkworkspace.mo +share/locale/sr@latin/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.color.mo +share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.image.mo +share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo +share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo +share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo +share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo +share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo +share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo +share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo +share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo +share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo +share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo +share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo +share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo +share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo +share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.cpu.mo +share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskactivity.mo +share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskusage.mo +share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.memory.mo +share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.net.mo +share/locale/sr@latin/LC_MESSAGES/plasma_containmentactions_applauncher.mo +share/locale/sr@latin/LC_MESSAGES/plasma_containmentactions_contextmenu.mo +share/locale/sr@latin/LC_MESSAGES/plasma_containmentactions_switchwindow.mo +share/locale/sr@latin/LC_MESSAGES/plasma_engine_applicationjobs.mo +share/locale/sr@latin/LC_MESSAGES/plasma_engine_devicenotifications.mo +share/locale/sr@latin/LC_MESSAGES/plasma_engine_dict.mo +share/locale/sr@latin/LC_MESSAGES/plasma_engine_keystate.mo +share/locale/sr@latin/LC_MESSAGES/plasma_engine_mpris2.mo +share/locale/sr@latin/LC_MESSAGES/plasma_engine_network.mo +share/locale/sr@latin/LC_MESSAGES/plasma_engine_notifications.mo +share/locale/sr@latin/LC_MESSAGES/plasma_engine_powermanagement.mo +share/locale/sr@latin/LC_MESSAGES/plasma_engine_rss.mo +share/locale/sr@latin/LC_MESSAGES/plasma_engine_share.mo +share/locale/sr@latin/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/sr@latin/LC_MESSAGES/plasma_engine_time.mo +share/locale/sr@latin/LC_MESSAGES/plasma_engine_weather.mo +share/locale/sr@latin/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo +share/locale/sr@latin/LC_MESSAGES/plasma_package_plasmashell.mo +share/locale/sr@latin/LC_MESSAGES/plasma_runner_activities.mo +share/locale/sr@latin/LC_MESSAGES/plasma_runner_baloosearch5.mo +share/locale/sr@latin/LC_MESSAGES/plasma_runner_bookmarksrunner.mo +share/locale/sr@latin/LC_MESSAGES/plasma_runner_calculatorrunner.mo +share/locale/sr@latin/LC_MESSAGES/plasma_runner_kill.mo +share/locale/sr@latin/LC_MESSAGES/plasma_runner_locations.mo +share/locale/sr@latin/LC_MESSAGES/plasma_runner_placesrunner.mo +share/locale/sr@latin/LC_MESSAGES/plasma_runner_powerdevil.mo +share/locale/sr@latin/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/sr@latin/LC_MESSAGES/plasma_runner_services.mo +share/locale/sr@latin/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/sr@latin/LC_MESSAGES/plasma_runner_shell.mo +share/locale/sr@latin/LC_MESSAGES/plasma_runner_solid.mo +share/locale/sr@latin/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/sr@latin/LC_MESSAGES/plasma_runner_windowedwidgets.mo +share/locale/sr@latin/LC_MESSAGES/plasma_runner_windows.mo +share/locale/sr@latin/LC_MESSAGES/plasmashell.mo +share/locale/sr@latin/LC_MESSAGES/plasmashellprivateplugin.mo +share/locale/sr@latin/LC_MESSAGES/soliduiserver5.mo +share/locale/sr@latin/LC_MESSAGES/systemmonitor.mo +share/locale/sv/LC_MESSAGES/freespacenotifier.mo +share/locale/sv/LC_MESSAGES/kcminit.mo +share/locale/sv/LC_MESSAGES/kholidays_calendar_plugin.mo +share/locale/sv/LC_MESSAGES/kio5_applications.mo +share/locale/sv/LC_MESSAGES/kio_desktop.mo +share/locale/sv/LC_MESSAGES/klipper.mo +share/locale/sv/LC_MESSAGES/krunner.mo +share/locale/sv/LC_MESSAGES/ksmserver.mo +share/locale/sv/LC_MESSAGES/kuiserver5.mo +share/locale/sv/LC_MESSAGES/libkworkspace.mo +share/locale/sv/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.color.mo +share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.image.mo +share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo +share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo +share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo +share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo +share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo +share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo +share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo +share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo +share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo +share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo +share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo +share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo +share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo +share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.cpu.mo +share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskactivity.mo +share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskusage.mo +share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.memory.mo +share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.net.mo +share/locale/sv/LC_MESSAGES/plasma_containmentactions_applauncher.mo +share/locale/sv/LC_MESSAGES/plasma_containmentactions_contextmenu.mo +share/locale/sv/LC_MESSAGES/plasma_containmentactions_switchwindow.mo +share/locale/sv/LC_MESSAGES/plasma_engine_applicationjobs.mo +share/locale/sv/LC_MESSAGES/plasma_engine_devicenotifications.mo +share/locale/sv/LC_MESSAGES/plasma_engine_dict.mo +share/locale/sv/LC_MESSAGES/plasma_engine_keystate.mo +share/locale/sv/LC_MESSAGES/plasma_engine_mpris2.mo +share/locale/sv/LC_MESSAGES/plasma_engine_network.mo +share/locale/sv/LC_MESSAGES/plasma_engine_notifications.mo +share/locale/sv/LC_MESSAGES/plasma_engine_powermanagement.mo +share/locale/sv/LC_MESSAGES/plasma_engine_rss.mo +share/locale/sv/LC_MESSAGES/plasma_engine_share.mo +share/locale/sv/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/sv/LC_MESSAGES/plasma_engine_time.mo +share/locale/sv/LC_MESSAGES/plasma_engine_weather.mo +share/locale/sv/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo +share/locale/sv/LC_MESSAGES/plasma_package_plasmashell.mo +share/locale/sv/LC_MESSAGES/plasma_runner_activities.mo +share/locale/sv/LC_MESSAGES/plasma_runner_appstream.mo +share/locale/sv/LC_MESSAGES/plasma_runner_baloosearch5.mo +share/locale/sv/LC_MESSAGES/plasma_runner_bookmarksrunner.mo +share/locale/sv/LC_MESSAGES/plasma_runner_calculatorrunner.mo +share/locale/sv/LC_MESSAGES/plasma_runner_kill.mo +share/locale/sv/LC_MESSAGES/plasma_runner_locations.mo +share/locale/sv/LC_MESSAGES/plasma_runner_placesrunner.mo +share/locale/sv/LC_MESSAGES/plasma_runner_powerdevil.mo +share/locale/sv/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/sv/LC_MESSAGES/plasma_runner_services.mo +share/locale/sv/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/sv/LC_MESSAGES/plasma_runner_shell.mo +share/locale/sv/LC_MESSAGES/plasma_runner_solid.mo +share/locale/sv/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/sv/LC_MESSAGES/plasma_runner_windowedwidgets.mo +share/locale/sv/LC_MESSAGES/plasma_runner_windows.mo +share/locale/sv/LC_MESSAGES/plasmashell.mo +share/locale/sv/LC_MESSAGES/plasmashellprivateplugin.mo +share/locale/sv/LC_MESSAGES/soliduiserver5.mo +share/locale/sv/LC_MESSAGES/systemmonitor.mo +share/locale/ta/LC_MESSAGES/kcminit.mo +share/locale/ta/LC_MESSAGES/kio5_applications.mo +share/locale/ta/LC_MESSAGES/klipper.mo +share/locale/ta/LC_MESSAGES/ksmserver.mo +share/locale/ta/LC_MESSAGES/kuiserver5.mo +share/locale/ta/LC_MESSAGES/libkworkspace.mo +share/locale/ta/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo +share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo +share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo +share/locale/ta/LC_MESSAGES/plasma_runner_locations.mo +share/locale/ta/LC_MESSAGES/plasma_runner_shell.mo +share/locale/ta/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/ta/LC_MESSAGES/soliduiserver5.mo +share/locale/te/LC_MESSAGES/kcminit.mo +share/locale/te/LC_MESSAGES/kio5_applications.mo +share/locale/te/LC_MESSAGES/klipper.mo +share/locale/te/LC_MESSAGES/ksmserver.mo +share/locale/te/LC_MESSAGES/kuiserver5.mo +share/locale/te/LC_MESSAGES/libkworkspace.mo +share/locale/te/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/te/LC_MESSAGES/plasma_applet_org.kde.image.mo +share/locale/te/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo +share/locale/te/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo +share/locale/te/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo +share/locale/te/LC_MESSAGES/plasma_engine_applicationjobs.mo +share/locale/te/LC_MESSAGES/plasma_engine_rss.mo +share/locale/te/LC_MESSAGES/plasma_runner_locations.mo +share/locale/te/LC_MESSAGES/plasma_runner_powerdevil.mo +share/locale/te/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/te/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/te/LC_MESSAGES/plasma_runner_shell.mo +share/locale/te/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/te/LC_MESSAGES/soliduiserver5.mo +share/locale/tg/LC_MESSAGES/freespacenotifier.mo +share/locale/tg/LC_MESSAGES/kcminit.mo +share/locale/tg/LC_MESSAGES/kio5_applications.mo +share/locale/tg/LC_MESSAGES/klipper.mo +share/locale/tg/LC_MESSAGES/ksmserver.mo +share/locale/tg/LC_MESSAGES/kuiserver5.mo +share/locale/tg/LC_MESSAGES/libkworkspace.mo +share/locale/tg/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.image.mo +share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo +share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo +share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo +share/locale/tg/LC_MESSAGES/plasma_engine_applicationjobs.mo +share/locale/tg/LC_MESSAGES/plasma_engine_rss.mo +share/locale/tg/LC_MESSAGES/plasma_runner_locations.mo +share/locale/tg/LC_MESSAGES/plasma_runner_powerdevil.mo +share/locale/tg/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/tg/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/tg/LC_MESSAGES/plasma_runner_shell.mo +share/locale/tg/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/tg/LC_MESSAGES/soliduiserver5.mo +share/locale/th/LC_MESSAGES/freespacenotifier.mo +share/locale/th/LC_MESSAGES/kcminit.mo +share/locale/th/LC_MESSAGES/kio5_applications.mo +share/locale/th/LC_MESSAGES/klipper.mo +share/locale/th/LC_MESSAGES/ksmserver.mo +share/locale/th/LC_MESSAGES/kuiserver5.mo +share/locale/th/LC_MESSAGES/libkworkspace.mo +share/locale/th/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/th/LC_MESSAGES/plasma_applet_org.kde.image.mo +share/locale/th/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo +share/locale/th/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo +share/locale/th/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo +share/locale/th/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo +share/locale/th/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo +share/locale/th/LC_MESSAGES/plasma_containmentactions_contextmenu.mo +share/locale/th/LC_MESSAGES/plasma_containmentactions_switchwindow.mo +share/locale/th/LC_MESSAGES/plasma_engine_applicationjobs.mo +share/locale/th/LC_MESSAGES/plasma_engine_keystate.mo +share/locale/th/LC_MESSAGES/plasma_engine_network.mo +share/locale/th/LC_MESSAGES/plasma_engine_notifications.mo +share/locale/th/LC_MESSAGES/plasma_engine_rss.mo +share/locale/th/LC_MESSAGES/plasma_engine_share.mo +share/locale/th/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/th/LC_MESSAGES/plasma_engine_weather.mo +share/locale/th/LC_MESSAGES/plasma_runner_bookmarksrunner.mo +share/locale/th/LC_MESSAGES/plasma_runner_calculatorrunner.mo +share/locale/th/LC_MESSAGES/plasma_runner_kill.mo +share/locale/th/LC_MESSAGES/plasma_runner_locations.mo +share/locale/th/LC_MESSAGES/plasma_runner_placesrunner.mo +share/locale/th/LC_MESSAGES/plasma_runner_powerdevil.mo +share/locale/th/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/th/LC_MESSAGES/plasma_runner_services.mo +share/locale/th/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/th/LC_MESSAGES/plasma_runner_shell.mo +share/locale/th/LC_MESSAGES/plasma_runner_solid.mo +share/locale/th/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/th/LC_MESSAGES/plasma_runner_windowedwidgets.mo +share/locale/th/LC_MESSAGES/plasma_runner_windows.mo +share/locale/th/LC_MESSAGES/soliduiserver5.mo +share/locale/tr/LC_MESSAGES/freespacenotifier.mo +share/locale/tr/LC_MESSAGES/kcminit.mo +share/locale/tr/LC_MESSAGES/kholidays_calendar_plugin.mo +share/locale/tr/LC_MESSAGES/kio5_applications.mo +share/locale/tr/LC_MESSAGES/kio_desktop.mo +share/locale/tr/LC_MESSAGES/klipper.mo +share/locale/tr/LC_MESSAGES/krunner.mo +share/locale/tr/LC_MESSAGES/ksmserver.mo +share/locale/tr/LC_MESSAGES/kuiserver5.mo +share/locale/tr/LC_MESSAGES/libkworkspace.mo +share/locale/tr/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.color.mo +share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.image.mo +share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo +share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo +share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo +share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo +share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo +share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo +share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo +share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo +share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo +share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo +share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo +share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo +share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo +share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.cpu.mo +share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskactivity.mo +share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskusage.mo +share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.memory.mo +share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.net.mo +share/locale/tr/LC_MESSAGES/plasma_containmentactions_applauncher.mo +share/locale/tr/LC_MESSAGES/plasma_containmentactions_contextmenu.mo +share/locale/tr/LC_MESSAGES/plasma_containmentactions_switchwindow.mo +share/locale/tr/LC_MESSAGES/plasma_engine_applicationjobs.mo +share/locale/tr/LC_MESSAGES/plasma_engine_devicenotifications.mo +share/locale/tr/LC_MESSAGES/plasma_engine_keystate.mo +share/locale/tr/LC_MESSAGES/plasma_engine_mpris2.mo +share/locale/tr/LC_MESSAGES/plasma_engine_network.mo +share/locale/tr/LC_MESSAGES/plasma_engine_notifications.mo +share/locale/tr/LC_MESSAGES/plasma_engine_powermanagement.mo +share/locale/tr/LC_MESSAGES/plasma_engine_rss.mo +share/locale/tr/LC_MESSAGES/plasma_engine_share.mo +share/locale/tr/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/tr/LC_MESSAGES/plasma_engine_time.mo +share/locale/tr/LC_MESSAGES/plasma_engine_weather.mo +share/locale/tr/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo +share/locale/tr/LC_MESSAGES/plasma_package_plasmashell.mo +share/locale/tr/LC_MESSAGES/plasma_runner_activities.mo +share/locale/tr/LC_MESSAGES/plasma_runner_baloosearch5.mo +share/locale/tr/LC_MESSAGES/plasma_runner_bookmarksrunner.mo +share/locale/tr/LC_MESSAGES/plasma_runner_calculatorrunner.mo +share/locale/tr/LC_MESSAGES/plasma_runner_kill.mo +share/locale/tr/LC_MESSAGES/plasma_runner_locations.mo +share/locale/tr/LC_MESSAGES/plasma_runner_placesrunner.mo +share/locale/tr/LC_MESSAGES/plasma_runner_powerdevil.mo +share/locale/tr/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/tr/LC_MESSAGES/plasma_runner_services.mo +share/locale/tr/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/tr/LC_MESSAGES/plasma_runner_shell.mo +share/locale/tr/LC_MESSAGES/plasma_runner_solid.mo +share/locale/tr/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/tr/LC_MESSAGES/plasma_runner_windowedwidgets.mo +share/locale/tr/LC_MESSAGES/plasma_runner_windows.mo +share/locale/tr/LC_MESSAGES/plasmashell.mo +share/locale/tr/LC_MESSAGES/plasmashellprivateplugin.mo +share/locale/tr/LC_MESSAGES/soliduiserver5.mo +share/locale/tr/LC_MESSAGES/systemmonitor.mo +share/locale/ug/LC_MESSAGES/freespacenotifier.mo +share/locale/ug/LC_MESSAGES/kcminit.mo +share/locale/ug/LC_MESSAGES/kio5_applications.mo +share/locale/ug/LC_MESSAGES/klipper.mo +share/locale/ug/LC_MESSAGES/ksmserver.mo +share/locale/ug/LC_MESSAGES/kuiserver5.mo +share/locale/ug/LC_MESSAGES/libkworkspace.mo +share/locale/ug/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.image.mo +share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo +share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo +share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo +share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo +share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo +share/locale/ug/LC_MESSAGES/plasma_containmentactions_contextmenu.mo +share/locale/ug/LC_MESSAGES/plasma_containmentactions_switchwindow.mo +share/locale/ug/LC_MESSAGES/plasma_engine_applicationjobs.mo +share/locale/ug/LC_MESSAGES/plasma_engine_keystate.mo +share/locale/ug/LC_MESSAGES/plasma_engine_mpris2.mo +share/locale/ug/LC_MESSAGES/plasma_engine_network.mo +share/locale/ug/LC_MESSAGES/plasma_engine_notifications.mo +share/locale/ug/LC_MESSAGES/plasma_engine_rss.mo +share/locale/ug/LC_MESSAGES/plasma_engine_share.mo +share/locale/ug/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/ug/LC_MESSAGES/plasma_engine_weather.mo +share/locale/ug/LC_MESSAGES/plasma_runner_activities.mo +share/locale/ug/LC_MESSAGES/plasma_runner_bookmarksrunner.mo +share/locale/ug/LC_MESSAGES/plasma_runner_calculatorrunner.mo +share/locale/ug/LC_MESSAGES/plasma_runner_kill.mo +share/locale/ug/LC_MESSAGES/plasma_runner_locations.mo +share/locale/ug/LC_MESSAGES/plasma_runner_placesrunner.mo +share/locale/ug/LC_MESSAGES/plasma_runner_powerdevil.mo +share/locale/ug/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/ug/LC_MESSAGES/plasma_runner_services.mo +share/locale/ug/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/ug/LC_MESSAGES/plasma_runner_shell.mo +share/locale/ug/LC_MESSAGES/plasma_runner_solid.mo +share/locale/ug/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/ug/LC_MESSAGES/plasma_runner_windowedwidgets.mo +share/locale/ug/LC_MESSAGES/plasma_runner_windows.mo +share/locale/ug/LC_MESSAGES/soliduiserver5.mo +share/locale/uk/LC_MESSAGES/freespacenotifier.mo +share/locale/uk/LC_MESSAGES/kcminit.mo +share/locale/uk/LC_MESSAGES/kholidays_calendar_plugin.mo +share/locale/uk/LC_MESSAGES/kio5_applications.mo +share/locale/uk/LC_MESSAGES/kio_desktop.mo +share/locale/uk/LC_MESSAGES/klipper.mo +share/locale/uk/LC_MESSAGES/krunner.mo +share/locale/uk/LC_MESSAGES/ksmserver.mo +share/locale/uk/LC_MESSAGES/kuiserver5.mo +share/locale/uk/LC_MESSAGES/libkworkspace.mo +share/locale/uk/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.color.mo +share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.image.mo +share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo +share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo +share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo +share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo +share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo +share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo +share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo +share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo +share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo +share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo +share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo +share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo +share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo +share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.cpu.mo +share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskactivity.mo +share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskusage.mo +share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.memory.mo +share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.net.mo +share/locale/uk/LC_MESSAGES/plasma_containmentactions_applauncher.mo +share/locale/uk/LC_MESSAGES/plasma_containmentactions_contextmenu.mo +share/locale/uk/LC_MESSAGES/plasma_containmentactions_switchwindow.mo +share/locale/uk/LC_MESSAGES/plasma_engine_applicationjobs.mo +share/locale/uk/LC_MESSAGES/plasma_engine_devicenotifications.mo +share/locale/uk/LC_MESSAGES/plasma_engine_dict.mo +share/locale/uk/LC_MESSAGES/plasma_engine_keystate.mo +share/locale/uk/LC_MESSAGES/plasma_engine_mpris2.mo +share/locale/uk/LC_MESSAGES/plasma_engine_network.mo +share/locale/uk/LC_MESSAGES/plasma_engine_notifications.mo +share/locale/uk/LC_MESSAGES/plasma_engine_powermanagement.mo +share/locale/uk/LC_MESSAGES/plasma_engine_rss.mo +share/locale/uk/LC_MESSAGES/plasma_engine_share.mo +share/locale/uk/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/uk/LC_MESSAGES/plasma_engine_time.mo +share/locale/uk/LC_MESSAGES/plasma_engine_weather.mo +share/locale/uk/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo +share/locale/uk/LC_MESSAGES/plasma_package_plasmashell.mo +share/locale/uk/LC_MESSAGES/plasma_runner_activities.mo +share/locale/uk/LC_MESSAGES/plasma_runner_appstream.mo +share/locale/uk/LC_MESSAGES/plasma_runner_baloosearch5.mo +share/locale/uk/LC_MESSAGES/plasma_runner_bookmarksrunner.mo +share/locale/uk/LC_MESSAGES/plasma_runner_calculatorrunner.mo +share/locale/uk/LC_MESSAGES/plasma_runner_kill.mo +share/locale/uk/LC_MESSAGES/plasma_runner_locations.mo +share/locale/uk/LC_MESSAGES/plasma_runner_placesrunner.mo +share/locale/uk/LC_MESSAGES/plasma_runner_powerdevil.mo +share/locale/uk/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/uk/LC_MESSAGES/plasma_runner_services.mo +share/locale/uk/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/uk/LC_MESSAGES/plasma_runner_shell.mo +share/locale/uk/LC_MESSAGES/plasma_runner_solid.mo +share/locale/uk/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/uk/LC_MESSAGES/plasma_runner_windowedwidgets.mo +share/locale/uk/LC_MESSAGES/plasma_runner_windows.mo +share/locale/uk/LC_MESSAGES/plasmashell.mo +share/locale/uk/LC_MESSAGES/plasmashellprivateplugin.mo +share/locale/uk/LC_MESSAGES/soliduiserver5.mo +share/locale/uk/LC_MESSAGES/systemmonitor.mo +share/locale/uz/LC_MESSAGES/kio5_applications.mo +share/locale/uz/LC_MESSAGES/klipper.mo +share/locale/uz/LC_MESSAGES/ksmserver.mo +share/locale/uz@cyrillic/LC_MESSAGES/kio5_applications.mo +share/locale/uz@cyrillic/LC_MESSAGES/klipper.mo +share/locale/uz@cyrillic/LC_MESSAGES/ksmserver.mo +share/locale/uz@cyrillic/LC_MESSAGES/plasma_containmentactions_contextmenu.mo +share/locale/vi/LC_MESSAGES/kio5_applications.mo +share/locale/vi/LC_MESSAGES/klipper.mo +share/locale/vi/LC_MESSAGES/ksmserver.mo +share/locale/vi/LC_MESSAGES/libkworkspace.mo +share/locale/vi/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo +share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo +share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo +share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo +share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo +share/locale/vi/LC_MESSAGES/soliduiserver5.mo +share/locale/wa/LC_MESSAGES/freespacenotifier.mo +share/locale/wa/LC_MESSAGES/kcminit.mo +share/locale/wa/LC_MESSAGES/kio5_applications.mo +share/locale/wa/LC_MESSAGES/klipper.mo +share/locale/wa/LC_MESSAGES/ksmserver.mo +share/locale/wa/LC_MESSAGES/kuiserver5.mo +share/locale/wa/LC_MESSAGES/libkworkspace.mo +share/locale/wa/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/wa/LC_MESSAGES/plasma_applet_org.kde.image.mo +share/locale/wa/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo +share/locale/wa/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo +share/locale/wa/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo +share/locale/wa/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo +share/locale/wa/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo +share/locale/wa/LC_MESSAGES/plasma_containmentactions_contextmenu.mo +share/locale/wa/LC_MESSAGES/plasma_containmentactions_switchwindow.mo +share/locale/wa/LC_MESSAGES/plasma_engine_applicationjobs.mo +share/locale/wa/LC_MESSAGES/plasma_engine_keystate.mo +share/locale/wa/LC_MESSAGES/plasma_engine_network.mo +share/locale/wa/LC_MESSAGES/plasma_engine_notifications.mo +share/locale/wa/LC_MESSAGES/plasma_engine_rss.mo +share/locale/wa/LC_MESSAGES/plasma_engine_share.mo +share/locale/wa/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/wa/LC_MESSAGES/plasma_engine_weather.mo +share/locale/wa/LC_MESSAGES/plasma_runner_bookmarksrunner.mo +share/locale/wa/LC_MESSAGES/plasma_runner_calculatorrunner.mo +share/locale/wa/LC_MESSAGES/plasma_runner_kill.mo +share/locale/wa/LC_MESSAGES/plasma_runner_locations.mo +share/locale/wa/LC_MESSAGES/plasma_runner_placesrunner.mo +share/locale/wa/LC_MESSAGES/plasma_runner_powerdevil.mo +share/locale/wa/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/wa/LC_MESSAGES/plasma_runner_services.mo +share/locale/wa/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/wa/LC_MESSAGES/plasma_runner_shell.mo +share/locale/wa/LC_MESSAGES/plasma_runner_solid.mo +share/locale/wa/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/wa/LC_MESSAGES/plasma_runner_windowedwidgets.mo +share/locale/wa/LC_MESSAGES/plasma_runner_windows.mo +share/locale/wa/LC_MESSAGES/soliduiserver5.mo +share/locale/xh/LC_MESSAGES/klipper.mo +share/locale/xh/LC_MESSAGES/ksmserver.mo +share/locale/zh_CN/LC_MESSAGES/freespacenotifier.mo +share/locale/zh_CN/LC_MESSAGES/kcminit.mo +share/locale/zh_CN/LC_MESSAGES/kholidays_calendar_plugin.mo +share/locale/zh_CN/LC_MESSAGES/kio5_applications.mo +share/locale/zh_CN/LC_MESSAGES/kio_desktop.mo +share/locale/zh_CN/LC_MESSAGES/klipper.mo +share/locale/zh_CN/LC_MESSAGES/krunner.mo +share/locale/zh_CN/LC_MESSAGES/ksmserver.mo +share/locale/zh_CN/LC_MESSAGES/kuiserver5.mo +share/locale/zh_CN/LC_MESSAGES/libkworkspace.mo +share/locale/zh_CN/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.color.mo +share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.image.mo +share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo +share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo +share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo +share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo +share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo +share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo +share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo +share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo +share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo +share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo +share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo +share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo +share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo +share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.cpu.mo +share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskactivity.mo +share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskusage.mo +share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.memory.mo +share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.net.mo +share/locale/zh_CN/LC_MESSAGES/plasma_containmentactions_applauncher.mo +share/locale/zh_CN/LC_MESSAGES/plasma_containmentactions_contextmenu.mo +share/locale/zh_CN/LC_MESSAGES/plasma_containmentactions_switchwindow.mo +share/locale/zh_CN/LC_MESSAGES/plasma_engine_applicationjobs.mo +share/locale/zh_CN/LC_MESSAGES/plasma_engine_devicenotifications.mo +share/locale/zh_CN/LC_MESSAGES/plasma_engine_dict.mo +share/locale/zh_CN/LC_MESSAGES/plasma_engine_keystate.mo +share/locale/zh_CN/LC_MESSAGES/plasma_engine_mpris2.mo +share/locale/zh_CN/LC_MESSAGES/plasma_engine_network.mo +share/locale/zh_CN/LC_MESSAGES/plasma_engine_notifications.mo +share/locale/zh_CN/LC_MESSAGES/plasma_engine_powermanagement.mo +share/locale/zh_CN/LC_MESSAGES/plasma_engine_rss.mo +share/locale/zh_CN/LC_MESSAGES/plasma_engine_share.mo +share/locale/zh_CN/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/zh_CN/LC_MESSAGES/plasma_engine_time.mo +share/locale/zh_CN/LC_MESSAGES/plasma_engine_weather.mo +share/locale/zh_CN/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo +share/locale/zh_CN/LC_MESSAGES/plasma_package_plasmashell.mo +share/locale/zh_CN/LC_MESSAGES/plasma_runner_activities.mo +share/locale/zh_CN/LC_MESSAGES/plasma_runner_appstream.mo +share/locale/zh_CN/LC_MESSAGES/plasma_runner_baloosearch5.mo +share/locale/zh_CN/LC_MESSAGES/plasma_runner_bookmarksrunner.mo +share/locale/zh_CN/LC_MESSAGES/plasma_runner_calculatorrunner.mo +share/locale/zh_CN/LC_MESSAGES/plasma_runner_kill.mo +share/locale/zh_CN/LC_MESSAGES/plasma_runner_locations.mo +share/locale/zh_CN/LC_MESSAGES/plasma_runner_placesrunner.mo +share/locale/zh_CN/LC_MESSAGES/plasma_runner_powerdevil.mo +share/locale/zh_CN/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/zh_CN/LC_MESSAGES/plasma_runner_services.mo +share/locale/zh_CN/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/zh_CN/LC_MESSAGES/plasma_runner_shell.mo +share/locale/zh_CN/LC_MESSAGES/plasma_runner_solid.mo +share/locale/zh_CN/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/zh_CN/LC_MESSAGES/plasma_runner_windowedwidgets.mo +share/locale/zh_CN/LC_MESSAGES/plasma_runner_windows.mo +share/locale/zh_CN/LC_MESSAGES/plasmashell.mo +share/locale/zh_CN/LC_MESSAGES/plasmashellprivateplugin.mo +share/locale/zh_CN/LC_MESSAGES/soliduiserver5.mo +share/locale/zh_CN/LC_MESSAGES/systemmonitor.mo +share/locale/zh_TW/LC_MESSAGES/freespacenotifier.mo +share/locale/zh_TW/LC_MESSAGES/kcminit.mo +share/locale/zh_TW/LC_MESSAGES/kholidays_calendar_plugin.mo +share/locale/zh_TW/LC_MESSAGES/kio5_applications.mo +share/locale/zh_TW/LC_MESSAGES/klipper.mo +share/locale/zh_TW/LC_MESSAGES/krunner.mo +share/locale/zh_TW/LC_MESSAGES/ksmserver.mo +share/locale/zh_TW/LC_MESSAGES/kuiserver5.mo +share/locale/zh_TW/LC_MESSAGES/libkworkspace.mo +share/locale/zh_TW/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.color.mo +share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.image.mo +share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo +share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo +share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo +share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo +share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo +share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo +share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo +share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo +share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo +share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo +share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo +share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo +share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo +share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.cpu.mo +share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskactivity.mo +share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskusage.mo +share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.memory.mo +share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.net.mo +share/locale/zh_TW/LC_MESSAGES/plasma_containmentactions_contextmenu.mo +share/locale/zh_TW/LC_MESSAGES/plasma_containmentactions_switchwindow.mo +share/locale/zh_TW/LC_MESSAGES/plasma_engine_applicationjobs.mo +share/locale/zh_TW/LC_MESSAGES/plasma_engine_devicenotifications.mo +share/locale/zh_TW/LC_MESSAGES/plasma_engine_keystate.mo +share/locale/zh_TW/LC_MESSAGES/plasma_engine_mpris2.mo +share/locale/zh_TW/LC_MESSAGES/plasma_engine_network.mo +share/locale/zh_TW/LC_MESSAGES/plasma_engine_notifications.mo +share/locale/zh_TW/LC_MESSAGES/plasma_engine_powermanagement.mo +share/locale/zh_TW/LC_MESSAGES/plasma_engine_rss.mo +share/locale/zh_TW/LC_MESSAGES/plasma_engine_share.mo +share/locale/zh_TW/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/zh_TW/LC_MESSAGES/plasma_engine_time.mo +share/locale/zh_TW/LC_MESSAGES/plasma_engine_weather.mo +share/locale/zh_TW/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo +share/locale/zh_TW/LC_MESSAGES/plasma_package_plasmashell.mo +share/locale/zh_TW/LC_MESSAGES/plasma_runner_activities.mo +share/locale/zh_TW/LC_MESSAGES/plasma_runner_baloosearch5.mo +share/locale/zh_TW/LC_MESSAGES/plasma_runner_bookmarksrunner.mo +share/locale/zh_TW/LC_MESSAGES/plasma_runner_calculatorrunner.mo +share/locale/zh_TW/LC_MESSAGES/plasma_runner_kill.mo +share/locale/zh_TW/LC_MESSAGES/plasma_runner_locations.mo +share/locale/zh_TW/LC_MESSAGES/plasma_runner_placesrunner.mo +share/locale/zh_TW/LC_MESSAGES/plasma_runner_powerdevil.mo +share/locale/zh_TW/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/zh_TW/LC_MESSAGES/plasma_runner_services.mo +share/locale/zh_TW/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/zh_TW/LC_MESSAGES/plasma_runner_shell.mo +share/locale/zh_TW/LC_MESSAGES/plasma_runner_solid.mo +share/locale/zh_TW/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/zh_TW/LC_MESSAGES/plasma_runner_windowedwidgets.mo +share/locale/zh_TW/LC_MESSAGES/plasma_runner_windows.mo +share/locale/zh_TW/LC_MESSAGES/plasmashell.mo +share/locale/zh_TW/LC_MESSAGES/plasmashellprivateplugin.mo +share/locale/zh_TW/LC_MESSAGES/soliduiserver5.mo +share/locale/zh_TW/LC_MESSAGES/systemmonitor.mo +share/metainfo/org.kde.breeze.desktop.appdata.xml +share/metainfo/org.kde.color.appdata.xml +share/metainfo/org.kde.image.appdata.xml +share/metainfo/org.kde.plasma.activitybar.appdata.xml +share/metainfo/org.kde.plasma.analogclock.appdata.xml +share/metainfo/org.kde.plasma.appmenu.appdata.xml +share/metainfo/org.kde.plasma.battery.appdata.xml +share/metainfo/org.kde.plasma.calendar.appdata.xml +share/metainfo/org.kde.plasma.clipboard.appdata.xml +share/metainfo/org.kde.plasma.devicenotifier.appdata.xml +share/metainfo/org.kde.plasma.digitalclock.appdata.xml +share/metainfo/org.kde.plasma.lock_logout.appdata.xml +share/metainfo/org.kde.plasma.mediacontroller.appdata.xml +share/metainfo/org.kde.plasma.notifications.appdata.xml +share/metainfo/org.kde.plasma.systemmonitor.cpu.appdata.xml +share/metainfo/org.kde.plasma.systemmonitor.diskactivity.appdata.xml +share/metainfo/org.kde.plasma.systemmonitor.diskusage.appdata.xml +share/metainfo/org.kde.plasma.systemmonitor.memory.appdata.xml +share/metainfo/org.kde.plasma.systemmonitor.net.appdata.xml +share/metainfo/org.kde.plasma.systemtray.appdata.xml +share/metainfo/org.kde.slideshow.appdata.xml +share/plasma/look-and-feel/org.kde.breeze.desktop/contents/components/ActionButton.qml +share/plasma/look-and-feel/org.kde.breeze.desktop/contents/components/Battery.qml +share/plasma/look-and-feel/org.kde.breeze.desktop/contents/components/Clock.qml +share/plasma/look-and-feel/org.kde.breeze.desktop/contents/components/KeyboardLayoutButton.qml +share/plasma/look-and-feel/org.kde.breeze.desktop/contents/components/SessionManagementScreen.qml +share/plasma/look-and-feel/org.kde.breeze.desktop/contents/components/UserDelegate.qml +share/plasma/look-and-feel/org.kde.breeze.desktop/contents/components/UserList.qml +share/plasma/look-and-feel/org.kde.breeze.desktop/contents/components/VirtualKeyboard.qml +share/plasma/look-and-feel/org.kde.breeze.desktop/contents/components/artwork/README.txt +share/plasma/look-and-feel/org.kde.breeze.desktop/contents/components/artwork/logout_primary.svgz +share/plasma/look-and-feel/org.kde.breeze.desktop/contents/components/artwork/restart_primary.svgz +share/plasma/look-and-feel/org.kde.breeze.desktop/contents/components/artwork/shutdown_primary.svgz +share/plasma/look-and-feel/org.kde.breeze.desktop/contents/defaults +share/plasma/look-and-feel/org.kde.breeze.desktop/contents/desktopswitcher/DesktopSwitcher.qml +share/plasma/look-and-feel/org.kde.breeze.desktop/contents/lockscreen/LockOsd.qml +share/plasma/look-and-feel/org.kde.breeze.desktop/contents/lockscreen/LockScreen.qml +share/plasma/look-and-feel/org.kde.breeze.desktop/contents/lockscreen/LockScreenUi.qml +share/plasma/look-and-feel/org.kde.breeze.desktop/contents/lockscreen/MainBlock.qml +share/plasma/look-and-feel/org.kde.breeze.desktop/contents/lockscreen/MediaControls.qml +share/plasma/look-and-feel/org.kde.breeze.desktop/contents/lockscreen/config.qml +share/plasma/look-and-feel/org.kde.breeze.desktop/contents/lockscreen/config.xml +share/plasma/look-and-feel/org.kde.breeze.desktop/contents/logout/Logout.qml +share/plasma/look-and-feel/org.kde.breeze.desktop/contents/logout/LogoutButton.qml +share/plasma/look-and-feel/org.kde.breeze.desktop/contents/osd/Osd.qml +share/plasma/look-and-feel/org.kde.breeze.desktop/contents/osd/OsdItem.qml +share/plasma/look-and-feel/org.kde.breeze.desktop/contents/previews/desktopswitcher.png +share/plasma/look-and-feel/org.kde.breeze.desktop/contents/previews/fullscreenpreview.jpg +share/plasma/look-and-feel/org.kde.breeze.desktop/contents/previews/lockscreen.png +share/plasma/look-and-feel/org.kde.breeze.desktop/contents/previews/loginmanager.png +share/plasma/look-and-feel/org.kde.breeze.desktop/contents/previews/preview.png +share/plasma/look-and-feel/org.kde.breeze.desktop/contents/previews/runcommand.png +share/plasma/look-and-feel/org.kde.breeze.desktop/contents/previews/splash.png +share/plasma/look-and-feel/org.kde.breeze.desktop/contents/previews/userswitcher.png +share/plasma/look-and-feel/org.kde.breeze.desktop/contents/previews/windowdecoration.png +share/plasma/look-and-feel/org.kde.breeze.desktop/contents/previews/windowswitcher.png +share/plasma/look-and-feel/org.kde.breeze.desktop/contents/runcommand/RunCommand.qml +share/plasma/look-and-feel/org.kde.breeze.desktop/contents/splash/Splash.qml +share/plasma/look-and-feel/org.kde.breeze.desktop/contents/splash/images/busywidget.svgz +share/plasma/look-and-feel/org.kde.breeze.desktop/contents/splash/images/kde.svgz +share/plasma/look-and-feel/org.kde.breeze.desktop/contents/splash/images/plasma.svgz +share/plasma/look-and-feel/org.kde.breeze.desktop/contents/userswitcher/UserSwitcher.qml +share/plasma/look-and-feel/org.kde.breeze.desktop/contents/windowdecoration/WindowDecoration.qml +share/plasma/look-and-feel/org.kde.breeze.desktop/contents/windowswitcher/WindowSwitcher.qml +share/plasma/look-and-feel/org.kde.breeze.desktop/metadata.desktop +share/plasma/look-and-feel/org.kde.breeze.desktop/metadata.json +share/plasma/plasmoids/org.kde.plasma.activitybar/contents/ui/main.qml +share/plasma/plasmoids/org.kde.plasma.activitybar/metadata.desktop +share/plasma/plasmoids/org.kde.plasma.activitybar/metadata.json +share/plasma/plasmoids/org.kde.plasma.analogclock/contents/config/config.qml +share/plasma/plasmoids/org.kde.plasma.analogclock/contents/config/main.xml +share/plasma/plasmoids/org.kde.plasma.analogclock/contents/ui/Hand.qml +share/plasma/plasmoids/org.kde.plasma.analogclock/contents/ui/analogclock.qml +share/plasma/plasmoids/org.kde.plasma.analogclock/contents/ui/configGeneral.qml +share/plasma/plasmoids/org.kde.plasma.analogclock/metadata.desktop +share/plasma/plasmoids/org.kde.plasma.analogclock/metadata.json +share/plasma/plasmoids/org.kde.plasma.appmenu/contents/config/config.qml +share/plasma/plasmoids/org.kde.plasma.appmenu/contents/config/main.xml +share/plasma/plasmoids/org.kde.plasma.appmenu/contents/ui/configGeneral.qml +share/plasma/plasmoids/org.kde.plasma.appmenu/contents/ui/main.qml +share/plasma/plasmoids/org.kde.plasma.appmenu/metadata.desktop +share/plasma/plasmoids/org.kde.plasma.appmenu/metadata.json +share/plasma/plasmoids/org.kde.plasma.battery/contents/code/logic.js +share/plasma/plasmoids/org.kde.plasma.battery/contents/config/config.qml +share/plasma/plasmoids/org.kde.plasma.battery/contents/config/main.xml +share/plasma/plasmoids/org.kde.plasma.battery/contents/ui/BadgeOverlay.qml +share/plasma/plasmoids/org.kde.plasma.battery/contents/ui/BatteryItem.qml +share/plasma/plasmoids/org.kde.plasma.battery/contents/ui/BrightnessItem.qml +share/plasma/plasmoids/org.kde.plasma.battery/contents/ui/CompactRepresentation.qml +share/plasma/plasmoids/org.kde.plasma.battery/contents/ui/ConfigGeneral.qml +share/plasma/plasmoids/org.kde.plasma.battery/contents/ui/InhibitionHint.qml +share/plasma/plasmoids/org.kde.plasma.battery/contents/ui/PopupDialog.qml +share/plasma/plasmoids/org.kde.plasma.battery/contents/ui/PowerManagementItem.qml +share/plasma/plasmoids/org.kde.plasma.battery/contents/ui/batterymonitor.qml +share/plasma/plasmoids/org.kde.plasma.battery/metadata.desktop +share/plasma/plasmoids/org.kde.plasma.battery/metadata.json +share/plasma/plasmoids/org.kde.plasma.calendar/contents/config/config.qml +share/plasma/plasmoids/org.kde.plasma.calendar/contents/config/main.xml +share/plasma/plasmoids/org.kde.plasma.calendar/contents/images/mini-calendar.svgz +share/plasma/plasmoids/org.kde.plasma.calendar/contents/ui/configAgenda.qml +share/plasma/plasmoids/org.kde.plasma.calendar/contents/ui/configGeneral.qml +share/plasma/plasmoids/org.kde.plasma.calendar/contents/ui/main.qml +share/plasma/plasmoids/org.kde.plasma.calendar/metadata.desktop +share/plasma/plasmoids/org.kde.plasma.calendar/metadata.json +share/plasma/plasmoids/org.kde.plasma.clipboard/contents/ui/BarcodePage.qml +share/plasma/plasmoids/org.kde.plasma.clipboard/contents/ui/ClipboardItemDelegate.qml +share/plasma/plasmoids/org.kde.plasma.clipboard/contents/ui/ClipboardPage.qml +share/plasma/plasmoids/org.kde.plasma.clipboard/contents/ui/Menu.qml +share/plasma/plasmoids/org.kde.plasma.clipboard/contents/ui/clipboard.qml +share/plasma/plasmoids/org.kde.plasma.clipboard/metadata.desktop +share/plasma/plasmoids/org.kde.plasma.clipboard/metadata.json +share/plasma/plasmoids/org.kde.plasma.devicenotifier/contents/config/config.qml +share/plasma/plasmoids/org.kde.plasma.devicenotifier/contents/config/main.xml +share/plasma/plasmoids/org.kde.plasma.devicenotifier/contents/ui/ActionItem.qml +share/plasma/plasmoids/org.kde.plasma.devicenotifier/contents/ui/DeviceItem.qml +share/plasma/plasmoids/org.kde.plasma.devicenotifier/contents/ui/FullRepresentation.qml +share/plasma/plasmoids/org.kde.plasma.devicenotifier/contents/ui/configGeneral.qml +share/plasma/plasmoids/org.kde.plasma.devicenotifier/contents/ui/devicenotifier.qml +share/plasma/plasmoids/org.kde.plasma.devicenotifier/metadata.desktop +share/plasma/plasmoids/org.kde.plasma.devicenotifier/metadata.json +share/plasma/plasmoids/org.kde.plasma.digitalclock/contents/config/config.qml +share/plasma/plasmoids/org.kde.plasma.digitalclock/contents/config/main.xml +share/plasma/plasmoids/org.kde.plasma.digitalclock/contents/ui/CalendarView.qml +share/plasma/plasmoids/org.kde.plasma.digitalclock/contents/ui/DigitalClock.qml +share/plasma/plasmoids/org.kde.plasma.digitalclock/contents/ui/MonthMenu.qml +share/plasma/plasmoids/org.kde.plasma.digitalclock/contents/ui/Tooltip.qml +share/plasma/plasmoids/org.kde.plasma.digitalclock/contents/ui/configAppearance.qml +share/plasma/plasmoids/org.kde.plasma.digitalclock/contents/ui/configCalendar.qml +share/plasma/plasmoids/org.kde.plasma.digitalclock/contents/ui/configTimeZones.qml +share/plasma/plasmoids/org.kde.plasma.digitalclock/contents/ui/main.qml +share/plasma/plasmoids/org.kde.plasma.digitalclock/metadata.desktop +share/plasma/plasmoids/org.kde.plasma.digitalclock/metadata.json +share/plasma/plasmoids/org.kde.plasma.icon/contents/config/main.xml +share/plasma/plasmoids/org.kde.plasma.icon/contents/ui/main.qml +share/plasma/plasmoids/org.kde.plasma.icon/metadata.desktop +share/plasma/plasmoids/org.kde.plasma.icon/metadata.json +share/plasma/plasmoids/org.kde.plasma.lock_logout/contents/code/data.js +share/plasma/plasmoids/org.kde.plasma.lock_logout/contents/config/config.qml +share/plasma/plasmoids/org.kde.plasma.lock_logout/contents/config/main.xml +share/plasma/plasmoids/org.kde.plasma.lock_logout/contents/ui/ConfigGeneral.qml +share/plasma/plasmoids/org.kde.plasma.lock_logout/contents/ui/lockout.qml +share/plasma/plasmoids/org.kde.plasma.lock_logout/metadata.desktop +share/plasma/plasmoids/org.kde.plasma.lock_logout/metadata.json +share/plasma/plasmoids/org.kde.plasma.mediacontroller/contents/ui/ExpandedRepresentation.qml +share/plasma/plasmoids/org.kde.plasma.mediacontroller/contents/ui/main.qml +share/plasma/plasmoids/org.kde.plasma.mediacontroller/metadata.desktop +share/plasma/plasmoids/org.kde.plasma.mediacontroller/metadata.json +share/plasma/plasmoids/org.kde.plasma.notifications/contents/code/uiproperties.js +share/plasma/plasmoids/org.kde.plasma.notifications/contents/config/config.qml +share/plasma/plasmoids/org.kde.plasma.notifications/contents/config/main.xml +share/plasma/plasmoids/org.kde.plasma.notifications/contents/tests/test.qml +share/plasma/plasmoids/org.kde.plasma.notifications/contents/ui/JobDelegate.qml +share/plasma/plasmoids/org.kde.plasma.notifications/contents/ui/JobDetailsItem.qml +share/plasma/plasmoids/org.kde.plasma.notifications/contents/ui/Jobs.qml +share/plasma/plasmoids/org.kde.plasma.notifications/contents/ui/NotificationDelegate.qml +share/plasma/plasmoids/org.kde.plasma.notifications/contents/ui/NotificationIcon.qml +share/plasma/plasmoids/org.kde.plasma.notifications/contents/ui/NotificationItem.qml +share/plasma/plasmoids/org.kde.plasma.notifications/contents/ui/NotificationPopup.qml +share/plasma/plasmoids/org.kde.plasma.notifications/contents/ui/Notifications.qml +share/plasma/plasmoids/org.kde.plasma.notifications/contents/ui/ScreenPositionSelector.qml +share/plasma/plasmoids/org.kde.plasma.notifications/contents/ui/ThumbnailStrip.qml +share/plasma/plasmoids/org.kde.plasma.notifications/contents/ui/configNotifications.qml +share/plasma/plasmoids/org.kde.plasma.notifications/contents/ui/main.qml +share/plasma/plasmoids/org.kde.plasma.notifications/metadata.desktop +share/plasma/plasmoids/org.kde.plasma.notifications/metadata.json +share/plasma/plasmoids/org.kde.plasma.panelspacer/contents/config/main.xml +share/plasma/plasmoids/org.kde.plasma.panelspacer/contents/ui/main.qml +share/plasma/plasmoids/org.kde.plasma.panelspacer/metadata.desktop +share/plasma/plasmoids/org.kde.plasma.panelspacer/metadata.json +share/plasma/plasmoids/org.kde.plasma.private.systemtray/contents/applet/CompactApplet.qml +share/plasma/plasmoids/org.kde.plasma.private.systemtray/contents/config/config.qml +share/plasma/plasmoids/org.kde.plasma.private.systemtray/contents/config/main.xml +share/plasma/plasmoids/org.kde.plasma.private.systemtray/contents/ui/ConfigEntries.qml +share/plasma/plasmoids/org.kde.plasma.private.systemtray/contents/ui/ConfigGeneral.qml +share/plasma/plasmoids/org.kde.plasma.private.systemtray/contents/ui/CurrentItemHighLight.qml +share/plasma/plasmoids/org.kde.plasma.private.systemtray/contents/ui/ExpandedRepresentation.qml +share/plasma/plasmoids/org.kde.plasma.private.systemtray/contents/ui/ExpanderArrow.qml +share/plasma/plasmoids/org.kde.plasma.private.systemtray/contents/ui/HiddenItemsView.qml +share/plasma/plasmoids/org.kde.plasma.private.systemtray/contents/ui/PlasmoidPopupsContainer.qml +share/plasma/plasmoids/org.kde.plasma.private.systemtray/contents/ui/items/AbstractItem.qml +share/plasma/plasmoids/org.kde.plasma.private.systemtray/contents/ui/items/PlasmoidItem.qml +share/plasma/plasmoids/org.kde.plasma.private.systemtray/contents/ui/items/PulseAnimation.qml +share/plasma/plasmoids/org.kde.plasma.private.systemtray/contents/ui/items/StatusNotifierItem.qml +share/plasma/plasmoids/org.kde.plasma.private.systemtray/contents/ui/main.qml +share/plasma/plasmoids/org.kde.plasma.private.systemtray/metadata.desktop +share/plasma/plasmoids/org.kde.plasma.private.systemtray/metadata.json +share/plasma/plasmoids/org.kde.plasma.systemmonitor.cpu/contents/config/config.qml +share/plasma/plasmoids/org.kde.plasma.systemmonitor.cpu/contents/config/main.xml +share/plasma/plasmoids/org.kde.plasma.systemmonitor.cpu/contents/ui/Applet.qml +share/plasma/plasmoids/org.kde.plasma.systemmonitor.cpu/contents/ui/ConfigGeneral.qml +share/plasma/plasmoids/org.kde.plasma.systemmonitor.cpu/contents/ui/DoublePlotter.qml +share/plasma/plasmoids/org.kde.plasma.systemmonitor.cpu/contents/ui/SinglePlotter.qml +share/plasma/plasmoids/org.kde.plasma.systemmonitor.cpu/contents/ui/cpu.qml +share/plasma/plasmoids/org.kde.plasma.systemmonitor.cpu/contents/ui/cpuConfig.qml +share/plasma/plasmoids/org.kde.plasma.systemmonitor.cpu/metadata.desktop +share/plasma/plasmoids/org.kde.plasma.systemmonitor.cpu/metadata.json +share/plasma/plasmoids/org.kde.plasma.systemmonitor.diskactivity/contents/config/config.qml +share/plasma/plasmoids/org.kde.plasma.systemmonitor.diskactivity/contents/config/main.xml +share/plasma/plasmoids/org.kde.plasma.systemmonitor.diskactivity/contents/ui/Applet.qml +share/plasma/plasmoids/org.kde.plasma.systemmonitor.diskactivity/contents/ui/ConfigGeneral.qml +share/plasma/plasmoids/org.kde.plasma.systemmonitor.diskactivity/contents/ui/DoublePlotter.qml +share/plasma/plasmoids/org.kde.plasma.systemmonitor.diskactivity/contents/ui/SinglePlotter.qml +share/plasma/plasmoids/org.kde.plasma.systemmonitor.diskactivity/contents/ui/diskactivity.qml +share/plasma/plasmoids/org.kde.plasma.systemmonitor.diskactivity/contents/ui/diskactivityConfig.qml +share/plasma/plasmoids/org.kde.plasma.systemmonitor.diskactivity/metadata.desktop +share/plasma/plasmoids/org.kde.plasma.systemmonitor.diskactivity/metadata.json +share/plasma/plasmoids/org.kde.plasma.systemmonitor.diskusage/contents/config/config.qml +share/plasma/plasmoids/org.kde.plasma.systemmonitor.diskusage/contents/config/main.xml +share/plasma/plasmoids/org.kde.plasma.systemmonitor.diskusage/contents/ui/Applet.qml +share/plasma/plasmoids/org.kde.plasma.systemmonitor.diskusage/contents/ui/ConfigGeneral.qml +share/plasma/plasmoids/org.kde.plasma.systemmonitor.diskusage/contents/ui/DoublePlotter.qml +share/plasma/plasmoids/org.kde.plasma.systemmonitor.diskusage/contents/ui/SinglePlotter.qml +share/plasma/plasmoids/org.kde.plasma.systemmonitor.diskusage/contents/ui/diskusage.qml +share/plasma/plasmoids/org.kde.plasma.systemmonitor.diskusage/contents/ui/diskusageConfig.qml +share/plasma/plasmoids/org.kde.plasma.systemmonitor.diskusage/metadata.desktop +share/plasma/plasmoids/org.kde.plasma.systemmonitor.diskusage/metadata.json +share/plasma/plasmoids/org.kde.plasma.systemmonitor.memory/contents/config/config.qml +share/plasma/plasmoids/org.kde.plasma.systemmonitor.memory/contents/config/main.xml +share/plasma/plasmoids/org.kde.plasma.systemmonitor.memory/contents/ui/Applet.qml +share/plasma/plasmoids/org.kde.plasma.systemmonitor.memory/contents/ui/ConfigGeneral.qml +share/plasma/plasmoids/org.kde.plasma.systemmonitor.memory/contents/ui/DoublePlotter.qml +share/plasma/plasmoids/org.kde.plasma.systemmonitor.memory/contents/ui/SinglePlotter.qml +share/plasma/plasmoids/org.kde.plasma.systemmonitor.memory/contents/ui/memory.qml +share/plasma/plasmoids/org.kde.plasma.systemmonitor.memory/contents/ui/memoryConfig.qml +share/plasma/plasmoids/org.kde.plasma.systemmonitor.memory/metadata.desktop +share/plasma/plasmoids/org.kde.plasma.systemmonitor.memory/metadata.json +share/plasma/plasmoids/org.kde.plasma.systemmonitor.net/contents/config/config.qml +share/plasma/plasmoids/org.kde.plasma.systemmonitor.net/contents/config/main.xml +share/plasma/plasmoids/org.kde.plasma.systemmonitor.net/contents/ui/Applet.qml +share/plasma/plasmoids/org.kde.plasma.systemmonitor.net/contents/ui/ConfigGeneral.qml +share/plasma/plasmoids/org.kde.plasma.systemmonitor.net/contents/ui/DoublePlotter.qml +share/plasma/plasmoids/org.kde.plasma.systemmonitor.net/contents/ui/SinglePlotter.qml +share/plasma/plasmoids/org.kde.plasma.systemmonitor.net/contents/ui/net.qml +share/plasma/plasmoids/org.kde.plasma.systemmonitor.net/contents/ui/netConfig.qml +share/plasma/plasmoids/org.kde.plasma.systemmonitor.net/metadata.desktop +share/plasma/plasmoids/org.kde.plasma.systemmonitor.net/metadata.json +share/plasma/plasmoids/org.kde.plasma.systemtray/contents/ui/main.qml +share/plasma/plasmoids/org.kde.plasma.systemtray/metadata.desktop +share/plasma/plasmoids/org.kde.plasma.systemtray/metadata.json +share/plasma/services/activities.operations +share/plasma/services/applicationjobs.operations +share/plasma/services/apps.operations +share/plasma/services/hotplug.operations +share/plasma/services/modifierkeystate.operations +share/plasma/services/mpris2.operations +share/plasma/services/notifications.operations +share/plasma/services/org.kde.places.operations +share/plasma/services/org.kde.plasma.clipboard.operations +share/plasma/services/packagekit.operations +share/plasma/services/powermanagementservice.operations +share/plasma/services/share.operations +share/plasma/services/soliddevice.operations +share/plasma/services/statusnotifieritem.operations +share/plasma/shareprovider/im9/contents/code/main.js +share/plasma/shareprovider/im9/metadata.desktop +share/plasma/shareprovider/imgsusepasteorg/contents/code/main.js +share/plasma/shareprovider/imgsusepasteorg/metadata.desktop +share/plasma/shareprovider/imgur/contents/code/main.js +share/plasma/shareprovider/imgur/metadata.desktop +share/plasma/shareprovider/kde/contents/code/main.js +share/plasma/shareprovider/kde/metadata.desktop +share/plasma/shareprovider/pastebincom/contents/code/main.js +share/plasma/shareprovider/pastebincom/metadata.desktop +share/plasma/shareprovider/pasteopensuseorg/contents/code/main.js +share/plasma/shareprovider/pasteopensuseorg/metadata.desktop +share/plasma/shareprovider/pasteubuntucom/contents/code/main.js +share/plasma/shareprovider/pasteubuntucom/metadata.desktop +share/plasma/shareprovider/privatepastecom/contents/code/main.js +share/plasma/shareprovider/privatepastecom/metadata.desktop +share/plasma/shareprovider/simplestimagehosting/contents/code/main.js +share/plasma/shareprovider/simplestimagehosting/metadata.desktop +share/plasma/shareprovider/wklej/contents/code/main.js +share/plasma/shareprovider/wklej/metadata.desktop +share/plasma/shareprovider/wstaw/contents/code/main.js +share/plasma/shareprovider/wstaw/metadata.desktop +share/plasma/wallpapers/org.kde.color/contents/config/main.xml +share/plasma/wallpapers/org.kde.color/contents/ui/config.qml +share/plasma/wallpapers/org.kde.color/contents/ui/main.qml +share/plasma/wallpapers/org.kde.color/metadata.desktop +share/plasma/wallpapers/org.kde.color/metadata.json +share/plasma/wallpapers/org.kde.color/plasma-wallpaper-color.desktop +share/plasma/wallpapers/org.kde.image/contents/config/main.xml +share/plasma/wallpapers/org.kde.image/contents/ui/WallpaperDelegate.qml +share/plasma/wallpapers/org.kde.image/contents/ui/config.qml +share/plasma/wallpapers/org.kde.image/contents/ui/main.qml +share/plasma/wallpapers/org.kde.image/metadata.desktop +share/plasma/wallpapers/org.kde.image/metadata.json +share/plasma/wallpapers/org.kde.image/platformcontents/phone/ui/WallpaperDelegate.qml +share/plasma/wallpapers/org.kde.image/platformcontents/phone/ui/config.qml +share/plasma/wallpapers/org.kde.image/platformcontents/phone/ui/customwallpaper.qml +share/plasma/wallpapers/org.kde.image/platformcontents/touch/ui/WallpaperDelegate.qml +share/plasma/wallpapers/org.kde.image/platformcontents/touch/ui/config.qml +share/plasma/wallpapers/org.kde.slideshow/contents/config/main.xml +share/plasma/wallpapers/org.kde.slideshow/contents/ui/WallpaperDelegate.qml +share/plasma/wallpapers/org.kde.slideshow/contents/ui/config.qml +share/plasma/wallpapers/org.kde.slideshow/contents/ui/main.qml +share/plasma/wallpapers/org.kde.slideshow/metadata.desktop +share/plasma/wallpapers/org.kde.slideshow/metadata.json +share/sddm/themes/breeze/Background.qml +share/sddm/themes/breeze/Clock.qml +share/sddm/themes/breeze/KeyboardButton.qml +share/sddm/themes/breeze/Login.qml +share/sddm/themes/breeze/Main.qml +share/sddm/themes/breeze/SessionButton.qml +share/sddm/themes/breeze/components/ActionButton.qml +share/sddm/themes/breeze/components/Battery.qml +share/sddm/themes/breeze/components/Clock.qml +share/sddm/themes/breeze/components/KeyboardLayoutButton.qml +share/sddm/themes/breeze/components/SessionManagementScreen.qml +share/sddm/themes/breeze/components/UserDelegate.qml +share/sddm/themes/breeze/components/UserList.qml +share/sddm/themes/breeze/components/VirtualKeyboard.qml +share/sddm/themes/breeze/components/artwork/logout_primary.svgz +share/sddm/themes/breeze/components/artwork/restart_primary.svgz +share/sddm/themes/breeze/components/artwork/shutdown_primary.svgz +share/sddm/themes/breeze/metadata.desktop +share/sddm/themes/breeze/preview.png +share/sddm/themes/breeze/theme.conf +share/solid/actions/test-predicate-openinwindow.desktop +share/wayland-sessions/plasmawayland.desktop +share/xsessions/plasma.desktop Property changes on: head/x11/plasma5-plasma-workspace/pkg-plist ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/x11-themes/Makefile =================================================================== --- head/x11-themes/Makefile (revision 468494) +++ head/x11-themes/Makefile (revision 468495) @@ -1,178 +1,184 @@ # $FreeBSD$ # COMMENT = X11 themes SUBDIR += adapta-backgrounds SUBDIR += adapta-gtk-theme SUBDIR += adwaita-common SUBDIR += adwaita-icon-theme SUBDIR += adwaita-qt4 SUBDIR += adwaita-qt5 SUBDIR += arc-gruvbox-theme SUBDIR += audacious-skins SUBDIR += beastie SUBDIR += claws-mail-themes SUBDIR += clearlooks SUBDIR += clearlooks-metacity SUBDIR += clearlooks-phenix-theme SUBDIR += clearlooks-themes SUBDIR += clearlooks-themes-extras SUBDIR += cursor-ardoise-theme SUBDIR += cursor-chameleon-anthracite SUBDIR += cursor-chameleon-darkskyblue SUBDIR += cursor-chameleon-pearl SUBDIR += cursor-chameleon-skyblue SUBDIR += cursor-chameleon-white SUBDIR += cursor-crystal-theme SUBDIR += cursor-dmz-aa-theme SUBDIR += cursor-dmz-theme SUBDIR += cursor-ecliz SUBDIR += cursor-grounation-theme SUBDIR += cursor-jimmac-theme SUBDIR += cursor-neutral-theme SUBDIR += cursor-neutral-white-theme SUBDIR += cursor-polar-theme SUBDIR += e16-themes SUBDIR += emerald-themes SUBDIR += fluxbox-tenr-styles-pack SUBDIR += fvwm-themes SUBDIR += gnome-backgrounds SUBDIR += gnome-icon-theme-symbolic SUBDIR += gnome-icons SUBDIR += gnome-icons-aqua-fusion SUBDIR += gnome-icons-crystal SUBDIR += gnome-icons-dropline-neu SUBDIR += gnome-icons-dropline-nou SUBDIR += gnome-icons-elementary SUBDIR += gnome-icons-faenza SUBDIR += gnome-icons-gentoo-test SUBDIR += gnome-icons-gion SUBDIR += gnome-icons-iris SUBDIR += gnome-icons-jini SUBDIR += gnome-icons-lila SUBDIR += gnome-icons-noia-full SUBDIR += gnome-icons-noia-warm SUBDIR += gnome-icons-refined SUBDIR += gnome-icons-slick SUBDIR += gnome-icons-snow-apple SUBDIR += gnome-icons-stylish SUBDIR += gnome-icons-ximian-south SUBDIR += gnome-themes SUBDIR += gnome-themes-extras SUBDIR += gnome-themes-standard SUBDIR += greybird-theme SUBDIR += gtk-E17-theme SUBDIR += gtk-aluminumalloy-cryogenic-theme SUBDIR += gtk-aluminumalloy-smog-theme SUBDIR += gtk-aluminumalloy-toxic-theme SUBDIR += gtk-aluminumalloy-volcanic-theme SUBDIR += gtk-aquaextremesunken-theme SUBDIR += gtk-arc-themes SUBDIR += gtk-aurora-engine SUBDIR += gtk-blueprint-engine SUBDIR += gtk-cleanice-engine SUBDIR += gtk-digital-cream-theme SUBDIR += gtk-digital-harmony-theme SUBDIR += gtk-engines2 SUBDIR += gtk-envy-theme SUBDIR += gtk-equinox-engine SUBDIR += gtk-gray-theme SUBDIR += gtk-lila-theme SUBDIR += gtk-lila-theme-extras SUBDIR += gtk-longhorninspirat-theme SUBDIR += gtk-milk-theme SUBDIR += gtk-murrina-aqua SUBDIR += gtk-murrina-fancy-clearlooks SUBDIR += gtk-murrina-lightblue SUBDIR += gtk-murrine-engine SUBDIR += gtk-murrine-themes SUBDIR += gtk-nodoka-engine SUBDIR += gtk-oxygen-engine SUBDIR += gtk-qnxtheme SUBDIR += gtk-qt4-engine SUBDIR += gtk-xfce-engine SUBDIR += gtk3-oxygen-engine SUBDIR += gtk3-unico-engine SUBDIR += icon-naming-utils SUBDIR += icons-human-azul SUBDIR += icons-tango SUBDIR += icons-tango-extras SUBDIR += irssi-themes SUBDIR += kde-gtk-config SUBDIR += kde-icons-black-and-white SUBDIR += kde-icons-gartoon-blue-svg SUBDIR += kde-icons-gartoon-svg SUBDIR += kde-icons-graphite-rade8 SUBDIR += kde-icons-kool-gorilla SUBDIR += kde-icons-lime-rade8 SUBDIR += kde-icons-lush SUBDIR += kde-icons-noia SUBDIR += kde-icons-nuovext2 SUBDIR += kde-icons-nuvola SUBDIR += kde-base-artwork-kde4 SUBDIR += kde-wallpapers-kde4 SUBDIR += kde4-style-bespin SUBDIR += kde4-style-nitrogen SUBDIR += kde4-style-oxygen-transparent SUBDIR += kde4-style-polyester SUBDIR += kde4-style-skulpture SUBDIR += kde4-windeco-crystal SUBDIR += kde4-windeco-dekorator SUBDIR += kdeartwork-kde4 SUBDIR += kf5-breeze-icons SUBDIR += kf5-kemoticons SUBDIR += kf5-kiconthemes SUBDIR += kf5-oxygen-icons5 SUBDIR += lumina-themes SUBDIR += lxappearance SUBDIR += lxde-icon-theme SUBDIR += mate-backgrounds SUBDIR += mate-icon-theme SUBDIR += mate-icon-theme-faenza SUBDIR += mate-themes SUBDIR += metacity-aluminumalloy-cryogenic-theme SUBDIR += metacity-aluminumalloy-smog-theme SUBDIR += metacity-aluminumalloy-toxic-theme SUBDIR += metacity-aluminumalloy-volcanic-theme SUBDIR += metacity-aquaextremesunken-theme SUBDIR += metacity-digital-cream-theme SUBDIR += metacity-digital-harmony-theme SUBDIR += metacity-longhorninspirat-theme SUBDIR += metacity-milk-theme SUBDIR += metacity-theme-microgui SUBDIR += metacity-themes SUBDIR += mint-themes SUBDIR += murrine-configurator SUBDIR += nimbus SUBDIR += numix-theme SUBDIR += openbox-arc-theme SUBDIR += openbox-themes SUBDIR += plank-theme-moka + SUBDIR += plasma5-breeze + SUBDIR += plasma5-breeze-gtk + SUBDIR += plasma5-breeze-kde4 + SUBDIR += plasma5-kde-gtk-config + SUBDIR += plasma5-oxygen + SUBDIR += plasma5-plasma-workspace-wallpapers SUBDIR += qt4-style-Kvantum SUBDIR += qt4-style-float SUBDIR += qt4-style-phase SUBDIR += qt4-style-quantumstyle SUBDIR += qt5-style-Kvantum SUBDIR += qt5-style-plugins SUBDIR += qtcurve SUBDIR += qtcurve-gtk2 SUBDIR += qtcurve-kde4 SUBDIR += qtcurve-kf5 SUBDIR += qtcurve-qt4 SUBDIR += qtcurve-qt5 SUBDIR += qtcurve-utils SUBDIR += rezlooks SUBDIR += sawfish-themes SUBDIR += sddm-freebsd-black-theme SUBDIR += slim-freebsd-black-theme SUBDIR += slim-freebsd-themes SUBDIR += slim-themes SUBDIR += thewidgetfactory SUBDIR += ubuntulooks SUBDIR += wallpapers-freebsd-kde4 SUBDIR += xcursor-themes SUBDIR += xfce-evolution SUBDIR += xfce-icons-elementary .include Index: head/x11-themes/plasma5-breeze/Makefile =================================================================== --- head/x11-themes/plasma5-breeze/Makefile (nonexistent) +++ head/x11-themes/plasma5-breeze/Makefile (revision 468495) @@ -0,0 +1,22 @@ +# $FreeBSD$ + +PORTNAME= breeze +DISTVERSION= ${KDE_PLASMA_VERSION} +CATEGORIES= x11-themes kde kde-plasma + +MAINTAINER= kde@FreeBSD.org +COMMENT= Plasma5 artwork, styles and assets for the Breeze visual style + +LICENSE= GPLv2 +LICENSE_FILE= ${WRKSRC}/COPYING + +USES= cmake:outsource compiler:c++11-lib cpe \ + gettext kde:5 pkgconfig tar:xz +USE_KDE= auth breeze-icons codecs config configwidgets coreaddons \ + decoration ecm frameworkintegration guiaddons i18n kcmutils \ + plasma-framework service wayland widgetsaddons windowsystem +USE_QT5= core dbus gui network qml quick widgets x11extras xml \ + buildtools_build qmake_build +USE_XORG= xcb + +.include Property changes on: head/x11-themes/plasma5-breeze/Makefile ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/x11-themes/plasma5-breeze/distinfo =================================================================== --- head/x11-themes/plasma5-breeze/distinfo (nonexistent) +++ head/x11-themes/plasma5-breeze/distinfo (revision 468495) @@ -0,0 +1,3 @@ +TIMESTAMP = 1523811802 +SHA256 (KDE/plasma/5.12.4/breeze-5.12.4.tar.xz) = 879f826ad9b86b402c7791ff3d49e70e55739460e6c3697d5ad3556052946a89 +SIZE (KDE/plasma/5.12.4/breeze-5.12.4.tar.xz) = 22206808 Property changes on: head/x11-themes/plasma5-breeze/distinfo ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/x11-themes/plasma5-breeze/pkg-descr =================================================================== --- head/x11-themes/plasma5-breeze/pkg-descr (nonexistent) +++ head/x11-themes/plasma5-breeze/pkg-descr (revision 468495) @@ -0,0 +1,3 @@ +Artwork, styles and assets for the Breeze visual style for the Plasma Desktop + +WWW: https://www.kde.org/plasma-desktop Property changes on: head/x11-themes/plasma5-breeze/pkg-descr ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/x11-themes/plasma5-breeze/pkg-plist =================================================================== --- head/x11-themes/plasma5-breeze/pkg-plist (nonexistent) +++ head/x11-themes/plasma5-breeze/pkg-plist (revision 468495) @@ -0,0 +1,371 @@ +bin/breeze-settings5 +lib/cmake/Breeze/BreezeConfig.cmake +lib/cmake/Breeze/BreezeConfigVersion.cmake +lib/kconf_update_bin/kde4breeze +%%QT_PLUGINDIR%%/kstyle_breeze_config.so +%%QT_PLUGINDIR%%/org.kde.kdecoration2/breezedecoration.so +%%QT_PLUGINDIR%%/styles/breeze.so +%%QT_QMLDIR%%/QtQuick/Controls/Styles/Breeze/ApplicationWindowStyle.qml +%%QT_QMLDIR%%/QtQuick/Controls/Styles/Breeze/Breeze.qml +%%QT_QMLDIR%%/QtQuick/Controls/Styles/Breeze/BusyIndicatorStyle.qml +%%QT_QMLDIR%%/QtQuick/Controls/Styles/Breeze/ButtonStyle.qml +%%QT_QMLDIR%%/QtQuick/Controls/Styles/Breeze/CheckBoxIndicator.qml +%%QT_QMLDIR%%/QtQuick/Controls/Styles/Breeze/CheckBoxStyle.qml +%%QT_QMLDIR%%/QtQuick/Controls/Styles/Breeze/ColorUtils.js +%%QT_QMLDIR%%/QtQuick/Controls/Styles/Breeze/ComboBoxStyle.qml +%%QT_QMLDIR%%/QtQuick/Controls/Styles/Breeze/DemoPage1.qml +%%QT_QMLDIR%%/QtQuick/Controls/Styles/Breeze/DemoPage2.qml +%%QT_QMLDIR%%/QtQuick/Controls/Styles/Breeze/DemoPage3.qml +%%QT_QMLDIR%%/QtQuick/Controls/Styles/Breeze/DemoPage4.qml +%%QT_QMLDIR%%/QtQuick/Controls/Styles/Breeze/FocusFrameStyle.qml +%%QT_QMLDIR%%/QtQuick/Controls/Styles/Breeze/GroupBoxStyle.qml +%%QT_QMLDIR%%/QtQuick/Controls/Styles/Breeze/MenuBarStyle.qml +%%QT_QMLDIR%%/QtQuick/Controls/Styles/Breeze/MenuStyle.qml +%%QT_QMLDIR%%/QtQuick/Controls/Styles/Breeze/ProgressBarStyle.qml +%%QT_QMLDIR%%/QtQuick/Controls/Styles/Breeze/RadioButtonIndicator.qml +%%QT_QMLDIR%%/QtQuick/Controls/Styles/Breeze/RadioButtonStyle.qml +%%QT_QMLDIR%%/QtQuick/Controls/Styles/Breeze/ScrollArrow.qml +%%QT_QMLDIR%%/QtQuick/Controls/Styles/Breeze/ScrollBar.qml +%%QT_QMLDIR%%/QtQuick/Controls/Styles/Breeze/ScrollViewStyle.qml +%%QT_QMLDIR%%/QtQuick/Controls/Styles/Breeze/SliderStyle.qml +%%QT_QMLDIR%%/QtQuick/Controls/Styles/Breeze/SpinBoxStyle.qml +%%QT_QMLDIR%%/QtQuick/Controls/Styles/Breeze/StatusBarStyle.qml +%%QT_QMLDIR%%/QtQuick/Controls/Styles/Breeze/SwitchStyle.qml +%%QT_QMLDIR%%/QtQuick/Controls/Styles/Breeze/TabViewStyle.qml +%%QT_QMLDIR%%/QtQuick/Controls/Styles/Breeze/TableViewStyle.qml +%%QT_QMLDIR%%/QtQuick/Controls/Styles/Breeze/TextAreaStyle.qml +%%QT_QMLDIR%%/QtQuick/Controls/Styles/Breeze/TextFieldBackground.qml +%%QT_QMLDIR%%/QtQuick/Controls/Styles/Breeze/TextFieldStyle.qml +%%QT_QMLDIR%%/QtQuick/Controls/Styles/Breeze/ToolBarStyle.qml +%%QT_QMLDIR%%/QtQuick/Controls/Styles/Breeze/ToolButtonStyle.qml +%%QT_QMLDIR%%/QtQuick/Controls/Styles/Breeze/Triangle.qml +%%QT_QMLDIR%%/QtQuick/Controls/Styles/Breeze/qmldir +share/QtCurve/Breeze.qtcurve +share/color-schemes/Breeze.colors +share/color-schemes/BreezeDark.colors +share/color-schemes/BreezeHighContrast.colors +share/icons/Breeze_Snow/cursors/00000000000000020006000e7e9ffc3f +share/icons/Breeze_Snow/cursors/00008160000006810000408080010102 +share/icons/Breeze_Snow/cursors/03b6e0fcb3499374a867c041f52298f0 +share/icons/Breeze_Snow/cursors/08e8e1c95fe2fc01f976f1e063a24ccd +share/icons/Breeze_Snow/cursors/1081e37283d90000800003c07f3ef6bf +share/icons/Breeze_Snow/cursors/3085a0e285430894940527032f8b26df +share/icons/Breeze_Snow/cursors/3ecb610c1bf2410f44200f48c40d3599 +share/icons/Breeze_Snow/cursors/4498f0e0c1937ffe01fd06f973665830 +share/icons/Breeze_Snow/cursors/5c6cd98b3f3ebcb1f9c7f1c204630408 +share/icons/Breeze_Snow/cursors/6407b0e94181790501fd1e167b474872 +share/icons/Breeze_Snow/cursors/640fb0e74195791501fd1ed57b41487f +share/icons/Breeze_Snow/cursors/9081237383d90e509aa00f00170e968f +share/icons/Breeze_Snow/cursors/9d800788f1b08800ae810202380a0822 +share/icons/Breeze_Snow/cursors/a2a266d0498c3104214a47bd64ab0fc8 +share/icons/Breeze_Snow/cursors/alias +share/icons/Breeze_Snow/cursors/all-scroll +share/icons/Breeze_Snow/cursors/b66166c04f8c3109214a4fbd64a50fc8 +share/icons/Breeze_Snow/cursors/bottom_left_corner +share/icons/Breeze_Snow/cursors/bottom_right_corner +share/icons/Breeze_Snow/cursors/bottom_side +share/icons/Breeze_Snow/cursors/cell +share/icons/Breeze_Snow/cursors/center_ptr +share/icons/Breeze_Snow/cursors/circle +share/icons/Breeze_Snow/cursors/closedhand +share/icons/Breeze_Snow/cursors/col-resize +share/icons/Breeze_Snow/cursors/color-picker +share/icons/Breeze_Snow/cursors/context-menu +share/icons/Breeze_Snow/cursors/copy +share/icons/Breeze_Snow/cursors/cross +share/icons/Breeze_Snow/cursors/crossed_circle +share/icons/Breeze_Snow/cursors/crosshair +share/icons/Breeze_Snow/cursors/d9ce0ab605698f320427677b458ad60b +share/icons/Breeze_Snow/cursors/default +share/icons/Breeze_Snow/cursors/dnd-copy +share/icons/Breeze_Snow/cursors/dnd-move +share/icons/Breeze_Snow/cursors/dnd-no-drop +share/icons/Breeze_Snow/cursors/dnd-none +share/icons/Breeze_Snow/cursors/down-arrow +share/icons/Breeze_Snow/cursors/draft +share/icons/Breeze_Snow/cursors/e-resize +share/icons/Breeze_Snow/cursors/e29285e634086352946a0e7090d73106 +share/icons/Breeze_Snow/cursors/fcf21c00b30f7e3f83fe0dfd12e71cff +share/icons/Breeze_Snow/cursors/fleur +share/icons/Breeze_Snow/cursors/forbidden +share/icons/Breeze_Snow/cursors/h_double_arrow +share/icons/Breeze_Snow/cursors/half-busy +share/icons/Breeze_Snow/cursors/hand1 +share/icons/Breeze_Snow/cursors/hand2 +share/icons/Breeze_Snow/cursors/help +share/icons/Breeze_Snow/cursors/ibeam +share/icons/Breeze_Snow/cursors/left-arrow +share/icons/Breeze_Snow/cursors/left_ptr +share/icons/Breeze_Snow/cursors/left_ptr_help +share/icons/Breeze_Snow/cursors/left_ptr_watch +share/icons/Breeze_Snow/cursors/left_side +share/icons/Breeze_Snow/cursors/link +share/icons/Breeze_Snow/cursors/move +share/icons/Breeze_Snow/cursors/n-resize +share/icons/Breeze_Snow/cursors/no-drop +share/icons/Breeze_Snow/cursors/not-allowed +share/icons/Breeze_Snow/cursors/openhand +share/icons/Breeze_Snow/cursors/pencil +share/icons/Breeze_Snow/cursors/pirate +share/icons/Breeze_Snow/cursors/plus +share/icons/Breeze_Snow/cursors/pointer +share/icons/Breeze_Snow/cursors/pointing_hand +share/icons/Breeze_Snow/cursors/progress +share/icons/Breeze_Snow/cursors/question_arrow +share/icons/Breeze_Snow/cursors/right-arrow +share/icons/Breeze_Snow/cursors/right_ptr +share/icons/Breeze_Snow/cursors/right_side +share/icons/Breeze_Snow/cursors/row-resize +share/icons/Breeze_Snow/cursors/s-resize +share/icons/Breeze_Snow/cursors/sb_h_double_arrow +share/icons/Breeze_Snow/cursors/sb_v_double_arrow +share/icons/Breeze_Snow/cursors/size-bdiag +share/icons/Breeze_Snow/cursors/size-fdiag +share/icons/Breeze_Snow/cursors/size-hor +share/icons/Breeze_Snow/cursors/size-ver +share/icons/Breeze_Snow/cursors/size_all +share/icons/Breeze_Snow/cursors/size_bdiag +share/icons/Breeze_Snow/cursors/size_fdiag +share/icons/Breeze_Snow/cursors/size_hor +share/icons/Breeze_Snow/cursors/size_ver +share/icons/Breeze_Snow/cursors/split_h +share/icons/Breeze_Snow/cursors/split_v +share/icons/Breeze_Snow/cursors/text +share/icons/Breeze_Snow/cursors/top_left_arrow +share/icons/Breeze_Snow/cursors/top_left_corner +share/icons/Breeze_Snow/cursors/top_right_corner +share/icons/Breeze_Snow/cursors/top_side +share/icons/Breeze_Snow/cursors/up-arrow +share/icons/Breeze_Snow/cursors/v_double_arrow +share/icons/Breeze_Snow/cursors/vertical-text +share/icons/Breeze_Snow/cursors/w-resize +share/icons/Breeze_Snow/cursors/wait +share/icons/Breeze_Snow/cursors/watch +share/icons/Breeze_Snow/cursors/wayland-cursor +share/icons/Breeze_Snow/cursors/whats_this +share/icons/Breeze_Snow/cursors/x-cursor +share/icons/Breeze_Snow/cursors/xterm +share/icons/Breeze_Snow/cursors/zoom-in +share/icons/Breeze_Snow/cursors/zoom-out +share/icons/Breeze_Snow/index.theme +share/icons/breeze_cursors/cursors/00000000000000020006000e7e9ffc3f +share/icons/breeze_cursors/cursors/00008160000006810000408080010102 +share/icons/breeze_cursors/cursors/03b6e0fcb3499374a867c041f52298f0 +share/icons/breeze_cursors/cursors/08e8e1c95fe2fc01f976f1e063a24ccd +share/icons/breeze_cursors/cursors/1081e37283d90000800003c07f3ef6bf +share/icons/breeze_cursors/cursors/3085a0e285430894940527032f8b26df +share/icons/breeze_cursors/cursors/3ecb610c1bf2410f44200f48c40d3599 +share/icons/breeze_cursors/cursors/4498f0e0c1937ffe01fd06f973665830 +share/icons/breeze_cursors/cursors/5c6cd98b3f3ebcb1f9c7f1c204630408 +share/icons/breeze_cursors/cursors/6407b0e94181790501fd1e167b474872 +share/icons/breeze_cursors/cursors/640fb0e74195791501fd1ed57b41487f +share/icons/breeze_cursors/cursors/9081237383d90e509aa00f00170e968f +share/icons/breeze_cursors/cursors/9d800788f1b08800ae810202380a0822 +share/icons/breeze_cursors/cursors/a2a266d0498c3104214a47bd64ab0fc8 +share/icons/breeze_cursors/cursors/alias +share/icons/breeze_cursors/cursors/all-scroll +share/icons/breeze_cursors/cursors/b66166c04f8c3109214a4fbd64a50fc8 +share/icons/breeze_cursors/cursors/bottom_left_corner +share/icons/breeze_cursors/cursors/bottom_right_corner +share/icons/breeze_cursors/cursors/bottom_side +share/icons/breeze_cursors/cursors/cell +share/icons/breeze_cursors/cursors/center_ptr +share/icons/breeze_cursors/cursors/circle +share/icons/breeze_cursors/cursors/closedhand +share/icons/breeze_cursors/cursors/col-resize +share/icons/breeze_cursors/cursors/color-picker +share/icons/breeze_cursors/cursors/context-menu +share/icons/breeze_cursors/cursors/copy +share/icons/breeze_cursors/cursors/cross +share/icons/breeze_cursors/cursors/crossed_circle +share/icons/breeze_cursors/cursors/crosshair +share/icons/breeze_cursors/cursors/d9ce0ab605698f320427677b458ad60b +share/icons/breeze_cursors/cursors/default +share/icons/breeze_cursors/cursors/dnd-copy +share/icons/breeze_cursors/cursors/dnd-move +share/icons/breeze_cursors/cursors/dnd-no-drop +share/icons/breeze_cursors/cursors/dnd-none +share/icons/breeze_cursors/cursors/down-arrow +share/icons/breeze_cursors/cursors/draft +share/icons/breeze_cursors/cursors/e-resize +share/icons/breeze_cursors/cursors/e29285e634086352946a0e7090d73106 +share/icons/breeze_cursors/cursors/fcf21c00b30f7e3f83fe0dfd12e71cff +share/icons/breeze_cursors/cursors/fleur +share/icons/breeze_cursors/cursors/forbidden +share/icons/breeze_cursors/cursors/h_double_arrow +share/icons/breeze_cursors/cursors/half-busy +share/icons/breeze_cursors/cursors/hand1 +share/icons/breeze_cursors/cursors/hand2 +share/icons/breeze_cursors/cursors/help +share/icons/breeze_cursors/cursors/ibeam +share/icons/breeze_cursors/cursors/left-arrow +share/icons/breeze_cursors/cursors/left_ptr +share/icons/breeze_cursors/cursors/left_ptr_help +share/icons/breeze_cursors/cursors/left_ptr_watch +share/icons/breeze_cursors/cursors/left_side +share/icons/breeze_cursors/cursors/link +share/icons/breeze_cursors/cursors/move +share/icons/breeze_cursors/cursors/n-resize +share/icons/breeze_cursors/cursors/no-drop +share/icons/breeze_cursors/cursors/not-allowed +share/icons/breeze_cursors/cursors/openhand +share/icons/breeze_cursors/cursors/pencil +share/icons/breeze_cursors/cursors/pirate +share/icons/breeze_cursors/cursors/plus +share/icons/breeze_cursors/cursors/pointer +share/icons/breeze_cursors/cursors/pointing_hand +share/icons/breeze_cursors/cursors/progress +share/icons/breeze_cursors/cursors/question_arrow +share/icons/breeze_cursors/cursors/right-arrow +share/icons/breeze_cursors/cursors/right_ptr +share/icons/breeze_cursors/cursors/right_side +share/icons/breeze_cursors/cursors/row-resize +share/icons/breeze_cursors/cursors/s-resize +share/icons/breeze_cursors/cursors/sb_h_double_arrow +share/icons/breeze_cursors/cursors/sb_v_double_arrow +share/icons/breeze_cursors/cursors/size-bdiag +share/icons/breeze_cursors/cursors/size-fdiag +share/icons/breeze_cursors/cursors/size-hor +share/icons/breeze_cursors/cursors/size-ver +share/icons/breeze_cursors/cursors/size_all +share/icons/breeze_cursors/cursors/size_bdiag +share/icons/breeze_cursors/cursors/size_fdiag +share/icons/breeze_cursors/cursors/size_hor +share/icons/breeze_cursors/cursors/size_ver +share/icons/breeze_cursors/cursors/split_h +share/icons/breeze_cursors/cursors/split_v +share/icons/breeze_cursors/cursors/text +share/icons/breeze_cursors/cursors/top_left_arrow +share/icons/breeze_cursors/cursors/top_left_corner +share/icons/breeze_cursors/cursors/top_right_corner +share/icons/breeze_cursors/cursors/top_side +share/icons/breeze_cursors/cursors/up-arrow +share/icons/breeze_cursors/cursors/v_double_arrow +share/icons/breeze_cursors/cursors/vertical-text +share/icons/breeze_cursors/cursors/w-resize +share/icons/breeze_cursors/cursors/wait +share/icons/breeze_cursors/cursors/watch +share/icons/breeze_cursors/cursors/wayland-cursor +share/icons/breeze_cursors/cursors/whats_this +share/icons/breeze_cursors/cursors/x-cursor +share/icons/breeze_cursors/cursors/xterm +share/icons/breeze_cursors/cursors/zoom-in +share/icons/breeze_cursors/cursors/zoom-out +share/icons/breeze_cursors/index.theme +share/icons/hicolor/scalable/apps/breeze-settings.svgz +share/kconf_update/kde4breeze.upd +share/kservices5/breezedecorationconfig.desktop +share/kservices5/breezestyleconfig.desktop +share/kstyle/themes/breeze.themerc +share/locale/ar/LC_MESSAGES/breeze_kwin_deco.mo +share/locale/ar/LC_MESSAGES/breeze_style_config.mo +share/locale/ast/LC_MESSAGES/breeze_kwin_deco.mo +share/locale/ast/LC_MESSAGES/breeze_style_config.mo +share/locale/bs/LC_MESSAGES/breeze_kwin_deco.mo +share/locale/bs/LC_MESSAGES/breeze_style_config.mo +share/locale/ca/LC_MESSAGES/breeze_kwin_deco.mo +share/locale/ca/LC_MESSAGES/breeze_style_config.mo +share/locale/ca@valencia/LC_MESSAGES/breeze_kwin_deco.mo +share/locale/ca@valencia/LC_MESSAGES/breeze_style_config.mo +share/locale/cs/LC_MESSAGES/breeze_kwin_deco.mo +share/locale/cs/LC_MESSAGES/breeze_style_config.mo +share/locale/da/LC_MESSAGES/breeze_kwin_deco.mo +share/locale/da/LC_MESSAGES/breeze_style_config.mo +share/locale/de/LC_MESSAGES/breeze_kwin_deco.mo +share/locale/de/LC_MESSAGES/breeze_style_config.mo +share/locale/el/LC_MESSAGES/breeze_kwin_deco.mo +share/locale/el/LC_MESSAGES/breeze_style_config.mo +share/locale/en_GB/LC_MESSAGES/breeze_kwin_deco.mo +share/locale/en_GB/LC_MESSAGES/breeze_style_config.mo +share/locale/es/LC_MESSAGES/breeze_kwin_deco.mo +share/locale/es/LC_MESSAGES/breeze_style_config.mo +share/locale/et/LC_MESSAGES/breeze_kwin_deco.mo +share/locale/et/LC_MESSAGES/breeze_style_config.mo +share/locale/eu/LC_MESSAGES/breeze_kwin_deco.mo +share/locale/eu/LC_MESSAGES/breeze_style_config.mo +share/locale/fi/LC_MESSAGES/breeze_kwin_deco.mo +share/locale/fi/LC_MESSAGES/breeze_style_config.mo +share/locale/fr/LC_MESSAGES/breeze_kwin_deco.mo +share/locale/fr/LC_MESSAGES/breeze_style_config.mo +share/locale/gl/LC_MESSAGES/breeze_kwin_deco.mo +share/locale/gl/LC_MESSAGES/breeze_style_config.mo +share/locale/he/LC_MESSAGES/breeze_kwin_deco.mo +share/locale/he/LC_MESSAGES/breeze_style_config.mo +share/locale/hu/LC_MESSAGES/breeze_kwin_deco.mo +share/locale/hu/LC_MESSAGES/breeze_style_config.mo +share/locale/ia/LC_MESSAGES/breeze_kwin_deco.mo +share/locale/ia/LC_MESSAGES/breeze_style_config.mo +share/locale/id/LC_MESSAGES/breeze_style_config.mo +share/locale/it/LC_MESSAGES/breeze_kwin_deco.mo +share/locale/it/LC_MESSAGES/breeze_style_config.mo +share/locale/ja/LC_MESSAGES/breeze_kwin_deco.mo +share/locale/ja/LC_MESSAGES/breeze_style_config.mo +share/locale/ko/LC_MESSAGES/breeze_kwin_deco.mo +share/locale/ko/LC_MESSAGES/breeze_style_config.mo +share/locale/lt/LC_MESSAGES/breeze_kwin_deco.mo +share/locale/lt/LC_MESSAGES/breeze_style_config.mo +share/locale/nb/LC_MESSAGES/breeze_kwin_deco.mo +share/locale/nb/LC_MESSAGES/breeze_style_config.mo +share/locale/nds/LC_MESSAGES/breeze_kwin_deco.mo +share/locale/nds/LC_MESSAGES/breeze_style_config.mo +share/locale/nl/LC_MESSAGES/breeze_kwin_deco.mo +share/locale/nl/LC_MESSAGES/breeze_style_config.mo +share/locale/nn/LC_MESSAGES/breeze_kwin_deco.mo +share/locale/nn/LC_MESSAGES/breeze_style_config.mo +share/locale/pa/LC_MESSAGES/breeze_kwin_deco.mo +share/locale/pa/LC_MESSAGES/breeze_style_config.mo +share/locale/pl/LC_MESSAGES/breeze_kwin_deco.mo +share/locale/pl/LC_MESSAGES/breeze_style_config.mo +share/locale/pt/LC_MESSAGES/breeze_kwin_deco.mo +share/locale/pt/LC_MESSAGES/breeze_style_config.mo +share/locale/pt_BR/LC_MESSAGES/breeze_kwin_deco.mo +share/locale/pt_BR/LC_MESSAGES/breeze_style_config.mo +share/locale/ro/LC_MESSAGES/breeze_kwin_deco.mo +share/locale/ro/LC_MESSAGES/breeze_style_config.mo +share/locale/ru/LC_MESSAGES/breeze_kwin_deco.mo +share/locale/ru/LC_MESSAGES/breeze_style_config.mo +share/locale/se/LC_MESSAGES/breeze_kwin_deco.mo +share/locale/sk/LC_MESSAGES/breeze_kwin_deco.mo +share/locale/sk/LC_MESSAGES/breeze_style_config.mo +share/locale/sl/LC_MESSAGES/breeze_kwin_deco.mo +share/locale/sl/LC_MESSAGES/breeze_style_config.mo +share/locale/sr/LC_MESSAGES/breeze_kwin_deco.mo +share/locale/sr/LC_MESSAGES/breeze_style_config.mo +share/locale/sr@ijekavian/LC_MESSAGES/breeze_kwin_deco.mo +share/locale/sr@ijekavian/LC_MESSAGES/breeze_style_config.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/breeze_kwin_deco.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/breeze_style_config.mo +share/locale/sr@latin/LC_MESSAGES/breeze_kwin_deco.mo +share/locale/sr@latin/LC_MESSAGES/breeze_style_config.mo +share/locale/sv/LC_MESSAGES/breeze_kwin_deco.mo +share/locale/sv/LC_MESSAGES/breeze_style_config.mo +share/locale/tr/LC_MESSAGES/breeze_kwin_deco.mo +share/locale/tr/LC_MESSAGES/breeze_style_config.mo +share/locale/uk/LC_MESSAGES/breeze_kwin_deco.mo +share/locale/uk/LC_MESSAGES/breeze_style_config.mo +share/locale/zh_CN/LC_MESSAGES/breeze_kwin_deco.mo +share/locale/zh_CN/LC_MESSAGES/breeze_style_config.mo +share/locale/zh_TW/LC_MESSAGES/breeze_kwin_deco.mo +share/locale/zh_TW/LC_MESSAGES/breeze_style_config.mo +share/metainfo/org.kde.breezedark.desktop.appdata.xml +share/plasma/look-and-feel/org.kde.breezedark.desktop/contents/defaults +share/plasma/look-and-feel/org.kde.breezedark.desktop/contents/previews/preview.png +share/plasma/look-and-feel/org.kde.breezedark.desktop/metadata.desktop +share/plasma/look-and-feel/org.kde.breezedark.desktop/metadata.json +share/wallpapers/Next/contents/images/1024x768.png +share/wallpapers/Next/contents/images/1280x1024.png +share/wallpapers/Next/contents/images/1280x800.png +share/wallpapers/Next/contents/images/1366x768.png +share/wallpapers/Next/contents/images/1440x900.png +share/wallpapers/Next/contents/images/1600x1200.png +share/wallpapers/Next/contents/images/1638x1024.png +share/wallpapers/Next/contents/images/1680x1050.png +share/wallpapers/Next/contents/images/1920x1080.png +share/wallpapers/Next/contents/images/1920x1200.png +share/wallpapers/Next/contents/images/2560x1440.png +share/wallpapers/Next/contents/images/2560x1600.png +share/wallpapers/Next/contents/images/3200x1800.png +share/wallpapers/Next/contents/images/3200x2000.png +share/wallpapers/Next/contents/images/3840x2160.png +share/wallpapers/Next/contents/screenshot.png +share/wallpapers/Next/metadata.desktop Property changes on: head/x11-themes/plasma5-breeze/pkg-plist ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/x11-themes/plasma5-breeze-gtk/Makefile =================================================================== --- head/x11-themes/plasma5-breeze-gtk/Makefile (nonexistent) +++ head/x11-themes/plasma5-breeze-gtk/Makefile (revision 468495) @@ -0,0 +1,18 @@ +# $FreeBSD$ + +PORTNAME= breeze-gtk +DISTVERSION= ${KDE_PLASMA_VERSION} +CATEGORIES= x11-themes kde kde-plasma + +MAINTAINER= kde@FreeBSD.org +COMMENT= Plasma5 Breeze visual style for Gtk + +LICENSE= LGPL21 +LICENSE_FILE= ${WRKSRC}/COPYING.LIB + +USES= cmake:outsource cpe kde:5 pkgconfig tar:xz +USE_GNOME= gdkpixbuf2 +USE_KDE= ecm +USE_QT5= core buildtools_build qmake_build + +.include Property changes on: head/x11-themes/plasma5-breeze-gtk/Makefile ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/x11-themes/plasma5-breeze-gtk/distinfo =================================================================== --- head/x11-themes/plasma5-breeze-gtk/distinfo (nonexistent) +++ head/x11-themes/plasma5-breeze-gtk/distinfo (revision 468495) @@ -0,0 +1,3 @@ +TIMESTAMP = 1523811803 +SHA256 (KDE/plasma/5.12.4/breeze-gtk-5.12.4.tar.xz) = 8ccc0556d288806307e2f97ead62eca29a4b27699b8ad60b4114c346519077a0 +SIZE (KDE/plasma/5.12.4/breeze-gtk-5.12.4.tar.xz) = 213816 Property changes on: head/x11-themes/plasma5-breeze-gtk/distinfo ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/x11-themes/plasma5-breeze-gtk/pkg-descr =================================================================== --- head/x11-themes/plasma5-breeze-gtk/pkg-descr (nonexistent) +++ head/x11-themes/plasma5-breeze-gtk/pkg-descr (revision 468495) @@ -0,0 +1 @@ +Breeze Theme for Gtk Property changes on: head/x11-themes/plasma5-breeze-gtk/pkg-descr ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/x11-themes/plasma5-breeze-gtk/pkg-plist =================================================================== --- head/x11-themes/plasma5-breeze-gtk/pkg-plist (nonexistent) +++ head/x11-themes/plasma5-breeze-gtk/pkg-plist (revision 468495) @@ -0,0 +1,522 @@ +lib/kconf_update_bin/gtkbreeze5.5 +share/kconf_update/gtkbreeze5.5.upd +share/themes/Breeze-Dark/assets/arrow-down-active.png +share/themes/Breeze-Dark/assets/arrow-down-hover.png +share/themes/Breeze-Dark/assets/arrow-down-insensitive.png +share/themes/Breeze-Dark/assets/arrow-down.png +share/themes/Breeze-Dark/assets/arrow-left-active.png +share/themes/Breeze-Dark/assets/arrow-left-hover.png +share/themes/Breeze-Dark/assets/arrow-left-insensitive.png +share/themes/Breeze-Dark/assets/arrow-left.png +share/themes/Breeze-Dark/assets/arrow-right-active.png +share/themes/Breeze-Dark/assets/arrow-right-hover.png +share/themes/Breeze-Dark/assets/arrow-right-insensitive.png +share/themes/Breeze-Dark/assets/arrow-right.png +share/themes/Breeze-Dark/assets/arrow-small-down-active.png +share/themes/Breeze-Dark/assets/arrow-small-down-hover.png +share/themes/Breeze-Dark/assets/arrow-small-down-insensitive.png +share/themes/Breeze-Dark/assets/arrow-small-down.png +share/themes/Breeze-Dark/assets/arrow-small-left-active.png +share/themes/Breeze-Dark/assets/arrow-small-left-hover.png +share/themes/Breeze-Dark/assets/arrow-small-left-insensitive.png +share/themes/Breeze-Dark/assets/arrow-small-left.png +share/themes/Breeze-Dark/assets/arrow-small-right-active.png +share/themes/Breeze-Dark/assets/arrow-small-right-hover.png +share/themes/Breeze-Dark/assets/arrow-small-right-insensitive.png +share/themes/Breeze-Dark/assets/arrow-small-right.png +share/themes/Breeze-Dark/assets/arrow-small-up-active.png +share/themes/Breeze-Dark/assets/arrow-small-up-hover.png +share/themes/Breeze-Dark/assets/arrow-small-up-insensitive.png +share/themes/Breeze-Dark/assets/arrow-small-up.png +share/themes/Breeze-Dark/assets/arrow-up-active.png +share/themes/Breeze-Dark/assets/arrow-up-hover.png +share/themes/Breeze-Dark/assets/arrow-up-insensitive.png +share/themes/Breeze-Dark/assets/arrow-up.png +share/themes/Breeze-Dark/assets/button-active.png +share/themes/Breeze-Dark/assets/button-hover.png +share/themes/Breeze-Dark/assets/button-insensitive.png +share/themes/Breeze-Dark/assets/button.png +share/themes/Breeze-Dark/assets/check-checked-active.png +share/themes/Breeze-Dark/assets/check-checked-active@2.png +share/themes/Breeze-Dark/assets/check-checked-backdrop-insensitive.png +share/themes/Breeze-Dark/assets/check-checked-backdrop-insensitive@2.png +share/themes/Breeze-Dark/assets/check-checked-backdrop.png +share/themes/Breeze-Dark/assets/check-checked-backdrop@2.png +share/themes/Breeze-Dark/assets/check-checked-hover.png +share/themes/Breeze-Dark/assets/check-checked-hover@2.png +share/themes/Breeze-Dark/assets/check-checked-insensitive.png +share/themes/Breeze-Dark/assets/check-checked-insensitive@2.png +share/themes/Breeze-Dark/assets/check-mixed-active.png +share/themes/Breeze-Dark/assets/check-mixed-active@2.png +share/themes/Breeze-Dark/assets/check-mixed-backdrop-insensitive.png +share/themes/Breeze-Dark/assets/check-mixed-backdrop-insensitive@2.png +share/themes/Breeze-Dark/assets/check-mixed-backdrop.png +share/themes/Breeze-Dark/assets/check-mixed-backdrop@2.png +share/themes/Breeze-Dark/assets/check-mixed-hover.png +share/themes/Breeze-Dark/assets/check-mixed-hover@2.png +share/themes/Breeze-Dark/assets/check-mixed-insensitive.png +share/themes/Breeze-Dark/assets/check-mixed-insensitive@2.png +share/themes/Breeze-Dark/assets/check-selectionmode-checked-active.png +share/themes/Breeze-Dark/assets/check-selectionmode-checked-active@2.png +share/themes/Breeze-Dark/assets/check-selectionmode-checked-backdrop-insensitive.png +share/themes/Breeze-Dark/assets/check-selectionmode-checked-backdrop-insensitive@2.png +share/themes/Breeze-Dark/assets/check-selectionmode-checked-backdrop.png +share/themes/Breeze-Dark/assets/check-selectionmode-checked-backdrop@2.png +share/themes/Breeze-Dark/assets/check-selectionmode-checked-hover.png +share/themes/Breeze-Dark/assets/check-selectionmode-checked-hover@2.png +share/themes/Breeze-Dark/assets/check-selectionmode-checked-insensitive.png +share/themes/Breeze-Dark/assets/check-selectionmode-checked-insensitive@2.png +share/themes/Breeze-Dark/assets/check-selectionmode-unchecked-active.png +share/themes/Breeze-Dark/assets/check-selectionmode-unchecked-active@2.png +share/themes/Breeze-Dark/assets/check-selectionmode-unchecked-backdrop-insensitive.png +share/themes/Breeze-Dark/assets/check-selectionmode-unchecked-backdrop-insensitive@2.png +share/themes/Breeze-Dark/assets/check-selectionmode-unchecked-backdrop.png +share/themes/Breeze-Dark/assets/check-selectionmode-unchecked-backdrop@2.png +share/themes/Breeze-Dark/assets/check-selectionmode-unchecked-hover.png +share/themes/Breeze-Dark/assets/check-selectionmode-unchecked-hover@2.png +share/themes/Breeze-Dark/assets/check-selectionmode-unchecked-insensitive.png +share/themes/Breeze-Dark/assets/check-selectionmode-unchecked-insensitive@2.png +share/themes/Breeze-Dark/assets/check-selectionmode-unchecked.png +share/themes/Breeze-Dark/assets/check-selectionmode-unchecked@2.png +share/themes/Breeze-Dark/assets/check-unchecked-active.png +share/themes/Breeze-Dark/assets/check-unchecked-active@2.png +share/themes/Breeze-Dark/assets/check-unchecked-backdrop-insensitive.png +share/themes/Breeze-Dark/assets/check-unchecked-backdrop-insensitive@2.png +share/themes/Breeze-Dark/assets/check-unchecked-backdrop.png +share/themes/Breeze-Dark/assets/check-unchecked-backdrop@2.png +share/themes/Breeze-Dark/assets/check-unchecked-hover.png +share/themes/Breeze-Dark/assets/check-unchecked-hover@2.png +share/themes/Breeze-Dark/assets/check-unchecked-insensitive.png +share/themes/Breeze-Dark/assets/check-unchecked-insensitive@2.png +share/themes/Breeze-Dark/assets/check-unchecked.png +share/themes/Breeze-Dark/assets/check-unchecked@2.png +share/themes/Breeze-Dark/assets/combo-entry-active.png +share/themes/Breeze-Dark/assets/combo-entry-button-active.png +share/themes/Breeze-Dark/assets/combo-entry-button-insensitive.png +share/themes/Breeze-Dark/assets/combo-entry-button.png +share/themes/Breeze-Dark/assets/combo-entry-insensitive.png +share/themes/Breeze-Dark/assets/combo-entry.png +share/themes/Breeze-Dark/assets/entry-active.png +share/themes/Breeze-Dark/assets/entry-insensitive.png +share/themes/Breeze-Dark/assets/entry.png +share/themes/Breeze-Dark/assets/frame-gap-end.png +share/themes/Breeze-Dark/assets/frame-gap-start.png +share/themes/Breeze-Dark/assets/frame.png +share/themes/Breeze-Dark/assets/handle-h.png +share/themes/Breeze-Dark/assets/handle-v.png +share/themes/Breeze-Dark/assets/line-h.png +share/themes/Breeze-Dark/assets/line-v.png +share/themes/Breeze-Dark/assets/menu-arrow-insensitive.png +share/themes/Breeze-Dark/assets/menu-arrow-selected.png +share/themes/Breeze-Dark/assets/menu-arrow.png +share/themes/Breeze-Dark/assets/menubar-button.png +share/themes/Breeze-Dark/assets/notebook-frame-bottom.png +share/themes/Breeze-Dark/assets/notebook-frame-right.png +share/themes/Breeze-Dark/assets/notebook-frame-top.png +share/themes/Breeze-Dark/assets/notebook-gap-horizontal.png +share/themes/Breeze-Dark/assets/notebook-gap-vertical.png +share/themes/Breeze-Dark/assets/null.png +share/themes/Breeze-Dark/assets/progressbar-bar.png +share/themes/Breeze-Dark/assets/progressbar-trough.png +share/themes/Breeze-Dark/assets/radio-checked-active.png +share/themes/Breeze-Dark/assets/radio-checked-active@2.png +share/themes/Breeze-Dark/assets/radio-checked-backdrop-insensitive.png +share/themes/Breeze-Dark/assets/radio-checked-backdrop-insensitive@2.png +share/themes/Breeze-Dark/assets/radio-checked-backdrop.png +share/themes/Breeze-Dark/assets/radio-checked-backdrop@2.png +share/themes/Breeze-Dark/assets/radio-checked-hover.png +share/themes/Breeze-Dark/assets/radio-checked-hover@2.png +share/themes/Breeze-Dark/assets/radio-checked-insensitive.png +share/themes/Breeze-Dark/assets/radio-checked-insensitive@2.png +share/themes/Breeze-Dark/assets/radio-mixed-active.png +share/themes/Breeze-Dark/assets/radio-mixed-active@2.png +share/themes/Breeze-Dark/assets/radio-mixed-backdrop-insensitive.png +share/themes/Breeze-Dark/assets/radio-mixed-backdrop-insensitive@2.png +share/themes/Breeze-Dark/assets/radio-mixed-backdrop.png +share/themes/Breeze-Dark/assets/radio-mixed-backdrop@2.png +share/themes/Breeze-Dark/assets/radio-mixed-hover.png +share/themes/Breeze-Dark/assets/radio-mixed-hover@2.png +share/themes/Breeze-Dark/assets/radio-mixed-insensitive.png +share/themes/Breeze-Dark/assets/radio-mixed-insensitive@2.png +share/themes/Breeze-Dark/assets/radio-unchecked-active.png +share/themes/Breeze-Dark/assets/radio-unchecked-active@2.png +share/themes/Breeze-Dark/assets/radio-unchecked-backdrop-insensitive.png +share/themes/Breeze-Dark/assets/radio-unchecked-backdrop-insensitive@2.png +share/themes/Breeze-Dark/assets/radio-unchecked-backdrop.png +share/themes/Breeze-Dark/assets/radio-unchecked-backdrop@2.png +share/themes/Breeze-Dark/assets/radio-unchecked-hover.png +share/themes/Breeze-Dark/assets/radio-unchecked-hover@2.png +share/themes/Breeze-Dark/assets/radio-unchecked-insensitive.png +share/themes/Breeze-Dark/assets/radio-unchecked-insensitive@2.png +share/themes/Breeze-Dark/assets/radio-unchecked.png +share/themes/Breeze-Dark/assets/radio-unchecked@2.png +share/themes/Breeze-Dark/assets/scale-slider-active.png +share/themes/Breeze-Dark/assets/scale-slider-hover.png +share/themes/Breeze-Dark/assets/scale-slider-insensitive.png +share/themes/Breeze-Dark/assets/scale-slider.png +share/themes/Breeze-Dark/assets/scale-trough-horizontal.png +share/themes/Breeze-Dark/assets/scale-trough-vertical.png +share/themes/Breeze-Dark/assets/scrollbar-slider-horizontal-active.png +share/themes/Breeze-Dark/assets/scrollbar-slider-horizontal-active@2.png +share/themes/Breeze-Dark/assets/scrollbar-slider-horizontal-hover.png +share/themes/Breeze-Dark/assets/scrollbar-slider-horizontal-hover@2.png +share/themes/Breeze-Dark/assets/scrollbar-slider-horizontal.png +share/themes/Breeze-Dark/assets/scrollbar-slider-horizontal@2.png +share/themes/Breeze-Dark/assets/scrollbar-slider-vertical-active.png +share/themes/Breeze-Dark/assets/scrollbar-slider-vertical-active@2.png +share/themes/Breeze-Dark/assets/scrollbar-slider-vertical-hover.png +share/themes/Breeze-Dark/assets/scrollbar-slider-vertical-hover@2.png +share/themes/Breeze-Dark/assets/scrollbar-slider-vertical.png +share/themes/Breeze-Dark/assets/scrollbar-slider-vertical@2.png +share/themes/Breeze-Dark/assets/scrollbar-trough-horizontal.png +share/themes/Breeze-Dark/assets/scrollbar-trough-horizontal@2.png +share/themes/Breeze-Dark/assets/scrollbar-trough-vertical.png +share/themes/Breeze-Dark/assets/scrollbar-trough-vertical@2.png +share/themes/Breeze-Dark/assets/spinbutton-down-insensitive.png +share/themes/Breeze-Dark/assets/spinbutton-down-rtl-insensitive.png +share/themes/Breeze-Dark/assets/spinbutton-down-rtl.png +share/themes/Breeze-Dark/assets/spinbutton-down.png +share/themes/Breeze-Dark/assets/spinbutton-up-insensitive.png +share/themes/Breeze-Dark/assets/spinbutton-up-rtl-insensitive.png +share/themes/Breeze-Dark/assets/spinbutton-up-rtl.png +share/themes/Breeze-Dark/assets/spinbutton-up.png +share/themes/Breeze-Dark/assets/tab-bottom-active.png +share/themes/Breeze-Dark/assets/tab-bottom-inactive.png +share/themes/Breeze-Dark/assets/tab-left-active.png +share/themes/Breeze-Dark/assets/tab-left-inactive.png +share/themes/Breeze-Dark/assets/tab-right-active.png +share/themes/Breeze-Dark/assets/tab-right-inactive.png +share/themes/Breeze-Dark/assets/tab-top-active.png +share/themes/Breeze-Dark/assets/tab-top-inactive.png +share/themes/Breeze-Dark/assets/titlebutton-close-active-backdrop.png +share/themes/Breeze-Dark/assets/titlebutton-close-active-backdrop@2.png +share/themes/Breeze-Dark/assets/titlebutton-close-active.png +share/themes/Breeze-Dark/assets/titlebutton-close-active@2.png +share/themes/Breeze-Dark/assets/titlebutton-close-backdrop.png +share/themes/Breeze-Dark/assets/titlebutton-close-backdrop@2.png +share/themes/Breeze-Dark/assets/titlebutton-close-hover-backdrop.png +share/themes/Breeze-Dark/assets/titlebutton-close-hover-backdrop@2.png +share/themes/Breeze-Dark/assets/titlebutton-close-hover.png +share/themes/Breeze-Dark/assets/titlebutton-close-hover@2.png +share/themes/Breeze-Dark/assets/titlebutton-close.png +share/themes/Breeze-Dark/assets/titlebutton-close@2.png +share/themes/Breeze-Dark/assets/titlebutton-maximize-active-backdrop.png +share/themes/Breeze-Dark/assets/titlebutton-maximize-active-backdrop@2.png +share/themes/Breeze-Dark/assets/titlebutton-maximize-active.png +share/themes/Breeze-Dark/assets/titlebutton-maximize-active@2.png +share/themes/Breeze-Dark/assets/titlebutton-maximize-backdrop.png +share/themes/Breeze-Dark/assets/titlebutton-maximize-backdrop@2.png +share/themes/Breeze-Dark/assets/titlebutton-maximize-hover-backdrop.png +share/themes/Breeze-Dark/assets/titlebutton-maximize-hover-backdrop@2.png +share/themes/Breeze-Dark/assets/titlebutton-maximize-hover.png +share/themes/Breeze-Dark/assets/titlebutton-maximize-hover@2.png +share/themes/Breeze-Dark/assets/titlebutton-maximize-maximized-active-backdrop.png +share/themes/Breeze-Dark/assets/titlebutton-maximize-maximized-active-backdrop@2.png +share/themes/Breeze-Dark/assets/titlebutton-maximize-maximized-active.png +share/themes/Breeze-Dark/assets/titlebutton-maximize-maximized-active@2.png +share/themes/Breeze-Dark/assets/titlebutton-maximize-maximized-backdrop.png +share/themes/Breeze-Dark/assets/titlebutton-maximize-maximized-backdrop@2.png +share/themes/Breeze-Dark/assets/titlebutton-maximize-maximized-hover-backdrop.png +share/themes/Breeze-Dark/assets/titlebutton-maximize-maximized-hover-backdrop@2.png +share/themes/Breeze-Dark/assets/titlebutton-maximize-maximized-hover.png +share/themes/Breeze-Dark/assets/titlebutton-maximize-maximized-hover@2.png +share/themes/Breeze-Dark/assets/titlebutton-maximize-maximized.png +share/themes/Breeze-Dark/assets/titlebutton-maximize-maximized@2.png +share/themes/Breeze-Dark/assets/titlebutton-maximize.png +share/themes/Breeze-Dark/assets/titlebutton-maximize@2.png +share/themes/Breeze-Dark/assets/titlebutton-minimize-active-backdrop.png +share/themes/Breeze-Dark/assets/titlebutton-minimize-active-backdrop@2.png +share/themes/Breeze-Dark/assets/titlebutton-minimize-active.png +share/themes/Breeze-Dark/assets/titlebutton-minimize-active@2.png +share/themes/Breeze-Dark/assets/titlebutton-minimize-backdrop.png +share/themes/Breeze-Dark/assets/titlebutton-minimize-backdrop@2.png +share/themes/Breeze-Dark/assets/titlebutton-minimize-hover-backdrop.png +share/themes/Breeze-Dark/assets/titlebutton-minimize-hover-backdrop@2.png +share/themes/Breeze-Dark/assets/titlebutton-minimize-hover.png +share/themes/Breeze-Dark/assets/titlebutton-minimize-hover@2.png +share/themes/Breeze-Dark/assets/titlebutton-minimize.png +share/themes/Breeze-Dark/assets/titlebutton-minimize@2.png +share/themes/Breeze-Dark/assets/togglebutton-active.png +share/themes/Breeze-Dark/assets/togglebutton-hover.png +share/themes/Breeze-Dark/assets/togglebutton-insensitive.png +share/themes/Breeze-Dark/assets/togglebutton.png +share/themes/Breeze-Dark/assets/toolbar-background.png +share/themes/Breeze-Dark/assets/toolbutton-active.png +share/themes/Breeze-Dark/assets/toolbutton-hover.png +share/themes/Breeze-Dark/assets/toolbutton-toggled.png +share/themes/Breeze-Dark/assets/tree-header.png +share/themes/Breeze-Dark/gtk-2.0/gtkrc +share/themes/Breeze-Dark/gtk-2.0/widgets/buttons +share/themes/Breeze-Dark/gtk-2.0/widgets/default +share/themes/Breeze-Dark/gtk-2.0/widgets/entry +share/themes/Breeze-Dark/gtk-2.0/widgets/menu +share/themes/Breeze-Dark/gtk-2.0/widgets/misc +share/themes/Breeze-Dark/gtk-2.0/widgets/notebook +share/themes/Breeze-Dark/gtk-2.0/widgets/progressbar +share/themes/Breeze-Dark/gtk-2.0/widgets/range +share/themes/Breeze-Dark/gtk-2.0/widgets/scrollbar +share/themes/Breeze-Dark/gtk-2.0/widgets/styles +share/themes/Breeze-Dark/gtk-2.0/widgets/toolbar +share/themes/Breeze-Dark/gtk-3.18/gtk.css +share/themes/Breeze-Dark/gtk-3.20/gtk.css +share/themes/Breeze/assets/arrow-down-active.png +share/themes/Breeze/assets/arrow-down-hover.png +share/themes/Breeze/assets/arrow-down-insensitive.png +share/themes/Breeze/assets/arrow-down.png +share/themes/Breeze/assets/arrow-left-active.png +share/themes/Breeze/assets/arrow-left-hover.png +share/themes/Breeze/assets/arrow-left-insensitive.png +share/themes/Breeze/assets/arrow-left.png +share/themes/Breeze/assets/arrow-right-active.png +share/themes/Breeze/assets/arrow-right-hover.png +share/themes/Breeze/assets/arrow-right-insensitive.png +share/themes/Breeze/assets/arrow-right.png +share/themes/Breeze/assets/arrow-small-down-active.png +share/themes/Breeze/assets/arrow-small-down-hover.png +share/themes/Breeze/assets/arrow-small-down-insensitive.png +share/themes/Breeze/assets/arrow-small-down.png +share/themes/Breeze/assets/arrow-small-left-active.png +share/themes/Breeze/assets/arrow-small-left-hover.png +share/themes/Breeze/assets/arrow-small-left-insensitive.png +share/themes/Breeze/assets/arrow-small-left.png +share/themes/Breeze/assets/arrow-small-right-active.png +share/themes/Breeze/assets/arrow-small-right-hover.png +share/themes/Breeze/assets/arrow-small-right-insensitive.png +share/themes/Breeze/assets/arrow-small-right.png +share/themes/Breeze/assets/arrow-small-up-active.png +share/themes/Breeze/assets/arrow-small-up-hover.png +share/themes/Breeze/assets/arrow-small-up-insensitive.png +share/themes/Breeze/assets/arrow-small-up.png +share/themes/Breeze/assets/arrow-up-active.png +share/themes/Breeze/assets/arrow-up-hover.png +share/themes/Breeze/assets/arrow-up-insensitive.png +share/themes/Breeze/assets/arrow-up.png +share/themes/Breeze/assets/button-active.png +share/themes/Breeze/assets/button-hover.png +share/themes/Breeze/assets/button-insensitive.png +share/themes/Breeze/assets/button.png +share/themes/Breeze/assets/check-checked-active.png +share/themes/Breeze/assets/check-checked-active@2.png +share/themes/Breeze/assets/check-checked-backdrop-insensitive.png +share/themes/Breeze/assets/check-checked-backdrop-insensitive@2.png +share/themes/Breeze/assets/check-checked-backdrop.png +share/themes/Breeze/assets/check-checked-backdrop@2.png +share/themes/Breeze/assets/check-checked-hover.png +share/themes/Breeze/assets/check-checked-hover@2.png +share/themes/Breeze/assets/check-checked-insensitive.png +share/themes/Breeze/assets/check-checked-insensitive@2.png +share/themes/Breeze/assets/check-mixed-active.png +share/themes/Breeze/assets/check-mixed-active@2.png +share/themes/Breeze/assets/check-mixed-backdrop-insensitive.png +share/themes/Breeze/assets/check-mixed-backdrop-insensitive@2.png +share/themes/Breeze/assets/check-mixed-backdrop.png +share/themes/Breeze/assets/check-mixed-backdrop@2.png +share/themes/Breeze/assets/check-mixed-hover.png +share/themes/Breeze/assets/check-mixed-hover@2.png +share/themes/Breeze/assets/check-mixed-insensitive.png +share/themes/Breeze/assets/check-mixed-insensitive@2.png +share/themes/Breeze/assets/check-selectionmode-checked-active.png +share/themes/Breeze/assets/check-selectionmode-checked-active@2.png +share/themes/Breeze/assets/check-selectionmode-checked-backdrop-insensitive.png +share/themes/Breeze/assets/check-selectionmode-checked-backdrop-insensitive@2.png +share/themes/Breeze/assets/check-selectionmode-checked-backdrop.png +share/themes/Breeze/assets/check-selectionmode-checked-backdrop@2.png +share/themes/Breeze/assets/check-selectionmode-checked-hover.png +share/themes/Breeze/assets/check-selectionmode-checked-hover@2.png +share/themes/Breeze/assets/check-selectionmode-checked-insensitive.png +share/themes/Breeze/assets/check-selectionmode-checked-insensitive@2.png +share/themes/Breeze/assets/check-selectionmode-unchecked-active.png +share/themes/Breeze/assets/check-selectionmode-unchecked-active@2.png +share/themes/Breeze/assets/check-selectionmode-unchecked-backdrop-insensitive.png +share/themes/Breeze/assets/check-selectionmode-unchecked-backdrop-insensitive@2.png +share/themes/Breeze/assets/check-selectionmode-unchecked-backdrop.png +share/themes/Breeze/assets/check-selectionmode-unchecked-backdrop@2.png +share/themes/Breeze/assets/check-selectionmode-unchecked-hover.png +share/themes/Breeze/assets/check-selectionmode-unchecked-hover@2.png +share/themes/Breeze/assets/check-selectionmode-unchecked-insensitive.png +share/themes/Breeze/assets/check-selectionmode-unchecked-insensitive@2.png +share/themes/Breeze/assets/check-selectionmode-unchecked.png +share/themes/Breeze/assets/check-selectionmode-unchecked@2.png +share/themes/Breeze/assets/check-unchecked-active.png +share/themes/Breeze/assets/check-unchecked-active@2.png +share/themes/Breeze/assets/check-unchecked-backdrop-insensitive.png +share/themes/Breeze/assets/check-unchecked-backdrop-insensitive@2.png +share/themes/Breeze/assets/check-unchecked-backdrop.png +share/themes/Breeze/assets/check-unchecked-backdrop@2.png +share/themes/Breeze/assets/check-unchecked-hover.png +share/themes/Breeze/assets/check-unchecked-hover@2.png +share/themes/Breeze/assets/check-unchecked-insensitive.png +share/themes/Breeze/assets/check-unchecked-insensitive@2.png +share/themes/Breeze/assets/check-unchecked.png +share/themes/Breeze/assets/check-unchecked@2.png +share/themes/Breeze/assets/combo-entry-active.png +share/themes/Breeze/assets/combo-entry-button-active.png +share/themes/Breeze/assets/combo-entry-button-insensitive.png +share/themes/Breeze/assets/combo-entry-button.png +share/themes/Breeze/assets/combo-entry-insensitive.png +share/themes/Breeze/assets/combo-entry.png +share/themes/Breeze/assets/entry-active.png +share/themes/Breeze/assets/entry-insensitive.png +share/themes/Breeze/assets/entry.png +share/themes/Breeze/assets/frame-gap-end.png +share/themes/Breeze/assets/frame-gap-start.png +share/themes/Breeze/assets/frame.png +share/themes/Breeze/assets/handle-h.png +share/themes/Breeze/assets/handle-v.png +share/themes/Breeze/assets/line-h.png +share/themes/Breeze/assets/line-v.png +share/themes/Breeze/assets/menu-arrow-insensitive.png +share/themes/Breeze/assets/menu-arrow-selected.png +share/themes/Breeze/assets/menu-arrow.png +share/themes/Breeze/assets/menubar-button.png +share/themes/Breeze/assets/notebook-frame-bottom.png +share/themes/Breeze/assets/notebook-frame-right.png +share/themes/Breeze/assets/notebook-frame-top.png +share/themes/Breeze/assets/notebook-gap-horizontal.png +share/themes/Breeze/assets/notebook-gap-vertical.png +share/themes/Breeze/assets/null.png +share/themes/Breeze/assets/progressbar-bar.png +share/themes/Breeze/assets/progressbar-trough.png +share/themes/Breeze/assets/radio-checked-active.png +share/themes/Breeze/assets/radio-checked-active@2.png +share/themes/Breeze/assets/radio-checked-backdrop-insensitive.png +share/themes/Breeze/assets/radio-checked-backdrop-insensitive@2.png +share/themes/Breeze/assets/radio-checked-backdrop.png +share/themes/Breeze/assets/radio-checked-backdrop@2.png +share/themes/Breeze/assets/radio-checked-hover.png +share/themes/Breeze/assets/radio-checked-hover@2.png +share/themes/Breeze/assets/radio-checked-insensitive.png +share/themes/Breeze/assets/radio-checked-insensitive@2.png +share/themes/Breeze/assets/radio-mixed-active.png +share/themes/Breeze/assets/radio-mixed-active@2.png +share/themes/Breeze/assets/radio-mixed-backdrop-insensitive.png +share/themes/Breeze/assets/radio-mixed-backdrop-insensitive@2.png +share/themes/Breeze/assets/radio-mixed-backdrop.png +share/themes/Breeze/assets/radio-mixed-backdrop@2.png +share/themes/Breeze/assets/radio-mixed-hover.png +share/themes/Breeze/assets/radio-mixed-hover@2.png +share/themes/Breeze/assets/radio-mixed-insensitive.png +share/themes/Breeze/assets/radio-mixed-insensitive@2.png +share/themes/Breeze/assets/radio-unchecked-active.png +share/themes/Breeze/assets/radio-unchecked-active@2.png +share/themes/Breeze/assets/radio-unchecked-backdrop-insensitive.png +share/themes/Breeze/assets/radio-unchecked-backdrop-insensitive@2.png +share/themes/Breeze/assets/radio-unchecked-backdrop.png +share/themes/Breeze/assets/radio-unchecked-backdrop@2.png +share/themes/Breeze/assets/radio-unchecked-hover.png +share/themes/Breeze/assets/radio-unchecked-hover@2.png +share/themes/Breeze/assets/radio-unchecked-insensitive.png +share/themes/Breeze/assets/radio-unchecked-insensitive@2.png +share/themes/Breeze/assets/radio-unchecked.png +share/themes/Breeze/assets/radio-unchecked@2.png +share/themes/Breeze/assets/scale-slider-active.png +share/themes/Breeze/assets/scale-slider-hover.png +share/themes/Breeze/assets/scale-slider-insensitive.png +share/themes/Breeze/assets/scale-slider.png +share/themes/Breeze/assets/scale-trough-horizontal.png +share/themes/Breeze/assets/scale-trough-vertical.png +share/themes/Breeze/assets/scrollbar-slider-horizontal-active.png +share/themes/Breeze/assets/scrollbar-slider-horizontal-active@2.png +share/themes/Breeze/assets/scrollbar-slider-horizontal-hover.png +share/themes/Breeze/assets/scrollbar-slider-horizontal-hover@2.png +share/themes/Breeze/assets/scrollbar-slider-horizontal.png +share/themes/Breeze/assets/scrollbar-slider-horizontal@2.png +share/themes/Breeze/assets/scrollbar-slider-vertical-active.png +share/themes/Breeze/assets/scrollbar-slider-vertical-active@2.png +share/themes/Breeze/assets/scrollbar-slider-vertical-hover.png +share/themes/Breeze/assets/scrollbar-slider-vertical-hover@2.png +share/themes/Breeze/assets/scrollbar-slider-vertical.png +share/themes/Breeze/assets/scrollbar-slider-vertical@2.png +share/themes/Breeze/assets/scrollbar-trough-horizontal.png +share/themes/Breeze/assets/scrollbar-trough-horizontal@2.png +share/themes/Breeze/assets/scrollbar-trough-vertical.png +share/themes/Breeze/assets/scrollbar-trough-vertical@2.png +share/themes/Breeze/assets/spinbutton-down-insensitive.png +share/themes/Breeze/assets/spinbutton-down-rtl-insensitive.png +share/themes/Breeze/assets/spinbutton-down-rtl.png +share/themes/Breeze/assets/spinbutton-down.png +share/themes/Breeze/assets/spinbutton-up-insensitive.png +share/themes/Breeze/assets/spinbutton-up-rtl-insensitive.png +share/themes/Breeze/assets/spinbutton-up-rtl.png +share/themes/Breeze/assets/spinbutton-up.png +share/themes/Breeze/assets/tab-bottom-active.png +share/themes/Breeze/assets/tab-bottom-inactive.png +share/themes/Breeze/assets/tab-left-active.png +share/themes/Breeze/assets/tab-left-inactive.png +share/themes/Breeze/assets/tab-right-active.png +share/themes/Breeze/assets/tab-right-inactive.png +share/themes/Breeze/assets/tab-top-active.png +share/themes/Breeze/assets/tab-top-inactive.png +share/themes/Breeze/assets/titlebutton-close-active-backdrop.png +share/themes/Breeze/assets/titlebutton-close-active-backdrop@2.png +share/themes/Breeze/assets/titlebutton-close-active.png +share/themes/Breeze/assets/titlebutton-close-active@2.png +share/themes/Breeze/assets/titlebutton-close-backdrop.png +share/themes/Breeze/assets/titlebutton-close-backdrop@2.png +share/themes/Breeze/assets/titlebutton-close-hover-backdrop.png +share/themes/Breeze/assets/titlebutton-close-hover-backdrop@2.png +share/themes/Breeze/assets/titlebutton-close-hover.png +share/themes/Breeze/assets/titlebutton-close-hover@2.png +share/themes/Breeze/assets/titlebutton-close.png +share/themes/Breeze/assets/titlebutton-close@2.png +share/themes/Breeze/assets/titlebutton-maximize-active-backdrop.png +share/themes/Breeze/assets/titlebutton-maximize-active-backdrop@2.png +share/themes/Breeze/assets/titlebutton-maximize-active.png +share/themes/Breeze/assets/titlebutton-maximize-active@2.png +share/themes/Breeze/assets/titlebutton-maximize-backdrop.png +share/themes/Breeze/assets/titlebutton-maximize-backdrop@2.png +share/themes/Breeze/assets/titlebutton-maximize-hover-backdrop.png +share/themes/Breeze/assets/titlebutton-maximize-hover-backdrop@2.png +share/themes/Breeze/assets/titlebutton-maximize-hover.png +share/themes/Breeze/assets/titlebutton-maximize-hover@2.png +share/themes/Breeze/assets/titlebutton-maximize-maximized-active-backdrop.png +share/themes/Breeze/assets/titlebutton-maximize-maximized-active-backdrop@2.png +share/themes/Breeze/assets/titlebutton-maximize-maximized-active.png +share/themes/Breeze/assets/titlebutton-maximize-maximized-active@2.png +share/themes/Breeze/assets/titlebutton-maximize-maximized-backdrop.png +share/themes/Breeze/assets/titlebutton-maximize-maximized-backdrop@2.png +share/themes/Breeze/assets/titlebutton-maximize-maximized-hover-backdrop.png +share/themes/Breeze/assets/titlebutton-maximize-maximized-hover-backdrop@2.png +share/themes/Breeze/assets/titlebutton-maximize-maximized-hover.png +share/themes/Breeze/assets/titlebutton-maximize-maximized-hover@2.png +share/themes/Breeze/assets/titlebutton-maximize-maximized.png +share/themes/Breeze/assets/titlebutton-maximize-maximized@2.png +share/themes/Breeze/assets/titlebutton-maximize.png +share/themes/Breeze/assets/titlebutton-maximize@2.png +share/themes/Breeze/assets/titlebutton-minimize-active-backdrop.png +share/themes/Breeze/assets/titlebutton-minimize-active-backdrop@2.png +share/themes/Breeze/assets/titlebutton-minimize-active.png +share/themes/Breeze/assets/titlebutton-minimize-active@2.png +share/themes/Breeze/assets/titlebutton-minimize-backdrop.png +share/themes/Breeze/assets/titlebutton-minimize-backdrop@2.png +share/themes/Breeze/assets/titlebutton-minimize-hover-backdrop.png +share/themes/Breeze/assets/titlebutton-minimize-hover-backdrop@2.png +share/themes/Breeze/assets/titlebutton-minimize-hover.png +share/themes/Breeze/assets/titlebutton-minimize-hover@2.png +share/themes/Breeze/assets/titlebutton-minimize.png +share/themes/Breeze/assets/titlebutton-minimize@2.png +share/themes/Breeze/assets/togglebutton-active.png +share/themes/Breeze/assets/togglebutton-hover.png +share/themes/Breeze/assets/togglebutton-insensitive.png +share/themes/Breeze/assets/togglebutton.png +share/themes/Breeze/assets/toolbar-background.png +share/themes/Breeze/assets/toolbutton-active.png +share/themes/Breeze/assets/toolbutton-hover.png +share/themes/Breeze/assets/toolbutton-toggled.png +share/themes/Breeze/assets/tree-header.png +share/themes/Breeze/gtk-2.0/gtkrc +share/themes/Breeze/gtk-2.0/widgets/buttons +share/themes/Breeze/gtk-2.0/widgets/default +share/themes/Breeze/gtk-2.0/widgets/entry +share/themes/Breeze/gtk-2.0/widgets/menu +share/themes/Breeze/gtk-2.0/widgets/misc +share/themes/Breeze/gtk-2.0/widgets/notebook +share/themes/Breeze/gtk-2.0/widgets/progressbar +share/themes/Breeze/gtk-2.0/widgets/range +share/themes/Breeze/gtk-2.0/widgets/scrollbar +share/themes/Breeze/gtk-2.0/widgets/styles +share/themes/Breeze/gtk-2.0/widgets/toolbar +share/themes/Breeze/gtk-3.18/gtk-dark.css +share/themes/Breeze/gtk-3.18/gtk.css +share/themes/Breeze/gtk-3.20/gtk-dark.css +share/themes/Breeze/gtk-3.20/gtk.css Property changes on: head/x11-themes/plasma5-breeze-gtk/pkg-plist ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/x11-themes/plasma5-breeze-kde4/Makefile =================================================================== --- head/x11-themes/plasma5-breeze-kde4/Makefile (nonexistent) +++ head/x11-themes/plasma5-breeze-kde4/Makefile (revision 468495) @@ -0,0 +1,25 @@ +# $FreeBSD$ + +PORTNAME= breeze +DISTVERSION= ${KDE_PLASMA_VERSION} +CATEGORIES= x11-themes kde kde-plasma +PKGNAMESUFFIX= -kde4 + +MAINTAINER= kde@FreeBSD.org +COMMENT= Plasma5 Breeze visual style for KDE4 + +LICENSE= GPLv2 +LICENSE_FILE= ${WRKSRC}/COPYING + +CMAKE_ON= USE_KDE4 + +USES= cmake:outsource compiler:c++11-lang cpe gettext \ + kde:4 pkgconfig tar:xz +USE_KDE= kdelibs automoc4 +USE_QT4= corelib dbus gui svg \ + moc_build qmake_build rcc_build uic_build +USE_XORG= x11 xcb + +DISTINFO_FILE= ${.CURDIR}/../plasma5-breeze/distinfo + +.include Property changes on: head/x11-themes/plasma5-breeze-kde4/Makefile ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/x11-themes/plasma5-breeze-kde4/files/patch-kstyle_CMakeLists.txt =================================================================== --- head/x11-themes/plasma5-breeze-kde4/files/patch-kstyle_CMakeLists.txt (nonexistent) +++ head/x11-themes/plasma5-breeze-kde4/files/patch-kstyle_CMakeLists.txt (revision 468495) @@ -0,0 +1,11 @@ +--- kstyle/CMakeLists.txt.orig 2015-11-19 11:55:03 UTC ++++ kstyle/CMakeLists.txt +@@ -28,6 +28,8 @@ if(BREEZE_USE_KDE4) + add_feature_info("x11-xcb" XCB_FOUND "Required to pass style properties to native Windows on X11 Platform") + set_feature_info("x11-xcb" "Required to pass style properties to native Windows on X11 Platform" "http://xcb.freedesktop.org") + set(BREEZE_HAVE_X11 ${XCB_FOUND}) ++ include_directories(${XCB_INCLUDE_DIRS}) ++ link_directories(${XCB_LIBRARY_DIRS}) + else() + set(BREEZE_HAVE_X11 FALSE) + endif() Property changes on: head/x11-themes/plasma5-breeze-kde4/files/patch-kstyle_CMakeLists.txt ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/x11-themes/plasma5-breeze-kde4/pkg-descr =================================================================== --- head/x11-themes/plasma5-breeze-kde4/pkg-descr (nonexistent) +++ head/x11-themes/plasma5-breeze-kde4/pkg-descr (revision 468495) @@ -0,0 +1 @@ +breeze Property changes on: head/x11-themes/plasma5-breeze-kde4/pkg-descr ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/x11-themes/plasma5-breeze-kde4/pkg-plist =================================================================== --- head/x11-themes/plasma5-breeze-kde4/pkg-plist (nonexistent) +++ head/x11-themes/plasma5-breeze-kde4/pkg-plist (revision 468495) @@ -0,0 +1,3 @@ +lib/kde4/kstyle_breeze_config.so +lib/kde4/plugins/styles/breeze.so +share/apps/kstyle/themes/breeze.themerc Property changes on: head/x11-themes/plasma5-breeze-kde4/pkg-plist ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/x11-themes/plasma5-kde-gtk-config/Makefile =================================================================== --- head/x11-themes/plasma5-kde-gtk-config/Makefile (nonexistent) +++ head/x11-themes/plasma5-kde-gtk-config/Makefile (revision 468495) @@ -0,0 +1,28 @@ +# $FreeBSD$ + +PORTNAME= kde-gtk-config +DISTVERSION= ${KDE_PLASMA_VERSION} +CATEGORIES= x11-themes kde kde-plasma + +MAINTAINER= kde@FreeBSD.org +COMMENT= Plasma5 GTK2 and GTK3 configurator + +LICENSE= GPLv2 LGPL21 +LICENSE_COMB= multi +LICENSE_FILE= ${WRKSRC}/COPYING +LICENSE_FILE_LGPL21= ${WRKSRC}/COPYING.LIB + +BUILD_DEPENDS= gsettings-desktop-schemas>=0:devel/gsettings-desktop-schemas +RUN_DEPENDS= gsettings-desktop-schemas>=0:devel/gsettings-desktop-schemas + +USES= cmake:outsource compiler:c++11-lib cpe gettext \ + kde:5 pkgconfig tar:xz +USE_GNOME= cairo gdkpixbuf2 gtk20 gtk30 glib20 +USE_KDE= archive attica auth codecs completion config configwidgets \ + coreaddons ecm i18n iconthemes jobwidgets kcmutils kio \ + newstuff service widgetsaddons xmlgui +USE_QT5= concurrent core dbus gui network testlib widgets xml \ + buildtools_build qmake_build +USE_XORG= xcursor + +.include Property changes on: head/x11-themes/plasma5-kde-gtk-config/Makefile ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/x11-themes/plasma5-kde-gtk-config/distinfo =================================================================== --- head/x11-themes/plasma5-kde-gtk-config/distinfo (nonexistent) +++ head/x11-themes/plasma5-kde-gtk-config/distinfo (revision 468495) @@ -0,0 +1,3 @@ +TIMESTAMP = 1523811804 +SHA256 (KDE/plasma/5.12.4/kde-gtk-config-5.12.4.tar.xz) = a671142823a98712b454402769da78456c7e79a4ea6672a39d382df2d3114202 +SIZE (KDE/plasma/5.12.4/kde-gtk-config-5.12.4.tar.xz) = 156784 Property changes on: head/x11-themes/plasma5-kde-gtk-config/distinfo ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/x11-themes/plasma5-kde-gtk-config/pkg-descr =================================================================== --- head/x11-themes/plasma5-kde-gtk-config/pkg-descr (nonexistent) +++ head/x11-themes/plasma5-kde-gtk-config/pkg-descr (revision 468495) @@ -0,0 +1,11 @@ +GTK2 and GTK3 Configurator for KDE. + +Configuration dialog to adapt GTK applications appearance to your taste under +KDE. Among its many features, it lets you: +* Choose which theme is used for GTK2 and GTK3 applications. +* Tweak some GTK applications behaviour. +* Select what icon theme to use in GTK applications. +* Select GTK applications default fonts. +* Easily browse and install new GTK2 and GTK3 themes. + +WWW: https://www.kde.org/plasma-desktop Property changes on: head/x11-themes/plasma5-kde-gtk-config/pkg-descr ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/x11-themes/plasma5-kde-gtk-config/pkg-plist =================================================================== --- head/x11-themes/plasma5-kde-gtk-config/pkg-plist (nonexistent) +++ head/x11-themes/plasma5-kde-gtk-config/pkg-plist (revision 468495) @@ -0,0 +1,62 @@ +etc/xdg/cgcgtk3.knsrc +etc/xdg/cgctheme.knsrc +lib/libexec/gtk3_preview +lib/libexec/gtk_preview +lib/libexec/reload_gtk_apps +%%QT_PLUGINDIR%%/kcm_kdegtkconfig.so +share/icons/hicolor/128x128/apps/kde-gtk-config.png +share/icons/hicolor/16x16/apps/kde-gtk-config.png +share/icons/hicolor/22x22/apps/kde-gtk-config.png +share/icons/hicolor/24x24/apps/kde-gtk-config.png +share/icons/hicolor/256x256/apps/kde-gtk-config.png +share/icons/hicolor/32x32/apps/kde-gtk-config.png +share/icons/hicolor/48x48/apps/kde-gtk-config.png +share/icons/hicolor/64x64/apps/kde-gtk-config.png +share/icons/hicolor/8x8/apps/kde-gtk-config.png +share/icons/hicolor/scalable/apps/kde-gtk-config.svgz +share/kcm-gtk-module/preview.ui +share/kservices5/kde-gtk-config.desktop +share/locale/ar/LC_MESSAGES/kde-gtk-config.mo +share/locale/ast/LC_MESSAGES/kde-gtk-config.mo +share/locale/bs/LC_MESSAGES/kde-gtk-config.mo +share/locale/ca/LC_MESSAGES/kde-gtk-config.mo +share/locale/ca@valencia/LC_MESSAGES/kde-gtk-config.mo +share/locale/cs/LC_MESSAGES/kde-gtk-config.mo +share/locale/da/LC_MESSAGES/kde-gtk-config.mo +share/locale/de/LC_MESSAGES/kde-gtk-config.mo +share/locale/el/LC_MESSAGES/kde-gtk-config.mo +share/locale/en_GB/LC_MESSAGES/kde-gtk-config.mo +share/locale/es/LC_MESSAGES/kde-gtk-config.mo +share/locale/et/LC_MESSAGES/kde-gtk-config.mo +share/locale/eu/LC_MESSAGES/kde-gtk-config.mo +share/locale/fi/LC_MESSAGES/kde-gtk-config.mo +share/locale/fr/LC_MESSAGES/kde-gtk-config.mo +share/locale/gl/LC_MESSAGES/kde-gtk-config.mo +share/locale/he/LC_MESSAGES/kde-gtk-config.mo +share/locale/hu/LC_MESSAGES/kde-gtk-config.mo +share/locale/ia/LC_MESSAGES/kde-gtk-config.mo +share/locale/id/LC_MESSAGES/kde-gtk-config.mo +share/locale/it/LC_MESSAGES/kde-gtk-config.mo +share/locale/ja/LC_MESSAGES/kde-gtk-config.mo +share/locale/ko/LC_MESSAGES/kde-gtk-config.mo +share/locale/lt/LC_MESSAGES/kde-gtk-config.mo +share/locale/nb/LC_MESSAGES/kde-gtk-config.mo +share/locale/nl/LC_MESSAGES/kde-gtk-config.mo +share/locale/nn/LC_MESSAGES/kde-gtk-config.mo +share/locale/pa/LC_MESSAGES/kde-gtk-config.mo +share/locale/pl/LC_MESSAGES/kde-gtk-config.mo +share/locale/pt/LC_MESSAGES/kde-gtk-config.mo +share/locale/pt_BR/LC_MESSAGES/kde-gtk-config.mo +share/locale/ro/LC_MESSAGES/kde-gtk-config.mo +share/locale/ru/LC_MESSAGES/kde-gtk-config.mo +share/locale/sk/LC_MESSAGES/kde-gtk-config.mo +share/locale/sl/LC_MESSAGES/kde-gtk-config.mo +share/locale/sr/LC_MESSAGES/kde-gtk-config.mo +share/locale/sr@ijekavian/LC_MESSAGES/kde-gtk-config.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kde-gtk-config.mo +share/locale/sr@latin/LC_MESSAGES/kde-gtk-config.mo +share/locale/sv/LC_MESSAGES/kde-gtk-config.mo +share/locale/tr/LC_MESSAGES/kde-gtk-config.mo +share/locale/uk/LC_MESSAGES/kde-gtk-config.mo +share/locale/zh_CN/LC_MESSAGES/kde-gtk-config.mo +share/locale/zh_TW/LC_MESSAGES/kde-gtk-config.mo Property changes on: head/x11-themes/plasma5-kde-gtk-config/pkg-plist ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/x11-themes/plasma5-oxygen/Makefile =================================================================== --- head/x11-themes/plasma5-oxygen/Makefile (nonexistent) +++ head/x11-themes/plasma5-oxygen/Makefile (revision 468495) @@ -0,0 +1,25 @@ +# $FreeBSD$ + +PORTNAME= oxygen +DISTVERSION= ${KDE_PLASMA_VERSION} +CATEGORIES= x11-themes kde kde-plasma + +MAINTAINER= kde@FreeBSD.org +COMMENT= Plasma5 Oxygen style + +LICENSE= GPLv2 LGPL21 +LICENSE_COMB= multi +LICENSE_FILE= ${WRKSRC}/COPYING +LICENSE_FILE_LGPL21= ${WRKSRC}/COPYING.LIB + +USES= cmake:outsource compiler:c++11-lib cpe gettext \ + kde:5 pkgconfig tar:xz +USE_LDCONFIG= yes +USE_KDE= auth codecs completion config configwidgets coreaddons decoration ecm \ + frameworkintegration guiaddons i18n kcmutils service \ + wayland widgetsaddons windowsystem +USE_QT5= core dbus gui network qml quick widgets x11extras xml \ + buildtools_build qmake_build +USE_XORG= xcb + +.include Property changes on: head/x11-themes/plasma5-oxygen/Makefile ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/x11-themes/plasma5-oxygen/distinfo =================================================================== --- head/x11-themes/plasma5-oxygen/distinfo (nonexistent) +++ head/x11-themes/plasma5-oxygen/distinfo (revision 468495) @@ -0,0 +1,3 @@ +TIMESTAMP = 1523811806 +SHA256 (KDE/plasma/5.12.4/oxygen-5.12.4.tar.xz) = 8a1378f9f701266c2ff8b42dcdc800f0272bc583dd432af94b64f1df8fa633cd +SIZE (KDE/plasma/5.12.4/oxygen-5.12.4.tar.xz) = 4467084 Property changes on: head/x11-themes/plasma5-oxygen/distinfo ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/x11-themes/plasma5-oxygen/pkg-descr =================================================================== --- head/x11-themes/plasma5-oxygen/pkg-descr (nonexistent) +++ head/x11-themes/plasma5-oxygen/pkg-descr (revision 468495) @@ -0,0 +1,3 @@ +Plasma5 Oxygen style. + +WWW: https://www.kde.org/plasma-desktop Property changes on: head/x11-themes/plasma5-oxygen/pkg-descr ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/x11-themes/plasma5-oxygen/pkg-plist =================================================================== --- head/x11-themes/plasma5-oxygen/pkg-plist (nonexistent) +++ head/x11-themes/plasma5-oxygen/pkg-plist (revision 468495) @@ -0,0 +1,781 @@ +bin/oxygen-demo5 +bin/oxygen-settings5 +lib/liboxygenstyle5.so +lib/liboxygenstyle5.so.5 +lib/liboxygenstyle5.so.%%KDE_PLASMA_VERSION%% +lib/liboxygenstyleconfig5.so +lib/liboxygenstyleconfig5.so.5 +lib/liboxygenstyleconfig5.so.%%KDE_PLASMA_VERSION%% +%%QT_PLUGINDIR%%/kstyle_oxygen_config.so +%%QT_PLUGINDIR%%/org.kde.kdecoration2/oxygendecoration.so +%%QT_PLUGINDIR%%/styles/oxygen.so +share/icons/KDE_Classic/cursors/00000000000000020006000e7e9ffc3f +share/icons/KDE_Classic/cursors/00008160000006810000408080010102 +share/icons/KDE_Classic/cursors/08e8e1c95fe2fc01f976f1e063a24ccd +share/icons/KDE_Classic/cursors/3ecb610c1bf2410f44200f48c40d3599 +share/icons/KDE_Classic/cursors/4498f0e0c1937ffe01fd06f973665830 +share/icons/KDE_Classic/cursors/5c6cd98b3f3ebcb1f9c7f1c204630408 +share/icons/KDE_Classic/cursors/9081237383d90e509aa00f00170e968f +share/icons/KDE_Classic/cursors/9d800788f1b08800ae810202380a0822 +share/icons/KDE_Classic/cursors/X_cursor +share/icons/KDE_Classic/cursors/all-scroll +share/icons/KDE_Classic/cursors/bottom_left_corner +share/icons/KDE_Classic/cursors/bottom_right_corner +share/icons/KDE_Classic/cursors/bottom_side +share/icons/KDE_Classic/cursors/center_ptr +share/icons/KDE_Classic/cursors/closedhand +share/icons/KDE_Classic/cursors/col-resize +share/icons/KDE_Classic/cursors/cross +share/icons/KDE_Classic/cursors/crossed_circle +share/icons/KDE_Classic/cursors/crosshair +share/icons/KDE_Classic/cursors/d9ce0ab605698f320427677b458ad60b +share/icons/KDE_Classic/cursors/dnd-move +share/icons/KDE_Classic/cursors/dnd-no-drop +share/icons/KDE_Classic/cursors/dnd-none +share/icons/KDE_Classic/cursors/e-resize +share/icons/KDE_Classic/cursors/e29285e634086352946a0e7090d73106 +share/icons/KDE_Classic/cursors/fcf21c00b30f7e3f83fe0dfd12e71cff +share/icons/KDE_Classic/cursors/fleur +share/icons/KDE_Classic/cursors/forbidden +share/icons/KDE_Classic/cursors/half-busy +share/icons/KDE_Classic/cursors/hand1 +share/icons/KDE_Classic/cursors/hand2 +share/icons/KDE_Classic/cursors/help +share/icons/KDE_Classic/cursors/ibeam +share/icons/KDE_Classic/cursors/left_ptr +share/icons/KDE_Classic/cursors/left_ptr_watch +share/icons/KDE_Classic/cursors/left_side +share/icons/KDE_Classic/cursors/move +share/icons/KDE_Classic/cursors/n-resize +share/icons/KDE_Classic/cursors/not-allowed +share/icons/KDE_Classic/cursors/openhand +share/icons/KDE_Classic/cursors/pirate +share/icons/KDE_Classic/cursors/pointer +share/icons/KDE_Classic/cursors/pointing_hand +share/icons/KDE_Classic/cursors/progress +share/icons/KDE_Classic/cursors/question_arrow +share/icons/KDE_Classic/cursors/right_ptr +share/icons/KDE_Classic/cursors/right_side +share/icons/KDE_Classic/cursors/row-resize +share/icons/KDE_Classic/cursors/s-resize +share/icons/KDE_Classic/cursors/sb_h_double_arrow +share/icons/KDE_Classic/cursors/sb_v_double_arrow +share/icons/KDE_Classic/cursors/size_all +share/icons/KDE_Classic/cursors/size_bdiag +share/icons/KDE_Classic/cursors/size_fdiag +share/icons/KDE_Classic/cursors/size_hor +share/icons/KDE_Classic/cursors/size_ver +share/icons/KDE_Classic/cursors/split_h +share/icons/KDE_Classic/cursors/split_v +share/icons/KDE_Classic/cursors/text +share/icons/KDE_Classic/cursors/top_left_corner +share/icons/KDE_Classic/cursors/top_right_corner +share/icons/KDE_Classic/cursors/top_side +share/icons/KDE_Classic/cursors/up_arrow +share/icons/KDE_Classic/cursors/v_double_arrow +share/icons/KDE_Classic/cursors/w-resize +share/icons/KDE_Classic/cursors/wait +share/icons/KDE_Classic/cursors/watch +share/icons/KDE_Classic/cursors/whats_this +share/icons/KDE_Classic/cursors/xcursorconfig +share/icons/KDE_Classic/cursors/xterm +share/icons/KDE_Classic/index.theme +share/icons/Oxygen_Black/cursors/00000000000000020006000e7e9ffc3f +share/icons/Oxygen_Black/cursors/00008160000006810000408080010102 +share/icons/Oxygen_Black/cursors/03b6e0fcb3499374a867c041f52298f0 +share/icons/Oxygen_Black/cursors/08e8e1c95fe2fc01f976f1e063a24ccd +share/icons/Oxygen_Black/cursors/1081e37283d90000800003c07f3ef6bf +share/icons/Oxygen_Black/cursors/3085a0e285430894940527032f8b26df +share/icons/Oxygen_Black/cursors/3ecb610c1bf2410f44200f48c40d3599 +share/icons/Oxygen_Black/cursors/4498f0e0c1937ffe01fd06f973665830 +share/icons/Oxygen_Black/cursors/5c6cd98b3f3ebcb1f9c7f1c204630408 +share/icons/Oxygen_Black/cursors/6407b0e94181790501fd1e167b474872 +share/icons/Oxygen_Black/cursors/640fb0e74195791501fd1ed57b41487f +share/icons/Oxygen_Black/cursors/9081237383d90e509aa00f00170e968f +share/icons/Oxygen_Black/cursors/9d800788f1b08800ae810202380a0822 +share/icons/Oxygen_Black/cursors/X_cursor +share/icons/Oxygen_Black/cursors/a2a266d0498c3104214a47bd64ab0fc8 +share/icons/Oxygen_Black/cursors/alias +share/icons/Oxygen_Black/cursors/all-scroll +share/icons/Oxygen_Black/cursors/b66166c04f8c3109214a4fbd64a50fc8 +share/icons/Oxygen_Black/cursors/circle +share/icons/Oxygen_Black/cursors/closedhand +share/icons/Oxygen_Black/cursors/col-resize +share/icons/Oxygen_Black/cursors/color-picker +share/icons/Oxygen_Black/cursors/copy +share/icons/Oxygen_Black/cursors/cross +share/icons/Oxygen_Black/cursors/crossed_circle +share/icons/Oxygen_Black/cursors/d9ce0ab605698f320427677b458ad60b +share/icons/Oxygen_Black/cursors/dnd-copy +share/icons/Oxygen_Black/cursors/dnd-link +share/icons/Oxygen_Black/cursors/dnd-move +share/icons/Oxygen_Black/cursors/dnd-no-drop +share/icons/Oxygen_Black/cursors/dnd-none +share/icons/Oxygen_Black/cursors/e-resize +share/icons/Oxygen_Black/cursors/e29285e634086352946a0e7090d73106 +share/icons/Oxygen_Black/cursors/fcf21c00b30f7e3f83fe0dfd12e71cff +share/icons/Oxygen_Black/cursors/fleur +share/icons/Oxygen_Black/cursors/forbidden +share/icons/Oxygen_Black/cursors/half-busy +share/icons/Oxygen_Black/cursors/hand1 +share/icons/Oxygen_Black/cursors/hand2 +share/icons/Oxygen_Black/cursors/help +share/icons/Oxygen_Black/cursors/ibeam +share/icons/Oxygen_Black/cursors/left_ptr +share/icons/Oxygen_Black/cursors/left_ptr_watch +share/icons/Oxygen_Black/cursors/link +share/icons/Oxygen_Black/cursors/move +share/icons/Oxygen_Black/cursors/n-resize +share/icons/Oxygen_Black/cursors/not-allowed +share/icons/Oxygen_Black/cursors/openhand +share/icons/Oxygen_Black/cursors/pencil +share/icons/Oxygen_Black/cursors/pirate +share/icons/Oxygen_Black/cursors/plus +share/icons/Oxygen_Black/cursors/pointer +share/icons/Oxygen_Black/cursors/pointing_hand +share/icons/Oxygen_Black/cursors/progress +share/icons/Oxygen_Black/cursors/question_arrow +share/icons/Oxygen_Black/cursors/row-resize +share/icons/Oxygen_Black/cursors/s-resize +share/icons/Oxygen_Black/cursors/sb_h_double_arrow +share/icons/Oxygen_Black/cursors/sb_v_double_arrow +share/icons/Oxygen_Black/cursors/size_all +share/icons/Oxygen_Black/cursors/size_bdiag +share/icons/Oxygen_Black/cursors/size_fdiag +share/icons/Oxygen_Black/cursors/size_hor +share/icons/Oxygen_Black/cursors/size_ver +share/icons/Oxygen_Black/cursors/split_h +share/icons/Oxygen_Black/cursors/split_v +share/icons/Oxygen_Black/cursors/text +share/icons/Oxygen_Black/cursors/up_arrow +share/icons/Oxygen_Black/cursors/v_double_arrow +share/icons/Oxygen_Black/cursors/w-resize +share/icons/Oxygen_Black/cursors/wait +share/icons/Oxygen_Black/cursors/watch +share/icons/Oxygen_Black/cursors/whats_this +share/icons/Oxygen_Black/cursors/xterm +share/icons/Oxygen_Black/index.theme +share/icons/Oxygen_Blue/cursors/00000000000000020006000e7e9ffc3f +share/icons/Oxygen_Blue/cursors/00008160000006810000408080010102 +share/icons/Oxygen_Blue/cursors/03b6e0fcb3499374a867c041f52298f0 +share/icons/Oxygen_Blue/cursors/08e8e1c95fe2fc01f976f1e063a24ccd +share/icons/Oxygen_Blue/cursors/1081e37283d90000800003c07f3ef6bf +share/icons/Oxygen_Blue/cursors/3085a0e285430894940527032f8b26df +share/icons/Oxygen_Blue/cursors/3ecb610c1bf2410f44200f48c40d3599 +share/icons/Oxygen_Blue/cursors/4498f0e0c1937ffe01fd06f973665830 +share/icons/Oxygen_Blue/cursors/5c6cd98b3f3ebcb1f9c7f1c204630408 +share/icons/Oxygen_Blue/cursors/6407b0e94181790501fd1e167b474872 +share/icons/Oxygen_Blue/cursors/640fb0e74195791501fd1ed57b41487f +share/icons/Oxygen_Blue/cursors/9081237383d90e509aa00f00170e968f +share/icons/Oxygen_Blue/cursors/9d800788f1b08800ae810202380a0822 +share/icons/Oxygen_Blue/cursors/X_cursor +share/icons/Oxygen_Blue/cursors/a2a266d0498c3104214a47bd64ab0fc8 +share/icons/Oxygen_Blue/cursors/alias +share/icons/Oxygen_Blue/cursors/all-scroll +share/icons/Oxygen_Blue/cursors/b66166c04f8c3109214a4fbd64a50fc8 +share/icons/Oxygen_Blue/cursors/circle +share/icons/Oxygen_Blue/cursors/closedhand +share/icons/Oxygen_Blue/cursors/col-resize +share/icons/Oxygen_Blue/cursors/color-picker +share/icons/Oxygen_Blue/cursors/copy +share/icons/Oxygen_Blue/cursors/cross +share/icons/Oxygen_Blue/cursors/crossed_circle +share/icons/Oxygen_Blue/cursors/d9ce0ab605698f320427677b458ad60b +share/icons/Oxygen_Blue/cursors/dnd-copy +share/icons/Oxygen_Blue/cursors/dnd-link +share/icons/Oxygen_Blue/cursors/dnd-move +share/icons/Oxygen_Blue/cursors/dnd-no-drop +share/icons/Oxygen_Blue/cursors/dnd-none +share/icons/Oxygen_Blue/cursors/e-resize +share/icons/Oxygen_Blue/cursors/e29285e634086352946a0e7090d73106 +share/icons/Oxygen_Blue/cursors/fcf21c00b30f7e3f83fe0dfd12e71cff +share/icons/Oxygen_Blue/cursors/fleur +share/icons/Oxygen_Blue/cursors/forbidden +share/icons/Oxygen_Blue/cursors/half-busy +share/icons/Oxygen_Blue/cursors/hand1 +share/icons/Oxygen_Blue/cursors/hand2 +share/icons/Oxygen_Blue/cursors/help +share/icons/Oxygen_Blue/cursors/ibeam +share/icons/Oxygen_Blue/cursors/left_ptr +share/icons/Oxygen_Blue/cursors/left_ptr_watch +share/icons/Oxygen_Blue/cursors/link +share/icons/Oxygen_Blue/cursors/move +share/icons/Oxygen_Blue/cursors/n-resize +share/icons/Oxygen_Blue/cursors/not-allowed +share/icons/Oxygen_Blue/cursors/openhand +share/icons/Oxygen_Blue/cursors/pencil +share/icons/Oxygen_Blue/cursors/pirate +share/icons/Oxygen_Blue/cursors/plus +share/icons/Oxygen_Blue/cursors/pointer +share/icons/Oxygen_Blue/cursors/pointing_hand +share/icons/Oxygen_Blue/cursors/progress +share/icons/Oxygen_Blue/cursors/question_arrow +share/icons/Oxygen_Blue/cursors/row-resize +share/icons/Oxygen_Blue/cursors/s-resize +share/icons/Oxygen_Blue/cursors/sb_h_double_arrow +share/icons/Oxygen_Blue/cursors/sb_v_double_arrow +share/icons/Oxygen_Blue/cursors/size_all +share/icons/Oxygen_Blue/cursors/size_bdiag +share/icons/Oxygen_Blue/cursors/size_fdiag +share/icons/Oxygen_Blue/cursors/size_hor +share/icons/Oxygen_Blue/cursors/size_ver +share/icons/Oxygen_Blue/cursors/split_h +share/icons/Oxygen_Blue/cursors/split_v +share/icons/Oxygen_Blue/cursors/text +share/icons/Oxygen_Blue/cursors/up_arrow +share/icons/Oxygen_Blue/cursors/v_double_arrow +share/icons/Oxygen_Blue/cursors/w-resize +share/icons/Oxygen_Blue/cursors/wait +share/icons/Oxygen_Blue/cursors/watch +share/icons/Oxygen_Blue/cursors/whats_this +share/icons/Oxygen_Blue/cursors/xterm +share/icons/Oxygen_Blue/index.theme +share/icons/Oxygen_White/cursors/00000000000000020006000e7e9ffc3f +share/icons/Oxygen_White/cursors/00008160000006810000408080010102 +share/icons/Oxygen_White/cursors/03b6e0fcb3499374a867c041f52298f0 +share/icons/Oxygen_White/cursors/08e8e1c95fe2fc01f976f1e063a24ccd +share/icons/Oxygen_White/cursors/1081e37283d90000800003c07f3ef6bf +share/icons/Oxygen_White/cursors/3085a0e285430894940527032f8b26df +share/icons/Oxygen_White/cursors/3ecb610c1bf2410f44200f48c40d3599 +share/icons/Oxygen_White/cursors/4498f0e0c1937ffe01fd06f973665830 +share/icons/Oxygen_White/cursors/5c6cd98b3f3ebcb1f9c7f1c204630408 +share/icons/Oxygen_White/cursors/6407b0e94181790501fd1e167b474872 +share/icons/Oxygen_White/cursors/640fb0e74195791501fd1ed57b41487f +share/icons/Oxygen_White/cursors/9081237383d90e509aa00f00170e968f +share/icons/Oxygen_White/cursors/9d800788f1b08800ae810202380a0822 +share/icons/Oxygen_White/cursors/X_cursor +share/icons/Oxygen_White/cursors/a2a266d0498c3104214a47bd64ab0fc8 +share/icons/Oxygen_White/cursors/alias +share/icons/Oxygen_White/cursors/all-scroll +share/icons/Oxygen_White/cursors/b66166c04f8c3109214a4fbd64a50fc8 +share/icons/Oxygen_White/cursors/circle +share/icons/Oxygen_White/cursors/closedhand +share/icons/Oxygen_White/cursors/col-resize +share/icons/Oxygen_White/cursors/color-picker +share/icons/Oxygen_White/cursors/copy +share/icons/Oxygen_White/cursors/cross +share/icons/Oxygen_White/cursors/crossed_circle +share/icons/Oxygen_White/cursors/d9ce0ab605698f320427677b458ad60b +share/icons/Oxygen_White/cursors/dnd-copy +share/icons/Oxygen_White/cursors/dnd-link +share/icons/Oxygen_White/cursors/dnd-move +share/icons/Oxygen_White/cursors/dnd-no-drop +share/icons/Oxygen_White/cursors/dnd-none +share/icons/Oxygen_White/cursors/e-resize +share/icons/Oxygen_White/cursors/e29285e634086352946a0e7090d73106 +share/icons/Oxygen_White/cursors/fcf21c00b30f7e3f83fe0dfd12e71cff +share/icons/Oxygen_White/cursors/fleur +share/icons/Oxygen_White/cursors/forbidden +share/icons/Oxygen_White/cursors/half-busy +share/icons/Oxygen_White/cursors/hand1 +share/icons/Oxygen_White/cursors/hand2 +share/icons/Oxygen_White/cursors/help +share/icons/Oxygen_White/cursors/ibeam +share/icons/Oxygen_White/cursors/left_ptr +share/icons/Oxygen_White/cursors/left_ptr_watch +share/icons/Oxygen_White/cursors/link +share/icons/Oxygen_White/cursors/move +share/icons/Oxygen_White/cursors/n-resize +share/icons/Oxygen_White/cursors/not-allowed +share/icons/Oxygen_White/cursors/openhand +share/icons/Oxygen_White/cursors/pencil +share/icons/Oxygen_White/cursors/pirate +share/icons/Oxygen_White/cursors/plus +share/icons/Oxygen_White/cursors/pointer +share/icons/Oxygen_White/cursors/pointing_hand +share/icons/Oxygen_White/cursors/progress +share/icons/Oxygen_White/cursors/question_arrow +share/icons/Oxygen_White/cursors/row-resize +share/icons/Oxygen_White/cursors/s-resize +share/icons/Oxygen_White/cursors/sb_h_double_arrow +share/icons/Oxygen_White/cursors/sb_v_double_arrow +share/icons/Oxygen_White/cursors/size_all +share/icons/Oxygen_White/cursors/size_bdiag +share/icons/Oxygen_White/cursors/size_fdiag +share/icons/Oxygen_White/cursors/size_hor +share/icons/Oxygen_White/cursors/size_ver +share/icons/Oxygen_White/cursors/split_h +share/icons/Oxygen_White/cursors/split_v +share/icons/Oxygen_White/cursors/text +share/icons/Oxygen_White/cursors/up_arrow +share/icons/Oxygen_White/cursors/v_double_arrow +share/icons/Oxygen_White/cursors/w-resize +share/icons/Oxygen_White/cursors/wait +share/icons/Oxygen_White/cursors/watch +share/icons/Oxygen_White/cursors/whats_this +share/icons/Oxygen_White/cursors/xterm +share/icons/Oxygen_White/index.theme +share/icons/Oxygen_Yellow/cursors/00000000000000020006000e7e9ffc3f +share/icons/Oxygen_Yellow/cursors/00008160000006810000408080010102 +share/icons/Oxygen_Yellow/cursors/03b6e0fcb3499374a867c041f52298f0 +share/icons/Oxygen_Yellow/cursors/08e8e1c95fe2fc01f976f1e063a24ccd +share/icons/Oxygen_Yellow/cursors/1081e37283d90000800003c07f3ef6bf +share/icons/Oxygen_Yellow/cursors/3085a0e285430894940527032f8b26df +share/icons/Oxygen_Yellow/cursors/3ecb610c1bf2410f44200f48c40d3599 +share/icons/Oxygen_Yellow/cursors/4498f0e0c1937ffe01fd06f973665830 +share/icons/Oxygen_Yellow/cursors/5c6cd98b3f3ebcb1f9c7f1c204630408 +share/icons/Oxygen_Yellow/cursors/6407b0e94181790501fd1e167b474872 +share/icons/Oxygen_Yellow/cursors/640fb0e74195791501fd1ed57b41487f +share/icons/Oxygen_Yellow/cursors/9081237383d90e509aa00f00170e968f +share/icons/Oxygen_Yellow/cursors/9d800788f1b08800ae810202380a0822 +share/icons/Oxygen_Yellow/cursors/X_cursor +share/icons/Oxygen_Yellow/cursors/a2a266d0498c3104214a47bd64ab0fc8 +share/icons/Oxygen_Yellow/cursors/alias +share/icons/Oxygen_Yellow/cursors/all-scroll +share/icons/Oxygen_Yellow/cursors/b66166c04f8c3109214a4fbd64a50fc8 +share/icons/Oxygen_Yellow/cursors/circle +share/icons/Oxygen_Yellow/cursors/closedhand +share/icons/Oxygen_Yellow/cursors/col-resize +share/icons/Oxygen_Yellow/cursors/color-picker +share/icons/Oxygen_Yellow/cursors/copy +share/icons/Oxygen_Yellow/cursors/cross +share/icons/Oxygen_Yellow/cursors/crossed_circle +share/icons/Oxygen_Yellow/cursors/d9ce0ab605698f320427677b458ad60b +share/icons/Oxygen_Yellow/cursors/dnd-copy +share/icons/Oxygen_Yellow/cursors/dnd-link +share/icons/Oxygen_Yellow/cursors/dnd-move +share/icons/Oxygen_Yellow/cursors/dnd-no-drop +share/icons/Oxygen_Yellow/cursors/dnd-none +share/icons/Oxygen_Yellow/cursors/e-resize +share/icons/Oxygen_Yellow/cursors/e29285e634086352946a0e7090d73106 +share/icons/Oxygen_Yellow/cursors/fcf21c00b30f7e3f83fe0dfd12e71cff +share/icons/Oxygen_Yellow/cursors/fleur +share/icons/Oxygen_Yellow/cursors/forbidden +share/icons/Oxygen_Yellow/cursors/half-busy +share/icons/Oxygen_Yellow/cursors/hand1 +share/icons/Oxygen_Yellow/cursors/hand2 +share/icons/Oxygen_Yellow/cursors/help +share/icons/Oxygen_Yellow/cursors/ibeam +share/icons/Oxygen_Yellow/cursors/left_ptr +share/icons/Oxygen_Yellow/cursors/left_ptr_watch +share/icons/Oxygen_Yellow/cursors/link +share/icons/Oxygen_Yellow/cursors/move +share/icons/Oxygen_Yellow/cursors/n-resize +share/icons/Oxygen_Yellow/cursors/not-allowed +share/icons/Oxygen_Yellow/cursors/openhand +share/icons/Oxygen_Yellow/cursors/pencil +share/icons/Oxygen_Yellow/cursors/pirate +share/icons/Oxygen_Yellow/cursors/plus +share/icons/Oxygen_Yellow/cursors/pointer +share/icons/Oxygen_Yellow/cursors/pointing_hand +share/icons/Oxygen_Yellow/cursors/progress +share/icons/Oxygen_Yellow/cursors/question_arrow +share/icons/Oxygen_Yellow/cursors/row-resize +share/icons/Oxygen_Yellow/cursors/s-resize +share/icons/Oxygen_Yellow/cursors/sb_h_double_arrow +share/icons/Oxygen_Yellow/cursors/sb_v_double_arrow +share/icons/Oxygen_Yellow/cursors/size_all +share/icons/Oxygen_Yellow/cursors/size_bdiag +share/icons/Oxygen_Yellow/cursors/size_fdiag +share/icons/Oxygen_Yellow/cursors/size_hor +share/icons/Oxygen_Yellow/cursors/size_ver +share/icons/Oxygen_Yellow/cursors/split_h +share/icons/Oxygen_Yellow/cursors/split_v +share/icons/Oxygen_Yellow/cursors/text +share/icons/Oxygen_Yellow/cursors/up_arrow +share/icons/Oxygen_Yellow/cursors/v_double_arrow +share/icons/Oxygen_Yellow/cursors/w-resize +share/icons/Oxygen_Yellow/cursors/wait +share/icons/Oxygen_Yellow/cursors/watch +share/icons/Oxygen_Yellow/cursors/whats_this +share/icons/Oxygen_Yellow/cursors/xterm +share/icons/Oxygen_Yellow/index.theme +share/icons/Oxygen_Zion/cursors/00000000000000020006000e7e9ffc3f +share/icons/Oxygen_Zion/cursors/00008160000006810000408080010102 +share/icons/Oxygen_Zion/cursors/03b6e0fcb3499374a867c041f52298f0 +share/icons/Oxygen_Zion/cursors/08e8e1c95fe2fc01f976f1e063a24ccd +share/icons/Oxygen_Zion/cursors/1081e37283d90000800003c07f3ef6bf +share/icons/Oxygen_Zion/cursors/3085a0e285430894940527032f8b26df +share/icons/Oxygen_Zion/cursors/3ecb610c1bf2410f44200f48c40d3599 +share/icons/Oxygen_Zion/cursors/4498f0e0c1937ffe01fd06f973665830 +share/icons/Oxygen_Zion/cursors/5c6cd98b3f3ebcb1f9c7f1c204630408 +share/icons/Oxygen_Zion/cursors/6407b0e94181790501fd1e167b474872 +share/icons/Oxygen_Zion/cursors/640fb0e74195791501fd1ed57b41487f +share/icons/Oxygen_Zion/cursors/9081237383d90e509aa00f00170e968f +share/icons/Oxygen_Zion/cursors/9d800788f1b08800ae810202380a0822 +share/icons/Oxygen_Zion/cursors/X_cursor +share/icons/Oxygen_Zion/cursors/a2a266d0498c3104214a47bd64ab0fc8 +share/icons/Oxygen_Zion/cursors/alias +share/icons/Oxygen_Zion/cursors/all-scroll +share/icons/Oxygen_Zion/cursors/b66166c04f8c3109214a4fbd64a50fc8 +share/icons/Oxygen_Zion/cursors/circle +share/icons/Oxygen_Zion/cursors/closedhand +share/icons/Oxygen_Zion/cursors/col-resize +share/icons/Oxygen_Zion/cursors/color-picker +share/icons/Oxygen_Zion/cursors/copy +share/icons/Oxygen_Zion/cursors/cross +share/icons/Oxygen_Zion/cursors/crossed_circle +share/icons/Oxygen_Zion/cursors/d9ce0ab605698f320427677b458ad60b +share/icons/Oxygen_Zion/cursors/dnd-copy +share/icons/Oxygen_Zion/cursors/dnd-link +share/icons/Oxygen_Zion/cursors/dnd-move +share/icons/Oxygen_Zion/cursors/dnd-no-drop +share/icons/Oxygen_Zion/cursors/dnd-none +share/icons/Oxygen_Zion/cursors/e-resize +share/icons/Oxygen_Zion/cursors/e29285e634086352946a0e7090d73106 +share/icons/Oxygen_Zion/cursors/fcf21c00b30f7e3f83fe0dfd12e71cff +share/icons/Oxygen_Zion/cursors/fleur +share/icons/Oxygen_Zion/cursors/forbidden +share/icons/Oxygen_Zion/cursors/half-busy +share/icons/Oxygen_Zion/cursors/hand1 +share/icons/Oxygen_Zion/cursors/hand2 +share/icons/Oxygen_Zion/cursors/help +share/icons/Oxygen_Zion/cursors/ibeam +share/icons/Oxygen_Zion/cursors/left_ptr +share/icons/Oxygen_Zion/cursors/left_ptr_watch +share/icons/Oxygen_Zion/cursors/link +share/icons/Oxygen_Zion/cursors/move +share/icons/Oxygen_Zion/cursors/n-resize +share/icons/Oxygen_Zion/cursors/not-allowed +share/icons/Oxygen_Zion/cursors/openhand +share/icons/Oxygen_Zion/cursors/pencil +share/icons/Oxygen_Zion/cursors/pirate +share/icons/Oxygen_Zion/cursors/plus +share/icons/Oxygen_Zion/cursors/pointer +share/icons/Oxygen_Zion/cursors/pointing_hand +share/icons/Oxygen_Zion/cursors/progress +share/icons/Oxygen_Zion/cursors/question_arrow +share/icons/Oxygen_Zion/cursors/row-resize +share/icons/Oxygen_Zion/cursors/s-resize +share/icons/Oxygen_Zion/cursors/sb_h_double_arrow +share/icons/Oxygen_Zion/cursors/sb_v_double_arrow +share/icons/Oxygen_Zion/cursors/size_all +share/icons/Oxygen_Zion/cursors/size_bdiag +share/icons/Oxygen_Zion/cursors/size_fdiag +share/icons/Oxygen_Zion/cursors/size_hor +share/icons/Oxygen_Zion/cursors/size_ver +share/icons/Oxygen_Zion/cursors/split_h +share/icons/Oxygen_Zion/cursors/split_v +share/icons/Oxygen_Zion/cursors/text +share/icons/Oxygen_Zion/cursors/up_arrow +share/icons/Oxygen_Zion/cursors/v_double_arrow +share/icons/Oxygen_Zion/cursors/w-resize +share/icons/Oxygen_Zion/cursors/wait +share/icons/Oxygen_Zion/cursors/watch +share/icons/Oxygen_Zion/cursors/whats_this +share/icons/Oxygen_Zion/cursors/xterm +share/icons/Oxygen_Zion/index.theme +share/icons/hicolor/256x256/apps/oxygen-settings.png +share/kservices5/oxygendecorationconfig.desktop +share/kservices5/oxygenstyleconfig.desktop +share/kstyle/themes/oxygen.themerc +share/locale/af/LC_MESSAGES/oxygen_style_config.mo +share/locale/af/LC_MESSAGES/oxygen_style_demo.mo +share/locale/ar/LC_MESSAGES/liboxygenstyleconfig.mo +share/locale/ar/LC_MESSAGES/oxygen_kdecoration.mo +share/locale/ar/LC_MESSAGES/oxygen_style_config.mo +share/locale/ar/LC_MESSAGES/oxygen_style_demo.mo +share/locale/ast/LC_MESSAGES/liboxygenstyleconfig.mo +share/locale/ast/LC_MESSAGES/oxygen_kdecoration.mo +share/locale/ast/LC_MESSAGES/oxygen_style_config.mo +share/locale/ast/LC_MESSAGES/oxygen_style_demo.mo +share/locale/be/LC_MESSAGES/oxygen_style_config.mo +share/locale/be/LC_MESSAGES/oxygen_style_demo.mo +share/locale/be@latin/LC_MESSAGES/oxygen_style_config.mo +share/locale/be@latin/LC_MESSAGES/oxygen_style_demo.mo +share/locale/bg/LC_MESSAGES/oxygen_style_config.mo +share/locale/bg/LC_MESSAGES/oxygen_style_demo.mo +share/locale/bn_IN/LC_MESSAGES/oxygen_style_config.mo +share/locale/bn_IN/LC_MESSAGES/oxygen_style_demo.mo +share/locale/br/LC_MESSAGES/oxygen_style_config.mo +share/locale/br/LC_MESSAGES/oxygen_style_demo.mo +share/locale/bs/LC_MESSAGES/liboxygenstyleconfig.mo +share/locale/bs/LC_MESSAGES/oxygen_kdecoration.mo +share/locale/bs/LC_MESSAGES/oxygen_style_config.mo +share/locale/bs/LC_MESSAGES/oxygen_style_demo.mo +share/locale/ca/LC_MESSAGES/liboxygenstyleconfig.mo +share/locale/ca/LC_MESSAGES/oxygen_kdecoration.mo +share/locale/ca/LC_MESSAGES/oxygen_style_config.mo +share/locale/ca/LC_MESSAGES/oxygen_style_demo.mo +share/locale/ca@valencia/LC_MESSAGES/liboxygenstyleconfig.mo +share/locale/ca@valencia/LC_MESSAGES/oxygen_kdecoration.mo +share/locale/ca@valencia/LC_MESSAGES/oxygen_style_config.mo +share/locale/ca@valencia/LC_MESSAGES/oxygen_style_demo.mo +share/locale/cs/LC_MESSAGES/liboxygenstyleconfig.mo +share/locale/cs/LC_MESSAGES/oxygen_kdecoration.mo +share/locale/cs/LC_MESSAGES/oxygen_style_config.mo +share/locale/cs/LC_MESSAGES/oxygen_style_demo.mo +share/locale/csb/LC_MESSAGES/oxygen_style_config.mo +share/locale/csb/LC_MESSAGES/oxygen_style_demo.mo +share/locale/cy/LC_MESSAGES/oxygen_style_config.mo +share/locale/cy/LC_MESSAGES/oxygen_style_demo.mo +share/locale/da/LC_MESSAGES/liboxygenstyleconfig.mo +share/locale/da/LC_MESSAGES/oxygen_kdecoration.mo +share/locale/da/LC_MESSAGES/oxygen_style_config.mo +share/locale/da/LC_MESSAGES/oxygen_style_demo.mo +share/locale/de/LC_MESSAGES/liboxygenstyleconfig.mo +share/locale/de/LC_MESSAGES/oxygen_kdecoration.mo +share/locale/de/LC_MESSAGES/oxygen_style_config.mo +share/locale/de/LC_MESSAGES/oxygen_style_demo.mo +share/locale/el/LC_MESSAGES/liboxygenstyleconfig.mo +share/locale/el/LC_MESSAGES/oxygen_kdecoration.mo +share/locale/el/LC_MESSAGES/oxygen_style_config.mo +share/locale/el/LC_MESSAGES/oxygen_style_demo.mo +share/locale/en_GB/LC_MESSAGES/liboxygenstyleconfig.mo +share/locale/en_GB/LC_MESSAGES/oxygen_kdecoration.mo +share/locale/en_GB/LC_MESSAGES/oxygen_style_config.mo +share/locale/en_GB/LC_MESSAGES/oxygen_style_demo.mo +share/locale/eo/LC_MESSAGES/oxygen_style_config.mo +share/locale/eo/LC_MESSAGES/oxygen_style_demo.mo +share/locale/es/LC_MESSAGES/liboxygenstyleconfig.mo +share/locale/es/LC_MESSAGES/oxygen_kdecoration.mo +share/locale/es/LC_MESSAGES/oxygen_style_config.mo +share/locale/es/LC_MESSAGES/oxygen_style_demo.mo +share/locale/et/LC_MESSAGES/liboxygenstyleconfig.mo +share/locale/et/LC_MESSAGES/oxygen_kdecoration.mo +share/locale/et/LC_MESSAGES/oxygen_style_config.mo +share/locale/et/LC_MESSAGES/oxygen_style_demo.mo +share/locale/eu/LC_MESSAGES/oxygen_kdecoration.mo +share/locale/eu/LC_MESSAGES/oxygen_style_config.mo +share/locale/eu/LC_MESSAGES/oxygen_style_demo.mo +share/locale/fa/LC_MESSAGES/oxygen_style_config.mo +share/locale/fa/LC_MESSAGES/oxygen_style_demo.mo +share/locale/fi/LC_MESSAGES/liboxygenstyleconfig.mo +share/locale/fi/LC_MESSAGES/oxygen_kdecoration.mo +share/locale/fi/LC_MESSAGES/oxygen_style_config.mo +share/locale/fi/LC_MESSAGES/oxygen_style_demo.mo +share/locale/fr/LC_MESSAGES/liboxygenstyleconfig.mo +share/locale/fr/LC_MESSAGES/oxygen_kdecoration.mo +share/locale/fr/LC_MESSAGES/oxygen_style_config.mo +share/locale/fr/LC_MESSAGES/oxygen_style_demo.mo +share/locale/fy/LC_MESSAGES/oxygen_style_config.mo +share/locale/fy/LC_MESSAGES/oxygen_style_demo.mo +share/locale/ga/LC_MESSAGES/liboxygenstyleconfig.mo +share/locale/ga/LC_MESSAGES/oxygen_style_config.mo +share/locale/ga/LC_MESSAGES/oxygen_style_demo.mo +share/locale/gl/LC_MESSAGES/liboxygenstyleconfig.mo +share/locale/gl/LC_MESSAGES/oxygen_kdecoration.mo +share/locale/gl/LC_MESSAGES/oxygen_style_config.mo +share/locale/gl/LC_MESSAGES/oxygen_style_demo.mo +share/locale/gu/LC_MESSAGES/oxygen_style_config.mo +share/locale/gu/LC_MESSAGES/oxygen_style_demo.mo +share/locale/he/LC_MESSAGES/liboxygenstyleconfig.mo +share/locale/he/LC_MESSAGES/oxygen_style_config.mo +share/locale/he/LC_MESSAGES/oxygen_style_demo.mo +share/locale/hi/LC_MESSAGES/oxygen_style_config.mo +share/locale/hi/LC_MESSAGES/oxygen_style_demo.mo +share/locale/hne/LC_MESSAGES/oxygen_style_config.mo +share/locale/hne/LC_MESSAGES/oxygen_style_demo.mo +share/locale/hr/LC_MESSAGES/oxygen_style_config.mo +share/locale/hr/LC_MESSAGES/oxygen_style_demo.mo +share/locale/hsb/LC_MESSAGES/oxygen_style_config.mo +share/locale/hsb/LC_MESSAGES/oxygen_style_demo.mo +share/locale/hu/LC_MESSAGES/liboxygenstyleconfig.mo +share/locale/hu/LC_MESSAGES/oxygen_kdecoration.mo +share/locale/hu/LC_MESSAGES/oxygen_style_config.mo +share/locale/hu/LC_MESSAGES/oxygen_style_demo.mo +share/locale/ia/LC_MESSAGES/liboxygenstyleconfig.mo +share/locale/ia/LC_MESSAGES/oxygen_kdecoration.mo +share/locale/ia/LC_MESSAGES/oxygen_style_config.mo +share/locale/ia/LC_MESSAGES/oxygen_style_demo.mo +share/locale/id/LC_MESSAGES/oxygen_style_config.mo +share/locale/id/LC_MESSAGES/oxygen_style_demo.mo +share/locale/is/LC_MESSAGES/oxygen_style_config.mo +share/locale/is/LC_MESSAGES/oxygen_style_demo.mo +share/locale/it/LC_MESSAGES/liboxygenstyleconfig.mo +share/locale/it/LC_MESSAGES/oxygen_kdecoration.mo +share/locale/it/LC_MESSAGES/oxygen_style_config.mo +share/locale/it/LC_MESSAGES/oxygen_style_demo.mo +share/locale/ja/LC_MESSAGES/liboxygenstyleconfig.mo +share/locale/ja/LC_MESSAGES/oxygen_kdecoration.mo +share/locale/ja/LC_MESSAGES/oxygen_style_config.mo +share/locale/ja/LC_MESSAGES/oxygen_style_demo.mo +share/locale/kk/LC_MESSAGES/liboxygenstyleconfig.mo +share/locale/kk/LC_MESSAGES/oxygen_style_config.mo +share/locale/kk/LC_MESSAGES/oxygen_style_demo.mo +share/locale/km/LC_MESSAGES/oxygen_style_config.mo +share/locale/km/LC_MESSAGES/oxygen_style_demo.mo +share/locale/kn/LC_MESSAGES/oxygen_style_config.mo +share/locale/kn/LC_MESSAGES/oxygen_style_demo.mo +share/locale/ko/LC_MESSAGES/liboxygenstyleconfig.mo +share/locale/ko/LC_MESSAGES/oxygen_kdecoration.mo +share/locale/ko/LC_MESSAGES/oxygen_style_config.mo +share/locale/ko/LC_MESSAGES/oxygen_style_demo.mo +share/locale/ku/LC_MESSAGES/oxygen_style_config.mo +share/locale/ku/LC_MESSAGES/oxygen_style_demo.mo +share/locale/lb/LC_MESSAGES/oxygen_style_config.mo +share/locale/lb/LC_MESSAGES/oxygen_style_demo.mo +share/locale/lt/LC_MESSAGES/liboxygenstyleconfig.mo +share/locale/lt/LC_MESSAGES/oxygen_kdecoration.mo +share/locale/lt/LC_MESSAGES/oxygen_style_config.mo +share/locale/lt/LC_MESSAGES/oxygen_style_demo.mo +share/locale/lv/LC_MESSAGES/oxygen_style_config.mo +share/locale/lv/LC_MESSAGES/oxygen_style_demo.mo +share/locale/mai/LC_MESSAGES/oxygen_style_config.mo +share/locale/mai/LC_MESSAGES/oxygen_style_demo.mo +share/locale/mk/LC_MESSAGES/oxygen_style_config.mo +share/locale/mk/LC_MESSAGES/oxygen_style_demo.mo +share/locale/ml/LC_MESSAGES/oxygen_style_config.mo +share/locale/ml/LC_MESSAGES/oxygen_style_demo.mo +share/locale/mr/LC_MESSAGES/liboxygenstyleconfig.mo +share/locale/mr/LC_MESSAGES/oxygen_style_config.mo +share/locale/mr/LC_MESSAGES/oxygen_style_demo.mo +share/locale/ms/LC_MESSAGES/oxygen_style_config.mo +share/locale/ms/LC_MESSAGES/oxygen_style_demo.mo +share/locale/nb/LC_MESSAGES/liboxygenstyleconfig.mo +share/locale/nb/LC_MESSAGES/oxygen_kdecoration.mo +share/locale/nb/LC_MESSAGES/oxygen_style_config.mo +share/locale/nb/LC_MESSAGES/oxygen_style_demo.mo +share/locale/nds/LC_MESSAGES/liboxygenstyleconfig.mo +share/locale/nds/LC_MESSAGES/oxygen_kdecoration.mo +share/locale/nds/LC_MESSAGES/oxygen_style_config.mo +share/locale/nds/LC_MESSAGES/oxygen_style_demo.mo +share/locale/ne/LC_MESSAGES/oxygen_style_config.mo +share/locale/ne/LC_MESSAGES/oxygen_style_demo.mo +share/locale/nl/LC_MESSAGES/liboxygenstyleconfig.mo +share/locale/nl/LC_MESSAGES/oxygen_kdecoration.mo +share/locale/nl/LC_MESSAGES/oxygen_style_config.mo +share/locale/nl/LC_MESSAGES/oxygen_style_demo.mo +share/locale/nn/LC_MESSAGES/liboxygenstyleconfig.mo +share/locale/nn/LC_MESSAGES/oxygen_kdecoration.mo +share/locale/nn/LC_MESSAGES/oxygen_style_config.mo +share/locale/nn/LC_MESSAGES/oxygen_style_demo.mo +share/locale/or/LC_MESSAGES/oxygen_style_config.mo +share/locale/or/LC_MESSAGES/oxygen_style_demo.mo +share/locale/pa/LC_MESSAGES/liboxygenstyleconfig.mo +share/locale/pa/LC_MESSAGES/oxygen_kdecoration.mo +share/locale/pa/LC_MESSAGES/oxygen_style_config.mo +share/locale/pa/LC_MESSAGES/oxygen_style_demo.mo +share/locale/pl/LC_MESSAGES/liboxygenstyleconfig.mo +share/locale/pl/LC_MESSAGES/oxygen_kdecoration.mo +share/locale/pl/LC_MESSAGES/oxygen_style_config.mo +share/locale/pl/LC_MESSAGES/oxygen_style_demo.mo +share/locale/pt/LC_MESSAGES/liboxygenstyleconfig.mo +share/locale/pt/LC_MESSAGES/oxygen_kdecoration.mo +share/locale/pt/LC_MESSAGES/oxygen_style_config.mo +share/locale/pt/LC_MESSAGES/oxygen_style_demo.mo +share/locale/pt_BR/LC_MESSAGES/liboxygenstyleconfig.mo +share/locale/pt_BR/LC_MESSAGES/oxygen_kdecoration.mo +share/locale/pt_BR/LC_MESSAGES/oxygen_style_config.mo +share/locale/pt_BR/LC_MESSAGES/oxygen_style_demo.mo +share/locale/ro/LC_MESSAGES/liboxygenstyleconfig.mo +share/locale/ro/LC_MESSAGES/oxygen_kdecoration.mo +share/locale/ro/LC_MESSAGES/oxygen_style_config.mo +share/locale/ro/LC_MESSAGES/oxygen_style_demo.mo +share/locale/ru/LC_MESSAGES/liboxygenstyleconfig.mo +share/locale/ru/LC_MESSAGES/oxygen_kdecoration.mo +share/locale/ru/LC_MESSAGES/oxygen_style_config.mo +share/locale/ru/LC_MESSAGES/oxygen_style_demo.mo +share/locale/se/LC_MESSAGES/oxygen_kdecoration.mo +share/locale/se/LC_MESSAGES/oxygen_style_config.mo +share/locale/se/LC_MESSAGES/oxygen_style_demo.mo +share/locale/si/LC_MESSAGES/oxygen_style_config.mo +share/locale/si/LC_MESSAGES/oxygen_style_demo.mo +share/locale/sk/LC_MESSAGES/liboxygenstyleconfig.mo +share/locale/sk/LC_MESSAGES/oxygen_kdecoration.mo +share/locale/sk/LC_MESSAGES/oxygen_style_config.mo +share/locale/sk/LC_MESSAGES/oxygen_style_demo.mo +share/locale/sl/LC_MESSAGES/liboxygenstyleconfig.mo +share/locale/sl/LC_MESSAGES/oxygen_kdecoration.mo +share/locale/sl/LC_MESSAGES/oxygen_style_config.mo +share/locale/sl/LC_MESSAGES/oxygen_style_demo.mo +share/locale/sq/LC_MESSAGES/oxygen_style_config.mo +share/locale/sq/LC_MESSAGES/oxygen_style_demo.mo +share/locale/sr/LC_MESSAGES/liboxygenstyleconfig.mo +share/locale/sr/LC_MESSAGES/oxygen_kdecoration.mo +share/locale/sr/LC_MESSAGES/oxygen_style_config.mo +share/locale/sr/LC_MESSAGES/oxygen_style_demo.mo +share/locale/sr@ijekavian/LC_MESSAGES/liboxygenstyleconfig.mo +share/locale/sr@ijekavian/LC_MESSAGES/oxygen_kdecoration.mo +share/locale/sr@ijekavian/LC_MESSAGES/oxygen_style_config.mo +share/locale/sr@ijekavian/LC_MESSAGES/oxygen_style_demo.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/liboxygenstyleconfig.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/oxygen_kdecoration.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/oxygen_style_config.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/oxygen_style_demo.mo +share/locale/sr@latin/LC_MESSAGES/liboxygenstyleconfig.mo +share/locale/sr@latin/LC_MESSAGES/oxygen_kdecoration.mo +share/locale/sr@latin/LC_MESSAGES/oxygen_style_config.mo +share/locale/sr@latin/LC_MESSAGES/oxygen_style_demo.mo +share/locale/sv/LC_MESSAGES/liboxygenstyleconfig.mo +share/locale/sv/LC_MESSAGES/oxygen_kdecoration.mo +share/locale/sv/LC_MESSAGES/oxygen_style_config.mo +share/locale/sv/LC_MESSAGES/oxygen_style_demo.mo +share/locale/ta/LC_MESSAGES/oxygen_style_config.mo +share/locale/ta/LC_MESSAGES/oxygen_style_demo.mo +share/locale/te/LC_MESSAGES/oxygen_style_config.mo +share/locale/te/LC_MESSAGES/oxygen_style_demo.mo +share/locale/tg/LC_MESSAGES/oxygen_style_config.mo +share/locale/tg/LC_MESSAGES/oxygen_style_demo.mo +share/locale/th/LC_MESSAGES/oxygen_style_config.mo +share/locale/th/LC_MESSAGES/oxygen_style_demo.mo +share/locale/tr/LC_MESSAGES/liboxygenstyleconfig.mo +share/locale/tr/LC_MESSAGES/oxygen_kdecoration.mo +share/locale/tr/LC_MESSAGES/oxygen_style_config.mo +share/locale/tr/LC_MESSAGES/oxygen_style_demo.mo +share/locale/ug/LC_MESSAGES/liboxygenstyleconfig.mo +share/locale/ug/LC_MESSAGES/oxygen_style_config.mo +share/locale/ug/LC_MESSAGES/oxygen_style_demo.mo +share/locale/uk/LC_MESSAGES/liboxygenstyleconfig.mo +share/locale/uk/LC_MESSAGES/oxygen_kdecoration.mo +share/locale/uk/LC_MESSAGES/oxygen_style_config.mo +share/locale/uk/LC_MESSAGES/oxygen_style_demo.mo +share/locale/vi/LC_MESSAGES/oxygen_style_config.mo +share/locale/vi/LC_MESSAGES/oxygen_style_demo.mo +share/locale/wa/LC_MESSAGES/oxygen_style_config.mo +share/locale/wa/LC_MESSAGES/oxygen_style_demo.mo +share/locale/zh_CN/LC_MESSAGES/liboxygenstyleconfig.mo +share/locale/zh_CN/LC_MESSAGES/oxygen_kdecoration.mo +share/locale/zh_CN/LC_MESSAGES/oxygen_style_config.mo +share/locale/zh_CN/LC_MESSAGES/oxygen_style_demo.mo +share/locale/zh_TW/LC_MESSAGES/liboxygenstyleconfig.mo +share/locale/zh_TW/LC_MESSAGES/oxygen_kdecoration.mo +share/locale/zh_TW/LC_MESSAGES/oxygen_style_config.mo +share/locale/zh_TW/LC_MESSAGES/oxygen_style_demo.mo +share/plasma/look-and-feel/org.kde.oxygen/contents/defaults +share/plasma/look-and-feel/org.kde.oxygen/contents/previews/preview.png +share/plasma/look-and-feel/org.kde.oxygen/contents/previews/splash.png +share/plasma/look-and-feel/org.kde.oxygen/contents/splash/Splash.qml +share/plasma/look-and-feel/org.kde.oxygen/contents/splash/images/background.png +share/plasma/look-and-feel/org.kde.oxygen/contents/splash/images/kde.png +share/plasma/look-and-feel/org.kde.oxygen/contents/splash/images/rectangle.png +share/plasma/look-and-feel/org.kde.oxygen/metadata.desktop +share/sounds/Oxygen-Im-Cant-Connect.ogg +share/sounds/Oxygen-Im-Connection-Lost.ogg +share/sounds/Oxygen-Im-Contact-In.ogg +share/sounds/Oxygen-Im-Contact-Out.ogg +share/sounds/Oxygen-Im-Error-On-Connection.ogg +share/sounds/Oxygen-Im-Highlight-Msg.ogg +share/sounds/Oxygen-Im-Internal-Error.ogg +share/sounds/Oxygen-Im-Irc-Event.ogg +share/sounds/Oxygen-Im-Low-Priority-Message.ogg +share/sounds/Oxygen-Im-Message-In.ogg +share/sounds/Oxygen-Im-Message-Out.ogg +share/sounds/Oxygen-Im-Network-Problems.ogg +share/sounds/Oxygen-Im-New-Mail.ogg +share/sounds/Oxygen-Im-Nudge.ogg +share/sounds/Oxygen-Im-Phone-Ring.ogg +share/sounds/Oxygen-Im-Sms.ogg +share/sounds/Oxygen-Im-User-Auth.ogg +share/sounds/Oxygen-K3B-Finish-Error.ogg +share/sounds/Oxygen-K3B-Finish-Success.ogg +share/sounds/Oxygen-K3B-Insert-Medium.ogg +share/sounds/Oxygen-Sys-App-Error-Critical.ogg +share/sounds/Oxygen-Sys-App-Error-Serious-Very.ogg +share/sounds/Oxygen-Sys-App-Error-Serious.ogg +share/sounds/Oxygen-Sys-App-Error.ogg +share/sounds/Oxygen-Sys-App-Message.ogg +share/sounds/Oxygen-Sys-App-Negative.ogg +share/sounds/Oxygen-Sys-App-Positive.ogg +share/sounds/Oxygen-Sys-Error-Printing.ogg +share/sounds/Oxygen-Sys-File-Open-Foes.ogg +share/sounds/Oxygen-Sys-List-End.ogg +share/sounds/Oxygen-Sys-List-Match-Multiple.ogg +share/sounds/Oxygen-Sys-List-Match-No.ogg +share/sounds/Oxygen-Sys-Log-In-Long.ogg +share/sounds/Oxygen-Sys-Log-In-Short.ogg +share/sounds/Oxygen-Sys-Log-In.ogg +share/sounds/Oxygen-Sys-Log-Out.ogg +share/sounds/Oxygen-Sys-Question.ogg +share/sounds/Oxygen-Sys-Special.ogg +share/sounds/Oxygen-Sys-Trash-Emptied.ogg +share/sounds/Oxygen-Sys-Warning.ogg +share/sounds/Oxygen-Window-All-Desktops-Not.ogg +share/sounds/Oxygen-Window-All-Desktops.ogg +share/sounds/Oxygen-Window-Close.ogg +share/sounds/Oxygen-Window-Maximize.ogg +share/sounds/Oxygen-Window-Minimize.ogg +share/sounds/Oxygen-Window-Move-Stop.ogg +share/sounds/Oxygen-Window-Move.ogg +share/sounds/Oxygen-Window-Shade-Down.ogg +share/sounds/Oxygen-Window-Shade-Up.ogg Property changes on: head/x11-themes/plasma5-oxygen/pkg-plist ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/x11-themes/plasma5-plasma-workspace-wallpapers/Makefile =================================================================== --- head/x11-themes/plasma5-plasma-workspace-wallpapers/Makefile (nonexistent) +++ head/x11-themes/plasma5-plasma-workspace-wallpapers/Makefile (revision 468495) @@ -0,0 +1,26 @@ +# $FreeBSD$ + +PORTNAME= plasma-workspace-wallpapers +DISTVERSION= ${KDE_PLASMA_VERSION} +CATEGORIES= x11-themes kde kde-plasma + +MAINTAINER= kde@FreeBSD.org +COMMENT= Plasma5 wallpapers + +LICENSE= GPLv2 LGPL3 +LICENSE_COMB= multi +LICENSE_FILE= ${WRKSRC}/COPYING +LICENSE_FILE_LGPL3= ${WRKSRC}/COPYING.LGPL3 + +USES= cmake:outsource cpe kde:5 tar:xz +USE_KDE= ecm +USE_QT5= buildtools_build qmake_build + +# The qmake dependency is only needed so that kf5-e-c-m can query qmake for +# some installation directories. +# We explicitly prevent it from looking for qt5-core and specify qmake's path +# to avoid needlessly depending on qt5-core. +CMAKE_ARGS= -DCMAKE_DISABLE_FIND_PACKAGE_Qt5Core=TRUE \ + -DQMAKE_EXECUTABLE:PATH=${QMAKE} + +.include Property changes on: head/x11-themes/plasma5-plasma-workspace-wallpapers/Makefile ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/x11-themes/plasma5-plasma-workspace-wallpapers/distinfo =================================================================== --- head/x11-themes/plasma5-plasma-workspace-wallpapers/distinfo (nonexistent) +++ head/x11-themes/plasma5-plasma-workspace-wallpapers/distinfo (revision 468495) @@ -0,0 +1,3 @@ +TIMESTAMP = 1523811819 +SHA256 (KDE/plasma/5.12.4/plasma-workspace-wallpapers-5.12.4.tar.xz) = 926c58efe562ad4425fbefdc4e562171e0bf4586e5ca7eedc04d5941f1c455f8 +SIZE (KDE/plasma/5.12.4/plasma-workspace-wallpapers-5.12.4.tar.xz) = 45915596 Property changes on: head/x11-themes/plasma5-plasma-workspace-wallpapers/distinfo ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/x11-themes/plasma5-plasma-workspace-wallpapers/pkg-descr =================================================================== --- head/x11-themes/plasma5-plasma-workspace-wallpapers/pkg-descr (nonexistent) +++ head/x11-themes/plasma5-plasma-workspace-wallpapers/pkg-descr (revision 468495) @@ -0,0 +1,3 @@ +Wallpapers for the Plasma5 desktop. + +WWW: https://www.kde.org/plasma-desktop Property changes on: head/x11-themes/plasma5-plasma-workspace-wallpapers/pkg-descr ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/x11-themes/plasma5-plasma-workspace-wallpapers/pkg-plist =================================================================== --- head/x11-themes/plasma5-plasma-workspace-wallpapers/pkg-plist (nonexistent) +++ head/x11-themes/plasma5-plasma-workspace-wallpapers/pkg-plist (revision 468495) @@ -0,0 +1,182 @@ +share/wallpapers/Autumn/contents/images/1280x1024.jpg +share/wallpapers/Autumn/contents/images/1280x800.jpg +share/wallpapers/Autumn/contents/images/1440x900.jpg +share/wallpapers/Autumn/contents/images/1600x1200.jpg +share/wallpapers/Autumn/contents/images/1638x1024.jpg +share/wallpapers/Autumn/contents/images/1680x1050.jpg +share/wallpapers/Autumn/contents/images/1920x1080.jpg +share/wallpapers/Autumn/contents/images/1920x1200.jpg +share/wallpapers/Autumn/contents/images/2560x1440.jpg +share/wallpapers/Autumn/contents/images/2560x1600.jpg +share/wallpapers/Autumn/contents/images/640x480.jpg +share/wallpapers/Autumn/contents/images/800x600.jpg +share/wallpapers/Autumn/contents/screenshot.jpg +share/wallpapers/Autumn/metadata.desktop +share/wallpapers/BytheWater/contents/images/1280x1024.jpg +share/wallpapers/BytheWater/contents/images/1280x800.jpg +share/wallpapers/BytheWater/contents/images/1440x900.jpg +share/wallpapers/BytheWater/contents/images/1600x1200.jpg +share/wallpapers/BytheWater/contents/images/1638x1024.jpg +share/wallpapers/BytheWater/contents/images/1680x1050.jpg +share/wallpapers/BytheWater/contents/images/1920x1080.jpg +share/wallpapers/BytheWater/contents/images/1920x1200.jpg +share/wallpapers/BytheWater/contents/images/2560x1440.jpg +share/wallpapers/BytheWater/contents/images/2560x1600.jpg +share/wallpapers/BytheWater/contents/images/640x480.jpg +share/wallpapers/BytheWater/contents/images/800x600.jpg +share/wallpapers/BytheWater/contents/screenshot.jpg +share/wallpapers/BytheWater/metadata.desktop +share/wallpapers/ColdRipple/contents/images/1280x1024.jpg +share/wallpapers/ColdRipple/contents/images/1280x800.jpg +share/wallpapers/ColdRipple/contents/images/1440x900.jpg +share/wallpapers/ColdRipple/contents/images/1600x1200.jpg +share/wallpapers/ColdRipple/contents/images/1638x1024.jpg +share/wallpapers/ColdRipple/contents/images/1680x1050.jpg +share/wallpapers/ColdRipple/contents/images/1920x1080.jpg +share/wallpapers/ColdRipple/contents/images/1920x1200.jpg +share/wallpapers/ColdRipple/contents/images/2560x1440.jpg +share/wallpapers/ColdRipple/contents/images/2560x1600.jpg +share/wallpapers/ColdRipple/contents/images/640x480.jpg +share/wallpapers/ColdRipple/contents/images/800x600.jpg +share/wallpapers/ColdRipple/contents/screenshot.jpg +share/wallpapers/ColdRipple/metadata.desktop +share/wallpapers/ColorfulCups/contents/images/1280x1024.jpg +share/wallpapers/ColorfulCups/contents/images/1280x800.jpg +share/wallpapers/ColorfulCups/contents/images/1440x900.jpg +share/wallpapers/ColorfulCups/contents/images/1600x1200.jpg +share/wallpapers/ColorfulCups/contents/images/1638x1024.jpg +share/wallpapers/ColorfulCups/contents/images/1680x1050.jpg +share/wallpapers/ColorfulCups/contents/images/1920x1080.jpg +share/wallpapers/ColorfulCups/contents/images/1920x1200.jpg +share/wallpapers/ColorfulCups/contents/images/2560x1440.jpg +share/wallpapers/ColorfulCups/contents/images/2560x1600.jpg +share/wallpapers/ColorfulCups/contents/images/640x480.jpg +share/wallpapers/ColorfulCups/contents/images/800x600.jpg +share/wallpapers/ColorfulCups/contents/screenshot.jpg +share/wallpapers/ColorfulCups/metadata.desktop +share/wallpapers/DarkestHour/contents/images/1280x1024.jpg +share/wallpapers/DarkestHour/contents/images/1280x800.jpg +share/wallpapers/DarkestHour/contents/images/1440x900.jpg +share/wallpapers/DarkestHour/contents/images/1600x1200.jpg +share/wallpapers/DarkestHour/contents/images/1638x1024.jpg +share/wallpapers/DarkestHour/contents/images/1680x1050.jpg +share/wallpapers/DarkestHour/contents/images/1920x1080.jpg +share/wallpapers/DarkestHour/contents/images/1920x1200.jpg +share/wallpapers/DarkestHour/contents/images/2560x1440.jpg +share/wallpapers/DarkestHour/contents/images/2560x1600.jpg +share/wallpapers/DarkestHour/contents/images/640x480.jpg +share/wallpapers/DarkestHour/contents/images/800x600.jpg +share/wallpapers/DarkestHour/contents/screenshot.jpg +share/wallpapers/DarkestHour/metadata.desktop +share/wallpapers/EveningGlow/contents/images/1280x1024.jpg +share/wallpapers/EveningGlow/contents/images/1280x800.jpg +share/wallpapers/EveningGlow/contents/images/1440x900.jpg +share/wallpapers/EveningGlow/contents/images/1600x1200.jpg +share/wallpapers/EveningGlow/contents/images/1638x1024.jpg +share/wallpapers/EveningGlow/contents/images/1680x1050.jpg +share/wallpapers/EveningGlow/contents/images/1920x1080.jpg +share/wallpapers/EveningGlow/contents/images/1920x1200.jpg +share/wallpapers/EveningGlow/contents/images/2560x1440.jpg +share/wallpapers/EveningGlow/contents/images/2560x1600.jpg +share/wallpapers/EveningGlow/contents/images/640x480.jpg +share/wallpapers/EveningGlow/contents/images/800x600.jpg +share/wallpapers/EveningGlow/contents/screenshot.jpg +share/wallpapers/EveningGlow/metadata.desktop +share/wallpapers/FallenLeaf/contents/images/1280x1024.jpg +share/wallpapers/FallenLeaf/contents/images/1280x800.jpg +share/wallpapers/FallenLeaf/contents/images/1440x900.jpg +share/wallpapers/FallenLeaf/contents/images/1600x1200.jpg +share/wallpapers/FallenLeaf/contents/images/1638x1024.jpg +share/wallpapers/FallenLeaf/contents/images/1680x1050.jpg +share/wallpapers/FallenLeaf/contents/images/1920x1080.jpg +share/wallpapers/FallenLeaf/contents/images/1920x1200.jpg +share/wallpapers/FallenLeaf/contents/images/2560x1440.jpg +share/wallpapers/FallenLeaf/contents/images/2560x1600.jpg +share/wallpapers/FallenLeaf/contents/images/640x480.jpg +share/wallpapers/FallenLeaf/contents/images/800x600.jpg +share/wallpapers/FallenLeaf/contents/screenshot.jpg +share/wallpapers/FallenLeaf/metadata.desktop +share/wallpapers/FlyingKonqui/contents/images/1280x1024.png +share/wallpapers/FlyingKonqui/contents/images/1280x800.png +share/wallpapers/FlyingKonqui/contents/images/1440x900.png +share/wallpapers/FlyingKonqui/contents/images/1600x1200.png +share/wallpapers/FlyingKonqui/contents/images/1638x1024.png +share/wallpapers/FlyingKonqui/contents/images/1680x1050.png +share/wallpapers/FlyingKonqui/contents/images/1920x1080.png +share/wallpapers/FlyingKonqui/contents/images/1920x1200.png +share/wallpapers/FlyingKonqui/contents/images/2560x1440.png +share/wallpapers/FlyingKonqui/contents/images/2560x1600.png +share/wallpapers/FlyingKonqui/contents/images/640x480.png +share/wallpapers/FlyingKonqui/contents/images/800x600.png +share/wallpapers/FlyingKonqui/contents/screenshot.png +share/wallpapers/FlyingKonqui/metadata.desktop +share/wallpapers/Grey/contents/images/1280x1024.jpg +share/wallpapers/Grey/contents/images/1280x800.jpg +share/wallpapers/Grey/contents/images/1440x900.jpg +share/wallpapers/Grey/contents/images/1600x1200.jpg +share/wallpapers/Grey/contents/images/1638x1024.jpg +share/wallpapers/Grey/contents/images/1680x1050.jpg +share/wallpapers/Grey/contents/images/1920x1080.jpg +share/wallpapers/Grey/contents/images/1920x1200.jpg +share/wallpapers/Grey/contents/images/2560x1440.jpg +share/wallpapers/Grey/contents/images/2560x1600.jpg +share/wallpapers/Grey/contents/images/640x480.jpg +share/wallpapers/Grey/contents/images/800x600.jpg +share/wallpapers/Grey/contents/screenshot.jpg +share/wallpapers/Grey/metadata.desktop +share/wallpapers/Kite/contents/images/1280x1024.jpg +share/wallpapers/Kite/contents/images/1280x800.jpg +share/wallpapers/Kite/contents/images/1440x900.jpg +share/wallpapers/Kite/contents/images/1600x1200.jpg +share/wallpapers/Kite/contents/images/1638x1024.jpg +share/wallpapers/Kite/contents/images/1680x1050.jpg +share/wallpapers/Kite/contents/images/1920x1080.jpg +share/wallpapers/Kite/contents/images/1920x1200.jpg +share/wallpapers/Kite/contents/images/2560x1440.jpg +share/wallpapers/Kite/contents/images/2560x1600.jpg +share/wallpapers/Kite/contents/images/640x480.jpg +share/wallpapers/Kite/contents/images/800x600.jpg +share/wallpapers/Kite/contents/screenshot.jpg +share/wallpapers/Kite/metadata.desktop +share/wallpapers/OneStandsOut/contents/images/1280x1024.jpg +share/wallpapers/OneStandsOut/contents/images/1280x800.jpg +share/wallpapers/OneStandsOut/contents/images/1440x900.jpg +share/wallpapers/OneStandsOut/contents/images/1600x1200.jpg +share/wallpapers/OneStandsOut/contents/images/1638x1024.jpg +share/wallpapers/OneStandsOut/contents/images/1680x1050.jpg +share/wallpapers/OneStandsOut/contents/images/1920x1080.jpg +share/wallpapers/OneStandsOut/contents/images/1920x1200.jpg +share/wallpapers/OneStandsOut/contents/images/2560x1440.jpg +share/wallpapers/OneStandsOut/contents/images/2560x1600.jpg +share/wallpapers/OneStandsOut/contents/images/640x480.jpg +share/wallpapers/OneStandsOut/contents/images/800x600.jpg +share/wallpapers/OneStandsOut/contents/screenshot.jpg +share/wallpapers/OneStandsOut/metadata.desktop +share/wallpapers/PastelHills/contents/images/1024x768.jpg +share/wallpapers/PastelHills/contents/images/1280x1024.jpg +share/wallpapers/PastelHills/contents/images/1280x800.jpg +share/wallpapers/PastelHills/contents/images/1440x900.jpg +share/wallpapers/PastelHills/contents/images/1600x1200.jpg +share/wallpapers/PastelHills/contents/images/1638x1024.jpg +share/wallpapers/PastelHills/contents/images/1680x1050.jpg +share/wallpapers/PastelHills/contents/images/1920x1080.jpg +share/wallpapers/PastelHills/contents/images/2560x1440.jpg +share/wallpapers/PastelHills/contents/images/2560x1600.jpg +share/wallpapers/PastelHills/contents/images/3200x1800.jpg +share/wallpapers/PastelHills/contents/images/3200x2000.jpg +share/wallpapers/PastelHills/contents/screenshot.jpg +share/wallpapers/PastelHills/metadata.desktop +share/wallpapers/Path/contents/images/1280x1024.jpg +share/wallpapers/Path/contents/images/1280x800.jpg +share/wallpapers/Path/contents/images/1440x900.jpg +share/wallpapers/Path/contents/images/1600x1200.jpg +share/wallpapers/Path/contents/images/1638x1024.jpg +share/wallpapers/Path/contents/images/1680x1050.jpg +share/wallpapers/Path/contents/images/1920x1080.jpg +share/wallpapers/Path/contents/images/1920x1200.jpg +share/wallpapers/Path/contents/images/2560x1440.jpg +share/wallpapers/Path/contents/images/2560x1600.jpg +share/wallpapers/Path/contents/images/640x480.jpg +share/wallpapers/Path/contents/images/800x600.jpg +share/wallpapers/Path/contents/screenshot.jpg +share/wallpapers/Path/metadata.desktop Property changes on: head/x11-themes/plasma5-plasma-workspace-wallpapers/pkg-plist ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/x11-toolkits/Makefile =================================================================== --- head/x11-toolkits/Makefile (revision 468494) +++ head/x11-toolkits/Makefile (revision 468495) @@ -1,297 +1,298 @@ # $FreeBSD$ # COMMENT = X11 toolkits SUBDIR += SoXt SUBDIR += Xaw3d SUBDIR += Xmt SUBDIR += attica SUBDIR += bakery SUBDIR += blt SUBDIR += bwidget SUBDIR += c++-gtk-utils SUBDIR += diorite SUBDIR += flowcanvas SUBDIR += fltk SUBDIR += fltk-devel SUBDIR += fox14 SUBDIR += fox16 SUBDIR += fox17 SUBDIR += fpc-gtk2 SUBDIR += fpc-xforms SUBDIR += fxscintilla SUBDIR += gai SUBDIR += gdl SUBDIR += girara SUBDIR += gnocl SUBDIR += gnome-pty-helper SUBDIR += gnome-sharp20 SUBDIR += gnomemm SUBDIR += gnustep-back SUBDIR += gnustep-gui SUBDIR += granite SUBDIR += gstreamer-plugins-pango SUBDIR += gstreamer1-plugins-gtk SUBDIR += gstreamer1-plugins-pango SUBDIR += gtk-sharp-beans SUBDIR += gtk-sharp20 SUBDIR += gtk-sharp30 SUBDIR += gtk12 SUBDIR += gtk20 SUBDIR += gtk20-reference SUBDIR += gtk30 SUBDIR += gtk30-reference SUBDIR += gtkada SUBDIR += gtkada3 SUBDIR += gtkdatabox SUBDIR += gtkextra2 SUBDIR += gtkglarea2 SUBDIR += gtkglext SUBDIR += gtkglextmm SUBDIR += gtkimageview SUBDIR += gtkmathview SUBDIR += gtkmm20 SUBDIR += gtkmm20-reference SUBDIR += gtkmm24 SUBDIR += gtkmm24-reference SUBDIR += gtkmm30 SUBDIR += gtkmm30-reference SUBDIR += gtksourceview SUBDIR += gtksourceview-reference SUBDIR += gtksourceview2 SUBDIR += gtksourceview2-reference SUBDIR += gtksourceview3 SUBDIR += gtksourceview3-reference SUBDIR += gtksourceviewmm3 SUBDIR += hippo-canvas SUBDIR += hs-GLURaw SUBDIR += hs-GLUT SUBDIR += hs-OpenGL SUBDIR += hs-OpenGLRaw SUBDIR += hs-gtk SUBDIR += hs-gtk2hs SUBDIR += hs-gtksourceview2 SUBDIR += hs-pango SUBDIR += hs-vte SUBDIR += hs-wx SUBDIR += hs-wxc SUBDIR += hs-wxcore SUBDIR += hs-wxdirect SUBDIR += irrlicht SUBDIR += itk SUBDIR += iwidgets SUBDIR += kf5-attica SUBDIR += kf5-kcompletion SUBDIR += kf5-kconfigwidgets SUBDIR += kf5-kdesignerplugin SUBDIR += kf5-kguiaddons SUBDIR += kf5-kirigami2 SUBDIR += kf5-kitemviews SUBDIR += kf5-kjobwidgets SUBDIR += kf5-ktextwidgets SUBDIR += kf5-kwidgetsaddons SUBDIR += kf5-kxmlgui SUBDIR += kproperty SUBDIR += lesstif SUBDIR += libXaw SUBDIR += libXmu SUBDIR += libXt SUBDIR += libbonoboui SUBDIR += libbonoboui-reference SUBDIR += libgdiplus SUBDIR += libgnomeprintui SUBDIR += libgnomeprintuimm SUBDIR += libgnomeui SUBDIR += libgnomeui-reference SUBDIR += libgnomeuimm26 SUBDIR += libsexy SUBDIR += libsexymm SUBDIR += libunique3 SUBDIR += libwnck SUBDIR += libwnck-reference SUBDIR += libwnck3 SUBDIR += libxaw3dxft SUBDIR += libxfce4gui SUBDIR += linux-c6-gtk2 SUBDIR += linux-c6-openmotif SUBDIR += linux-c6-pango SUBDIR += linux-c6-qt47-x11 SUBDIR += linux-c6-tk85 SUBDIR += linux-c7-gtk2 SUBDIR += linux-c7-openmotif SUBDIR += linux-c7-pango SUBDIR += linux-c7-qt-x11 SUBDIR += linux-c7-tk85 SUBDIR += movingmotif SUBDIR += mowitz SUBDIR += mygui SUBDIR += mygui-dummy SUBDIR += mygui-ogre SUBDIR += mygui-opengl SUBDIR += nanogui SUBDIR += neXtaw SUBDIR += ntk SUBDIR += nucleo SUBDIR += ocaml-lablgtk2 SUBDIR += ocaml-labltk SUBDIR += open-motif SUBDIR += osm-gps-map SUBDIR += otk SUBDIR += p5-Alien-wxWidgets SUBDIR += p5-Glade2 SUBDIR += p5-Gnome2 SUBDIR += p5-Gnome2-Canvas SUBDIR += p5-Gnome2-VFS SUBDIR += p5-Gnome2-Wnck SUBDIR += p5-Gtk-Perl SUBDIR += p5-Gtk2 SUBDIR += p5-Gtk2-Chmod SUBDIR += p5-Gtk2-Ex-Dialogs SUBDIR += p5-Gtk2-Ex-FormFactory SUBDIR += p5-Gtk2-Ex-PodViewer SUBDIR += p5-Gtk2-Ex-Simple-List SUBDIR += p5-Gtk2-Ex-Utils SUBDIR += p5-Gtk2-GladeXML SUBDIR += p5-Gtk2-Html2 SUBDIR += p5-Gtk2-ImageView SUBDIR += p5-Gtk2-PathButtonBar SUBDIR += p5-Gtk2-TrayIcon SUBDIR += p5-Gtk2-Unique SUBDIR += p5-Gtk3 SUBDIR += p5-Pango SUBDIR += p5-Prima SUBDIR += p5-Tk SUBDIR += p5-Tk-Action SUBDIR += p5-Tk-Autoscroll SUBDIR += p5-Tk-ColourChooser SUBDIR += p5-Tk-Contrib SUBDIR += p5-Tk-CursorControl SUBDIR += p5-Tk-DKW SUBDIR += p5-Tk-Date SUBDIR += p5-Tk-DynaTabFrame SUBDIR += p5-Tk-Enscript SUBDIR += p5-Tk-FileDialog SUBDIR += p5-Tk-FontDialog SUBDIR += p5-Tk-GBARR SUBDIR += p5-Tk-Getopt SUBDIR += p5-Tk-HistEntry SUBDIR += p5-Tk-JComboBox SUBDIR += p5-Tk-ResizeButton SUBDIR += p5-Tk-Role-Dialog SUBDIR += p5-Tk-Role-HasWidgets SUBDIR += p5-Tk-Splashscreen SUBDIR += p5-Tk-Sugar SUBDIR += p5-Tk-TableMatrix SUBDIR += p5-Tk-ToolBar SUBDIR += p5-Tk-WaitBox SUBDIR += p5-Wx SUBDIR += p5-Wx-Perl-ProcessStream SUBDIR += pango SUBDIR += pango-reference SUBDIR += pangomm SUBDIR += pangox-compat SUBDIR += pangoxsl SUBDIR += phat + SUBDIR += plasma5-kdeplasma-addons SUBDIR += plib SUBDIR += pure-gtk SUBDIR += pure-tk SUBDIR += py-Pmw SUBDIR += py-SquareMap SUBDIR += py-fltk SUBDIR += py-gnome2 SUBDIR += py-gtk2 SUBDIR += py-gtkglext SUBDIR += py-gtksourceview SUBDIR += py-gui SUBDIR += py-kivy SUBDIR += py-kiwi-gtk SUBDIR += py-qt4-gui SUBDIR += py-qt5-gui SUBDIR += py-qt5-quick SUBDIR += py-qt5-widgets SUBDIR += py-sexy SUBDIR += py-tkinter SUBDIR += py-tktreectrl SUBDIR += py-vte SUBDIR += py-wax SUBDIR += py-wxPython-common SUBDIR += py-wxPython28 SUBDIR += py-wxPython28-common SUBDIR += py-wxPython30 SUBDIR += py-xlib SUBDIR += pypy-tkinter SUBDIR += qt4-declarative SUBDIR += qt4-gui SUBDIR += qt4pas SUBDIR += qt5-canvas3d SUBDIR += qt5-charts SUBDIR += qt5-datavis3d SUBDIR += qt5-gamepad SUBDIR += qt5-gtkplatform SUBDIR += qt5-gui SUBDIR += qt5-quick SUBDIR += qt5-quickcontrols SUBDIR += qt5-quickcontrols2 SUBDIR += qt5-uiplugin SUBDIR += qt5-virtualkeyboard SUBDIR += qt5-widgets SUBDIR += qt5pas SUBDIR += qtermwidget SUBDIR += qtermwidget-l10n SUBDIR += qwt5 SUBDIR += qwt5-designerplugin SUBDIR += qwt6 SUBDIR += rep-gtk2 SUBDIR += rubygem-gdk3 SUBDIR += rubygem-gtk2 SUBDIR += rubygem-gtk3 SUBDIR += rubygem-gtksourceview2 SUBDIR += rubygem-gtksourceview3 SUBDIR += rubygem-pango SUBDIR += rubygem-poppler SUBDIR += rubygem-uh SUBDIR += rubygem-vte SUBDIR += rubygem-vte3 SUBDIR += scintilla SUBDIR += sdl_pango SUBDIR += shared-desktop-ontologies SUBDIR += skinlf SUBDIR += slingshot SUBDIR += soqt SUBDIR += swt SUBDIR += swt-devel SUBDIR += termit SUBDIR += tile SUBDIR += tix SUBDIR += tk-wrapper SUBDIR += tk85 SUBDIR += tk86 SUBDIR += tk87 SUBDIR += tkdnd SUBDIR += tkshape SUBDIR += tktable SUBDIR += tktray SUBDIR += tktreectrl SUBDIR += unique SUBDIR += v SUBDIR += vdk SUBDIR += viewklass SUBDIR += vte SUBDIR += vte-reference SUBDIR += vte3 SUBDIR += vtkfox SUBDIR += wlc SUBDIR += wmapp SUBDIR += wxgtk28 SUBDIR += wxgtk28-common SUBDIR += wxgtk28-contrib SUBDIR += wxgtk28-contrib-common SUBDIR += wxgtk30 SUBDIR += xbae SUBDIR += xforms SUBDIR += xmhtml SUBDIR += xview SUBDIR += xview-clients .include Index: head/x11-toolkits/plasma5-kdeplasma-addons/Makefile =================================================================== --- head/x11-toolkits/plasma5-kdeplasma-addons/Makefile (nonexistent) +++ head/x11-toolkits/plasma5-kdeplasma-addons/Makefile (revision 468495) @@ -0,0 +1,22 @@ +# $FreeBSD$ + +PORTNAME= kdeplasma-addons +DISTVERSION= ${KDE_PLASMA_VERSION} +CATEGORIES= x11-toolkits kde kde-plasma + +MAINTAINER= kde@FreeBSD.org +COMMENT= Plasma5 addons to improve the Plasma experience + +USES= cmake:outsource compiler:c++11-lib cpe gettext \ + kde:5 pkgconfig tar:xz +USE_KDE= activities archive attica auth bookmarks codecs completion \ + config configwidgets coreaddons crash ecm emoticons guiaddons \ + i18n iconthemes init itemmodels itemviews jobwidgets kcmutils \ + kdelibs4support kio kross newstuff notifications package parts\ + plasma-framework plasma-workspace runner service solid sonnet \ + textwidgets unitconversion widgetsaddons windowsystem xmlgui +USE_QT5= core dbus graphicaleffects gui location network printsupport \ + qml quick script webchannel webengine widgets x11extras xml \ + buildtools_build qmake_build + +.include Property changes on: head/x11-toolkits/plasma5-kdeplasma-addons/Makefile ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/x11-toolkits/plasma5-kdeplasma-addons/distinfo =================================================================== --- head/x11-toolkits/plasma5-kdeplasma-addons/distinfo (nonexistent) +++ head/x11-toolkits/plasma5-kdeplasma-addons/distinfo (revision 468495) @@ -0,0 +1,3 @@ +TIMESTAMP = 1523811820 +SHA256 (KDE/plasma/5.12.4/kdeplasma-addons-5.12.4.tar.xz) = e5b1d5280dda7bb652f59251cdb1846d62719589e78cab94d445642275edfb3d +SIZE (KDE/plasma/5.12.4/kdeplasma-addons-5.12.4.tar.xz) = 565544 Property changes on: head/x11-toolkits/plasma5-kdeplasma-addons/distinfo ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/x11-toolkits/plasma5-kdeplasma-addons/pkg-descr =================================================================== --- head/x11-toolkits/plasma5-kdeplasma-addons/pkg-descr (nonexistent) +++ head/x11-toolkits/plasma5-kdeplasma-addons/pkg-descr (revision 468495) @@ -0,0 +1,3 @@ +All kind of addons to improve your Plasma experience. + +WWW: https://www.kde.org/plasma-desktop Property changes on: head/x11-toolkits/plasma5-kdeplasma-addons/pkg-descr ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/x11-toolkits/plasma5-kdeplasma-addons/pkg-plist =================================================================== --- head/x11-toolkits/plasma5-kdeplasma-addons/pkg-plist (nonexistent) +++ head/x11-toolkits/plasma5-kdeplasma-addons/pkg-plist (revision 468495) @@ -0,0 +1,1689 @@ +etc/xdg/comic.knsrc +lib/libplasmacomicprovidercore.so.1 +lib/libplasmacomicprovidercore.so.1.0.0 +lib/libplasmapotdprovidercore.so +lib/libplasmapotdprovidercore.so.1 +lib/libplasmapotdprovidercore.so.1.0.0 +lib/libplasmaweatherprivate.so +%%QT_PLUGINDIR%%/kcm_krunner_dictionary.so +%%QT_PLUGINDIR%%/kcm_krunner_spellcheck.so +%%QT_PLUGINDIR%%/kpackage/packagestructure/plasma_packagestructure_comic.so +%%QT_PLUGINDIR%%/krunner_converter.so +%%QT_PLUGINDIR%%/krunner_datetime.so +%%QT_PLUGINDIR%%/krunner_dictionary.so +%%QT_PLUGINDIR%%/krunner_katesessions.so +%%QT_PLUGINDIR%%/krunner_spellcheck.so +%%QT_PLUGINDIR%%/plasma/applets/org.kde.plasma.grouping.so +%%QT_PLUGINDIR%%/plasma/applets/org.kde.plasma.private.grouping.so +%%QT_PLUGINDIR%%/plasma/applets/plasma_applet_comic.so +%%QT_PLUGINDIR%%/plasma/applets/plasma_applet_weather.so +%%QT_PLUGINDIR%%/plasma/dataengine/plasma_engine_comic.so +%%QT_PLUGINDIR%%/plasma/dataengine/plasma_engine_konsoleprofiles.so +%%QT_PLUGINDIR%%/plasma/dataengine/plasma_engine_potd.so +%%QT_PLUGINDIR%%/plasma_comic_krossprovider.so +%%QT_PLUGINDIR%%/potd/plasma_potd_apodprovider.so +%%QT_PLUGINDIR%%/potd/plasma_potd_bingprovider.so +%%QT_PLUGINDIR%%/potd/plasma_potd_epodprovider.so +%%QT_PLUGINDIR%%/potd/plasma_potd_flickrprovider.so +%%QT_PLUGINDIR%%/potd/plasma_potd_natgeoprovider.so +%%QT_PLUGINDIR%%/potd/plasma_potd_noaaprovider.so +%%QT_PLUGINDIR%%/potd/plasma_potd_wcpotdprovider.so +%%QT_QMLDIR%%/org/kde/plasma/private/colorpicker/libcolorpickerplugin.so +%%QT_QMLDIR%%/org/kde/plasma/private/colorpicker/qmldir +%%QT_QMLDIR%%/org/kde/plasma/private/dict/libdictplugin.so +%%QT_QMLDIR%%/org/kde/plasma/private/dict/qmldir +%%QT_QMLDIR%%/org/kde/plasma/private/diskquota/libdiskquotaplugin.so +%%QT_QMLDIR%%/org/kde/plasma/private/diskquota/qmldir +%%QT_QMLDIR%%/org/kde/plasma/private/fifteenpuzzle/libfifteenpuzzleplugin.so +%%QT_QMLDIR%%/org/kde/plasma/private/fifteenpuzzle/qmldir +%%QT_QMLDIR%%/org/kde/plasma/private/mediaframe/libmediaframeplugin.so +%%QT_QMLDIR%%/org/kde/plasma/private/mediaframe/qmldir +%%QT_QMLDIR%%/org/kde/plasma/private/minimizeall/libminimizeallplugin.so +%%QT_QMLDIR%%/org/kde/plasma/private/minimizeall/qmldir +%%QT_QMLDIR%%/org/kde/plasma/private/notes/libnotesplugin.so +%%QT_QMLDIR%%/org/kde/plasma/private/notes/qmldir +%%QT_QMLDIR%%/org/kde/plasma/private/purpose/libpurposeplugin.so +%%QT_QMLDIR%%/org/kde/plasma/private/purpose/qmldir +%%QT_QMLDIR%%/org/kde/plasma/private/quicklaunch/libquicklaunchplugin.so +%%QT_QMLDIR%%/org/kde/plasma/private/quicklaunch/qmldir +%%QT_QMLDIR%%/org/kde/plasma/private/showdesktop/libshowdesktopplugin.so +%%QT_QMLDIR%%/org/kde/plasma/private/showdesktop/qmldir +%%QT_QMLDIR%%/org/kde/plasma/private/timer/libtimerplugin.so +%%QT_QMLDIR%%/org/kde/plasma/private/timer/qmldir +%%QT_QMLDIR%%/org/kde/plasma/private/weather/libweatherplugin.so +%%QT_QMLDIR%%/org/kde/plasma/private/weather/qmldir +share/icons/hicolor/scalable/apps/accessories-dictionary.svgz +share/icons/hicolor/scalable/apps/fifteenpuzzle.svgz +share/kservices5/kwin/kwin4_desktop_switcher_previews.desktop +share/kservices5/kwin/kwin4_window_switcher_big_icons.desktop +share/kservices5/kwin/kwin4_window_switcher_compact.desktop +share/kservices5/kwin/kwin4_window_switcher_informative.desktop +share/kservices5/kwin/kwin4_window_switcher_present_windows.desktop +share/kservices5/kwin/kwin4_window_switcher_small_icons.desktop +share/kservices5/kwin/kwin4_window_switcher_text.desktop +share/kservices5/kwin/kwin4_window_switcher_thumbnails.desktop +share/kservices5/plasma-applet-org.kde.plasma.activitypager.desktop +share/kservices5/plasma-applet-org.kde.plasma.binaryclock.desktop +share/kservices5/plasma-applet-org.kde.plasma.calculator.desktop +share/kservices5/plasma-applet-org.kde.plasma.colorpicker.desktop +share/kservices5/plasma-applet-org.kde.plasma.comic.desktop +share/kservices5/plasma-applet-org.kde.plasma.diskquota.desktop +share/kservices5/plasma-applet-org.kde.plasma.fifteenpuzzle.desktop +share/kservices5/plasma-applet-org.kde.plasma.fuzzyclock.desktop +share/kservices5/plasma-applet-org.kde.plasma.grouping.desktop +share/kservices5/plasma-applet-org.kde.plasma.kickerdash.desktop +share/kservices5/plasma-applet-org.kde.plasma.konsoleprofiles.desktop +share/kservices5/plasma-applet-org.kde.plasma.mediaframe.desktop +share/kservices5/plasma-applet-org.kde.plasma.minimizeall.desktop +share/kservices5/plasma-applet-org.kde.plasma.notes.desktop +share/kservices5/plasma-applet-org.kde.plasma.private.grouping.desktop +share/kservices5/plasma-applet-org.kde.plasma.quicklaunch.desktop +share/kservices5/plasma-applet-org.kde.plasma.quickshare.desktop +share/kservices5/plasma-applet-org.kde.plasma.showdesktop.desktop +share/kservices5/plasma-applet-org.kde.plasma.systemloadviewer.desktop +share/kservices5/plasma-applet-org.kde.plasma.timer.desktop +share/kservices5/plasma-applet-org.kde.plasma.userswitcher.desktop +share/kservices5/plasma-applet-org.kde.plasma.weather.desktop +share/kservices5/plasma-applet-org.kde.plasma.webbrowser.desktop +share/kservices5/plasma-applet-org.kde.plasma_applet_dict.desktop +share/kservices5/plasma-dataengine-comic.desktop +share/kservices5/plasma-dataengine-konsoleprofiles.desktop +share/kservices5/plasma-dataengine-potd.desktop +share/kservices5/plasma-runner-converter.desktop +share/kservices5/plasma-runner-datetime.desktop +share/kservices5/plasma-runner-dictionary.desktop +share/kservices5/plasma-runner-dictionary_config.desktop +share/kservices5/plasma-runner-katesessions.desktop +share/kservices5/plasma-runner-spellchecker.desktop +share/kservices5/plasma-runner-spellchecker_config.desktop +share/kservices5/plasma-wallpaper-org.kde.haenau.desktop +share/kservices5/plasma-wallpaper-org.kde.hunyango.desktop +share/kservices5/plasma-wallpaper-org.kde.potd.desktop +share/kservicetypes5/plasma_comicprovider.desktop +share/kwin/desktoptabbox/previews/contents/ui/main.qml +share/kwin/desktoptabbox/previews/metadata.desktop +share/kwin/tabbox/big_icons/contents/ui/IconTabBox.qml +share/kwin/tabbox/big_icons/contents/ui/main.qml +share/kwin/tabbox/big_icons/metadata.desktop +share/kwin/tabbox/compact/contents/ui/main.qml +share/kwin/tabbox/compact/metadata.desktop +share/kwin/tabbox/informative/contents/ui/main.qml +share/kwin/tabbox/informative/metadata.desktop +share/kwin/tabbox/present_windows/contents/ui/main.qml +share/kwin/tabbox/present_windows/metadata.desktop +share/kwin/tabbox/small_icons/contents/ui/IconTabBox.qml +share/kwin/tabbox/small_icons/contents/ui/main.qml +share/kwin/tabbox/small_icons/metadata.desktop +share/kwin/tabbox/text/contents/ui/main.qml +share/kwin/tabbox/text/metadata.desktop +share/kwin/tabbox/thumbnails/contents/ui/main.qml +share/kwin/tabbox/thumbnails/metadata.desktop +share/locale/ar/LC_MESSAGES/libplasmaweather.mo +share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo +share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo +share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo +share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo +share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo +share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo +share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo +share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo +share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo +share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo +share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo +share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo +share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo +share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo +share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo +share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo +share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo +share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo +share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo +share/locale/ar/LC_MESSAGES/plasma_packagestructure_comic.mo +share/locale/ar/LC_MESSAGES/plasma_runner_converterrunner.mo +share/locale/ar/LC_MESSAGES/plasma_runner_datetime.mo +share/locale/ar/LC_MESSAGES/plasma_runner_katesessions.mo +share/locale/ar/LC_MESSAGES/plasma_runner_krunner_dictionary.mo +share/locale/ar/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/ast/LC_MESSAGES/libplasmaweather.mo +share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo +share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo +share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo +share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo +share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo +share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo +share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo +share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo +share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo +share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo +share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo +share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo +share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo +share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo +share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo +share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo +share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo +share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo +share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo +share/locale/ast/LC_MESSAGES/plasma_packagestructure_comic.mo +share/locale/ast/LC_MESSAGES/plasma_runner_converterrunner.mo +share/locale/ast/LC_MESSAGES/plasma_runner_datetime.mo +share/locale/ast/LC_MESSAGES/plasma_runner_katesessions.mo +share/locale/ast/LC_MESSAGES/plasma_runner_krunner_dictionary.mo +share/locale/ast/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo +share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo +share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo +share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo +share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo +share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo +share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo +share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo +share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo +share/locale/be/LC_MESSAGES/plasma_runner_converterrunner.mo +share/locale/be/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo +share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo +share/locale/bs/LC_MESSAGES/libplasmaweather.mo +share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo +share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo +share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo +share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo +share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo +share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo +share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo +share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo +share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo +share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo +share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo +share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo +share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo +share/locale/bs/LC_MESSAGES/plasma_packagestructure_comic.mo +share/locale/bs/LC_MESSAGES/plasma_runner_converterrunner.mo +share/locale/bs/LC_MESSAGES/plasma_runner_datetime.mo +share/locale/bs/LC_MESSAGES/plasma_runner_katesessions.mo +share/locale/bs/LC_MESSAGES/plasma_runner_krunner_dictionary.mo +share/locale/bs/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/ca/LC_MESSAGES/libplasmaweather.mo +share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo +share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo +share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo +share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo +share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.dict.mo +share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo +share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo +share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo +share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo +share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo +share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo +share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo +share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo +share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo +share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo +share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo +share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo +share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo +share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo +share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo +share/locale/ca/LC_MESSAGES/plasma_packagestructure_comic.mo +share/locale/ca/LC_MESSAGES/plasma_runner_converterrunner.mo +share/locale/ca/LC_MESSAGES/plasma_runner_datetime.mo +share/locale/ca/LC_MESSAGES/plasma_runner_katesessions.mo +share/locale/ca/LC_MESSAGES/plasma_runner_krunner_dictionary.mo +share/locale/ca/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/ca@valencia/LC_MESSAGES/libplasmaweather.mo +share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo +share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo +share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo +share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo +share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.dict.mo +share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo +share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo +share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo +share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo +share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo +share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo +share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo +share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo +share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo +share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo +share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo +share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo +share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo +share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo +share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo +share/locale/ca@valencia/LC_MESSAGES/plasma_packagestructure_comic.mo +share/locale/ca@valencia/LC_MESSAGES/plasma_runner_converterrunner.mo +share/locale/ca@valencia/LC_MESSAGES/plasma_runner_datetime.mo +share/locale/ca@valencia/LC_MESSAGES/plasma_runner_katesessions.mo +share/locale/ca@valencia/LC_MESSAGES/plasma_runner_krunner_dictionary.mo +share/locale/ca@valencia/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/cs/LC_MESSAGES/libplasmaweather.mo +share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo +share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo +share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo +share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo +share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.dict.mo +share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo +share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo +share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo +share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo +share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo +share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo +share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo +share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo +share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo +share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo +share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo +share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo +share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo +share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo +share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo +share/locale/cs/LC_MESSAGES/plasma_packagestructure_comic.mo +share/locale/cs/LC_MESSAGES/plasma_runner_converterrunner.mo +share/locale/cs/LC_MESSAGES/plasma_runner_datetime.mo +share/locale/cs/LC_MESSAGES/plasma_runner_katesessions.mo +share/locale/cs/LC_MESSAGES/plasma_runner_krunner_dictionary.mo +share/locale/cs/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/csb/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo +share/locale/csb/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo +share/locale/csb/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo +share/locale/csb/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo +share/locale/da/LC_MESSAGES/libplasmaweather.mo +share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo +share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo +share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo +share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo +share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo +share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo +share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo +share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo +share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo +share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo +share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo +share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo +share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo +share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo +share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo +share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo +share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo +share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo +share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo +share/locale/da/LC_MESSAGES/plasma_packagestructure_comic.mo +share/locale/da/LC_MESSAGES/plasma_runner_converterrunner.mo +share/locale/da/LC_MESSAGES/plasma_runner_datetime.mo +share/locale/da/LC_MESSAGES/plasma_runner_katesessions.mo +share/locale/da/LC_MESSAGES/plasma_runner_krunner_dictionary.mo +share/locale/da/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/de/LC_MESSAGES/libplasmaweather.mo +share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo +share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo +share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo +share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo +share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.dict.mo +share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo +share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo +share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo +share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo +share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo +share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo +share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo +share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo +share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo +share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo +share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo +share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo +share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo +share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo +share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo +share/locale/de/LC_MESSAGES/plasma_packagestructure_comic.mo +share/locale/de/LC_MESSAGES/plasma_runner_converterrunner.mo +share/locale/de/LC_MESSAGES/plasma_runner_datetime.mo +share/locale/de/LC_MESSAGES/plasma_runner_katesessions.mo +share/locale/de/LC_MESSAGES/plasma_runner_krunner_dictionary.mo +share/locale/de/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/el/LC_MESSAGES/libplasmaweather.mo +share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo +share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo +share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo +share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo +share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo +share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo +share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo +share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo +share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo +share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo +share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo +share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo +share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo +share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo +share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo +share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo +share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo +share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo +share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo +share/locale/el/LC_MESSAGES/plasma_packagestructure_comic.mo +share/locale/el/LC_MESSAGES/plasma_runner_converterrunner.mo +share/locale/el/LC_MESSAGES/plasma_runner_datetime.mo +share/locale/el/LC_MESSAGES/plasma_runner_katesessions.mo +share/locale/el/LC_MESSAGES/plasma_runner_krunner_dictionary.mo +share/locale/el/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/en_GB/LC_MESSAGES/libplasmaweather.mo +share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo +share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo +share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo +share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo +share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.dict.mo +share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo +share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo +share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo +share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo +share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo +share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo +share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo +share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo +share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo +share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo +share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo +share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo +share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo +share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo +share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo +share/locale/en_GB/LC_MESSAGES/plasma_packagestructure_comic.mo +share/locale/en_GB/LC_MESSAGES/plasma_runner_converterrunner.mo +share/locale/en_GB/LC_MESSAGES/plasma_runner_datetime.mo +share/locale/en_GB/LC_MESSAGES/plasma_runner_katesessions.mo +share/locale/en_GB/LC_MESSAGES/plasma_runner_krunner_dictionary.mo +share/locale/en_GB/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/eo/LC_MESSAGES/libplasmaweather.mo +share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo +share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo +share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo +share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo +share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo +share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo +share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo +share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo +share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo +share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo +share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo +share/locale/eo/LC_MESSAGES/plasma_packagestructure_comic.mo +share/locale/eo/LC_MESSAGES/plasma_runner_converterrunner.mo +share/locale/eo/LC_MESSAGES/plasma_runner_datetime.mo +share/locale/eo/LC_MESSAGES/plasma_runner_katesessions.mo +share/locale/eo/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/es/LC_MESSAGES/libplasmaweather.mo +share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo +share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo +share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo +share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo +share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.dict.mo +share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo +share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo +share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo +share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo +share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo +share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo +share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo +share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo +share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo +share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo +share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo +share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo +share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo +share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo +share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo +share/locale/es/LC_MESSAGES/plasma_packagestructure_comic.mo +share/locale/es/LC_MESSAGES/plasma_runner_converterrunner.mo +share/locale/es/LC_MESSAGES/plasma_runner_datetime.mo +share/locale/es/LC_MESSAGES/plasma_runner_katesessions.mo +share/locale/es/LC_MESSAGES/plasma_runner_krunner_dictionary.mo +share/locale/es/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/et/LC_MESSAGES/libplasmaweather.mo +share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo +share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo +share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo +share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo +share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo +share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo +share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo +share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo +share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo +share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo +share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo +share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo +share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo +share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo +share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo +share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo +share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo +share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo +share/locale/et/LC_MESSAGES/plasma_packagestructure_comic.mo +share/locale/et/LC_MESSAGES/plasma_runner_converterrunner.mo +share/locale/et/LC_MESSAGES/plasma_runner_datetime.mo +share/locale/et/LC_MESSAGES/plasma_runner_katesessions.mo +share/locale/et/LC_MESSAGES/plasma_runner_krunner_dictionary.mo +share/locale/et/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo +share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo +share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo +share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo +share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo +share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo +share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo +share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo +share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo +share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo +share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo +share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo +share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo +share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo +share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo +share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo +share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo +share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo +share/locale/eu/LC_MESSAGES/plasma_runner_krunner_dictionary.mo +share/locale/fi/LC_MESSAGES/libplasmaweather.mo +share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo +share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo +share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo +share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo +share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.dict.mo +share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo +share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo +share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo +share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo +share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo +share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo +share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo +share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo +share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo +share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo +share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo +share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo +share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo +share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo +share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo +share/locale/fi/LC_MESSAGES/plasma_packagestructure_comic.mo +share/locale/fi/LC_MESSAGES/plasma_runner_converterrunner.mo +share/locale/fi/LC_MESSAGES/plasma_runner_datetime.mo +share/locale/fi/LC_MESSAGES/plasma_runner_katesessions.mo +share/locale/fi/LC_MESSAGES/plasma_runner_krunner_dictionary.mo +share/locale/fi/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/fr/LC_MESSAGES/libplasmaweather.mo +share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo +share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo +share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo +share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo +share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.dict.mo +share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo +share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo +share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo +share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo +share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo +share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo +share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo +share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo +share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo +share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo +share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo +share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo +share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo +share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo +share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo +share/locale/fr/LC_MESSAGES/plasma_packagestructure_comic.mo +share/locale/fr/LC_MESSAGES/plasma_runner_converterrunner.mo +share/locale/fr/LC_MESSAGES/plasma_runner_datetime.mo +share/locale/fr/LC_MESSAGES/plasma_runner_katesessions.mo +share/locale/fr/LC_MESSAGES/plasma_runner_krunner_dictionary.mo +share/locale/fr/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/ga/LC_MESSAGES/libplasmaweather.mo +share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo +share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo +share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo +share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo +share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo +share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo +share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo +share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo +share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo +share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo +share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo +share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo +share/locale/ga/LC_MESSAGES/plasma_packagestructure_comic.mo +share/locale/ga/LC_MESSAGES/plasma_runner_converterrunner.mo +share/locale/ga/LC_MESSAGES/plasma_runner_datetime.mo +share/locale/ga/LC_MESSAGES/plasma_runner_katesessions.mo +share/locale/ga/LC_MESSAGES/plasma_runner_krunner_dictionary.mo +share/locale/ga/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/gl/LC_MESSAGES/libplasmaweather.mo +share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo +share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo +share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo +share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo +share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo +share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo +share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo +share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo +share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo +share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo +share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo +share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo +share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo +share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo +share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo +share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo +share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo +share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo +share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo +share/locale/gl/LC_MESSAGES/plasma_packagestructure_comic.mo +share/locale/gl/LC_MESSAGES/plasma_runner_converterrunner.mo +share/locale/gl/LC_MESSAGES/plasma_runner_datetime.mo +share/locale/gl/LC_MESSAGES/plasma_runner_katesessions.mo +share/locale/gl/LC_MESSAGES/plasma_runner_krunner_dictionary.mo +share/locale/gl/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo +share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo +share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo +share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo +share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo +share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo +share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo +share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo +share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo +share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo +share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo +share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo +share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo +share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo +share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo +share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo +share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo +share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo +share/locale/he/LC_MESSAGES/plasma_runner_converterrunner.mo +share/locale/he/LC_MESSAGES/plasma_runner_katesessions.mo +share/locale/he/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/hr/LC_MESSAGES/libplasmaweather.mo +share/locale/hr/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo +share/locale/hr/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo +share/locale/hr/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo +share/locale/hr/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo +share/locale/hr/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo +share/locale/hr/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo +share/locale/hr/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo +share/locale/hr/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo +share/locale/hr/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo +share/locale/hr/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo +share/locale/hr/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo +share/locale/hr/LC_MESSAGES/plasma_packagestructure_comic.mo +share/locale/hr/LC_MESSAGES/plasma_runner_converterrunner.mo +share/locale/hr/LC_MESSAGES/plasma_runner_datetime.mo +share/locale/hr/LC_MESSAGES/plasma_runner_katesessions.mo +share/locale/hr/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/hu/LC_MESSAGES/libplasmaweather.mo +share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo +share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo +share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo +share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo +share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo +share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo +share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo +share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo +share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo +share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo +share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo +share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo +share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo +share/locale/hu/LC_MESSAGES/plasma_packagestructure_comic.mo +share/locale/hu/LC_MESSAGES/plasma_runner_converterrunner.mo +share/locale/hu/LC_MESSAGES/plasma_runner_datetime.mo +share/locale/hu/LC_MESSAGES/plasma_runner_katesessions.mo +share/locale/hu/LC_MESSAGES/plasma_runner_krunner_dictionary.mo +share/locale/hu/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/ia/LC_MESSAGES/libplasmaweather.mo +share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo +share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo +share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo +share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo +share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo +share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo +share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo +share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo +share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo +share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo +share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo +share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo +share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo +share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo +share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo +share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo +share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo +share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo +share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo +share/locale/ia/LC_MESSAGES/plasma_packagestructure_comic.mo +share/locale/ia/LC_MESSAGES/plasma_runner_converterrunner.mo +share/locale/ia/LC_MESSAGES/plasma_runner_datetime.mo +share/locale/ia/LC_MESSAGES/plasma_runner_katesessions.mo +share/locale/ia/LC_MESSAGES/plasma_runner_krunner_dictionary.mo +share/locale/ia/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/is/LC_MESSAGES/libplasmaweather.mo +share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo +share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo +share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo +share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo +share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo +share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo +share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo +share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo +share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo +share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo +share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo +share/locale/is/LC_MESSAGES/plasma_packagestructure_comic.mo +share/locale/is/LC_MESSAGES/plasma_runner_converterrunner.mo +share/locale/is/LC_MESSAGES/plasma_runner_datetime.mo +share/locale/is/LC_MESSAGES/plasma_runner_katesessions.mo +share/locale/is/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/it/LC_MESSAGES/libplasmaweather.mo +share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo +share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo +share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo +share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo +share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.dict.mo +share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo +share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo +share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo +share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo +share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo +share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo +share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo +share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo +share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo +share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo +share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo +share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo +share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo +share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo +share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo +share/locale/it/LC_MESSAGES/plasma_packagestructure_comic.mo +share/locale/it/LC_MESSAGES/plasma_runner_converterrunner.mo +share/locale/it/LC_MESSAGES/plasma_runner_datetime.mo +share/locale/it/LC_MESSAGES/plasma_runner_katesessions.mo +share/locale/it/LC_MESSAGES/plasma_runner_krunner_dictionary.mo +share/locale/it/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/ja/LC_MESSAGES/libplasmaweather.mo +share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo +share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo +share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo +share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo +share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.dict.mo +share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo +share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo +share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo +share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo +share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo +share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo +share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo +share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo +share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo +share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo +share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo +share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo +share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo +share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo +share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo +share/locale/ja/LC_MESSAGES/plasma_packagestructure_comic.mo +share/locale/ja/LC_MESSAGES/plasma_runner_converterrunner.mo +share/locale/ja/LC_MESSAGES/plasma_runner_datetime.mo +share/locale/ja/LC_MESSAGES/plasma_runner_katesessions.mo +share/locale/ja/LC_MESSAGES/plasma_runner_krunner_dictionary.mo +share/locale/ja/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/kk/LC_MESSAGES/libplasmaweather.mo +share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo +share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo +share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo +share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo +share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo +share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo +share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo +share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo +share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo +share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo +share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo +share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo +share/locale/kk/LC_MESSAGES/plasma_packagestructure_comic.mo +share/locale/kk/LC_MESSAGES/plasma_runner_converterrunner.mo +share/locale/kk/LC_MESSAGES/plasma_runner_datetime.mo +share/locale/kk/LC_MESSAGES/plasma_runner_katesessions.mo +share/locale/kk/LC_MESSAGES/plasma_runner_krunner_dictionary.mo +share/locale/kk/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/km/LC_MESSAGES/libplasmaweather.mo +share/locale/km/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo +share/locale/km/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo +share/locale/km/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo +share/locale/km/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo +share/locale/km/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo +share/locale/km/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo +share/locale/km/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo +share/locale/km/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo +share/locale/km/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo +share/locale/km/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo +share/locale/km/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo +share/locale/km/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo +share/locale/km/LC_MESSAGES/plasma_packagestructure_comic.mo +share/locale/km/LC_MESSAGES/plasma_runner_converterrunner.mo +share/locale/km/LC_MESSAGES/plasma_runner_datetime.mo +share/locale/km/LC_MESSAGES/plasma_runner_katesessions.mo +share/locale/km/LC_MESSAGES/plasma_runner_krunner_dictionary.mo +share/locale/km/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/ko/LC_MESSAGES/libplasmaweather.mo +share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo +share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo +share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo +share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo +share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.dict.mo +share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo +share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo +share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo +share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo +share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo +share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo +share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo +share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo +share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo +share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo +share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo +share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo +share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo +share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo +share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo +share/locale/ko/LC_MESSAGES/plasma_packagestructure_comic.mo +share/locale/ko/LC_MESSAGES/plasma_runner_converterrunner.mo +share/locale/ko/LC_MESSAGES/plasma_runner_datetime.mo +share/locale/ko/LC_MESSAGES/plasma_runner_katesessions.mo +share/locale/ko/LC_MESSAGES/plasma_runner_krunner_dictionary.mo +share/locale/ko/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/ku/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo +share/locale/ku/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo +share/locale/ku/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo +share/locale/ku/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo +share/locale/ku/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo +share/locale/ku/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo +share/locale/ku/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo +share/locale/ku/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo +share/locale/ku/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo +share/locale/ku/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo +share/locale/ku/LC_MESSAGES/plasma_runner_converterrunner.mo +share/locale/ku/LC_MESSAGES/plasma_runner_katesessions.mo +share/locale/ku/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/lt/LC_MESSAGES/libplasmaweather.mo +share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo +share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo +share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo +share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo +share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo +share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo +share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo +share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo +share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo +share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo +share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo +share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo +share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo +share/locale/lt/LC_MESSAGES/plasma_packagestructure_comic.mo +share/locale/lt/LC_MESSAGES/plasma_runner_converterrunner.mo +share/locale/lt/LC_MESSAGES/plasma_runner_datetime.mo +share/locale/lt/LC_MESSAGES/plasma_runner_katesessions.mo +share/locale/lt/LC_MESSAGES/plasma_runner_krunner_dictionary.mo +share/locale/lt/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/lv/LC_MESSAGES/libplasmaweather.mo +share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo +share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo +share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo +share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo +share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo +share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo +share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo +share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo +share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo +share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo +share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo +share/locale/lv/LC_MESSAGES/plasma_packagestructure_comic.mo +share/locale/lv/LC_MESSAGES/plasma_runner_converterrunner.mo +share/locale/lv/LC_MESSAGES/plasma_runner_datetime.mo +share/locale/lv/LC_MESSAGES/plasma_runner_katesessions.mo +share/locale/lv/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/mr/LC_MESSAGES/libplasmaweather.mo +share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo +share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo +share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo +share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo +share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo +share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo +share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo +share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo +share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo +share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo +share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo +share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo +share/locale/mr/LC_MESSAGES/plasma_packagestructure_comic.mo +share/locale/mr/LC_MESSAGES/plasma_runner_converterrunner.mo +share/locale/mr/LC_MESSAGES/plasma_runner_datetime.mo +share/locale/mr/LC_MESSAGES/plasma_runner_katesessions.mo +share/locale/mr/LC_MESSAGES/plasma_runner_krunner_dictionary.mo +share/locale/mr/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/ms/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo +share/locale/ms/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo +share/locale/ms/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo +share/locale/ms/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo +share/locale/ms/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo +share/locale/nb/LC_MESSAGES/libplasmaweather.mo +share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo +share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo +share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo +share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo +share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo +share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo +share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo +share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo +share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo +share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo +share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo +share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo +share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo +share/locale/nb/LC_MESSAGES/plasma_packagestructure_comic.mo +share/locale/nb/LC_MESSAGES/plasma_runner_converterrunner.mo +share/locale/nb/LC_MESSAGES/plasma_runner_datetime.mo +share/locale/nb/LC_MESSAGES/plasma_runner_katesessions.mo +share/locale/nb/LC_MESSAGES/plasma_runner_krunner_dictionary.mo +share/locale/nb/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/nds/LC_MESSAGES/libplasmaweather.mo +share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo +share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo +share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo +share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo +share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo +share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo +share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo +share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo +share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo +share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo +share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo +share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo +share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo +share/locale/nds/LC_MESSAGES/plasma_packagestructure_comic.mo +share/locale/nds/LC_MESSAGES/plasma_runner_converterrunner.mo +share/locale/nds/LC_MESSAGES/plasma_runner_datetime.mo +share/locale/nds/LC_MESSAGES/plasma_runner_katesessions.mo +share/locale/nds/LC_MESSAGES/plasma_runner_krunner_dictionary.mo +share/locale/nds/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/nl/LC_MESSAGES/libplasmaweather.mo +share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo +share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo +share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo +share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo +share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.dict.mo +share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo +share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo +share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo +share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo +share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo +share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo +share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo +share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo +share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo +share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo +share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo +share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo +share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo +share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo +share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo +share/locale/nl/LC_MESSAGES/plasma_packagestructure_comic.mo +share/locale/nl/LC_MESSAGES/plasma_runner_converterrunner.mo +share/locale/nl/LC_MESSAGES/plasma_runner_datetime.mo +share/locale/nl/LC_MESSAGES/plasma_runner_katesessions.mo +share/locale/nl/LC_MESSAGES/plasma_runner_krunner_dictionary.mo +share/locale/nl/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/nn/LC_MESSAGES/libplasmaweather.mo +share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo +share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo +share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo +share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo +share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.dict.mo +share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo +share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo +share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo +share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo +share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo +share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo +share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo +share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo +share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo +share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo +share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo +share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo +share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo +share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo +share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo +share/locale/nn/LC_MESSAGES/plasma_packagestructure_comic.mo +share/locale/nn/LC_MESSAGES/plasma_runner_converterrunner.mo +share/locale/nn/LC_MESSAGES/plasma_runner_datetime.mo +share/locale/nn/LC_MESSAGES/plasma_runner_katesessions.mo +share/locale/nn/LC_MESSAGES/plasma_runner_krunner_dictionary.mo +share/locale/nn/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/pa/LC_MESSAGES/libplasmaweather.mo +share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo +share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo +share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo +share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo +share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo +share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo +share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo +share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo +share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo +share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo +share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo +share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo +share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo +share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo +share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo +share/locale/pa/LC_MESSAGES/plasma_packagestructure_comic.mo +share/locale/pa/LC_MESSAGES/plasma_runner_converterrunner.mo +share/locale/pa/LC_MESSAGES/plasma_runner_datetime.mo +share/locale/pa/LC_MESSAGES/plasma_runner_katesessions.mo +share/locale/pa/LC_MESSAGES/plasma_runner_krunner_dictionary.mo +share/locale/pa/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/pl/LC_MESSAGES/libplasmaweather.mo +share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo +share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo +share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo +share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo +share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.dict.mo +share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo +share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo +share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo +share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo +share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo +share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo +share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo +share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo +share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo +share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo +share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo +share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo +share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo +share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo +share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo +share/locale/pl/LC_MESSAGES/plasma_packagestructure_comic.mo +share/locale/pl/LC_MESSAGES/plasma_runner_converterrunner.mo +share/locale/pl/LC_MESSAGES/plasma_runner_datetime.mo +share/locale/pl/LC_MESSAGES/plasma_runner_katesessions.mo +share/locale/pl/LC_MESSAGES/plasma_runner_krunner_dictionary.mo +share/locale/pl/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/pt/LC_MESSAGES/libplasmaweather.mo +share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo +share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo +share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo +share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo +share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.dict.mo +share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo +share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo +share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo +share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo +share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo +share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo +share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo +share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo +share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo +share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo +share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo +share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo +share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo +share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo +share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo +share/locale/pt/LC_MESSAGES/plasma_packagestructure_comic.mo +share/locale/pt/LC_MESSAGES/plasma_runner_converterrunner.mo +share/locale/pt/LC_MESSAGES/plasma_runner_datetime.mo +share/locale/pt/LC_MESSAGES/plasma_runner_katesessions.mo +share/locale/pt/LC_MESSAGES/plasma_runner_krunner_dictionary.mo +share/locale/pt/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/pt_BR/LC_MESSAGES/libplasmaweather.mo +share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo +share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo +share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo +share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo +share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.dict.mo +share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo +share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo +share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo +share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo +share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo +share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo +share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo +share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo +share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo +share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo +share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo +share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo +share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo +share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo +share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo +share/locale/pt_BR/LC_MESSAGES/plasma_packagestructure_comic.mo +share/locale/pt_BR/LC_MESSAGES/plasma_runner_converterrunner.mo +share/locale/pt_BR/LC_MESSAGES/plasma_runner_datetime.mo +share/locale/pt_BR/LC_MESSAGES/plasma_runner_katesessions.mo +share/locale/pt_BR/LC_MESSAGES/plasma_runner_krunner_dictionary.mo +share/locale/pt_BR/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/ro/LC_MESSAGES/libplasmaweather.mo +share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo +share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo +share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo +share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo +share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo +share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo +share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo +share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo +share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo +share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo +share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo +share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo +share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo +share/locale/ro/LC_MESSAGES/plasma_packagestructure_comic.mo +share/locale/ro/LC_MESSAGES/plasma_runner_converterrunner.mo +share/locale/ro/LC_MESSAGES/plasma_runner_datetime.mo +share/locale/ro/LC_MESSAGES/plasma_runner_katesessions.mo +share/locale/ro/LC_MESSAGES/plasma_runner_krunner_dictionary.mo +share/locale/ro/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/ru/LC_MESSAGES/libplasmaweather.mo +share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo +share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo +share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo +share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo +share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.dict.mo +share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo +share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo +share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo +share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo +share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo +share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo +share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo +share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo +share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo +share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo +share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo +share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo +share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo +share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo +share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo +share/locale/ru/LC_MESSAGES/plasma_packagestructure_comic.mo +share/locale/ru/LC_MESSAGES/plasma_runner_converterrunner.mo +share/locale/ru/LC_MESSAGES/plasma_runner_datetime.mo +share/locale/ru/LC_MESSAGES/plasma_runner_katesessions.mo +share/locale/ru/LC_MESSAGES/plasma_runner_krunner_dictionary.mo +share/locale/ru/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/sk/LC_MESSAGES/libplasmaweather.mo +share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo +share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo +share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo +share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo +share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.dict.mo +share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo +share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo +share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo +share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo +share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo +share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo +share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo +share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo +share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo +share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo +share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo +share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo +share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo +share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo +share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo +share/locale/sk/LC_MESSAGES/plasma_packagestructure_comic.mo +share/locale/sk/LC_MESSAGES/plasma_runner_converterrunner.mo +share/locale/sk/LC_MESSAGES/plasma_runner_datetime.mo +share/locale/sk/LC_MESSAGES/plasma_runner_katesessions.mo +share/locale/sk/LC_MESSAGES/plasma_runner_krunner_dictionary.mo +share/locale/sk/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/sl/LC_MESSAGES/libplasmaweather.mo +share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo +share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo +share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo +share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo +share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.dict.mo +share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo +share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo +share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo +share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo +share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo +share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo +share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo +share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo +share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo +share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo +share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo +share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo +share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo +share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo +share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo +share/locale/sl/LC_MESSAGES/plasma_packagestructure_comic.mo +share/locale/sl/LC_MESSAGES/plasma_runner_converterrunner.mo +share/locale/sl/LC_MESSAGES/plasma_runner_datetime.mo +share/locale/sl/LC_MESSAGES/plasma_runner_katesessions.mo +share/locale/sl/LC_MESSAGES/plasma_runner_krunner_dictionary.mo +share/locale/sl/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/sq/LC_MESSAGES/libplasmaweather.mo +share/locale/sq/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo +share/locale/sq/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo +share/locale/sq/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo +share/locale/sq/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo +share/locale/sq/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo +share/locale/sq/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo +share/locale/sq/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo +share/locale/sq/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo +share/locale/sq/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo +share/locale/sq/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo +share/locale/sq/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo +share/locale/sq/LC_MESSAGES/plasma_packagestructure_comic.mo +share/locale/sq/LC_MESSAGES/plasma_runner_converterrunner.mo +share/locale/sq/LC_MESSAGES/plasma_runner_katesessions.mo +share/locale/sq/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/sr/LC_MESSAGES/libplasmaweather.mo +share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo +share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo +share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo +share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo +share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.dict.mo +share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo +share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo +share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo +share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo +share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo +share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo +share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo +share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo +share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo +share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo +share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo +share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo +share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo +share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo +share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo +share/locale/sr/LC_MESSAGES/plasma_packagestructure_comic.mo +share/locale/sr/LC_MESSAGES/plasma_runner_converterrunner.mo +share/locale/sr/LC_MESSAGES/plasma_runner_datetime.mo +share/locale/sr/LC_MESSAGES/plasma_runner_katesessions.mo +share/locale/sr/LC_MESSAGES/plasma_runner_krunner_dictionary.mo +share/locale/sr/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/sr@ijekavian/LC_MESSAGES/libplasmaweather.mo +share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo +share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo +share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo +share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo +share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.dict.mo +share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo +share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo +share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo +share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo +share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo +share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo +share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo +share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo +share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo +share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo +share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo +share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo +share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo +share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo +share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo +share/locale/sr@ijekavian/LC_MESSAGES/plasma_packagestructure_comic.mo +share/locale/sr@ijekavian/LC_MESSAGES/plasma_runner_converterrunner.mo +share/locale/sr@ijekavian/LC_MESSAGES/plasma_runner_datetime.mo +share/locale/sr@ijekavian/LC_MESSAGES/plasma_runner_katesessions.mo +share/locale/sr@ijekavian/LC_MESSAGES/plasma_runner_krunner_dictionary.mo +share/locale/sr@ijekavian/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/libplasmaweather.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.dict.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_packagestructure_comic.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_runner_converterrunner.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_runner_datetime.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_runner_katesessions.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_runner_krunner_dictionary.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/sr@latin/LC_MESSAGES/libplasmaweather.mo +share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo +share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo +share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo +share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo +share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.dict.mo +share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo +share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo +share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo +share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo +share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo +share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo +share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo +share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo +share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo +share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo +share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo +share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo +share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo +share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo +share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo +share/locale/sr@latin/LC_MESSAGES/plasma_packagestructure_comic.mo +share/locale/sr@latin/LC_MESSAGES/plasma_runner_converterrunner.mo +share/locale/sr@latin/LC_MESSAGES/plasma_runner_datetime.mo +share/locale/sr@latin/LC_MESSAGES/plasma_runner_katesessions.mo +share/locale/sr@latin/LC_MESSAGES/plasma_runner_krunner_dictionary.mo +share/locale/sr@latin/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/sv/LC_MESSAGES/libplasmaweather.mo +share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo +share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo +share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo +share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo +share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.dict.mo +share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo +share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo +share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo +share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo +share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo +share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo +share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo +share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo +share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo +share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo +share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo +share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo +share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo +share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo +share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo +share/locale/sv/LC_MESSAGES/plasma_packagestructure_comic.mo +share/locale/sv/LC_MESSAGES/plasma_runner_converterrunner.mo +share/locale/sv/LC_MESSAGES/plasma_runner_datetime.mo +share/locale/sv/LC_MESSAGES/plasma_runner_katesessions.mo +share/locale/sv/LC_MESSAGES/plasma_runner_krunner_dictionary.mo +share/locale/sv/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/th/LC_MESSAGES/libplasmaweather.mo +share/locale/th/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo +share/locale/th/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo +share/locale/th/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo +share/locale/th/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo +share/locale/th/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo +share/locale/th/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo +share/locale/th/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo +share/locale/th/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo +share/locale/th/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo +share/locale/th/LC_MESSAGES/plasma_runner_katesessions.mo +share/locale/th/LC_MESSAGES/plasma_runner_krunner_dictionary.mo +share/locale/th/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/tr/LC_MESSAGES/libplasmaweather.mo +share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo +share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo +share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo +share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo +share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo +share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo +share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo +share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo +share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo +share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo +share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo +share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo +share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo +share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo +share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo +share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo +share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo +share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo +share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo +share/locale/tr/LC_MESSAGES/plasma_packagestructure_comic.mo +share/locale/tr/LC_MESSAGES/plasma_runner_converterrunner.mo +share/locale/tr/LC_MESSAGES/plasma_runner_datetime.mo +share/locale/tr/LC_MESSAGES/plasma_runner_katesessions.mo +share/locale/tr/LC_MESSAGES/plasma_runner_krunner_dictionary.mo +share/locale/tr/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/ug/LC_MESSAGES/libplasmaweather.mo +share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo +share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo +share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo +share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo +share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo +share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo +share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo +share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo +share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo +share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo +share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo +share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo +share/locale/ug/LC_MESSAGES/plasma_packagestructure_comic.mo +share/locale/ug/LC_MESSAGES/plasma_runner_converterrunner.mo +share/locale/ug/LC_MESSAGES/plasma_runner_datetime.mo +share/locale/ug/LC_MESSAGES/plasma_runner_katesessions.mo +share/locale/ug/LC_MESSAGES/plasma_runner_krunner_dictionary.mo +share/locale/ug/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/uk/LC_MESSAGES/libplasmaweather.mo +share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo +share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo +share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo +share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo +share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.dict.mo +share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo +share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo +share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo +share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo +share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo +share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo +share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo +share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo +share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo +share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo +share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo +share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo +share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo +share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo +share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo +share/locale/uk/LC_MESSAGES/plasma_packagestructure_comic.mo +share/locale/uk/LC_MESSAGES/plasma_runner_converterrunner.mo +share/locale/uk/LC_MESSAGES/plasma_runner_datetime.mo +share/locale/uk/LC_MESSAGES/plasma_runner_katesessions.mo +share/locale/uk/LC_MESSAGES/plasma_runner_krunner_dictionary.mo +share/locale/uk/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/vi/LC_MESSAGES/libplasmaweather.mo +share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo +share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo +share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo +share/locale/wa/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo +share/locale/wa/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo +share/locale/wa/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo +share/locale/wa/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo +share/locale/wa/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo +share/locale/wa/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo +share/locale/wa/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo +share/locale/wa/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo +share/locale/wa/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo +share/locale/wa/LC_MESSAGES/plasma_runner_converterrunner.mo +share/locale/wa/LC_MESSAGES/plasma_runner_katesessions.mo +share/locale/wa/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/zh_CN/LC_MESSAGES/libplasmaweather.mo +share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo +share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo +share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo +share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo +share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.dict.mo +share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo +share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo +share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo +share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo +share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo +share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo +share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo +share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo +share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo +share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo +share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo +share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo +share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo +share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo +share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo +share/locale/zh_CN/LC_MESSAGES/plasma_packagestructure_comic.mo +share/locale/zh_CN/LC_MESSAGES/plasma_runner_converterrunner.mo +share/locale/zh_CN/LC_MESSAGES/plasma_runner_datetime.mo +share/locale/zh_CN/LC_MESSAGES/plasma_runner_katesessions.mo +share/locale/zh_CN/LC_MESSAGES/plasma_runner_krunner_dictionary.mo +share/locale/zh_CN/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/zh_TW/LC_MESSAGES/libplasmaweather.mo +share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo +share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo +share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo +share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo +share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo +share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo +share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo +share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo +share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo +share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo +share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo +share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo +share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo +share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo +share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo +share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo +share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo +share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo +share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo +share/locale/zh_TW/LC_MESSAGES/plasma_packagestructure_comic.mo +share/locale/zh_TW/LC_MESSAGES/plasma_runner_converterrunner.mo +share/locale/zh_TW/LC_MESSAGES/plasma_runner_datetime.mo +share/locale/zh_TW/LC_MESSAGES/plasma_runner_katesessions.mo +share/locale/zh_TW/LC_MESSAGES/plasma_runner_krunner_dictionary.mo +share/locale/zh_TW/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/metainfo/org.kde.haenau.appdata.xml +share/metainfo/org.kde.hunyango.appdata.xml +share/metainfo/org.kde.plasma.activitypager.appdata.xml +share/metainfo/org.kde.plasma.binaryclock.appdata.xml +share/metainfo/org.kde.plasma.calculator.appdata.xml +share/metainfo/org.kde.plasma.colorpicker.appdata.xml +share/metainfo/org.kde.plasma.comic.appdata.xml +share/metainfo/org.kde.plasma.diskquota.appdata.xml +share/metainfo/org.kde.plasma.fifteenpuzzle.appdata.xml +share/metainfo/org.kde.plasma.fuzzyclock.appdata.xml +share/metainfo/org.kde.plasma.grouping.appdata.xml +share/metainfo/org.kde.plasma.kickerdash.appdata.xml +share/metainfo/org.kde.plasma.konsoleprofiles.appdata.xml +share/metainfo/org.kde.plasma.mediaframe.appdata.xml +share/metainfo/org.kde.plasma.minimizeall.appdata.xml +share/metainfo/org.kde.plasma.notes.appdata.xml +share/metainfo/org.kde.plasma.quicklaunch.appdata.xml +share/metainfo/org.kde.plasma.quickshare.appdata.xml +share/metainfo/org.kde.plasma.showdesktop.appdata.xml +share/metainfo/org.kde.plasma.systemloadviewer.appdata.xml +share/metainfo/org.kde.plasma.timer.appdata.xml +share/metainfo/org.kde.plasma.userswitcher.appdata.xml +share/metainfo/org.kde.plasma.weather.appdata.xml +share/metainfo/org.kde.plasma.webbrowser.appdata.xml +share/metainfo/org.kde.plasma_applet_dict.appdata.xml +share/metainfo/org.kde.potd.appdata.xml +share/plasma/desktoptheme/default/icons/quota.svg +share/plasma/desktoptheme/default/weather/wind-arrows.svgz +share/plasma/desktoptheme/default/widgets/timer.svgz +share/plasma/plasmoids/org.kde.plasma.activitypager/metadata.desktop +share/plasma/plasmoids/org.kde.plasma.activitypager/metadata.json +share/plasma/plasmoids/org.kde.plasma.binaryclock/contents/config/config.qml +share/plasma/plasmoids/org.kde.plasma.binaryclock/contents/config/main.xml +share/plasma/plasmoids/org.kde.plasma.binaryclock/contents/ui/BinaryClock.qml +share/plasma/plasmoids/org.kde.plasma.binaryclock/contents/ui/Dot.qml +share/plasma/plasmoids/org.kde.plasma.binaryclock/contents/ui/DotColumn.qml +share/plasma/plasmoids/org.kde.plasma.binaryclock/contents/ui/configGeneral.qml +share/plasma/plasmoids/org.kde.plasma.binaryclock/contents/ui/main.qml +share/plasma/plasmoids/org.kde.plasma.binaryclock/metadata.desktop +share/plasma/plasmoids/org.kde.plasma.binaryclock/metadata.json +share/plasma/plasmoids/org.kde.plasma.calculator/contents/ui/calculator.qml +share/plasma/plasmoids/org.kde.plasma.calculator/metadata.desktop +share/plasma/plasmoids/org.kde.plasma.calculator/metadata.json +share/plasma/plasmoids/org.kde.plasma.colorpicker/contents/code/logic.js +share/plasma/plasmoids/org.kde.plasma.colorpicker/contents/config/config.qml +share/plasma/plasmoids/org.kde.plasma.colorpicker/contents/config/main.xml +share/plasma/plasmoids/org.kde.plasma.colorpicker/contents/ui/configGeneral.qml +share/plasma/plasmoids/org.kde.plasma.colorpicker/contents/ui/main.qml +share/plasma/plasmoids/org.kde.plasma.colorpicker/metadata.desktop +share/plasma/plasmoids/org.kde.plasma.colorpicker/metadata.json +share/plasma/plasmoids/org.kde.plasma.comic/contents/config/config.qml +share/plasma/plasmoids/org.kde.plasma.comic/contents/ui/ButtonBar.qml +share/plasma/plasmoids/org.kde.plasma.comic/contents/ui/ComicBottomInfo.qml +share/plasma/plasmoids/org.kde.plasma.comic/contents/ui/ComicCentralView.qml +share/plasma/plasmoids/org.kde.plasma.comic/contents/ui/FullViewWidget.qml +share/plasma/plasmoids/org.kde.plasma.comic/contents/ui/ImageWidget.qml +share/plasma/plasmoids/org.kde.plasma.comic/contents/ui/configAdvanced.qml +share/plasma/plasmoids/org.kde.plasma.comic/contents/ui/configAppearance.qml +share/plasma/plasmoids/org.kde.plasma.comic/contents/ui/configGeneral.qml +share/plasma/plasmoids/org.kde.plasma.comic/contents/ui/main.qml +share/plasma/plasmoids/org.kde.plasma.comic/metadata.desktop +share/plasma/plasmoids/org.kde.plasma.comic/metadata.json +share/plasma/plasmoids/org.kde.plasma.diskquota/contents/ui/ListDelegateItem.qml +share/plasma/plasmoids/org.kde.plasma.diskquota/contents/ui/main.qml +share/plasma/plasmoids/org.kde.plasma.diskquota/metadata.desktop +share/plasma/plasmoids/org.kde.plasma.diskquota/metadata.json +share/plasma/plasmoids/org.kde.plasma.fifteenpuzzle/contents/config/config.qml +share/plasma/plasmoids/org.kde.plasma.fifteenpuzzle/contents/config/main.xml +share/plasma/plasmoids/org.kde.plasma.fifteenpuzzle/contents/ui/FifteenPuzzle.qml +share/plasma/plasmoids/org.kde.plasma.fifteenpuzzle/contents/ui/Piece.qml +share/plasma/plasmoids/org.kde.plasma.fifteenpuzzle/contents/ui/blanksquare.svg +share/plasma/plasmoids/org.kde.plasma.fifteenpuzzle/contents/ui/configAppearance.qml +share/plasma/plasmoids/org.kde.plasma.fifteenpuzzle/contents/ui/main.qml +share/plasma/plasmoids/org.kde.plasma.fifteenpuzzle/metadata.desktop +share/plasma/plasmoids/org.kde.plasma.fifteenpuzzle/metadata.json +share/plasma/plasmoids/org.kde.plasma.fuzzyclock/contents/config/config.qml +share/plasma/plasmoids/org.kde.plasma.fuzzyclock/contents/config/main.xml +share/plasma/plasmoids/org.kde.plasma.fuzzyclock/contents/ui/FuzzyClock.qml +share/plasma/plasmoids/org.kde.plasma.fuzzyclock/contents/ui/configAppearance.qml +share/plasma/plasmoids/org.kde.plasma.fuzzyclock/contents/ui/main.qml +share/plasma/plasmoids/org.kde.plasma.fuzzyclock/metadata.desktop +share/plasma/plasmoids/org.kde.plasma.fuzzyclock/metadata.json +share/plasma/plasmoids/org.kde.plasma.grouping/contents/ui/main.qml +share/plasma/plasmoids/org.kde.plasma.grouping/metadata.desktop +share/plasma/plasmoids/org.kde.plasma.grouping/metadata.json +share/plasma/plasmoids/org.kde.plasma.kickerdash/metadata.desktop +share/plasma/plasmoids/org.kde.plasma.kickerdash/metadata.json +share/plasma/plasmoids/org.kde.plasma.konsoleprofiles/contents/ui/konsoleprofiles.qml +share/plasma/plasmoids/org.kde.plasma.konsoleprofiles/metadata.desktop +share/plasma/plasmoids/org.kde.plasma.konsoleprofiles/metadata.json +share/plasma/plasmoids/org.kde.plasma.mediaframe/contents/config/config.qml +share/plasma/plasmoids/org.kde.plasma.mediaframe/contents/config/main.xml +share/plasma/plasmoids/org.kde.plasma.mediaframe/contents/ui/ConfigGeneral.qml +share/plasma/plasmoids/org.kde.plasma.mediaframe/contents/ui/ConfigPaths.qml +share/plasma/plasmoids/org.kde.plasma.mediaframe/contents/ui/main.qml +share/plasma/plasmoids/org.kde.plasma.mediaframe/metadata.desktop +share/plasma/plasmoids/org.kde.plasma.mediaframe/metadata.json +share/plasma/plasmoids/org.kde.plasma.minimizeall/contents/config/main.xml +share/plasma/plasmoids/org.kde.plasma.minimizeall/contents/ui/main.qml +share/plasma/plasmoids/org.kde.plasma.minimizeall/metadata.desktop +share/plasma/plasmoids/org.kde.plasma.minimizeall/metadata.json +share/plasma/plasmoids/org.kde.plasma.notes/contents/config/config.qml +share/plasma/plasmoids/org.kde.plasma.notes/contents/config/main.xml +share/plasma/plasmoids/org.kde.plasma.notes/contents/ui/configAppearance.qml +share/plasma/plasmoids/org.kde.plasma.notes/contents/ui/main.qml +share/plasma/plasmoids/org.kde.plasma.notes/metadata.desktop +share/plasma/plasmoids/org.kde.plasma.notes/metadata.json +share/plasma/plasmoids/org.kde.plasma.private.grouping/contents/applet/CompactApplet.qml +share/plasma/plasmoids/org.kde.plasma.private.grouping/contents/config/config.qml +share/plasma/plasmoids/org.kde.plasma.private.grouping/contents/config/main.xml +share/plasma/plasmoids/org.kde.plasma.private.grouping/contents/ui/items/AbstractItem.qml +share/plasma/plasmoids/org.kde.plasma.private.grouping/contents/ui/items/PlasmoidItem.qml +share/plasma/plasmoids/org.kde.plasma.private.grouping/contents/ui/main.qml +share/plasma/plasmoids/org.kde.plasma.private.grouping/metadata.desktop +share/plasma/plasmoids/org.kde.plasma.private.grouping/metadata.json +share/plasma/plasmoids/org.kde.plasma.quicklaunch/contents/code/layout.js +share/plasma/plasmoids/org.kde.plasma.quicklaunch/contents/config/config.qml +share/plasma/plasmoids/org.kde.plasma.quicklaunch/contents/config/main.xml +share/plasma/plasmoids/org.kde.plasma.quicklaunch/contents/ui/ConfigGeneral.qml +share/plasma/plasmoids/org.kde.plasma.quicklaunch/contents/ui/IconItem.qml +share/plasma/plasmoids/org.kde.plasma.quicklaunch/contents/ui/Popup.qml +share/plasma/plasmoids/org.kde.plasma.quicklaunch/contents/ui/UrlModel.qml +share/plasma/plasmoids/org.kde.plasma.quicklaunch/contents/ui/main.qml +share/plasma/plasmoids/org.kde.plasma.quicklaunch/metadata.desktop +share/plasma/plasmoids/org.kde.plasma.quicklaunch/metadata.json +share/plasma/plasmoids/org.kde.plasma.quickshare/contents/config/config.qml +share/plasma/plasmoids/org.kde.plasma.quickshare/contents/config/main.xml +share/plasma/plasmoids/org.kde.plasma.quickshare/contents/ui/PasteMenuItem.qml +share/plasma/plasmoids/org.kde.plasma.quickshare/contents/ui/ShareDialog.qml +share/plasma/plasmoids/org.kde.plasma.quickshare/contents/ui/ShowUrlDialog.qml +share/plasma/plasmoids/org.kde.plasma.quickshare/contents/ui/main.qml +share/plasma/plasmoids/org.kde.plasma.quickshare/contents/ui/settingsGeneral.qml +share/plasma/plasmoids/org.kde.plasma.quickshare/metadata.desktop +share/plasma/plasmoids/org.kde.plasma.quickshare/metadata.json +share/plasma/plasmoids/org.kde.plasma.showdesktop/contents/config/main.xml +share/plasma/plasmoids/org.kde.plasma.showdesktop/contents/ui/main.qml +share/plasma/plasmoids/org.kde.plasma.showdesktop/metadata.desktop +share/plasma/plasmoids/org.kde.plasma.showdesktop/metadata.json +share/plasma/plasmoids/org.kde.plasma.systemloadviewer/contents/config/config.qml +share/plasma/plasmoids/org.kde.plasma.systemloadviewer/contents/config/main.xml +share/plasma/plasmoids/org.kde.plasma.systemloadviewer/contents/ui/BarMonitor.qml +share/plasma/plasmoids/org.kde.plasma.systemloadviewer/contents/ui/CircularMonitor.qml +share/plasma/plasmoids/org.kde.plasma.systemloadviewer/contents/ui/ColorPicker.qml +share/plasma/plasmoids/org.kde.plasma.systemloadviewer/contents/ui/ColorSettings.qml +share/plasma/plasmoids/org.kde.plasma.systemloadviewer/contents/ui/CompactBarMonitor.qml +share/plasma/plasmoids/org.kde.plasma.systemloadviewer/contents/ui/ConditionallyLoadedMonitors.qml +share/plasma/plasmoids/org.kde.plasma.systemloadviewer/contents/ui/ConditionallyRoundedRectangle.qml +share/plasma/plasmoids/org.kde.plasma.systemloadviewer/contents/ui/GeneralSettings.qml +share/plasma/plasmoids/org.kde.plasma.systemloadviewer/contents/ui/SystemLoadViewer.qml +share/plasma/plasmoids/org.kde.plasma.systemloadviewer/metadata.desktop +share/plasma/plasmoids/org.kde.plasma.systemloadviewer/metadata.json +share/plasma/plasmoids/org.kde.plasma.timer/contents/config/config.qml +share/plasma/plasmoids/org.kde.plasma.timer/contents/config/main.xml +share/plasma/plasmoids/org.kde.plasma.timer/contents/ui/TimerDigit.qml +share/plasma/plasmoids/org.kde.plasma.timer/contents/ui/TimerView.qml +share/plasma/plasmoids/org.kde.plasma.timer/contents/ui/configAdvanced.qml +share/plasma/plasmoids/org.kde.plasma.timer/contents/ui/configAppearance.qml +share/plasma/plasmoids/org.kde.plasma.timer/contents/ui/main.qml +share/plasma/plasmoids/org.kde.plasma.timer/metadata.desktop +share/plasma/plasmoids/org.kde.plasma.timer/metadata.json +share/plasma/plasmoids/org.kde.plasma.userswitcher/contents/config/config.qml +share/plasma/plasmoids/org.kde.plasma.userswitcher/contents/config/main.xml +share/plasma/plasmoids/org.kde.plasma.userswitcher/contents/ui/ListDelegate.qml +share/plasma/plasmoids/org.kde.plasma.userswitcher/contents/ui/configGeneral.qml +share/plasma/plasmoids/org.kde.plasma.userswitcher/contents/ui/main.qml +share/plasma/plasmoids/org.kde.plasma.userswitcher/metadata.desktop +share/plasma/plasmoids/org.kde.plasma.userswitcher/metadata.json +share/plasma/plasmoids/org.kde.plasma.weather/contents/config/config.qml +share/plasma/plasmoids/org.kde.plasma.weather/contents/ui/CompactRepresentation.qml +share/plasma/plasmoids/org.kde.plasma.weather/contents/ui/DetailsView.qml +share/plasma/plasmoids/org.kde.plasma.weather/contents/ui/FiveDaysView.qml +share/plasma/plasmoids/org.kde.plasma.weather/contents/ui/FullRepresentation.qml +share/plasma/plasmoids/org.kde.plasma.weather/contents/ui/IconAndTextItem.qml +share/plasma/plasmoids/org.kde.plasma.weather/contents/ui/Notice.qml +share/plasma/plasmoids/org.kde.plasma.weather/contents/ui/NoticesView.qml +share/plasma/plasmoids/org.kde.plasma.weather/contents/ui/TopPanel.qml +share/plasma/plasmoids/org.kde.plasma.weather/contents/ui/WeatherListView.qml +share/plasma/plasmoids/org.kde.plasma.weather/contents/ui/config/ConfigAppearance.qml +share/plasma/plasmoids/org.kde.plasma.weather/contents/ui/config/ConfigUnits.qml +share/plasma/plasmoids/org.kde.plasma.weather/contents/ui/config/ConfigWeatherStation.qml +share/plasma/plasmoids/org.kde.plasma.weather/contents/ui/main.qml +share/plasma/plasmoids/org.kde.plasma.weather/metadata.desktop +share/plasma/plasmoids/org.kde.plasma.weather/metadata.json +share/plasma/plasmoids/org.kde.plasma.webbrowser/contents/config/main.xml +share/plasma/plasmoids/org.kde.plasma.webbrowser/contents/ui/main.qml +share/plasma/plasmoids/org.kde.plasma.webbrowser/metadata.desktop +share/plasma/plasmoids/org.kde.plasma.webbrowser/metadata.json +share/plasma/plasmoids/org.kde.plasma_applet_dict/contents/config/config.qml +share/plasma/plasmoids/org.kde.plasma_applet_dict/contents/ui/ConfigDictionaries.qml +share/plasma/plasmoids/org.kde.plasma_applet_dict/contents/ui/main.qml +share/plasma/plasmoids/org.kde.plasma_applet_dict/metadata.desktop +share/plasma/plasmoids/org.kde.plasma_applet_dict/metadata.json +share/plasma/services/org.kde.plasma.dataengine.konsoleprofiles.operations +share/plasma/wallpapers/org.kde.haenau/contents/ui/BackgroundElement.qml +share/plasma/wallpapers/org.kde.haenau/contents/ui/BottomBackgroundElement.qml +share/plasma/wallpapers/org.kde.haenau/contents/ui/RightBackgroundElement.qml +share/plasma/wallpapers/org.kde.haenau/contents/ui/main.qml +share/plasma/wallpapers/org.kde.haenau/contents/ui/wallpaper.svgz +share/plasma/wallpapers/org.kde.haenau/metadata.desktop +share/plasma/wallpapers/org.kde.haenau/metadata.json +share/plasma/wallpapers/org.kde.hunyango/contents/ui/main.qml +share/plasma/wallpapers/org.kde.hunyango/contents/ui/wallpaper.svgz +share/plasma/wallpapers/org.kde.hunyango/metadata.desktop +share/plasma/wallpapers/org.kde.hunyango/metadata.json +share/plasma/wallpapers/org.kde.potd/contents/config/main.xml +share/plasma/wallpapers/org.kde.potd/contents/ui/config.qml +share/plasma/wallpapers/org.kde.potd/contents/ui/main.qml +share/plasma/wallpapers/org.kde.potd/metadata.desktop +share/plasma/wallpapers/org.kde.potd/metadata.json Property changes on: head/x11-toolkits/plasma5-kdeplasma-addons/pkg-plist ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/x11-wm/Makefile =================================================================== --- head/x11-wm/Makefile (revision 468494) +++ head/x11-wm/Makefile (revision 468495) @@ -1,142 +1,144 @@ # $FreeBSD$ # COMMENT = X11 window managers SUBDIR += aewm SUBDIR += afterstep SUBDIR += afterstep-stable SUBDIR += amiwm SUBDIR += antiwm SUBDIR += awesome SUBDIR += awesome-vicious SUBDIR += bbkeys SUBDIR += bbpager SUBDIR += blackbox SUBDIR += bspwm SUBDIR += ccsm SUBDIR += cde SUBDIR += clementine-wm SUBDIR += compiz SUBDIR += compiz-fusion SUBDIR += compiz-plugins-extra SUBDIR += compiz-plugins-main SUBDIR += compiz-plugins-unsupported SUBDIR += compizconfig-backend-gconf SUBDIR += compizconfig-python SUBDIR += compton SUBDIR += ctwm SUBDIR += cwm SUBDIR += devilspie SUBDIR += dwm SUBDIR += e-module-alarm SUBDIR += e-module-cpu SUBDIR += e-module-deskshow SUBDIR += e-module-everything-places SUBDIR += e-module-everything-websearch SUBDIR += e-module-mem SUBDIR += e-module-rmb SUBDIR += e-module-wlan SUBDIR += e-modules SUBDIR += e16 SUBDIR += e16-docs SUBDIR += echinus SUBDIR += ede SUBDIR += emerald SUBDIR += enlightenment SUBDIR += epplets SUBDIR += euclid-wm SUBDIR += evilwm SUBDIR += fbcmd SUBDIR += fluxbox SUBDIR += fluxconf SUBDIR += fluxter SUBDIR += flwm SUBDIR += fvwm SUBDIR += fvwm-crystal SUBDIR += fvwm2 SUBDIR += gcompmgr SUBDIR += genmenu SUBDIR += golem SUBDIR += herbstluftwm SUBDIR += hs-xmonad SUBDIR += hs-xmonad-contrib SUBDIR += i3 SUBDIR += icewm SUBDIR += ion SUBDIR += jewel SUBDIR += jwm SUBDIR += larswm SUBDIR += libcompizconfig SUBDIR += libdockapp SUBDIR += libwraster SUBDIR += lwm SUBDIR += lxappearance-obconf SUBDIR += lxmed SUBDIR += lxsession SUBDIR += marco SUBDIR += matwm2 SUBDIR += mcwm SUBDIR += metacity SUBDIR += muffin SUBDIR += mutter SUBDIR += nickleby SUBDIR += obapps SUBDIR += obconf SUBDIR += obkey SUBDIR += obmenu SUBDIR += obpager SUBDIR += olvwm SUBDIR += openbox SUBDIR += oroborus SUBDIR += pager SUBDIR += pawm SUBDIR += peksystray SUBDIR += pekwm SUBDIR += phluid SUBDIR += piewm SUBDIR += plank + SUBDIR += plasma5-kdecoration + SUBDIR += plasma5-kwin SUBDIR += plwm SUBDIR += pwm SUBDIR += qlwm SUBDIR += qtile SUBDIR += ratmen SUBDIR += ratmenu SUBDIR += ratpoison SUBDIR += rubygem-uh-layout SUBDIR += rubygem-uh-wm SUBDIR += sawfish SUBDIR += selectwm SUBDIR += simple-ccsm SUBDIR += spectrwm SUBDIR += stumpwm SUBDIR += subtle SUBDIR += swm SUBDIR += tinywm SUBDIR += transset SUBDIR += treewm SUBDIR += tvtwm SUBDIR += twm SUBDIR += vtwm SUBDIR += w9wm SUBDIR += weewm SUBDIR += windowlab SUBDIR += windowmaker SUBDIR += wm2 SUBDIR += wmakerconf SUBDIR += wmanager SUBDIR += wmanager-addons SUBDIR += wmconfig SUBDIR += wmfs SUBDIR += wmii SUBDIR += wmii-devel SUBDIR += wmname SUBDIR += wmx SUBDIR += xcompmgr SUBDIR += xfce4 SUBDIR += xfce4-desktop SUBDIR += xfce4-panel SUBDIR += xfce4-session SUBDIR += xfce4-wm .include Index: head/x11-wm/plasma5-kdecoration/Makefile =================================================================== --- head/x11-wm/plasma5-kdecoration/Makefile (nonexistent) +++ head/x11-wm/plasma5-kdecoration/Makefile (revision 468495) @@ -0,0 +1,18 @@ +# $FreeBSD$ + +PORTNAME= kdecoration +DISTVERSION= ${KDE_PLASMA_VERSION} +CATEGORIES= x11-wm kde kde-plasma + +MAINTAINER= kde@FreeBSD.org +COMMENT= Plasma5 library to create window decorations + +LICENSE= LGPL21 +LICENSE_FILE= ${WRKSRC}/COPYING.LIB + +USES= cmake:outsource compiler:c++11-lib cpe kde:5 tar:xz +USE_LDCONFIG= yes +USE_KDE= ecm +USE_QT5= core gui testlib buildtools_build qmake_build + +.include Property changes on: head/x11-wm/plasma5-kdecoration/Makefile ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/x11-wm/plasma5-kdecoration/distinfo =================================================================== --- head/x11-wm/plasma5-kdecoration/distinfo (nonexistent) +++ head/x11-wm/plasma5-kdecoration/distinfo (revision 468495) @@ -0,0 +1,3 @@ +TIMESTAMP = 1523811821 +SHA256 (KDE/plasma/5.12.4/kdecoration-5.12.4.tar.xz) = d22e54abd40cc3e030e894510e45e11a318f126ba658c708d0a56e58c01a5a5a +SIZE (KDE/plasma/5.12.4/kdecoration-5.12.4.tar.xz) = 35284 Property changes on: head/x11-wm/plasma5-kdecoration/distinfo ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/x11-wm/plasma5-kdecoration/pkg-descr =================================================================== --- head/x11-wm/plasma5-kdecoration/pkg-descr (nonexistent) +++ head/x11-wm/plasma5-kdecoration/pkg-descr (revision 468495) @@ -0,0 +1,3 @@ +Plugin based library to create window decorations + +WWW: https://www.kde.org/plasma-desktop Property changes on: head/x11-wm/plasma5-kdecoration/pkg-descr ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/x11-wm/plasma5-kdecoration/pkg-plist =================================================================== --- head/x11-wm/plasma5-kdecoration/pkg-plist (nonexistent) +++ head/x11-wm/plasma5-kdecoration/pkg-plist (revision 468495) @@ -0,0 +1,32 @@ +include/KDecoration2/KDecoration2/DecoratedClient +include/KDecoration2/KDecoration2/Decoration +include/KDecoration2/KDecoration2/DecorationButton +include/KDecoration2/KDecoration2/DecorationButtonGroup +include/KDecoration2/KDecoration2/DecorationSettings +include/KDecoration2/KDecoration2/DecorationShadow +include/KDecoration2/KDecoration2/Private/DecoratedClientPrivate +include/KDecoration2/KDecoration2/Private/DecorationBridge +include/KDecoration2/KDecoration2/Private/DecorationSettingsPrivate +include/KDecoration2/kdecoration2/decoratedclient.h +include/KDecoration2/kdecoration2/decoration.h +include/KDecoration2/kdecoration2/decorationbutton.h +include/KDecoration2/kdecoration2/decorationbuttongroup.h +include/KDecoration2/kdecoration2/decorationdefines.h +include/KDecoration2/kdecoration2/decorationsettings.h +include/KDecoration2/kdecoration2/decorationshadow.h +include/KDecoration2/kdecoration2/kdecoration2_export.h +include/KDecoration2/kdecoration2/private/decoratedclientprivate.h +include/KDecoration2/kdecoration2/private/decorationbridge.h +include/KDecoration2/kdecoration2/private/decorationsettingsprivate.h +include/KDecoration2/kdecoration2/private/kdecoration2_private_export.h +include/KF5/kdecoration2_version.h +lib/cmake/KDecoration2/KDecoration2Config.cmake +lib/cmake/KDecoration2/KDecoration2ConfigVersion.cmake +lib/cmake/KDecoration2/KDecoration2Targets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/KDecoration2/KDecoration2Targets.cmake +lib/libkdecorations2.so +lib/libkdecorations2.so.5 +lib/libkdecorations2.so.%%KDE_PLASMA_VERSION%% +lib/libkdecorations2private.so +lib/libkdecorations2private.so.5 +lib/libkdecorations2private.so.%%KDE_PLASMA_VERSION%% Property changes on: head/x11-wm/plasma5-kdecoration/pkg-plist ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/x11-wm/plasma5-kwin/Makefile =================================================================== --- head/x11-wm/plasma5-kwin/Makefile (nonexistent) +++ head/x11-wm/plasma5-kwin/Makefile (revision 468495) @@ -0,0 +1,56 @@ +# $FreeBSD$ + +PORTNAME= kwin +DISTVERSION= ${KDE_PLASMA_VERSION} +CATEGORIES= x11-wm kde kde-plasma + +MAINTAINER= kde@FreeBSD.org +COMMENT= Plasma5 window manager + +LICENSE= GPLv2 +LICENSE_FILE= ${WRKSRC}/COPYING + +LIB_DEPENDS= libXcursor.so:x11/libXcursor \ + libdrm.so:graphics/libdrm \ + libepoxy.so:graphics/libepoxy \ + libfontconfig.so:x11-fonts/fontconfig \ + libfreetype.so:print/freetype2 \ + libinput.so:x11/libinput \ + libudev.so:devel/libudev-devd \ + libwayland-cursor.so:graphics/wayland \ + libxcb-cursor.so:x11/xcb-util-cursor \ + libxcb-icccm.so:x11/xcb-util-wm \ + libxcb-image.so:x11/xcb-util-image \ + libxcb-keysyms.so:x11/xcb-util-keysyms \ + libxkbcommon.so:x11/libxkbcommon +BUILD_DEPENDS= ${LOCALBASE}/include/linux/input.h:multimedia/v4l_compat \ + Xwayland:x11-servers/xwayland +RUN_DEPENDS= Xwayland:x11-servers/xwayland + +USES= cmake:outsource compiler:c++11-lib cpe gettext \ + kde:5 pkgconfig tar:xz +USE_GL= egl +USE_KDE= activities activities attica auth breeze codecs \ + completion config configwidgets coreaddons crash decoration \ + doctools doctools globalaccel i18n iconthemes idletime init \ + jobwidgets kcmutils kdeclarative kio package kscreenlocker \ + newstuff notifications plasma-framework service sonnet \ + textwidgets wayland widgetsaddons windowsystem xmlgui +USE_LDCONFIG= yes +USE_QT5= concurrent core dbus gui multimedia network qml quick script \ + sensors testlib uiplugin uitools widgets x11extras xml \ + buildtools_build qmake_build \ + quickcontrols2_run virtualkeyboard_run +USE_XORG= ice sm x11 xcb xext xi + +.include +.if ${OPSYS} == FreeBSD && ${OSVERSION} < 1100000 +# Base compiler clang 3.5 does not understand -Winconsistent-missing-override +EXTRA_PATCHES= ${PATCHDIR}/extra-patch-fbsd10 +.endif + +post-patch: + ${REINPLACE_CMD} '/sysmacros.h/d' \ + ${PATCH_WRKSRC}/logind.cpp + +.include Property changes on: head/x11-wm/plasma5-kwin/Makefile ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/x11-wm/plasma5-kwin/distinfo =================================================================== --- head/x11-wm/plasma5-kwin/distinfo (nonexistent) +++ head/x11-wm/plasma5-kwin/distinfo (revision 468495) @@ -0,0 +1,3 @@ +TIMESTAMP = 1523811825 +SHA256 (KDE/plasma/5.12.4/kwin-5.12.4.tar.xz) = c8bda63cb1365351e10d8e871c330c494530a79ef23cb119dee653a5323b222f +SIZE (KDE/plasma/5.12.4/kwin-5.12.4.tar.xz) = 4986536 Property changes on: head/x11-wm/plasma5-kwin/distinfo ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/x11-wm/plasma5-kwin/files/extra-patch-fbsd10 =================================================================== --- head/x11-wm/plasma5-kwin/files/extra-patch-fbsd10 (nonexistent) +++ head/x11-wm/plasma5-kwin/files/extra-patch-fbsd10 (revision 468495) @@ -0,0 +1,16 @@ +Clang 3.4 (base compiler in 10-STABLE) does not know +-Winconsistent-missing-override, and having that flag +in the CXX flags messes up visibility detection. So +don't warn about unknown warnings. + +--- CMakeLists.txt.orig 2017-09-21 18:34:57.176858000 +0200 ++++ CMakeLists.txt 2017-09-21 18:35:15.580988000 +0200 +@@ -53,7 +53,7 @@ + set(CMAKE_CXX_STANDARD_REQUIRED ON) + + if("${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang") +- set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-inconsistent-missing-override") ++ set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-unknown-warning-option -Wno-inconsistent-missing-override") + endif() + + find_package(Qt5Multimedia QUIET) Property changes on: head/x11-wm/plasma5-kwin/files/extra-patch-fbsd10 ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/x11-wm/plasma5-kwin/pkg-descr =================================================================== --- head/x11-wm/plasma5-kwin/pkg-descr (nonexistent) +++ head/x11-wm/plasma5-kwin/pkg-descr (revision 468495) @@ -0,0 +1,3 @@ +Plasma5 KWin Window manager + +WWW: https://www.kde.org/plasma-desktop Property changes on: head/x11-wm/plasma5-kwin/pkg-descr ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/x11-wm/plasma5-kwin/pkg-plist =================================================================== --- head/x11-wm/plasma5-kwin/pkg-plist (nonexistent) +++ head/x11-wm/plasma5-kwin/pkg-plist (revision 468495) @@ -0,0 +1,1351 @@ +bin/kwin_wayland +bin/kwin_x11 +etc/xdg/aurorae.knsrc +etc/xdg/kwineffect.knsrc +etc/xdg/kwinscripts.knsrc +etc/xdg/kwinswitcher.knsrc +etc/xdg/org_kde_kwin.categories +include/kwin_export.h +include/kwinanimationeffect.h +include/kwinconfig.h +include/kwineffects.h +include/kwineffects_export.h +include/kwinglobals.h +include/kwinglplatform.h +include/kwingltexture.h +include/kwinglutils.h +include/kwinglutils_export.h +include/kwinglutils_funcs.h +include/kwinxrenderutils.h +include/kwinxrenderutils_export.h +lib/cmake/KWinDBusInterface/KWinDBusInterfaceConfig.cmake +lib/kconf_update_bin/kwin5_update_default_rules +lib/libexec/kwin_killer_helper +lib/libexec/kwin_rules_dialog +lib/libexec/org_kde_kwin_xclipboard_syncer +lib/libkdeinit5_kwin_rules_dialog.so +lib/libkdeinit5_kwin_x11.so +lib/libkwin.so.5 +lib/libkwin.so.%%KDE_PLASMA_VERSION%% +lib/libkwin4_effect_builtins.so +lib/libkwin4_effect_builtins.so.1 +lib/libkwin4_effect_builtins.so.1.0.0 +lib/libkwineffects.so +lib/libkwineffects.so.11 +lib/libkwineffects.so.%%KDE_PLASMA_VERSION%% +lib/libkwinglutils.so +lib/libkwinglutils.so.11 +lib/libkwinglutils.so.%%KDE_PLASMA_VERSION%% +lib/libkwinxrenderutils.so +lib/libkwinxrenderutils.so.11 +lib/libkwinxrenderutils.so.%%KDE_PLASMA_VERSION%% +%%QT_PLUGINDIR%%/kcm_kwin_scripts.so +%%QT_PLUGINDIR%%/kcm_kwindecoration.so +%%QT_PLUGINDIR%%/kcm_kwindesktop.so +%%QT_PLUGINDIR%%/kcm_kwinoptions.so +%%QT_PLUGINDIR%%/kcm_kwinrules.so +%%QT_PLUGINDIR%%/kcm_kwinscreenedges.so +%%QT_PLUGINDIR%%/kcm_kwintabbox.so +%%QT_PLUGINDIR%%/kcm_kwintouchscreen.so +%%QT_PLUGINDIR%%/kf5/org.kde.kidletime.platforms/KF5IdleTimeKWinWaylandPrivatePlugin.so +%%QT_PLUGINDIR%%/kpackage/packagestructure/kwin_packagestructure_aurorae.so +%%QT_PLUGINDIR%%/kpackage/packagestructure/kwin_packagestructure_decoration.so +%%QT_PLUGINDIR%%/kpackage/packagestructure/kwin_packagestructure_scripts.so +%%QT_PLUGINDIR%%/kpackage/packagestructure/kwin_packagestructure_windowswitcher.so +%%QT_PLUGINDIR%%/kwin/effects/configs/kcm_kwin4_genericscripted.so +%%QT_PLUGINDIR%%/kwin/effects/configs/kwin_blur_config.so +%%QT_PLUGINDIR%%/kwin/effects/configs/kwin_coverswitch_config.so +%%QT_PLUGINDIR%%/kwin/effects/configs/kwin_cube_config.so +%%QT_PLUGINDIR%%/kwin/effects/configs/kwin_cubeslide_config.so +%%QT_PLUGINDIR%%/kwin/effects/configs/kwin_desktopgrid_config.so +%%QT_PLUGINDIR%%/kwin/effects/configs/kwin_diminactive_config.so +%%QT_PLUGINDIR%%/kwin/effects/configs/kwin_flipswitch_config.so +%%QT_PLUGINDIR%%/kwin/effects/configs/kwin_glide_config.so +%%QT_PLUGINDIR%%/kwin/effects/configs/kwin_invert_config.so +%%QT_PLUGINDIR%%/kwin/effects/configs/kwin_lookingglass_config.so +%%QT_PLUGINDIR%%/kwin/effects/configs/kwin_magiclamp_config.so +%%QT_PLUGINDIR%%/kwin/effects/configs/kwin_magnifier_config.so +%%QT_PLUGINDIR%%/kwin/effects/configs/kwin_mouseclick_config.so +%%QT_PLUGINDIR%%/kwin/effects/configs/kwin_mousemark_config.so +%%QT_PLUGINDIR%%/kwin/effects/configs/kwin_presentwindows_config.so +%%QT_PLUGINDIR%%/kwin/effects/configs/kwin_resize_config.so +%%QT_PLUGINDIR%%/kwin/effects/configs/kwin_showfps_config.so +%%QT_PLUGINDIR%%/kwin/effects/configs/kwin_slide_config.so +%%QT_PLUGINDIR%%/kwin/effects/configs/kwin_thumbnailaside_config.so +%%QT_PLUGINDIR%%/kwin/effects/configs/kwin_trackmouse_config.so +%%QT_PLUGINDIR%%/kwin/effects/configs/kwin_windowgeometry_config.so +%%QT_PLUGINDIR%%/kwin/effects/configs/kwin_wobblywindows_config.so +%%QT_PLUGINDIR%%/kwin/effects/configs/kwin_zoom_config.so +%%QT_PLUGINDIR%%/kwincompositing.so +%%QT_PLUGINDIR%%/org.kde.kdecoration2/kwin5_aurorae.so +%%QT_PLUGINDIR%%/org.kde.kglobalaccel5.platforms/KF5GlobalAccelPrivateKWin.so +%%QT_PLUGINDIR%%/org.kde.kwin.platforms/KWinX11Platform.so +%%QT_PLUGINDIR%%/org.kde.kwin.scenes/KWinSceneOpenGL.so +%%QT_PLUGINDIR%%/org.kde.kwin.scenes/KWinSceneQPainter.so +%%QT_PLUGINDIR%%/org.kde.kwin.scenes/KWinSceneXRender.so +%%QT_PLUGINDIR%%/org.kde.kwin.waylandbackends/KWinWaylandDrmBackend.so +%%QT_PLUGINDIR%%/org.kde.kwin.waylandbackends/KWinWaylandVirtualBackend.so +%%QT_PLUGINDIR%%/org.kde.kwin.waylandbackends/KWinWaylandWaylandBackend.so +%%QT_PLUGINDIR%%/org.kde.kwin.waylandbackends/KWinWaylandX11Backend.so +%%QT_PLUGINDIR%%/platforms/KWinQpaPlugin.so +%%QT_QMLDIR%%/org/kde/kwin/decoration/AppMenuButton.qml +%%QT_QMLDIR%%/org/kde/kwin/decoration/ButtonGroup.qml +%%QT_QMLDIR%%/org/kde/kwin/decoration/Decoration.qml +%%QT_QMLDIR%%/org/kde/kwin/decoration/DecorationButton.qml +%%QT_QMLDIR%%/org/kde/kwin/decoration/MenuButton.qml +%%QT_QMLDIR%%/org/kde/kwin/decoration/libdecorationplugin.so +%%QT_QMLDIR%%/org/kde/kwin/decoration/qmldir +%%QT_QMLDIR%%/org/kde/kwin/decorations/plastik/libplastikplugin.so +%%QT_QMLDIR%%/org/kde/kwin/decorations/plastik/qmldir +%%QT_QMLDIR%%/org/kde/kwin/private/kdecoration/libkdecorationprivatedeclarative.so +%%QT_QMLDIR%%/org/kde/kwin/private/kdecoration/qmldir +share/config.kcfg/kwin.kcfg +share/config.kcfg/kwin_colorcorrect.kcfg +share/dbus-1/interfaces/org.kde.KWin.xml +share/dbus-1/interfaces/org.kde.kwin.ColorCorrect.xml +share/dbus-1/interfaces/org.kde.kwin.Compositing.xml +share/dbus-1/interfaces/org.kde.kwin.Effects.xml +share/doc/HTML/ca/kcontrol/desktop/index.cache.bz2 +share/doc/HTML/ca/kcontrol/desktop/index.docbook +share/doc/HTML/ca/kcontrol/kwindecoration/button.png +share/doc/HTML/ca/kcontrol/kwindecoration/configure.png +share/doc/HTML/ca/kcontrol/kwindecoration/decoration.png +share/doc/HTML/ca/kcontrol/kwindecoration/index.cache.bz2 +share/doc/HTML/ca/kcontrol/kwindecoration/index.docbook +share/doc/HTML/ca/kcontrol/kwindecoration/main.png +share/doc/HTML/ca/kcontrol/kwineffects/configure-effects.png +share/doc/HTML/ca/kcontrol/kwineffects/configure-filter.png +share/doc/HTML/ca/kcontrol/kwineffects/dialog-information.png +share/doc/HTML/ca/kcontrol/kwineffects/index.cache.bz2 +share/doc/HTML/ca/kcontrol/kwineffects/index.docbook +share/doc/HTML/ca/kcontrol/kwineffects/video.png +share/doc/HTML/ca/kcontrol/kwinscreenedges/index.cache.bz2 +share/doc/HTML/ca/kcontrol/kwinscreenedges/index.docbook +share/doc/HTML/ca/kcontrol/kwintabbox/index.cache.bz2 +share/doc/HTML/ca/kcontrol/kwintabbox/index.docbook +share/doc/HTML/ca/kcontrol/windowbehaviour/index.cache.bz2 +share/doc/HTML/ca/kcontrol/windowbehaviour/index.docbook +share/doc/HTML/ca/kcontrol/windowspecific/Face-smile.png +share/doc/HTML/ca/kcontrol/windowspecific/index.cache.bz2 +share/doc/HTML/ca/kcontrol/windowspecific/index.docbook +share/doc/HTML/ca/kcontrol/windowspecific/pager-4-desktops.png +share/doc/HTML/de/kcontrol/desktop/index.cache.bz2 +share/doc/HTML/de/kcontrol/desktop/index.docbook +share/doc/HTML/de/kcontrol/kwindecoration/index.cache.bz2 +share/doc/HTML/de/kcontrol/kwindecoration/index.docbook +share/doc/HTML/de/kcontrol/kwineffects/index.cache.bz2 +share/doc/HTML/de/kcontrol/kwineffects/index.docbook +share/doc/HTML/de/kcontrol/kwinscreenedges/index.cache.bz2 +share/doc/HTML/de/kcontrol/kwinscreenedges/index.docbook +share/doc/HTML/de/kcontrol/kwintabbox/index.cache.bz2 +share/doc/HTML/de/kcontrol/kwintabbox/index.docbook +share/doc/HTML/de/kcontrol/windowbehaviour/index.cache.bz2 +share/doc/HTML/de/kcontrol/windowbehaviour/index.docbook +share/doc/HTML/de/kcontrol/windowspecific/index.cache.bz2 +share/doc/HTML/de/kcontrol/windowspecific/index.docbook +share/doc/HTML/en/kcontrol/desktop/index.cache.bz2 +share/doc/HTML/en/kcontrol/desktop/index.docbook +share/doc/HTML/en/kcontrol/kwindecoration/button.png +share/doc/HTML/en/kcontrol/kwindecoration/configure.png +share/doc/HTML/en/kcontrol/kwindecoration/decoration.png +share/doc/HTML/en/kcontrol/kwindecoration/index.cache.bz2 +share/doc/HTML/en/kcontrol/kwindecoration/index.docbook +share/doc/HTML/en/kcontrol/kwindecoration/main.png +share/doc/HTML/en/kcontrol/kwineffects/configure-effects.png +share/doc/HTML/en/kcontrol/kwineffects/configure-filter.png +share/doc/HTML/en/kcontrol/kwineffects/dialog-information.png +share/doc/HTML/en/kcontrol/kwineffects/index.cache.bz2 +share/doc/HTML/en/kcontrol/kwineffects/index.docbook +share/doc/HTML/en/kcontrol/kwineffects/video.png +share/doc/HTML/en/kcontrol/kwinscreenedges/index.cache.bz2 +share/doc/HTML/en/kcontrol/kwinscreenedges/index.docbook +share/doc/HTML/en/kcontrol/kwintabbox/index.cache.bz2 +share/doc/HTML/en/kcontrol/kwintabbox/index.docbook +share/doc/HTML/en/kcontrol/windowbehaviour/index.cache.bz2 +share/doc/HTML/en/kcontrol/windowbehaviour/index.docbook +share/doc/HTML/en/kcontrol/windowspecific/Face-smile.png +share/doc/HTML/en/kcontrol/windowspecific/akgregator-info.png +share/doc/HTML/en/kcontrol/windowspecific/akregator-attributes.png +share/doc/HTML/en/kcontrol/windowspecific/akregator-fav.png +share/doc/HTML/en/kcontrol/windowspecific/config-win-behavior.png +share/doc/HTML/en/kcontrol/windowspecific/emacs-attribute.png +share/doc/HTML/en/kcontrol/windowspecific/emacs-info.png +share/doc/HTML/en/kcontrol/windowspecific/focus-stealing-pop2top-attribute.png +share/doc/HTML/en/kcontrol/windowspecific/index.cache.bz2 +share/doc/HTML/en/kcontrol/windowspecific/index.docbook +share/doc/HTML/en/kcontrol/windowspecific/knotes-attribute.png +share/doc/HTML/en/kcontrol/windowspecific/knotes-info.png +share/doc/HTML/en/kcontrol/windowspecific/kopete-attribute-2.png +share/doc/HTML/en/kcontrol/windowspecific/kopete-chat-attribute.png +share/doc/HTML/en/kcontrol/windowspecific/kopete-chat-info.png +share/doc/HTML/en/kcontrol/windowspecific/kopete-info.png +share/doc/HTML/en/kcontrol/windowspecific/kwin-detect-window.png +share/doc/HTML/en/kcontrol/windowspecific/kwin-kopete-rules.png +share/doc/HTML/en/kcontrol/windowspecific/kwin-rule-editor.png +share/doc/HTML/en/kcontrol/windowspecific/kwin-rules-main-n-akregator.png +share/doc/HTML/en/kcontrol/windowspecific/kwin-rules-main.png +share/doc/HTML/en/kcontrol/windowspecific/kwin-rules-ordering.png +share/doc/HTML/en/kcontrol/windowspecific/kwin-window-attributes.png +share/doc/HTML/en/kcontrol/windowspecific/kwin-window-matching.png +share/doc/HTML/en/kcontrol/windowspecific/pager-4-desktops.png +share/doc/HTML/en/kcontrol/windowspecific/tbird-compose-attribute.png +share/doc/HTML/en/kcontrol/windowspecific/tbird-compose-info.png +share/doc/HTML/en/kcontrol/windowspecific/tbird-main-attribute.png +share/doc/HTML/en/kcontrol/windowspecific/tbird-main-info.png +share/doc/HTML/en/kcontrol/windowspecific/tbird-reminder-attribute-2.png +share/doc/HTML/en/kcontrol/windowspecific/tbird-reminder-info.png +share/doc/HTML/en/kcontrol/windowspecific/window-matching-emacs.png +share/doc/HTML/en/kcontrol/windowspecific/window-matching-init.png +share/doc/HTML/en/kcontrol/windowspecific/window-matching-knotes.png +share/doc/HTML/en/kcontrol/windowspecific/window-matching-kopete-chat.png +share/doc/HTML/en/kcontrol/windowspecific/window-matching-kopete.png +share/doc/HTML/en/kcontrol/windowspecific/window-matching-ready-akregator.png +share/doc/HTML/en/kcontrol/windowspecific/window-matching-tbird-compose.png +share/doc/HTML/en/kcontrol/windowspecific/window-matching-tbird-main.png +share/doc/HTML/en/kcontrol/windowspecific/window-matching-tbird-reminder.png +share/doc/HTML/es/kcontrol/desktop/index.cache.bz2 +share/doc/HTML/es/kcontrol/desktop/index.docbook +share/doc/HTML/it/kcontrol/desktop/index.cache.bz2 +share/doc/HTML/it/kcontrol/desktop/index.docbook +share/doc/HTML/it/kcontrol/kwindecoration/index.cache.bz2 +share/doc/HTML/it/kcontrol/kwindecoration/index.docbook +share/doc/HTML/it/kcontrol/kwineffects/index.cache.bz2 +share/doc/HTML/it/kcontrol/kwineffects/index.docbook +share/doc/HTML/it/kcontrol/kwinscreenedges/index.cache.bz2 +share/doc/HTML/it/kcontrol/kwinscreenedges/index.docbook +share/doc/HTML/it/kcontrol/kwintabbox/index.cache.bz2 +share/doc/HTML/it/kcontrol/kwintabbox/index.docbook +share/doc/HTML/it/kcontrol/windowbehaviour/index.cache.bz2 +share/doc/HTML/it/kcontrol/windowbehaviour/index.docbook +share/doc/HTML/it/kcontrol/windowspecific/index.cache.bz2 +share/doc/HTML/it/kcontrol/windowspecific/index.docbook +share/doc/HTML/nl/kcontrol/desktop/index.cache.bz2 +share/doc/HTML/nl/kcontrol/desktop/index.docbook +share/doc/HTML/nl/kcontrol/kwindecoration/index.cache.bz2 +share/doc/HTML/nl/kcontrol/kwindecoration/index.docbook +share/doc/HTML/nl/kcontrol/kwineffects/index.cache.bz2 +share/doc/HTML/nl/kcontrol/kwineffects/index.docbook +share/doc/HTML/nl/kcontrol/kwinscreenedges/index.cache.bz2 +share/doc/HTML/nl/kcontrol/kwinscreenedges/index.docbook +share/doc/HTML/nl/kcontrol/kwintabbox/index.cache.bz2 +share/doc/HTML/nl/kcontrol/kwintabbox/index.docbook +share/doc/HTML/nl/kcontrol/windowbehaviour/index.cache.bz2 +share/doc/HTML/nl/kcontrol/windowbehaviour/index.docbook +share/doc/HTML/nl/kcontrol/windowspecific/index.cache.bz2 +share/doc/HTML/nl/kcontrol/windowspecific/index.docbook +share/doc/HTML/pt/kcontrol/desktop/index.cache.bz2 +share/doc/HTML/pt/kcontrol/desktop/index.docbook +share/doc/HTML/pt/kcontrol/kwindecoration/index.cache.bz2 +share/doc/HTML/pt/kcontrol/kwindecoration/index.docbook +share/doc/HTML/pt/kcontrol/kwineffects/index.cache.bz2 +share/doc/HTML/pt/kcontrol/kwineffects/index.docbook +share/doc/HTML/pt/kcontrol/kwinscreenedges/index.cache.bz2 +share/doc/HTML/pt/kcontrol/kwinscreenedges/index.docbook +share/doc/HTML/pt/kcontrol/kwintabbox/index.cache.bz2 +share/doc/HTML/pt/kcontrol/kwintabbox/index.docbook +share/doc/HTML/pt/kcontrol/windowbehaviour/index.cache.bz2 +share/doc/HTML/pt/kcontrol/windowbehaviour/index.docbook +share/doc/HTML/pt/kcontrol/windowspecific/index.cache.bz2 +share/doc/HTML/pt/kcontrol/windowspecific/index.docbook +share/doc/HTML/pt_BR/kcontrol/desktop/index.cache.bz2 +share/doc/HTML/pt_BR/kcontrol/desktop/index.docbook +share/doc/HTML/pt_BR/kcontrol/kwindecoration/configure.png +share/doc/HTML/pt_BR/kcontrol/kwindecoration/index.cache.bz2 +share/doc/HTML/pt_BR/kcontrol/kwindecoration/index.docbook +share/doc/HTML/pt_BR/kcontrol/kwinscreenedges/index.cache.bz2 +share/doc/HTML/pt_BR/kcontrol/kwinscreenedges/index.docbook +share/doc/HTML/pt_BR/kcontrol/kwintabbox/index.cache.bz2 +share/doc/HTML/pt_BR/kcontrol/kwintabbox/index.docbook +share/doc/HTML/pt_BR/kcontrol/windowbehaviour/index.cache.bz2 +share/doc/HTML/pt_BR/kcontrol/windowbehaviour/index.docbook +share/doc/HTML/pt_BR/kcontrol/windowspecific/index.cache.bz2 +share/doc/HTML/pt_BR/kcontrol/windowspecific/index.docbook +share/doc/HTML/ru/kcontrol/kwineffects/index.cache.bz2 +share/doc/HTML/ru/kcontrol/kwineffects/index.docbook +share/doc/HTML/ru/kcontrol/kwinscreenedges/index.cache.bz2 +share/doc/HTML/ru/kcontrol/kwinscreenedges/index.docbook +share/doc/HTML/ru/kcontrol/kwintabbox/index.cache.bz2 +share/doc/HTML/ru/kcontrol/kwintabbox/index.docbook +share/doc/HTML/ru/kcontrol/windowbehaviour/index.cache.bz2 +share/doc/HTML/ru/kcontrol/windowbehaviour/index.docbook +share/doc/HTML/sr/kcontrol/desktop/index.cache.bz2 +share/doc/HTML/sr/kcontrol/desktop/index.docbook +share/doc/HTML/sr@latin/kcontrol/desktop/index.cache.bz2 +share/doc/HTML/sr@latin/kcontrol/desktop/index.docbook +share/doc/HTML/uk/kcontrol/desktop/index.cache.bz2 +share/doc/HTML/uk/kcontrol/desktop/index.docbook +share/doc/HTML/uk/kcontrol/kwindecoration/button.png +share/doc/HTML/uk/kcontrol/kwindecoration/decoration.png +share/doc/HTML/uk/kcontrol/kwindecoration/index.cache.bz2 +share/doc/HTML/uk/kcontrol/kwindecoration/index.docbook +share/doc/HTML/uk/kcontrol/kwindecoration/main.png +share/doc/HTML/uk/kcontrol/kwineffects/index.cache.bz2 +share/doc/HTML/uk/kcontrol/kwineffects/index.docbook +share/doc/HTML/uk/kcontrol/kwinscreenedges/index.cache.bz2 +share/doc/HTML/uk/kcontrol/kwinscreenedges/index.docbook +share/doc/HTML/uk/kcontrol/kwintabbox/index.cache.bz2 +share/doc/HTML/uk/kcontrol/kwintabbox/index.docbook +share/doc/HTML/uk/kcontrol/windowbehaviour/index.cache.bz2 +share/doc/HTML/uk/kcontrol/windowbehaviour/index.docbook +share/doc/HTML/uk/kcontrol/windowspecific/index.cache.bz2 +share/doc/HTML/uk/kcontrol/windowspecific/index.docbook +share/icons/hicolor/16x16/apps/kwin.png +share/icons/hicolor/32x32/apps/kwin.png +share/icons/hicolor/48x48/apps/kwin.png +share/icons/hicolor/scalable/apps/kwin.svgz +share/knotifications5/kwin.notifyrc +share/kservices5/desktop.desktop +share/kservices5/kcmkwineffects.desktop +share/kservices5/kwin-script-desktopchangeosd.desktop +share/kservices5/kwin-script-enforcedeco.desktop +share/kservices5/kwin-script-minimizeall.desktop +share/kservices5/kwin-script-synchronizeskipswitcher.desktop +share/kservices5/kwin-script-videowall.desktop +share/kservices5/kwin/kwin4_decoration_qml_plastik.desktop +share/kservices5/kwin/kwin4_effect_dialogparent.desktop +share/kservices5/kwin/kwin4_effect_eyeonscreen.desktop +share/kservices5/kwin/kwin4_effect_fade.desktop +share/kservices5/kwin/kwin4_effect_fadedesktop.desktop +share/kservices5/kwin/kwin4_effect_frozenapp.desktop +share/kservices5/kwin/kwin4_effect_login.desktop +share/kservices5/kwin/kwin4_effect_logout.desktop +share/kservices5/kwin/kwin4_effect_maximize.desktop +share/kservices5/kwin/kwin4_effect_morphingpopups.desktop +share/kservices5/kwin/kwin4_effect_scalein.desktop +share/kservices5/kwin/kwin4_effect_translucency.desktop +share/kservices5/kwin/kwin4_effect_windowaperture.desktop +share/kservices5/kwinactions.desktop +share/kservices5/kwinadvanced.desktop +share/kservices5/kwincompositing.desktop +share/kservices5/kwindecoration.desktop +share/kservices5/kwinfocus.desktop +share/kservices5/kwinmoving.desktop +share/kservices5/kwinoptions.desktop +share/kservices5/kwinrules.desktop +share/kservices5/kwinscreenedges.desktop +share/kservices5/kwinscripts.desktop +share/kservices5/kwintabbox.desktop +share/kservices5/kwintouchscreen.desktop +share/kservicetypes5/kwindecoration.desktop +share/kservicetypes5/kwindesktopswitcher.desktop +share/kservicetypes5/kwineffect.desktop +share/kservicetypes5/kwinscript.desktop +share/kservicetypes5/kwinwindowswitcher.desktop +%%DATADIR%%/aurorae/AppMenuButton.qml +%%DATADIR%%/aurorae/AuroraeButton.qml +%%DATADIR%%/aurorae/AuroraeButtonGroup.qml +%%DATADIR%%/aurorae/AuroraeMaximizeButton.qml +%%DATADIR%%/aurorae/Decoration.qml +%%DATADIR%%/aurorae/DecorationButton.qml +%%DATADIR%%/aurorae/MenuButton.qml +%%DATADIR%%/aurorae/aurorae.qml +%%DATADIR%%/cubecap.png +%%DATADIR%%/decorations/kwin4_decoration_qml_plastik/contents/config/main.xml +%%DATADIR%%/decorations/kwin4_decoration_qml_plastik/contents/ui/PlastikButton.qml +%%DATADIR%%/decorations/kwin4_decoration_qml_plastik/contents/ui/config.ui +%%DATADIR%%/decorations/kwin4_decoration_qml_plastik/contents/ui/main.qml +%%DATADIR%%/decorations/kwin4_decoration_qml_plastik/metadata.desktop +%%DATADIR%%/effects/desktopgrid/main.qml +%%DATADIR%%/effects/kwin4_effect_dialogparent/contents/code/main.js +%%DATADIR%%/effects/kwin4_effect_dialogparent/metadata.desktop +%%DATADIR%%/effects/kwin4_effect_eyeonscreen/contents/code/main.js +%%DATADIR%%/effects/kwin4_effect_eyeonscreen/metadata.desktop +%%DATADIR%%/effects/kwin4_effect_fade/contents/code/main.js +%%DATADIR%%/effects/kwin4_effect_fade/contents/config/main.xml +%%DATADIR%%/effects/kwin4_effect_fade/metadata.desktop +%%DATADIR%%/effects/kwin4_effect_fadedesktop/contents/code/main.js +%%DATADIR%%/effects/kwin4_effect_fadedesktop/metadata.desktop +%%DATADIR%%/effects/kwin4_effect_frozenapp/contents/code/main.js +%%DATADIR%%/effects/kwin4_effect_frozenapp/metadata.desktop +%%DATADIR%%/effects/kwin4_effect_login/contents/code/main.js +%%DATADIR%%/effects/kwin4_effect_login/contents/config/main.xml +%%DATADIR%%/effects/kwin4_effect_login/contents/ui/config.ui +%%DATADIR%%/effects/kwin4_effect_login/metadata.desktop +%%DATADIR%%/effects/kwin4_effect_logout/contents/code/main.js +%%DATADIR%%/effects/kwin4_effect_logout/metadata.desktop +%%DATADIR%%/effects/kwin4_effect_maximize/contents/code/maximize.js +%%DATADIR%%/effects/kwin4_effect_maximize/metadata.desktop +%%DATADIR%%/effects/kwin4_effect_morphingpopups/contents/code/morphingpopups.js +%%DATADIR%%/effects/kwin4_effect_morphingpopups/metadata.desktop +%%DATADIR%%/effects/kwin4_effect_scalein/contents/code/main.js +%%DATADIR%%/effects/kwin4_effect_scalein/metadata.desktop +%%DATADIR%%/effects/kwin4_effect_translucency/contents/code/main.js +%%DATADIR%%/effects/kwin4_effect_translucency/contents/config/main.xml +%%DATADIR%%/effects/kwin4_effect_translucency/contents/ui/config.ui +%%DATADIR%%/effects/kwin4_effect_translucency/metadata.desktop +%%DATADIR%%/effects/kwin4_effect_windowaperture/contents/code/main.js +%%DATADIR%%/effects/kwin4_effect_windowaperture/metadata.desktop +%%DATADIR%%/effects/presentwindows/main.qml +%%DATADIR%%/kcm_kwindecoration/ButtonGroup.qml +%%DATADIR%%/kcm_kwindecoration/Buttons.qml +%%DATADIR%%/kcm_kwindecoration/Previews.qml +%%DATADIR%%/kcm_kwindecoration/main.qml +%%DATADIR%%/kcm_kwintabbox/dolphin.png +%%DATADIR%%/kcm_kwintabbox/kmail.png +%%DATADIR%%/kcm_kwintabbox/konqueror.png +%%DATADIR%%/kcm_kwintabbox/systemsettings.png +%%DATADIR%%/onscreennotification/plasma/dummydata/osd.qml +%%DATADIR%%/onscreennotification/plasma/main.qml +%%DATADIR%%/outline/plasma/outline.qml +%%DATADIR%%/scripts/desktopchangeosd/contents/ui/main.qml +%%DATADIR%%/scripts/desktopchangeosd/contents/ui/osd.qml +%%DATADIR%%/scripts/desktopchangeosd/metadata.desktop +%%DATADIR%%/scripts/enforcedeco/contents/code/main.js +%%DATADIR%%/scripts/enforcedeco/metadata.desktop +%%DATADIR%%/scripts/minimizeall/contents/code/main.js +%%DATADIR%%/scripts/minimizeall/metadata.desktop +%%DATADIR%%/scripts/synchronizeskipswitcher/contents/code/main.js +%%DATADIR%%/scripts/synchronizeskipswitcher/metadata.desktop +%%DATADIR%%/scripts/videowall/contents/code/main.js +%%DATADIR%%/scripts/videowall/contents/config/main.xml +%%DATADIR%%/scripts/videowall/contents/ui/config.ui +%%DATADIR%%/scripts/videowall/metadata.desktop +%%DATADIR%%/tm_inner.png +%%DATADIR%%/tm_outer.png +%%DATADIR%%/virtualkeyboard/main.qml +%%DATADIR%%compositing/qml/Effect.qml +%%DATADIR%%compositing/qml/EffectView.qml +%%DATADIR%%compositing/qml/Video.qml +%%DATADIR%%compositing/qml/main.qml +share/locale/af/LC_MESSAGES/kcmkwindecoration.mo +share/locale/af/LC_MESSAGES/kcmkwinrules.mo +share/locale/af/LC_MESSAGES/kcmkwm.mo +share/locale/af/LC_MESSAGES/kwin.mo +share/locale/af/LC_MESSAGES/kwin_clients.mo +share/locale/ar/LC_MESSAGES/kcm-kwin-scripts.mo +share/locale/ar/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/ar/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/ar/LC_MESSAGES/kcmkwincompositing.mo +share/locale/ar/LC_MESSAGES/kcmkwindecoration.mo +share/locale/ar/LC_MESSAGES/kcmkwinrules.mo +share/locale/ar/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/ar/LC_MESSAGES/kcmkwm.mo +share/locale/ar/LC_MESSAGES/kwin.mo +share/locale/ar/LC_MESSAGES/kwin_clients.mo +share/locale/ar/LC_MESSAGES/kwin_effects.mo +share/locale/ar/LC_MESSAGES/kwin_scripting.mo +share/locale/as/LC_MESSAGES/kwin.mo +share/locale/ast/LC_MESSAGES/kcm-kwin-scripts.mo +share/locale/ast/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/ast/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/ast/LC_MESSAGES/kcmkwincompositing.mo +share/locale/ast/LC_MESSAGES/kcmkwindecoration.mo +share/locale/ast/LC_MESSAGES/kcmkwinrules.mo +share/locale/ast/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/ast/LC_MESSAGES/kcmkwm.mo +share/locale/ast/LC_MESSAGES/kwin.mo +share/locale/ast/LC_MESSAGES/kwin_clients.mo +share/locale/ast/LC_MESSAGES/kwin_effects.mo +share/locale/ast/LC_MESSAGES/kwin_scripting.mo +share/locale/ast/LC_MESSAGES/kwin_scripts.mo +share/locale/be/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/be/LC_MESSAGES/kcmkwincompositing.mo +share/locale/be/LC_MESSAGES/kcmkwindecoration.mo +share/locale/be/LC_MESSAGES/kcmkwinrules.mo +share/locale/be/LC_MESSAGES/kcmkwm.mo +share/locale/be/LC_MESSAGES/kwin.mo +share/locale/be/LC_MESSAGES/kwin_clients.mo +share/locale/be/LC_MESSAGES/kwin_effects.mo +share/locale/be@latin/LC_MESSAGES/kwin.mo +share/locale/bg/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/bg/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/bg/LC_MESSAGES/kcmkwincompositing.mo +share/locale/bg/LC_MESSAGES/kcmkwindecoration.mo +share/locale/bg/LC_MESSAGES/kcmkwinrules.mo +share/locale/bg/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/bg/LC_MESSAGES/kcmkwm.mo +share/locale/bg/LC_MESSAGES/kwin.mo +share/locale/bg/LC_MESSAGES/kwin_clients.mo +share/locale/bg/LC_MESSAGES/kwin_effects.mo +share/locale/bn/LC_MESSAGES/kcmkwm.mo +share/locale/bn/LC_MESSAGES/kwin.mo +share/locale/bn/LC_MESSAGES/kwin_effects.mo +share/locale/bn_IN/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/bn_IN/LC_MESSAGES/kcmkwindecoration.mo +share/locale/bn_IN/LC_MESSAGES/kcmkwinrules.mo +share/locale/bn_IN/LC_MESSAGES/kcmkwm.mo +share/locale/bn_IN/LC_MESSAGES/kwin.mo +share/locale/bn_IN/LC_MESSAGES/kwin_clients.mo +share/locale/bn_IN/LC_MESSAGES/kwin_effects.mo +share/locale/br/LC_MESSAGES/kcmkwindecoration.mo +share/locale/br/LC_MESSAGES/kcmkwinrules.mo +share/locale/br/LC_MESSAGES/kcmkwm.mo +share/locale/br/LC_MESSAGES/kwin.mo +share/locale/br/LC_MESSAGES/kwin_clients.mo +share/locale/bs/LC_MESSAGES/kcm-kwin-scripts.mo +share/locale/bs/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/bs/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/bs/LC_MESSAGES/kcmkwincompositing.mo +share/locale/bs/LC_MESSAGES/kcmkwindecoration.mo +share/locale/bs/LC_MESSAGES/kcmkwinrules.mo +share/locale/bs/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/bs/LC_MESSAGES/kcmkwm.mo +share/locale/bs/LC_MESSAGES/kwin.mo +share/locale/bs/LC_MESSAGES/kwin_clients.mo +share/locale/bs/LC_MESSAGES/kwin_effects.mo +share/locale/bs/LC_MESSAGES/kwin_scripting.mo +share/locale/ca/LC_MESSAGES/kcm-kwin-scripts.mo +share/locale/ca/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/ca/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/ca/LC_MESSAGES/kcmkwincompositing.mo +share/locale/ca/LC_MESSAGES/kcmkwindecoration.mo +share/locale/ca/LC_MESSAGES/kcmkwinrules.mo +share/locale/ca/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/ca/LC_MESSAGES/kcmkwm.mo +share/locale/ca/LC_MESSAGES/kwin.mo +share/locale/ca/LC_MESSAGES/kwin_clients.mo +share/locale/ca/LC_MESSAGES/kwin_effects.mo +share/locale/ca/LC_MESSAGES/kwin_scripting.mo +share/locale/ca/LC_MESSAGES/kwin_scripts.mo +share/locale/ca@valencia/LC_MESSAGES/kcm-kwin-scripts.mo +share/locale/ca@valencia/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/ca@valencia/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/ca@valencia/LC_MESSAGES/kcmkwincompositing.mo +share/locale/ca@valencia/LC_MESSAGES/kcmkwindecoration.mo +share/locale/ca@valencia/LC_MESSAGES/kcmkwinrules.mo +share/locale/ca@valencia/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/ca@valencia/LC_MESSAGES/kcmkwm.mo +share/locale/ca@valencia/LC_MESSAGES/kwin.mo +share/locale/ca@valencia/LC_MESSAGES/kwin_clients.mo +share/locale/ca@valencia/LC_MESSAGES/kwin_effects.mo +share/locale/ca@valencia/LC_MESSAGES/kwin_scripting.mo +share/locale/ca@valencia/LC_MESSAGES/kwin_scripts.mo +share/locale/cs/LC_MESSAGES/kcm-kwin-scripts.mo +share/locale/cs/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/cs/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/cs/LC_MESSAGES/kcmkwincompositing.mo +share/locale/cs/LC_MESSAGES/kcmkwindecoration.mo +share/locale/cs/LC_MESSAGES/kcmkwinrules.mo +share/locale/cs/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/cs/LC_MESSAGES/kcmkwm.mo +share/locale/cs/LC_MESSAGES/kwin.mo +share/locale/cs/LC_MESSAGES/kwin_clients.mo +share/locale/cs/LC_MESSAGES/kwin_effects.mo +share/locale/cs/LC_MESSAGES/kwin_scripting.mo +share/locale/cs/LC_MESSAGES/kwin_scripts.mo +share/locale/csb/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/csb/LC_MESSAGES/kwin.mo +share/locale/csb/LC_MESSAGES/kwin_clients.mo +share/locale/csb/LC_MESSAGES/kwin_effects.mo +share/locale/cy/LC_MESSAGES/kcmkwindecoration.mo +share/locale/cy/LC_MESSAGES/kcmkwinrules.mo +share/locale/cy/LC_MESSAGES/kcmkwm.mo +share/locale/cy/LC_MESSAGES/kwin.mo +share/locale/cy/LC_MESSAGES/kwin_clients.mo +share/locale/da/LC_MESSAGES/kcm-kwin-scripts.mo +share/locale/da/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/da/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/da/LC_MESSAGES/kcmkwincompositing.mo +share/locale/da/LC_MESSAGES/kcmkwindecoration.mo +share/locale/da/LC_MESSAGES/kcmkwinrules.mo +share/locale/da/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/da/LC_MESSAGES/kcmkwm.mo +share/locale/da/LC_MESSAGES/kwin.mo +share/locale/da/LC_MESSAGES/kwin_clients.mo +share/locale/da/LC_MESSAGES/kwin_effects.mo +share/locale/da/LC_MESSAGES/kwin_scripting.mo +share/locale/da/LC_MESSAGES/kwin_scripts.mo +share/locale/de/LC_MESSAGES/kcm-kwin-scripts.mo +share/locale/de/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/de/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/de/LC_MESSAGES/kcmkwincompositing.mo +share/locale/de/LC_MESSAGES/kcmkwindecoration.mo +share/locale/de/LC_MESSAGES/kcmkwinrules.mo +share/locale/de/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/de/LC_MESSAGES/kcmkwm.mo +share/locale/de/LC_MESSAGES/kwin.mo +share/locale/de/LC_MESSAGES/kwin_clients.mo +share/locale/de/LC_MESSAGES/kwin_effects.mo +share/locale/de/LC_MESSAGES/kwin_scripting.mo +share/locale/de/LC_MESSAGES/kwin_scripts.mo +share/locale/el/LC_MESSAGES/kcm-kwin-scripts.mo +share/locale/el/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/el/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/el/LC_MESSAGES/kcmkwincompositing.mo +share/locale/el/LC_MESSAGES/kcmkwindecoration.mo +share/locale/el/LC_MESSAGES/kcmkwinrules.mo +share/locale/el/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/el/LC_MESSAGES/kcmkwm.mo +share/locale/el/LC_MESSAGES/kwin.mo +share/locale/el/LC_MESSAGES/kwin_clients.mo +share/locale/el/LC_MESSAGES/kwin_effects.mo +share/locale/el/LC_MESSAGES/kwin_scripting.mo +share/locale/el/LC_MESSAGES/kwin_scripts.mo +share/locale/en_GB/LC_MESSAGES/kcm-kwin-scripts.mo +share/locale/en_GB/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/en_GB/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/en_GB/LC_MESSAGES/kcmkwincompositing.mo +share/locale/en_GB/LC_MESSAGES/kcmkwindecoration.mo +share/locale/en_GB/LC_MESSAGES/kcmkwinrules.mo +share/locale/en_GB/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/en_GB/LC_MESSAGES/kcmkwm.mo +share/locale/en_GB/LC_MESSAGES/kwin.mo +share/locale/en_GB/LC_MESSAGES/kwin_clients.mo +share/locale/en_GB/LC_MESSAGES/kwin_effects.mo +share/locale/en_GB/LC_MESSAGES/kwin_scripting.mo +share/locale/en_GB/LC_MESSAGES/kwin_scripts.mo +share/locale/eo/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/eo/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/eo/LC_MESSAGES/kcmkwincompositing.mo +share/locale/eo/LC_MESSAGES/kcmkwindecoration.mo +share/locale/eo/LC_MESSAGES/kcmkwinrules.mo +share/locale/eo/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/eo/LC_MESSAGES/kcmkwm.mo +share/locale/eo/LC_MESSAGES/kwin.mo +share/locale/eo/LC_MESSAGES/kwin_clients.mo +share/locale/eo/LC_MESSAGES/kwin_effects.mo +share/locale/es/LC_MESSAGES/kcm-kwin-scripts.mo +share/locale/es/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/es/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/es/LC_MESSAGES/kcmkwincompositing.mo +share/locale/es/LC_MESSAGES/kcmkwindecoration.mo +share/locale/es/LC_MESSAGES/kcmkwinrules.mo +share/locale/es/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/es/LC_MESSAGES/kcmkwm.mo +share/locale/es/LC_MESSAGES/kwin.mo +share/locale/es/LC_MESSAGES/kwin_clients.mo +share/locale/es/LC_MESSAGES/kwin_effects.mo +share/locale/es/LC_MESSAGES/kwin_scripting.mo +share/locale/es/LC_MESSAGES/kwin_scripts.mo +share/locale/et/LC_MESSAGES/kcm-kwin-scripts.mo +share/locale/et/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/et/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/et/LC_MESSAGES/kcmkwincompositing.mo +share/locale/et/LC_MESSAGES/kcmkwindecoration.mo +share/locale/et/LC_MESSAGES/kcmkwinrules.mo +share/locale/et/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/et/LC_MESSAGES/kcmkwm.mo +share/locale/et/LC_MESSAGES/kwin.mo +share/locale/et/LC_MESSAGES/kwin_clients.mo +share/locale/et/LC_MESSAGES/kwin_effects.mo +share/locale/et/LC_MESSAGES/kwin_scripting.mo +share/locale/et/LC_MESSAGES/kwin_scripts.mo +share/locale/eu/LC_MESSAGES/kcm-kwin-scripts.mo +share/locale/eu/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/eu/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/eu/LC_MESSAGES/kcmkwincompositing.mo +share/locale/eu/LC_MESSAGES/kcmkwindecoration.mo +share/locale/eu/LC_MESSAGES/kcmkwinrules.mo +share/locale/eu/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/eu/LC_MESSAGES/kcmkwm.mo +share/locale/eu/LC_MESSAGES/kwin.mo +share/locale/eu/LC_MESSAGES/kwin_clients.mo +share/locale/eu/LC_MESSAGES/kwin_effects.mo +share/locale/fa/LC_MESSAGES/kcm-kwin-scripts.mo +share/locale/fa/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/fa/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/fa/LC_MESSAGES/kcmkwincompositing.mo +share/locale/fa/LC_MESSAGES/kcmkwindecoration.mo +share/locale/fa/LC_MESSAGES/kcmkwinrules.mo +share/locale/fa/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/fa/LC_MESSAGES/kcmkwm.mo +share/locale/fa/LC_MESSAGES/kwin.mo +share/locale/fa/LC_MESSAGES/kwin_clients.mo +share/locale/fa/LC_MESSAGES/kwin_effects.mo +share/locale/fi/LC_MESSAGES/kcm-kwin-scripts.mo +share/locale/fi/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/fi/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/fi/LC_MESSAGES/kcmkwincompositing.mo +share/locale/fi/LC_MESSAGES/kcmkwindecoration.mo +share/locale/fi/LC_MESSAGES/kcmkwinrules.mo +share/locale/fi/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/fi/LC_MESSAGES/kcmkwm.mo +share/locale/fi/LC_MESSAGES/kwin.mo +share/locale/fi/LC_MESSAGES/kwin_clients.mo +share/locale/fi/LC_MESSAGES/kwin_effects.mo +share/locale/fi/LC_MESSAGES/kwin_scripting.mo +share/locale/fi/LC_MESSAGES/kwin_scripts.mo +share/locale/fr/LC_MESSAGES/kcm-kwin-scripts.mo +share/locale/fr/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/fr/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/fr/LC_MESSAGES/kcmkwincompositing.mo +share/locale/fr/LC_MESSAGES/kcmkwindecoration.mo +share/locale/fr/LC_MESSAGES/kcmkwinrules.mo +share/locale/fr/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/fr/LC_MESSAGES/kcmkwm.mo +share/locale/fr/LC_MESSAGES/kwin.mo +share/locale/fr/LC_MESSAGES/kwin_clients.mo +share/locale/fr/LC_MESSAGES/kwin_effects.mo +share/locale/fr/LC_MESSAGES/kwin_scripting.mo +share/locale/fr/LC_MESSAGES/kwin_scripts.mo +share/locale/fy/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/fy/LC_MESSAGES/kcmkwincompositing.mo +share/locale/fy/LC_MESSAGES/kcmkwindecoration.mo +share/locale/fy/LC_MESSAGES/kcmkwinrules.mo +share/locale/fy/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/fy/LC_MESSAGES/kcmkwm.mo +share/locale/fy/LC_MESSAGES/kwin.mo +share/locale/fy/LC_MESSAGES/kwin_clients.mo +share/locale/fy/LC_MESSAGES/kwin_effects.mo +share/locale/ga/LC_MESSAGES/kcm-kwin-scripts.mo +share/locale/ga/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/ga/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/ga/LC_MESSAGES/kcmkwincompositing.mo +share/locale/ga/LC_MESSAGES/kcmkwindecoration.mo +share/locale/ga/LC_MESSAGES/kcmkwinrules.mo +share/locale/ga/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/ga/LC_MESSAGES/kcmkwm.mo +share/locale/ga/LC_MESSAGES/kwin.mo +share/locale/ga/LC_MESSAGES/kwin_clients.mo +share/locale/ga/LC_MESSAGES/kwin_effects.mo +share/locale/gl/LC_MESSAGES/kcm-kwin-scripts.mo +share/locale/gl/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/gl/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/gl/LC_MESSAGES/kcmkwincompositing.mo +share/locale/gl/LC_MESSAGES/kcmkwindecoration.mo +share/locale/gl/LC_MESSAGES/kcmkwinrules.mo +share/locale/gl/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/gl/LC_MESSAGES/kcmkwm.mo +share/locale/gl/LC_MESSAGES/kwin.mo +share/locale/gl/LC_MESSAGES/kwin_clients.mo +share/locale/gl/LC_MESSAGES/kwin_effects.mo +share/locale/gl/LC_MESSAGES/kwin_scripting.mo +share/locale/gl/LC_MESSAGES/kwin_scripts.mo +share/locale/gu/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/gu/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/gu/LC_MESSAGES/kcmkwincompositing.mo +share/locale/gu/LC_MESSAGES/kcmkwindecoration.mo +share/locale/gu/LC_MESSAGES/kcmkwinrules.mo +share/locale/gu/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/gu/LC_MESSAGES/kcmkwm.mo +share/locale/gu/LC_MESSAGES/kwin.mo +share/locale/gu/LC_MESSAGES/kwin_clients.mo +share/locale/gu/LC_MESSAGES/kwin_effects.mo +share/locale/he/LC_MESSAGES/kcm-kwin-scripts.mo +share/locale/he/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/he/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/he/LC_MESSAGES/kcmkwincompositing.mo +share/locale/he/LC_MESSAGES/kcmkwindecoration.mo +share/locale/he/LC_MESSAGES/kcmkwinrules.mo +share/locale/he/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/he/LC_MESSAGES/kcmkwm.mo +share/locale/he/LC_MESSAGES/kwin.mo +share/locale/he/LC_MESSAGES/kwin_clients.mo +share/locale/he/LC_MESSAGES/kwin_effects.mo +share/locale/he/LC_MESSAGES/kwin_scripting.mo +share/locale/he/LC_MESSAGES/kwin_scripts.mo +share/locale/hi/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/hi/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/hi/LC_MESSAGES/kcmkwincompositing.mo +share/locale/hi/LC_MESSAGES/kcmkwindecoration.mo +share/locale/hi/LC_MESSAGES/kcmkwinrules.mo +share/locale/hi/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/hi/LC_MESSAGES/kcmkwm.mo +share/locale/hi/LC_MESSAGES/kwin.mo +share/locale/hi/LC_MESSAGES/kwin_clients.mo +share/locale/hi/LC_MESSAGES/kwin_effects.mo +share/locale/hne/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/hne/LC_MESSAGES/kcmkwincompositing.mo +share/locale/hne/LC_MESSAGES/kcmkwindecoration.mo +share/locale/hne/LC_MESSAGES/kcmkwinrules.mo +share/locale/hne/LC_MESSAGES/kcmkwm.mo +share/locale/hne/LC_MESSAGES/kwin.mo +share/locale/hne/LC_MESSAGES/kwin_clients.mo +share/locale/hne/LC_MESSAGES/kwin_effects.mo +share/locale/hr/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/hr/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/hr/LC_MESSAGES/kcmkwincompositing.mo +share/locale/hr/LC_MESSAGES/kcmkwindecoration.mo +share/locale/hr/LC_MESSAGES/kcmkwinrules.mo +share/locale/hr/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/hr/LC_MESSAGES/kcmkwm.mo +share/locale/hr/LC_MESSAGES/kwin.mo +share/locale/hr/LC_MESSAGES/kwin_clients.mo +share/locale/hr/LC_MESSAGES/kwin_effects.mo +share/locale/hsb/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/hsb/LC_MESSAGES/kcmkwincompositing.mo +share/locale/hsb/LC_MESSAGES/kcmkwindecoration.mo +share/locale/hsb/LC_MESSAGES/kcmkwinrules.mo +share/locale/hsb/LC_MESSAGES/kcmkwm.mo +share/locale/hsb/LC_MESSAGES/kwin.mo +share/locale/hsb/LC_MESSAGES/kwin_clients.mo +share/locale/hsb/LC_MESSAGES/kwin_effects.mo +share/locale/hu/LC_MESSAGES/kcm-kwin-scripts.mo +share/locale/hu/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/hu/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/hu/LC_MESSAGES/kcmkwincompositing.mo +share/locale/hu/LC_MESSAGES/kcmkwindecoration.mo +share/locale/hu/LC_MESSAGES/kcmkwinrules.mo +share/locale/hu/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/hu/LC_MESSAGES/kcmkwm.mo +share/locale/hu/LC_MESSAGES/kwin.mo +share/locale/hu/LC_MESSAGES/kwin_clients.mo +share/locale/hu/LC_MESSAGES/kwin_effects.mo +share/locale/hu/LC_MESSAGES/kwin_scripting.mo +share/locale/hu/LC_MESSAGES/kwin_scripts.mo +share/locale/ia/LC_MESSAGES/kcm-kwin-scripts.mo +share/locale/ia/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/ia/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/ia/LC_MESSAGES/kcmkwincompositing.mo +share/locale/ia/LC_MESSAGES/kcmkwindecoration.mo +share/locale/ia/LC_MESSAGES/kcmkwinrules.mo +share/locale/ia/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/ia/LC_MESSAGES/kcmkwm.mo +share/locale/ia/LC_MESSAGES/kwin.mo +share/locale/ia/LC_MESSAGES/kwin_clients.mo +share/locale/ia/LC_MESSAGES/kwin_effects.mo +share/locale/ia/LC_MESSAGES/kwin_scripting.mo +share/locale/ia/LC_MESSAGES/kwin_scripts.mo +share/locale/id/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/id/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/id/LC_MESSAGES/kcmkwincompositing.mo +share/locale/id/LC_MESSAGES/kcmkwindecoration.mo +share/locale/id/LC_MESSAGES/kcmkwinrules.mo +share/locale/id/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/id/LC_MESSAGES/kcmkwm.mo +share/locale/id/LC_MESSAGES/kwin.mo +share/locale/id/LC_MESSAGES/kwin_clients.mo +share/locale/id/LC_MESSAGES/kwin_effects.mo +share/locale/is/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/is/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/is/LC_MESSAGES/kcmkwincompositing.mo +share/locale/is/LC_MESSAGES/kcmkwindecoration.mo +share/locale/is/LC_MESSAGES/kcmkwinrules.mo +share/locale/is/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/is/LC_MESSAGES/kcmkwm.mo +share/locale/is/LC_MESSAGES/kwin.mo +share/locale/is/LC_MESSAGES/kwin_clients.mo +share/locale/is/LC_MESSAGES/kwin_effects.mo +share/locale/it/LC_MESSAGES/kcm-kwin-scripts.mo +share/locale/it/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/it/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/it/LC_MESSAGES/kcmkwincompositing.mo +share/locale/it/LC_MESSAGES/kcmkwindecoration.mo +share/locale/it/LC_MESSAGES/kcmkwinrules.mo +share/locale/it/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/it/LC_MESSAGES/kcmkwm.mo +share/locale/it/LC_MESSAGES/kwin.mo +share/locale/it/LC_MESSAGES/kwin_clients.mo +share/locale/it/LC_MESSAGES/kwin_effects.mo +share/locale/it/LC_MESSAGES/kwin_scripting.mo +share/locale/it/LC_MESSAGES/kwin_scripts.mo +share/locale/ja/LC_MESSAGES/kcm-kwin-scripts.mo +share/locale/ja/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/ja/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/ja/LC_MESSAGES/kcmkwincompositing.mo +share/locale/ja/LC_MESSAGES/kcmkwindecoration.mo +share/locale/ja/LC_MESSAGES/kcmkwinrules.mo +share/locale/ja/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/ja/LC_MESSAGES/kcmkwm.mo +share/locale/ja/LC_MESSAGES/kwin.mo +share/locale/ja/LC_MESSAGES/kwin_clients.mo +share/locale/ja/LC_MESSAGES/kwin_effects.mo +share/locale/ja/LC_MESSAGES/kwin_scripting.mo +share/locale/ja/LC_MESSAGES/kwin_scripts.mo +share/locale/kk/LC_MESSAGES/kcm-kwin-scripts.mo +share/locale/kk/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/kk/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/kk/LC_MESSAGES/kcmkwincompositing.mo +share/locale/kk/LC_MESSAGES/kcmkwindecoration.mo +share/locale/kk/LC_MESSAGES/kcmkwinrules.mo +share/locale/kk/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/kk/LC_MESSAGES/kcmkwm.mo +share/locale/kk/LC_MESSAGES/kwin.mo +share/locale/kk/LC_MESSAGES/kwin_clients.mo +share/locale/kk/LC_MESSAGES/kwin_effects.mo +share/locale/kk/LC_MESSAGES/kwin_scripting.mo +share/locale/km/LC_MESSAGES/kcm-kwin-scripts.mo +share/locale/km/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/km/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/km/LC_MESSAGES/kcmkwincompositing.mo +share/locale/km/LC_MESSAGES/kcmkwindecoration.mo +share/locale/km/LC_MESSAGES/kcmkwinrules.mo +share/locale/km/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/km/LC_MESSAGES/kcmkwm.mo +share/locale/km/LC_MESSAGES/kwin.mo +share/locale/km/LC_MESSAGES/kwin_clients.mo +share/locale/km/LC_MESSAGES/kwin_effects.mo +share/locale/kn/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/kn/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/kn/LC_MESSAGES/kcmkwincompositing.mo +share/locale/kn/LC_MESSAGES/kcmkwindecoration.mo +share/locale/kn/LC_MESSAGES/kcmkwinrules.mo +share/locale/kn/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/kn/LC_MESSAGES/kcmkwm.mo +share/locale/kn/LC_MESSAGES/kwin.mo +share/locale/kn/LC_MESSAGES/kwin_clients.mo +share/locale/kn/LC_MESSAGES/kwin_effects.mo +share/locale/ko/LC_MESSAGES/kcm-kwin-scripts.mo +share/locale/ko/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/ko/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/ko/LC_MESSAGES/kcmkwincompositing.mo +share/locale/ko/LC_MESSAGES/kcmkwindecoration.mo +share/locale/ko/LC_MESSAGES/kcmkwinrules.mo +share/locale/ko/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/ko/LC_MESSAGES/kcmkwm.mo +share/locale/ko/LC_MESSAGES/kwin.mo +share/locale/ko/LC_MESSAGES/kwin_clients.mo +share/locale/ko/LC_MESSAGES/kwin_effects.mo +share/locale/ko/LC_MESSAGES/kwin_scripting.mo +share/locale/ko/LC_MESSAGES/kwin_scripts.mo +share/locale/ku/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/ku/LC_MESSAGES/kcmkwincompositing.mo +share/locale/ku/LC_MESSAGES/kcmkwindecoration.mo +share/locale/ku/LC_MESSAGES/kcmkwinrules.mo +share/locale/ku/LC_MESSAGES/kcmkwm.mo +share/locale/ku/LC_MESSAGES/kwin.mo +share/locale/ku/LC_MESSAGES/kwin_clients.mo +share/locale/ku/LC_MESSAGES/kwin_effects.mo +share/locale/lt/LC_MESSAGES/kcm-kwin-scripts.mo +share/locale/lt/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/lt/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/lt/LC_MESSAGES/kcmkwincompositing.mo +share/locale/lt/LC_MESSAGES/kcmkwindecoration.mo +share/locale/lt/LC_MESSAGES/kcmkwinrules.mo +share/locale/lt/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/lt/LC_MESSAGES/kcmkwm.mo +share/locale/lt/LC_MESSAGES/kwin.mo +share/locale/lt/LC_MESSAGES/kwin_clients.mo +share/locale/lt/LC_MESSAGES/kwin_effects.mo +share/locale/lt/LC_MESSAGES/kwin_scripting.mo +share/locale/lv/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/lv/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/lv/LC_MESSAGES/kcmkwincompositing.mo +share/locale/lv/LC_MESSAGES/kcmkwindecoration.mo +share/locale/lv/LC_MESSAGES/kcmkwinrules.mo +share/locale/lv/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/lv/LC_MESSAGES/kcmkwm.mo +share/locale/lv/LC_MESSAGES/kwin.mo +share/locale/lv/LC_MESSAGES/kwin_clients.mo +share/locale/lv/LC_MESSAGES/kwin_effects.mo +share/locale/mai/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/mai/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/mai/LC_MESSAGES/kcmkwincompositing.mo +share/locale/mai/LC_MESSAGES/kcmkwindecoration.mo +share/locale/mai/LC_MESSAGES/kcmkwinrules.mo +share/locale/mai/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/mai/LC_MESSAGES/kcmkwm.mo +share/locale/mai/LC_MESSAGES/kwin.mo +share/locale/mai/LC_MESSAGES/kwin_clients.mo +share/locale/mai/LC_MESSAGES/kwin_effects.mo +share/locale/mk/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/mk/LC_MESSAGES/kcmkwincompositing.mo +share/locale/mk/LC_MESSAGES/kcmkwindecoration.mo +share/locale/mk/LC_MESSAGES/kcmkwinrules.mo +share/locale/mk/LC_MESSAGES/kcmkwm.mo +share/locale/mk/LC_MESSAGES/kwin.mo +share/locale/mk/LC_MESSAGES/kwin_clients.mo +share/locale/mk/LC_MESSAGES/kwin_effects.mo +share/locale/ml/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/ml/LC_MESSAGES/kcmkwincompositing.mo +share/locale/ml/LC_MESSAGES/kcmkwindecoration.mo +share/locale/ml/LC_MESSAGES/kcmkwinrules.mo +share/locale/ml/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/ml/LC_MESSAGES/kcmkwm.mo +share/locale/ml/LC_MESSAGES/kwin.mo +share/locale/ml/LC_MESSAGES/kwin_clients.mo +share/locale/ml/LC_MESSAGES/kwin_effects.mo +share/locale/mr/LC_MESSAGES/kcm-kwin-scripts.mo +share/locale/mr/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/mr/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/mr/LC_MESSAGES/kcmkwincompositing.mo +share/locale/mr/LC_MESSAGES/kcmkwindecoration.mo +share/locale/mr/LC_MESSAGES/kcmkwinrules.mo +share/locale/mr/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/mr/LC_MESSAGES/kcmkwm.mo +share/locale/mr/LC_MESSAGES/kwin.mo +share/locale/mr/LC_MESSAGES/kwin_clients.mo +share/locale/mr/LC_MESSAGES/kwin_effects.mo +share/locale/mr/LC_MESSAGES/kwin_scripting.mo +share/locale/ms/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/ms/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/ms/LC_MESSAGES/kcmkwincompositing.mo +share/locale/ms/LC_MESSAGES/kcmkwindecoration.mo +share/locale/ms/LC_MESSAGES/kcmkwinrules.mo +share/locale/ms/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/ms/LC_MESSAGES/kcmkwm.mo +share/locale/ms/LC_MESSAGES/kwin.mo +share/locale/ms/LC_MESSAGES/kwin_clients.mo +share/locale/ms/LC_MESSAGES/kwin_effects.mo +share/locale/nb/LC_MESSAGES/kcm-kwin-scripts.mo +share/locale/nb/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/nb/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/nb/LC_MESSAGES/kcmkwincompositing.mo +share/locale/nb/LC_MESSAGES/kcmkwindecoration.mo +share/locale/nb/LC_MESSAGES/kcmkwinrules.mo +share/locale/nb/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/nb/LC_MESSAGES/kcmkwm.mo +share/locale/nb/LC_MESSAGES/kwin.mo +share/locale/nb/LC_MESSAGES/kwin_clients.mo +share/locale/nb/LC_MESSAGES/kwin_effects.mo +share/locale/nb/LC_MESSAGES/kwin_scripting.mo +share/locale/nds/LC_MESSAGES/kcm-kwin-scripts.mo +share/locale/nds/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/nds/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/nds/LC_MESSAGES/kcmkwincompositing.mo +share/locale/nds/LC_MESSAGES/kcmkwindecoration.mo +share/locale/nds/LC_MESSAGES/kcmkwinrules.mo +share/locale/nds/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/nds/LC_MESSAGES/kcmkwm.mo +share/locale/nds/LC_MESSAGES/kwin.mo +share/locale/nds/LC_MESSAGES/kwin_clients.mo +share/locale/nds/LC_MESSAGES/kwin_effects.mo +share/locale/nds/LC_MESSAGES/kwin_scripting.mo +share/locale/ne/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/ne/LC_MESSAGES/kcmkwincompositing.mo +share/locale/ne/LC_MESSAGES/kcmkwindecoration.mo +share/locale/ne/LC_MESSAGES/kcmkwinrules.mo +share/locale/ne/LC_MESSAGES/kcmkwm.mo +share/locale/ne/LC_MESSAGES/kwin.mo +share/locale/ne/LC_MESSAGES/kwin_clients.mo +share/locale/nl/LC_MESSAGES/kcm-kwin-scripts.mo +share/locale/nl/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/nl/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/nl/LC_MESSAGES/kcmkwincompositing.mo +share/locale/nl/LC_MESSAGES/kcmkwindecoration.mo +share/locale/nl/LC_MESSAGES/kcmkwinrules.mo +share/locale/nl/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/nl/LC_MESSAGES/kcmkwm.mo +share/locale/nl/LC_MESSAGES/kwin.mo +share/locale/nl/LC_MESSAGES/kwin_clients.mo +share/locale/nl/LC_MESSAGES/kwin_effects.mo +share/locale/nl/LC_MESSAGES/kwin_scripting.mo +share/locale/nl/LC_MESSAGES/kwin_scripts.mo +share/locale/nn/LC_MESSAGES/kcm-kwin-scripts.mo +share/locale/nn/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/nn/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/nn/LC_MESSAGES/kcmkwincompositing.mo +share/locale/nn/LC_MESSAGES/kcmkwindecoration.mo +share/locale/nn/LC_MESSAGES/kcmkwinrules.mo +share/locale/nn/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/nn/LC_MESSAGES/kcmkwm.mo +share/locale/nn/LC_MESSAGES/kwin.mo +share/locale/nn/LC_MESSAGES/kwin_clients.mo +share/locale/nn/LC_MESSAGES/kwin_effects.mo +share/locale/nn/LC_MESSAGES/kwin_scripting.mo +share/locale/nn/LC_MESSAGES/kwin_scripts.mo +share/locale/oc/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/oc/LC_MESSAGES/kcmkwincompositing.mo +share/locale/oc/LC_MESSAGES/kcmkwindecoration.mo +share/locale/oc/LC_MESSAGES/kcmkwinrules.mo +share/locale/oc/LC_MESSAGES/kcmkwm.mo +share/locale/oc/LC_MESSAGES/kwin.mo +share/locale/oc/LC_MESSAGES/kwin_clients.mo +share/locale/oc/LC_MESSAGES/kwin_effects.mo +share/locale/or/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/or/LC_MESSAGES/kcmkwincompositing.mo +share/locale/or/LC_MESSAGES/kcmkwindecoration.mo +share/locale/or/LC_MESSAGES/kcmkwinrules.mo +share/locale/or/LC_MESSAGES/kcmkwm.mo +share/locale/or/LC_MESSAGES/kwin.mo +share/locale/or/LC_MESSAGES/kwin_clients.mo +share/locale/or/LC_MESSAGES/kwin_effects.mo +share/locale/pa/LC_MESSAGES/kcm-kwin-scripts.mo +share/locale/pa/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/pa/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/pa/LC_MESSAGES/kcmkwincompositing.mo +share/locale/pa/LC_MESSAGES/kcmkwindecoration.mo +share/locale/pa/LC_MESSAGES/kcmkwinrules.mo +share/locale/pa/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/pa/LC_MESSAGES/kcmkwm.mo +share/locale/pa/LC_MESSAGES/kwin.mo +share/locale/pa/LC_MESSAGES/kwin_clients.mo +share/locale/pa/LC_MESSAGES/kwin_effects.mo +share/locale/pa/LC_MESSAGES/kwin_scripting.mo +share/locale/pl/LC_MESSAGES/kcm-kwin-scripts.mo +share/locale/pl/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/pl/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/pl/LC_MESSAGES/kcmkwincompositing.mo +share/locale/pl/LC_MESSAGES/kcmkwindecoration.mo +share/locale/pl/LC_MESSAGES/kcmkwinrules.mo +share/locale/pl/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/pl/LC_MESSAGES/kcmkwm.mo +share/locale/pl/LC_MESSAGES/kwin.mo +share/locale/pl/LC_MESSAGES/kwin_clients.mo +share/locale/pl/LC_MESSAGES/kwin_effects.mo +share/locale/pl/LC_MESSAGES/kwin_scripting.mo +share/locale/pl/LC_MESSAGES/kwin_scripts.mo +share/locale/pt/LC_MESSAGES/kcm-kwin-scripts.mo +share/locale/pt/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/pt/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/pt/LC_MESSAGES/kcmkwincompositing.mo +share/locale/pt/LC_MESSAGES/kcmkwindecoration.mo +share/locale/pt/LC_MESSAGES/kcmkwinrules.mo +share/locale/pt/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/pt/LC_MESSAGES/kcmkwm.mo +share/locale/pt/LC_MESSAGES/kwin.mo +share/locale/pt/LC_MESSAGES/kwin_clients.mo +share/locale/pt/LC_MESSAGES/kwin_effects.mo +share/locale/pt/LC_MESSAGES/kwin_scripting.mo +share/locale/pt/LC_MESSAGES/kwin_scripts.mo +share/locale/pt_BR/LC_MESSAGES/kcm-kwin-scripts.mo +share/locale/pt_BR/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/pt_BR/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/pt_BR/LC_MESSAGES/kcmkwincompositing.mo +share/locale/pt_BR/LC_MESSAGES/kcmkwindecoration.mo +share/locale/pt_BR/LC_MESSAGES/kcmkwinrules.mo +share/locale/pt_BR/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/pt_BR/LC_MESSAGES/kcmkwm.mo +share/locale/pt_BR/LC_MESSAGES/kwin.mo +share/locale/pt_BR/LC_MESSAGES/kwin_clients.mo +share/locale/pt_BR/LC_MESSAGES/kwin_effects.mo +share/locale/pt_BR/LC_MESSAGES/kwin_scripting.mo +share/locale/pt_BR/LC_MESSAGES/kwin_scripts.mo +share/locale/ro/LC_MESSAGES/kcm-kwin-scripts.mo +share/locale/ro/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/ro/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/ro/LC_MESSAGES/kcmkwincompositing.mo +share/locale/ro/LC_MESSAGES/kcmkwindecoration.mo +share/locale/ro/LC_MESSAGES/kcmkwinrules.mo +share/locale/ro/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/ro/LC_MESSAGES/kcmkwm.mo +share/locale/ro/LC_MESSAGES/kwin.mo +share/locale/ro/LC_MESSAGES/kwin_clients.mo +share/locale/ro/LC_MESSAGES/kwin_effects.mo +share/locale/ro/LC_MESSAGES/kwin_scripting.mo +share/locale/ru/LC_MESSAGES/kcm-kwin-scripts.mo +share/locale/ru/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/ru/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/ru/LC_MESSAGES/kcmkwincompositing.mo +share/locale/ru/LC_MESSAGES/kcmkwindecoration.mo +share/locale/ru/LC_MESSAGES/kcmkwinrules.mo +share/locale/ru/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/ru/LC_MESSAGES/kcmkwm.mo +share/locale/ru/LC_MESSAGES/kwin.mo +share/locale/ru/LC_MESSAGES/kwin_clients.mo +share/locale/ru/LC_MESSAGES/kwin_effects.mo +share/locale/ru/LC_MESSAGES/kwin_scripting.mo +share/locale/ru/LC_MESSAGES/kwin_scripts.mo +share/locale/se/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/se/LC_MESSAGES/kcmkwincompositing.mo +share/locale/se/LC_MESSAGES/kcmkwindecoration.mo +share/locale/se/LC_MESSAGES/kcmkwinrules.mo +share/locale/se/LC_MESSAGES/kcmkwm.mo +share/locale/se/LC_MESSAGES/kwin.mo +share/locale/se/LC_MESSAGES/kwin_clients.mo +share/locale/si/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/si/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/si/LC_MESSAGES/kcmkwincompositing.mo +share/locale/si/LC_MESSAGES/kcmkwindecoration.mo +share/locale/si/LC_MESSAGES/kcmkwinrules.mo +share/locale/si/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/si/LC_MESSAGES/kcmkwm.mo +share/locale/si/LC_MESSAGES/kwin.mo +share/locale/si/LC_MESSAGES/kwin_clients.mo +share/locale/si/LC_MESSAGES/kwin_effects.mo +share/locale/sk/LC_MESSAGES/kcm-kwin-scripts.mo +share/locale/sk/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/sk/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/sk/LC_MESSAGES/kcmkwincompositing.mo +share/locale/sk/LC_MESSAGES/kcmkwindecoration.mo +share/locale/sk/LC_MESSAGES/kcmkwinrules.mo +share/locale/sk/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/sk/LC_MESSAGES/kcmkwm.mo +share/locale/sk/LC_MESSAGES/kwin.mo +share/locale/sk/LC_MESSAGES/kwin_clients.mo +share/locale/sk/LC_MESSAGES/kwin_effects.mo +share/locale/sk/LC_MESSAGES/kwin_scripting.mo +share/locale/sk/LC_MESSAGES/kwin_scripts.mo +share/locale/sl/LC_MESSAGES/kcm-kwin-scripts.mo +share/locale/sl/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/sl/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/sl/LC_MESSAGES/kcmkwincompositing.mo +share/locale/sl/LC_MESSAGES/kcmkwindecoration.mo +share/locale/sl/LC_MESSAGES/kcmkwinrules.mo +share/locale/sl/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/sl/LC_MESSAGES/kcmkwm.mo +share/locale/sl/LC_MESSAGES/kwin.mo +share/locale/sl/LC_MESSAGES/kwin_clients.mo +share/locale/sl/LC_MESSAGES/kwin_effects.mo +share/locale/sl/LC_MESSAGES/kwin_scripting.mo +share/locale/sl/LC_MESSAGES/kwin_scripts.mo +share/locale/sq/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/sq/LC_MESSAGES/kcmkwincompositing.mo +share/locale/sq/LC_MESSAGES/kcmkwindecoration.mo +share/locale/sq/LC_MESSAGES/kcmkwinrules.mo +share/locale/sq/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/sq/LC_MESSAGES/kcmkwm.mo +share/locale/sq/LC_MESSAGES/kwin.mo +share/locale/sq/LC_MESSAGES/kwin_clients.mo +share/locale/sq/LC_MESSAGES/kwin_effects.mo +share/locale/sr/LC_MESSAGES/kcm-kwin-scripts.mo +share/locale/sr/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/sr/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/sr/LC_MESSAGES/kcmkwincompositing.mo +share/locale/sr/LC_MESSAGES/kcmkwindecoration.mo +share/locale/sr/LC_MESSAGES/kcmkwinrules.mo +share/locale/sr/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/sr/LC_MESSAGES/kcmkwm.mo +share/locale/sr/LC_MESSAGES/kwin.mo +share/locale/sr/LC_MESSAGES/kwin_clients.mo +share/locale/sr/LC_MESSAGES/kwin_effects.mo +share/locale/sr/LC_MESSAGES/kwin_scripting.mo +share/locale/sr/LC_MESSAGES/kwin_scripts.mo +share/locale/sr@ijekavian/LC_MESSAGES/kcm-kwin-scripts.mo +share/locale/sr@ijekavian/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/sr@ijekavian/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/sr@ijekavian/LC_MESSAGES/kcmkwincompositing.mo +share/locale/sr@ijekavian/LC_MESSAGES/kcmkwindecoration.mo +share/locale/sr@ijekavian/LC_MESSAGES/kcmkwinrules.mo +share/locale/sr@ijekavian/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/sr@ijekavian/LC_MESSAGES/kcmkwm.mo +share/locale/sr@ijekavian/LC_MESSAGES/kwin.mo +share/locale/sr@ijekavian/LC_MESSAGES/kwin_clients.mo +share/locale/sr@ijekavian/LC_MESSAGES/kwin_effects.mo +share/locale/sr@ijekavian/LC_MESSAGES/kwin_scripting.mo +share/locale/sr@ijekavian/LC_MESSAGES/kwin_scripts.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm-kwin-scripts.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmkwincompositing.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmkwindecoration.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmkwinrules.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmkwm.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kwin.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kwin_clients.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kwin_effects.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kwin_scripting.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kwin_scripts.mo +share/locale/sr@latin/LC_MESSAGES/kcm-kwin-scripts.mo +share/locale/sr@latin/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/sr@latin/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/sr@latin/LC_MESSAGES/kcmkwincompositing.mo +share/locale/sr@latin/LC_MESSAGES/kcmkwindecoration.mo +share/locale/sr@latin/LC_MESSAGES/kcmkwinrules.mo +share/locale/sr@latin/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/sr@latin/LC_MESSAGES/kcmkwm.mo +share/locale/sr@latin/LC_MESSAGES/kwin.mo +share/locale/sr@latin/LC_MESSAGES/kwin_clients.mo +share/locale/sr@latin/LC_MESSAGES/kwin_effects.mo +share/locale/sr@latin/LC_MESSAGES/kwin_scripting.mo +share/locale/sr@latin/LC_MESSAGES/kwin_scripts.mo +share/locale/sv/LC_MESSAGES/kcm-kwin-scripts.mo +share/locale/sv/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/sv/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/sv/LC_MESSAGES/kcmkwincompositing.mo +share/locale/sv/LC_MESSAGES/kcmkwindecoration.mo +share/locale/sv/LC_MESSAGES/kcmkwinrules.mo +share/locale/sv/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/sv/LC_MESSAGES/kcmkwm.mo +share/locale/sv/LC_MESSAGES/kwin.mo +share/locale/sv/LC_MESSAGES/kwin_clients.mo +share/locale/sv/LC_MESSAGES/kwin_effects.mo +share/locale/sv/LC_MESSAGES/kwin_scripting.mo +share/locale/sv/LC_MESSAGES/kwin_scripts.mo +share/locale/ta/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/ta/LC_MESSAGES/kcmkwincompositing.mo +share/locale/ta/LC_MESSAGES/kcmkwindecoration.mo +share/locale/ta/LC_MESSAGES/kcmkwinrules.mo +share/locale/ta/LC_MESSAGES/kcmkwm.mo +share/locale/ta/LC_MESSAGES/kwin.mo +share/locale/ta/LC_MESSAGES/kwin_clients.mo +share/locale/ta/LC_MESSAGES/kwin_effects.mo +share/locale/te/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/te/LC_MESSAGES/kcmkwincompositing.mo +share/locale/te/LC_MESSAGES/kcmkwindecoration.mo +share/locale/te/LC_MESSAGES/kcmkwinrules.mo +share/locale/te/LC_MESSAGES/kcmkwm.mo +share/locale/te/LC_MESSAGES/kwin.mo +share/locale/te/LC_MESSAGES/kwin_clients.mo +share/locale/te/LC_MESSAGES/kwin_effects.mo +share/locale/tg/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/tg/LC_MESSAGES/kcmkwincompositing.mo +share/locale/tg/LC_MESSAGES/kcmkwindecoration.mo +share/locale/tg/LC_MESSAGES/kcmkwinrules.mo +share/locale/tg/LC_MESSAGES/kcmkwm.mo +share/locale/tg/LC_MESSAGES/kwin.mo +share/locale/tg/LC_MESSAGES/kwin_clients.mo +share/locale/tg/LC_MESSAGES/kwin_effects.mo +share/locale/th/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/th/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/th/LC_MESSAGES/kcmkwincompositing.mo +share/locale/th/LC_MESSAGES/kcmkwindecoration.mo +share/locale/th/LC_MESSAGES/kcmkwinrules.mo +share/locale/th/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/th/LC_MESSAGES/kcmkwm.mo +share/locale/th/LC_MESSAGES/kwin.mo +share/locale/th/LC_MESSAGES/kwin_clients.mo +share/locale/th/LC_MESSAGES/kwin_effects.mo +share/locale/tr/LC_MESSAGES/kcm-kwin-scripts.mo +share/locale/tr/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/tr/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/tr/LC_MESSAGES/kcmkwincompositing.mo +share/locale/tr/LC_MESSAGES/kcmkwindecoration.mo +share/locale/tr/LC_MESSAGES/kcmkwinrules.mo +share/locale/tr/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/tr/LC_MESSAGES/kcmkwm.mo +share/locale/tr/LC_MESSAGES/kwin.mo +share/locale/tr/LC_MESSAGES/kwin_clients.mo +share/locale/tr/LC_MESSAGES/kwin_effects.mo +share/locale/tr/LC_MESSAGES/kwin_scripting.mo +share/locale/tr/LC_MESSAGES/kwin_scripts.mo +share/locale/ug/LC_MESSAGES/kcm-kwin-scripts.mo +share/locale/ug/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/ug/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/ug/LC_MESSAGES/kcmkwincompositing.mo +share/locale/ug/LC_MESSAGES/kcmkwindecoration.mo +share/locale/ug/LC_MESSAGES/kcmkwinrules.mo +share/locale/ug/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/ug/LC_MESSAGES/kcmkwm.mo +share/locale/ug/LC_MESSAGES/kwin.mo +share/locale/ug/LC_MESSAGES/kwin_clients.mo +share/locale/ug/LC_MESSAGES/kwin_effects.mo +share/locale/ug/LC_MESSAGES/kwin_scripting.mo +share/locale/uk/LC_MESSAGES/kcm-kwin-scripts.mo +share/locale/uk/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/uk/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/uk/LC_MESSAGES/kcmkwincompositing.mo +share/locale/uk/LC_MESSAGES/kcmkwindecoration.mo +share/locale/uk/LC_MESSAGES/kcmkwinrules.mo +share/locale/uk/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/uk/LC_MESSAGES/kcmkwm.mo +share/locale/uk/LC_MESSAGES/kwin.mo +share/locale/uk/LC_MESSAGES/kwin_clients.mo +share/locale/uk/LC_MESSAGES/kwin_effects.mo +share/locale/uk/LC_MESSAGES/kwin_scripting.mo +share/locale/uk/LC_MESSAGES/kwin_scripts.mo +share/locale/uz/LC_MESSAGES/kcmkwindecoration.mo +share/locale/uz/LC_MESSAGES/kcmkwinrules.mo +share/locale/uz/LC_MESSAGES/kcmkwm.mo +share/locale/uz/LC_MESSAGES/kwin.mo +share/locale/uz/LC_MESSAGES/kwin_clients.mo +share/locale/uz@cyrillic/LC_MESSAGES/kcmkwindecoration.mo +share/locale/uz@cyrillic/LC_MESSAGES/kcmkwinrules.mo +share/locale/uz@cyrillic/LC_MESSAGES/kcmkwm.mo +share/locale/uz@cyrillic/LC_MESSAGES/kwin.mo +share/locale/uz@cyrillic/LC_MESSAGES/kwin_clients.mo +share/locale/vi/LC_MESSAGES/kcmkwindecoration.mo +share/locale/vi/LC_MESSAGES/kcmkwinrules.mo +share/locale/vi/LC_MESSAGES/kcmkwm.mo +share/locale/vi/LC_MESSAGES/kwin.mo +share/locale/vi/LC_MESSAGES/kwin_clients.mo +share/locale/wa/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/wa/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/wa/LC_MESSAGES/kcmkwincompositing.mo +share/locale/wa/LC_MESSAGES/kcmkwindecoration.mo +share/locale/wa/LC_MESSAGES/kcmkwinrules.mo +share/locale/wa/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/wa/LC_MESSAGES/kcmkwm.mo +share/locale/wa/LC_MESSAGES/kwin.mo +share/locale/wa/LC_MESSAGES/kwin_clients.mo +share/locale/wa/LC_MESSAGES/kwin_effects.mo +share/locale/xh/LC_MESSAGES/kcmkwindecoration.mo +share/locale/xh/LC_MESSAGES/kcmkwm.mo +share/locale/xh/LC_MESSAGES/kwin.mo +share/locale/zh_CN/LC_MESSAGES/kcm-kwin-scripts.mo +share/locale/zh_CN/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/zh_CN/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/zh_CN/LC_MESSAGES/kcmkwincompositing.mo +share/locale/zh_CN/LC_MESSAGES/kcmkwindecoration.mo +share/locale/zh_CN/LC_MESSAGES/kcmkwinrules.mo +share/locale/zh_CN/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/zh_CN/LC_MESSAGES/kcmkwm.mo +share/locale/zh_CN/LC_MESSAGES/kwin.mo +share/locale/zh_CN/LC_MESSAGES/kwin_clients.mo +share/locale/zh_CN/LC_MESSAGES/kwin_effects.mo +share/locale/zh_CN/LC_MESSAGES/kwin_scripting.mo +share/locale/zh_CN/LC_MESSAGES/kwin_scripts.mo +share/locale/zh_TW/LC_MESSAGES/kcm-kwin-scripts.mo +share/locale/zh_TW/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/zh_TW/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/zh_TW/LC_MESSAGES/kcmkwincompositing.mo +share/locale/zh_TW/LC_MESSAGES/kcmkwindecoration.mo +share/locale/zh_TW/LC_MESSAGES/kcmkwinrules.mo +share/locale/zh_TW/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/zh_TW/LC_MESSAGES/kcmkwm.mo +share/locale/zh_TW/LC_MESSAGES/kwin.mo +share/locale/zh_TW/LC_MESSAGES/kwin_clients.mo +share/locale/zh_TW/LC_MESSAGES/kwin_effects.mo +share/locale/zh_TW/LC_MESSAGES/kwin_scripting.mo +share/locale/zh_TW/LC_MESSAGES/kwin_scripts.mo Property changes on: head/x11-wm/plasma5-kwin/pkg-plist ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property