diff --git a/Mk/Uses/kde.mk b/Mk/Uses/kde.mk index 4559ed1b6cf1..e778c3ca7807 100644 --- a/Mk/Uses/kde.mk +++ b/Mk/Uses/kde.mk @@ -1,979 +1,1050 @@ # Provides support for KDE and KF5-based ports. # # Feature: kde # Valid ARGS: 5 6 # # 5: Depend on KDE Frameworks 5 components and variables. # 6: Depend on KDE Frameworks 6 components and variables. # # Variables that can be set by a port: # # USE_KDE List of KF[56]/Plasma[56] 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-applications: part of applications release # kde-frameworks: part of frameworks 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. # # option DOCS If the port is part of kde-applications (see CATEGORIES, # above) and has an option defined for DOCS then a dependency # for doctools:build is added. The option itself doesn't # have to do anything -- the dependency is always there. # # KDE_INVENT If the port does not have a regular release, and should # be fetched from KDE Invent (a GitLab instance) it can set # KDE_INVENT to 3 space-separated values: # * a full 40-character commit hash # * a category name inside KDE Invent # * a repository name inside KDE Invent # Default values for category and name are: # * the first item in CATEGORIES that is not "kde"; this # is useful when the FreeBSD ports category and the KDE # category are the same (which happens sometimes) # * PORTNAME, often the FreeBSD port name is the same # as the upstream name and it will not need to be specified. # Sometimes `KDE_INVENT=` will do and often # `KDE_INVENT= ` is enough. # # Setting KDE_INVENT is the equivalent of a handful of USE_GITLAB # and related settings. # # MAINTAINER: kde@FreeBSD.org .if !defined(_INCLUDE_USES_KDE_MK) _INCLUDE_USES_KDE_MK= yes _KDE_SUPPORTED= 5 6 . 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 #' . else _KDE_RELNAME= KDE${_KDE_VERSION} # === VERSIONS OF THE DIFFERENT COMPONENTS ===================================== KDE_PLASMA_VERSION?= ${KDE_PLASMA${_KDE_VERSION}_VERSION} KDE_PLASMA_BRANCH?= ${KDE_PLASMA${_KDE_VERSION}_BRANCH} KDE_FRAMEWORKS_VERSION?= ${KDE_FRAMEWORKS${_KDE_VERSION}_VERSION} KDE_FRAMEWORKS_BRANCH?= ${KDE_FRAMEWORKS${_KDE_VERSION}_BRANCH} KDE_APPLICATIONS_BRANCH?= ${KDE_APPLICATIONS${_KDE_VERSION}_BRANCH} KDE_APPLICATIONS_VERSION?= ${KDE_APPLICATIONS${_KDE_VERSION}_VERSION} KDE_APPLICATIONS_SHLIB_VER?= ${KDE_APPLICATIONS${_KDE_VERSION}_SHLIB_VER} KDE_APPLICATIONS_SHLIB_G_VER?= ${KDE_APPLICATIONS${_KDE_VERSION}_SHLIB_G_VER} # Current KDE desktop. KDE_PLASMA5_VERSION?= 5.27.9 KDE_PLASMA5_BRANCH?= stable +# Next KDE Plasma desktop +KDE_PLASMA6_VERSION?= 5.90.0 +KDE_PLASMA6_BRANCH?= unstable + # Current KDE frameworks. KDE_FRAMEWORKS5_VERSION?= 5.112.0 KDE_FRAMEWORKS5_BRANCH?= stable # Next KDE Frameworks (Qt6 based) KDE_FRAMEWORKS6_VERSION?= 5.246.0 KDE_FRAMEWORKS6_BRANCH?= unstable # Current KDE applications. KDE_APPLICATIONS5_VERSION?= 23.08.3 KDE_APPLICATIONS5_SHLIB_VER?= 5.24.3 # G as in KDE Gear, and as in "don't make the variable name longer than required" KDE_APPLICATIONS5_SHLIB_G_VER?= 23.8.3 KDE_APPLICATIONS5_BRANCH?= stable +# Next KDE applications. +KDE_APPLICATIONS6_VERSION?= 24.01.80 +KDE_APPLICATIONS6_SHLIB_VER?= 5.24.3 +# G as in KDE Gear, and as in "don't make the variable name longer than required" +KDE_APPLICATIONS6_SHLIB_G_VER?= 24.01.80 +KDE_APPLICATIONS6_BRANCH?= unstable + # Extended KDE universe applications. CALLIGRA_VERSION?= 2.9.11 CALLIGRA_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-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 # Doing source-selection if the sources are on KDE invent . if defined(KDE_INVENT) _invent_hash= ${KDE_INVENT:[1]} _invent_category= ${KDE_INVENT:[2]} _invent_name= ${KDE_INVENT:[3]} # Fill in default values if bits are missing . if empty(_invent_category) _invent_category= ${CATEGORIES:Nkde:[1]} . endif . if empty(_invent_name) _invent_name= ${PORTNAME} . endif # If valid, use it for GitLab . if empty(_invent_hash) || empty(_invent_category) || empty(_invent_name) IGNORE?= invalid KDE_INVENT value '${KDE_INVENT}' . else USE_GITLAB= yes GL_SITE= https://invent.kde.org GL_ACCOUNT= ${_invent_category} GL_PROJECT= ${_invent_name} GL_TAGNAME= ${_invent_hash} . endif . endif . 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-applications} PORTVERSION?= ${KDE_APPLICATIONS_VERSION} MASTER_SITES?= KDE/${KDE_APPLICATIONS_BRANCH}/release-service/${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. This is only done if the port # defines OPTION DOCS -- the _KDE_OPTIONS here is to # avoid make errors when there are no options defined at all. _KDE_OPTIONS= bogus ${OPTIONS_DEFINE} . if ${_KDE_OPTIONS:MDOCS} DOCSDIR= ${PREFIX}/share/doc PORTDOCS?= HTML/* USE_KDE+= doctools:build . endif . if ${_KDE_VERSION:M6} PKGNAMESUFFIX?= -devel . endif # Further pass along a SHLIB_VER PLIST_SUB PLIST_SUB+= KDE_APPLICATIONS_SHLIB_VER=${KDE_APPLICATIONS_SHLIB_VER} \ KDE_APPLICATIONS_VERSION_SHORT="${KDE_APPLICATIONS_VERSION:R:R}" DIST_SUBDIR?= KDE/release-service/${KDE_APPLICATIONS_VERSION} . elif ${_KDE_CATEGORY:Mkde-plasma} PORTVERSION?= ${KDE_PLASMA_VERSION} PKGNAMEPREFIX?= plasma${_KDE_VERSION}- MASTER_SITES?= KDE/${KDE_PLASMA_BRANCH}/plasma/${KDE_PLASMA_VERSION} DIST_SUBDIR?= KDE/plasma/${KDE_PLASMA_VERSION} +. if ${_KDE_VERSION:M6} +DESCR= ${.CURDIR:H:H}/x11/plasma6-plasma/pkg-descr +. endif . elif ${_KDE_CATEGORY:Mkde-frameworks} PORTVERSION?= ${KDE_FRAMEWORKS_VERSION} PKGNAMEPREFIX?= kf${_KDE_VERSION}- WWW?= https://api.kde.org/frameworks/${PORTNAME}/html/index.html # 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 kdesignerplugin kdewebkit khtml kmediaplayer kross kxmlrpcclient . if ${_KDE_VERSION:M5} . 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 . else MASTER_SITES?= KDE/${KDE_FRAMEWORKS_BRANCH}/frameworks/${KDE_FRAMEWORKS_VERSION} . endif DIST_SUBDIR?= KDE/frameworks/${KDE_FRAMEWORKS_VERSION} DESCR= ${.CURDIR:H:H}/x11/kf6-frameworks/pkg-descr . else IGNORE?= unknown CATEGORY value '${_KDE_CATEGORY}' #' . endif . endif #defined(_KDE_CATEGORY) # ============================================================================== # === SET UP LOCALE ENVIRONMENT ================================================= USE_LOCALE?= en_US.UTF-8 # === SET UP CMAKE ENVIRONMENT ================================================= # Help cmake to find files when testing ports with non-default PREFIX. CMAKE_ARGS+= -DCMAKE_PREFIX_PATH="${LOCALBASE}" # We set KDE_INSTALL_USE_QT_SYS_PATHS to install mkspecs files, plugins and # imports to the Qt 5 install directory. CMAKE_ARGS+= -DCMAKE_MODULE_PATH="${LOCALBASE};${KDE_PREFIX}" \ -DCMAKE_INSTALL_PREFIX="${KDE_PREFIX}" \ -DKDE_INSTALL_USE_QT_SYS_PATHS:BOOL=true # Set man-page installation prefix. CMAKE_ARGS+= -DKDE_INSTALL_MANDIR:PATH="${KDE_PREFIX}/man" \ -DMAN_INSTALL_DIR:PATH="${KDE_PREFIX}/man" # Disable autotests unless TEST_TARGET is defined. . if !defined(TEST_TARGET) CMAKE_ARGS+= -DBUILD_TESTING:BOOL=false . endif # ============================================================================== # === 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}" \ KDE_FRAMEWORKS_VERSION="${KDE_FRAMEWORKS_VERSION}" \ KDE_PLASMA_VERSION="${KDE_PLASMA_VERSION}" # ============================================================================== _USE_KDE_BOTH= akonadi attica libkcddb libkcompactdisc libkdcraw libkdegames \ libkeduvocdocument libkexiv2 libkipi libksane okular \ baloo baloo-widgets kate marble # 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 kquickcharts oxygen-icons5 plotting prison \ qqc2-desktop-style 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 syndication unitconversion _USE_FRAMEWORKS_TIER3= activities activities-stats baloo5 bookmarks configwidgets \ designerplugin emoticons globalaccel guiaddons \ iconthemes init kcmutils kdav kdeclarative \ kded kdesu kdewebkit kio kpipewire newstuff notifyconfig parts \ people plasma-framework purpose runner service texteditor \ textwidgets wallet xmlgui xmlrpcclient _USE_FRAMEWORKS_TIER4= frameworkintegration calendarcore contacts # 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_FRAMEWORKS5_ALL= ecm \ ${_USE_FRAMEWORKS_TIER1} \ ${_USE_FRAMEWORKS_TIER2} \ ${_USE_FRAMEWORKS_TIER3} \ ${_USE_FRAMEWORKS_TIER4} \ ${_USE_FRAMEWORKS_PORTING} \ ${_USE_FRAMEWORKS_EXTRA} \ kpublictransport kosm \ plasma-wayland-protocols # TODO: fix _USE_FRAMEWORKS6_ALL= ecm colorscheme \ svg \ statusnotifieritem \ plasma-wayland-protocols \ + userfeedback \ ${_USE_FRAMEWORKS_TIER1:Noxygen-icons5:Nwayland} \ ${_USE_FRAMEWORKS_TIER2} \ ${_USE_FRAMEWORKS_TIER3:Nkdewebkit:Nemoticons:Ndesignerplugin:Nactivities:Nactivities-stats:Ninit:Nplasma-framework:Nxmlrpcclient:Nkpipewire} \ ${_USE_FRAMEWORKS_TIER4} \ ${_USE_FRAMEWORKS_EXTRA} _USE_FRAMEWORKS_ALL= ${_USE_FRAMEWORKS${_KDE_VERSION}_ALL} # List of components of the KDE Plasma distribution. _USE_PLASMA_ALL= activitymanagerd breeze breeze-gtk \ decoration discover drkonqi hotkeys \ infocenter kde-cli-tools kde-gtk-config \ kdeplasma-addons kgamma5 kmenuedit kscreen \ kscreenlocker ksshaskpass ksysguard ksystemstats kwallet-pam \ kwayland-integration kwin kwrited layer-shell-qt libkscreen \ libksysguard milou oxygen oxygen-sounds plasma-browser-integration \ plasma-desktop plasma-disks plasma-integration plasma-pa \ plasma-sdk plasma-workspace plasma-workspace-wallpapers \ - polkit-kde-agent-1 powerdevil systemsettings xdg-desktop-portal-kde + polkit-kde-agent-1 powerdevil systemsettings xdg-desktop-portal-kde \ + kirigami-addons # List of components of the KDE PIM distribution (part of applications). _USE_KDEPIM5_ALL= akonadicontacts akonadiimportwizard akonadimime akonadinotes \ akonadicalendar akonadisearch \ calendarcore calendarsupport calendarutils \ contacts eventviews gapi grantleetheme \ gravatar identitymanagement imap \ incidenceeditor kdepim-addons \ kdepim-runtime5 kitinerary kontactinterface kpkpass \ ksmtp ldap libkdepim libkleo libksieve mailcommon \ mailimporter mailtransport mbox messagelib \ mime pimcommon pimtextedit tnef \ kalarm kontact kmail mbox-importer \ akonadiconsole akregator grantlee-editor kaddressbook \ kalarm kmail-account-wizard kmail knotes kontact \ korganizer pim-data-exporter ktextaddons _USE_KDE5_ALL= ${_USE_FRAMEWORKS_ALL} \ ${_USE_PLASMA_ALL} \ ${_USE_KDEPIM5_ALL} \ ${_USE_KDE_BOTH} -_USE_KDE6_ALL= ${_USE_FRAMEWORKS_ALL} +# TODO: fix +_USE_KDE6_ALL= ecm colorscheme \ + svg \ + plasma-wayland-protocols \ + mediaplayer \ + ${_USE_FRAMEWORKS_ALL} \ + ${_USE_PLASMA_ALL} \ + plasma5support activities activities-stats kpipewire wayland globalacceld libplasma # ====================== frameworks components ================================= -kde-activities_PORT= x11/kf${_KDE_VERSION}-kactivities -kde-activities_LIB= libKF${_KDE_VERSION}Activities.so - -kde-activities-stats_PORT= x11/kf${_KDE_VERSION}-kactivities-stats -kde-activities-stats_LIB= libKF${_KDE_VERSION}ActivitiesStats.so +kde-activities_PORT5= x11/kf${_KDE_VERSION}-kactivities +kde-activities_PORT6= x11/plasma${_KDE_VERSION}-plasma-activities +kde-activities_PORT= ${kde-activities_PORT${_KDE_VERSION}} +kde-activities_LIB5= libKF${_KDE_VERSION}Activities.so +kde-activities_LIB6= libPlasmaActivities.so +kde-activities_LIB= ${kde-activities_LIB${_KDE_VERSION}} + +kde-activities-stats_PORT5= x11/kf${_KDE_VERSION}-kactivities-stats +kde-activities-stats_PORT6= x11/plasma${_KDE_VERSION}-plasma-activities-stats +kde-activities-stats_PORT= ${kde-activities-stats_PORT${_KDE_VERSION}} +kde-activities-stats_LIB5= libKF${_KDE_VERSION}ActivitiesStats.so +kde-activities-stats_LIB6= libPlasmaActivitiesStats.so +kde-activities-stats_LIB= ${kde-activities-stats_LIB${_KDE_VERSION}} kde-apidox_PORT= devel/kf${_KDE_VERSION}-kapidox kde-apidox_PATH= ${KDE_PREFIX}/bin/kapidox-generate kde-apidox_TYPE= run kde-archive_PORT= archivers/kf${_KDE_VERSION}-karchive kde-archive_LIB= libKF${_KDE_VERSION}Archive.so kde-attica5_PORT= x11-toolkits/kf${_KDE_VERSION}-attica kde-attica5_LIB= libKF${_KDE_VERSION}Attica.so kde-auth_PORT= devel/kf${_KDE_VERSION}-kauth kde-auth_LIB= libKF${_KDE_VERSION}AuthCore.so kde-baloo5_PORT= sysutils/kf${_KDE_VERSION}-baloo kde-baloo5_LIB= libKF${_KDE_VERSION}Baloo.so kde-bookmarks_PORT= devel/kf${_KDE_VERSION}-kbookmarks kde-bookmarks_LIB= libKF${_KDE_VERSION}Bookmarks.so kde-breeze-icons_PORT= x11-themes/kf${_KDE_VERSION}-breeze-icons kde-breeze-icons_PATH= ${KDE_PREFIX}/share/icons/breeze/index.theme kde-breeze-icons_TYPE= run kde-codecs_PORT= textproc/kf${_KDE_VERSION}-kcodecs kde-codecs_LIB= libKF${_KDE_VERSION}Codecs.so kde-completion_PORT= x11-toolkits/kf${_KDE_VERSION}-kcompletion kde-completion_LIB= libKF${_KDE_VERSION}Completion.so kde-config_PORT= devel/kf${_KDE_VERSION}-kconfig kde-config_LIB= libKF${_KDE_VERSION}ConfigCore.so kde-configwidgets_PORT= x11-toolkits/kf${_KDE_VERSION}-kconfigwidgets kde-configwidgets_LIB= libKF${_KDE_VERSION}ConfigWidgets.so kde-coreaddons_PORT= devel/kf${_KDE_VERSION}-kcoreaddons kde-coreaddons_LIB= libKF${_KDE_VERSION}CoreAddons.so kde-crash_PORT= devel/kf${_KDE_VERSION}-kcrash kde-crash_LIB= libKF${_KDE_VERSION}Crash.so kde-dbusaddons_PORT= devel/kf${_KDE_VERSION}-kdbusaddons kde-dbusaddons_LIB= libKF${_KDE_VERSION}DBusAddons.so kde-designerplugin_PORT= x11-toolkits/kf${_KDE_VERSION}-kdesignerplugin kde-designerplugin_PATH= ${KDE_PREFIX}/bin/kgendesignerplugin kde-designerplugin_TYPE= run kde-dnssd_PORT= dns/kf${_KDE_VERSION}-kdnssd kde-dnssd_LIB= libKF${_KDE_VERSION}DNSSD.so kde-doctools_PORT= devel/kf${_KDE_VERSION}-kdoctools kde-doctools_PATH= ${KDE_PREFIX}/bin/meinproc${_KDE_VERSION} kde-ecm_PORT= devel/kf${_KDE_VERSION}-extra-cmake-modules kde-ecm_PATH= ${LOCALBASE}/share/ECM/cmake/ECMConfig.cmake kde-emoticons_PORT= x11-themes/kf${_KDE_VERSION}-kemoticons kde-emoticons_LIB= libKF${_KDE_VERSION}Emoticons.so kde-filemetadata_PORT= devel/kf${_KDE_VERSION}-kfilemetadata kde-filemetadata_LIB= libKF${_KDE_VERSION}FileMetaData.so kde-frameworkintegration_PORT= x11/kf${_KDE_VERSION}-frameworkintegration kde-frameworkintegration_LIB= libKF${_KDE_VERSION}Style.so kde-globalaccel_PORT= x11/kf${_KDE_VERSION}-kglobalaccel kde-globalaccel_LIB= libKF${_KDE_VERSION}GlobalAccel.so kde-guiaddons_PORT= x11-toolkits/kf${_KDE_VERSION}-kguiaddons kde-guiaddons_LIB= libKF${_KDE_VERSION}GuiAddons.so kde-holidays_PORT= net/kf${_KDE_VERSION}-kholidays kde-holidays_LIB= libKF${_KDE_VERSION}Holidays.so kde-i18n_PORT= devel/kf${_KDE_VERSION}-ki18n kde-i18n_LIB= libKF${_KDE_VERSION}I18n.so kde-iconthemes_PORT= x11-themes/kf${_KDE_VERSION}-kiconthemes kde-iconthemes_LIB= libKF${_KDE_VERSION}IconThemes.so kde-idletime_PORT= devel/kf${_KDE_VERSION}-kidletime kde-idletime_LIB= libKF${_KDE_VERSION}IdleTime.so kde-init_PORT= x11/kf${_KDE_VERSION}-kinit kde-init_PATH= ${KDE_PREFIX}/bin/kdeinit5 kde-itemmodels_PORT= devel/kf${_KDE_VERSION}-kitemmodels kde-itemmodels_LIB= libKF${_KDE_VERSION}ItemModels.so kde-itemviews_PORT= x11-toolkits/kf${_KDE_VERSION}-kitemviews kde-itemviews_LIB= libKF${_KDE_VERSION}ItemViews.so kde-jobwidgets_PORT= x11-toolkits/kf${_KDE_VERSION}-kjobwidgets kde-jobwidgets_LIB= libKF${_KDE_VERSION}JobWidgets.so kde-js_PORT= www/kf${_KDE_VERSION}-kjs kde-js_LIB= libKF${_KDE_VERSION}JS.so kde-jsembed_PORT= www/kf${_KDE_VERSION}-kjsembed kde-jsembed_LIB= libKF${_KDE_VERSION}JsEmbed.so kde-kcmutils_PORT= devel/kf${_KDE_VERSION}-kcmutils kde-kcmutils_LIB= libKF${_KDE_VERSION}KCMUtils.so kde-kdeclarative_PORT= devel/kf${_KDE_VERSION}-kdeclarative kde-kdeclarative_LIB5= libKF${_KDE_VERSION}Declarative.so kde-kdeclarative_LIB6= libKF${_KDE_VERSION}CalendarEvents.so kde-kdeclarative_LIB= ${kde-kdeclarative_LIB${_KDE_VERSION}} kde-kded_PORT= x11/kf${_KDE_VERSION}-kded kde-kded_PATH= ${KDE_PREFIX}/bin/kded${_KDE_VERSION} kde-kdelibs4support_PORT= x11/kf${_KDE_VERSION}-kdelibs4support kde-kdelibs4support_LIB= libKF${_KDE_VERSION}KDELibs4Support.so kde-kdesu_PORT= security/kf${_KDE_VERSION}-kdesu kde-kdesu_LIB= libKF${_KDE_VERSION}Su.so kde-kdewebkit_PORT= www/kf${_KDE_VERSION}-kdewebkit kde-kdewebkit_LIB= libKF${_KDE_VERSION}WebKit.so kde-khtml_PORT= www/kf${_KDE_VERSION}-khtml kde-khtml_LIB= libKF${_KDE_VERSION}KHtml.so kde-kimageformats_PORT= graphics/kf${_KDE_VERSION}-kimageformats kde-kimageformats_PATH= ${QT_PLUGINDIR}/imageformats/kimg_xcf.so kde-kimageformats_TYPE= run kde-kio_PORT= devel/kf${_KDE_VERSION}-kio kde-kio_LIB= libKF${_KDE_VERSION}KIOCore.so kde-kirigami2_PORT5= x11-toolkits/kf${_KDE_VERSION}-kirigami2 kde-kirigami2_PORT6= x11-toolkits/kf${_KDE_VERSION}-kirigami kde-kirigami2_PATH5= ${QT_QMLDIR}/org/kde/kirigami.2/libKirigamiPlugin.so kde-kirigami2_PATH6= ${QT_QMLDIR}/org/kde/kirigami/libKirigamiplugin.so kde-kirigami2_PORT= ${kde-kirigami2_PORT${_KDE_VERSION}} kde-kirigami2_PATH= ${kde-kirigami2_PATH${_KDE_VERSION}} kde-kquickcharts_PORT= graphics/kf${_KDE_VERSION}-kquickcharts kde-kquickcharts_PATH5= ${QT_QMLDIR}/org/kde/quickcharts/libQuickCharts.so kde-kquickcharts_PATH6= ${QT_QMLDIR}/org/kde/quickcharts/libQuickChartsplugin.so kde-kquickcharts_PATH= ${kde-kquickcharts_PATH${_KDE_VERSION}} kde-kross_PORT= lang/kf${_KDE_VERSION}-kross kde-kross_LIB= libKF${_KDE_VERSION}KrossCore.so kde-layer-shell-qt_PORT= x11/plasma${_KDE_VERSION}-layer-shell-qt kde-layer-shell-qt_LIB= libLayerShellQtInterface.so kde-mediaplayer_PORT= multimedia/kf${_KDE_VERSION}-kmediaplayer kde-mediaplayer_LIB= libKF${_KDE_VERSION}MediaPlayer.so.5 kde-newstuff_PORT= devel/kf${_KDE_VERSION}-knewstuff kde-newstuff_LIB= libKF${_KDE_VERSION}NewStuffCore.so kde-notifications_PORT= devel/kf${_KDE_VERSION}-knotifications kde-notifications_LIB= libKF${_KDE_VERSION}Notifications.so kde-notifyconfig_PORT= devel/kf${_KDE_VERSION}-knotifyconfig kde-notifyconfig_LIB= libKF${_KDE_VERSION}NotifyConfig.so kde-oxygen-icons5_PORT= x11-themes/kf${_KDE_VERSION}-oxygen-icons5 kde-oxygen-icons5_PATH= ${KDE_PREFIX}/share/icons/oxygen/index.theme kde-oxygen-icons5_TYPE= run kde-oxygen-sounds_PORT= audio/plasma${_KDE_VERSION}-oxygen-sounds kde-oxygen-sounds_PATH= ${KDE_PREFIX}/share/sounds/Oxygen-Sys-Log-In.ogg kde-oxygen-sounds_TYPE= run kde-package_PORT= devel/kf${_KDE_VERSION}-kpackage kde-package_LIB= libKF${_KDE_VERSION}Package.so kde-parts_PORT= devel/kf${_KDE_VERSION}-kparts kde-parts_LIB= libKF${_KDE_VERSION}Parts.so kde-people_PORT= devel/kf${_KDE_VERSION}-kpeople kde-people_LIB= libKF${_KDE_VERSION}People.so kde-plasma-framework_PORT= x11/kf${_KDE_VERSION}-plasma-framework kde-plasma-framework_LIB= libKF${_KDE_VERSION}Plasma.so kde-plasma-wayland-protocols_PORT= x11/plasma-wayland-protocols kde-plasma-wayland-protocols_PATH= ${KDE_PREFIX}/lib/cmake/PlasmaWaylandProtocols/PlasmaWaylandProtocolsConfig.cmake kde-plotting_PORT= graphics/kf${_KDE_VERSION}-kplotting kde-plotting_LIB= libKF${_KDE_VERSION}Plotting.so kde-prison_PORT= graphics/kf${_KDE_VERSION}-prison kde-prison_LIB= libKF${_KDE_VERSION}Prison.so kde-pty_PORT= devel/kf${_KDE_VERSION}-kpty kde-pty_LIB= libKF${_KDE_VERSION}Pty.so kde-purpose_PORT= misc/kf${_KDE_VERSION}-purpose kde-purpose_LIB= libKF${_KDE_VERSION}Purpose.so kde-qqc2-desktop-style_PORT= x11-themes/kf${_KDE_VERSION}-qqc2-desktop-style kde-qqc2-desktop-style_PATH5= ${QT_PLUGINDIR}/kf${_KDE_VERSION}/kirigami/org.kde.desktop.so kde-qqc2-desktop-style_PATH6= ${QT_QMLDIR}/org/kde/desktop/liborg_kde_desktop.so kde-qqc2-desktop-style_PATH= ${kde-qqc2-desktop-style_PATH${_KDE_VERSION}} kde-runner_PORT= x11/kf${_KDE_VERSION}-krunner kde-runner_LIB= libKF${_KDE_VERSION}Runner.so kde-service_PORT= devel/kf${_KDE_VERSION}-kservice kde-service_LIB= libKF${_KDE_VERSION}Service.so kde-solid_PORT= devel/kf${_KDE_VERSION}-solid kde-solid_LIB= libKF${_KDE_VERSION}Solid.so kde-sonnet_PORT= textproc/kf${_KDE_VERSION}-sonnet kde-sonnet_LIB= libKF${_KDE_VERSION}SonnetCore.so kde-syndication_PORT= net/kf${_KDE_VERSION}-syndication kde-syndication_LIB= libKF${_KDE_VERSION}Syndication.so kde-syntaxhighlighting_PORT= textproc/kf${_KDE_VERSION}-syntax-highlighting kde-syntaxhighlighting_LIB= libKF${_KDE_VERSION}SyntaxHighlighting.so kde-texteditor_PORT= devel/kf${_KDE_VERSION}-ktexteditor kde-texteditor_LIB= libKF${_KDE_VERSION}TextEditor.so kde-textwidgets_PORT= x11-toolkits/kf${_KDE_VERSION}-ktextwidgets kde-textwidgets_LIB= libKF${_KDE_VERSION}TextWidgets.so kde-threadweaver_PORT= devel/kf${_KDE_VERSION}-threadweaver kde-threadweaver_LIB= libKF${_KDE_VERSION}ThreadWeaver.so kde-unitconversion_PORT= devel/kf${_KDE_VERSION}-kunitconversion kde-unitconversion_LIB= libKF${_KDE_VERSION}UnitConversion.so kde-wallet_PORT= sysutils/kf${_KDE_VERSION}-kwallet kde-wallet_LIB= libKF${_KDE_VERSION}Wallet.so -kde-wayland_PORT= x11/kf${_KDE_VERSION}-kwayland -kde-wayland_LIB= libKF${_KDE_VERSION}WaylandClient.so +kde-wayland_PORT5= x11/kf${_KDE_VERSION}-kwayland +kde-wayland_PORT6= x11/plasma${_KDE_VERSION}-kwayland +kde-wayland_PORT= ${kde-wayland_PORT${_KDE_VERSION}} +kde-wayland_LIB5= libKF${_KDE_VERSION}WaylandClient.so +kde-wayland_LIB6= libKWaylandClient.so +kde-wayland_LIB= ${kde-wayland_LIB${_KDE_VERSION}} kde-widgetsaddons_PORT= x11-toolkits/kf${_KDE_VERSION}-kwidgetsaddons kde-widgetsaddons_LIB= libKF${_KDE_VERSION}WidgetsAddons.so kde-windowsystem_PORT= x11/kf${_KDE_VERSION}-kwindowsystem kde-windowsystem_LIB= libKF${_KDE_VERSION}WindowSystem.so kde-xmlgui_PORT= x11-toolkits/kf${_KDE_VERSION}-kxmlgui kde-xmlgui_LIB= libKF${_KDE_VERSION}XmlGui.so kde-xmlrpcclient_PORT= net/kf${_KDE_VERSION}-kxmlrpcclient kde-xmlrpcclient_LIB= libKF${_KDE_VERSION}XmlRpcClient.so kde-calendarcore_PORT= net/kf${_KDE_VERSION}-kcalendarcore kde-calendarcore_LIB= libKF${_KDE_VERSION}CalendarCore.so kde-contacts_PORT= net/kf${_KDE_VERSION}-kcontacts kde-contacts_LIB= libKF${_KDE_VERSION}Contacts.so kde-kdav_PORT= net/kf${_KDE_VERSION}-kdav kde-kdav_LIB= libKF${_KDE_VERSION}DAV.so kde-colorscheme_PORT= x11-themes/kf${_KDE_VERSION}-kcolorscheme kde-colorscheme_LIB= libKF${_KDE_VERSION}ColorScheme.so kde-svg_PORT= graphics/kf${_KDE_VERSION}-ksvg kde-svg_LIB= libKF${_KDE_VERSION}Svg.so kde-statusnotifieritem_PORT= deskutils/kf6-kstatusnotifieritem kde-statusnotifieritem_LIB= libKF${_KDE_VERSION}StatusNotifierItem.so + +kde-userfeedback_PORT= sysutils/kf6-kuserfeedback +kde-userfeedback_LIB= libKF${_KDE_VERSION}UserFeedbackCore.so + # ====================== end of frameworks components ========================== # ====================== plasma components ===================================== kde-kpipewire_PORT= audio/plasma${_KDE_VERSION}-kpipewire kde-kpipewire_LIB= libKPipeWire.so kde-activitymanagerd_PORT= x11/plasma${_KDE_VERSION}-kactivitymanagerd kde-activitymanagerd_LIB= libkactivitymanagerd_plugin.so kde-breeze_PORT= x11-themes/plasma${_KDE_VERSION}-breeze kde-breeze_PATH= ${KDE_PREFIX}/share/QtCurve/Breeze.qtcurve kde-breeze-gtk_PORT= x11-themes/plasma${_KDE_VERSION}-breeze-gtk kde-breeze-gtk_PATH= ${KDE_PREFIX}/share/themes/Breeze/gtk-2.0/gtkrc kde-decoration_PORT= x11-wm/plasma${_KDE_VERSION}-kdecoration kde-decoration_LIB= libkdecorations2.so kde-discover_PORT= sysutils/plasma${_KDE_VERSION}-discover kde-discover_PATH= ${KDE_PREFIX}/bin/plasma-discover kde-drkonqi_PORT= sysutils/plasma${_KDE_VERSION}-drkonqi kde-drkonqi_PATH= ${KDE_PREFIX}/lib/libexec/drkonqi kde-hotkeys_PORT= devel/plasma${_KDE_VERSION}-khotkeys kde-hotkeys_LIB= libkhotkeysprivate.so.5 kde-infocenter_PORT= sysutils/plasma${_KDE_VERSION}-kinfocenter kde-infocenter_PATH= ${KDE_PREFIX}/bin/kinfocenter kde-kde-cli-tools_PORT= sysutils/plasma${_KDE_VERSION}-kde-cli-tools -kde-kde-cli-tools_PATH= ${KDE_PREFIX}/bin/kcmshell5 +kde-kde-cli-tools_PATH= ${KDE_PREFIX}/bin/kde-open kde-kde-gtk-config_PORT= x11-themes/plasma${_KDE_VERSION}-kde-gtk-config kde-kde-gtk-config_PATH= ${KDE_PREFIX}/lib/kconf_update_bin/gtk_theme kde-kdeplasma-addons_PORT= x11-toolkits/plasma${_KDE_VERSION}-kdeplasma-addons kde-kdeplasma-addons_LIB= libplasmapotdprovidercore.so -kde-kgamma5_PORT= x11/plasma${_KDE_VERSION}-kgamma5 +kde-kgamma5_PORT5= x11/plasma${_KDE_VERSION}-kgamma5 +kde-kgamma5_PORT6= x11/plasma${_KDE_VERSION}-kgamma +kde-kgamma5_PORT= ${kde-kgamma5_PORT${_KDE_VERSION}} kde-kgamma5_PATH= ${QT_PLUGINDIR}/plasma/kcms/systemsettings/kcm_kgamma.so +kde-kgamma5_PATH6= ${QT_PLUGINDIR}/plasma/kcms/systemsettings_qwidgets/kcm_kgamma.so +kde-kgamma5_PATH= ${kde-kgamma5_PATH${_KDE_VERSION}} kde-kmenuedit_PORT= sysutils/plasma${_KDE_VERSION}-kmenuedit kde-kmenuedit_PATH= ${KDE_PREFIX}/bin/kmenuedit kde-kscreen_PORT= x11/plasma${_KDE_VERSION}-kscreen kde-kscreen_PATH= ${KDE_PREFIX}/bin/kscreen-console kde-kscreenlocker_PORT= security/plasma${_KDE_VERSION}-kscreenlocker kde-kscreenlocker_LIB= libKScreenLocker.so kde-ksshaskpass_PORT= security/plasma${_KDE_VERSION}-ksshaskpass kde-ksshaskpass_PATH= ${KDE_PREFIX}/bin/ksshaskpass kde-ksysguard_PORT= sysutils/plasma${_KDE_VERSION}-ksysguard kde-ksysguard_PATH= ${KDE_PREFIX}/bin/ksysguard kde-ksystemstats_PORT= sysutils/plasma${_KDE_VERSION}-ksystemstats kde-ksystemstats_PATH= ${KDE_PREFIX}/bin/ksystemstats kde-kwallet-pam_PORT= security/plasma${_KDE_VERSION}-kwallet-pam -kde-kwallet-pam_PATH= ${KDE_PREFIX}/lib/pam_kwallet5.so +kde-kwallet-pam_PATH5= ${KDE_PREFIX}/lib/pam_kwallet5.so +kde-kwallet-pam_PATH6= ${KDE_PREFIX}/lib/security/pam_kwallet5.so +kde-kwallet-pam_PATH= ${kde-kwallet-pam_PATH${_KDE_VERSION}} kde-kwayland-integration_PORT= x11/plasma${_KDE_VERSION}-kwayland-integration -kde-kwayland-integration_PATH= ${QT_PLUGINDIR}/kf5/kwindowsystem/KF5WindowSystemKWaylandPlugin.so +kde-kwayland-integration_PATH= ${QT_PLUGINDIR}/kf${_KDE_VERSION}/kwindowsystem/KF5WindowSystemKWaylandPlugin.so kde-kwin_PORT= x11-wm/plasma${_KDE_VERSION}-kwin kde-kwin_PATH= ${KDE_PREFIX}/bin/kwin_x11 kde-kwrited_PORT= devel/plasma${_KDE_VERSION}-kwrited -kde-kwrited_PATH= ${QT_PLUGINDIR}/kf5/kded/kwrited.so +kde-kwrited_PATH= ${QT_PLUGINDIR}/kf${_KDE_VERSION}/kded/kwrited.so kde-libkscreen_PORT= x11/plasma${_KDE_VERSION}-libkscreen kde-libkscreen_LIB= libKF${_KDE_VERSION}Screen.so kde-libksysguard_PORT= sysutils/plasma${_KDE_VERSION}-libksysguard kde-libksysguard_LIB= libksgrd.so kde-milou_PORT= deskutils/plasma${_KDE_VERSION}-milou -kde-milou_LIB= libmilou.so.5 +kde-milou_PATH5= ${KDE_PREFIX}/lib/libmilou.so.5 +kde-milou_PATH6= ${QT_QMLDIR}/org/kde/milou/libmilouqmlplugin.so +kde-milou_PATH= ${kde-milou_PATH${_KDE_VERSION}} kde-oxygen_PORT= x11-themes/plasma${_KDE_VERSION}-oxygen -kde-oxygen_PATH= ${QT_PLUGINDIR}/styles/oxygen.so +kde-oxygen_PATH5= ${QT_PLUGINDIR}/styles/oxygen.so +kde-oxygen_PATH6= ${QT_PLUGINDIR}/kstyle_config/kstyle_oxygen_config.so +kde-oxygen_PATH= ${kde-oxygen_PATH${_KDE_VERSION}} kde-plasma-browser-integration_PORT= www/plasma${_KDE_VERSION}-plasma-browser-integration kde-plasma-browser-integration_PATH= ${KDE_PREFIX}/bin/plasma-browser-integration-host kde-plasma-desktop_PORT= x11/plasma${_KDE_VERSION}-plasma-desktop kde-plasma-desktop_PATH= ${KDE_PREFIX}/bin/kaccess kde-plasma-disks_PORT= sysutils/plasma${_KDE_VERSION}-plasma-disks -kde-plasma-disks_PATH= ${KDE_PREFIX}/lib/libexec/kauth/kded-smart-helper +kde-plasma-disks_PATH5= ${KDE_PREFIX}/lib/libexec/kauth/kded-smart-helper +kde-plasma-disks_PATH6= ${KDE_PREFIX}/lib/libexec/kf6/kauth/kded-smart-helper +kde-plasma-disks_PATH= ${kde-plasma-disks_PATH${_KDE_VERSION}} kde-plasma-integration_PORT= x11/plasma${_KDE_VERSION}-plasma-integration -kde-plasma-integration_PATH= ${QT_PLUGINDIR}/platformthemes/KDEPlasmaPlatformTheme.so +kde-plasma-integration_PATH5= ${QT_PLUGINDIR}/platformthemes/KDEPlasmaPlatformTheme.so +kde-plasma-integration_PATH6= ${QT_PLUGINDIR}/platformthemes/KDEPlasmaPlatformTheme6.so +kde-plasma-integration_PATH= ${kde-plasma-integration_PATH${_KDE_VERSION}} kde-plasma-pa_PORT= audio/plasma${_KDE_VERSION}-plasma-pa kde-plasma-pa_PATH= ${QT_PLUGINDIR}/plasma/kcms/systemsettings/kcm_pulseaudio.so kde-plasma-sdk_PORT= devel/plasma${_KDE_VERSION}-plasma-sdk kde-plasma-sdk_PATH= ${KDE_PREFIX}/bin/plasmoidviewer kde-plasma-workspace_PORT= x11/plasma${_KDE_VERSION}-plasma-workspace -kde-plasma-workspace_LIB= libkworkspace5.so +kde-plasma-workspace_LIB= libkworkspace${_KDE_VERSION}.so kde-plasma-workspace-wallpapers_PORT= x11-themes/plasma${_KDE_VERSION}-plasma-workspace-wallpapers kde-plasma-workspace-wallpapers_PATH= ${KDE_PREFIX}/share/wallpapers/Autumn/contents/images/1280x1024.jpg kde-polkit-kde-agent-1_PORT= sysutils/plasma${_KDE_VERSION}-polkit-kde-agent-1 kde-polkit-kde-agent-1_PATH= ${KDE_PREFIX}/lib/libexec/polkit-kde-authentication-agent-1 kde-powerdevil_PORT= sysutils/plasma${_KDE_VERSION}-powerdevil kde-powerdevil_LIB= libpowerdevilcore.so kde-systemsettings_PORT= sysutils/plasma${_KDE_VERSION}-systemsettings -kde-systemsettings_PATH= ${KDE_PREFIX}/bin/systemsettings5 +kde-systemsettings_PATH5= ${KDE_PREFIX}/bin/systemsettings5 +kde-systemsettings_PATH6= ${KDE_PREFIX}/bin/systemsettings +kde-systemsettings_PATH= ${kde-systemsettings_PATH${_KDE_VERSION}} + + -kde-xdg-desktop-portal-kde_PATH= ${KDE_PREFIX}/lib/libexec/xdg-desktop-portal-kde kde-xdg-desktop-portal-kde_PORT= deskutils/plasma${_KDE_VERSION}-xdg-desktop-portal-kde +kde-xdg-desktop-portal-kde_PATH= ${KDE_PREFIX}/lib/libexec/xdg-desktop-portal-kde + +kde-plasma5support_PORT= devel/plasma${_KDE_VERSION}-plasma5support +kde-plasma5support_LIB= libKF${_KDE_VERSION}Plasma5Support.so + +kde-kirigami-addons_PORT5= x11-toolkits/kirigami-addons +kde-kirigami-addons_PORT6= x11-toolkits/kirigami-addons-devel +kde-kirigami-addons_PORT= ${kde-kirigami-addons_PORT${_KDE_VERSION}} +kde-kirigami-addons_PATH= ${QT_QMLDIR}/org/kde/kirigamiaddons/components/libcomponentsplugin.so + +kde-globalacceld_PORT= x11/plasma${_KDE_VERSION}-kglobalacceld +kde-globalacceld_PATH= ${QT_PLUGINDIR}/org.kde.kglobalacceld.platforms/KGlobalAccelDXcb.so + +kde-libplasma_PORT= x11/plasma${_KDE_VERSION}-libplasma +kde-libplasma_LIB= libPlasma.so # ====================== end of plasma components ============================== # ====================== pim5 components ======================================= kde-akonadicontacts_PORT= net/akonadi-contacts kde-akonadicontacts_LIB= libKPim5AkonadiContact.so kde-akonadiimportwizard_PORT= deskutils/akonadi-import-wizard kde-akonadiimportwizard_LIB= libKPim5ImportWizard.so kde-akonadimime_PORT= net/akonadi-mime kde-akonadimime_LIB= libKPim5AkonadiMime.so kde-akonadinotes_PORT= net/akonadi-notes kde-akonadinotes_LIB= libKPim5AkonadiNotes.so kde-akonadicalendar_PORT= net/akonadi-calendar kde-akonadicalendar_LIB= libKPim5AkonadiCalendar.so kde-akonadisearch_PORT= net/akonadi-search kde-akonadisearch_LIB= libKPim5AkonadiSearchCore.so kde-calendarsupport_PORT= net/calendarsupport kde-calendarsupport_LIB= libKPim5CalendarSupport.so kde-calendarutils_PORT= net/kcalutils kde-calendarutils_LIB= libKPim5CalendarUtils.so kde-eventviews_PORT= net/eventviews kde-eventviews_LIB= libKPim5EventViews.so kde-gapi_PORT= net/libkgapi kde-gapi_LIB= libKPim5GAPIBlogger.so kde-grantleetheme_PORT= deskutils/grantleetheme kde-grantleetheme_LIB= libKPim5GrantleeTheme.so kde-gravatar_PORT= net/libgravatar kde-gravatar_LIB= libKPim5Gravatar.so kde-identitymanagement_PORT= net/kidentitymanagement kde-identitymanagement_LIB= libKPim5IdentityManagement.so kde-imap_PORT= net/kimap kde-imap_LIB= libKPim5IMAP.so kde-incidenceeditor_PORT= net/incidenceeditor kde-incidenceeditor_LIB= libKPim5IncidenceEditor.so kde-kdepim-addons_PORT= deskutils/kdepim-addons kde-kdepim-addons_PATH= ${QT_PLUGINDIR}/pim5/contacteditor/editorpageplugins/cryptopageplugin.so kde-kdepim-runtime5_PORT= deskutils/kdepim-runtime kde-kdepim-runtime5_PATH= ${KDE_PREFIX}/bin/gidmigrator kde-kitinerary_PORT= net/kitinerary kde-kitinerary_LIB= libKPim5Itinerary.so kde-kontactinterface_PORT= net/kontactinterface kde-kontactinterface_LIB= libKPim5KontactInterface.so kde-kpkpass_PORT= security/kpkpass kde-kpkpass_LIB= libKPim5PkPass.so kde-ksmtp_PORT= net/ksmtp kde-ksmtp_LIB= libKPim5SMTP.so kde-ldap_PORT= net/kldap kde-ldap_LIB= libKPim5Ldap.so kde-libkdepim_PORT= deskutils/libkdepim kde-libkdepim_LIB= libKPim5Libkdepim.so kde-libkleo_PORT= security/libkleo kde-libkleo_LIB= libKPim5Libkleo.so kde-libksieve_PORT= net/libksieve kde-libksieve_LIB= libKPim5KSieve.so kde-mailcommon_PORT= net/mailcommon kde-mailcommon_LIB= libKPim5MailCommon.so kde-mailimporter_PORT= net/mailimporter kde-mailimporter_LIB= libKPim5MailImporter.so kde-mailtransport_PORT= net/kmailtransport kde-mailtransport_LIB= libKPim5MailTransport.so kde-mbox_PORT= net/kmbox kde-mbox_LIB= libKPim5Mbox.so kde-messagelib_PORT= net/messagelib kde-messagelib_LIB= libKPim5MessageList.so kde-mime_PORT= net/kmime kde-mime_LIB= libKPim5Mime.so kde-pimcommon_PORT= net/pimcommon kde-pimcommon_LIB= libKPim5PimCommon.so kde-pimtextedit_PORT= net/kpimtextedit kde-pimtextedit_LIB= libKPim5TextEdit.so kde-tnef_PORT= net/ktnef kde-tnef_LIB= libKPim5Tnef.so kde-ktextaddons_PORT= devel/ktextaddons kde-ktextaddons_LIB= libKF${_KDE_VERSION}TextAutoCorrectionCore.so # PIM Applications kde-akonadiconsole_PORT= deskutils/akonadiconsole kde-akonadiconsole_PATH= ${KDE_PREFIX}/bin/akonadiconsole kde-akregator_PORT= deskutils/akregator kde-akregator_PATH= ${KDE_PREFIX}/bin/akregator kde-grantlee-editor_PORT= deskutils/grantlee-editor kde-grantlee-editor_PATH= ${KDE_PREFIX}/bin/contactthemeeditor kde-kaddressbook_PORT= deskutils/kaddressbook kde-kaddressbook_PATH= ${KDE_PREFIX}/bin/kaddressbook kde-kalarm_PORT= deskutils/kalarm kde-kalarm_PATH= ${KDE_PREFIX}/bin/kalarm kde-kmail_PORT= deskutils/kmail kde-kmail_PATH= ${KDE_PREFIX}/bin/kmail kde-kmail-account-wizard_PORT= deskutils/kmail-account-wizard kde-kmail-account-wizard_PATH= ${KDE_PREFIX}/bin/accountwizard kde-knotes_PORT= deskutils/knotes kde-knotex_PATH= ${KDE_PREFIX}/bin/knotes kde-kontact_PORT= deskutils/kontact kde-kontact_PATH= ${KDE_PREFIX}/bin/kontact kde-korganizer_PORT= deskutils/korganizer kde-korganizer_PATH= ${KDE_PREFIX}/bin/korganizer kde-mbox-importer_PORT= deskutils/mbox-importer kde-mbox-importer_PATH= ${KDE_PREFIX}/bin/mboximporter kde-pim-data-exporter_PORT= deskutils/pim-data-exporter kde-pim-data-exporter_PATH= ${KDE_PREFIX}/bin/pimdataexporter # ====================== end of pim5 components ================================ # ====================== multiversion component ================================ kde-akonadi5_PORT= databases/akonadi kde-akonadi5_LIB= libKPim5AkonadiPrivate.so kde-baloo-widgets5_PORT= sysutils/baloo-widgets kde-baloo-widgets5_LIB= libKF${_KDE_VERSION}BalooWidgets.so kde-kate5_PORT= editors/kate kde-kate5_PATH= ${QT_PLUGINDIR}/ktexteditor/katebacktracebrowserplugin.so kde-libkcddb5_PORT= audio/libkcddb kde-libkcddb5_LIB= libKF${_KDE_VERSION}Cddb.so kde-libkcompactdisc5_PORT= audio/libkcompactdisc kde-libkcompactdisc5_LIB= libKF${_KDE_VERSION}CompactDisc.so kde-libkdcraw5_PORT= graphics/libkdcraw kde-libkdcraw5_LIB= libKF${_KDE_VERSION}KDcraw.so kde-libkdegames5_PORT= games/libkdegames kde-libkdegames5_LIB= libKF${_KDE_VERSION}KDEGames.so kde-libkeduvocdocument5_PORT= misc/libkeduvocdocument kde-libkeduvocdocument5_LIB= libKEduVocDocument.so kde-libkexiv25_PORT= graphics/libkexiv2 kde-libkexiv25_LIB= libKF${_KDE_VERSION}KExiv2.so kde-libkipi5_PORT= graphics/libkipi kde-libkipi5_LIB= libKF${_KDE_VERSION}Kipi.so kde-libksane5_PORT= graphics/libksane kde-libksane5_LIB= libKF${_KDE_VERSION}Sane.so kde-marble5_PORT= astro/marble kde-marble5_LIB= libmarblewidget-qt5.so kde-kpublictransport_PORT= devel/kpublictransport kde-kpublictransport_LIB= libKPublicTransport.so kde-kosm_PORT= astro/kosmindoormap kde-kosm_LIB= libKOSM.so kde-okular5_PORT= graphics/okular kde-okular5_LIB= libOkular5Core.so # ====================== end of multiversion components ======================== # ====================== select the proper multiversion component ============== . for comp in ${_USE_KDE_BOTH} kde-${comp}_PORT= ${kde-${comp}${_KDE_VERSION}_PORT} . if defined(kde-${comp}${_KDE_VERSION}_LIB) kde-${comp}_LIB= ${kde-${comp}${_KDE_VERSION}_LIB} . else . if defined(kde-${comp}${_KDE_VERSION}_PATH}) kde-${comp}_PATH= ${kde-${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(kde-${component}_PORT) && (defined(kde-${component}_PATH) || defined(kde-${component}_LIB)) # Check if a dependency type is explicitly requested. . if ${USE_KDE:M${component}\:*} != "" && ${USE_KDE:M${component}} == "" kde-${component}_TYPE= # empty . if ${USE_KDE:M${component}\:build} != "" kde-${component}_TYPE+= build . endif . if ${USE_KDE:M${component}\:run} != "" kde-${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(kde-${component}_TYPE) kde-${component}_TYPE= build run . endif # Set real dependencies. . if defined(kde-${component}_LIB) && ${kde-${component}_TYPE:Mbuild} && ${kde-${component}_TYPE:Mrun} LIB_DEPENDS+= ${kde-${component}_LIB}:${kde-${component}_PORT} . else kde-${component}_PATH?= ${KDE_PREFIX}/lib/${kde-${component}_LIB} kde-${component}_DEPENDS= ${kde-${component}_PATH}:${kde-${component}_PORT} . if ${kde-${component}_TYPE:Mbuild} != "" BUILD_DEPENDS+= ${kde-${component}_DEPENDS} . endif . if ${kde-${component}_TYPE:Mrun} != "" RUN_DEPENDS+= ${kde-${component}_DEPENDS} . endif . endif # ${kde-${component}_LIB} && ${kde-${component}_TYPE:Mbuild} && ${kde-${component}_TYPE:Mrun} . endif # defined(kde-${component}_PORT) && defined(kde-${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 .endif diff --git a/audio/Makefile b/audio/Makefile index e36194e712c1..c4c1548e1085 100644 --- a/audio/Makefile +++ b/audio/Makefile @@ -1,900 +1,904 @@ COMMENT = Audio tools SUBDIR += GxSwitchlessWah-lv2 SUBDIR += HVSC-Update SUBDIR += Maaate SUBDIR += a2jmidid SUBDIR += abcde SUBDIR += abcselect SUBDIR += abgate-lv2 SUBDIR += abx SUBDIR += adplay SUBDIR += aeolus SUBDIR += afsp SUBDIR += aften SUBDIR += alac SUBDIR += alacenc SUBDIR += alienwah SUBDIR += alo-lv2 SUBDIR += alsa-lib SUBDIR += alsa-plugins SUBDIR += alsa-seq-server SUBDIR += alsa-sndio SUBDIR += alsa-utils SUBDIR += alure SUBDIR += amb-plugins SUBDIR += amberol SUBDIR += ampache SUBDIR += amsynth SUBDIR += aqualung SUBDIR += ardour SUBDIR += ario SUBDIR += arss SUBDIR += artyfx-lv2 SUBDIR += asmix SUBDIR += asmixer SUBDIR += asterisk-espeak SUBDIR += asterisk-flite SUBDIR += asunder SUBDIR += atracdenc SUBDIR += atunes SUBDIR += aubio SUBDIR += audacity SUBDIR += audiere SUBDIR += audiocd-kio SUBDIR += audiowmark SUBDIR += aumix SUBDIR += autocd SUBDIR += autotalent SUBDIR += autozen SUBDIR += avldrums-lv2 SUBDIR += aylet SUBDIR += bambootracker SUBDIR += bamp-lv2 SUBDIR += bangr-lv2 SUBDIR += baresip SUBDIR += baudline SUBDIR += bcg729 SUBDIR += bchoppr-lv2 SUBDIR += beep SUBDIR += beets SUBDIR += bespokesynth SUBDIR += bharvestr-lv2 SUBDIR += bjumblr-lv2 SUBDIR += bliss SUBDIR += blop SUBDIR += boca SUBDIR += boops-lv2 SUBDIR += bristol SUBDIR += bschaffl-lv2 SUBDIR += bsequencer-lv2 SUBDIR += bshapr-lv2 SUBDIR += bslizr-lv2 SUBDIR += cadence SUBDIR += calf-lv2 SUBDIR += cam SUBDIR += cantata SUBDIR += caps-lv2 SUBDIR += caps-plugins SUBDIR += cardinal SUBDIR += carla SUBDIR += cava SUBDIR += cd-discid SUBDIR += cddb-bundle SUBDIR += cdparanoia SUBDIR += checkmate SUBDIR += cheesecutter SUBDIR += chordpack SUBDIR += chromaprint SUBDIR += cli-visualizer SUBDIR += clunk SUBDIR += cmt SUBDIR += cmus SUBDIR += codec2 SUBDIR += csound SUBDIR += csoundqt SUBDIR += ctronome SUBDIR += cuetools SUBDIR += cutmp3 SUBDIR += cyanrip SUBDIR += d11amp 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 += denemo SUBDIR += dexed SUBDIR += dgedit SUBDIR += din SUBDIR += discid SUBDIR += dmidiplayer SUBDIR += dpf-plugins-lv2 SUBDIR += dragonfly-reverb-lv2 SUBDIR += drumgizmo SUBDIR += drumkv1-lv2 SUBDIR += drumpiler SUBDIR += drumstick SUBDIR += dsbmixer SUBDIR += dssi SUBDIR += dtmfdial SUBDIR += dumb SUBDIR += dumb-allegro SUBDIR += easytag SUBDIR += eawpats SUBDIR += eawplus SUBDIR += ebumeter SUBDIR += ebur128 SUBDIR += ecasound SUBDIR += elisa SUBDIR += emms SUBDIR += enscribe SUBDIR += epos-devel SUBDIR += eq10q-lv2 SUBDIR += espeak-ng SUBDIR += espressivo-lv2 SUBDIR += essentia SUBDIR += etcd SUBDIR += eteroj-lv2 SUBDIR += etktab SUBDIR += exaile SUBDIR += exhale SUBDIR += ezstream SUBDIR += faac SUBDIR += faad SUBDIR += fabla2-lv2 SUBDIR += fapg SUBDIR += fasttracker2 SUBDIR += fatfrog-lv2 SUBDIR += faudio SUBDIR += faust SUBDIR += faust-lv2 SUBDIR += faustlive 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-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 += flac SUBDIR += flac123 SUBDIR += flacon SUBDIR += flite SUBDIR += fluid-soundfont SUBDIR += fluida-lv2 SUBDIR += fluidplug-lv2 SUBDIR += fluidsynth SUBDIR += fluidsynth-dssi SUBDIR += fmit SUBDIR += fogpad-lv2 SUBDIR += fomp-lv2 SUBDIR += foo-yc20 SUBDIR += fossmixer SUBDIR += freac SUBDIR += freealut SUBDIR += freebsd-13-mixer SUBDIR += freedesktop-sound-theme SUBDIR += freepats SUBDIR += ft2play SUBDIR += funktrackergold SUBDIR += furnace SUBDIR += ganv SUBDIR += gbsplay SUBDIR += geonkick-lv2 SUBDIR += ggwave SUBDIR += giada SUBDIR += gmsynth-lv2 SUBDIR += gmtp SUBDIR += gmusicbrowser SUBDIR += gnaural SUBDIR += gnome-metronome SUBDIR += gnome-music SUBDIR += gnome-podcasts SUBDIR += gnormalize SUBDIR += gnuitar SUBDIR += gnupod SUBDIR += gnuspeechsa SUBDIR += gnustep-cdplayer SUBDIR += goattracker SUBDIR += gogglesmm SUBDIR += gonic SUBDIR += goobox SUBDIR += gqradio SUBDIR += gramofile SUBDIR += grip SUBDIR += gsequencer SUBDIR += gsm SUBDIR += gsound 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-lv2 SUBDIR += gstreamer1-plugins-modplug SUBDIR += gstreamer1-plugins-mpg123 SUBDIR += gstreamer1-plugins-musepack SUBDIR += gstreamer1-plugins-ogg SUBDIR += gstreamer1-plugins-openmpt 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-speex SUBDIR += gstreamer1-plugins-taglib SUBDIR += gstreamer1-plugins-twolame SUBDIR += gstreamer1-plugins-vorbis SUBDIR += gstreamer1-plugins-wavpack SUBDIR += gstreamer1-plugins-webrtcdsp SUBDIR += gtick SUBDIR += gtk-mixer SUBDIR += gtkguitune SUBDIR += gtkpod SUBDIR += gtmixer SUBDIR += gtultra SUBDIR += guidoar SUBDIR += guidolib SUBDIR += guitarix-lv2 SUBDIR += gula-plugins-lv2 SUBDIR += guspat SUBDIR += gvolwheel SUBDIR += gxplugins-lv2 SUBDIR += harp SUBDIR += headsetcontrol SUBDIR += hexter SUBDIR += hpsjam SUBDIR += hts_engine-API SUBDIR += hydrogen SUBDIR += icecast SUBDIR += icecast-kh SUBDIR += icegenerator SUBDIR += ices SUBDIR += id3el SUBDIR += id3lib SUBDIR += id3mtag SUBDIR += id3tool SUBDIR += id3v2 SUBDIR += iir1 SUBDIR += infamous-plugins-lv2 SUBDIR += inscore SUBDIR += intersect-lv2 SUBDIR += invada-studio-plugins-lv2 SUBDIR += ir-lv2 SUBDIR += jack SUBDIR += jack-capture SUBDIR += jack-example-tools SUBDIR += jack-keyboard SUBDIR += jack-smf-utils SUBDIR += jack_ghero SUBDIR += jack_umidi SUBDIR += jacktrip SUBDIR += jalv SUBDIR += jalv-select SUBDIR += jamulus SUBDIR += jconvolver SUBDIR += jid3lib SUBDIR += jmatconvol SUBDIR += jnoisemeter SUBDIR += juk SUBDIR += juke SUBDIR += julius SUBDIR += kapitonov-plugins-pack-lv2 SUBDIR += kid3 SUBDIR += klystrack SUBDIR += kmix SUBDIR += komposter SUBDIR += kwave SUBDIR += ladspa SUBDIR += lame SUBDIR += lash SUBDIR += lenticular-lv2 SUBDIR += lewton SUBDIR += liba52 SUBDIR += libadplug SUBDIR += libaiff SUBDIR += libamrnb SUBDIR += libamrwb SUBDIR += libao SUBDIR += libaudec SUBDIR += libaudiofile SUBDIR += libbpm SUBDIR += libbs2b SUBDIR += libcanberra SUBDIR += libcanberra-gtk2 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 += libid3tag SUBDIR += libinstpatch SUBDIR += libkcddb SUBDIR += libkcompactdisc SUBDIR += libkeyfinder 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 += libmusicbrainz5 SUBDIR += libmusicxml SUBDIR += libmysofa SUBDIR += libnoise SUBDIR += libogg SUBDIR += liboggz SUBDIR += libopenmpt SUBDIR += libopenshot-audio SUBDIR += libopenspc SUBDIR += libopusenc SUBDIR += libremidi SUBDIR += libsamplerate SUBDIR += libshairport SUBDIR += libshout SUBDIR += libsidplay SUBDIR += libsidplay2 SUBDIR += libsidplayfp SUBDIR += libsmf SUBDIR += libsndfile SUBDIR += libsonic SUBDIR += libsoxr SUBDIR += libspecbleach SUBDIR += libvorbis SUBDIR += libxmp SUBDIR += lilv SUBDIR += lingot SUBDIR += linux-c7-alsa-lib SUBDIR += linux-c7-alsa-lib-devel 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-gsm 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-laudio SUBDIR += linuxsampler SUBDIR += linuxwave SUBDIR += liquidsfz SUBDIR += listener SUBDIR += littlefly-lv2 SUBDIR += lmms SUBDIR += logitechmediaserver SUBDIR += logitechmediaserver-dynamicplaylist SUBDIR += logitechmediaserver-lazysearch SUBDIR += logitechmediaserver-sqlplaylist SUBDIR += logitechmediaserver-trackstat SUBDIR += lollypop SUBDIR += lpcnet SUBDIR += lsp-plugins-lv2 SUBDIR += lua-mpd SUBDIR += luppp SUBDIR += lv2 SUBDIR += lv2file SUBDIR += lv2lint SUBDIR += lv2proc SUBDIR += lvtk SUBDIR += mac SUBDIR += madfufw SUBDIR += madplay SUBDIR += madronalib SUBDIR += malint SUBDIR += mamba SUBDIR += mate-media SUBDIR += mclk-lv2 SUBDIR += mda-lv2 SUBDIR += mhwaveedit SUBDIR += midi-matrix-lv2 SUBDIR += midifile SUBDIR += midiomatic-lv2 SUBDIR += midipp SUBDIR += midisharelight SUBDIR += midivisualizer SUBDIR += mikmod SUBDIR += milkytracker SUBDIR += miniaudio SUBDIR += minimp3 SUBDIR += mio2jack SUBDIR += mixer.app SUBDIR += mixertui SUBDIR += mixxx SUBDIR += mkcue SUBDIR += mmtc SUBDIR += moc SUBDIR += modplug-tools SUBDIR += moodbar SUBDIR += moony-lv2 SUBDIR += mousai SUBDIR += mp-player SUBDIR += mp3-archive-tools SUBDIR += mp3_check SUBDIR += mp3asm SUBDIR += mp3blaster SUBDIR += mp3burn 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 += mpdcon SUBDIR += mpdscribble SUBDIR += mpg123 SUBDIR += mpg123.el SUBDIR += mpg321 SUBDIR += mps SUBDIR += mpz SUBDIR += mumble SUBDIR += murmur SUBDIR += murmur-cli SUBDIR += muse-sequencer SUBDIR += musepack SUBDIR += musescore SUBDIR += musiccontrol SUBDIR += musicpc SUBDIR += musicpd SUBDIR += mythplugin-mythmusic SUBDIR += myxer SUBDIR += nas SUBDIR += ncmpc SUBDIR += ncmpcpp SUBDIR += ncpamixer SUBDIR += ncspot SUBDIR += netease-music-tui SUBDIR += noise-repellent-lv2 SUBDIR += noise-suppression-for-voice-lv2 SUBDIR += normalize SUBDIR += nosefart SUBDIR += noson-app SUBDIR += nyquist SUBDIR += oaml SUBDIR += ocp SUBDIR += ogg2mp3 SUBDIR += openal-soft SUBDIR += opencore-amr SUBDIR += openspc SUBDIR += optimfrog SUBDIR += optimfrog-sse2 SUBDIR += opus SUBDIR += opus-tools SUBDIR += opusfile SUBDIR += opustags SUBDIR += orbit-lv2 SUBDIR += osd-lyrics SUBDIR += osdmixer SUBDIR += oss SUBDIR += owntone 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-Perl 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 += pa-applet SUBDIR += pacpl SUBDIR += padthv1-lv2 SUBDIR += paman SUBDIR += pamixer SUBDIR += paprefs SUBDIR += patchage SUBDIR += pavucontrol SUBDIR += pavucontrol-qt SUBDIR += pavumeter SUBDIR += pc-mixer SUBDIR += pcaudiolib SUBDIR += pd SUBDIR += pd-cyclone SUBDIR += pear-Text_Spell_Audio SUBDIR += penguinsap SUBDIR += pianobar SUBDIR += pianobooster SUBDIR += pianod2 SUBDIR += picard SUBDIR += picard-plugins SUBDIR += pipewire-module-xrdp SUBDIR += pithos SUBDIR += plasma5-kpipewire SUBDIR += plasma5-oxygen-sounds SUBDIR += plasma5-plasma-pa + SUBDIR += plasma6-kpipewire + SUBDIR += plasma6-ocean-sound-theme + SUBDIR += plasma6-oxygen-sounds + SUBDIR += plasma6-plasma-pa SUBDIR += play SUBDIR += playgsf SUBDIR += playmidi SUBDIR += playumidi SUBDIR += pm3umpdl SUBDIR += pms SUBDIR += pms-devel SUBDIR += pocketsphinx SUBDIR += poly-lv2 SUBDIR += polyphone SUBDIR += portaudio SUBDIR += portmidi SUBDIR += praat SUBDIR += pragha SUBDIR += prelude-lv2 SUBDIR += psindustrializer SUBDIR += pt2-clone SUBDIR += puddletag SUBDIR += pulseaudio SUBDIR += pulseaudio-module-sndio SUBDIR += pulseaudio-module-xrdp SUBDIR += pulseaudio-qt SUBDIR += py-SoundFile SUBDIR += py-al SUBDIR += py-apetag SUBDIR += py-aubio SUBDIR += py-audioread SUBDIR += py-auditok SUBDIR += py-discid SUBDIR += py-discogs-client SUBDIR += py-essentia SUBDIR += py-eyed3 SUBDIR += py-fmoo-audiotools SUBDIR += py-gtts SUBDIR += py-hsaudiotag3k SUBDIR += py-librosa SUBDIR += py-mpd SUBDIR += py-music21 SUBDIR += py-musicbrainzngs SUBDIR += py-mutagen SUBDIR += py-opuslib SUBDIR += py-playsound SUBDIR += py-pocketsphinx SUBDIR += py-pulsectl SUBDIR += py-pyacoustid SUBDIR += py-pyaudio SUBDIR += py-pydub SUBDIR += py-pyjacklib SUBDIR += py-pylast SUBDIR += py-pyliblo SUBDIR += py-pymad SUBDIR += py-pyogg SUBDIR += py-pyradio SUBDIR += py-pysndfile SUBDIR += py-python-mpd2 SUBDIR += py-pyttsx3 SUBDIR += py-resampy SUBDIR += py-simpleaudio SUBDIR += py-soundcloud SUBDIR += py-sounddevice SUBDIR += py-soundscrape SUBDIR += py-soxr SUBDIR += py-speechrecognition SUBDIR += py-spotipy SUBDIR += py-tagpy SUBDIR += py-wavio SUBDIR += py-webrtcvad SUBDIR += py-zita-audiotools SUBDIR += py-zita-jacktools SUBDIR += qaudiosonar SUBDIR += qjackcapture SUBDIR += qjackctl SUBDIR += qmidiarp SUBDIR += qmidictl SUBDIR += qmidinet SUBDIR += qsampler SUBDIR += qsynth SUBDIR += qtractor SUBDIR += quimup SUBDIR += qxgedit SUBDIR += raul SUBDIR += rawrec SUBDIR += re SUBDIR += rebot3 SUBDIR += resid SUBDIR += rexima SUBDIR += rezound SUBDIR += rhvoice SUBDIR += rhvoice-dictionary SUBDIR += rhythmbox SUBDIR += ripperx SUBDIR += rkr-lv2 SUBDIR += rnnoise SUBDIR += rnnoise-nu SUBDIR += rosegarden SUBDIR += rsgain 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 += samplv1-lv2 SUBDIR += sayonara SUBDIR += sbagen SUBDIR += sc3-plugins SUBDIR += schismtracker SUBDIR += screcord-lv2 SUBDIR += sdl2_mixer SUBDIR += sdl2_sound SUBDIR += sdl_audiolib SUBDIR += sdl_mixer SUBDIR += sdl_sound SUBDIR += sfizz SUBDIR += sfront SUBDIR += shairplay SUBDIR += shairport-sync SUBDIR += sherlock-lv2 SUBDIR += shntool SUBDIR += shortwave SUBDIR += shuriken SUBDIR += sidplay SUBDIR += sidplay2 SUBDIR += sidplayer SUBDIR += sidplayfp SUBDIR += simplemod SUBDIR += siren SUBDIR += snack SUBDIR += snd SUBDIR += sndio SUBDIR += so-synth-lv2 SUBDIR += solfege SUBDIR += somafm-cli SUBDIR += sonata SUBDIR += songrec SUBDIR += sonic-visualiser SUBDIR += sonivox SUBDIR += sonivox-eas SUBDIR += sorcer-lv2 SUBDIR += sound-juicer SUBDIR += soundgrab SUBDIR += soundtouch SUBDIR += soundtracker SUBDIR += sox SUBDIR += spc2it SUBDIR += spectacle-lv2 SUBDIR += spectmorph SUBDIR += spectrogram SUBDIR += speech-denoiser-lv2 SUBDIR += speex SUBDIR += speexdsp SUBDIR += spek SUBDIR += sphinx SUBDIR += sphinx3 SUBDIR += sphinxbase SUBDIR += spiralloops SUBDIR += spiralsynth SUBDIR += spiralsynthmodular SUBDIR += spotify-player SUBDIR += spotify-qt SUBDIR += spotify-tui SUBDIR += spotifyd SUBDIR += squash SUBDIR += squeezelite SUBDIR += sratom SUBDIR += ssr-lv2 SUBDIR += stegosaurus-lv2 SUBDIR += stk SUBDIR += stmp SUBDIR += stone-phaser-lv2 SUBDIR += strawberry SUBDIR += streamripper SUBDIR += streamtranscoder SUBDIR += string-machine-lv2 SUBDIR += stymulator SUBDIR += suil SUBDIR += supercollider SUBDIR += surge-synthesizer-lv2 SUBDIR += surge-synthesizer-xt-lv2 SUBDIR += sweep SUBDIR += swh-lv2 SUBDIR += swhplugins SUBDIR += synthpod-lv2 SUBDIR += synthv1-lv2 SUBDIR += taglib SUBDIR += taglib-extras SUBDIR += taglookup SUBDIR += tagutil SUBDIR += tamgamp-lv2 SUBDIR += tap-plugins SUBDIR += tap-plugins-lv2 SUBDIR += tcd SUBDIR += teamspeak3-server SUBDIR += tempest_for_eliza SUBDIR += tetraproc SUBDIR += thunar-media-tags-plugin SUBDIR += tiatracker SUBDIR += timbre-mill SUBDIR += timely-lv2 SUBDIR += timemachine SUBDIR += timidity SUBDIR += timidity++ SUBDIR += timidity++-emacs SUBDIR += timidity++-gtk SUBDIR += timidity++-motif SUBDIR += timidity++-slang SUBDIR += timidity++-xaw SUBDIR += timidity++-xskin SUBDIR += tkeca SUBDIR += toccata-lv2 SUBDIR += tosha SUBDIR += traverso SUBDIR += triceratops-lv2 SUBDIR += tse3 SUBDIR += tta SUBDIR += tuner SUBDIR += tuneradio SUBDIR += twolame SUBDIR += uade SUBDIR += umix SUBDIR += umodplayer SUBDIR += umurmur SUBDIR += vamp-plugin-sdk SUBDIR += vban SUBDIR += vgmplay SUBDIR += vgmtools SUBDIR += vimpc SUBDIR += virtual_oss SUBDIR += virtual_oss_ctl SUBDIR += visp-go SUBDIR += vitunes SUBDIR += vm-lv2 SUBDIR += vmpk SUBDIR += vo-amrwbenc SUBDIR += voipong SUBDIR += volumeicon SUBDIR += vorbis-tools SUBDIR += vorbisgain SUBDIR += vsound SUBDIR += vst3sdk SUBDIR += waon SUBDIR += wavbreaker SUBDIR += wavegain SUBDIR += wavetral SUBDIR += wavpack SUBDIR += wavplay SUBDIR += webrtc-audio-processing SUBDIR += webrtc-audio-processing0 SUBDIR += welle.io SUBDIR += whysynth SUBDIR += wildmidi SUBDIR += wmix SUBDIR += wmmp SUBDIR += wmsmixer SUBDIR += wolf-shaper-lv2 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 += xmcd SUBDIR += xmix SUBDIR += xmixer SUBDIR += xmmix SUBDIR += xmp SUBDIR += xmradio SUBDIR += xoscope SUBDIR += xsynth-dssi SUBDIR += xuidesigner SUBDIR += xwave SUBDIR += yell SUBDIR += ympd SUBDIR += yoshimi SUBDIR += zam-plugins-lv2 SUBDIR += zita-alsa-pcmi SUBDIR += zita-at1 SUBDIR += zita-bls1 SUBDIR += zita-convolver SUBDIR += zita-dpl1 SUBDIR += zita-jclient SUBDIR += zita-mu1 SUBDIR += zita-njbridge SUBDIR += zita-resampler SUBDIR += zita-rev1 SUBDIR += zmusic SUBDIR += zplugins-lv2 SUBDIR += zrythm SUBDIR += zynaddsubfx .include diff --git a/audio/plasma6-kpipewire/Makefile b/audio/plasma6-kpipewire/Makefile new file mode 100644 index 000000000000..7739f6beff5b --- /dev/null +++ b/audio/plasma6-kpipewire/Makefile @@ -0,0 +1,21 @@ +PORTNAME= kpipewire +DISTVERSION= ${KDE_PLASMA_VERSION} +CATEGORIES= audio kde kde-plasma + +MAINTAINER= kde@FreeBSD.org +COMMENT= Components relating to Flatpak 'pipewire' use in Plasma + +LIB_DEPENDS= libavcodec.so:multimedia/ffmpeg \ + libdrm.so:graphics/libdrm \ + libepoxy.so:graphics/libepoxy \ + libpipewire-0.3.so:multimedia/pipewire \ + libva.so:multimedia/libva \ + libxkbcommon.so:x11/libxkbcommon + +USES= cmake gettext gl kde:6 pkgconfig qt:6 tar:xz +USE_GL= egl gbm gl opengl +USE_KDE= coreaddons i18n \ + ecm:build plasma-wayland-protocols:build +USE_QT= base declarative wayland + +.include diff --git a/audio/plasma6-kpipewire/distinfo b/audio/plasma6-kpipewire/distinfo new file mode 100644 index 000000000000..fc70eb34e882 --- /dev/null +++ b/audio/plasma6-kpipewire/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1701525047 +SHA256 (KDE/plasma/5.90.0/kpipewire-5.90.0.tar.xz) = 631f410de2fb25e12dda1c5b2d885af584a92bdde271bb3628113575b7840e5c +SIZE (KDE/plasma/5.90.0/kpipewire-5.90.0.tar.xz) = 143928 diff --git a/audio/plasma6-kpipewire/pkg-plist b/audio/plasma6-kpipewire/pkg-plist new file mode 100644 index 000000000000..f0bad1e432d2 --- /dev/null +++ b/audio/plasma6-kpipewire/pkg-plist @@ -0,0 +1,79 @@ +include/KPipeWire/DmaBufHandler +include/KPipeWire/PipeWireBaseEncodedStream +include/KPipeWire/PipeWireEncodedStream +include/KPipeWire/PipeWireRecord +include/KPipeWire/PipeWireSourceItem +include/KPipeWire/PipeWireSourceStream +include/KPipeWire/dmabufhandler.h +include/KPipeWire/kpipewire_export.h +include/KPipeWire/kpipewiredmabuf_export.h +include/KPipeWire/pipewirebaseencodedstream.h +include/KPipeWire/pipewireencodedstream.h +include/KPipeWire/pipewirerecord.h +include/KPipeWire/pipewiresourceitem.h +include/KPipeWire/pipewiresourcestream.h +lib/cmake/KPipeWire/KPipeWireConfig.cmake +lib/cmake/KPipeWire/KPipeWireConfigVersion.cmake +lib/cmake/KPipeWire/KPipeWireTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/KPipeWire/KPipeWireTargets.cmake +lib/libKPipeWire.so +lib/libKPipeWire.so.%%KDE_PLASMA_VERSION%% +lib/libKPipeWire.so.6 +lib/libKPipeWireDmaBuf.so +lib/libKPipeWireDmaBuf.so.%%KDE_PLASMA_VERSION%% +lib/libKPipeWireDmaBuf.so.6 +lib/libKPipeWireRecord.so +lib/libKPipeWireRecord.so.%%KDE_PLASMA_VERSION%% +lib/libKPipeWireRecord.so.6 +%%QT_QMLDIR%%/org/kde/pipewire/KPipeWireDeclarative.qmltypes +%%QT_QMLDIR%%/org/kde/pipewire/kde-qmlmodule.version +%%QT_QMLDIR%%/org/kde/pipewire/libKPipeWireDeclarative.so +%%QT_QMLDIR%%/org/kde/pipewire/monitor/KPipeWireMonitorDeclarative.qmltypes +%%QT_QMLDIR%%/org/kde/pipewire/monitor/kde-qmlmodule.version +%%QT_QMLDIR%%/org/kde/pipewire/monitor/libKPipeWireMonitorDeclarative.so +%%QT_QMLDIR%%/org/kde/pipewire/monitor/qmldir +%%QT_QMLDIR%%/org/kde/pipewire/qmldir +%%QT_QMLDIR%%/org/kde/pipewire/record/KPipeWireRecordDeclarative.qmltypes +%%QT_QMLDIR%%/org/kde/pipewire/record/kde-qmlmodule.version +%%QT_QMLDIR%%/org/kde/pipewire/record/libKPipeWireRecordDeclarative.so +%%QT_QMLDIR%%/org/kde/pipewire/record/qmldir +share/locale/ar/LC_MESSAGES/kpipewire6.mo +share/locale/ast/LC_MESSAGES/kpipewire6.mo +share/locale/bg/LC_MESSAGES/kpipewire6.mo +share/locale/ca/LC_MESSAGES/kpipewire6.mo +share/locale/ca@valencia/LC_MESSAGES/kpipewire6.mo +share/locale/cs/LC_MESSAGES/kpipewire6.mo +share/locale/de/LC_MESSAGES/kpipewire6.mo +share/locale/en_GB/LC_MESSAGES/kpipewire6.mo +share/locale/eo/LC_MESSAGES/kpipewire6.mo +share/locale/es/LC_MESSAGES/kpipewire6.mo +share/locale/eu/LC_MESSAGES/kpipewire6.mo +share/locale/fi/LC_MESSAGES/kpipewire6.mo +share/locale/fr/LC_MESSAGES/kpipewire6.mo +share/locale/gl/LC_MESSAGES/kpipewire6.mo +share/locale/ia/LC_MESSAGES/kpipewire6.mo +share/locale/id/LC_MESSAGES/kpipewire6.mo +share/locale/it/LC_MESSAGES/kpipewire6.mo +share/locale/ja/LC_MESSAGES/kpipewire6.mo +share/locale/ka/LC_MESSAGES/kpipewire6.mo +share/locale/ko/LC_MESSAGES/kpipewire6.mo +share/locale/lt/LC_MESSAGES/kpipewire6.mo +share/locale/nl/LC_MESSAGES/kpipewire6.mo +share/locale/nn/LC_MESSAGES/kpipewire6.mo +share/locale/pa/LC_MESSAGES/kpipewire6.mo +share/locale/pl/LC_MESSAGES/kpipewire6.mo +share/locale/pt/LC_MESSAGES/kpipewire6.mo +share/locale/pt_BR/LC_MESSAGES/kpipewire6.mo +share/locale/ro/LC_MESSAGES/kpipewire6.mo +share/locale/ru/LC_MESSAGES/kpipewire6.mo +share/locale/sa/LC_MESSAGES/kpipewire6.mo +share/locale/sk/LC_MESSAGES/kpipewire6.mo +share/locale/sl/LC_MESSAGES/kpipewire6.mo +share/locale/sv/LC_MESSAGES/kpipewire6.mo +share/locale/ta/LC_MESSAGES/kpipewire6.mo +share/locale/tr/LC_MESSAGES/kpipewire6.mo +share/locale/uk/LC_MESSAGES/kpipewire6.mo +share/locale/zh_CN/LC_MESSAGES/kpipewire6.mo +share/locale/zh_TW/LC_MESSAGES/kpipewire6.mo +share/qlogging-categories6/kpipewire.categories +share/qlogging-categories6/kpipewirerecord.categories diff --git a/audio/plasma6-ocean-sound-theme/Makefile b/audio/plasma6-ocean-sound-theme/Makefile new file mode 100644 index 000000000000..7411f7deb13a --- /dev/null +++ b/audio/plasma6-ocean-sound-theme/Makefile @@ -0,0 +1,13 @@ +PORTNAME= ocean-sound-theme +DISTVERSION= ${KDE_PLASMA_VERSION} +CATEGORIES= audio kde kde-plasma + +MAINTAINER= kde@FreeBSD.org +COMMENT= Ocean Sound Theme for Plasma + +USES= cmake:noninja kde:6 qt:6 tar:xz +USE_KDE= ecm:build +USE_QT= base:build +NO_ARCH= yes + +.include diff --git a/audio/plasma6-ocean-sound-theme/distinfo b/audio/plasma6-ocean-sound-theme/distinfo new file mode 100644 index 000000000000..42f178f5cc01 --- /dev/null +++ b/audio/plasma6-ocean-sound-theme/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1701526122 +SHA256 (KDE/plasma/5.90.0/ocean-sound-theme-5.90.0.tar.xz) = 68de6c427b960004c04eb1e2fae1d1223e4576cf7be25bd6338ea5c5f58c6f00 +SIZE (KDE/plasma/5.90.0/ocean-sound-theme-5.90.0.tar.xz) = 1209540 diff --git a/audio/plasma6-ocean-sound-theme/pkg-plist b/audio/plasma6-ocean-sound-theme/pkg-plist new file mode 100644 index 000000000000..d0a1c67a8127 --- /dev/null +++ b/audio/plasma6-ocean-sound-theme/pkg-plist @@ -0,0 +1,69 @@ +share/sounds/ocean/index.theme +share/sounds/ocean/index.theme.license +share/sounds/ocean/stereo/alarm-clock-elapsed.oga +share/sounds/ocean/stereo/alarm-clock-elapsed.oga.license +share/sounds/ocean/stereo/audio-volume-change.oga +share/sounds/ocean/stereo/audio-volume-change.oga.license +share/sounds/ocean/stereo/battery-caution.oga +share/sounds/ocean/stereo/battery-caution.oga.license +share/sounds/ocean/stereo/battery-full.oga +share/sounds/ocean/stereo/battery-low.oga +share/sounds/ocean/stereo/battery-low.oga.license +share/sounds/ocean/stereo/bell-window-system.oga +share/sounds/ocean/stereo/bell-window-system.oga.license +share/sounds/ocean/stereo/complete-media-burn.oga +share/sounds/ocean/stereo/complete-media-error.oga +share/sounds/ocean/stereo/completion-fail.oga +share/sounds/ocean/stereo/completion-fail.oga.license +share/sounds/ocean/stereo/completion-partial.oga +share/sounds/ocean/stereo/completion-partial.oga.license +share/sounds/ocean/stereo/completion-rotation.oga +share/sounds/ocean/stereo/completion-rotation.oga.license +share/sounds/ocean/stereo/completion-success.oga +share/sounds/ocean/stereo/completion-success.oga.license +share/sounds/ocean/stereo/desktop-login.oga +share/sounds/ocean/stereo/desktop-login.oga.license +share/sounds/ocean/stereo/desktop-logout.oga +share/sounds/ocean/stereo/desktop-logout.oga.license +share/sounds/ocean/stereo/device-added.oga +share/sounds/ocean/stereo/device-added.oga.license +share/sounds/ocean/stereo/device-removed.oga +share/sounds/ocean/stereo/device-removed.oga.license +share/sounds/ocean/stereo/dialog-error-critical.oga +share/sounds/ocean/stereo/dialog-error-serious.oga +share/sounds/ocean/stereo/dialog-error-serious.oga.license +share/sounds/ocean/stereo/dialog-error.oga +share/sounds/ocean/stereo/dialog-error.oga.license +share/sounds/ocean/stereo/dialog-information.oga +share/sounds/ocean/stereo/dialog-information.oga.license +share/sounds/ocean/stereo/dialog-question.oga +share/sounds/ocean/stereo/dialog-question.oga.license +share/sounds/ocean/stereo/dialog-warning.oga +share/sounds/ocean/stereo/dialog-warning.oga.license +share/sounds/ocean/stereo/game-over-loser.oga +share/sounds/ocean/stereo/game-over-winner.oga +share/sounds/ocean/stereo/media-insert-request.oga +share/sounds/ocean/stereo/message-attention.oga +share/sounds/ocean/stereo/message-contact-in.oga +share/sounds/ocean/stereo/message-contact-out.oga +share/sounds/ocean/stereo/message-highlight.oga +share/sounds/ocean/stereo/message-new-instant.oga +share/sounds/ocean/stereo/message-new-instant.oga.license +share/sounds/ocean/stereo/message-sent-instant.oga +share/sounds/ocean/stereo/outcome-failure.oga +share/sounds/ocean/stereo/outcome-failure.oga.license +share/sounds/ocean/stereo/outcome-success.oga +share/sounds/ocean/stereo/outcome-success.oga.license +share/sounds/ocean/stereo/phone-incoming-call.oga +share/sounds/ocean/stereo/phone-incoming-call.oga.license +share/sounds/ocean/stereo/power-plug.oga +share/sounds/ocean/stereo/power-plug.oga.license +share/sounds/ocean/stereo/power-unplug.oga +share/sounds/ocean/stereo/power-unplug.oga.license +share/sounds/ocean/stereo/service-login.oga +share/sounds/ocean/stereo/service-login.oga.license +share/sounds/ocean/stereo/service-logout.oga +share/sounds/ocean/stereo/service-logout.oga.license +share/sounds/ocean/stereo/theme-demo.oga +share/sounds/ocean/stereo/trash-empty.oga +share/sounds/ocean/stereo/trash-empty.oga.license diff --git a/audio/plasma6-oxygen-sounds/Makefile b/audio/plasma6-oxygen-sounds/Makefile new file mode 100644 index 000000000000..f1e89e0637c0 --- /dev/null +++ b/audio/plasma6-oxygen-sounds/Makefile @@ -0,0 +1,15 @@ +PORTNAME= oxygen-sounds +DISTVERSION= ${KDE_PLASMA_VERSION} +CATEGORIES= audio kde kde-plasma + +MAINTAINER= kde@FreeBSD.org +COMMENT= Oxygen Sound Theme + +USES= cmake:noninja kde:6 qt:6 tar:xz +USE_KDE= ecm:build +USE_QT= base:build +NO_ARCH= yes + +CMAKE_ARGS= -DQT_MAJOR_VERSION=6 + +.include diff --git a/audio/plasma6-oxygen-sounds/distinfo b/audio/plasma6-oxygen-sounds/distinfo new file mode 100644 index 000000000000..e8867d40f0eb --- /dev/null +++ b/audio/plasma6-oxygen-sounds/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1701525048 +SHA256 (KDE/plasma/5.90.0/oxygen-sounds-5.90.0.tar.xz) = 716a36d4a2142018a249c8642f8117c510f91a0626d8cafa0afe29268894320c +SIZE (KDE/plasma/5.90.0/oxygen-sounds-5.90.0.tar.xz) = 1936092 diff --git a/audio/plasma6-oxygen-sounds/pkg-plist b/audio/plasma6-oxygen-sounds/pkg-plist new file mode 100644 index 000000000000..2ed91d33e232 --- /dev/null +++ b/audio/plasma6-oxygen-sounds/pkg-plist @@ -0,0 +1,114 @@ +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-Long.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 +share/sounds/oxygen/index.theme +share/sounds/oxygen/stereo/alarm-clock-elapsed.ogg +share/sounds/oxygen/stereo/battery-caution.ogg +share/sounds/oxygen/stereo/battery-full.ogg +share/sounds/oxygen/stereo/battery-low.ogg +share/sounds/oxygen/stereo/bell-window-system.ogg +share/sounds/oxygen/stereo/camera-shutter.wav +share/sounds/oxygen/stereo/complete-media-burn.ogg +share/sounds/oxygen/stereo/complete-media-error.ogg +share/sounds/oxygen/stereo/completion-fail.ogg +share/sounds/oxygen/stereo/completion-rotation.ogg +share/sounds/oxygen/stereo/completion-success.ogg +share/sounds/oxygen/stereo/desktop-login-long.ogg +share/sounds/oxygen/stereo/desktop-login-short.ogg +share/sounds/oxygen/stereo/desktop-login.ogg +share/sounds/oxygen/stereo/desktop-logout.ogg +share/sounds/oxygen/stereo/device-added.ogg +share/sounds/oxygen/stereo/device-removed.ogg +share/sounds/oxygen/stereo/dialog-error-critical.ogg +share/sounds/oxygen/stereo/dialog-error-serious.ogg +share/sounds/oxygen/stereo/dialog-error-veryserious.ogg +share/sounds/oxygen/stereo/dialog-error.ogg +share/sounds/oxygen/stereo/dialog-information.ogg +share/sounds/oxygen/stereo/dialog-question.ogg +share/sounds/oxygen/stereo/dialog-special.ogg +share/sounds/oxygen/stereo/dialog-warning.ogg +share/sounds/oxygen/stereo/file-error.ogg +share/sounds/oxygen/stereo/game-over-loser.ogg +share/sounds/oxygen/stereo/game-over-winner.ogg +share/sounds/oxygen/stereo/media-insert-request.ogg +share/sounds/oxygen/stereo/message-attention.ogg +share/sounds/oxygen/stereo/message-conectivity-problem.ogg +share/sounds/oxygen/stereo/message-connectivity-error-serious.ogg +share/sounds/oxygen/stereo/message-connectivity-error.ogg +share/sounds/oxygen/stereo/message-connectivity-lost.ogg +share/sounds/oxygen/stereo/message-contact-in.ogg +share/sounds/oxygen/stereo/message-contact-out.ogg +share/sounds/oxygen/stereo/message-error.ogg +share/sounds/oxygen/stereo/message-highlight.ogg +share/sounds/oxygen/stereo/message-irc-event.ogg +share/sounds/oxygen/stereo/message-lowpriority.ogg +share/sounds/oxygen/stereo/message-new-email.ogg +share/sounds/oxygen/stereo/message-new-instant.ogg +share/sounds/oxygen/stereo/message-new-sms.ogg +share/sounds/oxygen/stereo/message-sent-instant.ogg +share/sounds/oxygen/stereo/outcome-failure.ogg +share/sounds/oxygen/stereo/outcome-success.ogg +share/sounds/oxygen/stereo/phone-incoming-call.ogg +share/sounds/oxygen/stereo/power-plug.ogg +share/sounds/oxygen/stereo/power-unplug.ogg +share/sounds/oxygen/stereo/print-error.ogg +share/sounds/oxygen/stereo/service-login.ogg +share/sounds/oxygen/stereo/service-logout.ogg +share/sounds/oxygen/stereo/theme-demo.ogg +share/sounds/oxygen/stereo/trash-empty.ogg +share/sounds/oxygen/stereo/window-close.ogg +share/sounds/oxygen/stereo/window-maximized.ogg +share/sounds/oxygen/stereo/window-minimized.ogg +share/sounds/oxygen/stereo/window-move-end.ogg +share/sounds/oxygen/stereo/window-move-start.ogg +share/sounds/oxygen/stereo/window-pin.ogg +share/sounds/oxygen/stereo/window-shaded.ogg +share/sounds/oxygen/stereo/window-unpin.ogg +share/sounds/oxygen/stereo/window-unshaded.ogg diff --git a/audio/plasma6-plasma-pa/Makefile b/audio/plasma6-plasma-pa/Makefile new file mode 100644 index 000000000000..4226795c87a4 --- /dev/null +++ b/audio/plasma6-plasma-pa/Makefile @@ -0,0 +1,20 @@ +PORTNAME= plasma-pa +DISTVERSION= ${KDE_PLASMA_VERSION} +CATEGORIES= audio kde kde-plasma + +MAINTAINER= kde@FreeBSD.org +COMMENT= Plasma applet for audio volume management using PulseAudio + +LIB_DEPENDS= libcanberra.so:audio/libcanberra \ + libpulse.so:audio/pulseaudio +RUN_DEPENDS= ${LOCALBASE}/share/sounds/freedesktop/index.theme:audio/freedesktop-sound-theme + +USES= cmake gettext kde:6 pkgconfig qt:6 shebangfix tar:xz +USE_KDE= coreaddons doctools globalaccel i18n itemmodels kcmutils \ + kdeclarative kirigami-addons libplasma statusnotifieritem svg \ + ecm:build +USE_QT= base declarative + +SHEBANG_FILES= data/plasmaVolumeDisableKMixAutostart.pl + +.include diff --git a/audio/plasma6-plasma-pa/distinfo b/audio/plasma6-plasma-pa/distinfo new file mode 100644 index 000000000000..1a081e4fcbf3 --- /dev/null +++ b/audio/plasma6-plasma-pa/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1701525115 +SHA256 (KDE/plasma/5.90.0/plasma-pa-5.90.0.tar.xz) = afc17d4996eef0c14324987876d05a451dd7778822e59d3c7b1c64e59791c3ad +SIZE (KDE/plasma/5.90.0/plasma-pa-5.90.0.tar.xz) = 168424 diff --git a/audio/plasma6-plasma-pa/pkg-plist b/audio/plasma6-plasma-pa/pkg-plist new file mode 100644 index 000000000000..ad4d2d719146 --- /dev/null +++ b/audio/plasma6-plasma-pa/pkg-plist @@ -0,0 +1,145 @@ +%%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_pulseaudio.so +%%QT_QMLDIR%%/org/kde/plasma/private/volume/PulseObjectFilterModel.qml +%%QT_QMLDIR%%/org/kde/plasma/private/volume/kde-qmlmodule.version +%%QT_QMLDIR%%/org/kde/plasma/private/volume/libplasma-volume-declarative.so +%%QT_QMLDIR%%/org/kde/plasma/private/volume/plasma-volume-declarative.qmltypes +%%QT_QMLDIR%%/org/kde/plasma/private/volume/qmldir +share/applications/kcm_pulseaudio.desktop +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/es/kcontrol/plasma-pa/index.cache.bz2 +share/doc/HTML/es/kcontrol/plasma-pa/index.docbook +share/doc/HTML/id/kcontrol/plasma-pa/index.cache.bz2 +share/doc/HTML/id/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/ru/kcontrol/plasma-pa/index.cache.bz2 +share/doc/HTML/ru/kcontrol/plasma-pa/index.docbook +share/doc/HTML/sv/kcontrol/plasma-pa/index.cache.bz2 +share/doc/HTML/sv/kcontrol/plasma-pa/index.docbook +share/doc/HTML/tr/kcontrol/plasma-pa/index.cache.bz2 +share/doc/HTML/tr/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/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/az/LC_MESSAGES/kcm_pulseaudio.mo +share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.volume.mo +share/locale/bg/LC_MESSAGES/kcm_pulseaudio.mo +share/locale/bg/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/eo/LC_MESSAGES/kcm_pulseaudio.mo +share/locale/eo/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/hsb/LC_MESSAGES/plasma_applet_org.kde.plasma.volume.mo +share/locale/hu/LC_MESSAGES/kcm_pulseaudio.mo +share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.volume.mo +share/locale/ia/LC_MESSAGES/kcm_pulseaudio.mo +share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.volume.mo +share/locale/id/LC_MESSAGES/kcm_pulseaudio.mo +share/locale/id/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/ka/LC_MESSAGES/kcm_pulseaudio.mo +share/locale/ka/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/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.volume.mo +share/locale/ml/LC_MESSAGES/kcm_pulseaudio.mo +share/locale/ml/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/ro/LC_MESSAGES/kcm_pulseaudio.mo +share/locale/ro/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/ta/LC_MESSAGES/kcm_pulseaudio.mo +share/locale/ta/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/main.xml +share/plasma/plasmoids/org.kde.plasma.volume/contents/ui/DeviceListItem.qml +share/plasma/plasmoids/org.kde.plasma.volume/contents/ui/HorizontalStackView.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/VolumeSlider.qml +share/plasma/plasmoids/org.kde.plasma.volume/contents/ui/main.qml +share/plasma/plasmoids/org.kde.plasma.volume/metadata.json diff --git a/deskutils/Makefile b/deskutils/Makefile index 93e4346db206..769c9e87079f 100644 --- a/deskutils/Makefile +++ b/deskutils/Makefile @@ -1,308 +1,311 @@ 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 += anydesk SUBDIR += appwrapper SUBDIR += arttime SUBDIR += aspostit SUBDIR += ausweisapp2 SUBDIR += autocutsel SUBDIR += baobab SUBDIR += basket SUBDIR += belcard SUBDIR += bigyear SUBDIR += bijiben SUBDIR += birdtray SUBDIR += bookworm SUBDIR += budgie-desktop-view SUBDIR += cairo-dock SUBDIR += cairo-dock-plugins SUBDIR += caja-extensions SUBDIR += cal SUBDIR += calcurse SUBDIR += calendar SUBDIR += calendar-data SUBDIR += calibre SUBDIR += calindori SUBDIR += cartotheque SUBDIR += cfiles SUBDIR += charmtimetracker SUBDIR += chart SUBDIR += cherrytree SUBDIR += clipit SUBDIR += clipmenu SUBDIR += clipnotify SUBDIR += conkyforecast SUBDIR += coolreader SUBDIR += copyq SUBDIR += coregarage SUBDIR += countdown SUBDIR += dailystrips SUBDIR += deforaos-todo SUBDIR += dfshow SUBDIR += dmenu-wayland SUBDIR += docear SUBDIR += dosage SUBDIR += dstask SUBDIR += easystroke SUBDIR += elementary-calendar SUBDIR += fasd SUBDIR += fbreader SUBDIR += feathernotes SUBDIR += fet SUBDIR += fff SUBDIR += flameshot SUBDIR += foliate SUBDIR += freebsd-update-notify SUBDIR += freemind SUBDIR += freeplane SUBDIR += ganttproject SUBDIR += gcal SUBDIR += gcalcli SUBDIR += genius SUBDIR += glabels SUBDIR += gnome-calendar SUBDIR += gnome-characters SUBDIR += gnome-clocks SUBDIR += gnome-contacts SUBDIR += gnome-dictionary SUBDIR += gnome-font-viewer SUBDIR += gnome-initial-setup SUBDIR += gnome-maps SUBDIR += gnome-photos SUBDIR += gnome-planner SUBDIR += gnome-pomodoro SUBDIR += gnome-screenshot SUBDIR += gnome-shell-extension-audio-output-switcher SUBDIR += gnome-shell-extension-coverflow SUBDIR += gnome-shell-extension-dashtodock SUBDIR += gnome-shell-extension-dashtopanel 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-panel-osd SUBDIR += gnome-shell-extension-recent-items SUBDIR += gnome-shell-extension-trash SUBDIR += gnome-shell-extension-weather SUBDIR += gnome-shell-extension-windowoverlay-icons SUBDIR += gnome-shell-extra-extensions SUBDIR += gnome-sound-recorder SUBDIR += gnome-todo SUBDIR += gnome-tweaks SUBDIR += gnome-utils SUBDIR += gnome-weather SUBDIR += gnote SUBDIR += gnustep-wrapper SUBDIR += go-for-it SUBDIR += goesimage SUBDIR += gpicker SUBDIR += grantlee-editor SUBDIR += grantleetheme SUBDIR += griffith SUBDIR += growl-for-linux SUBDIR += gsimplecal SUBDIR += gtimer SUBDIR += gucharmap SUBDIR += gworkspace SUBDIR += gworkspace-gwmetadata SUBDIR += gxmessage SUBDIR += gxneur SUBDIR += havoc SUBDIR += health SUBDIR += hebcal SUBDIR += helpviewer SUBDIR += hot-babe SUBDIR += howm SUBDIR += hs-arbtt SUBDIR += i3lock SUBDIR += i3status SUBDIR += ical SUBDIR += iconbrowser SUBDIR += itinerary SUBDIR += jjclient SUBDIR += jlj SUBDIR += jot SUBDIR += just SUBDIR += kaddressbook SUBDIR += kalarm SUBDIR += kcharselect SUBDIR += kchmviewer SUBDIR += kdeconnect-kde SUBDIR += kdepim SUBDIR += kdepim-addons SUBDIR += kdepim-runtime SUBDIR += keditbookmarks SUBDIR += keep-presence SUBDIR += kf6-kstatusnotifieritem SUBDIR += kfind SUBDIR += kmail SUBDIR += kmail-account-wizard SUBDIR += knotes SUBDIR += kodaskanna SUBDIR += kongress SUBDIR += kontact SUBDIR += korganizer SUBDIR += kronometer SUBDIR += kruler SUBDIR += ktimetracker SUBDIR += kuserfeedback SUBDIR += latte-dock SUBDIR += lazycli SUBDIR += libcprime SUBDIR += libkdepim SUBDIR += libportal SUBDIR += libportal-gtk3 SUBDIR += libportal-gtk4 SUBDIR += libportal-qt5 SUBDIR += ljclive SUBDIR += lumina-archiver SUBDIR += lumina-calculator SUBDIR += lumina-fileinfo SUBDIR += lumina-fm SUBDIR += lumina-mediaplayer SUBDIR += lumina-pdf SUBDIR += lumina-photo SUBDIR += lumina-screenshot SUBDIR += lumina-textedit SUBDIR += lxqt-notificationd SUBDIR += maliit-framework SUBDIR += maliit-keyboard SUBDIR += mate-indicator-applet SUBDIR += mate-notification-daemon SUBDIR += mate-utils SUBDIR += mbox-importer SUBDIR += mencal SUBDIR += menumaker SUBDIR += merkuro SUBDIR += meteo SUBDIR += mindforger SUBDIR += moregroupware SUBDIR += mozo SUBDIR += mytetra SUBDIR += nanonote SUBDIR += nautilus-sendto SUBDIR += nextcloudclient SUBDIR += note SUBDIR += notekit SUBDIR += notes SUBDIR += noti SUBDIR += notification-daemon SUBDIR += notify-osd SUBDIR += orage SUBDIR += owncloudclient SUBDIR += p5-Data-ICal SUBDIR += p5-Data-ICal-DateTime SUBDIR += p5-Goo SUBDIR += pal SUBDIR += parcellite SUBDIR += peaclock SUBDIR += pet SUBDIR += phpicalendar SUBDIR += pim-data-exporter SUBDIR += pim-sieve-editor SUBDIR += pinot SUBDIR += plan SUBDIR += plans SUBDIR += plasma5-milou SUBDIR += plasma5-sddm-kcm SUBDIR += plasma5-xdg-desktop-portal-kde + SUBDIR += plasma6-milou + SUBDIR += plasma6-sddm-kcm + SUBDIR += plasma6-xdg-desktop-portal-kde SUBDIR += plopfolio SUBDIR += preferences SUBDIR += presage SUBDIR += projectlibre SUBDIR += pueue SUBDIR += puush SUBDIR += py-autokey SUBDIR += py-bugwarrior SUBDIR += py-khal SUBDIR += py-khard SUBDIR += py-paperless SUBDIR += py-py3status SUBDIR += py-pystash SUBDIR += py-send2trash SUBDIR += py-taskw SUBDIR += py-term-background SUBDIR += py-todoman SUBDIR += py-vdirsyncer SUBDIR += py-vobject SUBDIR += qlipper SUBDIR += qmediamanager SUBDIR += qownnotes SUBDIR += qtfeedback SUBDIR += recoll SUBDIR += remind SUBDIR += rolo SUBDIR += rubrica SUBDIR += rubygem-shellplay SUBDIR += rubygem-taskjuggler SUBDIR += semantik SUBDIR += showdown SUBDIR += sigi SUBDIR += simpleagenda SUBDIR += skim SUBDIR += sliderule SUBDIR += solanum SUBDIR += sowon SUBDIR += spacefm SUBDIR += spice-gtk SUBDIR += subsurface SUBDIR += synapse SUBDIR += syncthingtray SUBDIR += sysctlview SUBDIR += systempreferences SUBDIR += taskd SUBDIR += tasksh SUBDIR += taskwarrior SUBDIR += taskwarrior-tui SUBDIR += teapot SUBDIR += terminal-image-viewer SUBDIR += thinkingrock SUBDIR += thokr SUBDIR += timewarrior SUBDIR += todo SUBDIR += todour SUBDIR += toolboxkit SUBDIR += tpb SUBDIR += treeline SUBDIR += treesheets SUBDIR += ultralist SUBDIR += virt-manager SUBDIR += vit SUBDIR += vnote SUBDIR += vym SUBDIR += walld SUBDIR += when SUBDIR += wmpinboard SUBDIR += x026 SUBDIR += xannotate SUBDIR += xcalendar SUBDIR += xcbautolock SUBDIR += xchm SUBDIR += xdg-desktop-portal SUBDIR += xfce4-generic-slider SUBDIR += xfce4-notes-plugin SUBDIR += xfce4-notifyd SUBDIR += xfce4-tumbler SUBDIR += xfce4-volumed-pulse SUBDIR += xfce4-xkb-plugin SUBDIR += xmdiary SUBDIR += xneur SUBDIR += xpad SUBDIR += xpad3 SUBDIR += xpostit SUBDIR += xpostitPlus SUBDIR += xwrits SUBDIR += ydotool SUBDIR += zanshin SUBDIR += zim SUBDIR += znotes SUBDIR += zorro .include diff --git a/deskutils/plasma6-milou/Makefile b/deskutils/plasma6-milou/Makefile new file mode 100644 index 000000000000..a4c0d899fd4d --- /dev/null +++ b/deskutils/plasma6-milou/Makefile @@ -0,0 +1,14 @@ +PORTNAME= milou +DISTVERSION= ${KDE_PLASMA_VERSION} +CATEGORIES= deskutils kde kde-plasma + +MAINTAINER= kde@FreeBSD.org +COMMENT= Dedicated search application built on top of Baloo + +USES= cmake gettext gl kde:6 qt:6 tar:xz +USE_GL= gl opengl +USE_KDE= coreaddons i18n itemmodels libplasma runner service svg \ + ecm:build +USE_QT= base declarative + +.include diff --git a/deskutils/plasma6-milou/distinfo b/deskutils/plasma6-milou/distinfo new file mode 100644 index 000000000000..c1e678235c51 --- /dev/null +++ b/deskutils/plasma6-milou/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1701525049 +SHA256 (KDE/plasma/5.90.0/milou-5.90.0.tar.xz) = cab188bde4a611d6398a6c9a98dc39a23b978ba313087c9b08d66cfd5c52e334 +SIZE (KDE/plasma/5.90.0/milou-5.90.0.tar.xz) = 48960 diff --git a/deskutils/plasma6-milou/pkg-plist b/deskutils/plasma6-milou/pkg-plist new file mode 100644 index 000000000000..655a1e53a76a --- /dev/null +++ b/deskutils/plasma6-milou/pkg-plist @@ -0,0 +1,116 @@ +%%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/kde-qmlmodule.version +%%QT_QMLDIR%%/org/kde/milou/libmilouqmlplugin.so +%%QT_QMLDIR%%/org/kde/milou/milouqmlplugin.qmltypes +%%QT_QMLDIR%%/org/kde/milou/qmldir +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/bg/LC_MESSAGES/milou.mo +share/locale/bg/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/eo/LC_MESSAGES/milou.mo +share/locale/eo/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/hi/LC_MESSAGES/milou.mo +share/locale/hi/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/id/LC_MESSAGES/milou.mo +share/locale/id/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/ka/LC_MESSAGES/milou.mo +share/locale/ka/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/ml/LC_MESSAGES/milou.mo +share/locale/ml/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/sa/LC_MESSAGES/milou.mo +share/locale/sa/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/tg/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/ui/SearchField.qml +share/plasma/plasmoids/org.kde.milou/contents/ui/globals.js +share/plasma/plasmoids/org.kde.milou/contents/ui/main.qml +share/plasma/plasmoids/org.kde.milou/metadata.json diff --git a/deskutils/plasma6-sddm-kcm/Makefile b/deskutils/plasma6-sddm-kcm/Makefile new file mode 100644 index 000000000000..b00d13408466 --- /dev/null +++ b/deskutils/plasma6-sddm-kcm/Makefile @@ -0,0 +1,13 @@ +PORTNAME= sddm-kcm +DISTVERSION= ${KDE_PLASMA_VERSION} +CATEGORIES= deskutils kde kde-plasma + +MAINTAINER= kde@FreeBSD.org +COMMENT= Configuration module for SDDM + +USES= cmake gettext kde:6 qt:6 tar:xz +USE_KDE= archive auth coreaddons i18n kcmutils kio newstuff \ + ecm:build +USE_QT= base declarative + +.include diff --git a/deskutils/plasma6-sddm-kcm/distinfo b/deskutils/plasma6-sddm-kcm/distinfo new file mode 100644 index 000000000000..0c22a026cd59 --- /dev/null +++ b/deskutils/plasma6-sddm-kcm/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1701525049 +SHA256 (KDE/plasma/5.90.0/sddm-kcm-5.90.0.tar.xz) = 13ecaefd4c3b0e333432da226b9960956d8a4866cb2afbdc85953cf82098695f +SIZE (KDE/plasma/5.90.0/sddm-kcm-5.90.0.tar.xz) = 96032 diff --git a/deskutils/plasma6-sddm-kcm/pkg-plist b/deskutils/plasma6-sddm-kcm/pkg-plist new file mode 100644 index 000000000000..0c3c88b60fe6 --- /dev/null +++ b/deskutils/plasma6-sddm-kcm/pkg-plist @@ -0,0 +1,58 @@ +bin/sddmthemeinstaller +lib/libexec/kf6/kauth/kcmsddm_authhelper +%%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_sddm.so +share/applications/kcm_sddm.desktop +share/dbus-1/system-services/org.kde.kcontrol.kcmsddm.service +share/dbus-1/system.d/org.kde.kcontrol.kcmsddm.conf +share/knsrcfiles/sddmtheme.knsrc +share/locale/ar/LC_MESSAGES/kcm_sddm.mo +share/locale/ast/LC_MESSAGES/kcm_sddm.mo +share/locale/az/LC_MESSAGES/kcm_sddm.mo +share/locale/bg/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/eo/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/hi/LC_MESSAGES/kcm_sddm.mo +share/locale/hu/LC_MESSAGES/kcm_sddm.mo +share/locale/ia/LC_MESSAGES/kcm_sddm.mo +share/locale/id/LC_MESSAGES/kcm_sddm.mo +share/locale/it/LC_MESSAGES/kcm_sddm.mo +share/locale/ja/LC_MESSAGES/kcm_sddm.mo +share/locale/ka/LC_MESSAGES/kcm_sddm.mo +share/locale/ko/LC_MESSAGES/kcm_sddm.mo +share/locale/lt/LC_MESSAGES/kcm_sddm.mo +share/locale/ml/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/ta/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 diff --git a/deskutils/plasma6-xdg-desktop-portal-kde/Makefile b/deskutils/plasma6-xdg-desktop-portal-kde/Makefile new file mode 100644 index 000000000000..876d1c33a263 --- /dev/null +++ b/deskutils/plasma6-xdg-desktop-portal-kde/Makefile @@ -0,0 +1,20 @@ +PORTNAME= xdg-desktop-portal-kde +DISTVERSION= ${KDE_PLASMA_VERSION} +CATEGORIES= deskutils kde kde-plasma + +MAINTAINER= kde@FreeBSD.org +COMMENT= Backend implementation for xdg-desktop-portal that is using Qt/KDE + +BUILD_DEPENDS= ${LOCALBASE}/include/linux/input-event-codes.h:devel/evdev-proto \ + wayland-protocols>=0:graphics/wayland-protocols + +USES= cmake gettext kde:6 pkgconfig qt:6 tar:xz +USE_KDE= config coreaddons globalaccel guiaddons i18n iconthemes kio \ + kirigami2 notifications statusnotifieritem wayland \ + widgetsaddons windowsystem \ + ecm:build plasma-wayland-protocols:build +USE_QT= base declarative wayland + +CMAKE_ARGS= -DQT_MAJOR_VERSION=6 + +.include diff --git a/deskutils/plasma6-xdg-desktop-portal-kde/distinfo b/deskutils/plasma6-xdg-desktop-portal-kde/distinfo new file mode 100644 index 000000000000..1fce2a1363e8 --- /dev/null +++ b/deskutils/plasma6-xdg-desktop-portal-kde/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1701525116 +SHA256 (KDE/plasma/5.90.0/xdg-desktop-portal-kde-5.90.0.tar.xz) = c6cad48a78b50e403b4323bcedefef7d239ac82b46d8b2bd99943f236b1e9fdc +SIZE (KDE/plasma/5.90.0/xdg-desktop-portal-kde-5.90.0.tar.xz) = 158968 diff --git a/deskutils/plasma6-xdg-desktop-portal-kde/pkg-plist b/deskutils/plasma6-xdg-desktop-portal-kde/pkg-plist new file mode 100644 index 000000000000..bbcb39765f21 --- /dev/null +++ b/deskutils/plasma6-xdg-desktop-portal-kde/pkg-plist @@ -0,0 +1,56 @@ +lib/libexec/xdg-desktop-portal-kde +lib/systemd/user/plasma-xdg-desktop-portal-kde.service +share/applications/org.freedesktop.impl.portal.desktop.kde.desktop +share/dbus-1/services/org.freedesktop.impl.portal.desktop.kde.service +share/knotifications6/xdg-desktop-portal-kde.notifyrc +share/locale/ar/LC_MESSAGES/xdg-desktop-portal-kde.mo +share/locale/ast/LC_MESSAGES/xdg-desktop-portal-kde.mo +share/locale/az/LC_MESSAGES/xdg-desktop-portal-kde.mo +share/locale/bg/LC_MESSAGES/xdg-desktop-portal-kde.mo +share/locale/ca/LC_MESSAGES/xdg-desktop-portal-kde.mo +share/locale/ca@valencia/LC_MESSAGES/xdg-desktop-portal-kde.mo +share/locale/cs/LC_MESSAGES/xdg-desktop-portal-kde.mo +share/locale/da/LC_MESSAGES/xdg-desktop-portal-kde.mo +share/locale/de/LC_MESSAGES/xdg-desktop-portal-kde.mo +share/locale/el/LC_MESSAGES/xdg-desktop-portal-kde.mo +share/locale/en_GB/LC_MESSAGES/xdg-desktop-portal-kde.mo +share/locale/eo/LC_MESSAGES/xdg-desktop-portal-kde.mo +share/locale/es/LC_MESSAGES/xdg-desktop-portal-kde.mo +share/locale/et/LC_MESSAGES/xdg-desktop-portal-kde.mo +share/locale/eu/LC_MESSAGES/xdg-desktop-portal-kde.mo +share/locale/fi/LC_MESSAGES/xdg-desktop-portal-kde.mo +share/locale/fr/LC_MESSAGES/xdg-desktop-portal-kde.mo +share/locale/gl/LC_MESSAGES/xdg-desktop-portal-kde.mo +share/locale/he/LC_MESSAGES/xdg-desktop-portal-kde.mo +share/locale/hu/LC_MESSAGES/xdg-desktop-portal-kde.mo +share/locale/ia/LC_MESSAGES/xdg-desktop-portal-kde.mo +share/locale/id/LC_MESSAGES/xdg-desktop-portal-kde.mo +share/locale/it/LC_MESSAGES/xdg-desktop-portal-kde.mo +share/locale/ja/LC_MESSAGES/xdg-desktop-portal-kde.mo +share/locale/ka/LC_MESSAGES/xdg-desktop-portal-kde.mo +share/locale/ko/LC_MESSAGES/xdg-desktop-portal-kde.mo +share/locale/lt/LC_MESSAGES/xdg-desktop-portal-kde.mo +share/locale/ml/LC_MESSAGES/xdg-desktop-portal-kde.mo +share/locale/nl/LC_MESSAGES/xdg-desktop-portal-kde.mo +share/locale/nn/LC_MESSAGES/xdg-desktop-portal-kde.mo +share/locale/pa/LC_MESSAGES/xdg-desktop-portal-kde.mo +share/locale/pl/LC_MESSAGES/xdg-desktop-portal-kde.mo +share/locale/pt/LC_MESSAGES/xdg-desktop-portal-kde.mo +share/locale/pt_BR/LC_MESSAGES/xdg-desktop-portal-kde.mo +share/locale/ro/LC_MESSAGES/xdg-desktop-portal-kde.mo +share/locale/ru/LC_MESSAGES/xdg-desktop-portal-kde.mo +share/locale/sk/LC_MESSAGES/xdg-desktop-portal-kde.mo +share/locale/sl/LC_MESSAGES/xdg-desktop-portal-kde.mo +share/locale/sr/LC_MESSAGES/xdg-desktop-portal-kde.mo +share/locale/sr@ijekavian/LC_MESSAGES/xdg-desktop-portal-kde.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/xdg-desktop-portal-kde.mo +share/locale/sr@latin/LC_MESSAGES/xdg-desktop-portal-kde.mo +share/locale/sv/LC_MESSAGES/xdg-desktop-portal-kde.mo +share/locale/ta/LC_MESSAGES/xdg-desktop-portal-kde.mo +share/locale/tr/LC_MESSAGES/xdg-desktop-portal-kde.mo +share/locale/uk/LC_MESSAGES/xdg-desktop-portal-kde.mo +share/locale/zh_CN/LC_MESSAGES/xdg-desktop-portal-kde.mo +share/locale/zh_TW/LC_MESSAGES/xdg-desktop-portal-kde.mo +share/qlogging-categories6/xdp-kde.categories +share/xdg-desktop-portal/kde-portals.conf +share/xdg-desktop-portal/portals/kde.portal diff --git a/devel/Makefile b/devel/Makefile index db5ca93dbac9..0df33d6fa5b0 100644 --- a/devel/Makefile +++ b/devel/Makefile @@ -1,7928 +1,7931 @@ COMMENT = Development utilities SUBDIR += 9base SUBDIR += ElectricFence 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-RcppProgress SUBDIR += R-cran-Rdpack 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-blob SUBDIR += R-cran-brio SUBDIR += R-cran-broom SUBDIR += R-cran-caTools SUBDIR += R-cran-callr SUBDIR += R-cran-caret SUBDIR += R-cran-checkmate SUBDIR += R-cran-chk SUBDIR += R-cran-chron SUBDIR += R-cran-classInt SUBDIR += R-cran-cli SUBDIR += R-cran-cliapp SUBDIR += R-cran-clipr SUBDIR += R-cran-clisymbols SUBDIR += R-cran-clock SUBDIR += R-cran-collapse SUBDIR += R-cran-covr SUBDIR += R-cran-cpp11 SUBDIR += R-cran-crayon SUBDIR += R-cran-cyclocomp SUBDIR += R-cran-data.table SUBDIR += R-cran-decor SUBDIR += R-cran-desc SUBDIR += R-cran-devtools SUBDIR += R-cran-diffobj SUBDIR += R-cran-doParallel SUBDIR += R-cran-ellipsis SUBDIR += R-cran-evaluate SUBDIR += R-cran-fansi SUBDIR += R-cran-filelock SUBDIR += R-cran-fontawesome SUBDIR += R-cran-foreach SUBDIR += R-cran-future SUBDIR += R-cran-future.apply SUBDIR += R-cran-gbRd SUBDIR += R-cran-gbm SUBDIR += R-cran-gdata SUBDIR += R-cran-generics SUBDIR += R-cran-gert SUBDIR += R-cran-getopt SUBDIR += R-cran-git2r SUBDIR += R-cran-glmnet SUBDIR += R-cran-globals SUBDIR += R-cran-glue SUBDIR += R-cran-gmodels SUBDIR += R-cran-gsubfn SUBDIR += R-cran-gtools SUBDIR += R-cran-hardhat SUBDIR += R-cran-hms SUBDIR += R-cran-ini SUBDIR += R-cran-iterators SUBDIR += R-cran-itertools SUBDIR += R-cran-kit SUBDIR += R-cran-later SUBDIR += R-cran-lifecycle SUBDIR += R-cran-lintr SUBDIR += R-cran-listenv SUBDIR += R-cran-lubridate SUBDIR += R-cran-magrittr SUBDIR += R-cran-memoise SUBDIR += R-cran-microbenchmark SUBDIR += R-cran-mockery SUBDIR += R-cran-msm SUBDIR += R-cran-multicool SUBDIR += R-cran-optparse SUBDIR += R-cran-pak SUBDIR += R-cran-parallelly SUBDIR += R-cran-parsedate SUBDIR += R-cran-pillar SUBDIR += R-cran-pkgbuild SUBDIR += R-cran-pkgcache SUBDIR += R-cran-pkgconfig SUBDIR += R-cran-pkgdepends SUBDIR += R-cran-pkgload SUBDIR += R-cran-pkgmaker SUBDIR += R-cran-pkgsearch SUBDIR += R-cran-plogr SUBDIR += R-cran-plyr SUBDIR += R-cran-praise SUBDIR += R-cran-prettycode SUBDIR += R-cran-prettyunits SUBDIR += R-cran-progress SUBDIR += R-cran-progressr SUBDIR += R-cran-promises SUBDIR += R-cran-proto SUBDIR += R-cran-purrr SUBDIR += R-cran-rJava SUBDIR += R-cran-randomForest SUBDIR += R-cran-rappdirs SUBDIR += R-cran-rcmdcheck SUBDIR += R-cran-registry SUBDIR += R-cran-rematch2 SUBDIR += R-cran-remotes 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-roxygen2 SUBDIR += R-cran-rprojroot SUBDIR += R-cran-rstudioapi SUBDIR += R-cran-rversions SUBDIR += R-cran-sessioninfo SUBDIR += R-cran-sfsmisc SUBDIR += R-cran-sourcetools SUBDIR += R-cran-sys SUBDIR += R-cran-testit SUBDIR += R-cran-testthat SUBDIR += R-cran-tibble SUBDIR += R-cran-tidyr SUBDIR += R-cran-tidyselect SUBDIR += R-cran-timechange SUBDIR += R-cran-tinytest SUBDIR += R-cran-tzdb SUBDIR += R-cran-usethis SUBDIR += R-cran-uuid SUBDIR += R-cran-vcd SUBDIR += R-cran-vctrs SUBDIR += R-cran-waldo SUBDIR += R-cran-whisker SUBDIR += R-cran-whoami SUBDIR += R-cran-withr SUBDIR += R-cran-zeallot SUBDIR += RStudio SUBDIR += SpecTcl SUBDIR += aarch64-none-elf-gcc SUBDIR += abi-compliance-checker SUBDIR += abseil SUBDIR += acme SUBDIR += acsccid SUBDIR += activitymail SUBDIR += actor-framework SUBDIR += adacurses SUBDIR += aegis SUBDIR += agar SUBDIR += aifad SUBDIR += aixlog SUBDIR += ald SUBDIR += alire SUBDIR += allegro SUBDIR += allegro5 SUBDIR += amber SUBDIR += aml SUBDIR += ammonite SUBDIR += amqp-cpp SUBDIR += android-tools SUBDIR += anjuta SUBDIR += antlr SUBDIR += antlr3 SUBDIR += antlr4 SUBDIR += apache-ant SUBDIR += apache-commons-configuration SUBDIR += apache-commons-daemon SUBDIR += apache-commons-io SUBDIR += apache-commons-jxpath SUBDIR += apache-log4j2 SUBDIR += apache-rat SUBDIR += aphpbreakdown SUBDIR += aphpunit SUBDIR += api-sanity-autotest SUBDIR += apitrace SUBDIR += app-builder SUBDIR += appstream SUBDIR += appstream-compose SUBDIR += appstream-glib SUBDIR += appstream-qt SUBDIR += apr1 SUBDIR += arachne-pnr SUBDIR += arcanist SUBDIR += arcanist-lib 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 += argc SUBDIR += argdata SUBDIR += argobots SUBDIR += argouml SUBDIR += argp-standalone SUBDIR += argparse SUBDIR += args SUBDIR += argtable SUBDIR += arm-elf-binutils SUBDIR += arm-none-eabi-gcc SUBDIR += arm-none-eabi-newlib SUBDIR += aros-sdk SUBDIR += arpc SUBDIR += art SUBDIR += artifactory SUBDIR += asfml SUBDIR += asl SUBDIR += asmjit SUBDIR += asmutils SUBDIR += asmx SUBDIR += astah-community SUBDIR += astyle SUBDIR += asyncplusplus SUBDIR += atf SUBDIR += athens SUBDIR += atlantis SUBDIR += atlas SUBDIR += atlas-devel SUBDIR += autobook SUBDIR += autoconf SUBDIR += autoconf-archive SUBDIR += autoconf-switch SUBDIR += autoconf2.13 SUBDIR += autoconf2.69 SUBDIR += autodia SUBDIR += autogen SUBDIR += automake SUBDIR += autotools SUBDIR += avalon-framework SUBDIR += avarice SUBDIR += avce00 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-c-common SUBDIR += aws-c-compression SUBDIR += aws-c-event-stream SUBDIR += aws-c-http SUBDIR += aws-c-io SUBDIR += aws-c-mqtt SUBDIR += aws-c-s3 SUBDIR += aws-c-sdkutils SUBDIR += aws-checksums SUBDIR += aws-crt-cpp SUBDIR += aws-sdk-cpp SUBDIR += aws-sdk-php SUBDIR += axmldec SUBDIR += ayatana-ido SUBDIR += b2 SUBDIR += babelflow SUBDIR += babeltrace SUBDIR += bacnet-stack SUBDIR += bacon SUBDIR += bam SUBDIR += bashdb SUBDIR += basu SUBDIR += bats-core SUBDIR += bazel SUBDIR += bazel-buildtools SUBDIR += bazel029 SUBDIR += bazel5 SUBDIR += bbparse SUBDIR += bcc SUBDIR += bcpp SUBDIR += bcunit SUBDIR += bear SUBDIR += benchmark SUBDIR += bencodetools SUBDIR += bennugd-core SUBDIR += bennugd-modules SUBDIR += bfg SUBDIR += bglibs SUBDIR += binaryen SUBDIR += bingrep SUBDIR += binutils SUBDIR += bison SUBDIR += bit SUBDIR += bitkeeper SUBDIR += blame SUBDIR += blitz SUBDIR += bloaty SUBDIR += bloomberg-bde SUBDIR += blueprint-compiler SUBDIR += bmake SUBDIR += bmkdep SUBDIR += bnf SUBDIR += boehm-gc 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 += boxfort SUBDIR += bpython SUBDIR += brz SUBDIR += bsdbuild SUBDIR += bsdcflow SUBDIR += bsddialog SUBDIR += bsdowl SUBDIR += bugzilla44 SUBDIR += bugzilla50 SUBDIR += build SUBDIR += build2 SUBDIR += buildkite-agent SUBDIR += buildstream SUBDIR += bullet SUBDIR += bunyan SUBDIR += busd SUBDIR += busybee SUBDIR += byacc SUBDIR += byaccj SUBDIR += c2mdoc SUBDIR += c4core SUBDIR += calibrator SUBDIR += caliper SUBDIR += capnproto SUBDIR += capnproto1 SUBDIR += capslock SUBDIR += capstone SUBDIR += capstone4 SUBDIR += cargo-bloat SUBDIR += cargo-c SUBDIR += cargo-depgraph SUBDIR += cargo-generate SUBDIR += cargo-mutants SUBDIR += cask SUBDIR += catch SUBDIR += catch2 SUBDIR += cbang SUBDIR += cbfmt SUBDIR += cbrowser SUBDIR += cc65 SUBDIR += ccache SUBDIR += ccache-static SUBDIR += ccache4 SUBDIR += cccc SUBDIR += ccdoc SUBDIR += ccls SUBDIR += ccrtp SUBDIR += cctz SUBDIR += cdash SUBDIR += cdecl SUBDIR += cdialog SUBDIR += cdk SUBDIR += cereal SUBDIR += cervisia SUBDIR += cflow SUBDIR += cflow2vcg SUBDIR += cfr SUBDIR += cgdb SUBDIR += cgilib SUBDIR += cgit SUBDIR += cgprof SUBDIR += charva SUBDIR += check SUBDIR += checkbashisms SUBDIR += checkheaders SUBDIR += chroma SUBDIR += chrpath SUBDIR += chruby SUBDIR += cil SUBDIR += cirrus-cli 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 += clazy SUBDIR += cld2 SUBDIR += clewn SUBDIR += cli SUBDIR += cli11 SUBDIR += clig SUBDIR += cligen SUBDIR += clinfo SUBDIR += clipp SUBDIR += clisp-hyperspec SUBDIR += clixon SUBDIR += clojure-cider SUBDIR += cloudabi SUBDIR += cloudabi-toolchain SUBDIR += clthreads SUBDIR += cltune SUBDIR += clxclient SUBDIR += cmake SUBDIR += cmake-core SUBDIR += cmake-doc SUBDIR += cmake-fedora SUBDIR += cmake-gui SUBDIR += cmake-man SUBDIR += cmake-modules-webos SUBDIR += cmakedoc SUBDIR += cmph SUBDIR += cmunge SUBDIR += coccinelle SUBDIR += cocogitto SUBDIR += codeblocks SUBDIR += codequery SUBDIR += codesearch-py SUBDIR += codeville SUBDIR += codeworker SUBDIR += collada-dom SUBDIR += color SUBDIR += colorgcc SUBDIR += colormake SUBDIR += commit-patch SUBDIR += commoncpp SUBDIR += compiler-rt SUBDIR += compiz-bcop SUBDIR += concurrencpp SUBDIR += concurrencykit SUBDIR += concurrentqueue SUBDIR += configkit SUBDIR += cons SUBDIR += cons-test SUBDIR += containers SUBDIR += convco SUBDIR += cook SUBDIR += corrade SUBDIR += courier-unicode SUBDIR += coursier SUBDIR += covtool SUBDIR += cpan-upload SUBDIR += cpan-upload-http SUBDIR += cpp-hocon SUBDIR += cpp-netlib SUBDIR += cpp-utilities SUBDIR += cpp2py SUBDIR += cppcheck SUBDIR += cppi SUBDIR += cpplint SUBDIR += cpprestsdk SUBDIR += cpptest SUBDIR += cppunit SUBDIR += cppurses SUBDIR += cpputest SUBDIR += cproto SUBDIR += cpu_features SUBDIR += cpu_rec_rs SUBDIR += cquery SUBDIR += cram SUBDIR += crc32c SUBDIR += creduce SUBDIR += critcl SUBDIR += criterion SUBDIR += cscope SUBDIR += cscout SUBDIR += csfml SUBDIR += csmith SUBDIR += csoap SUBDIR += cssc SUBDIR += ctags SUBDIR += ctre SUBDIR += ctypes.sh SUBDIR += cunit SUBDIR += cut SUBDIR += cutils SUBDIR += cutter SUBDIR += cvise SUBDIR += cvs SUBDIR += cvs+ipv6 SUBDIR += cvs-devel SUBDIR += cvs-syncmail SUBDIR += cvs2cl SUBDIR += cvs2darcs SUBDIR += cvs2html 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 += cwrap SUBDIR += cxmon SUBDIR += cxref SUBDIR += cxxopts SUBDIR += cxxtest SUBDIR += cxxtools SUBDIR += d-feet SUBDIR += d-scanner SUBDIR += d-spy SUBDIR += darts SUBDIR += dash.el SUBDIR += dasm SUBDIR += datadraw SUBDIR += date SUBDIR += dbus SUBDIR += dbus-c++ SUBDIR += dbus-glib SUBDIR += dbus-java SUBDIR += dbus-sharp SUBDIR += dbus-sharp-glib SUBDIR += dbus-tcl SUBDIR += dcd-client SUBDIR += dcd-server SUBDIR += dconf SUBDIR += dconf-editor SUBDIR += debugedit SUBDIR += dee SUBDIR += deforaos-libsystem SUBDIR += deheader SUBDIR += delta SUBDIR += delve SUBDIR += deployer SUBDIR += derelict-sdl2 SUBDIR += derelict-util SUBDIR += desed SUBDIR += desktop-file-utils SUBDIR += dev86 SUBDIR += devhelp SUBDIR += devtodo SUBDIR += dfuife-curses SUBDIR += dia2code SUBDIR += dia2code+ SUBDIR += ding-libs SUBDIR += dispy SUBDIR += distcc SUBDIR += distel SUBDIR += distorm SUBDIR += djgpp-binutils SUBDIR += dlib SUBDIR += dmake SUBDIR += dmalloc SUBDIR += dmlc-core SUBDIR += dmucs SUBDIR += docopt.cpp SUBDIR += doctest SUBDIR += doctorj SUBDIR += dolphin-plugins SUBDIR += dotconf SUBDIR += double-conversion SUBDIR += doxygen SUBDIR += dparser SUBDIR += dragon SUBDIR += ds2 SUBDIR += dsymbol SUBDIR += dtool SUBDIR += dub SUBDIR += dupl SUBDIR += duplo SUBDIR += dura SUBDIR += dwarf2json SUBDIR += dwarfdump SUBDIR += dwarves SUBDIR += dwz SUBDIR += dxa65 SUBDIR += dyncall SUBDIR += e00compr SUBDIR += eastl SUBDIR += easy-profiler SUBDIR += easyexif SUBDIR += easygit SUBDIR += easyloggingpp SUBDIR += ebnf2yacc SUBDIR += ecgi SUBDIR += edi SUBDIR += editline SUBDIR += efivar SUBDIR += efl SUBDIR += egypt SUBDIR += eiffelstudio SUBDIR += electron24 SUBDIR += electron25 SUBDIR += electron26 SUBDIR += elf SUBDIR += elf-dissector SUBDIR += elfcat SUBDIR += elfio SUBDIR += elfkickers SUBDIR += elfsh SUBDIR += elfutils SUBDIR += elixir-hex SUBDIR += elixir-make SUBDIR += elm-format SUBDIR += embb SUBDIR += emscripten SUBDIR += entt SUBDIR += envsubst SUBDIR += epl.el SUBDIR += epm SUBDIR += eql5 SUBDIR += eric6 SUBDIR += eris SUBDIR += erlang-cl SUBDIR += erlang-native-compiler SUBDIR += erlang-rebar3_hex SUBDIR += erlang-recon SUBDIR += es-eric6 SUBDIR += esbuild SUBDIR += estd SUBDIR += etcd SUBDIR += etcd31 SUBDIR += etcd32 SUBDIR += etcd33 SUBDIR += etcd34 SUBDIR += etl SUBDIR += evcxr-jupyter SUBDIR += evdev-proto SUBDIR += evemu SUBDIR += eventxx SUBDIR += exercisix SUBDIR += exomizer SUBDIR += f77flow SUBDIR += fam SUBDIR += fastcrc SUBDIR += fatal SUBDIR += fbthrift SUBDIR += fc++ SUBDIR += fccf SUBDIR += fcppt SUBDIR += fhist SUBDIR += fifechan SUBDIR += fire-hpp SUBDIR += firmware-utils SUBDIR += fistgen SUBDIR += flatbuffers SUBDIR += flatbuffers205 SUBDIR += flatcc SUBDIR += flatzebra SUBDIR += flex-sdk SUBDIR += flex-sdk35 SUBDIR += flexdock SUBDIR += flexjson SUBDIR += flyspray SUBDIR += fmake SUBDIR += fnc SUBDIR += fnm SUBDIR += folly SUBDIR += forge SUBDIR += forge-devel SUBDIR += fortran-utils SUBDIR += fortytwo-encore SUBDIR += fossil SUBDIR += fossology-nomos-standalone SUBDIR += fp16 SUBDIR += fpp SUBDIR += freebsd-gcc12 SUBDIR += freebsd-gcc13 SUBDIR += freebsd-gcc9 SUBDIR += freebsd-git-devtools SUBDIR += freebsd-sysroot SUBDIR += frink SUBDIR += fsmtrie SUBDIR += fstrcmp SUBDIR += fstrm SUBDIR += fsx SUBDIR += ftjam SUBDIR += ftnchek SUBDIR += ftxui SUBDIR += fuel SUBDIR += functionalplus SUBDIR += fungw SUBDIR += fuzzylite SUBDIR += fxdiv SUBDIR += g-golf SUBDIR += g-wrap SUBDIR += ga SUBDIR += gaa SUBDIR += gamin SUBDIR += gammaray SUBDIR += gauche-readline SUBDIR += gaul SUBDIR += gbump SUBDIR += gcc-arm-embedded SUBDIR += gcc-msp430-ti-toolchain SUBDIR += gccmakedep SUBDIR += gcem SUBDIR += gcli SUBDIR += gconf2 SUBDIR += gconfmm26 SUBDIR += gdb SUBDIR += gdcm SUBDIR += gdmd 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-doc SUBDIR += geany-plugin-extrasel 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-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-vimode SUBDIR += geany-plugin-workbench SUBDIR += geany-plugin-xmlsnippets SUBDIR += geany-plugins SUBDIR += geany-plugins-l10n SUBDIR += geany-themes SUBDIR += gearmand SUBDIR += generate SUBDIR += gengetopt SUBDIR += genht SUBDIR += genie SUBDIR += genromfs SUBDIR += getoptions SUBDIR += gettext SUBDIR += gettext-lint SUBDIR += gettext-msghack SUBDIR += gettext-po-mode SUBDIR += gettext-runtime SUBDIR += gettext-tiny SUBDIR += gettext-tools SUBDIR += gflags SUBDIR += gfold SUBDIR += gh SUBDIR += ghidra SUBDIR += ghostie SUBDIR += ghq SUBDIR += ghub SUBDIR += ghub-devel SUBDIR += gindent SUBDIR += gio-sharp SUBDIR += git SUBDIR += git-absorb SUBDIR += git-branchless SUBDIR += git-bug SUBDIR += git-cinnabar SUBDIR += git-cliff SUBDIR += git-codereview SUBDIR += git-cola SUBDIR += git-cvs SUBDIR += git-delta SUBDIR += git-extras SUBDIR += git-filter-repo SUBDIR += git-gui SUBDIR += git-lab SUBDIR += git-lfs SUBDIR += git-merge-changelog SUBDIR += git-modes SUBDIR += git-p4 SUBDIR += git-prev-next SUBDIR += git-review SUBDIR += git-subrepo SUBDIR += git-svn SUBDIR += git-town SUBDIR += git-workspace SUBDIR += gitaly SUBDIR += gitflow SUBDIR += gitg SUBDIR += github-backup-utils SUBDIR += gitinspector SUBDIR += gitlab-runner SUBDIR += gitlab-shell SUBDIR += gitleaks SUBDIR += gitlist SUBDIR += gitolite SUBDIR += gitolite2 SUBDIR += gitoxide SUBDIR += gitqlient SUBDIR += gittrac SUBDIR += gitty SUBDIR += gitui SUBDIR += glab SUBDIR += glade SUBDIR += glademm SUBDIR += glib20 SUBDIR += glibd SUBDIR += glibmm SUBDIR += glibmm26 SUBDIR += glitter SUBDIR += gllvm SUBDIR += global SUBDIR += glog SUBDIR += glrparser SUBDIR += glui SUBDIR += gmake SUBDIR += gn SUBDIR += gnome-builder SUBDIR += gnome-common SUBDIR += gnu-efi SUBDIR += gnucflow SUBDIR += gnulib SUBDIR += gnulibiberty SUBDIR += gnustep SUBDIR += gnustep-make SUBDIR += go-bindata SUBDIR += go-bindata-assetfs SUBDIR += go-git SUBDIR += go-perf SUBDIR += go-protobuf SUBDIR += go-tools SUBDIR += go-wire SUBDIR += gob2 SUBDIR += gobject-introspection SUBDIR += gocheese SUBDIR += gocritic SUBDIR += godot SUBDIR += godot-tools SUBDIR += godot35 SUBDIR += godot35-tools SUBDIR += goffice SUBDIR += gogs SUBDIR += golangci-lint SUBDIR += golint SUBDIR += google-cloud-cpp SUBDIR += google-perftools SUBDIR += google-styleguide SUBDIR += googletest SUBDIR += gopls SUBDIR += goprotobuf SUBDIR += goredo SUBDIR += goreleaser SUBDIR += gorm SUBDIR += goswagger SUBDIR += got SUBDIR += gpds SUBDIR += gperf SUBDIR += gpm SUBDIR += gprbuild SUBDIR += gputils SUBDIR += gradle SUBDIR += gradle-completion SUBDIR += gradle5 SUBDIR += gradle6 SUBDIR += gradle62 SUBDIR += gradle761 SUBDIR += grantlee5 SUBDIR += grcov SUBDIR += grex SUBDIR += grpc SUBDIR += grpc142 SUBDIR += grv SUBDIR += gsettings-desktop-schemas SUBDIR += gsoap SUBDIR += gstreamer1-plugins-soup SUBDIR += gtgt SUBDIR += gtranslator SUBDIR += guichan SUBDIR += guile-lib SUBDIR += gum SUBDIR += gumbo SUBDIR += gvfs SUBDIR += gvp SUBDIR += gwenhywfar SUBDIR += gwenhywfar-fox16 SUBDIR += gwenhywfar-gtk2 SUBDIR += gwenhywfar-gtk3 SUBDIR += gwenhywfar-qt5 SUBDIR += gzstream SUBDIR += hapy SUBDIR += hare SUBDIR += hcs12mem SUBDIR += heaptrack SUBDIR += heimdall SUBDIR += heirloom-devtools SUBDIR += hexcompare SUBDIR += hexd SUBDIR += hgreviewboard SUBDIR += hgsvn SUBDIR += highlighterkit SUBDIR += highway SUBDIR += hoel SUBDIR += hotspot SUBDIR += hp48cc SUBDIR += hp48xgcc SUBDIR += hpx SUBDIR += hs-ShellCheck SUBDIR += hs-alex SUBDIR += hs-cabal-install SUBDIR += hs-cpphs SUBDIR += hs-darcs SUBDIR += hs-ghc-events SUBDIR += hs-ghcprofview SUBDIR += hs-git-annex SUBDIR += hs-git-brunch SUBDIR += hs-happy SUBDIR += hs-haskell-language-server SUBDIR += hs-hasktags SUBDIR += hs-hlint SUBDIR += hs-hoogle SUBDIR += hs-hpack SUBDIR += hs-hspec-discover SUBDIR += hs-mueval SUBDIR += hs-ormolu SUBDIR += hs-profiteur SUBDIR += hs-shake SUBDIR += hs-spago SUBDIR += hs-threadscope SUBDIR += htable SUBDIR += hub SUBDIR += hwloc SUBDIR += hwloc2 SUBDIR += hyperscan SUBDIR += ice SUBDIR += ice37 SUBDIR += icestorm SUBDIR += icmake SUBDIR += icontheme SUBDIR += icu SUBDIR += icu-le-hb SUBDIR += icu-lx SUBDIR += idutils SUBDIR += ignition-cmake SUBDIR += ignition-common SUBDIR += ignition-msgs SUBDIR += ignition-plugin SUBDIR += ignition-tools SUBDIR += ikos SUBDIR += imake SUBDIR += immer SUBDIR += imtui SUBDIR += inastemp SUBDIR += include-what-you-use SUBDIR += indi SUBDIR += indicators SUBDIR += influx-pkg-config SUBDIR += inifiled SUBDIR += inih SUBDIR += inilib SUBDIR += inilike SUBDIR += iniparser SUBDIR += initutil SUBDIR += injeqt SUBDIR += intel-graphics-compiler SUBDIR += interactive_rebase_tool SUBDIR += ioncube SUBDIR += ipython SUBDIR += ireport SUBDIR += isa-l SUBDIR += isfreedesktop SUBDIR += isl SUBDIR += ispc SUBDIR += ittapi SUBDIR += ivykis SUBDIR += jam SUBDIR += jansson SUBDIR += java-findbugs SUBDIR += jclassinfo SUBDIR += jcmdline SUBDIR += jech-dht SUBDIR += jenkins SUBDIR += jenkins-lts SUBDIR += jetbrains-clion SUBDIR += jetbrains-goland SUBDIR += jetbrains-phpstorm SUBDIR += jetbrains-pty4j SUBDIR += jetbrains-sqlite SUBDIR += jetbrains-webstorm SUBDIR += jgoodies-looks SUBDIR += jiic SUBDIR += jiri SUBDIR += jline SUBDIR += jna SUBDIR += jrtplib SUBDIR += jsap SUBDIR += jsl SUBDIR += jsmin SUBDIR += json-c SUBDIR += json-dto SUBDIR += json-fortran SUBDIR += json-glib SUBDIR += jsoncpp SUBDIR += jsonnet SUBDIR += jsonrpc-glib SUBDIR += juce SUBDIR += juce706 SUBDIR += judy SUBDIR += jwasm SUBDIR += kBuild SUBDIR += kapptemplate SUBDIR += kcachegrind SUBDIR += kconfig-frontends SUBDIR += kcov SUBDIR += kdbg SUBDIR += kde-dev-scripts SUBDIR += kde-dev-utils SUBDIR += kdesdk SUBDIR += kdesdk-kio SUBDIR += kdesdk-thumbnailers SUBDIR += kdesvn SUBDIR += kdev-php SUBDIR += kdev-python SUBDIR += kdevelop SUBDIR += kdevelop-pg-qt SUBDIR += kerl 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 += kf6-extra-cmake-modules SUBDIR += kf6-kapidox SUBDIR += kf6-kauth SUBDIR += kf6-kbookmarks SUBDIR += kf6-kcmutils SUBDIR += kf6-kconfig SUBDIR += kf6-kcoreaddons SUBDIR += kf6-kcrash SUBDIR += kf6-kdbusaddons SUBDIR += kf6-kdeclarative SUBDIR += kf6-kdoctools SUBDIR += kf6-kfilemetadata SUBDIR += kf6-ki18n SUBDIR += kf6-kidletime SUBDIR += kf6-kio SUBDIR += kf6-kitemmodels SUBDIR += kf6-knewstuff SUBDIR += kf6-knotifications SUBDIR += kf6-knotifyconfig SUBDIR += kf6-kpackage SUBDIR += kf6-kparts SUBDIR += kf6-kpeople SUBDIR += kf6-kpty SUBDIR += kf6-kservice SUBDIR += kf6-ktexteditor SUBDIR += kf6-ktexttemplate SUBDIR += kf6-kunitconversion SUBDIR += kf6-solid SUBDIR += kf6-threadweaver SUBDIR += kio-extras SUBDIR += kirigami-gallery SUBDIR += klib SUBDIR += kms-cmake-utils SUBDIR += kodi-platform SUBDIR += kokkos SUBDIR += kommit SUBDIR += kore SUBDIR += kpublictransport SUBDIR += kronosnet SUBDIR += ksql SUBDIR += ktextaddons SUBDIR += kyra SUBDIR += kyua SUBDIR += lab SUBDIR += lager SUBDIR += lasi SUBDIR += lattice-ice40-examples-hx1k SUBDIR += lattice-ice40-examples-hx8k SUBDIR += lattice-ice40-tools SUBDIR += lazygit SUBDIR += lcov SUBDIR += leaktracer SUBDIR += leatherman SUBDIR += lefthook SUBDIR += leiningen SUBDIR += lemon SUBDIR += lets SUBDIR += level-zero SUBDIR += lfcbase SUBDIR += lfcxml SUBDIR += libCello SUBDIR += libIDL SUBDIR += libPropList SUBDIR += libabigail SUBDIR += libac SUBDIR += libafterbase SUBDIR += libantlr3c SUBDIR += libantlr4 SUBDIR += libappindicator 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 += libayatana-appindicator SUBDIR += libayatana-indicator SUBDIR += libb2 SUBDIR += libbacktrace SUBDIR += libbde SUBDIR += libbegemot SUBDIR += libbfd SUBDIR += libbinio SUBDIR += libbpfjit SUBDIR += libbson SUBDIR += libburn SUBDIR += libcbor SUBDIR += libccid SUBDIR += libcdada SUBDIR += libcdb SUBDIR += libcds SUBDIR += libcfu SUBDIR += libchipcard SUBDIR += libcidr SUBDIR += libcii SUBDIR += libcircllhist SUBDIR += libcjson SUBDIR += libclc SUBDIR += libcli SUBDIR += libconcurrent SUBDIR += libconfig SUBDIR += libconfuse SUBDIR += libcreg SUBDIR += libcrossguid SUBDIR += libcsptr SUBDIR += libcuckoo SUBDIR += libcutl SUBDIR += libcwd SUBDIR += libdaemon SUBDIR += libdap SUBDIR += libdatadog SUBDIR += libdatovka SUBDIR += libdatrie SUBDIR += libdbusmenu SUBDIR += libdbusmenu-qt SUBDIR += libddoc SUBDIR += libddwaf SUBDIR += libdevq SUBDIR += libdfui SUBDIR += libdill SUBDIR += libdisasm SUBDIR += libdisorder SUBDIR += libdispatch SUBDIR += libdistance SUBDIR += libdlmalloc SUBDIR += libdnsres SUBDIR += libdombey SUBDIR += libdparse SUBDIR += libds SUBDIR += libdsp SUBDIR += libdwarf SUBDIR += libe SUBDIR += libedit SUBDIR += libegit2 SUBDIR += libeio SUBDIR += libelf SUBDIR += libepoll-shim SUBDIR += libepp-nicbr SUBDIR += liberasurecode SUBDIR += libesedb SUBDIR += libestr SUBDIR += libev SUBDIR += libevdev SUBDIR += libevdevplus SUBDIR += libevent SUBDIR += libevent-devel SUBDIR += libevt SUBDIR += libevtx SUBDIR += libewf SUBDIR += libexplain SUBDIR += libfaketime SUBDIR += libfastcommon SUBDIR += libfastjson SUBDIR += libffcall SUBDIR += libffi SUBDIR += libffi321 SUBDIR += libffi33 SUBDIR += libfirm SUBDIR += libfixposix SUBDIR += libflatarray SUBDIR += libfmt SUBDIR += libfort SUBDIR += libfortuna SUBDIR += libfreefare SUBDIR += libfsapfs SUBDIR += libfsext SUBDIR += libfsfat SUBDIR += libfshfs SUBDIR += libfsntfs SUBDIR += libfsxfs SUBDIR += libftdi SUBDIR += libftdi1 SUBDIR += libfwnt SUBDIR += libfwsi SUBDIR += libg19 SUBDIR += libg19draw SUBDIR += libgamepad SUBDIR += libgdata SUBDIR += libgee SUBDIR += libgee06 SUBDIR += libgetline SUBDIR += libght SUBDIR += libgit2 SUBDIR += libgit2-glib SUBDIR += libglade2 SUBDIR += libglademm24 SUBDIR += libgnt SUBDIR += libgnuregex SUBDIR += libgpc SUBDIR += libgpkg SUBDIR += libgpr SUBDIR += libgrading SUBDIR += libgraphqlparser SUBDIR += libgsf SUBDIR += libgta SUBDIR += libgtop SUBDIR += libgudev SUBDIR += libgusb SUBDIR += libgutenfetch SUBDIR += libheinz SUBDIR += libhoard SUBDIR += libhtp SUBDIR += libibuddy SUBDIR += libical SUBDIR += libindicator SUBDIR += libinjection SUBDIR += libinotify SUBDIR += libiqxmlrpc SUBDIR += libisofs SUBDIR += libixp SUBDIR += libjitterentropy SUBDIR += libjodycode SUBDIR += libk8055 SUBDIR += libkiwix SUBDIR += libklel SUBDIR += liblangtag SUBDIR += liblas SUBDIR += liblnk SUBDIR += liblockfile SUBDIR += liblogging SUBDIR += liblognorm SUBDIR += liblouis SUBDIR += liblpm SUBDIR += libltdl SUBDIR += libluksde SUBDIR += liblxqt SUBDIR += libmaa SUBDIR += libmatheval SUBDIR += libmatthew SUBDIR += libmba SUBDIR += libmcfp SUBDIR += libmill SUBDIR += libmimedir SUBDIR += libmodi SUBDIR += libmowgli SUBDIR += libmowgli2 SUBDIR += libmpcbdm SUBDIR += libmsiecf SUBDIR += libmsocket SUBDIR += libmtdev SUBDIR += libmtrie SUBDIR += libmustache SUBDIR += libnaji SUBDIR += libnest2d-ultimaker SUBDIR += libnfc SUBDIR += libnjs SUBDIR += libnotify SUBDIR += libnsutils SUBDIR += liboil SUBDIR += libolecf SUBDIR += libopenbsd SUBDIR += libopencm3 SUBDIR += libopentracing SUBDIR += libopkele SUBDIR += liborcus SUBDIR += libosinfo SUBDIR += libowfat SUBDIR += libpafe SUBDIR += libpafe-ruby SUBDIR += libparserutils SUBDIR += libpasori SUBDIR += libpci SUBDIR += libpciaccess SUBDIR += libpcl SUBDIR += libpdel SUBDIR += libpeak SUBDIR += libpeas SUBDIR += libpff SUBDIR += libphdi SUBDIR += libphk SUBDIR += libphonenumber SUBDIR += libplist SUBDIR += libpo6 SUBDIR += libpololu-avr SUBDIR += libpru SUBDIR += libqb SUBDIR += libqcow SUBDIR += libqsbr SUBDIR += libqtxdg SUBDIR += libr3 SUBDIR += librcc SUBDIR += librcd SUBDIR += libreadline-java SUBDIR += libregf SUBDIR += librelp SUBDIR += librest SUBDIR += librevisa SUBDIR += librevisa-vish SUBDIR += librevisa-vxi SUBDIR += librolegen SUBDIR += librttopo SUBDIR += libruin SUBDIR += libs11n SUBDIR += libsavitar SUBDIR += libscca SUBDIR += libsearpc SUBDIR += libserdes SUBDIR += libserialport SUBDIR += libshbuf SUBDIR += libshhmsg SUBDIR += libshhopt SUBDIR += libsigc++20 SUBDIR += libsigc++30 SUBDIR += libsigrok SUBDIR += libsigrokdecode SUBDIR += libsigscan SUBDIR += libsigsegv SUBDIR += libsimdpp SUBDIR += libslang2 SUBDIR += libsmdev SUBDIR += libsml SUBDIR += libsmpp34 SUBDIR += libsmraw SUBDIR += libsoup SUBDIR += libsoup3 SUBDIR += libspice-server SUBDIR += libstatgrab SUBDIR += libstatgrab0 SUBDIR += libstrfunc SUBDIR += libstroke SUBDIR += libsysctlmibinfo SUBDIR += libsysctlmibinfo2 SUBDIR += libsysinfo SUBDIR += libtai SUBDIR += libtap SUBDIR += libtecla SUBDIR += libtermkey SUBDIR += libtextstyle SUBDIR += libthai SUBDIR += libthmap SUBDIR += libthreadar SUBDIR += libtickit SUBDIR += libtifiles2 SUBDIR += libtool SUBDIR += libtpl SUBDIR += libtsm SUBDIR += libtuntap SUBDIR += libublio SUBDIR += libubox SUBDIR += libudev-devd SUBDIR += libuinputplus SUBDIR += libukcprog SUBDIR += libunicode SUBDIR += libuninum SUBDIR += libunistring SUBDIR += libunit SUBDIR += libunwind SUBDIR += libuutil SUBDIR += libuv SUBDIR += libvanessa_adt SUBDIR += libvanessa_logger SUBDIR += libvanessa_socket SUBDIR += libvc SUBDIR += libversion SUBDIR += libvex SUBDIR += libvhdi SUBDIR += libvirt SUBDIR += libvirt-dbus SUBDIR += libvirt-glib SUBDIR += libvirt-java SUBDIR += libvmdk SUBDIR += libvolume_id SUBDIR += libvsgpt SUBDIR += libvshadow SUBDIR += libvslvm SUBDIR += libvterm SUBDIR += libwasmtime SUBDIR += libwfut SUBDIR += libx86 SUBDIR += libxalloc SUBDIR += libxo SUBDIR += libxs SUBDIR += libxtend SUBDIR += libzakalwe SUBDIR += libzim SUBDIR += libzookeeper SUBDIR += libzvbi SUBDIR += lightning SUBDIR += linenoise SUBDIR += linenoise-ng SUBDIR += linux-c7-dbus-libs SUBDIR += linux-c7-devtools SUBDIR += linux-c7-devtoolset SUBDIR += linux-c7-elfutils-libelf SUBDIR += linux-c7-elfutils-libs SUBDIR += linux-c7-icu SUBDIR += linux-c7-libaio SUBDIR += linux-c7-libgfortran SUBDIR += linux-c7-libglade2 SUBDIR += linux-c7-libpciaccess SUBDIR += linux-c7-libsigc++20 SUBDIR += linux-c7-libthai SUBDIR += linux-c7-libtool-ltdl SUBDIR += linux-c7-libunwind SUBDIR += linux-c7-make SUBDIR += linux-c7-nspr SUBDIR += linux-c7-qt SUBDIR += linux-c7-sdl12 SUBDIR += linux-c7-sdl20 SUBDIR += linux-c7-strace SUBDIR += linux-c7-systemd-libs SUBDIR += linux-c7-zlib-devel SUBDIR += linux-ltp SUBDIR += linux-sublime-merge SUBDIR += linux_libusb SUBDIR += lion SUBDIR += listserialc SUBDIR += liteide SUBDIR += llbuild SUBDIR += llnextgen SUBDIR += llvm SUBDIR += llvm-cheri SUBDIR += llvm-cheriot SUBDIR += llvm-devel SUBDIR += llvm-morello SUBDIR += llvm10 SUBDIR += llvm11 SUBDIR += llvm12 SUBDIR += llvm13 SUBDIR += llvm14 SUBDIR += llvm15 SUBDIR += llvm16 SUBDIR += llvm17 SUBDIR += lm4tools SUBDIR += lmdbg SUBDIR += lndir SUBDIR += lnphost SUBDIR += loccount SUBDIR += lockfree-malloc SUBDIR += log4c SUBDIR += log4cplus SUBDIR += log4cpp SUBDIR += log4cxx SUBDIR += log4j SUBDIR += log4net SUBDIR += log4sh SUBDIR += log4shib SUBDIR += loguru SUBDIR += lokalize SUBDIR += loki SUBDIR += love SUBDIR += love07 SUBDIR += love08 SUBDIR += love10 SUBDIR += love5 SUBDIR += lpc21isp SUBDIR += lrmi SUBDIR += lua-Penlight SUBDIR += lua-argparse SUBDIR += lua-bitlib SUBDIR += lua-bitop SUBDIR += lua-cjson SUBDIR += lua-cqueues SUBDIR += lua-gettext SUBDIR += lua-lgi SUBDIR += lua-libevent SUBDIR += lua-lpeg SUBDIR += lua-luacheck SUBDIR += lua-luarocks SUBDIR += lua-lunit SUBDIR += lua-mode SUBDIR += lua-posix SUBDIR += lua-pty SUBDIR += lua-rds-parser SUBDIR += lua-resty-string SUBDIR += lua-stdlib SUBDIR += lua-stdlib-debug SUBDIR += lua-stdlib-normalize SUBDIR += lua-sysctl SUBDIR += luabind SUBDIR += luafilesystem SUBDIR += luajava SUBDIR += lutok SUBDIR += luv SUBDIR += lwp SUBDIR += lxqt-build-tools SUBDIR += lyra SUBDIR += m17n-db SUBDIR += m17n-docs SUBDIR += m17n-inscript2 SUBDIR += m17n-lib SUBDIR += m4 SUBDIR += mage SUBDIR += magic_enum SUBDIR += magit SUBDIR += magit-devel SUBDIR += make++ SUBDIR += makedepend SUBDIR += malloy SUBDIR += marisa-trie SUBDIR += marl SUBDIR += massif-visualizer SUBDIR += mate-common SUBDIR += matreshka SUBDIR += maven SUBDIR += maven-wrapper SUBDIR += maven363 SUBDIR += maven39 SUBDIR += mcpp SUBDIR += mdb SUBDIR += mdds SUBDIR += mdspan SUBDIR += menhir SUBDIR += mercator SUBDIR += mercurial SUBDIR += mergify SUBDIR += meson SUBDIR += meson-python SUBDIR += microsoft-gsl SUBDIR += mill SUBDIR += mimalloc SUBDIR += mimir SUBDIR += mir-core SUBDIR += mk-configure SUBDIR += mm SUBDIR += mm-common SUBDIR += modd SUBDIR += mold SUBDIR += mongo-c-driver SUBDIR += mono-addins SUBDIR += mpatrol SUBDIR += mph SUBDIR += mrc SUBDIR += msbuild SUBDIR += msgpack-c SUBDIR += msgpack-cxx SUBDIR += msgpack-d SUBDIR += msgpuck SUBDIR += msitools SUBDIR += msp430-debug-stack SUBDIR += mspdebug SUBDIR += mstch SUBDIR += mtbl SUBDIR += muon SUBDIR += mustache SUBDIR += mutagen SUBDIR += myrepos SUBDIR += nana SUBDIR += nano-signal-slot SUBDIR += nanopb 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 += nextpnr SUBDIR += nexus2-oss SUBDIR += nimble SUBDIR += nini SUBDIR += ninja SUBDIR += nlohmann-json SUBDIR += node-thrift SUBDIR += notcurses SUBDIR += notify-sharp SUBDIR += nox SUBDIR += npth SUBDIR += nsgenbind SUBDIR += nspr SUBDIR += nss_wrapper SUBDIR += nsync SUBDIR += nuitka SUBDIR += obby SUBDIR += objconv SUBDIR += objecthash SUBDIR += objfw 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-dune SUBDIR += ocaml-extlib SUBDIR += ocaml-findlib SUBDIR += ocaml-ipaddr SUBDIR += ocaml-lacaml SUBDIR += ocaml-lwt SUBDIR += ocaml-magic SUBDIR += ocaml-ocamlbuild 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-result SUBDIR += ocaml-sdl SUBDIR += ocaml-sem SUBDIR += ocaml-sexplib0 SUBDIR += ocaml-topkg SUBDIR += ocaml-type_conv SUBDIR += ocaml-uchar SUBDIR += ocaml-ulex SUBDIR += ocaml-uutf SUBDIR += ocaml-xstr SUBDIR += ocaml-xstrp4 SUBDIR += oci-cli SUBDIR += ocl-icd SUBDIR += oclgrind SUBDIR += ode SUBDIR += ois SUBDIR += okteta SUBDIR += omake SUBDIR += omniORB SUBDIR += onetbb SUBDIR += oniguruma SUBDIR += open-beagle SUBDIR += open62541 SUBDIR += opencl SUBDIR += opencl-clang SUBDIR += opencvs SUBDIR += opendht SUBDIR += opengrok SUBDIR += openocd SUBDIR += opentelemetry-cpp SUBDIR += opentelemetry-proto SUBDIR += openwince-include SUBDIR += orc SUBDIR += orcania SUBDIR += osc SUBDIR += ossp-al SUBDIR += ossp-cfg SUBDIR += ossp-ex SUBDIR += ossp-l2 SUBDIR += ossp-val SUBDIR += ossp-var SUBDIR += ossp-xds SUBDIR += outcome SUBDIR += p4 SUBDIR += p4.el SUBDIR += p4api SUBDIR += p4delta SUBDIR += p4genpatch SUBDIR += p5-AI-Pathfinding-AStar SUBDIR += p5-AI-Prolog SUBDIR += p5-ARGV-Struct SUBDIR += p5-AWS-Signature4 SUBDIR += p5-Acme-Comment SUBDIR += p5-Acme-Damn SUBDIR += p5-Acme-MetaSyntactic SUBDIR += p5-Adapter-Async SUBDIR += p5-Agent SUBDIR += p5-Algorithm-Accounting SUBDIR += p5-Algorithm-Annotate SUBDIR += p5-Algorithm-Backoff 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-Base-ModuleBuild SUBDIR += p5-Alien-Build SUBDIR += p5-Alien-LibGumbo 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-Connector SUBDIR += p5-AnyEvent-DBI SUBDIR += p5-AnyEvent-DBI-Abstract SUBDIR += p5-AnyEvent-DBus SUBDIR += p5-AnyEvent-Filesys-Notify SUBDIR += p5-AnyEvent-Fork 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-Asm-Preproc 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-Avro SUBDIR += p5-B-C SUBDIR += p5-B-COW SUBDIR += p5-B-Compiling SUBDIR += p5-B-Debug SUBDIR += p5-B-Deobfuscate SUBDIR += p5-B-Flags SUBDIR += p5-B-Generate SUBDIR += p5-B-Graph SUBDIR += p5-B-Hooks-AtRuntime 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-Border-Style SUBDIR += p5-BorderStyle SUBDIR += p5-BorderStyleBase SUBDIR += p5-BorderStyles-Standard 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-CLI-Osprey 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-CPU-Z80-Assembler 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-Call-Context SUBDIR += p5-Callback-Frame SUBDIR += p5-Canary-Stability SUBDIR += p5-Capture-Tiny SUBDIR += p5-Capture-Tiny-Extended 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-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-Data-Lite 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-Tiny-Chained 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-Color-ANSI-Util SUBDIR += p5-Color-RGB-Util SUBDIR += p5-Color-Theme-Role SUBDIR += p5-ColorThemeBase-Static SUBDIR += p5-ColorThemeUtil-ANSI SUBDIR += p5-ColorThemes-Standard SUBDIR += p5-Commandable SUBDIR += p5-Commands-Guarded SUBDIR += p5-CommitBit SUBDIR += p5-Compiler-Lexer SUBDIR += p5-Complete-Common SUBDIR += p5-Complete-Path SUBDIR += p5-Complete-Sah SUBDIR += p5-Complete-Sequence SUBDIR += p5-Complete-Util SUBDIR += p5-Config-AST SUBDIR += p5-Config-AWS 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-Backend-Yaml SUBDIR += p5-Config-Model-Tester SUBDIR += p5-Config-MySQL SUBDIR += p5-Config-Objective SUBDIR += p5-Config-Options SUBDIR += p5-Config-Parser SUBDIR += p5-Config-Parser-ldap 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-Convert-Scalar 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-Binary 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-Dmp SUBDIR += p5-Data-Domain SUBDIR += p5-Data-Dump SUBDIR += p5-Data-Dump-Color SUBDIR += p5-Data-Dump-Streamer SUBDIR += p5-Data-DumpXML SUBDIR += p5-Data-Dumper SUBDIR += p5-Data-Dumper-Concise SUBDIR += p5-Data-Dumper-Interp 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-Object-Args SUBDIR += p5-Data-Object-Attributes SUBDIR += p5-Data-Object-Cast SUBDIR += p5-Data-Object-Class SUBDIR += p5-Data-Object-ClassHas SUBDIR += p5-Data-Object-Data SUBDIR += p5-Data-Object-Exception SUBDIR += p5-Data-Object-Kind SUBDIR += p5-Data-Object-Name SUBDIR += p5-Data-Object-Opts SUBDIR += p5-Data-Object-Plugin SUBDIR += p5-Data-Object-Role SUBDIR += p5-Data-Object-Role-Arguable SUBDIR += p5-Data-Object-Role-Buildable SUBDIR += p5-Data-Object-Role-Dumpable SUBDIR += p5-Data-Object-Role-Errable SUBDIR += p5-Data-Object-Role-Formulatable SUBDIR += p5-Data-Object-Role-Immutable SUBDIR += p5-Data-Object-Role-Pluggable SUBDIR += p5-Data-Object-Role-Proxyable SUBDIR += p5-Data-Object-Role-Stashable SUBDIR += p5-Data-Object-Role-Throwable SUBDIR += p5-Data-Object-Role-Tryable SUBDIR += p5-Data-Object-RoleHas SUBDIR += p5-Data-Object-Space SUBDIR += p5-Data-Object-State SUBDIR += p5-Data-Object-Struct SUBDIR += p5-Data-Object-Try SUBDIR += p5-Data-Object-Types SUBDIR += p5-Data-Object-Vars 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-Unixish SUBDIR += p5-Data-Util SUBDIR += p5-Data-Validate SUBDIR += p5-Data-Validator SUBDIR += p5-Data-Visitor SUBDIR += p5-Data-Visitor-Encode SUBDIR += p5-Data-Visitor-Tiny SUBDIR += p5-Data-Walk SUBDIR += p5-DataStruct-Flat 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-MAT-Dumper 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-StrictMode 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-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-C-Stat SUBDIR += p5-FFI-CheckLib SUBDIR += p5-FFI-Platypus SUBDIR += p5-FFI-Platypus-Declare SUBDIR += p5-FFI-Platypus-Type-Enum SUBDIR += p5-FFI-Platypus-Type-PtrObject SUBDIR += p5-FSA-Rules SUBDIR += p5-Feature-Compat-Try 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-Object-Rule 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-HomeDir-Tiny SUBDIR += p5-File-Iterator SUBDIR += p5-File-LibMagic SUBDIR += p5-File-LoadLines 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-Dist SUBDIR += p5-File-ShareDir-Install SUBDIR += p5-File-ShareDir-PAR SUBDIR += p5-File-ShareDir-PathClass SUBDIR += p5-File-ShareDir-ProjectDistDir SUBDIR += p5-File-ShareDir-Tarball 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-TreeCreate 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-Fallback-CoreOrPP SUBDIR += p5-Function-Parameters SUBDIR += p5-Future SUBDIR += p5-Future-AsyncAwait SUBDIR += p5-Future-IO 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 SUBDIR += p5-Glib-Object-Introspection SUBDIR += p5-Goo-Canvas2 SUBDIR += p5-Google-Checkout SUBDIR += p5-Google-ProtocolBuffers SUBDIR += p5-GraphQL 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-Ordered 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-Stringy 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-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-IRI 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-Simple-Lookahead SUBDIR += p5-Iterator-Util SUBDIR += p5-JIRA-REST SUBDIR += p5-JQuery SUBDIR += p5-JSON-Hyper SUBDIR += p5-JSON-Parse 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-Keyword-Declare SUBDIR += p5-Keyword-Pluggable SUBDIR += p5-Keyword-Simple 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-BinarySearch 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-XGettext 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-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-Layout-JSON 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-Log-ger SUBDIR += p5-Logfile-Rotate SUBDIR += p5-Long-Jump SUBDIR += p5-Luka SUBDIR += p5-Lvalue SUBDIR += p5-MCE SUBDIR += p5-MCE-Shared 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-Metrics-Any SUBDIR += p5-Minilla SUBDIR += p5-Minion SUBDIR += p5-Mixin-Event-Dispatch SUBDIR += p5-Mixin-Linewise SUBDIR += p5-Mknod SUBDIR += p5-Mo SUBDIR += p5-Mock-MonkeyPatch SUBDIR += p5-Mock-Quick SUBDIR += p5-Mock-Sub SUBDIR += p5-Module-Build SUBDIR += p5-Module-Build-Convert SUBDIR += p5-Module-Build-Kwalitee SUBDIR += p5-Module-Build-Pluggable SUBDIR += p5-Module-Build-Pluggable-CPANfile SUBDIR += p5-Module-Build-Pluggable-ReadmeMarkdownFromPod SUBDIR += p5-Module-Build-Prereqs-FromCPANfile SUBDIR += p5-Module-Build-Tiny SUBDIR += p5-Module-Build-Using-PkgConfig SUBDIR += p5-Module-Build-WithXSpp 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-Installed-Tiny SUBDIR += p5-Module-List SUBDIR += p5-Module-Load SUBDIR += p5-Module-Load-Conditional SUBDIR += p5-Module-Load-Util SUBDIR += p5-Module-Loaded SUBDIR += p5-Module-Loader 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-Mojo-Base-XS SUBDIR += p5-Mojo-Log-Clearable SUBDIR += p5-Mojolicious-Plugin-NYTProf SUBDIR += p5-Moo SUBDIR += p5-MooX-Aliases SUBDIR += p5-MooX-Attribute-ENV SUBDIR += p5-MooX-Cmd SUBDIR += p5-MooX-ConfigFromFile SUBDIR += p5-MooX-File-ConfigDir SUBDIR += p5-MooX-HandlesVia SUBDIR += p5-MooX-Locale-Passthrough SUBDIR += p5-MooX-Options SUBDIR += p5-MooX-Role-Parameterized SUBDIR += p5-MooX-Singleton SUBDIR += p5-MooX-StrictConstructor SUBDIR += p5-MooX-Thunking SUBDIR += p5-MooX-Traits 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-Extended 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-MungeHas 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-Role-WarnOnConflict 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-Test-Role 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-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-Pad 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-Object-Tiny-RW 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-PPR SUBDIR += p5-PPerl SUBDIR += p5-PV SUBDIR += p5-Package-Constants SUBDIR += p5-Package-DeprecationManager SUBDIR += p5-Package-Generator SUBDIR += p5-Package-MoreUtil SUBDIR += p5-Package-Stash SUBDIR += p5-Package-Stash-XS SUBDIR += p5-Package-Util-Lite 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-Distname 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-VarName SUBDIR += p5-Parse-Win32Registry SUBDIR += p5-Parse-Yapp SUBDIR += p5-ParseLex SUBDIR += p5-ParseTemplate SUBDIR += p5-Parser-MGC 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-PrereqScanner-NotQuiteLite 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-FastSpawn SUBDIR += p5-Proc-Find-Parents 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-Process-Status 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-Rcs SUBDIR += p5-Rcs-Agent SUBDIR += p5-Readonly SUBDIR += p5-Readonly-XS SUBDIR += p5-ReadonlyX SUBDIR += p5-Reaper 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-Pattern-Perl SUBDIR += p5-Regexp-RegGrp SUBDIR += p5-Regexp-Shellish SUBDIR += p5-Regexp-Stringify SUBDIR += p5-Regexp-Subst-Parallel SUBDIR += p5-Regexp-Trie 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-Hooks 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-Container SUBDIR += p5-Scope-Guard SUBDIR += p5-Scope-Upper SUBDIR += p5-Script-isAperlScript 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-Shell-Base SUBDIR += p5-Shell-Config-Generate SUBDIR += p5-Shell-EnvImporter SUBDIR += p5-Shell-GetEnv SUBDIR += p5-Shell-Guess SUBDIR += p5-Shell-Parser SUBDIR += p5-Shell-Source SUBDIR += p5-ShipIt SUBDIR += p5-ShipIt-Step-Manifest SUBDIR += p5-Signal-Mask 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-Sub 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-Interpolate-Named SUBDIR += p5-String-KeyboardDistance 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-HandlesVia 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-Get SUBDIR += p5-Symbol-Global-Name SUBDIR += p5-Symbol-Util SUBDIR += p5-Syntax-Keyword-Dynamically SUBDIR += p5-Syntax-Keyword-Gather SUBDIR += p5-Syntax-Keyword-Junction SUBDIR += p5-Syntax-Keyword-Match SUBDIR += p5-Syntax-Keyword-Try 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-Info 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-App-Roles SUBDIR += p5-Term-App-Util-Color SUBDIR += p5-Term-App-Util-Interactive SUBDIR += p5-Term-App-Util-Size SUBDIR += p5-Term-CallEditor SUBDIR += p5-Term-Choose SUBDIR += p5-Term-Choose-Util SUBDIR += p5-Term-Clui SUBDIR += p5-Term-Detect-Software SUBDIR += p5-Term-EditLine SUBDIR += p5-Term-Encoding SUBDIR += p5-Term-Form 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-TablePrint SUBDIR += p5-Term-TermKey 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-Archive-Libarchive SUBDIR += p5-Test-Assertions SUBDIR += p5-Test-Auto 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-DBIC-ExpectedQueries SUBDIR += p5-Test-DBIx-Class SUBDIR += p5-Test-Data SUBDIR += p5-Test-Debugger SUBDIR += p5-Test-Declare SUBDIR += p5-Test-Deep SUBDIR += p5-Test-Deep-UnorderedPairs SUBDIR += p5-Test-Dependencies SUBDIR += p5-Test-DependentModules SUBDIR += p5-Test-DiagINC SUBDIR += p5-Test-Differences SUBDIR += p5-Test-Distribution SUBDIR += p5-Test-EOL SUBDIR += p5-Test-Exception SUBDIR += p5-Test-Exit SUBDIR += p5-Test-Expect SUBDIR += p5-Test-ExpectAndCheck 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-Future-IO-Impl 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-Lib SUBDIR += p5-Test-Lives 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-Metrics-Any 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-Mock-One SUBDIR += p5-Test-Mock-Redis SUBDIR += p5-Test-MockDateTime SUBDIR += p5-Test-MockModule SUBDIR += p5-Test-MockObject SUBDIR += p5-Test-MockRandom SUBDIR += p5-Test-MockTime SUBDIR += p5-Test-MockTime-HiRes 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-Snapshot 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-TrailingSpace SUBDIR += p5-Test-Trap SUBDIR += p5-Test-UNIXSock 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-Harness-UI SUBDIR += p5-Test2-Plugin-Cover SUBDIR += p5-Test2-Plugin-DBIProfile SUBDIR += p5-Test2-Plugin-IOEvents SUBDIR += p5-Test2-Plugin-MemUsage SUBDIR += p5-Test2-Plugin-NoWarnings SUBDIR += p5-Test2-Plugin-UUID SUBDIR += p5-Test2-Suite SUBDIR += p5-Test2-Tools-Explain SUBDIR += p5-Test2-Tools-FFI SUBDIR += p5-Test2-Tools-MemoryCycle SUBDIR += p5-Text-Levenshtein SUBDIR += p5-Text-Levenshtein-Damerau SUBDIR += p5-Text-Levenshtein-Damerau-XS 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-Tickit SUBDIR += p5-Tickit-Widget-Table SUBDIR += p5-Tickit-Widgets 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-Elapsed SUBDIR += p5-Time-Format SUBDIR += p5-Time-HiRes SUBDIR += p5-Time-Interval SUBDIR += p5-Time-Local SUBDIR += p5-Time-Mock SUBDIR += p5-Time-Moment SUBDIR += p5-Time-Moment-Role-TimeZone 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-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-UUID-URandom 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-Disposition SUBDIR += p5-Variable-Eject SUBDIR += p5-Variable-Magic SUBDIR += p5-Venus SUBDIR += p5-Want SUBDIR += p5-WeakRef SUBDIR += p5-Workflow SUBDIR += p5-X-Tiny SUBDIR += p5-XML-Compile-Tester SUBDIR += p5-XML-Pastor SUBDIR += p5-XS-Object-Magic SUBDIR += p5-XS-Parse-Keyword SUBDIR += p5-XS-Parse-Sublike SUBDIR += p5-XSLoader SUBDIR += p5-XXX SUBDIR += p5-Xporter SUBDIR += p5-YAML-AppConfig SUBDIR += p5-Yada-Yada-Yada SUBDIR += p5-ZML SUBDIR += p5-accessors SUBDIR += p5-accessors-fast SUBDIR += p5-alias-module SUBDIR += p5-aliased SUBDIR += p5-asa SUBDIR += p5-autobox SUBDIR += p5-autobox-Core SUBDIR += p5-autobox-Transform 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-match-simple-XS 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-pip SUBDIR += p5-prefork SUBDIR += p5-relative SUBDIR += p5-routines 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 += p8-platform SUBDIR += packr SUBDIR += paexec SUBDIR += pam_wrapper SUBDIR += papi SUBDIR += papilio-loader SUBDIR += paq-nvim SUBDIR += parallel-hashmap SUBDIR += parol SUBDIR += parol-ls SUBDIR += pas2dox SUBDIR += pasm SUBDIR += patch SUBDIR += patsh SUBDIR += pcc-libs SUBDIR += pcg-cpp SUBDIR += pcl SUBDIR += pcre SUBDIR += pcre++ SUBDIR += pcre2 SUBDIR += pcsc-cyberjack 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-PHPTAL SUBDIR += pear-PHPUnit_MockObject SUBDIR += pear-PHP_ArrayOf SUBDIR += pear-PHP_Beautifier SUBDIR += pear-PHP_CodeCoverage SUBDIR += pear-PHP_CodeSniffer SUBDIR += pear-PHP_Compat SUBDIR += pear-PHP_CompatInfo 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-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-geshi SUBDIR += pear-channel-horde SUBDIR += pear-channel-openpear SUBDIR += pear-channel-pdepend SUBDIR += pear-channel-phing SUBDIR += pear-channel-phpdoc SUBDIR += pear-channel-phpmd 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-geshi SUBDIR += pear-pdepend-staticReflection SUBDIR += pear-phing SUBDIR += pecl-APCu SUBDIR += pecl-ast SUBDIR += pecl-dio SUBDIR += pecl-ds SUBDIR += pecl-eio SUBDIR += pecl-ev SUBDIR += pecl-event SUBDIR += pecl-excimer SUBDIR += pecl-expect SUBDIR += pecl-grpc SUBDIR += pecl-inotify SUBDIR += pecl-json_post SUBDIR += pecl-msgpack SUBDIR += pecl-mustache SUBDIR += pecl-protobuf SUBDIR += pecl-psr SUBDIR += pecl-raphf2 SUBDIR += pecl-runkit7 SUBDIR += pecl-swoole SUBDIR += pecl-sync SUBDIR += pecl-uploadprogress SUBDIR += pecl-uuid SUBDIR += pecl-uv SUBDIR += pecl-vld SUBDIR += pecl-xdebug SUBDIR += pecl-yac SUBDIR += pecl-yaconf SUBDIR += pecl-zookeeper SUBDIR += pegtl SUBDIR += pep8 SUBDIR += performance SUBDIR += perlconsole SUBDIR += phabricator SUBDIR += phasar SUBDIR += php-Psr_Log SUBDIR += php-composer SUBDIR += php-geshi SUBDIR += php-ice37 SUBDIR += php-libawl SUBDIR += php-maxminddb SUBDIR += php80-ffi SUBDIR += php80-gettext SUBDIR += php80-intl SUBDIR += php80-pcntl SUBDIR += php80-readline SUBDIR += php80-shmop SUBDIR += php80-sysvmsg SUBDIR += php80-sysvsem SUBDIR += php80-sysvshm SUBDIR += php80-tokenizer SUBDIR += php81-ffi SUBDIR += php81-gettext SUBDIR += php81-intl SUBDIR += php81-pcntl SUBDIR += php81-readline SUBDIR += php81-shmop SUBDIR += php81-sysvmsg SUBDIR += php81-sysvsem SUBDIR += php81-sysvshm SUBDIR += php81-tokenizer SUBDIR += php82-ffi SUBDIR += php82-gettext SUBDIR += php82-intl SUBDIR += php82-pcntl SUBDIR += php82-readline SUBDIR += php82-shmop SUBDIR += php82-sysvmsg SUBDIR += php82-sysvsem SUBDIR += php82-sysvshm SUBDIR += php82-tokenizer SUBDIR += php83-ffi SUBDIR += php83-gettext SUBDIR += php83-intl SUBDIR += php83-pcntl SUBDIR += php83-readline SUBDIR += php83-shmop SUBDIR += php83-sysvmsg SUBDIR += php83-sysvsem SUBDIR += php83-sysvshm SUBDIR += php83-tokenizer SUBDIR += phpunit10 SUBDIR += phpunit8 SUBDIR += phpunit9 SUBDIR += physfs SUBDIR += pickle SUBDIR += picojson SUBDIR += picprog SUBDIR += pijul SUBDIR += pika SUBDIR += pipestatus SUBDIR += pire SUBDIR += pit SUBDIR += pkg-info.el SUBDIR += pkgconf SUBDIR += plan9port SUBDIR += plasma SUBDIR += plasma5-khotkeys SUBDIR += plasma5-kwrited SUBDIR += plasma5-plasma-sdk + SUBDIR += plasma6-kwrited + SUBDIR += plasma6-plasma-sdk + SUBDIR += plasma6-plasma5support SUBDIR += please SUBDIR += pmccabe SUBDIR += pmd SUBDIR += poco SUBDIR += popt SUBDIR += poser SUBDIR += poxml SUBDIR += ppl SUBDIR += pprof SUBDIR += premake SUBDIR += premake4 SUBDIR += premake5 SUBDIR += projectcenter SUBDIR += protobuf SUBDIR += protobuf-c SUBDIR += protobuf-java SUBDIR += protobuf25 SUBDIR += prototool SUBDIR += protozero SUBDIR += pructl SUBDIR += psimd SUBDIR += pstreams SUBDIR += psvn SUBDIR += pth SUBDIR += pth-hard SUBDIR += pthreadpool SUBDIR += pthsem SUBDIR += ptl SUBDIR += ptlib SUBDIR += ptypes SUBDIR += publib SUBDIR += purescript-language-server SUBDIR += pushmi SUBDIR += py-Automat SUBDIR += py-BTrees SUBDIR += py-DateTime SUBDIR += py-Dumper SUBDIR += py-ExtensionClass SUBDIR += py-Faker SUBDIR += py-IBMQuantumExperience SUBDIR += py-Jinja2 SUBDIR += py-Jinja2-doc SUBDIR += py-Js2Py SUBDIR += py-Levenshtein SUBDIR += py-PYB11Generator SUBDIR += py-PeachPy SUBDIR += py-Products.ExternalEditor SUBDIR += py-Products.PloneLanguageTool SUBDIR += py-PyExecJS SUBDIR += py-PyLD SUBDIR += py-PyUtilib SUBDIR += py-QtPy SUBDIR += py-RPyC SUBDIR += py-ZopeUndo SUBDIR += py-about-time SUBDIR += py-absl SUBDIR += py-absl-py SUBDIR += py-adb SUBDIR += py-addict SUBDIR += py-aenum SUBDIR += py-aioapns SUBDIR += py-aiobotocore SUBDIR += py-aiocontextvars SUBDIR += py-aiofiles SUBDIR += py-aiohttp-apispec SUBDIR += py-aioice SUBDIR += py-aioitertools SUBDIR += py-aiologger SUBDIR += py-aiorpcX SUBDIR += py-aiortc SUBDIR += py-aiorwlock SUBDIR += py-aiosignal SUBDIR += py-airtable-python-wrapper SUBDIR += py-all-repos SUBDIR += py-amalgamate SUBDIR += py-aniso8601 SUBDIR += py-aniso86016 SUBDIR += py-anndata SUBDIR += py-annotated-types SUBDIR += py-ansi SUBDIR += py-antlr4-python3-runtime SUBDIR += py-anyconfig SUBDIR += py-anyio SUBDIR += py-anyio3 SUBDIR += py-anyjson SUBDIR += py-anytree SUBDIR += py-apache_conf_parser SUBDIR += py-apipkg SUBDIR += py-apispec SUBDIR += py-appdirs SUBDIR += py-applicationinsights SUBDIR += py-apptools SUBDIR += py-apscheduler SUBDIR += py-archinfo SUBDIR += py-archspec SUBDIR += py-argcomplete SUBDIR += py-argh SUBDIR += py-argparse SUBDIR += py-args SUBDIR += py-arpeggio SUBDIR += py-array-api-compat SUBDIR += py-arrow SUBDIR += py-asciimatics SUBDIR += py-asgi-lifespan SUBDIR += py-asn1 SUBDIR += py-asn1crypto SUBDIR += py-aspectlib SUBDIR += py-aspy.yaml SUBDIR += py-assertpy SUBDIR += py-ast-decompiler SUBDIR += py-asteval SUBDIR += py-astor SUBDIR += py-astroid SUBDIR += py-astroid253 SUBDIR += py-asttokens SUBDIR += py-astunparse SUBDIR += py-async-lru SUBDIR += py-async_generator SUBDIR += py-async_timeout SUBDIR += py-asynctest SUBDIR += py-atomiclong SUBDIR += py-atomicwrites SUBDIR += py-atpublic SUBDIR += py-attrdict SUBDIR += py-attrs SUBDIR += py-attrs-strict SUBDIR += py-autocommand SUBDIR += py-autoflake SUBDIR += py-automaton SUBDIR += py-autopage SUBDIR += py-autoprop SUBDIR += py-avro SUBDIR += py-awesomeversion SUBDIR += py-aws-lambda-builders SUBDIR += py-aws-requests-auth SUBDIR += py-aws-sam-translator SUBDIR += py-aws-xray-sdk SUBDIR += py-awscli SUBDIR += py-awscrt SUBDIR += py-azure-appconfiguration SUBDIR += py-azure-batch SUBDIR += py-azure-core SUBDIR += py-azure-cosmos SUBDIR += py-azure-data-tables SUBDIR += py-azure-datalake-store SUBDIR += py-azure-functions-devops-build SUBDIR += py-azure-graphrbac SUBDIR += py-azure-identity SUBDIR += py-azure-keyvault SUBDIR += py-azure-keyvault-administration SUBDIR += py-azure-loganalytics SUBDIR += py-azure-mgmt-advisor SUBDIR += py-azure-mgmt-apimanagement SUBDIR += py-azure-mgmt-appconfiguration SUBDIR += py-azure-mgmt-appcontainers SUBDIR += py-azure-mgmt-applicationinsights SUBDIR += py-azure-mgmt-authorization SUBDIR += py-azure-mgmt-batch SUBDIR += py-azure-mgmt-batchai SUBDIR += py-azure-mgmt-billing SUBDIR += py-azure-mgmt-botservice SUBDIR += py-azure-mgmt-cdn SUBDIR += py-azure-mgmt-cognitiveservices SUBDIR += py-azure-mgmt-compute SUBDIR += py-azure-mgmt-consumption SUBDIR += py-azure-mgmt-containerinstance SUBDIR += py-azure-mgmt-containerregistry SUBDIR += py-azure-mgmt-containerservice SUBDIR += py-azure-mgmt-core SUBDIR += py-azure-mgmt-cosmosdb SUBDIR += py-azure-mgmt-databoxedge SUBDIR += py-azure-mgmt-datalake-analytics SUBDIR += py-azure-mgmt-datalake-store SUBDIR += py-azure-mgmt-datamigration SUBDIR += py-azure-mgmt-deploymentmanager SUBDIR += py-azure-mgmt-devtestlabs SUBDIR += py-azure-mgmt-dns SUBDIR += py-azure-mgmt-eventgrid SUBDIR += py-azure-mgmt-eventhub SUBDIR += py-azure-mgmt-extendedlocation SUBDIR += py-azure-mgmt-hdinsight SUBDIR += py-azure-mgmt-imagebuilder SUBDIR += py-azure-mgmt-iotcentral SUBDIR += py-azure-mgmt-iothub SUBDIR += py-azure-mgmt-iothubprovisioningservices SUBDIR += py-azure-mgmt-keyvault SUBDIR += py-azure-mgmt-kusto SUBDIR += py-azure-mgmt-loganalytics SUBDIR += py-azure-mgmt-managedservices SUBDIR += py-azure-mgmt-managementgroups SUBDIR += py-azure-mgmt-maps SUBDIR += py-azure-mgmt-marketplaceordering SUBDIR += py-azure-mgmt-media SUBDIR += py-azure-mgmt-monitor SUBDIR += py-azure-mgmt-msi SUBDIR += py-azure-mgmt-netapp SUBDIR += py-azure-mgmt-network SUBDIR += py-azure-mgmt-policyinsights SUBDIR += py-azure-mgmt-privatedns SUBDIR += py-azure-mgmt-rdbms SUBDIR += py-azure-mgmt-recoveryservices SUBDIR += py-azure-mgmt-recoveryservicesbackup SUBDIR += py-azure-mgmt-redhatopenshift SUBDIR += py-azure-mgmt-redis SUBDIR += py-azure-mgmt-relay SUBDIR += py-azure-mgmt-reservations SUBDIR += py-azure-mgmt-resource SUBDIR += py-azure-mgmt-search SUBDIR += py-azure-mgmt-security SUBDIR += py-azure-mgmt-servicebus SUBDIR += py-azure-mgmt-servicefabric SUBDIR += py-azure-mgmt-servicefabricmanagedclusters SUBDIR += py-azure-mgmt-servicelinker SUBDIR += py-azure-mgmt-signalr SUBDIR += py-azure-mgmt-sql SUBDIR += py-azure-mgmt-sqlvirtualmachine SUBDIR += py-azure-mgmt-storage SUBDIR += py-azure-mgmt-synapse SUBDIR += py-azure-mgmt-trafficmanager SUBDIR += py-azure-mgmt-web SUBDIR += py-azure-multiapi-storage SUBDIR += py-azure-storage-blob SUBDIR += py-azure-storage-common SUBDIR += py-azure-synapse-accesscontrol SUBDIR += py-azure-synapse-artifacts SUBDIR += py-azure-synapse-managedprivateendpoints SUBDIR += py-azure-synapse-spark SUBDIR += py-b2sdk SUBDIR += py-babel SUBDIR += py-babelfish SUBDIR += py-babi_grammars SUBDIR += py-backcall SUBDIR += py-backoff SUBDIR += py-backports SUBDIR += py-backports.cached-property SUBDIR += py-backports.csv SUBDIR += py-backports.entry-points-selectable SUBDIR += py-backports.zoneinfo SUBDIR += py-banal SUBDIR += py-bandit SUBDIR += py-bcdoc SUBDIR += py-beartype SUBDIR += py-beautifultable SUBDIR += py-behave SUBDIR += py-beniget SUBDIR += py-bidict SUBDIR += py-billiard SUBDIR += py-binaryornot SUBDIR += py-biplist SUBDIR += py-bitarray SUBDIR += py-bitstring SUBDIR += py-black SUBDIR += py-blessed SUBDIR += py-blessings SUBDIR += py-blinker SUBDIR += py-blist SUBDIR += py-bluelet SUBDIR += py-boltons SUBDIR += py-boolean.py SUBDIR += py-boto SUBDIR += py-botocore SUBDIR += py-bps-restpy SUBDIR += py-breathe SUBDIR += py-bsd SUBDIR += py-btest SUBDIR += py-build 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-bump2version SUBDIR += py-bytecode SUBDIR += py-cabby SUBDIR += py-cached-property SUBDIR += py-cachetools SUBDIR += py-cacheyou SUBDIR += py-cachy SUBDIR += py-cadquery-pywrap SUBDIR += py-calver SUBDIR += py-canonicaljson SUBDIR += py-capstone SUBDIR += py-capturer SUBDIR += py-case SUBDIR += py-castellan SUBDIR += py-catalogue SUBDIR += py-cattrs SUBDIR += py-cbor SUBDIR += py-cbor2 SUBDIR += py-cclib SUBDIR += py-cdg SUBDIR += py-celery SUBDIR += py-celery-progress SUBDIR += py-celery-singleton SUBDIR += py-cerberus SUBDIR += py-certsrv SUBDIR += py-cffi SUBDIR += py-cfgv SUBDIR += py-cfn-lint SUBDIR += py-cftime SUBDIR += py-chai SUBDIR += py-chainmap SUBDIR += py-characteristic SUBDIR += py-check-jsonschema SUBDIR += py-check-manifest SUBDIR += py-check-sdist SUBDIR += py-cheetah3 SUBDIR += py-circuitbreaker SUBDIR += py-circuits SUBDIR += py-ciso8601 SUBDIR += py-ckanapi SUBDIR += py-clang SUBDIR += py-cld SUBDIR += py-cle SUBDIR += py-cleo SUBDIR += py-cli-helpers SUBDIR += py-cliapp SUBDIR += py-click SUBDIR += py-click-completion SUBDIR += py-click-creds SUBDIR += py-click-default-group SUBDIR += py-click-default-group-wheel SUBDIR += py-click-help-colors SUBDIR += py-click-log SUBDIR += py-click-option-group SUBDIR += py-click-plugins SUBDIR += py-click-threading SUBDIR += py-click7 SUBDIR += py-cliff SUBDIR += py-cligj SUBDIR += py-clikit SUBDIR += py-clint 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-colorama SUBDIR += py-colored-traceback SUBDIR += py-coloredlogs SUBDIR += py-colorful SUBDIR += py-colorlog SUBDIR += py-colorspacious SUBDIR += py-columnize SUBDIR += py-comm SUBDIR += py-commandlines SUBDIR += py-conditional SUBDIR += py-configargparse SUBDIR += py-configobj SUBDIR += py-configparser SUBDIR += py-configupdater SUBDIR += py-confusable_homoglyphs SUBDIR += py-confuse SUBDIR += py-connection_pool SUBDIR += py-cons SUBDIR += py-constantly SUBDIR += py-construct SUBDIR += py-construct-classes SUBDIR += py-contextlib-chdir SUBDIR += py-contextlib2 SUBDIR += py-convertdate SUBDIR += py-cookiecutter SUBDIR += py-copier SUBDIR += py-coreapi SUBDIR += py-coreschema SUBDIR += py-country SUBDIR += py-cov-core SUBDIR += py-covdefaults SUBDIR += py-coverage SUBDIR += py-coverage_enable_subprocess SUBDIR += py-coveralls SUBDIR += py-cppheaderparser SUBDIR += py-cppy SUBDIR += py-crank SUBDIR += py-crashtest SUBDIR += py-crc32c SUBDIR += py-crcmod SUBDIR += py-crontab SUBDIR += py-cson SUBDIR += py-csv23 SUBDIR += py-ctags SUBDIR += py-ctypesgen SUBDIR += py-curio SUBDIR += py-cursive SUBDIR += py-curtsies SUBDIR += py-custodian SUBDIR += py-cvss SUBDIR += py-cwcwidth SUBDIR += py-cxx SUBDIR += py-cycler SUBDIR += py-cykhash SUBDIR += py-cymbal SUBDIR += py-cymem SUBDIR += py-cysignals SUBDIR += py-cython-test-exception-raiser SUBDIR += py-cytoolz SUBDIR += py-d2to1 SUBDIR += py-daemon SUBDIR += py-daemon-runner SUBDIR += py-daemonize SUBDIR += py-daemons SUBDIR += py-dal SUBDIR += py-darts.util.lru SUBDIR += py-dask SUBDIR += py-dask-histogram SUBDIR += py-dataclass-array SUBDIR += py-dataclasses-json SUBDIR += py-datadog SUBDIR += py-datapackage SUBDIR += py-datasette SUBDIR += py-datatest SUBDIR += py-dateparser SUBDIR += py-dateutil SUBDIR += py-dateutils SUBDIR += py-datrie SUBDIR += py-dbt-extractor SUBDIR += py-dbus SUBDIR += py-ddsketch SUBDIR += py-ddt SUBDIR += py-ddtrace SUBDIR += py-debtcollector SUBDIR += py-debugpy SUBDIR += py-debugtools SUBDIR += py-decopatch SUBDIR += py-decorator SUBDIR += py-decoratortools SUBDIR += py-deepdiff SUBDIR += py-deepmerge SUBDIR += py-defusedxml SUBDIR += py-demjson SUBDIR += py-deprecat SUBDIR += py-deprecated SUBDIR += py-deprecation SUBDIR += py-deptry SUBDIR += py-devtools SUBDIR += py-dexml2 SUBDIR += py-diazo SUBDIR += py-diff-cover SUBDIR += py-dill SUBDIR += py-dirspec SUBDIR += py-diskcache SUBDIR += py-distlib SUBDIR += py-distributed SUBDIR += py-dj41-django-rq SUBDIR += py-dj41-graphene-django SUBDIR += py-dj42-django-rq SUBDIR += py-dj42-graphene-django SUBDIR += py-django-rq SUBDIR += py-docformatter SUBDIR += py-dockerpty SUBDIR += py-docopt SUBDIR += py-doctest-ignore-unicode SUBDIR += py-dodgy SUBDIR += py-dogpile.cache SUBDIR += py-doit SUBDIR += py-donut-shellcode SUBDIR += py-dotted SUBDIR += py-dotty-dict SUBDIR += py-dpcontracts SUBDIR += py-dtfabric SUBDIR += py-dulwich SUBDIR += py-dunamai SUBDIR += py-durus SUBDIR += py-dynrules SUBDIR += py-easyprocess SUBDIR += py-editables SUBDIR += py-editdistance SUBDIR += py-eggtestinfo SUBDIR += py-ejson SUBDIR += py-enlighten SUBDIR += py-entrypoint2 SUBDIR += py-entrypoints SUBDIR += py-enum-compat SUBDIR += py-envier SUBDIR += py-envisage SUBDIR += py-envs SUBDIR += py-epc SUBDIR += py-epdb SUBDIR += py-epsilon SUBDIR += py-etils SUBDIR += py-etuples SUBDIR += py-evdev SUBDIR += py-eventlib SUBDIR += py-ewah-bool-utils SUBDIR += py-ewmh SUBDIR += py-exam SUBDIR += py-exceptiongroup SUBDIR += py-executing SUBDIR += py-expiringdict SUBDIR += py-extras SUBDIR += py-extremes SUBDIR += py-fabric SUBDIR += py-fabric3 SUBDIR += py-face SUBDIR += py-factory-boy SUBDIR += py-fam SUBDIR += py-fastbencode SUBDIR += py-fastcache SUBDIR += py-fasteners SUBDIR += py-fastentrypoints SUBDIR += py-fastf1 SUBDIR += py-fastimport SUBDIR += py-fastjsonschema SUBDIR += py-fastnumbers SUBDIR += py-fastprogress SUBDIR += py-fbprophet SUBDIR += py-fields SUBDIR += py-filebytes SUBDIR += py-filedepot SUBDIR += py-filemagic SUBDIR += py-filetype SUBDIR += py-find-libpython SUBDIR += py-findlibs SUBDIR += py-findpython SUBDIR += py-fire SUBDIR += py-first SUBDIR += py-fixtures SUBDIR += py-flake8 SUBDIR += py-flake8-black SUBDIR += py-flake8-bugbear SUBDIR += py-flake8-builtins SUBDIR += py-flake8-comprehensions SUBDIR += py-flake8-docstrings SUBDIR += py-flake8-future-annotations SUBDIR += py-flake8-import-order SUBDIR += py-flake8-polyfill SUBDIR += py-flake8-print SUBDIR += py-flake8-pyi SUBDIR += py-flake8-quotes SUBDIR += py-flake8_simplify SUBDIR += py-flaky SUBDIR += py-flask-babel SUBDIR += py-flatbuffers SUBDIR += py-flatdict SUBDIR += py-flatten-dict SUBDIR += py-flex SUBDIR += py-flexmock SUBDIR += py-flit SUBDIR += py-flit-core SUBDIR += py-flit-scm SUBDIR += py-fluent SUBDIR += py-fluent-logger SUBDIR += py-flufl.i18n SUBDIR += py-flufl.lock SUBDIR += py-flynt SUBDIR += py-foolscap SUBDIR += py-freebsd SUBDIR += py-freebsd-sysctl SUBDIR += py-freenas.utils SUBDIR += py-freezegun SUBDIR += py-frictionless SUBDIR += py-frictionless-ckan-mapper SUBDIR += py-frozendict SUBDIR += py-frozenlist SUBDIR += py-fs SUBDIR += py-fs2 SUBDIR += py-fsspec SUBDIR += py-fudge SUBDIR += py-funcparserlib SUBDIR += py-funcsigs SUBDIR += py-funcy SUBDIR += py-furl SUBDIR += py-fusepy SUBDIR += py-future SUBDIR += py-futurist SUBDIR += py-fuzzywuzzy SUBDIR += py-fypp SUBDIR += py-game SUBDIR += py-game_sdl2 SUBDIR += py-gapic-generator SUBDIR += py-gast SUBDIR += py-gcsfs SUBDIR += py-gelidum SUBDIR += py-genson SUBDIR += py-genty SUBDIR += py-geocoder SUBDIR += py-geojson SUBDIR += py-get-reader SUBDIR += py-gevent SUBDIR += py-geventhttpclient SUBDIR += py-git-semver SUBDIR += py-git-up SUBDIR += py-git-url-parse SUBDIR += py-gitdb SUBDIR += py-gitlab-webhook-handler SUBDIR += py-gitless SUBDIR += py-gitpython SUBDIR += py-giturlparse SUBDIR += py-glance-store SUBDIR += py-glob2 SUBDIR += py-glom SUBDIR += py-gobject3 SUBDIR += py-google-cloud-iam SUBDIR += py-google-crc32c SUBDIR += py-google-i18n-address SUBDIR += py-google-pasta SUBDIR += py-google-re2 SUBDIR += py-googleapis-common-protos SUBDIR += py-gpxpy SUBDIR += py-grab SUBDIR += py-graphene SUBDIR += py-graphene-django SUBDIR += py-graphene-sqlalchemy SUBDIR += py-graphene2 SUBDIR += py-graphql-core SUBDIR += py-graphql-core2 SUBDIR += py-graphql-relay SUBDIR += py-graphql-relay2 SUBDIR += py-greenlet SUBDIR += py-grizzled SUBDIR += py-grpc-google-iam-v1 SUBDIR += py-grpc-stubs SUBDIR += py-grpcio SUBDIR += py-grpcio-gcp SUBDIR += py-grpcio-status SUBDIR += py-grpcio-tools SUBDIR += py-gs_api_client SUBDIR += py-gtfslib SUBDIR += py-guppy3 SUBDIR += py-gyp SUBDIR += py-hash_ring SUBDIR += py-hatch SUBDIR += py-hatch-autorun SUBDIR += py-hatch-fancy-pypi-readme SUBDIR += py-hatch-jupyter-builder SUBDIR += py-hatch-nodejs-version SUBDIR += py-hatch-requirements-txt SUBDIR += py-hatch-semver SUBDIR += py-hatch-vcs SUBDIR += py-hatchling SUBDIR += py-heapdict SUBDIR += py-helpdev SUBDIR += py-hg-evolve SUBDIR += py-hglib SUBDIR += py-hgtools SUBDIR += py-hidraw SUBDIR += py-holidays SUBDIR += py-hologram SUBDIR += py-homebase SUBDIR += py-http-prompt SUBDIR += py-humanize SUBDIR += py-hunter SUBDIR += py-hupper SUBDIR += py-hvac SUBDIR += py-hypothesis SUBDIR += py-hypothesmith SUBDIR += py-icalendar SUBDIR += py-ice SUBDIR += py-ice37 SUBDIR += py-identify SUBDIR += py-ijson SUBDIR += py-imgkit SUBDIR += py-immutabledict SUBDIR += py-immutables SUBDIR += py-importlab SUBDIR += py-importlib-metadata SUBDIR += py-importlib-resources SUBDIR += py-incremental SUBDIR += py-infinity SUBDIR += py-inflect SUBDIR += py-inflection SUBDIR += py-iniconfig SUBDIR += py-inifile SUBDIR += py-iniparse SUBDIR += py-installer SUBDIR += py-intbitset SUBDIR += py-intelhex SUBDIR += py-interface-meta SUBDIR += py-intervals SUBDIR += py-intervaltree SUBDIR += py-invoke SUBDIR += py-ioflo SUBDIR += py-iopath SUBDIR += py-ipaddr SUBDIR += py-ipdb SUBDIR += py-ipydatawidgets SUBDIR += py-ipykernel SUBDIR += py-ipympl SUBDIR += py-ipyparallel SUBDIR += py-ipython_genutils SUBDIR += py-ipywidgets SUBDIR += py-iso8601 SUBDIR += py-isodate SUBDIR += py-isoduration SUBDIR += py-isort SUBDIR += py-itanium_demangler SUBDIR += py-itemadapter SUBDIR += py-itemloaders SUBDIR += py-iteration-utilities SUBDIR += py-itertree SUBDIR += py-itypes SUBDIR += py-janus SUBDIR += py-jaraco.classes SUBDIR += py-jaraco.collections SUBDIR += py-jaraco.context SUBDIR += py-jaraco.env SUBDIR += py-jaraco.functools SUBDIR += py-jaraco.itertools SUBDIR += py-jaraco.logging SUBDIR += py-jaraco.stream SUBDIR += py-jaraco.text SUBDIR += py-jaraco.timing SUBDIR += py-jaraco.util SUBDIR += py-javaproperties SUBDIR += py-jdcal SUBDIR += py-jedi SUBDIR += py-jeepney SUBDIR += py-jellyfish SUBDIR += py-jenkins-job-builder SUBDIR += py-jep SUBDIR += py-jinja2-ansible-filters SUBDIR += py-jinja2-time SUBDIR += py-jira SUBDIR += py-jitterentropy SUBDIR += py-jmespath SUBDIR += py-joblib SUBDIR += py-johnnydep SUBDIR += py-jsbeautifier SUBDIR += py-jschema-to-python SUBDIR += py-jsmin SUBDIR += py-json5 SUBDIR += py-json_tricks SUBDIR += py-jsondiff SUBDIR += py-jsonform SUBDIR += py-jsonlines SUBDIR += py-jsonnet SUBDIR += py-jsonpatch SUBDIR += py-jsonpath-ng SUBDIR += py-jsonpath-rw SUBDIR += py-jsonpickle SUBDIR += py-jsonpointer SUBDIR += py-jsonref SUBDIR += py-jsonrpclib-pelix SUBDIR += py-jsonschema SUBDIR += py-jsonschema-path SUBDIR += py-jsonschema-spec SUBDIR += py-jsonschema-specifications SUBDIR += py-jsonschema3 SUBDIR += py-jsonschema417 SUBDIR += py-jsonsir SUBDIR += py-junitparser SUBDIR += py-jupyter-client SUBDIR += py-jupyter-collaboration SUBDIR += py-jupyter-core SUBDIR += py-jupyter-events SUBDIR += py-jupyter-kernel-test SUBDIR += py-jupyter-lsp SUBDIR += py-jupyter-packaging SUBDIR += py-jupyter-server SUBDIR += py-jupyter-server-fileid SUBDIR += py-jupyter-server-mathjax SUBDIR += py-jupyter-server-terminals SUBDIR += py-jupyter-telemetry SUBDIR += py-jupyter-ydoc SUBDIR += py-jupyter_console SUBDIR += py-jupyterlab SUBDIR += py-jupyterlab-lsp SUBDIR += py-jupyterlab-server SUBDIR += py-jupyterlab-widgets SUBDIR += py-jupyterlab_launcher SUBDIR += py-kaitaistruct SUBDIR += py-kaptan SUBDIR += py-kazoo SUBDIR += py-keystone-engine SUBDIR += py-keystoneauth1 SUBDIR += py-keystonemiddleware SUBDIR += py-kitchen SUBDIR += py-klepto SUBDIR += py-knack SUBDIR += py-l18n SUBDIR += py-lark SUBDIR += py-launchpadlib SUBDIR += py-lazr.config SUBDIR += py-lazr.delegates SUBDIR += py-lazr.restfulclient SUBDIR += py-lazr.uri SUBDIR += py-lazy SUBDIR += py-lazy-object-proxy SUBDIR += py-lazy_loader SUBDIR += py-libcst SUBDIR += py-libcst03 SUBDIR += py-libioc 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-lief SUBDIR += py-line-profiler SUBDIR += py-linear-tsv SUBDIR += py-linecache2 SUBDIR += py-lineedit SUBDIR += py-littleutils SUBDIR += py-livemark SUBDIR += py-llfuse SUBDIR += py-llvmcpy SUBDIR += py-llvmlite SUBDIR += py-lml SUBDIR += py-localstack-client SUBDIR += py-locket SUBDIR += py-lockfile SUBDIR += py-logan SUBDIR += py-logbook SUBDIR += py-logfury SUBDIR += py-logilab-common SUBDIR += py-loguru SUBDIR += py-logutils SUBDIR += py-logzero SUBDIR += py-looseversion SUBDIR += py-louie SUBDIR += py-lru-dict SUBDIR += py-lsprotocol SUBDIR += py-lunardate SUBDIR += py-lxml SUBDIR += py-lxml-stubs SUBDIR += py-mac-vendor-lookup SUBDIR += py-macholib SUBDIR += py-magic SUBDIR += py-mailcap-fix SUBDIR += py-makefun SUBDIR += py-manuel SUBDIR += py-marrow.mailer SUBDIR += py-marrow.util SUBDIR += py-marshmallow SUBDIR += py-marshmallow-enum SUBDIR += py-mashumaro SUBDIR += py-matrix-angular-sdk SUBDIR += py-matrix-common SUBDIR += py-maturin SUBDIR += py-mccabe SUBDIR += py-mdv SUBDIR += py-mediafile SUBDIR += py-mediapy SUBDIR += py-medikit SUBDIR += py-memory-allocator SUBDIR += py-memory-profiler SUBDIR += py-mergedeep SUBDIR += py-microversion-parse SUBDIR += py-milc SUBDIR += py-mime SUBDIR += py-miniKanren SUBDIR += py-minidump SUBDIR += py-minimal-snowplow-tracker SUBDIR += py-minimongo SUBDIR += py-minio SUBDIR += py-mock SUBDIR += py-molecule SUBDIR += py-mondrian SUBDIR += py-mongokit SUBDIR += py-monkeytype SUBDIR += py-monotonic SUBDIR += py-monty SUBDIR += py-more-itertools SUBDIR += py-moto SUBDIR += py-mox SUBDIR += py-mox3 SUBDIR += py-mrkd SUBDIR += py-msal SUBDIR += py-msal-extensions SUBDIR += py-msgpack SUBDIR += py-mulpyplexer SUBDIR += py-multi_key_dict SUBDIR += py-multipart SUBDIR += py-multipledispatch SUBDIR += py-multiprocess SUBDIR += py-multiset SUBDIR += py-multitasking SUBDIR += py-munch SUBDIR += py-murmurhash SUBDIR += py-mutmut SUBDIR += py-mygpoclient SUBDIR += py-mypy SUBDIR += py-mypy-boto3-s3 SUBDIR += py-mypy-protobuf SUBDIR += py-mypy_extensions SUBDIR += py-mystic SUBDIR += py-naiveBayesClassifier SUBDIR += py-nanotime SUBDIR += py-natsort SUBDIR += py-natural SUBDIR += py-nbclassic SUBDIR += py-nbclient SUBDIR += py-nbconvert SUBDIR += py-nbdime SUBDIR += py-nbformat SUBDIR += py-nbval SUBDIR += py-nest-asyncio SUBDIR += py-node-semver SUBDIR += py-nodeenv SUBDIR += py-nose SUBDIR += py-nose-cov SUBDIR += py-nose-timer SUBDIR += py-nose2 SUBDIR += py-nose3 SUBDIR += py-noseofyeti SUBDIR += py-nosexcover SUBDIR += py-notebook-shim SUBDIR += py-notify2 SUBDIR += py-num2words SUBDIR += py-numba SUBDIR += py-objgraph SUBDIR += py-objsize SUBDIR += py-oci SUBDIR += py-odfpy SUBDIR += py-offtrac SUBDIR += py-olefile SUBDIR += py-oletools SUBDIR += py-omnijson SUBDIR += py-omniorb SUBDIR += py-onigurumacffi SUBDIR += py-opcodes SUBDIR += py-openapi-codec SUBDIR += py-openapi-core SUBDIR += py-openapi-schema-validator SUBDIR += py-openapi-spec-validator SUBDIR += py-opencensus SUBDIR += py-opencensus-context SUBDIR += py-opendht SUBDIR += py-opengrok-tools SUBDIR += py-openstacksdk SUBDIR += py-opentelemetry-api SUBDIR += py-opentelemetry-sdk SUBDIR += py-opentelemetry-semantic-conventions SUBDIR += py-opentracing SUBDIR += py-opster SUBDIR += py-optik SUBDIR += py-orange-canvas-core SUBDIR += py-orange-widget-base SUBDIR += py-orca SUBDIR += py-ordered-set SUBDIR += py-ordereddict SUBDIR += py-orderedmultidict SUBDIR += py-orjson SUBDIR += py-os-brick SUBDIR += py-os-client-config SUBDIR += py-os-service-types 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.limit SUBDIR += py-oslo.log SUBDIR += py-oslo.messaging SUBDIR += py-oslo.metrics 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.upgradecheck SUBDIR += py-oslo.utils SUBDIR += py-oslo.versionedobjects SUBDIR += py-oslo.vmware SUBDIR += py-oslotest SUBDIR += py-osprofiler SUBDIR += py-outcome SUBDIR += py-overrides SUBDIR += py-ovs SUBDIR += py-ovsdbapp SUBDIR += py-oyaml SUBDIR += py-p4python SUBDIR += py-packaging SUBDIR += py-parallax SUBDIR += py-param SUBDIR += py-parameterized SUBDIR += py-parsedatetime SUBDIR += py-parsley SUBDIR += py-parver SUBDIR += py-pastel SUBDIR += py-patch SUBDIR += py-patch-ng SUBDIR += py-path SUBDIR += py-path.py SUBDIR += py-pathable SUBDIR += py-pathlib2 SUBDIR += py-pathos SUBDIR += py-pathspec SUBDIR += py-pathtools SUBDIR += py-paver SUBDIR += py-pbr SUBDIR += py-pcodedmp SUBDIR += py-pdm SUBDIR += py-pdm-autoexport SUBDIR += py-pdm-backend SUBDIR += py-pdm-pep517 SUBDIR += py-pdoc SUBDIR += py-pebble SUBDIR += py-pefile SUBDIR += py-pendulum SUBDIR += py-pep440 SUBDIR += py-pep517 SUBDIR += py-pep562 SUBDIR += py-pep621 SUBDIR += py-pep8-naming SUBDIR += py-period SUBDIR += py-persistent SUBDIR += py-petname SUBDIR += py-pew SUBDIR += py-pex SUBDIR += py-phabricator SUBDIR += py-phonenumbers SUBDIR += py-phply SUBDIR += py-phpserialize SUBDIR += py-phx-class-registry SUBDIR += py-pid SUBDIR += py-pika SUBDIR += py-pika-pool SUBDIR += py-pinocchio SUBDIR += py-pint SUBDIR += py-pint-pandas SUBDIR += py-pip SUBDIR += py-pip-api SUBDIR += py-pip-audit SUBDIR += py-pip-licenses SUBDIR += py-pip-requirements-parser SUBDIR += py-pip-run SUBDIR += py-pip-shims SUBDIR += py-pip-tools SUBDIR += py-pip-tools4 SUBDIR += py-pipdeptree SUBDIR += py-pipenv SUBDIR += py-pipreqs SUBDIR += py-pipx SUBDIR += py-pkgconfig SUBDIR += py-pkgutil-resolve-name SUBDIR += py-plac SUBDIR += py-plan SUBDIR += py-platformdirs SUBDIR += py-plette SUBDIR += py-plex SUBDIR += py-plucky SUBDIR += py-pluggy SUBDIR += py-pluggy0 SUBDIR += py-pluginbase SUBDIR += py-plux SUBDIR += py-ply SUBDIR += py-pockets SUBDIR += py-podcastparser SUBDIR += py-poetry SUBDIR += py-poetry-core SUBDIR += py-poetry-dynamic-versioning SUBDIR += py-poetry-plugin-export SUBDIR += py-poetry-semver SUBDIR += py-poetry-types SUBDIR += py-poetry2setup SUBDIR += py-polib SUBDIR += py-pooch SUBDIR += py-pop SUBDIR += py-pop-config SUBDIR += py-portalocker SUBDIR += py-positional SUBDIR += py-posix_ipc SUBDIR += py-pox SUBDIR += py-poyo SUBDIR += py-ppft SUBDIR += py-prance SUBDIR += py-pre-commit SUBDIR += py-pre-commit-hooks SUBDIR += py-prefixed SUBDIR += py-preshed SUBDIR += py-pretend SUBDIR += py-prettyprinter SUBDIR += py-prettytable SUBDIR += py-prettytable0 SUBDIR += py-process-tests SUBDIR += py-proglog SUBDIR += py-progress SUBDIR += py-promise SUBDIR += py-prompt-toolkit SUBDIR += py-prompt-toolkit1 SUBDIR += py-prompt-toolkit2 SUBDIR += py-property-cached SUBDIR += py-proselint SUBDIR += py-prospector SUBDIR += py-proto-plus SUBDIR += py-protobuf SUBDIR += py-protobuf-compiler SUBDIR += py-proxmoxer SUBDIR += py-ptable SUBDIR += py-ptpython SUBDIR += py-ptvsd SUBDIR += py-pudb SUBDIR += py-pure-eval SUBDIR += py-purl SUBDIR += py-py SUBDIR += py-py-partiql-parser SUBDIR += py-py-serializable SUBDIR += py-py-ubjson SUBDIR += py-py3nvml SUBDIR += py-pyTooling SUBDIR += py-py_interface SUBDIR += py-pyaml-env SUBDIR += py-pyasn1 SUBDIR += py-pyasn1-modules SUBDIR += py-pybind11 SUBDIR += py-pybind11210 SUBDIR += py-pybix SUBDIR += py-pycadf SUBDIR += py-pycalendar SUBDIR += py-pycallgraph SUBDIR += py-pycapsicum SUBDIR += py-pycerberus SUBDIR += py-pycmd SUBDIR += py-pycnite SUBDIR += py-pycocotools SUBDIR += py-pycodeexport SUBDIR += py-pycodestyle SUBDIR += py-pycognito SUBDIR += py-pycompilation SUBDIR += py-pycomplete SUBDIR += py-pycparser SUBDIR += py-pydantic SUBDIR += py-pydantic-core SUBDIR += py-pydantic-extra-types SUBDIR += py-pydantic-vault SUBDIR += py-pydantic-yaml SUBDIR += py-pydantic2 SUBDIR += py-pydash SUBDIR += py-pydecor SUBDIR += py-pydenticon SUBDIR += py-pydevd SUBDIR += py-pydispatcher SUBDIR += py-pydocstyle SUBDIR += py-pydrive SUBDIR += py-pyee SUBDIR += py-pyelftools SUBDIR += py-pyface SUBDIR += py-pyfcm SUBDIR += py-pyflakes SUBDIR += py-pyformance SUBDIR += py-pygdbmi SUBDIR += py-pygit2 SUBDIR += py-pygithub SUBDIR += py-pygpx SUBDIR += py-pyhashxx SUBDIR += py-pyhcl SUBDIR += py-pyicu SUBDIR += py-pyina SUBDIR += py-pyinotify SUBDIR += py-pyinquirer SUBDIR += py-pyinstaller SUBDIR += py-pyintelowl SUBDIR += py-pyjq SUBDIR += py-pyjsparser SUBDIR += py-pykdtree SUBDIR += py-pylama SUBDIR += py-pyleri SUBDIR += py-pylev SUBDIR += py-pylibsrtp SUBDIR += py-pylint-django SUBDIR += py-pylint-flask SUBDIR += py-pylint-plugin-utils SUBDIR += py-pylint-venv SUBDIR += py-pylru SUBDIR += py-pylru-cache SUBDIR += py-pyls-black SUBDIR += py-pymarc SUBDIR += py-pymaven-patch SUBDIR += py-pymisp SUBDIR += py-pympler SUBDIR += py-pymsgbox SUBDIR += py-pymtbl SUBDIR += py-pynest2d SUBDIR += py-pyopencl SUBDIR += py-pyparsing SUBDIR += py-pyparsing2 SUBDIR += py-pyperclip SUBDIR += py-pyperf SUBDIR += py-pyplusplus SUBDIR += py-pyproject-flake8 SUBDIR += py-pyproject-fmt SUBDIR += py-pyproject-metadata SUBDIR += py-pyproject_hooks SUBDIR += py-pypugjs SUBDIR += py-pyqtree SUBDIR += py-pyquery SUBDIR += py-pyquil SUBDIR += py-pyral SUBDIR += py-pyrepl SUBDIR += py-pyrfc3339 SUBDIR += py-pyright SUBDIR += py-pyro SUBDIR += py-pyroma SUBDIR += py-pyrsistent SUBDIR += py-pyscaffold SUBDIR += py-pysdl2 SUBDIR += py-pyshp SUBDIR += py-pysimdjson SUBDIR += py-pysparklines SUBDIR += py-pystorm SUBDIR += py-pyte SUBDIR += py-pytest SUBDIR += py-pytest-aiohttp SUBDIR += py-pytest-asyncio SUBDIR += py-pytest-azurepipelines SUBDIR += py-pytest-benchmark SUBDIR += py-pytest-black SUBDIR += py-pytest-black-multipy SUBDIR += py-pytest-cache SUBDIR += py-pytest-canonical-data SUBDIR += py-pytest-capturelog SUBDIR += py-pytest-cases SUBDIR += py-pytest-checkdocs SUBDIR += py-pytest-console-scripts SUBDIR += py-pytest-cov SUBDIR += py-pytest-cpp SUBDIR += py-pytest-datadir SUBDIR += py-pytest-django SUBDIR += py-pytest-enabler SUBDIR += py-pytest-env SUBDIR += py-pytest-factoryboy SUBDIR += py-pytest-fixture-config SUBDIR += py-pytest-flake8 SUBDIR += py-pytest-flakes SUBDIR += py-pytest-flask SUBDIR += py-pytest-forked SUBDIR += py-pytest-freezer SUBDIR += py-pytest-helpers-namespace SUBDIR += py-pytest-html SUBDIR += py-pytest-httpbin SUBDIR += py-pytest-httpserver SUBDIR += py-pytest-isort SUBDIR += py-pytest-jupyter SUBDIR += py-pytest-lazy-fixture SUBDIR += py-pytest-localserver SUBDIR += py-pytest-markdown SUBDIR += py-pytest-metadata SUBDIR += py-pytest-mock SUBDIR += py-pytest-mpl SUBDIR += py-pytest-mutagen SUBDIR += py-pytest-mypy SUBDIR += py-pytest-mypy-plugins SUBDIR += py-pytest-nunit SUBDIR += py-pytest-order SUBDIR += py-pytest-parallel SUBDIR += py-pytest-pep8 SUBDIR += py-pytest-plus SUBDIR += py-pytest-profiling SUBDIR += py-pytest-pycodestyle SUBDIR += py-pytest-qt SUBDIR += py-pytest-random-order SUBDIR += py-pytest-randomly SUBDIR += py-pytest-regressions SUBDIR += py-pytest-regtest SUBDIR += py-pytest-relaxed SUBDIR += py-pytest-rerunfailures SUBDIR += py-pytest-runner SUBDIR += py-pytest-services SUBDIR += py-pytest-shutil SUBDIR += py-pytest-subprocess SUBDIR += py-pytest-subtests SUBDIR += py-pytest-sugar SUBDIR += py-pytest-timeout SUBDIR += py-pytest-tornado SUBDIR += py-pytest-tornasync SUBDIR += py-pytest-translations SUBDIR += py-pytest-trio SUBDIR += py-pytest-twisted SUBDIR += py-pytest-verbose-parametrize SUBDIR += py-pytest-virtualenv SUBDIR += py-pytest-watcher SUBDIR += py-pytest-xdist SUBDIR += py-pytest-xprocess SUBDIR += py-pytest4 SUBDIR += py-pytest4-cache SUBDIR += py-pytest4-cov SUBDIR += py-pytest4-flakes SUBDIR += py-python-application SUBDIR += py-python-bugzilla SUBDIR += py-python-dbusmock SUBDIR += py-python-decouple SUBDIR += py-python-distutils-extra SUBDIR += py-python-dtrace SUBDIR += py-python-easyconfig SUBDIR += py-python-editor SUBDIR += py-python-engineio SUBDIR += py-python-gflags SUBDIR += py-python-gilt SUBDIR += py-python-gist SUBDIR += py-python-gitlab SUBDIR += py-python-jenkins SUBDIR += py-python-json-logger SUBDIR += py-python-jsonrpc-server SUBDIR += py-python-magic SUBDIR += py-python-mimeparse SUBDIR += py-python-pcre SUBDIR += py-python-ptrace SUBDIR += py-python-rapidjson SUBDIR += py-python-socketio SUBDIR += py-python-statsd SUBDIR += py-python-subunit SUBDIR += py-pythonbrew SUBDIR += py-pythondialog SUBDIR += py-pythonfinder SUBDIR += py-pythran SUBDIR += py-pytimeparse SUBDIR += py-pytoolconfig SUBDIR += py-pytools SUBDIR += py-pytrie SUBDIR += py-pytvmaze SUBDIR += py-pytweening SUBDIR += py-pytz SUBDIR += py-pytz-deprecation-shim SUBDIR += py-pytzdata SUBDIR += py-pyudev SUBDIR += py-pyupgrade SUBDIR += py-pyusb SUBDIR += py-pyvisa SUBDIR += py-pyvisa-py SUBDIR += py-pyxb-x SUBDIR += py-pyyaml-include SUBDIR += py-pyyaml5 SUBDIR += py-pyyaml_env_tag SUBDIR += py-pyzipper SUBDIR += py-q SUBDIR += py-qasync SUBDIR += py-qcs-api-client SUBDIR += py-qstylizer SUBDIR += py-qt5 SUBDIR += py-qt5-pyqt SUBDIR += py-qt5-qscintilla2 SUBDIR += py-qt5-sip SUBDIR += py-qt6 SUBDIR += py-qt6-pyqt SUBDIR += py-qt6-qscintilla2 SUBDIR += py-qt6-sip SUBDIR += py-qtbuilder SUBDIR += py-qtconsole SUBDIR += py-querystring-parser SUBDIR += py-questionary SUBDIR += py-qutip SUBDIR += py-qutip-qip SUBDIR += py-ramlfications SUBDIR += py-rapidfuzz SUBDIR += py-rapidfuzz-capi SUBDIR += py-ratelim SUBDIR += py-ratelimiter SUBDIR += py-rauth SUBDIR += py-raven SUBDIR += py-rchitect SUBDIR += py-re-assert SUBDIR += py-readme-renderer SUBDIR += py-rebulk SUBDIR += py-recordclass SUBDIR += py-recurring-ical-events SUBDIR += py-red-black-tree-mod SUBDIR += py-rednose SUBDIR += py-reedsolo SUBDIR += py-referencing SUBDIR += py-regress SUBDIR += py-remote-pdb SUBDIR += py-repoze.lru SUBDIR += py-repoze.sphinx.autointerface SUBDIR += py-repoze.tm2 SUBDIR += py-repoze.who SUBDIR += py-repoze.xmliter SUBDIR += py-represent SUBDIR += py-requestsexceptions SUBDIR += py-requirements-detector SUBDIR += py-requirementslib SUBDIR += py-resolvelib SUBDIR += py-resolvelib05 SUBDIR += py-resolvelib07 SUBDIR += py-resolvelib1 SUBDIR += py-resolver SUBDIR += py-resource SUBDIR += py-responses SUBDIR += py-retry2 SUBDIR += py-retrying SUBDIR += py-rfc3339 SUBDIR += py-rfc3339-validator SUBDIR += py-rfc3986-validator SUBDIR += py-rich-click SUBDIR += py-robotframework SUBDIR += py-robotframework-databaselibrary SUBDIR += py-robotframework-pabot SUBDIR += py-robotframework-pythonlibcore SUBDIR += py-robotframework-requests SUBDIR += py-robotframework-seleniumlibrary SUBDIR += py-robotframework-stacktrace SUBDIR += py-robotremoteserver SUBDIR += py-rope SUBDIR += py-rose SUBDIR += py-rpcq SUBDIR += py-rpds-py SUBDIR += py-rply SUBDIR += py-rq SUBDIR += py-rq-scheduler SUBDIR += py-rstr SUBDIR += py-rtree SUBDIR += py-rtslib-fb SUBDIR += py-ruamel.yaml SUBDIR += py-ruamel.yaml.clib SUBDIR += py-rubymarshal SUBDIR += py-rush SUBDIR += py-rx SUBDIR += py-rx1 SUBDIR += py-s3fs SUBDIR += py-saneyaml SUBDIR += py-sarge SUBDIR += py-sarif-om SUBDIR += py-scantree SUBDIR += py-schedule SUBDIR += py-scheduler SUBDIR += py-schema SUBDIR += py-schematics-patched SUBDIR += py-scikit-base SUBDIR += py-scikit-build SUBDIR += py-scikit-build-core SUBDIR += py-scooby SUBDIR += py-scripttest SUBDIR += py-selection SUBDIR += py-semantic-version SUBDIR += py-semver SUBDIR += py-sentry-sdk SUBDIR += py-serializable SUBDIR += py-serpent SUBDIR += py-session-info SUBDIR += py-setoptconf SUBDIR += py-setproctitle SUBDIR += py-setuptools SUBDIR += py-setuptools-declarative-requirements SUBDIR += py-setuptools-gettext SUBDIR += py-setuptools-git SUBDIR += py-setuptools-git-versioning SUBDIR += py-setuptools-pkg SUBDIR += py-setuptools-rust SUBDIR += py-setuptools44 SUBDIR += py-setuptools58 SUBDIR += py-setuptools_git_ls_files SUBDIR += py-setuptools_hg SUBDIR += py-setuptools_scm SUBDIR += py-setuptools_scm7 SUBDIR += py-setuptools_scm_git_archive SUBDIR += py-sexpdata SUBDIR += py-sgmllib3k SUBDIR += py-sh SUBDIR += py-shapely SUBDIR += py-shellingham SUBDIR += py-shtab SUBDIR += py-signalr-client-aio SUBDIR += py-simple-parsing SUBDIR += py-simple-term-menu SUBDIR += py-simpleeval SUBDIR += py-simplegeneric SUBDIR += py-simplejson SUBDIR += py-simpleparse SUBDIR += py-simpletal SUBDIR += py-simpy SUBDIR += py-single-version SUBDIR += py-sip SUBDIR += py-sip4 SUBDIR += py-six SUBDIR += py-smmap SUBDIR += py-snakeviz SUBDIR += py-sniffio SUBDIR += py-sortedcontainers SUBDIR += py-sourcemap SUBDIR += py-sparse SUBDIR += py-speaklater SUBDIR += py-speg SUBDIR += py-spyder-kernels SUBDIR += py-spyder-unittest SUBDIR += py-squint SUBDIR += py-sre-yield SUBDIR += py-srsly SUBDIR += py-stack-data SUBDIR += py-stackexchange SUBDIR += py-statgrab SUBDIR += py-statsd SUBDIR += py-stdlib-list SUBDIR += py-stdnum SUBDIR += py-stevedore SUBDIR += py-stone SUBDIR += py-stopit SUBDIR += py-strategies SUBDIR += py-streamparse SUBDIR += py-strenum SUBDIR += py-strict-rfc3339 SUBDIR += py-strictyaml SUBDIR += py-stringbrewer SUBDIR += py-stringcase SUBDIR += py-structlog SUBDIR += py-subprocess-tee SUBDIR += py-subversion SUBDIR += py-sure SUBDIR += py-swagger-spec-validator SUBDIR += py-synr SUBDIR += py-sysctl SUBDIR += py-sysv_ipc SUBDIR += py-tables SUBDIR += py-tabulate SUBDIR += py-tabulator SUBDIR += py-tailer SUBDIR += py-tapi SUBDIR += py-tarantool-queue SUBDIR += py-tartiflette SUBDIR += py-tartiflette-aiohttp SUBDIR += py-taskflow SUBDIR += py-tasklib SUBDIR += py-tblib SUBDIR += py-tdworkflow SUBDIR += py-telepath SUBDIR += py-tempora SUBDIR += py-tenacity SUBDIR += py-tendo SUBDIR += py-termcolor SUBDIR += py-termcolor-whl SUBDIR += py-termstyle SUBDIR += py-testfixtures SUBDIR += py-testinfra SUBDIR += py-testoob SUBDIR += py-testpath SUBDIR += py-testrepository SUBDIR += py-testresources SUBDIR += py-testscenarios SUBDIR += py-testtools SUBDIR += py-thefuzz SUBDIR += py-threadpoolctl SUBDIR += py-threema-msgapi SUBDIR += py-thrift SUBDIR += py-thriftpy2 SUBDIR += py-tiamat SUBDIR += py-time-machine SUBDIR += py-timelib SUBDIR += py-timeout-decorator SUBDIR += py-tinyarray SUBDIR += py-tinynetrc SUBDIR += py-tinyrpc SUBDIR += py-tipper SUBDIR += py-tokenize-rt SUBDIR += py-toolz SUBDIR += py-tooz SUBDIR += py-toposort SUBDIR += py-tox SUBDIR += py-traceback2 SUBDIR += py-traitlets SUBDIR += py-traits SUBDIR += py-traittypes SUBDIR += py-transaction SUBDIR += py-transitions SUBDIR += py-tree-format SUBDIR += py-tree-sitter SUBDIR += py-treelib SUBDIR += py-trimesh SUBDIR += py-trove-classifiers SUBDIR += py-ttictoc SUBDIR += py-ttkbootstrap SUBDIR += py-ttystatus SUBDIR += py-twiggy SUBDIR += py-twilio SUBDIR += py-twine SUBDIR += py-twisted SUBDIR += py-txaio SUBDIR += py-txi2p-tahoe SUBDIR += py-typechecks SUBDIR += py-typeguard SUBDIR += py-typer SUBDIR += py-types-Flask SUBDIR += py-types-Jinja2 SUBDIR += py-types-MarkupSafe SUBDIR += py-types-Pillow SUBDIR += py-types-PyYAML SUBDIR += py-types-Werkzeug SUBDIR += py-types-click SUBDIR += py-types-cryptography SUBDIR += py-types-docutils SUBDIR += py-types-futures SUBDIR += py-types-jsonschema SUBDIR += py-types-mock SUBDIR += py-types-protobuf SUBDIR += py-types-psutil SUBDIR += py-types-psycopg2 SUBDIR += py-types-python-dateutil SUBDIR += py-types-requests SUBDIR += py-types-retry SUBDIR += py-types-setuptools SUBDIR += py-types-toml SUBDIR += py-types-typed-ast SUBDIR += py-types-urllib3 SUBDIR += py-typing-extensions SUBDIR += py-typing-inspect SUBDIR += py-tzdata SUBDIR += py-tzlocal SUBDIR += py-u-msgpack-python SUBDIR += py-ua_parser SUBDIR += py-ubelt SUBDIR += py-uhid-freebsd SUBDIR += py-ujson SUBDIR += py-unearth SUBDIR += py-unicodecsv SUBDIR += py-unicodedata2 SUBDIR += py-unipath SUBDIR += py-unittest2 SUBDIR += py-unittest2pytest SUBDIR += py-unpaddedbase64 SUBDIR += py-untokenize SUBDIR += py-update_checker SUBDIR += py-urlimport SUBDIR += py-urwid SUBDIR += py-urwid-readline SUBDIR += py-urwidtrees SUBDIR += py-us SUBDIR += py-user_agents SUBDIR += py-userpath SUBDIR += py-uvloop SUBDIR += py-validate-pyproject SUBDIR += py-validators SUBDIR += py-validictory SUBDIR += py-vcrpy SUBDIR += py-vcver SUBDIR += py-vcversioner SUBDIR += py-venusian SUBDIR += py-verboselogs SUBDIR += py-versioneer SUBDIR += py-versioneer-518 SUBDIR += py-versioningit SUBDIR += py-versiontools SUBDIR += py-verspec SUBDIR += py-vine SUBDIR += py-virtualenv SUBDIR += py-virtualenv-api SUBDIR += py-virtualenv-clone SUBDIR += py-virtualenvwrapper SUBDIR += py-visidata SUBDIR += py-visitor SUBDIR += py-vistir SUBDIR += py-voluptuous SUBDIR += py-voluptuous-serialize SUBDIR += py-vsts SUBDIR += py-vsts-cd-manager SUBDIR += py-vulture SUBDIR += py-wadllib SUBDIR += py-warlock SUBDIR += py-watchdog SUBDIR += py-watchfiles SUBDIR += py-watchgod SUBDIR += py-watermark SUBDIR += py-wcwidth SUBDIR += py-weblib SUBDIR += py-websockets SUBDIR += py-websockify SUBDIR += py-wheel SUBDIR += py-whichcraft SUBDIR += py-whistle SUBDIR += py-widgetsnbextension SUBDIR += py-wimpy SUBDIR += py-wlc SUBDIR += py-woops SUBDIR += py-wrapt SUBDIR += py-wsgi-intercept SUBDIR += py-wsgi_xmlrpc SUBDIR += py-wsgitools SUBDIR += py-wsgiutils SUBDIR += py-wsme SUBDIR += py-x-wr-timezone SUBDIR += py-xarray SUBDIR += py-xarray-einstats SUBDIR += py-xarray-simlab SUBDIR += py-xattr SUBDIR += py-xcaplib SUBDIR += py-xdg SUBDIR += py-xdis SUBDIR += py-xdoctest SUBDIR += py-xerox SUBDIR += py-xmltodict SUBDIR += py-xsdata 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-lrdragndrop SUBDIR += py-xstatic-angular-schema-form SUBDIR += py-xstatic-bootstrap-datepicker SUBDIR += py-xstatic-bootstrap-scss SUBDIR += py-xstatic-bootswatch SUBDIR += py-xstatic-d3 SUBDIR += py-xstatic-font-awesome SUBDIR += py-xstatic-hogan SUBDIR += py-xstatic-jasmine SUBDIR += py-xstatic-jquery SUBDIR += py-xstatic-jquery-migrate SUBDIR += py-xstatic-jquery-ui SUBDIR += py-xstatic-jquery.quicksearch SUBDIR += py-xstatic-jquery.tablesorter SUBDIR += py-xstatic-jsencrypt SUBDIR += py-xstatic-mdi SUBDIR += py-xstatic-objectpath SUBDIR += py-xstatic-rickshaw SUBDIR += py-xstatic-roboto-fontface SUBDIR += py-xstatic-smart-table SUBDIR += py-xstatic-spin SUBDIR += py-xstatic-term.js SUBDIR += py-xstatic-tv4 SUBDIR += py-xxhash SUBDIR += py-y-py SUBDIR += py-yacs SUBDIR += py-yaml SUBDIR += py-yamllint SUBDIR += py-yamlordereddictloader SUBDIR += py-yandex-money-sdk SUBDIR += py-yappi SUBDIR += py-yapps2 SUBDIR += py-yarg SUBDIR += py-yaspin SUBDIR += py-yattag SUBDIR += py-yg.lockfile SUBDIR += py-ypy-websocket SUBDIR += py-yunomi SUBDIR += py-zarr SUBDIR += py-zc.lockfile SUBDIR += py-zclockfile SUBDIR += py-zconfig SUBDIR += py-zfp SUBDIR += py-zict SUBDIR += py-zipp SUBDIR += py-zope.component SUBDIR += py-zope.configuration SUBDIR += py-zope.deprecation SUBDIR += py-zope.event SUBDIR += py-zope.interface SUBDIR += py-zope.schema SUBDIR += py-zope.testbrowser SUBDIR += py3c SUBDIR += pybind11 SUBDIR += pybind11-json SUBDIR += pybugz SUBDIR += pycanberra SUBDIR += pycharm-ce SUBDIR += pycharm-pro SUBDIR += pycomposefile SUBDIR += pycos SUBDIR += pycount SUBDIR += pydbus-common SUBDIR += pydeps SUBDIR += pyderasn SUBDIR += pyenv SUBDIR += pygobject3-common SUBDIR += pylint SUBDIR += pylyzer SUBDIR += pymsteams SUBDIR += pyobfuscate SUBDIR += pyotherside-qt5 SUBDIR += pyside2 SUBDIR += pyside2-tools SUBDIR += pyside6 SUBDIR += pyside6-tools SUBDIR += pystring SUBDIR += pysvn SUBDIR += pythontidy SUBDIR += pytype SUBDIR += qbe SUBDIR += qca SUBDIR += qconf SUBDIR += qcoro SUBDIR += qgit SUBDIR += qjson SUBDIR += qmake SUBDIR += qschematic SUBDIR += qscintilla2-designerplugin-qt5 SUBDIR += qscintilla2-qt5 SUBDIR += qscintilla2-qt6 SUBDIR += qt-maybe 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-remoteobjects SUBDIR += qt5-script SUBDIR += qt5-scripttools SUBDIR += qt5-scxml SUBDIR += qt5-testlib SUBDIR += qt5-uitools SUBDIR += qt6 SUBDIR += qt6-5compat SUBDIR += qt6-base SUBDIR += qt6-languageserver SUBDIR += qt6-location SUBDIR += qt6-positioning SUBDIR += qt6-remoteobjects SUBDIR += qt6-scxml SUBDIR += qt6-tools SUBDIR += qt6-translations SUBDIR += qtcreator SUBDIR += qtutilities SUBDIR += quantum SUBDIR += quickcheck++ SUBDIR += quickcpplib SUBDIR += quilt SUBDIR += qxlsx SUBDIR += rabs SUBDIR += radare2 SUBDIR += radian SUBDIR += ragel SUBDIR += raknet SUBDIR += random123 SUBDIR += rang SUBDIR += range-v3 SUBDIR += rapidcheck SUBDIR += rapidfuzz-cpp SUBDIR += rapidjson SUBDIR += rapidyaml SUBDIR += rationl SUBDIR += raylib SUBDIR += rbenv SUBDIR += rbtools SUBDIR += rclint SUBDIR += rcs SUBDIR += rcs57 SUBDIR += re2 SUBDIR += re2c SUBDIR += readerwriterqueue SUBDIR += readline SUBDIR += rebar SUBDIR += rebar3 SUBDIR += recycle SUBDIR += redasm SUBDIR += redo SUBDIR += regexx SUBDIR += regexxer SUBDIR += remake SUBDIR += remotery SUBDIR += replay SUBDIR += replxx SUBDIR += reproc SUBDIR += resolv_wrapper SUBDIR += revive SUBDIR += rgbds SUBDIR += rgxg SUBDIR += rhtvision SUBDIR += rinutils SUBDIR += riscv32-unknown-elf-gcc SUBDIR += riscv64-none-elf-gcc SUBDIR += rkcommon SUBDIR += rlog SUBDIR += rlwrap SUBDIR += robin-hood-hashing SUBDIR += robin-map SUBDIR += roboctl SUBDIR += robodoc SUBDIR += root SUBDIR += ros-catkin SUBDIR += ros-catkin_pkg SUBDIR += ros-console_bridge SUBDIR += ros-rosdep SUBDIR += ros-rosdistro SUBDIR += ros-rosinstall_generator SUBDIR += ros-rospkg SUBDIR += ros-urdfdom SUBDIR += ros-urdfdom_headers SUBDIR += ros-vcstool SUBDIR += ros-vcstools SUBDIR += ros-wstool SUBDIR += roswell SUBDIR += rote SUBDIR += rpc2 SUBDIR += rpclib SUBDIR += rsvndump SUBDIR += rth SUBDIR += rttr SUBDIR += ruby-bsearch SUBDIR += ruby-build SUBDIR += ruby-gems SUBDIR += ruby-install SUBDIR += ruby-rbprof SUBDIR += ruby-setup.rb SUBDIR += ruby-subversion SUBDIR += rubygem-CFPropertyList SUBDIR += rubygem-abstract SUBDIR += rubygem-actionpack-action_caching SUBDIR += rubygem-actionpack-page_caching SUBDIR += rubygem-actionview4 SUBDIR += rubygem-actionview5 SUBDIR += rubygem-actionview50 SUBDIR += rubygem-actionview52 SUBDIR += rubygem-actionview60 SUBDIR += rubygem-actionview61 SUBDIR += rubygem-actionview70 SUBDIR += rubygem-actionview71 SUBDIR += rubygem-active_scaffold SUBDIR += rubygem-activejob4 SUBDIR += rubygem-activejob5 SUBDIR += rubygem-activejob50 SUBDIR += rubygem-activejob52 SUBDIR += rubygem-activejob60 SUBDIR += rubygem-activejob61 SUBDIR += rubygem-activejob70 SUBDIR += rubygem-activejob71 SUBDIR += rubygem-activemessaging SUBDIR += rubygem-activerecord-deprecated_finders SUBDIR += rubygem-activesupport4 SUBDIR += rubygem-activesupport5 SUBDIR += rubygem-activesupport50 SUBDIR += rubygem-activesupport52 SUBDIR += rubygem-activesupport60 SUBDIR += rubygem-activesupport61 SUBDIR += rubygem-activesupport70 SUBDIR += rubygem-activesupport71 SUBDIR += rubygem-airborne SUBDIR += rubygem-akismet SUBDIR += rubygem-algebrick SUBDIR += rubygem-algorithms SUBDIR += rubygem-aliyun-sdk SUBDIR += rubygem-allison SUBDIR += rubygem-amazing_print 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-async SUBDIR += rubygem-async-io SUBDIR += rubygem-atomic SUBDIR += rubygem-attic SUBDIR += rubygem-attr_required SUBDIR += rubygem-authlogic SUBDIR += rubygem-avro SUBDIR += rubygem-awesome_print SUBDIR += rubygem-awrence SUBDIR += rubygem-aws-crt SUBDIR += rubygem-aws-eventstream SUBDIR += rubygem-aws-partitions SUBDIR += rubygem-aws-sdk SUBDIR += rubygem-aws-sdk-accessanalyzer SUBDIR += rubygem-aws-sdk-account SUBDIR += rubygem-aws-sdk-acm SUBDIR += rubygem-aws-sdk-acmpca SUBDIR += rubygem-aws-sdk-alexaforbusiness SUBDIR += rubygem-aws-sdk-amplify SUBDIR += rubygem-aws-sdk-amplifybackend SUBDIR += rubygem-aws-sdk-amplifyuibuilder SUBDIR += rubygem-aws-sdk-apigateway SUBDIR += rubygem-aws-sdk-apigatewaymanagementapi SUBDIR += rubygem-aws-sdk-apigatewayv2 SUBDIR += rubygem-aws-sdk-appconfig SUBDIR += rubygem-aws-sdk-appconfigdata SUBDIR += rubygem-aws-sdk-appfabric SUBDIR += rubygem-aws-sdk-appflow SUBDIR += rubygem-aws-sdk-appintegrationsservice SUBDIR += rubygem-aws-sdk-applicationautoscaling SUBDIR += rubygem-aws-sdk-applicationcostprofiler SUBDIR += rubygem-aws-sdk-applicationdiscoveryservice SUBDIR += rubygem-aws-sdk-applicationinsights SUBDIR += rubygem-aws-sdk-appmesh SUBDIR += rubygem-aws-sdk-appregistry SUBDIR += rubygem-aws-sdk-apprunner SUBDIR += rubygem-aws-sdk-appstream SUBDIR += rubygem-aws-sdk-appsync SUBDIR += rubygem-aws-sdk-arczonalshift SUBDIR += rubygem-aws-sdk-athena SUBDIR += rubygem-aws-sdk-auditmanager SUBDIR += rubygem-aws-sdk-augmentedairuntime SUBDIR += rubygem-aws-sdk-autoscaling SUBDIR += rubygem-aws-sdk-autoscalingplans SUBDIR += rubygem-aws-sdk-b2bi SUBDIR += rubygem-aws-sdk-backup SUBDIR += rubygem-aws-sdk-backupgateway SUBDIR += rubygem-aws-sdk-backupstorage SUBDIR += rubygem-aws-sdk-batch SUBDIR += rubygem-aws-sdk-bcmdataexports SUBDIR += rubygem-aws-sdk-bedrock SUBDIR += rubygem-aws-sdk-bedrockagent SUBDIR += rubygem-aws-sdk-bedrockagentruntime SUBDIR += rubygem-aws-sdk-bedrockruntime SUBDIR += rubygem-aws-sdk-billingconductor SUBDIR += rubygem-aws-sdk-braket SUBDIR += rubygem-aws-sdk-budgets SUBDIR += rubygem-aws-sdk-chime SUBDIR += rubygem-aws-sdk-chimesdkidentity SUBDIR += rubygem-aws-sdk-chimesdkmediapipelines SUBDIR += rubygem-aws-sdk-chimesdkmeetings SUBDIR += rubygem-aws-sdk-chimesdkmessaging SUBDIR += rubygem-aws-sdk-chimesdkvoice SUBDIR += rubygem-aws-sdk-cleanrooms SUBDIR += rubygem-aws-sdk-cleanroomsml SUBDIR += rubygem-aws-sdk-cloud9 SUBDIR += rubygem-aws-sdk-cloudcontrolapi SUBDIR += rubygem-aws-sdk-clouddirectory SUBDIR += rubygem-aws-sdk-cloudformation SUBDIR += rubygem-aws-sdk-cloudfront SUBDIR += rubygem-aws-sdk-cloudfrontkeyvaluestore SUBDIR += rubygem-aws-sdk-cloudhsm SUBDIR += rubygem-aws-sdk-cloudhsmv2 SUBDIR += rubygem-aws-sdk-cloudsearch SUBDIR += rubygem-aws-sdk-cloudsearchdomain SUBDIR += rubygem-aws-sdk-cloudtrail SUBDIR += rubygem-aws-sdk-cloudtraildata SUBDIR += rubygem-aws-sdk-cloudwatch SUBDIR += rubygem-aws-sdk-cloudwatchevents SUBDIR += rubygem-aws-sdk-cloudwatchevidently SUBDIR += rubygem-aws-sdk-cloudwatchlogs SUBDIR += rubygem-aws-sdk-cloudwatchrum SUBDIR += rubygem-aws-sdk-codeartifact SUBDIR += rubygem-aws-sdk-codebuild SUBDIR += rubygem-aws-sdk-codecatalyst SUBDIR += rubygem-aws-sdk-codecommit SUBDIR += rubygem-aws-sdk-codedeploy SUBDIR += rubygem-aws-sdk-codeguruprofiler SUBDIR += rubygem-aws-sdk-codegurureviewer SUBDIR += rubygem-aws-sdk-codegurusecurity SUBDIR += rubygem-aws-sdk-codepipeline SUBDIR += rubygem-aws-sdk-codestar SUBDIR += rubygem-aws-sdk-codestarconnections SUBDIR += rubygem-aws-sdk-codestarnotifications SUBDIR += rubygem-aws-sdk-cognitoidentity SUBDIR += rubygem-aws-sdk-cognitoidentityprovider SUBDIR += rubygem-aws-sdk-cognitosync SUBDIR += rubygem-aws-sdk-comprehend SUBDIR += rubygem-aws-sdk-comprehendmedical SUBDIR += rubygem-aws-sdk-computeoptimizer SUBDIR += rubygem-aws-sdk-configservice SUBDIR += rubygem-aws-sdk-connect SUBDIR += rubygem-aws-sdk-connectcampaignservice SUBDIR += rubygem-aws-sdk-connectcases SUBDIR += rubygem-aws-sdk-connectcontactlens SUBDIR += rubygem-aws-sdk-connectparticipant SUBDIR += rubygem-aws-sdk-connectwisdomservice SUBDIR += rubygem-aws-sdk-controltower SUBDIR += rubygem-aws-sdk-core SUBDIR += rubygem-aws-sdk-core2 SUBDIR += rubygem-aws-sdk-costandusagereportservice SUBDIR += rubygem-aws-sdk-costexplorer SUBDIR += rubygem-aws-sdk-costoptimizationhub SUBDIR += rubygem-aws-sdk-customerprofiles SUBDIR += rubygem-aws-sdk-databasemigrationservice SUBDIR += rubygem-aws-sdk-dataexchange SUBDIR += rubygem-aws-sdk-datapipeline SUBDIR += rubygem-aws-sdk-datasync SUBDIR += rubygem-aws-sdk-datazone SUBDIR += rubygem-aws-sdk-dax SUBDIR += rubygem-aws-sdk-detective SUBDIR += rubygem-aws-sdk-devicefarm SUBDIR += rubygem-aws-sdk-devopsguru SUBDIR += rubygem-aws-sdk-directconnect SUBDIR += rubygem-aws-sdk-directoryservice SUBDIR += rubygem-aws-sdk-dlm SUBDIR += rubygem-aws-sdk-docdb SUBDIR += rubygem-aws-sdk-docdbelastic SUBDIR += rubygem-aws-sdk-drs SUBDIR += rubygem-aws-sdk-dynamodb SUBDIR += rubygem-aws-sdk-dynamodbstreams SUBDIR += rubygem-aws-sdk-ebs SUBDIR += rubygem-aws-sdk-ec2 SUBDIR += rubygem-aws-sdk-ec2instanceconnect SUBDIR += rubygem-aws-sdk-ecr SUBDIR += rubygem-aws-sdk-ecrpublic SUBDIR += rubygem-aws-sdk-ecs SUBDIR += rubygem-aws-sdk-efs SUBDIR += rubygem-aws-sdk-eks SUBDIR += rubygem-aws-sdk-eksauth SUBDIR += rubygem-aws-sdk-elasticache SUBDIR += rubygem-aws-sdk-elasticbeanstalk SUBDIR += rubygem-aws-sdk-elasticinference SUBDIR += rubygem-aws-sdk-elasticloadbalancing SUBDIR += rubygem-aws-sdk-elasticloadbalancingv2 SUBDIR += rubygem-aws-sdk-elasticsearchservice SUBDIR += rubygem-aws-sdk-elastictranscoder SUBDIR += rubygem-aws-sdk-emr SUBDIR += rubygem-aws-sdk-emrcontainers SUBDIR += rubygem-aws-sdk-emrserverless SUBDIR += rubygem-aws-sdk-entityresolution SUBDIR += rubygem-aws-sdk-eventbridge SUBDIR += rubygem-aws-sdk-finspace SUBDIR += rubygem-aws-sdk-finspacedata SUBDIR += rubygem-aws-sdk-firehose SUBDIR += rubygem-aws-sdk-fis SUBDIR += rubygem-aws-sdk-fms SUBDIR += rubygem-aws-sdk-forecastqueryservice SUBDIR += rubygem-aws-sdk-forecastservice SUBDIR += rubygem-aws-sdk-frauddetector SUBDIR += rubygem-aws-sdk-freetier SUBDIR += rubygem-aws-sdk-fsx SUBDIR += rubygem-aws-sdk-gamelift SUBDIR += rubygem-aws-sdk-gamesparks SUBDIR += rubygem-aws-sdk-glacier SUBDIR += rubygem-aws-sdk-globalaccelerator SUBDIR += rubygem-aws-sdk-glue SUBDIR += rubygem-aws-sdk-gluedatabrew SUBDIR += rubygem-aws-sdk-greengrass SUBDIR += rubygem-aws-sdk-greengrassv2 SUBDIR += rubygem-aws-sdk-groundstation SUBDIR += rubygem-aws-sdk-guardduty SUBDIR += rubygem-aws-sdk-health SUBDIR += rubygem-aws-sdk-healthlake SUBDIR += rubygem-aws-sdk-honeycode SUBDIR += rubygem-aws-sdk-iam SUBDIR += rubygem-aws-sdk-identitystore SUBDIR += rubygem-aws-sdk-imagebuilder SUBDIR += rubygem-aws-sdk-importexport SUBDIR += rubygem-aws-sdk-inspector SUBDIR += rubygem-aws-sdk-inspector2 SUBDIR += rubygem-aws-sdk-inspectorscan SUBDIR += rubygem-aws-sdk-internetmonitor SUBDIR += rubygem-aws-sdk-iot SUBDIR += rubygem-aws-sdk-iot1clickdevicesservice SUBDIR += rubygem-aws-sdk-iot1clickprojects SUBDIR += rubygem-aws-sdk-iotanalytics SUBDIR += rubygem-aws-sdk-iotdataplane SUBDIR += rubygem-aws-sdk-iotdeviceadvisor SUBDIR += rubygem-aws-sdk-iotevents SUBDIR += rubygem-aws-sdk-ioteventsdata SUBDIR += rubygem-aws-sdk-iotfleethub SUBDIR += rubygem-aws-sdk-iotfleetwise SUBDIR += rubygem-aws-sdk-iotjobsdataplane SUBDIR += rubygem-aws-sdk-iotroborunner SUBDIR += rubygem-aws-sdk-iotsecuretunneling SUBDIR += rubygem-aws-sdk-iotsitewise SUBDIR += rubygem-aws-sdk-iotthingsgraph SUBDIR += rubygem-aws-sdk-iottwinmaker SUBDIR += rubygem-aws-sdk-iotwireless SUBDIR += rubygem-aws-sdk-ivs SUBDIR += rubygem-aws-sdk-ivschat SUBDIR += rubygem-aws-sdk-ivsrealtime SUBDIR += rubygem-aws-sdk-kafka SUBDIR += rubygem-aws-sdk-kafkaconnect SUBDIR += rubygem-aws-sdk-kendra SUBDIR += rubygem-aws-sdk-kendraranking SUBDIR += rubygem-aws-sdk-keyspaces SUBDIR += rubygem-aws-sdk-kinesis SUBDIR += rubygem-aws-sdk-kinesisanalytics SUBDIR += rubygem-aws-sdk-kinesisanalyticsv2 SUBDIR += rubygem-aws-sdk-kinesisvideo SUBDIR += rubygem-aws-sdk-kinesisvideoarchivedmedia SUBDIR += rubygem-aws-sdk-kinesisvideomedia SUBDIR += rubygem-aws-sdk-kinesisvideosignalingchannels SUBDIR += rubygem-aws-sdk-kinesisvideowebrtcstorage SUBDIR += rubygem-aws-sdk-kms SUBDIR += rubygem-aws-sdk-lakeformation SUBDIR += rubygem-aws-sdk-lambda SUBDIR += rubygem-aws-sdk-lambdapreview SUBDIR += rubygem-aws-sdk-launchwizard SUBDIR += rubygem-aws-sdk-lex SUBDIR += rubygem-aws-sdk-lexmodelbuildingservice SUBDIR += rubygem-aws-sdk-lexmodelsv2 SUBDIR += rubygem-aws-sdk-lexruntimev2 SUBDIR += rubygem-aws-sdk-licensemanager SUBDIR += rubygem-aws-sdk-licensemanagerlinuxsubscriptions SUBDIR += rubygem-aws-sdk-licensemanagerusersubscriptions SUBDIR += rubygem-aws-sdk-lightsail SUBDIR += rubygem-aws-sdk-locationservice SUBDIR += rubygem-aws-sdk-lookoutequipment SUBDIR += rubygem-aws-sdk-lookoutforvision SUBDIR += rubygem-aws-sdk-lookoutmetrics SUBDIR += rubygem-aws-sdk-machinelearning SUBDIR += rubygem-aws-sdk-macie SUBDIR += rubygem-aws-sdk-macie2 SUBDIR += rubygem-aws-sdk-mainframemodernization SUBDIR += rubygem-aws-sdk-managedblockchain SUBDIR += rubygem-aws-sdk-managedblockchainquery SUBDIR += rubygem-aws-sdk-managedgrafana SUBDIR += rubygem-aws-sdk-marketplacecatalog SUBDIR += rubygem-aws-sdk-marketplacecommerceanalytics SUBDIR += rubygem-aws-sdk-marketplaceentitlementservice SUBDIR += rubygem-aws-sdk-marketplacemetering SUBDIR += rubygem-aws-sdk-mediaconnect SUBDIR += rubygem-aws-sdk-mediaconvert SUBDIR += rubygem-aws-sdk-medialive SUBDIR += rubygem-aws-sdk-mediapackage SUBDIR += rubygem-aws-sdk-mediapackagev2 SUBDIR += rubygem-aws-sdk-mediapackagevod SUBDIR += rubygem-aws-sdk-mediastore SUBDIR += rubygem-aws-sdk-mediastoredata SUBDIR += rubygem-aws-sdk-mediatailor SUBDIR += rubygem-aws-sdk-medicalimaging SUBDIR += rubygem-aws-sdk-memorydb SUBDIR += rubygem-aws-sdk-mgn SUBDIR += rubygem-aws-sdk-migrationhub SUBDIR += rubygem-aws-sdk-migrationhubconfig SUBDIR += rubygem-aws-sdk-migrationhuborchestrator SUBDIR += rubygem-aws-sdk-migrationhubrefactorspaces SUBDIR += rubygem-aws-sdk-migrationhubstrategyrecommendations SUBDIR += rubygem-aws-sdk-mobile SUBDIR += rubygem-aws-sdk-mq SUBDIR += rubygem-aws-sdk-mturk SUBDIR += rubygem-aws-sdk-mwaa SUBDIR += rubygem-aws-sdk-neptune SUBDIR += rubygem-aws-sdk-neptunedata SUBDIR += rubygem-aws-sdk-networkfirewall SUBDIR += rubygem-aws-sdk-networkmanager SUBDIR += rubygem-aws-sdk-nimblestudio SUBDIR += rubygem-aws-sdk-oam SUBDIR += rubygem-aws-sdk-omics SUBDIR += rubygem-aws-sdk-opensearchserverless SUBDIR += rubygem-aws-sdk-opensearchservice SUBDIR += rubygem-aws-sdk-opsworks SUBDIR += rubygem-aws-sdk-opsworkscm SUBDIR += rubygem-aws-sdk-organizations SUBDIR += rubygem-aws-sdk-osis SUBDIR += rubygem-aws-sdk-outposts SUBDIR += rubygem-aws-sdk-panorama SUBDIR += rubygem-aws-sdk-paymentcryptography SUBDIR += rubygem-aws-sdk-paymentcryptographydata SUBDIR += rubygem-aws-sdk-pcaconnectorad SUBDIR += rubygem-aws-sdk-personalize SUBDIR += rubygem-aws-sdk-personalizeevents SUBDIR += rubygem-aws-sdk-personalizeruntime SUBDIR += rubygem-aws-sdk-pi SUBDIR += rubygem-aws-sdk-pinpoint SUBDIR += rubygem-aws-sdk-pinpointemail SUBDIR += rubygem-aws-sdk-pinpointsmsvoice SUBDIR += rubygem-aws-sdk-pinpointsmsvoicev2 SUBDIR += rubygem-aws-sdk-pipes SUBDIR += rubygem-aws-sdk-polly SUBDIR += rubygem-aws-sdk-pricing SUBDIR += rubygem-aws-sdk-privatenetworks SUBDIR += rubygem-aws-sdk-prometheusservice SUBDIR += rubygem-aws-sdk-proton SUBDIR += rubygem-aws-sdk-qbusiness SUBDIR += rubygem-aws-sdk-qconnect SUBDIR += rubygem-aws-sdk-qldb SUBDIR += rubygem-aws-sdk-qldbsession SUBDIR += rubygem-aws-sdk-quicksight SUBDIR += rubygem-aws-sdk-ram SUBDIR += rubygem-aws-sdk-rds SUBDIR += rubygem-aws-sdk-rdsdataservice SUBDIR += rubygem-aws-sdk-recyclebin SUBDIR += rubygem-aws-sdk-redshift SUBDIR += rubygem-aws-sdk-redshiftdataapiservice SUBDIR += rubygem-aws-sdk-redshiftserverless SUBDIR += rubygem-aws-sdk-rekognition SUBDIR += rubygem-aws-sdk-repostspace SUBDIR += rubygem-aws-sdk-resiliencehub SUBDIR += rubygem-aws-sdk-resourceexplorer2 SUBDIR += rubygem-aws-sdk-resourcegroups SUBDIR += rubygem-aws-sdk-resourcegroupstaggingapi SUBDIR += rubygem-aws-sdk-resources SUBDIR += rubygem-aws-sdk-resources2 SUBDIR += rubygem-aws-sdk-robomaker SUBDIR += rubygem-aws-sdk-rolesanywhere SUBDIR += rubygem-aws-sdk-route53 SUBDIR += rubygem-aws-sdk-route53domains SUBDIR += rubygem-aws-sdk-route53recoverycluster SUBDIR += rubygem-aws-sdk-route53recoverycontrolconfig SUBDIR += rubygem-aws-sdk-route53recoveryreadiness SUBDIR += rubygem-aws-sdk-route53resolver SUBDIR += rubygem-aws-sdk-s3 SUBDIR += rubygem-aws-sdk-s3control SUBDIR += rubygem-aws-sdk-s3outposts SUBDIR += rubygem-aws-sdk-sagemaker SUBDIR += rubygem-aws-sdk-sagemakeredgemanager SUBDIR += rubygem-aws-sdk-sagemakerfeaturestoreruntime SUBDIR += rubygem-aws-sdk-sagemakergeospatial SUBDIR += rubygem-aws-sdk-sagemakermetrics SUBDIR += rubygem-aws-sdk-sagemakerruntime SUBDIR += rubygem-aws-sdk-savingsplans SUBDIR += rubygem-aws-sdk-scheduler SUBDIR += rubygem-aws-sdk-schemas SUBDIR += rubygem-aws-sdk-secretsmanager SUBDIR += rubygem-aws-sdk-securityhub SUBDIR += rubygem-aws-sdk-securitylake SUBDIR += rubygem-aws-sdk-serverlessapplicationrepository SUBDIR += rubygem-aws-sdk-servicecatalog SUBDIR += rubygem-aws-sdk-servicediscovery SUBDIR += rubygem-aws-sdk-servicequotas SUBDIR += rubygem-aws-sdk-ses SUBDIR += rubygem-aws-sdk-sesv2 SUBDIR += rubygem-aws-sdk-shield SUBDIR += rubygem-aws-sdk-signer SUBDIR += rubygem-aws-sdk-simpledb SUBDIR += rubygem-aws-sdk-simspaceweaver SUBDIR += rubygem-aws-sdk-sms SUBDIR += rubygem-aws-sdk-snowball SUBDIR += rubygem-aws-sdk-snowdevicemanagement SUBDIR += rubygem-aws-sdk-sns SUBDIR += rubygem-aws-sdk-sqs SUBDIR += rubygem-aws-sdk-ssm SUBDIR += rubygem-aws-sdk-ssmcontacts SUBDIR += rubygem-aws-sdk-ssmincidents SUBDIR += rubygem-aws-sdk-ssmsap SUBDIR += rubygem-aws-sdk-sso SUBDIR += rubygem-aws-sdk-ssoadmin SUBDIR += rubygem-aws-sdk-ssooidc SUBDIR += rubygem-aws-sdk-states SUBDIR += rubygem-aws-sdk-storagegateway SUBDIR += rubygem-aws-sdk-support SUBDIR += rubygem-aws-sdk-supportapp SUBDIR += rubygem-aws-sdk-swf SUBDIR += rubygem-aws-sdk-synthetics SUBDIR += rubygem-aws-sdk-textract SUBDIR += rubygem-aws-sdk-timestreamquery SUBDIR += rubygem-aws-sdk-timestreamwrite SUBDIR += rubygem-aws-sdk-tnb SUBDIR += rubygem-aws-sdk-transcribeservice SUBDIR += rubygem-aws-sdk-transcribestreamingservice SUBDIR += rubygem-aws-sdk-transfer SUBDIR += rubygem-aws-sdk-translate SUBDIR += rubygem-aws-sdk-trustedadvisor SUBDIR += rubygem-aws-sdk-verifiedpermissions SUBDIR += rubygem-aws-sdk-voiceid SUBDIR += rubygem-aws-sdk-vpclattice SUBDIR += rubygem-aws-sdk-waf SUBDIR += rubygem-aws-sdk-wafregional SUBDIR += rubygem-aws-sdk-wafv2 SUBDIR += rubygem-aws-sdk-wellarchitected SUBDIR += rubygem-aws-sdk-workdocs SUBDIR += rubygem-aws-sdk-worklink SUBDIR += rubygem-aws-sdk-workmail SUBDIR += rubygem-aws-sdk-workmailmessageflow SUBDIR += rubygem-aws-sdk-workspaces SUBDIR += rubygem-aws-sdk-workspacesthinclient SUBDIR += rubygem-aws-sdk-workspacesweb SUBDIR += rubygem-aws-sdk-xray SUBDIR += rubygem-aws-sdk2 SUBDIR += rubygem-aws-sigv2 SUBDIR += rubygem-aws-sigv4 SUBDIR += rubygem-axiom-types SUBDIR += rubygem-azure-storage SUBDIR += rubygem-azure-storage-blob SUBDIR += rubygem-azure-storage-common SUBDIR += rubygem-azure-storage-file SUBDIR += rubygem-azure-storage-queue SUBDIR += rubygem-azure-storage-table SUBDIR += rubygem-azure_cognitiveservices_anomalydetector SUBDIR += rubygem-azure_cognitiveservices_autosuggest SUBDIR += rubygem-azure_cognitiveservices_computervision SUBDIR += rubygem-azure_cognitiveservices_contentmoderator SUBDIR += rubygem-azure_cognitiveservices_customimagesearch SUBDIR += rubygem-azure_cognitiveservices_customsearch SUBDIR += rubygem-azure_cognitiveservices_customvisionprediction SUBDIR += rubygem-azure_cognitiveservices_customvisiontraining SUBDIR += rubygem-azure_cognitiveservices_entitysearch SUBDIR += rubygem-azure_cognitiveservices_face SUBDIR += rubygem-azure_cognitiveservices_formrecognizer SUBDIR += rubygem-azure_cognitiveservices_imagesearch SUBDIR += rubygem-azure_cognitiveservices_localsearch SUBDIR += rubygem-azure_cognitiveservices_luisauthoring SUBDIR += rubygem-azure_cognitiveservices_luisruntime SUBDIR += rubygem-azure_cognitiveservices_newssearch SUBDIR += rubygem-azure_cognitiveservices_personalizer SUBDIR += rubygem-azure_cognitiveservices_qnamaker SUBDIR += rubygem-azure_cognitiveservices_qnamakerruntime SUBDIR += rubygem-azure_cognitiveservices_spellcheck SUBDIR += rubygem-azure_cognitiveservices_textanalytics SUBDIR += rubygem-azure_cognitiveservices_videosearch SUBDIR += rubygem-azure_cognitiveservices_visualsearch SUBDIR += rubygem-azure_cognitiveservices_websearch SUBDIR += rubygem-azure_event_grid SUBDIR += rubygem-azure_graph_rbac SUBDIR += rubygem-azure_key_vault SUBDIR += rubygem-azure_mgmt_adhybridhealth_service SUBDIR += rubygem-azure_mgmt_advisor SUBDIR += rubygem-azure_mgmt_alerts_management SUBDIR += rubygem-azure_mgmt_analysis_services SUBDIR += rubygem-azure_mgmt_api_management SUBDIR += rubygem-azure_mgmt_appconfiguration SUBDIR += rubygem-azure_mgmt_attestation SUBDIR += rubygem-azure_mgmt_authorization SUBDIR += rubygem-azure_mgmt_automanage SUBDIR += rubygem-azure_mgmt_automation SUBDIR += rubygem-azure_mgmt_azurestack SUBDIR += rubygem-azure_mgmt_azurestack_hci SUBDIR += rubygem-azure_mgmt_batch SUBDIR += rubygem-azure_mgmt_batchai SUBDIR += rubygem-azure_mgmt_billing SUBDIR += rubygem-azure_mgmt_bot_service SUBDIR += rubygem-azure_mgmt_cdn SUBDIR += rubygem-azure_mgmt_cognitive_services SUBDIR += rubygem-azure_mgmt_commerce SUBDIR += rubygem-azure_mgmt_compute SUBDIR += rubygem-azure_mgmt_consumption SUBDIR += rubygem-azure_mgmt_container_instance SUBDIR += rubygem-azure_mgmt_container_registry SUBDIR += rubygem-azure_mgmt_container_service SUBDIR += rubygem-azure_mgmt_cosmosdb SUBDIR += rubygem-azure_mgmt_cost_management SUBDIR += rubygem-azure_mgmt_customer_insights SUBDIR += rubygem-azure_mgmt_data_factory SUBDIR += rubygem-azure_mgmt_data_migration SUBDIR += rubygem-azure_mgmt_databox SUBDIR += rubygem-azure_mgmt_datalake_analytics SUBDIR += rubygem-azure_mgmt_datalake_store SUBDIR += rubygem-azure_mgmt_datashare SUBDIR += rubygem-azure_mgmt_deployment_manager SUBDIR += rubygem-azure_mgmt_dev_spaces SUBDIR += rubygem-azure_mgmt_devtestlabs SUBDIR += rubygem-azure_mgmt_digitaltwins SUBDIR += rubygem-azure_mgmt_dns SUBDIR += rubygem-azure_mgmt_edgegateway SUBDIR += rubygem-azure_mgmt_event_grid SUBDIR += rubygem-azure_mgmt_event_hub SUBDIR += rubygem-azure_mgmt_features SUBDIR += rubygem-azure_mgmt_hanaonazure SUBDIR += rubygem-azure_mgmt_hdinsight SUBDIR += rubygem-azure_mgmt_hybrid_compute SUBDIR += rubygem-azure_mgmt_import_export SUBDIR += rubygem-azure_mgmt_iot_central SUBDIR += rubygem-azure_mgmt_iot_hub SUBDIR += rubygem-azure_mgmt_key_vault SUBDIR += rubygem-azure_mgmt_kubernetes_configuration SUBDIR += rubygem-azure_mgmt_kusto SUBDIR += rubygem-azure_mgmt_labservices SUBDIR += rubygem-azure_mgmt_links SUBDIR += rubygem-azure_mgmt_locks SUBDIR += rubygem-azure_mgmt_logic SUBDIR += rubygem-azure_mgmt_machine_learning SUBDIR += rubygem-azure_mgmt_machine_learning_services SUBDIR += rubygem-azure_mgmt_maintenance SUBDIR += rubygem-azure_mgmt_managed_applications SUBDIR += rubygem-azure_mgmt_mariadb SUBDIR += rubygem-azure_mgmt_marketplace_ordering SUBDIR += rubygem-azure_mgmt_media_services SUBDIR += rubygem-azure_mgmt_migrate SUBDIR += rubygem-azure_mgmt_mixedreality SUBDIR += rubygem-azure_mgmt_monitor SUBDIR += rubygem-azure_mgmt_msi SUBDIR += rubygem-azure_mgmt_mysql SUBDIR += rubygem-azure_mgmt_netapp SUBDIR += rubygem-azure_mgmt_network SUBDIR += rubygem-azure_mgmt_notification_hubs SUBDIR += rubygem-azure_mgmt_operational_insights SUBDIR += rubygem-azure_mgmt_operations_management SUBDIR += rubygem-azure_mgmt_peering SUBDIR += rubygem-azure_mgmt_policy SUBDIR += rubygem-azure_mgmt_policy_insights SUBDIR += rubygem-azure_mgmt_portal SUBDIR += rubygem-azure_mgmt_postgresql SUBDIR += rubygem-azure_mgmt_powerbi_dedicated SUBDIR += rubygem-azure_mgmt_powerbi_embedded SUBDIR += rubygem-azure_mgmt_privatedns SUBDIR += rubygem-azure_mgmt_recovery_services SUBDIR += rubygem-azure_mgmt_recovery_services_backup SUBDIR += rubygem-azure_mgmt_recovery_services_site_recovery SUBDIR += rubygem-azure_mgmt_redis SUBDIR += rubygem-azure_mgmt_relay SUBDIR += rubygem-azure_mgmt_reservations SUBDIR += rubygem-azure_mgmt_resource_health SUBDIR += rubygem-azure_mgmt_resourcegraph SUBDIR += rubygem-azure_mgmt_resources SUBDIR += rubygem-azure_mgmt_resources_management SUBDIR += rubygem-azure_mgmt_scheduler SUBDIR += rubygem-azure_mgmt_search SUBDIR += rubygem-azure_mgmt_security SUBDIR += rubygem-azure_mgmt_serialconsole SUBDIR += rubygem-azure_mgmt_service_bus SUBDIR += rubygem-azure_mgmt_service_fabric SUBDIR += rubygem-azure_mgmt_signalr SUBDIR += rubygem-azure_mgmt_sql SUBDIR += rubygem-azure_mgmt_sqlvirtualmachine SUBDIR += rubygem-azure_mgmt_stor_simple8000_series SUBDIR += rubygem-azure_mgmt_storage SUBDIR += rubygem-azure_mgmt_storagecache SUBDIR += rubygem-azure_mgmt_storagesync SUBDIR += rubygem-azure_mgmt_stream_analytics SUBDIR += rubygem-azure_mgmt_subscriptions SUBDIR += rubygem-azure_mgmt_support SUBDIR += rubygem-azure_mgmt_synapse SUBDIR += rubygem-azure_mgmt_time_series_insights SUBDIR += rubygem-azure_mgmt_traffic_manager SUBDIR += rubygem-azure_mgmt_vmware_cloudsimple SUBDIR += rubygem-azure_mgmt_web SUBDIR += rubygem-azure_sdk SUBDIR += rubygem-azure_service_fabric SUBDIR += rubygem-backports SUBDIR += rubygem-bacon SUBDIR += rubygem-baf SUBDIR += rubygem-batch-loader SUBDIR += rubygem-bcp47_spec SUBDIR += rubygem-benelux SUBDIR += rubygem-better_html-rails61 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-c21e SUBDIR += rubygem-cabin SUBDIR += rubygem-caesars SUBDIR += rubygem-cairo-gobject SUBDIR += rubygem-capybara SUBDIR += rubygem-capybara-screenshot SUBDIR += rubygem-cbor 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-cheffish SUBDIR += rubygem-childprocess SUBDIR += rubygem-childprocess3 SUBDIR += rubygem-childprocess40 SUBDIR += rubygem-chronic SUBDIR += rubygem-chronic_duration SUBDIR += rubygem-claide SUBDIR += rubygem-claide-plugins SUBDIR += rubygem-clamp SUBDIR += rubygem-classifier SUBDIR += rubygem-classifier-reborn SUBDIR += rubygem-climate_control SUBDIR += rubygem-clio SUBDIR += rubygem-cliprompt SUBDIR += rubygem-cloudfiles SUBDIR += rubygem-cms_scanner SUBDIR += rubygem-cocaine SUBDIR += rubygem-cocoon SUBDIR += rubygem-coercible SUBDIR += rubygem-coffee-rails-rails5 SUBDIR += rubygem-coffee-rails-rails50 SUBDIR += rubygem-coffee-rails-rails52 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-edge06 SUBDIR += rubygem-concurrent-ruby-ext SUBDIR += rubygem-concurrent-ruby11 SUBDIR += rubygem-configatron SUBDIR += rubygem-configstruct SUBDIR += rubygem-configuration SUBDIR += rubygem-console SUBDIR += rubygem-contracts SUBDIR += rubygem-contracts016 SUBDIR += rubygem-cookbook-omnifetch SUBDIR += rubygem-cool.io SUBDIR += rubygem-corefines SUBDIR += rubygem-corefoundation SUBDIR += rubygem-cork SUBDIR += rubygem-countries SUBDIR += rubygem-cow_proxy SUBDIR += rubygem-crack SUBDIR += rubygem-cri SUBDIR += rubygem-csv SUBDIR += rubygem-cucumber SUBDIR += rubygem-cucumber-ci-environment SUBDIR += rubygem-cucumber-core SUBDIR += rubygem-cucumber-cucumber-expressions SUBDIR += rubygem-cucumber-messages SUBDIR += rubygem-cucumber-messages22 SUBDIR += rubygem-cucumber-messages23 SUBDIR += rubygem-cucumber-rails SUBDIR += rubygem-cucumber-tag-expressions SUBDIR += rubygem-cucumber-tag-expressions5 SUBDIR += rubygem-cucumber-wire SUBDIR += rubygem-curses SUBDIR += rubygem-cyoi SUBDIR += rubygem-daemon_controller SUBDIR += rubygem-daemons SUBDIR += rubygem-danger SUBDIR += rubygem-danger-gitlab SUBDIR += rubygem-datadog-ci SUBDIR += rubygem-date SUBDIR += rubygem-ddmemoize SUBDIR += rubygem-ddmetrics SUBDIR += rubygem-ddplugin SUBDIR += rubygem-ddtrace SUBDIR += rubygem-deb_version SUBDIR += rubygem-debase-ruby_core_source SUBDIR += rubygem-debug 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-delayed_job SUBDIR += rubygem-delayer SUBDIR += rubygem-delayer-deferred SUBDIR += rubygem-delegate SUBDIR += rubygem-deprecated SUBDIR += rubygem-deprecated2 SUBDIR += rubygem-descendants_tracker SUBDIR += rubygem-device_detector SUBDIR += rubygem-devise SUBDIR += rubygem-devise-rails5 SUBDIR += rubygem-devise-rails52 SUBDIR += rubygem-devise-rails60 SUBDIR += rubygem-devise-rails61 SUBDIR += rubygem-devise-rails70 SUBDIR += rubygem-did_you_mean SUBDIR += rubygem-dig_rb SUBDIR += rubygem-directory_watcher SUBDIR += rubygem-ditz SUBDIR += rubygem-diva SUBDIR += rubygem-docile SUBDIR += rubygem-docopt SUBDIR += rubygem-drb SUBDIR += rubygem-dry-cli SUBDIR += rubygem-dry-configurable SUBDIR += rubygem-dry-container SUBDIR += rubygem-dry-core SUBDIR += rubygem-dry-equalizer SUBDIR += rubygem-dry-inflector SUBDIR += rubygem-dry-logic SUBDIR += rubygem-dry-types SUBDIR += rubygem-drydock SUBDIR += rubygem-dynflow SUBDIR += rubygem-e2mmap SUBDIR += rubygem-ecma-re-validator SUBDIR += rubygem-edavis10-object_daddy SUBDIR += rubygem-elif SUBDIR += rubygem-emoji_regex SUBDIR += rubygem-english SUBDIR += rubygem-enumerize SUBDIR += rubygem-equalizer SUBDIR += rubygem-equatable SUBDIR += rubygem-erb SUBDIR += rubygem-errand SUBDIR += rubygem-error_highlight SUBDIR += rubygem-et-orbi SUBDIR += rubygem-etc SUBDIR += rubygem-event_emitter SUBDIR += rubygem-event_stream_parser SUBDIR += rubygem-event_stream_parser0 SUBDIR += rubygem-eventmachine SUBDIR += rubygem-excon SUBDIR += rubygem-execjs SUBDIR += rubygem-extlib SUBDIR += rubygem-extpp SUBDIR += rubygem-extras SUBDIR += rubygem-facets SUBDIR += rubygem-faker SUBDIR += rubygem-faraday-cookie_jar SUBDIR += rubygem-faraday-excon SUBDIR += rubygem-faraday-excon1 SUBDIR += rubygem-faraday_middleware-aws-sigv4 SUBDIR += rubygem-faraday_middleware-aws-sigv403 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-fattr SUBDIR += rubygem-fcntl SUBDIR += rubygem-ffaker SUBDIR += rubygem-ffi SUBDIR += rubygem-ffi-compiler SUBDIR += rubygem-ffi-libarchive SUBDIR += rubygem-ffi-win32-extensions SUBDIR += rubygem-ffi-yajl SUBDIR += rubygem-fiber-annotation SUBDIR += rubygem-fiber-local SUBDIR += rubygem-fiddle SUBDIR += rubygem-file-tail SUBDIR += rubygem-filesize SUBDIR += rubygem-fileutils SUBDIR += rubygem-find SUBDIR += rubygem-flexmock SUBDIR += rubygem-flipper SUBDIR += rubygem-flipper-active_support_cache_store SUBDIR += rubygem-flipper-active_support_cache_store-rails61 SUBDIR += rubygem-flipper-active_support_cache_store-rails70 SUBDIR += rubygem-flipper-ui SUBDIR += rubygem-flipper025 SUBDIR += rubygem-flipper026 SUBDIR += rubygem-fluent-logger SUBDIR += rubygem-fog SUBDIR += rubygem-fog-core SUBDIR += rubygem-fog-core1 SUBDIR += rubygem-fog-core210 SUBDIR += rubygem-fog-core220 SUBDIR += rubygem-fog-json SUBDIR += rubygem-font-awesome-rails SUBDIR += rubygem-font-awesome-rails-rails5 SUBDIR += rubygem-font-awesome-rails-rails50 SUBDIR += rubygem-font-awesome-rails-rails52 SUBDIR += rubygem-font-awesome-rails-rails60 SUBDIR += rubygem-foreigner SUBDIR += rubygem-foreman SUBDIR += rubygem-formatador SUBDIR += rubygem-forwardable SUBDIR += rubygem-forwardable-extended SUBDIR += rubygem-fugit SUBDIR += rubygem-fugit18 SUBDIR += rubygem-fuubar SUBDIR += rubygem-fuzzy_match SUBDIR += rubygem-gapic-common SUBDIR += rubygem-gdata SUBDIR += rubygem-gem-compare SUBDIR += rubygem-gem_plugin SUBDIR += rubygem-gemcutter SUBDIR += rubygem-gemdiff SUBDIR += rubygem-gemnasium-parser SUBDIR += rubygem-gems SUBDIR += rubygem-generator SUBDIR += rubygem-generator_spec-rails4 SUBDIR += rubygem-generator_spec-rails5 SUBDIR += rubygem-georuby SUBDIR += rubygem-get_process_mem SUBDIR += rubygem-getopt SUBDIR += rubygem-getoptlong SUBDIR += rubygem-gettext SUBDIR += rubygem-gettext-setup SUBDIR += rubygem-gettext_i18n_rails SUBDIR += rubygem-gettext_i18n_rails111 SUBDIR += rubygem-gettext_i18n_rails_js-rails5 SUBDIR += rubygem-gettext_i18n_rails_js-rails50 SUBDIR += rubygem-gettext_i18n_rails_js-rails52 SUBDIR += rubygem-gettext_i18n_rails_js-rails61 SUBDIR += rubygem-gettext_i18n_rails_js-rails70 SUBDIR += rubygem-gh SUBDIR += rubygem-gibbler SUBDIR += rubygem-gio2 SUBDIR += rubygem-git SUBDIR += rubygem-git-version-bump SUBDIR += rubygem-github_api SUBDIR += rubygem-gitlab SUBDIR += rubygem-gitlab-chronic SUBDIR += rubygem-gitlab-dangerfiles SUBDIR += rubygem-gitlab-experiment SUBDIR += rubygem-gitlab-labkit SUBDIR += rubygem-gitlab-license SUBDIR += rubygem-gitlab-pygments.rb SUBDIR += rubygem-gitlab_chronic_duration SUBDIR += rubygem-gitlab_git SUBDIR += rubygem-gitlab_meta SUBDIR += rubygem-glib2 SUBDIR += rubygem-gobject-introspection SUBDIR += rubygem-google-api-client SUBDIR += rubygem-google-apis-androidpublisher_v3 SUBDIR += rubygem-google-apis-androidpublisher_v3034 SUBDIR += rubygem-google-apis-bigquery_v2 SUBDIR += rubygem-google-apis-cloudbilling_v1 SUBDIR += rubygem-google-apis-cloudresourcemanager_v1 SUBDIR += rubygem-google-apis-cloudresourcemanager_v2 SUBDIR += rubygem-google-apis-cloudresourcemanager_v3 SUBDIR += rubygem-google-apis-compute_v1 SUBDIR += rubygem-google-apis-compute_v1_057 SUBDIR += rubygem-google-apis-container_v1 SUBDIR += rubygem-google-apis-container_v1beta1 SUBDIR += rubygem-google-apis-core SUBDIR += rubygem-google-apis-discovery_v1 SUBDIR += rubygem-google-apis-drive_v3 SUBDIR += rubygem-google-apis-generator SUBDIR += rubygem-google-apis-iam_v1 SUBDIR += rubygem-google-apis-iam_v2 SUBDIR += rubygem-google-apis-iam_v2beta SUBDIR += rubygem-google-apis-iamcredentials_v1 SUBDIR += rubygem-google-apis-monitoring_v3 SUBDIR += rubygem-google-apis-playcustomapp_v1 SUBDIR += rubygem-google-apis-pubsub_v1 SUBDIR += rubygem-google-apis-serviceusage_v1 SUBDIR += rubygem-google-apis-sheets_v4 SUBDIR += rubygem-google-apis-sqladmin_v1beta4 SUBDIR += rubygem-google-apis-sqladmin_v1beta4_041 SUBDIR += rubygem-google-apis-storage_v1 SUBDIR += rubygem-google-gax SUBDIR += rubygem-google-iam-credentials SUBDIR += rubygem-google-iam-credentials-v1 SUBDIR += rubygem-google-iam-v1 SUBDIR += rubygem-google-protobuf SUBDIR += rubygem-googleapis-common-protos SUBDIR += rubygem-googleapis-common-protos-types SUBDIR += rubygem-graf SUBDIR += rubygem-grape SUBDIR += rubygem-grape-entity SUBDIR += rubygem-grape-path-helpers SUBDIR += rubygem-grape-route-helpers SUBDIR += rubygem-grape-swagger SUBDIR += rubygem-grape-swagger-entity SUBDIR += rubygem-grape-swagger16 SUBDIR += rubygem-grape1 SUBDIR += rubygem-grape17 SUBDIR += rubygem-grape_logging SUBDIR += rubygem-graphiql-rails SUBDIR += rubygem-graphlient SUBDIR += rubygem-graphql SUBDIR += rubygem-graphql-client SUBDIR += rubygem-graphql-docs SUBDIR += rubygem-grpc-google-iam-v1 SUBDIR += rubygem-guess_html_encoding SUBDIR += rubygem-gyoku SUBDIR += rubygem-hamster SUBDIR += rubygem-hana SUBDIR += rubygem-hashdiff SUBDIR += rubygem-hashery SUBDIR += rubygem-hashie SUBDIR += rubygem-hashie-forbidden_attributes SUBDIR += rubygem-hashie4 SUBDIR += rubygem-health_check SUBDIR += rubygem-health_check-rails70 SUBDIR += rubygem-heapy SUBDIR += rubygem-highline SUBDIR += rubygem-highline1 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-i18n-tasks-rails61 SUBDIR += rubygem-i18n_data SUBDIR += rubygem-icalendar SUBDIR += rubygem-ice_cube SUBDIR += rubygem-ice_nine SUBDIR += rubygem-inflecto SUBDIR += rubygem-iniparse SUBDIR += rubygem-insist SUBDIR += rubygem-inspec-core SUBDIR += rubygem-instance_storage SUBDIR += rubygem-interact SUBDIR += rubygem-io-console SUBDIR += rubygem-io-event SUBDIR += rubygem-io-like SUBDIR += rubygem-io-nonblock SUBDIR += rubygem-io-wait SUBDIR += rubygem-io-wait01 SUBDIR += rubygem-iobuffer SUBDIR += rubygem-iostruct SUBDIR += rubygem-ipynbdiff SUBDIR += rubygem-irb SUBDIR += rubygem-iso8601 SUBDIR += rubygem-jaeger-client SUBDIR += rubygem-jammit SUBDIR += rubygem-jaro_winkler SUBDIR += rubygem-jasmine-core SUBDIR += rubygem-jbuilder SUBDIR += rubygem-jbuilder-rails5 SUBDIR += rubygem-jbuilder-rails50 SUBDIR += rubygem-jbuilder-rails52 SUBDIR += rubygem-jbuilder-rails60 SUBDIR += rubygem-jbuilder-rails61 SUBDIR += rubygem-jbuilder-rails71 SUBDIR += rubygem-jekyll-coffeescript SUBDIR += rubygem-jenkins_api_client SUBDIR += rubygem-jeweler SUBDIR += rubygem-jira-ruby SUBDIR += rubygem-jira-ruby21 SUBDIR += rubygem-jmespath SUBDIR += rubygem-jquery-ui-themes SUBDIR += rubygem-jruby-jars SUBDIR += rubygem-json SUBDIR += rubygem-json-canonicalization SUBDIR += rubygem-json-schema SUBDIR += rubygem-json1 SUBDIR += rubygem-json_pure SUBDIR += rubygem-json_pure1 SUBDIR += rubygem-json_schema SUBDIR += rubygem-json_schemer SUBDIR += rubygem-jsonapi-renderer SUBDIR += rubygem-jsonpath SUBDIR += rubygem-kafo SUBDIR += rubygem-kafo_parsers SUBDIR += rubygem-kafo_wizards SUBDIR += rubygem-kgio SUBDIR += rubygem-kt-paperclip-rails61 SUBDIR += rubygem-language_server-protocol SUBDIR += rubygem-launchy SUBDIR += rubygem-lazy_priority_queue SUBDIR += rubygem-libdatadog SUBDIR += rubygem-libddprof SUBDIR += rubygem-libddwaf SUBDIR += rubygem-librarian SUBDIR += rubygem-librarianp SUBDIR += rubygem-libyajl2 SUBDIR += rubygem-license_finder SUBDIR += rubygem-licensee SUBDIR += rubygem-listen SUBDIR += rubygem-little-plugger SUBDIR += rubygem-local_time SUBDIR += rubygem-local_time-rails5 SUBDIR += rubygem-locale SUBDIR += rubygem-lockfile SUBDIR += rubygem-logger SUBDIR += rubygem-logging SUBDIR += rubygem-logster SUBDIR += rubygem-loquacious SUBDIR += rubygem-lru_redux SUBDIR += rubygem-lumberjack SUBDIR += rubygem-main SUBDIR += rubygem-makara61 SUBDIR += rubygem-manpages SUBDIR += rubygem-map SUBDIR += rubygem-marcel SUBDIR += rubygem-memo_wise SUBDIR += rubygem-memoist SUBDIR += rubygem-memoizable SUBDIR += rubygem-memoize SUBDIR += rubygem-memory_profiler 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-middleware SUBDIR += rubygem-mini_histogram SUBDIR += rubygem-mini_portile2 SUBDIR += rubygem-mini_portile2-25 SUBDIR += rubygem-minitest SUBDIR += rubygem-mixlib-archive SUBDIR += rubygem-mixlib-authentication SUBDIR += rubygem-mixlib-cli SUBDIR += rubygem-mixlib-config SUBDIR += rubygem-mixlib-install SUBDIR += rubygem-mixlib-log SUBDIR += rubygem-mixlib-shellout SUBDIR += rubygem-mixlib-versioning SUBDIR += rubygem-mize SUBDIR += rubygem-mkrf SUBDIR += rubygem-mmap2 SUBDIR += rubygem-mocha SUBDIR += rubygem-molinillo SUBDIR += rubygem-moneta SUBDIR += rubygem-mongo SUBDIR += rubygem-mono_logger SUBDIR += rubygem-ms_rest SUBDIR += rubygem-ms_rest_azure SUBDIR += rubygem-msgpack SUBDIR += rubygem-mspec SUBDIR += rubygem-multi_json SUBDIR += rubygem-multi_json114 SUBDIR += rubygem-multi_test SUBDIR += rubygem-murmurhash3 SUBDIR += rubygem-mustache SUBDIR += rubygem-mustache-sinatra SUBDIR += rubygem-mustermann SUBDIR += rubygem-mustermann-grape SUBDIR += rubygem-mustermann-grape10 SUBDIR += rubygem-mutex_m SUBDIR += rubygem-mutter SUBDIR += rubygem-nakayoshi_fork SUBDIR += rubygem-nap 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-nsa-rails61 SUBDIR += rubygem-numerizer SUBDIR += rubygem-oci SUBDIR += rubygem-octopress-hooks SUBDIR += rubygem-oj SUBDIR += rubygem-oj-introspect SUBDIR += rubygem-oj313 SUBDIR += rubygem-omniauth_crowd SUBDIR += rubygem-omnibus SUBDIR += rubygem-open3 SUBDIR += rubygem-open3_backport SUBDIR += rubygem-open4 SUBDIR += rubygem-opentelemetry-api SUBDIR += rubygem-opentelemetry-common SUBDIR += rubygem-opentelemetry-instrumentation-base SUBDIR += rubygem-opentelemetry-instrumentation-rack SUBDIR += rubygem-opentelemetry-registry SUBDIR += rubygem-opentelemetry-sdk SUBDIR += rubygem-opentelemetry-semantic_conventions SUBDIR += rubygem-opentracing SUBDIR += rubygem-opt_parse_validator SUBDIR += rubygem-optimist SUBDIR += rubygem-optparse SUBDIR += rubygem-orm_adapter SUBDIR += rubygem-os SUBDIR += rubygem-ostruct SUBDIR += rubygem-p4ruby SUBDIR += rubygem-paint SUBDIR += rubygem-pairing_heap SUBDIR += rubygem-paperclip-rails5 SUBDIR += rubygem-paperclip-rails50 SUBDIR += rubygem-parser SUBDIR += rubygem-pastel SUBDIR += rubygem-patch_finder SUBDIR += rubygem-pathname SUBDIR += rubygem-pathspec SUBDIR += rubygem-pathutil SUBDIR += rubygem-pdk SUBDIR += rubygem-pedump SUBDIR += rubygem-peek SUBDIR += rubygem-peek-gc-rails52 SUBDIR += rubygem-peek-host SUBDIR += rubygem-peek-performance_bar SUBDIR += rubygem-peek-rails4 SUBDIR += rubygem-peek-rails52 SUBDIR += rubygem-peek-rails60 SUBDIR += rubygem-peek-rails61 SUBDIR += rubygem-peek-rails70 SUBDIR += rubygem-peek-rblineprof-rails52 SUBDIR += rubygem-peek-redis-rails52 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-pp SUBDIR += rubygem-pqueue SUBDIR += rubygem-prettier_print SUBDIR += rubygem-prettyprint SUBDIR += rubygem-profile SUBDIR += rubygem-progressbar SUBDIR += rubygem-prometheus-client-mmap SUBDIR += rubygem-protected_attributes SUBDIR += rubygem-protobuf-cucumber SUBDIR += rubygem-protocol SUBDIR += rubygem-pry SUBDIR += rubygem-pry-byebug SUBDIR += rubygem-pry-rails SUBDIR += rubygem-pry-remote SUBDIR += rubygem-pry-remote-em SUBDIR += rubygem-pstore SUBDIR += rubygem-ptreloaded SUBDIR += rubygem-puppet-resource_api SUBDIR += rubygem-pygments.rb SUBDIR += rubygem-que SUBDIR += rubygem-que-scheduler SUBDIR += rubygem-r18n-core SUBDIR += rubygem-r18n-desktop SUBDIR += rubygem-r18n-rails SUBDIR += rubygem-r18n-rails-api 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-rails5 SUBDIR += rubygem-rails-i18n-rails50 SUBDIR += rubygem-rails-i18n-rails52 SUBDIR += rubygem-rails-i18n-rails60 SUBDIR += rubygem-rails-i18n-rails61 SUBDIR += rubygem-rails-i18n-rails70 SUBDIR += rubygem-rails-observers SUBDIR += rubygem-rainbow 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-rash_alt SUBDIR += rubygem-rb-fsevent SUBDIR += rubygem-rb-inotify SUBDIR += rubygem-rb-kqueue SUBDIR += rubygem-rblineprof SUBDIR += rubygem-rbs SUBDIR += rubygem-rbs_json_schema SUBDIR += rubygem-rbtrace SUBDIR += rubygem-rbtree SUBDIR += rubygem-rdoc SUBDIR += rubygem-re2 SUBDIR += rubygem-react-rails SUBDIR += rubygem-react-rails-rails5 SUBDIR += rubygem-readline SUBDIR += rubygem-readline-ext SUBDIR += rubygem-readwritesettings SUBDIR += rubygem-recaptcha SUBDIR += rubygem-recursive-open-struct SUBDIR += rubygem-red-datasets SUBDIR += rubygem-redis-activesupport SUBDIR += rubygem-redis-activesupport-rails5 SUBDIR += rubygem-redis-activesupport-rails50 SUBDIR += rubygem-redis-activesupport-rails52 SUBDIR += rubygem-redis-activesupport-rails60 SUBDIR += rubygem-redis-activesupport-rails61 SUBDIR += rubygem-redis-store SUBDIR += rubygem-redlock SUBDIR += rubygem-redlock1 SUBDIR += rubygem-redmine_plugin_support SUBDIR += rubygem-reentrant_flock SUBDIR += rubygem-ref SUBDIR += rubygem-reline SUBDIR += rubygem-request_store SUBDIR += rubygem-request_store14 SUBDIR += rubygem-require_all SUBDIR += rubygem-resque SUBDIR += rubygem-resque-scheduler SUBDIR += rubygem-retriable SUBDIR += rubygem-retryable SUBDIR += rubygem-rgen SUBDIR += rubygem-rgl SUBDIR += rubygem-rice SUBDIR += rubygem-rinda SUBDIR += rubygem-rodzilla SUBDIR += rubygem-rotp SUBDIR += rubygem-rr SUBDIR += rubygem-rrd-ffi SUBDIR += rubygem-rscm SUBDIR += rubygem-rsec 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-rubocop-ast SUBDIR += rubygem-rubocop-capybara SUBDIR += rubygem-rubocop-factory_bot SUBDIR += rubygem-rubocop-performance SUBDIR += rubygem-rubocop-rake SUBDIR += rubygem-rubocop-rspec 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-lsp SUBDIR += rubygem-ruby-lsp-rails SUBDIR += rubygem-ruby-lsp-rspec SUBDIR += rubygem-ruby-macho SUBDIR += rubygem-ruby-magic SUBDIR += rubygem-ruby-ole SUBDIR += rubygem-ruby-prof SUBDIR += rubygem-ruby-progressbar SUBDIR += rubygem-ruby-statistics SUBDIR += rubygem-ruby2_keywords SUBDIR += rubygem-ruby2ruby SUBDIR += rubygem-ruby_dep SUBDIR += rubygem-ruby_memcheck SUBDIR += rubygem-ruby_parser 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-scanf SUBDIR += rubygem-schash SUBDIR += rubygem-scientist SUBDIR += rubygem-sd_notify SUBDIR += rubygem-sdoc SUBDIR += rubygem-semantic_puppet SUBDIR += rubygem-semantic_range SUBDIR += rubygem-semi_semantic SUBDIR += rubygem-semver2 SUBDIR += rubygem-semver_dialects SUBDIR += rubygem-semver_dialects12 SUBDIR += rubygem-semverse SUBDIR += rubygem-sentry-rails SUBDIR += rubygem-sentry-raven SUBDIR += rubygem-sentry-ruby SUBDIR += rubygem-sentry-ruby-core SUBDIR += rubygem-sentry-sidekiq SUBDIR += rubygem-sequel SUBDIR += rubygem-server_sent_events SUBDIR += rubygem-set SUBDIR += rubygem-settingslogic SUBDIR += rubygem-sexp_processor SUBDIR += rubygem-shell SUBDIR += rubygem-shoulda SUBDIR += rubygem-shoulda-context SUBDIR += rubygem-shoulda-matchers SUBDIR += rubygem-sidekiq SUBDIR += rubygem-sidekiq-bulk SUBDIR += rubygem-sidekiq-cron SUBDIR += rubygem-sidekiq-cron18 SUBDIR += rubygem-sidekiq-scheduler SUBDIR += rubygem-sidekiq-unique-jobs SUBDIR += rubygem-sidekiq6 SUBDIR += rubygem-sidetiq SUBDIR += rubygem-sigdump SUBDIR += rubygem-simple-navigation SUBDIR += rubygem-simple-navigation-rails50 SUBDIR += rubygem-simple-navigation-rails61 SUBDIR += rubygem-simple_form SUBDIR += rubygem-simple_form-rails5 SUBDIR += rubygem-simple_form-rails50 SUBDIR += rubygem-simple_form-rails61 SUBDIR += rubygem-simple_po_parser SUBDIR += rubygem-simplecov SUBDIR += rubygem-simplecov_json_formatter SUBDIR += rubygem-singleton SUBDIR += rubygem-skiptrace SUBDIR += rubygem-slack-messenger SUBDIR += rubygem-slack-notifier SUBDIR += rubygem-slim SUBDIR += rubygem-slop SUBDIR += rubygem-slop3 SUBDIR += rubygem-slow_enumerator_tools SUBDIR += rubygem-smart_properties SUBDIR += rubygem-snaky_hash SUBDIR += rubygem-snowplow-tracker SUBDIR += rubygem-soap4r SUBDIR += rubygem-solve SUBDIR += rubygem-sorbet-runtime SUBDIR += rubygem-sorted_set SUBDIR += rubygem-spring SUBDIR += rubygem-spring-watcher-listen SUBDIR += rubygem-sprockets SUBDIR += rubygem-sprockets-es6 SUBDIR += rubygem-sprockets-helpers SUBDIR += rubygem-sprockets-rails-rails4 SUBDIR += rubygem-sprockets-rails-rails5 SUBDIR += rubygem-sprockets-rails-rails50 SUBDIR += rubygem-sprockets-rails-rails52 SUBDIR += rubygem-sprockets-rails-rails60 SUBDIR += rubygem-sprockets-rails-rails61 SUBDIR += rubygem-sprockets-rails-rails70 SUBDIR += rubygem-sprockets-rails-rails71 SUBDIR += rubygem-sprockets-sass SUBDIR += rubygem-sprockets2 SUBDIR += rubygem-sprockets3 SUBDIR += rubygem-spruz SUBDIR += rubygem-stackprof 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-stoplight SUBDIR += rubygem-storable SUBDIR += rubygem-stream SUBDIR += rubygem-streetaddress SUBDIR += rubygem-stringex SUBDIR += rubygem-stringio SUBDIR += rubygem-strings SUBDIR += rubygem-strings-ansi SUBDIR += rubygem-strong_migrations SUBDIR += rubygem-strong_migrations61 SUBDIR += rubygem-strptime SUBDIR += rubygem-strscan SUBDIR += rubygem-structured_warnings SUBDIR += rubygem-stud SUBDIR += rubygem-subexec SUBDIR += rubygem-sucker_punch SUBDIR += rubygem-sugar-high SUBDIR += rubygem-sumbur SUBDIR += rubygem-sundawg_country_codes SUBDIR += rubygem-sus SUBDIR += rubygem-svn2git SUBDIR += rubygem-swagger-blocks SUBDIR += rubygem-sync SUBDIR += rubygem-syntax_suggest SUBDIR += rubygem-syntax_tree SUBDIR += rubygem-sysinfo SUBDIR += rubygem-syslog SUBDIR += rubygem-systemu SUBDIR += rubygem-table_print SUBDIR += rubygem-tdiff SUBDIR += rubygem-telesign SUBDIR += rubygem-telesignenterprise SUBDIR += rubygem-tempfile SUBDIR += rubygem-templater SUBDIR += rubygem-temple SUBDIR += rubygem-term-ansicolor SUBDIR += rubygem-terrapin SUBDIR += rubygem-test-unit SUBDIR += rubygem-thor SUBDIR += rubygem-thor0 SUBDIR += rubygem-thor12 SUBDIR += rubygem-thread_safe SUBDIR += rubygem-thrift SUBDIR += rubygem-thwait SUBDIR += rubygem-tilt SUBDIR += rubygem-tilt1 SUBDIR += rubygem-time SUBDIR += rubygem-timecop SUBDIR += rubygem-timeliness SUBDIR += rubygem-timeout SUBDIR += rubygem-timers SUBDIR += rubygem-tins SUBDIR += rubygem-titlecase SUBDIR += rubygem-tmpdir SUBDIR += rubygem-to_regexp SUBDIR += rubygem-tool SUBDIR += rubygem-tracer SUBDIR += rubygem-traces SUBDIR += rubygem-trailblazer-option SUBDIR += rubygem-transaction-simple SUBDIR += rubygem-travis SUBDIR += rubygem-treetop SUBDIR += rubygem-trollop SUBDIR += rubygem-trollop1 SUBDIR += rubygem-tsort SUBDIR += rubygem-tty SUBDIR += rubygem-tty-box SUBDIR += rubygem-tty-color SUBDIR += rubygem-tty-command SUBDIR += rubygem-tty-config SUBDIR += rubygem-tty-cursor SUBDIR += rubygem-tty-editor SUBDIR += rubygem-tty-file SUBDIR += rubygem-tty-font SUBDIR += rubygem-tty-logger SUBDIR += rubygem-tty-markdown SUBDIR += rubygem-tty-pager SUBDIR += rubygem-tty-pie 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-typeprof SUBDIR += rubygem-tzinfo SUBDIR += rubygem-tzinfo-data SUBDIR += rubygem-tzinfo1 SUBDIR += rubygem-uber SUBDIR += rubygem-un SUBDIR += rubygem-unicode SUBDIR += rubygem-unicode-display_width SUBDIR += rubygem-unicode_utils SUBDIR += rubygem-unleash SUBDIR += rubygem-useragent SUBDIR += rubygem-uuid SUBDIR += rubygem-uuidtools SUBDIR += rubygem-valid SUBDIR += rubygem-validatable SUBDIR += rubygem-validate_email SUBDIR += rubygem-validate_url SUBDIR += rubygem-validates_timeliness SUBDIR += rubygem-version_gem SUBDIR += rubygem-versionomy SUBDIR += rubygem-view_component-rails61 SUBDIR += rubygem-view_component-rails70 SUBDIR += rubygem-virtus SUBDIR += rubygem-vite_rails-rails70 SUBDIR += rubygem-vite_ruby SUBDIR += rubygem-warbler SUBDIR += rubygem-warden SUBDIR += rubygem-warning SUBDIR += rubygem-wdm SUBDIR += rubygem-weakref SUBDIR += rubygem-web-console-rails60 SUBDIR += rubygem-web-console-rails61 SUBDIR += rubygem-web-console-rails71 SUBDIR += rubygem-web-console2 SUBDIR += rubygem-web-console3-rails5 SUBDIR += rubygem-web-console3-rails50 SUBDIR += rubygem-web-console3-rails52 SUBDIR += rubygem-webby SUBDIR += rubygem-webfinger SUBDIR += rubygem-webpacker-rails60 SUBDIR += rubygem-webpacker-rails61 SUBDIR += rubygem-webpacker4-rails60 SUBDIR += rubygem-will_paginate SUBDIR += rubygem-windows_error SUBDIR += rubygem-wisper SUBDIR += rubygem-with_env SUBDIR += rubygem-wmi-lite SUBDIR += rubygem-xdg SUBDIR += rubygem-xdg2 SUBDIR += rubygem-xdg3 SUBDIR += rubygem-xdg4 SUBDIR += rubygem-xdg5 SUBDIR += rubygem-xdg6 SUBDIR += rubygem-xorcist SUBDIR += rubygem-xpath SUBDIR += rubygem-xxhash SUBDIR += rubygem-yajl-ruby SUBDIR += rubygem-yui-compressor SUBDIR += rubygem-zeitwerk SUBDIR += rubygem-zentest SUBDIR += rubygem-zhexdump SUBDIR += rubygem-zlib SUBDIR += rubygem-zstd-ruby SUBDIR += rubymine SUBDIR += rudeconfig SUBDIR += rudiments SUBDIR += ruff SUBDIR += rust-analyzer SUBDIR += rust-bindgen-cli SUBDIR += rust-cbindgen SUBDIR += rustc-demangle SUBDIR += rvi SUBDIR += rvm SUBDIR += rxcpp SUBDIR += sabre SUBDIR += safe-iop SUBDIR += samurai SUBDIR += sasm SUBDIR += sbt SUBDIR += scalatest SUBDIR += scandoc SUBDIR += scc SUBDIR += sccache SUBDIR += sccs SUBDIR += schilybase SUBDIR += scons SUBDIR += sd-mux-ctrl SUBDIR += sdbus-cpp SUBDIR += sdl12 SUBDIR += sdl12-compat SUBDIR += sdl20 SUBDIR += sdl2pp SUBDIR += sdl_console SUBDIR += sdlmm SUBDIR += sdlskk SUBDIR += sdsl-lite SUBDIR += sedsed SUBDIR += seer-gdb SUBDIR += selene SUBDIR += sentry-cli SUBDIR += serd SUBDIR += serdisplib SUBDIR += sfml SUBDIR += sfml1 SUBDIR += sfsexp SUBDIR += sgb SUBDIR += shadered SUBDIR += shapelib SUBDIR += shards SUBDIR += shell-toolbox SUBDIR += shflags SUBDIR += shfmt SUBDIR += shiboken2 SUBDIR += shiboken6 SUBDIR += shmap SUBDIR += shroud SUBDIR += shtk SUBDIR += shtool SUBDIR += shunit2 SUBDIR += sigar SUBDIR += signal-fts5-extension SUBDIR += sigslot SUBDIR += silc-toolkit SUBDIR += silentbob SUBDIR += simavr SUBDIR += simde SUBDIR += simdjson SUBDIR += simgear SUBDIR += simian SUBDIR += simpleini SUBDIR += sjasmplus SUBDIR += skalibs SUBDIR += skypat SUBDIR += slf4j SUBDIR += slibtool SUBDIR += smake SUBDIR += smc SUBDIR += smooth SUBDIR += smv SUBDIR += snazy SUBDIR += snitch SUBDIR += soapui SUBDIR += sobjectizer SUBDIR += socket_wrapper SUBDIR += soft-serve SUBDIR += sol2 SUBDIR += sonar-scanner-cli SUBDIR += sonarqube-ant-task SUBDIR += sonarqube-community SUBDIR += sope SUBDIR += sope2 SUBDIR += sord SUBDIR += spark SUBDIR += sparsebitset SUBDIR += sparsehash SUBDIR += spatialindex SUBDIR += spdlog SUBDIR += spice-protocol SUBDIR += spin SUBDIR += spirv-llvm-translator SUBDIR += splint SUBDIR += spr SUBDIR += spread-sheet-widget SUBDIR += spyder SUBDIR += srecord SUBDIR += st SUBDIR += stack SUBDIR += staf SUBDIR += statcvs SUBDIR += statik SUBDIR += statsvn SUBDIR += stb SUBDIR += stdman SUBDIR += stdx-allocator SUBDIR += stfl SUBDIR += stlfilt SUBDIR += stlink SUBDIR += str SUBDIR += strace SUBDIR += string_theory SUBDIR += stringencoders SUBDIR += stuffbin SUBDIR += stxxl SUBDIR += stylua SUBDIR += styx SUBDIR += subversion SUBDIR += subversion-book SUBDIR += subversion-lts SUBDIR += subversive SUBDIR += sunpromake SUBDIR += svk SUBDIR += svn2git SUBDIR += svn_load_dirs SUBDIR += svntrac SUBDIR += swank-clojure SUBDIR += swig SUBDIR += swig40 SUBDIR += sysconftool SUBDIR += sysfsutils SUBDIR += systemc SUBDIR += t1lib SUBDIR += ta-lib SUBDIR += tablist SUBDIR += tabulate SUBDIR += tagref SUBDIR += tailor SUBDIR += talloc SUBDIR += tarpaulin SUBDIR += taskctl SUBDIR += taskflow SUBDIR += tass64 SUBDIR += tbb SUBDIR += tcl-memchan SUBDIR += tcl-mmap SUBDIR += tcl-signal SUBDIR += tcl-trf SUBDIR += tclap SUBDIR += tclap12 SUBDIR += tclbsd SUBDIR += tclcheck SUBDIR += tcllauncher SUBDIR += tcllib SUBDIR += tcllibc SUBDIR += tclreadline SUBDIR += tclthread SUBDIR += tcltls SUBDIR += tclvfs SUBDIR += tclxml SUBDIR += tdl SUBDIR += template-glib SUBDIR += termbox SUBDIR += termcolor SUBDIR += terminality SUBDIR += test-drive SUBDIR += tevent SUBDIR += tex-kpathsea SUBDIR += tex-libtexlua SUBDIR += tex-libtexluajit SUBDIR += tex-synctex SUBDIR += tex-web2c SUBDIR += texlab SUBDIR += the-way SUBDIR += thonny SUBDIR += thrift SUBDIR += thrift-c_glib SUBDIR += thrift-cpp SUBDIR += thrust SUBDIR += thunar-vcs-plugin SUBDIR += ticcutils SUBDIR += tig SUBDIR += tigcc SUBDIR += tijmp SUBDIR += tinycbor SUBDIR += tinygo SUBDIR += tinylaf SUBDIR += tkcon SUBDIR += tkcvs SUBDIR += tkp4 SUBDIR += tl-expected SUBDIR += tla SUBDIR += tllist SUBDIR += tlsh SUBDIR += tlx SUBDIR += tmake SUBDIR += tnt SUBDIR += tokei SUBDIR += tokio-console SUBDIR += toml11 SUBDIR += tortoisehg SUBDIR += tpasm SUBDIR += tradcpp SUBDIR += transient SUBDIR += transient-devel SUBDIR += transwarp SUBDIR += tree-sitter SUBDIR += tree-sitter-graph SUBDIR += treefmt SUBDIR += treepy.el SUBDIR += trellis SUBDIR += trio SUBDIR += trompeloeil SUBDIR += truc SUBDIR += tup SUBDIR += twiggy SUBDIR += typeshare SUBDIR += ua_parser-core SUBDIR += uclcmd SUBDIR += ucommon SUBDIR += ucpp SUBDIR += udis86 SUBDIR += uid_wrapper SUBDIR += ultragetopt SUBDIR += umbrello SUBDIR += umlgraph SUBDIR += undead SUBDIR += unibilium SUBDIR += universal-ctags SUBDIR += unordered-dense SUBDIR += upnp SUBDIR += upp SUBDIR += upslug SUBDIR += urjtag SUBDIR += utf8cpp SUBDIR += utf8cpp3 SUBDIR += uthash SUBDIR += util-linux SUBDIR += valgrind SUBDIR += valgrind-devel SUBDIR += varconf SUBDIR += vasm SUBDIR += vc SUBDIR += vc-intrinsics SUBDIR += vcglib SUBDIR += vera++ SUBDIR += vexcl SUBDIR += viewvc-devel SUBDIR += violet SUBDIR += vipack SUBDIR += vitables SUBDIR += volk SUBDIR += vstr SUBDIR += vxlog SUBDIR += wand-libconfig SUBDIR += wandio SUBDIR += wasi-compiler-rt SUBDIR += wasi-compiler-rt12 SUBDIR += wasi-compiler-rt13 SUBDIR += wasi-compiler-rt14 SUBDIR += wasi-compiler-rt15 SUBDIR += wasi-compiler-rt16 SUBDIR += wasi-compiler-rt17 SUBDIR += wasi-libc SUBDIR += wasi-libcxx SUBDIR += wasi-libcxx12 SUBDIR += wasi-libcxx13 SUBDIR += wasi-libcxx14 SUBDIR += wasi-libcxx15 SUBDIR += wasi-libcxx16 SUBDIR += wasi-libcxx17 SUBDIR += wasm3 SUBDIR += wasmer SUBDIR += websocketpp SUBDIR += websvn SUBDIR += wf-config SUBDIR += wininfo SUBDIR += wizardkit SUBDIR += woff2 SUBDIR += wrangler SUBDIR += wxformbuilder SUBDIR += xa65 SUBDIR += xbyak SUBDIR += xc3sprog SUBDIR += xcscope.el SUBDIR += xdg-dbus-proxy SUBDIR += xdg-user-dirs SUBDIR += xdg-utils SUBDIR += xdgpaths SUBDIR += xelfviewer SUBDIR += xeus SUBDIR += xeus-cling SUBDIR += xeus-zmq SUBDIR += xfce4-dev-tools SUBDIR += xmake SUBDIR += xmltooling SUBDIR += xopcodecalc SUBDIR += xorg-macros SUBDIR += xparam SUBDIR += xpeviewer SUBDIR += xsd SUBDIR += xsimd SUBDIR += xtensa-esp32-elf SUBDIR += xtl SUBDIR += xtl-quant-stack SUBDIR += xwpe SUBDIR += xxgdb SUBDIR += xxhash SUBDIR += xxl SUBDIR += yaegi SUBDIR += yaggo SUBDIR += yajl SUBDIR += yajl-tcl SUBDIR += yaml-cpp SUBDIR += yaml2argdata SUBDIR += yasm SUBDIR += yder SUBDIR += youcompleteme SUBDIR += yuck SUBDIR += yyjson SUBDIR += z80-asm SUBDIR += z80asm SUBDIR += z80ex SUBDIR += z88dk SUBDIR += zanata-cli SUBDIR += zanata-platform SUBDIR += zapcc SUBDIR += zeal SUBDIR += zfp SUBDIR += zix SUBDIR += zls SUBDIR += zookeeper SUBDIR += zthread SUBDIR += zug SUBDIR += zycore-c SUBDIR += zydis SUBDIR += zziplib .include diff --git a/devel/plasma6-kwrited/Makefile b/devel/plasma6-kwrited/Makefile new file mode 100644 index 000000000000..75ffce5f73c5 --- /dev/null +++ b/devel/plasma6-kwrited/Makefile @@ -0,0 +1,13 @@ +PORTNAME= kwrited +DISTVERSION= ${KDE_PLASMA_VERSION} +CATEGORIES= devel kde kde-plasma + +MAINTAINER= kde@FreeBSD.org +COMMENT= Listen to traditional system notifications + +USES= cmake gettext kde:6 qt:6 tar:xz +USE_KDE= coreaddons dbusaddons i18n notifications pty \ + ecm:build +USE_QT= base + +.include diff --git a/devel/plasma6-kwrited/distinfo b/devel/plasma6-kwrited/distinfo new file mode 100644 index 000000000000..9790a9f70138 --- /dev/null +++ b/devel/plasma6-kwrited/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1701525050 +SHA256 (KDE/plasma/5.90.0/kwrited-5.90.0.tar.xz) = e60d54e9b1f08c46d9f2d84b2b7798172b5960ce031c92e7c3a3d4e4e8dadcb9 +SIZE (KDE/plasma/5.90.0/kwrited-5.90.0.tar.xz) = 23656 diff --git a/devel/plasma6-kwrited/pkg-plist b/devel/plasma6-kwrited/pkg-plist new file mode 100644 index 000000000000..aac921a4c7c2 --- /dev/null +++ b/devel/plasma6-kwrited/pkg-plist @@ -0,0 +1,2 @@ +%%QT_PLUGINDIR%%/kf6/kded/kwrited.so +share/knotifications6/kwrited.notifyrc diff --git a/devel/plasma6-plasma-sdk/Makefile b/devel/plasma6-plasma-sdk/Makefile new file mode 100644 index 000000000000..1452388a640b --- /dev/null +++ b/devel/plasma6-plasma-sdk/Makefile @@ -0,0 +1,15 @@ +PORTNAME= plasma-sdk +DISTVERSION= ${KDE_PLASMA_VERSION} +CATEGORIES= devel kde kde-plasma + +MAINTAINER= kde@FreeBSD.org +COMMENT= Applications useful for Plasma development + +USES= cmake gettext kde:6 qt:6 tar:xz +USE_KDE= archive completion config configwidgets coreaddons dbusaddons \ + doctools i18n iconthemes itemmodels kio kirigami2 libplasma \ + plasma5support svg texteditor widgetsaddons \ + ecm:build +USE_QT= base declarative svg + +.include diff --git a/devel/plasma6-plasma-sdk/distinfo b/devel/plasma6-plasma-sdk/distinfo new file mode 100644 index 000000000000..66391c3c5151 --- /dev/null +++ b/devel/plasma6-plasma-sdk/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1701531662 +SHA256 (KDE/plasma/5.90.0/plasma-sdk-5.90.0.tar.xz) = cd74dd7a8dc6c737d017786b19d33ff734e3159ecd75fccea549dda8ceb5575a +SIZE (KDE/plasma/5.90.0/plasma-sdk-5.90.0.tar.xz) = 325436 diff --git a/devel/plasma6-plasma-sdk/pkg-plist b/devel/plasma6-plasma-sdk/pkg-plist new file mode 100644 index 000000000000..84dd2965a753 --- /dev/null +++ b/devel/plasma6-plasma-sdk/pkg-plist @@ -0,0 +1,502 @@ +bin/iconexplorer +bin/kqml +bin/lookandfeelexplorer +bin/plasmaengineexplorer +bin/plasmathemeexplorer +bin/plasmoidviewer +%%QT_PLUGINDIR%%/ktexteditor/iconexplorerplugin.so +man/ca/man1/plasmaengineexplorer.1.gz +man/ca/man1/plasmoidviewer.1.gz +man/de/man1/plasmaengineexplorer.1.gz +man/de/man1/plasmoidviewer.1.gz +man/el/man1/plasmaengineexplorer.1.gz +man/el/man1/plasmoidviewer.1.gz +man/es/man1/plasmaengineexplorer.1.gz +man/es/man1/plasmoidviewer.1.gz +man/et/man1/plasmaengineexplorer.1.gz +man/et/man1/plasmoidviewer.1.gz +man/fr/man1/plasmaengineexplorer.1.gz +man/fr/man1/plasmoidviewer.1.gz +man/id/man1/plasmaengineexplorer.1.gz +man/id/man1/plasmoidviewer.1.gz +man/it/man1/plasmaengineexplorer.1.gz +man/it/man1/plasmoidviewer.1.gz +man/man1/kqml.1.gz +man/man1/plasmaengineexplorer.1.gz +man/man1/plasmoidviewer.1.gz +man/nl/man1/plasmaengineexplorer.1.gz +man/nl/man1/plasmoidviewer.1.gz +man/pt/man1/plasmaengineexplorer.1.gz +man/pt/man1/plasmoidviewer.1.gz +man/pt_BR/man1/plasmaengineexplorer.1.gz +man/pt_BR/man1/plasmoidviewer.1.gz +man/ru/man1/plasmaengineexplorer.1.gz +man/ru/man1/plasmoidviewer.1.gz +man/sv/man1/plasmaengineexplorer.1.gz +man/sv/man1/plasmoidviewer.1.gz +man/tr/man1/plasmaengineexplorer.1.gz +man/tr/man1/plasmoidviewer.1.gz +man/uk/man1/plasmaengineexplorer.1.gz +man/uk/man1/plasmoidviewer.1.gz +share/applications/org.kde.iconexplorer.desktop +share/applications/org.kde.plasma.themeexplorer.desktop +share/applications/org.kde.plasmaengineexplorer.desktop +share/applications/org.kde.plasmoidviewer.desktop +share/kpackage/genericqml/org.kde.plasma.lookandfeelexplorer/contents/ui/FormField.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.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.json +share/locale/ar/LC_MESSAGES/cuttlefish_editorplugin.mo +share/locale/ar/LC_MESSAGES/iconexplorer.mo +share/locale/ar/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.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/plasmoidviewer.mo +share/locale/ast/LC_MESSAGES/cuttlefish_editorplugin.mo +share/locale/ast/LC_MESSAGES/iconexplorer.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/plasmoidviewer.mo +share/locale/az/LC_MESSAGES/cuttlefish_editorplugin.mo +share/locale/az/LC_MESSAGES/iconexplorer.mo +share/locale/az/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo +share/locale/az/LC_MESSAGES/org.kde.plasma.themeexplorer.mo +share/locale/az/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo +share/locale/az/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/az/LC_MESSAGES/plasmoidviewer.mo +share/locale/be/LC_MESSAGES/cuttlefish_editorplugin.mo +share/locale/be/LC_MESSAGES/iconexplorer.mo +share/locale/be/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo +share/locale/be/LC_MESSAGES/org.kde.plasma.themeexplorer.mo +share/locale/be/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo +share/locale/be/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/be/LC_MESSAGES/plasmoidviewer.mo +share/locale/be@latin/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/be@latin/LC_MESSAGES/plasmoidviewer.mo +share/locale/bg/LC_MESSAGES/cuttlefish_editorplugin.mo +share/locale/bg/LC_MESSAGES/iconexplorer.mo +share/locale/bg/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo +share/locale/bg/LC_MESSAGES/org.kde.plasma.themeexplorer.mo +share/locale/bg/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.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/plasmoidviewer.mo +share/locale/ca/LC_MESSAGES/cuttlefish_editorplugin.mo +share/locale/ca/LC_MESSAGES/iconexplorer.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/plasmoidviewer.mo +share/locale/ca@valencia/LC_MESSAGES/cuttlefish_editorplugin.mo +share/locale/ca@valencia/LC_MESSAGES/iconexplorer.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/plasmoidviewer.mo +share/locale/cs/LC_MESSAGES/cuttlefish_editorplugin.mo +share/locale/cs/LC_MESSAGES/iconexplorer.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/plasmoidviewer.mo +share/locale/csb/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/csb/LC_MESSAGES/plasmoidviewer.mo +share/locale/da/LC_MESSAGES/cuttlefish_editorplugin.mo +share/locale/da/LC_MESSAGES/iconexplorer.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/plasmoidviewer.mo +share/locale/de/LC_MESSAGES/cuttlefish_editorplugin.mo +share/locale/de/LC_MESSAGES/iconexplorer.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/plasmoidviewer.mo +share/locale/el/LC_MESSAGES/cuttlefish_editorplugin.mo +share/locale/el/LC_MESSAGES/iconexplorer.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/plasmoidviewer.mo +share/locale/en_GB/LC_MESSAGES/cuttlefish_editorplugin.mo +share/locale/en_GB/LC_MESSAGES/iconexplorer.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/plasmoidviewer.mo +share/locale/eo/LC_MESSAGES/cuttlefish_editorplugin.mo +share/locale/eo/LC_MESSAGES/iconexplorer.mo +share/locale/eo/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo +share/locale/eo/LC_MESSAGES/org.kde.plasma.themeexplorer.mo +share/locale/eo/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo +share/locale/eo/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/eo/LC_MESSAGES/plasmoidviewer.mo +share/locale/es/LC_MESSAGES/cuttlefish_editorplugin.mo +share/locale/es/LC_MESSAGES/iconexplorer.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/plasmoidviewer.mo +share/locale/et/LC_MESSAGES/cuttlefish_editorplugin.mo +share/locale/et/LC_MESSAGES/iconexplorer.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/plasmoidviewer.mo +share/locale/eu/LC_MESSAGES/cuttlefish_editorplugin.mo +share/locale/eu/LC_MESSAGES/iconexplorer.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/plasmoidviewer.mo +share/locale/fa/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/fi/LC_MESSAGES/cuttlefish_editorplugin.mo +share/locale/fi/LC_MESSAGES/iconexplorer.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/plasmoidviewer.mo +share/locale/fr/LC_MESSAGES/cuttlefish_editorplugin.mo +share/locale/fr/LC_MESSAGES/iconexplorer.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/plasmoidviewer.mo +share/locale/fy/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/fy/LC_MESSAGES/plasmoidviewer.mo +share/locale/ga/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/ga/LC_MESSAGES/plasmoidviewer.mo +share/locale/gl/LC_MESSAGES/cuttlefish_editorplugin.mo +share/locale/gl/LC_MESSAGES/iconexplorer.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/plasmoidviewer.mo +share/locale/gu/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/gu/LC_MESSAGES/plasmoidviewer.mo +share/locale/he/LC_MESSAGES/cuttlefish_editorplugin.mo +share/locale/he/LC_MESSAGES/iconexplorer.mo +share/locale/he/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo +share/locale/he/LC_MESSAGES/org.kde.plasma.themeexplorer.mo +share/locale/he/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo +share/locale/he/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/he/LC_MESSAGES/plasmoidviewer.mo +share/locale/hi/LC_MESSAGES/plasmaengineexplorer.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/plasmoidviewer.mo +share/locale/hsb/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/hsb/LC_MESSAGES/plasmoidviewer.mo +share/locale/hu/LC_MESSAGES/cuttlefish_editorplugin.mo +share/locale/hu/LC_MESSAGES/iconexplorer.mo +share/locale/hu/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo +share/locale/hu/LC_MESSAGES/org.kde.plasma.themeexplorer.mo +share/locale/hu/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo +share/locale/hu/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/hu/LC_MESSAGES/plasmoidviewer.mo +share/locale/ia/LC_MESSAGES/cuttlefish_editorplugin.mo +share/locale/ia/LC_MESSAGES/iconexplorer.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/plasmoidviewer.mo +share/locale/id/LC_MESSAGES/cuttlefish_editorplugin.mo +share/locale/id/LC_MESSAGES/iconexplorer.mo +share/locale/id/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo +share/locale/id/LC_MESSAGES/org.kde.plasma.themeexplorer.mo +share/locale/id/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo +share/locale/id/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/id/LC_MESSAGES/plasmoidviewer.mo +share/locale/is/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/is/LC_MESSAGES/plasmoidviewer.mo +share/locale/it/LC_MESSAGES/cuttlefish_editorplugin.mo +share/locale/it/LC_MESSAGES/iconexplorer.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/plasmoidviewer.mo +share/locale/ja/LC_MESSAGES/cuttlefish_editorplugin.mo +share/locale/ja/LC_MESSAGES/iconexplorer.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/plasmoidviewer.mo +share/locale/ka/LC_MESSAGES/cuttlefish_editorplugin.mo +share/locale/ka/LC_MESSAGES/iconexplorer.mo +share/locale/ka/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo +share/locale/ka/LC_MESSAGES/org.kde.plasma.themeexplorer.mo +share/locale/ka/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo +share/locale/ka/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/ka/LC_MESSAGES/plasmoidviewer.mo +share/locale/kk/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/kk/LC_MESSAGES/plasmoidviewer.mo +share/locale/km/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/km/LC_MESSAGES/plasmoidviewer.mo +share/locale/kn/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/ko/LC_MESSAGES/cuttlefish_editorplugin.mo +share/locale/ko/LC_MESSAGES/iconexplorer.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/plasmoidviewer.mo +share/locale/ku/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/ku/LC_MESSAGES/plasmoidviewer.mo +share/locale/lt/LC_MESSAGES/cuttlefish_editorplugin.mo +share/locale/lt/LC_MESSAGES/iconexplorer.mo +share/locale/lt/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.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/plasmoidviewer.mo +share/locale/lv/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/lv/LC_MESSAGES/plasmoidviewer.mo +share/locale/mai/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/mai/LC_MESSAGES/plasmoidviewer.mo +share/locale/mk/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/ml/LC_MESSAGES/cuttlefish_editorplugin.mo +share/locale/ml/LC_MESSAGES/iconexplorer.mo +share/locale/ml/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo +share/locale/ml/LC_MESSAGES/org.kde.plasma.themeexplorer.mo +share/locale/ml/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.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/plasmoidviewer.mo +share/locale/ms/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/ms/LC_MESSAGES/plasmoidviewer.mo +share/locale/nb/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/nb/LC_MESSAGES/plasmoidviewer.mo +share/locale/nds/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/nds/LC_MESSAGES/plasmoidviewer.mo +share/locale/ne/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/nl/LC_MESSAGES/cuttlefish_editorplugin.mo +share/locale/nl/LC_MESSAGES/iconexplorer.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/plasmoidviewer.mo +share/locale/nn/LC_MESSAGES/cuttlefish_editorplugin.mo +share/locale/nn/LC_MESSAGES/iconexplorer.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/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/plasmoidviewer.mo +share/locale/pl/LC_MESSAGES/cuttlefish_editorplugin.mo +share/locale/pl/LC_MESSAGES/iconexplorer.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/plasmoidviewer.mo +share/locale/pt/LC_MESSAGES/cuttlefish_editorplugin.mo +share/locale/pt/LC_MESSAGES/iconexplorer.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/plasmoidviewer.mo +share/locale/pt_BR/LC_MESSAGES/cuttlefish_editorplugin.mo +share/locale/pt_BR/LC_MESSAGES/iconexplorer.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/plasmoidviewer.mo +share/locale/ro/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/ro/LC_MESSAGES/plasmoidviewer.mo +share/locale/ru/LC_MESSAGES/cuttlefish_editorplugin.mo +share/locale/ru/LC_MESSAGES/iconexplorer.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/plasmoidviewer.mo +share/locale/se/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/si/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/si/LC_MESSAGES/plasmoidviewer.mo +share/locale/sk/LC_MESSAGES/cuttlefish_editorplugin.mo +share/locale/sk/LC_MESSAGES/iconexplorer.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/plasmoidviewer.mo +share/locale/sl/LC_MESSAGES/cuttlefish_editorplugin.mo +share/locale/sl/LC_MESSAGES/iconexplorer.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/plasmoidviewer.mo +share/locale/sq/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/sq/LC_MESSAGES/plasmoidviewer.mo +share/locale/sr/LC_MESSAGES/cuttlefish_editorplugin.mo +share/locale/sr/LC_MESSAGES/iconexplorer.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/plasmoidviewer.mo +share/locale/sr@ijekavian/LC_MESSAGES/cuttlefish_editorplugin.mo +share/locale/sr@ijekavian/LC_MESSAGES/iconexplorer.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/plasmoidviewer.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/cuttlefish_editorplugin.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/iconexplorer.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/plasmoidviewer.mo +share/locale/sr@latin/LC_MESSAGES/cuttlefish_editorplugin.mo +share/locale/sr@latin/LC_MESSAGES/iconexplorer.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/plasmoidviewer.mo +share/locale/sv/LC_MESSAGES/cuttlefish_editorplugin.mo +share/locale/sv/LC_MESSAGES/iconexplorer.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/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/cuttlefish_editorplugin.mo +share/locale/tg/LC_MESSAGES/iconexplorer.mo +share/locale/tg/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.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/plasmoidviewer.mo +share/locale/tr/LC_MESSAGES/cuttlefish_editorplugin.mo +share/locale/tr/LC_MESSAGES/iconexplorer.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/plasmoidviewer.mo +share/locale/ug/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/ug/LC_MESSAGES/plasmoidviewer.mo +share/locale/uk/LC_MESSAGES/cuttlefish_editorplugin.mo +share/locale/uk/LC_MESSAGES/iconexplorer.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/plasmoidviewer.mo +share/locale/wa/LC_MESSAGES/plasmaengineexplorer.mo +share/locale/wa/LC_MESSAGES/plasmoidviewer.mo +share/locale/zh_CN/LC_MESSAGES/cuttlefish_editorplugin.mo +share/locale/zh_CN/LC_MESSAGES/iconexplorer.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/plasmoidviewer.mo +share/locale/zh_TW/LC_MESSAGES/cuttlefish_editorplugin.mo +share/locale/zh_TW/LC_MESSAGES/iconexplorer.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/plasmoidviewer.mo +share/metainfo/org.kde.plasma.iconexplorer.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/metainfo/org.kde.plasmaengineexplorer.appdata.xml +share/metainfo/org.kde.plasmoidviewer.appdata.xml +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/AboutPlugin.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/ConfigurationAppletPage.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/Desktop.qml +share/plasma/shells/org.kde.plasma.plasmoidviewershell/contents/views/FloatingToolBar.qml +share/plasma/shells/org.kde.plasma.plasmoidviewershell/contents/views/SdkButtons.qml +share/plasma/shells/org.kde.plasma.plasmoidviewershell/metadata.json +share/zsh/site-functions/_kqml +share/zsh/site-functions/_plasmoidviewer diff --git a/devel/plasma6-plasma5support/Makefile b/devel/plasma6-plasma5support/Makefile new file mode 100644 index 000000000000..663e675caa8c --- /dev/null +++ b/devel/plasma6-plasma5support/Makefile @@ -0,0 +1,15 @@ +PORTNAME= plasma5support +DISTVERSION= ${KDE_PLASMA_VERSION} +CATEGORIES= devel kde kde-plasma + +MAINTAINER= kde@FreeBSD.org +COMMENT= Support components for porting from KF5/Qt5 to KF6/Qt6 + +USES= cmake gettext gl kde:6 qt:6 tar:xz +USE_GL= gl opengl +USE_KDE= colorscheme completion config configwidgets coreaddons i18n \ + jobwidgets kio package service solid widgetsaddons xmlgui \ + ecm:build +USE_QT= base declarative + +.include diff --git a/devel/plasma6-plasma5support/distinfo b/devel/plasma6-plasma5support/distinfo new file mode 100644 index 000000000000..73e872c8453f --- /dev/null +++ b/devel/plasma6-plasma5support/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1701525050 +SHA256 (KDE/plasma/5.90.0/plasma5support-5.90.0.tar.xz) = c910d9addd62c4c1ffefb7ab5476418ae8b179e42c4b259a4fe3e80da95b8bfb +SIZE (KDE/plasma/5.90.0/plasma5support-5.90.0.tar.xz) = 55224 diff --git a/devel/plasma6-plasma5support/pkg-plist b/devel/plasma6-plasma5support/pkg-plist new file mode 100644 index 000000000000..69cf101d3e43 --- /dev/null +++ b/devel/plasma6-plasma5support/pkg-plist @@ -0,0 +1,68 @@ +include/KF6/Plasma5Support/DataContainer +include/KF6/Plasma5Support/DataEngine +include/KF6/Plasma5Support/DataEngineConsumer +include/KF6/Plasma5Support/Plasma5Support +include/KF6/Plasma5Support/PluginLoader +include/KF6/Plasma5Support/Service +include/KF6/Plasma5Support/ServiceJob +include/KF6/plasma5support/datacontainer.h +include/KF6/plasma5support/dataengine.h +include/KF6/plasma5support/dataengineconsumer.h +include/KF6/plasma5support/plasma5support.h +include/KF6/plasma5support/plasma5support_export.h +include/KF6/plasma5support/pluginloader.h +include/KF6/plasma5support/service.h +include/KF6/plasma5support/servicejob.h +include/KF6/plasma5support/version.h +include/KF6/plasma5support_version.h +lib/cmake/KF6Plasma5Support/KF6Plasma5SupportConfig.cmake +lib/cmake/KF6Plasma5Support/KF6Plasma5SupportConfigVersion.cmake +lib/cmake/KF6Plasma5Support/KF6Plasma5SupportMacros.cmake +lib/cmake/KF6Plasma5Support/KF6Plasma5SupportTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/KF6Plasma5Support/KF6Plasma5SupportTargets.cmake +lib/libKF6Plasma5Support.so +lib/libKF6Plasma5Support.so.%%KDE_PLASMA_VERSION%% +lib/libKF6Plasma5Support.so.6 +%%QT_QMLDIR%%/org/kde/plasma/plasma5support/kde-qmlmodule.version +%%QT_QMLDIR%%/org/kde/plasma/plasma5support/libplasma5supportplugin.so +%%QT_QMLDIR%%/org/kde/plasma/plasma5support/plasma5supportplugin.qmltypes +%%QT_QMLDIR%%/org/kde/plasma/plasma5support/qmldir +share/locale/ar/LC_MESSAGES/libplasma5support.mo +share/locale/ast/LC_MESSAGES/libplasma5support.mo +share/locale/bg/LC_MESSAGES/libplasma5support.mo +share/locale/ca/LC_MESSAGES/libplasma5support.mo +share/locale/ca@valencia/LC_MESSAGES/libplasma5support.mo +share/locale/cs/LC_MESSAGES/libplasma5support.mo +share/locale/de/LC_MESSAGES/libplasma5support.mo +share/locale/en_GB/LC_MESSAGES/libplasma5support.mo +share/locale/eo/LC_MESSAGES/libplasma5support.mo +share/locale/es/LC_MESSAGES/libplasma5support.mo +share/locale/eu/LC_MESSAGES/libplasma5support.mo +share/locale/fa/LC_MESSAGES/libplasma5support.mo +share/locale/fi/LC_MESSAGES/libplasma5support.mo +share/locale/fr/LC_MESSAGES/libplasma5support.mo +share/locale/gl/LC_MESSAGES/libplasma5support.mo +share/locale/ia/LC_MESSAGES/libplasma5support.mo +share/locale/id/LC_MESSAGES/libplasma5support.mo +share/locale/it/LC_MESSAGES/libplasma5support.mo +share/locale/ja/LC_MESSAGES/libplasma5support.mo +share/locale/ka/LC_MESSAGES/libplasma5support.mo +share/locale/ko/LC_MESSAGES/libplasma5support.mo +share/locale/nl/LC_MESSAGES/libplasma5support.mo +share/locale/nn/LC_MESSAGES/libplasma5support.mo +share/locale/pa/LC_MESSAGES/libplasma5support.mo +share/locale/pl/LC_MESSAGES/libplasma5support.mo +share/locale/pt_BR/LC_MESSAGES/libplasma5support.mo +share/locale/sa/LC_MESSAGES/libplasma5support.mo +share/locale/sk/LC_MESSAGES/libplasma5support.mo +share/locale/sl/LC_MESSAGES/libplasma5support.mo +share/locale/ta/LC_MESSAGES/libplasma5support.mo +share/locale/tr/LC_MESSAGES/libplasma5support.mo +share/locale/uk/LC_MESSAGES/libplasma5support.mo +share/locale/zh_CN/LC_MESSAGES/libplasma5support.mo +share/locale/zh_TW/LC_MESSAGES/libplasma5support.mo +%%DATADIR%%/services/dataengineservice.operations +%%DATADIR%%/services/plasmoidservice.operations +%%DATADIR%%/services/storage.operations +share/qlogging-categories6/plasma5support.categories +share/qlogging-categories6/plasma5support.renamecategories diff --git a/graphics/Makefile b/graphics/Makefile index a3af13184f23..4b7745f11b15 100644 --- a/graphics/Makefile +++ b/graphics/Makefile @@ -1,1240 +1,1241 @@ COMMENT = Graphics tools and libraries SUBDIR += 3d-ascii-viewer SUBDIR += 4va SUBDIR += Coin SUBDIR += GraphicsMagick SUBDIR += Hermes SUBDIR += ImageMagick6 SUBDIR += ImageMagick7 SUBDIR += O2-tools SUBDIR += R-cran-DiagrammeR SUBDIR += R-cran-GDD SUBDIR += R-cran-RColorBrewer SUBDIR += R-cran-colorspace SUBDIR += R-cran-diagram SUBDIR += R-cran-dichromat SUBDIR += R-cran-dygraphs SUBDIR += R-cran-farver SUBDIR += R-cran-ggplot2 SUBDIR += R-cran-ggrepel SUBDIR += R-cran-gridBase SUBDIR += R-cran-gridExtra SUBDIR += R-cran-jpeg SUBDIR += R-cran-latticeExtra SUBDIR += R-cran-magick SUBDIR += R-cran-munsell SUBDIR += R-cran-pROC SUBDIR += R-cran-pixmap SUBDIR += R-cran-png SUBDIR += R-cran-qcc SUBDIR += R-cran-rgdal SUBDIR += R-cran-s2 SUBDIR += R-cran-scales SUBDIR += R-cran-shape SUBDIR += R-cran-viridis SUBDIR += R-cran-viridisLite SUBDIR += R-cran-visNetwork SUBDIR += SciPlot SUBDIR += a2png SUBDIR += aalib SUBDIR += aaphoto SUBDIR += acidwarp SUBDIR += acidwarp-sdl SUBDIR += aeskulap SUBDIR += agg SUBDIR += airsaned SUBDIR += akira SUBDIR += alembic SUBDIR += alizams SUBDIR += aloadimage SUBDIR += alpng SUBDIR += ampasACES-container SUBDIR += ampasCTL SUBDIR += animorph SUBDIR += ansilove SUBDIR += anttweakbar SUBDIR += aoi SUBDIR += apngasm SUBDIR += apngdis SUBDIR += appleseed SUBDIR += argyllcms SUBDIR += art SUBDIR += asciinema-agg SUBDIR += asciio SUBDIR += aseprite SUBDIR += atril SUBDIR += atril-lite SUBDIR += autopano-sift-c SUBDIR += autotrace SUBDIR += aview SUBDIR += avir SUBDIR += azpainter SUBDIR += azpainterb SUBDIR += barcode SUBDIR += batik SUBDIR += bgfx SUBDIR += birdfont SUBDIR += bitmap SUBDIR += blend2d SUBDIR += blender SUBDIR += blender-doc SUBDIR += bmeps SUBDIR += bmp2html SUBDIR += bonzomatic SUBDIR += box SUBDIR += brunsli SUBDIR += bsd-plotutils SUBDIR += c-a-i-r SUBDIR += cadubi SUBDIR += cairo SUBDIR += cairomm SUBDIR += cal3d SUBDIR += camerakit SUBDIR += catimg SUBDIR += cbonsai SUBDIR += cbviewer SUBDIR += cegui SUBDIR += cenon SUBDIR += cfdg SUBDIR += cgif SUBDIR += chafa SUBDIR += charls SUBDIR += cimg SUBDIR += cloudcompare SUBDIR += clutter SUBDIR += clutter-gtk3 SUBDIR += cluttermm SUBDIR += cogl SUBDIR += colmap SUBDIR += colord SUBDIR += colord-gtk SUBDIR += compupic SUBDIR += converseen SUBDIR += corrupter SUBDIR += cosmoplayer SUBDIR += cptutils SUBDIR += crw SUBDIR += curator SUBDIR += curtail SUBDIR += cuttlefish SUBDIR += cxxplot SUBDIR += darktable SUBDIR += dataplot SUBDIR += dbow2 SUBDIR += dc20pack SUBDIR += dcmtk SUBDIR += dcp2icc SUBDIR += dcraw SUBDIR += dcraw-m SUBDIR += delaboratory SUBDIR += derelict-gl3 SUBDIR += devil SUBDIR += dia SUBDIR += diff-pdf SUBDIR += diffpdf SUBDIR += dify SUBDIR += digikam SUBDIR += dilay SUBDIR += diplib SUBDIR += ditaa SUBDIR += djview4 SUBDIR += djvulibre SUBDIR += dmtx-utils SUBDIR += drawing SUBDIR += drawio SUBDIR += drawpile SUBDIR += drm-510-kmod SUBDIR += drm-515-kmod SUBDIR += drm-fbsd12.0-kmod SUBDIR += drm-kmod SUBDIR += drm_info SUBDIR += dspdfviewer SUBDIR += dssim SUBDIR += duhdraw SUBDIR += dust3d SUBDIR += dynamechs SUBDIR += ebsynth SUBDIR += edje_viewer SUBDIR += egl-wayland SUBDIR += eglexternalplatform SUBDIR += elastix SUBDIR += electricsheep SUBDIR += elementary-photos SUBDIR += embree SUBDIR += enblend SUBDIR += engauge-digitizer SUBDIR += entangle SUBDIR += eog SUBDIR += eog-plugins SUBDIR += eom SUBDIR += eos-movrec SUBDIR += epdfview SUBDIR += ephoto SUBDIR += epix SUBDIR += eps2png SUBDIR += epsonscan2 SUBDIR += epsonscan2-non-free-plugin SUBDIR += epstool SUBDIR += eterm-bg SUBDIR += evince SUBDIR += evolvotron SUBDIR += exif SUBDIR += exifprobe SUBDIR += exiftags SUBDIR += exiftran SUBDIR += exiv2 SUBDIR += exrtools SUBDIR += f3d SUBDIR += facedetect SUBDIR += farbfeld SUBDIR += feh SUBDIR += fig2sxd SUBDIR += figurine SUBDIR += filament SUBDIR += filmulator SUBDIR += flam3 SUBDIR += flasm SUBDIR += flif SUBDIR += flphoto SUBDIR += fly SUBDIR += fortytwo SUBDIR += fotoxx SUBDIR += founts SUBDIR += fracplanet SUBDIR += fractgen SUBDIR += fraqtive SUBDIR += freeglut SUBDIR += freeimage SUBDIR += freetype-gl SUBDIR += frei0r SUBDIR += frei0r-plugins SUBDIR += frei0r-plugins-cairo SUBDIR += frei0r-plugins-gavl SUBDIR += frei0r-plugins-opencv SUBDIR += frogr SUBDIR += ftgl SUBDIR += fusefs-gphotofs SUBDIR += fv SUBDIR += fyre SUBDIR += g2 SUBDIR += gauche-gl SUBDIR += gcolor2 SUBDIR += gcolor3 SUBDIR += gd SUBDIR += gdal SUBDIR += gdal-grass SUBDIR += gdchart SUBDIR += gdk-pixbuf2 SUBDIR += gdk-pixbuf2-xlib SUBDIR += gdtclft SUBDIR += geeqie SUBDIR += gegl SUBDIR += geoapi SUBDIR += geomorph SUBDIR += geomview SUBDIR += geos SUBDIR += geoserver SUBDIR += gexiv2 SUBDIR += giflib SUBDIR += gifmerge SUBDIR += gifsicle SUBDIR += gifski SUBDIR += giftool SUBDIR += gimageview SUBDIR += gimmage SUBDIR += gimp SUBDIR += gimp-app SUBDIR += gimp-beautify-plugin SUBDIR += gimp-data-extras SUBDIR += gimp-jxl-plugin SUBDIR += gimp-lensfun-plugin SUBDIR += gimp-lqr-plugin SUBDIR += gimp-refocus-plugin SUBDIR += gimp-resynthesizer SUBDIR += gkrellkam2 SUBDIR += glad SUBDIR += glaxnimate SUBDIR += glbinding SUBDIR += gle SUBDIR += glee SUBDIR += glew SUBDIR += glew-wayland SUBDIR += glexcess SUBDIR += glfw SUBDIR += glfw2 SUBDIR += gliv SUBDIR += glosm SUBDIR += glpng SUBDIR += glslang SUBDIR += glvis SUBDIR += glx-utils SUBDIR += gmic SUBDIR += gmic-qt SUBDIR += gmt SUBDIR += gmt-dcw SUBDIR += gmt-gshhg SUBDIR += gnash SUBDIR += gnome-color-manager SUBDIR += gnome-video-effects SUBDIR += gocr SUBDIR += goocanvas2 SUBDIR += goocanvas3 SUBDIR += goocanvasmm2 SUBDIR += goom SUBDIR += gource SUBDIR += goxel SUBDIR += gpaint SUBDIR += gphoto2 SUBDIR += gpicview SUBDIR += gpsmanshp SUBDIR += gpu-firmware-amd-kmod SUBDIR += gpu-firmware-intel-kmod SUBDIR += gpu-firmware-kmod SUBDIR += gpu-firmware-radeon-kmod SUBDIR += gpxsee SUBDIR += gracula SUBDIR += grads SUBDIR += grafx2 SUBDIR += graphene SUBDIR += graphite2 SUBDIR += graphos SUBDIR += graphviz SUBDIR += grx SUBDIR += gscan2pdf SUBDIR += gstreamer1-plugins-aalib SUBDIR += gstreamer1-plugins-cairo SUBDIR += gstreamer1-plugins-gdkpixbuf SUBDIR += gstreamer1-plugins-gl SUBDIR += gstreamer1-plugins-jpeg SUBDIR += gstreamer1-plugins-kms SUBDIR += gstreamer1-plugins-libcaca SUBDIR += gstreamer1-plugins-libvisual SUBDIR += gstreamer1-plugins-opencv SUBDIR += gstreamer1-plugins-openexr SUBDIR += gstreamer1-plugins-openjpeg SUBDIR += gstreamer1-plugins-png SUBDIR += gstreamer1-plugins-qt SUBDIR += gstreamer1-plugins-rsvg SUBDIR += gstreamer1-plugins-vulkan SUBDIR += gstreamer1-plugins-webp SUBDIR += gstreamer1-plugins-zbar SUBDIR += gthumb SUBDIR += gtimelapse SUBDIR += gtk-update-icon-cache SUBDIR += gtkam SUBDIR += gts SUBDIR += guetzli SUBDIR += guile-cairo SUBDIR += guilib SUBDIR += gwenview SUBDIR += h3 SUBDIR += halftone SUBDIR += hdr_tools SUBDIR += heimer SUBDIR += hiptext SUBDIR += hobbes-icons-xpm SUBDIR += hppsmtools SUBDIR += hugin SUBDIR += icat SUBDIR += icc-profiles-adobe-cs4 SUBDIR += icc-profiles-basiccolor SUBDIR += icc-profiles-openicc SUBDIR += iccxml SUBDIR += icon-slicer SUBDIR += icontact SUBDIR += icoutils SUBDIR += ida SUBDIR += iec16022 SUBDIR += igt-gpu-tools SUBDIR += iiview SUBDIR += imageindex SUBDIR += imageviewer SUBDIR += imageworsener SUBDIR += imc SUBDIR += imlib2 SUBDIR += imlib2-jxl SUBDIR += imlib2-webp SUBDIR += imlib2_loaders SUBDIR += impressive SUBDIR += imv SUBDIR += inkscape SUBDIR += inkscape-open-symbols SUBDIR += instant-meshes SUBDIR += intel-backlight SUBDIR += intergif SUBDIR += ipe SUBDIR += jalbum SUBDIR += jasper SUBDIR += jave6 SUBDIR += jbig2dec SUBDIR += jbigkit SUBDIR += jdraw SUBDIR += jgraph SUBDIR += jhead SUBDIR += jogamp-jogl SUBDIR += jogl SUBDIR += jp SUBDIR += jp2a SUBDIR += jpatch SUBDIR += jpeg-turbo SUBDIR += jpeginfo SUBDIR += jpegoptim SUBDIR += jpgtn SUBDIR += jslice SUBDIR += kamera SUBDIR += kamerka SUBDIR += katarakt SUBDIR += kcolorchooser SUBDIR += kcolorpicker SUBDIR += kdegraphics SUBDIR += kdegraphics-mobipocket SUBDIR += kdegraphics-svgpart SUBDIR += kdegraphics-thumbnailers SUBDIR += kdiagram SUBDIR += kf5-kimageformats SUBDIR += kf5-kplotting SUBDIR += kf5-kquickcharts SUBDIR += kf5-prison SUBDIR += kf6-kimageformats SUBDIR += kf6-kplotting SUBDIR += kf6-kquickcharts SUBDIR += kf6-ksvg SUBDIR += kf6-prison SUBDIR += kgeotag SUBDIR += kgraphviewer SUBDIR += kimageannotator SUBDIR += kimagemapeditor SUBDIR += kipi-plugins SUBDIR += klatexformula SUBDIR += kludge3d SUBDIR += kmscube SUBDIR += knotter SUBDIR += kolourpaint SUBDIR += kontrast SUBDIR += kooka SUBDIR += kphotoalbum SUBDIR += kplot SUBDIR += kqtquickcharts SUBDIR += kquickimageeditor SUBDIR += krita SUBDIR += krita-gmic-plugin SUBDIR += ksanecore SUBDIR += kseexpr SUBDIR += ksnip SUBDIR += kxstitch SUBDIR += l2p SUBDIR += largetifftools SUBDIR += laternamagica SUBDIR += lazpaint SUBDIR += lcdtest SUBDIR += lcms SUBDIR += lcms2 SUBDIR += leafpak SUBDIR += lensfun SUBDIR += lepton SUBDIR += leptonica SUBDIR += lerc SUBDIR += lfview SUBDIR += lib3ds SUBDIR += libGLU SUBDIR += libQGLViewer SUBDIR += libafterimage SUBDIR += libansilove SUBDIR += libart_lgpl SUBDIR += libavif SUBDIR += libboard SUBDIR += libbpg SUBDIR += libcaca SUBDIR += libcdr01 SUBDIR += libchamplain SUBDIR += libdmtx SUBDIR += libdrm SUBDIR += libecwj2 SUBDIR += libemf SUBDIR += libepoxy SUBDIR += libetonyek01 SUBDIR += libexif SUBDIR += libexif-gtk SUBDIR += libfpx SUBDIR += libfreehand SUBDIR += libgeotiff SUBDIR += libgfx SUBDIR += libgltext SUBDIR += libgltf SUBDIR += libglvnd SUBDIR += libgnomecanvas SUBDIR += libgnomecanvasmm26 SUBDIR += libgphoto2 SUBDIR += libgxps SUBDIR += libheif SUBDIR += libimagequant SUBDIR += libimg SUBDIR += libiptcdata SUBDIR += libjpeg-turbo SUBDIR += libjxl SUBDIR += libjxr SUBDIR += libkdcraw SUBDIR += libkexiv2 + SUBDIR += libkexiv2-devel SUBDIR += libkipi SUBDIR += libksane SUBDIR += libliftoff SUBDIR += liblqr-1 SUBDIR += liblug SUBDIR += libmng SUBDIR += libmorph SUBDIR += libmypaint SUBDIR += libnsbmp SUBDIR += libnsgif SUBDIR += libopenraw SUBDIR += libosmesa SUBDIR += libpano13 SUBDIR += libpcd SUBDIR += libpgf SUBDIR += libpillowfight SUBDIR += libplacebo SUBDIR += libpotrace SUBDIR += libprojectm SUBDIR += libpuzzle SUBDIR += libqrencode SUBDIR += librasterlite2 SUBDIR += libraw SUBDIR += librsvg2 SUBDIR += librsvg2-rust SUBDIR += librtprocess SUBDIR += libsixel SUBDIR += libspiro SUBDIR += libspng SUBDIR += libsvg SUBDIR += libsvg-cairo SUBDIR += libsvgtiny SUBDIR += libvisual SUBDIR += libvisual04 SUBDIR += libvisual04-plugins SUBDIR += libwmf SUBDIR += libwmf-nox11 SUBDIR += libwpg03 SUBDIR += libxisf SUBDIR += libyuv SUBDIR += libzmf SUBDIR += lightzone SUBDIR += linplasma SUBDIR += linux-c7-cairo SUBDIR += linux-c7-cairo-gobject SUBDIR += linux-c7-dri SUBDIR += linux-c7-gdk-pixbuf2 SUBDIR += linux-c7-glx-utils SUBDIR += linux-c7-graphite2 SUBDIR += linux-c7-jasper SUBDIR += linux-c7-jbigkit SUBDIR += linux-c7-jpeg SUBDIR += linux-c7-libdrm SUBDIR += linux-c7-libepoxy SUBDIR += linux-c7-libglvnd SUBDIR += linux-c7-librsvg2 SUBDIR += linux-c7-png SUBDIR += linux-c7-sdl_image SUBDIR += linux-c7-sdl_ttf SUBDIR += linux-c7-tiff SUBDIR += linux-c7-wayland SUBDIR += lua-gd SUBDIR += luminance-qt5 SUBDIR += lux SUBDIR += lximage-qt SUBDIR += magnum SUBDIR += magnum-plugins SUBDIR += mahotas SUBDIR += maim SUBDIR += mandelbulber SUBDIR += mapcache SUBDIR += mapnik SUBDIR += mapserver SUBDIR += mapyrus SUBDIR += matplotlib-cpp SUBDIR += matplotplusplus SUBDIR += meh SUBDIR += mesa-demos SUBDIR += mesa-devel SUBDIR += mesa-dri SUBDIR += mesa-gallium-va SUBDIR += mesa-gallium-vdpau SUBDIR += mesa-gallium-xa SUBDIR += mesa-libs SUBDIR += metacam SUBDIR += metapixel SUBDIR += milton SUBDIR += minder SUBDIR += ming SUBDIR += mirtk SUBDIR += movit SUBDIR += mozjpeg SUBDIR += mscgen SUBDIR += msl SUBDIR += mtpaint SUBDIR += multican SUBDIR += mupdf SUBDIR += mxp SUBDIR += mypaint SUBDIR += mypaint-brushes SUBDIR += mypaint-brushes2 SUBDIR += nanort SUBDIR += nanosvg SUBDIR += netpbm SUBDIR += nip2 SUBDIR += nomacs SUBDIR += nplot SUBDIR += npretty SUBDIR += nsxiv SUBDIR += nurbs++ SUBDIR += nvidia-drm-510-kmod SUBDIR += nvidia-drm-515-kmod SUBDIR += nvidia-drm-kmod SUBDIR += nvidia-texture-tools SUBDIR += ocaml-cairo SUBDIR += ocaml-images SUBDIR += ocaml-lablgl SUBDIR += ocrad SUBDIR += ogre3d SUBDIR += ogre3d19 SUBDIR += oidn SUBDIR += okular SUBDIR += open3d SUBDIR += opencollada SUBDIR += opencolorio SUBDIR += opencolorio-tools SUBDIR += opencoloriov1 SUBDIR += opencsg SUBDIR += opencv SUBDIR += opendx SUBDIR += openexr SUBDIR += openexr-website-docs SUBDIR += openfx-arena SUBDIR += openfx-misc SUBDIR += opengl-man SUBDIR += opengv SUBDIR += openicc-config SUBDIR += openimageio SUBDIR += openjpeg SUBDIR += openjpeg15 SUBDIR += openjph SUBDIR += openjump SUBDIR += openmvs SUBDIR += opennurbs SUBDIR += openorienteering-mapper SUBDIR += openpgl SUBDIR += openrm SUBDIR += openshadinglanguage SUBDIR += openslide SUBDIR += opensubdiv SUBDIR += openvkl SUBDIR += optar SUBDIR += optipng SUBDIR += osg SUBDIR += osg34 SUBDIR += osgearth SUBDIR += ospray SUBDIR += ospray-studio SUBDIR += ossim SUBDIR += oxipng SUBDIR += oyranos SUBDIR += p5-Acme-Steganography-Image-Png SUBDIR += p5-Algorithm-Line-Bresenham SUBDIR += p5-Alien-Gimp SUBDIR += p5-Barcode-ZBar SUBDIR += p5-CAD-Drawing SUBDIR += p5-CAD-Drawing-Template SUBDIR += p5-Cairo SUBDIR += p5-Captcha-reCAPTCHA SUBDIR += p5-Captcha-reCAPTCHA-Mailhide SUBDIR += p5-Chart SUBDIR += p5-Chart-Clicker SUBDIR += p5-Chart-Gnuplot SUBDIR += p5-Chart-Graph SUBDIR += p5-Chart-PNGgraph SUBDIR += p5-Color-Calc SUBDIR += p5-Color-Library SUBDIR += p5-Color-Palette SUBDIR += p5-Color-Rgb SUBDIR += p5-Color-Scheme SUBDIR += p5-Convert-Color SUBDIR += p5-Convert-Color-XTerm SUBDIR += p5-Data-Google-Visualization-DataSource SUBDIR += p5-Data-Google-Visualization-DataTable SUBDIR += p5-GD SUBDIR += p5-GD-Arrow SUBDIR += p5-GD-Barcode SUBDIR += p5-GD-Graph SUBDIR += p5-GD-Graph-histogram SUBDIR += p5-GD-Graph-ohlc SUBDIR += p5-GD-Graph3d SUBDIR += p5-GD-SVG SUBDIR += p5-GD-TextUtil SUBDIR += p5-GD-Thumbnail SUBDIR += p5-Geo-EOP SUBDIR += p5-Geo-GDAL-FFI SUBDIR += p5-Geo-GML SUBDIR += p5-Geo-Gpx SUBDIR += p5-Geometry-Primitive SUBDIR += p5-Gimp SUBDIR += p5-Google-Chart SUBDIR += p5-Graph-Easy SUBDIR += p5-Graph-ReadWrite SUBDIR += p5-Graph-SocialMap SUBDIR += p5-Graph-Writer-GraphViz SUBDIR += p5-GraphViz SUBDIR += p5-GraphViz-Data-Structure SUBDIR += p5-GraphViz-Traverse SUBDIR += p5-GraphViz2 SUBDIR += p5-GraphViz2-DBI SUBDIR += p5-GraphViz2-Data-Grapher SUBDIR += p5-GraphViz2-Parse-ISA SUBDIR += p5-GraphViz2-Parse-RecDescent SUBDIR += p5-GraphViz2-Parse-XML SUBDIR += p5-Graphics-Color SUBDIR += p5-Graphics-ColorNames SUBDIR += p5-Graphics-ColorNames-WWW SUBDIR += p5-Graphics-ColorUtils SUBDIR += p5-Graphics-GnuplotIF SUBDIR += p5-Graphics-Primitive SUBDIR += p5-Graphics-Primitive-Driver-Cairo SUBDIR += p5-Graphics-TIFF SUBDIR += p5-Image-Base SUBDIR += p5-Image-Base-SVG SUBDIR += p5-Image-Caa SUBDIR += p5-Image-Compare SUBDIR += p5-Image-ExifTool SUBDIR += p5-Image-ExifTool-devel SUBDIR += p5-Image-Grab SUBDIR += p5-Image-Heatmap SUBDIR += p5-Image-IPTCInfo SUBDIR += p5-Image-Imgur SUBDIR += p5-Image-Imlib2 SUBDIR += p5-Image-Info SUBDIR += p5-Image-LibExif SUBDIR += p5-Image-Magick-Iterator SUBDIR += p5-Image-Math-Constrain SUBDIR += p5-Image-MetaData-GQview SUBDIR += p5-Image-MetaData-JPEG SUBDIR += p5-Image-OCR-Tesseract SUBDIR += p5-Image-PBMlib SUBDIR += p5-Image-PNG-Libpng SUBDIR += p5-Image-PNG-QRCode SUBDIR += p5-Image-Pngslimmer SUBDIR += p5-Image-Sane SUBDIR += p5-Image-Scale SUBDIR += p5-Image-Size SUBDIR += p5-Imager SUBDIR += p5-Imager-Graph SUBDIR += p5-Imager-Plot SUBDIR += p5-Imager-QRCode SUBDIR += p5-Imlib2 SUBDIR += p5-Layout-Manager SUBDIR += p5-OpenGL SUBDIR += p5-PGPLOT SUBDIR += p5-SVG-DOM2 SUBDIR += p5-SVG-Graph SUBDIR += p5-SVG-Metadata SUBDIR += p5-SWF-Builder SUBDIR += p5-SWF-File SUBDIR += p5-Sane SUBDIR += p5-SpringGraph SUBDIR += p5-Tk-JPEG-Lite SUBDIR += p5-URI-GoogleChart SUBDIR += p5-VCG SUBDIR += p5-Visio SUBDIR += p5-feedgnuplot SUBDIR += p5-ming SUBDIR += panoglview SUBDIR += panomatic SUBDIR += partio SUBDIR += pastel SUBDIR += pcl-pointclouds SUBDIR += pdf2svg SUBDIR += pdfpc SUBDIR += pear-Horde_Image SUBDIR += pear-Image_3D SUBDIR += pear-Image_Barcode SUBDIR += pear-Image_Barcode2 SUBDIR += pear-Image_Canvas SUBDIR += pear-Image_Color SUBDIR += pear-Image_Graph SUBDIR += pear-Image_GraphViz SUBDIR += pear-Image_Transform SUBDIR += pecl-imagick SUBDIR += pecl-qrencode SUBDIR += pecl-vips SUBDIR += pencil2d SUBDIR += peps SUBDIR += perceptualdiff SUBDIR += peruse SUBDIR += pfstools SUBDIR += pgplot SUBDIR += pho SUBDIR += photivo SUBDIR += photoflare SUBDIR += photopc SUBDIR += photoqt SUBDIR += phototonic SUBDIR += php-facedetect SUBDIR += php-geos SUBDIR += php80-exif SUBDIR += php80-gd SUBDIR += php81-exif SUBDIR += php81-gd SUBDIR += php82-exif SUBDIR += php82-gd SUBDIR += php83-exif SUBDIR += php83-gd SUBDIR += phplot SUBDIR += picpuz SUBDIR += piddle SUBDIR += piglit SUBDIR += pikchr SUBDIR += pikopixel SUBDIR += pinpoint SUBDIR += pinta SUBDIR += pixd SUBDIR += pixelize SUBDIR += pixen SUBDIR += pixie SUBDIR += plasma-kmod SUBDIR += plotutils SUBDIR += png SUBDIR += png++ SUBDIR += png2html SUBDIR += png2ico SUBDIR += pngcheck SUBDIR += pngcrush SUBDIR += pnglite SUBDIR += pngnq SUBDIR += pngquant SUBDIR += pngrewrite SUBDIR += pngwriter SUBDIR += podofo SUBDIR += podofo09 SUBDIR += polyclipping SUBDIR += poppler SUBDIR += poppler-data SUBDIR += poppler-glib SUBDIR += poppler-qt5 SUBDIR += poppler-qt6 SUBDIR += poppler-utils SUBDIR += potrace SUBDIR += povray-meta SUBDIR += povray37 SUBDIR += povray38 SUBDIR += ppmcaption SUBDIR += ppminfo SUBDIR += ppsei SUBDIR += pqiv SUBDIR += preview SUBDIR += price SUBDIR += processing SUBDIR += proj SUBDIR += proj-data SUBDIR += pstoedit SUBDIR += ptex SUBDIR += py-ManimPango SUBDIR += py-OWSLib SUBDIR += py-PyOpenGL SUBDIR += py-PyOpenGL-accelerate SUBDIR += py-actdiag SUBDIR += py-altair SUBDIR += py-asciitree SUBDIR += py-beziers SUBDIR += py-blockdiag SUBDIR += py-blockdiagcontrib-cisco SUBDIR += py-box2d-py SUBDIR += py-cairo SUBDIR += py-cairocffi SUBDIR += py-cairosvg SUBDIR += py-cartopy SUBDIR += py-chart-studio SUBDIR += py-cogdumper SUBDIR += py-colorcet SUBDIR += py-colorthief SUBDIR += py-colorz SUBDIR += py-colour SUBDIR += py-descartes SUBDIR += py-django-easy-thumbnails SUBDIR += py-djvulibre SUBDIR += py-exifread SUBDIR += py-f3d SUBDIR += py-face_recognition SUBDIR += py-face_recognition_models SUBDIR += py-fiona SUBDIR += py-fotokilof SUBDIR += py-freeimagepy SUBDIR += py-fury SUBDIR += py-gdal SUBDIR += py-geomdl SUBDIR += py-geopandas SUBDIR += py-giddy SUBDIR += py-gizeh SUBDIR += py-glcontext SUBDIR += py-glfw SUBDIR += py-glooey SUBDIR += py-gphoto2 SUBDIR += py-gprof2dot SUBDIR += py-graphlib-backport SUBDIR += py-graphviz SUBDIR += py-graphy SUBDIR += py-gvgen SUBDIR += py-h3 SUBDIR += py-haishoku SUBDIR += py-hiplot SUBDIR += py-hsluv SUBDIR += py-imageio SUBDIR += py-imageio-ffmpeg SUBDIR += py-imagesize SUBDIR += py-img2pdf SUBDIR += py-imutils SUBDIR += py-leather SUBDIR += py-lerc SUBDIR += py-mapclassify SUBDIR += py-mayavi SUBDIR += py-mcomix SUBDIR += py-mgwr SUBDIR += py-ming SUBDIR += py-moderngl SUBDIR += py-moderngl-window SUBDIR += py-momepy SUBDIR += py-mpl-interactions SUBDIR += py-mpl-scatter-density SUBDIR += py-nwdiag SUBDIR += py-opencolorio SUBDIR += py-openimageio SUBDIR += py-openshadinglanguage SUBDIR += py-openslide-python SUBDIR += py-optimize-images SUBDIR += py-osmnet SUBDIR += py-pandana SUBDIR += py-photocollage SUBDIR += py-piexif SUBDIR += py-pillow SUBDIR += py-pillow-heif SUBDIR += py-pivy SUBDIR += py-plotly SUBDIR += py-png SUBDIR += py-pointpats SUBDIR += py-projpicker SUBDIR += py-pycha SUBDIR += py-pycollada SUBDIR += py-pydot SUBDIR += py-pydotplus SUBDIR += py-pyepsg SUBDIR += py-pygal SUBDIR += py-pyganim SUBDIR += py-pygeoapi SUBDIR += py-pygeos SUBDIR += py-pyglet SUBDIR += py-pyglet1 SUBDIR += py-pygltflib SUBDIR += py-pygraph SUBDIR += py-pygraphviz SUBDIR += py-pyinsane2 SUBDIR += py-pymaging SUBDIR += py-pymaging-png SUBDIR += py-pyocr SUBDIR += py-pypillowfight SUBDIR += py-pyproj SUBDIR += py-pyqrcode SUBDIR += py-pyqtgraph SUBDIR += py-pyrsgis SUBDIR += py-pytesseract SUBDIR += py-python-barcode SUBDIR += py-python-poppler-qt5 SUBDIR += py-pyvips SUBDIR += py-pyvista SUBDIR += py-pyx SUBDIR += py-qpageview SUBDIR += py-qrencode SUBDIR += py-qt6-3d SUBDIR += py-railroad-diagrams SUBDIR += py-rasterio SUBDIR += py-rasterstats SUBDIR += py-rawkit SUBDIR += py-s2 SUBDIR += py-scikit-image SUBDIR += py-seqdiag SUBDIR += py-sorl-thumbnail SUBDIR += py-spectra SUBDIR += py-sqlalchemy-imageattach SUBDIR += py-svg.path SUBDIR += py-svgwrite SUBDIR += py-termtosvg SUBDIR += py-tifffile SUBDIR += py-tkcolorpicker SUBDIR += py-toyplot SUBDIR += py-traitsui SUBDIR += py-ueberzug SUBDIR += py-urbanaccess SUBDIR += py-urbansim SUBDIR += py-utm SUBDIR += py-vecrec SUBDIR += py-visvis SUBDIR += py-wand SUBDIR += py-webcolors SUBDIR += py-willow SUBDIR += py-yaswfp SUBDIR += py-zbar-py SUBDIR += pywal SUBDIR += qcomicbook SUBDIR += qcustomplot-qt5 SUBDIR += qgis SUBDIR += qgis-ltr SUBDIR += qiv SUBDIR += qr-code-generator SUBDIR += qt5-3d SUBDIR += qt5-graphicaleffects SUBDIR += qt5-imageformats SUBDIR += qt5-opengl SUBDIR += qt5-pixeltool SUBDIR += qt5-svg SUBDIR += qt5-wayland SUBDIR += qt6-3d SUBDIR += qt6-imageformats SUBDIR += qt6-lottie SUBDIR += qt6-quickeffectmaker SUBDIR += qt6-svg SUBDIR += qt6-wayland SUBDIR += qtawesome SUBDIR += qtpbfimageplugin SUBDIR += qtqr SUBDIR += quat SUBDIR += quat-gui SUBDIR += quesa SUBDIR += quesoglc SUBDIR += quickqanava SUBDIR += qvge SUBDIR += qview SUBDIR += radius-engine SUBDIR += rapid-photo-downloader SUBDIR += raster3d SUBDIR += rawstudio SUBDIR += rawtherapee SUBDIR += rayshade SUBDIR += reactphysics3d SUBDIR += realesrgan-ncnn-vulkan SUBDIR += reallyslick SUBDIR += realsr-ncnn-vulkan SUBDIR += recastnavigation SUBDIR += recoverjpeg SUBDIR += renrot SUBDIR += repng2jpeg SUBDIR += resvg SUBDIR += resvg-capi SUBDIR += rgbpaint SUBDIR += rigsofrods-caelum SUBDIR += rigsofrods-pagedgeometry SUBDIR += ristretto SUBDIR += rlottie SUBDIR += ruby-gd SUBDIR += rubygem-blurhash SUBDIR += rubygem-cairo SUBDIR += rubygem-captcha SUBDIR += rubygem-chunky_png SUBDIR += rubygem-clutter SUBDIR += rubygem-clutter-gdk SUBDIR += rubygem-clutter-gtk SUBDIR += rubygem-dragonfly SUBDIR += rubygem-emoji SUBDIR += rubygem-exifr SUBDIR += rubygem-ezprint SUBDIR += rubygem-fastimage SUBDIR += rubygem-flamegraph SUBDIR += rubygem-gd2 SUBDIR += rubygem-gdk_pixbuf2 SUBDIR += rubygem-gemojione SUBDIR += rubygem-gemojione32 SUBDIR += rubygem-geokit SUBDIR += rubygem-gitlab_emoji SUBDIR += rubygem-gruff SUBDIR += rubygem-histogram SUBDIR += rubygem-image_processing SUBDIR += rubygem-image_science SUBDIR += rubygem-imagesize SUBDIR += rubygem-invisible_captcha SUBDIR += rubygem-mini_magick SUBDIR += rubygem-mini_magick410 SUBDIR += rubygem-opengl SUBDIR += rubygem-pdfkit SUBDIR += rubygem-png SUBDIR += rubygem-railroad SUBDIR += rubygem-red-colors SUBDIR += rubygem-rmagick SUBDIR += rubygem-rsvg2 SUBDIR += rubygem-ruby-graphviz SUBDIR += rubygem-ruby-vips SUBDIR += rubygem-scruffy SUBDIR += rubygem-tanuki_emoji SUBDIR += rx SUBDIR += s10sh SUBDIR += s2 SUBDIR += s2tc SUBDIR += sage SUBDIR += sam2p SUBDIR += sampleicc SUBDIR += sane-airscan SUBDIR += sane-backends SUBDIR += sane-epkowa SUBDIR += scale2x SUBDIR += scantailor SUBDIR += scr2png SUBDIR += scrot SUBDIR += scwm-icons SUBDIR += sdl2_gfx SUBDIR += sdl2_gpu SUBDIR += sdl2_image SUBDIR += sdl2_ttf SUBDIR += sdl_gfx SUBDIR += sdl_image SUBDIR += sdl_ttf SUBDIR += sdump SUBDIR += seejpeg SUBDIR += seexpr SUBDIR += sekrit-twc-zimg SUBDIR += seom SUBDIR += separate SUBDIR += seq2gif SUBDIR += shaderc SUBDIR += shared-color-profiles SUBDIR += sharpconstruct SUBDIR += shotwell SUBDIR += showimage SUBDIR += silgraphite SUBDIR += simage SUBDIR += simple-scan SUBDIR += simpleitk SUBDIR += simpleviewer SUBDIR += skanlite SUBDIR += skanpage SUBDIR += spectacle SUBDIR += spirv-tools SUBDIR += springgraph SUBDIR += squish SUBDIR += ssocr SUBDIR += sswf SUBDIR += stamp SUBDIR += svg2pdf SUBDIR += svg2png SUBDIR += svgalib SUBDIR += svgbob SUBDIR += swappy SUBDIR += swfmill SUBDIR += swftools SUBDIR += synaesthesia SUBDIR += synfig SUBDIR += synfigstudio SUBDIR += tachyon SUBDIR += telak SUBDIR += tesseract SUBDIR += tesseract-data SUBDIR += tgif SUBDIR += tif22pnm SUBDIR += tiff SUBDIR += tifmerge SUBDIR += tikzit SUBDIR += tiled SUBDIR += timeless SUBDIR += timg SUBDIR += tintfu SUBDIR += tinyows SUBDIR += tippecanoe SUBDIR += tkpng SUBDIR += togl SUBDIR += tslib SUBDIR += ttygif SUBDIR += ttyplot SUBDIR += tumble SUBDIR += tweeny SUBDIR += ufraw SUBDIR += unpaper SUBDIR += upscaler SUBDIR += urho3d SUBDIR += urt SUBDIR += vapoursynth-fmtconv SUBDIR += vapoursynth-waifu2x-ncnn-vulkan SUBDIR += vapoursynth-waifu2x-w2xc SUBDIR += variety SUBDIR += vcg SUBDIR += vhs SUBDIR += viewnior SUBDIR += vigra SUBDIR += vips SUBDIR += visprint SUBDIR += viu SUBDIR += vkd3d SUBDIR += volpack SUBDIR += vp SUBDIR += vpaint SUBDIR += vulkan-caps-viewer SUBDIR += vulkan-extension-layer SUBDIR += vulkan-headers SUBDIR += vulkan-loader SUBDIR += vulkan-tools SUBDIR += vulkan-validation-layers SUBDIR += vv SUBDIR += waffle SUBDIR += waifu2x-converter-cpp SUBDIR += waifu2x-ncnn-vulkan SUBDIR += wayland SUBDIR += wayland-protocols SUBDIR += wayland-utils SUBDIR += waylandpp SUBDIR += wdune SUBDIR += webp SUBDIR += webp-pixbuf-loader SUBDIR += wings SUBDIR += wmicons SUBDIR += wrapland SUBDIR += wxsvg SUBDIR += xaos SUBDIR += xbmbrowser SUBDIR += xcftools SUBDIR += xd3d SUBDIR += xdgagrab SUBDIR += xfig SUBDIR += xfpovray SUBDIR += xfractint SUBDIR += xglurbules SUBDIR += xgrasp SUBDIR += xli SUBDIR += xmedcon SUBDIR += xmlgraphics-commons SUBDIR += xmountains SUBDIR += xnview SUBDIR += xoris SUBDIR += xournal SUBDIR += xournalpp SUBDIR += xpaint SUBDIR += xpdf SUBDIR += xpdf3 SUBDIR += xpdf4 SUBDIR += xpeps SUBDIR += xpx SUBDIR += xsane SUBDIR += xsvg SUBDIR += xtexcad SUBDIR += xv SUBDIR += xv-m17n SUBDIR += xviewer SUBDIR += xwpick SUBDIR += xzgv SUBDIR += yacreader SUBDIR += yafaray SUBDIR += yed SUBDIR += yukon SUBDIR += zathura SUBDIR += zathura-cb SUBDIR += zathura-djvu SUBDIR += zathura-pdf-mupdf SUBDIR += zathura-pdf-poppler SUBDIR += zathura-ps SUBDIR += zbar SUBDIR += zgv SUBDIR += zimg SUBDIR += zint SUBDIR += zphoto .include diff --git a/graphics/libkexiv2-devel/Makefile b/graphics/libkexiv2-devel/Makefile new file mode 100644 index 000000000000..b9ae3b079537 --- /dev/null +++ b/graphics/libkexiv2-devel/Makefile @@ -0,0 +1,18 @@ +PORTNAME= libkexiv2 +DISTVERSION= ${KDE_APPLICATIONS_VERSION} +CATEGORIES= graphics kde kde-applications +PKGNAMESUFFIX= -devel + +MAINTAINER= kde@FreeBSD.org +COMMENT= Exiv2 library interface for KDE +WWW= https://www.digikam.org/ + +LIB_DEPENDS= libexiv2.so:graphics/exiv2 + +USES= cmake compiler:c++11-lang kde:6 pkgconfig qt:6 tar:xz +USE_KDE= ecm:build +USE_QT= 5compat base + +CMAKE_ARGS= -DQT_MAJOR_VERSION=6 + +.include diff --git a/graphics/libkexiv2-devel/distinfo b/graphics/libkexiv2-devel/distinfo new file mode 100644 index 000000000000..903405107943 --- /dev/null +++ b/graphics/libkexiv2-devel/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1701546630 +SHA256 (KDE/release-service/24.01.80/libkexiv2-24.01.80.tar.xz) = de4020225184ff1d3de36487ef5e957794c7a3dea90b45dba6f830b4896eb815 +SIZE (KDE/release-service/24.01.80/libkexiv2-24.01.80.tar.xz) = 60592 diff --git a/graphics/libkexiv2-devel/pkg-descr b/graphics/libkexiv2-devel/pkg-descr new file mode 100644 index 000000000000..145347efc29f --- /dev/null +++ b/graphics/libkexiv2-devel/pkg-descr @@ -0,0 +1,3 @@ +Libkexiv2 is a wrapper around Exiv2 library to manipulate pictures +metadata as EXIF/IPTC and XMP. This library is used by kipi-plugins, +digiKam and others kipi host programs. diff --git a/graphics/libkexiv2-devel/pkg-plist b/graphics/libkexiv2-devel/pkg-plist new file mode 100644 index 000000000000..ce7acb0b7b5d --- /dev/null +++ b/graphics/libkexiv2-devel/pkg-plist @@ -0,0 +1,18 @@ +include/KExiv2Qt6/KExiv2/KExiv2 +include/KExiv2Qt6/KExiv2/KExiv2Data +include/KExiv2Qt6/KExiv2/KExiv2Previews +include/KExiv2Qt6/KExiv2/RotationMatrix +include/KExiv2Qt6/kexiv2/kexiv2.h +include/KExiv2Qt6/kexiv2/kexiv2data.h +include/KExiv2Qt6/kexiv2/kexiv2previews.h +include/KExiv2Qt6/kexiv2/libkexiv2_export.h +include/KExiv2Qt6/kexiv2/rotationmatrix.h +include/KExiv2Qt6/libkexiv2_version.h +lib/cmake/KExiv2Qt6/KExiv2Qt6Config.cmake +lib/cmake/KExiv2Qt6/KExiv2Qt6ConfigVersion.cmake +lib/cmake/KExiv2Qt6/KExiv2Qt6Targets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/KExiv2Qt6/KExiv2Qt6Targets.cmake +lib/libKExiv2Qt6.so +lib/libKExiv2Qt6.so.0 +lib/libKExiv2Qt6.so.5.1.0 +share/qlogging-categories6/libkexiv2.categories diff --git a/security/Makefile b/security/Makefile index c8ff1bee1401..c940d52d8671 100644 --- a/security/Makefile +++ b/security/Makefile @@ -1,1388 +1,1391 @@ COMMENT = Security tools SUBDIR += 0d1n SUBDIR += 1password-client SUBDIR += 1password-client2 SUBDIR += 1password-client2-beta SUBDIR += 2fa SUBDIR += ADMsmb SUBDIR += ADMsnmp SUBDIR += R-cran-ROAuth SUBDIR += R-cran-askpass SUBDIR += R-cran-credentials SUBDIR += R-cran-digest SUBDIR += R-cran-gitcreds SUBDIR += R-cran-openssl SUBDIR += R-cran-sodium SUBDIR += acme.sh SUBDIR += acmed SUBDIR += acmetool SUBDIR += aescrypt SUBDIR += aespipe SUBDIR += afl++ SUBDIR += afterglow SUBDIR += age SUBDIR += aide SUBDIR += akmos SUBDIR += amavisd-milter SUBDIR += amavisd-new SUBDIR += apache-xml-security-c SUBDIR += apg SUBDIR += apkid SUBDIR += archlinux-keyring SUBDIR += arpCounterattack SUBDIR += arti SUBDIR += asignify SUBDIR += assh SUBDIR += authenticator SUBDIR += authoscope SUBDIR += autossh SUBDIR += aws-c-auth SUBDIR += aws-c-cal SUBDIR += aws-iam-authenticator SUBDIR += aws-vault SUBDIR += axc SUBDIR += barnyard2 SUBDIR += barnyard2-sguil SUBDIR += bastillion SUBDIR += bcrypt SUBDIR += bcwipe SUBDIR += bdes SUBDIR += bearssl SUBDIR += beecrypt SUBDIR += beid SUBDIR += belier SUBDIR += bfbtester SUBDIR += binwalk SUBDIR += bitwarden-cli SUBDIR += boringssl SUBDIR += botan2 SUBDIR += botan3 SUBDIR += bruteblock SUBDIR += bsdsfv SUBDIR += bsmtrace SUBDIR += bsmtrace3 SUBDIR += bzrtp SUBDIR += ca_root_nss SUBDIR += caesarcipher SUBDIR += caldera SUBDIR += caldera-ot SUBDIR += calife SUBDIR += cardpeek SUBDIR += cargo-audit SUBDIR += ccrypt SUBDIR += ccsrch SUBDIR += certmgr SUBDIR += cfs SUBDIR += cfssl SUBDIR += cfv SUBDIR += chaosreader SUBDIR += checkpassword SUBDIR += checkpassword-pam SUBDIR += chkrootkit SUBDIR += chntpw SUBDIR += chroot_safe SUBDIR += chrootuid SUBDIR += ckpass SUBDIR += cksfv SUBDIR += cl-md5 SUBDIR += cl-md5-sbcl SUBDIR += clamassassin SUBDIR += clamav SUBDIR += clamav-lts SUBDIR += clamav-unofficial-sigs SUBDIR += clamd-stream-client SUBDIR += clamfs SUBDIR += clamsmtp SUBDIR += clamtk SUBDIR += cloak SUBDIR += clusterssh SUBDIR += cops SUBDIR += courier-authlib SUBDIR += courier-authlib-base SUBDIR += courierpassd SUBDIR += courierpasswd SUBDIR += courieruserinfo SUBDIR += cowrie SUBDIR += cpfx SUBDIR += cracklib SUBDIR += crackpkcs12 SUBDIR += create-cert SUBDIR += crlfuzz SUBDIR += crowdsec SUBDIR += crowdsec-blocklist-mirror SUBDIR += crowdsec-firewall-bouncer 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 += cyrus-sasl2-xoauth2 SUBDIR += d0_blind_id SUBDIR += debian-keyring SUBDIR += dehydrated SUBDIR += denyhosts SUBDIR += destroy SUBDIR += diffcode SUBDIR += digestpp SUBDIR += dirbuster SUBDIR += dirmngr SUBDIR += distcache SUBDIR += diswall SUBDIR += doas SUBDIR += dotdotpwn SUBDIR += dropbear SUBDIR += dsniff SUBDIR += dsvpn SUBDIR += duo SUBDIR += duo_openvpn SUBDIR += easy-rsa SUBDIR += enchive SUBDIR += eschalot SUBDIR += expiretable SUBDIR += f-prot SUBDIR += fakebo SUBDIR += fakeident SUBDIR += fakeroot SUBDIR += farmhash SUBDIR += fcheck SUBDIR += fcrackzip SUBDIR += ffuf SUBDIR += fiked SUBDIR += fizz SUBDIR += fl0p SUBDIR += flawfinder SUBDIR += fprint_demo SUBDIR += fprintd SUBDIR += fragroute SUBDIR += fragrouter SUBDIR += fswatch SUBDIR += ftimes SUBDIR += fuzz SUBDIR += fwanalog SUBDIR += fwknop SUBDIR += fwlogwatch SUBDIR += gcr SUBDIR += gef SUBDIR += git-credential-azure SUBDIR += git-credential-gopass SUBDIR += git-credential-oauth SUBDIR += git-crypt SUBDIR += git-remote-gcrypt SUBDIR += git-secret SUBDIR += gitjacker SUBDIR += globalprotect-openconnect SUBDIR += gnome-keyring SUBDIR += gnome-keyring-sharp SUBDIR += gnome-ssh-askpass SUBDIR += gnupg SUBDIR += gnupg-pkcs11-scd SUBDIR += gnupg1 SUBDIR += gnutls SUBDIR += go-cve-dictionary SUBDIR += gokart SUBDIR += gokey SUBDIR += gonepass SUBDIR += gopass SUBDIR += gorilla SUBDIR += gosec SUBDIR += gost-engine SUBDIR += gostsum SUBDIR += gpa SUBDIR += gpg-gui SUBDIR += gpg-tui SUBDIR += gpgdir SUBDIR += gpgme SUBDIR += gpgme-cpp SUBDIR += gpgme-qt SUBDIR += gpgme-qt-headers SUBDIR += gsa SUBDIR += gsad SUBDIR += gsasl SUBDIR += gstreamer1-plugins-dtls SUBDIR += gtkpasman SUBDIR += gvm SUBDIR += gvm-libs SUBDIR += gvmd SUBDIR += hardening-check SUBDIR += hash SUBDIR += hashcat SUBDIR += heaan SUBDIR += headscale SUBDIR += heimdal SUBDIR += heimdal-devel SUBDIR += helib SUBDIR += hexl SUBDIR += highwayhash SUBDIR += hitch SUBDIR += hockeypuck SUBDIR += honeytrap SUBDIR += honggfuzz SUBDIR += horcrux SUBDIR += howdy SUBDIR += hpenc SUBDIR += hs-cryptol SUBDIR += hydra SUBDIR += hyperhotp SUBDIR += i2p SUBDIR += i2pd SUBDIR += iaikpkcs11wrapper SUBDIR += iddawc SUBDIR += idea SUBDIR += identify SUBDIR += imds-filterd SUBDIR += intel-ipsec-mb SUBDIR += ipfmeta SUBDIR += ipguard SUBDIR += ipsec-tools SUBDIR += ipv6toolkit SUBDIR += isal-kmod SUBDIR += ismtp SUBDIR += isnprober SUBDIR += john SUBDIR += kbfsd SUBDIR += kc SUBDIR += kdbxviewer SUBDIR += keepass SUBDIR += keepass-plugin-keepassrpc SUBDIR += keepassxc SUBDIR += keybase SUBDIR += keychain SUBDIR += keyprint SUBDIR += keysmith SUBDIR += kf5-kdesu SUBDIR += kf6-kdesu SUBDIR += kgpg SUBDIR += kickpass SUBDIR += klee SUBDIR += kleopatra SUBDIR += knock SUBDIR += knocker SUBDIR += kpcli SUBDIR += kpkpass SUBDIR += kpmenu SUBDIR += krb5 SUBDIR += krb5-119 SUBDIR += krb5-120 SUBDIR += krb5-121 SUBDIR += krb5-devel SUBDIR += kstart SUBDIR += ktls_isa-l_crypto-kmod SUBDIR += kuku SUBDIR += kwalletmanager SUBDIR += l0pht-watch SUBDIR += lasso SUBDIR += lastpass-cli SUBDIR += lego SUBDIR += libargon2 SUBDIR += libassuan SUBDIR += libcryptui SUBDIR += libdecaf SUBDIR += libecc SUBDIR += libfido2 SUBDIR += libfprint SUBDIR += libgcrypt SUBDIR += libgnome-keyring SUBDIR += libgpg-error SUBDIR += libgsasl SUBDIR += libhijack SUBDIR += libident SUBDIR += libkleo SUBDIR += libkpass SUBDIR += libksba SUBDIR += libmcrypt SUBDIR += libnitrokey SUBDIR += libntlm SUBDIR += libomemo SUBDIR += libomemo-c SUBDIR += liboqs SUBDIR += libotr SUBDIR += libotr3 SUBDIR += libp11 SUBDIR += libpki SUBDIR += libprelude SUBDIR += libpreludedb SUBDIR += libpwquality SUBDIR += libressl SUBDIR += libressl-devel SUBDIR += libreswan SUBDIR += libretls SUBDIR += libscep SUBDIR += libscrypt SUBDIR += libsecret SUBDIR += libsectok SUBDIR += libsodium SUBDIR += libssh SUBDIR += libssh2 SUBDIR += libtasn1 SUBDIR += libtomcrypt SUBDIR += libu2f-host SUBDIR += libuecc SUBDIR += libwhisker SUBDIR += libxcrypt SUBDIR += libyubikey SUBDIR += libzrtpcppcore SUBDIR += lime SUBDIR += linux-bitwarden-cli SUBDIR += linux-c7-ca-certificates 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-devel SUBDIR += linux-c7-p11-kit SUBDIR += linux-c7-trousers SUBDIR += local-php-security-checker SUBDIR += logcheck SUBDIR += lua-argon2 SUBDIR += lua-bcrypt SUBDIR += luasec SUBDIR += lxqt-openssh-askpass SUBDIR += lxqt-sudo SUBDIR += lynis SUBDIR += mac-robber SUBDIR += maia SUBDIR += mailzu SUBDIR += makepasswd SUBDIR += maltrail SUBDIR += masscan SUBDIR += mate-pam-helper SUBDIR += mbedtls SUBDIR += mcrypt SUBDIR += md5deep SUBDIR += medusa SUBDIR += meek SUBDIR += metasploit SUBDIR += mhash SUBDIR += mindterm-binary SUBDIR += minisign SUBDIR += mkp224o SUBDIR += modsecurity3 SUBDIR += modsecurity3-nginx SUBDIR += monkeysphere SUBDIR += monocypher SUBDIR += munge SUBDIR += n2n SUBDIR += ncrack SUBDIR += ncrypt SUBDIR += nebula SUBDIR += nettle SUBDIR += nextcloud-end_to_end_encryption SUBDIR += nextcloud-passman SUBDIR += nextcloud-twofactor_admin SUBDIR += nextcloud-twofactor_nextcloud_notification SUBDIR += nextcloud-twofactor_webauthn SUBDIR += nflib SUBDIR += ngrok SUBDIR += nikto SUBDIR += nist-kat SUBDIR += nitrokey-app SUBDIR += nmap SUBDIR += nss SUBDIR += nss_compat_ossl SUBDIR += nuclei SUBDIR += nyx SUBDIR += oath-toolkit SUBDIR += obfs4proxy-tor SUBDIR += ocaml-cryptgps SUBDIR += ocaml-cryptokit SUBDIR += ocaml-ssl SUBDIR += oidentd SUBDIR += oinkmaster SUBDIR += olm SUBDIR += onionscan SUBDIR += op SUBDIR += openbsm SUBDIR += openca-ocspd SUBDIR += openconnect SUBDIR += openconnect-freebsd-daemon SUBDIR += openconnect-gui SUBDIR += opencryptoki SUBDIR += openct SUBDIR += openfhe SUBDIR += openfortivpn SUBDIR += openiked SUBDIR += openiked-portable SUBDIR += opensaml SUBDIR += opensc SUBDIR += openssh-askpass SUBDIR += openssh-portable SUBDIR += openssl SUBDIR += openssl-agent SUBDIR += openssl-quictls SUBDIR += openssl-unsafe SUBDIR += openssl111 SUBDIR += openssl31 SUBDIR += openssl31-quictls SUBDIR += openssl32 SUBDIR += openvas SUBDIR += openvpn SUBDIR += openvpn-admin SUBDIR += openvpn-auth-ldap SUBDIR += openvpn-auth-radius SUBDIR += openvpn-auth-script SUBDIR += openvpn-devel SUBDIR += ophcrack SUBDIR += opie SUBDIR += ossec-hids SUBDIR += ossec-hids-agent SUBDIR += ossec-hids-agent-config SUBDIR += ossec-hids-local SUBDIR += ossec-hids-local-config SUBDIR += ossec-hids-server SUBDIR += ossec-hids-server-config SUBDIR += osslsigncode SUBDIR += osv-scanner SUBDIR += otpw SUBDIR += owasp-dependency-check SUBDIR += p11-kit SUBDIR += p5-Alt-Crypt-RSA-BigInt SUBDIR += p5-Apache-Htpasswd SUBDIR += p5-App-Acmeman 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-Bytes-Random-Secure-Tiny SUBDIR += p5-CACertOrg-CA SUBDIR += p5-CSP SUBDIR += p5-Cisco-Hash SUBDIR += p5-Crypt-Anubis SUBDIR += p5-Crypt-AppleTwoFish SUBDIR += p5-Crypt-Argon2 SUBDIR += p5-Crypt-Bcrypt 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-GpgME SUBDIR += p5-Crypt-HCE_MD5 SUBDIR += p5-Crypt-HCE_SHA SUBDIR += p5-Crypt-HSXKPasswd SUBDIR += p5-Crypt-IDEA SUBDIR += p5-Crypt-Imail SUBDIR += p5-Crypt-JWT SUBDIR += p5-Crypt-Juniper SUBDIR += p5-Crypt-Khazad SUBDIR += p5-Crypt-LE SUBDIR += p5-Crypt-LibSCEP 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-Verify 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-Perl 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-SSSS 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-X509-CRL 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-SAML2 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-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-URN-OASIS-SAML2 SUBDIR += p5-Unix-Passwd-File SUBDIR += p5-Unix-setuid SUBDIR += p5-Yahoo-BBAuth SUBDIR += p5-dicewaregen SUBDIR += p5-openxpki SUBDIR += p5-openxpki-i18n SUBDIR += p5-plog SUBDIR += palisade SUBDIR += pam-modules SUBDIR += pam-mysql SUBDIR += pam-pgsql SUBDIR += pam_fprint SUBDIR += pam_google_authenticator SUBDIR += pam_helper SUBDIR += pam_howdy 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_pkcs11 SUBDIR += pam_pwdfile SUBDIR += pam_require SUBDIR += pam_rssh SUBDIR += pam_script SUBDIR += pam_search_list SUBDIR += pam_ssh_agent_auth SUBDIR += pam_u2f SUBDIR += pam_yubico SUBDIR += pamtester SUBDIR += paperkey SUBDIR += passh SUBDIR += passivedns SUBDIR += pbc SUBDIR += pcsc-tools SUBDIR += pdfcrack SUBDIR += pear-Auth SUBDIR += pear-Auth_HTTP SUBDIR += pear-Auth_PrefManager SUBDIR += pear-Auth_SASL SUBDIR += pear-Auth_SASL2 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-crypto SUBDIR += pecl-gnupg SUBDIR += pecl-krb5 SUBDIR += pecl-libsodium SUBDIR += pecl-mcrypt SUBDIR += pecl-pam SUBDIR += pecl-pkcs11 SUBDIR += pecl-scrypt SUBDIR += pecl-ssh2 SUBDIR += peda SUBDIR += pev SUBDIR += pgpdump SUBDIR += pgpgpg SUBDIR += pgpin SUBDIR += php80-filter SUBDIR += php80-sodium SUBDIR += php81-filter SUBDIR += php81-sodium SUBDIR += php82-filter SUBDIR += php82-sodium SUBDIR += php83-filter SUBDIR += php83-sodium SUBDIR += picocrypt SUBDIR += picosha2 SUBDIR += pidgin-encryption SUBDIR += pidgin-otr SUBDIR += pinentry SUBDIR += pinentry-curses SUBDIR += pinentry-efl SUBDIR += pinentry-fltk SUBDIR += pinentry-gnome SUBDIR += pinentry-gtk2 SUBDIR += pinentry-qt5 SUBDIR += pinentry-tty SUBDIR += pixiewps SUBDIR += pkcrack SUBDIR += pkcs11-dump SUBDIR += pkcs11-gateway SUBDIR += pkcs11-helper SUBDIR += pkcs11-tools SUBDIR += pkesh SUBDIR += pks SUBDIR += plasma5-kscreenlocker SUBDIR += plasma5-ksshaskpass SUBDIR += plasma5-kwallet-pam + SUBDIR += plasma6-kscreenlocker + SUBDIR += plasma6-ksshaskpass + SUBDIR += plasma6-kwallet-pam SUBDIR += please SUBDIR += poly1305aes SUBDIR += portacl-rc SUBDIR += proftpd-mod_clamav SUBDIR += proxycheck SUBDIR += proxytunnel SUBDIR += pssh SUBDIR += pulledpork SUBDIR += pure-sfv SUBDIR += putty SUBDIR += putty-nogtk SUBDIR += pvk SUBDIR += pwauth SUBDIR += pwman SUBDIR += pwned-check SUBDIR += py-RestrictedPython SUBDIR += py-SecretStorage SUBDIR += py-YubiOTP SUBDIR += py-acme SUBDIR += py-acme-tiny SUBDIR += py-ailment SUBDIR += py-aiohttp-security SUBDIR += py-angr SUBDIR += py-argon2-cffi SUBDIR += py-argon2-cffi-bindings SUBDIR += py-artifacts SUBDIR += py-asyncssh SUBDIR += py-authlib SUBDIR += py-azure-keyvault-certificates SUBDIR += py-azure-keyvault-keys SUBDIR += py-azure-keyvault-secrets SUBDIR += py-badkeys SUBDIR += py-base58 SUBDIR += py-bcrypt SUBDIR += py-bitbox02 SUBDIR += py-btchip-python SUBDIR += py-cerealizer SUBDIR += py-cert-human SUBDIR += py-certbot SUBDIR += py-certbot-apache SUBDIR += py-certbot-dns-cloudflare SUBDIR += py-certbot-dns-cpanel SUBDIR += py-certbot-dns-digitalocean SUBDIR += py-certbot-dns-dnsimple SUBDIR += py-certbot-dns-dnsmadeeasy SUBDIR += py-certbot-dns-gandi SUBDIR += py-certbot-dns-gehirn SUBDIR += py-certbot-dns-google SUBDIR += py-certbot-dns-linode SUBDIR += py-certbot-dns-luadns SUBDIR += py-certbot-dns-nsone SUBDIR += py-certbot-dns-ovh SUBDIR += py-certbot-dns-powerdns SUBDIR += py-certbot-dns-rfc2136 SUBDIR += py-certbot-dns-route53 SUBDIR += py-certbot-dns-sakuracloud SUBDIR += py-certbot-dns-standalone SUBDIR += py-certbot-nginx SUBDIR += py-certifi SUBDIR += py-certomancer SUBDIR += py-certstream SUBDIR += py-ckcc-protocol SUBDIR += py-coincurve SUBDIR += py-cpe SUBDIR += py-cryptography SUBDIR += py-cryptography-legacy SUBDIR += py-cryptography-vectors SUBDIR += py-ctypescrypto SUBDIR += py-cybox SUBDIR += py-detect-secrets SUBDIR += py-dfdatetime SUBDIR += py-dfvfs SUBDIR += py-dfwinreg SUBDIR += py-dirhash SUBDIR += py-django-auth-kerberos SUBDIR += py-docker-pycreds SUBDIR += py-ecdsa SUBDIR += py-ed25519ll SUBDIR += py-exscript SUBDIR += py-fail2ban SUBDIR += py-fido2 SUBDIR += py-first-server SUBDIR += py-flask-bcrypt SUBDIR += py-flask-httpauth SUBDIR += py-flask-kerberos SUBDIR += py-flask-saml SUBDIR += py-gixy SUBDIR += py-gnupg SUBDIR += py-gnutls SUBDIR += py-google-auth SUBDIR += py-google-auth-httplib2 SUBDIR += py-google-auth-oauthlib SUBDIR += py-gpgme SUBDIR += py-gpsoauth SUBDIR += py-greenbone-feed-sync SUBDIR += py-gssapi SUBDIR += py-gvm-tools SUBDIR += py-hkdf SUBDIR += py-htpasswd SUBDIR += py-httpx-auth SUBDIR += py-iris-check-module SUBDIR += py-iris-client SUBDIR += py-iris-evtx-module SUBDIR += py-iris-intelowl-module SUBDIR += py-iris-misp-module SUBDIR += py-iris-module-interface SUBDIR += py-iris-vt-module SUBDIR += py-iris-webhooks-module SUBDIR += py-itsdangerous SUBDIR += py-josepy SUBDIR += py-jwcrypto SUBDIR += py-keepkey SUBDIR += py-kerberos SUBDIR += py-keyring SUBDIR += py-keyrings.alt SUBDIR += py-krb5 SUBDIR += py-libnacl SUBDIR += py-liboqs-python SUBDIR += py-m2crypto SUBDIR += py-maec SUBDIR += py-merkletools SUBDIR += py-mixbox SUBDIR += py-mnemonic SUBDIR += py-msoffcrypto-tool SUBDIR += py-muacrypt SUBDIR += py-nassl SUBDIR += py-netbox-secrets SUBDIR += py-netmiko SUBDIR += py-noiseprotocol SUBDIR += py-notus-scanner SUBDIR += py-ntlm-auth SUBDIR += py-oauth2client SUBDIR += py-oauthlib SUBDIR += py-omemo-dr SUBDIR += py-onlykey SUBDIR += py-openssl SUBDIR += py-oscrypto SUBDIR += py-ospd-openvas SUBDIR += py-paramiko SUBDIR += py-pass-audit SUBDIR += py-pass-git-helper SUBDIR += py-passlib SUBDIR += py-pbkdf2 SUBDIR += py-pem SUBDIR += py-pgpdump SUBDIR += py-pgpy SUBDIR += py-plaso SUBDIR += py-potr SUBDIR += py-pwntools SUBDIR += py-pyaes SUBDIR += py-pyaff4 SUBDIR += py-pyaxo SUBDIR += py-pyblake2 SUBDIR += py-pyclamd SUBDIR += py-pycryptodome SUBDIR += py-pycryptodome-test-vectors SUBDIR += py-pycryptodomex SUBDIR += py-pyelliptic SUBDIR += py-pyhanko SUBDIR += py-pyhanko-certvalidator SUBDIR += py-pylibacl SUBDIR += py-pymacaroons SUBDIR += py-pynacl SUBDIR += py-pyotp SUBDIR += py-pyotp2289 SUBDIR += py-pysaml2 SUBDIR += py-pysaml24 SUBDIR += py-pysaml26 SUBDIR += py-pyscard SUBDIR += py-pysha3 SUBDIR += py-pysodium SUBDIR += py-pyspnego SUBDIR += py-python-axolotl SUBDIR += py-python-axolotl-curve25519 SUBDIR += py-python-gnupg SUBDIR += py-python-gvm SUBDIR += py-python-jose SUBDIR += py-python-nss SUBDIR += py-python-openid SUBDIR += py-python-pam SUBDIR += py-python-pkcs11 SUBDIR += py-python-registry SUBDIR += py-python3-openid SUBDIR += py-python3-saml SUBDIR += py-pyvex SUBDIR += py-pywinrm SUBDIR += py-requests-credssp SUBDIR += py-requests-kerberos SUBDIR += py-ropgadget SUBDIR += py-ropper SUBDIR += py-rsa SUBDIR += py-safe SUBDIR += py-scp SUBDIR += py-scramp SUBDIR += py-scrypt SUBDIR += py-secure SUBDIR += py-securesystemslib SUBDIR += py-service-identity SUBDIR += py-service_identity SUBDIR += py-signedjson SUBDIR += py-social-auth-core SUBDIR += py-spake2 SUBDIR += py-ssh-audit SUBDIR += py-sshpubkeys SUBDIR += py-sslyze SUBDIR += py-stem SUBDIR += py-stix SUBDIR += py-stix2 SUBDIR += py-stix2-patterns SUBDIR += py-taxii2-client SUBDIR += py-tinyaes SUBDIR += py-tls-parser SUBDIR += py-tlslite SUBDIR += py-tlslite-ng SUBDIR += py-trezor SUBDIR += py-trustme SUBDIR += py-truststore SUBDIR += py-tuf SUBDIR += py-txtorcon SUBDIR += py-uhashring SUBDIR += py-vici SUBDIR += py-virustotal-api SUBDIR += py-volatility3 SUBDIR += py-vpn-slice SUBDIR += py-vulndb SUBDIR += py-webauthn SUBDIR += py-xkcdpass SUBDIR += py-xmlsec SUBDIR += py-yara SUBDIR += py-yara-python-dex SUBDIR += py-yubikey-manager SUBDIR += py-zkg SUBDIR += py-zope.password SUBDIR += py-zxcvbn SUBDIR += pygost SUBDIR += qtkeychain SUBDIR += quantis-kmod SUBDIR += racoon2 SUBDIR += ratproxy SUBDIR += rats SUBDIR += rcracki_mt SUBDIR += reop SUBDIR += rhash SUBDIR += rhonabwy SUBDIR += ridl SUBDIR += rifiuti2 SUBDIR += rkhunter SUBDIR += rndpassw SUBDIR += rnp SUBDIR += rotate SUBDIR += rubygem-acme-client SUBDIR += rubygem-aes_key_wrap SUBDIR += rubygem-airbrussh SUBDIR += rubygem-android_key_attestation SUBDIR += rubygem-attr_encrypted SUBDIR += rubygem-attr_encrypted3 SUBDIR += rubygem-bcrypt SUBDIR += rubygem-bcrypt-ruby SUBDIR += rubygem-bcrypt_pbkdf SUBDIR += rubygem-cose SUBDIR += rubygem-cvss-suite SUBDIR += rubygem-declarative_policy SUBDIR += rubygem-devise-two-factor SUBDIR += rubygem-devise-two-factor-rails5 SUBDIR += rubygem-devise-two-factor-rails61 SUBDIR += rubygem-devise-two-factor-rails70 SUBDIR += rubygem-devise-two-factor41-rails70 SUBDIR += rubygem-devise_pam_authenticatable2 SUBDIR += rubygem-devise_pam_authenticatable2-rails61 SUBDIR += rubygem-digest SUBDIR += rubygem-digest-crc SUBDIR += rubygem-doorkeeper SUBDIR += rubygem-doorkeeper-openid_connect SUBDIR += rubygem-doorkeeper-rails5 SUBDIR += rubygem-doorkeeper-rails50 SUBDIR += rubygem-doorkeeper-rails61 SUBDIR += rubygem-doorkeeper-rails70 SUBDIR += rubygem-duo_api SUBDIR += rubygem-ed25519 SUBDIR += rubygem-encryptor SUBDIR += rubygem-ezcrypto SUBDIR += rubygem-googleauth SUBDIR += rubygem-gpgme SUBDIR += rubygem-gpgr SUBDIR += rubygem-gssapi SUBDIR += rubygem-haiti-hash SUBDIR += rubygem-hkdf SUBDIR += rubygem-hkdf0 SUBDIR += rubygem-hrr_rb_ssh SUBDIR += rubygem-hrr_rb_ssh-ed25519 SUBDIR += rubygem-lockbox 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-scp1 SUBDIR += rubygem-net-sftp SUBDIR += rubygem-net-sftp2 SUBDIR += rubygem-net-ssh SUBDIR += rubygem-net-ssh-gateway SUBDIR += rubygem-net-ssh-krb SUBDIR += rubygem-net-ssh-multi SUBDIR += rubygem-net-ssh5 SUBDIR += rubygem-net-ssh6 SUBDIR += rubygem-net-telnet SUBDIR += rubygem-nexpose SUBDIR += rubygem-nmap-parser SUBDIR += rubygem-omniauth SUBDIR += rubygem-omniauth-alicloud SUBDIR += rubygem-omniauth-atlassian-oauth2 SUBDIR += rubygem-omniauth-bitbucket SUBDIR += rubygem-omniauth-cas SUBDIR += rubygem-omniauth-dingtalk-oauth2 SUBDIR += rubygem-omniauth-gitlab SUBDIR += rubygem-omniauth-jwt SUBDIR += rubygem-omniauth-multipassword SUBDIR += rubygem-omniauth-oauth2-generic SUBDIR += rubygem-omniauth-rails_csrf_protection SUBDIR += rubygem-omniauth-saml SUBDIR += rubygem-omniauth-saml1 SUBDIR += rubygem-omniauth-shibboleth SUBDIR += rubygem-omniauth-shibboleth-redux SUBDIR += rubygem-omniauth1 SUBDIR += rubygem-openssl SUBDIR += rubygem-openssl-ccm SUBDIR += rubygem-openssl-cmac SUBDIR += rubygem-openssl-signature_algorithm SUBDIR += rubygem-openvas-omp SUBDIR += rubygem-origami SUBDIR += rubygem-pbkdf2-ruby SUBDIR += rubygem-pundit SUBDIR += rubygem-pundit61 SUBDIR += rubygem-pyu-ruby-sasl SUBDIR += rubygem-rack-oauth2 SUBDIR += rubygem-rack-oauth21 SUBDIR += rubygem-rasn1 SUBDIR += rubygem-razorback-scriptNugget SUBDIR += rubygem-rbnacl SUBDIR += rubygem-rbnacl-libsodium 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-ruby-saml115 SUBDIR += rubygem-safety_net_attestation SUBDIR += rubygem-scrypt SUBDIR += rubygem-securecompare SUBDIR += rubygem-securerandom SUBDIR += rubygem-signet SUBDIR += rubygem-six SUBDIR += rubygem-ssh_data SUBDIR += rubygem-sshkey SUBDIR += rubygem-sshkit SUBDIR += rubygem-sslshake SUBDIR += rubygem-ssrf_filter SUBDIR += rubygem-timfel-krb5 SUBDIR += rubygem-tpm-key_attestation SUBDIR += rubygem-twitter_oauth SUBDIR += rubygem-unix-crypt SUBDIR += rubygem-vault SUBDIR += rubygem-webauthn SUBDIR += rubygem-webpush SUBDIR += rustscan SUBDIR += s2n-tls SUBDIR += safesh SUBDIR += samhain SUBDIR += samhain-client SUBDIR += samhain-server SUBDIR += sancp SUBDIR += sasp SUBDIR += scanlogd SUBDIR += scrypt SUBDIR += seahorse SUBDIR += seal SUBDIR += seccure SUBDIR += seclists SUBDIR += secpanel SUBDIR += sectok SUBDIR += secure_delete SUBDIR += sedutil SUBDIR += sequoia SUBDIR += sequoia-sq SUBDIR += setaudit SUBDIR += sha1collisiondetection SUBDIR += sha2wordlist SUBDIR += shibboleth-idp SUBDIR += shibboleth-sp SUBDIR += sig2dot SUBDIR += signify SUBDIR += signing-party SUBDIR += silktools SUBDIR += sks SUBDIR += smurflog SUBDIR += sniffglue SUBDIR += snoopy SUBDIR += snort SUBDIR += snort-rep SUBDIR += snort2pfcd SUBDIR += snort3 SUBDIR += snortsam SUBDIR += snortsnarf SUBDIR += snowflake-tor SUBDIR += snuffleupagus SUBDIR += softether SUBDIR += softether-devel SUBDIR += softether5 SUBDIR += softhsm2 SUBDIR += solana SUBDIR += sops SUBDIR += spass SUBDIR += spass-qt5 SUBDIR += spectre-meltdown-checker SUBDIR += spm SUBDIR += sqlmap SUBDIR += sqlninja SUBDIR += srm SUBDIR += ssb SUBDIR += ssdeep SUBDIR += ssh-import-id SUBDIR += ssh-multiadd SUBDIR += ssh-tools SUBDIR += ssh-vault SUBDIR += sshguard SUBDIR += sshpass SUBDIR += ssl-admin SUBDIR += ssllabs-scan SUBDIR += sslproxy SUBDIR += sslscan SUBDIR += sslsplit SUBDIR += sssd SUBDIR += sssd-devel SUBDIR += ssss SUBDIR += sst SUBDIR += starttls SUBDIR += steghide SUBDIR += stegify SUBDIR += step-certificates SUBDIR += step-cli SUBDIR += stoken SUBDIR += strongswan SUBDIR += stunnel SUBDIR += su-exec SUBDIR += subversion-gnome-keyring SUBDIR += sudo SUBDIR += sudoscript SUBDIR += super SUBDIR += suricata SUBDIR += swatchdog SUBDIR += tailscale SUBDIR += tang SUBDIR += tclsasl SUBDIR += tcpcrypt SUBDIR += teleport SUBDIR += testssl.sh SUBDIR += tfhe SUBDIR += tfsec SUBDIR += theonionbox SUBDIR += tinc SUBDIR += tinc-devel SUBDIR += tinyca SUBDIR += tls-check SUBDIR += tlsc SUBDIR += tor SUBDIR += totp-cli SUBDIR += tpm-quote-tools SUBDIR += tpm-tools SUBDIR += tpm2-abrmd SUBDIR += tpm2-tools SUBDIR += tpm2-tss SUBDIR += transcrypt SUBDIR += trezord SUBDIR += tripwire SUBDIR += trousers SUBDIR += trufflehog SUBDIR += tthsum SUBDIR += u2f-devd SUBDIR += uacme SUBDIR += ubuntu-keyring SUBDIR += unhide SUBDIR += unix-selfauth-helper SUBDIR += vanguards-tor SUBDIR += vault SUBDIR += vaultwarden SUBDIR += veracrypt SUBDIR += vigenere SUBDIR += vlock SUBDIR += vm-to-tor SUBDIR += vouch-proxy SUBDIR += vpnc SUBDIR += vuls SUBDIR += vuxml SUBDIR += vxquery SUBDIR += wapiti SUBDIR += wazuh-agent SUBDIR += wazuh-dashboard SUBDIR += wazuh-indexer SUBDIR += wazuh-manager SUBDIR += wazuh-server SUBDIR += webfwlog SUBDIR += webtunnel-tor SUBDIR += weggli SUBDIR += whatweb SUBDIR += wipe SUBDIR += wolfssh SUBDIR += wolfssl SUBDIR += wpa_supplicant SUBDIR += wpa_supplicant-devel SUBDIR += wpa_supplicant29 SUBDIR += xca SUBDIR += xinetd SUBDIR += xml-security SUBDIR += xmlsec1 SUBDIR += xorsearch SUBDIR += xray-core SUBDIR += yafic SUBDIR += yapet SUBDIR += yara SUBDIR += yersinia SUBDIR += ykclient SUBDIR += ykpers SUBDIR += ylva SUBDIR += yubico-piv-tool SUBDIR += yubikey-agent SUBDIR += yubikey-manager-qt SUBDIR += yubikey-personalization-gui SUBDIR += yubioath-desktop SUBDIR += zaproxy SUBDIR += zeek SUBDIR += zeronet SUBDIR += zlint SUBDIR += zzuf .include diff --git a/security/plasma6-kscreenlocker/Makefile b/security/plasma6-kscreenlocker/Makefile new file mode 100644 index 000000000000..eb19a2659213 --- /dev/null +++ b/security/plasma6-kscreenlocker/Makefile @@ -0,0 +1,34 @@ +PORTNAME= kscreenlocker +DISTVERSION= ${KDE_PLASMA_VERSION} +CATEGORIES= security kde kde-plasma + +MAINTAINER= kde@FreeBSD.org +COMMENT= Library and components for secure lock screen architecture + +BUILD_DEPENDS= ck-list-sessions:sysutils/consolekit2 +LIB_DEPENDS= libwayland-client.so:graphics/wayland \ + libxcb-keysyms.so:x11/xcb-util-keysyms \ + libxkbcommon.so:x11/libxkbcommon +RUN_DEPENDS= ck-list-sessions:sysutils/consolekit2 \ + dbus-send:devel/dbus \ + unix-selfauth-helper>=1.0:security/unix-selfauth-helper + +USES= cmake gettext gl kde:6 pkgconfig qt:6 shebangfix tar:xz xorg +USE_KDE= colorscheme config configwidgets coreaddons crash globalaccel \ + i18n idletime kcmutils kio layer-shell-qt libkscreen libplasma \ + notifications package solid svg widgetsaddons windowsystem \ + xmlgui \ + ecm:build +USE_GL= gl opengl +USE_QT= base +USE_XORG= x11 xcb xext xi + +SHEBANG_FILES= updaters/ksreenlocker_5_3_separate_autologin.pl + +SUB_FILES= kde.pam + +post-install: + ${MKDIR} ${STAGEDIR}${PREFIX}/etc/pam.d + ${INSTALL_DATA} ${WRKDIR}/kde.pam ${STAGEDIR}${PREFIX}/etc/pam.d/kde + +.include diff --git a/security/plasma6-kscreenlocker/distinfo b/security/plasma6-kscreenlocker/distinfo new file mode 100644 index 000000000000..5dc2a36907cd --- /dev/null +++ b/security/plasma6-kscreenlocker/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1701531663 +SHA256 (KDE/plasma/5.90.0/kscreenlocker-5.90.0.tar.xz) = d10b64225cb17a264d2f7135ec64e1f06ce781434d2aab9e06171646b078c14a +SIZE (KDE/plasma/5.90.0/kscreenlocker-5.90.0.tar.xz) = 163448 diff --git a/security/plasma6-kscreenlocker/files/kde.pam.in b/security/plasma6-kscreenlocker/files/kde.pam.in new file mode 100644 index 000000000000..61eb6427f94f --- /dev/null +++ b/security/plasma6-kscreenlocker/files/kde.pam.in @@ -0,0 +1,3 @@ +auth sufficient pam_exec.so return_prog_exit_status expose_authtok %%LOCALBASE%%/libexec/unix-selfauth-helper +auth include system +account include system diff --git a/security/plasma6-kscreenlocker/pkg-plist b/security/plasma6-kscreenlocker/pkg-plist new file mode 100644 index 000000000000..499f83710ce2 --- /dev/null +++ b/security/plasma6-kscreenlocker/pkg-plist @@ -0,0 +1,188 @@ +etc/pam.d/kde +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.%%KDE_PLASMA_VERSION%% +lib/libKScreenLocker.so.6 +lib/libexec/kscreenlocker_greet +%%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_screenlocker.so +share/applications/kcm_screenlocker.desktop +share/dbus-1/interfaces/kf6_org.freedesktop.ScreenSaver.xml +share/dbus-1/interfaces/org.kde.screensaver.xml +share/kconf_update/kscreenlocker.upd +share/kconf_update/ksreenlocker_5_3_separate_autologin.pl +share/knotifications6/ksmserver.notifyrc +share/ksmserver/screenlocker/org.kde.passworddialog/metadata.desktop +share/locale/ar/LC_MESSAGES/kcm_screenlocker.mo +share/locale/ar/LC_MESSAGES/kscreenlocker.mo +share/locale/ar/LC_MESSAGES/kscreenlocker_greet.mo +share/locale/ast/LC_MESSAGES/kcm_screenlocker.mo +share/locale/ast/LC_MESSAGES/kscreenlocker.mo +share/locale/ast/LC_MESSAGES/kscreenlocker_greet.mo +share/locale/az/LC_MESSAGES/kscreenlocker.mo +share/locale/bg/LC_MESSAGES/kcm_screenlocker.mo +share/locale/bg/LC_MESSAGES/kscreenlocker.mo +share/locale/bg/LC_MESSAGES/kscreenlocker_greet.mo +share/locale/bs/LC_MESSAGES/kcm_screenlocker.mo +share/locale/bs/LC_MESSAGES/kscreenlocker.mo +share/locale/bs/LC_MESSAGES/kscreenlocker_greet.mo +share/locale/ca/LC_MESSAGES/kcm_screenlocker.mo +share/locale/ca/LC_MESSAGES/kscreenlocker.mo +share/locale/ca/LC_MESSAGES/kscreenlocker_greet.mo +share/locale/ca@valencia/LC_MESSAGES/kcm_screenlocker.mo +share/locale/ca@valencia/LC_MESSAGES/kscreenlocker.mo +share/locale/ca@valencia/LC_MESSAGES/kscreenlocker_greet.mo +share/locale/cs/LC_MESSAGES/kcm_screenlocker.mo +share/locale/cs/LC_MESSAGES/kscreenlocker.mo +share/locale/cs/LC_MESSAGES/kscreenlocker_greet.mo +share/locale/da/LC_MESSAGES/kcm_screenlocker.mo +share/locale/da/LC_MESSAGES/kscreenlocker.mo +share/locale/da/LC_MESSAGES/kscreenlocker_greet.mo +share/locale/de/LC_MESSAGES/kcm_screenlocker.mo +share/locale/de/LC_MESSAGES/kscreenlocker.mo +share/locale/de/LC_MESSAGES/kscreenlocker_greet.mo +share/locale/el/LC_MESSAGES/kcm_screenlocker.mo +share/locale/el/LC_MESSAGES/kscreenlocker.mo +share/locale/el/LC_MESSAGES/kscreenlocker_greet.mo +share/locale/en_GB/LC_MESSAGES/kcm_screenlocker.mo +share/locale/en_GB/LC_MESSAGES/kscreenlocker.mo +share/locale/en_GB/LC_MESSAGES/kscreenlocker_greet.mo +share/locale/eo/LC_MESSAGES/kcm_screenlocker.mo +share/locale/eo/LC_MESSAGES/kscreenlocker.mo +share/locale/eo/LC_MESSAGES/kscreenlocker_greet.mo +share/locale/es/LC_MESSAGES/kcm_screenlocker.mo +share/locale/es/LC_MESSAGES/kscreenlocker.mo +share/locale/es/LC_MESSAGES/kscreenlocker_greet.mo +share/locale/et/LC_MESSAGES/kcm_screenlocker.mo +share/locale/et/LC_MESSAGES/kscreenlocker.mo +share/locale/et/LC_MESSAGES/kscreenlocker_greet.mo +share/locale/eu/LC_MESSAGES/kcm_screenlocker.mo +share/locale/eu/LC_MESSAGES/kscreenlocker.mo +share/locale/eu/LC_MESSAGES/kscreenlocker_greet.mo +share/locale/fi/LC_MESSAGES/kcm_screenlocker.mo +share/locale/fi/LC_MESSAGES/kscreenlocker.mo +share/locale/fi/LC_MESSAGES/kscreenlocker_greet.mo +share/locale/fr/LC_MESSAGES/kcm_screenlocker.mo +share/locale/fr/LC_MESSAGES/kscreenlocker.mo +share/locale/fr/LC_MESSAGES/kscreenlocker_greet.mo +share/locale/ga/LC_MESSAGES/kscreenlocker.mo +share/locale/ga/LC_MESSAGES/kscreenlocker_greet.mo +share/locale/gl/LC_MESSAGES/kcm_screenlocker.mo +share/locale/gl/LC_MESSAGES/kscreenlocker.mo +share/locale/gl/LC_MESSAGES/kscreenlocker_greet.mo +share/locale/he/LC_MESSAGES/kcm_screenlocker.mo +share/locale/he/LC_MESSAGES/kscreenlocker.mo +share/locale/he/LC_MESSAGES/kscreenlocker_greet.mo +share/locale/hi/LC_MESSAGES/kcm_screenlocker.mo +share/locale/hu/LC_MESSAGES/kcm_screenlocker.mo +share/locale/hu/LC_MESSAGES/kscreenlocker.mo +share/locale/hu/LC_MESSAGES/kscreenlocker_greet.mo +share/locale/ia/LC_MESSAGES/kcm_screenlocker.mo +share/locale/ia/LC_MESSAGES/kscreenlocker.mo +share/locale/ia/LC_MESSAGES/kscreenlocker_greet.mo +share/locale/id/LC_MESSAGES/kcm_screenlocker.mo +share/locale/id/LC_MESSAGES/kscreenlocker.mo +share/locale/id/LC_MESSAGES/kscreenlocker_greet.mo +share/locale/it/LC_MESSAGES/kcm_screenlocker.mo +share/locale/it/LC_MESSAGES/kscreenlocker.mo +share/locale/it/LC_MESSAGES/kscreenlocker_greet.mo +share/locale/ja/LC_MESSAGES/kcm_screenlocker.mo +share/locale/ja/LC_MESSAGES/kscreenlocker.mo +share/locale/ja/LC_MESSAGES/kscreenlocker_greet.mo +share/locale/ka/LC_MESSAGES/kcm_screenlocker.mo +share/locale/ka/LC_MESSAGES/kscreenlocker.mo +share/locale/ka/LC_MESSAGES/kscreenlocker_greet.mo +share/locale/kk/LC_MESSAGES/kscreenlocker.mo +share/locale/kk/LC_MESSAGES/kscreenlocker_greet.mo +share/locale/ko/LC_MESSAGES/kcm_screenlocker.mo +share/locale/ko/LC_MESSAGES/kscreenlocker.mo +share/locale/ko/LC_MESSAGES/kscreenlocker_greet.mo +share/locale/lt/LC_MESSAGES/kcm_screenlocker.mo +share/locale/lt/LC_MESSAGES/kscreenlocker.mo +share/locale/lt/LC_MESSAGES/kscreenlocker_greet.mo +share/locale/lv/LC_MESSAGES/kscreenlocker.mo +share/locale/lv/LC_MESSAGES/kscreenlocker_greet.mo +share/locale/ml/LC_MESSAGES/kcm_screenlocker.mo +share/locale/ml/LC_MESSAGES/kscreenlocker.mo +share/locale/ml/LC_MESSAGES/kscreenlocker_greet.mo +share/locale/mr/LC_MESSAGES/kscreenlocker.mo +share/locale/mr/LC_MESSAGES/kscreenlocker_greet.mo +share/locale/nb/LC_MESSAGES/kcm_screenlocker.mo +share/locale/nb/LC_MESSAGES/kscreenlocker.mo +share/locale/nb/LC_MESSAGES/kscreenlocker_greet.mo +share/locale/nds/LC_MESSAGES/kcm_screenlocker.mo +share/locale/nds/LC_MESSAGES/kscreenlocker.mo +share/locale/nds/LC_MESSAGES/kscreenlocker_greet.mo +share/locale/nl/LC_MESSAGES/kcm_screenlocker.mo +share/locale/nl/LC_MESSAGES/kscreenlocker.mo +share/locale/nl/LC_MESSAGES/kscreenlocker_greet.mo +share/locale/nn/LC_MESSAGES/kcm_screenlocker.mo +share/locale/nn/LC_MESSAGES/kscreenlocker.mo +share/locale/nn/LC_MESSAGES/kscreenlocker_greet.mo +share/locale/pa/LC_MESSAGES/kcm_screenlocker.mo +share/locale/pa/LC_MESSAGES/kscreenlocker.mo +share/locale/pa/LC_MESSAGES/kscreenlocker_greet.mo +share/locale/pl/LC_MESSAGES/kcm_screenlocker.mo +share/locale/pl/LC_MESSAGES/kscreenlocker.mo +share/locale/pl/LC_MESSAGES/kscreenlocker_greet.mo +share/locale/pt/LC_MESSAGES/kcm_screenlocker.mo +share/locale/pt/LC_MESSAGES/kscreenlocker.mo +share/locale/pt/LC_MESSAGES/kscreenlocker_greet.mo +share/locale/pt_BR/LC_MESSAGES/kcm_screenlocker.mo +share/locale/pt_BR/LC_MESSAGES/kscreenlocker.mo +share/locale/pt_BR/LC_MESSAGES/kscreenlocker_greet.mo +share/locale/ro/LC_MESSAGES/kcm_screenlocker.mo +share/locale/ro/LC_MESSAGES/kscreenlocker.mo +share/locale/ro/LC_MESSAGES/kscreenlocker_greet.mo +share/locale/ru/LC_MESSAGES/kcm_screenlocker.mo +share/locale/ru/LC_MESSAGES/kscreenlocker.mo +share/locale/ru/LC_MESSAGES/kscreenlocker_greet.mo +share/locale/sk/LC_MESSAGES/kcm_screenlocker.mo +share/locale/sk/LC_MESSAGES/kscreenlocker.mo +share/locale/sk/LC_MESSAGES/kscreenlocker_greet.mo +share/locale/sl/LC_MESSAGES/kcm_screenlocker.mo +share/locale/sl/LC_MESSAGES/kscreenlocker.mo +share/locale/sl/LC_MESSAGES/kscreenlocker_greet.mo +share/locale/sr/LC_MESSAGES/kcm_screenlocker.mo +share/locale/sr/LC_MESSAGES/kscreenlocker.mo +share/locale/sr/LC_MESSAGES/kscreenlocker_greet.mo +share/locale/sr@ijekavian/LC_MESSAGES/kcm_screenlocker.mo +share/locale/sr@ijekavian/LC_MESSAGES/kscreenlocker.mo +share/locale/sr@ijekavian/LC_MESSAGES/kscreenlocker_greet.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_screenlocker.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kscreenlocker.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kscreenlocker_greet.mo +share/locale/sr@latin/LC_MESSAGES/kcm_screenlocker.mo +share/locale/sr@latin/LC_MESSAGES/kscreenlocker.mo +share/locale/sr@latin/LC_MESSAGES/kscreenlocker_greet.mo +share/locale/sv/LC_MESSAGES/kcm_screenlocker.mo +share/locale/sv/LC_MESSAGES/kscreenlocker.mo +share/locale/sv/LC_MESSAGES/kscreenlocker_greet.mo +share/locale/ta/LC_MESSAGES/kcm_screenlocker.mo +share/locale/ta/LC_MESSAGES/kscreenlocker.mo +share/locale/ta/LC_MESSAGES/kscreenlocker_greet.mo +share/locale/tg/LC_MESSAGES/kcm_screenlocker.mo +share/locale/tg/LC_MESSAGES/kscreenlocker.mo +share/locale/tr/LC_MESSAGES/kcm_screenlocker.mo +share/locale/tr/LC_MESSAGES/kscreenlocker.mo +share/locale/tr/LC_MESSAGES/kscreenlocker_greet.mo +share/locale/ug/LC_MESSAGES/kscreenlocker.mo +share/locale/ug/LC_MESSAGES/kscreenlocker_greet.mo +share/locale/uk/LC_MESSAGES/kcm_screenlocker.mo +share/locale/uk/LC_MESSAGES/kscreenlocker.mo +share/locale/uk/LC_MESSAGES/kscreenlocker_greet.mo +share/locale/wa/LC_MESSAGES/kscreenlocker.mo +share/locale/wa/LC_MESSAGES/kscreenlocker_greet.mo +share/locale/zh_CN/LC_MESSAGES/kcm_screenlocker.mo +share/locale/zh_CN/LC_MESSAGES/kscreenlocker.mo +share/locale/zh_CN/LC_MESSAGES/kscreenlocker_greet.mo +share/locale/zh_TW/LC_MESSAGES/kcm_screenlocker.mo +share/locale/zh_TW/LC_MESSAGES/kscreenlocker.mo +share/locale/zh_TW/LC_MESSAGES/kscreenlocker_greet.mo +share/qlogging-categories6/kscreenlocker.categories diff --git a/security/plasma6-ksshaskpass/Makefile b/security/plasma6-ksshaskpass/Makefile new file mode 100644 index 000000000000..f16d4e705846 --- /dev/null +++ b/security/plasma6-ksshaskpass/Makefile @@ -0,0 +1,13 @@ +PORTNAME= ksshaskpass +DISTVERSION= ${KDE_PLASMA_VERSION} +CATEGORIES= security kde kde-plasma + +MAINTAINER= kde@FreeBSD.org +COMMENT= ssh-add helper that uses KWallet and KPasswordDialog + +USES= cmake gettext kde:6 qt:6 tar:xz +USE_KDE= coreaddons i18n wallet widgetsaddons \ + ecm:build +USE_QT= base + +.include diff --git a/security/plasma6-ksshaskpass/distinfo b/security/plasma6-ksshaskpass/distinfo new file mode 100644 index 000000000000..f18dc73fe0fd --- /dev/null +++ b/security/plasma6-ksshaskpass/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1701525051 +SHA256 (KDE/plasma/5.90.0/ksshaskpass-5.90.0.tar.xz) = 01fe3ef2131cbffeb0e32b722a5fddcc32ffb2a7d4fa07cde0f2e075424d12fe +SIZE (KDE/plasma/5.90.0/ksshaskpass-5.90.0.tar.xz) = 28848 diff --git a/security/plasma6-ksshaskpass/pkg-plist b/security/plasma6-ksshaskpass/pkg-plist new file mode 100644 index 000000000000..481ce80994a7 --- /dev/null +++ b/security/plasma6-ksshaskpass/pkg-plist @@ -0,0 +1,53 @@ +bin/ksshaskpass +share/locale/ar/LC_MESSAGES/ksshaskpass.mo +share/locale/ast/LC_MESSAGES/ksshaskpass.mo +share/locale/bg/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/eo/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/hi/LC_MESSAGES/ksshaskpass.mo +share/locale/hu/LC_MESSAGES/ksshaskpass.mo +share/locale/ia/LC_MESSAGES/ksshaskpass.mo +share/locale/id/LC_MESSAGES/ksshaskpass.mo +share/locale/it/LC_MESSAGES/ksshaskpass.mo +share/locale/ja/LC_MESSAGES/ksshaskpass.mo +share/locale/ka/LC_MESSAGES/ksshaskpass.mo +share/locale/ko/LC_MESSAGES/ksshaskpass.mo +share/locale/lt/LC_MESSAGES/ksshaskpass.mo +share/locale/ml/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/sa/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/tg/LC_MESSAGES/ksshaskpass.mo +share/locale/tr/LC_MESSAGES/ksshaskpass.mo +share/locale/uk/LC_MESSAGES/ksshaskpass.mo +share/locale/vi/LC_MESSAGES/ksshaskpass.mo +share/locale/zh_CN/LC_MESSAGES/ksshaskpass.mo +share/locale/zh_TW/LC_MESSAGES/ksshaskpass.mo diff --git a/security/plasma6-kwallet-pam/Makefile b/security/plasma6-kwallet-pam/Makefile new file mode 100644 index 000000000000..3736fd218a83 --- /dev/null +++ b/security/plasma6-kwallet-pam/Makefile @@ -0,0 +1,16 @@ +PORTNAME= kwallet-pam +DISTVERSION= ${KDE_PLASMA_VERSION} +CATEGORIES= security kde kde-plasma + +MAINTAINER= kde@FreeBSD.org +COMMENT= PAM Integration with KWallet - Unlock KWallet when you login + +LIB_DEPENDS= libgcrypt.so:security/libgcrypt \ + libgpg-error.so:security/libgpg-error + +USES= cmake kde:6 qt:6 tar:xz +USE_KDE= wallet \ + ecm:build +USE_QT= base + +.include diff --git a/security/plasma6-kwallet-pam/distinfo b/security/plasma6-kwallet-pam/distinfo new file mode 100644 index 000000000000..fb384e155a64 --- /dev/null +++ b/security/plasma6-kwallet-pam/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1701525051 +SHA256 (KDE/plasma/5.90.0/kwallet-pam-5.90.0.tar.xz) = 9d6a1b1637024e65820f137d2ac539bdbbd8072c4905ce97e56229046ca26b4f +SIZE (KDE/plasma/5.90.0/kwallet-pam-5.90.0.tar.xz) = 22892 diff --git a/security/plasma6-kwallet-pam/pkg-plist b/security/plasma6-kwallet-pam/pkg-plist new file mode 100644 index 000000000000..6c9ded659737 --- /dev/null +++ b/security/plasma6-kwallet-pam/pkg-plist @@ -0,0 +1,4 @@ +etc/xdg/autostart/pam_kwallet_init.desktop +lib/libexec/pam_kwallet_init +lib/security/pam_kwallet5.so +lib/systemd/user/plasma-kwallet-pam.service diff --git a/sysutils/Makefile b/sysutils/Makefile index 2b83dfdb4d25..a93ff0df0737 100644 --- a/sysutils/Makefile +++ b/sysutils/Makefile @@ -1,1685 +1,1696 @@ COMMENT = System utilities SUBDIR += 3dm SUBDIR += 3mux SUBDIR += 44bsd-more SUBDIR += 915resolution SUBDIR += LPRng SUBDIR += LPRngTool SUBDIR += R-cran-fs SUBDIR += R-cran-processx SUBDIR += R-cran-ps SUBDIR += R-cran-xopen SUBDIR += UEFITool SUBDIR += abduco SUBDIR += abgx360 SUBDIR += accounts-qml-module SUBDIR += accountsservice SUBDIR += acerhdf-kmod SUBDIR += acfgfs SUBDIR += acltool 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 += alfio SUBDIR += am-utils SUBDIR += amazon-ssm-agent SUBDIR += amazon-ssm-plugin SUBDIR += amdmsrtweaker SUBDIR += amrstat SUBDIR += amtc SUBDIR += anacron SUBDIR += and SUBDIR += android-file-transfer SUBDIR += android-file-transfer-qt5 SUBDIR += angrysearch SUBDIR += ansible SUBDIR += ansible-iocage SUBDIR += ansible-kld SUBDIR += ansible-sshjail SUBDIR += ansible-sysrc SUBDIR += anvil SUBDIR += apache-mesos SUBDIR += apachetop SUBDIR += apcctrl SUBDIR += apcpwr SUBDIR += apcupsd SUBDIR += appjail SUBDIR += appjail-devel SUBDIR += apt-mirror-devel SUBDIR += aptly SUBDIR += arc_summary SUBDIR += arcconf SUBDIR += archey4 SUBDIR += archivemount SUBDIR += ascpu SUBDIR += asfsm SUBDIR += asmctl SUBDIR += asmem SUBDIR += asusoled SUBDIR += async SUBDIR += atf-fvp SUBDIR += atf-master SUBDIR += atf-rk3328 SUBDIR += atf-rk3399 SUBDIR += atf-sun50i_a64 SUBDIR += atf-sun50i_h6 SUBDIR += atitvout SUBDIR += atop SUBDIR += auto-admin SUBDIR += autojump SUBDIR += automount SUBDIR += automounter SUBDIR += avfs SUBDIR += azure-agent SUBDIR += b2sum SUBDIR += b3sum SUBDIR += b43-fwcutter SUBDIR += backdown SUBDIR += backuppc SUBDIR += backuppc-devel SUBDIR += backuppc4 SUBDIR += backupuser SUBDIR += bacnet-stack-apps SUBDIR += bacula-libs3 SUBDIR += bacula11-client SUBDIR += bacula11-client-static SUBDIR += bacula11-docs SUBDIR += bacula11-server SUBDIR += bacula13-client SUBDIR += bacula13-client-static SUBDIR += bacula13-docs SUBDIR += bacula13-server SUBDIR += bacula9-client SUBDIR += bacula9-client-static SUBDIR += bacula9-docs SUBDIR += bacula9-server SUBDIR += baloo-widgets SUBDIR += bamf SUBDIR += bareos-client SUBDIR += bareos-server SUBDIR += bareos-traymonitor SUBDIR += bareos20-client SUBDIR += bareos20-server SUBDIR += bareos20-traymonitor SUBDIR += bareos21-client SUBDIR += bareos21-server SUBDIR += bareos21-traymonitor SUBDIR += barrier SUBDIR += bashtop SUBDIR += bastille SUBDIR += batmon SUBDIR += batterycat SUBDIR += battmond SUBDIR += battray SUBDIR += bchunk SUBDIR += beadm SUBDIR += beadm-devel SUBDIR += beats7 SUBDIR += beats8 SUBDIR += bfs SUBDIR += bhyve+ SUBDIR += bhyve-firmware SUBDIR += bhyve-rc SUBDIR += biosfont SUBDIR += bkpupsd SUBDIR += bksh SUBDIR += bkt SUBDIR += blisp SUBDIR += bmd SUBDIR += bmd-plugin-avahi SUBDIR += bmd-plugin-hookcmd SUBDIR += boot-extract SUBDIR += bottom SUBDIR += bpytop SUBDIR += brasero SUBDIR += brename SUBDIR += brut SUBDIR += bsd-splash-changer SUBDIR += bsdconfig SUBDIR += bsdcrashtar SUBDIR += bsdebfetch SUBDIR += bsdfan SUBDIR += bsdhwmon SUBDIR += bsdinfo SUBDIR += bsdisks SUBDIR += bsdstats SUBDIR += bstack SUBDIR += btop SUBDIR += btsixad SUBDIR += budgie-control-center SUBDIR += buildah SUBDIR += bulk_extractor SUBDIR += bupstash SUBDIR += burp SUBDIR += burp-devel SUBDIR += busybox SUBDIR += bvm SUBDIR += byobu SUBDIR += calamares SUBDIR += catatonit SUBDIR += catfish SUBDIR += catsit SUBDIR += cbsd SUBDIR += cbsd-mq-api SUBDIR += cbsd-mq-router SUBDIR += ccd2iso SUBDIR += cciss_vol_status SUBDIR += ccze SUBDIR += cdargs SUBDIR += cdbkup SUBDIR += cdeploy SUBDIR += cdircmp SUBDIR += cdrdao SUBDIR += cdrkit SUBDIR += cdroot SUBDIR += cdrtools SUBDIR += cfengine SUBDIR += cfengine-devel SUBDIR += cfengine-lts SUBDIR += cfengine-masterfiles SUBDIR += cfengine-masterfiles-devel SUBDIR += cfengine-masterfiles-lts SUBDIR += cfengine-masterfiles320 SUBDIR += cfengine-masterfiles321 SUBDIR += cfengine-masterfiles322 SUBDIR += cfengine320 SUBDIR += cfengine321 SUBDIR += cfengine322 SUBDIR += chaoskube SUBDIR += checkrestart SUBDIR += chezmoi SUBDIR += chgrep SUBDIR += choria SUBDIR += chyves SUBDIR += cinnamon-control-center SUBDIR += cinnamon-settings-daemon SUBDIR += ciso SUBDIR += ciso-maker SUBDIR += ck4up SUBDIR += clean SUBDIR += clockspeed SUBDIR += clone SUBDIR += clonehdd SUBDIR += cloudabi-utils SUBDIR += clsync SUBDIR += cluster-glue SUBDIR += cmdwatch SUBDIR += cmocka SUBDIR += cmockery2 SUBDIR += cmogstored SUBDIR += cmospwd SUBDIR += colorize SUBDIR += conan SUBDIR += confctl SUBDIR += conky SUBDIR += conky-awesome SUBDIR += conman SUBDIR += conmon SUBDIR += conserve SUBDIR += consolehm SUBDIR += consolekit2 SUBDIR += consul SUBDIR += consul-alerts SUBDIR += consul-replicate SUBDIR += consul_exporter SUBDIR += container-diff SUBDIR += containerd SUBDIR += containers-common SUBDIR += contractor SUBDIR += copytape SUBDIR += coreos-ct SUBDIR += coreutils SUBDIR += cpdup SUBDIR += cpu-microcode SUBDIR += cpu-microcode-amd SUBDIR += cpu-microcode-intel SUBDIR += cpu-microcode-rc SUBDIR += cpu-x SUBDIR += cpuburn SUBDIR += cpufetch SUBDIR += cpuid SUBDIR += cpuid2cpuflags SUBDIR += cpulimit SUBDIR += cpupdate SUBDIR += cramfs SUBDIR += crashme SUBDIR += crate SUBDIR += cronic SUBDIR += cronolog SUBDIR += cronolog-devel SUBDIR += ctop SUBDIR += currtime SUBDIR += cw SUBDIR += czkawka SUBDIR += daa2iso SUBDIR += dae SUBDIR += daemonize SUBDIR += daemontools SUBDIR += daemontools-encore SUBDIR += daggy SUBDIR += damager SUBDIR += dar SUBDIR += darling-dmg SUBDIR += datadog-agent SUBDIR += datadog-integrations SUBDIR += dateutils SUBDIR += dc3dd SUBDIR += dcfldd SUBDIR += dd_rescue SUBDIR += ddh SUBDIR += ddpt SUBDIR += ddrescue SUBDIR += debhelper SUBDIR += debootstrap SUBDIR += deltarpm SUBDIR += deltup SUBDIR += desktop-installer SUBDIR += detox SUBDIR += devcpu-data SUBDIR += devctl-jail-kmod SUBDIR += devd-mount SUBDIR += devedeng SUBDIR += devstat SUBDIR += dfc SUBDIR += di SUBDIR += digdag SUBDIR += dim SUBDIR += dirdiff SUBDIR += direnv SUBDIR += direvent SUBDIR += dirvish SUBDIR += discus SUBDIR += diskcheckd SUBDIR += diskimage-tools SUBDIR += diskonaut SUBDIR += diskscrub SUBDIR += diskus SUBDIR += dmg2img SUBDIR += dmidecode SUBDIR += dnf SUBDIR += docker SUBDIR += docker-compose SUBDIR += docker-credential-pass SUBDIR += docker-machine SUBDIR += docker-registry SUBDIR += doctl SUBDIR += doinkd SUBDIR += dolly SUBDIR += downtimed SUBDIR += dsbbatmon SUBDIR += dsbdriverd SUBDIR += dsblogoutmgr SUBDIR += dsbmc SUBDIR += dsbmc-cli SUBDIR += dsbmd SUBDIR += dsbsu SUBDIR += dsbwrtsysctl SUBDIR += dtc SUBDIR += dtpstree SUBDIR += dtrace-toolkit SUBDIR += du2ps SUBDIR += dua-cli SUBDIR += duf SUBDIR += duff SUBDIR += dunst SUBDIR += dupd SUBDIR += duplicity SUBDIR += duply SUBDIR += dupmerge SUBDIR += dust SUBDIR += dutree SUBDIR += dvd+rw-tools SUBDIR += dvdbackup SUBDIR += dvdimagecmp SUBDIR += dvdisaster SUBDIR += dvdvideo SUBDIR += dvtm SUBDIR += dwatch SUBDIR += dwatch-gource SUBDIR += dwatch-json SUBDIR += dwatch-pwsnoop SUBDIR += dynamic_motd SUBDIR += e2fsprogs SUBDIR += e2fsprogs-core SUBDIR += e2tools SUBDIR += ebsnvme-id SUBDIR += ec2-scripts SUBDIR += eclat SUBDIR += edid-decode SUBDIR += edk2 SUBDIR += egress-monitor SUBDIR += eject SUBDIR += eksctl SUBDIR += endian SUBDIR += enteruser SUBDIR += entr SUBDIR += env4801 SUBDIR += envconsul SUBDIR += epazote SUBDIR += equinix-metal-cli SUBDIR += erdtree SUBDIR += etc_os-release SUBDIR += etcmerge SUBDIR += ethname SUBDIR += evhz SUBDIR += evisum SUBDIR += evtviewer SUBDIR += exa SUBDIR += exfat-utils SUBDIR += extipl SUBDIR += eza SUBDIR += ezjail SUBDIR += f2 SUBDIR += f3 SUBDIR += facter SUBDIR += fakertc SUBDIR += faketty SUBDIR += fand SUBDIR += fanout SUBDIR += fastfetch SUBDIR += fatback SUBDIR += fclones SUBDIR += fcode-utils SUBDIR += fconfig SUBDIR += fcron SUBDIR += fd SUBDIR += fdupes SUBDIR += fetchlog SUBDIR += ffs2recov SUBDIR += file SUBDIR += filedupe SUBDIR += filelight SUBDIR += filemon SUBDIR += fileprune SUBDIR += fileschanged SUBDIR += filetype SUBDIR += filevercmp SUBDIR += filewatcherd SUBDIR += finfo SUBDIR += firstboot-cloudsetup SUBDIR += firstboot-freebsd-update SUBDIR += firstboot-pkgs SUBDIR += flasher SUBDIR += flashrom SUBDIR += flexbackup SUBDIR += flipperbit SUBDIR += flock SUBDIR += flog SUBDIR += flowgger SUBDIR += fluent-bit SUBDIR += fluxengine SUBDIR += fonteditfs SUBDIR += foremost SUBDIR += fortunelock SUBDIR += fpart SUBDIR += frand SUBDIR += freebsd-snapshot SUBDIR += freecolor SUBDIR += freedt SUBDIR += freeipmi SUBDIR += freesbie SUBDIR += froxlor SUBDIR += fsbackup SUBDIR += fsc SUBDIR += fsearch SUBDIR += fselect SUBDIR += fstyp SUBDIR += fswatch-mon SUBDIR += ftwin SUBDIR += fusefs-afuse SUBDIR += fusefs-bindfs SUBDIR += fusefs-chironfs SUBDIR += fusefs-cryptofs SUBDIR += fusefs-curlftpfs SUBDIR += fusefs-encfs SUBDIR += fusefs-exfat SUBDIR += fusefs-ext2 SUBDIR += fusefs-funionfs SUBDIR += fusefs-fusepak SUBDIR += fusefs-gitfs SUBDIR += fusefs-hfsfuse SUBDIR += fusefs-httpdirfs SUBDIR += fusefs-httpfs SUBDIR += fusefs-ifuse SUBDIR += fusefs-jmtpfs SUBDIR += fusefs-libs SUBDIR += fusefs-libs3 SUBDIR += fusefs-lkl SUBDIR += fusefs-mhddfs SUBDIR += fusefs-mp3fs SUBDIR += fusefs-nbt SUBDIR += fusefs-ntfs SUBDIR += fusefs-ntfs-compression SUBDIR += fusefs-pod SUBDIR += fusefs-rar2fs SUBDIR += fusefs-s3backer SUBDIR += fusefs-s3fs SUBDIR += fusefs-sandboxfs SUBDIR += fusefs-securefs SUBDIR += fusefs-simple-mtpfs SUBDIR += fusefs-smbnetfs SUBDIR += fusefs-sqlfs SUBDIR += fusefs-squashfuse SUBDIR += fusefs-sshfs SUBDIR += fusefs-unionfs SUBDIR += fusefs-unreliablefs SUBDIR += fusefs-webdavfs SUBDIR += fusefs-xfuse SUBDIR += fusefs-zip SUBDIR += fvcool SUBDIR += fwup SUBDIR += fx SUBDIR += g15daemon SUBDIR += gaffitter SUBDIR += ganglia-monitor-core SUBDIR += gapcmon SUBDIR += garcon SUBDIR += gather SUBDIR += gconf-editor SUBDIR += gcp-ops-agent SUBDIR += gdisk SUBDIR += gdmap SUBDIR += gdu SUBDIR += genimage SUBDIR += genisoimage SUBDIR += getdelta SUBDIR += geteltorito SUBDIR += getssl SUBDIR += gh-md-toc SUBDIR += gigolo SUBDIR += gitwatch SUBDIR += gkfreq SUBDIR += gkleds2 SUBDIR += gkrellflynn SUBDIR += gkrellm-trayicons SUBDIR += gkrellm2 SUBDIR += gkrelltop SUBDIR += glogg SUBDIR += glow SUBDIR += gnome-control-center SUBDIR += gnome-power-manager SUBDIR += gnome-settings-daemon SUBDIR += gnome-system-monitor SUBDIR += gnome_subr SUBDIR += go-wtf SUBDIR += goaccess SUBDIR += goawk SUBDIR += gobi_loader SUBDIR += gomi SUBDIR += gomplate SUBDIR += google-compute-engine-oslogin SUBDIR += gotop SUBDIR += govmomi SUBDIR += gpart SUBDIR += graffer SUBDIR += graveman SUBDIR += graylog SUBDIR += grub2-bhyve SUBDIR += grub2-efi SUBDIR += grub2-pcbsd SUBDIR += gsh SUBDIR += gsmartcontrol SUBDIR += gstat-rs SUBDIR += gstopd SUBDIR += gstreamer1-plugins-cdio SUBDIR += hammer2 SUBDIR += handlr SUBDIR += hardlink SUBDIR += hare SUBDIR += hared SUBDIR += hatop SUBDIR += hcloud SUBDIR += hdrecover SUBDIR += healthd SUBDIR += heirloom SUBDIR += helm SUBDIR += helmfile SUBDIR += herbe SUBDIR += hexpeek SUBDIR += hextools SUBDIR += hexyl SUBDIR += hfsexplorer SUBDIR += hfsutils SUBDIR += hid-tools SUBDIR += highlnk SUBDIR += hilite SUBDIR += host-setup SUBDIR += hostctl SUBDIR += hourglass SUBDIR += hpacucli SUBDIR += hploscripts SUBDIR += hptcli SUBDIR += hs-cputype SUBDIR += hstr SUBDIR += htop SUBDIR += httm SUBDIR += httplog SUBDIR += hw-probe SUBDIR += hwstat SUBDIR += i2c-tools SUBDIR += i7z SUBDIR += iat SUBDIR += iichid SUBDIR += imgurbash2 SUBDIR += immortal SUBDIR += incron SUBDIR += initool SUBDIR += inotify-tools SUBDIR += installwatch SUBDIR += intel-epct SUBDIR += intel-nvmupdate-100g SUBDIR += intel-nvmupdate-10g SUBDIR += intel-nvmupdate-40g SUBDIR += intel-pcm SUBDIR += intel-undervolt SUBDIR += inxi SUBDIR += iocage SUBDIR += iocage-devel SUBDIR += iocell SUBDIR += iograph SUBDIR += iohyve SUBDIR += ioping SUBDIR += ipa SUBDIR += ipad_charge SUBDIR += ipdbtools SUBDIR += ipfs-go SUBDIR += ipfs-go-fs-repo-migrations SUBDIR += ipget SUBDIR += ipmi_exporter SUBDIR += ipmitool SUBDIR += ipsc SUBDIR += isc-cron SUBDIR += isomaster SUBDIR += istio SUBDIR += jadm SUBDIR += jail-primer SUBDIR += jail_exporter SUBDIR += jailadmin SUBDIR += jaildaemon SUBDIR += jailme SUBDIR += jailrc SUBDIR += jailutils SUBDIR += javaservicewrapper SUBDIR += jdiskreport SUBDIR += jdupes SUBDIR += jest SUBDIR += jkill SUBDIR += jps SUBDIR += jruls SUBDIR += jstest-gtk SUBDIR += jtop SUBDIR += jtopen SUBDIR += jvmtop SUBDIR += k3b SUBDIR += k4dirstat SUBDIR += k8temp SUBDIR += k9s SUBDIR += kapp SUBDIR += kbackup SUBDIR += kcron SUBDIR += kdeadmin SUBDIR += kdebugsettings SUBDIR += kdf SUBDIR += kdialog SUBDIR += keyboard-daemon SUBDIR += keyd SUBDIR += kf5-baloo SUBDIR += kf5-kwallet SUBDIR += kf6-baloo SUBDIR += kf6-kuserfeedback SUBDIR += kf6-kwallet SUBDIR += kfloppy SUBDIR += khelpcenter SUBDIR += kiconvtool SUBDIR += kio-fuse SUBDIR += kldfind SUBDIR += kldpatch SUBDIR += kopia SUBDIR += kops SUBDIR += kpmcore SUBDIR += krename SUBDIR += kshutdown SUBDIR += ksystemlog SUBDIR += kubectl SUBDIR += kvmclock-kmod 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 += libdisplay-info SUBDIR += libdnf SUBDIR += libfvde SUBDIR += libg15 SUBDIR += libg15render SUBDIR += libieee1284 SUBDIR += libptytty SUBDIR += libretto-config SUBDIR += libsunacl SUBDIR += libsysstat SUBDIR += libtpms SUBDIR += libtree SUBDIR += libudisks SUBDIR += liburcu SUBDIR += limine SUBDIR += lineak-defaultplugin SUBDIR += lineak-xosdplugin SUBDIR += lineakd SUBDIR += linrename SUBDIR += linux-c7-dosfstools SUBDIR += linux-c7-lttng-ust SUBDIR += linux-c7-numactl-libs SUBDIR += linux-c7-userspace-rcu SUBDIR += linux-miniconda-installer SUBDIR += linux-rkbin SUBDIR += linuxfdisk SUBDIR += lizardfs SUBDIR += lmmon SUBDIR += lmon SUBDIR += lnav SUBDIR += lockfile-progs SUBDIR += loganalyzer SUBDIR += logrotate SUBDIR += logstalgia SUBDIR += logstash7 SUBDIR += logstash8 SUBDIR += logtool SUBDIR += logwatch SUBDIR += loki SUBDIR += lookat SUBDIR += lr SUBDIR += lsblk SUBDIR += lscpu SUBDIR += lsd SUBDIR += lsof SUBDIR += lsop SUBDIR += lsyncd SUBDIR += ltfs SUBDIR += ltrace SUBDIR += lttng-tools SUBDIR += lttng-ust SUBDIR += lua-puremagic SUBDIR += luckybackup SUBDIR += lxinput SUBDIR += lxqt-admin SUBDIR += lxqt-config SUBDIR += lxqt-policykit SUBDIR += lxqt-powermanagement SUBDIR += lxqt-qtplugin SUBDIR += lxsplit SUBDIR += lxtask SUBDIR += lxterminal SUBDIR += mac_nonet SUBDIR += mac_rtprio SUBDIR += mackerel-agent SUBDIR += magicrescue SUBDIR += manck SUBDIR += mapchan SUBDIR += mapdir 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 += mcfly SUBDIR += mcron SUBDIR += mcweject SUBDIR += mdf2iso SUBDIR += megacli SUBDIR += megarc SUBDIR += memdump SUBDIR += memfetch SUBDIR += memtest86 SUBDIR += memtest86+ SUBDIR += memtester SUBDIR += metalog SUBDIR += mfid SUBDIR += minikube SUBDIR += minimunin SUBDIR += minipot SUBDIR += minipro SUBDIR += minirsyslogd SUBDIR += mixer SUBDIR += mkdesktop SUBDIR += mkfwimage SUBDIR += mkjail SUBDIR += mkntpwd SUBDIR += mmc-utils SUBDIR += mmve SUBDIR += modman SUBDIR += modules SUBDIR += mog SUBDIR += monit SUBDIR += monitord SUBDIR += monitorix 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 += mountsmb2 SUBDIR += mping SUBDIR += mprocs SUBDIR += mptd SUBDIR += msiklm SUBDIR += msktutil SUBDIR += mstflint SUBDIR += msyslog SUBDIR += mtm SUBDIR += mtpfs SUBDIR += mtxorbd SUBDIR += multitail SUBDIR += munin-common SUBDIR += munin-contrib SUBDIR += munin-master SUBDIR += munin-node SUBDIR += mxkill SUBDIR += mybashburn SUBDIR += myrescue SUBDIR += n98-magerun SUBDIR += nagios-statd SUBDIR += namefix SUBDIR += nbosd SUBDIR += ncdu SUBDIR += ncdu2 SUBDIR += ndmpd SUBDIR += neofetch SUBDIR += nerdctl SUBDIR += netevent SUBDIR += nfcutils SUBDIR += nitrogen SUBDIR += nix SUBDIR += nmrpflash SUBDIR += no-login SUBDIR += node_exporter SUBDIR += nomad SUBDIR += nomad-pot-driver SUBDIR += npadmin SUBDIR += npmount SUBDIR += nq SUBDIR += nrg2iso SUBDIR += nss_ndb SUBDIR += nsysctl SUBDIR += ntfs2btrfs SUBDIR += ntfy SUBDIR += ntpstat SUBDIR += nut SUBDIR += nut-devel SUBDIR += nut_exporter SUBDIR += nvclock SUBDIR += nvimpager SUBDIR += nvme-cli SUBDIR += nvramtool SUBDIR += oak SUBDIR += obliterate SUBDIR += oc SUBDIR += ocijail SUBDIR += odo SUBDIR += ods2 SUBDIR += ohmu SUBDIR += omnibackup SUBDIR += onefetch SUBDIR += opa SUBDIR += open SUBDIR += opencorsairlink SUBDIR += opendircolors SUBDIR += openipmi SUBDIR += opensbi SUBDIR += openseachest SUBDIR += opentofu SUBDIR += openupsd SUBDIR += openzfs SUBDIR += openzfs-kmod SUBDIR += osinfo-db-tools SUBDIR += p5-App-Regather SUBDIR += p5-App-RunCron SUBDIR += p5-App-ZFSCurses SUBDIR += p5-BSD-Jail-Object SUBDIR += p5-BSD-Process SUBDIR += p5-BSD-Sysctl SUBDIR += p5-BSD-getloadavg SUBDIR += p5-BackupPC-XS SUBDIR += p5-Brackup SUBDIR += p5-Command-Runner SUBDIR += p5-Device-RAID-Poller SUBDIR += p5-Dir-Purge SUBDIR += p5-File-BackupCopy SUBDIR += p5-File-Cmp SUBDIR += p5-File-DirCompare SUBDIR += p5-File-Listing SUBDIR += p5-File-Log SUBDIR += p5-File-Next SUBDIR += p5-File-Rename 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-Filesys-ZFS SUBDIR += p5-Filesys-ZFS-Stat SUBDIR += p5-Fuse SUBDIR += p5-Fuse-Simple SUBDIR += p5-Giovanni SUBDIR += p5-Iterator-File SUBDIR += p5-Lchown SUBDIR += p5-Linux-Cpuinfo SUBDIR += p5-Log-Colorize-Helper 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-POSIX-Run-Capture SUBDIR += p5-Plugtools SUBDIR += p5-Plugtools-Plugins-HomeOU SUBDIR += p5-Probe-Perl SUBDIR += p5-Proc-PidUtil SUBDIR += p5-Proc-ProcessTable-Colorizer SUBDIR += p5-Proc-ProcessTable-InfoString SUBDIR += p5-Proc-ProcessTable-Match SUBDIR += p5-Proc-ProcessTable-ncps SUBDIR += p5-Proclet SUBDIR += p5-Quota SUBDIR += p5-Rex SUBDIR += p5-RundeckAPI 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-arclog SUBDIR += p5-reslog SUBDIR += packer SUBDIR += packmule SUBDIR += pacman SUBDIR += paicc SUBDIR += paladin SUBDIR += pam_xdg SUBDIR += panicmail SUBDIR += parafly SUBDIR += parallel SUBDIR += parkverbot SUBDIR += pass-otp SUBDIR += pass-secrets SUBDIR += pass-update SUBDIR += password-store SUBDIR += passwordsafe SUBDIR += patchelf SUBDIR += pax-utils SUBDIR += pbimaker SUBDIR += pc-networkmanager SUBDIR += pcapfix SUBDIR += pciutils SUBDIR += pcns SUBDIR += pcpustat SUBDIR += pdixtract SUBDIR += pdsh 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-proctitle SUBDIR += pefs-kmod SUBDIR += perp SUBDIR += personality SUBDIR += pfetch SUBDIR += pflogx SUBDIR += pfstat SUBDIR += pftables SUBDIR += pftop SUBDIR += php80-fileinfo SUBDIR += php80-posix SUBDIR += php81-fileinfo SUBDIR += php81-posix SUBDIR += php82-fileinfo SUBDIR += php82-posix SUBDIR += php83-fileinfo SUBDIR += php83-posix SUBDIR += phybs SUBDIR += pick SUBDIR += pidof SUBDIR += pies SUBDIR += pipemeter SUBDIR += plasma-pass SUBDIR += plasma5-discover SUBDIR += plasma5-drkonqi SUBDIR += plasma5-kde-cli-tools SUBDIR += plasma5-kinfocenter SUBDIR += plasma5-kmenuedit SUBDIR += plasma5-ksysguard SUBDIR += plasma5-ksystemstats SUBDIR += plasma5-libksysguard SUBDIR += plasma5-plasma-disks SUBDIR += plasma5-plasma-systemmonitor SUBDIR += plasma5-polkit-kde-agent-1 SUBDIR += plasma5-powerdevil SUBDIR += plasma5-systemsettings + SUBDIR += plasma6-drkonqi + SUBDIR += plasma6-kde-cli-tools + SUBDIR += plasma6-kinfocenter + SUBDIR += plasma6-kmenuedit + SUBDIR += plasma6-ksystemstats + SUBDIR += plasma6-libksysguard + SUBDIR += plasma6-plasma-disks + SUBDIR += plasma6-plasma-systemmonitor + SUBDIR += plasma6-polkit-kde-agent-1 + SUBDIR += plasma6-powerdevil + SUBDIR += plasma6-systemsettings SUBDIR += plconfig SUBDIR += plocate SUBDIR += pmt SUBDIR += pnscan SUBDIR += podman SUBDIR += podman-suite SUBDIR += polkit SUBDIR += polkit-gnome SUBDIR += polkit-qt SUBDIR += polkit-qt-1-devel SUBDIR += pot SUBDIR += potnet SUBDIR += poweralertd SUBDIR += powerdxx SUBDIR += powerman SUBDIR += powermon SUBDIR += pp SUBDIR += pprotectd SUBDIR += prips SUBDIR += procenv SUBDIR += process-viewer SUBDIR += procmap SUBDIR += procs SUBDIR += progsreiserfs SUBDIR += pslist SUBDIR += psmisc SUBDIR += pstack SUBDIR += pstacku SUBDIR += pstree SUBDIR += puppet-lint SUBDIR += puppet-mode.el SUBDIR += puppet7 SUBDIR += puppet8 SUBDIR += puppetserver7 SUBDIR += puppetserver8 SUBDIR += pv SUBDIR += pwd_unmkdb SUBDIR += pwgen SUBDIR += pwol SUBDIR += pwsafe SUBDIR += pxattr SUBDIR += pxp-agent SUBDIR += py-ansible-compat SUBDIR += py-ansible-core SUBDIR += py-ansible-lint SUBDIR += py-ansible-runner SUBDIR += py-azure-cli SUBDIR += py-azure-cli-acr SUBDIR += py-azure-cli-base SUBDIR += py-azure-cli-core SUBDIR += py-azure-cli-telemetry SUBDIR += py-bitrot SUBDIR += py-borgmatic SUBDIR += py-concurrent-log-handler SUBDIR += py-cron-descriptor SUBDIR += py-croniter SUBDIR += py-dict-toolbox SUBDIR += py-diffoscope SUBDIR += py-director SUBDIR += py-dirsync SUBDIR += py-distro SUBDIR += py-dlipower SUBDIR += py-docker SUBDIR += py-drmaa SUBDIR += py-elf_diff SUBDIR += py-execnet SUBDIR += py-filelike SUBDIR += py-filelock SUBDIR += py-focker SUBDIR += py-glances SUBDIR += py-google-compute-engine SUBDIR += py-hared SUBDIR += py-hcloud SUBDIR += py-honcho SUBDIR += py-howdoi SUBDIR += py-hpilo SUBDIR += py-iowait SUBDIR += py-ioztat SUBDIR += py-jailconf SUBDIR += py-keep SUBDIR += py-leviathan SUBDIR += py-liquidctl SUBDIR += py-mitogen SUBDIR += py-mqttwarn SUBDIR += py-nagiosplugin SUBDIR += py-packet-python SUBDIR += py-pkginfo SUBDIR += py-ploy SUBDIR += py-ploy_ezjail SUBDIR += py-plumbum SUBDIR += py-power SUBDIR += py-prometheus-zfs SUBDIR += py-psutil SUBDIR += py-ptyprocess SUBDIR += py-puremagic SUBDIR += py-py-cpuinfo SUBDIR += py-python-bareos SUBDIR += py-python-consul SUBDIR += py-python-consul2 SUBDIR += py-python-crontab SUBDIR += py-python-nomad SUBDIR += py-pytsk SUBDIR += py-pywatchman SUBDIR += py-pyznap SUBDIR += py-qmk SUBDIR += py-queuelib SUBDIR += py-ranger SUBDIR += py-rdiff-backup SUBDIR += py-resolve-march-native SUBDIR += py-salt SUBDIR += py-scandir SUBDIR += py-scarab SUBDIR += py-supervisor SUBDIR += py-tarsnapper SUBDIR += py-tmuxp SUBDIR += py-upt SUBDIR += py-upt-cpan SUBDIR += py-upt-freebsd SUBDIR += py-upt-pypi SUBDIR += py-upt-rubygems SUBDIR += py-uptime SUBDIR += py-zdaemon SUBDIR += py-zfs-autobackup SUBDIR += pydf SUBDIR += qchroot SUBDIR += qdirstat SUBDIR += qflipper SUBDIR += qjail SUBDIR += qjail54 SUBDIR += qlogtools SUBDIR += qsudo SUBDIR += qt5-qtdiag SUBDIR += qt5-qtpaths SUBDIR += qt5-qtplugininfo SUBDIR += qtpass SUBDIR += qtxdg-tools SUBDIR += quickjail SUBDIR += quicksynergy SUBDIR += racktables SUBDIR += radeontool SUBDIR += radeontop SUBDIR += radmind SUBDIR += rainbarf SUBDIR += raincoat SUBDIR += rcadm SUBDIR += rclean SUBDIR += rcm SUBDIR += rdate SUBDIR += rdfind SUBDIR += rdup SUBDIR += read-edid SUBDIR += recoverdm SUBDIR += reed SUBDIR += reggae SUBDIR += rej SUBDIR += rename SUBDIR += renameutils SUBDIR += reoback SUBDIR += reptyr SUBDIR += respond SUBDIR += rest-server SUBDIR += restic SUBDIR += retail SUBDIR += rex SUBDIR += rhc SUBDIR += rinse SUBDIR += rmlint SUBDIR += rocinante SUBDIR += rocr SUBDIR += roct SUBDIR += root-tail SUBDIR += rovclock SUBDIR += rpi-firmware SUBDIR += rset SUBDIR += rshim-user-space SUBDIR += rsnapshot SUBDIR += rsyncbackup SUBDIR += rsyncrypto SUBDIR += rsyslog8 SUBDIR += rtsx-kmod SUBDIR += rtty SUBDIR += rtx SUBDIR += rubygem-backup SUBDIR += rubygem-bolt 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-bin SUBDIR += rubygem-chef-cleanroom SUBDIR += rubygem-chef-config SUBDIR += rubygem-chef-telemetry SUBDIR += rubygem-chef-utils SUBDIR += rubygem-chef-vault SUBDIR += rubygem-chef-zero SUBDIR += rubygem-choria-mcorpc-support SUBDIR += rubygem-facter SUBDIR += rubygem-fluent-mixin-plaintextformatter SUBDIR += rubygem-fluent-plugin-config-expander SUBDIR += rubygem-fluent-plugin-file-alternative SUBDIR += rubygem-fluent-plugin-tail-asis SUBDIR += rubygem-fluentd SUBDIR += rubygem-fssm SUBDIR += rubygem-god SUBDIR += rubygem-guard SUBDIR += rubygem-guard-compat SUBDIR += rubygem-guard-cucumber 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-license-acceptance SUBDIR += rubygem-license_scout 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-puppetfile-resolver SUBDIR += rubygem-puppetserver-ca SUBDIR += rubygem-r10k SUBDIR += rubygem-redfish_client SUBDIR += rubygem-rubyipmi SUBDIR += rubygem-serverspec SUBDIR += rubygem-shellany 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-vagrant_cloud SUBDIR += rubygem-vmstat SUBDIR += rubygem-win32-file SUBDIR += rubygem-win32-file-security SUBDIR += rubygem-win32-file-stat SUBDIR += rubygem-winrm SUBDIR += rubygem-winrm-elevated SUBDIR += rubygem-winrm-fs SUBDIR += rubygem-yell SUBDIR += runas SUBDIR += rundeck SUBDIR += runiq SUBDIR += runit SUBDIR += runit-faster SUBDIR += runj SUBDIR += runwhen SUBDIR += rush SUBDIR += rust-coreutils SUBDIR += rust-findutils SUBDIR += rw SUBDIR += s-tui SUBDIR += s6 SUBDIR += s6-rc SUBDIR += safe-rm SUBDIR += safecat SUBDIR += safecopy SUBDIR += sake SUBDIR += samdruckerclientshell SUBDIR += samefile SUBDIR += samesame SUBDIR += sanoid SUBDIR += sanoid-devel SUBDIR += sas2ircu SUBDIR += sas3ircu SUBDIR += savelogs SUBDIR += scalpel SUBDIR += scan_ffs SUBDIR += scanbd SUBDIR += scanbuttond SUBDIR += scanmem SUBDIR += scct SUBDIR += schedutils SUBDIR += schilyutils SUBDIR += screen SUBDIR += screenfetch SUBDIR += screenie SUBDIR += scterc SUBDIR += sd-agent SUBDIR += sdparm SUBDIR += seatd SUBDIR += seatools SUBDIR += sec SUBDIR += sensu-go SUBDIR += serf SUBDIR += setcdboot SUBDIR += setsid SUBDIR += sg3_utils SUBDIR += shim SUBDIR += shlock SUBDIR += shmcat SUBDIR += shuf SUBDIR += siegfried SUBDIR += signon-kwallet-extension SUBDIR += signon-plugin-oauth2 SUBDIR += signon-qt5 SUBDIR += signon-ui SUBDIR += sispmctl SUBDIR += skopeo SUBDIR += slack SUBDIR += sleuthkit SUBDIR += slst SUBDIR += slurm-wlm SUBDIR += smart SUBDIR += smartmontools SUBDIR += smenu SUBDIR += smp_utils SUBDIR += smug SUBDIR += snap SUBDIR += snapraid SUBDIR += sndy SUBDIR += snmp_exporter SUBDIR += snooze SUBDIR += sockaddr SUBDIR += socket SUBDIR += socklog SUBDIR += solaar SUBDIR += spcm SUBDIR += spindown SUBDIR += spinner SUBDIR += spiped SUBDIR += squashfs-tools SUBDIR += squashfs-tools-ng SUBDIR += ssd_report SUBDIR += sshsudo SUBDIR += ssync SUBDIR += stalepid SUBDIR += stepsync SUBDIR += storcli SUBDIR += stow SUBDIR += stowES SUBDIR += stress SUBDIR += stressdisk SUBDIR += superiotool SUBDIR += swapd SUBDIR += swapexd SUBDIR += swapmon SUBDIR += swapusage SUBDIR += sweeper SUBDIR += swtpm SUBDIR += symlinks SUBDIR += symon SUBDIR += synergy SUBDIR += syngesture SUBDIR += sysctlbyname-improved-kmod SUBDIR += sysctlinfo-kmod SUBDIR += sysgather SUBDIR += sysinfo SUBDIR += syslinux SUBDIR += syslog-ng SUBDIR += syslogger SUBDIR += sysvbanner SUBDIR += szyszka SUBDIR += tai64nfrac SUBDIR += tailspin SUBDIR += tarsnap SUBDIR += tarsnap-gui SUBDIR += tarsnap-periodic SUBDIR += tartarus SUBDIR += tbku SUBDIR += tclsyslog SUBDIR += tcplist SUBDIR += tdir SUBDIR += tealdeer SUBDIR += tenshi SUBDIR += tere SUBDIR += terraform SUBDIR += terraform-docs SUBDIR += terraform-provider-gridscale SUBDIR += terraform-provider-vultr SUBDIR += terraform-switcher SUBDIR += terragrunt SUBDIR += testdisk SUBDIR += tflint SUBDIR += thefish SUBDIR += tiempo SUBDIR += timelimit SUBDIR += timemon SUBDIR += tiramisu SUBDIR += titlefix SUBDIR += tkdvd SUBDIR += tlsdate SUBDIR += tm SUBDIR += tmate SUBDIR += tmate-ssh-server SUBDIR += tmpreaper SUBDIR += tmpwatch SUBDIR += tmux SUBDIR += tmux-mem-cpu-load SUBDIR += tmux-xpanes SUBDIR += tmux23 SUBDIR += topgrade SUBDIR += topless SUBDIR += torque SUBDIR += toshctl SUBDIR += touchegg SUBDIR += toybox SUBDIR += tracker SUBDIR += tracker-miners SUBDIR += tracker3 SUBDIR += tree SUBDIR += triton SUBDIR += trueos-libqt5 SUBDIR += ts SUBDIR += tty-clock SUBDIR += ttyd SUBDIR += ttyload SUBDIR += tuckr SUBDIR += tuptime SUBDIR += turbostat 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-bhyve-arm64 SUBDIR += u-boot-chip SUBDIR += u-boot-clearfog SUBDIR += u-boot-cubieboard SUBDIR += u-boot-cubieboard2 SUBDIR += u-boot-cubox-hummingboard SUBDIR += u-boot-firefly-rk3399 SUBDIR += u-boot-imx-serial-loader SUBDIR += u-boot-master SUBDIR += u-boot-nanopi-a64 SUBDIR += u-boot-nanopi-m1plus SUBDIR += u-boot-nanopi-neo SUBDIR += u-boot-nanopi-neo-air SUBDIR += u-boot-nanopi-neo2 SUBDIR += u-boot-nanopi-r4s SUBDIR += u-boot-olimex-a20-som-evb SUBDIR += u-boot-olinuxino-lime SUBDIR += u-boot-olinuxino-lime2 SUBDIR += u-boot-olinuxino-lime2-emmc SUBDIR += u-boot-orangepi-one SUBDIR += u-boot-orangepi-pc SUBDIR += u-boot-orangepi-pc-plus SUBDIR += u-boot-orangepi-pc2 SUBDIR += u-boot-orangepi-plus-2e SUBDIR += u-boot-orangepi-r1 SUBDIR += u-boot-orangepi-zero SUBDIR += u-boot-orangepi-zero-plus SUBDIR += u-boot-pandaboard SUBDIR += u-boot-pcduino3 SUBDIR += u-boot-pine-h64 SUBDIR += u-boot-pine64 SUBDIR += u-boot-pine64-lts SUBDIR += u-boot-pinebook SUBDIR += u-boot-pinebookpro SUBDIR += u-boot-qemu-arm SUBDIR += u-boot-qemu-arm64 SUBDIR += u-boot-qemu-riscv64 SUBDIR += u-boot-riotboard SUBDIR += u-boot-rock-pi-4 SUBDIR += u-boot-rock64 SUBDIR += u-boot-rockpro64 SUBDIR += u-boot-rpi SUBDIR += u-boot-rpi-0-w SUBDIR += u-boot-rpi-arm64 SUBDIR += u-boot-rpi2 SUBDIR += u-boot-rpi3 SUBDIR += u-boot-rpi3-32 SUBDIR += u-boot-rpi4 SUBDIR += u-boot-sifive-fu540 SUBDIR += u-boot-sifive-fu740 SUBDIR += u-boot-sinovoip-bpi-m3 SUBDIR += u-boot-sopine SUBDIR += u-boot-sopine-spi SUBDIR += u-boot-tools SUBDIR += u-boot-wandboard SUBDIR += ua SUBDIR += ucspi-ipc SUBDIR += ucspi-proxy SUBDIR += ucspi-ssl SUBDIR += ucspi-tcp SUBDIR += ucspi-unix SUBDIR += udfclient SUBDIR += uefi-edk2-bhyve-csm SUBDIR += ufetch 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 += 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 += vector SUBDIR += viddy SUBDIR += videogen SUBDIR += vii SUBDIR += vils SUBDIR += vimpager SUBDIR += virt-what SUBDIR += virtualmin SUBDIR += vivid SUBDIR += vm-bhyve SUBDIR += vm-bhyve-devel SUBDIR += vmdktool SUBDIR += vmtouch SUBDIR += vobcopy SUBDIR += volman SUBDIR += vordog SUBDIR += vpnc-scripts SUBDIR += vttest SUBDIR += vzvol SUBDIR += wait_on SUBDIR += walk SUBDIR += watchfolder SUBDIR += watchman SUBDIR += watchmen SUBDIR += waynergy SUBDIR += webmin SUBDIR += weedit SUBDIR += wemux SUBDIR += whatpix SUBDIR += whowatch SUBDIR += wiimms SUBDIR += wimlib SUBDIR += wmapmload SUBDIR += wmbluecpu SUBDIR += wmbsdbatt SUBDIR += wmcpuload SUBDIR += wmcube SUBDIR += wmdiskmon SUBDIR += wmflame SUBDIR += wmmemfree SUBDIR += wmmemload SUBDIR += wmscript SUBDIR += wmtop SUBDIR += wmupmon SUBDIR += worldtools SUBDIR += wuzzah SUBDIR += x86info SUBDIR += xbatt SUBDIR += xbattbar SUBDIR += xcdroast SUBDIR += xcp 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-places-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 += xmbmon SUBDIR += xnvme SUBDIR += xorriso SUBDIR += xosview SUBDIR += xpipe SUBDIR += xstow SUBDIR += xsysstats SUBDIR += xxd SUBDIR += yadf SUBDIR += yadm SUBDIR += yank SUBDIR += z SUBDIR += zap SUBDIR += zbackup SUBDIR += zeitgeist SUBDIR += zellij SUBDIR += zeroer SUBDIR += zetaback SUBDIR += zetaback-devel 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 += zoxide SUBDIR += zpool-iostat-viz SUBDIR += zrep SUBDIR += zrepl SUBDIR += zsd SUBDIR += zsm SUBDIR += ztop SUBDIR += zxfer .include diff --git a/sysutils/plasma6-drkonqi/Makefile b/sysutils/plasma6-drkonqi/Makefile new file mode 100644 index 000000000000..40339f065061 --- /dev/null +++ b/sysutils/plasma6-drkonqi/Makefile @@ -0,0 +1,24 @@ +PORTNAME= drkonqi +DISTVERSION= ${KDE_PLASMA_VERSION} +CATEGORIES= sysutils kde kde-plasma + +MAINTAINER= kde@FreeBSD.org +COMMENT= Crash handler for KDE software + +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}psutil>=0:sysutils/py-psutil@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pygdbmi>=0:devel/py-pygdbmi@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}sentry-sdk>=0:devel/py-sentry-sdk@${PY_FLAVOR} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}psutil>=0:sysutils/py-psutil@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pygdbmi>=0:devel/py-pygdbmi@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}sentry-sdk>=0:devel/py-sentry-sdk@${PY_FLAVOR} + +USES= cmake gettext kde:6 pkgconfig python qt:6 tar:xz +USE_KDE= completion config coreaddons crash i18n idletime itemmodels \ + jobwidgets kcmutils kio kirigami2 notifications service \ + statusnotifieritem syntaxhighlighting userfeedback wallet \ + widgetsaddons windowsystem \ + ecm:build +USE_QT= base declarative +CMAKE_OFF= WITH_PYTHON_VENDORING + +.include diff --git a/sysutils/plasma6-drkonqi/distinfo b/sysutils/plasma6-drkonqi/distinfo new file mode 100644 index 000000000000..caa7cb56728a --- /dev/null +++ b/sysutils/plasma6-drkonqi/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1701531665 +SHA256 (KDE/plasma/5.90.0/drkonqi-5.90.0.tar.xz) = 7e4446f342e355d390f117a2f19d7dd0c0691997ae31672c541533dd0c239022 +SIZE (KDE/plasma/5.90.0/drkonqi-5.90.0.tar.xz) = 880860 diff --git a/sysutils/plasma6-drkonqi/pkg-plist b/sysutils/plasma6-drkonqi/pkg-plist new file mode 100644 index 000000000000..b305f8718ce5 --- /dev/null +++ b/sysutils/plasma6-drkonqi/pkg-plist @@ -0,0 +1,116 @@ +bin/drkonqi-sentry-data +lib/libexec/drkonqi +lib/libexec/drkonqi-sentry-postman +lib/systemd/user/default.target.wants/drkonqi-sentry-postman.path +lib/systemd/user/drkonqi-sentry-postman.path +lib/systemd/user/drkonqi-sentry-postman.service +lib/systemd/user/drkonqi-sentry-postman.timer +lib/systemd/user/plasma-core.target.wants/drkonqi-sentry-postman.path +lib/systemd/user/plasma-core.target.wants/drkonqi-sentry-postman.timer +lib/systemd/user/timers.target.wants/drkonqi-sentry-postman.timer +share/applications/org.kde.drkonqi.desktop +%%DATADIR%%/debuggers/external.mac/lldbrc +%%DATADIR%%/debuggers/external/cdbrc +%%DATADIR%%/debuggers/external/gdbrc +%%DATADIR%%/debuggers/external/kdbgrc +%%DATADIR%%/debuggers/external/lldbrc +%%DATADIR%%/debuggers/internal/cdbrc +%%DATADIR%%/debuggers/internal/dbxrc +%%DATADIR%%/debuggers/internal/gdbrc +%%DATADIR%%/debuggers/internal/kdbgwinrc +%%DATADIR%%/debuggers/internal/lldbrc +%%DATADIR%%/gdb/python/gdb_preamble/__init__.py +%%DATADIR%%/gdb/python/gdb_preamble/preamble.py +%%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/az/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/ka/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 +share/qlogging-categories6/drkonqi.categories diff --git a/sysutils/plasma6-kde-cli-tools/Makefile b/sysutils/plasma6-kde-cli-tools/Makefile new file mode 100644 index 000000000000..a701063bd8c3 --- /dev/null +++ b/sysutils/plasma6-kde-cli-tools/Makefile @@ -0,0 +1,14 @@ +PORTNAME= kde-cli-tools +DISTVERSION= ${KDE_PLASMA_VERSION} +CATEGORIES= sysutils kde kde-plasma + +MAINTAINER= kde@FreeBSD.org +COMMENT= Tools based on KDE Frameworks to better interact with the system + +USES= cmake gettext kde:6 qt:6 tar:xz +USE_KDE= config coreaddons doctools i18n iconthemes kcmutils kdesu kio \ + parts service windowsystem \ + ecm:build +USE_QT= base svg + +.include diff --git a/sysutils/plasma6-kde-cli-tools/distinfo b/sysutils/plasma6-kde-cli-tools/distinfo new file mode 100644 index 000000000000..f3094df98eb0 --- /dev/null +++ b/sysutils/plasma6-kde-cli-tools/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1701525052 +SHA256 (KDE/plasma/5.90.0/kde-cli-tools-5.90.0.tar.xz) = 6a7e11387d97c8e4905fcbc37d8fc7226c631d06124ad2e134002ce087b9c22b +SIZE (KDE/plasma/5.90.0/kde-cli-tools-5.90.0.tar.xz) = 620668 diff --git a/sysutils/plasma6-kde-cli-tools/pkg-plist b/sysutils/plasma6-kde-cli-tools/pkg-plist new file mode 100644 index 000000000000..e2da82748376 --- /dev/null +++ b/sysutils/plasma6-kde-cli-tools/pkg-plist @@ -0,0 +1,637 @@ +bin/kbroadcastnotification +bin/kde-inhibit +bin/kde-open +bin/kde-open5 +bin/kdecp +bin/kdecp5 +bin/kdemv +bin/kdemv5 +bin/keditfiletype +bin/keditfiletype5 +bin/kinfo +bin/kioclient +bin/kioclient5 +bin/kmimetypefinder +bin/kmimetypefinder5 +bin/kstart +bin/kstart5 +bin/ksvgtopng +bin/ksvgtopng5 +bin/plasma-open-settings +lib/libexec/kf6/kdeeject +lib/libexec/kf6/kdesu +%%QT_PLUGINDIR%%/plasma/kcms/systemsettings_qwidgets/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/fr/man1/kdesu.1.gz +man/id/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/ru/man1/kdesu.1.gz +man/sr/man1/kdesu.1.gz +man/sr@latin/man1/kdesu.1.gz +man/sv/man1/kdesu.1.gz +man/tr/man1/kdesu.1.gz +man/uk/man1/kdesu.1.gz +share/applications/kcm_filetypes.desktop +share/applications/org.kde.keditfiletype.desktop +share/applications/org.kde.plasma.settings.open.desktop +share/doc/HTML/ca/kcontrol6/filetypes/index.cache.bz2 +share/doc/HTML/ca/kcontrol6/filetypes/index.docbook +share/doc/HTML/ca/kdesu/index.cache.bz2 +share/doc/HTML/ca/kdesu/index.docbook +share/doc/HTML/de/kcontrol6/filetypes/index.cache.bz2 +share/doc/HTML/de/kcontrol6/filetypes/index.docbook +share/doc/HTML/de/kdesu/index.cache.bz2 +share/doc/HTML/de/kdesu/index.docbook +share/doc/HTML/en/kcontrol6/filetypes/index.cache.bz2 +share/doc/HTML/en/kcontrol6/filetypes/index.docbook +share/doc/HTML/en/kdesu/index.cache.bz2 +share/doc/HTML/en/kdesu/index.docbook +share/doc/HTML/es/kcontrol6/filetypes/index.cache.bz2 +share/doc/HTML/es/kcontrol6/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/fr/kcontrol6/filetypes/index.cache.bz2 +share/doc/HTML/fr/kcontrol6/filetypes/index.docbook +share/doc/HTML/fr/kdesu/index.cache.bz2 +share/doc/HTML/fr/kdesu/index.docbook +share/doc/HTML/id/kcontrol6/filetypes/index.cache.bz2 +share/doc/HTML/id/kcontrol6/filetypes/index.docbook +share/doc/HTML/id/kdesu/index.cache.bz2 +share/doc/HTML/id/kdesu/index.docbook +share/doc/HTML/it/kcontrol6/filetypes/index.cache.bz2 +share/doc/HTML/it/kcontrol6/filetypes/index.docbook +share/doc/HTML/it/kdesu/index.cache.bz2 +share/doc/HTML/it/kdesu/index.docbook +share/doc/HTML/nl/kcontrol6/filetypes/index.cache.bz2 +share/doc/HTML/nl/kcontrol6/filetypes/index.docbook +share/doc/HTML/nl/kdesu/index.cache.bz2 +share/doc/HTML/nl/kdesu/index.docbook +share/doc/HTML/pt/kcontrol6/filetypes/index.cache.bz2 +share/doc/HTML/pt/kcontrol6/filetypes/index.docbook +share/doc/HTML/pt/kdesu/index.cache.bz2 +share/doc/HTML/pt/kdesu/index.docbook +share/doc/HTML/pt_BR/kcontrol6/filetypes/index.cache.bz2 +share/doc/HTML/pt_BR/kcontrol6/filetypes/index.docbook +share/doc/HTML/pt_BR/kdesu/index.cache.bz2 +share/doc/HTML/pt_BR/kdesu/index.docbook +share/doc/HTML/ru/kcontrol6/filetypes/index.cache.bz2 +share/doc/HTML/ru/kcontrol6/filetypes/index.docbook +share/doc/HTML/ru/kdesu/index.cache.bz2 +share/doc/HTML/ru/kdesu/index.docbook +share/doc/HTML/sr/kcontrol6/filetypes/index.cache.bz2 +share/doc/HTML/sr/kcontrol6/filetypes/index.docbook +share/doc/HTML/sr/kdesu/index.cache.bz2 +share/doc/HTML/sr/kdesu/index.docbook +share/doc/HTML/sr@latin/kcontrol6/filetypes/index.cache.bz2 +share/doc/HTML/sr@latin/kcontrol6/filetypes/index.docbook +share/doc/HTML/sr@latin/kdesu/index.cache.bz2 +share/doc/HTML/sr@latin/kdesu/index.docbook +share/doc/HTML/sv/kcontrol6/filetypes/index.cache.bz2 +share/doc/HTML/sv/kcontrol6/filetypes/index.docbook +share/doc/HTML/sv/kdesu/index.cache.bz2 +share/doc/HTML/sv/kdesu/index.docbook +share/doc/HTML/tr/kcontrol6/filetypes/index.cache.bz2 +share/doc/HTML/tr/kcontrol6/filetypes/index.docbook +share/doc/HTML/tr/kdesu/index.cache.bz2 +share/doc/HTML/tr/kdesu/index.docbook +share/doc/HTML/uk/kcontrol6/filetypes/index.cache.bz2 +share/doc/HTML/uk/kcontrol6/filetypes/index.docbook +share/doc/HTML/uk/kdesu/index.cache.bz2 +share/doc/HTML/uk/kdesu/index.docbook +share/locale/af/LC_MESSAGES/kcm5_filetypes.mo +share/locale/af/LC_MESSAGES/kdesu5.mo +share/locale/af/LC_MESSAGES/kstart5.mo +share/locale/ar/LC_MESSAGES/kbroadcastnotification.mo +share/locale/ar/LC_MESSAGES/kcm5_filetypes.mo +share/locale/ar/LC_MESSAGES/kdesu5.mo +share/locale/ar/LC_MESSAGES/kioclient.mo +share/locale/ar/LC_MESSAGES/kmimetypefinder5.mo +share/locale/ar/LC_MESSAGES/kstart5.mo +share/locale/ar/LC_MESSAGES/plasma-open-settings.mo +share/locale/ast/LC_MESSAGES/kbroadcastnotification.mo +share/locale/ast/LC_MESSAGES/kcm5_filetypes.mo +share/locale/ast/LC_MESSAGES/kdesu5.mo +share/locale/ast/LC_MESSAGES/kioclient.mo +share/locale/ast/LC_MESSAGES/kmimetypefinder5.mo +share/locale/ast/LC_MESSAGES/kstart5.mo +share/locale/ast/LC_MESSAGES/plasma-open-settings.mo +share/locale/az/LC_MESSAGES/kbroadcastnotification.mo +share/locale/az/LC_MESSAGES/kcm5_filetypes.mo +share/locale/az/LC_MESSAGES/kdesu5.mo +share/locale/az/LC_MESSAGES/kioclient.mo +share/locale/az/LC_MESSAGES/kmimetypefinder5.mo +share/locale/az/LC_MESSAGES/kstart5.mo +share/locale/az/LC_MESSAGES/plasma-open-settings.mo +share/locale/be/LC_MESSAGES/kcm5_filetypes.mo +share/locale/be/LC_MESSAGES/kdesu5.mo +share/locale/be/LC_MESSAGES/kioclient.mo +share/locale/be/LC_MESSAGES/kmimetypefinder5.mo +share/locale/be/LC_MESSAGES/kstart5.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/kbroadcastnotification.mo +share/locale/bg/LC_MESSAGES/kcm5_filetypes.mo +share/locale/bg/LC_MESSAGES/kdesu5.mo +share/locale/bg/LC_MESSAGES/kioclient.mo +share/locale/bg/LC_MESSAGES/kmimetypefinder5.mo +share/locale/bg/LC_MESSAGES/kstart5.mo +share/locale/bg/LC_MESSAGES/plasma-open-settings.mo +share/locale/bn/LC_MESSAGES/kcm5_filetypes.mo +share/locale/bn/LC_MESSAGES/kstart5.mo +share/locale/bn_IN/LC_MESSAGES/kcm5_filetypes.mo +share/locale/bn_IN/LC_MESSAGES/kdesu5.mo +share/locale/bn_IN/LC_MESSAGES/kioclient.mo +share/locale/bn_IN/LC_MESSAGES/kmimetypefinder5.mo +share/locale/bn_IN/LC_MESSAGES/kstart5.mo +share/locale/br/LC_MESSAGES/kcm5_filetypes.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/kdesu5.mo +share/locale/bs/LC_MESSAGES/kioclient.mo +share/locale/bs/LC_MESSAGES/kmimetypefinder5.mo +share/locale/bs/LC_MESSAGES/kstart5.mo +share/locale/ca/LC_MESSAGES/kbroadcastnotification.mo +share/locale/ca/LC_MESSAGES/kcm5_filetypes.mo +share/locale/ca/LC_MESSAGES/kdesu5.mo +share/locale/ca/LC_MESSAGES/kioclient.mo +share/locale/ca/LC_MESSAGES/kmimetypefinder5.mo +share/locale/ca/LC_MESSAGES/kstart5.mo +share/locale/ca/LC_MESSAGES/plasma-open-settings.mo +share/locale/ca@valencia/LC_MESSAGES/kbroadcastnotification.mo +share/locale/ca@valencia/LC_MESSAGES/kcm5_filetypes.mo +share/locale/ca@valencia/LC_MESSAGES/kdesu5.mo +share/locale/ca@valencia/LC_MESSAGES/kioclient.mo +share/locale/ca@valencia/LC_MESSAGES/kmimetypefinder5.mo +share/locale/ca@valencia/LC_MESSAGES/kstart5.mo +share/locale/ca@valencia/LC_MESSAGES/plasma-open-settings.mo +share/locale/cs/LC_MESSAGES/kbroadcastnotification.mo +share/locale/cs/LC_MESSAGES/kcm5_filetypes.mo +share/locale/cs/LC_MESSAGES/kdesu5.mo +share/locale/cs/LC_MESSAGES/kioclient.mo +share/locale/cs/LC_MESSAGES/kmimetypefinder5.mo +share/locale/cs/LC_MESSAGES/kstart5.mo +share/locale/cs/LC_MESSAGES/plasma-open-settings.mo +share/locale/csb/LC_MESSAGES/kcm5_filetypes.mo +share/locale/csb/LC_MESSAGES/kdesu5.mo +share/locale/csb/LC_MESSAGES/kioclient.mo +share/locale/csb/LC_MESSAGES/kmimetypefinder5.mo +share/locale/csb/LC_MESSAGES/kstart5.mo +share/locale/cy/LC_MESSAGES/kcm5_filetypes.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/kdesu5.mo +share/locale/da/LC_MESSAGES/kioclient.mo +share/locale/da/LC_MESSAGES/kmimetypefinder5.mo +share/locale/da/LC_MESSAGES/kstart5.mo +share/locale/de/LC_MESSAGES/kbroadcastnotification.mo +share/locale/de/LC_MESSAGES/kcm5_filetypes.mo +share/locale/de/LC_MESSAGES/kdesu5.mo +share/locale/de/LC_MESSAGES/kioclient.mo +share/locale/de/LC_MESSAGES/kmimetypefinder5.mo +share/locale/de/LC_MESSAGES/kstart5.mo +share/locale/de/LC_MESSAGES/plasma-open-settings.mo +share/locale/el/LC_MESSAGES/kbroadcastnotification.mo +share/locale/el/LC_MESSAGES/kcm5_filetypes.mo +share/locale/el/LC_MESSAGES/kdesu5.mo +share/locale/el/LC_MESSAGES/kioclient.mo +share/locale/el/LC_MESSAGES/kmimetypefinder5.mo +share/locale/el/LC_MESSAGES/kstart5.mo +share/locale/el/LC_MESSAGES/plasma-open-settings.mo +share/locale/en_GB/LC_MESSAGES/kbroadcastnotification.mo +share/locale/en_GB/LC_MESSAGES/kcm5_filetypes.mo +share/locale/en_GB/LC_MESSAGES/kdesu5.mo +share/locale/en_GB/LC_MESSAGES/kioclient.mo +share/locale/en_GB/LC_MESSAGES/kmimetypefinder5.mo +share/locale/en_GB/LC_MESSAGES/kstart5.mo +share/locale/en_GB/LC_MESSAGES/plasma-open-settings.mo +share/locale/eo/LC_MESSAGES/kbroadcastnotification.mo +share/locale/eo/LC_MESSAGES/kcm5_filetypes.mo +share/locale/eo/LC_MESSAGES/kdesu5.mo +share/locale/eo/LC_MESSAGES/kioclient.mo +share/locale/eo/LC_MESSAGES/kmimetypefinder5.mo +share/locale/eo/LC_MESSAGES/kstart5.mo +share/locale/eo/LC_MESSAGES/plasma-open-settings.mo +share/locale/es/LC_MESSAGES/kbroadcastnotification.mo +share/locale/es/LC_MESSAGES/kcm5_filetypes.mo +share/locale/es/LC_MESSAGES/kdesu5.mo +share/locale/es/LC_MESSAGES/kioclient.mo +share/locale/es/LC_MESSAGES/kmimetypefinder5.mo +share/locale/es/LC_MESSAGES/kstart5.mo +share/locale/es/LC_MESSAGES/plasma-open-settings.mo +share/locale/et/LC_MESSAGES/kbroadcastnotification.mo +share/locale/et/LC_MESSAGES/kcm5_filetypes.mo +share/locale/et/LC_MESSAGES/kdesu5.mo +share/locale/et/LC_MESSAGES/kioclient.mo +share/locale/et/LC_MESSAGES/kmimetypefinder5.mo +share/locale/et/LC_MESSAGES/kstart5.mo +share/locale/eu/LC_MESSAGES/kbroadcastnotification.mo +share/locale/eu/LC_MESSAGES/kcm5_filetypes.mo +share/locale/eu/LC_MESSAGES/kdesu5.mo +share/locale/eu/LC_MESSAGES/kioclient.mo +share/locale/eu/LC_MESSAGES/kmimetypefinder5.mo +share/locale/eu/LC_MESSAGES/kstart5.mo +share/locale/eu/LC_MESSAGES/plasma-open-settings.mo +share/locale/fa/LC_MESSAGES/kcm5_filetypes.mo +share/locale/fa/LC_MESSAGES/kdesu5.mo +share/locale/fa/LC_MESSAGES/kioclient.mo +share/locale/fa/LC_MESSAGES/kmimetypefinder5.mo +share/locale/fa/LC_MESSAGES/kstart5.mo +share/locale/fi/LC_MESSAGES/kbroadcastnotification.mo +share/locale/fi/LC_MESSAGES/kcm5_filetypes.mo +share/locale/fi/LC_MESSAGES/kdesu5.mo +share/locale/fi/LC_MESSAGES/kioclient.mo +share/locale/fi/LC_MESSAGES/kmimetypefinder5.mo +share/locale/fi/LC_MESSAGES/kstart5.mo +share/locale/fi/LC_MESSAGES/plasma-open-settings.mo +share/locale/fr/LC_MESSAGES/kbroadcastnotification.mo +share/locale/fr/LC_MESSAGES/kcm5_filetypes.mo +share/locale/fr/LC_MESSAGES/kdesu5.mo +share/locale/fr/LC_MESSAGES/kioclient.mo +share/locale/fr/LC_MESSAGES/kmimetypefinder5.mo +share/locale/fr/LC_MESSAGES/kstart5.mo +share/locale/fr/LC_MESSAGES/plasma-open-settings.mo +share/locale/fy/LC_MESSAGES/kcm5_filetypes.mo +share/locale/fy/LC_MESSAGES/kdesu5.mo +share/locale/fy/LC_MESSAGES/kioclient.mo +share/locale/fy/LC_MESSAGES/kmimetypefinder5.mo +share/locale/fy/LC_MESSAGES/kstart5.mo +share/locale/ga/LC_MESSAGES/kcm5_filetypes.mo +share/locale/ga/LC_MESSAGES/kdesu5.mo +share/locale/ga/LC_MESSAGES/kioclient.mo +share/locale/ga/LC_MESSAGES/kmimetypefinder5.mo +share/locale/ga/LC_MESSAGES/kstart5.mo +share/locale/gl/LC_MESSAGES/kbroadcastnotification.mo +share/locale/gl/LC_MESSAGES/kcm5_filetypes.mo +share/locale/gl/LC_MESSAGES/kdesu5.mo +share/locale/gl/LC_MESSAGES/kioclient.mo +share/locale/gl/LC_MESSAGES/kmimetypefinder5.mo +share/locale/gl/LC_MESSAGES/kstart5.mo +share/locale/gl/LC_MESSAGES/plasma-open-settings.mo +share/locale/gu/LC_MESSAGES/kcm5_filetypes.mo +share/locale/gu/LC_MESSAGES/kdesu5.mo +share/locale/gu/LC_MESSAGES/kioclient.mo +share/locale/gu/LC_MESSAGES/kmimetypefinder5.mo +share/locale/gu/LC_MESSAGES/kstart5.mo +share/locale/he/LC_MESSAGES/kbroadcastnotification.mo +share/locale/he/LC_MESSAGES/kcm5_filetypes.mo +share/locale/he/LC_MESSAGES/kdesu5.mo +share/locale/he/LC_MESSAGES/kioclient.mo +share/locale/he/LC_MESSAGES/kmimetypefinder5.mo +share/locale/he/LC_MESSAGES/kstart5.mo +share/locale/hi/LC_MESSAGES/kcm5_filetypes.mo +share/locale/hi/LC_MESSAGES/kdesu5.mo +share/locale/hi/LC_MESSAGES/kioclient.mo +share/locale/hi/LC_MESSAGES/kmimetypefinder5.mo +share/locale/hi/LC_MESSAGES/kstart5.mo +share/locale/hne/LC_MESSAGES/kcm5_filetypes.mo +share/locale/hne/LC_MESSAGES/kdesu5.mo +share/locale/hne/LC_MESSAGES/kioclient.mo +share/locale/hne/LC_MESSAGES/kmimetypefinder5.mo +share/locale/hne/LC_MESSAGES/kstart5.mo +share/locale/hr/LC_MESSAGES/kcm5_filetypes.mo +share/locale/hr/LC_MESSAGES/kdesu5.mo +share/locale/hr/LC_MESSAGES/kioclient.mo +share/locale/hr/LC_MESSAGES/kmimetypefinder5.mo +share/locale/hr/LC_MESSAGES/kstart5.mo +share/locale/hsb/LC_MESSAGES/kcm5_filetypes.mo +share/locale/hsb/LC_MESSAGES/kdesu5.mo +share/locale/hsb/LC_MESSAGES/kioclient.mo +share/locale/hsb/LC_MESSAGES/kmimetypefinder5.mo +share/locale/hsb/LC_MESSAGES/kstart5.mo +share/locale/hu/LC_MESSAGES/kbroadcastnotification.mo +share/locale/hu/LC_MESSAGES/kcm5_filetypes.mo +share/locale/hu/LC_MESSAGES/kdesu5.mo +share/locale/hu/LC_MESSAGES/kioclient.mo +share/locale/hu/LC_MESSAGES/kmimetypefinder5.mo +share/locale/hu/LC_MESSAGES/kstart5.mo +share/locale/hu/LC_MESSAGES/plasma-open-settings.mo +share/locale/ia/LC_MESSAGES/kbroadcastnotification.mo +share/locale/ia/LC_MESSAGES/kcm5_filetypes.mo +share/locale/ia/LC_MESSAGES/kdesu5.mo +share/locale/ia/LC_MESSAGES/kioclient.mo +share/locale/ia/LC_MESSAGES/kmimetypefinder5.mo +share/locale/ia/LC_MESSAGES/kstart5.mo +share/locale/ia/LC_MESSAGES/plasma-open-settings.mo +share/locale/id/LC_MESSAGES/kbroadcastnotification.mo +share/locale/id/LC_MESSAGES/kcm5_filetypes.mo +share/locale/id/LC_MESSAGES/kdesu5.mo +share/locale/id/LC_MESSAGES/kioclient.mo +share/locale/id/LC_MESSAGES/kmimetypefinder5.mo +share/locale/id/LC_MESSAGES/kstart5.mo +share/locale/is/LC_MESSAGES/kcm5_filetypes.mo +share/locale/is/LC_MESSAGES/kdesu5.mo +share/locale/is/LC_MESSAGES/kioclient.mo +share/locale/is/LC_MESSAGES/kmimetypefinder5.mo +share/locale/is/LC_MESSAGES/kstart5.mo +share/locale/it/LC_MESSAGES/kbroadcastnotification.mo +share/locale/it/LC_MESSAGES/kcm5_filetypes.mo +share/locale/it/LC_MESSAGES/kdesu5.mo +share/locale/it/LC_MESSAGES/kioclient.mo +share/locale/it/LC_MESSAGES/kmimetypefinder5.mo +share/locale/it/LC_MESSAGES/kstart5.mo +share/locale/it/LC_MESSAGES/plasma-open-settings.mo +share/locale/ja/LC_MESSAGES/kbroadcastnotification.mo +share/locale/ja/LC_MESSAGES/kcm5_filetypes.mo +share/locale/ja/LC_MESSAGES/kdesu5.mo +share/locale/ja/LC_MESSAGES/kioclient.mo +share/locale/ja/LC_MESSAGES/kmimetypefinder5.mo +share/locale/ja/LC_MESSAGES/kstart5.mo +share/locale/ja/LC_MESSAGES/plasma-open-settings.mo +share/locale/ka/LC_MESSAGES/kbroadcastnotification.mo +share/locale/ka/LC_MESSAGES/kcm5_filetypes.mo +share/locale/ka/LC_MESSAGES/kdesu5.mo +share/locale/ka/LC_MESSAGES/kioclient.mo +share/locale/ka/LC_MESSAGES/kmimetypefinder5.mo +share/locale/ka/LC_MESSAGES/kstart5.mo +share/locale/ka/LC_MESSAGES/plasma-open-settings.mo +share/locale/kk/LC_MESSAGES/kcm5_filetypes.mo +share/locale/kk/LC_MESSAGES/kdesu5.mo +share/locale/kk/LC_MESSAGES/kioclient.mo +share/locale/kk/LC_MESSAGES/kmimetypefinder5.mo +share/locale/kk/LC_MESSAGES/kstart5.mo +share/locale/km/LC_MESSAGES/kcm5_filetypes.mo +share/locale/km/LC_MESSAGES/kdesu5.mo +share/locale/km/LC_MESSAGES/kioclient.mo +share/locale/km/LC_MESSAGES/kmimetypefinder5.mo +share/locale/km/LC_MESSAGES/kstart5.mo +share/locale/kn/LC_MESSAGES/kcm5_filetypes.mo +share/locale/kn/LC_MESSAGES/kdesu5.mo +share/locale/kn/LC_MESSAGES/kioclient.mo +share/locale/kn/LC_MESSAGES/kmimetypefinder5.mo +share/locale/kn/LC_MESSAGES/kstart5.mo +share/locale/ko/LC_MESSAGES/kbroadcastnotification.mo +share/locale/ko/LC_MESSAGES/kcm5_filetypes.mo +share/locale/ko/LC_MESSAGES/kdesu5.mo +share/locale/ko/LC_MESSAGES/kioclient.mo +share/locale/ko/LC_MESSAGES/kmimetypefinder5.mo +share/locale/ko/LC_MESSAGES/kstart5.mo +share/locale/ko/LC_MESSAGES/plasma-open-settings.mo +share/locale/ku/LC_MESSAGES/kcm5_filetypes.mo +share/locale/ku/LC_MESSAGES/kdesu5.mo +share/locale/ku/LC_MESSAGES/kioclient.mo +share/locale/ku/LC_MESSAGES/kmimetypefinder5.mo +share/locale/ku/LC_MESSAGES/kstart5.mo +share/locale/lt/LC_MESSAGES/kbroadcastnotification.mo +share/locale/lt/LC_MESSAGES/kcm5_filetypes.mo +share/locale/lt/LC_MESSAGES/kdesu5.mo +share/locale/lt/LC_MESSAGES/kioclient.mo +share/locale/lt/LC_MESSAGES/kmimetypefinder5.mo +share/locale/lt/LC_MESSAGES/kstart5.mo +share/locale/lt/LC_MESSAGES/plasma-open-settings.mo +share/locale/lv/LC_MESSAGES/kcm5_filetypes.mo +share/locale/lv/LC_MESSAGES/kdesu5.mo +share/locale/lv/LC_MESSAGES/kioclient.mo +share/locale/lv/LC_MESSAGES/kmimetypefinder5.mo +share/locale/lv/LC_MESSAGES/kstart5.mo +share/locale/mai/LC_MESSAGES/kcm5_filetypes.mo +share/locale/mai/LC_MESSAGES/kdesu5.mo +share/locale/mai/LC_MESSAGES/kioclient.mo +share/locale/mai/LC_MESSAGES/kmimetypefinder5.mo +share/locale/mai/LC_MESSAGES/kstart5.mo +share/locale/mk/LC_MESSAGES/kcm5_filetypes.mo +share/locale/mk/LC_MESSAGES/kdesu5.mo +share/locale/mk/LC_MESSAGES/kioclient.mo +share/locale/mk/LC_MESSAGES/kmimetypefinder5.mo +share/locale/mk/LC_MESSAGES/kstart5.mo +share/locale/ml/LC_MESSAGES/kbroadcastnotification.mo +share/locale/ml/LC_MESSAGES/kcm5_filetypes.mo +share/locale/ml/LC_MESSAGES/kdesu5.mo +share/locale/ml/LC_MESSAGES/kioclient.mo +share/locale/ml/LC_MESSAGES/kmimetypefinder5.mo +share/locale/ml/LC_MESSAGES/kstart5.mo +share/locale/mr/LC_MESSAGES/kcm5_filetypes.mo +share/locale/mr/LC_MESSAGES/kdesu5.mo +share/locale/mr/LC_MESSAGES/kioclient.mo +share/locale/mr/LC_MESSAGES/kmimetypefinder5.mo +share/locale/mr/LC_MESSAGES/kstart5.mo +share/locale/ms/LC_MESSAGES/kcm5_filetypes.mo +share/locale/ms/LC_MESSAGES/kdesu5.mo +share/locale/ms/LC_MESSAGES/kioclient.mo +share/locale/ms/LC_MESSAGES/kmimetypefinder5.mo +share/locale/ms/LC_MESSAGES/kstart5.mo +share/locale/nb/LC_MESSAGES/kcm5_filetypes.mo +share/locale/nb/LC_MESSAGES/kdesu5.mo +share/locale/nb/LC_MESSAGES/kioclient.mo +share/locale/nb/LC_MESSAGES/kmimetypefinder5.mo +share/locale/nb/LC_MESSAGES/kstart5.mo +share/locale/nds/LC_MESSAGES/kcm5_filetypes.mo +share/locale/nds/LC_MESSAGES/kdesu5.mo +share/locale/nds/LC_MESSAGES/kioclient.mo +share/locale/nds/LC_MESSAGES/kmimetypefinder5.mo +share/locale/nds/LC_MESSAGES/kstart5.mo +share/locale/ne/LC_MESSAGES/kcm5_filetypes.mo +share/locale/ne/LC_MESSAGES/kdesu5.mo +share/locale/ne/LC_MESSAGES/kioclient.mo +share/locale/ne/LC_MESSAGES/kmimetypefinder5.mo +share/locale/ne/LC_MESSAGES/kstart5.mo +share/locale/nl/LC_MESSAGES/kbroadcastnotification.mo +share/locale/nl/LC_MESSAGES/kcm5_filetypes.mo +share/locale/nl/LC_MESSAGES/kdesu5.mo +share/locale/nl/LC_MESSAGES/kioclient.mo +share/locale/nl/LC_MESSAGES/kmimetypefinder5.mo +share/locale/nl/LC_MESSAGES/kstart5.mo +share/locale/nl/LC_MESSAGES/plasma-open-settings.mo +share/locale/nn/LC_MESSAGES/kbroadcastnotification.mo +share/locale/nn/LC_MESSAGES/kcm5_filetypes.mo +share/locale/nn/LC_MESSAGES/kdesu5.mo +share/locale/nn/LC_MESSAGES/kioclient.mo +share/locale/nn/LC_MESSAGES/kmimetypefinder5.mo +share/locale/nn/LC_MESSAGES/kstart5.mo +share/locale/nn/LC_MESSAGES/plasma-open-settings.mo +share/locale/oc/LC_MESSAGES/kcm5_filetypes.mo +share/locale/oc/LC_MESSAGES/kdesu5.mo +share/locale/oc/LC_MESSAGES/kioclient.mo +share/locale/oc/LC_MESSAGES/kmimetypefinder5.mo +share/locale/oc/LC_MESSAGES/kstart5.mo +share/locale/or/LC_MESSAGES/kdesu5.mo +share/locale/or/LC_MESSAGES/kioclient.mo +share/locale/or/LC_MESSAGES/kmimetypefinder5.mo +share/locale/or/LC_MESSAGES/kstart5.mo +share/locale/pa/LC_MESSAGES/kcm5_filetypes.mo +share/locale/pa/LC_MESSAGES/kdesu5.mo +share/locale/pa/LC_MESSAGES/kioclient.mo +share/locale/pa/LC_MESSAGES/kmimetypefinder5.mo +share/locale/pa/LC_MESSAGES/kstart5.mo +share/locale/pl/LC_MESSAGES/kbroadcastnotification.mo +share/locale/pl/LC_MESSAGES/kcm5_filetypes.mo +share/locale/pl/LC_MESSAGES/kdesu5.mo +share/locale/pl/LC_MESSAGES/kioclient.mo +share/locale/pl/LC_MESSAGES/kmimetypefinder5.mo +share/locale/pl/LC_MESSAGES/kstart5.mo +share/locale/pl/LC_MESSAGES/plasma-open-settings.mo +share/locale/pt/LC_MESSAGES/kbroadcastnotification.mo +share/locale/pt/LC_MESSAGES/kcm5_filetypes.mo +share/locale/pt/LC_MESSAGES/kdesu5.mo +share/locale/pt/LC_MESSAGES/kioclient.mo +share/locale/pt/LC_MESSAGES/kmimetypefinder5.mo +share/locale/pt/LC_MESSAGES/kstart5.mo +share/locale/pt/LC_MESSAGES/plasma-open-settings.mo +share/locale/pt_BR/LC_MESSAGES/kbroadcastnotification.mo +share/locale/pt_BR/LC_MESSAGES/kcm5_filetypes.mo +share/locale/pt_BR/LC_MESSAGES/kdesu5.mo +share/locale/pt_BR/LC_MESSAGES/kioclient.mo +share/locale/pt_BR/LC_MESSAGES/kmimetypefinder5.mo +share/locale/pt_BR/LC_MESSAGES/kstart5.mo +share/locale/pt_BR/LC_MESSAGES/plasma-open-settings.mo +share/locale/ro/LC_MESSAGES/kcm5_filetypes.mo +share/locale/ro/LC_MESSAGES/kdesu5.mo +share/locale/ro/LC_MESSAGES/kioclient.mo +share/locale/ro/LC_MESSAGES/kmimetypefinder5.mo +share/locale/ro/LC_MESSAGES/kstart5.mo +share/locale/ro/LC_MESSAGES/plasma-open-settings.mo +share/locale/ru/LC_MESSAGES/kbroadcastnotification.mo +share/locale/ru/LC_MESSAGES/kcm5_filetypes.mo +share/locale/ru/LC_MESSAGES/kdesu5.mo +share/locale/ru/LC_MESSAGES/kioclient.mo +share/locale/ru/LC_MESSAGES/kmimetypefinder5.mo +share/locale/ru/LC_MESSAGES/kstart5.mo +share/locale/ru/LC_MESSAGES/plasma-open-settings.mo +share/locale/se/LC_MESSAGES/kcm5_filetypes.mo +share/locale/se/LC_MESSAGES/kdesu5.mo +share/locale/se/LC_MESSAGES/kioclient.mo +share/locale/se/LC_MESSAGES/kmimetypefinder5.mo +share/locale/se/LC_MESSAGES/kstart5.mo +share/locale/si/LC_MESSAGES/kcm5_filetypes.mo +share/locale/si/LC_MESSAGES/kdesu5.mo +share/locale/si/LC_MESSAGES/kioclient.mo +share/locale/si/LC_MESSAGES/kmimetypefinder5.mo +share/locale/si/LC_MESSAGES/kstart5.mo +share/locale/sk/LC_MESSAGES/kbroadcastnotification.mo +share/locale/sk/LC_MESSAGES/kcm5_filetypes.mo +share/locale/sk/LC_MESSAGES/kdesu5.mo +share/locale/sk/LC_MESSAGES/kioclient.mo +share/locale/sk/LC_MESSAGES/kmimetypefinder5.mo +share/locale/sk/LC_MESSAGES/kstart5.mo +share/locale/sk/LC_MESSAGES/plasma-open-settings.mo +share/locale/sl/LC_MESSAGES/kbroadcastnotification.mo +share/locale/sl/LC_MESSAGES/kcm5_filetypes.mo +share/locale/sl/LC_MESSAGES/kdesu5.mo +share/locale/sl/LC_MESSAGES/kioclient.mo +share/locale/sl/LC_MESSAGES/kmimetypefinder5.mo +share/locale/sl/LC_MESSAGES/kstart5.mo +share/locale/sl/LC_MESSAGES/plasma-open-settings.mo +share/locale/sq/LC_MESSAGES/kcm5_filetypes.mo +share/locale/sq/LC_MESSAGES/kdesu5.mo +share/locale/sq/LC_MESSAGES/kioclient.mo +share/locale/sq/LC_MESSAGES/kmimetypefinder5.mo +share/locale/sq/LC_MESSAGES/kstart5.mo +share/locale/sr/LC_MESSAGES/kbroadcastnotification.mo +share/locale/sr/LC_MESSAGES/kcm5_filetypes.mo +share/locale/sr/LC_MESSAGES/kdesu5.mo +share/locale/sr/LC_MESSAGES/kioclient.mo +share/locale/sr/LC_MESSAGES/kmimetypefinder5.mo +share/locale/sr/LC_MESSAGES/kstart5.mo +share/locale/sr@ijekavian/LC_MESSAGES/kbroadcastnotification.mo +share/locale/sr@ijekavian/LC_MESSAGES/kcm5_filetypes.mo +share/locale/sr@ijekavian/LC_MESSAGES/kdesu5.mo +share/locale/sr@ijekavian/LC_MESSAGES/kioclient.mo +share/locale/sr@ijekavian/LC_MESSAGES/kmimetypefinder5.mo +share/locale/sr@ijekavian/LC_MESSAGES/kstart5.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kbroadcastnotification.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm5_filetypes.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kdesu5.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kioclient.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kmimetypefinder5.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kstart5.mo +share/locale/sr@latin/LC_MESSAGES/kbroadcastnotification.mo +share/locale/sr@latin/LC_MESSAGES/kcm5_filetypes.mo +share/locale/sr@latin/LC_MESSAGES/kdesu5.mo +share/locale/sr@latin/LC_MESSAGES/kioclient.mo +share/locale/sr@latin/LC_MESSAGES/kmimetypefinder5.mo +share/locale/sr@latin/LC_MESSAGES/kstart5.mo +share/locale/sv/LC_MESSAGES/kbroadcastnotification.mo +share/locale/sv/LC_MESSAGES/kcm5_filetypes.mo +share/locale/sv/LC_MESSAGES/kdesu5.mo +share/locale/sv/LC_MESSAGES/kioclient.mo +share/locale/sv/LC_MESSAGES/kmimetypefinder5.mo +share/locale/sv/LC_MESSAGES/kstart5.mo +share/locale/sv/LC_MESSAGES/plasma-open-settings.mo +share/locale/ta/LC_MESSAGES/kcm5_filetypes.mo +share/locale/ta/LC_MESSAGES/kdesu5.mo +share/locale/ta/LC_MESSAGES/kioclient.mo +share/locale/ta/LC_MESSAGES/kmimetypefinder5.mo +share/locale/ta/LC_MESSAGES/kstart5.mo +share/locale/te/LC_MESSAGES/kcm5_filetypes.mo +share/locale/te/LC_MESSAGES/kdesu5.mo +share/locale/te/LC_MESSAGES/kioclient.mo +share/locale/te/LC_MESSAGES/kmimetypefinder5.mo +share/locale/te/LC_MESSAGES/kstart5.mo +share/locale/tg/LC_MESSAGES/kcm5_filetypes.mo +share/locale/tg/LC_MESSAGES/kdesu5.mo +share/locale/tg/LC_MESSAGES/kioclient.mo +share/locale/tg/LC_MESSAGES/kmimetypefinder5.mo +share/locale/tg/LC_MESSAGES/kstart5.mo +share/locale/th/LC_MESSAGES/kcm5_filetypes.mo +share/locale/th/LC_MESSAGES/kdesu5.mo +share/locale/th/LC_MESSAGES/kioclient.mo +share/locale/th/LC_MESSAGES/kmimetypefinder5.mo +share/locale/th/LC_MESSAGES/kstart5.mo +share/locale/tr/LC_MESSAGES/kbroadcastnotification.mo +share/locale/tr/LC_MESSAGES/kcm5_filetypes.mo +share/locale/tr/LC_MESSAGES/kdesu5.mo +share/locale/tr/LC_MESSAGES/kioclient.mo +share/locale/tr/LC_MESSAGES/kmimetypefinder5.mo +share/locale/tr/LC_MESSAGES/kstart5.mo +share/locale/tr/LC_MESSAGES/plasma-open-settings.mo +share/locale/ug/LC_MESSAGES/kcm5_filetypes.mo +share/locale/ug/LC_MESSAGES/kdesu5.mo +share/locale/ug/LC_MESSAGES/kioclient.mo +share/locale/ug/LC_MESSAGES/kmimetypefinder5.mo +share/locale/ug/LC_MESSAGES/kstart5.mo +share/locale/uk/LC_MESSAGES/kbroadcastnotification.mo +share/locale/uk/LC_MESSAGES/kcm5_filetypes.mo +share/locale/uk/LC_MESSAGES/kdesu5.mo +share/locale/uk/LC_MESSAGES/kioclient.mo +share/locale/uk/LC_MESSAGES/kmimetypefinder5.mo +share/locale/uk/LC_MESSAGES/kstart5.mo +share/locale/uk/LC_MESSAGES/plasma-open-settings.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/kbroadcastnotification.mo +share/locale/vi/LC_MESSAGES/kcm5_filetypes.mo +share/locale/vi/LC_MESSAGES/kdesu5.mo +share/locale/vi/LC_MESSAGES/kioclient.mo +share/locale/vi/LC_MESSAGES/kmimetypefinder5.mo +share/locale/vi/LC_MESSAGES/kstart5.mo +share/locale/vi/LC_MESSAGES/plasma-open-settings.mo +share/locale/wa/LC_MESSAGES/kcm5_filetypes.mo +share/locale/wa/LC_MESSAGES/kdesu5.mo +share/locale/wa/LC_MESSAGES/kioclient.mo +share/locale/wa/LC_MESSAGES/kmimetypefinder5.mo +share/locale/wa/LC_MESSAGES/kstart5.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/kdesu5.mo +share/locale/zh_CN/LC_MESSAGES/kioclient.mo +share/locale/zh_CN/LC_MESSAGES/kmimetypefinder5.mo +share/locale/zh_CN/LC_MESSAGES/kstart5.mo +share/locale/zh_CN/LC_MESSAGES/plasma-open-settings.mo +share/locale/zh_TW/LC_MESSAGES/kbroadcastnotification.mo +share/locale/zh_TW/LC_MESSAGES/kcm5_filetypes.mo +share/locale/zh_TW/LC_MESSAGES/kdesu5.mo +share/locale/zh_TW/LC_MESSAGES/kioclient.mo +share/locale/zh_TW/LC_MESSAGES/kmimetypefinder5.mo +share/locale/zh_TW/LC_MESSAGES/kstart5.mo +share/locale/zh_TW/LC_MESSAGES/plasma-open-settings.mo diff --git a/sysutils/plasma6-kinfocenter/Makefile b/sysutils/plasma6-kinfocenter/Makefile new file mode 100644 index 000000000000..610fb8687d96 --- /dev/null +++ b/sysutils/plasma6-kinfocenter/Makefile @@ -0,0 +1,23 @@ +PORTNAME= kinfocenter +DISTVERSION= ${KDE_PLASMA_VERSION} +CATEGORIES= sysutils kde kde-plasma + +MAINTAINER= kde@FreeBSD.org +COMMENT= View information about your computer's hardware + +RUN_DEPENDS= clinfo:devel/clinfo \ + glxinfo:graphics/mesa-demos \ + lscpu:sysutils/lscpu \ + vulkaninfo:graphics/vulkan-tools \ + xdpyinfo:x11/xdpyinfo + +USES= cmake gettext gl kde:6 qt:6 tar:xz +USE_GL= gl opengl +USE_KDE= auth colorscheme completion config configwidgets coreaddons \ + doctools i18n jobwidgets kcmutils kio package service solid \ + widgetsaddons \ + ecm:build \ + kirigami2:run systemsettings:run +USE_QT= base + +.include diff --git a/sysutils/plasma6-kinfocenter/distinfo b/sysutils/plasma6-kinfocenter/distinfo new file mode 100644 index 000000000000..8c47755cf6a3 --- /dev/null +++ b/sysutils/plasma6-kinfocenter/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1701525119 +SHA256 (KDE/plasma/5.90.0/kinfocenter-5.90.0.tar.xz) = a1a70abe23345035761e5b337f419d0286f9eb8f3f679a1a4707103be4e34214 +SIZE (KDE/plasma/5.90.0/kinfocenter-5.90.0.tar.xz) = 823800 diff --git a/sysutils/plasma6-kinfocenter/pkg-plist b/sysutils/plasma6-kinfocenter/pkg-plist new file mode 100644 index 000000000000..987dfb4fb39c --- /dev/null +++ b/sysutils/plasma6-kinfocenter/pkg-plist @@ -0,0 +1,490 @@ +bin/kinfocenter +etc/xdg/menus/kinfocenter.menu +lib/libKInfoCenterInternal.so +lib/libexec/kf6/kauth/kinfocenter-dmidecode-helper +%%QT_PLUGINDIR%%/plasma/kcms/kcm_about-distro.so +%%QT_PLUGINDIR%%/plasma/kcms/kinfocenter/kcm_cpu.so +%%QT_PLUGINDIR%%/plasma/kcms/kinfocenter/kcm_devinfo.so +%%QT_PLUGINDIR%%/plasma/kcms/kinfocenter/kcm_egl.so +%%QT_PLUGINDIR%%/plasma/kcms/kinfocenter/kcm_firmware_security.so +%%QT_PLUGINDIR%%/plasma/kcms/kinfocenter/kcm_glx.so +%%QT_PLUGINDIR%%/plasma/kcms/kinfocenter/kcm_interrupts.so +%%QT_PLUGINDIR%%/plasma/kcms/kinfocenter/kcm_kwinsupportinfo.so +%%QT_PLUGINDIR%%/plasma/kcms/kinfocenter/kcm_nic.so +%%QT_PLUGINDIR%%/plasma/kcms/kinfocenter/kcm_opencl.so +%%QT_PLUGINDIR%%/plasma/kcms/kinfocenter/kcm_pci.so +%%QT_PLUGINDIR%%/plasma/kcms/kinfocenter/kcm_samba.so +%%QT_PLUGINDIR%%/plasma/kcms/kinfocenter/kcm_vulkan.so +%%QT_PLUGINDIR%%/plasma/kcms/kinfocenter/kcm_wayland.so +%%QT_PLUGINDIR%%/plasma/kcms/kinfocenter/kcm_xserver.so +%%QT_QMLDIR%%/org/kde/kinfocenter/private/CommandOutputKCM.qml +%%QT_QMLDIR%%/org/kde/kinfocenter/private/qmldir +share/applications/kcm_about-distro.desktop +share/applications/org.kde.kinfocenter.desktop +share/dbus-1/system-services/org.kde.kinfocenter.dmidecode.service +share/dbus-1/system.d/org.kde.kinfocenter.dmidecode.conf +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/en/kinfocenter/index.cache.bz2 +share/doc/HTML/en/kinfocenter/index.docbook +share/doc/HTML/en/kinfocenter/kinfocenter.png +share/doc/HTML/es/kinfocenter/index.cache.bz2 +share/doc/HTML/es/kinfocenter/index.docbook +share/doc/HTML/fr/kinfocenter/index.cache.bz2 +share/doc/HTML/fr/kinfocenter/index.docbook +share/doc/HTML/id/kinfocenter/index.cache.bz2 +share/doc/HTML/id/kinfocenter/index.docbook +share/doc/HTML/it/kinfocenter/index.cache.bz2 +share/doc/HTML/it/kinfocenter/index.docbook +share/doc/HTML/it/kinfocenter/kinfocenter.png +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/ru/kinfocenter/index.cache.bz2 +share/doc/HTML/ru/kinfocenter/index.docbook +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/sv/kinfocenter/index.cache.bz2 +share/doc/HTML/sv/kinfocenter/index.docbook +share/doc/HTML/tr/kinfocenter/index.cache.bz2 +share/doc/HTML/tr/kinfocenter/index.docbook +share/doc/HTML/uk/kinfocenter/index.cache.bz2 +share/doc/HTML/uk/kinfocenter/index.docbook +share/doc/HTML/uk/kinfocenter/kinfocenter.png +%%DATADIR%%/categories/basicinformation.desktop +%%DATADIR%%/categories/deviceinfocategory.desktop +%%DATADIR%%/categories/graphicalinfocategory.desktop +%%DATADIR%%/categories/lostfoundcategory.desktop +%%DATADIR%%/categories/networkinfocategory.desktop +%%DATADIR%%/firmware_security/fwupdmgr.sh +share/locale/af/LC_MESSAGES/kcm_samba.mo +share/locale/af/LC_MESSAGES/kcmusb.mo +share/locale/ar/LC_MESSAGES/kcm_about-distro.mo +share/locale/ar/LC_MESSAGES/kcm_energyinfo.mo +share/locale/ar/LC_MESSAGES/kcm_nic.mo +share/locale/ar/LC_MESSAGES/kcm_samba.mo +share/locale/ar/LC_MESSAGES/kcmdevinfo.mo +share/locale/ar/LC_MESSAGES/kcmusb.mo +share/locale/ast/LC_MESSAGES/kcm_about-distro.mo +share/locale/ast/LC_MESSAGES/kcm_energyinfo.mo +share/locale/ast/LC_MESSAGES/kcm_nic.mo +share/locale/ast/LC_MESSAGES/kcm_samba.mo +share/locale/ast/LC_MESSAGES/kcmdevinfo.mo +share/locale/ast/LC_MESSAGES/kcmusb.mo +share/locale/az/LC_MESSAGES/kcm_about-distro.mo +share/locale/az/LC_MESSAGES/kcm_energyinfo.mo +share/locale/az/LC_MESSAGES/kcm_nic.mo +share/locale/az/LC_MESSAGES/kcm_samba.mo +share/locale/az/LC_MESSAGES/kcmdevinfo.mo +share/locale/az/LC_MESSAGES/kcmusb.mo +share/locale/be/LC_MESSAGES/kcm_samba.mo +share/locale/be/LC_MESSAGES/kcmusb.mo +share/locale/bg/LC_MESSAGES/kcm_about-distro.mo +share/locale/bg/LC_MESSAGES/kcm_energyinfo.mo +share/locale/bg/LC_MESSAGES/kcm_nic.mo +share/locale/bg/LC_MESSAGES/kcm_samba.mo +share/locale/bg/LC_MESSAGES/kcmdevinfo.mo +share/locale/bg/LC_MESSAGES/kcmusb.mo +share/locale/bn/LC_MESSAGES/kcmusb.mo +share/locale/bn_IN/LC_MESSAGES/kcm_samba.mo +share/locale/bn_IN/LC_MESSAGES/kcmusb.mo +share/locale/br/LC_MESSAGES/kcm_samba.mo +share/locale/br/LC_MESSAGES/kcmusb.mo +share/locale/bs/LC_MESSAGES/kcm_about-distro.mo +share/locale/bs/LC_MESSAGES/kcm_nic.mo +share/locale/bs/LC_MESSAGES/kcm_samba.mo +share/locale/bs/LC_MESSAGES/kcmdevinfo.mo +share/locale/bs/LC_MESSAGES/kcmusb.mo +share/locale/ca/LC_MESSAGES/kcm_about-distro.mo +share/locale/ca/LC_MESSAGES/kcm_energyinfo.mo +share/locale/ca/LC_MESSAGES/kcm_nic.mo +share/locale/ca/LC_MESSAGES/kcm_samba.mo +share/locale/ca/LC_MESSAGES/kcmdevinfo.mo +share/locale/ca/LC_MESSAGES/kcmusb.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_nic.mo +share/locale/ca@valencia/LC_MESSAGES/kcm_samba.mo +share/locale/ca@valencia/LC_MESSAGES/kcmdevinfo.mo +share/locale/ca@valencia/LC_MESSAGES/kcmusb.mo +share/locale/cs/LC_MESSAGES/kcm_about-distro.mo +share/locale/cs/LC_MESSAGES/kcm_energyinfo.mo +share/locale/cs/LC_MESSAGES/kcm_nic.mo +share/locale/cs/LC_MESSAGES/kcm_samba.mo +share/locale/cs/LC_MESSAGES/kcmdevinfo.mo +share/locale/cs/LC_MESSAGES/kcmusb.mo +share/locale/csb/LC_MESSAGES/kcm_samba.mo +share/locale/csb/LC_MESSAGES/kcmusb.mo +share/locale/cy/LC_MESSAGES/kcm_samba.mo +share/locale/cy/LC_MESSAGES/kcmusb.mo +share/locale/da/LC_MESSAGES/kcm_about-distro.mo +share/locale/da/LC_MESSAGES/kcm_energyinfo.mo +share/locale/da/LC_MESSAGES/kcm_nic.mo +share/locale/da/LC_MESSAGES/kcm_samba.mo +share/locale/da/LC_MESSAGES/kcmdevinfo.mo +share/locale/da/LC_MESSAGES/kcmusb.mo +share/locale/de/LC_MESSAGES/kcm_about-distro.mo +share/locale/de/LC_MESSAGES/kcm_energyinfo.mo +share/locale/de/LC_MESSAGES/kcm_nic.mo +share/locale/de/LC_MESSAGES/kcm_samba.mo +share/locale/de/LC_MESSAGES/kcmdevinfo.mo +share/locale/de/LC_MESSAGES/kcmusb.mo +share/locale/el/LC_MESSAGES/kcm_about-distro.mo +share/locale/el/LC_MESSAGES/kcm_energyinfo.mo +share/locale/el/LC_MESSAGES/kcm_nic.mo +share/locale/el/LC_MESSAGES/kcm_samba.mo +share/locale/el/LC_MESSAGES/kcmdevinfo.mo +share/locale/el/LC_MESSAGES/kcmusb.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_nic.mo +share/locale/en_GB/LC_MESSAGES/kcm_samba.mo +share/locale/en_GB/LC_MESSAGES/kcmdevinfo.mo +share/locale/en_GB/LC_MESSAGES/kcmusb.mo +share/locale/eo/LC_MESSAGES/kcm_about-distro.mo +share/locale/eo/LC_MESSAGES/kcm_energyinfo.mo +share/locale/eo/LC_MESSAGES/kcm_nic.mo +share/locale/eo/LC_MESSAGES/kcm_samba.mo +share/locale/eo/LC_MESSAGES/kcmdevinfo.mo +share/locale/eo/LC_MESSAGES/kcmusb.mo +share/locale/es/LC_MESSAGES/kcm_about-distro.mo +share/locale/es/LC_MESSAGES/kcm_energyinfo.mo +share/locale/es/LC_MESSAGES/kcm_nic.mo +share/locale/es/LC_MESSAGES/kcm_samba.mo +share/locale/es/LC_MESSAGES/kcmdevinfo.mo +share/locale/es/LC_MESSAGES/kcmusb.mo +share/locale/et/LC_MESSAGES/kcm_about-distro.mo +share/locale/et/LC_MESSAGES/kcm_energyinfo.mo +share/locale/et/LC_MESSAGES/kcm_nic.mo +share/locale/et/LC_MESSAGES/kcm_samba.mo +share/locale/et/LC_MESSAGES/kcmdevinfo.mo +share/locale/et/LC_MESSAGES/kcmusb.mo +share/locale/eu/LC_MESSAGES/kcm_about-distro.mo +share/locale/eu/LC_MESSAGES/kcm_energyinfo.mo +share/locale/eu/LC_MESSAGES/kcm_nic.mo +share/locale/eu/LC_MESSAGES/kcm_samba.mo +share/locale/eu/LC_MESSAGES/kcmdevinfo.mo +share/locale/eu/LC_MESSAGES/kcmusb.mo +share/locale/fa/LC_MESSAGES/kcm_samba.mo +share/locale/fa/LC_MESSAGES/kcmdevinfo.mo +share/locale/fa/LC_MESSAGES/kcmusb.mo +share/locale/fi/LC_MESSAGES/kcm_about-distro.mo +share/locale/fi/LC_MESSAGES/kcm_energyinfo.mo +share/locale/fi/LC_MESSAGES/kcm_nic.mo +share/locale/fi/LC_MESSAGES/kcm_samba.mo +share/locale/fi/LC_MESSAGES/kcmdevinfo.mo +share/locale/fi/LC_MESSAGES/kcmusb.mo +share/locale/fr/LC_MESSAGES/kcm_about-distro.mo +share/locale/fr/LC_MESSAGES/kcm_energyinfo.mo +share/locale/fr/LC_MESSAGES/kcm_nic.mo +share/locale/fr/LC_MESSAGES/kcm_samba.mo +share/locale/fr/LC_MESSAGES/kcmdevinfo.mo +share/locale/fr/LC_MESSAGES/kcmusb.mo +share/locale/fy/LC_MESSAGES/kcm_samba.mo +share/locale/fy/LC_MESSAGES/kcmusb.mo +share/locale/ga/LC_MESSAGES/kcm_nic.mo +share/locale/ga/LC_MESSAGES/kcm_samba.mo +share/locale/ga/LC_MESSAGES/kcmdevinfo.mo +share/locale/ga/LC_MESSAGES/kcmusb.mo +share/locale/gl/LC_MESSAGES/kcm_about-distro.mo +share/locale/gl/LC_MESSAGES/kcm_energyinfo.mo +share/locale/gl/LC_MESSAGES/kcm_nic.mo +share/locale/gl/LC_MESSAGES/kcm_samba.mo +share/locale/gl/LC_MESSAGES/kcmdevinfo.mo +share/locale/gl/LC_MESSAGES/kcmusb.mo +share/locale/gu/LC_MESSAGES/kcm_nic.mo +share/locale/gu/LC_MESSAGES/kcm_samba.mo +share/locale/gu/LC_MESSAGES/kcmdevinfo.mo +share/locale/gu/LC_MESSAGES/kcmusb.mo +share/locale/he/LC_MESSAGES/kcm_about-distro.mo +share/locale/he/LC_MESSAGES/kcm_energyinfo.mo +share/locale/he/LC_MESSAGES/kcm_nic.mo +share/locale/he/LC_MESSAGES/kcm_samba.mo +share/locale/he/LC_MESSAGES/kcmdevinfo.mo +share/locale/he/LC_MESSAGES/kcmusb.mo +share/locale/hi/LC_MESSAGES/kcm_nic.mo +share/locale/hi/LC_MESSAGES/kcm_samba.mo +share/locale/hi/LC_MESSAGES/kcmdevinfo.mo +share/locale/hi/LC_MESSAGES/kcmusb.mo +share/locale/hne/LC_MESSAGES/kcm_samba.mo +share/locale/hne/LC_MESSAGES/kcmusb.mo +share/locale/hr/LC_MESSAGES/kcm_nic.mo +share/locale/hr/LC_MESSAGES/kcm_samba.mo +share/locale/hr/LC_MESSAGES/kcmdevinfo.mo +share/locale/hr/LC_MESSAGES/kcmusb.mo +share/locale/hsb/LC_MESSAGES/kcm_samba.mo +share/locale/hsb/LC_MESSAGES/kcmusb.mo +share/locale/hu/LC_MESSAGES/kcm_about-distro.mo +share/locale/hu/LC_MESSAGES/kcm_energyinfo.mo +share/locale/hu/LC_MESSAGES/kcm_nic.mo +share/locale/hu/LC_MESSAGES/kcm_samba.mo +share/locale/hu/LC_MESSAGES/kcmdevinfo.mo +share/locale/hu/LC_MESSAGES/kcmusb.mo +share/locale/ia/LC_MESSAGES/kcm_about-distro.mo +share/locale/ia/LC_MESSAGES/kcm_energyinfo.mo +share/locale/ia/LC_MESSAGES/kcm_nic.mo +share/locale/ia/LC_MESSAGES/kcm_samba.mo +share/locale/ia/LC_MESSAGES/kcmdevinfo.mo +share/locale/ia/LC_MESSAGES/kcmusb.mo +share/locale/id/LC_MESSAGES/kcm_about-distro.mo +share/locale/id/LC_MESSAGES/kcm_energyinfo.mo +share/locale/id/LC_MESSAGES/kcm_nic.mo +share/locale/id/LC_MESSAGES/kcm_samba.mo +share/locale/id/LC_MESSAGES/kcmdevinfo.mo +share/locale/id/LC_MESSAGES/kcmusb.mo +share/locale/is/LC_MESSAGES/kcm_nic.mo +share/locale/is/LC_MESSAGES/kcm_samba.mo +share/locale/is/LC_MESSAGES/kcmdevinfo.mo +share/locale/is/LC_MESSAGES/kcmusb.mo +share/locale/it/LC_MESSAGES/kcm_about-distro.mo +share/locale/it/LC_MESSAGES/kcm_energyinfo.mo +share/locale/it/LC_MESSAGES/kcm_nic.mo +share/locale/it/LC_MESSAGES/kcm_samba.mo +share/locale/it/LC_MESSAGES/kcmdevinfo.mo +share/locale/it/LC_MESSAGES/kcmusb.mo +share/locale/ja/LC_MESSAGES/kcm_about-distro.mo +share/locale/ja/LC_MESSAGES/kcm_energyinfo.mo +share/locale/ja/LC_MESSAGES/kcm_nic.mo +share/locale/ja/LC_MESSAGES/kcm_samba.mo +share/locale/ja/LC_MESSAGES/kcmdevinfo.mo +share/locale/ja/LC_MESSAGES/kcmusb.mo +share/locale/ka/LC_MESSAGES/kcm_about-distro.mo +share/locale/ka/LC_MESSAGES/kcm_energyinfo.mo +share/locale/ka/LC_MESSAGES/kcm_nic.mo +share/locale/ka/LC_MESSAGES/kcm_samba.mo +share/locale/ka/LC_MESSAGES/kcmdevinfo.mo +share/locale/ka/LC_MESSAGES/kcmusb.mo +share/locale/kk/LC_MESSAGES/kcm_nic.mo +share/locale/kk/LC_MESSAGES/kcm_samba.mo +share/locale/kk/LC_MESSAGES/kcmdevinfo.mo +share/locale/kk/LC_MESSAGES/kcmusb.mo +share/locale/km/LC_MESSAGES/kcm_nic.mo +share/locale/km/LC_MESSAGES/kcm_samba.mo +share/locale/km/LC_MESSAGES/kcmdevinfo.mo +share/locale/km/LC_MESSAGES/kcmusb.mo +share/locale/kn/LC_MESSAGES/kcm_nic.mo +share/locale/kn/LC_MESSAGES/kcm_samba.mo +share/locale/kn/LC_MESSAGES/kcmdevinfo.mo +share/locale/kn/LC_MESSAGES/kcmusb.mo +share/locale/ko/LC_MESSAGES/kcm_about-distro.mo +share/locale/ko/LC_MESSAGES/kcm_energyinfo.mo +share/locale/ko/LC_MESSAGES/kcm_nic.mo +share/locale/ko/LC_MESSAGES/kcm_samba.mo +share/locale/ko/LC_MESSAGES/kcmdevinfo.mo +share/locale/ko/LC_MESSAGES/kcmusb.mo +share/locale/ku/LC_MESSAGES/kcm_samba.mo +share/locale/ku/LC_MESSAGES/kcmusb.mo +share/locale/lt/LC_MESSAGES/kcm_about-distro.mo +share/locale/lt/LC_MESSAGES/kcm_energyinfo.mo +share/locale/lt/LC_MESSAGES/kcm_nic.mo +share/locale/lt/LC_MESSAGES/kcm_samba.mo +share/locale/lt/LC_MESSAGES/kcmdevinfo.mo +share/locale/lt/LC_MESSAGES/kcmusb.mo +share/locale/lv/LC_MESSAGES/kcm_nic.mo +share/locale/lv/LC_MESSAGES/kcm_samba.mo +share/locale/lv/LC_MESSAGES/kcmdevinfo.mo +share/locale/lv/LC_MESSAGES/kcmusb.mo +share/locale/mai/LC_MESSAGES/kcm_nic.mo +share/locale/mai/LC_MESSAGES/kcm_samba.mo +share/locale/mai/LC_MESSAGES/kcmdevinfo.mo +share/locale/mai/LC_MESSAGES/kcmusb.mo +share/locale/mk/LC_MESSAGES/kcm_samba.mo +share/locale/mk/LC_MESSAGES/kcmusb.mo +share/locale/ml/LC_MESSAGES/kcm_about-distro.mo +share/locale/ml/LC_MESSAGES/kcm_energyinfo.mo +share/locale/ml/LC_MESSAGES/kcm_nic.mo +share/locale/ml/LC_MESSAGES/kcm_samba.mo +share/locale/ml/LC_MESSAGES/kcmdevinfo.mo +share/locale/ml/LC_MESSAGES/kcmusb.mo +share/locale/mr/LC_MESSAGES/kcm_nic.mo +share/locale/mr/LC_MESSAGES/kcm_samba.mo +share/locale/mr/LC_MESSAGES/kcmdevinfo.mo +share/locale/mr/LC_MESSAGES/kcmusb.mo +share/locale/ms/LC_MESSAGES/kcm_nic.mo +share/locale/ms/LC_MESSAGES/kcm_samba.mo +share/locale/ms/LC_MESSAGES/kcmdevinfo.mo +share/locale/ms/LC_MESSAGES/kcmusb.mo +share/locale/nb/LC_MESSAGES/kcm_about-distro.mo +share/locale/nb/LC_MESSAGES/kcm_energyinfo.mo +share/locale/nb/LC_MESSAGES/kcm_nic.mo +share/locale/nb/LC_MESSAGES/kcm_samba.mo +share/locale/nb/LC_MESSAGES/kcmdevinfo.mo +share/locale/nb/LC_MESSAGES/kcmusb.mo +share/locale/nds/LC_MESSAGES/kcm_nic.mo +share/locale/nds/LC_MESSAGES/kcm_samba.mo +share/locale/nds/LC_MESSAGES/kcmdevinfo.mo +share/locale/nds/LC_MESSAGES/kcmusb.mo +share/locale/ne/LC_MESSAGES/kcm_samba.mo +share/locale/ne/LC_MESSAGES/kcmusb.mo +share/locale/nl/LC_MESSAGES/kcm_about-distro.mo +share/locale/nl/LC_MESSAGES/kcm_energyinfo.mo +share/locale/nl/LC_MESSAGES/kcm_nic.mo +share/locale/nl/LC_MESSAGES/kcm_samba.mo +share/locale/nl/LC_MESSAGES/kcmdevinfo.mo +share/locale/nl/LC_MESSAGES/kcmusb.mo +share/locale/nn/LC_MESSAGES/kcm_about-distro.mo +share/locale/nn/LC_MESSAGES/kcm_energyinfo.mo +share/locale/nn/LC_MESSAGES/kcm_nic.mo +share/locale/nn/LC_MESSAGES/kcm_samba.mo +share/locale/nn/LC_MESSAGES/kcmdevinfo.mo +share/locale/nn/LC_MESSAGES/kcmusb.mo +share/locale/oc/LC_MESSAGES/kcm_samba.mo +share/locale/oc/LC_MESSAGES/kcmusb.mo +share/locale/or/LC_MESSAGES/kcm_samba.mo +share/locale/or/LC_MESSAGES/kcmusb.mo +share/locale/pa/LC_MESSAGES/kcm_about-distro.mo +share/locale/pa/LC_MESSAGES/kcm_energyinfo.mo +share/locale/pa/LC_MESSAGES/kcm_nic.mo +share/locale/pa/LC_MESSAGES/kcm_samba.mo +share/locale/pa/LC_MESSAGES/kcmdevinfo.mo +share/locale/pa/LC_MESSAGES/kcmusb.mo +share/locale/pl/LC_MESSAGES/kcm_about-distro.mo +share/locale/pl/LC_MESSAGES/kcm_energyinfo.mo +share/locale/pl/LC_MESSAGES/kcm_nic.mo +share/locale/pl/LC_MESSAGES/kcm_samba.mo +share/locale/pl/LC_MESSAGES/kcmdevinfo.mo +share/locale/pl/LC_MESSAGES/kcmusb.mo +share/locale/pt/LC_MESSAGES/kcm_about-distro.mo +share/locale/pt/LC_MESSAGES/kcm_energyinfo.mo +share/locale/pt/LC_MESSAGES/kcm_nic.mo +share/locale/pt/LC_MESSAGES/kcm_samba.mo +share/locale/pt/LC_MESSAGES/kcmdevinfo.mo +share/locale/pt/LC_MESSAGES/kcmusb.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_nic.mo +share/locale/pt_BR/LC_MESSAGES/kcm_samba.mo +share/locale/pt_BR/LC_MESSAGES/kcmdevinfo.mo +share/locale/pt_BR/LC_MESSAGES/kcmusb.mo +share/locale/ro/LC_MESSAGES/kcm_about-distro.mo +share/locale/ro/LC_MESSAGES/kcm_energyinfo.mo +share/locale/ro/LC_MESSAGES/kcm_nic.mo +share/locale/ro/LC_MESSAGES/kcm_samba.mo +share/locale/ro/LC_MESSAGES/kcmdevinfo.mo +share/locale/ro/LC_MESSAGES/kcmusb.mo +share/locale/ru/LC_MESSAGES/kcm_about-distro.mo +share/locale/ru/LC_MESSAGES/kcm_energyinfo.mo +share/locale/ru/LC_MESSAGES/kcm_nic.mo +share/locale/ru/LC_MESSAGES/kcm_samba.mo +share/locale/ru/LC_MESSAGES/kcmdevinfo.mo +share/locale/ru/LC_MESSAGES/kcmusb.mo +share/locale/se/LC_MESSAGES/kcm_nic.mo +share/locale/se/LC_MESSAGES/kcm_samba.mo +share/locale/se/LC_MESSAGES/kcmusb.mo +share/locale/si/LC_MESSAGES/kcm_samba.mo +share/locale/si/LC_MESSAGES/kcmdevinfo.mo +share/locale/si/LC_MESSAGES/kcmusb.mo +share/locale/sk/LC_MESSAGES/kcm_about-distro.mo +share/locale/sk/LC_MESSAGES/kcm_energyinfo.mo +share/locale/sk/LC_MESSAGES/kcm_nic.mo +share/locale/sk/LC_MESSAGES/kcm_samba.mo +share/locale/sk/LC_MESSAGES/kcmdevinfo.mo +share/locale/sk/LC_MESSAGES/kcmusb.mo +share/locale/sl/LC_MESSAGES/kcm_about-distro.mo +share/locale/sl/LC_MESSAGES/kcm_energyinfo.mo +share/locale/sl/LC_MESSAGES/kcm_nic.mo +share/locale/sl/LC_MESSAGES/kcm_samba.mo +share/locale/sl/LC_MESSAGES/kcmdevinfo.mo +share/locale/sl/LC_MESSAGES/kcmusb.mo +share/locale/sq/LC_MESSAGES/kcm_nic.mo +share/locale/sq/LC_MESSAGES/kcm_samba.mo +share/locale/sq/LC_MESSAGES/kcmusb.mo +share/locale/sr/LC_MESSAGES/kcm_about-distro.mo +share/locale/sr/LC_MESSAGES/kcm_energyinfo.mo +share/locale/sr/LC_MESSAGES/kcm_nic.mo +share/locale/sr/LC_MESSAGES/kcm_samba.mo +share/locale/sr/LC_MESSAGES/kcmdevinfo.mo +share/locale/sr/LC_MESSAGES/kcmusb.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_nic.mo +share/locale/sr@ijekavian/LC_MESSAGES/kcm_samba.mo +share/locale/sr@ijekavian/LC_MESSAGES/kcmdevinfo.mo +share/locale/sr@ijekavian/LC_MESSAGES/kcmusb.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_nic.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_samba.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmdevinfo.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmusb.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_nic.mo +share/locale/sr@latin/LC_MESSAGES/kcm_samba.mo +share/locale/sr@latin/LC_MESSAGES/kcmdevinfo.mo +share/locale/sr@latin/LC_MESSAGES/kcmusb.mo +share/locale/sv/LC_MESSAGES/kcm_about-distro.mo +share/locale/sv/LC_MESSAGES/kcm_energyinfo.mo +share/locale/sv/LC_MESSAGES/kcm_nic.mo +share/locale/sv/LC_MESSAGES/kcm_samba.mo +share/locale/sv/LC_MESSAGES/kcmdevinfo.mo +share/locale/sv/LC_MESSAGES/kcmusb.mo +share/locale/ta/LC_MESSAGES/kcm_about-distro.mo +share/locale/ta/LC_MESSAGES/kcm_samba.mo +share/locale/ta/LC_MESSAGES/kcmdevinfo.mo +share/locale/ta/LC_MESSAGES/kcmusb.mo +share/locale/te/LC_MESSAGES/kcm_samba.mo +share/locale/te/LC_MESSAGES/kcmusb.mo +share/locale/tg/LC_MESSAGES/kcm_energyinfo.mo +share/locale/tg/LC_MESSAGES/kcm_nic.mo +share/locale/tg/LC_MESSAGES/kcm_samba.mo +share/locale/tg/LC_MESSAGES/kcmdevinfo.mo +share/locale/tg/LC_MESSAGES/kcmusb.mo +share/locale/th/LC_MESSAGES/kcm_nic.mo +share/locale/th/LC_MESSAGES/kcm_samba.mo +share/locale/th/LC_MESSAGES/kcmdevinfo.mo +share/locale/th/LC_MESSAGES/kcmusb.mo +share/locale/tr/LC_MESSAGES/kcm_about-distro.mo +share/locale/tr/LC_MESSAGES/kcm_energyinfo.mo +share/locale/tr/LC_MESSAGES/kcm_nic.mo +share/locale/tr/LC_MESSAGES/kcm_samba.mo +share/locale/tr/LC_MESSAGES/kcmdevinfo.mo +share/locale/tr/LC_MESSAGES/kcmusb.mo +share/locale/ug/LC_MESSAGES/kcm_about-distro.mo +share/locale/ug/LC_MESSAGES/kcm_nic.mo +share/locale/ug/LC_MESSAGES/kcm_samba.mo +share/locale/ug/LC_MESSAGES/kcmdevinfo.mo +share/locale/ug/LC_MESSAGES/kcmusb.mo +share/locale/uk/LC_MESSAGES/kcm_about-distro.mo +share/locale/uk/LC_MESSAGES/kcm_energyinfo.mo +share/locale/uk/LC_MESSAGES/kcm_nic.mo +share/locale/uk/LC_MESSAGES/kcm_samba.mo +share/locale/uk/LC_MESSAGES/kcmdevinfo.mo +share/locale/uk/LC_MESSAGES/kcmusb.mo +share/locale/uz/LC_MESSAGES/kcm_samba.mo +share/locale/uz/LC_MESSAGES/kcmusb.mo +share/locale/uz@cyrillic/LC_MESSAGES/kcm_samba.mo +share/locale/uz@cyrillic/LC_MESSAGES/kcmusb.mo +share/locale/vi/LC_MESSAGES/kcm_about-distro.mo +share/locale/vi/LC_MESSAGES/kcm_energyinfo.mo +share/locale/vi/LC_MESSAGES/kcm_nic.mo +share/locale/vi/LC_MESSAGES/kcm_samba.mo +share/locale/vi/LC_MESSAGES/kcmdevinfo.mo +share/locale/vi/LC_MESSAGES/kcmusb.mo +share/locale/wa/LC_MESSAGES/kcm_nic.mo +share/locale/wa/LC_MESSAGES/kcm_samba.mo +share/locale/wa/LC_MESSAGES/kcmdevinfo.mo +share/locale/wa/LC_MESSAGES/kcmusb.mo +share/locale/xh/LC_MESSAGES/kcm_samba.mo +share/locale/xh/LC_MESSAGES/kcmusb.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_nic.mo +share/locale/zh_CN/LC_MESSAGES/kcm_samba.mo +share/locale/zh_CN/LC_MESSAGES/kcmdevinfo.mo +share/locale/zh_CN/LC_MESSAGES/kcmusb.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_nic.mo +share/locale/zh_TW/LC_MESSAGES/kcm_samba.mo +share/locale/zh_TW/LC_MESSAGES/kcmdevinfo.mo +share/locale/zh_TW/LC_MESSAGES/kcmusb.mo +share/metainfo/org.kde.kinfocenter.appdata.xml diff --git a/sysutils/plasma6-kmenuedit/Makefile b/sysutils/plasma6-kmenuedit/Makefile new file mode 100644 index 000000000000..4bd0aea7fd8d --- /dev/null +++ b/sysutils/plasma6-kmenuedit/Makefile @@ -0,0 +1,14 @@ +PORTNAME= kmenuedit +DISTVERSION= ${KDE_PLASMA_VERSION} +CATEGORIES= sysutils kde kde-plasma + +MAINTAINER= kde@FreeBSD.org +COMMENT= Menu Editor for Plasma Workspaces + +USES= cmake gettext kde:6 qt:6 tar:xz +USE_KDE= dbusaddons doctools globalaccel i18n iconthemes itemviews kio \ + sonnet windowsystem xmlgui \ + ecm:build +USE_QT= base + +.include diff --git a/sysutils/plasma6-kmenuedit/distinfo b/sysutils/plasma6-kmenuedit/distinfo new file mode 100644 index 000000000000..99c8416a1b5a --- /dev/null +++ b/sysutils/plasma6-kmenuedit/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1701525053 +SHA256 (KDE/plasma/5.90.0/kmenuedit-5.90.0.tar.xz) = 816a580d69a620dc2f99c47fd5aed2ebd23d99d6c142095fb67eeeb18ed81488 +SIZE (KDE/plasma/5.90.0/kmenuedit-5.90.0.tar.xz) = 930612 diff --git a/sysutils/plasma6-kmenuedit/pkg-plist b/sysutils/plasma6-kmenuedit/pkg-plist new file mode 100644 index 000000000000..7d0a0e43cffb --- /dev/null +++ b/sysutils/plasma6-kmenuedit/pkg-plist @@ -0,0 +1,163 @@ +bin/kmenuedit +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/selecticon.png +share/doc/HTML/ca/kmenuedit/selectinternet.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/es/kmenuedit/index.cache.bz2 +share/doc/HTML/es/kmenuedit/index.docbook +share/doc/HTML/fr/kmenuedit/index.cache.bz2 +share/doc/HTML/fr/kmenuedit/index.docbook +share/doc/HTML/id/kmenuedit/index.cache.bz2 +share/doc/HTML/id/kmenuedit/index.docbook +share/doc/HTML/it/kmenuedit/done.png +share/doc/HTML/it/kmenuedit/index.cache.bz2 +share/doc/HTML/it/kmenuedit/index.docbook +share/doc/HTML/it/kmenuedit/itemname.png +share/doc/HTML/it/kmenuedit/new.png +share/doc/HTML/it/kmenuedit/selecticon.png +share/doc/HTML/it/kmenuedit/selectinternet.png +share/doc/HTML/it/kmenuedit/toolbars-toolbar.png +share/doc/HTML/nl/kmenuedit/index.cache.bz2 +share/doc/HTML/nl/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/ru/kmenuedit/done.png +share/doc/HTML/ru/kmenuedit/index.cache.bz2 +share/doc/HTML/ru/kmenuedit/index.docbook +share/doc/HTML/ru/kmenuedit/itemname.png +share/doc/HTML/ru/kmenuedit/new.png +share/doc/HTML/ru/kmenuedit/selecticon.png +share/doc/HTML/ru/kmenuedit/selectinternet.png +share/doc/HTML/sv/kmenuedit/index.cache.bz2 +share/doc/HTML/sv/kmenuedit/index.docbook +share/doc/HTML/tr/kmenuedit/index.cache.bz2 +share/doc/HTML/tr/kmenuedit/index.docbook +share/doc/HTML/uk/kmenuedit/done.png +share/doc/HTML/uk/kmenuedit/index.cache.bz2 +share/doc/HTML/uk/kmenuedit/index.docbook +share/doc/HTML/uk/kmenuedit/itemname.png +share/doc/HTML/uk/kmenuedit/new.png +share/doc/HTML/uk/kmenuedit/selecticon.png +share/doc/HTML/uk/kmenuedit/selectinternet.png +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/locale/af/LC_MESSAGES/kmenuedit.mo +share/locale/ar/LC_MESSAGES/kmenuedit.mo +share/locale/ast/LC_MESSAGES/kmenuedit.mo +share/locale/az/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/ka/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/sa/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 +share/metainfo/org.kde.kmenuedit.appdata.xml +share/qlogging-categories6/kmenuedit.categories diff --git a/sysutils/plasma6-ksystemstats/Makefile b/sysutils/plasma6-ksystemstats/Makefile new file mode 100644 index 000000000000..6d52b0e47e58 --- /dev/null +++ b/sysutils/plasma6-ksystemstats/Makefile @@ -0,0 +1,13 @@ +PORTNAME= ksystemstats +DISTVERSION= ${KDE_PLASMA_VERSION} +CATEGORIES= sysutils kde kde-plasma + +MAINTAINER= kde@FreeBSD.org +COMMENT= Plugin based system monitoring daemon + +USES= cmake gettext kde:6 qt:6 tar:xz +USE_KDE= coreaddons dbusaddons kio libksysguard solid \ + ecm:build +USE_QT= base + +.include diff --git a/sysutils/plasma6-ksystemstats/distinfo b/sysutils/plasma6-ksystemstats/distinfo new file mode 100644 index 000000000000..4b4d805a4faf --- /dev/null +++ b/sysutils/plasma6-ksystemstats/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1701525119 +SHA256 (KDE/plasma/5.90.0/ksystemstats-5.90.0.tar.xz) = e7a5d5cd2dcfe61dd9921327478c13cea0dcf317f8b1b3809bdcbc7193a37a9a +SIZE (KDE/plasma/5.90.0/ksystemstats-5.90.0.tar.xz) = 122848 diff --git a/sysutils/plasma6-ksystemstats/pkg-plist b/sysutils/plasma6-ksystemstats/pkg-plist new file mode 100644 index 000000000000..ed34d919e2dd --- /dev/null +++ b/sysutils/plasma6-ksystemstats/pkg-plist @@ -0,0 +1,50 @@ +bin/kstatsviewer +bin/ksystemstats +%%QT_PLUGINDIR%%/ksystemstats/ksystemstats_plugin_cpu.so +%%QT_PLUGINDIR%%/ksystemstats/ksystemstats_plugin_disk.so +%%QT_PLUGINDIR%%/ksystemstats/ksystemstats_plugin_gpu.so +%%QT_PLUGINDIR%%/ksystemstats/ksystemstats_plugin_memory.so +%%QT_PLUGINDIR%%/ksystemstats/ksystemstats_plugin_network.so +%%QT_PLUGINDIR%%/ksystemstats/ksystemstats_plugin_osinfo.so +%%QT_PLUGINDIR%%/ksystemstats/ksystemstats_plugin_power.so +lib/systemd/user/plasma-ksystemstats.service +share/dbus-1/services/org.kde.ksystemstats.service +share/locale/ar/LC_MESSAGES/ksystemstats_plugins.mo +share/locale/ast/LC_MESSAGES/ksystemstats_plugins.mo +share/locale/az/LC_MESSAGES/ksystemstats_plugins.mo +share/locale/bg/LC_MESSAGES/ksystemstats_plugins.mo +share/locale/ca/LC_MESSAGES/ksystemstats_plugins.mo +share/locale/ca@valencia/LC_MESSAGES/ksystemstats_plugins.mo +share/locale/cs/LC_MESSAGES/ksystemstats_plugins.mo +share/locale/da/LC_MESSAGES/ksystemstats_plugins.mo +share/locale/de/LC_MESSAGES/ksystemstats_plugins.mo +share/locale/en_GB/LC_MESSAGES/ksystemstats_plugins.mo +share/locale/eo/LC_MESSAGES/ksystemstats_plugins.mo +share/locale/es/LC_MESSAGES/ksystemstats_plugins.mo +share/locale/et/LC_MESSAGES/ksystemstats_plugins.mo +share/locale/eu/LC_MESSAGES/ksystemstats_plugins.mo +share/locale/fi/LC_MESSAGES/ksystemstats_plugins.mo +share/locale/fr/LC_MESSAGES/ksystemstats_plugins.mo +share/locale/ia/LC_MESSAGES/ksystemstats_plugins.mo +share/locale/id/LC_MESSAGES/ksystemstats_plugins.mo +share/locale/it/LC_MESSAGES/ksystemstats_plugins.mo +share/locale/ja/LC_MESSAGES/ksystemstats_plugins.mo +share/locale/ka/LC_MESSAGES/ksystemstats_plugins.mo +share/locale/ko/LC_MESSAGES/ksystemstats_plugins.mo +share/locale/lt/LC_MESSAGES/ksystemstats_plugins.mo +share/locale/nl/LC_MESSAGES/ksystemstats_plugins.mo +share/locale/nn/LC_MESSAGES/ksystemstats_plugins.mo +share/locale/pa/LC_MESSAGES/ksystemstats_plugins.mo +share/locale/pl/LC_MESSAGES/ksystemstats_plugins.mo +share/locale/pt/LC_MESSAGES/ksystemstats_plugins.mo +share/locale/pt_BR/LC_MESSAGES/ksystemstats_plugins.mo +share/locale/ro/LC_MESSAGES/ksystemstats_plugins.mo +share/locale/ru/LC_MESSAGES/ksystemstats_plugins.mo +share/locale/sk/LC_MESSAGES/ksystemstats_plugins.mo +share/locale/sl/LC_MESSAGES/ksystemstats_plugins.mo +share/locale/sv/LC_MESSAGES/ksystemstats_plugins.mo +share/locale/tr/LC_MESSAGES/ksystemstats_plugins.mo +share/locale/uk/LC_MESSAGES/ksystemstats_plugins.mo +share/locale/vi/LC_MESSAGES/ksystemstats_plugins.mo +share/locale/zh_CN/LC_MESSAGES/ksystemstats_plugins.mo +share/locale/zh_TW/LC_MESSAGES/ksystemstats_plugins.mo diff --git a/sysutils/plasma6-libksysguard/Makefile b/sysutils/plasma6-libksysguard/Makefile new file mode 100644 index 000000000000..f6334b5b5743 --- /dev/null +++ b/sysutils/plasma6-libksysguard/Makefile @@ -0,0 +1,19 @@ +PORTNAME= libksysguard +DISTVERSION= ${KDE_PLASMA_VERSION} +CATEGORIES= sysutils kde kde-plasma + +MAINTAINER= kde@FreeBSD.org +COMMENT= Library to retrieve information on the current status of computer hardware + +LIB_DEPENDS= libxkbcommon.so:x11/libxkbcommon + +USES= cmake gettext gl kde:6 qt:6 tar:xz xorg +USE_GL= gl opengl +USE_KDE= auth colorscheme completion config configwidgets coreaddons \ + globalaccel i18n iconthemes jobwidgets kio newstuff package \ + service solid widgetsaddons windowsystem \ + ecm:build +USE_QT= 5compat base declarative webchannel webengine +USE_XORG= x11 + +.include diff --git a/sysutils/plasma6-libksysguard/distinfo b/sysutils/plasma6-libksysguard/distinfo new file mode 100644 index 000000000000..974a3dbc3204 --- /dev/null +++ b/sysutils/plasma6-libksysguard/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1701525054 +SHA256 (KDE/plasma/5.90.0/libksysguard-5.90.0.tar.xz) = c12c0f854d808a14b93e8b025ceb610e1146116fb44628ec4dc4d49fb400d47c +SIZE (KDE/plasma/5.90.0/libksysguard-5.90.0.tar.xz) = 894424 diff --git a/sysutils/plasma6-libksysguard/pkg-plist b/sysutils/plasma6-libksysguard/pkg-plist new file mode 100644 index 000000000000..c9543fe4eb8b --- /dev/null +++ b/sysutils/plasma6-libksysguard/pkg-plist @@ -0,0 +1,769 @@ +include/ksysguard/faces/FaceLoader.h +include/ksysguard/faces/SensorFaceController.h +include/ksysguard/faces/SensorFace_p.h +include/ksysguard/faces/sensorfaces_export.h +include/ksysguard/formatter/Formatter.h +include/ksysguard/formatter/Unit.h +include/ksysguard/formatter/formatter_export.h +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/ksgrd/ksgrd_export.h +include/ksysguard/ksignalplotter.h +include/ksysguard/ksignalplotter_export.h +include/ksysguard/lsof.h +include/ksysguard/lsofui_export.h +include/ksysguard/processcore/formatter.h +include/ksysguard/processcore/process.h +include/ksysguard/processcore/process_attribute.h +include/ksysguard/processcore/process_attribute_model.h +include/ksysguard/processcore/process_controller.h +include/ksysguard/processcore/process_data_model.h +include/ksysguard/processcore/process_data_provider.h +include/ksysguard/processcore/processcore_export.h +include/ksysguard/processcore/processes.h +include/ksysguard/processcore/unit.h +include/ksysguard/processui/KTextEditVT.h +include/ksysguard/processui/ProcessFilter.h +include/ksysguard/processui/ProcessModel.h +include/ksysguard/processui/ksysguardprocesslist.h +include/ksysguard/processui/processui_export.h +include/ksysguard/sensors/Sensor.h +include/ksysguard/sensors/SensorDataModel.h +include/ksysguard/sensors/SensorInfo_p.h +include/ksysguard/sensors/SensorQuery.h +include/ksysguard/sensors/SensorTreeModel.h +include/ksysguard/sensors/SensorUnitModel.h +include/ksysguard/sensors/sensors_export.h +include/ksysguard/systemstats/AggregateSensor.h +include/ksysguard/systemstats/DBusInterface.h +include/ksysguard/systemstats/SensorContainer.h +include/ksysguard/systemstats/SensorInfo.h +include/ksysguard/systemstats/SensorObject.h +include/ksysguard/systemstats/SensorPlugin.h +include/ksysguard/systemstats/SensorProperty.h +include/ksysguard/systemstats/SensorsFeatureSensor.h +include/ksysguard/systemstats/SysFsSensor.h +include/ksysguard/systemstats/SysctlSensor.h +include/ksysguard/systemstats/org.kde.ksystemstats.h +include/ksysguard/systemstats/systemstats_export.h +lib/cmake/KSysGuard/KSysGuardConfig.cmake +lib/cmake/KSysGuard/KSysGuardConfigVersion.cmake +lib/cmake/KSysGuard/KSysGuardLibraryTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/KSysGuard/KSysGuardLibraryTargets.cmake +lib/libKSysGuardFormatter.so +lib/libKSysGuardFormatter.so.2 +lib/libKSysGuardFormatter.so.%%KDE_PLASMA_VERSION%% +lib/libKSysGuardSensorFaces.so +lib/libKSysGuardSensorFaces.so.2 +lib/libKSysGuardSensorFaces.so.%%KDE_PLASMA_VERSION%% +lib/libKSysGuardSensors.so +lib/libKSysGuardSensors.so.2 +lib/libKSysGuardSensors.so.%%KDE_PLASMA_VERSION%% +lib/libKSysGuardSystemStats.so +lib/libKSysGuardSystemStats.so.2 +lib/libKSysGuardSystemStats.so.%%KDE_PLASMA_VERSION%% +lib/libexec/kf6/kauth/ksysguardprocesslist_helper +lib/libksgrd.so +lib/libksgrd.so.10 +lib/libksgrd.so.%%KDE_PLASMA_VERSION%% +lib/libksignalplotter.so +lib/libksignalplotter.so.10 +lib/libksignalplotter.so.%%KDE_PLASMA_VERSION%% +lib/liblsofui.so +lib/liblsofui.so.10 +lib/liblsofui.so.%%KDE_PLASMA_VERSION%% +lib/libprocesscore.so +lib/libprocesscore.so.10 +lib/libprocesscore.so.%%KDE_PLASMA_VERSION%% +lib/libprocessui.so +lib/libprocessui.so.10 +lib/libprocessui.so.%%KDE_PLASMA_VERSION%% +%%QT_PLUGINDIR%%/designer/ksignalplotter5widgets.so +%%QT_PLUGINDIR%%/designer/ksysguard5widgets.so +%%QT_PLUGINDIR%%/designer/ksysguardlsof5widgets.so +%%QT_PLUGINDIR%%/kf6/packagestructure/ksysguard_sensorface.so +%%QT_PLUGINDIR%%/ksysguard/process/ksysguard_plugin_nvidia.so +%%QT_QMLDIR%%/org/kde/ksysguard/faces/Choices.qml +%%QT_QMLDIR%%/org/kde/ksysguard/faces/ExtendedLegend.qml +%%QT_QMLDIR%%/org/kde/ksysguard/faces/SensorFace.qml +%%QT_QMLDIR%%/org/kde/ksysguard/faces/SensorRangeSpinBox.qml +%%QT_QMLDIR%%/org/kde/ksysguard/faces/libFacesPlugin.so +%%QT_QMLDIR%%/org/kde/ksysguard/faces/qmldir +%%QT_QMLDIR%%/org/kde/ksysguard/formatter/libFormatterPlugin.so +%%QT_QMLDIR%%/org/kde/ksysguard/formatter/qmldir +%%QT_QMLDIR%%/org/kde/ksysguard/process/libProcessPlugin.so +%%QT_QMLDIR%%/org/kde/ksysguard/process/qmldir +%%QT_QMLDIR%%/org/kde/ksysguard/sensors/libSensorsPlugin.so +%%QT_QMLDIR%%/org/kde/ksysguard/sensors/qmldir +share/dbus-1/interfaces/org.kde.ksystemstats.xml +share/dbus-1/system-services/org.kde.ksysguard.processlisthelper.service +share/dbus-1/system.d/org.kde.ksysguard.processlisthelper.conf +share/knsrcfiles/systemmonitor-faces.knsrc +share/knsrcfiles/systemmonitor-presets.knsrc +share/ksysguard/scripts/README +share/ksysguard/sensorfaces/org.kde.ksysguard.barchart/contents/config/main.xml +share/ksysguard/sensorfaces/org.kde.ksysguard.barchart/contents/faceproperties +share/ksysguard/sensorfaces/org.kde.ksysguard.barchart/contents/ui/BarChart.qml +share/ksysguard/sensorfaces/org.kde.ksysguard.barchart/contents/ui/CompactRepresentation.qml +share/ksysguard/sensorfaces/org.kde.ksysguard.barchart/contents/ui/Config.qml +share/ksysguard/sensorfaces/org.kde.ksysguard.barchart/contents/ui/FullRepresentation.qml +share/ksysguard/sensorfaces/org.kde.ksysguard.barchart/metadata.json +share/ksysguard/sensorfaces/org.kde.ksysguard.colorgrid/contents/config/main.xml +share/ksysguard/sensorfaces/org.kde.ksysguard.colorgrid/contents/faceproperties +share/ksysguard/sensorfaces/org.kde.ksysguard.colorgrid/contents/ui/CompactRepresentation.qml +share/ksysguard/sensorfaces/org.kde.ksysguard.colorgrid/contents/ui/Config.qml +share/ksysguard/sensorfaces/org.kde.ksysguard.colorgrid/contents/ui/FaceGrid.qml +share/ksysguard/sensorfaces/org.kde.ksysguard.colorgrid/contents/ui/FullRepresentation.qml +share/ksysguard/sensorfaces/org.kde.ksysguard.colorgrid/contents/ui/SensorRect.qml +share/ksysguard/sensorfaces/org.kde.ksysguard.colorgrid/metadata.json +share/ksysguard/sensorfaces/org.kde.ksysguard.facegrid/contents/config/main.xml +share/ksysguard/sensorfaces/org.kde.ksysguard.facegrid/contents/faceproperties +share/ksysguard/sensorfaces/org.kde.ksysguard.facegrid/contents/ui/CompactRepresentation.qml +share/ksysguard/sensorfaces/org.kde.ksysguard.facegrid/contents/ui/Config.qml +share/ksysguard/sensorfaces/org.kde.ksysguard.facegrid/contents/ui/FaceControl.qml +share/ksysguard/sensorfaces/org.kde.ksysguard.facegrid/contents/ui/FaceGrid.qml +share/ksysguard/sensorfaces/org.kde.ksysguard.facegrid/contents/ui/FullRepresentation.qml +share/ksysguard/sensorfaces/org.kde.ksysguard.facegrid/metadata.json +share/ksysguard/sensorfaces/org.kde.ksysguard.horizontalbars/contents/faceproperties +share/ksysguard/sensorfaces/org.kde.ksysguard.horizontalbars/contents/ui/Bar.qml +share/ksysguard/sensorfaces/org.kde.ksysguard.horizontalbars/contents/ui/CompactRepresentation.qml +share/ksysguard/sensorfaces/org.kde.ksysguard.horizontalbars/contents/ui/FullRepresentation.qml +share/ksysguard/sensorfaces/org.kde.ksysguard.horizontalbars/metadata.json +share/ksysguard/sensorfaces/org.kde.ksysguard.linechart/contents/config/main.xml +share/ksysguard/sensorfaces/org.kde.ksysguard.linechart/contents/faceproperties +share/ksysguard/sensorfaces/org.kde.ksysguard.linechart/contents/ui/CompactRepresentation.qml +share/ksysguard/sensorfaces/org.kde.ksysguard.linechart/contents/ui/Config.qml +share/ksysguard/sensorfaces/org.kde.ksysguard.linechart/contents/ui/FullRepresentation.qml +share/ksysguard/sensorfaces/org.kde.ksysguard.linechart/contents/ui/LineChart.qml +share/ksysguard/sensorfaces/org.kde.ksysguard.linechart/metadata.json +share/ksysguard/sensorfaces/org.kde.ksysguard.piechart/contents/config/main.xml +share/ksysguard/sensorfaces/org.kde.ksysguard.piechart/contents/faceproperties +share/ksysguard/sensorfaces/org.kde.ksysguard.piechart/contents/ui/CompactRepresentation.qml +share/ksysguard/sensorfaces/org.kde.ksysguard.piechart/contents/ui/Config.qml +share/ksysguard/sensorfaces/org.kde.ksysguard.piechart/contents/ui/FullRepresentation.qml +share/ksysguard/sensorfaces/org.kde.ksysguard.piechart/contents/ui/PieChart.qml +share/ksysguard/sensorfaces/org.kde.ksysguard.piechart/contents/ui/UsedTotalDisplay.qml +share/ksysguard/sensorfaces/org.kde.ksysguard.piechart/metadata.json +share/ksysguard/sensorfaces/org.kde.ksysguard.textonly/contents/config/main.xml +share/ksysguard/sensorfaces/org.kde.ksysguard.textonly/contents/faceproperties +share/ksysguard/sensorfaces/org.kde.ksysguard.textonly/contents/ui/CompactRepresentation.qml +share/ksysguard/sensorfaces/org.kde.ksysguard.textonly/contents/ui/Config.qml +share/ksysguard/sensorfaces/org.kde.ksysguard.textonly/contents/ui/FullRepresentation.qml +share/ksysguard/sensorfaces/org.kde.ksysguard.textonly/contents/ui/GroupedText.qml +share/ksysguard/sensorfaces/org.kde.ksysguard.textonly/metadata.json +share/locale/ar/LC_MESSAGES/KSysGuardSensorFaces.mo +share/locale/ar/LC_MESSAGES/ksgrd.mo +share/locale/ar/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo +share/locale/ar/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo +share/locale/ar/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo +share/locale/ar/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo +share/locale/ar/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo +share/locale/ar/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo +share/locale/ar/LC_MESSAGES/ksysguard_sensors.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/KSysGuardFormatter.mo +share/locale/ast/LC_MESSAGES/KSysGuardSensorFaces.mo +share/locale/ast/LC_MESSAGES/ksgrd.mo +share/locale/ast/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo +share/locale/ast/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo +share/locale/ast/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo +share/locale/ast/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo +share/locale/ast/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo +share/locale/ast/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo +share/locale/ast/LC_MESSAGES/ksysguard_sensors.mo +share/locale/ast/LC_MESSAGES/ksysguardlsofwidgets.mo +share/locale/ast/LC_MESSAGES/processcore.mo +share/locale/ast/LC_MESSAGES/processui.mo +share/locale/az/LC_MESSAGES/KSysGuardFormatter.mo +share/locale/az/LC_MESSAGES/KSysGuardSensorFaces.mo +share/locale/az/LC_MESSAGES/ksgrd.mo +share/locale/az/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo +share/locale/az/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo +share/locale/az/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo +share/locale/az/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo +share/locale/az/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo +share/locale/az/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo +share/locale/az/LC_MESSAGES/ksysguard_sensors.mo +share/locale/az/LC_MESSAGES/ksysguardlsofwidgets.mo +share/locale/az/LC_MESSAGES/processcore.mo +share/locale/az/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/KSysGuardFormatter.mo +share/locale/bg/LC_MESSAGES/KSysGuardSensorFaces.mo +share/locale/bg/LC_MESSAGES/ksgrd.mo +share/locale/bg/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo +share/locale/bg/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo +share/locale/bg/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo +share/locale/bg/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo +share/locale/bg/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo +share/locale/bg/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo +share/locale/bg/LC_MESSAGES/ksysguard_sensors.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/KSysGuardFormatter.mo +share/locale/ca/LC_MESSAGES/KSysGuardSensorFaces.mo +share/locale/ca/LC_MESSAGES/ksgrd.mo +share/locale/ca/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo +share/locale/ca/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo +share/locale/ca/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo +share/locale/ca/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo +share/locale/ca/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo +share/locale/ca/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo +share/locale/ca/LC_MESSAGES/ksysguard_sensors.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/KSysGuardFormatter.mo +share/locale/ca@valencia/LC_MESSAGES/KSysGuardSensorFaces.mo +share/locale/ca@valencia/LC_MESSAGES/ksgrd.mo +share/locale/ca@valencia/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo +share/locale/ca@valencia/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo +share/locale/ca@valencia/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo +share/locale/ca@valencia/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo +share/locale/ca@valencia/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo +share/locale/ca@valencia/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo +share/locale/ca@valencia/LC_MESSAGES/ksysguard_sensors.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/KSysGuardFormatter.mo +share/locale/cs/LC_MESSAGES/KSysGuardSensorFaces.mo +share/locale/cs/LC_MESSAGES/ksgrd.mo +share/locale/cs/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo +share/locale/cs/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo +share/locale/cs/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo +share/locale/cs/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo +share/locale/cs/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo +share/locale/cs/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo +share/locale/cs/LC_MESSAGES/ksysguard_sensors.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/ksysguard_face_org.kde.ksysguard.barchart.mo +share/locale/da/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo +share/locale/da/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.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/KSysGuardFormatter.mo +share/locale/de/LC_MESSAGES/KSysGuardSensorFaces.mo +share/locale/de/LC_MESSAGES/ksgrd.mo +share/locale/de/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo +share/locale/de/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo +share/locale/de/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo +share/locale/de/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo +share/locale/de/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo +share/locale/de/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo +share/locale/de/LC_MESSAGES/ksysguard_sensors.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/KSysGuardFormatter.mo +share/locale/en_GB/LC_MESSAGES/KSysGuardSensorFaces.mo +share/locale/en_GB/LC_MESSAGES/ksgrd.mo +share/locale/en_GB/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo +share/locale/en_GB/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo +share/locale/en_GB/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo +share/locale/en_GB/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo +share/locale/en_GB/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo +share/locale/en_GB/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo +share/locale/en_GB/LC_MESSAGES/ksysguard_sensors.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/KSysGuardFormatter.mo +share/locale/eo/LC_MESSAGES/KSysGuardSensorFaces.mo +share/locale/eo/LC_MESSAGES/ksgrd.mo +share/locale/eo/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo +share/locale/eo/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo +share/locale/eo/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo +share/locale/eo/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo +share/locale/eo/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo +share/locale/eo/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo +share/locale/eo/LC_MESSAGES/ksysguard_sensors.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/KSysGuardFormatter.mo +share/locale/es/LC_MESSAGES/KSysGuardSensorFaces.mo +share/locale/es/LC_MESSAGES/ksgrd.mo +share/locale/es/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo +share/locale/es/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo +share/locale/es/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo +share/locale/es/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo +share/locale/es/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo +share/locale/es/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo +share/locale/es/LC_MESSAGES/ksysguard_sensors.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/KSysGuardSensorFaces.mo +share/locale/et/LC_MESSAGES/ksgrd.mo +share/locale/et/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo +share/locale/et/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo +share/locale/et/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo +share/locale/et/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.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/KSysGuardFormatter.mo +share/locale/eu/LC_MESSAGES/KSysGuardSensorFaces.mo +share/locale/eu/LC_MESSAGES/ksgrd.mo +share/locale/eu/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo +share/locale/eu/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo +share/locale/eu/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo +share/locale/eu/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo +share/locale/eu/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo +share/locale/eu/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo +share/locale/eu/LC_MESSAGES/ksysguard_sensors.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/KSysGuardFormatter.mo +share/locale/fi/LC_MESSAGES/KSysGuardSensorFaces.mo +share/locale/fi/LC_MESSAGES/ksgrd.mo +share/locale/fi/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo +share/locale/fi/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo +share/locale/fi/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo +share/locale/fi/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo +share/locale/fi/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo +share/locale/fi/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo +share/locale/fi/LC_MESSAGES/ksysguard_sensors.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/KSysGuardFormatter.mo +share/locale/fr/LC_MESSAGES/KSysGuardSensorFaces.mo +share/locale/fr/LC_MESSAGES/ksgrd.mo +share/locale/fr/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo +share/locale/fr/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo +share/locale/fr/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo +share/locale/fr/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo +share/locale/fr/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo +share/locale/fr/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo +share/locale/fr/LC_MESSAGES/ksysguard_sensors.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/ksysguard_face_org.kde.ksysguard.barchart.mo +share/locale/gl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo +share/locale/gl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo +share/locale/gl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo +share/locale/gl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo +share/locale/gl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.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/KSysGuardSensorFaces.mo +share/locale/hu/LC_MESSAGES/ksgrd.mo +share/locale/hu/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo +share/locale/hu/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo +share/locale/hu/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo +share/locale/hu/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo +share/locale/hu/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.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/KSysGuardFormatter.mo +share/locale/ia/LC_MESSAGES/KSysGuardSensorFaces.mo +share/locale/ia/LC_MESSAGES/ksgrd.mo +share/locale/ia/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo +share/locale/ia/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo +share/locale/ia/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo +share/locale/ia/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo +share/locale/ia/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo +share/locale/ia/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo +share/locale/ia/LC_MESSAGES/ksysguard_sensors.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/ksgrd.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/KSysGuardFormatter.mo +share/locale/it/LC_MESSAGES/KSysGuardSensorFaces.mo +share/locale/it/LC_MESSAGES/ksgrd.mo +share/locale/it/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo +share/locale/it/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo +share/locale/it/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo +share/locale/it/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo +share/locale/it/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo +share/locale/it/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo +share/locale/it/LC_MESSAGES/ksysguard_sensors.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/KSysGuardFormatter.mo +share/locale/ja/LC_MESSAGES/KSysGuardSensorFaces.mo +share/locale/ja/LC_MESSAGES/ksgrd.mo +share/locale/ja/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo +share/locale/ja/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo +share/locale/ja/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo +share/locale/ja/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo +share/locale/ja/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo +share/locale/ja/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo +share/locale/ja/LC_MESSAGES/ksysguard_sensors.mo +share/locale/ja/LC_MESSAGES/ksysguardlsofwidgets.mo +share/locale/ja/LC_MESSAGES/processcore.mo +share/locale/ja/LC_MESSAGES/processui.mo +share/locale/ka/LC_MESSAGES/KSysGuardFormatter.mo +share/locale/ka/LC_MESSAGES/KSysGuardSensorFaces.mo +share/locale/ka/LC_MESSAGES/ksgrd.mo +share/locale/ka/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo +share/locale/ka/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo +share/locale/ka/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo +share/locale/ka/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo +share/locale/ka/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo +share/locale/ka/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo +share/locale/ka/LC_MESSAGES/ksysguard_sensors.mo +share/locale/ka/LC_MESSAGES/ksysguardlsofwidgets.mo +share/locale/ka/LC_MESSAGES/processcore.mo +share/locale/ka/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/KSysGuardFormatter.mo +share/locale/ko/LC_MESSAGES/KSysGuardSensorFaces.mo +share/locale/ko/LC_MESSAGES/ksgrd.mo +share/locale/ko/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo +share/locale/ko/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo +share/locale/ko/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo +share/locale/ko/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo +share/locale/ko/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo +share/locale/ko/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo +share/locale/ko/LC_MESSAGES/ksysguard_sensors.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/KSysGuardFormatter.mo +share/locale/lt/LC_MESSAGES/KSysGuardSensorFaces.mo +share/locale/lt/LC_MESSAGES/ksgrd.mo +share/locale/lt/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo +share/locale/lt/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo +share/locale/lt/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo +share/locale/lt/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo +share/locale/lt/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo +share/locale/lt/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo +share/locale/lt/LC_MESSAGES/ksysguard_sensors.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/ksgrd.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/KSysGuardFormatter.mo +share/locale/nl/LC_MESSAGES/KSysGuardSensorFaces.mo +share/locale/nl/LC_MESSAGES/ksgrd.mo +share/locale/nl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo +share/locale/nl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo +share/locale/nl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo +share/locale/nl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo +share/locale/nl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo +share/locale/nl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo +share/locale/nl/LC_MESSAGES/ksysguard_sensors.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/KSysGuardFormatter.mo +share/locale/nn/LC_MESSAGES/KSysGuardSensorFaces.mo +share/locale/nn/LC_MESSAGES/ksgrd.mo +share/locale/nn/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo +share/locale/nn/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo +share/locale/nn/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo +share/locale/nn/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo +share/locale/nn/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo +share/locale/nn/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo +share/locale/nn/LC_MESSAGES/ksysguard_sensors.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/KSysGuardFormatter.mo +share/locale/pl/LC_MESSAGES/KSysGuardSensorFaces.mo +share/locale/pl/LC_MESSAGES/ksgrd.mo +share/locale/pl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo +share/locale/pl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo +share/locale/pl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo +share/locale/pl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo +share/locale/pl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo +share/locale/pl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo +share/locale/pl/LC_MESSAGES/ksysguard_sensors.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/KSysGuardFormatter.mo +share/locale/pt/LC_MESSAGES/KSysGuardSensorFaces.mo +share/locale/pt/LC_MESSAGES/ksgrd.mo +share/locale/pt/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo +share/locale/pt/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo +share/locale/pt/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo +share/locale/pt/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo +share/locale/pt/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo +share/locale/pt/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo +share/locale/pt/LC_MESSAGES/ksysguard_sensors.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/KSysGuardSensorFaces.mo +share/locale/pt_BR/LC_MESSAGES/ksgrd.mo +share/locale/pt_BR/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo +share/locale/pt_BR/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo +share/locale/pt_BR/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo +share/locale/pt_BR/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo +share/locale/pt_BR/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.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/KSysGuardSensorFaces.mo +share/locale/ro/LC_MESSAGES/ksgrd.mo +share/locale/ro/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo +share/locale/ro/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo +share/locale/ro/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo +share/locale/ro/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo +share/locale/ro/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.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/KSysGuardSensorFaces.mo +share/locale/ru/LC_MESSAGES/ksgrd.mo +share/locale/ru/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo +share/locale/ru/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo +share/locale/ru/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo +share/locale/ru/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo +share/locale/ru/LC_MESSAGES/ksysguard_sensors.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/KSysGuardFormatter.mo +share/locale/sk/LC_MESSAGES/KSysGuardSensorFaces.mo +share/locale/sk/LC_MESSAGES/ksgrd.mo +share/locale/sk/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo +share/locale/sk/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo +share/locale/sk/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo +share/locale/sk/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo +share/locale/sk/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo +share/locale/sk/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo +share/locale/sk/LC_MESSAGES/ksysguard_sensors.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/KSysGuardFormatter.mo +share/locale/sl/LC_MESSAGES/KSysGuardSensorFaces.mo +share/locale/sl/LC_MESSAGES/ksgrd.mo +share/locale/sl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo +share/locale/sl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo +share/locale/sl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo +share/locale/sl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo +share/locale/sl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo +share/locale/sl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo +share/locale/sl/LC_MESSAGES/ksysguard_sensors.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/KSysGuardSensorFaces.mo +share/locale/sv/LC_MESSAGES/ksgrd.mo +share/locale/sv/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo +share/locale/sv/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo +share/locale/sv/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo +share/locale/sv/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo +share/locale/sv/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo +share/locale/sv/LC_MESSAGES/ksysguard_sensors.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/KSysGuardFormatter.mo +share/locale/tr/LC_MESSAGES/KSysGuardSensorFaces.mo +share/locale/tr/LC_MESSAGES/ksgrd.mo +share/locale/tr/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo +share/locale/tr/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo +share/locale/tr/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo +share/locale/tr/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo +share/locale/tr/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo +share/locale/tr/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo +share/locale/tr/LC_MESSAGES/ksysguard_sensors.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/KSysGuardFormatter.mo +share/locale/uk/LC_MESSAGES/KSysGuardSensorFaces.mo +share/locale/uk/LC_MESSAGES/ksgrd.mo +share/locale/uk/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo +share/locale/uk/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo +share/locale/uk/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo +share/locale/uk/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo +share/locale/uk/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo +share/locale/uk/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo +share/locale/uk/LC_MESSAGES/ksysguard_sensors.mo +share/locale/uk/LC_MESSAGES/ksysguardlsofwidgets.mo +share/locale/uk/LC_MESSAGES/processcore.mo +share/locale/uk/LC_MESSAGES/processui.mo +share/locale/vi/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo +share/locale/vi/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo +share/locale/vi/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo +share/locale/vi/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo +share/locale/vi/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo +share/locale/vi/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo +share/locale/vi/LC_MESSAGES/ksysguardlsofwidgets.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/KSysGuardFormatter.mo +share/locale/zh_CN/LC_MESSAGES/KSysGuardSensorFaces.mo +share/locale/zh_CN/LC_MESSAGES/ksgrd.mo +share/locale/zh_CN/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo +share/locale/zh_CN/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo +share/locale/zh_CN/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo +share/locale/zh_CN/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo +share/locale/zh_CN/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo +share/locale/zh_CN/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo +share/locale/zh_CN/LC_MESSAGES/ksysguard_sensors.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/KSysGuardFormatter.mo +share/locale/zh_TW/LC_MESSAGES/KSysGuardSensorFaces.mo +share/locale/zh_TW/LC_MESSAGES/ksgrd.mo +share/locale/zh_TW/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo +share/locale/zh_TW/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo +share/locale/zh_TW/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo +share/locale/zh_TW/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo +share/locale/zh_TW/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo +share/locale/zh_TW/LC_MESSAGES/ksysguard_sensors.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/qlogging-categories6/libksysguard.categories diff --git a/sysutils/plasma6-plasma-disks/Makefile b/sysutils/plasma6-plasma-disks/Makefile new file mode 100644 index 000000000000..09baee5af98d --- /dev/null +++ b/sysutils/plasma6-plasma-disks/Makefile @@ -0,0 +1,14 @@ +PORTNAME= plasma-disks +DISTVERSION= ${KDE_PLASMA_VERSION} +CATEGORIES= sysutils kde kde-plasma + +MAINTAINER= kde@FreeBSD.org +COMMENT= Monitors S.M.A.R.T. capable devices for imminent failure + +USES= cmake gettext kde:6 qt:6 tar:xz +USE_KDE= auth coreaddons dbusaddons i18n kcmutils kio notifications \ + package service solid \ + ecm:build +USE_QT= base + +.include diff --git a/sysutils/plasma6-plasma-disks/distinfo b/sysutils/plasma6-plasma-disks/distinfo new file mode 100644 index 000000000000..54028a0155d0 --- /dev/null +++ b/sysutils/plasma6-plasma-disks/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1701525054 +SHA256 (KDE/plasma/5.90.0/plasma-disks-5.90.0.tar.xz) = 97e3674dcf2e98dc4faf487ae0256578f1c6a81bfc84da7c1c7445a6c8ca8a53 +SIZE (KDE/plasma/5.90.0/plasma-disks-5.90.0.tar.xz) = 99376 diff --git a/sysutils/plasma6-plasma-disks/pkg-plist b/sysutils/plasma6-plasma-disks/pkg-plist new file mode 100644 index 000000000000..95d1236c4dc4 --- /dev/null +++ b/sysutils/plasma6-plasma-disks/pkg-plist @@ -0,0 +1,52 @@ +lib/libexec/kf6/kauth/kded-smart-helper +%%QT_PLUGINDIR%%/kf6/kded/smart.so +%%QT_PLUGINDIR%%/plasma/kcms/kinfocenter/kcm_disks.so +share/applications/kcm_disks.desktop +share/dbus-1/system-services/org.kde.kded.smart.service +share/dbus-1/system.d/org.kde.kded.smart.conf +share/knotifications6/org.kde.kded.smart.notifyrc +share/locale/ar/LC_MESSAGES/kcm_disks.mo +share/locale/ast/LC_MESSAGES/kcm_disks.mo +share/locale/az/LC_MESSAGES/kcm_disks.mo +share/locale/bg/LC_MESSAGES/kcm_disks.mo +share/locale/ca/LC_MESSAGES/kcm_disks.mo +share/locale/ca@valencia/LC_MESSAGES/kcm_disks.mo +share/locale/cs/LC_MESSAGES/kcm_disks.mo +share/locale/da/LC_MESSAGES/kcm_disks.mo +share/locale/de/LC_MESSAGES/kcm_disks.mo +share/locale/el/LC_MESSAGES/kcm_disks.mo +share/locale/en_GB/LC_MESSAGES/kcm_disks.mo +share/locale/eo/LC_MESSAGES/kcm_disks.mo +share/locale/es/LC_MESSAGES/kcm_disks.mo +share/locale/et/LC_MESSAGES/kcm_disks.mo +share/locale/eu/LC_MESSAGES/kcm_disks.mo +share/locale/fi/LC_MESSAGES/kcm_disks.mo +share/locale/fr/LC_MESSAGES/kcm_disks.mo +share/locale/gl/LC_MESSAGES/kcm_disks.mo +share/locale/he/LC_MESSAGES/kcm_disks.mo +share/locale/hu/LC_MESSAGES/kcm_disks.mo +share/locale/ia/LC_MESSAGES/kcm_disks.mo +share/locale/id/LC_MESSAGES/kcm_disks.mo +share/locale/is/LC_MESSAGES/kcm_disks.mo +share/locale/it/LC_MESSAGES/kcm_disks.mo +share/locale/ja/LC_MESSAGES/kcm_disks.mo +share/locale/ka/LC_MESSAGES/kcm_disks.mo +share/locale/ko/LC_MESSAGES/kcm_disks.mo +share/locale/lt/LC_MESSAGES/kcm_disks.mo +share/locale/nl/LC_MESSAGES/kcm_disks.mo +share/locale/nn/LC_MESSAGES/kcm_disks.mo +share/locale/pa/LC_MESSAGES/kcm_disks.mo +share/locale/pl/LC_MESSAGES/kcm_disks.mo +share/locale/pt/LC_MESSAGES/kcm_disks.mo +share/locale/pt_BR/LC_MESSAGES/kcm_disks.mo +share/locale/ro/LC_MESSAGES/kcm_disks.mo +share/locale/ru/LC_MESSAGES/kcm_disks.mo +share/locale/sk/LC_MESSAGES/kcm_disks.mo +share/locale/sl/LC_MESSAGES/kcm_disks.mo +share/locale/sv/LC_MESSAGES/kcm_disks.mo +share/locale/ta/LC_MESSAGES/kcm_disks.mo +share/locale/tr/LC_MESSAGES/kcm_disks.mo +share/locale/uk/LC_MESSAGES/kcm_disks.mo +share/locale/zh_CN/LC_MESSAGES/kcm_disks.mo +share/locale/zh_TW/LC_MESSAGES/kcm_disks.mo +share/metainfo/org.kde.plasma.disks.metainfo.xml diff --git a/sysutils/plasma6-plasma-systemmonitor/Makefile b/sysutils/plasma6-plasma-systemmonitor/Makefile new file mode 100644 index 000000000000..21bd827e5fb7 --- /dev/null +++ b/sysutils/plasma6-plasma-systemmonitor/Makefile @@ -0,0 +1,15 @@ +PORTNAME= plasma-systemmonitor +DISTVERSION= ${KDE_PLASMA_VERSION} +CATEGORIES= sysutils kde kde-plasma + +MAINTAINER= kde@FreeBSD.org +COMMENT= Interface for monitoring system sensors, process information and other system resources + +USES= cmake gettext kde:6 qt:6 tar:xz +USE_KDE= config dbusaddons globalaccel i18n itemmodels kio \ + kirigami-addons libksysguard newstuff package service \ + windowsystem \ + ecm:build +USE_QT= base declarative + +.include diff --git a/sysutils/plasma6-plasma-systemmonitor/distinfo b/sysutils/plasma6-plasma-systemmonitor/distinfo new file mode 100644 index 000000000000..0cfa4efd2654 --- /dev/null +++ b/sysutils/plasma6-plasma-systemmonitor/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1701525121 +SHA256 (KDE/plasma/5.90.0/plasma-systemmonitor-5.90.0.tar.xz) = 557aad1fae01ad9038637a07c20e228af052754115e13578b3d510901e7862d3 +SIZE (KDE/plasma/5.90.0/plasma-systemmonitor-5.90.0.tar.xz) = 181040 diff --git a/sysutils/plasma6-plasma-systemmonitor/pkg-plist b/sysutils/plasma6-plasma-systemmonitor/pkg-plist new file mode 100644 index 000000000000..0d79d8abfd70 --- /dev/null +++ b/sysutils/plasma6-plasma-systemmonitor/pkg-plist @@ -0,0 +1,192 @@ +bin/plasma-systemmonitor +lib/libPlasmaSystemMonitorPage.so +lib/libPlasmaSystemMonitorTable.so +%%QT_QMLDIR%%/org/kde/ksysguard/page/ColumnControl.qml +%%QT_QMLDIR%%/org/kde/ksysguard/page/ConditionalLoader.qml +%%QT_QMLDIR%%/org/kde/ksysguard/page/Container.qml +%%QT_QMLDIR%%/org/kde/ksysguard/page/DialogLoader.qml +%%QT_QMLDIR%%/org/kde/ksysguard/page/EditablePage.qml +%%QT_QMLDIR%%/org/kde/ksysguard/page/EditablePageAction.qml +%%QT_QMLDIR%%/org/kde/ksysguard/page/EditorToolBar.qml +%%QT_QMLDIR%%/org/kde/ksysguard/page/FaceConfigurationPage.qml +%%QT_QMLDIR%%/org/kde/ksysguard/page/FaceControl.qml +%%QT_QMLDIR%%/org/kde/ksysguard/page/LoadPresetDialog.qml +%%QT_QMLDIR%%/org/kde/ksysguard/page/MissingSensorsDialog.qml +%%QT_QMLDIR%%/org/kde/ksysguard/page/MoveButton.qml +%%QT_QMLDIR%%/org/kde/ksysguard/page/PageContents.qml +%%QT_QMLDIR%%/org/kde/ksysguard/page/PageDialog.qml +%%QT_QMLDIR%%/org/kde/ksysguard/page/PageEditor.qml +%%QT_QMLDIR%%/org/kde/ksysguard/page/PageSortDialog.qml +%%QT_QMLDIR%%/org/kde/ksysguard/page/PlaceholderRectangle.qml +%%QT_QMLDIR%%/org/kde/ksysguard/page/PlasmaSystemMonitorPage.qmltypes +%%QT_QMLDIR%%/org/kde/ksysguard/page/RowControl.qml +%%QT_QMLDIR%%/org/kde/ksysguard/page/SectionControl.qml +%%QT_QMLDIR%%/org/kde/ksysguard/page/kde-qmlmodule.version +%%QT_QMLDIR%%/org/kde/ksysguard/page/libPlasmaSystemMonitorPageplugin.so +%%QT_QMLDIR%%/org/kde/ksysguard/page/qmldir +%%QT_QMLDIR%%/org/kde/ksysguard/table/BaseCellDelegate.qml +%%QT_QMLDIR%%/org/kde/ksysguard/table/BaseTableView.qml +%%QT_QMLDIR%%/org/kde/ksysguard/table/ColumnConfigurationDialog.qml +%%QT_QMLDIR%%/org/kde/ksysguard/table/FirstCellDelegate.qml +%%QT_QMLDIR%%/org/kde/ksysguard/table/KillDialog.qml +%%QT_QMLDIR%%/org/kde/ksysguard/table/LineChartCellDelegate.qml +%%QT_QMLDIR%%/org/kde/ksysguard/table/PlasmaSystemMonitorTable.qmltypes +%%QT_QMLDIR%%/org/kde/ksysguard/table/TableViewHeader.qml +%%QT_QMLDIR%%/org/kde/ksysguard/table/TextCellDelegate.qml +%%QT_QMLDIR%%/org/kde/ksysguard/table/UserCellDelegate.qml +%%QT_QMLDIR%%/org/kde/ksysguard/table/kde-qmlmodule.version +%%QT_QMLDIR%%/org/kde/ksysguard/table/libPlasmaSystemMonitorTableplugin.so +%%QT_QMLDIR%%/org/kde/ksysguard/table/qmldir +share/applications/org.kde.plasma-systemmonitor.desktop +share/config.kcfg/systemmonitor.kcfg +share/knsrcfiles/plasma-systemmonitor.knsrc +share/ksysguard/sensorfaces/org.kde.ksysguard.applicationstable/contents/config/main.xml +share/ksysguard/sensorfaces/org.kde.ksysguard.applicationstable/contents/faceproperties +share/ksysguard/sensorfaces/org.kde.ksysguard.applicationstable/contents/ui/ApplicationDetails.qml +share/ksysguard/sensorfaces/org.kde.ksysguard.applicationstable/contents/ui/ApplicationInformation.qml +share/ksysguard/sensorfaces/org.kde.ksysguard.applicationstable/contents/ui/ApplicationsTableView.qml +share/ksysguard/sensorfaces/org.kde.ksysguard.applicationstable/contents/ui/CompactRepresentation.qml +share/ksysguard/sensorfaces/org.kde.ksysguard.applicationstable/contents/ui/Config.qml +share/ksysguard/sensorfaces/org.kde.ksysguard.applicationstable/contents/ui/FullRepresentation.qml +share/ksysguard/sensorfaces/org.kde.ksysguard.applicationstable/contents/ui/LineChartCard.qml +share/ksysguard/sensorfaces/org.kde.ksysguard.applicationstable/metadata.json +share/ksysguard/sensorfaces/org.kde.ksysguard.processtable/contents/config/main.xml +share/ksysguard/sensorfaces/org.kde.ksysguard.processtable/contents/faceproperties +share/ksysguard/sensorfaces/org.kde.ksysguard.processtable/contents/ui/CompactRepresentation.qml +share/ksysguard/sensorfaces/org.kde.ksysguard.processtable/contents/ui/Config.qml +share/ksysguard/sensorfaces/org.kde.ksysguard.processtable/contents/ui/FullRepresentation.qml +share/ksysguard/sensorfaces/org.kde.ksysguard.processtable/contents/ui/ProcessTableView.qml +share/ksysguard/sensorfaces/org.kde.ksysguard.processtable/metadata.json +share/locale/ar/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.applicationstable.mo +share/locale/ar/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.processtable.mo +share/locale/ar/LC_MESSAGES/plasma-systemmonitor.mo +share/locale/ast/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.applicationstable.mo +share/locale/ast/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.processtable.mo +share/locale/ast/LC_MESSAGES/plasma-systemmonitor.mo +share/locale/az/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.applicationstable.mo +share/locale/az/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.processtable.mo +share/locale/az/LC_MESSAGES/plasma-systemmonitor.mo +share/locale/be/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.applicationstable.mo +share/locale/be/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.processtable.mo +share/locale/be/LC_MESSAGES/plasma-systemmonitor.mo +share/locale/bg/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.applicationstable.mo +share/locale/bg/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.processtable.mo +share/locale/bg/LC_MESSAGES/plasma-systemmonitor.mo +share/locale/ca/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.applicationstable.mo +share/locale/ca/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.processtable.mo +share/locale/ca/LC_MESSAGES/plasma-systemmonitor.mo +share/locale/ca@valencia/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.applicationstable.mo +share/locale/ca@valencia/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.processtable.mo +share/locale/ca@valencia/LC_MESSAGES/plasma-systemmonitor.mo +share/locale/cs/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.applicationstable.mo +share/locale/cs/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.processtable.mo +share/locale/cs/LC_MESSAGES/plasma-systemmonitor.mo +share/locale/da/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.applicationstable.mo +share/locale/da/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.processtable.mo +share/locale/da/LC_MESSAGES/plasma-systemmonitor.mo +share/locale/de/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.applicationstable.mo +share/locale/de/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.processtable.mo +share/locale/de/LC_MESSAGES/plasma-systemmonitor.mo +share/locale/en_GB/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.applicationstable.mo +share/locale/en_GB/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.processtable.mo +share/locale/en_GB/LC_MESSAGES/plasma-systemmonitor.mo +share/locale/eo/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.applicationstable.mo +share/locale/eo/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.processtable.mo +share/locale/eo/LC_MESSAGES/plasma-systemmonitor.mo +share/locale/es/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.applicationstable.mo +share/locale/es/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.processtable.mo +share/locale/es/LC_MESSAGES/plasma-systemmonitor.mo +share/locale/eu/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.applicationstable.mo +share/locale/eu/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.processtable.mo +share/locale/eu/LC_MESSAGES/plasma-systemmonitor.mo +share/locale/fi/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.applicationstable.mo +share/locale/fi/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.processtable.mo +share/locale/fi/LC_MESSAGES/plasma-systemmonitor.mo +share/locale/fr/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.applicationstable.mo +share/locale/fr/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.processtable.mo +share/locale/fr/LC_MESSAGES/plasma-systemmonitor.mo +share/locale/gl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.applicationstable.mo +share/locale/gl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.processtable.mo +share/locale/gl/LC_MESSAGES/plasma-systemmonitor.mo +share/locale/hu/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.applicationstable.mo +share/locale/hu/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.processtable.mo +share/locale/hu/LC_MESSAGES/plasma-systemmonitor.mo +share/locale/ia/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.applicationstable.mo +share/locale/ia/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.processtable.mo +share/locale/ia/LC_MESSAGES/plasma-systemmonitor.mo +share/locale/id/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.applicationstable.mo +share/locale/id/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.processtable.mo +share/locale/id/LC_MESSAGES/plasma-systemmonitor.mo +share/locale/it/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.applicationstable.mo +share/locale/it/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.processtable.mo +share/locale/it/LC_MESSAGES/plasma-systemmonitor.mo +share/locale/ja/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.applicationstable.mo +share/locale/ja/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.processtable.mo +share/locale/ja/LC_MESSAGES/plasma-systemmonitor.mo +share/locale/ka/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.applicationstable.mo +share/locale/ka/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.processtable.mo +share/locale/ka/LC_MESSAGES/plasma-systemmonitor.mo +share/locale/ko/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.applicationstable.mo +share/locale/ko/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.processtable.mo +share/locale/ko/LC_MESSAGES/plasma-systemmonitor.mo +share/locale/lt/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.applicationstable.mo +share/locale/lt/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.processtable.mo +share/locale/lt/LC_MESSAGES/plasma-systemmonitor.mo +share/locale/nb/LC_MESSAGES/plasma-systemmonitor.mo +share/locale/nl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.applicationstable.mo +share/locale/nl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.processtable.mo +share/locale/nl/LC_MESSAGES/plasma-systemmonitor.mo +share/locale/nn/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.applicationstable.mo +share/locale/nn/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.processtable.mo +share/locale/nn/LC_MESSAGES/plasma-systemmonitor.mo +share/locale/pa/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.applicationstable.mo +share/locale/pa/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.processtable.mo +share/locale/pa/LC_MESSAGES/plasma-systemmonitor.mo +share/locale/pl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.applicationstable.mo +share/locale/pl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.processtable.mo +share/locale/pl/LC_MESSAGES/plasma-systemmonitor.mo +share/locale/pt/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.applicationstable.mo +share/locale/pt/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.processtable.mo +share/locale/pt/LC_MESSAGES/plasma-systemmonitor.mo +share/locale/pt_BR/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.applicationstable.mo +share/locale/pt_BR/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.processtable.mo +share/locale/pt_BR/LC_MESSAGES/plasma-systemmonitor.mo +share/locale/ro/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.applicationstable.mo +share/locale/ro/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.processtable.mo +share/locale/ro/LC_MESSAGES/plasma-systemmonitor.mo +share/locale/ru/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.applicationstable.mo +share/locale/ru/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.processtable.mo +share/locale/ru/LC_MESSAGES/plasma-systemmonitor.mo +share/locale/sa/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.applicationstable.mo +share/locale/sa/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.processtable.mo +share/locale/sa/LC_MESSAGES/plasma-systemmonitor.mo +share/locale/sk/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.applicationstable.mo +share/locale/sk/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.processtable.mo +share/locale/sk/LC_MESSAGES/plasma-systemmonitor.mo +share/locale/sl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.applicationstable.mo +share/locale/sl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.processtable.mo +share/locale/sl/LC_MESSAGES/plasma-systemmonitor.mo +share/locale/sv/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.applicationstable.mo +share/locale/sv/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.processtable.mo +share/locale/sv/LC_MESSAGES/plasma-systemmonitor.mo +share/locale/ta/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.applicationstable.mo +share/locale/ta/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.processtable.mo +share/locale/ta/LC_MESSAGES/plasma-systemmonitor.mo +share/locale/tr/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.applicationstable.mo +share/locale/tr/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.processtable.mo +share/locale/tr/LC_MESSAGES/plasma-systemmonitor.mo +share/locale/uk/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.applicationstable.mo +share/locale/uk/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.processtable.mo +share/locale/uk/LC_MESSAGES/plasma-systemmonitor.mo +share/locale/zh_CN/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.applicationstable.mo +share/locale/zh_CN/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.processtable.mo +share/locale/zh_CN/LC_MESSAGES/plasma-systemmonitor.mo +share/locale/zh_TW/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.applicationstable.mo +share/locale/zh_TW/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.processtable.mo +share/locale/zh_TW/LC_MESSAGES/plasma-systemmonitor.mo +share/metainfo/org.kde.plasma-systemmonitor.metainfo.xml +%%DATADIR%%/applications.page +%%DATADIR%%/history.page +%%DATADIR%%/overview.page +%%DATADIR%%/processes.page +share/plasma/kinfocenter/externalmodules/kcm_external_plasma-systemmonitor.desktop diff --git a/sysutils/plasma6-polkit-kde-agent-1/Makefile b/sysutils/plasma6-polkit-kde-agent-1/Makefile new file mode 100644 index 000000000000..e4668ce36eda --- /dev/null +++ b/sysutils/plasma6-polkit-kde-agent-1/Makefile @@ -0,0 +1,18 @@ +PORTNAME= polkit-kde-agent-1 +DISTVERSION= ${KDE_PLASMA_VERSION} +CATEGORIES= sysutils kde kde-plasma + +MAINTAINER= kde@FreeBSD.org +COMMENT= Manages the power consumption settings of a Plasma shell + +LIB_DEPENDS= libpolkit-qt6-agent-1.so:sysutils/polkit-qt-1-devel@qt6 + +USES= cmake gettext gl kde:6 qt:6 tar:xz xorg +USE_GL= gl opengl +USE_KDE= coreaddons crash dbusaddons i18n iconthemes widgetsaddons \ + windowsystem \ + ecm:build +USE_QT= base tools +USE_XORG= x11 + +.include diff --git a/sysutils/plasma6-polkit-kde-agent-1/distinfo b/sysutils/plasma6-polkit-kde-agent-1/distinfo new file mode 100644 index 000000000000..4b8bf135a21c --- /dev/null +++ b/sysutils/plasma6-polkit-kde-agent-1/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1701531668 +SHA256 (KDE/plasma/5.90.0/polkit-kde-agent-1-5.90.0.tar.xz) = b33d69f92d68f9a065729ea6a9624a9a71e5497c1ea551a5b1cc68464c09d1e8 +SIZE (KDE/plasma/5.90.0/polkit-kde-agent-1-5.90.0.tar.xz) = 51936 diff --git a/sysutils/plasma6-polkit-kde-agent-1/pkg-plist b/sysutils/plasma6-polkit-kde-agent-1/pkg-plist new file mode 100644 index 000000000000..ebd1017ac51d --- /dev/null +++ b/sysutils/plasma6-polkit-kde-agent-1/pkg-plist @@ -0,0 +1,70 @@ +etc/xdg/autostart/polkit-kde-authentication-agent-1.desktop +lib/libexec/polkit-kde-authentication-agent-1 +lib/systemd/user/plasma-polkit-agent.service +share/applications/org.kde.polkit-kde-authentication-agent-1.desktop +share/knotifications6/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/be/LC_MESSAGES/polkit-kde-authentication-agent-1.mo +share/locale/bg/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/eu/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/hsb/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/ie/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/ka/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/ml/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/sa/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/tg/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 diff --git a/sysutils/plasma6-powerdevil/Makefile b/sysutils/plasma6-powerdevil/Makefile new file mode 100644 index 000000000000..4c83f8f6d46a --- /dev/null +++ b/sysutils/plasma6-powerdevil/Makefile @@ -0,0 +1,22 @@ +PORTNAME= powerdevil +DISTVERSION= ${KDE_PLASMA_VERSION} +CATEGORIES= sysutils kde kde-plasma + +MAINTAINER= kde@FreeBSD.org +COMMENT= Manages the power consumption settings of a Plasma shell + +LIB_DEPENDS= libudev.so:devel/libudev-devd \ + libxkbcommon.so:x11/libxkbcommon + +USES= cmake gettext gl kde:6 qt:6 tar:xz xorg +USE_GL= gl opengl +USE_KDE= activities auth colorscheme completion config configwidgets \ + coreaddons crash dbusaddons doctools globalaccel i18n idletime \ + jobwidgets kcmutils kio kirigami2 layer-shell-qt libkscreen \ + notifications notifyconfig plasma-workspace service solid \ + widgetsaddons windowsystem xmlgui \ + ecm:build +USE_QT= base +USE_XORG= x11 xcb + +.include diff --git a/sysutils/plasma6-powerdevil/distinfo b/sysutils/plasma6-powerdevil/distinfo new file mode 100644 index 000000000000..152493e85b56 --- /dev/null +++ b/sysutils/plasma6-powerdevil/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1701531668 +SHA256 (KDE/plasma/5.90.0/powerdevil-5.90.0.tar.xz) = 540e1dfe5c906c78b5d198977dc28525da89f0b0934f3cb4c4adaeeeb1f6afff +SIZE (KDE/plasma/5.90.0/powerdevil-5.90.0.tar.xz) = 798952 diff --git a/sysutils/plasma6-powerdevil/pkg-plist b/sysutils/plasma6-powerdevil/pkg-plist new file mode 100644 index 000000000000..dcb09fedb1eb --- /dev/null +++ b/sysutils/plasma6-powerdevil/pkg-plist @@ -0,0 +1,336 @@ +etc/xdg/autostart/powerdevil.desktop +lib/libexec/kf6/kauth/backlighthelper +lib/libexec/kf6/kauth/chargethresholdhelper +lib/libexec/kf6/kauth/discretegpuhelper +lib/libexec/org_kde_powerdevil +lib/libexec/power_profile_osd_service +lib/libpowerdevilconfigcommonprivate.so +lib/libpowerdevilconfigcommonprivate.so.%%KDE_PLASMA_VERSION%% +lib/libpowerdevilconfigcommonprivate.so.6 +lib/libpowerdevilcore.so +lib/libpowerdevilcore.so.2 +lib/libpowerdevilcore.so.%%KDE_PLASMA_VERSION%% +%%QT_PLUGINDIR%%/kf6/powerdevil/powerdevilupowerbackend.so +%%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_powerdevilprofilesconfig.so +%%QT_PLUGINDIR%%/plasma/kcms/systemsettings_qwidgets/kcm_powerdevilglobalconfig.so +%%QT_PLUGINDIR%%/powerdevil/action/powerdevil_brightnesscontrolaction.so +%%QT_PLUGINDIR%%/powerdevil/action/powerdevil_dimdisplayaction.so +%%QT_PLUGINDIR%%/powerdevil/action/powerdevil_dpmsaction.so +%%QT_PLUGINDIR%%/powerdevil/action/powerdevil_handlebuttoneventsaction.so +%%QT_PLUGINDIR%%/powerdevil/action/powerdevil_keyboardbrightnesscontrolaction.so +%%QT_PLUGINDIR%%/powerdevil/action/powerdevil_powerprofileaction.so +%%QT_PLUGINDIR%%/powerdevil/action/powerdevil_runscriptaction.so +%%QT_PLUGINDIR%%/powerdevil/action/powerdevil_suspendsessionaction.so +lib/systemd/user/plasma-powerdevil.service +lib/systemd/user/plasma-powerprofile-osd.service +share/applications/kcm_powerdevilglobalconfig.desktop +share/applications/kcm_powerdevilprofilesconfig.desktop +share/dbus-1/services/org.kde.powerdevil.powerProfileOsdService.service +share/dbus-1/system-services/org.kde.powerdevil.backlighthelper.service +share/dbus-1/system-services/org.kde.powerdevil.chargethresholdhelper.service +share/dbus-1/system-services/org.kde.powerdevil.discretegpuhelper.service +share/dbus-1/system.d/org.kde.powerdevil.backlighthelper.conf +share/dbus-1/system.d/org.kde.powerdevil.chargethresholdhelper.conf +share/dbus-1/system.d/org.kde.powerdevil.discretegpuhelper.conf +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/es/kcontrol/powerdevil/index.cache.bz2 +share/doc/HTML/es/kcontrol/powerdevil/index.docbook +share/doc/HTML/et/kcontrol/powerdevil/index.cache.bz2 +share/doc/HTML/et/kcontrol/powerdevil/index.docbook +share/doc/HTML/fr/kcontrol/powerdevil/index.cache.bz2 +share/doc/HTML/fr/kcontrol/powerdevil/index.docbook +share/doc/HTML/id/kcontrol/powerdevil/index.cache.bz2 +share/doc/HTML/id/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/activity.png +share/doc/HTML/ru/kcontrol/powerdevil/advanced.png +share/doc/HTML/ru/kcontrol/powerdevil/energy.png +share/doc/HTML/ru/kcontrol/powerdevil/index.cache.bz2 +share/doc/HTML/ru/kcontrol/powerdevil/index.docbook +share/doc/HTML/sv/kcontrol/powerdevil/index.cache.bz2 +share/doc/HTML/sv/kcontrol/powerdevil/index.docbook +share/doc/HTML/tr/kcontrol/powerdevil/index.cache.bz2 +share/doc/HTML/tr/kcontrol/powerdevil/index.docbook +share/doc/HTML/uk/kcontrol/powerdevil/activity.png +share/doc/HTML/uk/kcontrol/powerdevil/advanced.png +share/doc/HTML/uk/kcontrol/powerdevil/energy.png +share/doc/HTML/uk/kcontrol/powerdevil/index.cache.bz2 +share/doc/HTML/uk/kcontrol/powerdevil/index.docbook +share/knotifications6/powerdevil.notifyrc +share/locale/ar/LC_MESSAGES/kcm_powerdevilglobalconfig.mo +share/locale/ar/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo +share/locale/ar/LC_MESSAGES/libpowerdevilcommonconfig.mo +share/locale/ar/LC_MESSAGES/powerdevil.mo +share/locale/as/LC_MESSAGES/powerdevil.mo +share/locale/ast/LC_MESSAGES/kcm_powerdevilglobalconfig.mo +share/locale/ast/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo +share/locale/ast/LC_MESSAGES/libpowerdevilcommonconfig.mo +share/locale/ast/LC_MESSAGES/powerdevil.mo +share/locale/az/LC_MESSAGES/kcm_powerdevilglobalconfig.mo +share/locale/az/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo +share/locale/az/LC_MESSAGES/libpowerdevilcommonconfig.mo +share/locale/az/LC_MESSAGES/powerdevil.mo +share/locale/be/LC_MESSAGES/kcm_powerdevilglobalconfig.mo +share/locale/be/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo +share/locale/be/LC_MESSAGES/libpowerdevilcommonconfig.mo +share/locale/be/LC_MESSAGES/powerdevil.mo +share/locale/be@latin/LC_MESSAGES/powerdevil.mo +share/locale/bg/LC_MESSAGES/kcm_powerdevilglobalconfig.mo +share/locale/bg/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo +share/locale/bg/LC_MESSAGES/libpowerdevilcommonconfig.mo +share/locale/bg/LC_MESSAGES/powerdevil.mo +share/locale/bn/LC_MESSAGES/powerdevil.mo +share/locale/bn_IN/LC_MESSAGES/powerdevil.mo +share/locale/bs/LC_MESSAGES/kcm_powerdevilglobalconfig.mo +share/locale/bs/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo +share/locale/bs/LC_MESSAGES/libpowerdevilcommonconfig.mo +share/locale/bs/LC_MESSAGES/powerdevil.mo +share/locale/ca/LC_MESSAGES/kcm_powerdevilglobalconfig.mo +share/locale/ca/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo +share/locale/ca/LC_MESSAGES/libpowerdevilcommonconfig.mo +share/locale/ca/LC_MESSAGES/powerdevil.mo +share/locale/ca@valencia/LC_MESSAGES/kcm_powerdevilglobalconfig.mo +share/locale/ca@valencia/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo +share/locale/ca@valencia/LC_MESSAGES/libpowerdevilcommonconfig.mo +share/locale/ca@valencia/LC_MESSAGES/powerdevil.mo +share/locale/cs/LC_MESSAGES/kcm_powerdevilglobalconfig.mo +share/locale/cs/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo +share/locale/cs/LC_MESSAGES/libpowerdevilcommonconfig.mo +share/locale/cs/LC_MESSAGES/powerdevil.mo +share/locale/da/LC_MESSAGES/kcm_powerdevilglobalconfig.mo +share/locale/da/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo +share/locale/da/LC_MESSAGES/libpowerdevilcommonconfig.mo +share/locale/da/LC_MESSAGES/powerdevil.mo +share/locale/de/LC_MESSAGES/kcm_powerdevilglobalconfig.mo +share/locale/de/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo +share/locale/de/LC_MESSAGES/libpowerdevilcommonconfig.mo +share/locale/de/LC_MESSAGES/powerdevil.mo +share/locale/el/LC_MESSAGES/kcm_powerdevilglobalconfig.mo +share/locale/el/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo +share/locale/el/LC_MESSAGES/libpowerdevilcommonconfig.mo +share/locale/el/LC_MESSAGES/powerdevil.mo +share/locale/en_GB/LC_MESSAGES/kcm_powerdevilglobalconfig.mo +share/locale/en_GB/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo +share/locale/en_GB/LC_MESSAGES/libpowerdevilcommonconfig.mo +share/locale/en_GB/LC_MESSAGES/powerdevil.mo +share/locale/eo/LC_MESSAGES/kcm_powerdevilglobalconfig.mo +share/locale/eo/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo +share/locale/eo/LC_MESSAGES/libpowerdevilcommonconfig.mo +share/locale/eo/LC_MESSAGES/powerdevil.mo +share/locale/es/LC_MESSAGES/kcm_powerdevilglobalconfig.mo +share/locale/es/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo +share/locale/es/LC_MESSAGES/libpowerdevilcommonconfig.mo +share/locale/es/LC_MESSAGES/powerdevil.mo +share/locale/et/LC_MESSAGES/kcm_powerdevilglobalconfig.mo +share/locale/et/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo +share/locale/et/LC_MESSAGES/libpowerdevilcommonconfig.mo +share/locale/et/LC_MESSAGES/powerdevil.mo +share/locale/eu/LC_MESSAGES/kcm_powerdevilglobalconfig.mo +share/locale/eu/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo +share/locale/eu/LC_MESSAGES/libpowerdevilcommonconfig.mo +share/locale/eu/LC_MESSAGES/powerdevil.mo +share/locale/fi/LC_MESSAGES/kcm_powerdevilglobalconfig.mo +share/locale/fi/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo +share/locale/fi/LC_MESSAGES/libpowerdevilcommonconfig.mo +share/locale/fi/LC_MESSAGES/powerdevil.mo +share/locale/fr/LC_MESSAGES/kcm_powerdevilglobalconfig.mo +share/locale/fr/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo +share/locale/fr/LC_MESSAGES/libpowerdevilcommonconfig.mo +share/locale/fr/LC_MESSAGES/powerdevil.mo +share/locale/fy/LC_MESSAGES/powerdevil.mo +share/locale/ga/LC_MESSAGES/kcm_powerdevilglobalconfig.mo +share/locale/ga/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo +share/locale/ga/LC_MESSAGES/powerdevil.mo +share/locale/gl/LC_MESSAGES/kcm_powerdevilglobalconfig.mo +share/locale/gl/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo +share/locale/gl/LC_MESSAGES/libpowerdevilcommonconfig.mo +share/locale/gl/LC_MESSAGES/powerdevil.mo +share/locale/gu/LC_MESSAGES/kcm_powerdevilglobalconfig.mo +share/locale/gu/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo +share/locale/gu/LC_MESSAGES/powerdevil.mo +share/locale/he/LC_MESSAGES/kcm_powerdevilglobalconfig.mo +share/locale/he/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo +share/locale/he/LC_MESSAGES/libpowerdevilcommonconfig.mo +share/locale/he/LC_MESSAGES/powerdevil.mo +share/locale/hi/LC_MESSAGES/powerdevil.mo +share/locale/hr/LC_MESSAGES/kcm_powerdevilglobalconfig.mo +share/locale/hr/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo +share/locale/hr/LC_MESSAGES/powerdevil.mo +share/locale/hsb/LC_MESSAGES/powerdevil.mo +share/locale/hu/LC_MESSAGES/kcm_powerdevilglobalconfig.mo +share/locale/hu/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo +share/locale/hu/LC_MESSAGES/libpowerdevilcommonconfig.mo +share/locale/hu/LC_MESSAGES/powerdevil.mo +share/locale/ia/LC_MESSAGES/kcm_powerdevilglobalconfig.mo +share/locale/ia/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo +share/locale/ia/LC_MESSAGES/libpowerdevilcommonconfig.mo +share/locale/ia/LC_MESSAGES/powerdevil.mo +share/locale/id/LC_MESSAGES/kcm_powerdevilglobalconfig.mo +share/locale/id/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo +share/locale/id/LC_MESSAGES/libpowerdevilcommonconfig.mo +share/locale/id/LC_MESSAGES/powerdevil.mo +share/locale/is/LC_MESSAGES/powerdevil.mo +share/locale/it/LC_MESSAGES/kcm_powerdevilglobalconfig.mo +share/locale/it/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo +share/locale/it/LC_MESSAGES/libpowerdevilcommonconfig.mo +share/locale/it/LC_MESSAGES/powerdevil.mo +share/locale/ja/LC_MESSAGES/kcm_powerdevilglobalconfig.mo +share/locale/ja/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo +share/locale/ja/LC_MESSAGES/libpowerdevilcommonconfig.mo +share/locale/ja/LC_MESSAGES/powerdevil.mo +share/locale/ka/LC_MESSAGES/kcm_powerdevilglobalconfig.mo +share/locale/ka/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo +share/locale/ka/LC_MESSAGES/libpowerdevilcommonconfig.mo +share/locale/ka/LC_MESSAGES/powerdevil.mo +share/locale/kk/LC_MESSAGES/kcm_powerdevilglobalconfig.mo +share/locale/kk/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo +share/locale/kk/LC_MESSAGES/libpowerdevilcommonconfig.mo +share/locale/kk/LC_MESSAGES/powerdevil.mo +share/locale/km/LC_MESSAGES/kcm_powerdevilglobalconfig.mo +share/locale/km/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo +share/locale/km/LC_MESSAGES/powerdevil.mo +share/locale/ko/LC_MESSAGES/kcm_powerdevilglobalconfig.mo +share/locale/ko/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo +share/locale/ko/LC_MESSAGES/libpowerdevilcommonconfig.mo +share/locale/ko/LC_MESSAGES/powerdevil.mo +share/locale/ku/LC_MESSAGES/powerdevil.mo +share/locale/lt/LC_MESSAGES/kcm_powerdevilglobalconfig.mo +share/locale/lt/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo +share/locale/lt/LC_MESSAGES/libpowerdevilcommonconfig.mo +share/locale/lt/LC_MESSAGES/powerdevil.mo +share/locale/lv/LC_MESSAGES/kcm_powerdevilglobalconfig.mo +share/locale/lv/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo +share/locale/lv/LC_MESSAGES/powerdevil.mo +share/locale/mai/LC_MESSAGES/powerdevil.mo +share/locale/ml/LC_MESSAGES/kcm_powerdevilglobalconfig.mo +share/locale/ml/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo +share/locale/ml/LC_MESSAGES/libpowerdevilcommonconfig.mo +share/locale/ml/LC_MESSAGES/powerdevil.mo +share/locale/mr/LC_MESSAGES/kcm_powerdevilglobalconfig.mo +share/locale/mr/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo +share/locale/mr/LC_MESSAGES/powerdevil.mo +share/locale/ms/LC_MESSAGES/kcm_powerdevilglobalconfig.mo +share/locale/ms/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo +share/locale/ms/LC_MESSAGES/powerdevil.mo +share/locale/nb/LC_MESSAGES/kcm_powerdevilglobalconfig.mo +share/locale/nb/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo +share/locale/nb/LC_MESSAGES/libpowerdevilcommonconfig.mo +share/locale/nb/LC_MESSAGES/powerdevil.mo +share/locale/nds/LC_MESSAGES/kcm_powerdevilglobalconfig.mo +share/locale/nds/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo +share/locale/nds/LC_MESSAGES/libpowerdevilcommonconfig.mo +share/locale/nds/LC_MESSAGES/powerdevil.mo +share/locale/nl/LC_MESSAGES/kcm_powerdevilglobalconfig.mo +share/locale/nl/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo +share/locale/nl/LC_MESSAGES/libpowerdevilcommonconfig.mo +share/locale/nl/LC_MESSAGES/powerdevil.mo +share/locale/nn/LC_MESSAGES/kcm_powerdevilglobalconfig.mo +share/locale/nn/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo +share/locale/nn/LC_MESSAGES/libpowerdevilcommonconfig.mo +share/locale/nn/LC_MESSAGES/powerdevil.mo +share/locale/or/LC_MESSAGES/powerdevil.mo +share/locale/pa/LC_MESSAGES/kcm_powerdevilglobalconfig.mo +share/locale/pa/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo +share/locale/pa/LC_MESSAGES/libpowerdevilcommonconfig.mo +share/locale/pa/LC_MESSAGES/powerdevil.mo +share/locale/pl/LC_MESSAGES/kcm_powerdevilglobalconfig.mo +share/locale/pl/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo +share/locale/pl/LC_MESSAGES/libpowerdevilcommonconfig.mo +share/locale/pl/LC_MESSAGES/powerdevil.mo +share/locale/pt/LC_MESSAGES/kcm_powerdevilglobalconfig.mo +share/locale/pt/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo +share/locale/pt/LC_MESSAGES/libpowerdevilcommonconfig.mo +share/locale/pt/LC_MESSAGES/powerdevil.mo +share/locale/pt_BR/LC_MESSAGES/kcm_powerdevilglobalconfig.mo +share/locale/pt_BR/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo +share/locale/pt_BR/LC_MESSAGES/libpowerdevilcommonconfig.mo +share/locale/pt_BR/LC_MESSAGES/powerdevil.mo +share/locale/ro/LC_MESSAGES/kcm_powerdevilglobalconfig.mo +share/locale/ro/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo +share/locale/ro/LC_MESSAGES/libpowerdevilcommonconfig.mo +share/locale/ro/LC_MESSAGES/powerdevil.mo +share/locale/ru/LC_MESSAGES/kcm_powerdevilglobalconfig.mo +share/locale/ru/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo +share/locale/ru/LC_MESSAGES/libpowerdevilcommonconfig.mo +share/locale/ru/LC_MESSAGES/powerdevil.mo +share/locale/si/LC_MESSAGES/powerdevil.mo +share/locale/sk/LC_MESSAGES/kcm_powerdevilglobalconfig.mo +share/locale/sk/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo +share/locale/sk/LC_MESSAGES/libpowerdevilcommonconfig.mo +share/locale/sk/LC_MESSAGES/powerdevil.mo +share/locale/sl/LC_MESSAGES/kcm_powerdevilglobalconfig.mo +share/locale/sl/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo +share/locale/sl/LC_MESSAGES/libpowerdevilcommonconfig.mo +share/locale/sl/LC_MESSAGES/powerdevil.mo +share/locale/sq/LC_MESSAGES/powerdevil.mo +share/locale/sr/LC_MESSAGES/kcm_powerdevilglobalconfig.mo +share/locale/sr/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo +share/locale/sr/LC_MESSAGES/libpowerdevilcommonconfig.mo +share/locale/sr/LC_MESSAGES/powerdevil.mo +share/locale/sr@ijekavian/LC_MESSAGES/kcm_powerdevilglobalconfig.mo +share/locale/sr@ijekavian/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo +share/locale/sr@ijekavian/LC_MESSAGES/libpowerdevilcommonconfig.mo +share/locale/sr@ijekavian/LC_MESSAGES/powerdevil.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_powerdevilglobalconfig.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/libpowerdevilcommonconfig.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/powerdevil.mo +share/locale/sr@latin/LC_MESSAGES/kcm_powerdevilglobalconfig.mo +share/locale/sr@latin/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo +share/locale/sr@latin/LC_MESSAGES/libpowerdevilcommonconfig.mo +share/locale/sr@latin/LC_MESSAGES/powerdevil.mo +share/locale/sv/LC_MESSAGES/kcm_powerdevilglobalconfig.mo +share/locale/sv/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo +share/locale/sv/LC_MESSAGES/libpowerdevilcommonconfig.mo +share/locale/sv/LC_MESSAGES/powerdevil.mo +share/locale/ta/LC_MESSAGES/kcm_powerdevilglobalconfig.mo +share/locale/ta/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo +share/locale/ta/LC_MESSAGES/libpowerdevilcommonconfig.mo +share/locale/ta/LC_MESSAGES/powerdevil.mo +share/locale/te/LC_MESSAGES/powerdevil.mo +share/locale/tg/LC_MESSAGES/kcm_powerdevilglobalconfig.mo +share/locale/tg/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo +share/locale/tg/LC_MESSAGES/libpowerdevilcommonconfig.mo +share/locale/tg/LC_MESSAGES/powerdevil.mo +share/locale/th/LC_MESSAGES/kcm_powerdevilglobalconfig.mo +share/locale/th/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo +share/locale/th/LC_MESSAGES/powerdevil.mo +share/locale/tr/LC_MESSAGES/kcm_powerdevilglobalconfig.mo +share/locale/tr/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo +share/locale/tr/LC_MESSAGES/libpowerdevilcommonconfig.mo +share/locale/tr/LC_MESSAGES/powerdevil.mo +share/locale/ug/LC_MESSAGES/kcm_powerdevilglobalconfig.mo +share/locale/ug/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo +share/locale/ug/LC_MESSAGES/libpowerdevilcommonconfig.mo +share/locale/ug/LC_MESSAGES/powerdevil.mo +share/locale/uk/LC_MESSAGES/kcm_powerdevilglobalconfig.mo +share/locale/uk/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo +share/locale/uk/LC_MESSAGES/libpowerdevilcommonconfig.mo +share/locale/uk/LC_MESSAGES/powerdevil.mo +share/locale/wa/LC_MESSAGES/kcm_powerdevilglobalconfig.mo +share/locale/wa/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo +share/locale/wa/LC_MESSAGES/powerdevil.mo +share/locale/zh_CN/LC_MESSAGES/kcm_powerdevilglobalconfig.mo +share/locale/zh_CN/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo +share/locale/zh_CN/LC_MESSAGES/libpowerdevilcommonconfig.mo +share/locale/zh_CN/LC_MESSAGES/powerdevil.mo +share/locale/zh_TW/LC_MESSAGES/kcm_powerdevilglobalconfig.mo +share/locale/zh_TW/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo +share/locale/zh_TW/LC_MESSAGES/libpowerdevilcommonconfig.mo +share/locale/zh_TW/LC_MESSAGES/powerdevil.mo +share/qlogging-categories6/powerdevil.categories diff --git a/sysutils/plasma6-systemsettings/Makefile b/sysutils/plasma6-systemsettings/Makefile new file mode 100644 index 000000000000..944c1784aff6 --- /dev/null +++ b/sysutils/plasma6-systemsettings/Makefile @@ -0,0 +1,19 @@ +PORTNAME= systemsettings +DISTVERSION= ${KDE_PLASMA_VERSION} +CATEGORIES= sysutils kde kde-plasma + +MAINTAINER= kde@FreeBSD.org +COMMENT= Control center to configure your Plasma Desktop + +USES= cmake gettext gl kde:6 qt:6 tar:xz xorg +USE_GL= gl opengl +USE_KDE= activities auth colorscheme completion config configwidgets \ + coreaddons crash dbusaddons doctools guiaddons i18n iconthemes \ + itemmodels itemviews jobwidgets kcmutils kio kirigami2 \ + notifications package plasma-workspace runner service solid \ + widgetsaddons windowsystem xmlgui \ + ecm:build +USE_QT= base declarative +USE_XORG= x11 + +.include diff --git a/sysutils/plasma6-systemsettings/distinfo b/sysutils/plasma6-systemsettings/distinfo new file mode 100644 index 000000000000..24e1062fda73 --- /dev/null +++ b/sysutils/plasma6-systemsettings/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1701531669 +SHA256 (KDE/plasma/5.90.0/systemsettings-5.90.0.tar.xz) = 66ebe0aa02ce794f6d642f0d4554a996f76f08ff619a99d1098d2289d0398519 +SIZE (KDE/plasma/5.90.0/systemsettings-5.90.0.tar.xz) = 217116 diff --git a/sysutils/plasma6-systemsettings/pkg-plist b/sysutils/plasma6-systemsettings/pkg-plist new file mode 100644 index 000000000000..f20447be4296 --- /dev/null +++ b/sysutils/plasma6-systemsettings/pkg-plist @@ -0,0 +1,152 @@ +bin/systemsettings +lib/libsystemsettingsview.so.3 +%%QT_PLUGINDIR%%/kf6/krunner/krunner_systemsettings.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/es/systemsettings/index.cache.bz2 +share/doc/HTML/es/systemsettings/index.docbook +share/doc/HTML/fr/systemsettings/index.cache.bz2 +share/doc/HTML/fr/systemsettings/index.docbook +share/doc/HTML/id/systemsettings/index.cache.bz2 +share/doc/HTML/id/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/ru/systemsettings/index.cache.bz2 +share/doc/HTML/ru/systemsettings/index.docbook +share/doc/HTML/sv/systemsettings/index.cache.bz2 +share/doc/HTML/sv/systemsettings/index.docbook +share/doc/HTML/tr/systemsettings/index.cache.bz2 +share/doc/HTML/tr/systemsettings/index.docbook +share/doc/HTML/uk/systemsettings/index.cache.bz2 +share/doc/HTML/uk/systemsettings/index.docbook +share/kglobalaccel/systemsettings.desktop +share/locale/ar/LC_MESSAGES/systemsettings.mo +share/locale/ast/LC_MESSAGES/systemsettings.mo +share/locale/az/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/ka/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/my/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/sa/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 +share/metainfo/org.kde.systemsettings.metainfo.xml +share/qlogging-categories6/systemsettings.categories +%%DATADIR%%/categories/settings-appearance-font.desktop +%%DATADIR%%/categories/settings-appearance-themes.desktop +%%DATADIR%%/categories/settings-appearance.desktop +%%DATADIR%%/categories/settings-applications-defaults.desktop +%%DATADIR%%/categories/settings-applications-permissions.desktop +%%DATADIR%%/categories/settings-applications.desktop +%%DATADIR%%/categories/settings-hardware-display.desktop +%%DATADIR%%/categories/settings-hardware-input-pointing-devices.desktop +%%DATADIR%%/categories/settings-hardware-input-touchscreen.desktop +%%DATADIR%%/categories/settings-hardware-input.desktop +%%DATADIR%%/categories/settings-hardware-keyboard.desktop +%%DATADIR%%/categories/settings-hardware-multimedia.desktop +%%DATADIR%%/categories/settings-hardware-powermanagement.desktop +%%DATADIR%%/categories/settings-hardware-removable-storage.desktop +%%DATADIR%%/categories/settings-hardware.desktop +%%DATADIR%%/categories/settings-network-connectivity.desktop +%%DATADIR%%/categories/settings-network-networksettings.desktop +%%DATADIR%%/categories/settings-network.desktop +%%DATADIR%%/categories/settings-personalization.desktop +%%DATADIR%%/categories/settings-regionalsettings.desktop +%%DATADIR%%/categories/settings-root-category.desktop +%%DATADIR%%/categories/settings-security-privacy.desktop +%%DATADIR%%/categories/settings-system-administration.desktop +%%DATADIR%%/categories/settings-workspace-desktopbehavior.desktop +%%DATADIR%%/categories/settings-workspace-search.desktop +%%DATADIR%%/categories/settings-workspace-session.desktop +%%DATADIR%%/categories/settings-workspace-shortcuts.desktop +%%DATADIR%%/categories/settings-workspace-windowmanagement.desktop +%%DATADIR%%/categories/settings-workspace.desktop +share/zsh/site-functions/_systemsettings diff --git a/www/Makefile b/www/Makefile index 05788b1c2885..a5e566896db7 100644 --- a/www/Makefile +++ b/www/Makefile @@ -1,2526 +1,2527 @@ COMMENT = Ports related to the World Wide Web SUBDIR += R-cran-RgoogleMaps SUBDIR += R-cran-Rook SUBDIR += R-cran-bslib SUBDIR += R-cran-crosstalk SUBDIR += R-cran-downloader SUBDIR += R-cran-gh SUBDIR += R-cran-htmlwidgets SUBDIR += R-cran-httpuv SUBDIR += R-cran-httr SUBDIR += R-cran-jquerylib SUBDIR += R-cran-rvest SUBDIR += R-cran-scrapeR SUBDIR += R-cran-selectr SUBDIR += R-cran-servr SUBDIR += R-cran-shiny SUBDIR += R-cran-shinyjs SUBDIR += R-cran-webshot SUBDIR += Stikked SUBDIR += UniversalFeedCreator SUBDIR += adguardhome SUBDIR += adjuster SUBDIR += adzap SUBDIR += alef-webfont SUBDIR += amfora SUBDIR += amphetadesk SUBDIR += analog SUBDIR += angie SUBDIR += angie-module-auth-jwt SUBDIR += angie-module-auth-spnego SUBDIR += angie-module-brotli SUBDIR += angie-module-cache-purge SUBDIR += angie-module-dav-ext SUBDIR += angie-module-echo SUBDIR += angie-module-enhanced-memcached SUBDIR += angie-module-eval SUBDIR += angie-module-geoip2 SUBDIR += angie-module-headers-more SUBDIR += angie-module-image-filter SUBDIR += angie-module-jwt SUBDIR += angie-module-keyval SUBDIR += angie-module-lua SUBDIR += angie-module-ndk SUBDIR += angie-module-njs SUBDIR += angie-module-perl SUBDIR += angie-module-postgres SUBDIR += angie-module-redis2 SUBDIR += angie-module-rtmp SUBDIR += angie-module-set-misc SUBDIR += angie-module-subs SUBDIR += angie-module-upload SUBDIR += angie-module-vod SUBDIR += angie-module-xslt SUBDIR += anyremote2html SUBDIR += apache-mode.el SUBDIR += apache24 SUBDIR += apt-cacher-ng SUBDIR += aquatone SUBDIR += archiva SUBDIR += aria2 SUBDIR += asql SUBDIR += authelia SUBDIR += awstats SUBDIR += axis2 SUBDIR += bacula-web SUBDIR += baculum-api SUBDIR += baculum-common SUBDIR += baculum-web SUBDIR += badwolf SUBDIR += baikal SUBDIR += bareos-webui SUBDIR += bareos20-webui SUBDIR += bareos21-webui SUBDIR += beehive SUBDIR += bkmrkconv SUBDIR += bluefish SUBDIR += bolt SUBDIR += bozohttpd SUBDIR += browsh SUBDIR += bugzilla2atom SUBDIR += buku SUBDIR += butterfly SUBDIR += c-icap SUBDIR += c-icap-modules SUBDIR += cadaver SUBDIR += caddy SUBDIR += caddy-custom SUBDIR += calamaris SUBDIR += calamaris-devel SUBDIR += caldavzap SUBDIR += carbonapi SUBDIR += castget SUBDIR += castor SUBDIR += cgi-lib SUBDIR += cgi-lib.pl SUBDIR += cgicc SUBDIR += cgichk SUBDIR += cgiwrap SUBDIR += checkbot SUBDIR += chems SUBDIR += chisel SUBDIR += choqok SUBDIR += chpasswd SUBDIR += chrome-gnome-shell SUBDIR += chromium SUBDIR += cinny SUBDIR += civetweb SUBDIR += ckeditor SUBDIR += cl-lml SUBDIR += cl-lml-sbcl SUBDIR += clearsilver SUBDIR += closure-compiler SUBDIR += cntlm SUBDIR += cobalt SUBDIR += codeigniter SUBDIR += colly SUBDIR += coppermine SUBDIR += cplanet SUBDIR += cpp-httplib SUBDIR += cpr SUBDIR += crawl SUBDIR += css-mode.el SUBDIR += cssed SUBDIR += csso SUBDIR += csstidy SUBDIR += ctemplate SUBDIR += cutelyst SUBDIR += darkhttpd SUBDIR += dasherr SUBDIR += davical SUBDIR += davix SUBDIR += dddbl SUBDIR += ddgr SUBDIR += deforaos-surfer SUBDIR += deno SUBDIR += devd SUBDIR += dezoomify-rs SUBDIR += dillo2 SUBDIR += dojo SUBDIR += dokuwiki SUBDIR += dolibarr SUBDIR += dolibarr16 SUBDIR += dolibarr17 SUBDIR += domoticz SUBDIR += dooble SUBDIR += dot-http SUBDIR += drill SUBDIR += drupal10 SUBDIR += drupal7 SUBDIR += drupal7-wysiwyg SUBDIR += drupal9 SUBDIR += drush SUBDIR += dtse SUBDIR += dufs SUBDIR += e107 SUBDIR += e2guardian SUBDIR += edbrowse SUBDIR += eden SUBDIR += element-web SUBDIR += elgg SUBDIR += elinks SUBDIR += emacs-w3m SUBDIR += encode-explorer SUBDIR += envoy SUBDIR += eolie SUBDIR += ephemera SUBDIR += epiphany SUBDIR += fabio SUBDIR += falkon SUBDIR += fancybox SUBDIR += faup SUBDIR += fcgi SUBDIR += fcgiwrap SUBDIR += ffproxy SUBDIR += ffsend SUBDIR += fgallery SUBDIR += filtron SUBDIR += firedm SUBDIR += firefox SUBDIR += firefox-esr SUBDIR += flat-frog SUBDIR += flexget SUBDIR += flickcurl SUBDIR += foreign-cdm SUBDIR += formication SUBDIR += foswiki SUBDIR += free-sa-devel SUBDIR += fswiki SUBDIR += fusionpbx SUBDIR += g-cows SUBDIR += g-gcl SUBDIR += galene SUBDIR += gallery-dl SUBDIR += gallery2 SUBDIR += garage SUBDIR += gatling SUBDIR += gauche-makiki SUBDIR += geckodriver SUBDIR += geneweb SUBDIR += geolizer SUBDIR += get_flash_videos SUBDIR += ghostunnel SUBDIR += gist SUBDIR += gitea SUBDIR += gitlab-ce SUBDIR += gitlab-pages SUBDIR += gitlab-workhorse SUBDIR += glassfish SUBDIR += glassfish4 SUBDIR += glewlwyd SUBDIR += glpi SUBDIR += gnome-user-share SUBDIR += go-www SUBDIR += gobuffalo SUBDIR += gohugo SUBDIR += googlebook_dl SUBDIR += googler SUBDIR += goose SUBDIR += gophernicus SUBDIR += gopherus SUBDIR += gotty SUBDIR += gpx2map SUBDIR += grafana9 SUBDIR += grails SUBDIR += gregarius SUBDIR += groupoffice SUBDIR += grr SUBDIR += gstreamer1-plugins-neon SUBDIR += gstreamer1-plugins-srt SUBDIR += gtkhtml4 SUBDIR += guacamole-client SUBDIR += gurl SUBDIR += gwsocket SUBDIR += h2c SUBDIR += h2o SUBDIR += h2o-devel SUBDIR += habari SUBDIR += hiawatha SUBDIR += hiawatha-monitor SUBDIR += homer-web SUBDIR += hotcrp SUBDIR += hs-DAV SUBDIR += hs-gitit SUBDIR += hs-hjsmin SUBDIR += hs-postgrest SUBDIR += hs-wai-app-static SUBDIR += hs-yesod-bin SUBDIR += htdigest SUBDIR += htdump SUBDIR += html2hdml SUBDIR += html2wml SUBDIR += htmlcompressor SUBDIR += htmlcxx SUBDIR += httest SUBDIR += http-parser SUBDIR += http_get SUBDIR += http_load SUBDIR += http_post SUBDIR += httpasyncclient SUBDIR += httpclient SUBDIR += httpcore SUBDIR += httptunnel SUBDIR += httrack SUBDIR += hurl SUBDIR += hypermail SUBDIR += icapeg SUBDIR += igal2 SUBDIR += ikiwiki SUBDIR += ilias SUBDIR += interchange SUBDIR += iridium SUBDIR += itop SUBDIR += janus SUBDIR += jericho-html SUBDIR += jesred SUBDIR += jetty10 SUBDIR += jira-cli SUBDIR += jitsi-meet SUBDIR += jmeter SUBDIR += joomla4 SUBDIR += joomla5 SUBDIR += jwt-cli SUBDIR += kanboard SUBDIR += kannel SUBDIR += kannel-sqlbox SUBDIR += kcgi SUBDIR += kdsoap SUBDIR += kf5-kdewebkit SUBDIR += kf5-khtml SUBDIR += kf5-kjs SUBDIR += kf5-kjsembed SUBDIR += kineto SUBDIR += kiwix-tools SUBDIR += kohana SUBDIR += ladybird SUBDIR += lagrange SUBDIR += larbin SUBDIR += libapreq2 SUBDIR += libdatachannel SUBDIR += libdom SUBDIR += libecap SUBDIR += libepc SUBDIR += libevhtp SUBDIR += libhsts SUBDIR += libhubbub SUBDIR += libjwt SUBDIR += libmicrohttpd SUBDIR += libnghttp2 SUBDIR += libnghttp3 SUBDIR += libresonic-standalone SUBDIR += librespeed SUBDIR += librewolf SUBDIR += librtcdcpp SUBDIR += libwpe SUBDIR += libwww SUBDIR += lightsquid SUBDIR += lighttpd SUBDIR += lighttpd-mod_h264_streaming SUBDIR += limesurvey SUBDIR += linklint SUBDIR += links SUBDIR += links1 SUBDIR += linux-c7-qtwebkit SUBDIR += linux-widevine-cdm SUBDIR += litmus SUBDIR += ljdeps SUBDIR += llhttp SUBDIR += logswan SUBDIR += logtools SUBDIR += ls-qpack SUBDIR += lua-resty-core SUBDIR += lua-resty-http SUBDIR += lua-resty-lrucache SUBDIR += luakit SUBDIR += luakit-devel SUBDIR += lux SUBDIR += lychee SUBDIR += lynx SUBDIR += lynx-current SUBDIR += lzr SUBDIR += man2web SUBDIR += manpageblog SUBDIR += mathjax SUBDIR += mathjax3 SUBDIR += mathopd SUBDIR += matomo SUBDIR += mattermost-server SUBDIR += mattermost-webapp SUBDIR += mediawiki135 SUBDIR += mediawiki139 SUBDIR += mediawiki140 SUBDIR += mergelog SUBDIR += mhonarc SUBDIR += micro_httpd SUBDIR += microbin SUBDIR += middleman SUBDIR += midori SUBDIR += mimetex SUBDIR += mini_httpd SUBDIR += miniflux SUBDIR += minio SUBDIR += minio-client SUBDIR += miniserve SUBDIR += mirrorselect SUBDIR += mitmproxy SUBDIR += mknmz-wwwoffle SUBDIR += mnogosearch SUBDIR += mod_amazon_proxy SUBDIR += mod_asn SUBDIR += mod_auth_cas SUBDIR += mod_auth_cookie_mysql2 SUBDIR += mod_auth_gssapi SUBDIR += mod_auth_kerb2 SUBDIR += mod_auth_mellon 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_authn_dovecot SUBDIR += mod_authnz_external24 SUBDIR += mod_authz_unixgroup24 SUBDIR += mod_cfg_ldap SUBDIR += mod_cloudflare SUBDIR += mod_dav_svn SUBDIR += mod_defensible SUBDIR += mod_dnssd SUBDIR += mod_evasive SUBDIR += mod_fastcgi SUBDIR += mod_fcgid SUBDIR += mod_fileiri SUBDIR += mod_gnutls SUBDIR += mod_h264_streaming SUBDIR += mod_http2 SUBDIR += mod_jk SUBDIR += mod_limitipconn2 SUBDIR += mod_log_sql SUBDIR += mod_maxminddb SUBDIR += mod_memcache SUBDIR += mod_memcache_block SUBDIR += mod_mono SUBDIR += mod_mpm_itk SUBDIR += mod_perl2 SUBDIR += mod_php80 SUBDIR += mod_php81 SUBDIR += mod_php82 SUBDIR += mod_php83 SUBDIR += mod_proctitle SUBDIR += mod_qos SUBDIR += mod_realdoc SUBDIR += mod_reproxy SUBDIR += mod_rivet SUBDIR += mod_rpaf2 SUBDIR += mod_scgi SUBDIR += mod_security SUBDIR += mod_setenvifplus SUBDIR += mod_tidy SUBDIR += mod_umask SUBDIR += mod_webauth SUBDIR += mod_webkit SUBDIR += mod_wsgi4 SUBDIR += mod_xsendfile SUBDIR += mohawk SUBDIR += moinmoin SUBDIR += moinmoincli SUBDIR += mongoose SUBDIR += mongrel2 SUBDIR += monolith SUBDIR += moodle41 SUBDIR += moodle42 SUBDIR += moodle43 SUBDIR += morty SUBDIR += multisort SUBDIR += multiwatch SUBDIR += mybb SUBDIR += mysqlphp2postgres SUBDIR += mythplugin-mythweb SUBDIR += nanoblogger SUBDIR += nanoblogger-extra SUBDIR += neon SUBDIR += netrik SUBDIR += netstiff SUBDIR += netsurf SUBDIR += newsboat SUBDIR += nextcloud SUBDIR += nextcloud-appointments SUBDIR += nextcloud-calendar SUBDIR += nextcloud-contacts SUBDIR += nextcloud-deck SUBDIR += nextcloud-forms SUBDIR += nextcloud-groupfolders SUBDIR += nextcloud-notes SUBDIR += nextcloud-tasks SUBDIR += nghttp2 SUBDIR += nginx SUBDIR += nginx-devel SUBDIR += nginx-full SUBDIR += nginx-lite SUBDIR += nginx-naxsi SUBDIR += nginx-prometheus-exporter SUBDIR += nginx-ultimate-bad-bot-blocker SUBDIR += nginx-vts-exporter SUBDIR += nibbleblog SUBDIR += nift SUBDIR += node SUBDIR += node16 SUBDIR += node18 SUBDIR += node20 SUBDIR += node21 SUBDIR += nostromo SUBDIR += novnc SUBDIR += novnc-websockify SUBDIR += npapi-xine SUBDIR += npc SUBDIR += npm SUBDIR += npm-node16 SUBDIR += npm-node18 SUBDIR += npm-node20 SUBDIR += npm-node21 SUBDIR += oauth2-proxy SUBDIR += obhttpd SUBDIR += offpunk SUBDIR += oneshot SUBDIR += onionbalance SUBDIR += onionshare SUBDIR += onionshare-cli SUBDIR += onlyoffice-documentserver SUBDIR += opencart SUBDIR += openresty SUBDIR += orangehrm SUBDIR += osrm-backend SUBDIR += osticket SUBDIR += ot-recorder SUBDIR += otrs SUBDIR += otter-browser SUBDIR += owncast 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-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-Config-Preproc SUBDIR += p5-Apache-ConfigFile SUBDIR += p5-Apache-ConfigParser SUBDIR += p5-Apache-DB SUBDIR += p5-Apache-DBI SUBDIR += p5-Apache-Defaults 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-Lite 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-Tiny 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-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-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-Catalyst-View-vCard 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-CORS 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-Swagger 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-FormValidator 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-Firefox-Marionette 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-Gazelle SUBDIR += p5-Geo-Caching SUBDIR += p5-Google-Search 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-Defang 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-Escape 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-Gumbo 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-HTML5-DOM SUBDIR += p5-HTTP-AnyUA 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-Entity-Parser SUBDIR += p5-HTTP-Exception SUBDIR += p5-HTTP-HeaderParser-XS SUBDIR += p5-HTTP-Headers-ActionPack 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-MultiPartParser SUBDIR += p5-HTTP-Negotiate SUBDIR += p5-HTTP-OAI 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-Simple SUBDIR += p5-HTTP-SimpleLinkChecker SUBDIR += p5-HTTP-Size SUBDIR += p5-HTTP-Thin SUBDIR += p5-HTTP-Throwable SUBDIR += p5-HTTP-Tiny SUBDIR += p5-HTTP-Tiny-Multipart SUBDIR += p5-HTTP-Tiny-SPDY SUBDIR += p5-HTTP-Tiny-UA SUBDIR += p5-HTTP-Tiny-UNIX 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-JSON-WebToken SUBDIR += p5-Jemplate SUBDIR += p5-Jifty SUBDIR += p5-LWP-Authen-Negotiate SUBDIR += p5-LWP-Authen-OAuth SUBDIR += p5-LWP-Authen-OAuth2 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-Cached 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-Delay SUBDIR += p5-Mojo-IOLoop-ForkCall SUBDIR += p5-Mojo-Server-FastCGI SUBDIR += p5-Mojo-Weixin 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-HamlRenderer SUBDIR += p5-Mojolicious-Plugin-Mongodb SUBDIR += p5-Mojolicious-Plugin-OpenAPI 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-Curl 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-OpenAPI-Client 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-DBIx-DisconnectAll 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-Headers 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-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-RepeatTicket SUBDIR += p5-RT-Extension-RepeatTicket2 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-Gettext 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-LocalServer 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-Normalize 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-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-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-OAuth 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-Yourls SUBDIR += p5-WWW-SourceForge SUBDIR += p5-WWW-Spinn3r SUBDIR += p5-WWW-TV SUBDIR += p5-WWW-TWSMS SUBDIR += p5-WWW-Telegram-BotAPI 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-Machine 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-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-Woothee SUBDIR += p5-WordPress-XMLRPC SUBDIR += p5-Yahoo-Search 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 += pacparser 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 += pecl-http SUBDIR += pecl-solr SUBDIR += pecl-yaf SUBDIR += pecl-yar SUBDIR += perlbal SUBDIR += persepolis SUBDIR += pglogd SUBDIR += phalcon SUBDIR += php80-opcache SUBDIR += php80-session SUBDIR += php80-tidy SUBDIR += php81-opcache SUBDIR += php81-session SUBDIR += php81-tidy SUBDIR += php82-opcache SUBDIR += php82-session SUBDIR += php82-tidy SUBDIR += php83-opcache SUBDIR += php83-session SUBDIR += php83-tidy SUBDIR += phpbb SUBDIR += phpbb3 SUBDIR += phpfpmtop SUBDIR += phpgroupware SUBDIR += phpmustache SUBDIR += phpmyfaq SUBDIR += phprecipebook SUBDIR += phpsysinfo SUBDIR += phpvirtualbox SUBDIR += phpvirtualbox-legacy SUBDIR += piwigo SUBDIR += plasma5-plasma-browser-integration + SUBDIR += plasma6-plasma-browser-integration SUBDIR += pmwiki SUBDIR += pnews SUBDIR += podcastamatic SUBDIR += pomerium SUBDIR += pound SUBDIR += privatebin SUBDIR += privoxy SUBDIR += protovis SUBDIR += proxygen SUBDIR += publicfile SUBDIR += punbb SUBDIR += py-Pituophis SUBDIR += py-Tenjin SUBDIR += py-WebError SUBDIR += py-WebFlash SUBDIR += py-adblock SUBDIR += py-advocate SUBDIR += py-aioh2 SUBDIR += py-aiohttp SUBDIR += py-aiohttp-jinja2 SUBDIR += py-aiohttp-middlewares SUBDIR += py-aiohttp-oauthlib SUBDIR += py-aiohttp-session SUBDIR += py-aiohttp-wsgi SUBDIR += py-aiohttp_cors SUBDIR += py-aioquic SUBDIR += py-aiostream SUBDIR += py-arxiv SUBDIR += py-asgi-csrf SUBDIR += py-asgiref SUBDIR += py-autobahn SUBDIR += py-azure-common SUBDIR += py-azure-storage SUBDIR += py-beaker SUBDIR += py-beautifulsoup SUBDIR += py-betamax SUBDIR += py-biscuits SUBDIR += py-bjoern SUBDIR += py-bleach SUBDIR += py-bokeh SUBDIR += py-boto3 SUBDIR += py-botocore-stubs SUBDIR += py-bottle SUBDIR += py-bottle-cork SUBDIR += py-branca SUBDIR += py-bravado SUBDIR += py-bravado-core SUBDIR += py-cachecontrol SUBDIR += py-cachelib SUBDIR += py-caldav SUBDIR += py-channels SUBDIR += py-cheroot SUBDIR += py-cherrypy SUBDIR += py-cinemagoer SUBDIR += py-cookies SUBDIR += py-crossplane SUBDIR += py-css-html-js-minify SUBDIR += py-css-parser SUBDIR += py-csscompressor SUBDIR += py-cssmin SUBDIR += py-cssselect SUBDIR += py-cssutils SUBDIR += py-daphne SUBDIR += py-dj-database-url SUBDIR += py-dj41-django-auth-ldap SUBDIR += py-dj41-django-cors-headers SUBDIR += py-dj41-django-debug-toolbar SUBDIR += py-dj41-django-filter SUBDIR += py-dj41-django-graphiql-debug-toolbar SUBDIR += py-dj41-django-js-asset SUBDIR += py-dj41-django-mptt SUBDIR += py-dj41-django-prometheus SUBDIR += py-dj41-django-redis SUBDIR += py-dj41-django-rich SUBDIR += py-dj41-django-tables2 SUBDIR += py-dj41-django-taggit SUBDIR += py-dj41-django-timezone-field SUBDIR += py-dj41-djangorestframework SUBDIR += py-dj41-drf-spectacular SUBDIR += py-dj41-drf-spectacular-sidecar SUBDIR += py-dj41-drf-yasg SUBDIR += py-dj42-django-auth-ldap SUBDIR += py-dj42-django-cors-headers SUBDIR += py-dj42-django-debug-toolbar SUBDIR += py-dj42-django-filter SUBDIR += py-dj42-django-graphiql-debug-toolbar SUBDIR += py-dj42-django-js-asset SUBDIR += py-dj42-django-mptt SUBDIR += py-dj42-django-prometheus SUBDIR += py-dj42-django-redis SUBDIR += py-dj42-django-rich SUBDIR += py-dj42-django-tables2 SUBDIR += py-dj42-django-taggit SUBDIR += py-dj42-django-timezone-field SUBDIR += py-dj42-djangorestframework SUBDIR += py-dj42-drf-spectacular SUBDIR += py-dj42-drf-spectacular-sidecar SUBDIR += py-django-admin-rangefilter SUBDIR += py-django-advanced-filters SUBDIR += py-django-allauth SUBDIR += py-django-annoying SUBDIR += py-django-appconf SUBDIR += py-django-assets SUBDIR += py-django-auth-ldap SUBDIR += py-django-autocomplete-light SUBDIR += py-django-bakery SUBDIR += py-django-bitfield SUBDIR += py-django-bleach SUBDIR += py-django-bootstrap-pagination SUBDIR += py-django-bootstrap3 SUBDIR += py-django-bootstrap4 SUBDIR += py-django-braces SUBDIR += py-django-cacheops SUBDIR += py-django-ckeditor-5 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-context-decorator SUBDIR += py-django-contrib-comments SUBDIR += py-django-cors-headers SUBDIR += py-django-countries SUBDIR += py-django-crispy-forms SUBDIR += py-django-cron SUBDIR += py-django-csp SUBDIR += py-django-debreach SUBDIR += py-django-debug-toolbar SUBDIR += py-django-dpaste SUBDIR += py-django-extensions SUBDIR += py-django-filer SUBDIR += py-django-filter SUBDIR += py-django-formset-js-improved SUBDIR += py-django-formtools SUBDIR += py-django-graphiql-debug-toolbar SUBDIR += py-django-gravatar2 SUBDIR += py-django-guardian SUBDIR += py-django-hashid-field SUBDIR += py-django-haystack SUBDIR += py-django-hierarkey SUBDIR += py-django-hijack SUBDIR += py-django-htmlmin SUBDIR += py-django-i18nfield SUBDIR += py-django-jquery-js SUBDIR += py-django-js-asset SUBDIR += py-django-jsonview SUBDIR += py-django-ldapdb SUBDIR += py-django-libsass SUBDIR += py-django-markdownx SUBDIR += py-django-markwhat SUBDIR += py-django-mezzanine-filebrowser SUBDIR += py-django-mezzanine-grappelli SUBDIR += py-django-model-utils SUBDIR += py-django-modelcluster SUBDIR += py-django-mptt SUBDIR += py-django-netfields SUBDIR += py-django-object-actions SUBDIR += py-django-otp SUBDIR += py-django-otp-yubikey SUBDIR += py-django-permissionedforms SUBDIR += py-django-pglocks SUBDIR += py-django-photologue SUBDIR += py-django-picklefield SUBDIR += py-django-pipeline SUBDIR += py-django-polymorphic SUBDIR += py-django-post_office SUBDIR += py-django-prometheus SUBDIR += py-django-pyscss SUBDIR += py-django-radius SUBDIR += py-django-ranged-response SUBDIR += py-django-recaptcha SUBDIR += py-django-redis SUBDIR += py-django-registration SUBDIR += py-django-registration-redux SUBDIR += py-django-requests-debug-toolbar SUBDIR += py-django-reversion SUBDIR += py-django-reversion-compare SUBDIR += py-django-rich SUBDIR += py-django-sekizai SUBDIR += py-django-simple-captcha SUBDIR += py-django-simple-history SUBDIR += py-django-smart-selects SUBDIR += py-django-solo SUBDIR += py-django-sortedm2m SUBDIR += py-django-star-ratings SUBDIR += py-django-statici18n SUBDIR += py-django-staticinline SUBDIR += py-django-storages SUBDIR += py-django-tables2 SUBDIR += py-django-tagging SUBDIR += py-django-taggit SUBDIR += py-django-tastypie SUBDIR += py-django-templatetag-sugar SUBDIR += py-django-timezone-field SUBDIR += py-django-tinymce SUBDIR += py-django-treebeard SUBDIR += py-django-voting SUBDIR += py-django-webpack-loader SUBDIR += py-django-widget-tweaks SUBDIR += py-django32 SUBDIR += py-django41 SUBDIR += py-django42 SUBDIR += py-django_compressor SUBDIR += py-djangocms-admin-style SUBDIR += py-djangoql SUBDIR += py-djangorestframework SUBDIR += py-djangorestframework-csv SUBDIR += py-djangorestframework-filters SUBDIR += py-djangorestframework-xml SUBDIR += py-draftjs-exporter SUBDIR += py-drf-spectacular SUBDIR += py-drf-spectacular-sidecar SUBDIR += py-drf-yasg SUBDIR += py-dropbox SUBDIR += py-dtflickr SUBDIR += py-enmerkar SUBDIR += py-fake-useragent SUBDIR += py-falcon SUBDIR += py-fastapi SUBDIR += py-fastapi-users 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-babelex SUBDIR += py-flask-bootstrap SUBDIR += py-flask-cache SUBDIR += py-flask-caching SUBDIR += py-flask-collect SUBDIR += py-flask-compress SUBDIR += py-flask-cors SUBDIR += py-flask-flatpages SUBDIR += py-flask-json SUBDIR += py-flask-jwt-extended SUBDIR += py-flask-limiter SUBDIR += py-flask-login SUBDIR += py-flask-marshmallow SUBDIR += py-flask-migrate SUBDIR += py-flask-moment SUBDIR += py-flask-mongoengine SUBDIR += py-flask-oauthlib SUBDIR += py-flask-peewee SUBDIR += py-flask-principal SUBDIR += py-flask-restful SUBDIR += py-flask-restx SUBDIR += py-flask-script SUBDIR += py-flask-security SUBDIR += py-flask-smorest SUBDIR += py-flask-socketio SUBDIR += py-flask-sockets SUBDIR += py-flask-uploads SUBDIR += py-flask-wtf SUBDIR += py-flup6 SUBDIR += py-folium SUBDIR += py-forcediphttpsadapter SUBDIR += py-formencode SUBDIR += py-fqdn SUBDIR += py-freenit SUBDIR += py-frozen-flask SUBDIR += py-gandi.cli SUBDIR += py-gevent-websocket SUBDIR += py-ghp-import SUBDIR += py-google SUBDIR += py-google-api-core SUBDIR += py-google-api-python-client SUBDIR += py-google-cloud-aiplatform SUBDIR += py-google-cloud-appengine-logging SUBDIR += py-google-cloud-audit-log SUBDIR += py-google-cloud-bigquery SUBDIR += py-google-cloud-bigtable SUBDIR += py-google-cloud-core SUBDIR += py-google-cloud-datastore SUBDIR += py-google-cloud-dlp SUBDIR += py-google-cloud-logging SUBDIR += py-google-cloud-resource-manager SUBDIR += py-google-cloud-speech SUBDIR += py-google-cloud-storage SUBDIR += py-google-cloud-translate SUBDIR += py-google-cloud-vision SUBDIR += py-google-resumable-media SUBDIR += py-grafana-dashboard-manager SUBDIR += py-graphite-api SUBDIR += py-grequests SUBDIR += py-grip SUBDIR += py-gunicorn SUBDIR += py-h2 SUBDIR += py-habanero SUBDIR += py-hdfs SUBDIR += py-horizon SUBDIR += py-hpack SUBDIR += py-hstspreload SUBDIR += py-html3 SUBDIR += py-html5-parser SUBDIR += py-html5lib SUBDIR += py-httmock SUBDIR += py-http-parser SUBDIR += py-httpbin SUBDIR += py-httpcore SUBDIR += py-httpie SUBDIR += py-httplib2 SUBDIR += py-httpretty SUBDIR += py-httptools SUBDIR += py-httpx SUBDIR += py-httpx-cache SUBDIR += py-httpx-gssapi SUBDIR += py-httpx-oauth SUBDIR += py-httpx-socks SUBDIR += py-httpx013 SUBDIR += py-hypercorn SUBDIR += py-hyperframe SUBDIR += py-hyperlink SUBDIR += py-imdbpy SUBDIR += py-inlinestyler SUBDIR += py-instabot SUBDIR += py-internetarchive SUBDIR += py-jonpy SUBDIR += py-jsonfield SUBDIR += py-kiss-headers SUBDIR += py-lektor SUBDIR += py-lesscpy SUBDIR += py-libsass SUBDIR += py-livereload SUBDIR += py-mechanicalsoup SUBDIR += py-mechanize SUBDIR += py-multidict SUBDIR += py-mwoauth SUBDIR += py-nevow SUBDIR += py-notebook SUBDIR += py-onetimepass SUBDIR += py-openbrokerapi SUBDIR += py-pafy SUBDIR += py-paste SUBDIR += py-pastedeploy SUBDIR += py-path-and-address SUBDIR += py-pecan SUBDIR += py-pelican SUBDIR += py-planet SUBDIR += py-postorius SUBDIR += py-praw SUBDIR += py-prawcore SUBDIR += py-priority SUBDIR += py-priority1 SUBDIR += py-protego SUBDIR += py-puppetboard SUBDIR += py-py-restclient SUBDIR += py-pygsheets SUBDIR += py-pyjwt SUBDIR += py-pyjwt1 SUBDIR += py-pylsqpack SUBDIR += py-pyocclient SUBDIR += py-pyramid SUBDIR += py-pyramid-mako SUBDIR += py-pyramid_rpc SUBDIR += py-pysmartdl SUBDIR += py-python-digitalocean SUBDIR += py-python-dotenv SUBDIR += py-python-multipart SUBDIR += py-pyweblib SUBDIR += py-pywikibot SUBDIR += py-qt5-webengine SUBDIR += py-qt6-webengine SUBDIR += py-quilt3 SUBDIR += py-readability-lxml SUBDIR += py-recaptcha SUBDIR += py-requests SUBDIR += py-requests-aws4auth SUBDIR += py-requests-cache SUBDIR += py-requests-cache0 SUBDIR += py-requests-cache93 SUBDIR += py-requests-file SUBDIR += py-requests-futures SUBDIR += py-requests-gssapi SUBDIR += py-requests-mock SUBDIR += py-requests-oauthlib SUBDIR += py-requests-toolbelt SUBDIR += py-requests-unixsocket SUBDIR += py-requests-wsgi-adapter SUBDIR += py-requests_ntlm SUBDIR += py-respx SUBDIR += py-restclient SUBDIR += py-rfc3986 SUBDIR += py-rfc3987 SUBDIR += py-rollbar SUBDIR += py-routes SUBDIR += py-rules SUBDIR += py-scgi SUBDIR += py-scrapy SUBDIR += py-seafdav SUBDIR += py-seafobj SUBDIR += py-secure-cookie SUBDIR += py-selector SUBDIR += py-selenium SUBDIR += py-selenium-wire SUBDIR += py-semiphemeral SUBDIR += py-sentinelhub SUBDIR += py-simple-websocket SUBDIR += py-slimit SUBDIR += py-slumber SUBDIR += py-social-auth-app-django SUBDIR += py-sockjs-tornado SUBDIR += py-soupsieve SUBDIR += py-splinter SUBDIR += py-spyne SUBDIR += py-sseclient SUBDIR += py-starlette SUBDIR += py-swapper SUBDIR += py-textile SUBDIR += py-ticketutil SUBDIR += py-tornado SUBDIR += py-tornado4 SUBDIR += py-tornado5 SUBDIR += py-treq SUBDIR += py-ttrv SUBDIR += py-tuir SUBDIR += py-turbogears2 SUBDIR += py-tvdb_api SUBDIR += py-urlgrabber SUBDIR += py-urlman SUBDIR += py-urlobject SUBDIR += py-urlwatch SUBDIR += py-user_agent SUBDIR += py-utidylib SUBDIR += py-uvicorn SUBDIR += py-w3lib SUBDIR += py-wagtail SUBDIR += py-wagtail-2fa SUBDIR += py-wagtail-airtable SUBDIR += py-wagtail-bakery SUBDIR += py-wagtail-factories SUBDIR += py-wagtail-localize SUBDIR += py-wagtail-transfer SUBDIR += py-waitress SUBDIR += py-wcag-contrast-ratio SUBDIR += py-webargs SUBDIR += py-webassets SUBDIR += py-webdriver_manager SUBDIR += py-webob SUBDIR += py-websocket-client SUBDIR += py-webtest SUBDIR += py-webunit SUBDIR += py-werkzeug SUBDIR += py-wfuzz SUBDIR += py-whitenoise SUBDIR += py-wikipedia SUBDIR += py-wikitools SUBDIR += py-woob SUBDIR += py-woob-qt SUBDIR += py-wsaccel SUBDIR += py-wsgidav SUBDIR += py-xandikos SUBDIR += py-xyzservices SUBDIR += py-yarl SUBDIR += pydio-cells SUBDIR += qdecoder SUBDIR += qhttpengine SUBDIR += qt5-webchannel SUBDIR += qt5-webengine SUBDIR += qt5-webglplugin SUBDIR += qt5-webkit SUBDIR += qt5-websockets SUBDIR += qt5-websockets-qml SUBDIR += qt5-webview SUBDIR += qt6-httpserver SUBDIR += qt6-webchannel SUBDIR += qt6-webengine SUBDIR += qt6-websockets SUBDIR += qt6-webview SUBDIR += quark SUBDIR += qutebrowser SUBDIR += radicale SUBDIR += rearx SUBDIR += reddsaver SUBDIR += redmine50 SUBDIR += rejik SUBDIR += remark42 SUBDIR += reportmagic SUBDIR += repos-style SUBDIR += reproxy SUBDIR += restbed SUBDIR += restinio SUBDIR += retawq SUBDIR += rss-bridge SUBDIR += rsskit SUBDIR += rssroll SUBDIR += rsstail SUBDIR += rsstool SUBDIR += rt44 SUBDIR += rt50 SUBDIR += rubygem-ace-rails-ap SUBDIR += rubygem-actioncable5 SUBDIR += rubygem-actioncable50 SUBDIR += rubygem-actioncable52 SUBDIR += rubygem-actioncable60 SUBDIR += rubygem-actioncable61 SUBDIR += rubygem-actioncable70 SUBDIR += rubygem-actioncable71 SUBDIR += rubygem-actionpack4 SUBDIR += rubygem-actionpack5 SUBDIR += rubygem-actionpack50 SUBDIR += rubygem-actionpack52 SUBDIR += rubygem-actionpack60 SUBDIR += rubygem-actionpack61 SUBDIR += rubygem-actionpack70 SUBDIR += rubygem-actionpack71 SUBDIR += rubygem-activeresource SUBDIR += rubygem-activeresource4 SUBDIR += rubygem-acts-as-taggable-on SUBDIR += rubygem-acts_as_taggable SUBDIR += rubygem-addressable SUBDIR += rubygem-adsf SUBDIR += rubygem-akami SUBDIR += rubygem-amazon-ecs SUBDIR += rubygem-anemone SUBDIR += rubygem-asana SUBDIR += rubygem-async-http SUBDIR += rubygem-async-pool SUBDIR += rubygem-async-rest SUBDIR += rubygem-async-websocket SUBDIR += rubygem-async_sinatra SUBDIR += rubygem-atlassian-jwt 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-carrierwave SUBDIR += rubygem-carrierwave1 SUBDIR += rubygem-cgi SUBDIR += rubygem-cgi_multipart_eof_fix SUBDIR += rubygem-chosen-rails SUBDIR += rubygem-chromedriver-helper SUBDIR += rubygem-circuitbox SUBDIR += rubygem-cookiejar SUBDIR += rubygem-crass SUBDIR += rubygem-cssbundling-rails SUBDIR += rubygem-cssbundling-rails-rails70 SUBDIR += rubygem-cuba SUBDIR += rubygem-d3_rails SUBDIR += rubygem-davclient SUBDIR += rubygem-deckar01-task_list SUBDIR += rubygem-domainatrix SUBDIR += rubygem-dropzonejs-rails 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-em_http SUBDIR += rubygem-faraday-em_synchrony SUBDIR += rubygem-faraday-follow_redirects SUBDIR += rubygem-faraday-http-cache SUBDIR += rubygem-faraday-httpclient SUBDIR += rubygem-faraday-httpclient1 SUBDIR += rubygem-faraday-multipart SUBDIR += rubygem-faraday-net_http SUBDIR += rubygem-faraday-net_http1 SUBDIR += rubygem-faraday-net_http_persistent SUBDIR += rubygem-faraday-net_http_persistent1 SUBDIR += rubygem-faraday-patron SUBDIR += rubygem-faraday-patron1 SUBDIR += rubygem-faraday-rack SUBDIR += rubygem-faraday-rack1 SUBDIR += rubygem-faraday-retry SUBDIR += rubygem-faraday-retry1 SUBDIR += rubygem-faraday0 SUBDIR += rubygem-faraday1 SUBDIR += rubygem-faraday14 SUBDIR += rubygem-faraday_middleware SUBDIR += rubygem-faraday_middleware0 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-gollum-rugged_adapter SUBDIR += rubygem-gitlab-turbolinks-classic SUBDIR += rubygem-goldfinger SUBDIR += rubygem-gollum SUBDIR += rubygem-gollum-grit_adapter SUBDIR += rubygem-gollum-grit_adapter10 SUBDIR += rubygem-gollum-lib SUBDIR += rubygem-gollum-rugged_adapter SUBDIR += rubygem-gon-rails5 SUBDIR += rubygem-gon-rails50 SUBDIR += rubygem-gon-rails60 SUBDIR += rubygem-gon-rails61 SUBDIR += rubygem-gon-rails70 SUBDIR += rubygem-hackpad-cli SUBDIR += rubygem-haml SUBDIR += rubygem-haml-coderay SUBDIR += rubygem-haml-contrib SUBDIR += rubygem-haml-rails-rails4 SUBDIR += rubygem-haml5 SUBDIR += rubygem-hamlit SUBDIR += rubygem-hamlit-rails SUBDIR += rubygem-hamlit-rails-rails5 SUBDIR += rubygem-hamlit-rails-rails50 SUBDIR += rubygem-hamlit-rails-rails61 SUBDIR += rubygem-hashicorp-checkpoint SUBDIR += rubygem-heroics SUBDIR += rubygem-heroku-api SUBDIR += rubygem-heroku-nav SUBDIR += rubygem-hpricot SUBDIR += rubygem-html2haml SUBDIR += rubygem-http SUBDIR += rubygem-http-accept SUBDIR += rubygem-http-cookie SUBDIR += rubygem-http-form_data SUBDIR += rubygem-http3 SUBDIR += rubygem-http4 SUBDIR += rubygem-http_router SUBDIR += rubygem-httparty SUBDIR += rubygem-httparty020 SUBDIR += rubygem-httpclient SUBDIR += rubygem-httpi SUBDIR += rubygem-hurley SUBDIR += rubygem-importmap-rails SUBDIR += rubygem-importmap-rails-rails70 SUBDIR += rubygem-innate SUBDIR += rubygem-jekyll SUBDIR += rubygem-jekyll-sanity SUBDIR += rubygem-jekyll-seo-tag SUBDIR += rubygem-jekyll-watch SUBDIR += rubygem-jekyll3 SUBDIR += rubygem-journey SUBDIR += rubygem-jquery-atwho-rails 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-jsbundling-rails SUBDIR += rubygem-jsbundling-rails-rails70 SUBDIR += rubygem-jsobfu SUBDIR += rubygem-json-jwt SUBDIR += rubygem-json-jwt115 SUBDIR += rubygem-jsonb_accessor SUBDIR += rubygem-jwt SUBDIR += rubygem-kaminari SUBDIR += rubygem-kaminari-actionview SUBDIR += rubygem-kaminari-actionview-rails5 SUBDIR += rubygem-kaminari-actionview-rails50 SUBDIR += rubygem-kaminari-actionview-rails52 SUBDIR += rubygem-kaminari-actionview-rails60 SUBDIR += rubygem-kaminari-actionview-rails61 SUBDIR += rubygem-kaminari-actionview-rails70 SUBDIR += rubygem-kaminari-activerecord SUBDIR += rubygem-kaminari-activerecord-rails5 SUBDIR += rubygem-kaminari-activerecord-rails50 SUBDIR += rubygem-kaminari-activerecord-rails52 SUBDIR += rubygem-kaminari-activerecord-rails60 SUBDIR += rubygem-kaminari-activerecord-rails61 SUBDIR += rubygem-kaminari-activerecord-rails70 SUBDIR += rubygem-kaminari-core SUBDIR += rubygem-kaminari-rails4 SUBDIR += rubygem-kaminari-rails5 SUBDIR += rubygem-kaminari-rails50 SUBDIR += rubygem-kaminari-rails52 SUBDIR += rubygem-kaminari-rails60 SUBDIR += rubygem-kaminari-rails61 SUBDIR += rubygem-kaminari-rails70 SUBDIR += rubygem-kubeclient SUBDIR += rubygem-layout_yullio_generator SUBDIR += rubygem-less SUBDIR += rubygem-lighthouse-api SUBDIR += rubygem-link_header SUBDIR += rubygem-llhttp-ffi SUBDIR += rubygem-lograge SUBDIR += rubygem-lograge-rails5 SUBDIR += rubygem-lograge-rails52 SUBDIR += rubygem-lograge-rails60 SUBDIR += rubygem-lograge-rails61 SUBDIR += rubygem-lograge-rails70 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-nanoc-checking SUBDIR += rubygem-nanoc-cli SUBDIR += rubygem-nanoc-core SUBDIR += rubygem-nanoc-deploying SUBDIR += rubygem-nested_form SUBDIR += rubygem-net-http SUBDIR += rubygem-net-http-digest_auth SUBDIR += rubygem-net-http-persistent SUBDIR += rubygem-net-http-persistent2 SUBDIR += rubygem-net-http-pipeline SUBDIR += rubygem-net-http011 SUBDIR += rubygem-nicovideo SUBDIR += rubygem-ntlm-http SUBDIR += rubygem-octopress SUBDIR += rubygem-oembed SUBDIR += rubygem-ostatus2 SUBDIR += rubygem-pagerduty SUBDIR += rubygem-passenger SUBDIR += rubygem-patron SUBDIR += rubygem-platform-api SUBDIR += rubygem-propshaft SUBDIR += rubygem-propshaft-rails70 SUBDIR += rubygem-protocol-hpack SUBDIR += rubygem-protocol-http SUBDIR += rubygem-protocol-http1 SUBDIR += rubygem-protocol-http2 SUBDIR += rubygem-protocol-rack SUBDIR += rubygem-protocol-websocket SUBDIR += rubygem-puma SUBDIR += rubygem-puma_worker_killer SUBDIR += rubygem-pusher-client SUBDIR += rubygem-rabbirack SUBDIR += rubygem-rack SUBDIR += rubygem-rack-accept SUBDIR += rubygem-rack-attack SUBDIR += rubygem-rack-cache SUBDIR += rubygem-rack-contrib SUBDIR += rubygem-rack-cors SUBDIR += rubygem-rack-mount SUBDIR += rubygem-rack-openid SUBDIR += rubygem-rack-protection SUBDIR += rubygem-rack-protection1 SUBDIR += rubygem-rack-protection2 SUBDIR += rubygem-rack-proxy SUBDIR += rubygem-rack-session SUBDIR += rubygem-rack-ssl SUBDIR += rubygem-rack-test SUBDIR += rubygem-rack-timeout SUBDIR += rubygem-rack16 SUBDIR += rubygem-rack22 SUBDIR += rubygem-rack_csrf SUBDIR += rubygem-rackup SUBDIR += rubygem-rails-settings-cached SUBDIR += rubygem-rails-settings-cached-rails5 SUBDIR += rubygem-rails-settings-cached-rails50 SUBDIR += rubygem-rails-settings-cached-rails61 SUBDIR += rubygem-rails4 SUBDIR += rubygem-rails5 SUBDIR += rubygem-rails50 SUBDIR += rubygem-rails52 SUBDIR += rubygem-rails60 SUBDIR += rubygem-rails61 SUBDIR += rubygem-rails70 SUBDIR += rubygem-rails71 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-railties52 SUBDIR += rubygem-railties60 SUBDIR += rubygem-railties61 SUBDIR += rubygem-railties70 SUBDIR += rubygem-railties71 SUBDIR += rubygem-raindrops SUBDIR += rubygem-ramaze SUBDIR += rubygem-raphael-rails SUBDIR += rubygem-rate_throttle_client SUBDIR += rubygem-rbovirt SUBDIR += rubygem-rdf SUBDIR += rubygem-rdf-normalize SUBDIR += rubygem-redcloth SUBDIR += rubygem-redis-rack SUBDIR += rubygem-redis-rails SUBDIR += rubygem-redis-rails-rails5 SUBDIR += rubygem-redis-rails-rails50 SUBDIR += rubygem-redis-rails-rails52 SUBDIR += rubygem-redis-rails-rails60 SUBDIR += rubygem-redis-rails-rails61 SUBDIR += rubygem-responders SUBDIR += rubygem-responders-rails5 SUBDIR += rubygem-responders-rails52 SUBDIR += rubygem-responders-rails60 SUBDIR += rubygem-responders-rails61 SUBDIR += rubygem-responders-rails70 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-rqrcode2 SUBDIR += rubygem-rqrcode_core SUBDIR += rubygem-rss SUBDIR += rubygem-rtlit SUBDIR += rubygem-ruby-oembed SUBDIR += rubygem-ruby-openai SUBDIR += rubygem-ruby-openai37 SUBDIR += rubygem-ruby-readability SUBDIR += rubygem-savon SUBDIR += rubygem-sawyer SUBDIR += rubygem-select2-rails 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-contrib2 SUBDIR += rubygem-sinatra-r18n SUBDIR += rubygem-sinatra-respond_to SUBDIR += rubygem-sinatra1 SUBDIR += rubygem-sinatra2 SUBDIR += rubygem-sitemap_generator SUBDIR += rubygem-smashing SUBDIR += rubygem-socksify SUBDIR += rubygem-stimulus-rails SUBDIR += rubygem-stimulus-rails-rails70 SUBDIR += rubygem-swd SUBDIR += rubygem-tailwindcss-rails SUBDIR += rubygem-tailwindcss-rails-rails70 SUBDIR += rubygem-task_list SUBDIR += rubygem-thin SUBDIR += rubygem-tinyatom SUBDIR += rubygem-tinymce-rails SUBDIR += rubygem-toml-rb SUBDIR += rubygem-totoridipjp SUBDIR += rubygem-tumblr_client SUBDIR += rubygem-turbo-rails SUBDIR += rubygem-turbo-rails-rails70 SUBDIR += rubygem-turbolinks SUBDIR += rubygem-turbolinks-source SUBDIR += rubygem-typhoeus SUBDIR += rubygem-uglifier SUBDIR += rubygem-underscore-rails SUBDIR += rubygem-unicorn SUBDIR += rubygem-unicorn-worker-killer SUBDIR += rubygem-url_escape SUBDIR += rubygem-url_mount SUBDIR += rubygem-vcr SUBDIR += rubygem-vegas SUBDIR += rubygem-wasabi SUBDIR += rubygem-webdrivers SUBDIR += rubygem-webmock SUBDIR += rubygem-webrick SUBDIR += rubygem-webrobots SUBDIR += rubygem-websocket SUBDIR += rubygem-websocket-client-simple SUBDIR += rubygem-websocket-driver SUBDIR += rubygem-websocket-extensions SUBDIR += rubygem-yapra SUBDIR += rustypaste SUBDIR += rustypaste-cli SUBDIR += s SUBDIR += sabredav SUBDIR += sahi SUBDIR += samdruckerserver SUBDIR += sarg SUBDIR += scloader SUBDIR += screego SUBDIR += script4rss SUBDIR += seahub SUBDIR += searx SUBDIR += selenium SUBDIR += serendipity SUBDIR += serf SUBDIR += servlet-api SUBDIR += sfeed SUBDIR += shellinabox SUBDIR += shiori SUBDIR += silicon SUBDIR += simple-web-server SUBDIR += sitecopy SUBDIR += slowcgi SUBDIR += slowhttptest SUBDIR += smarty SUBDIR += smarty2 SUBDIR += smarty3 SUBDIR += smb_auth SUBDIR += snarf SUBDIR += so SUBDIR += sogo SUBDIR += sogo-activesync SUBDIR += sogo2 SUBDIR += sogo2-activesync SUBDIR += spawn-fcgi SUBDIR += spreadlogd SUBDIR += sqstat SUBDIR += squid SUBDIR += squid-langpack SUBDIR += squid_radius_auth SUBDIR += squidanalyzer SUBDIR += squidclamav SUBDIR += squidguard SUBDIR += squidpurge SUBDIR += squidview SUBDIR += srg SUBDIR += srt SUBDIR += stagit SUBDIR += stork SUBDIR += subsonic-standalone SUBDIR += suitecrm SUBDIR += suphp SUBDIR += surf SUBDIR += swiggle SUBDIR += sws SUBDIR += tcexam SUBDIR += tclhttpd SUBDIR += tclwebtest SUBDIR += tdiary SUBDIR += tdom SUBDIR += template_ SUBDIR += templatelite SUBDIR += thirtybees SUBDIR += threejs SUBDIR += threema-web SUBDIR += thttpd SUBDIR += thumbnail_index SUBDIR += thundercache SUBDIR += thundersnarf SUBDIR += tidy SUBDIR += tidy-devel SUBDIR += tidy-html5 SUBDIR += tidy-lib SUBDIR += tikiwiki SUBDIR += tinymce SUBDIR += tinyproxy SUBDIR += tivoka SUBDIR += tntnet SUBDIR += tokyopromenade SUBDIR += tomcat-devel SUBDIR += tomcat-native SUBDIR += tomcat101 SUBDIR += tomcat85 SUBDIR += tomcat9 SUBDIR += tomee SUBDIR += tor-browser SUBDIR += trac-devel SUBDIR += trafficserver SUBDIR += transproxy SUBDIR += trunk SUBDIR += tt-rss SUBDIR += tuifeed SUBDIR += tusc SUBDIR += tusd 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 += twms SUBDIR += typo3-11 SUBDIR += typo3-12 SUBDIR += uchiwa SUBDIR += ufdbguard SUBDIR += ulfius SUBDIR += ungoogled-chromium SUBDIR += unit SUBDIR += unit-java SUBDIR += unit-perl SUBDIR += unit-php SUBDIR += unit-python SUBDIR += unit-ruby SUBDIR += unit-wasm SUBDIR += unitc SUBDIR += uwebsockets SUBDIR += uwsgi SUBDIR += uwsgitop SUBDIR += validator SUBDIR += varnish-ip2location SUBDIR += varnish-ip2proxy SUBDIR += varnish-libvmod-digest SUBDIR += varnish-libvmod-dynamic SUBDIR += varnish-libvmod-fileserver SUBDIR += varnish-libvmod-geoip2 SUBDIR += varnish-libvmod-maxminddb SUBDIR += varnish-libvmod-querystring SUBDIR += varnish-libvmod-redis SUBDIR += varnish-modules SUBDIR += varnish6 SUBDIR += varnish7 SUBDIR += varnish_exporter SUBDIR += vaultwarden-web_vault SUBDIR += vdradmin-am SUBDIR += vertx SUBDIR += vger SUBDIR += vieb SUBDIR += vigil SUBDIR += vimb SUBDIR += visitors SUBDIR += volta SUBDIR += vultr-cli SUBDIR += w3m SUBDIR += w3m-img SUBDIR += w3mir SUBDIR += wabt SUBDIR += wasm-pack SUBDIR += web2ldap SUBDIR += webalizer SUBDIR += webbrowser SUBDIR += webcopy SUBDIR += webcrawl SUBDIR += webfs SUBDIR += webgrind SUBDIR += webhook SUBDIR += webinject SUBDIR += webkit2-gtk3 SUBDIR += webkit2-gtk4 SUBDIR += weblint++ SUBDIR += webpy SUBDIR += webresolve SUBDIR += websh SUBDIR += websocat SUBDIR += websocketd SUBDIR += webstone SUBDIR += webtrees20 SUBDIR += webtrees21 SUBDIR += wget2 SUBDIR += wgetpaste SUBDIR += wiki-tui SUBDIR += wikicalc SUBDIR += wordpress SUBDIR += wpebackend-fdo SUBDIR += writeas-cli SUBDIR += writefreely SUBDIR += wsdlpull SUBDIR += wslay SUBDIR += wsmake SUBDIR += wt SUBDIR += wuzz SUBDIR += wwwoffle SUBDIR += xapian-omega SUBDIR += xcaddy SUBDIR += xfce4-smartbookmark-plugin SUBDIR += xh SUBDIR += xist SUBDIR += xoops SUBDIR += xsp SUBDIR += yabb SUBDIR += yanopaste SUBDIR += yarn SUBDIR += yarn-node16 SUBDIR += yarn-node18 SUBDIR += yarn-node20 SUBDIR += yarn-node21 SUBDIR += yarr SUBDIR += yaws SUBDIR += you-get SUBDIR += yourls SUBDIR += youtube_dl SUBDIR += yt-dlp SUBDIR += ytdl SUBDIR += yuicompressor SUBDIR += zend-framework SUBDIR += zenphoto SUBDIR += zerowait-httpd SUBDIR += zgrab2 SUBDIR += zola .include diff --git a/www/plasma6-plasma-browser-integration/Makefile b/www/plasma6-plasma-browser-integration/Makefile new file mode 100644 index 000000000000..3007e20ff5aa --- /dev/null +++ b/www/plasma6-plasma-browser-integration/Makefile @@ -0,0 +1,15 @@ +PORTNAME= plasma-browser-integration +DISTVERSION= ${KDE_PLASMA_VERSION} +CATEGORIES= www kde kde-plasma + +MAINTAINER= kde@FreeBSD.org +COMMENT= Components necessary to integrate browsers into the Plasma Desktop + +USES= cmake gettext kde:6 qt:6 tar:xz +USE_KDE= activities config coreaddons crash dbusaddons filemetadata \ + i18n jobwidgets kio notifications plasma-workspace purpose \ + runner statusnotifieritem \ + ecm:build +USE_QT= base + +.include diff --git a/www/plasma6-plasma-browser-integration/distinfo b/www/plasma6-plasma-browser-integration/distinfo new file mode 100644 index 000000000000..c279a1606707 --- /dev/null +++ b/www/plasma6-plasma-browser-integration/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1701531669 +SHA256 (KDE/plasma/5.90.0/plasma-browser-integration-5.90.0.tar.xz) = e2e7c5456034c8735bea4ceb8b6d34018a47d069316fc1a0228eefb0a9c98321 +SIZE (KDE/plasma/5.90.0/plasma-browser-integration-5.90.0.tar.xz) = 217948 diff --git a/www/plasma6-plasma-browser-integration/pkg-plist b/www/plasma6-plasma-browser-integration/pkg-plist new file mode 100644 index 000000000000..374e1a089428 --- /dev/null +++ b/www/plasma6-plasma-browser-integration/pkg-plist @@ -0,0 +1,99 @@ +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 +etc/opt/edge/native-messaging-hosts/org.kde.plasma.browser_integration.json +lib/mozilla/native-messaging-hosts/org.kde.plasma.browser_integration.json +%%QT_PLUGINDIR%%/kf6/kded/browserintegrationreminder.so +share/applications/org.kde.plasma.browser_integration.host.desktop +share/krunner/dbusplugins/plasma-runner-browserhistory.desktop +share/krunner/dbusplugins/plasma-runner-browsertabs.desktop +share/locale/ar/LC_MESSAGES/plasma-browser-integration-host.mo +share/locale/ar/LC_MESSAGES/plasma-browser-integration-reminder.mo +share/locale/ast/LC_MESSAGES/plasma-browser-integration-host.mo +share/locale/ast/LC_MESSAGES/plasma-browser-integration-reminder.mo +share/locale/az/LC_MESSAGES/plasma-browser-integration-host.mo +share/locale/az/LC_MESSAGES/plasma-browser-integration-reminder.mo +share/locale/bg/LC_MESSAGES/plasma-browser-integration-host.mo +share/locale/bg/LC_MESSAGES/plasma-browser-integration-reminder.mo +share/locale/ca/LC_MESSAGES/plasma-browser-integration-host.mo +share/locale/ca/LC_MESSAGES/plasma-browser-integration-reminder.mo +share/locale/ca@valencia/LC_MESSAGES/plasma-browser-integration-host.mo +share/locale/ca@valencia/LC_MESSAGES/plasma-browser-integration-reminder.mo +share/locale/cs/LC_MESSAGES/plasma-browser-integration-host.mo +share/locale/cs/LC_MESSAGES/plasma-browser-integration-reminder.mo +share/locale/da/LC_MESSAGES/plasma-browser-integration-host.mo +share/locale/da/LC_MESSAGES/plasma-browser-integration-reminder.mo +share/locale/de/LC_MESSAGES/plasma-browser-integration-host.mo +share/locale/de/LC_MESSAGES/plasma-browser-integration-reminder.mo +share/locale/el/LC_MESSAGES/plasma-browser-integration-host.mo +share/locale/el/LC_MESSAGES/plasma-browser-integration-reminder.mo +share/locale/en_GB/LC_MESSAGES/plasma-browser-integration-host.mo +share/locale/en_GB/LC_MESSAGES/plasma-browser-integration-reminder.mo +share/locale/eo/LC_MESSAGES/plasma-browser-integration-host.mo +share/locale/eo/LC_MESSAGES/plasma-browser-integration-reminder.mo +share/locale/es/LC_MESSAGES/plasma-browser-integration-host.mo +share/locale/es/LC_MESSAGES/plasma-browser-integration-reminder.mo +share/locale/et/LC_MESSAGES/plasma-browser-integration-host.mo +share/locale/et/LC_MESSAGES/plasma-browser-integration-reminder.mo +share/locale/eu/LC_MESSAGES/plasma-browser-integration-host.mo +share/locale/eu/LC_MESSAGES/plasma-browser-integration-reminder.mo +share/locale/fi/LC_MESSAGES/plasma-browser-integration-host.mo +share/locale/fi/LC_MESSAGES/plasma-browser-integration-reminder.mo +share/locale/fr/LC_MESSAGES/plasma-browser-integration-host.mo +share/locale/fr/LC_MESSAGES/plasma-browser-integration-reminder.mo +share/locale/gl/LC_MESSAGES/plasma-browser-integration-host.mo +share/locale/gl/LC_MESSAGES/plasma-browser-integration-reminder.mo +share/locale/he/LC_MESSAGES/plasma-browser-integration-host.mo +share/locale/he/LC_MESSAGES/plasma-browser-integration-reminder.mo +share/locale/hu/LC_MESSAGES/plasma-browser-integration-host.mo +share/locale/hu/LC_MESSAGES/plasma-browser-integration-reminder.mo +share/locale/ia/LC_MESSAGES/plasma-browser-integration-host.mo +share/locale/ia/LC_MESSAGES/plasma-browser-integration-reminder.mo +share/locale/id/LC_MESSAGES/plasma-browser-integration-host.mo +share/locale/id/LC_MESSAGES/plasma-browser-integration-reminder.mo +share/locale/is/LC_MESSAGES/plasma-browser-integration-host.mo +share/locale/is/LC_MESSAGES/plasma-browser-integration-reminder.mo +share/locale/it/LC_MESSAGES/plasma-browser-integration-host.mo +share/locale/it/LC_MESSAGES/plasma-browser-integration-reminder.mo +share/locale/ja/LC_MESSAGES/plasma-browser-integration-host.mo +share/locale/ja/LC_MESSAGES/plasma-browser-integration-reminder.mo +share/locale/ka/LC_MESSAGES/plasma-browser-integration-host.mo +share/locale/ka/LC_MESSAGES/plasma-browser-integration-reminder.mo +share/locale/ko/LC_MESSAGES/plasma-browser-integration-host.mo +share/locale/ko/LC_MESSAGES/plasma-browser-integration-reminder.mo +share/locale/lt/LC_MESSAGES/plasma-browser-integration-host.mo +share/locale/lt/LC_MESSAGES/plasma-browser-integration-reminder.mo +share/locale/ml/LC_MESSAGES/plasma-browser-integration-host.mo +share/locale/ml/LC_MESSAGES/plasma-browser-integration-reminder.mo +share/locale/nl/LC_MESSAGES/plasma-browser-integration-host.mo +share/locale/nl/LC_MESSAGES/plasma-browser-integration-reminder.mo +share/locale/nn/LC_MESSAGES/plasma-browser-integration-host.mo +share/locale/nn/LC_MESSAGES/plasma-browser-integration-reminder.mo +share/locale/pa/LC_MESSAGES/plasma-browser-integration-reminder.mo +share/locale/pl/LC_MESSAGES/plasma-browser-integration-host.mo +share/locale/pl/LC_MESSAGES/plasma-browser-integration-reminder.mo +share/locale/pt/LC_MESSAGES/plasma-browser-integration-host.mo +share/locale/pt/LC_MESSAGES/plasma-browser-integration-reminder.mo +share/locale/pt_BR/LC_MESSAGES/plasma-browser-integration-host.mo +share/locale/pt_BR/LC_MESSAGES/plasma-browser-integration-reminder.mo +share/locale/ro/LC_MESSAGES/plasma-browser-integration-host.mo +share/locale/ro/LC_MESSAGES/plasma-browser-integration-reminder.mo +share/locale/ru/LC_MESSAGES/plasma-browser-integration-host.mo +share/locale/ru/LC_MESSAGES/plasma-browser-integration-reminder.mo +share/locale/sk/LC_MESSAGES/plasma-browser-integration-host.mo +share/locale/sk/LC_MESSAGES/plasma-browser-integration-reminder.mo +share/locale/sl/LC_MESSAGES/plasma-browser-integration-host.mo +share/locale/sl/LC_MESSAGES/plasma-browser-integration-reminder.mo +share/locale/sv/LC_MESSAGES/plasma-browser-integration-host.mo +share/locale/sv/LC_MESSAGES/plasma-browser-integration-reminder.mo +share/locale/ta/LC_MESSAGES/plasma-browser-integration-host.mo +share/locale/ta/LC_MESSAGES/plasma-browser-integration-reminder.mo +share/locale/tg/LC_MESSAGES/plasma-browser-integration-reminder.mo +share/locale/tr/LC_MESSAGES/plasma-browser-integration-host.mo +share/locale/tr/LC_MESSAGES/plasma-browser-integration-reminder.mo +share/locale/uk/LC_MESSAGES/plasma-browser-integration-host.mo +share/locale/uk/LC_MESSAGES/plasma-browser-integration-reminder.mo +share/locale/zh_CN/LC_MESSAGES/plasma-browser-integration-host.mo +share/locale/zh_CN/LC_MESSAGES/plasma-browser-integration-reminder.mo +share/locale/zh_TW/LC_MESSAGES/plasma-browser-integration-host.mo +share/locale/zh_TW/LC_MESSAGES/plasma-browser-integration-reminder.mo diff --git a/x11-themes/Makefile b/x11-themes/Makefile index 62147ed24d50..557d4132d99e 100644 --- a/x11-themes/Makefile +++ b/x11-themes/Makefile @@ -1,181 +1,187 @@ COMMENT = X11 themes SUBDIR += Kvantum SUBDIR += adapta-backgrounds SUBDIR += adapta-gtk-theme SUBDIR += adwaita-icon-theme SUBDIR += adwaita-qt5 SUBDIR += adwaita-qt6 SUBDIR += ant-dracula-theme SUBDIR += arc-gruvbox-theme SUBDIR += audacious-skins SUBDIR += budgie-backgrounds SUBDIR += canta-gtk-themes SUBDIR += canta-icon-theme SUBDIR += chicago95 SUBDIR += classiclooks 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-jimmac-theme SUBDIR += cursor-neutral-white-theme SUBDIR += e16-themes SUBDIR += emerald-themes SUBDIR += flat-remix-gtk-themes SUBDIR += flat-remix-icon-themes SUBDIR += flatery-icon-themes SUBDIR += fluxbox-tenr-styles-pack SUBDIR += freebsd-8k-wallpapers SUBDIR += freebsd-8k-wallpapers-kde 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-elementary SUBDIR += gnome-icons-faenza SUBDIR += gnome-icons-gartoon-redux SUBDIR += gnome-icons-gentoo-test SUBDIR += gnome-icons-iris SUBDIR += gnome-icons-lila SUBDIR += gnome-icons-luv 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-extra 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-digital-cream-theme SUBDIR += gtk-digital-harmony-theme SUBDIR += gtk-engines2 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-murrine-engine SUBDIR += gtk-nodoka-engine SUBDIR += gtk-oxygen-engine SUBDIR += gtk-xfce-engine SUBDIR += gtk3-oxygen-engine SUBDIR += gtk3-unico-engine SUBDIR += icewm-extra-themes SUBDIR += icon-naming-utils SUBDIR += icons-human-azul SUBDIR += icons-tango SUBDIR += icons-tango-extras SUBDIR += irssi-themes 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-lime-rade8 SUBDIR += kde-icons-lush SUBDIR += kde-icons-noia SUBDIR += kde-icons-nuovext2 SUBDIR += kde-icons-nuvola SUBDIR += kf5-breeze-icons SUBDIR += kf5-kemoticons SUBDIR += kf5-kiconthemes SUBDIR += kf5-oxygen-icons5 SUBDIR += kf5-qqc2-desktop-style SUBDIR += kf6-breeze-icons SUBDIR += kf6-kcolorscheme SUBDIR += kf6-kiconthemes SUBDIR += kf6-qqc2-desktop-style SUBDIR += la-capitaine-icon-theme SUBDIR += layan-gtk-themes SUBDIR += lumina-themes SUBDIR += lxappearance SUBDIR += lxde-icon-theme SUBDIR += lxqt-themes SUBDIR += matcha-gtk-themes SUBDIR += mate-backgrounds SUBDIR += mate-icon-theme SUBDIR += mate-icon-theme-faenza SUBDIR += mate-themes SUBDIR += materia-gtk-theme 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 += mojave-gtk-themes SUBDIR += nordic-theme SUBDIR += numix-gtk-theme SUBDIR += numix-icon-theme SUBDIR += numix-icon-theme-circle SUBDIR += openbox-arc-theme SUBDIR += papirus-icon-theme SUBDIR += plasma5-breeze SUBDIR += plasma5-breeze-gtk SUBDIR += plasma5-kde-gtk-config SUBDIR += plasma5-oxygen SUBDIR += plasma5-plasma-workspace-wallpapers + SUBDIR += plasma6-breeze + SUBDIR += plasma6-breeze-gtk + SUBDIR += plasma6-kde-gtk-config + SUBDIR += plasma6-oxygen + SUBDIR += plasma6-plasma-workspace-wallpapers + SUBDIR += plasma6-qqc2-breeze-style SUBDIR += plata-theme SUBDIR += pop-gtk-themes SUBDIR += pop-icon-theme SUBDIR += qgnomeplatform SUBDIR += qogir-gtk-themes SUBDIR += qogir-icon-themes SUBDIR += qt5-style-plugins SUBDIR += qtcurve SUBDIR += qtcurve-gtk2 SUBDIR += qtcurve-kf5 SUBDIR += qtcurve-qt5 SUBDIR += qtcurve-utils SUBDIR += sawfish-themes SUBDIR += sddm-freebsd-black-theme SUBDIR += sierra-gtk-themes SUBDIR += skeuos-gtk-themes SUBDIR += slim-freebsd-black-theme SUBDIR += slim-freebsd-dark-theme SUBDIR += slim-freebsd-themes SUBDIR += slim-themes SUBDIR += tela-icon-theme SUBDIR += thewidgetfactory SUBDIR += wallpapers-freebsd-kde SUBDIR += win98se-icon-theme SUBDIR += wpgtk SUBDIR += xcursor-themes SUBDIR += xfce-icons-elementary SUBDIR += yaru-gtk-themes SUBDIR += yaru-icon-theme SUBDIR += zorin-gtk-themes SUBDIR += zorin-icon-themes SUBDIR += zuki-themes .include diff --git a/x11-themes/plasma6-breeze-gtk/Makefile b/x11-themes/plasma6-breeze-gtk/Makefile new file mode 100644 index 000000000000..a82fb429a9e9 --- /dev/null +++ b/x11-themes/plasma6-breeze-gtk/Makefile @@ -0,0 +1,23 @@ +PORTNAME= breeze-gtk +DISTVERSION= ${KDE_PLASMA_VERSION} +CATEGORIES= x11-themes kde kde-plasma + +MAINTAINER= kde@FreeBSD.org +COMMENT= Breeze widget theme for GTK 2 and 3 + +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}cairo>0:graphics/py-cairo@${PY_FLAVOR} \ + sassc:textproc/sassc +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}cairo>0:graphics/py-cairo@${PY_FLAVOR} + +USES= cmake kde:6 python qt:6 tar:xz +USE_KDE= breeze \ + ecm:build +USE_QT= base + +CMAKE_ARGS= -DPython3_EXECUTABLE:PATH=${PYTHON_CMD} \ + -DQT_MAJOR_VERSION=6 + +BINARY_ALIAS= python3=${PYTHON_CMD} +NO_ARCH= yes + +.include diff --git a/x11-themes/plasma6-breeze-gtk/distinfo b/x11-themes/plasma6-breeze-gtk/distinfo new file mode 100644 index 000000000000..562f48d71569 --- /dev/null +++ b/x11-themes/plasma6-breeze-gtk/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1701525137 +SHA256 (KDE/plasma/5.90.0/breeze-gtk-5.90.0.tar.xz) = f4f5228a413b64619c87925a3cda6b77f6e8d18ffbbc607618d507364abb00ae +SIZE (KDE/plasma/5.90.0/breeze-gtk-5.90.0.tar.xz) = 40716 diff --git a/x11-themes/plasma6-breeze-gtk/pkg-plist b/x11-themes/plasma6-breeze-gtk/pkg-plist new file mode 100644 index 000000000000..3d64a2f3d818 --- /dev/null +++ b/x11-themes/plasma6-breeze-gtk/pkg-plist @@ -0,0 +1,564 @@ +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/breeze-check-checked-symbolic.svg +share/themes/Breeze-Dark/breeze-check-indeterminate-symbolic.svg +share/themes/Breeze-Dark/breeze-check-unchecked-symbolic.svg +share/themes/Breeze-Dark/breeze-close-active-symbolic.svg +share/themes/Breeze-Dark/breeze-close-hover-symbolic.svg +share/themes/Breeze-Dark/breeze-close-symbolic.svg +share/themes/Breeze-Dark/breeze-maximize-active-symbolic.svg +share/themes/Breeze-Dark/breeze-maximize-hover-symbolic.svg +share/themes/Breeze-Dark/breeze-maximize-symbolic.svg +share/themes/Breeze-Dark/breeze-maximized-active-symbolic.svg +share/themes/Breeze-Dark/breeze-maximized-hover-symbolic.svg +share/themes/Breeze-Dark/breeze-maximized-symbolic.svg +share/themes/Breeze-Dark/breeze-minimize-active-symbolic.svg +share/themes/Breeze-Dark/breeze-minimize-hover-symbolic.svg +share/themes/Breeze-Dark/breeze-minimize-symbolic.svg +share/themes/Breeze-Dark/breeze-radio-checked-symbolic.svg +share/themes/Breeze-Dark/breeze-radio-indeterminate-symbolic.svg +share/themes/Breeze-Dark/breeze-radio-unchecked-symbolic.svg +share/themes/Breeze-Dark/bullet-symbolic.svg +share/themes/Breeze-Dark/checkmark-symbolic.svg +share/themes/Breeze-Dark/dash-symbolic.svg +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.0/gtk.css +share/themes/Breeze-Dark/gtk-4.0/gtk.css +share/themes/Breeze-Dark/settings.ini +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/breeze-check-checked-symbolic.svg +share/themes/Breeze/breeze-check-indeterminate-symbolic.svg +share/themes/Breeze/breeze-check-unchecked-symbolic.svg +share/themes/Breeze/breeze-close-active-symbolic.svg +share/themes/Breeze/breeze-close-hover-symbolic.svg +share/themes/Breeze/breeze-close-symbolic.svg +share/themes/Breeze/breeze-maximize-active-symbolic.svg +share/themes/Breeze/breeze-maximize-hover-symbolic.svg +share/themes/Breeze/breeze-maximize-symbolic.svg +share/themes/Breeze/breeze-maximized-active-symbolic.svg +share/themes/Breeze/breeze-maximized-hover-symbolic.svg +share/themes/Breeze/breeze-maximized-symbolic.svg +share/themes/Breeze/breeze-minimize-active-symbolic.svg +share/themes/Breeze/breeze-minimize-hover-symbolic.svg +share/themes/Breeze/breeze-minimize-symbolic.svg +share/themes/Breeze/breeze-radio-checked-symbolic.svg +share/themes/Breeze/breeze-radio-indeterminate-symbolic.svg +share/themes/Breeze/breeze-radio-unchecked-symbolic.svg +share/themes/Breeze/bullet-symbolic.svg +share/themes/Breeze/checkmark-symbolic.svg +share/themes/Breeze/dash-symbolic.svg +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.0/gtk-dark.css +share/themes/Breeze/gtk-3.0/gtk.css +share/themes/Breeze/gtk-4.0/gtk-dark.css +share/themes/Breeze/gtk-4.0/gtk.css +share/themes/Breeze/settings.ini diff --git a/x11-themes/plasma6-breeze/Makefile b/x11-themes/plasma6-breeze/Makefile new file mode 100644 index 000000000000..70ca7f69b266 --- /dev/null +++ b/x11-themes/plasma6-breeze/Makefile @@ -0,0 +1,21 @@ +PORTNAME= breeze +DISTVERSION= ${KDE_PLASMA_VERSION} +CATEGORIES= x11-themes kde kde-plasma + +MAINTAINER= kde@FreeBSD.org +COMMENT= Artwork, styles and assets for the Breeze visual style for the Plasma Desktop + +USES= cmake gettext gl kde:6 qt:6 tar:xz xorg +USE_GL= gl opengl +USE_KDE= colorscheme config configwidgets coreaddons decoration \ + guiaddons i18n iconthemes kcmutils kirigami2 widgetsaddons \ + windowsystem \ + ecm:build +USE_QT= base +USE_XORG= x11 + +CMAKE_OFF= BUILD_QT5 +CMAKE_ON= BUILD_QT6 +CMAKE_ARGS= -DQT_MAJOR_VERSION=6 + +.include diff --git a/x11-themes/plasma6-breeze/distinfo b/x11-themes/plasma6-breeze/distinfo new file mode 100644 index 000000000000..9265c4da6c12 --- /dev/null +++ b/x11-themes/plasma6-breeze/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1701525137 +SHA256 (KDE/plasma/5.90.0/breeze-5.90.0.tar.xz) = 4cb72caf869687f841f86a652885ba21fd5db9c0c5e08accc98531457d0117a1 +SIZE (KDE/plasma/5.90.0/breeze-5.90.0.tar.xz) = 86955124 diff --git a/x11-themes/plasma6-breeze/pkg-plist b/x11-themes/plasma6-breeze/pkg-plist new file mode 100644 index 000000000000..8c4caccfd338 --- /dev/null +++ b/x11-themes/plasma6-breeze/pkg-plist @@ -0,0 +1,401 @@ +bin/breeze-settings6 +lib/cmake/Breeze/BreezeConfig.cmake +lib/cmake/Breeze/BreezeConfigVersion.cmake +lib/kconf_update_bin/breezehighcontrasttobreezedark +lib/kconf_update_bin/breezetobreezeclassic +lib/kconf_update_bin/breezetobreezelight +%%QT_PLUGINDIR%%/kstyle_config/breezestyleconfig.so +%%QT_PLUGINDIR%%/org.kde.kdecoration2.kcm/kcm_breezedecoration.so +%%QT_PLUGINDIR%%/org.kde.kdecoration2/org.kde.breeze.so +%%QT_PLUGINDIR%%/styles/breeze6.so +share/QtCurve/Breeze.qtcurve +share/applications/breezestyleconfig.desktop +share/applications/kcm_breezedecoration.desktop +share/color-schemes/BreezeClassic.colors +share/color-schemes/BreezeDark.colors +share/color-schemes/BreezeLight.colors +share/icons/Breeze_Light/cursors/00000000000000020006000e7e9ffc3f +share/icons/Breeze_Light/cursors/00008160000006810000408080010102 +share/icons/Breeze_Light/cursors/03b6e0fcb3499374a867c041f52298f0 +share/icons/Breeze_Light/cursors/08e8e1c95fe2fc01f976f1e063a24ccd +share/icons/Breeze_Light/cursors/1081e37283d90000800003c07f3ef6bf +share/icons/Breeze_Light/cursors/3085a0e285430894940527032f8b26df +share/icons/Breeze_Light/cursors/3ecb610c1bf2410f44200f48c40d3599 +share/icons/Breeze_Light/cursors/4498f0e0c1937ffe01fd06f973665830 +share/icons/Breeze_Light/cursors/5c6cd98b3f3ebcb1f9c7f1c204630408 +share/icons/Breeze_Light/cursors/6407b0e94181790501fd1e167b474872 +share/icons/Breeze_Light/cursors/640fb0e74195791501fd1ed57b41487f +share/icons/Breeze_Light/cursors/9081237383d90e509aa00f00170e968f +share/icons/Breeze_Light/cursors/9d800788f1b08800ae810202380a0822 +share/icons/Breeze_Light/cursors/a2a266d0498c3104214a47bd64ab0fc8 +share/icons/Breeze_Light/cursors/alias +share/icons/Breeze_Light/cursors/all-scroll +share/icons/Breeze_Light/cursors/b66166c04f8c3109214a4fbd64a50fc8 +share/icons/Breeze_Light/cursors/bottom_left_corner +share/icons/Breeze_Light/cursors/bottom_right_corner +share/icons/Breeze_Light/cursors/bottom_side +share/icons/Breeze_Light/cursors/cell +share/icons/Breeze_Light/cursors/center_ptr +share/icons/Breeze_Light/cursors/circle +share/icons/Breeze_Light/cursors/closedhand +share/icons/Breeze_Light/cursors/col-resize +share/icons/Breeze_Light/cursors/color-picker +share/icons/Breeze_Light/cursors/context-menu +share/icons/Breeze_Light/cursors/copy +share/icons/Breeze_Light/cursors/cross +share/icons/Breeze_Light/cursors/crossed_circle +share/icons/Breeze_Light/cursors/crosshair +share/icons/Breeze_Light/cursors/d9ce0ab605698f320427677b458ad60b +share/icons/Breeze_Light/cursors/default +share/icons/Breeze_Light/cursors/dnd-copy +share/icons/Breeze_Light/cursors/dnd-move +share/icons/Breeze_Light/cursors/dnd-no-drop +share/icons/Breeze_Light/cursors/dnd-none +share/icons/Breeze_Light/cursors/down-arrow +share/icons/Breeze_Light/cursors/draft +share/icons/Breeze_Light/cursors/e-resize +share/icons/Breeze_Light/cursors/e29285e634086352946a0e7090d73106 +share/icons/Breeze_Light/cursors/ew-resize +share/icons/Breeze_Light/cursors/fcf21c00b30f7e3f83fe0dfd12e71cff +share/icons/Breeze_Light/cursors/fleur +share/icons/Breeze_Light/cursors/forbidden +share/icons/Breeze_Light/cursors/grab +share/icons/Breeze_Light/cursors/grabbing +share/icons/Breeze_Light/cursors/h_double_arrow +share/icons/Breeze_Light/cursors/half-busy +share/icons/Breeze_Light/cursors/hand1 +share/icons/Breeze_Light/cursors/hand2 +share/icons/Breeze_Light/cursors/help +share/icons/Breeze_Light/cursors/ibeam +share/icons/Breeze_Light/cursors/left-arrow +share/icons/Breeze_Light/cursors/left_ptr +share/icons/Breeze_Light/cursors/left_ptr_help +share/icons/Breeze_Light/cursors/left_ptr_watch +share/icons/Breeze_Light/cursors/left_side +share/icons/Breeze_Light/cursors/link +share/icons/Breeze_Light/cursors/move +share/icons/Breeze_Light/cursors/n-resize +share/icons/Breeze_Light/cursors/ne-resize +share/icons/Breeze_Light/cursors/nesw-resize +share/icons/Breeze_Light/cursors/no-drop +share/icons/Breeze_Light/cursors/not-allowed +share/icons/Breeze_Light/cursors/ns-resize +share/icons/Breeze_Light/cursors/nw-resize +share/icons/Breeze_Light/cursors/nwse-resize +share/icons/Breeze_Light/cursors/openhand +share/icons/Breeze_Light/cursors/pencil +share/icons/Breeze_Light/cursors/pirate +share/icons/Breeze_Light/cursors/plus +share/icons/Breeze_Light/cursors/pointer +share/icons/Breeze_Light/cursors/pointing_hand +share/icons/Breeze_Light/cursors/progress +share/icons/Breeze_Light/cursors/question_arrow +share/icons/Breeze_Light/cursors/right-arrow +share/icons/Breeze_Light/cursors/right_ptr +share/icons/Breeze_Light/cursors/right_side +share/icons/Breeze_Light/cursors/row-resize +share/icons/Breeze_Light/cursors/s-resize +share/icons/Breeze_Light/cursors/sb_h_double_arrow +share/icons/Breeze_Light/cursors/sb_v_double_arrow +share/icons/Breeze_Light/cursors/se-resize +share/icons/Breeze_Light/cursors/size-bdiag +share/icons/Breeze_Light/cursors/size-fdiag +share/icons/Breeze_Light/cursors/size-hor +share/icons/Breeze_Light/cursors/size-ver +share/icons/Breeze_Light/cursors/size_all +share/icons/Breeze_Light/cursors/size_bdiag +share/icons/Breeze_Light/cursors/size_fdiag +share/icons/Breeze_Light/cursors/size_hor +share/icons/Breeze_Light/cursors/size_ver +share/icons/Breeze_Light/cursors/split_h +share/icons/Breeze_Light/cursors/split_v +share/icons/Breeze_Light/cursors/sw-resize +share/icons/Breeze_Light/cursors/tcross +share/icons/Breeze_Light/cursors/text +share/icons/Breeze_Light/cursors/top_left_arrow +share/icons/Breeze_Light/cursors/top_left_corner +share/icons/Breeze_Light/cursors/top_right_corner +share/icons/Breeze_Light/cursors/top_side +share/icons/Breeze_Light/cursors/up-arrow +share/icons/Breeze_Light/cursors/v_double_arrow +share/icons/Breeze_Light/cursors/vertical-text +share/icons/Breeze_Light/cursors/w-resize +share/icons/Breeze_Light/cursors/wait +share/icons/Breeze_Light/cursors/watch +share/icons/Breeze_Light/cursors/wayland-cursor +share/icons/Breeze_Light/cursors/whats_this +share/icons/Breeze_Light/cursors/x-cursor +share/icons/Breeze_Light/cursors/xterm +share/icons/Breeze_Light/cursors/zoom-in +share/icons/Breeze_Light/cursors/zoom-out +share/icons/Breeze_Light/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/arrow +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/ew-resize +share/icons/breeze_cursors/cursors/fcf21c00b30f7e3f83fe0dfd12e71cff +share/icons/breeze_cursors/cursors/fleur +share/icons/breeze_cursors/cursors/forbidden +share/icons/breeze_cursors/cursors/grab +share/icons/breeze_cursors/cursors/grabbing +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/ne-resize +share/icons/breeze_cursors/cursors/nesw-resize +share/icons/breeze_cursors/cursors/no-drop +share/icons/breeze_cursors/cursors/not-allowed +share/icons/breeze_cursors/cursors/ns-resize +share/icons/breeze_cursors/cursors/nw-resize +share/icons/breeze_cursors/cursors/nwse-resize +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/se-resize +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/sw-resize +share/icons/breeze_cursors/cursors/tcross +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/breezehighcontrasttobreezedark.upd +share/kconf_update/breezetobreezeclassic.upd +share/kconf_update/breezetobreezelight.upd +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/az/LC_MESSAGES/breeze_kwin_deco.mo +share/locale/az/LC_MESSAGES/breeze_style_config.mo +share/locale/bg/LC_MESSAGES/breeze_kwin_deco.mo +share/locale/bg/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/eo/LC_MESSAGES/breeze_kwin_deco.mo +share/locale/eo/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/hi/LC_MESSAGES/breeze_kwin_deco.mo +share/locale/hi/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_kwin_deco.mo +share/locale/id/LC_MESSAGES/breeze_style_config.mo +share/locale/is/LC_MESSAGES/breeze_kwin_deco.mo +share/locale/is/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/ka/LC_MESSAGES/breeze_kwin_deco.mo +share/locale/ka/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/ml/LC_MESSAGES/breeze_kwin_deco.mo +share/locale/ml/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/ta/LC_MESSAGES/breeze_kwin_deco.mo +share/locale/ta/LC_MESSAGES/breeze_style_config.mo +share/locale/tg/LC_MESSAGES/breeze_kwin_deco.mo +share/locale/tg/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/wallpapers/Next/contents/images/1024x768.png +share/wallpapers/Next/contents/images/1080x1920.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/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/360x720.png +share/wallpapers/Next/contents/images/3840x2160.png +share/wallpapers/Next/contents/images/440x247.png +share/wallpapers/Next/contents/images/5120x2880.png +share/wallpapers/Next/contents/images/720x1440.png +share/wallpapers/Next/contents/images_dark/1024x768.png +share/wallpapers/Next/contents/images_dark/1080x1920.png +share/wallpapers/Next/contents/images_dark/1280x1024.png +share/wallpapers/Next/contents/images_dark/1280x800.png +share/wallpapers/Next/contents/images_dark/1366x768.png +share/wallpapers/Next/contents/images_dark/1440x900.png +share/wallpapers/Next/contents/images_dark/1600x1200.png +share/wallpapers/Next/contents/images_dark/1680x1050.png +share/wallpapers/Next/contents/images_dark/1920x1080.png +share/wallpapers/Next/contents/images_dark/1920x1200.png +share/wallpapers/Next/contents/images_dark/2560x1440.png +share/wallpapers/Next/contents/images_dark/2560x1600.png +share/wallpapers/Next/contents/images_dark/3200x1800.png +share/wallpapers/Next/contents/images_dark/3200x2000.png +share/wallpapers/Next/contents/images_dark/360x720.png +share/wallpapers/Next/contents/images_dark/3840x2160.png +share/wallpapers/Next/contents/images_dark/440x247.png +share/wallpapers/Next/contents/images_dark/5120x2880.png +share/wallpapers/Next/contents/images_dark/720x1440.png +share/wallpapers/Next/contents/screenshot.png +share/wallpapers/Next/metadata.json diff --git a/x11-themes/plasma6-kde-gtk-config/Makefile b/x11-themes/plasma6-kde-gtk-config/Makefile new file mode 100644 index 000000000000..4b57b595ccd1 --- /dev/null +++ b/x11-themes/plasma6-kde-gtk-config/Makefile @@ -0,0 +1,19 @@ +PORTNAME= kde-gtk-config +DISTVERSION= ${KDE_PLASMA_VERSION} +CATEGORIES= x11-themes kde kde-plasma + +MAINTAINER= kde@FreeBSD.org +COMMENT= Syncs KDE settings to GTK applications + +BUILD_DEPENDS= gsettings-desktop-schemas>=0:devel/gsettings-desktop-schemas \ + sassc:textproc/sassc +RUN_DEPENDS= gsettings-desktop-schemas>=0:devel/gsettings-desktop-schemas + +USES= cmake gnome kde:6 pkgconfig qt:6 tar:xz +USE_GNOME= cairo gdkpixbuf2 glib20 gtk20 gtk30 +USE_KDE= config configwidgets coreaddons dbusaddons decoration \ + guiaddons widgetsaddons windowsystem \ + ecm:build +USE_QT= base svg + +.include diff --git a/x11-themes/plasma6-kde-gtk-config/distinfo b/x11-themes/plasma6-kde-gtk-config/distinfo new file mode 100644 index 000000000000..cbeba3cd96da --- /dev/null +++ b/x11-themes/plasma6-kde-gtk-config/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1701525138 +SHA256 (KDE/plasma/5.90.0/kde-gtk-config-5.90.0.tar.xz) = bc23e237b03a3ec150d304ba0fba4a3efc72dffbca29b86af74c8b024bb4db47 +SIZE (KDE/plasma/5.90.0/kde-gtk-config-5.90.0.tar.xz) = 78016 diff --git a/x11-themes/plasma6-kde-gtk-config/pkg-plist b/x11-themes/plasma6-kde-gtk-config/pkg-plist new file mode 100644 index 000000000000..bf2b0184db14 --- /dev/null +++ b/x11-themes/plasma6-kde-gtk-config/pkg-plist @@ -0,0 +1,10 @@ +lib/gtk-3.0/modules/libcolorreload-gtk-module.so +lib/gtk-3.0/modules/libwindow-decorations-gtk-module.so +lib/kconf_update_bin/gtk_theme +lib/kconf_update_bin/remove_deprecated_gtk4_option +lib/libexec/gtk3_preview +%%QT_PLUGINDIR%%/kf6/kded/gtkconfig.so +share/kcm-gtk-module/preview.ui +share/kconf_update/gtkconfig.upd +share/kconf_update/remove_window_decorations_from_gtk_css.sh +share/themes/Breeze/window_decorations.css diff --git a/x11-themes/plasma6-oxygen/Makefile b/x11-themes/plasma6-oxygen/Makefile new file mode 100644 index 000000000000..709ee377f697 --- /dev/null +++ b/x11-themes/plasma6-oxygen/Makefile @@ -0,0 +1,23 @@ +PORTNAME= oxygen +DISTVERSION= ${KDE_PLASMA_VERSION} +CATEGORIES= x11-themes kde kde-plasma + +MAINTAINER= kde@FreeBSD.org +COMMENT= Oxygen Style for Qt/KDE Applications + +LIB_DEPENDS= libxkbcommon.so:x11/libxkbcommon + +USES= cmake gettext gl kde:6 qt:6 tar:xz xorg +USE_GL= gl opengl +USE_KDE= colorscheme completion config configwidgets coreaddons \ + decoration frameworkintegration guiaddons i18n iconthemes \ + kcmutils service widgetsaddons windowsystem \ + ecm:build +USE_QT= base declarative +USE_XORG= x11 xcb + +CMAKE_ARGS= -DQT_MAJOR_VERSION=6 +CMAKE_ON= BUILD_QT6 +CMAKE_OFF= BUILD_QT5 + +.include diff --git a/x11-themes/plasma6-oxygen/distinfo b/x11-themes/plasma6-oxygen/distinfo new file mode 100644 index 000000000000..5a15a9c64707 --- /dev/null +++ b/x11-themes/plasma6-oxygen/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1701525139 +SHA256 (KDE/plasma/5.90.0/oxygen-5.90.0.tar.xz) = fde31aa07f76385bd41d1c428de2b98322222352c84e4cf9dae54f4aaeea8ee8 +SIZE (KDE/plasma/5.90.0/oxygen-5.90.0.tar.xz) = 2787160 diff --git a/x11-themes/plasma6-oxygen/pkg-plist b/x11-themes/plasma6-oxygen/pkg-plist new file mode 100644 index 000000000000..eb351bec0419 --- /dev/null +++ b/x11-themes/plasma6-oxygen/pkg-plist @@ -0,0 +1,785 @@ +bin/oxygen-demo6 +bin/oxygen-settings6 +lib/liboxygenstyle6.so.%%KDE_PLASMA_VERSION%% +lib/liboxygenstyle6.so.6 +lib/liboxygenstyleconfig6.so.%%KDE_PLASMA_VERSION%% +lib/liboxygenstyleconfig6.so.6 +%%QT_PLUGINDIR%%/kstyle_config/kstyle_oxygen_config.so +%%QT_PLUGINDIR%%/org.kde.kdecoration2.kcm/kcm_oxygendecoration.so +%%QT_PLUGINDIR%%/org.kde.kdecoration2/org.kde.oxygen.so +%%QT_PLUGINDIR%%/styles/oxygen6.so +share/applications/kcm_oxygendecoration.desktop +share/color-schemes/Oxygen.colors +share/color-schemes/OxygenCold.colors +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/ne-resize +share/icons/KDE_Classic/cursors/nesw-resize +share/icons/KDE_Classic/cursors/not-allowed +share/icons/KDE_Classic/cursors/nw-resize +share/icons/KDE_Classic/cursors/nwse-resize +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/se-resize +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/sw-resize +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/ne-resize +share/icons/Oxygen_Black/cursors/nesw-resize +share/icons/Oxygen_Black/cursors/not-allowed +share/icons/Oxygen_Black/cursors/nw-resize +share/icons/Oxygen_Black/cursors/nwse-resize +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/se-resize +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/sw-resize +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/ne-resize +share/icons/Oxygen_Blue/cursors/nesw-resize +share/icons/Oxygen_Blue/cursors/not-allowed +share/icons/Oxygen_Blue/cursors/nw-resize +share/icons/Oxygen_Blue/cursors/nwse-resize +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/se-resize +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/sw-resize +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/ne-resize +share/icons/Oxygen_White/cursors/nesw-resize +share/icons/Oxygen_White/cursors/not-allowed +share/icons/Oxygen_White/cursors/nw-resize +share/icons/Oxygen_White/cursors/nwse-resize +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/se-resize +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/sw-resize +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/ne-resize +share/icons/Oxygen_Yellow/cursors/nesw-resize +share/icons/Oxygen_Yellow/cursors/not-allowed +share/icons/Oxygen_Yellow/cursors/nw-resize +share/icons/Oxygen_Yellow/cursors/nwse-resize +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/se-resize +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/sw-resize +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/ne-resize +share/icons/Oxygen_Zion/cursors/nesw-resize +share/icons/Oxygen_Zion/cursors/not-allowed +share/icons/Oxygen_Zion/cursors/nw-resize +share/icons/Oxygen_Zion/cursors/nwse-resize +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/se-resize +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/sw-resize +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/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/az/LC_MESSAGES/liboxygenstyleconfig.mo +share/locale/az/LC_MESSAGES/oxygen_kdecoration.mo +share/locale/az/LC_MESSAGES/oxygen_style_config.mo +share/locale/az/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/liboxygenstyleconfig.mo +share/locale/bg/LC_MESSAGES/oxygen_kdecoration.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/liboxygenstyleconfig.mo +share/locale/eo/LC_MESSAGES/oxygen_kdecoration.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/liboxygenstyleconfig.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/liboxygenstyleconfig.mo +share/locale/id/LC_MESSAGES/oxygen_kdecoration.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/ka/LC_MESSAGES/liboxygenstyleconfig.mo +share/locale/ka/LC_MESSAGES/oxygen_kdecoration.mo +share/locale/ka/LC_MESSAGES/oxygen_style_config.mo +share/locale/ka/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/liboxygenstyleconfig.mo +share/locale/ml/LC_MESSAGES/oxygen_kdecoration.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.json diff --git a/x11-themes/plasma6-plasma-workspace-wallpapers/Makefile b/x11-themes/plasma6-plasma-workspace-wallpapers/Makefile new file mode 100644 index 000000000000..04870fc7e3d5 --- /dev/null +++ b/x11-themes/plasma6-plasma-workspace-wallpapers/Makefile @@ -0,0 +1,13 @@ +PORTNAME= plasma-workspace-wallpapers +DISTVERSION= ${KDE_PLASMA_VERSION} +CATEGORIES= x11-themes kde kde-plasma + +MAINTAINER= kde@FreeBSD.org +COMMENT= Wallpapers for Plasma Workspaces + +USES= cmake kde:6 qt:6 tar:xz +USE_KDE= ecm:build +USE_QT= base declarative +CMAKE_ARGS= -DQT_MAJOR_VERSION=6 + +.include diff --git a/x11-themes/plasma6-plasma-workspace-wallpapers/distinfo b/x11-themes/plasma6-plasma-workspace-wallpapers/distinfo new file mode 100644 index 000000000000..8ae53c64bdc3 --- /dev/null +++ b/x11-themes/plasma6-plasma-workspace-wallpapers/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1701525078 +SHA256 (KDE/plasma/5.90.0/plasma-workspace-wallpapers-5.90.0.tar.xz) = f9e84884f898dc8dbf3f027a969344e368b4fc64f1b563136d44b2b6c53750f0 +SIZE (KDE/plasma/5.90.0/plasma-workspace-wallpapers-5.90.0.tar.xz) = 94032644 diff --git a/x11-themes/plasma6-plasma-workspace-wallpapers/pkg-plist b/x11-themes/plasma6-plasma-workspace-wallpapers/pkg-plist new file mode 100644 index 000000000000..1dda84665e21 --- /dev/null +++ b/x11-themes/plasma6-plasma-workspace-wallpapers/pkg-plist @@ -0,0 +1,245 @@ +share/wallpapers/Altai/contents/images/1080x1920.png +share/wallpapers/Altai/contents/images/5120x2880.png +share/wallpapers/Altai/contents/screenshot.png +share/wallpapers/Altai/metadata.json +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.json +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.json +share/wallpapers/Canopee/contents/images/3840x2160.png +share/wallpapers/Canopee/contents/screenshot.png +share/wallpapers/Canopee/metadata.json +share/wallpapers/Cascade/contents/images/3840x2160.png +share/wallpapers/Cascade/contents/screenshot.png +share/wallpapers/Cascade/metadata.json +share/wallpapers/Cluster/contents/images/3840x2160.png +share/wallpapers/Cluster/contents/screenshot.png +share/wallpapers/Cluster/metadata.json +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.json +share/wallpapers/ColorfulCups/contents/images/2560x1600.jpg +share/wallpapers/ColorfulCups/contents/screenshot.jpg +share/wallpapers/ColorfulCups/metadata.json +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.json +share/wallpapers/Elarun/contents/images/2560x1600.png +share/wallpapers/Elarun/contents/screenshot.jpg +share/wallpapers/Elarun/metadata.json +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.json +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.json +share/wallpapers/Flow/contents/images/5120x2880.jpg +share/wallpapers/Flow/contents/images/720x1440.jpg +share/wallpapers/Flow/contents/images_dark/5120x2880.jpg +share/wallpapers/Flow/contents/images_dark/720x1440.jpg +share/wallpapers/Flow/contents/screenshot.png +share/wallpapers/Flow/metadata.json +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.json +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.json +share/wallpapers/Honeywave/contents/images/1080x1920.jpg +share/wallpapers/Honeywave/contents/images/5120x2880.jpg +share/wallpapers/Honeywave/contents/screenshot.png +share/wallpapers/Honeywave/metadata.json +share/wallpapers/IceCold/contents/images/5120x2880.png +share/wallpapers/IceCold/contents/screenshot.png +share/wallpapers/IceCold/metadata.json +share/wallpapers/Kay/contents/images/1080x1920.png +share/wallpapers/Kay/contents/images/5120x2880.png +share/wallpapers/Kay/contents/images_dark/1080x1920.png +share/wallpapers/Kay/contents/images_dark/5120x2880.png +share/wallpapers/Kay/metadata.json +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.json +share/wallpapers/Kokkini/contents/images/3840x2160.png +share/wallpapers/Kokkini/contents/screenshot.png +share/wallpapers/Kokkini/metadata.json +share/wallpapers/MilkyWay/contents/images/1080x1920.png +share/wallpapers/MilkyWay/contents/images/5120x2880.png +share/wallpapers/MilkyWay/contents/screenshot.png +share/wallpapers/MilkyWay/metadata.json +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.json +share/wallpapers/Opal/contents/images/3840x2160.png +share/wallpapers/Opal/contents/screenshot.png +share/wallpapers/Opal/metadata.json +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/1920x1200.jpg +share/wallpapers/PastelHills/contents/images/2560x1440.jpg +share/wallpapers/PastelHills/contents/images/3200x2000.jpg +share/wallpapers/PastelHills/contents/images/640x480.jpg +share/wallpapers/PastelHills/contents/images/800x600.jpg +share/wallpapers/PastelHills/contents/screenshot.jpg +share/wallpapers/PastelHills/metadata.json +share/wallpapers/Patak/contents/images/1080x1920.png +share/wallpapers/Patak/contents/images/5120x2880.png +share/wallpapers/Patak/contents/images_dark/3840x2160.png +share/wallpapers/Patak/contents/screenshot.png +share/wallpapers/Patak/metadata.json +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.json +share/wallpapers/SafeLanding/contents/images/1622x2880.jpg +share/wallpapers/SafeLanding/contents/images/5120x2880.jpg +share/wallpapers/SafeLanding/contents/screenshot.jpg +share/wallpapers/SafeLanding/metadata.desktop +share/wallpapers/Shell/contents/images/5120x2880.jpg +share/wallpapers/Shell/contents/images/720x1440.jpg +share/wallpapers/Shell/contents/screenshot.png +share/wallpapers/Shell/metadata.json +share/wallpapers/Volna/contents/images/5120x2880.jpg +share/wallpapers/Volna/contents/screenshot.png +share/wallpapers/Volna/metadata.json +share/wallpapers/summer_1am/contents/images/1280x1024.jpg +share/wallpapers/summer_1am/contents/images/1280x800.jpg +share/wallpapers/summer_1am/contents/images/1440x900.jpg +share/wallpapers/summer_1am/contents/images/1600x1200.jpg +share/wallpapers/summer_1am/contents/images/1638x1024.jpg +share/wallpapers/summer_1am/contents/images/1680x1050.jpg +share/wallpapers/summer_1am/contents/images/1920x1080.jpg +share/wallpapers/summer_1am/contents/images/1920x1200.jpg +share/wallpapers/summer_1am/contents/images/2560x1440.jpg +share/wallpapers/summer_1am/contents/images/2560x1600.jpg +share/wallpapers/summer_1am/contents/images/640x480.jpg +share/wallpapers/summer_1am/contents/images/800x600.jpg +share/wallpapers/summer_1am/contents/screenshot.jpg +share/wallpapers/summer_1am/metadata.json diff --git a/x11-themes/plasma6-qqc2-breeze-style/Makefile b/x11-themes/plasma6-qqc2-breeze-style/Makefile new file mode 100644 index 000000000000..d495b4d33281 --- /dev/null +++ b/x11-themes/plasma6-qqc2-breeze-style/Makefile @@ -0,0 +1,13 @@ +PORTNAME= qqc2-breeze-style +DISTVERSION= ${KDE_PLASMA_VERSION} +CATEGORIES= x11-themes kde kde-plasma + +MAINTAINER= kde@FreeBSD.org +COMMENT= Breeze inspired QQC2 Style + +USES= cmake kde:6 qt:6 tar:xz +USE_KDE= iconthemes kirigami2 kquickcharts \ + ecm:build +USE_QT= base declarative + +.include diff --git a/x11-themes/plasma6-qqc2-breeze-style/distinfo b/x11-themes/plasma6-qqc2-breeze-style/distinfo new file mode 100644 index 000000000000..d402559b1f53 --- /dev/null +++ b/x11-themes/plasma6-qqc2-breeze-style/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1701540434 +SHA256 (KDE/plasma/5.90.0/qqc2-breeze-style-5.90.0.tar.xz) = 3b1c6ef8fc6a031b547068c4a033043454ba9b4f708cdc58157cfd8ea768bbed +SIZE (KDE/plasma/5.90.0/qqc2-breeze-style-5.90.0.tar.xz) = 66392 diff --git a/x11-themes/plasma6-qqc2-breeze-style/pkg-plist b/x11-themes/plasma6-qqc2-breeze-style/pkg-plist new file mode 100644 index 000000000000..c0080a0b2a05 --- /dev/null +++ b/x11-themes/plasma6-qqc2-breeze-style/pkg-plist @@ -0,0 +1,94 @@ +lib/cmake/QQC2BreezeStyle/QQC2BreezeStyleConfig.cmake +lib/cmake/QQC2BreezeStyle/QQC2BreezeStyleConfigVersion.cmake +%%QT_PLUGINDIR%%/kf6/kirigami/platform/org.kde.breeze.so +%%QT_QMLDIR%%/org/kde/breeze/AbstractButton.qml +%%QT_QMLDIR%%/org/kde/breeze/ApplicationWindow.qml +%%QT_QMLDIR%%/org/kde/breeze/BreezeStyle.qmltypes +%%QT_QMLDIR%%/org/kde/breeze/BusyIndicator.qml +%%QT_QMLDIR%%/org/kde/breeze/Button.qml +%%QT_QMLDIR%%/org/kde/breeze/ButtonGroup.qml +%%QT_QMLDIR%%/org/kde/breeze/CheckBox.qml +%%QT_QMLDIR%%/org/kde/breeze/CheckDelegate.qml +%%QT_QMLDIR%%/org/kde/breeze/ComboBox.qml +%%QT_QMLDIR%%/org/kde/breeze/Container.qml +%%QT_QMLDIR%%/org/kde/breeze/Control.qml +%%QT_QMLDIR%%/org/kde/breeze/DelayButton.qml +%%QT_QMLDIR%%/org/kde/breeze/Dial.qml +%%QT_QMLDIR%%/org/kde/breeze/Dialog.qml +%%QT_QMLDIR%%/org/kde/breeze/DialogButtonBox.qml +%%QT_QMLDIR%%/org/kde/breeze/Drawer.qml +%%QT_QMLDIR%%/org/kde/breeze/Frame.qml +%%QT_QMLDIR%%/org/kde/breeze/GroupBox.qml +%%QT_QMLDIR%%/org/kde/breeze/HorizontalHeaderView.qml +%%QT_QMLDIR%%/org/kde/breeze/ItemDelegate.qml +%%QT_QMLDIR%%/org/kde/breeze/Label.qml +%%QT_QMLDIR%%/org/kde/breeze/Menu.qml +%%QT_QMLDIR%%/org/kde/breeze/MenuBar.qml +%%QT_QMLDIR%%/org/kde/breeze/MenuBarItem.qml +%%QT_QMLDIR%%/org/kde/breeze/MenuItem.qml +%%QT_QMLDIR%%/org/kde/breeze/MenuSeparator.qml +%%QT_QMLDIR%%/org/kde/breeze/MobileTextActionsToolBar.qml +%%QT_QMLDIR%%/org/kde/breeze/Page.qml +%%QT_QMLDIR%%/org/kde/breeze/PageIndicator.qml +%%QT_QMLDIR%%/org/kde/breeze/Pane.qml +%%QT_QMLDIR%%/org/kde/breeze/Popup.qml +%%QT_QMLDIR%%/org/kde/breeze/ProgressBar.qml +%%QT_QMLDIR%%/org/kde/breeze/RadioButton.qml +%%QT_QMLDIR%%/org/kde/breeze/RadioDelegate.qml +%%QT_QMLDIR%%/org/kde/breeze/RangeSlider.qml +%%QT_QMLDIR%%/org/kde/breeze/RoundButton.qml +%%QT_QMLDIR%%/org/kde/breeze/ScrollBar.qml +%%QT_QMLDIR%%/org/kde/breeze/ScrollIndicator.qml +%%QT_QMLDIR%%/org/kde/breeze/ScrollView.qml +%%QT_QMLDIR%%/org/kde/breeze/Slider.qml +%%QT_QMLDIR%%/org/kde/breeze/SpinBox.qml +%%QT_QMLDIR%%/org/kde/breeze/SplitView.qml +%%QT_QMLDIR%%/org/kde/breeze/StackView.qml +%%QT_QMLDIR%%/org/kde/breeze/SwipeDelegate.qml +%%QT_QMLDIR%%/org/kde/breeze/SwipeView.qml +%%QT_QMLDIR%%/org/kde/breeze/Switch.qml +%%QT_QMLDIR%%/org/kde/breeze/SwitchDelegate.qml +%%QT_QMLDIR%%/org/kde/breeze/TabBar.qml +%%QT_QMLDIR%%/org/kde/breeze/TabButton.qml +%%QT_QMLDIR%%/org/kde/breeze/TextArea.qml +%%QT_QMLDIR%%/org/kde/breeze/TextField.qml +%%QT_QMLDIR%%/org/kde/breeze/ToolBar.qml +%%QT_QMLDIR%%/org/kde/breeze/ToolButton.qml +%%QT_QMLDIR%%/org/kde/breeze/ToolSeparator.qml +%%QT_QMLDIR%%/org/kde/breeze/ToolTip.qml +%%QT_QMLDIR%%/org/kde/breeze/Tumbler.qml +%%QT_QMLDIR%%/org/kde/breeze/VerticalHeaderView.qml +%%QT_QMLDIR%%/org/kde/breeze/impl/BreezeImpl.qmltypes +%%QT_QMLDIR%%/org/kde/breeze/impl/ButtonBackground.qml +%%QT_QMLDIR%%/org/kde/breeze/impl/CheckIndicator.qml +%%QT_QMLDIR%%/org/kde/breeze/impl/ComboBoxBackground.qml +%%QT_QMLDIR%%/org/kde/breeze/impl/CursorDelegate.qml +%%QT_QMLDIR%%/org/kde/breeze/impl/CursorHandle.qml +%%QT_QMLDIR%%/org/kde/breeze/impl/DelegateBackground.qml +%%QT_QMLDIR%%/org/kde/breeze/impl/FocusRect.qml +%%QT_QMLDIR%%/org/kde/breeze/impl/IconLabelContent.qml +%%QT_QMLDIR%%/org/kde/breeze/impl/IconLabelShortcutContent.qml +%%QT_QMLDIR%%/org/kde/breeze/impl/InlineIconLabelContent.qml +%%QT_QMLDIR%%/org/kde/breeze/impl/LargeShadow.qml +%%QT_QMLDIR%%/org/kde/breeze/impl/ListViewHighlight.qml +%%QT_QMLDIR%%/org/kde/breeze/impl/MediumShadow.qml +%%QT_QMLDIR%%/org/kde/breeze/impl/MenuItemBackground.qml +%%QT_QMLDIR%%/org/kde/breeze/impl/OverlayDimBackground.qml +%%QT_QMLDIR%%/org/kde/breeze/impl/OverlayModalBackground.qml +%%QT_QMLDIR%%/org/kde/breeze/impl/RadioIndicator.qml +%%QT_QMLDIR%%/org/kde/breeze/impl/ScrollHandle.qml +%%QT_QMLDIR%%/org/kde/breeze/impl/SliderGroove.qml +%%QT_QMLDIR%%/org/kde/breeze/impl/SliderHandle.qml +%%QT_QMLDIR%%/org/kde/breeze/impl/SmallBoxShadow.qml +%%QT_QMLDIR%%/org/kde/breeze/impl/SpinBoxIndicator.qml +%%QT_QMLDIR%%/org/kde/breeze/impl/SwitchIndicator.qml +%%QT_QMLDIR%%/org/kde/breeze/impl/TextEditBackground.qml +%%QT_QMLDIR%%/org/kde/breeze/impl/Theme.qml +%%QT_QMLDIR%%/org/kde/breeze/impl/Units.qml +%%QT_QMLDIR%%/org/kde/breeze/impl/kde-qmlmodule.version +%%QT_QMLDIR%%/org/kde/breeze/impl/libBreezeImpl.so +%%QT_QMLDIR%%/org/kde/breeze/impl/qmldir +%%QT_QMLDIR%%/org/kde/breeze/kde-qmlmodule.version +%%QT_QMLDIR%%/org/kde/breeze/libBreezeStyle.so +%%QT_QMLDIR%%/org/kde/breeze/qmldir +%%QT_QMLDIR%%/org/kde/kirigami/styles/org.kde.breeze/AbstractApplicationHeader.qml diff --git a/x11-toolkits/Makefile b/x11-toolkits/Makefile index f35d9fe364a4..9928abac2dff 100644 --- a/x11-toolkits/Makefile +++ b/x11-toolkits/Makefile @@ -1,254 +1,255 @@ COMMENT = X11 toolkits SUBDIR += SoXt SUBDIR += Xaw3d SUBDIR += Xmt SUBDIR += amtk SUBDIR += blt SUBDIR += bwidget SUBDIR += color-widgets-qt5 SUBDIR += copperspice SUBDIR += ctk SUBDIR += fltk SUBDIR += fox16 SUBDIR += fox17 SUBDIR += fxscintilla SUBDIR += gdl SUBDIR += girara SUBDIR += gnome-pty-helper SUBDIR += gnustep-back SUBDIR += gnustep-gui SUBDIR += granite SUBDIR += granite7 SUBDIR += gstreamer1-plugins-gtk SUBDIR += gstreamer1-plugins-pango SUBDIR += gtk-layer-shell SUBDIR += gtk-sharp-beans SUBDIR += gtk-sharp20 SUBDIR += gtk-sharp30 SUBDIR += gtk20 SUBDIR += gtk30 SUBDIR += gtk4-layer-shell SUBDIR += gtk40 SUBDIR += gtkd SUBDIR += gtkdatabox SUBDIR += gtkextra SUBDIR += gtkglarea2 SUBDIR += gtkglext SUBDIR += gtkglextmm SUBDIR += gtkimageview SUBDIR += gtkmm24 SUBDIR += gtkmm30 SUBDIR += gtksourceview2 SUBDIR += gtksourceview3 SUBDIR += gtksourceview4 SUBDIR += gtksourceview5 SUBDIR += gtksourceviewmm3 SUBDIR += guile-gnome-platform SUBDIR += imgui SUBDIR += irrlicht SUBDIR += itk SUBDIR += iwidgets SUBDIR += kddockwidgets 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 += kf6-attica SUBDIR += kf6-kcompletion SUBDIR += kf6-kconfigwidgets SUBDIR += kf6-kguiaddons SUBDIR += kf6-kirigami SUBDIR += kf6-kitemviews SUBDIR += kf6-kjobwidgets SUBDIR += kf6-ktextwidgets SUBDIR += kf6-kwidgetsaddons SUBDIR += kf6-kxmlgui SUBDIR += kirigami-addons SUBDIR += kirigami-addons-devel SUBDIR += kproperty SUBDIR += lesstif SUBDIR += libXaw SUBDIR += libXmu SUBDIR += libXt SUBDIR += libadwaita SUBDIR += libdazzle SUBDIR += libdecor SUBDIR += libgdiplus SUBDIR += libhandy SUBDIR += libhandy0 SUBDIR += libshumate SUBDIR += libunique3 SUBDIR += libwnck SUBDIR += libwnck3 SUBDIR += libxaw3dxft SUBDIR += linux-c7-gtk2 SUBDIR += linux-c7-gtk3 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 += nuklear SUBDIR += ocaml-lablgtk2 SUBDIR += ocaml-lablgtk3 SUBDIR += ocaml-labltk SUBDIR += open-motif SUBDIR += open-motif-devel SUBDIR += osm-gps-map SUBDIR += otk SUBDIR += p5-Alien-wxWidgets SUBDIR += p5-Glade2 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-ImageView SUBDIR += p5-Gtk2-PathButtonBar SUBDIR += p5-Gtk2-TrayIcon SUBDIR += p5-Gtk3 SUBDIR += p5-Gtk3-ImageView SUBDIR += p5-Gtk3-SimpleList SUBDIR += p5-Pango SUBDIR += p5-Prima SUBDIR += p5-Test-Tk 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 += pango SUBDIR += pangolin SUBDIR += pangomm SUBDIR += pangox-compat SUBDIR += plasma5-kdeplasma-addons + SUBDIR += plasma6-kdeplasma-addons SUBDIR += plib SUBDIR += py-AnyQt SUBDIR += py-Pmw SUBDIR += py-awesometkinter SUBDIR += py-easygui SUBDIR += py-fltk SUBDIR += py-guietta SUBDIR += py-python-xlib SUBDIR += py-qt5-chart SUBDIR += py-qt6-chart SUBDIR += py-qt6-datavis3d SUBDIR += py-tkinter SUBDIR += py-tktreectrl SUBDIR += py-wxPython4 SUBDIR += pythonqt SUBDIR += qml-box2d SUBDIR += qt5-charts SUBDIR += qt5-datavis3d SUBDIR += qt5-declarative SUBDIR += qt5-declarative-test SUBDIR += qt5-gamepad SUBDIR += qt5-gui SUBDIR += qt5-quick3d SUBDIR += qt5-quickcontrols SUBDIR += qt5-quickcontrols2 SUBDIR += qt5-quicktimeline SUBDIR += qt5-uiplugin SUBDIR += qt5-virtualkeyboard SUBDIR += qt5-widgets SUBDIR += qt5pas SUBDIR += qt6-charts SUBDIR += qt6-datavis3d SUBDIR += qt6-declarative SUBDIR += qt6-graphs SUBDIR += qt6-quick3d SUBDIR += qt6-quicktimeline SUBDIR += qt6-shadertools SUBDIR += qt6-virtualkeyboard SUBDIR += qt6pas SUBDIR += qtermwidget SUBDIR += qwt5-qt5 SUBDIR += qwt6 SUBDIR += redkite SUBDIR += rep-gtk2 SUBDIR += rubygem-gdk3 SUBDIR += rubygem-gdk4 SUBDIR += rubygem-gtk2 SUBDIR += rubygem-gtk3 SUBDIR += rubygem-gtk4 SUBDIR += rubygem-gtksourceview3 SUBDIR += rubygem-gtksourceview4 SUBDIR += rubygem-pango SUBDIR += rubygem-poppler SUBDIR += rubygem-tk SUBDIR += rubygem-uh SUBDIR += rubygem-vte3 SUBDIR += rubygem-vte4 SUBDIR += scintilla SUBDIR += sdl_pango SUBDIR += shared-desktop-ontologies SUBDIR += skinlf SUBDIR += soqt SUBDIR += swt SUBDIR += tepl6 SUBDIR += termit SUBDIR += tix SUBDIR += tk-wrapper SUBDIR += tk85 SUBDIR += tk86 SUBDIR += tk87 SUBDIR += tkdnd SUBDIR += tkshape SUBDIR += tktable SUBDIR += tktray SUBDIR += tktreectrl SUBDIR += unique SUBDIR += viewklass SUBDIR += vte SUBDIR += vte3 SUBDIR += wlroots SUBDIR += wlroots015 SUBDIR += wlroots016 SUBDIR += wmapp SUBDIR += wxgtk30 SUBDIR += wxgtk32 SUBDIR += xbae SUBDIR += xforms SUBDIR += xmhtml SUBDIR += xwallpaper SUBDIR += ztoolkit .include diff --git a/x11-toolkits/plasma6-kdeplasma-addons/Makefile b/x11-toolkits/plasma6-kdeplasma-addons/Makefile new file mode 100644 index 000000000000..1d041a774130 --- /dev/null +++ b/x11-toolkits/plasma6-kdeplasma-addons/Makefile @@ -0,0 +1,16 @@ +PORTNAME= kdeplasma-addons +DISTVERSION= ${KDE_PLASMA_VERSION} +CATEGORIES= x11-toolkits kde kde-plasma + +MAINTAINER= kde@FreeBSD.org +COMMENT= All kind of add-ons to improve your Plasma experience + +USES= cmake gettext kde:6 qt:6 tar:xz +USE_KDE= config coreaddons holidays i18n kcmutils kdeclarative kio \ + libplasma newstuff notifications plasma5support runner service \ + sonnet unitconversion xmlgui \ + ecm:build \ + kirigami-addons:run +USE_QT= 5compat base declarative webengine + +.include diff --git a/x11-toolkits/plasma6-kdeplasma-addons/distinfo b/x11-toolkits/plasma6-kdeplasma-addons/distinfo new file mode 100644 index 000000000000..dcbb64cf74d8 --- /dev/null +++ b/x11-toolkits/plasma6-kdeplasma-addons/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1701548872 +SHA256 (KDE/plasma/5.90.0/kdeplasma-addons-5.90.0.tar.xz) = 18a57857f5c614f90688842d0e08ecbb0ade86816d3136d353781194f4bcee9e +SIZE (KDE/plasma/5.90.0/kdeplasma-addons-5.90.0.tar.xz) = 859944 diff --git a/x11-toolkits/plasma6-kdeplasma-addons/pkg-plist b/x11-toolkits/plasma6-kdeplasma-addons/pkg-plist new file mode 100644 index 000000000000..81ca9e7c12e6 --- /dev/null +++ b/x11-toolkits/plasma6-kdeplasma-addons/pkg-plist @@ -0,0 +1,2020 @@ +include/plasma/potdprovider/plasma_potd_export.h +include/plasma/potdprovider/potdprovider.h +lib/cmake/PlasmaPotdProvider/PlasmaPotdProviderConfig.cmake +lib/cmake/PlasmaPotdProvider/PlasmaPotdProviderConfigVersion.cmake +lib/cmake/PlasmaPotdProvider/PlasmaPotdProviderTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/PlasmaPotdProvider/PlasmaPotdProviderTargets.cmake +lib/libplasmapotdprovidercore.so +lib/libplasmapotdprovidercore.so.2 +lib/libplasmapotdprovidercore.so.2.0.0 +%%QT_PLUGINDIR%%/kf6/krunner/kcms/kcm_krunner_charrunner.so +%%QT_PLUGINDIR%%/kf6/krunner/kcms/kcm_krunner_dictionary.so +%%QT_PLUGINDIR%%/kf6/krunner/kcms/kcm_krunner_spellcheck.so +%%QT_PLUGINDIR%%/kf6/krunner/krunner_charrunner.so +%%QT_PLUGINDIR%%/kf6/krunner/krunner_dictionary.so +%%QT_PLUGINDIR%%/kf6/krunner/krunner_katesessions.so +%%QT_PLUGINDIR%%/kf6/krunner/krunner_konsoleprofiles.so +%%QT_PLUGINDIR%%/kf6/krunner/krunner_spellcheck.so +%%QT_PLUGINDIR%%/kf6/krunner/org.kde.datetime.so +%%QT_PLUGINDIR%%/kf6/krunner/unitconverter.so +%%QT_PLUGINDIR%%/kf6/packagestructure/plasma_comic.so +%%QT_PLUGINDIR%%/kwin/effects/configs/kwin_cube_config.so +%%QT_PLUGINDIR%%/plasma/applets/org.kde.plasma.comic.so +%%QT_PLUGINDIR%%/plasma/applets/org.kde.plasma.grouping.so +%%QT_PLUGINDIR%%/plasma/applets/org.kde.plasma.private.grouping.so +%%QT_PLUGINDIR%%/plasma/applets/org.kde.plasma.weather.so +%%QT_PLUGINDIR%%/plasmacalendarplugins/alternatecalendar.so +%%QT_PLUGINDIR%%/plasmacalendarplugins/alternatecalendar/AlternateCalendarConfig.qml +%%QT_PLUGINDIR%%/plasmacalendarplugins/astronomicalevents.so +%%QT_PLUGINDIR%%/plasmacalendarplugins/astronomicalevents/AstronomicalEventsConfig.qml +%%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_simonstalenhagprovider.so +%%QT_PLUGINDIR%%/potd/plasma_potd_wcpotdprovider.so +%%QT_QMLDIR%%/org/kde/plasma/private/colorpicker/colorpickerplugin.qmltypes +%%QT_QMLDIR%%/org/kde/plasma/private/colorpicker/kde-qmlmodule.version +%%QT_QMLDIR%%/org/kde/plasma/private/colorpicker/libcolorpickerplugin.so +%%QT_QMLDIR%%/org/kde/plasma/private/colorpicker/qmldir +%%QT_QMLDIR%%/org/kde/plasma/private/dict/dictplugin.qmltypes +%%QT_QMLDIR%%/org/kde/plasma/private/dict/kde-qmlmodule.version +%%QT_QMLDIR%%/org/kde/plasma/private/dict/libdictplugin.so +%%QT_QMLDIR%%/org/kde/plasma/private/dict/qmldir +%%QT_QMLDIR%%/org/kde/plasma/private/diskquota/diskquotaplugin.qmltypes +%%QT_QMLDIR%%/org/kde/plasma/private/diskquota/kde-qmlmodule.version +%%QT_QMLDIR%%/org/kde/plasma/private/diskquota/libdiskquotaplugin.so +%%QT_QMLDIR%%/org/kde/plasma/private/diskquota/qmldir +%%QT_QMLDIR%%/org/kde/plasma/private/fifteenpuzzle/fifteenpuzzleplugin.qmltypes +%%QT_QMLDIR%%/org/kde/plasma/private/fifteenpuzzle/kde-qmlmodule.version +%%QT_QMLDIR%%/org/kde/plasma/private/fifteenpuzzle/libfifteenpuzzleplugin.so +%%QT_QMLDIR%%/org/kde/plasma/private/fifteenpuzzle/qmldir +%%QT_QMLDIR%%/org/kde/plasma/private/mediaframe/kde-qmlmodule.version +%%QT_QMLDIR%%/org/kde/plasma/private/mediaframe/libmediaframeplugin.so +%%QT_QMLDIR%%/org/kde/plasma/private/mediaframe/mediaframeplugin.qmltypes +%%QT_QMLDIR%%/org/kde/plasma/private/mediaframe/qmldir +%%QT_QMLDIR%%/org/kde/plasma/private/notes/kde-qmlmodule.version +%%QT_QMLDIR%%/org/kde/plasma/private/notes/libnotesplugin.so +%%QT_QMLDIR%%/org/kde/plasma/private/notes/notesplugin.qmltypes +%%QT_QMLDIR%%/org/kde/plasma/private/notes/qmldir +%%QT_QMLDIR%%/org/kde/plasma/private/profiles/kde-qmlmodule.version +%%QT_QMLDIR%%/org/kde/plasma/private/profiles/libprofiles_qml_plugin.so +%%QT_QMLDIR%%/org/kde/plasma/private/profiles/profiles_qml_plugin.qmltypes +%%QT_QMLDIR%%/org/kde/plasma/private/profiles/qmldir +%%QT_QMLDIR%%/org/kde/plasma/private/quicklaunch/kde-qmlmodule.version +%%QT_QMLDIR%%/org/kde/plasma/private/quicklaunch/libquicklaunchplugin.so +%%QT_QMLDIR%%/org/kde/plasma/private/quicklaunch/qmldir +%%QT_QMLDIR%%/org/kde/plasma/private/quicklaunch/quicklaunchplugin.qmltypes +%%QT_QMLDIR%%/org/kde/plasma/private/timer/kde-qmlmodule.version +%%QT_QMLDIR%%/org/kde/plasma/private/timer/libtimerplugin.so +%%QT_QMLDIR%%/org/kde/plasma/private/timer/qmldir +%%QT_QMLDIR%%/org/kde/plasma/private/timer/timerplugin.qmltypes +%%QT_QMLDIR%%/org/kde/plasma/private/weather/kde-qmlmodule.version +%%QT_QMLDIR%%/org/kde/plasma/private/weather/libweatherplugin.so +%%QT_QMLDIR%%/org/kde/plasma/private/weather/qmldir +%%QT_QMLDIR%%/org/kde/plasma/private/weather/weatherplugin.qmltypes +%%QT_QMLDIR%%/org/kde/plasma/wallpapers/potd/kde-qmlmodule.version +%%QT_QMLDIR%%/org/kde/plasma/wallpapers/potd/libplasma_wallpaper_potdplugin.so +%%QT_QMLDIR%%/org/kde/plasma/wallpapers/potd/plasma_wallpaper_potdplugin.qmltypes +%%QT_QMLDIR%%/org/kde/plasma/wallpapers/potd/qmldir +%%QT_QMLDIR%%/org/kde/plasmacalendar/alternatecalendarconfig/kde-qmlmodule.version +%%QT_QMLDIR%%/org/kde/plasmacalendar/alternatecalendarconfig/libplasmacalendaralternatecalendarconfig.so +%%QT_QMLDIR%%/org/kde/plasmacalendar/alternatecalendarconfig/plasmacalendaralternatecalendarconfig.qmltypes +%%QT_QMLDIR%%/org/kde/plasmacalendar/alternatecalendarconfig/qmldir +%%QT_QMLDIR%%/org/kde/plasmacalendar/astronomicaleventsconfig/kde-qmlmodule.version +%%QT_QMLDIR%%/org/kde/plasmacalendar/astronomicaleventsconfig/libplasmacalendarastronomicaleventsconfig.so +%%QT_QMLDIR%%/org/kde/plasmacalendar/astronomicaleventsconfig/plasmacalendarastronomicaleventsconfig.qmltypes +%%QT_QMLDIR%%/org/kde/plasmacalendar/astronomicaleventsconfig/qmldir +share/icons/hicolor/scalable/apps/accessories-dictionary.svgz +share/icons/hicolor/scalable/apps/fifteenpuzzle.svgz +share/kdevappwizard/templates/plasmapotdprovider.tar.bz2 +share/knotifications6/plasma_applet_timer.notifyrc +share/knsrcfiles/comic.knsrc +share/kwin/effects/cube/contents/config/main.xml +share/kwin/effects/cube/contents/ui/Cube.qml +share/kwin/effects/cube/contents/ui/CubeCameraController.qml +share/kwin/effects/cube/contents/ui/CubeFace.qml +share/kwin/effects/cube/contents/ui/DesktopView.qml +share/kwin/effects/cube/contents/ui/ScreenView.qml +share/kwin/effects/cube/contents/ui/constants.js +share/kwin/effects/cube/contents/ui/main.qml +share/kwin/effects/cube/metadata.json +share/kwin/tabbox/big_icons/contents/ui/main.qml +share/kwin/tabbox/big_icons/metadata.json +share/kwin/tabbox/compact/contents/ui/main.qml +share/kwin/tabbox/compact/metadata.json +share/kwin/tabbox/coverswitch/contents/ui/main.qml +share/kwin/tabbox/coverswitch/metadata.json +share/kwin/tabbox/flipswitch/contents/ui/main.qml +share/kwin/tabbox/flipswitch/metadata.json +share/kwin/tabbox/sidebar/contents/ui/main.qml +share/kwin/tabbox/sidebar/metadata.json +share/locale/ar/LC_MESSAGES/plasma_addons_engine_dict.mo +share/locale/ar/LC_MESSAGES/plasma_addons_profiles_utility.mo +share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.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.keyboardindicator.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.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.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_applet_org.kde.plasma.webbrowser.mo +share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo +share/locale/ar/LC_MESSAGES/plasma_calendar_alternatecalendar.mo +share/locale/ar/LC_MESSAGES/plasma_calendar_astronomicalevents.mo +share/locale/ar/LC_MESSAGES/plasma_runner_CharacterRunner.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_konsoleprofiles.mo +share/locale/ar/LC_MESSAGES/plasma_runner_krunner_dictionary.mo +share/locale/ar/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/ar/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo +share/locale/ast/LC_MESSAGES/kwin_effect_cube.mo +share/locale/ast/LC_MESSAGES/plasma_addons_engine_dict.mo +share/locale/ast/LC_MESSAGES/plasma_addons_profiles_utility.mo +share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.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.keyboardindicator.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.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.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_applet_org.kde.plasma.webbrowser.mo +share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo +share/locale/ast/LC_MESSAGES/plasma_calendar_alternatecalendar.mo +share/locale/ast/LC_MESSAGES/plasma_calendar_astronomicalevents.mo +share/locale/ast/LC_MESSAGES/plasma_runner_CharacterRunner.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_konsoleprofiles.mo +share/locale/ast/LC_MESSAGES/plasma_runner_krunner_dictionary.mo +share/locale/ast/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/ast/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo +share/locale/az/LC_MESSAGES/plasma_addons_engine_dict.mo +share/locale/az/LC_MESSAGES/plasma_addons_profiles_utility.mo +share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo +share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo +share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo +share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo +share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo +share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo +share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo +share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo +share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo +share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo +share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo +share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo +share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo +share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo +share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo +share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo +share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo +share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.webbrowser.mo +share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo +share/locale/az/LC_MESSAGES/plasma_calendar_alternatecalendar.mo +share/locale/az/LC_MESSAGES/plasma_calendar_astronomicalevents.mo +share/locale/az/LC_MESSAGES/plasma_runner_CharacterRunner.mo +share/locale/az/LC_MESSAGES/plasma_runner_converterrunner.mo +share/locale/az/LC_MESSAGES/plasma_runner_datetime.mo +share/locale/az/LC_MESSAGES/plasma_runner_katesessions.mo +share/locale/az/LC_MESSAGES/plasma_runner_konsoleprofiles.mo +share/locale/az/LC_MESSAGES/plasma_runner_krunner_dictionary.mo +share/locale/az/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/az/LC_MESSAGES/plasma_wallpaper_org.kde.potd.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.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_addons_engine_dict.mo +share/locale/bg/LC_MESSAGES/plasma_addons_profiles_utility.mo +share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.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/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo +share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo +share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo +share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo +share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo +share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo +share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo +share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo +share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo +share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo +share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo +share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo +share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo +share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo +share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.webbrowser.mo +share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo +share/locale/bg/LC_MESSAGES/plasma_calendar_alternatecalendar.mo +share/locale/bg/LC_MESSAGES/plasma_calendar_astronomicalevents.mo +share/locale/bg/LC_MESSAGES/plasma_runner_CharacterRunner.mo +share/locale/bg/LC_MESSAGES/plasma_runner_converterrunner.mo +share/locale/bg/LC_MESSAGES/plasma_runner_datetime.mo +share/locale/bg/LC_MESSAGES/plasma_runner_katesessions.mo +share/locale/bg/LC_MESSAGES/plasma_runner_konsoleprofiles.mo +share/locale/bg/LC_MESSAGES/plasma_runner_krunner_dictionary.mo +share/locale/bg/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/bg/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo +share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.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.timer.mo +share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo +share/locale/bs/LC_MESSAGES/plasma_runner_CharacterRunner.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/kwin_effect_cube.mo +share/locale/ca/LC_MESSAGES/plasma_addons_engine_dict.mo +share/locale/ca/LC_MESSAGES/plasma_addons_profiles_utility.mo +share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.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.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.keyboardindicator.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.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.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_applet_org.kde.plasma.webbrowser.mo +share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo +share/locale/ca/LC_MESSAGES/plasma_calendar_alternatecalendar.mo +share/locale/ca/LC_MESSAGES/plasma_calendar_astronomicalevents.mo +share/locale/ca/LC_MESSAGES/plasma_runner_CharacterRunner.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_konsoleprofiles.mo +share/locale/ca/LC_MESSAGES/plasma_runner_krunner_dictionary.mo +share/locale/ca/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/ca/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo +share/locale/ca@valencia/LC_MESSAGES/kwin_effect_cube.mo +share/locale/ca@valencia/LC_MESSAGES/plasma_addons_engine_dict.mo +share/locale/ca@valencia/LC_MESSAGES/plasma_addons_profiles_utility.mo +share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.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.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.keyboardindicator.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.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.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_applet_org.kde.plasma.webbrowser.mo +share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo +share/locale/ca@valencia/LC_MESSAGES/plasma_calendar_alternatecalendar.mo +share/locale/ca@valencia/LC_MESSAGES/plasma_calendar_astronomicalevents.mo +share/locale/ca@valencia/LC_MESSAGES/plasma_runner_CharacterRunner.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_konsoleprofiles.mo +share/locale/ca@valencia/LC_MESSAGES/plasma_runner_krunner_dictionary.mo +share/locale/ca@valencia/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/ca@valencia/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo +share/locale/cs/LC_MESSAGES/kwin_effect_cube.mo +share/locale/cs/LC_MESSAGES/plasma_addons_engine_dict.mo +share/locale/cs/LC_MESSAGES/plasma_addons_profiles_utility.mo +share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.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.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.keyboardindicator.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.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.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_applet_org.kde.plasma.webbrowser.mo +share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo +share/locale/cs/LC_MESSAGES/plasma_calendar_alternatecalendar.mo +share/locale/cs/LC_MESSAGES/plasma_calendar_astronomicalevents.mo +share/locale/cs/LC_MESSAGES/plasma_runner_CharacterRunner.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_konsoleprofiles.mo +share/locale/cs/LC_MESSAGES/plasma_runner_krunner_dictionary.mo +share/locale/cs/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/cs/LC_MESSAGES/plasma_wallpaper_org.kde.potd.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/plasma_applet_org.kde.plasma.addons.katesessions.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.keyboardindicator.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.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.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_applet_org.kde.plasma_applet_dict.mo +share/locale/da/LC_MESSAGES/plasma_calendar_astronomicalevents.mo +share/locale/da/LC_MESSAGES/plasma_runner_CharacterRunner.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_konsoleprofiles.mo +share/locale/da/LC_MESSAGES/plasma_runner_krunner_dictionary.mo +share/locale/da/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/da/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo +share/locale/de/LC_MESSAGES/kwin_effect_cube.mo +share/locale/de/LC_MESSAGES/plasma_addons_engine_dict.mo +share/locale/de/LC_MESSAGES/plasma_addons_profiles_utility.mo +share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.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.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.keyboardindicator.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.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.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_applet_org.kde.plasma.webbrowser.mo +share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo +share/locale/de/LC_MESSAGES/plasma_calendar_alternatecalendar.mo +share/locale/de/LC_MESSAGES/plasma_calendar_astronomicalevents.mo +share/locale/de/LC_MESSAGES/plasma_runner_CharacterRunner.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_konsoleprofiles.mo +share/locale/de/LC_MESSAGES/plasma_runner_krunner_dictionary.mo +share/locale/de/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/de/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo +share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.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.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.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_runner_CharacterRunner.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/plasma_addons_engine_dict.mo +share/locale/en_GB/LC_MESSAGES/plasma_addons_profiles_utility.mo +share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.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.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.keyboardindicator.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.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.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_applet_org.kde.plasma.webbrowser.mo +share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo +share/locale/en_GB/LC_MESSAGES/plasma_calendar_alternatecalendar.mo +share/locale/en_GB/LC_MESSAGES/plasma_calendar_astronomicalevents.mo +share/locale/en_GB/LC_MESSAGES/plasma_runner_CharacterRunner.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_konsoleprofiles.mo +share/locale/en_GB/LC_MESSAGES/plasma_runner_krunner_dictionary.mo +share/locale/en_GB/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/en_GB/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo +share/locale/eo/LC_MESSAGES/plasma_addons_engine_dict.mo +share/locale/eo/LC_MESSAGES/plasma_addons_profiles_utility.mo +share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.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.diskquota.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.keyboardindicator.mo +share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo +share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo +share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo +share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo +share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo +share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo +share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo +share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo +share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.webbrowser.mo +share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo +share/locale/eo/LC_MESSAGES/plasma_calendar_alternatecalendar.mo +share/locale/eo/LC_MESSAGES/plasma_calendar_astronomicalevents.mo +share/locale/eo/LC_MESSAGES/plasma_runner_CharacterRunner.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_konsoleprofiles.mo +share/locale/eo/LC_MESSAGES/plasma_runner_krunner_dictionary.mo +share/locale/eo/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/eo/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo +share/locale/es/LC_MESSAGES/kwin_effect_cube.mo +share/locale/es/LC_MESSAGES/plasma_addons_engine_dict.mo +share/locale/es/LC_MESSAGES/plasma_addons_profiles_utility.mo +share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.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.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.keyboardindicator.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.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.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_applet_org.kde.plasma.webbrowser.mo +share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo +share/locale/es/LC_MESSAGES/plasma_calendar_alternatecalendar.mo +share/locale/es/LC_MESSAGES/plasma_calendar_astronomicalevents.mo +share/locale/es/LC_MESSAGES/plasma_runner_CharacterRunner.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_konsoleprofiles.mo +share/locale/es/LC_MESSAGES/plasma_runner_krunner_dictionary.mo +share/locale/es/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/es/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo +share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.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.keyboardindicator.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.notes.mo +share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo +share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.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_applet_org.kde.plasma_applet_dict.mo +share/locale/et/LC_MESSAGES/plasma_calendar_astronomicalevents.mo +share/locale/et/LC_MESSAGES/plasma_runner_CharacterRunner.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_konsoleprofiles.mo +share/locale/et/LC_MESSAGES/plasma_runner_krunner_dictionary.mo +share/locale/et/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/et/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo +share/locale/eu/LC_MESSAGES/kwin_effect_cube.mo +share/locale/eu/LC_MESSAGES/plasma_addons_engine_dict.mo +share/locale/eu/LC_MESSAGES/plasma_addons_profiles_utility.mo +share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.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.keyboardindicator.mo +share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo +share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.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.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_applet_org.kde.plasma.webbrowser.mo +share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo +share/locale/eu/LC_MESSAGES/plasma_calendar_alternatecalendar.mo +share/locale/eu/LC_MESSAGES/plasma_calendar_astronomicalevents.mo +share/locale/eu/LC_MESSAGES/plasma_runner_CharacterRunner.mo +share/locale/eu/LC_MESSAGES/plasma_runner_converterrunner.mo +share/locale/eu/LC_MESSAGES/plasma_runner_datetime.mo +share/locale/eu/LC_MESSAGES/plasma_runner_katesessions.mo +share/locale/eu/LC_MESSAGES/plasma_runner_konsoleprofiles.mo +share/locale/eu/LC_MESSAGES/plasma_runner_krunner_dictionary.mo +share/locale/eu/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/eu/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo +share/locale/fi/LC_MESSAGES/kwin_effect_cube.mo +share/locale/fi/LC_MESSAGES/plasma_addons_engine_dict.mo +share/locale/fi/LC_MESSAGES/plasma_addons_profiles_utility.mo +share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.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.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.keyboardindicator.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.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.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_applet_org.kde.plasma.webbrowser.mo +share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo +share/locale/fi/LC_MESSAGES/plasma_calendar_alternatecalendar.mo +share/locale/fi/LC_MESSAGES/plasma_calendar_astronomicalevents.mo +share/locale/fi/LC_MESSAGES/plasma_runner_CharacterRunner.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_konsoleprofiles.mo +share/locale/fi/LC_MESSAGES/plasma_runner_krunner_dictionary.mo +share/locale/fi/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/fi/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo +share/locale/fr/LC_MESSAGES/kwin_effect_cube.mo +share/locale/fr/LC_MESSAGES/plasma_addons_engine_dict.mo +share/locale/fr/LC_MESSAGES/plasma_addons_profiles_utility.mo +share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.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.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.keyboardindicator.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.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.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_applet_org.kde.plasma.webbrowser.mo +share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo +share/locale/fr/LC_MESSAGES/plasma_calendar_alternatecalendar.mo +share/locale/fr/LC_MESSAGES/plasma_calendar_astronomicalevents.mo +share/locale/fr/LC_MESSAGES/plasma_runner_CharacterRunner.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_konsoleprofiles.mo +share/locale/fr/LC_MESSAGES/plasma_runner_krunner_dictionary.mo +share/locale/fr/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/fr/LC_MESSAGES/plasma_wallpaper_org.kde.potd.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.timer.mo +share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo +share/locale/ga/LC_MESSAGES/plasma_runner_CharacterRunner.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/plasma_addons_engine_dict.mo +share/locale/gl/LC_MESSAGES/plasma_addons_profiles_utility.mo +share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.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.keyboardindicator.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.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.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_applet_org.kde.plasma_applet_dict.mo +share/locale/gl/LC_MESSAGES/plasma_calendar_alternatecalendar.mo +share/locale/gl/LC_MESSAGES/plasma_calendar_astronomicalevents.mo +share/locale/gl/LC_MESSAGES/plasma_runner_CharacterRunner.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_konsoleprofiles.mo +share/locale/gl/LC_MESSAGES/plasma_runner_krunner_dictionary.mo +share/locale/gl/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/gl/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo +share/locale/he/LC_MESSAGES/kwin_effect_cube.mo +share/locale/he/LC_MESSAGES/plasma_addons_engine_dict.mo +share/locale/he/LC_MESSAGES/plasma_addons_profiles_utility.mo +share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.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.keyboardindicator.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.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.timer.mo +share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo +share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo +share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.webbrowser.mo +share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo +share/locale/he/LC_MESSAGES/plasma_calendar_alternatecalendar.mo +share/locale/he/LC_MESSAGES/plasma_calendar_astronomicalevents.mo +share/locale/he/LC_MESSAGES/plasma_runner_CharacterRunner.mo +share/locale/he/LC_MESSAGES/plasma_runner_converterrunner.mo +share/locale/he/LC_MESSAGES/plasma_runner_datetime.mo +share/locale/he/LC_MESSAGES/plasma_runner_katesessions.mo +share/locale/he/LC_MESSAGES/plasma_runner_konsoleprofiles.mo +share/locale/he/LC_MESSAGES/plasma_runner_krunner_dictionary.mo +share/locale/he/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/he/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo +share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo +share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo +share/locale/hi/LC_MESSAGES/plasma_runner_krunner_dictionary.mo +share/locale/hi/LC_MESSAGES/plasma_runner_spellcheckrunner.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.timer.mo +share/locale/hr/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo +share/locale/hr/LC_MESSAGES/plasma_runner_CharacterRunner.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/plasma_applet_org.kde.plasma.addons.katesessions.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.diskquota.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.keyboardindicator.mo +share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo +share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo +share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo +share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo +share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo +share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo +share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo +share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo +share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo +share/locale/hu/LC_MESSAGES/plasma_calendar_astronomicalevents.mo +share/locale/hu/LC_MESSAGES/plasma_runner_CharacterRunner.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_konsoleprofiles.mo +share/locale/hu/LC_MESSAGES/plasma_runner_krunner_dictionary.mo +share/locale/hu/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/hu/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo +share/locale/ia/LC_MESSAGES/kwin_effect_cube.mo +share/locale/ia/LC_MESSAGES/plasma_addons_engine_dict.mo +share/locale/ia/LC_MESSAGES/plasma_addons_profiles_utility.mo +share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.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.keyboardindicator.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.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.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_applet_org.kde.plasma.webbrowser.mo +share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo +share/locale/ia/LC_MESSAGES/plasma_calendar_alternatecalendar.mo +share/locale/ia/LC_MESSAGES/plasma_calendar_astronomicalevents.mo +share/locale/ia/LC_MESSAGES/plasma_runner_CharacterRunner.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_konsoleprofiles.mo +share/locale/ia/LC_MESSAGES/plasma_runner_krunner_dictionary.mo +share/locale/ia/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/ia/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo +share/locale/id/LC_MESSAGES/plasma_addons_engine_dict.mo +share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo +share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo +share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo +share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo +share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo +share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo +share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo +share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo +share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo +share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo +share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo +share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo +share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo +share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo +share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo +share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo +share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo +share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo +share/locale/id/LC_MESSAGES/plasma_calendar_alternatecalendar.mo +share/locale/id/LC_MESSAGES/plasma_calendar_astronomicalevents.mo +share/locale/id/LC_MESSAGES/plasma_runner_CharacterRunner.mo +share/locale/id/LC_MESSAGES/plasma_runner_converterrunner.mo +share/locale/id/LC_MESSAGES/plasma_runner_datetime.mo +share/locale/id/LC_MESSAGES/plasma_runner_katesessions.mo +share/locale/id/LC_MESSAGES/plasma_runner_konsoleprofiles.mo +share/locale/id/LC_MESSAGES/plasma_runner_krunner_dictionary.mo +share/locale/id/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/id/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo +share/locale/is/LC_MESSAGES/plasma_addons_engine_dict.mo +share/locale/is/LC_MESSAGES/plasma_addons_profiles_utility.mo +share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.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.diskquota.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.keyboardindicator.mo +share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo +share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo +share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo +share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo +share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo +share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo +share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo +share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo +share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.webbrowser.mo +share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo +share/locale/is/LC_MESSAGES/plasma_calendar_alternatecalendar.mo +share/locale/is/LC_MESSAGES/plasma_calendar_astronomicalevents.mo +share/locale/is/LC_MESSAGES/plasma_runner_CharacterRunner.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_konsoleprofiles.mo +share/locale/is/LC_MESSAGES/plasma_runner_krunner_dictionary.mo +share/locale/is/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/is/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo +share/locale/it/LC_MESSAGES/kwin_effect_cube.mo +share/locale/it/LC_MESSAGES/plasma_addons_engine_dict.mo +share/locale/it/LC_MESSAGES/plasma_addons_profiles_utility.mo +share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.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.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.keyboardindicator.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.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.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_applet_org.kde.plasma.webbrowser.mo +share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo +share/locale/it/LC_MESSAGES/plasma_calendar_alternatecalendar.mo +share/locale/it/LC_MESSAGES/plasma_calendar_astronomicalevents.mo +share/locale/it/LC_MESSAGES/plasma_runner_CharacterRunner.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_konsoleprofiles.mo +share/locale/it/LC_MESSAGES/plasma_runner_krunner_dictionary.mo +share/locale/it/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/it/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo +share/locale/ja/LC_MESSAGES/kwin_effect_cube.mo +share/locale/ja/LC_MESSAGES/plasma_addons_engine_dict.mo +share/locale/ja/LC_MESSAGES/plasma_addons_profiles_utility.mo +share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.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.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.keyboardindicator.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.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.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_applet_org.kde.plasma.webbrowser.mo +share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo +share/locale/ja/LC_MESSAGES/plasma_calendar_alternatecalendar.mo +share/locale/ja/LC_MESSAGES/plasma_calendar_astronomicalevents.mo +share/locale/ja/LC_MESSAGES/plasma_runner_CharacterRunner.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_konsoleprofiles.mo +share/locale/ja/LC_MESSAGES/plasma_runner_krunner_dictionary.mo +share/locale/ja/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/ja/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo +share/locale/ka/LC_MESSAGES/kwin_effect_cube.mo +share/locale/ka/LC_MESSAGES/plasma_addons_engine_dict.mo +share/locale/ka/LC_MESSAGES/plasma_addons_profiles_utility.mo +share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo +share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo +share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo +share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo +share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo +share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo +share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo +share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo +share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo +share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo +share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo +share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo +share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo +share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo +share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo +share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo +share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo +share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.webbrowser.mo +share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo +share/locale/ka/LC_MESSAGES/plasma_calendar_alternatecalendar.mo +share/locale/ka/LC_MESSAGES/plasma_calendar_astronomicalevents.mo +share/locale/ka/LC_MESSAGES/plasma_runner_CharacterRunner.mo +share/locale/ka/LC_MESSAGES/plasma_runner_converterrunner.mo +share/locale/ka/LC_MESSAGES/plasma_runner_datetime.mo +share/locale/ka/LC_MESSAGES/plasma_runner_katesessions.mo +share/locale/ka/LC_MESSAGES/plasma_runner_konsoleprofiles.mo +share/locale/ka/LC_MESSAGES/plasma_runner_krunner_dictionary.mo +share/locale/ka/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/ka/LC_MESSAGES/plasma_wallpaper_org.kde.potd.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.timer.mo +share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo +share/locale/kk/LC_MESSAGES/plasma_runner_CharacterRunner.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/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.timer.mo +share/locale/km/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo +share/locale/km/LC_MESSAGES/plasma_runner_CharacterRunner.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/plasma_addons_engine_dict.mo +share/locale/ko/LC_MESSAGES/plasma_addons_profiles_utility.mo +share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.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.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.keyboardindicator.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.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.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_applet_org.kde.plasma.webbrowser.mo +share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo +share/locale/ko/LC_MESSAGES/plasma_calendar_alternatecalendar.mo +share/locale/ko/LC_MESSAGES/plasma_calendar_astronomicalevents.mo +share/locale/ko/LC_MESSAGES/plasma_runner_CharacterRunner.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_konsoleprofiles.mo +share/locale/ko/LC_MESSAGES/plasma_runner_krunner_dictionary.mo +share/locale/ko/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/ko/LC_MESSAGES/plasma_wallpaper_org.kde.potd.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.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/plasma_addons_engine_dict.mo +share/locale/lt/LC_MESSAGES/plasma_addons_profiles_utility.mo +share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.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.diskquota.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.keyboardindicator.mo +share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo +share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo +share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo +share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo +share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo +share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo +share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo +share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo +share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.webbrowser.mo +share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo +share/locale/lt/LC_MESSAGES/plasma_calendar_alternatecalendar.mo +share/locale/lt/LC_MESSAGES/plasma_calendar_astronomicalevents.mo +share/locale/lt/LC_MESSAGES/plasma_runner_CharacterRunner.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_konsoleprofiles.mo +share/locale/lt/LC_MESSAGES/plasma_runner_krunner_dictionary.mo +share/locale/lt/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/lt/LC_MESSAGES/plasma_wallpaper_org.kde.potd.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.keyboardindicator.mo +share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.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_runner_CharacterRunner.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/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo +share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo +share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo +share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo +share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo +share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo +share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo +share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo +share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo +share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo +share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo +share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo +share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo +share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo +share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo +share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo +share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo +share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo +share/locale/ml/LC_MESSAGES/plasma_calendar_astronomicalevents.mo +share/locale/ml/LC_MESSAGES/plasma_runner_CharacterRunner.mo +share/locale/ml/LC_MESSAGES/plasma_runner_converterrunner.mo +share/locale/ml/LC_MESSAGES/plasma_runner_datetime.mo +share/locale/ml/LC_MESSAGES/plasma_runner_katesessions.mo +share/locale/ml/LC_MESSAGES/plasma_runner_konsoleprofiles.mo +share/locale/ml/LC_MESSAGES/plasma_runner_krunner_dictionary.mo +share/locale/ml/LC_MESSAGES/plasma_runner_spellcheckrunner.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.timer.mo +share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo +share/locale/mr/LC_MESSAGES/plasma_runner_CharacterRunner.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/my/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo +share/locale/nb/LC_MESSAGES/plasma_addons_engine_dict.mo +share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.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.timer.mo +share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo +share/locale/nb/LC_MESSAGES/plasma_calendar_astronomicalevents.mo +share/locale/nb/LC_MESSAGES/plasma_runner_CharacterRunner.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_konsoleprofiles.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/plasma_applet_org.kde.plasma.addons.katesessions.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.timer.mo +share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo +share/locale/nds/LC_MESSAGES/plasma_runner_CharacterRunner.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/kwin_effect_cube.mo +share/locale/nl/LC_MESSAGES/plasma_addons_engine_dict.mo +share/locale/nl/LC_MESSAGES/plasma_addons_profiles_utility.mo +share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.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.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.keyboardindicator.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.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.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_applet_org.kde.plasma.webbrowser.mo +share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo +share/locale/nl/LC_MESSAGES/plasma_calendar_alternatecalendar.mo +share/locale/nl/LC_MESSAGES/plasma_calendar_astronomicalevents.mo +share/locale/nl/LC_MESSAGES/plasma_runner_CharacterRunner.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_konsoleprofiles.mo +share/locale/nl/LC_MESSAGES/plasma_runner_krunner_dictionary.mo +share/locale/nl/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/nl/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo +share/locale/nn/LC_MESSAGES/plasma_addons_engine_dict.mo +share/locale/nn/LC_MESSAGES/plasma_addons_profiles_utility.mo +share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.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.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.keyboardindicator.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.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.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_applet_org.kde.plasma.webbrowser.mo +share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo +share/locale/nn/LC_MESSAGES/plasma_calendar_alternatecalendar.mo +share/locale/nn/LC_MESSAGES/plasma_calendar_astronomicalevents.mo +share/locale/nn/LC_MESSAGES/plasma_runner_CharacterRunner.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_konsoleprofiles.mo +share/locale/nn/LC_MESSAGES/plasma_runner_krunner_dictionary.mo +share/locale/nn/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/nn/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo +share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.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.keyboardindicator.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.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_runner_CharacterRunner.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/kwin_effect_cube.mo +share/locale/pl/LC_MESSAGES/plasma_addons_engine_dict.mo +share/locale/pl/LC_MESSAGES/plasma_addons_profiles_utility.mo +share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.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.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.keyboardindicator.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.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.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_applet_org.kde.plasma.webbrowser.mo +share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo +share/locale/pl/LC_MESSAGES/plasma_calendar_alternatecalendar.mo +share/locale/pl/LC_MESSAGES/plasma_calendar_astronomicalevents.mo +share/locale/pl/LC_MESSAGES/plasma_runner_CharacterRunner.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_konsoleprofiles.mo +share/locale/pl/LC_MESSAGES/plasma_runner_krunner_dictionary.mo +share/locale/pl/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/pl/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo +share/locale/pt/LC_MESSAGES/plasma_addons_engine_dict.mo +share/locale/pt/LC_MESSAGES/plasma_addons_profiles_utility.mo +share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.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.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.keyboardindicator.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.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.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_applet_org.kde.plasma.webbrowser.mo +share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo +share/locale/pt/LC_MESSAGES/plasma_calendar_alternatecalendar.mo +share/locale/pt/LC_MESSAGES/plasma_calendar_astronomicalevents.mo +share/locale/pt/LC_MESSAGES/plasma_runner_CharacterRunner.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_konsoleprofiles.mo +share/locale/pt/LC_MESSAGES/plasma_runner_krunner_dictionary.mo +share/locale/pt/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/pt/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo +share/locale/pt_BR/LC_MESSAGES/kwin_effect_cube.mo +share/locale/pt_BR/LC_MESSAGES/plasma_addons_engine_dict.mo +share/locale/pt_BR/LC_MESSAGES/plasma_addons_profiles_utility.mo +share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.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.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.keyboardindicator.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.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.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_applet_org.kde.plasma.webbrowser.mo +share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo +share/locale/pt_BR/LC_MESSAGES/plasma_calendar_alternatecalendar.mo +share/locale/pt_BR/LC_MESSAGES/plasma_calendar_astronomicalevents.mo +share/locale/pt_BR/LC_MESSAGES/plasma_runner_CharacterRunner.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_konsoleprofiles.mo +share/locale/pt_BR/LC_MESSAGES/plasma_runner_krunner_dictionary.mo +share/locale/pt_BR/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/pt_BR/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo +share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.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.diskquota.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.keyboardindicator.mo +share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo +share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo +share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo +share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo +share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo +share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo +share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo +share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo +share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo +share/locale/ro/LC_MESSAGES/plasma_calendar_alternatecalendar.mo +share/locale/ro/LC_MESSAGES/plasma_calendar_astronomicalevents.mo +share/locale/ro/LC_MESSAGES/plasma_runner_CharacterRunner.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_konsoleprofiles.mo +share/locale/ro/LC_MESSAGES/plasma_runner_krunner_dictionary.mo +share/locale/ro/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/ro/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo +share/locale/ru/LC_MESSAGES/plasma_addons_engine_dict.mo +share/locale/ru/LC_MESSAGES/plasma_addons_profiles_utility.mo +share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.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.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.keyboardindicator.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.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.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_applet_org.kde.plasma.webbrowser.mo +share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo +share/locale/ru/LC_MESSAGES/plasma_calendar_alternatecalendar.mo +share/locale/ru/LC_MESSAGES/plasma_calendar_astronomicalevents.mo +share/locale/ru/LC_MESSAGES/plasma_runner_CharacterRunner.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_konsoleprofiles.mo +share/locale/ru/LC_MESSAGES/plasma_runner_krunner_dictionary.mo +share/locale/ru/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/ru/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo +share/locale/sk/LC_MESSAGES/plasma_addons_engine_dict.mo +share/locale/sk/LC_MESSAGES/plasma_addons_profiles_utility.mo +share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.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.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.keyboardindicator.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.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.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_applet_org.kde.plasma.webbrowser.mo +share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo +share/locale/sk/LC_MESSAGES/plasma_calendar_alternatecalendar.mo +share/locale/sk/LC_MESSAGES/plasma_calendar_astronomicalevents.mo +share/locale/sk/LC_MESSAGES/plasma_runner_CharacterRunner.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_konsoleprofiles.mo +share/locale/sk/LC_MESSAGES/plasma_runner_krunner_dictionary.mo +share/locale/sk/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/sk/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo +share/locale/sl/LC_MESSAGES/kwin_effect_cube.mo +share/locale/sl/LC_MESSAGES/plasma_addons_engine_dict.mo +share/locale/sl/LC_MESSAGES/plasma_addons_profiles_utility.mo +share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.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.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.keyboardindicator.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.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.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_applet_org.kde.plasma.webbrowser.mo +share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo +share/locale/sl/LC_MESSAGES/plasma_calendar_alternatecalendar.mo +share/locale/sl/LC_MESSAGES/plasma_calendar_astronomicalevents.mo +share/locale/sl/LC_MESSAGES/plasma_runner_CharacterRunner.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_konsoleprofiles.mo +share/locale/sl/LC_MESSAGES/plasma_runner_krunner_dictionary.mo +share/locale/sl/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/sl/LC_MESSAGES/plasma_wallpaper_org.kde.potd.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.timer.mo +share/locale/sq/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.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/plasma_applet_org.kde.plasma.addons.katesessions.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.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.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.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_applet_org.kde.plasma_applet_dict.mo +share/locale/sr/LC_MESSAGES/plasma_runner_CharacterRunner.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/plasma_applet_org.kde.plasma.addons.katesessions.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.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.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.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_applet_org.kde.plasma_applet_dict.mo +share/locale/sr@ijekavian/LC_MESSAGES/plasma_runner_CharacterRunner.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/plasma_applet_org.kde.plasma.addons.katesessions.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.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.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.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_applet_org.kde.plasma_applet_dict.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_runner_CharacterRunner.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/plasma_applet_org.kde.plasma.addons.katesessions.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.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.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.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_applet_org.kde.plasma_applet_dict.mo +share/locale/sr@latin/LC_MESSAGES/plasma_runner_CharacterRunner.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/plasma_applet_org.kde.plasma.addons.katesessions.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.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.keyboardindicator.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.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.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_applet_org.kde.plasma_applet_dict.mo +share/locale/sv/LC_MESSAGES/plasma_calendar_alternatecalendar.mo +share/locale/sv/LC_MESSAGES/plasma_calendar_astronomicalevents.mo +share/locale/sv/LC_MESSAGES/plasma_runner_CharacterRunner.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_konsoleprofiles.mo +share/locale/sv/LC_MESSAGES/plasma_runner_krunner_dictionary.mo +share/locale/sv/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/sv/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo +share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo +share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo +share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo +share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo +share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo +share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo +share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo +share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo +share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo +share/locale/ta/LC_MESSAGES/plasma_calendar_alternatecalendar.mo +share/locale/ta/LC_MESSAGES/plasma_calendar_astronomicalevents.mo +share/locale/ta/LC_MESSAGES/plasma_runner_CharacterRunner.mo +share/locale/ta/LC_MESSAGES/plasma_runner_converterrunner.mo +share/locale/ta/LC_MESSAGES/plasma_runner_datetime.mo +share/locale/ta/LC_MESSAGES/plasma_runner_krunner_dictionary.mo +share/locale/ta/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo +share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo +share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo +share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo +share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo +share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo +share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo +share/locale/tg/LC_MESSAGES/plasma_calendar_astronomicalevents.mo +share/locale/tg/LC_MESSAGES/plasma_runner_converterrunner.mo +share/locale/tg/LC_MESSAGES/plasma_runner_datetime.mo +share/locale/tg/LC_MESSAGES/plasma_runner_katesessions.mo +share/locale/tg/LC_MESSAGES/plasma_runner_konsoleprofiles.mo +share/locale/tg/LC_MESSAGES/plasma_runner_krunner_dictionary.mo +share/locale/tg/LC_MESSAGES/plasma_wallpaper_org.kde.potd.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.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/kwin_effect_cube.mo +share/locale/tr/LC_MESSAGES/plasma_addons_engine_dict.mo +share/locale/tr/LC_MESSAGES/plasma_addons_profiles_utility.mo +share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.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.keyboardindicator.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.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.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_applet_org.kde.plasma.webbrowser.mo +share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo +share/locale/tr/LC_MESSAGES/plasma_calendar_alternatecalendar.mo +share/locale/tr/LC_MESSAGES/plasma_calendar_astronomicalevents.mo +share/locale/tr/LC_MESSAGES/plasma_runner_CharacterRunner.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_konsoleprofiles.mo +share/locale/tr/LC_MESSAGES/plasma_runner_krunner_dictionary.mo +share/locale/tr/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/tr/LC_MESSAGES/plasma_wallpaper_org.kde.potd.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.timer.mo +share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo +share/locale/ug/LC_MESSAGES/plasma_runner_CharacterRunner.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/kwin_effect_cube.mo +share/locale/uk/LC_MESSAGES/plasma_addons_engine_dict.mo +share/locale/uk/LC_MESSAGES/plasma_addons_profiles_utility.mo +share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.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.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.keyboardindicator.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.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.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_applet_org.kde.plasma.webbrowser.mo +share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo +share/locale/uk/LC_MESSAGES/plasma_calendar_alternatecalendar.mo +share/locale/uk/LC_MESSAGES/plasma_calendar_astronomicalevents.mo +share/locale/uk/LC_MESSAGES/plasma_runner_CharacterRunner.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_konsoleprofiles.mo +share/locale/uk/LC_MESSAGES/plasma_runner_krunner_dictionary.mo +share/locale/uk/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/uk/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo +share/locale/vi/LC_MESSAGES/kwin_effect_cube.mo +share/locale/vi/LC_MESSAGES/plasma_addons_engine_dict.mo +share/locale/vi/LC_MESSAGES/plasma_addons_profiles_utility.mo +share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo +share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo +share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo +share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo +share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo +share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo +share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo +share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo +share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo +share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo +share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo +share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo +share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo +share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo +share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo +share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo +share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo +share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.webbrowser.mo +share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo +share/locale/vi/LC_MESSAGES/plasma_calendar_alternatecalendar.mo +share/locale/vi/LC_MESSAGES/plasma_calendar_astronomicalevents.mo +share/locale/vi/LC_MESSAGES/plasma_runner_CharacterRunner.mo +share/locale/vi/LC_MESSAGES/plasma_runner_converterrunner.mo +share/locale/vi/LC_MESSAGES/plasma_runner_datetime.mo +share/locale/vi/LC_MESSAGES/plasma_runner_katesessions.mo +share/locale/vi/LC_MESSAGES/plasma_runner_konsoleprofiles.mo +share/locale/vi/LC_MESSAGES/plasma_runner_krunner_dictionary.mo +share/locale/vi/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/vi/LC_MESSAGES/plasma_wallpaper_org.kde.potd.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.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/kwin_effect_cube.mo +share/locale/zh_CN/LC_MESSAGES/plasma_addons_engine_dict.mo +share/locale/zh_CN/LC_MESSAGES/plasma_addons_profiles_utility.mo +share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.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.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.keyboardindicator.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.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.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_applet_org.kde.plasma.webbrowser.mo +share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo +share/locale/zh_CN/LC_MESSAGES/plasma_calendar_alternatecalendar.mo +share/locale/zh_CN/LC_MESSAGES/plasma_calendar_astronomicalevents.mo +share/locale/zh_CN/LC_MESSAGES/plasma_runner_CharacterRunner.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_konsoleprofiles.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_CN/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo +share/locale/zh_TW/LC_MESSAGES/plasma_addons_engine_dict.mo +share/locale/zh_TW/LC_MESSAGES/plasma_addons_profiles_utility.mo +share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.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.keyboardindicator.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.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.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_applet_org.kde.plasma.webbrowser.mo +share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo +share/locale/zh_TW/LC_MESSAGES/plasma_calendar_alternatecalendar.mo +share/locale/zh_TW/LC_MESSAGES/plasma_calendar_astronomicalevents.mo +share/locale/zh_TW/LC_MESSAGES/plasma_runner_CharacterRunner.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_konsoleprofiles.mo +share/locale/zh_TW/LC_MESSAGES/plasma_runner_krunner_dictionary.mo +share/locale/zh_TW/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/zh_TW/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo +share/metainfo/org.kde.haenau.appdata.xml +share/metainfo/org.kde.hunyango.appdata.xml +share/metainfo/org.kde.plasma.addons.katesessions.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.keyboardindicator.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.notes.appdata.xml +share/metainfo/org.kde.plasma.quicklaunch.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/weather/wind-arrows.svgz +share/plasma/desktoptheme/default/widgets/timer.svgz +share/plasma/plasmoids/org.kde.plasma.addons.katesessions/contents/ui/KateSessionsItemDelegate.qml +share/plasma/plasmoids/org.kde.plasma.addons.katesessions/contents/ui/Menu.qml +share/plasma/plasmoids/org.kde.plasma.addons.katesessions/contents/ui/main.qml +share/plasma/plasmoids/org.kde.plasma.addons.katesessions/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.json +share/plasma/plasmoids/org.kde.plasma.calculator/contents/ui/main.qml +share/plasma/plasmoids/org.kde.plasma.calculator/metadata.json +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/ColorCircle.qml +share/plasma/plasmoids/org.kde.plasma.colorpicker/contents/ui/ColorContextMenu.qml +share/plasma/plasmoids/org.kde.plasma.colorpicker/contents/ui/CompactRepresentation.qml +share/plasma/plasmoids/org.kde.plasma.colorpicker/contents/ui/ImageColors.qml +share/plasma/plasmoids/org.kde.plasma.colorpicker/contents/ui/LoadingIndicator.qml +share/plasma/plasmoids/org.kde.plasma.colorpicker/contents/ui/configGeneral.qml +share/plasma/plasmoids/org.kde.plasma.colorpicker/contents/ui/logic.js +share/plasma/plasmoids/org.kde.plasma.colorpicker/contents/ui/main.qml +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.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.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.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.json +share/plasma/plasmoids/org.kde.plasma.grouping/contents/ui/main.qml +share/plasma/plasmoids/org.kde.plasma.grouping/metadata.json +share/plasma/plasmoids/org.kde.plasma.keyboardindicator/contents/config/config.qml +share/plasma/plasmoids/org.kde.plasma.keyboardindicator/contents/config/main.xml +share/plasma/plasmoids/org.kde.plasma.keyboardindicator/contents/ui/configAppearance.qml +share/plasma/plasmoids/org.kde.plasma.keyboardindicator/contents/ui/main.qml +share/plasma/plasmoids/org.kde.plasma.keyboardindicator/metadata.json +share/plasma/plasmoids/org.kde.plasma.kickerdash/metadata.json +share/plasma/plasmoids/org.kde.plasma.konsoleprofiles/contents/ui/main.qml +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.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/ShortcutMenuItem.qml +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.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.json +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/layout.js +share/plasma/plasmoids/org.kde.plasma.quicklaunch/contents/ui/main.qml +share/plasma/plasmoids/org.kde.plasma.quicklaunch/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/CompactRepresentation.qml +share/plasma/plasmoids/org.kde.plasma.timer/contents/ui/TimerEdit.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/configTimes.qml +share/plasma/plasmoids/org.kde.plasma.timer/contents/ui/main.qml +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/ActionListDelegate.qml +share/plasma/plasmoids/org.kde.plasma.userswitcher/contents/ui/ListDelegate.qml +share/plasma/plasmoids/org.kde.plasma.userswitcher/contents/ui/UserListDelegate.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.json +share/plasma/plasmoids/org.kde.plasma.weather/contents/config/config.qml +share/plasma/plasmoids/org.kde.plasma.weather/contents/config/main.xml +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/ForecastView.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/NoticesView.qml +share/plasma/plasmoids/org.kde.plasma.weather/contents/ui/SwitchPanel.qml +share/plasma/plasmoids/org.kde.plasma.weather/contents/ui/TopPanel.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.json +share/plasma/plasmoids/org.kde.plasma.webbrowser/contents/config/config.qml +share/plasma/plasmoids/org.kde.plasma.webbrowser/contents/config/main.xml +share/plasma/plasmoids/org.kde.plasma.webbrowser/contents/ui/ConfigAppearance.qml +share/plasma/plasmoids/org.kde.plasma.webbrowser/contents/ui/ConfigGeneral.qml +share/plasma/plasmoids/org.kde.plasma.webbrowser/contents/ui/main.qml +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/config/main.xml +share/plasma/plasmoids/org.kde.plasma_applet_dict/contents/ui/AvailableDictSheet.qml +share/plasma/plasmoids/org.kde.plasma_applet_dict/contents/ui/ConfigDictionaries.qml +share/plasma/plasmoids/org.kde.plasma_applet_dict/contents/ui/DictItemDelegate.qml +share/plasma/plasmoids/org.kde.plasma_applet_dict/contents/ui/main.qml +share/plasma/plasmoids/org.kde.plasma_applet_dict/metadata.json +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.json +share/plasma/wallpapers/org.kde.hunyango/contents/ui/ColorProvider.qml +share/plasma/wallpapers/org.kde.hunyango/contents/ui/main.qml +share/plasma/wallpapers/org.kde.hunyango/contents/ui/qmldir +share/plasma/wallpapers/org.kde.hunyango/contents/ui/wallpaper.svgz +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/ActionContextMenu.qml +share/plasma/wallpapers/org.kde.potd/contents/ui/WallpaperDelegate.qml +share/plasma/wallpapers/org.kde.potd/contents/ui/WallpaperPreview.qml +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.json +share/qlogging-categories6/kdeplasma-addons.categories diff --git a/x11-wm/Makefile b/x11-wm/Makefile index 2633178cbfb9..f13c60aec6c1 100644 --- a/x11-wm/Makefile +++ b/x11-wm/Makefile @@ -1,141 +1,143 @@ COMMENT = X11 window managers SUBDIR += afterstep SUBDIR += afterstep-stable SUBDIR += amiwm SUBDIR += antiwm SUBDIR += aphelia SUBDIR += awesome SUBDIR += awesome-vicious SUBDIR += bbkeys SUBDIR += bbpager SUBDIR += berry SUBDIR += blackbox SUBDIR += bspwm SUBDIR += bspwm-devel SUBDIR += cage SUBDIR += cagebreak SUBDIR += chamfer SUBDIR += compiz SUBDIR += compiz-plugins-extra SUBDIR += compiz-plugins-main SUBDIR += compiz-plugins-unsupported SUBDIR += compton SUBDIR += ctwm SUBDIR += cwm SUBDIR += deforaos-panel SUBDIR += devilspie SUBDIR += devilspie2 SUBDIR += durden SUBDIR += dwl SUBDIR += dwm SUBDIR += e16 SUBDIR += e16-docs SUBDIR += echinus SUBDIR += emerald SUBDIR += emwm SUBDIR += emwm-utils SUBDIR += enlightenment SUBDIR += epplets SUBDIR += euclid-wm SUBDIR += evilwm SUBDIR += fbcmd SUBDIR += fluxbox SUBDIR += fluxter SUBDIR += flwm SUBDIR += fswm SUBDIR += fvwm2 SUBDIR += fvwm3 SUBDIR += gamescope SUBDIR += herbstluftwm SUBDIR += hikari SUBDIR += hs-xmonad SUBDIR += hyprland SUBDIR += i3 SUBDIR += icewm SUBDIR += ittywm SUBDIR += jewel SUBDIR += jwm SUBDIR += kickshaw SUBDIR += kwinft SUBDIR += labwc SUBDIR += larswm SUBDIR += leftwm SUBDIR += libcompizconfig SUBDIR += libdockapp SUBDIR += libwraster SUBDIR += lwm SUBDIR += lxappearance-obconf SUBDIR += lxqt SUBDIR += lxqt-panel SUBDIR += lxqt-session SUBDIR += lxsession SUBDIR += magpie SUBDIR += marco SUBDIR += mcwm SUBDIR += metacity SUBDIR += muffin SUBDIR += mutter SUBDIR += niri SUBDIR += nscde SUBDIR += obconf SUBDIR += obconf-qt SUBDIR += obpager SUBDIR += openbox SUBDIR += oroborus SUBDIR += peksystray SUBDIR += pekwm SUBDIR += phluid SUBDIR += phoc SUBDIR += picom SUBDIR += piewm SUBDIR += plasma5-kdecoration SUBDIR += plasma5-kwin + SUBDIR += plasma6-kdecoration + SUBDIR += plasma6-kwin SUBDIR += pwm SUBDIR += qtile SUBDIR += ratmen SUBDIR += ratpoison SUBDIR += river SUBDIR += rubygem-uh-layout SUBDIR += rubygem-uh-wm SUBDIR += sawfish SUBDIR += sawfish-pager SUBDIR += sdorfehs SUBDIR += selectwm SUBDIR += skippy-xd SUBDIR += spectrwm SUBDIR += stumpwm SUBDIR += subtle SUBDIR += sway SUBDIR += sway-devel SUBDIR += swayfx SUBDIR += tinywm SUBDIR += transset SUBDIR += treewm SUBDIR += tvtwm SUBDIR += twm SUBDIR += vtwm SUBDIR += w9wm SUBDIR += wayfire SUBDIR += wayfire-plugins-extra SUBDIR += windowmaker SUBDIR += wm2 SUBDIR += wmakerconf SUBDIR += wmanager SUBDIR += wmanager-addons SUBDIR += wmconfig SUBDIR += wmii SUBDIR += wmii-devel SUBDIR += wmname SUBDIR += wmx SUBDIR += xcompmgr SUBDIR += xdgmenumaker SUBDIR += xfce4 SUBDIR += xfce4-desktop SUBDIR += xfce4-panel SUBDIR += xfce4-panel-profiles SUBDIR += xfce4-session SUBDIR += xfce4-wm SUBDIR += yeahwm .include diff --git a/x11-wm/plasma6-kdecoration/Makefile b/x11-wm/plasma6-kdecoration/Makefile new file mode 100644 index 000000000000..cb5a3c271098 --- /dev/null +++ b/x11-wm/plasma6-kdecoration/Makefile @@ -0,0 +1,14 @@ +PORTNAME= kdecoration +DISTVERSION= ${KDE_PLASMA_VERSION} +CATEGORIES= x11-wm kde kde-plasma + +COMMENT= Plugin-based library to create window decorations +MAINTAINER= kde@FreeBSD.org + +USES= cmake gettext gl kde:6 qt:6 tar:xz +USE_GL= gl opengl +USE_KDE= coreaddons i18n \ + ecm:build +USE_QT= base + +.include diff --git a/x11-wm/plasma6-kdecoration/distinfo b/x11-wm/plasma6-kdecoration/distinfo new file mode 100644 index 000000000000..c1abc3111a37 --- /dev/null +++ b/x11-wm/plasma6-kdecoration/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1701525078 +SHA256 (KDE/plasma/5.90.0/kdecoration-5.90.0.tar.xz) = 63120fe05aea12fd519fcae9bfbfdd5f6efc3fdebcf1eeae446f01c284f4f16e +SIZE (KDE/plasma/5.90.0/kdecoration-5.90.0.tar.xz) = 54512 diff --git a/x11-wm/plasma6-kdecoration/pkg-plist b/x11-wm/plasma6-kdecoration/pkg-plist new file mode 100644 index 000000000000..e0d3981079c1 --- /dev/null +++ b/x11-wm/plasma6-kdecoration/pkg-plist @@ -0,0 +1,79 @@ +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/DecorationThemeProvider +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/decorationthemeprovider.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/KF6/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.%%KDE_PLASMA_VERSION%% +lib/libkdecorations2.so.6 +lib/libkdecorations2private.so +lib/libkdecorations2private.so.11 +lib/libkdecorations2private.so.%%KDE_PLASMA_VERSION%% +share/locale/ar/LC_MESSAGES/kdecoration.mo +share/locale/ast/LC_MESSAGES/kdecoration.mo +share/locale/az/LC_MESSAGES/kdecoration.mo +share/locale/bg/LC_MESSAGES/kdecoration.mo +share/locale/ca/LC_MESSAGES/kdecoration.mo +share/locale/ca@valencia/LC_MESSAGES/kdecoration.mo +share/locale/cs/LC_MESSAGES/kdecoration.mo +share/locale/da/LC_MESSAGES/kdecoration.mo +share/locale/de/LC_MESSAGES/kdecoration.mo +share/locale/el/LC_MESSAGES/kdecoration.mo +share/locale/en_GB/LC_MESSAGES/kdecoration.mo +share/locale/eo/LC_MESSAGES/kdecoration.mo +share/locale/es/LC_MESSAGES/kdecoration.mo +share/locale/et/LC_MESSAGES/kdecoration.mo +share/locale/eu/LC_MESSAGES/kdecoration.mo +share/locale/fi/LC_MESSAGES/kdecoration.mo +share/locale/fr/LC_MESSAGES/kdecoration.mo +share/locale/gl/LC_MESSAGES/kdecoration.mo +share/locale/hi/LC_MESSAGES/kdecoration.mo +share/locale/hu/LC_MESSAGES/kdecoration.mo +share/locale/ia/LC_MESSAGES/kdecoration.mo +share/locale/id/LC_MESSAGES/kdecoration.mo +share/locale/is/LC_MESSAGES/kdecoration.mo +share/locale/it/LC_MESSAGES/kdecoration.mo +share/locale/ja/LC_MESSAGES/kdecoration.mo +share/locale/ka/LC_MESSAGES/kdecoration.mo +share/locale/ko/LC_MESSAGES/kdecoration.mo +share/locale/lt/LC_MESSAGES/kdecoration.mo +share/locale/ml/LC_MESSAGES/kdecoration.mo +share/locale/nl/LC_MESSAGES/kdecoration.mo +share/locale/nn/LC_MESSAGES/kdecoration.mo +share/locale/pa/LC_MESSAGES/kdecoration.mo +share/locale/pl/LC_MESSAGES/kdecoration.mo +share/locale/pt/LC_MESSAGES/kdecoration.mo +share/locale/pt_BR/LC_MESSAGES/kdecoration.mo +share/locale/ro/LC_MESSAGES/kdecoration.mo +share/locale/ru/LC_MESSAGES/kdecoration.mo +share/locale/sa/LC_MESSAGES/kdecoration.mo +share/locale/sk/LC_MESSAGES/kdecoration.mo +share/locale/sl/LC_MESSAGES/kdecoration.mo +share/locale/sv/LC_MESSAGES/kdecoration.mo +share/locale/tr/LC_MESSAGES/kdecoration.mo +share/locale/uk/LC_MESSAGES/kdecoration.mo +share/locale/zh_CN/LC_MESSAGES/kdecoration.mo +share/locale/zh_TW/LC_MESSAGES/kdecoration.mo diff --git a/x11-wm/plasma6-kwin/Makefile b/x11-wm/plasma6-kwin/Makefile new file mode 100644 index 000000000000..84933bacdd8a --- /dev/null +++ b/x11-wm/plasma6-kwin/Makefile @@ -0,0 +1,48 @@ +PORTNAME= kwin +DISTVERSION= ${KDE_PLASMA_VERSION} +CATEGORIES= x11-wm kde kde-plasma + +COMMENT= Easy to use, but flexible, X Window Manager and Wayland Compositor +MAINTAINER= kde@FreeBSD.org + +BUILD_DEPENDS= ${LOCALBASE}/include/linux/input.h:devel/evdev-proto \ + hwdata>0:misc/hwdata \ + wayland-protocols>0:graphics/wayland-protocols \ + xwayland-devel>0:x11-servers/xwayland-devel +LIB_DEPENDS= libdisplay-info.so:sysutils/libdisplay-info \ + libdrm.so:graphics/libdrm \ + libepoxy.so:graphics/libepoxy \ + libfontconfig.so:x11-fonts/fontconfig \ + libfreetype.so:print/freetype2 \ + libinput.so:x11/libinput \ + liblcms2.so:graphics/lcms2 \ + libpipewire-0.3.so:multimedia/pipewire \ + libudev.so:devel/libudev-devd \ + libwayland-client.so:graphics/wayland \ + libxcb-cursor.so:x11/xcb-util-cursor \ + libxcb-icccm.so:x11/xcb-util-wm \ + libxcb-keysyms.so:x11/xcb-util-keysyms \ + libxcvt.so:x11/libxcvt \ + libxkbcommon.so:x11/libxkbcommon \ + libqaccessibilityclient-qt6.so:accessibility/libqaccessibilityclient@qt6 +RUN_DEPENDS= hwdata>0:misc/hwdata \ + xwayland-devel>0:x11-servers/xwayland-devel + +USES= cmake gettext gl kde:6 pkgconfig python qt:6 shebangfix tar:xz \ + xorg +USE_GL= egl gbm gl opengl +USE_KDE= activities attica5 auth breeze colorscheme config \ + configwidgets coreaddons crash dbusaddons decoration \ + globalaccel globalacceld i18n idletime kcmutils kdeclarative \ + kpipewire kscreenlocker libplasma newstuff notifications \ + package runner service svg wayland widgetsaddons windowsystem \ + xmlgui \ + ecm:build plasma-wayland-protocols:build +USE_QT= base declarative multimedia sensors tools wayland +USE_XORG= ice sm x11 xcb xext xi + +BINARY_ALIAS= python3=${PYTHON_CMD} +SHEBANG_FILES= kconf_update/kwin-6.0-overview-activities-shortcuts.py \ + src/plugins/strip-effect-metadata.py + +.include diff --git a/x11-wm/plasma6-kwin/distinfo b/x11-wm/plasma6-kwin/distinfo new file mode 100644 index 000000000000..be7d88f56c93 --- /dev/null +++ b/x11-wm/plasma6-kwin/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1701554041 +SHA256 (KDE/plasma/5.90.0/kwin-5.90.0.tar.xz) = 4866568edb9d2bae8e3570a7a492a36b2f2483f9d3a520eb88a62cbfdd54a5e1 +SIZE (KDE/plasma/5.90.0/kwin-5.90.0.tar.xz) = 7778520 diff --git a/x11-wm/plasma6-kwin/files/patch-cmake_modules_Findhwdata.cmake b/x11-wm/plasma6-kwin/files/patch-cmake_modules_Findhwdata.cmake new file mode 100644 index 000000000000..1e09fac7a31c --- /dev/null +++ b/x11-wm/plasma6-kwin/files/patch-cmake_modules_Findhwdata.cmake @@ -0,0 +1,13 @@ +--- cmake/modules/Findhwdata.cmake.orig 2023-02-21 19:51:03 UTC ++++ cmake/modules/Findhwdata.cmake +@@ -10,8 +10,8 @@ if (UNIX AND NOT APPLE) + # SPDX-License-Identifier: BSD-3-Clause + + if (UNIX AND NOT APPLE) +- find_path(hwdata_DIR NAMES hwdata/pnp.ids HINTS /usr/share ENV XDG_DATA_DIRS) +- find_file(hwdata_PNPIDS_FILE NAMES hwdata/pnp.ids HINTS /usr/share) ++ find_path(hwdata_DIR NAMES hwdata/pnp.ids HINTS ${CMAKE_INSTALL_PREFIX}/share/hwdata /usr/share ENV XDG_DATA_DIRS) ++ find_file(hwdata_PNPIDS_FILE NAMES hwdata/pnp.ids HINTS ${CMAKE_INSTALL_PREFIX}/share/hwdata /usr/share) + if (NOT hwdata_DIR OR NOT hwdata_PNPIDS_FILE) + set(hwdata_FOUND FALSE) + else() diff --git a/x11-wm/plasma6-kwin/pkg-plist b/x11-wm/plasma6-kwin/pkg-plist new file mode 100644 index 000000000000..e4b096b15292 --- /dev/null +++ b/x11-wm/plasma6-kwin/pkg-plist @@ -0,0 +1,1560 @@ +bin/kwin_wayland +bin/kwin_wayland_wrapper +bin/kwin_x11 +include/kwin/config-kwin.h +include/kwin/core/colorspace.h +include/kwin/core/output.h +include/kwin/core/renderloop.h +include/kwin/core/rendertarget.h +include/kwin/core/renderviewport.h +include/kwin/effect/animationeffect.h +include/kwin/effect/effect.h +include/kwin/effect/effecthandler.h +include/kwin/effect/effecttogglablestate.h +include/kwin/effect/effectwindow.h +include/kwin/effect/globals.h +include/kwin/effect/offscreeneffect.h +include/kwin/effect/offscreenquickview.h +include/kwin/effect/quickeffect.h +include/kwin/effect/timeline.h +include/kwin/kwin_export.h +include/kwin/opengl/glframebuffer.h +include/kwin/opengl/gllut.h +include/kwin/opengl/gllut3D.h +include/kwin/opengl/glplatform.h +include/kwin/opengl/glshader.h +include/kwin/opengl/glshadermanager.h +include/kwin/opengl/gltexture.h +include/kwin/opengl/glutils.h +include/kwin/opengl/glutils_funcs.h +include/kwin/opengl/glvertexbuffer.h +include/kwin/opengl/openglcontext.h +include/kwin/scene/item.h +include/kwin/scene/itemgeometry.h +include/kwin/utils/edid.h +include/kwin/wayland/appmenu.h +include/kwin/wayland/blur.h +include/kwin/wayland/compositor.h +include/kwin/wayland/contenttype_v1.h +include/kwin/wayland/contrast.h +include/kwin/wayland/cursorshape_v1.h +include/kwin/wayland/datacontroldevice_v1.h +include/kwin/wayland/datacontroldevicemanager_v1.h +include/kwin/wayland/datacontroloffer_v1.h +include/kwin/wayland/datacontrolsource_v1.h +include/kwin/wayland/datadevice.h +include/kwin/wayland/datadevicemanager.h +include/kwin/wayland/dataoffer.h +include/kwin/wayland/datasource.h +include/kwin/wayland/dpms.h +include/kwin/wayland/drmlease_v1.h +include/kwin/wayland/fractionalscale_v1.h +include/kwin/wayland/frog_colormanagement_v1.h +include/kwin/wayland/idle.h +include/kwin/wayland/idleinhibit_v1.h +include/kwin/wayland/idlenotify_v1.h +include/kwin/wayland/inputmethod_v1.h +include/kwin/wayland/keyboard.h +include/kwin/wayland/keyboard_shortcuts_inhibit_v1.h +include/kwin/wayland/keystate.h +include/kwin/wayland/layershell_v1.h +include/kwin/wayland/lockscreen_overlay_v1.h +include/kwin/wayland/output.h +include/kwin/wayland/output_order_v1.h +include/kwin/wayland/outputdevice_v2.h +include/kwin/wayland/outputmanagement_v2.h +include/kwin/wayland/plasmashell.h +include/kwin/wayland/plasmavirtualdesktop.h +include/kwin/wayland/plasmawindowmanagement.h +include/kwin/wayland/pointer.h +include/kwin/wayland/pointerconstraints_v1.h +include/kwin/wayland/pointergestures_v1.h +include/kwin/wayland/presentationtime.h +include/kwin/wayland/primaryselectiondevice_v1.h +include/kwin/wayland/primaryselectiondevicemanager_v1.h +include/kwin/wayland/primaryselectionoffer_v1.h +include/kwin/wayland/primaryselectionsource_v1.h +include/kwin/wayland/relativepointer_v1.h +include/kwin/wayland/screencast_v1.h +include/kwin/wayland/screenedge_v1.h +include/kwin/wayland/seat.h +include/kwin/wayland/securitycontext_v1.h +include/kwin/wayland/server_decoration.h +include/kwin/wayland/server_decoration_palette.h +include/kwin/wayland/shadow.h +include/kwin/wayland/slide.h +include/kwin/wayland/subcompositor.h +include/kwin/wayland/surface.h +include/kwin/wayland/tablet_v2.h +include/kwin/wayland/tearingcontrol_v1.h +include/kwin/wayland/textinput_v1.h +include/kwin/wayland/textinput_v2.h +include/kwin/wayland/textinput_v3.h +include/kwin/wayland/touch.h +include/kwin/wayland/viewporter.h +include/kwin/wayland/xdgactivation_v1.h +include/kwin/wayland/xdgdecoration_v1.h +include/kwin/wayland/xdgforeign_v2.h +include/kwin/wayland/xdgoutput_v1.h +include/kwin/wayland/xdgshell.h +include/kwin/wayland/xwaylandkeyboardgrab_v1.h +include/kwin/wayland/xwaylandshell_v1.h +lib/cmake/KWin/KWinConfig.cmake +lib/cmake/KWin/KWinConfigVersion.cmake +lib/cmake/KWin/KWinTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/KWin/KWinTargets.cmake +lib/cmake/KWinDBusInterface/KWinDBusInterfaceConfig.cmake +lib/kconf_update_bin/kwin5_update_default_rules +lib/libexec/kwin-applywindowdecoration +lib/libexec/kwin_killer_helper +lib/libkcmkwincommon.so.%%KDE_PLASMA_VERSION%% +lib/libkcmkwincommon.so.6 +lib/libkwin.so +lib/libkwin.so.%%KDE_PLASMA_VERSION%% +lib/libkwin.so.6 +%%QT_PLUGINDIR%%/kf6/packagestructure/kwin_aurorae.so +%%QT_PLUGINDIR%%/kf6/packagestructure/kwin_decoration.so +%%QT_PLUGINDIR%%/kf6/packagestructure/kwin_effect.so +%%QT_PLUGINDIR%%/kf6/packagestructure/kwin_scripts.so +%%QT_PLUGINDIR%%/kf6/packagestructure/kwin_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_colorblindnesscorrection_config.so +%%QT_PLUGINDIR%%/kwin/effects/configs/kwin_diminactive_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_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_overview_config.so +%%QT_PLUGINDIR%%/kwin/effects/configs/kwin_showpaint_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_tileseditor_config.so +%%QT_PLUGINDIR%%/kwin/effects/configs/kwin_trackmouse_config.so +%%QT_PLUGINDIR%%/kwin/effects/configs/kwin_windowview_config.so +%%QT_PLUGINDIR%%/kwin/effects/configs/kwin_wobblywindows_config.so +%%QT_PLUGINDIR%%/kwin/effects/configs/kwin_zoom_config.so +%%QT_PLUGINDIR%%/kwin/plugins/BounceKeysPlugin.so +%%QT_PLUGINDIR%%/kwin/plugins/StickyKeysPlugin.so +%%QT_PLUGINDIR%%/kwin/plugins/buttonsrebind.so +%%QT_PLUGINDIR%%/kwin/plugins/krunnerintegration.so +%%QT_PLUGINDIR%%/kwin/plugins/nightcolor.so +%%QT_PLUGINDIR%%/kwin/plugins/screencast.so +%%QT_PLUGINDIR%%/org.kde.kdecoration2.kcm/kcm_auroraedecoration.so +%%QT_PLUGINDIR%%/org.kde.kdecoration2/org.kde.kwin.aurorae.so +%%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_kwin_effects.so +%%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_kwin_scripts.so +%%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_kwin_virtualdesktops.so +%%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_kwindecoration.so +%%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_kwinrules.so +%%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_kwinxwayland.so +%%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_virtualkeyboard.so +%%QT_PLUGINDIR%%/plasma/kcms/systemsettings_qwidgets/kcm_kwinoptions.so +%%QT_PLUGINDIR%%/plasma/kcms/systemsettings_qwidgets/kcm_kwinscreenedges.so +%%QT_PLUGINDIR%%/plasma/kcms/systemsettings_qwidgets/kcm_kwintabbox.so +%%QT_PLUGINDIR%%/plasma/kcms/systemsettings_qwidgets/kcm_kwintouchscreen.so +%%QT_PLUGINDIR%%/plasma/kcms/systemsettings_qwidgets/kwincompositing.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/effects/WindowHeap.qml +%%QT_QMLDIR%%/org/kde/kwin/private/effects/WindowHeapDelegate.qml +%%QT_QMLDIR%%/org/kde/kwin/private/effects/effectsplugin.qmltypes +%%QT_QMLDIR%%/org/kde/kwin/private/effects/kde-qmlmodule.version +%%QT_QMLDIR%%/org/kde/kwin/private/effects/libeffectsplugin.so +%%QT_QMLDIR%%/org/kde/kwin/private/effects/qmldir +%%QT_QMLDIR%%/org/kde/kwin/private/kdecoration/libkdecorationprivatedeclarative.so +%%QT_QMLDIR%%/org/kde/kwin/private/kdecoration/qmldir +lib/systemd/user/plasma-kwin_wayland.service +lib/systemd/user/plasma-kwin_x11.service +share/applications/kcm_kwin_effects.desktop +share/applications/kcm_kwin_scripts.desktop +share/applications/kcm_kwin_virtualdesktops.desktop +share/applications/kcm_kwindecoration.desktop +share/applications/kcm_kwinoptions.desktop +share/applications/kcm_kwinrules.desktop +share/applications/kcm_kwintabbox.desktop +share/applications/kcm_kwinxwayland.desktop +share/applications/kcm_virtualkeyboard.desktop +share/applications/kwincompositing.desktop +share/applications/org.kde.kwin.killer.desktop +share/config.kcfg/kwin.kcfg +share/config.kcfg/kwindecorationsettings.kcfg +share/config.kcfg/nightcolorsettings.kcfg +share/config.kcfg/virtualdesktopssettings.kcfg +share/dbus-1/interfaces/org.kde.KWin.Plugins.xml +share/dbus-1/interfaces/org.kde.KWin.TabletModeManager.xml +share/dbus-1/interfaces/org.kde.KWin.VirtualDesktopManager.xml +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/dbus-1/interfaces/org.kde.kwin.InputDevice.xml +share/dbus-1/interfaces/org.kde.kwin.VirtualKeyboard.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/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/index.cache.bz2 +share/doc/HTML/ca/kcontrol/kwineffects/index.docbook +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/kwintouchscreen/index.cache.bz2 +share/doc/HTML/ca/kcontrol/kwintouchscreen/index.docbook +share/doc/HTML/ca/kcontrol/kwinvirtualkeyboard/index.cache.bz2 +share/doc/HTML/ca/kcontrol/kwinvirtualkeyboard/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/index.cache.bz2 +share/doc/HTML/ca/kcontrol/windowspecific/index.docbook +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/kwintouchscreen/index.cache.bz2 +share/doc/HTML/de/kcontrol/kwintouchscreen/index.docbook +share/doc/HTML/de/kcontrol/kwinvirtualkeyboard/index.cache.bz2 +share/doc/HTML/de/kcontrol/kwinvirtualkeyboard/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/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/kwintabbox/taskswitcher.png +share/doc/HTML/en/kcontrol/kwintouchscreen/index.cache.bz2 +share/doc/HTML/en/kcontrol/kwintouchscreen/index.docbook +share/doc/HTML/en/kcontrol/kwinvirtualkeyboard/index.cache.bz2 +share/doc/HTML/en/kcontrol/kwinvirtualkeyboard/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/es/kcontrol/kwindecoration/index.cache.bz2 +share/doc/HTML/es/kcontrol/kwindecoration/index.docbook +share/doc/HTML/es/kcontrol/kwineffects/index.cache.bz2 +share/doc/HTML/es/kcontrol/kwineffects/index.docbook +share/doc/HTML/es/kcontrol/kwinscreenedges/index.cache.bz2 +share/doc/HTML/es/kcontrol/kwinscreenedges/index.docbook +share/doc/HTML/es/kcontrol/kwintouchscreen/index.cache.bz2 +share/doc/HTML/es/kcontrol/kwintouchscreen/index.docbook +share/doc/HTML/es/kcontrol/kwinvirtualkeyboard/index.cache.bz2 +share/doc/HTML/es/kcontrol/kwinvirtualkeyboard/index.docbook +share/doc/HTML/fr/kcontrol/desktop/index.cache.bz2 +share/doc/HTML/fr/kcontrol/desktop/index.docbook +share/doc/HTML/fr/kcontrol/kwindecoration/index.cache.bz2 +share/doc/HTML/fr/kcontrol/kwindecoration/index.docbook +share/doc/HTML/fr/kcontrol/kwinscreenedges/index.cache.bz2 +share/doc/HTML/fr/kcontrol/kwinscreenedges/index.docbook +share/doc/HTML/fr/kcontrol/kwintabbox/index.cache.bz2 +share/doc/HTML/fr/kcontrol/kwintabbox/index.docbook +share/doc/HTML/fr/kcontrol/windowspecific/index.cache.bz2 +share/doc/HTML/fr/kcontrol/windowspecific/index.docbook +share/doc/HTML/id/kcontrol/desktop/index.cache.bz2 +share/doc/HTML/id/kcontrol/desktop/index.docbook +share/doc/HTML/id/kcontrol/kwindecoration/index.cache.bz2 +share/doc/HTML/id/kcontrol/kwindecoration/index.docbook +share/doc/HTML/id/kcontrol/kwineffects/index.cache.bz2 +share/doc/HTML/id/kcontrol/kwineffects/index.docbook +share/doc/HTML/id/kcontrol/kwinscreenedges/index.cache.bz2 +share/doc/HTML/id/kcontrol/kwinscreenedges/index.docbook +share/doc/HTML/id/kcontrol/kwintabbox/index.cache.bz2 +share/doc/HTML/id/kcontrol/kwintabbox/index.docbook +share/doc/HTML/id/kcontrol/windowbehaviour/index.cache.bz2 +share/doc/HTML/id/kcontrol/windowbehaviour/index.docbook +share/doc/HTML/id/kcontrol/windowspecific/index.cache.bz2 +share/doc/HTML/id/kcontrol/windowspecific/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/kwintouchscreen/index.cache.bz2 +share/doc/HTML/it/kcontrol/kwintouchscreen/index.docbook +share/doc/HTML/it/kcontrol/kwinvirtualkeyboard/index.cache.bz2 +share/doc/HTML/it/kcontrol/kwinvirtualkeyboard/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/kwintouchscreen/index.cache.bz2 +share/doc/HTML/nl/kcontrol/kwintouchscreen/index.docbook +share/doc/HTML/nl/kcontrol/kwinvirtualkeyboard/index.cache.bz2 +share/doc/HTML/nl/kcontrol/kwinvirtualkeyboard/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/desktop/index.cache.bz2 +share/doc/HTML/ru/kcontrol/desktop/index.docbook +share/doc/HTML/ru/kcontrol/kwindecoration/button.png +share/doc/HTML/ru/kcontrol/kwindecoration/configure.png +share/doc/HTML/ru/kcontrol/kwindecoration/decoration.png +share/doc/HTML/ru/kcontrol/kwindecoration/index.cache.bz2 +share/doc/HTML/ru/kcontrol/kwindecoration/index.docbook +share/doc/HTML/ru/kcontrol/kwindecoration/main.png +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/kwintouchscreen/index.cache.bz2 +share/doc/HTML/ru/kcontrol/kwintouchscreen/index.docbook +share/doc/HTML/ru/kcontrol/kwinvirtualkeyboard/index.cache.bz2 +share/doc/HTML/ru/kcontrol/kwinvirtualkeyboard/index.docbook +share/doc/HTML/ru/kcontrol/windowbehaviour/index.cache.bz2 +share/doc/HTML/ru/kcontrol/windowbehaviour/index.docbook +share/doc/HTML/ru/kcontrol/windowspecific/akgregator-info.png +share/doc/HTML/ru/kcontrol/windowspecific/akregator-attributes.png +share/doc/HTML/ru/kcontrol/windowspecific/akregator-fav.png +share/doc/HTML/ru/kcontrol/windowspecific/config-win-behavior.png +share/doc/HTML/ru/kcontrol/windowspecific/emacs-attribute.png +share/doc/HTML/ru/kcontrol/windowspecific/emacs-info.png +share/doc/HTML/ru/kcontrol/windowspecific/focus-stealing-pop2top-attribute.png +share/doc/HTML/ru/kcontrol/windowspecific/index.cache.bz2 +share/doc/HTML/ru/kcontrol/windowspecific/index.docbook +share/doc/HTML/ru/kcontrol/windowspecific/knotes-attribute.png +share/doc/HTML/ru/kcontrol/windowspecific/knotes-info.png +share/doc/HTML/ru/kcontrol/windowspecific/kopete-attribute-2.png +share/doc/HTML/ru/kcontrol/windowspecific/kopete-chat-attribute.png +share/doc/HTML/ru/kcontrol/windowspecific/kopete-chat-info.png +share/doc/HTML/ru/kcontrol/windowspecific/kopete-info.png +share/doc/HTML/ru/kcontrol/windowspecific/kwin-detect-window.png +share/doc/HTML/ru/kcontrol/windowspecific/kwin-kopete-rules.png +share/doc/HTML/ru/kcontrol/windowspecific/kwin-rule-editor.png +share/doc/HTML/ru/kcontrol/windowspecific/kwin-rules-main-n-akregator.png +share/doc/HTML/ru/kcontrol/windowspecific/kwin-rules-main.png +share/doc/HTML/ru/kcontrol/windowspecific/kwin-rules-ordering.png +share/doc/HTML/ru/kcontrol/windowspecific/kwin-window-attributes.png +share/doc/HTML/ru/kcontrol/windowspecific/kwin-window-matching.png +share/doc/HTML/ru/kcontrol/windowspecific/tbird-compose-attribute.png +share/doc/HTML/ru/kcontrol/windowspecific/tbird-compose-info.png +share/doc/HTML/ru/kcontrol/windowspecific/tbird-main-attribute.png +share/doc/HTML/ru/kcontrol/windowspecific/tbird-main-info.png +share/doc/HTML/ru/kcontrol/windowspecific/tbird-reminder-attribute-2.png +share/doc/HTML/ru/kcontrol/windowspecific/tbird-reminder-info.png +share/doc/HTML/ru/kcontrol/windowspecific/window-matching-emacs.png +share/doc/HTML/ru/kcontrol/windowspecific/window-matching-init.png +share/doc/HTML/ru/kcontrol/windowspecific/window-matching-knotes.png +share/doc/HTML/ru/kcontrol/windowspecific/window-matching-kopete-chat.png +share/doc/HTML/ru/kcontrol/windowspecific/window-matching-kopete.png +share/doc/HTML/ru/kcontrol/windowspecific/window-matching-ready-akregator.png +share/doc/HTML/ru/kcontrol/windowspecific/window-matching-tbird-compose.png +share/doc/HTML/ru/kcontrol/windowspecific/window-matching-tbird-main.png +share/doc/HTML/ru/kcontrol/windowspecific/window-matching-tbird-reminder.png +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/sv/kcontrol/desktop/index.cache.bz2 +share/doc/HTML/sv/kcontrol/desktop/index.docbook +share/doc/HTML/sv/kcontrol/kwindecoration/index.cache.bz2 +share/doc/HTML/sv/kcontrol/kwindecoration/index.docbook +share/doc/HTML/sv/kcontrol/kwineffects/index.cache.bz2 +share/doc/HTML/sv/kcontrol/kwineffects/index.docbook +share/doc/HTML/sv/kcontrol/kwinscreenedges/index.cache.bz2 +share/doc/HTML/sv/kcontrol/kwinscreenedges/index.docbook +share/doc/HTML/sv/kcontrol/kwintabbox/index.cache.bz2 +share/doc/HTML/sv/kcontrol/kwintabbox/index.docbook +share/doc/HTML/sv/kcontrol/kwintouchscreen/index.cache.bz2 +share/doc/HTML/sv/kcontrol/kwintouchscreen/index.docbook +share/doc/HTML/sv/kcontrol/kwinvirtualkeyboard/index.cache.bz2 +share/doc/HTML/sv/kcontrol/kwinvirtualkeyboard/index.docbook +share/doc/HTML/sv/kcontrol/windowbehaviour/index.cache.bz2 +share/doc/HTML/sv/kcontrol/windowbehaviour/index.docbook +share/doc/HTML/sv/kcontrol/windowspecific/index.cache.bz2 +share/doc/HTML/sv/kcontrol/windowspecific/index.docbook +share/doc/HTML/tr/kcontrol/desktop/index.cache.bz2 +share/doc/HTML/tr/kcontrol/desktop/index.docbook +share/doc/HTML/tr/kcontrol/kwindecoration/index.cache.bz2 +share/doc/HTML/tr/kcontrol/kwindecoration/index.docbook +share/doc/HTML/tr/kcontrol/kwineffects/index.cache.bz2 +share/doc/HTML/tr/kcontrol/kwineffects/index.docbook +share/doc/HTML/tr/kcontrol/kwinscreenedges/index.cache.bz2 +share/doc/HTML/tr/kcontrol/kwinscreenedges/index.docbook +share/doc/HTML/tr/kcontrol/kwintabbox/index.cache.bz2 +share/doc/HTML/tr/kcontrol/kwintabbox/index.docbook +share/doc/HTML/tr/kcontrol/kwintouchscreen/index.cache.bz2 +share/doc/HTML/tr/kcontrol/kwintouchscreen/index.docbook +share/doc/HTML/tr/kcontrol/kwinvirtualkeyboard/index.cache.bz2 +share/doc/HTML/tr/kcontrol/kwinvirtualkeyboard/index.docbook +share/doc/HTML/tr/kcontrol/windowbehaviour/index.cache.bz2 +share/doc/HTML/tr/kcontrol/windowbehaviour/index.docbook +share/doc/HTML/tr/kcontrol/windowspecific/index.cache.bz2 +share/doc/HTML/tr/kcontrol/windowspecific/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/kwintouchscreen/index.cache.bz2 +share/doc/HTML/uk/kcontrol/kwintouchscreen/index.docbook +share/doc/HTML/uk/kcontrol/kwinvirtualkeyboard/index.cache.bz2 +share/doc/HTML/uk/kcontrol/kwinvirtualkeyboard/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/kconf_update/kwin-6.0-overview-activities-shortcuts.py +share/kconf_update/kwin.upd +share/knotifications6/kwin.notifyrc +share/knsrcfiles/aurorae.knsrc +share/knsrcfiles/kwineffect.knsrc +share/knsrcfiles/kwinscripts.knsrc +share/knsrcfiles/kwinswitcher.knsrc +share/knsrcfiles/window-decorations.knsrc +share/krunner/dbusplugins/kwin-runner-windows.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%%/builtin-effects/blendchanges.json +%%DATADIR%%/builtin-effects/blur.json +%%DATADIR%%/builtin-effects/colorblindnesscorrection.json +%%DATADIR%%/builtin-effects/colorpicker.json +%%DATADIR%%/builtin-effects/contrast.json +%%DATADIR%%/builtin-effects/diminactive.json +%%DATADIR%%/builtin-effects/fallapart.json +%%DATADIR%%/builtin-effects/glide.json +%%DATADIR%%/builtin-effects/highlightwindow.json +%%DATADIR%%/builtin-effects/invert.json +%%DATADIR%%/builtin-effects/kscreen.json +%%DATADIR%%/builtin-effects/magiclamp.json +%%DATADIR%%/builtin-effects/magnifier.json +%%DATADIR%%/builtin-effects/mouseclick.json +%%DATADIR%%/builtin-effects/mousemark.json +%%DATADIR%%/builtin-effects/outputlocator.json +%%DATADIR%%/builtin-effects/overview.json +%%DATADIR%%/builtin-effects/screenedge.json +%%DATADIR%%/builtin-effects/screenshot.json +%%DATADIR%%/builtin-effects/screentransform.json +%%DATADIR%%/builtin-effects/shakecursor.json +%%DATADIR%%/builtin-effects/sheet.json +%%DATADIR%%/builtin-effects/showfps.json +%%DATADIR%%/builtin-effects/showpaint.json +%%DATADIR%%/builtin-effects/slide.json +%%DATADIR%%/builtin-effects/slideback.json +%%DATADIR%%/builtin-effects/slidingpopups.json +%%DATADIR%%/builtin-effects/snaphelper.json +%%DATADIR%%/builtin-effects/startupfeedback.json +%%DATADIR%%/builtin-effects/thumbnailaside.json +%%DATADIR%%/builtin-effects/tileseditor.json +%%DATADIR%%/builtin-effects/touchpoints.json +%%DATADIR%%/builtin-effects/trackmouse.json +%%DATADIR%%/builtin-effects/windowview.json +%%DATADIR%%/builtin-effects/wobblywindows.json +%%DATADIR%%/builtin-effects/zoom.json +%%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.json +%%DATADIR%%/effects/dialogparent/contents/code/main.js +%%DATADIR%%/effects/dialogparent/metadata.json +%%DATADIR%%/effects/dimscreen/contents/code/main.js +%%DATADIR%%/effects/dimscreen/metadata.json +%%DATADIR%%/effects/eyeonscreen/contents/code/main.js +%%DATADIR%%/effects/eyeonscreen/metadata.json +%%DATADIR%%/effects/fade/contents/code/main.js +%%DATADIR%%/effects/fade/contents/config/main.xml +%%DATADIR%%/effects/fade/metadata.json +%%DATADIR%%/effects/fadedesktop/contents/code/main.js +%%DATADIR%%/effects/fadedesktop/metadata.json +%%DATADIR%%/effects/fadingpopups/contents/code/main.js +%%DATADIR%%/effects/fadingpopups/metadata.json +%%DATADIR%%/effects/frozenapp/contents/code/main.js +%%DATADIR%%/effects/frozenapp/metadata.json +%%DATADIR%%/effects/fullscreen/contents/code/main.js +%%DATADIR%%/effects/fullscreen/metadata.json +%%DATADIR%%/effects/login/contents/code/main.js +%%DATADIR%%/effects/login/contents/config/main.xml +%%DATADIR%%/effects/login/contents/ui/config.ui +%%DATADIR%%/effects/login/metadata.json +%%DATADIR%%/effects/logout/contents/code/main.js +%%DATADIR%%/effects/logout/metadata.json +%%DATADIR%%/effects/maximize/contents/code/main.js +%%DATADIR%%/effects/maximize/metadata.json +%%DATADIR%%/effects/morphingpopups/contents/code/main.js +%%DATADIR%%/effects/morphingpopups/metadata.json +%%DATADIR%%/effects/outputlocator/qml/OutputLabel.qml +%%DATADIR%%/effects/scale/contents/code/main.js +%%DATADIR%%/effects/scale/contents/config/main.xml +%%DATADIR%%/effects/scale/contents/ui/config.ui +%%DATADIR%%/effects/scale/metadata.json +%%DATADIR%%/effects/sessionquit/contents/code/main.js +%%DATADIR%%/effects/sessionquit/metadata.json +%%DATADIR%%/effects/showfps/qml/main.qml +%%DATADIR%%/effects/squash/contents/code/main.js +%%DATADIR%%/effects/squash/metadata.json +%%DATADIR%%/effects/tileseditor/qml/ResizeCorner.qml +%%DATADIR%%/effects/tileseditor/qml/ResizeHandle.qml +%%DATADIR%%/effects/tileseditor/qml/TileDelegate.qml +%%DATADIR%%/effects/tileseditor/qml/layouts.svg +%%DATADIR%%/effects/tileseditor/qml/main.qml +%%DATADIR%%/effects/translucency/contents/code/main.js +%%DATADIR%%/effects/translucency/contents/config/main.xml +%%DATADIR%%/effects/translucency/contents/ui/config.ui +%%DATADIR%%/effects/translucency/metadata.json +%%DATADIR%%/effects/windowaperture/contents/code/main.js +%%DATADIR%%/effects/windowaperture/metadata.json +%%DATADIR%%/effects/windowview/qml/main.qml +%%DATADIR%%/frames/plasma/frame_none.qml +%%DATADIR%%/frames/plasma/frame_styled.qml +%%DATADIR%%/frames/plasma/frame_unstyled.qml +%%DATADIR%%/kcm_kwintabbox/desktop.png +%%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.json +%%DATADIR%%/scripts/minimizeall/contents/code/main.js +%%DATADIR%%/scripts/minimizeall/metadata.json +%%DATADIR%%/scripts/synchronizeskipswitcher/contents/code/main.js +%%DATADIR%%/scripts/synchronizeskipswitcher/metadata.json +%%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.json +%%DATADIR%%/tabbox/thumbnail_grid/contents/ui/main.qml +%%DATADIR%%/tabbox/thumbnail_grid/metadata.json +%%DATADIR%%/tm_inner.png +%%DATADIR%%/tm_outer.png +share/locale/af/LC_MESSAGES/kcm_kwindecoration.mo +share/locale/af/LC_MESSAGES/kcm_kwinrules.mo +share/locale/af/LC_MESSAGES/kcmkwm.mo +share/locale/af/LC_MESSAGES/kwin.mo +share/locale/ar/LC_MESSAGES/kcm_kwin_effects.mo +share/locale/ar/LC_MESSAGES/kcm_kwin_scripts.mo +share/locale/ar/LC_MESSAGES/kcm_kwin_virtualdesktops.mo +share/locale/ar/LC_MESSAGES/kcm_kwindecoration.mo +share/locale/ar/LC_MESSAGES/kcm_kwinrules.mo +share/locale/ar/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/ar/LC_MESSAGES/kcm_kwinxwayland.mo +share/locale/ar/LC_MESSAGES/kcm_virtualkeyboard.mo +share/locale/ar/LC_MESSAGES/kcmkwincommon.mo +share/locale/ar/LC_MESSAGES/kcmkwincompositing.mo +share/locale/ar/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/ar/LC_MESSAGES/kcmkwm.mo +share/locale/ar/LC_MESSAGES/kwin.mo +share/locale/as/LC_MESSAGES/kwin.mo +share/locale/ast/LC_MESSAGES/kcm_kwin_effects.mo +share/locale/ast/LC_MESSAGES/kcm_kwin_scripts.mo +share/locale/ast/LC_MESSAGES/kcm_kwin_virtualdesktops.mo +share/locale/ast/LC_MESSAGES/kcm_kwindecoration.mo +share/locale/ast/LC_MESSAGES/kcm_kwinrules.mo +share/locale/ast/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/ast/LC_MESSAGES/kcm_kwinxwayland.mo +share/locale/ast/LC_MESSAGES/kcm_virtualkeyboard.mo +share/locale/ast/LC_MESSAGES/kcmkwincommon.mo +share/locale/ast/LC_MESSAGES/kcmkwincompositing.mo +share/locale/ast/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/ast/LC_MESSAGES/kcmkwm.mo +share/locale/ast/LC_MESSAGES/kwin.mo +share/locale/az/LC_MESSAGES/kcm_kwin_effects.mo +share/locale/az/LC_MESSAGES/kcm_kwin_scripts.mo +share/locale/az/LC_MESSAGES/kcm_kwin_virtualdesktops.mo +share/locale/az/LC_MESSAGES/kcm_kwindecoration.mo +share/locale/az/LC_MESSAGES/kcm_kwinrules.mo +share/locale/az/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/az/LC_MESSAGES/kcm_virtualkeyboard.mo +share/locale/az/LC_MESSAGES/kcmkwincommon.mo +share/locale/az/LC_MESSAGES/kcmkwincompositing.mo +share/locale/az/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/az/LC_MESSAGES/kcmkwm.mo +share/locale/az/LC_MESSAGES/kwin.mo +share/locale/be/LC_MESSAGES/kcm_kwin_effects.mo +share/locale/be/LC_MESSAGES/kcm_kwin_scripts.mo +share/locale/be/LC_MESSAGES/kcm_kwin_virtualdesktops.mo +share/locale/be/LC_MESSAGES/kcm_kwindecoration.mo +share/locale/be/LC_MESSAGES/kcm_kwinrules.mo +share/locale/be/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/be/LC_MESSAGES/kcm_kwinxwayland.mo +share/locale/be/LC_MESSAGES/kcm_virtualkeyboard.mo +share/locale/be/LC_MESSAGES/kcmkwincommon.mo +share/locale/be/LC_MESSAGES/kcmkwincompositing.mo +share/locale/be/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/be/LC_MESSAGES/kcmkwm.mo +share/locale/be/LC_MESSAGES/kwin.mo +share/locale/be@latin/LC_MESSAGES/kwin.mo +share/locale/bg/LC_MESSAGES/kcm_kwin_effects.mo +share/locale/bg/LC_MESSAGES/kcm_kwin_scripts.mo +share/locale/bg/LC_MESSAGES/kcm_kwin_virtualdesktops.mo +share/locale/bg/LC_MESSAGES/kcm_kwindecoration.mo +share/locale/bg/LC_MESSAGES/kcm_kwinrules.mo +share/locale/bg/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/bg/LC_MESSAGES/kcm_kwinxwayland.mo +share/locale/bg/LC_MESSAGES/kcm_virtualkeyboard.mo +share/locale/bg/LC_MESSAGES/kcmkwincommon.mo +share/locale/bg/LC_MESSAGES/kcmkwincompositing.mo +share/locale/bg/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/bg/LC_MESSAGES/kcmkwm.mo +share/locale/bg/LC_MESSAGES/kwin.mo +share/locale/bn/LC_MESSAGES/kcmkwm.mo +share/locale/bn/LC_MESSAGES/kwin.mo +share/locale/bn_IN/LC_MESSAGES/kcm_kwin_virtualdesktops.mo +share/locale/bn_IN/LC_MESSAGES/kcm_kwindecoration.mo +share/locale/bn_IN/LC_MESSAGES/kcm_kwinrules.mo +share/locale/bn_IN/LC_MESSAGES/kcmkwm.mo +share/locale/bn_IN/LC_MESSAGES/kwin.mo +share/locale/br/LC_MESSAGES/kcm_kwindecoration.mo +share/locale/br/LC_MESSAGES/kcm_kwinrules.mo +share/locale/br/LC_MESSAGES/kcmkwm.mo +share/locale/br/LC_MESSAGES/kwin.mo +share/locale/bs/LC_MESSAGES/kcm_kwin_scripts.mo +share/locale/bs/LC_MESSAGES/kcm_kwin_virtualdesktops.mo +share/locale/bs/LC_MESSAGES/kcm_kwindecoration.mo +share/locale/bs/LC_MESSAGES/kcm_kwinrules.mo +share/locale/bs/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/bs/LC_MESSAGES/kcmkwincompositing.mo +share/locale/bs/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/bs/LC_MESSAGES/kcmkwm.mo +share/locale/bs/LC_MESSAGES/kwin.mo +share/locale/ca/LC_MESSAGES/kcm_kwin_effects.mo +share/locale/ca/LC_MESSAGES/kcm_kwin_scripts.mo +share/locale/ca/LC_MESSAGES/kcm_kwin_virtualdesktops.mo +share/locale/ca/LC_MESSAGES/kcm_kwindecoration.mo +share/locale/ca/LC_MESSAGES/kcm_kwinrules.mo +share/locale/ca/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/ca/LC_MESSAGES/kcm_kwinxwayland.mo +share/locale/ca/LC_MESSAGES/kcm_virtualkeyboard.mo +share/locale/ca/LC_MESSAGES/kcmkwincommon.mo +share/locale/ca/LC_MESSAGES/kcmkwincompositing.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@valencia/LC_MESSAGES/kcm_kwin_effects.mo +share/locale/ca@valencia/LC_MESSAGES/kcm_kwin_scripts.mo +share/locale/ca@valencia/LC_MESSAGES/kcm_kwin_virtualdesktops.mo +share/locale/ca@valencia/LC_MESSAGES/kcm_kwindecoration.mo +share/locale/ca@valencia/LC_MESSAGES/kcm_kwinrules.mo +share/locale/ca@valencia/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/ca@valencia/LC_MESSAGES/kcm_kwinxwayland.mo +share/locale/ca@valencia/LC_MESSAGES/kcm_virtualkeyboard.mo +share/locale/ca@valencia/LC_MESSAGES/kcmkwincommon.mo +share/locale/ca@valencia/LC_MESSAGES/kcmkwincompositing.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/cs/LC_MESSAGES/kcm_kwin_effects.mo +share/locale/cs/LC_MESSAGES/kcm_kwin_scripts.mo +share/locale/cs/LC_MESSAGES/kcm_kwin_virtualdesktops.mo +share/locale/cs/LC_MESSAGES/kcm_kwindecoration.mo +share/locale/cs/LC_MESSAGES/kcm_kwinrules.mo +share/locale/cs/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/cs/LC_MESSAGES/kcm_kwinxwayland.mo +share/locale/cs/LC_MESSAGES/kcm_virtualkeyboard.mo +share/locale/cs/LC_MESSAGES/kcmkwincommon.mo +share/locale/cs/LC_MESSAGES/kcmkwincompositing.mo +share/locale/cs/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/cs/LC_MESSAGES/kcmkwm.mo +share/locale/cs/LC_MESSAGES/kwin.mo +share/locale/csb/LC_MESSAGES/kcm_kwin_virtualdesktops.mo +share/locale/csb/LC_MESSAGES/kwin.mo +share/locale/cy/LC_MESSAGES/kcm_kwindecoration.mo +share/locale/cy/LC_MESSAGES/kcm_kwinrules.mo +share/locale/cy/LC_MESSAGES/kcmkwm.mo +share/locale/cy/LC_MESSAGES/kwin.mo +share/locale/da/LC_MESSAGES/kcm_kwin_effects.mo +share/locale/da/LC_MESSAGES/kcm_kwin_scripts.mo +share/locale/da/LC_MESSAGES/kcm_kwin_virtualdesktops.mo +share/locale/da/LC_MESSAGES/kcm_kwindecoration.mo +share/locale/da/LC_MESSAGES/kcm_kwinrules.mo +share/locale/da/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/da/LC_MESSAGES/kcmkwincommon.mo +share/locale/da/LC_MESSAGES/kcmkwincompositing.mo +share/locale/da/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/da/LC_MESSAGES/kcmkwm.mo +share/locale/da/LC_MESSAGES/kwin.mo +share/locale/de/LC_MESSAGES/kcm_kwin_effects.mo +share/locale/de/LC_MESSAGES/kcm_kwin_scripts.mo +share/locale/de/LC_MESSAGES/kcm_kwin_virtualdesktops.mo +share/locale/de/LC_MESSAGES/kcm_kwindecoration.mo +share/locale/de/LC_MESSAGES/kcm_kwinrules.mo +share/locale/de/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/de/LC_MESSAGES/kcm_kwinxwayland.mo +share/locale/de/LC_MESSAGES/kcm_virtualkeyboard.mo +share/locale/de/LC_MESSAGES/kcmkwincommon.mo +share/locale/de/LC_MESSAGES/kcmkwincompositing.mo +share/locale/de/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/de/LC_MESSAGES/kcmkwm.mo +share/locale/de/LC_MESSAGES/kwin.mo +share/locale/el/LC_MESSAGES/kcm_kwin_scripts.mo +share/locale/el/LC_MESSAGES/kcm_kwin_virtualdesktops.mo +share/locale/el/LC_MESSAGES/kcm_kwindecoration.mo +share/locale/el/LC_MESSAGES/kcm_kwinrules.mo +share/locale/el/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/el/LC_MESSAGES/kcmkwincompositing.mo +share/locale/el/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/el/LC_MESSAGES/kcmkwm.mo +share/locale/el/LC_MESSAGES/kwin.mo +share/locale/en_GB/LC_MESSAGES/kcm_kwin_effects.mo +share/locale/en_GB/LC_MESSAGES/kcm_kwin_scripts.mo +share/locale/en_GB/LC_MESSAGES/kcm_kwin_virtualdesktops.mo +share/locale/en_GB/LC_MESSAGES/kcm_kwindecoration.mo +share/locale/en_GB/LC_MESSAGES/kcm_kwinrules.mo +share/locale/en_GB/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/en_GB/LC_MESSAGES/kcm_kwinxwayland.mo +share/locale/en_GB/LC_MESSAGES/kcm_virtualkeyboard.mo +share/locale/en_GB/LC_MESSAGES/kcmkwincommon.mo +share/locale/en_GB/LC_MESSAGES/kcmkwincompositing.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/eo/LC_MESSAGES/kcm_kwin_effects.mo +share/locale/eo/LC_MESSAGES/kcm_kwin_scripts.mo +share/locale/eo/LC_MESSAGES/kcm_kwin_virtualdesktops.mo +share/locale/eo/LC_MESSAGES/kcm_kwindecoration.mo +share/locale/eo/LC_MESSAGES/kcm_kwinrules.mo +share/locale/eo/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/eo/LC_MESSAGES/kcm_kwinxwayland.mo +share/locale/eo/LC_MESSAGES/kcm_virtualkeyboard.mo +share/locale/eo/LC_MESSAGES/kcmkwincommon.mo +share/locale/eo/LC_MESSAGES/kcmkwincompositing.mo +share/locale/eo/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/eo/LC_MESSAGES/kcmkwm.mo +share/locale/eo/LC_MESSAGES/kwin.mo +share/locale/es/LC_MESSAGES/kcm_kwin_effects.mo +share/locale/es/LC_MESSAGES/kcm_kwin_scripts.mo +share/locale/es/LC_MESSAGES/kcm_kwin_virtualdesktops.mo +share/locale/es/LC_MESSAGES/kcm_kwindecoration.mo +share/locale/es/LC_MESSAGES/kcm_kwinrules.mo +share/locale/es/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/es/LC_MESSAGES/kcm_kwinxwayland.mo +share/locale/es/LC_MESSAGES/kcm_virtualkeyboard.mo +share/locale/es/LC_MESSAGES/kcmkwincommon.mo +share/locale/es/LC_MESSAGES/kcmkwincompositing.mo +share/locale/es/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/es/LC_MESSAGES/kcmkwm.mo +share/locale/es/LC_MESSAGES/kwin.mo +share/locale/et/LC_MESSAGES/kcm_kwin_effects.mo +share/locale/et/LC_MESSAGES/kcm_kwin_scripts.mo +share/locale/et/LC_MESSAGES/kcm_kwin_virtualdesktops.mo +share/locale/et/LC_MESSAGES/kcm_kwindecoration.mo +share/locale/et/LC_MESSAGES/kcm_kwinrules.mo +share/locale/et/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/et/LC_MESSAGES/kcmkwincommon.mo +share/locale/et/LC_MESSAGES/kcmkwincompositing.mo +share/locale/et/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/et/LC_MESSAGES/kcmkwm.mo +share/locale/et/LC_MESSAGES/kwin.mo +share/locale/eu/LC_MESSAGES/kcm_kwin_effects.mo +share/locale/eu/LC_MESSAGES/kcm_kwin_scripts.mo +share/locale/eu/LC_MESSAGES/kcm_kwin_virtualdesktops.mo +share/locale/eu/LC_MESSAGES/kcm_kwindecoration.mo +share/locale/eu/LC_MESSAGES/kcm_kwinrules.mo +share/locale/eu/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/eu/LC_MESSAGES/kcm_kwinxwayland.mo +share/locale/eu/LC_MESSAGES/kcm_virtualkeyboard.mo +share/locale/eu/LC_MESSAGES/kcmkwincommon.mo +share/locale/eu/LC_MESSAGES/kcmkwincompositing.mo +share/locale/eu/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/eu/LC_MESSAGES/kcmkwm.mo +share/locale/eu/LC_MESSAGES/kwin.mo +share/locale/fa/LC_MESSAGES/kcm_kwin_scripts.mo +share/locale/fa/LC_MESSAGES/kcm_kwin_virtualdesktops.mo +share/locale/fa/LC_MESSAGES/kcm_kwindecoration.mo +share/locale/fa/LC_MESSAGES/kcm_kwinrules.mo +share/locale/fa/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/fa/LC_MESSAGES/kcmkwincompositing.mo +share/locale/fa/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/fa/LC_MESSAGES/kcmkwm.mo +share/locale/fa/LC_MESSAGES/kwin.mo +share/locale/fi/LC_MESSAGES/kcm_kwin_effects.mo +share/locale/fi/LC_MESSAGES/kcm_kwin_scripts.mo +share/locale/fi/LC_MESSAGES/kcm_kwin_virtualdesktops.mo +share/locale/fi/LC_MESSAGES/kcm_kwindecoration.mo +share/locale/fi/LC_MESSAGES/kcm_kwinrules.mo +share/locale/fi/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/fi/LC_MESSAGES/kcm_kwinxwayland.mo +share/locale/fi/LC_MESSAGES/kcm_virtualkeyboard.mo +share/locale/fi/LC_MESSAGES/kcmkwincommon.mo +share/locale/fi/LC_MESSAGES/kcmkwincompositing.mo +share/locale/fi/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/fi/LC_MESSAGES/kcmkwm.mo +share/locale/fi/LC_MESSAGES/kwin.mo +share/locale/fr/LC_MESSAGES/kcm_kwin_effects.mo +share/locale/fr/LC_MESSAGES/kcm_kwin_scripts.mo +share/locale/fr/LC_MESSAGES/kcm_kwin_virtualdesktops.mo +share/locale/fr/LC_MESSAGES/kcm_kwindecoration.mo +share/locale/fr/LC_MESSAGES/kcm_kwinrules.mo +share/locale/fr/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/fr/LC_MESSAGES/kcm_kwinxwayland.mo +share/locale/fr/LC_MESSAGES/kcm_virtualkeyboard.mo +share/locale/fr/LC_MESSAGES/kcmkwincommon.mo +share/locale/fr/LC_MESSAGES/kcmkwincompositing.mo +share/locale/fr/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/fr/LC_MESSAGES/kcmkwm.mo +share/locale/fr/LC_MESSAGES/kwin.mo +share/locale/fy/LC_MESSAGES/kcm_kwin_virtualdesktops.mo +share/locale/fy/LC_MESSAGES/kcm_kwindecoration.mo +share/locale/fy/LC_MESSAGES/kcm_kwinrules.mo +share/locale/fy/LC_MESSAGES/kcmkwincompositing.mo +share/locale/fy/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/fy/LC_MESSAGES/kcmkwm.mo +share/locale/fy/LC_MESSAGES/kwin.mo +share/locale/ga/LC_MESSAGES/kcm_kwin_scripts.mo +share/locale/ga/LC_MESSAGES/kcm_kwin_virtualdesktops.mo +share/locale/ga/LC_MESSAGES/kcm_kwindecoration.mo +share/locale/ga/LC_MESSAGES/kcm_kwinrules.mo +share/locale/ga/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/ga/LC_MESSAGES/kcmkwincompositing.mo +share/locale/ga/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/ga/LC_MESSAGES/kcmkwm.mo +share/locale/ga/LC_MESSAGES/kwin.mo +share/locale/gl/LC_MESSAGES/kcm_kwin_effects.mo +share/locale/gl/LC_MESSAGES/kcm_kwin_scripts.mo +share/locale/gl/LC_MESSAGES/kcm_kwin_virtualdesktops.mo +share/locale/gl/LC_MESSAGES/kcm_kwindecoration.mo +share/locale/gl/LC_MESSAGES/kcm_kwinrules.mo +share/locale/gl/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/gl/LC_MESSAGES/kcm_kwinxwayland.mo +share/locale/gl/LC_MESSAGES/kcm_virtualkeyboard.mo +share/locale/gl/LC_MESSAGES/kcmkwincommon.mo +share/locale/gl/LC_MESSAGES/kcmkwincompositing.mo +share/locale/gl/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/gl/LC_MESSAGES/kcmkwm.mo +share/locale/gl/LC_MESSAGES/kwin.mo +share/locale/gu/LC_MESSAGES/kcm_kwin_virtualdesktops.mo +share/locale/gu/LC_MESSAGES/kcm_kwindecoration.mo +share/locale/gu/LC_MESSAGES/kcm_kwinrules.mo +share/locale/gu/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/gu/LC_MESSAGES/kcmkwincompositing.mo +share/locale/gu/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/gu/LC_MESSAGES/kcmkwm.mo +share/locale/gu/LC_MESSAGES/kwin.mo +share/locale/he/LC_MESSAGES/kcm_kwin_effects.mo +share/locale/he/LC_MESSAGES/kcm_kwin_scripts.mo +share/locale/he/LC_MESSAGES/kcm_kwin_virtualdesktops.mo +share/locale/he/LC_MESSAGES/kcm_kwindecoration.mo +share/locale/he/LC_MESSAGES/kcm_kwinrules.mo +share/locale/he/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/he/LC_MESSAGES/kcm_kwinxwayland.mo +share/locale/he/LC_MESSAGES/kcm_virtualkeyboard.mo +share/locale/he/LC_MESSAGES/kcmkwincommon.mo +share/locale/he/LC_MESSAGES/kcmkwincompositing.mo +share/locale/he/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/he/LC_MESSAGES/kcmkwm.mo +share/locale/he/LC_MESSAGES/kwin.mo +share/locale/hi/LC_MESSAGES/kcm_kwin_virtualdesktops.mo +share/locale/hi/LC_MESSAGES/kcm_kwindecoration.mo +share/locale/hi/LC_MESSAGES/kcm_kwinrules.mo +share/locale/hi/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/hi/LC_MESSAGES/kcmkwincompositing.mo +share/locale/hi/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/hi/LC_MESSAGES/kcmkwm.mo +share/locale/hi/LC_MESSAGES/kwin.mo +share/locale/hne/LC_MESSAGES/kcm_kwin_virtualdesktops.mo +share/locale/hne/LC_MESSAGES/kcm_kwindecoration.mo +share/locale/hne/LC_MESSAGES/kcm_kwinrules.mo +share/locale/hne/LC_MESSAGES/kcmkwincompositing.mo +share/locale/hne/LC_MESSAGES/kcmkwm.mo +share/locale/hne/LC_MESSAGES/kwin.mo +share/locale/hr/LC_MESSAGES/kcm_kwin_virtualdesktops.mo +share/locale/hr/LC_MESSAGES/kcm_kwindecoration.mo +share/locale/hr/LC_MESSAGES/kcm_kwinrules.mo +share/locale/hr/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/hr/LC_MESSAGES/kcmkwincompositing.mo +share/locale/hr/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/hr/LC_MESSAGES/kcmkwm.mo +share/locale/hr/LC_MESSAGES/kwin.mo +share/locale/hsb/LC_MESSAGES/kcm_kwin_virtualdesktops.mo +share/locale/hsb/LC_MESSAGES/kcm_kwindecoration.mo +share/locale/hsb/LC_MESSAGES/kcm_kwinrules.mo +share/locale/hsb/LC_MESSAGES/kcmkwincompositing.mo +share/locale/hsb/LC_MESSAGES/kcmkwm.mo +share/locale/hsb/LC_MESSAGES/kwin.mo +share/locale/hu/LC_MESSAGES/kcm_kwin_effects.mo +share/locale/hu/LC_MESSAGES/kcm_kwin_scripts.mo +share/locale/hu/LC_MESSAGES/kcm_kwin_virtualdesktops.mo +share/locale/hu/LC_MESSAGES/kcm_kwindecoration.mo +share/locale/hu/LC_MESSAGES/kcm_kwinrules.mo +share/locale/hu/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/hu/LC_MESSAGES/kcm_virtualkeyboard.mo +share/locale/hu/LC_MESSAGES/kcmkwincommon.mo +share/locale/hu/LC_MESSAGES/kcmkwincompositing.mo +share/locale/hu/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/hu/LC_MESSAGES/kcmkwm.mo +share/locale/hu/LC_MESSAGES/kwin.mo +share/locale/ia/LC_MESSAGES/kcm_kwin_effects.mo +share/locale/ia/LC_MESSAGES/kcm_kwin_scripts.mo +share/locale/ia/LC_MESSAGES/kcm_kwin_virtualdesktops.mo +share/locale/ia/LC_MESSAGES/kcm_kwindecoration.mo +share/locale/ia/LC_MESSAGES/kcm_kwinrules.mo +share/locale/ia/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/ia/LC_MESSAGES/kcm_kwinxwayland.mo +share/locale/ia/LC_MESSAGES/kcm_virtualkeyboard.mo +share/locale/ia/LC_MESSAGES/kcmkwincommon.mo +share/locale/ia/LC_MESSAGES/kcmkwincompositing.mo +share/locale/ia/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/ia/LC_MESSAGES/kcmkwm.mo +share/locale/ia/LC_MESSAGES/kwin.mo +share/locale/id/LC_MESSAGES/kcm_kwin_effects.mo +share/locale/id/LC_MESSAGES/kcm_kwin_scripts.mo +share/locale/id/LC_MESSAGES/kcm_kwin_virtualdesktops.mo +share/locale/id/LC_MESSAGES/kcm_kwindecoration.mo +share/locale/id/LC_MESSAGES/kcm_kwinrules.mo +share/locale/id/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/id/LC_MESSAGES/kcm_virtualkeyboard.mo +share/locale/id/LC_MESSAGES/kcmkwincommon.mo +share/locale/id/LC_MESSAGES/kcmkwincompositing.mo +share/locale/id/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/id/LC_MESSAGES/kcmkwm.mo +share/locale/id/LC_MESSAGES/kwin.mo +share/locale/is/LC_MESSAGES/kcm_kwin_virtualdesktops.mo +share/locale/is/LC_MESSAGES/kcm_kwindecoration.mo +share/locale/is/LC_MESSAGES/kcm_kwinrules.mo +share/locale/is/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/is/LC_MESSAGES/kcmkwincompositing.mo +share/locale/is/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/is/LC_MESSAGES/kcmkwm.mo +share/locale/is/LC_MESSAGES/kwin.mo +share/locale/it/LC_MESSAGES/kcm_kwin_effects.mo +share/locale/it/LC_MESSAGES/kcm_kwin_scripts.mo +share/locale/it/LC_MESSAGES/kcm_kwin_virtualdesktops.mo +share/locale/it/LC_MESSAGES/kcm_kwindecoration.mo +share/locale/it/LC_MESSAGES/kcm_kwinrules.mo +share/locale/it/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/it/LC_MESSAGES/kcm_kwinxwayland.mo +share/locale/it/LC_MESSAGES/kcm_virtualkeyboard.mo +share/locale/it/LC_MESSAGES/kcmkwincommon.mo +share/locale/it/LC_MESSAGES/kcmkwincompositing.mo +share/locale/it/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/it/LC_MESSAGES/kcmkwm.mo +share/locale/it/LC_MESSAGES/kwin.mo +share/locale/ja/LC_MESSAGES/kcm_kwin_effects.mo +share/locale/ja/LC_MESSAGES/kcm_kwin_scripts.mo +share/locale/ja/LC_MESSAGES/kcm_kwin_virtualdesktops.mo +share/locale/ja/LC_MESSAGES/kcm_kwindecoration.mo +share/locale/ja/LC_MESSAGES/kcm_kwinrules.mo +share/locale/ja/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/ja/LC_MESSAGES/kcm_kwinxwayland.mo +share/locale/ja/LC_MESSAGES/kcm_virtualkeyboard.mo +share/locale/ja/LC_MESSAGES/kcmkwincommon.mo +share/locale/ja/LC_MESSAGES/kcmkwincompositing.mo +share/locale/ja/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/ja/LC_MESSAGES/kcmkwm.mo +share/locale/ja/LC_MESSAGES/kwin.mo +share/locale/ka/LC_MESSAGES/kcm_kwin_effects.mo +share/locale/ka/LC_MESSAGES/kcm_kwin_scripts.mo +share/locale/ka/LC_MESSAGES/kcm_kwin_virtualdesktops.mo +share/locale/ka/LC_MESSAGES/kcm_kwindecoration.mo +share/locale/ka/LC_MESSAGES/kcm_kwinrules.mo +share/locale/ka/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/ka/LC_MESSAGES/kcm_kwinxwayland.mo +share/locale/ka/LC_MESSAGES/kcm_virtualkeyboard.mo +share/locale/ka/LC_MESSAGES/kcmkwincommon.mo +share/locale/ka/LC_MESSAGES/kcmkwincompositing.mo +share/locale/ka/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/ka/LC_MESSAGES/kcmkwm.mo +share/locale/ka/LC_MESSAGES/kwin.mo +share/locale/kk/LC_MESSAGES/kcm_kwin_scripts.mo +share/locale/kk/LC_MESSAGES/kcm_kwin_virtualdesktops.mo +share/locale/kk/LC_MESSAGES/kcm_kwindecoration.mo +share/locale/kk/LC_MESSAGES/kcm_kwinrules.mo +share/locale/kk/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/kk/LC_MESSAGES/kcmkwincompositing.mo +share/locale/kk/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/kk/LC_MESSAGES/kcmkwm.mo +share/locale/kk/LC_MESSAGES/kwin.mo +share/locale/km/LC_MESSAGES/kcm_kwin_scripts.mo +share/locale/km/LC_MESSAGES/kcm_kwin_virtualdesktops.mo +share/locale/km/LC_MESSAGES/kcm_kwindecoration.mo +share/locale/km/LC_MESSAGES/kcm_kwinrules.mo +share/locale/km/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/km/LC_MESSAGES/kcmkwincompositing.mo +share/locale/km/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/km/LC_MESSAGES/kcmkwm.mo +share/locale/km/LC_MESSAGES/kwin.mo +share/locale/kn/LC_MESSAGES/kcm_kwin_virtualdesktops.mo +share/locale/kn/LC_MESSAGES/kcm_kwindecoration.mo +share/locale/kn/LC_MESSAGES/kcm_kwinrules.mo +share/locale/kn/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/kn/LC_MESSAGES/kcmkwincompositing.mo +share/locale/kn/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/kn/LC_MESSAGES/kcmkwm.mo +share/locale/kn/LC_MESSAGES/kwin.mo +share/locale/ko/LC_MESSAGES/kcm_kwin_effects.mo +share/locale/ko/LC_MESSAGES/kcm_kwin_scripts.mo +share/locale/ko/LC_MESSAGES/kcm_kwin_virtualdesktops.mo +share/locale/ko/LC_MESSAGES/kcm_kwindecoration.mo +share/locale/ko/LC_MESSAGES/kcm_kwinrules.mo +share/locale/ko/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/ko/LC_MESSAGES/kcm_kwinxwayland.mo +share/locale/ko/LC_MESSAGES/kcm_virtualkeyboard.mo +share/locale/ko/LC_MESSAGES/kcmkwincommon.mo +share/locale/ko/LC_MESSAGES/kcmkwincompositing.mo +share/locale/ko/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/ko/LC_MESSAGES/kcmkwm.mo +share/locale/ko/LC_MESSAGES/kwin.mo +share/locale/ku/LC_MESSAGES/kcm_kwin_virtualdesktops.mo +share/locale/ku/LC_MESSAGES/kcm_kwindecoration.mo +share/locale/ku/LC_MESSAGES/kcm_kwinrules.mo +share/locale/ku/LC_MESSAGES/kcmkwincompositing.mo +share/locale/ku/LC_MESSAGES/kcmkwm.mo +share/locale/ku/LC_MESSAGES/kwin.mo +share/locale/lt/LC_MESSAGES/kcm_kwin_effects.mo +share/locale/lt/LC_MESSAGES/kcm_kwin_scripts.mo +share/locale/lt/LC_MESSAGES/kcm_kwin_virtualdesktops.mo +share/locale/lt/LC_MESSAGES/kcm_kwindecoration.mo +share/locale/lt/LC_MESSAGES/kcm_kwinrules.mo +share/locale/lt/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/lt/LC_MESSAGES/kcm_kwinxwayland.mo +share/locale/lt/LC_MESSAGES/kcm_virtualkeyboard.mo +share/locale/lt/LC_MESSAGES/kcmkwincommon.mo +share/locale/lt/LC_MESSAGES/kcmkwincompositing.mo +share/locale/lt/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/lt/LC_MESSAGES/kcmkwm.mo +share/locale/lt/LC_MESSAGES/kwin.mo +share/locale/lv/LC_MESSAGES/kcm_kwin_virtualdesktops.mo +share/locale/lv/LC_MESSAGES/kcm_kwindecoration.mo +share/locale/lv/LC_MESSAGES/kcm_kwinrules.mo +share/locale/lv/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/lv/LC_MESSAGES/kcmkwincompositing.mo +share/locale/lv/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/lv/LC_MESSAGES/kcmkwm.mo +share/locale/lv/LC_MESSAGES/kwin.mo +share/locale/mai/LC_MESSAGES/kcm_kwin_virtualdesktops.mo +share/locale/mai/LC_MESSAGES/kcm_kwindecoration.mo +share/locale/mai/LC_MESSAGES/kcm_kwinrules.mo +share/locale/mai/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/mai/LC_MESSAGES/kcmkwincompositing.mo +share/locale/mai/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/mai/LC_MESSAGES/kcmkwm.mo +share/locale/mai/LC_MESSAGES/kwin.mo +share/locale/mk/LC_MESSAGES/kcm_kwin_virtualdesktops.mo +share/locale/mk/LC_MESSAGES/kcm_kwindecoration.mo +share/locale/mk/LC_MESSAGES/kcm_kwinrules.mo +share/locale/mk/LC_MESSAGES/kcmkwincompositing.mo +share/locale/mk/LC_MESSAGES/kcmkwm.mo +share/locale/mk/LC_MESSAGES/kwin.mo +share/locale/ml/LC_MESSAGES/kcm_kwin_effects.mo +share/locale/ml/LC_MESSAGES/kcm_kwin_scripts.mo +share/locale/ml/LC_MESSAGES/kcm_kwin_virtualdesktops.mo +share/locale/ml/LC_MESSAGES/kcm_kwindecoration.mo +share/locale/ml/LC_MESSAGES/kcm_kwinrules.mo +share/locale/ml/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/ml/LC_MESSAGES/kcmkwincommon.mo +share/locale/ml/LC_MESSAGES/kcmkwincompositing.mo +share/locale/ml/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/ml/LC_MESSAGES/kcmkwm.mo +share/locale/ml/LC_MESSAGES/kwin.mo +share/locale/mr/LC_MESSAGES/kcm_kwin_scripts.mo +share/locale/mr/LC_MESSAGES/kcm_kwin_virtualdesktops.mo +share/locale/mr/LC_MESSAGES/kcm_kwindecoration.mo +share/locale/mr/LC_MESSAGES/kcm_kwinrules.mo +share/locale/mr/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/mr/LC_MESSAGES/kcmkwincompositing.mo +share/locale/mr/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/mr/LC_MESSAGES/kcmkwm.mo +share/locale/mr/LC_MESSAGES/kwin.mo +share/locale/ms/LC_MESSAGES/kcm_kwin_virtualdesktops.mo +share/locale/ms/LC_MESSAGES/kcm_kwindecoration.mo +share/locale/ms/LC_MESSAGES/kcm_kwinrules.mo +share/locale/ms/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/ms/LC_MESSAGES/kcmkwincompositing.mo +share/locale/ms/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/ms/LC_MESSAGES/kcmkwm.mo +share/locale/ms/LC_MESSAGES/kwin.mo +share/locale/nb/LC_MESSAGES/kcm_kwin_scripts.mo +share/locale/nb/LC_MESSAGES/kcm_kwin_virtualdesktops.mo +share/locale/nb/LC_MESSAGES/kcm_kwindecoration.mo +share/locale/nb/LC_MESSAGES/kcm_kwinrules.mo +share/locale/nb/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/nb/LC_MESSAGES/kcmkwincommon.mo +share/locale/nb/LC_MESSAGES/kcmkwincompositing.mo +share/locale/nb/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/nb/LC_MESSAGES/kcmkwm.mo +share/locale/nb/LC_MESSAGES/kwin.mo +share/locale/nds/LC_MESSAGES/kcm_kwin_scripts.mo +share/locale/nds/LC_MESSAGES/kcm_kwin_virtualdesktops.mo +share/locale/nds/LC_MESSAGES/kcm_kwindecoration.mo +share/locale/nds/LC_MESSAGES/kcm_kwinrules.mo +share/locale/nds/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/nds/LC_MESSAGES/kcmkwincompositing.mo +share/locale/nds/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/nds/LC_MESSAGES/kcmkwm.mo +share/locale/nds/LC_MESSAGES/kwin.mo +share/locale/ne/LC_MESSAGES/kcm_kwin_virtualdesktops.mo +share/locale/ne/LC_MESSAGES/kcm_kwindecoration.mo +share/locale/ne/LC_MESSAGES/kcm_kwinrules.mo +share/locale/ne/LC_MESSAGES/kcmkwincompositing.mo +share/locale/ne/LC_MESSAGES/kcmkwm.mo +share/locale/ne/LC_MESSAGES/kwin.mo +share/locale/nl/LC_MESSAGES/kcm_kwin_effects.mo +share/locale/nl/LC_MESSAGES/kcm_kwin_scripts.mo +share/locale/nl/LC_MESSAGES/kcm_kwin_virtualdesktops.mo +share/locale/nl/LC_MESSAGES/kcm_kwindecoration.mo +share/locale/nl/LC_MESSAGES/kcm_kwinrules.mo +share/locale/nl/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/nl/LC_MESSAGES/kcm_kwinxwayland.mo +share/locale/nl/LC_MESSAGES/kcm_virtualkeyboard.mo +share/locale/nl/LC_MESSAGES/kcmkwincommon.mo +share/locale/nl/LC_MESSAGES/kcmkwincompositing.mo +share/locale/nl/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/nl/LC_MESSAGES/kcmkwm.mo +share/locale/nl/LC_MESSAGES/kwin.mo +share/locale/nn/LC_MESSAGES/kcm_kwin_effects.mo +share/locale/nn/LC_MESSAGES/kcm_kwin_scripts.mo +share/locale/nn/LC_MESSAGES/kcm_kwin_virtualdesktops.mo +share/locale/nn/LC_MESSAGES/kcm_kwindecoration.mo +share/locale/nn/LC_MESSAGES/kcm_kwinrules.mo +share/locale/nn/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/nn/LC_MESSAGES/kcm_kwinxwayland.mo +share/locale/nn/LC_MESSAGES/kcm_virtualkeyboard.mo +share/locale/nn/LC_MESSAGES/kcmkwincommon.mo +share/locale/nn/LC_MESSAGES/kcmkwincompositing.mo +share/locale/nn/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/nn/LC_MESSAGES/kcmkwm.mo +share/locale/nn/LC_MESSAGES/kwin.mo +share/locale/oc/LC_MESSAGES/kcm_kwin_virtualdesktops.mo +share/locale/oc/LC_MESSAGES/kcm_kwindecoration.mo +share/locale/oc/LC_MESSAGES/kcm_kwinrules.mo +share/locale/oc/LC_MESSAGES/kcmkwincompositing.mo +share/locale/oc/LC_MESSAGES/kcmkwm.mo +share/locale/oc/LC_MESSAGES/kwin.mo +share/locale/or/LC_MESSAGES/kcm_kwin_virtualdesktops.mo +share/locale/or/LC_MESSAGES/kcm_kwindecoration.mo +share/locale/or/LC_MESSAGES/kcm_kwinrules.mo +share/locale/or/LC_MESSAGES/kcmkwincompositing.mo +share/locale/or/LC_MESSAGES/kcmkwm.mo +share/locale/or/LC_MESSAGES/kwin.mo +share/locale/pa/LC_MESSAGES/kcm_kwin_effects.mo +share/locale/pa/LC_MESSAGES/kcm_kwin_scripts.mo +share/locale/pa/LC_MESSAGES/kcm_kwin_virtualdesktops.mo +share/locale/pa/LC_MESSAGES/kcm_kwindecoration.mo +share/locale/pa/LC_MESSAGES/kcm_kwinrules.mo +share/locale/pa/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/pa/LC_MESSAGES/kcm_kwinxwayland.mo +share/locale/pa/LC_MESSAGES/kcm_virtualkeyboard.mo +share/locale/pa/LC_MESSAGES/kcmkwincommon.mo +share/locale/pa/LC_MESSAGES/kcmkwincompositing.mo +share/locale/pa/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/pa/LC_MESSAGES/kcmkwm.mo +share/locale/pa/LC_MESSAGES/kwin.mo +share/locale/pl/LC_MESSAGES/kcm_kwin_effects.mo +share/locale/pl/LC_MESSAGES/kcm_kwin_scripts.mo +share/locale/pl/LC_MESSAGES/kcm_kwin_virtualdesktops.mo +share/locale/pl/LC_MESSAGES/kcm_kwindecoration.mo +share/locale/pl/LC_MESSAGES/kcm_kwinrules.mo +share/locale/pl/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/pl/LC_MESSAGES/kcm_kwinxwayland.mo +share/locale/pl/LC_MESSAGES/kcm_virtualkeyboard.mo +share/locale/pl/LC_MESSAGES/kcmkwincommon.mo +share/locale/pl/LC_MESSAGES/kcmkwincompositing.mo +share/locale/pl/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/pl/LC_MESSAGES/kcmkwm.mo +share/locale/pl/LC_MESSAGES/kwin.mo +share/locale/pt/LC_MESSAGES/kcm_kwin_effects.mo +share/locale/pt/LC_MESSAGES/kcm_kwin_scripts.mo +share/locale/pt/LC_MESSAGES/kcm_kwin_virtualdesktops.mo +share/locale/pt/LC_MESSAGES/kcm_kwindecoration.mo +share/locale/pt/LC_MESSAGES/kcm_kwinrules.mo +share/locale/pt/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/pt/LC_MESSAGES/kcm_kwinxwayland.mo +share/locale/pt/LC_MESSAGES/kcm_virtualkeyboard.mo +share/locale/pt/LC_MESSAGES/kcmkwincommon.mo +share/locale/pt/LC_MESSAGES/kcmkwincompositing.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_BR/LC_MESSAGES/kcm_kwin_effects.mo +share/locale/pt_BR/LC_MESSAGES/kcm_kwin_scripts.mo +share/locale/pt_BR/LC_MESSAGES/kcm_kwin_virtualdesktops.mo +share/locale/pt_BR/LC_MESSAGES/kcm_kwindecoration.mo +share/locale/pt_BR/LC_MESSAGES/kcm_kwinrules.mo +share/locale/pt_BR/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/pt_BR/LC_MESSAGES/kcm_kwinxwayland.mo +share/locale/pt_BR/LC_MESSAGES/kcm_virtualkeyboard.mo +share/locale/pt_BR/LC_MESSAGES/kcmkwincommon.mo +share/locale/pt_BR/LC_MESSAGES/kcmkwincompositing.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/ro/LC_MESSAGES/kcm_kwin_effects.mo +share/locale/ro/LC_MESSAGES/kcm_kwin_scripts.mo +share/locale/ro/LC_MESSAGES/kcm_kwin_virtualdesktops.mo +share/locale/ro/LC_MESSAGES/kcm_kwindecoration.mo +share/locale/ro/LC_MESSAGES/kcm_kwinrules.mo +share/locale/ro/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/ro/LC_MESSAGES/kcm_kwinxwayland.mo +share/locale/ro/LC_MESSAGES/kcm_virtualkeyboard.mo +share/locale/ro/LC_MESSAGES/kcmkwincommon.mo +share/locale/ro/LC_MESSAGES/kcmkwincompositing.mo +share/locale/ro/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/ro/LC_MESSAGES/kcmkwm.mo +share/locale/ro/LC_MESSAGES/kwin.mo +share/locale/ru/LC_MESSAGES/kcm_kwin_effects.mo +share/locale/ru/LC_MESSAGES/kcm_kwin_scripts.mo +share/locale/ru/LC_MESSAGES/kcm_kwin_virtualdesktops.mo +share/locale/ru/LC_MESSAGES/kcm_kwindecoration.mo +share/locale/ru/LC_MESSAGES/kcm_kwinrules.mo +share/locale/ru/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/ru/LC_MESSAGES/kcm_kwinxwayland.mo +share/locale/ru/LC_MESSAGES/kcm_virtualkeyboard.mo +share/locale/ru/LC_MESSAGES/kcmkwincommon.mo +share/locale/ru/LC_MESSAGES/kcmkwincompositing.mo +share/locale/ru/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/ru/LC_MESSAGES/kcmkwm.mo +share/locale/ru/LC_MESSAGES/kwin.mo +share/locale/se/LC_MESSAGES/kcm_kwin_virtualdesktops.mo +share/locale/se/LC_MESSAGES/kcm_kwindecoration.mo +share/locale/se/LC_MESSAGES/kcm_kwinrules.mo +share/locale/se/LC_MESSAGES/kcmkwincommon.mo +share/locale/se/LC_MESSAGES/kcmkwincompositing.mo +share/locale/se/LC_MESSAGES/kcmkwm.mo +share/locale/se/LC_MESSAGES/kwin.mo +share/locale/si/LC_MESSAGES/kcm_kwin_virtualdesktops.mo +share/locale/si/LC_MESSAGES/kcm_kwindecoration.mo +share/locale/si/LC_MESSAGES/kcm_kwinrules.mo +share/locale/si/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/si/LC_MESSAGES/kcmkwincompositing.mo +share/locale/si/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/si/LC_MESSAGES/kcmkwm.mo +share/locale/si/LC_MESSAGES/kwin.mo +share/locale/sk/LC_MESSAGES/kcm_kwin_effects.mo +share/locale/sk/LC_MESSAGES/kcm_kwin_scripts.mo +share/locale/sk/LC_MESSAGES/kcm_kwin_virtualdesktops.mo +share/locale/sk/LC_MESSAGES/kcm_kwindecoration.mo +share/locale/sk/LC_MESSAGES/kcm_kwinrules.mo +share/locale/sk/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/sk/LC_MESSAGES/kcm_kwinxwayland.mo +share/locale/sk/LC_MESSAGES/kcm_virtualkeyboard.mo +share/locale/sk/LC_MESSAGES/kcmkwincommon.mo +share/locale/sk/LC_MESSAGES/kcmkwincompositing.mo +share/locale/sk/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/sk/LC_MESSAGES/kcmkwm.mo +share/locale/sk/LC_MESSAGES/kwin.mo +share/locale/sl/LC_MESSAGES/kcm_kwin_effects.mo +share/locale/sl/LC_MESSAGES/kcm_kwin_scripts.mo +share/locale/sl/LC_MESSAGES/kcm_kwin_virtualdesktops.mo +share/locale/sl/LC_MESSAGES/kcm_kwindecoration.mo +share/locale/sl/LC_MESSAGES/kcm_kwinrules.mo +share/locale/sl/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/sl/LC_MESSAGES/kcm_kwinxwayland.mo +share/locale/sl/LC_MESSAGES/kcm_virtualkeyboard.mo +share/locale/sl/LC_MESSAGES/kcmkwincommon.mo +share/locale/sl/LC_MESSAGES/kcmkwincompositing.mo +share/locale/sl/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/sl/LC_MESSAGES/kcmkwm.mo +share/locale/sl/LC_MESSAGES/kwin.mo +share/locale/sq/LC_MESSAGES/kcm_kwin_virtualdesktops.mo +share/locale/sq/LC_MESSAGES/kcm_kwindecoration.mo +share/locale/sq/LC_MESSAGES/kcm_kwinrules.mo +share/locale/sq/LC_MESSAGES/kcmkwincompositing.mo +share/locale/sq/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/sq/LC_MESSAGES/kcmkwm.mo +share/locale/sq/LC_MESSAGES/kwin.mo +share/locale/sr/LC_MESSAGES/kcm_kwin_scripts.mo +share/locale/sr/LC_MESSAGES/kcm_kwin_virtualdesktops.mo +share/locale/sr/LC_MESSAGES/kcm_kwindecoration.mo +share/locale/sr/LC_MESSAGES/kcm_kwinrules.mo +share/locale/sr/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/sr/LC_MESSAGES/kcmkwincompositing.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@ijekavian/LC_MESSAGES/kcm_kwin_scripts.mo +share/locale/sr@ijekavian/LC_MESSAGES/kcm_kwin_virtualdesktops.mo +share/locale/sr@ijekavian/LC_MESSAGES/kcm_kwindecoration.mo +share/locale/sr@ijekavian/LC_MESSAGES/kcm_kwinrules.mo +share/locale/sr@ijekavian/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/sr@ijekavian/LC_MESSAGES/kcmkwincompositing.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@ijekavianlatin/LC_MESSAGES/kcm_kwin_scripts.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_kwin_virtualdesktops.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_kwindecoration.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_kwinrules.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmkwincompositing.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@latin/LC_MESSAGES/kcm_kwin_scripts.mo +share/locale/sr@latin/LC_MESSAGES/kcm_kwin_virtualdesktops.mo +share/locale/sr@latin/LC_MESSAGES/kcm_kwindecoration.mo +share/locale/sr@latin/LC_MESSAGES/kcm_kwinrules.mo +share/locale/sr@latin/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/sr@latin/LC_MESSAGES/kcmkwincompositing.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/sv/LC_MESSAGES/kcm_kwin_effects.mo +share/locale/sv/LC_MESSAGES/kcm_kwin_scripts.mo +share/locale/sv/LC_MESSAGES/kcm_kwin_virtualdesktops.mo +share/locale/sv/LC_MESSAGES/kcm_kwindecoration.mo +share/locale/sv/LC_MESSAGES/kcm_kwinrules.mo +share/locale/sv/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/sv/LC_MESSAGES/kcm_virtualkeyboard.mo +share/locale/sv/LC_MESSAGES/kcmkwincommon.mo +share/locale/sv/LC_MESSAGES/kcmkwincompositing.mo +share/locale/sv/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/sv/LC_MESSAGES/kcmkwm.mo +share/locale/sv/LC_MESSAGES/kwin.mo +share/locale/ta/LC_MESSAGES/kcm_kwin_effects.mo +share/locale/ta/LC_MESSAGES/kcm_kwin_scripts.mo +share/locale/ta/LC_MESSAGES/kcm_kwin_virtualdesktops.mo +share/locale/ta/LC_MESSAGES/kcm_kwindecoration.mo +share/locale/ta/LC_MESSAGES/kcm_kwinrules.mo +share/locale/ta/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/ta/LC_MESSAGES/kcm_virtualkeyboard.mo +share/locale/ta/LC_MESSAGES/kcmkwincommon.mo +share/locale/ta/LC_MESSAGES/kcmkwincompositing.mo +share/locale/ta/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/ta/LC_MESSAGES/kcmkwm.mo +share/locale/ta/LC_MESSAGES/kwin.mo +share/locale/te/LC_MESSAGES/kcm_kwin_virtualdesktops.mo +share/locale/te/LC_MESSAGES/kcm_kwindecoration.mo +share/locale/te/LC_MESSAGES/kcm_kwinrules.mo +share/locale/te/LC_MESSAGES/kcmkwincompositing.mo +share/locale/te/LC_MESSAGES/kcmkwm.mo +share/locale/te/LC_MESSAGES/kwin.mo +share/locale/tg/LC_MESSAGES/kcm_kwin_virtualdesktops.mo +share/locale/tg/LC_MESSAGES/kcm_kwindecoration.mo +share/locale/tg/LC_MESSAGES/kcm_kwinrules.mo +share/locale/tg/LC_MESSAGES/kcmkwincommon.mo +share/locale/tg/LC_MESSAGES/kcmkwincompositing.mo +share/locale/tg/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/tg/LC_MESSAGES/kcmkwm.mo +share/locale/tg/LC_MESSAGES/kwin.mo +share/locale/th/LC_MESSAGES/kcm_kwin_virtualdesktops.mo +share/locale/th/LC_MESSAGES/kcm_kwindecoration.mo +share/locale/th/LC_MESSAGES/kcm_kwinrules.mo +share/locale/th/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/th/LC_MESSAGES/kcmkwincompositing.mo +share/locale/th/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/th/LC_MESSAGES/kcmkwm.mo +share/locale/th/LC_MESSAGES/kwin.mo +share/locale/tr/LC_MESSAGES/kcm_kwin_effects.mo +share/locale/tr/LC_MESSAGES/kcm_kwin_scripts.mo +share/locale/tr/LC_MESSAGES/kcm_kwin_virtualdesktops.mo +share/locale/tr/LC_MESSAGES/kcm_kwindecoration.mo +share/locale/tr/LC_MESSAGES/kcm_kwinrules.mo +share/locale/tr/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/tr/LC_MESSAGES/kcm_kwinxwayland.mo +share/locale/tr/LC_MESSAGES/kcm_virtualkeyboard.mo +share/locale/tr/LC_MESSAGES/kcmkwincommon.mo +share/locale/tr/LC_MESSAGES/kcmkwincompositing.mo +share/locale/tr/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/tr/LC_MESSAGES/kcmkwm.mo +share/locale/tr/LC_MESSAGES/kwin.mo +share/locale/ug/LC_MESSAGES/kcm_kwin_scripts.mo +share/locale/ug/LC_MESSAGES/kcm_kwin_virtualdesktops.mo +share/locale/ug/LC_MESSAGES/kcm_kwindecoration.mo +share/locale/ug/LC_MESSAGES/kcm_kwinrules.mo +share/locale/ug/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/ug/LC_MESSAGES/kcmkwincompositing.mo +share/locale/ug/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/ug/LC_MESSAGES/kcmkwm.mo +share/locale/ug/LC_MESSAGES/kwin.mo +share/locale/uk/LC_MESSAGES/kcm_kwin_effects.mo +share/locale/uk/LC_MESSAGES/kcm_kwin_scripts.mo +share/locale/uk/LC_MESSAGES/kcm_kwin_virtualdesktops.mo +share/locale/uk/LC_MESSAGES/kcm_kwindecoration.mo +share/locale/uk/LC_MESSAGES/kcm_kwinrules.mo +share/locale/uk/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/uk/LC_MESSAGES/kcm_kwinxwayland.mo +share/locale/uk/LC_MESSAGES/kcm_virtualkeyboard.mo +share/locale/uk/LC_MESSAGES/kcmkwincommon.mo +share/locale/uk/LC_MESSAGES/kcmkwincompositing.mo +share/locale/uk/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/uk/LC_MESSAGES/kcmkwm.mo +share/locale/uk/LC_MESSAGES/kwin.mo +share/locale/uz/LC_MESSAGES/kcm_kwindecoration.mo +share/locale/uz/LC_MESSAGES/kcm_kwinrules.mo +share/locale/uz/LC_MESSAGES/kcmkwm.mo +share/locale/uz/LC_MESSAGES/kwin.mo +share/locale/uz@cyrillic/LC_MESSAGES/kcm_kwindecoration.mo +share/locale/uz@cyrillic/LC_MESSAGES/kcm_kwinrules.mo +share/locale/uz@cyrillic/LC_MESSAGES/kcmkwm.mo +share/locale/uz@cyrillic/LC_MESSAGES/kwin.mo +share/locale/vi/LC_MESSAGES/kcm_kwin_effects.mo +share/locale/vi/LC_MESSAGES/kcm_kwin_scripts.mo +share/locale/vi/LC_MESSAGES/kcm_kwin_virtualdesktops.mo +share/locale/vi/LC_MESSAGES/kcm_kwindecoration.mo +share/locale/vi/LC_MESSAGES/kcm_kwinrules.mo +share/locale/vi/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/vi/LC_MESSAGES/kcm_kwinxwayland.mo +share/locale/vi/LC_MESSAGES/kcm_virtualkeyboard.mo +share/locale/vi/LC_MESSAGES/kcmkwincommon.mo +share/locale/vi/LC_MESSAGES/kcmkwincompositing.mo +share/locale/vi/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/vi/LC_MESSAGES/kcmkwm.mo +share/locale/vi/LC_MESSAGES/kwin.mo +share/locale/wa/LC_MESSAGES/kcm_kwin_virtualdesktops.mo +share/locale/wa/LC_MESSAGES/kcm_kwindecoration.mo +share/locale/wa/LC_MESSAGES/kcm_kwinrules.mo +share/locale/wa/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/wa/LC_MESSAGES/kcmkwincompositing.mo +share/locale/wa/LC_MESSAGES/kcmkwinscreenedges.mo +share/locale/wa/LC_MESSAGES/kcmkwm.mo +share/locale/wa/LC_MESSAGES/kwin.mo +share/locale/xh/LC_MESSAGES/kcm_kwindecoration.mo +share/locale/xh/LC_MESSAGES/kcmkwm.mo +share/locale/xh/LC_MESSAGES/kwin.mo +share/locale/zh_CN/LC_MESSAGES/kcm_kwin_effects.mo +share/locale/zh_CN/LC_MESSAGES/kcm_kwin_scripts.mo +share/locale/zh_CN/LC_MESSAGES/kcm_kwin_virtualdesktops.mo +share/locale/zh_CN/LC_MESSAGES/kcm_kwindecoration.mo +share/locale/zh_CN/LC_MESSAGES/kcm_kwinrules.mo +share/locale/zh_CN/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/zh_CN/LC_MESSAGES/kcm_kwinxwayland.mo +share/locale/zh_CN/LC_MESSAGES/kcm_virtualkeyboard.mo +share/locale/zh_CN/LC_MESSAGES/kcmkwincommon.mo +share/locale/zh_CN/LC_MESSAGES/kcmkwincompositing.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_TW/LC_MESSAGES/kcm_kwin_effects.mo +share/locale/zh_TW/LC_MESSAGES/kcm_kwin_scripts.mo +share/locale/zh_TW/LC_MESSAGES/kcm_kwin_virtualdesktops.mo +share/locale/zh_TW/LC_MESSAGES/kcm_kwindecoration.mo +share/locale/zh_TW/LC_MESSAGES/kcm_kwinrules.mo +share/locale/zh_TW/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/zh_TW/LC_MESSAGES/kcm_kwinxwayland.mo +share/locale/zh_TW/LC_MESSAGES/kcm_virtualkeyboard.mo +share/locale/zh_TW/LC_MESSAGES/kcmkwincommon.mo +share/locale/zh_TW/LC_MESSAGES/kcmkwincompositing.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/qlogging-categories6/org_kde_kwin.categories diff --git a/x11/Makefile b/x11/Makefile index 63faee45ae3e..8231cb21cf88 100644 --- a/x11/Makefile +++ b/x11/Makefile @@ -1,646 +1,661 @@ COMMENT = Ports to support the X window system SUBDIR += 3ddesktop SUBDIR += 9box SUBDIR += 9menu SUBDIR += aclip SUBDIR += admiral SUBDIR += alacritty SUBDIR += albert SUBDIR += alttab SUBDIR += aminal SUBDIR += antimicrox SUBDIR += appmenu-registrar SUBDIR += appres SUBDIR += apwal SUBDIR += arandr SUBDIR += arcan-trayicon SUBDIR += aterm SUBDIR += autorandr SUBDIR += babl SUBDIR += bbappconf SUBDIR += bbdock SUBDIR += bbrun SUBDIR += beforelight SUBDIR += bemenu SUBDIR += bgrot SUBDIR += bgs SUBDIR += bitmap SUBDIR += bmpanel2 SUBDIR += brisk-menu SUBDIR += budgie SUBDIR += budgie-desktop SUBDIR += budgie-screensaver SUBDIR += cde SUBDIR += cde-25 SUBDIR += cde-devel SUBDIR += cinnamon SUBDIR += cinnamon-desktop SUBDIR += cinnamon-menus SUBDIR += cinnamon-screensaver SUBDIR += cinnamon-session SUBDIR += cl-clx SUBDIR += cl-clx-sbcl SUBDIR += clipcat SUBDIR += cliphist SUBDIR += clipman SUBDIR += compton-conf SUBDIR += conlecterm SUBDIR += controllermap SUBDIR += cool-retro-term SUBDIR += coreterminal SUBDIR += damask SUBDIR += deforaos-integration SUBDIR += deforaos-keyboard SUBDIR += deforaos-libdesktop SUBDIR += deforaos-locker SUBDIR += deskmenu SUBDIR += disman SUBDIR += dmenu SUBDIR += dmenu2 SUBDIR += docker-tray SUBDIR += dsbautostart SUBDIR += dsbxinput SUBDIR += dwmblocks SUBDIR += dxpc SUBDIR += dzen2 SUBDIR += eaglemode SUBDIR += editres SUBDIR += elementary-terminal SUBDIR += emprint SUBDIR += erun SUBDIR += eterm SUBDIR += evilvte SUBDIR += evtest SUBDIR += eww SUBDIR += fbdesk SUBDIR += fbpanel SUBDIR += find-cursor SUBDIR += fireflies SUBDIR += florence SUBDIR += flruler SUBDIR += fnott SUBDIR += foot SUBDIR += fstobdf SUBDIR += fuzzel SUBDIR += gdm SUBDIR += glcapsviewer SUBDIR += gmrun SUBDIR += gnome SUBDIR += gnome-clipboard-daemon SUBDIR += gnome-console SUBDIR += gnome-desktop SUBDIR += gnome-menus SUBDIR += gnome-pie SUBDIR += gnome-session SUBDIR += gnome-shell SUBDIR += gnome-shell-extensions SUBDIR += gnome-terminal SUBDIR += gnustep-app SUBDIR += grabc SUBDIR += grim SUBDIR += grimshot SUBDIR += gromit SUBDIR += gromit-mpx SUBDIR += gskrab SUBDIR += gstreamer1-plugins-x SUBDIR += gstreamer1-plugins-ximagesrc SUBDIR += gtk-app-menu SUBDIR += gtk-theme-switch2 SUBDIR += gtkchtheme SUBDIR += gtklock SUBDIR += gtkterm2 SUBDIR += guake SUBDIR += gxkb SUBDIR += habak SUBDIR += hamclock SUBDIR += hhpc SUBDIR += hs-xmobar SUBDIR += hsetroot SUBDIR += hybrid-bar SUBDIR += hyprland-share-picker SUBDIR += hyprpaper SUBDIR += hyprpicker SUBDIR += i3bar-river SUBDIR += i3blocks SUBDIR += i3lock-color SUBDIR += iceauth SUBDIR += ico SUBDIR += idesk SUBDIR += imwheel SUBDIR += innerspace SUBDIR += inputplug SUBDIR += j4-dmenu-desktop SUBDIR += jbxvt SUBDIR += jgmenu SUBDIR += kanshi SUBDIR += kb2mb2 SUBDIR += kde-baseapps SUBDIR += kde5 SUBDIR += kdisplay SUBDIR += keybinder SUBDIR += keybinder-gtk3 SUBDIR += keyboardcast SUBDIR += keynav 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 += kf6-frameworkintegration SUBDIR += kf6-frameworks SUBDIR += kf6-kded SUBDIR += kf6-kglobalaccel SUBDIR += kf6-krunner SUBDIR += kf6-kwindowsystem + SUBDIR += kf6-plasma-framework SUBDIR += kickoff SUBDIR += kitty SUBDIR += konsole SUBDIR += lavalauncher SUBDIR += lemonbar SUBDIR += lemonbar-xft SUBDIR += libICE SUBDIR += libSM SUBDIR += libX11 SUBDIR += libXScrnSaver SUBDIR += libXau SUBDIR += libXcm SUBDIR += libXcomposite SUBDIR += libXcursor SUBDIR += libXdamage SUBDIR += libXdmcp SUBDIR += libXext SUBDIR += libXfixes SUBDIR += libXi SUBDIR += libXinerama SUBDIR += libXpm SUBDIR += libXpresent SUBDIR += libXrandr SUBDIR += libXrender SUBDIR += libXres SUBDIR += libXtst SUBDIR += libXv SUBDIR += libXvMC SUBDIR += libXxf86dga SUBDIR += libXxf86vm SUBDIR += libclipboard SUBDIR += libei SUBDIR += libexo SUBDIR += libfakekey SUBDIR += libfm SUBDIR += libfm-extra SUBDIR += libfm-qt SUBDIR += libgnomekbd SUBDIR += libinput SUBDIR += libmatekbd SUBDIR += libsx SUBDIR += libsynaptics SUBDIR += libwacom SUBDIR += libxcb SUBDIR += libxcvt SUBDIR += libxdg-basedir SUBDIR += libxfce4menu SUBDIR += libxfce4util SUBDIR += libxkbcommon SUBDIR += libxkbfile SUBDIR += libxklavier SUBDIR += libxshmfence SUBDIR += lightdm SUBDIR += lightdm-gtk-greeter SUBDIR += lightdm-gtk-greeter-settings SUBDIR += lilyterm SUBDIR += linux-c7-libxkbcommon SUBDIR += linux-c7-pixman SUBDIR += linux-c7-xcb-util SUBDIR += linux-c7-xcb-util-image SUBDIR += linux-c7-xcb-util-keysyms SUBDIR += linux-c7-xorg-libs SUBDIR += linux-nvidia-libs SUBDIR += linux-nvidia-libs-304 SUBDIR += linux-nvidia-libs-340 SUBDIR += linux-nvidia-libs-390 SUBDIR += linux-nvidia-libs-470 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-about SUBDIR += lxqt-globalkeys SUBDIR += lxqt-runner SUBDIR += lxrandr SUBDIR += ly SUBDIR += mako SUBDIR += mate SUBDIR += mate-applet-appmenu SUBDIR += mate-applets SUBDIR += mate-base SUBDIR += mate-desktop SUBDIR += mate-dock-applet SUBDIR += mate-menus SUBDIR += mate-panel SUBDIR += mate-screensaver SUBDIR += mate-session-manager SUBDIR += mate-terminal SUBDIR += menu-cache SUBDIR += menulibre SUBDIR += metalock SUBDIR += mkcomposecache SUBDIR += mlterm SUBDIR += mons SUBDIR += mrxvt SUBDIR += mrxvt-devel SUBDIR += multi-aterm SUBDIR += mxascii SUBDIR += mxico SUBDIR += nezd SUBDIR += nfy SUBDIR += numlockx SUBDIR += nvidia-driver SUBDIR += nvidia-driver-304 SUBDIR += nvidia-driver-340 SUBDIR += nvidia-driver-390 SUBDIR += nvidia-driver-470 SUBDIR += nvidia-hybrid-graphics SUBDIR += nvidia-secondary-driver SUBDIR += nvidia-secondary-driver-390 SUBDIR += nvidia-settings SUBDIR += nvidia-xconfig SUBDIR += nwg-bar SUBDIR += nwg-dock SUBDIR += nwg-dock-hyprland SUBDIR += nwg-drawer SUBDIR += nwg-launchers SUBDIR += nwg-look SUBDIR += nwg-menu SUBDIR += nxcomp SUBDIR += openrgb SUBDIR += oscar 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 += pcdm SUBDIR += perwindowlayoutd SUBDIR += pipeglade SUBDIR += pixman SUBDIR += plank SUBDIR += plasma-wayland-protocols SUBDIR += plasma5-kactivitymanagerd SUBDIR += plasma5-kgamma5 SUBDIR += plasma5-kscreen SUBDIR += plasma5-kwayland-integration SUBDIR += plasma5-layer-shell-qt SUBDIR += plasma5-libkscreen SUBDIR += plasma5-plasma SUBDIR += plasma5-plasma-bigscreen SUBDIR += plasma5-plasma-desktop SUBDIR += plasma5-plasma-integration SUBDIR += plasma5-plasma-workspace + SUBDIR += plasma6-kactivitymanagerd + SUBDIR += plasma6-kgamma + SUBDIR += plasma6-kglobalacceld + SUBDIR += plasma6-kscreen + SUBDIR += plasma6-kwayland + SUBDIR += plasma6-layer-shell-qt + SUBDIR += plasma6-libkscreen + SUBDIR += plasma6-libplasma + SUBDIR += plasma6-plasma + SUBDIR += plasma6-plasma-activities + SUBDIR += plasma6-plasma-activities-stats + SUBDIR += plasma6-plasma-desktop + SUBDIR += plasma6-plasma-integration + SUBDIR += plasma6-plasma-workspace SUBDIR += pmenu SUBDIR += polybar SUBDIR += printscreen SUBDIR += py-autotiling SUBDIR += py-caffeine-ng SUBDIR += py-i3-quickterm SUBDIR += py-i3ipc SUBDIR += py-mouseinfo SUBDIR += py-pyautogui SUBDIR += py-pynput SUBDIR += py-pyscreenshot SUBDIR += py-pyscreeze SUBDIR += py-python-xapp SUBDIR += py-pyvirtualdisplay SUBDIR += py-screeninfo SUBDIR += py-xcffib SUBDIR += py-xdot SUBDIR += qimageblitz SUBDIR += qt5-qev SUBDIR += qt5-x11extras SUBDIR += qterminal SUBDIR += remontoire SUBDIR += rendercheck SUBDIR += rgb SUBDIR += rio SUBDIR += rlaunch SUBDIR += rofi SUBDIR += rofi-calc SUBDIR += rofi-emoji SUBDIR += rofi-file-browser-extended SUBDIR += rofi-pass SUBDIR += rofi-wayland SUBDIR += roxterm SUBDIR += rsibreak SUBDIR += rubygem-gnome SUBDIR += runner SUBDIR += rxvt-unicode SUBDIR += sakura SUBDIR += salut SUBDIR += sandbar SUBDIR += sbxkb SUBDIR += screen-message SUBDIR += screengrab SUBDIR += screenkey SUBDIR += scripts SUBDIR += sddm SUBDIR += sdwmbar SUBDIR += sessreg SUBDIR += setlayout SUBDIR += setxkbmap SUBDIR += sfwbar SUBDIR += shikane SUBDIR += shotman SUBDIR += showkeys SUBDIR += showmethekey SUBDIR += simplestroke SUBDIR += sirula SUBDIR += slick-greeter SUBDIR += slim SUBDIR += slock SUBDIR += slop SUBDIR += slurp SUBDIR += smproxy SUBDIR += somebar SUBDIR += sprop SUBDIR += squeekboard SUBDIR += srandrd SUBDIR += sselp SUBDIR += stalonetray SUBDIR += startup-notification SUBDIR += sterm SUBDIR += stjerm SUBDIR += swarp SUBDIR += sway-audio-idle-inhibit SUBDIR += swaybg SUBDIR += swayfloatingswitcher SUBDIR += swayidle SUBDIR += swayimg SUBDIR += swaylock SUBDIR += swaylock-effects SUBDIR += swaync SUBDIR += swayr SUBDIR += swayrbar SUBDIR += swaysettings SUBDIR += sxhkd SUBDIR += sxmo-wayout SUBDIR += sxpc SUBDIR += tabbed SUBDIR += taiga SUBDIR += temperature.app SUBDIR += terminal.app SUBDIR += terminator SUBDIR += terminology SUBDIR += thingylaunch SUBDIR += tilda SUBDIR += tilix SUBDIR += tint SUBDIR += tofi SUBDIR += trayer SUBDIR += ulauncher SUBDIR += urxvt-font-size SUBDIR += urxvt-perls SUBDIR += vdesk SUBDIR += viewres SUBDIR += virglrenderer SUBDIR += virtboard SUBDIR += virtualgl SUBDIR += wallutils SUBDIR += wapanel SUBDIR += watershot SUBDIR += way-displays SUBDIR += waybar SUBDIR += wayidle SUBDIR += wayland-logout SUBDIR += waylock SUBDIR += wayout SUBDIR += wbar SUBDIR += wcm SUBDIR += wdisplays SUBDIR += wdm SUBDIR += wev SUBDIR += wezterm SUBDIR += wf-shell SUBDIR += wl-clipboard SUBDIR += wl-mirror SUBDIR += wlogout SUBDIR += wlopm SUBDIR += wlr-randr SUBDIR += wlr-which-key SUBDIR += wlrctl SUBDIR += wmappl SUBDIR += wmblob SUBDIR += wmbutton SUBDIR += wmcliphist SUBDIR += wmctrl SUBDIR += wmdrawer SUBDIR += wmenu SUBDIR += wmfocus SUBDIR += wmsystemtray SUBDIR += wmutils-core SUBDIR += wmutils-opt SUBDIR += wob SUBDIR += wofi SUBDIR += workrave SUBDIR += wshowkeys SUBDIR += wtype SUBDIR += wvkbd SUBDIR += x-on-resize SUBDIR += x11perf SUBDIR += x3270 SUBDIR += xantfarm SUBDIR += xapp SUBDIR += xascii SUBDIR += xauth SUBDIR += xautolock SUBDIR += xautomation SUBDIR += xbacklight SUBDIR += xballoon SUBDIR += xbanish SUBDIR += xbiff SUBDIR += xbindkeys SUBDIR += xbitmaps SUBDIR += xbrightness SUBDIR += xcalc SUBDIR += xcalib SUBDIR += xcape SUBDIR += xcb SUBDIR += xcb-imdkit SUBDIR += xcb-proto SUBDIR += xcb-util SUBDIR += xcb-util-cursor SUBDIR += xcb-util-errors SUBDIR += xcb-util-image SUBDIR += xcb-util-keysyms SUBDIR += xcb-util-renderutil SUBDIR += xcb-util-wm SUBDIR += xcb-util-xrm SUBDIR += xclickroot SUBDIR += xclip SUBDIR += xclipboard SUBDIR += xcm SUBDIR += xcmd SUBDIR += xcmsdb SUBDIR += xcoloredit SUBDIR += xcolors SUBDIR += xconsole SUBDIR += xcursorgen SUBDIR += xcut SUBDIR += xdg-desktop-portal-gnome SUBDIR += xdg-desktop-portal-gtk SUBDIR += xdg-desktop-portal-hyprland SUBDIR += xdg-desktop-portal-luminous SUBDIR += xdg-desktop-portal-wlr SUBDIR += xdialog SUBDIR += xditview SUBDIR += xdm SUBDIR += xdo SUBDIR += xdotool SUBDIR += xdpyinfo SUBDIR += xdriinfo SUBDIR += xdtm SUBDIR += xedit SUBDIR += xev SUBDIR += xeyes SUBDIR += xf86dga SUBDIR += xfce4-appmenu-plugin SUBDIR += xfce4-clipman-plugin SUBDIR += xfce4-conf SUBDIR += xfce4-dashboard SUBDIR += xfce4-docklike-plugin SUBDIR += xfce4-goodies SUBDIR += xfce4-screensaver SUBDIR += xfce4-screenshooter-plugin SUBDIR += xfce4-taskmanager SUBDIR += xfce4-terminal SUBDIR += xfce4-verve-plugin SUBDIR += xfce4-whiskermenu-plugin SUBDIR += xfce4-windowck-plugin SUBDIR += xfd SUBDIR += xfishtank SUBDIR += xforward SUBDIR += xgamma SUBDIR += xgc SUBDIR += xhost SUBDIR += xidle 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 += xlupe SUBDIR += xmag SUBDIR += xman SUBDIR += xmangekyou SUBDIR += xmascot SUBDIR += xmenu SUBDIR += xmessage SUBDIR += xmh SUBDIR += xmodmap SUBDIR += xmore SUBDIR += xmotd SUBDIR += xmsg SUBDIR += xmx SUBDIR += xnee SUBDIR += xnotify SUBDIR += xob SUBDIR += xorg SUBDIR += xorg-apps SUBDIR += xorg-cf-files SUBDIR += xorg-docs SUBDIR += xorg-libraries SUBDIR += xorg-minimal SUBDIR += xorgproto SUBDIR += xpr SUBDIR += xpra SUBDIR += xpra-html5 SUBDIR += xprintidle SUBDIR += xprompt SUBDIR += xprop SUBDIR += xrandr SUBDIR += xrdb SUBDIR += xrefresh SUBDIR += xrestop SUBDIR += xrootconsole SUBDIR += xrsh SUBDIR += xrsi SUBDIR += xscope SUBDIR += xscreensaver SUBDIR += xscreensaver.app SUBDIR += xsel-conrad SUBDIR += xset SUBDIR += xsetroot SUBDIR += xsettingsd SUBDIR += xskyroot SUBDIR += xsm SUBDIR += xsnow SUBDIR += xssstate SUBDIR += xstarroll SUBDIR += xstdcmap SUBDIR += xstroke SUBDIR += xtacy SUBDIR += xterm SUBDIR += xtermcontrol SUBDIR += xtermset SUBDIR += xtestpicture SUBDIR += xtitle SUBDIR += xtoolwait SUBDIR += xtrans SUBDIR += xtrlock SUBDIR += xtset SUBDIR += xvattr SUBDIR += xvidtune SUBDIR += xvinfo SUBDIR += xvkbd SUBDIR += xvmcinfo SUBDIR += xvt SUBDIR += xwatchwin SUBDIR += xwayland-run SUBDIR += xwaylandvideobridge SUBDIR += xwd SUBDIR += xwininfo SUBDIR += xwinwrap SUBDIR += xwit SUBDIR += xwud SUBDIR += xxkb SUBDIR += xzoom SUBDIR += yad SUBDIR += yakuake SUBDIR += yalias SUBDIR += yeahconsole SUBDIR += yelp SUBDIR += zenity .include diff --git a/x11/plasma6-kactivitymanagerd/Makefile b/x11/plasma6-kactivitymanagerd/Makefile new file mode 100644 index 000000000000..e77936ae9666 --- /dev/null +++ b/x11/plasma6-kactivitymanagerd/Makefile @@ -0,0 +1,18 @@ +PORTNAME= kactivitymanagerd +DISTVERSION= ${KDE_PLASMA_VERSION} +CATEGORIES= x11 kde kde-plasma + +COMMENT= System service to manage user's activities, track the usage patterns etc +MAINTAINER= kde@FreeBSD.org + +BUILD_DEPENDS= ${LOCALBASE}/include/boost/range/algorithm.hpp:devel/boost-libs + +USES= cmake gettext gl kde:6 qt:6 tar:xz xorg +USE_GL= gl opengl +USE_KDE= colorscheme config configwidgets coreaddons crash dbusaddons \ + globalaccel i18n kio service widgetsaddons windowsystem xmlgui \ + ecm:build +USE_QT= 5compat base +USE_XORG= x11 + +.include diff --git a/x11/plasma6-kactivitymanagerd/distinfo b/x11/plasma6-kactivitymanagerd/distinfo new file mode 100644 index 000000000000..adb4a40d7978 --- /dev/null +++ b/x11/plasma6-kactivitymanagerd/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1701525079 +SHA256 (KDE/plasma/5.90.0/kactivitymanagerd-5.90.0.tar.xz) = 243787eedd0b85acf6d6fa0d4c680033e69617489584fb4fb9f6e1e7dc12df44 +SIZE (KDE/plasma/5.90.0/kactivitymanagerd-5.90.0.tar.xz) = 110104 diff --git a/x11/plasma6-kactivitymanagerd/pkg-plist b/x11/plasma6-kactivitymanagerd/pkg-plist new file mode 100644 index 000000000000..5248be5e5ba3 --- /dev/null +++ b/x11/plasma6-kactivitymanagerd/pkg-plist @@ -0,0 +1,84 @@ +lib/libexec/kactivitymanagerd +lib/libkactivitymanagerd_plugin.so +%%QT_PLUGINDIR%%/kactivitymanagerd1/org.kde.ActivityManager.ActivityRunner.so +%%QT_PLUGINDIR%%/kactivitymanagerd1/org.kde.ActivityManager.ActivityTemplates.so +%%QT_PLUGINDIR%%/kactivitymanagerd1/org.kde.ActivityManager.GlobalShortcuts.so +%%QT_PLUGINDIR%%/kactivitymanagerd1/org.kde.ActivityManager.LibreOfficeEventSpy.so +%%QT_PLUGINDIR%%/kactivitymanagerd1/org.kde.ActivityManager.RecentlyUsedEventSpy.so +%%QT_PLUGINDIR%%/kactivitymanagerd1/org.kde.ActivityManager.ResourceScoring.so +%%QT_PLUGINDIR%%/kactivitymanagerd1/org.kde.ActivityManager.RunApplication.so +%%QT_PLUGINDIR%%/kactivitymanagerd1/org.kde.ActivityManager.VirtualDesktopSwitch.so +lib/systemd/user/plasma-kactivitymanagerd.service +share/dbus-1/services/org.kde.ActivityManager.service +share/krunner/dbusplugins/plasma-runnners-activities.desktop +share/locale/ar/LC_MESSAGES/kactivities6.mo +share/locale/ast/LC_MESSAGES/kactivities6.mo +share/locale/az/LC_MESSAGES/kactivities6.mo +share/locale/bg/LC_MESSAGES/kactivities6.mo +share/locale/bs/LC_MESSAGES/kactivities6.mo +share/locale/ca/LC_MESSAGES/kactivities6.mo +share/locale/ca@valencia/LC_MESSAGES/kactivities6.mo +share/locale/cs/LC_MESSAGES/kactivities6.mo +share/locale/da/LC_MESSAGES/kactivities6.mo +share/locale/de/LC_MESSAGES/kactivities6.mo +share/locale/el/LC_MESSAGES/kactivities6.mo +share/locale/en_GB/LC_MESSAGES/kactivities6.mo +share/locale/eo/LC_MESSAGES/kactivities6.mo +share/locale/es/LC_MESSAGES/kactivities6.mo +share/locale/et/LC_MESSAGES/kactivities6.mo +share/locale/eu/LC_MESSAGES/kactivities6.mo +share/locale/fi/LC_MESSAGES/kactivities6.mo +share/locale/fr/LC_MESSAGES/kactivities6.mo +share/locale/ga/LC_MESSAGES/kactivities6.mo +share/locale/gd/LC_MESSAGES/kactivities6.mo +share/locale/gl/LC_MESSAGES/kactivities6.mo +share/locale/gu/LC_MESSAGES/kactivities6.mo +share/locale/he/LC_MESSAGES/kactivities6.mo +share/locale/hi/LC_MESSAGES/kactivities6.mo +share/locale/hr/LC_MESSAGES/kactivities6.mo +share/locale/hu/LC_MESSAGES/kactivities6.mo +share/locale/ia/LC_MESSAGES/kactivities6.mo +share/locale/id/LC_MESSAGES/kactivities6.mo +share/locale/is/LC_MESSAGES/kactivities6.mo +share/locale/it/LC_MESSAGES/kactivities6.mo +share/locale/ja/LC_MESSAGES/kactivities6.mo +share/locale/ka/LC_MESSAGES/kactivities6.mo +share/locale/kk/LC_MESSAGES/kactivities6.mo +share/locale/km/LC_MESSAGES/kactivities6.mo +share/locale/kn/LC_MESSAGES/kactivities6.mo +share/locale/ko/LC_MESSAGES/kactivities6.mo +share/locale/lt/LC_MESSAGES/kactivities6.mo +share/locale/lv/LC_MESSAGES/kactivities6.mo +share/locale/ml/LC_MESSAGES/kactivities6.mo +share/locale/mr/LC_MESSAGES/kactivities6.mo +share/locale/ms/LC_MESSAGES/kactivities6.mo +share/locale/nb/LC_MESSAGES/kactivities6.mo +share/locale/nds/LC_MESSAGES/kactivities6.mo +share/locale/nl/LC_MESSAGES/kactivities6.mo +share/locale/nn/LC_MESSAGES/kactivities6.mo +share/locale/pa/LC_MESSAGES/kactivities6.mo +share/locale/pl/LC_MESSAGES/kactivities6.mo +share/locale/pt/LC_MESSAGES/kactivities6.mo +share/locale/pt_BR/LC_MESSAGES/kactivities6.mo +share/locale/ro/LC_MESSAGES/kactivities6.mo +share/locale/ru/LC_MESSAGES/kactivities6.mo +share/locale/sa/LC_MESSAGES/kactivities6.mo +share/locale/se/LC_MESSAGES/kactivities6.mo +share/locale/sk/LC_MESSAGES/kactivities6.mo +share/locale/sl/LC_MESSAGES/kactivities6.mo +share/locale/sr/LC_MESSAGES/kactivities6.mo +share/locale/sr@ijekavian/LC_MESSAGES/kactivities6.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kactivities6.mo +share/locale/sr@latin/LC_MESSAGES/kactivities6.mo +share/locale/sv/LC_MESSAGES/kactivities6.mo +share/locale/ta/LC_MESSAGES/kactivities6.mo +share/locale/tg/LC_MESSAGES/kactivities6.mo +share/locale/th/LC_MESSAGES/kactivities6.mo +share/locale/tr/LC_MESSAGES/kactivities6.mo +share/locale/ug/LC_MESSAGES/kactivities6.mo +share/locale/uk/LC_MESSAGES/kactivities6.mo +share/locale/vi/LC_MESSAGES/kactivities6.mo +share/locale/wa/LC_MESSAGES/kactivities6.mo +share/locale/zh_CN/LC_MESSAGES/kactivities6.mo +share/locale/zh_TW/LC_MESSAGES/kactivities6.mo +share/qlogging-categories6/kactivitymanagerd.categories diff --git a/x11/plasma6-kgamma/Makefile b/x11/plasma6-kgamma/Makefile new file mode 100644 index 000000000000..d5aa50ebd7f2 --- /dev/null +++ b/x11/plasma6-kgamma/Makefile @@ -0,0 +1,14 @@ +PORTNAME= kgamma +DISTVERSION= ${KDE_PLASMA_VERSION} +CATEGORIES= x11 kde kde-plasma + +MAINTAINER= kde@FreeBSD.org +COMMENT= Adjust gamma settings + +USES= cmake gettext kde:6 qt:6 tar:xz xorg +USE_KDE= config configwidgets doctools i18n kcmutils \ + ecm:build +USE_QT= base +USE_XORG= ice sm x11 xext xxf86vm + +.include diff --git a/x11/plasma6-kgamma/distinfo b/x11/plasma6-kgamma/distinfo new file mode 100644 index 000000000000..fe1128366731 --- /dev/null +++ b/x11/plasma6-kgamma/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1701532342 +SHA256 (KDE/plasma/5.90.0/kgamma-5.90.0.tar.xz) = 38a5e559392d6f5357f32415416bfcc03b9e54e1c6054b948fc92f7f5647a939 +SIZE (KDE/plasma/5.90.0/kgamma-5.90.0.tar.xz) = 86292 diff --git a/x11/plasma6-kgamma/pkg-plist b/x11/plasma6-kgamma/pkg-plist new file mode 100644 index 000000000000..5e7148259e63 --- /dev/null +++ b/x11/plasma6-kgamma/pkg-plist @@ -0,0 +1,120 @@ +%%QT_PLUGINDIR%%/plasma/kcminit/kcm_kgamma_init.so +%%QT_PLUGINDIR%%/plasma/kcms/systemsettings_qwidgets/kcm_kgamma.so +share/applications/kcm_kgamma.desktop +share/doc/HTML/ca/kcontrol/kgamma/index.cache.bz2 +share/doc/HTML/ca/kcontrol/kgamma/index.docbook +share/doc/HTML/cs/kcontrol/kgamma/index.cache.bz2 +share/doc/HTML/cs/kcontrol/kgamma/index.docbook +share/doc/HTML/de/kcontrol/kgamma/index.cache.bz2 +share/doc/HTML/de/kcontrol/kgamma/index.docbook +share/doc/HTML/en/kcontrol/kgamma/index.cache.bz2 +share/doc/HTML/en/kcontrol/kgamma/index.docbook +share/doc/HTML/es/kcontrol/kgamma/index.cache.bz2 +share/doc/HTML/es/kcontrol/kgamma/index.docbook +share/doc/HTML/et/kcontrol/kgamma/index.cache.bz2 +share/doc/HTML/et/kcontrol/kgamma/index.docbook +share/doc/HTML/fr/kcontrol/kgamma/index.cache.bz2 +share/doc/HTML/fr/kcontrol/kgamma/index.docbook +share/doc/HTML/id/kcontrol/kgamma/index.cache.bz2 +share/doc/HTML/id/kcontrol/kgamma/index.docbook +share/doc/HTML/it/kcontrol/kgamma/index.cache.bz2 +share/doc/HTML/it/kcontrol/kgamma/index.docbook +share/doc/HTML/nl/kcontrol/kgamma/index.cache.bz2 +share/doc/HTML/nl/kcontrol/kgamma/index.docbook +share/doc/HTML/pt/kcontrol/kgamma/index.cache.bz2 +share/doc/HTML/pt/kcontrol/kgamma/index.docbook +share/doc/HTML/pt_BR/kcontrol/kgamma/index.cache.bz2 +share/doc/HTML/pt_BR/kcontrol/kgamma/index.docbook +share/doc/HTML/ru/kcontrol/kgamma/index.cache.bz2 +share/doc/HTML/ru/kcontrol/kgamma/index.docbook +share/doc/HTML/sv/kcontrol/kgamma/index.cache.bz2 +share/doc/HTML/sv/kcontrol/kgamma/index.docbook +share/doc/HTML/tr/kcontrol/kgamma/index.cache.bz2 +share/doc/HTML/tr/kcontrol/kgamma/index.docbook +share/doc/HTML/uk/kcontrol/kgamma/index.cache.bz2 +share/doc/HTML/uk/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/locale/ar/LC_MESSAGES/kcmkgamma.mo +share/locale/ast/LC_MESSAGES/kcmkgamma.mo +share/locale/az/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/id/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/ka/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/ml/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/sa/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/vi/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 diff --git a/x11/plasma6-kglobalacceld/Makefile b/x11/plasma6-kglobalacceld/Makefile new file mode 100644 index 000000000000..a6b2d8aaf8c7 --- /dev/null +++ b/x11/plasma6-kglobalacceld/Makefile @@ -0,0 +1,20 @@ +PORTNAME= kglobalacceld +DISTVERSION= ${KDE_PLASMA_VERSION} +CATEGORIES= x11 kde kde-plasma + +COMMENT= Daemon providing Global Keyboard Shortcut (Accelerator) functionality + +MAINTAINER= kde@FreeBSD.org + +LIB_DEPENDS= libxcb-keysyms.so:x11/xcb-util-keysyms \ + libxkbcommon.so:x11/libxkbcommon + +USES= cmake gl kde:6 qt:6 tar:xz xorg +USE_GL= gl opengl +USE_KDE= config coreaddons crash dbusaddons globalaccel kio \ + notifications service windowsystem \ + ecm:build +USE_QT= base +USE_XORG= x11 xcb + +.include diff --git a/x11/plasma6-kglobalacceld/distinfo b/x11/plasma6-kglobalacceld/distinfo new file mode 100644 index 000000000000..8675f01f02b9 --- /dev/null +++ b/x11/plasma6-kglobalacceld/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1701531674 +SHA256 (KDE/plasma/5.90.0/kglobalacceld-5.90.0.tar.xz) = f14455962f0ea551758a1ab5abdfb9acb4fa3cf48c3122b451a95782f1aa60db +SIZE (KDE/plasma/5.90.0/kglobalacceld-5.90.0.tar.xz) = 51492 diff --git a/x11/plasma6-kglobalacceld/pkg-plist b/x11/plasma6-kglobalacceld/pkg-plist new file mode 100644 index 000000000000..9cdeb71f31ea --- /dev/null +++ b/x11/plasma6-kglobalacceld/pkg-plist @@ -0,0 +1,13 @@ +etc/xdg/autostart/kglobalacceld.desktop +include/KGlobalAccelD/kglobalaccel_interface.h +include/KGlobalAccelD/kglobalacceld.h +include/KGlobalAccelD/kglobalacceld_export.h +lib/cmake/KGlobalAccelD/KGlobalAccelDConfig.cmake +lib/cmake/KGlobalAccelD/KGlobalAccelDConfigVersion.cmake +lib/cmake/KGlobalAccelD/KGlobalAccelDTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/KGlobalAccelD/KGlobalAccelDTargets.cmake +lib/libKGlobalAccelD.so.0 +lib/libKGlobalAccelD.so.%%KDE_PLASMA_VERSION%% +lib/libexec/kglobalacceld +%%QT_PLUGINDIR%%/org.kde.kglobalacceld.platforms/KGlobalAccelDXcb.so +lib/systemd/user/plasma-kglobalaccel.service diff --git a/x11/plasma6-kscreen/Makefile b/x11/plasma6-kscreen/Makefile new file mode 100644 index 000000000000..069af9492a40 --- /dev/null +++ b/x11/plasma6-kscreen/Makefile @@ -0,0 +1,14 @@ +PORTNAME= kscreen +DISTVERSION= ${KDE_PLASMA_VERSION} +CATEGORIES= x11 kde kde-plasma + +COMMENT= KDE screen management software +MAINTAINER= kde@FreeBSD.org + +USES= cmake gettext kde:6 qt:6 tar:xz +USE_KDE= config dbusaddons globalaccel i18n iconthemes kcmutils \ + layer-shell-qt libkscreen libplasma svg xmlgui \ + ecm:build +USE_QT= base sensors + +.include diff --git a/x11/plasma6-kscreen/distinfo b/x11/plasma6-kscreen/distinfo new file mode 100644 index 000000000000..b20d7cc91669 --- /dev/null +++ b/x11/plasma6-kscreen/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1701525141 +SHA256 (KDE/plasma/5.90.0/kscreen-5.90.0.tar.xz) = 31d61d108d0c400f2cece4650a77153a8fae9d761d482badd5b281686b29424e +SIZE (KDE/plasma/5.90.0/kscreen-5.90.0.tar.xz) = 193448 diff --git a/x11/plasma6-kscreen/pkg-plist b/x11/plasma6-kscreen/pkg-plist new file mode 100644 index 000000000000..dab1f8988389 --- /dev/null +++ b/x11/plasma6-kscreen/pkg-plist @@ -0,0 +1,219 @@ +bin/kscreen-console +lib/libexec/kscreen_osd_service +%%QT_PLUGINDIR%%/kf6/kded/kscreen.so +%%QT_PLUGINDIR%%/plasma/applets/org.kde.kscreen.so +%%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_kscreen.so +lib/systemd/user/plasma-kscreen-osd.service +share/applications/kcm_kscreen.desktop +share/dbus-1/services/org.kde.kscreen.osdService.service +share/locale/ar/LC_MESSAGES/kcm_kscreen.mo +share/locale/ar/LC_MESSAGES/kscreen.mo +share/locale/ar/LC_MESSAGES/kscreen_common.mo +share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo +share/locale/ast/LC_MESSAGES/kcm_kscreen.mo +share/locale/ast/LC_MESSAGES/kscreen.mo +share/locale/ast/LC_MESSAGES/kscreen_common.mo +share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo +share/locale/az/LC_MESSAGES/kcm_kscreen.mo +share/locale/az/LC_MESSAGES/kscreen.mo +share/locale/az/LC_MESSAGES/kscreen_common.mo +share/locale/az/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo +share/locale/bg/LC_MESSAGES/kcm_kscreen.mo +share/locale/bg/LC_MESSAGES/kscreen.mo +share/locale/bg/LC_MESSAGES/kscreen_common.mo +share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo +share/locale/bs/LC_MESSAGES/kcm_kscreen.mo +share/locale/bs/LC_MESSAGES/kscreen.mo +share/locale/ca/LC_MESSAGES/kcm_kscreen.mo +share/locale/ca/LC_MESSAGES/kscreen.mo +share/locale/ca/LC_MESSAGES/kscreen_common.mo +share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo +share/locale/ca@valencia/LC_MESSAGES/kcm_kscreen.mo +share/locale/ca@valencia/LC_MESSAGES/kscreen.mo +share/locale/ca@valencia/LC_MESSAGES/kscreen_common.mo +share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo +share/locale/cs/LC_MESSAGES/kcm_kscreen.mo +share/locale/cs/LC_MESSAGES/kscreen.mo +share/locale/cs/LC_MESSAGES/kscreen_common.mo +share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo +share/locale/da/LC_MESSAGES/kcm_kscreen.mo +share/locale/da/LC_MESSAGES/kscreen.mo +share/locale/da/LC_MESSAGES/kscreen_common.mo +share/locale/da/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo +share/locale/de/LC_MESSAGES/kcm_kscreen.mo +share/locale/de/LC_MESSAGES/kscreen.mo +share/locale/de/LC_MESSAGES/kscreen_common.mo +share/locale/de/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo +share/locale/el/LC_MESSAGES/kcm_kscreen.mo +share/locale/el/LC_MESSAGES/kscreen.mo +share/locale/el/LC_MESSAGES/kscreen_common.mo +share/locale/el/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo +share/locale/en_GB/LC_MESSAGES/kcm_kscreen.mo +share/locale/en_GB/LC_MESSAGES/kscreen.mo +share/locale/en_GB/LC_MESSAGES/kscreen_common.mo +share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo +share/locale/eo/LC_MESSAGES/kcm_kscreen.mo +share/locale/eo/LC_MESSAGES/kscreen.mo +share/locale/eo/LC_MESSAGES/kscreen_common.mo +share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo +share/locale/es/LC_MESSAGES/kcm_kscreen.mo +share/locale/es/LC_MESSAGES/kscreen.mo +share/locale/es/LC_MESSAGES/kscreen_common.mo +share/locale/es/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo +share/locale/et/LC_MESSAGES/kcm_kscreen.mo +share/locale/et/LC_MESSAGES/kscreen.mo +share/locale/et/LC_MESSAGES/kscreen_common.mo +share/locale/et/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo +share/locale/eu/LC_MESSAGES/kcm_kscreen.mo +share/locale/eu/LC_MESSAGES/kscreen.mo +share/locale/eu/LC_MESSAGES/kscreen_common.mo +share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo +share/locale/fi/LC_MESSAGES/kcm_kscreen.mo +share/locale/fi/LC_MESSAGES/kscreen.mo +share/locale/fi/LC_MESSAGES/kscreen_common.mo +share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo +share/locale/fr/LC_MESSAGES/kcm_kscreen.mo +share/locale/fr/LC_MESSAGES/kscreen.mo +share/locale/fr/LC_MESSAGES/kscreen_common.mo +share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo +share/locale/gl/LC_MESSAGES/kcm_kscreen.mo +share/locale/gl/LC_MESSAGES/kscreen.mo +share/locale/gl/LC_MESSAGES/kscreen_common.mo +share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo +share/locale/he/LC_MESSAGES/kcm_kscreen.mo +share/locale/he/LC_MESSAGES/kscreen.mo +share/locale/he/LC_MESSAGES/kscreen_common.mo +share/locale/he/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo +share/locale/hsb/LC_MESSAGES/kcm_kscreen.mo +share/locale/hsb/LC_MESSAGES/kscreen.mo +share/locale/hsb/LC_MESSAGES/kscreen_common.mo +share/locale/hsb/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo +share/locale/hu/LC_MESSAGES/kcm_kscreen.mo +share/locale/hu/LC_MESSAGES/kscreen.mo +share/locale/hu/LC_MESSAGES/kscreen_common.mo +share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo +share/locale/ia/LC_MESSAGES/kcm_kscreen.mo +share/locale/ia/LC_MESSAGES/kscreen.mo +share/locale/ia/LC_MESSAGES/kscreen_common.mo +share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo +share/locale/id/LC_MESSAGES/kcm_kscreen.mo +share/locale/id/LC_MESSAGES/kscreen.mo +share/locale/id/LC_MESSAGES/kscreen_common.mo +share/locale/id/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo +share/locale/is/LC_MESSAGES/kscreen.mo +share/locale/it/LC_MESSAGES/kcm_kscreen.mo +share/locale/it/LC_MESSAGES/kscreen.mo +share/locale/it/LC_MESSAGES/kscreen_common.mo +share/locale/it/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo +share/locale/ja/LC_MESSAGES/kcm_kscreen.mo +share/locale/ja/LC_MESSAGES/kscreen.mo +share/locale/ja/LC_MESSAGES/kscreen_common.mo +share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo +share/locale/ka/LC_MESSAGES/kcm_kscreen.mo +share/locale/ka/LC_MESSAGES/kscreen.mo +share/locale/ka/LC_MESSAGES/kscreen_common.mo +share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo +share/locale/ko/LC_MESSAGES/kcm_kscreen.mo +share/locale/ko/LC_MESSAGES/kscreen.mo +share/locale/ko/LC_MESSAGES/kscreen_common.mo +share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo +share/locale/lt/LC_MESSAGES/kcm_kscreen.mo +share/locale/lt/LC_MESSAGES/kscreen.mo +share/locale/lt/LC_MESSAGES/kscreen_common.mo +share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo +share/locale/lv/LC_MESSAGES/kscreen.mo +share/locale/lv/LC_MESSAGES/kscreen_common.mo +share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo +share/locale/ml/LC_MESSAGES/kcm_kscreen.mo +share/locale/ml/LC_MESSAGES/kscreen.mo +share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo +share/locale/nb/LC_MESSAGES/kcm_kscreen.mo +share/locale/nb/LC_MESSAGES/kscreen.mo +share/locale/nb/LC_MESSAGES/kscreen_common.mo +share/locale/nl/LC_MESSAGES/kcm_kscreen.mo +share/locale/nl/LC_MESSAGES/kscreen.mo +share/locale/nl/LC_MESSAGES/kscreen_common.mo +share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo +share/locale/nn/LC_MESSAGES/kcm_kscreen.mo +share/locale/nn/LC_MESSAGES/kscreen.mo +share/locale/nn/LC_MESSAGES/kscreen_common.mo +share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo +share/locale/pa/LC_MESSAGES/kcm_kscreen.mo +share/locale/pa/LC_MESSAGES/kscreen.mo +share/locale/pa/LC_MESSAGES/kscreen_common.mo +share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo +share/locale/pl/LC_MESSAGES/kcm_kscreen.mo +share/locale/pl/LC_MESSAGES/kscreen.mo +share/locale/pl/LC_MESSAGES/kscreen_common.mo +share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo +share/locale/pt/LC_MESSAGES/kcm_kscreen.mo +share/locale/pt/LC_MESSAGES/kscreen.mo +share/locale/pt/LC_MESSAGES/kscreen_common.mo +share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo +share/locale/pt_BR/LC_MESSAGES/kcm_kscreen.mo +share/locale/pt_BR/LC_MESSAGES/kscreen.mo +share/locale/pt_BR/LC_MESSAGES/kscreen_common.mo +share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo +share/locale/ro/LC_MESSAGES/kcm_kscreen.mo +share/locale/ro/LC_MESSAGES/kscreen.mo +share/locale/ro/LC_MESSAGES/kscreen_common.mo +share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo +share/locale/ru/LC_MESSAGES/kcm_kscreen.mo +share/locale/ru/LC_MESSAGES/kscreen.mo +share/locale/ru/LC_MESSAGES/kscreen_common.mo +share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo +share/locale/sk/LC_MESSAGES/kcm_kscreen.mo +share/locale/sk/LC_MESSAGES/kscreen.mo +share/locale/sk/LC_MESSAGES/kscreen_common.mo +share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo +share/locale/sl/LC_MESSAGES/kcm_kscreen.mo +share/locale/sl/LC_MESSAGES/kscreen.mo +share/locale/sl/LC_MESSAGES/kscreen_common.mo +share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo +share/locale/sr/LC_MESSAGES/kcm_kscreen.mo +share/locale/sr/LC_MESSAGES/kscreen.mo +share/locale/sr/LC_MESSAGES/kscreen_common.mo +share/locale/sr@ijekavian/LC_MESSAGES/kcm_kscreen.mo +share/locale/sr@ijekavian/LC_MESSAGES/kscreen.mo +share/locale/sr@ijekavian/LC_MESSAGES/kscreen_common.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_kscreen.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kscreen.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kscreen_common.mo +share/locale/sr@latin/LC_MESSAGES/kcm_kscreen.mo +share/locale/sr@latin/LC_MESSAGES/kscreen.mo +share/locale/sr@latin/LC_MESSAGES/kscreen_common.mo +share/locale/sv/LC_MESSAGES/kcm_kscreen.mo +share/locale/sv/LC_MESSAGES/kscreen.mo +share/locale/sv/LC_MESSAGES/kscreen_common.mo +share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo +share/locale/ta/LC_MESSAGES/kcm_kscreen.mo +share/locale/ta/LC_MESSAGES/kscreen.mo +share/locale/ta/LC_MESSAGES/kscreen_common.mo +share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo +share/locale/tg/LC_MESSAGES/kcm_kscreen.mo +share/locale/tg/LC_MESSAGES/kscreen.mo +share/locale/tg/LC_MESSAGES/kscreen_common.mo +share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo +share/locale/tr/LC_MESSAGES/kcm_kscreen.mo +share/locale/tr/LC_MESSAGES/kscreen.mo +share/locale/tr/LC_MESSAGES/kscreen_common.mo +share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo +share/locale/uk/LC_MESSAGES/kcm_kscreen.mo +share/locale/uk/LC_MESSAGES/kscreen.mo +share/locale/uk/LC_MESSAGES/kscreen_common.mo +share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo +share/locale/zh_CN/LC_MESSAGES/kcm_kscreen.mo +share/locale/zh_CN/LC_MESSAGES/kscreen.mo +share/locale/zh_CN/LC_MESSAGES/kscreen_common.mo +share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo +share/locale/zh_TW/LC_MESSAGES/kcm_kscreen.mo +share/locale/zh_TW/LC_MESSAGES/kscreen.mo +share/locale/zh_TW/LC_MESSAGES/kscreen_common.mo +share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo +share/metainfo/org.kde.kscreen.appdata.xml +share/plasma/plasmoids/org.kde.kscreen/contents/ui/InhibitionHint.qml +share/plasma/plasmoids/org.kde.kscreen/contents/ui/PresentationModeItem.qml +share/plasma/plasmoids/org.kde.kscreen/contents/ui/ScreenLayoutSelection.qml +share/plasma/plasmoids/org.kde.kscreen/contents/ui/main.qml +share/plasma/plasmoids/org.kde.kscreen/metadata.json +share/qlogging-categories6/kscreen.categories diff --git a/x11/plasma6-kwayland/Makefile b/x11/plasma6-kwayland/Makefile new file mode 100644 index 000000000000..e9657eb4e8ed --- /dev/null +++ b/x11/plasma6-kwayland/Makefile @@ -0,0 +1,19 @@ +PORTNAME= kwayland +DISTVERSION= ${KDE_PLASMA_VERSION} +CATEGORIES= x11 kde kde-plasma + +COMMENT= Qt-style Client and Server library wrapper for the Wayland libraries +MAINTAINER= kde@FreeBSD.org + +BUILD_DEPENDS= ${LOCALBASE}/include/linux/input.h:devel/evdev-proto \ + wayland-protocols>=1.27:graphics/wayland-protocols +LIB_DEPENDS= libwayland-cursor.so:graphics/wayland \ + libxkbcommon.so:x11/libxkbcommon + +USES= cmake gl kde:6 pkgconfig qt:6 tar:xz +USE_GL= gl opengl +USE_KDE= ecm:build \ + plasma-wayland-protocols:build +USE_QT= base wayland + +.include diff --git a/x11/plasma6-kwayland/distinfo b/x11/plasma6-kwayland/distinfo new file mode 100644 index 000000000000..1d9c1279c170 --- /dev/null +++ b/x11/plasma6-kwayland/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1701540206 +SHA256 (KDE/plasma/5.90.0/kwayland-5.90.0.tar.xz) = 1a749c4515f17f33e3a7609fa24caf8d20945c6406250745d7c632b4dffc9ab7 +SIZE (KDE/plasma/5.90.0/kwayland-5.90.0.tar.xz) = 133640 diff --git a/x11/plasma6-kwayland/pkg-plist b/x11/plasma6-kwayland/pkg-plist new file mode 100644 index 000000000000..e2557de3513d --- /dev/null +++ b/x11/plasma6-kwayland/pkg-plist @@ -0,0 +1,52 @@ +include/KWayland/KWayland/Client/appmenu.h +include/KWayland/KWayland/Client/blur.h +include/KWayland/KWayland/Client/buffer.h +include/KWayland/KWayland/Client/compositor.h +include/KWayland/KWayland/Client/connection_thread.h +include/KWayland/KWayland/Client/contrast.h +include/KWayland/KWayland/Client/datadevice.h +include/KWayland/KWayland/Client/datadevicemanager.h +include/KWayland/KWayland/Client/dataoffer.h +include/KWayland/KWayland/Client/datasource.h +include/KWayland/KWayland/Client/dpms.h +include/KWayland/KWayland/Client/event_queue.h +include/KWayland/KWayland/Client/fakeinput.h +include/KWayland/KWayland/Client/idleinhibit.h +include/KWayland/KWayland/Client/keyboard.h +include/KWayland/KWayland/Client/kwaylandclient_export.h +include/KWayland/KWayland/Client/output.h +include/KWayland/KWayland/Client/plasmashell.h +include/KWayland/KWayland/Client/plasmavirtualdesktop.h +include/KWayland/KWayland/Client/plasmawindowmanagement.h +include/KWayland/KWayland/Client/plasmawindowmodel.h +include/KWayland/KWayland/Client/pointer.h +include/KWayland/KWayland/Client/pointerconstraints.h +include/KWayland/KWayland/Client/pointergestures.h +include/KWayland/KWayland/Client/region.h +include/KWayland/KWayland/Client/registry.h +include/KWayland/KWayland/Client/relativepointer.h +include/KWayland/KWayland/Client/seat.h +include/KWayland/KWayland/Client/shadow.h +include/KWayland/KWayland/Client/shell.h +include/KWayland/KWayland/Client/shm_pool.h +include/KWayland/KWayland/Client/slide.h +include/KWayland/KWayland/Client/subcompositor.h +include/KWayland/KWayland/Client/subsurface.h +include/KWayland/KWayland/Client/surface.h +include/KWayland/KWayland/Client/textinput.h +include/KWayland/KWayland/Client/touch.h +include/KWayland/KWayland/Client/xdgdecoration.h +include/KWayland/KWayland/Client/xdgforeign.h +include/KWayland/KWayland/Client/xdgoutput.h +include/KWayland/KWayland/Client/xdgshell.h +include/KWayland/kwayland_version.h +lib/cmake/KWayland/KWaylandConfig.cmake +lib/cmake/KWayland/KWaylandConfigVersion.cmake +lib/cmake/KWayland/KWaylandTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/KWayland/KWaylandTargets.cmake +lib/libKWaylandClient.so +lib/libKWaylandClient.so.%%KDE_PLASMA_VERSION%% +lib/libKWaylandClient.so.6 +libdata/pkgconfig/KWaylandClient.pc +share/qlogging-categories6/kwayland.categories +share/qlogging-categories6/kwayland.renamecategories diff --git a/x11/plasma6-layer-shell-qt/Makefile b/x11/plasma6-layer-shell-qt/Makefile new file mode 100644 index 000000000000..7d07e029f098 --- /dev/null +++ b/x11/plasma6-layer-shell-qt/Makefile @@ -0,0 +1,18 @@ +PORTNAME= layer-shell-qt +DISTVERSION= ${KDE_PLASMA_VERSION} +CATEGORIES= x11 kde kde-plasma + +COMMENT= Qt component to allow applications to make use of the Wayland wl-layer-shell protocol +MAINTAINER= kde@FreeBSD.org + +BUILD_DEPENDS= wayland-protocols>0:graphics/wayland-protocols + +LIB_DEPENDS= libwayland-client.so:graphics/wayland \ + libxkbcommon.so:x11/libxkbcommon + +USES= cmake gl kde:6 pkgconfig qt:6 tar:xz +USE_GL= gl opengl +USE_KDE= ecm:build +USE_QT= base wayland + +.include diff --git a/x11/plasma6-layer-shell-qt/distinfo b/x11/plasma6-layer-shell-qt/distinfo new file mode 100644 index 000000000000..355c3e5ff10d --- /dev/null +++ b/x11/plasma6-layer-shell-qt/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1701525080 +SHA256 (KDE/plasma/5.90.0/layer-shell-qt-5.90.0.tar.xz) = ccda2aa681bdeb3128cb03e80954b8b36dcdb6eb53b0cd99928f721dd32c00df +SIZE (KDE/plasma/5.90.0/layer-shell-qt-5.90.0.tar.xz) = 20352 diff --git a/x11/plasma6-layer-shell-qt/pkg-plist b/x11/plasma6-layer-shell-qt/pkg-plist new file mode 100644 index 000000000000..62309bf11a47 --- /dev/null +++ b/x11/plasma6-layer-shell-qt/pkg-plist @@ -0,0 +1,13 @@ +include/LayerShellQt/Shell +include/LayerShellQt/Window +include/LayerShellQt/layershellqt_export.h +include/LayerShellQt/shell.h +include/LayerShellQt/window.h +lib/cmake/LayerShellQt/LayerShellQtConfig.cmake +lib/cmake/LayerShellQt/LayerShellQtConfigVersion.cmake +lib/cmake/LayerShellQt/LayerShellQtTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/LayerShellQt/LayerShellQtTargets.cmake +lib/libLayerShellQtInterface.so +lib/libLayerShellQtInterface.so.%%KDE_PLASMA_VERSION%% +lib/libLayerShellQtInterface.so.6 +%%QT_PLUGINDIR%%/wayland-shell-integration/liblayer-shell.so diff --git a/x11/plasma6-libkscreen/Makefile b/x11/plasma6-libkscreen/Makefile new file mode 100644 index 000000000000..adc3f31459c4 --- /dev/null +++ b/x11/plasma6-libkscreen/Makefile @@ -0,0 +1,18 @@ +PORTNAME= libkscreen +DISTVERSION= ${KDE_PLASMA_VERSION} +CATEGORIES= x11 kde kde-plasma + +COMMENT= KDE screen management software +MAINTAINER= kde@FreeBSD.org + +LIB_DEPENDS= libwayland-client.so:graphics/wayland \ + libxkbcommon.so:x11/libxkbcommon + +USES= cmake compiler:c++11-lib gl kde:6 pkgconfig qt:6 tar:xz xorg +USE_GL= gl opengl +USE_KDE= config \ + ecm:build plasma-wayland-protocols:build +USE_QT= base wayland +USE_XORG= xcb + +.include diff --git a/x11/plasma6-libkscreen/distinfo b/x11/plasma6-libkscreen/distinfo new file mode 100644 index 000000000000..b7138e14542a --- /dev/null +++ b/x11/plasma6-libkscreen/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1701525080 +SHA256 (KDE/plasma/5.90.0/libkscreen-5.90.0.tar.xz) = d16732a0e1eb90dd08272029f311f2742867f582a14cdd13afdf50cb4c8102d4 +SIZE (KDE/plasma/5.90.0/libkscreen-5.90.0.tar.xz) = 117416 diff --git a/x11/plasma6-libkscreen/pkg-plist b/x11/plasma6-libkscreen/pkg-plist new file mode 100644 index 000000000000..14b54d62ca68 --- /dev/null +++ b/x11/plasma6-libkscreen/pkg-plist @@ -0,0 +1,84 @@ +bin/kscreen-doctor +include/KF6/KScreen/KScreen/Config +include/KF6/KScreen/KScreen/ConfigMonitor +include/KF6/KScreen/KScreen/ConfigOperation +include/KF6/KScreen/KScreen/EDID +include/KF6/KScreen/KScreen/GetConfigOperation +include/KF6/KScreen/KScreen/Log +include/KF6/KScreen/KScreen/Mode +include/KF6/KScreen/KScreen/Output +include/KF6/KScreen/KScreen/Screen +include/KF6/KScreen/KScreen/SetConfigOperation +include/KF6/KScreen/KScreen/Types +include/KF6/KScreen/KScreenDpms/Dpms +include/KF6/KScreen/kscreen/backendmanager_p.h +include/KF6/KScreen/kscreen/config.h +include/KF6/KScreen/kscreen/configmonitor.h +include/KF6/KScreen/kscreen/configoperation.h +include/KF6/KScreen/kscreen/edid.h +include/KF6/KScreen/kscreen/getconfigoperation.h +include/KF6/KScreen/kscreen/kscreen_export.h +include/KF6/KScreen/kscreen/log.h +include/KF6/KScreen/kscreen/mode.h +include/KF6/KScreen/kscreen/output.h +include/KF6/KScreen/kscreen/screen.h +include/KF6/KScreen/kscreen/setconfigoperation.h +include/KF6/KScreen/kscreen/types.h +include/KF6/KScreen/kscreendpms/dpms.h +include/KF6/KScreen/kscreendpms/kscreendpms_export.h +include/KF6/kscreen_version.h +lib/cmake/KF6Screen/KF6ScreenConfig.cmake +lib/cmake/KF6Screen/KF6ScreenConfigVersion.cmake +lib/cmake/KF6Screen/KF6ScreenTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/KF6Screen/KF6ScreenTargets.cmake +lib/libKF6Screen.so +lib/libKF6Screen.so.%%KDE_PLASMA_VERSION%% +lib/libKF6Screen.so.8 +lib/libKF6ScreenDpms.so +lib/libKF6ScreenDpms.so.%%KDE_PLASMA_VERSION%% +lib/libKF6ScreenDpms.so.8 +lib/libexec/kf6/kscreen_backend_launcher +%%QT_PLUGINDIR%%/kf6/kscreen/KSC_Fake.so +%%QT_PLUGINDIR%%/kf6/kscreen/KSC_KWayland.so +%%QT_PLUGINDIR%%/kf6/kscreen/KSC_QScreen.so +%%QT_PLUGINDIR%%/kf6/kscreen/KSC_XRandR.so +lib/systemd/user/plasma-kscreen.service +libdata/pkgconfig/KF6Screen.pc +share/dbus-1/services/org.kde.kscreen.service +share/locale/ar/LC_MESSAGES/libkscreen6_qt.qm +share/locale/ast/LC_MESSAGES/libkscreen6_qt.qm +share/locale/bg/LC_MESSAGES/libkscreen6_qt.qm +share/locale/ca/LC_MESSAGES/libkscreen6_qt.qm +share/locale/ca@valencia/LC_MESSAGES/libkscreen6_qt.qm +share/locale/cs/LC_MESSAGES/libkscreen6_qt.qm +share/locale/de/LC_MESSAGES/libkscreen6_qt.qm +share/locale/en_GB/LC_MESSAGES/libkscreen6_qt.qm +share/locale/eo/LC_MESSAGES/libkscreen6_qt.qm +share/locale/es/LC_MESSAGES/libkscreen6_qt.qm +share/locale/eu/LC_MESSAGES/libkscreen6_qt.qm +share/locale/fi/LC_MESSAGES/libkscreen6_qt.qm +share/locale/fr/LC_MESSAGES/libkscreen6_qt.qm +share/locale/gl/LC_MESSAGES/libkscreen6_qt.qm +share/locale/ia/LC_MESSAGES/libkscreen6_qt.qm +share/locale/id/LC_MESSAGES/libkscreen6_qt.qm +share/locale/is/LC_MESSAGES/libkscreen6_qt.qm +share/locale/it/LC_MESSAGES/libkscreen6_qt.qm +share/locale/ja/LC_MESSAGES/libkscreen6_qt.qm +share/locale/ka/LC_MESSAGES/libkscreen6_qt.qm +share/locale/ko/LC_MESSAGES/libkscreen6_qt.qm +share/locale/lt/LC_MESSAGES/libkscreen6_qt.qm +share/locale/nl/LC_MESSAGES/libkscreen6_qt.qm +share/locale/nn/LC_MESSAGES/libkscreen6_qt.qm +share/locale/pl/LC_MESSAGES/libkscreen6_qt.qm +share/locale/pt/LC_MESSAGES/libkscreen6_qt.qm +share/locale/pt_BR/LC_MESSAGES/libkscreen6_qt.qm +share/locale/ru/LC_MESSAGES/libkscreen6_qt.qm +share/locale/sa/LC_MESSAGES/libkscreen6_qt.qm +share/locale/sk/LC_MESSAGES/libkscreen6_qt.qm +share/locale/sl/LC_MESSAGES/libkscreen6_qt.qm +share/locale/tr/LC_MESSAGES/libkscreen6_qt.qm +share/locale/uk/LC_MESSAGES/libkscreen6_qt.qm +share/locale/zh_CN/LC_MESSAGES/libkscreen6_qt.qm +share/locale/zh_TW/LC_MESSAGES/libkscreen6_qt.qm +share/qlogging-categories6/libkscreen.categories +share/zsh/site-functions/_kscreen-doctor diff --git a/x11/plasma6-libplasma/Makefile b/x11/plasma6-libplasma/Makefile new file mode 100644 index 000000000000..f58221e48d83 --- /dev/null +++ b/x11/plasma6-libplasma/Makefile @@ -0,0 +1,17 @@ +PORTNAME= libplasma +DISTVERSION= ${KDE_PLASMA_VERSION} +CATEGORIES= x11 kde kde-plasma + +MAINTAINER= kde@FreeBSD.org +COMMENT= Shared libraries for Plasma Desktop + +BUILD_DEPENDS= wayland-protocols>=0:graphics/wayland-protocols + +USES= cmake gettext kde:6 pkgconfig qt:6 tar:xz +USE_KDE= activities archive config configwidgets coreaddons globalaccel \ + guiaddons i18n iconthemes kcmutils kio kirigami2 notifications \ + package plasma-wayland-protocols svg windowsystem \ + ecm:build +USE_QT= base declarative svg + +.include diff --git a/x11/plasma6-libplasma/distinfo b/x11/plasma6-libplasma/distinfo new file mode 100644 index 000000000000..3e6466055b51 --- /dev/null +++ b/x11/plasma6-libplasma/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1701549955 +SHA256 (KDE/plasma/5.90.0/libplasma-5.90.0.tar.xz) = aa99703d6434816b669c2c37a031110df40facc022d803211d39805c6d4a78e0 +SIZE (KDE/plasma/5.90.0/libplasma-5.90.0.tar.xz) = 2108000 diff --git a/x11/plasma6-libplasma/pkg-plist b/x11/plasma6-libplasma/pkg-plist new file mode 100644 index 000000000000..718dcc5d5049 --- /dev/null +++ b/x11/plasma6-libplasma/pkg-plist @@ -0,0 +1,387 @@ +include/Plasma/Plasma/Applet +include/Plasma/Plasma/Containment +include/Plasma/Plasma/ContainmentActions +include/Plasma/Plasma/Corona +include/Plasma/Plasma/Plasma +include/Plasma/Plasma/PluginLoader +include/Plasma/Plasma/Theme +include/Plasma/plasma/applet.h +include/Plasma/plasma/containment.h +include/Plasma/plasma/containmentactions.h +include/Plasma/plasma/corona.h +include/Plasma/plasma/plasma.h +include/Plasma/plasma/plasma_export.h +include/Plasma/plasma/pluginloader.h +include/Plasma/plasma/theme.h +include/Plasma/plasma_version.h +include/PlasmaQuick/PlasmaQuick/AppletQuickItem +include/PlasmaQuick/PlasmaQuick/ConfigModel +include/PlasmaQuick/PlasmaQuick/ConfigView +include/PlasmaQuick/PlasmaQuick/ContainmentView +include/PlasmaQuick/PlasmaQuick/Dialog +include/PlasmaQuick/PlasmaQuick/PlasmaWindow +include/PlasmaQuick/PlasmaQuick/PopupPlasmaWindow +include/PlasmaQuick/PlasmaQuick/QuickViewSharedEngine +include/PlasmaQuick/PlasmaQuick/SharedQmlEngine +include/PlasmaQuick/plasmaquick/appletquickitem.h +include/PlasmaQuick/plasmaquick/configmodel.h +include/PlasmaQuick/plasmaquick/configview.h +include/PlasmaQuick/plasmaquick/containmentview.h +include/PlasmaQuick/plasmaquick/dialog.h +include/PlasmaQuick/plasmaquick/plasmaquick_export.h +include/PlasmaQuick/plasmaquick/plasmawindow.h +include/PlasmaQuick/plasmaquick/popupplasmawindow.h +include/PlasmaQuick/plasmaquick/quickviewsharedengine.h +include/PlasmaQuick/plasmaquick/sharedqmlengine.h +lib/cmake/Plasma/PlasmaConfig.cmake +lib/cmake/Plasma/PlasmaConfigVersion.cmake +lib/cmake/Plasma/PlasmaMacros.cmake +lib/cmake/Plasma/PlasmaTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Plasma/PlasmaTargets.cmake +lib/cmake/PlasmaQuick/PlasmaQuickConfig.cmake +lib/cmake/PlasmaQuick/PlasmaQuickConfigVersion.cmake +lib/cmake/PlasmaQuick/PlasmaQuickTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/PlasmaQuick/PlasmaQuickTargets.cmake +lib/libPlasma.so +lib/libPlasma.so.%%KDE_PLASMA_VERSION%% +lib/libPlasma.so.6 +lib/libPlasmaQuick.so +lib/libPlasmaQuick.so.%%KDE_PLASMA_VERSION%% +lib/libPlasmaQuick.so.6 +%%QT_PLUGINDIR%%/kf6/kirigami/platform/KirigamiPlasmaStyle.so +%%QT_PLUGINDIR%%/kf6/packagestructure/plasma_applet.so +%%QT_PLUGINDIR%%/kf6/packagestructure/plasma_containmentactions.so +%%QT_PLUGINDIR%%/kf6/packagestructure/plasma_generic.so +%%QT_PLUGINDIR%%/kf6/packagestructure/plasma_shell.so +%%QT_PLUGINDIR%%/kf6/packagestructure/plasma_theme.so +%%QT_PLUGINDIR%%/kf6/packagestructure/plasma_wallpaper.so +%%QT_QMLDIR%%/org/kde/kirigami/styles/Plasma/AbstractApplicationHeader.qml +%%QT_QMLDIR%%/org/kde/kirigami/styles/Plasma/Icon.qml +%%QT_QMLDIR%%/org/kde/plasma/components/AbstractButton.qml +%%QT_QMLDIR%%/org/kde/plasma/components/BusyIndicator.qml +%%QT_QMLDIR%%/org/kde/plasma/components/Button.qml +%%QT_QMLDIR%%/org/kde/plasma/components/CheckBox.qml +%%QT_QMLDIR%%/org/kde/plasma/components/CheckDelegate.qml +%%QT_QMLDIR%%/org/kde/plasma/components/CheckIndicator.qml +%%QT_QMLDIR%%/org/kde/plasma/components/ComboBox.qml +%%QT_QMLDIR%%/org/kde/plasma/components/Container.qml +%%QT_QMLDIR%%/org/kde/plasma/components/Control.qml +%%QT_QMLDIR%%/org/kde/plasma/components/Dial.qml +%%QT_QMLDIR%%/org/kde/plasma/components/Dialog.qml +%%QT_QMLDIR%%/org/kde/plasma/components/DialogButtonBox.qml +%%QT_QMLDIR%%/org/kde/plasma/components/Drawer.qml +%%QT_QMLDIR%%/org/kde/plasma/components/Frame.qml +%%QT_QMLDIR%%/org/kde/plasma/components/GroupBox.qml +%%QT_QMLDIR%%/org/kde/plasma/components/ItemDelegate.qml +%%QT_QMLDIR%%/org/kde/plasma/components/Label.qml +%%QT_QMLDIR%%/org/kde/plasma/components/Menu.qml +%%QT_QMLDIR%%/org/kde/plasma/components/MenuItem.qml +%%QT_QMLDIR%%/org/kde/plasma/components/MenuSeparator.qml +%%QT_QMLDIR%%/org/kde/plasma/components/Page.qml +%%QT_QMLDIR%%/org/kde/plasma/components/PageIndicator.qml +%%QT_QMLDIR%%/org/kde/plasma/components/Pane.qml +%%QT_QMLDIR%%/org/kde/plasma/components/Popup.qml +%%QT_QMLDIR%%/org/kde/plasma/components/ProgressBar.qml +%%QT_QMLDIR%%/org/kde/plasma/components/RadioButton.qml +%%QT_QMLDIR%%/org/kde/plasma/components/RadioDelegate.qml +%%QT_QMLDIR%%/org/kde/plasma/components/RadioIndicator.qml +%%QT_QMLDIR%%/org/kde/plasma/components/RangeSlider.qml +%%QT_QMLDIR%%/org/kde/plasma/components/RoundButton.qml +%%QT_QMLDIR%%/org/kde/plasma/components/ScrollBar.qml +%%QT_QMLDIR%%/org/kde/plasma/components/ScrollView.qml +%%QT_QMLDIR%%/org/kde/plasma/components/Slider.qml +%%QT_QMLDIR%%/org/kde/plasma/components/SpinBox.qml +%%QT_QMLDIR%%/org/kde/plasma/components/SwipeView.qml +%%QT_QMLDIR%%/org/kde/plasma/components/Switch.qml +%%QT_QMLDIR%%/org/kde/plasma/components/SwitchDelegate.qml +%%QT_QMLDIR%%/org/kde/plasma/components/SwitchIndicator.qml +%%QT_QMLDIR%%/org/kde/plasma/components/TabBar.qml +%%QT_QMLDIR%%/org/kde/plasma/components/TabButton.qml +%%QT_QMLDIR%%/org/kde/plasma/components/TextArea.qml +%%QT_QMLDIR%%/org/kde/plasma/components/TextField.qml +%%QT_QMLDIR%%/org/kde/plasma/components/ToolBar.qml +%%QT_QMLDIR%%/org/kde/plasma/components/ToolButton.qml +%%QT_QMLDIR%%/org/kde/plasma/components/ToolTip.qml +%%QT_QMLDIR%%/org/kde/plasma/components/kde-qmlmodule.version +%%QT_QMLDIR%%/org/kde/plasma/components/liborg_kde_plasmacomponents3.so +%%QT_QMLDIR%%/org/kde/plasma/components/mobiletextselection/MobileCursor.qml +%%QT_QMLDIR%%/org/kde/plasma/components/mobiletextselection/MobileTextActionsToolBar.qml +%%QT_QMLDIR%%/org/kde/plasma/components/mobiletextselection/MobileTextActionsToolBarImpl.qml +%%QT_QMLDIR%%/org/kde/plasma/components/mobiletextselection/qmldir +%%QT_QMLDIR%%/org/kde/plasma/components/org_kde_plasmacomponents3.qmltypes +%%QT_QMLDIR%%/org/kde/plasma/components/private/ButtonBackground.qml +%%QT_QMLDIR%%/org/kde/plasma/components/private/ButtonContent.qml +%%QT_QMLDIR%%/org/kde/plasma/components/private/ButtonFocus.qml +%%QT_QMLDIR%%/org/kde/plasma/components/private/ButtonHover.qml +%%QT_QMLDIR%%/org/kde/plasma/components/private/ButtonShadow.qml +%%QT_QMLDIR%%/org/kde/plasma/components/private/DefaultListItemBackground.qml +%%QT_QMLDIR%%/org/kde/plasma/components/private/FlatButtonBackground.qml +%%QT_QMLDIR%%/org/kde/plasma/components/private/IconLabel.qml +%%QT_QMLDIR%%/org/kde/plasma/components/private/RaisedButtonBackground.qml +%%QT_QMLDIR%%/org/kde/plasma/components/private/RoundShadow.qml +%%QT_QMLDIR%%/org/kde/plasma/components/private/TextFieldFocus.qml +%%QT_QMLDIR%%/org/kde/plasma/components/qmldir +%%QT_QMLDIR%%/org/kde/plasma/core/corebindingsplugin.qmltypes +%%QT_QMLDIR%%/org/kde/plasma/core/kde-qmlmodule.version +%%QT_QMLDIR%%/org/kde/plasma/core/libcorebindingsplugin.so +%%QT_QMLDIR%%/org/kde/plasma/core/qmldir +%%QT_QMLDIR%%/org/kde/plasma/extras/ActionTextField.qml +%%QT_QMLDIR%%/org/kde/plasma/extras/BasicPlasmoidHeading.qml +%%QT_QMLDIR%%/org/kde/plasma/extras/DescriptiveLabel.qml +%%QT_QMLDIR%%/org/kde/plasma/extras/ExpandableListItem.qml +%%QT_QMLDIR%%/org/kde/plasma/extras/Heading.qml +%%QT_QMLDIR%%/org/kde/plasma/extras/Highlight.qml +%%QT_QMLDIR%%/org/kde/plasma/extras/ListItem.qml +%%QT_QMLDIR%%/org/kde/plasma/extras/ModelContextMenu.qml +%%QT_QMLDIR%%/org/kde/plasma/extras/PasswordField.qml +%%QT_QMLDIR%%/org/kde/plasma/extras/PlaceholderMessage.qml +%%QT_QMLDIR%%/org/kde/plasma/extras/PlasmoidHeading.qml +%%QT_QMLDIR%%/org/kde/plasma/extras/Representation.qml +%%QT_QMLDIR%%/org/kde/plasma/extras/SearchField.qml +%%QT_QMLDIR%%/org/kde/plasma/extras/ShadowedLabel.qml +%%QT_QMLDIR%%/org/kde/plasma/extras/animations/ActivateAnimation.qml +%%QT_QMLDIR%%/org/kde/plasma/extras/animations/AppearAnimation.qml +%%QT_QMLDIR%%/org/kde/plasma/extras/animations/DisappearAnimation.qml +%%QT_QMLDIR%%/org/kde/plasma/extras/animations/PressedAnimation.qml +%%QT_QMLDIR%%/org/kde/plasma/extras/animations/ReleasedAnimation.qml +%%QT_QMLDIR%%/org/kde/plasma/extras/kde-qmlmodule.version +%%QT_QMLDIR%%/org/kde/plasma/extras/libplasmaextracomponentsplugin.so +%%QT_QMLDIR%%/org/kde/plasma/extras/plasmaextracomponentsplugin.qmltypes +%%QT_QMLDIR%%/org/kde/plasma/extras/private/BackgroundMetrics.qml +%%QT_QMLDIR%%/org/kde/plasma/extras/qmldir +share/kdevappwizard/templates/cpp-plasmoid6.tar.bz2 +share/kdevappwizard/templates/plasma6-wallpaper-with-qml-extension.tar.bz2 +share/kdevappwizard/templates/plasma6-wallpaper.tar.bz2 +share/kdevappwizard/templates/qml-plasmoid6-with-qml-extension.tar.bz2 +share/kdevappwizard/templates/qml-plasmoid6.tar.bz2 +share/locale/ar/LC_MESSAGES/libplasma6.mo +share/locale/ast/LC_MESSAGES/libplasma6.mo +share/locale/az/LC_MESSAGES/libplasma6.mo +share/locale/be/LC_MESSAGES/libplasma6.mo +share/locale/bg/LC_MESSAGES/libplasma6.mo +share/locale/bs/LC_MESSAGES/libplasma6.mo +share/locale/ca/LC_MESSAGES/libplasma6.mo +share/locale/ca@valencia/LC_MESSAGES/libplasma6.mo +share/locale/cs/LC_MESSAGES/libplasma6.mo +share/locale/da/LC_MESSAGES/libplasma6.mo +share/locale/de/LC_MESSAGES/libplasma6.mo +share/locale/el/LC_MESSAGES/libplasma6.mo +share/locale/en_GB/LC_MESSAGES/libplasma6.mo +share/locale/eo/LC_MESSAGES/libplasma6.mo +share/locale/es/LC_MESSAGES/libplasma6.mo +share/locale/et/LC_MESSAGES/libplasma6.mo +share/locale/eu/LC_MESSAGES/libplasma6.mo +share/locale/fi/LC_MESSAGES/libplasma6.mo +share/locale/fr/LC_MESSAGES/libplasma6.mo +share/locale/gd/LC_MESSAGES/libplasma6.mo +share/locale/gl/LC_MESSAGES/libplasma6.mo +share/locale/he/LC_MESSAGES/libplasma6.mo +share/locale/hu/LC_MESSAGES/libplasma6.mo +share/locale/ia/LC_MESSAGES/libplasma6.mo +share/locale/id/LC_MESSAGES/libplasma6.mo +share/locale/it/LC_MESSAGES/libplasma6.mo +share/locale/ja/LC_MESSAGES/libplasma6.mo +share/locale/ka/LC_MESSAGES/libplasma6.mo +share/locale/ko/LC_MESSAGES/libplasma6.mo +share/locale/lt/LC_MESSAGES/libplasma6.mo +share/locale/lv/LC_MESSAGES/libplasma6.mo +share/locale/ml/LC_MESSAGES/libplasma6.mo +share/locale/mr/LC_MESSAGES/libplasma6.mo +share/locale/nb/LC_MESSAGES/libplasma6.mo +share/locale/nds/LC_MESSAGES/libplasma6.mo +share/locale/nl/LC_MESSAGES/libplasma6.mo +share/locale/nn/LC_MESSAGES/libplasma6.mo +share/locale/pa/LC_MESSAGES/libplasma6.mo +share/locale/pl/LC_MESSAGES/libplasma6.mo +share/locale/pt/LC_MESSAGES/libplasma6.mo +share/locale/pt_BR/LC_MESSAGES/libplasma6.mo +share/locale/ro/LC_MESSAGES/libplasma6.mo +share/locale/ru/LC_MESSAGES/libplasma6.mo +share/locale/sa/LC_MESSAGES/libplasma6.mo +share/locale/sk/LC_MESSAGES/libplasma6.mo +share/locale/sl/LC_MESSAGES/libplasma6.mo +share/locale/sr/LC_MESSAGES/libplasma6.mo +share/locale/sr@ijekavian/LC_MESSAGES/libplasma6.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/libplasma6.mo +share/locale/sr@latin/LC_MESSAGES/libplasma6.mo +share/locale/sv/LC_MESSAGES/libplasma6.mo +share/locale/ta/LC_MESSAGES/libplasma6.mo +share/locale/tg/LC_MESSAGES/libplasma6.mo +share/locale/tr/LC_MESSAGES/libplasma6.mo +share/locale/ug/LC_MESSAGES/libplasma6.mo +share/locale/uk/LC_MESSAGES/libplasma6.mo +share/locale/vi/LC_MESSAGES/libplasma6.mo +share/locale/zh_CN/LC_MESSAGES/libplasma6.mo +share/locale/zh_TW/LC_MESSAGES/libplasma6.mo +share/plasma/desktoptheme/breeze-dark/colors +share/plasma/desktoptheme/breeze-dark/metadata.json +share/plasma/desktoptheme/breeze-dark/plasmarc +share/plasma/desktoptheme/breeze-light/colors +share/plasma/desktoptheme/breeze-light/metadata.json +share/plasma/desktoptheme/breeze-light/plasmarc +share/plasma/desktoptheme/default/dialogs/background.svgz +share/plasma/desktoptheme/default/icons/akonadi.svgz +share/plasma/desktoptheme/default/icons/akregator.svgz +share/plasma/desktoptheme/default/icons/amarok.svgz +share/plasma/desktoptheme/default/icons/applications.svgz +share/plasma/desktoptheme/default/icons/apport.svgz +share/plasma/desktoptheme/default/icons/audio.svgz +share/plasma/desktoptheme/default/icons/battery.svgz +share/plasma/desktoptheme/default/icons/bookmarks.svgz +share/plasma/desktoptheme/default/icons/cantata.svgz +share/plasma/desktoptheme/default/icons/computer.svgz +share/plasma/desktoptheme/default/icons/configure.svgz +share/plasma/desktoptheme/default/icons/device.svgz +share/plasma/desktoptheme/default/icons/disk.svgz +share/plasma/desktoptheme/default/icons/distribute.svgz +share/plasma/desktoptheme/default/icons/document.svgz +share/plasma/desktoptheme/default/icons/drive.svgz +share/plasma/desktoptheme/default/icons/edit.svgz +share/plasma/desktoptheme/default/icons/fcitx.svgz +share/plasma/desktoptheme/default/icons/go.svgz +share/plasma/desktoptheme/default/icons/ime.svgz +share/plasma/desktoptheme/default/icons/input.svgz +share/plasma/desktoptheme/default/icons/kalarm.svgz +share/plasma/desktoptheme/default/icons/kdeconnect.svgz +share/plasma/desktoptheme/default/icons/keyboard.svgz +share/plasma/desktoptheme/default/icons/kget.svgz +share/plasma/desktoptheme/default/icons/kgpg.svgz +share/plasma/desktoptheme/default/icons/kleopatra.svgz +share/plasma/desktoptheme/default/icons/klipper.svgz +share/plasma/desktoptheme/default/icons/kmail.svgz +share/plasma/desktoptheme/default/icons/konv_message.svgz +share/plasma/desktoptheme/default/icons/konversation.svgz +share/plasma/desktoptheme/default/icons/kopete.svgz +share/plasma/desktoptheme/default/icons/korgac.svgz +share/plasma/desktoptheme/default/icons/kpackagekit.svgz +share/plasma/desktoptheme/default/icons/kruler.svgz +share/plasma/desktoptheme/default/icons/kteatime.svgz +share/plasma/desktoptheme/default/icons/ktorrent.svgz +share/plasma/desktoptheme/default/icons/kup.svgz +share/plasma/desktoptheme/default/icons/list.svgz +share/plasma/desktoptheme/default/icons/mail.svgz +share/plasma/desktoptheme/default/icons/media.svgz +share/plasma/desktoptheme/default/icons/mobile.svgz +share/plasma/desktoptheme/default/icons/network.svgz +share/plasma/desktoptheme/default/icons/notification.svgz +share/plasma/desktoptheme/default/icons/osd.svgz +share/plasma/desktoptheme/default/icons/phone.svgz +share/plasma/desktoptheme/default/icons/plasmavault.svgz +share/plasma/desktoptheme/default/icons/plasmavault_error.svgz +share/plasma/desktoptheme/default/icons/preferences.svgz +share/plasma/desktoptheme/default/icons/printer.svgz +share/plasma/desktoptheme/default/icons/quassel.svgz +share/plasma/desktoptheme/default/icons/search.svgz +share/plasma/desktoptheme/default/icons/slc.svgz +share/plasma/desktoptheme/default/icons/software.svgz +share/plasma/desktoptheme/default/icons/start.svgz +share/plasma/desktoptheme/default/icons/system.svgz +share/plasma/desktoptheme/default/icons/touchpad.svgz +share/plasma/desktoptheme/default/icons/user.svgz +share/plasma/desktoptheme/default/icons/video-card.svgz +share/plasma/desktoptheme/default/icons/video.svgz +share/plasma/desktoptheme/default/icons/view.svgz +share/plasma/desktoptheme/default/icons/vlc.svgz +share/plasma/desktoptheme/default/icons/wallet.svgz +share/plasma/desktoptheme/default/icons/window.svgz +share/plasma/desktoptheme/default/icons/yakuake.svgz +share/plasma/desktoptheme/default/icons/zoom.svgz +share/plasma/desktoptheme/default/metadata.json +share/plasma/desktoptheme/default/opaque/dialogs/background.svgz +share/plasma/desktoptheme/default/opaque/widgets/panel-background.svgz +share/plasma/desktoptheme/default/opaque/widgets/tooltip.svgz +share/plasma/desktoptheme/default/plasmarc +share/plasma/desktoptheme/default/solid/dialogs/background.svgz +share/plasma/desktoptheme/default/solid/widgets/background.svgz +share/plasma/desktoptheme/default/solid/widgets/panel-background.svgz +share/plasma/desktoptheme/default/solid/widgets/tooltip.svgz +share/plasma/desktoptheme/default/translucent/dialogs/background.svgz +share/plasma/desktoptheme/default/translucent/widgets/background.svgz +share/plasma/desktoptheme/default/translucent/widgets/panel-background.svgz +share/plasma/desktoptheme/default/translucent/widgets/tooltip.svgz +share/plasma/desktoptheme/default/widgets/action-overlays.svgz +share/plasma/desktoptheme/default/widgets/actionbutton.svgz +share/plasma/desktoptheme/default/widgets/analog_meter.svgz +share/plasma/desktoptheme/default/widgets/arrows.svgz +share/plasma/desktoptheme/default/widgets/background.svgz +share/plasma/desktoptheme/default/widgets/bar_meter_horizontal.svgz +share/plasma/desktoptheme/default/widgets/bar_meter_vertical.svgz +share/plasma/desktoptheme/default/widgets/branding.svgz +share/plasma/desktoptheme/default/widgets/busywidget.svgz +share/plasma/desktoptheme/default/widgets/button.svgz +share/plasma/desktoptheme/default/widgets/calendar.svgz +share/plasma/desktoptheme/default/widgets/checkmarks.svgz +share/plasma/desktoptheme/default/widgets/clock.svgz +share/plasma/desktoptheme/default/widgets/configuration-icons.svgz +share/plasma/desktoptheme/default/widgets/containment-controls.svgz +share/plasma/desktoptheme/default/widgets/dragger.svgz +share/plasma/desktoptheme/default/widgets/frame.svgz +share/plasma/desktoptheme/default/widgets/glowbar.svgz +share/plasma/desktoptheme/default/widgets/line.svgz +share/plasma/desktoptheme/default/widgets/lineedit.svgz +share/plasma/desktoptheme/default/widgets/listitem.svgz +share/plasma/desktoptheme/default/widgets/margins-highlight.svgz +share/plasma/desktoptheme/default/widgets/media-delegate.svgz +share/plasma/desktoptheme/default/widgets/menubaritem.svgz +share/plasma/desktoptheme/default/widgets/monitor.svgz +share/plasma/desktoptheme/default/widgets/notes.svgz +share/plasma/desktoptheme/default/widgets/pager.svgz +share/plasma/desktoptheme/default/widgets/panel-background.svgz +share/plasma/desktoptheme/default/widgets/picker.svgz +share/plasma/desktoptheme/default/widgets/plasmoidheading.svgz +share/plasma/desktoptheme/default/widgets/plot-background.svgz +share/plasma/desktoptheme/default/widgets/radiobutton.svgz +share/plasma/desktoptheme/default/widgets/scrollbar.svgz +share/plasma/desktoptheme/default/widgets/scrollwidget.svgz +share/plasma/desktoptheme/default/widgets/slider.svgz +share/plasma/desktoptheme/default/widgets/switch.svgz +share/plasma/desktoptheme/default/widgets/tabbar.svgz +share/plasma/desktoptheme/default/widgets/tasks.svgz +share/plasma/desktoptheme/default/widgets/toolbar.svgz +share/plasma/desktoptheme/default/widgets/tooltip.svgz +share/plasma/desktoptheme/default/widgets/translucentbackground.svgz +share/plasma/desktoptheme/default/widgets/viewitem.svgz +share/plasma/desktoptheme/oxygen/colors +share/plasma/desktoptheme/oxygen/dialogs/background.svgz +share/plasma/desktoptheme/oxygen/metadata.json +share/plasma/desktoptheme/oxygen/opaque/dialogs/background.svgz +share/plasma/desktoptheme/oxygen/opaque/dialogs/krunner.svgz +share/plasma/desktoptheme/oxygen/opaque/widgets/extender-background.svgz +share/plasma/desktoptheme/oxygen/opaque/widgets/panel-background.svgz +share/plasma/desktoptheme/oxygen/opaque/widgets/tooltip.svgz +share/plasma/desktoptheme/oxygen/plasmarc +share/plasma/desktoptheme/oxygen/widgets/action-overlays.svgz +share/plasma/desktoptheme/oxygen/widgets/actionbutton.svgz +share/plasma/desktoptheme/oxygen/widgets/analog_meter.svgz +share/plasma/desktoptheme/oxygen/widgets/arrows.svgz +share/plasma/desktoptheme/oxygen/widgets/background.svgz +share/plasma/desktoptheme/oxygen/widgets/bar_meter_horizontal.svgz +share/plasma/desktoptheme/oxygen/widgets/bar_meter_vertical.svgz +share/plasma/desktoptheme/oxygen/widgets/branding.svgz +share/plasma/desktoptheme/oxygen/widgets/busywidget.svgz +share/plasma/desktoptheme/oxygen/widgets/button.svgz +share/plasma/desktoptheme/oxygen/widgets/clock.svgz +share/plasma/desktoptheme/oxygen/widgets/containment-controls.svgz +share/plasma/desktoptheme/oxygen/widgets/dragger.svgz +share/plasma/desktoptheme/oxygen/widgets/extender-background.svgz +share/plasma/desktoptheme/oxygen/widgets/extender-dragger.svgz +share/plasma/desktoptheme/oxygen/widgets/frame.svgz +share/plasma/desktoptheme/oxygen/widgets/glowbar.svgz +share/plasma/desktoptheme/oxygen/widgets/line.svgz +share/plasma/desktoptheme/oxygen/widgets/lineedit.svgz +share/plasma/desktoptheme/oxygen/widgets/media-delegate.svgz +share/plasma/desktoptheme/oxygen/widgets/monitor.svgz +share/plasma/desktoptheme/oxygen/widgets/pager.svgz +share/plasma/desktoptheme/oxygen/widgets/panel-background.svgz +share/plasma/desktoptheme/oxygen/widgets/plot-background.svgz +share/plasma/desktoptheme/oxygen/widgets/scrollbar.svgz +share/plasma/desktoptheme/oxygen/widgets/scrollwidget.svgz +share/plasma/desktoptheme/oxygen/widgets/slider.svgz +share/plasma/desktoptheme/oxygen/widgets/tabbar.svgz +share/plasma/desktoptheme/oxygen/widgets/tasks.svgz +share/plasma/desktoptheme/oxygen/widgets/timer.svgz +share/plasma/desktoptheme/oxygen/widgets/tooltip.svgz +share/plasma/desktoptheme/oxygen/widgets/translucentbackground.svgz +share/plasma/desktoptheme/oxygen/widgets/viewitem.svgz +share/qlogging-categories6/plasma-framework.categories +share/qlogging-categories6/plasma-framework.renamecategories diff --git a/x11/plasma6-plasma-activities-stats/Makefile b/x11/plasma6-plasma-activities-stats/Makefile new file mode 100644 index 000000000000..adb6a088d1f6 --- /dev/null +++ b/x11/plasma6-plasma-activities-stats/Makefile @@ -0,0 +1,15 @@ +PORTNAME= plasma-activities-stats +DISTVERSION= ${KDE_PLASMA_VERSION} +CATEGORIES= x11 kde kde-plasma + +MAINTAINER= kde@FreeBSD.org +COMMENT= Library for accessing the usage data collected by the activities system + +BUILD_DEPENDS= boost-libs>1.53:devel/boost-libs + +USES= cmake compiler:c++11-lib gettext kde:6 pathfix qt:6 tar:xz +USE_KDE= activities config \ + ecm:build +USE_QT= base + +.include diff --git a/x11/plasma6-plasma-activities-stats/distinfo b/x11/plasma6-plasma-activities-stats/distinfo new file mode 100644 index 000000000000..eed07ec1f7e6 --- /dev/null +++ b/x11/plasma6-plasma-activities-stats/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1701532328 +SHA256 (KDE/plasma/5.90.0/plasma-activities-stats-5.90.0.tar.xz) = 42c7ad00fa952ba3948fc49e135516afcd7e039467cc216df643766055349e3a +SIZE (KDE/plasma/5.90.0/plasma-activities-stats-5.90.0.tar.xz) = 83352 diff --git a/x11/plasma6-plasma-activities-stats/pkg-plist b/x11/plasma6-plasma-activities-stats/pkg-plist new file mode 100644 index 000000000000..377dea73aeec --- /dev/null +++ b/x11/plasma6-plasma-activities-stats/pkg-plist @@ -0,0 +1,24 @@ +include/PlasmaActivitiesStats/PlasmaActivities/Stats/Cleaning +include/PlasmaActivitiesStats/PlasmaActivities/Stats/Query +include/PlasmaActivitiesStats/PlasmaActivities/Stats/ResultModel +include/PlasmaActivitiesStats/PlasmaActivities/Stats/ResultSet +include/PlasmaActivitiesStats/PlasmaActivities/Stats/ResultWatcher +include/PlasmaActivitiesStats/PlasmaActivities/Stats/Terms +include/PlasmaActivitiesStats/plasmaactivitiesstats/cleaning.h +include/PlasmaActivitiesStats/plasmaactivitiesstats/plasmaactivitiesstats_export.h +include/PlasmaActivitiesStats/plasmaactivitiesstats/query.h +include/PlasmaActivitiesStats/plasmaactivitiesstats/resultmodel.h +include/PlasmaActivitiesStats/plasmaactivitiesstats/resultset.h +include/PlasmaActivitiesStats/plasmaactivitiesstats/resultwatcher.h +include/PlasmaActivitiesStats/plasmaactivitiesstats/terms.h +include/PlasmaActivitiesStats/plasmaactivitiesstats_version.h +lib/cmake/PlasmaActivitiesStats/PlasmaActivitiesStatsConfig.cmake +lib/cmake/PlasmaActivitiesStats/PlasmaActivitiesStatsConfigVersion.cmake +lib/cmake/PlasmaActivitiesStats/PlasmaActivitiesStatsLibraryTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/PlasmaActivitiesStats/PlasmaActivitiesStatsLibraryTargets.cmake +lib/libPlasmaActivitiesStats.so +lib/libPlasmaActivitiesStats.so.1 +lib/libPlasmaActivitiesStats.so.%%KDE_PLASMA_VERSION%% +libdata/pkgconfig/PlasmaActivitiesStats.pc +share/qlogging-categories6/plasma-activities-stats.categories +share/qlogging-categories6/plasma-activities-stats.renamecategories diff --git a/x11/plasma6-plasma-activities/Makefile b/x11/plasma6-plasma-activities/Makefile new file mode 100644 index 000000000000..7b1f8b962853 --- /dev/null +++ b/x11/plasma6-plasma-activities/Makefile @@ -0,0 +1,15 @@ +PORTNAME= plasma-activities +DISTVERSION= ${KDE_PLASMA_VERSION} +CATEGORIES= x11 kde kde-plasma + +COMMENT= Core components for the KDE Activity concept +MAINTAINER= kde@FreeBSD.org + +BUILD_DEPENDS= boost-libs>0:devel/boost-libs + +USES= cmake compiler:c++11-lib gettext kde:6 pathfix qt:6 tar:xz +USE_KDE= config coreaddons \ + ecm:build +USE_QT= base declarative + +.include diff --git a/x11/plasma6-plasma-activities/distinfo b/x11/plasma6-plasma-activities/distinfo new file mode 100644 index 000000000000..470596a35168 --- /dev/null +++ b/x11/plasma6-plasma-activities/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1701532308 +SHA256 (KDE/plasma/5.90.0/plasma-activities-5.90.0.tar.xz) = 20e4a29ca6376f28f74c700febf3d8ea0cd4b0d91fe731080fafa43908f8d1a2 +SIZE (KDE/plasma/5.90.0/plasma-activities-5.90.0.tar.xz) = 71148 diff --git a/x11/plasma6-plasma-activities/pkg-plist b/x11/plasma6-plasma-activities/pkg-plist new file mode 100644 index 000000000000..84ab294b2121 --- /dev/null +++ b/x11/plasma6-plasma-activities/pkg-plist @@ -0,0 +1,29 @@ +bin/plasma-activities-cli6 +include/PlasmaActivities/PlasmaActivities/ActivitiesModel +include/PlasmaActivities/PlasmaActivities/Consumer +include/PlasmaActivities/PlasmaActivities/Controller +include/PlasmaActivities/PlasmaActivities/Info +include/PlasmaActivities/PlasmaActivities/ResourceInstance +include/PlasmaActivities/PlasmaActivities/Version +include/PlasmaActivities/plasma_activities_version.h +include/PlasmaActivities/plasmaactivities/activitiesmodel.h +include/PlasmaActivities/plasmaactivities/consumer.h +include/PlasmaActivities/plasmaactivities/controller.h +include/PlasmaActivities/plasmaactivities/info.h +include/PlasmaActivities/plasmaactivities/plasma_activities_export.h +include/PlasmaActivities/plasmaactivities/resourceinstance.h +include/PlasmaActivities/plasmaactivities/version.h +lib/cmake/PlasmaActivities/PlasmaActivitiesConfig.cmake +lib/cmake/PlasmaActivities/PlasmaActivitiesConfigVersion.cmake +lib/cmake/PlasmaActivities/PlasmaActivitiesLibraryTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/PlasmaActivities/PlasmaActivitiesLibraryTargets.cmake +lib/libPlasmaActivities.so +lib/libPlasmaActivities.so.%%KDE_PLASMA_VERSION%% +lib/libPlasmaActivities.so.6 +%%QT_QMLDIR%%/org/kde/activities/kde-qmlmodule.version +%%QT_QMLDIR%%/org/kde/activities/libplasmaactivitiesextensionplugin.so +%%QT_QMLDIR%%/org/kde/activities/plasmaactivitiesextensionplugin.qmltypes +%%QT_QMLDIR%%/org/kde/activities/qmldir +libdata/pkgconfig/PlasmaActivities.pc +share/qlogging-categories6/kde.plasma.categories +share/qlogging-categories6/kde.renamecategories diff --git a/x11/plasma6-plasma-desktop/Makefile b/x11/plasma6-plasma-desktop/Makefile new file mode 100644 index 000000000000..583d3db8d470 --- /dev/null +++ b/x11/plasma6-plasma-desktop/Makefile @@ -0,0 +1,41 @@ +PORTNAME= plasma-desktop +DISTVERSION= ${KDE_PLASMA_VERSION} +CATEGORIES= x11 kde kde-plasma + +COMMENT= KDE Plasma Desktop +MAINTAINER= kde@FreeBSD.org + +BUILD_DEPENDS= wayland-protocols>=0:graphics/wayland-protocols \ + xf86-input-evdev>0:x11-drivers/xf86-input-evdev \ + xf86-input-libinput>0:x11-drivers/xf86-input-libinput \ + xf86-input-synaptics>0:x11-drivers/xf86-input-synaptics +LIB_DEPENDS= libcanberra.so:audio/libcanberra \ + liboauth2plugin.so:sysutils/signon-plugin-oauth2 \ + libwayland-client.so:graphics/wayland \ + libxcb-util.so:x11/xcb-util \ + libxkbcommon.so:x11/libxkbcommon \ + libxkbfile.so:x11/libxkbfile +RUN_DEPENDS= noto-emoji>0:x11-fonts/noto-emoji \ + xdg-user-dir:devel/xdg-user-dirs \ + xf86-input-evdev>0:x11-drivers/xf86-input-evdev \ + xf86-input-libinput>0:x11-drivers/xf86-input-libinput \ + xf86-input-synaptics>0:x11-drivers/xf86-input-synaptics + +USES= cmake gettext gl kde:6 pkgconfig python qt:6 tar:xz xorg +USE_GL= gl opengl +USE_KDE= activities activities-stats attica5 auth baloo5 bookmarks \ + codecs colorscheme completion config configwidgets coreaddons \ + crash dbusaddons doctools filemetadata globalaccel guiaddons \ + i18n iconthemes itemmodels itemviews jobwidgets kcmutils kio \ + libksysguard newstuff notifications notifyconfig package \ + plasma-workspace plasma5support runner service solid sonnet \ + widgetsaddons windowsystem xmlgui \ + ecm:build \ + kirigami-addons:run kirigami2:run kpipewire:run \ + qqc2-desktop-style:run +USE_QT= 5compat base declarative svg +USE_XORG= x11 xcb xcursor xext xfixes xi xrender + +#SHEBANG_FILES= kcms/keyboard/*.py kcms/ksmserver/kconf_update/*.py + +.include diff --git a/x11/plasma6-plasma-desktop/distinfo b/x11/plasma6-plasma-desktop/distinfo new file mode 100644 index 000000000000..6c88b834d86a --- /dev/null +++ b/x11/plasma6-plasma-desktop/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1701549418 +SHA256 (KDE/plasma/5.90.0/plasma-desktop-5.90.0.tar.xz) = 803a21727597b2cfa9a6b80f11f40c6da838b030915e02873091674da2ae3f39 +SIZE (KDE/plasma/5.90.0/plasma-desktop-5.90.0.tar.xz) = 14657832 diff --git a/x11/plasma6-plasma-desktop/pkg-plist b/x11/plasma6-plasma-desktop/pkg-plist new file mode 100644 index 000000000000..9ad26b6fb86c --- /dev/null +++ b/x11/plasma6-plasma-desktop/pkg-plist @@ -0,0 +1,4081 @@ +bin/kaccess +bin/kapplymousetheme +bin/kcm-touchpad-list-devices +bin/knetattach +bin/krunner-plugininstaller +bin/plasma-emojier +bin/solid-action-desktop-gen +bin/tastenbrett +etc/xdg/autostart/kaccess.desktop +lib/libexec/kf6/kauth/kcmdatetimehelper +%%QT_PLUGINDIR%%/kf6/kded/device_automounter.so +%%QT_PLUGINDIR%%/kf6/kded/kded_touchpad.so +%%QT_PLUGINDIR%%/kf6/kded/keyboard.so +%%QT_PLUGINDIR%%/kf6/krunner/krunner_kwin.so +%%QT_PLUGINDIR%%/kf6/krunner/krunner_plasma-desktop.so +%%QT_PLUGINDIR%%/plasma/kcminit/kcm_mouse_init.so +%%QT_PLUGINDIR%%/plasma/kcminit/kcm_touchpad_init.so +%%QT_PLUGINDIR%%/plasma/kcms/desktop/kcm_krunnersettings.so +%%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_access.so +%%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_activities.so +%%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_baloofile.so +%%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_componentchooser.so +%%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_desktoppaths.so +%%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_kded.so +%%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_keyboard.so +%%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_keys.so +%%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_landingpage.so +%%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_mouse.so +%%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_plasmasearch.so +%%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_smserver.so +%%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_splashscreen.so +%%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_tablet.so +%%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_touchpad.so +%%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_touchscreen.so +%%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_workspace.so +%%QT_PLUGINDIR%%/plasma/kcms/systemsettings_qwidgets/kcm_clock.so +%%QT_PLUGINDIR%%/plasma/kcms/systemsettings_qwidgets/kcm_device_automounter.so +%%QT_PLUGINDIR%%/plasma/kcms/systemsettings_qwidgets/kcm_qtquicksettings.so +%%QT_PLUGINDIR%%/plasma/kcms/systemsettings_qwidgets/kcm_recentFiles.so +%%QT_PLUGINDIR%%/plasma/kcms/systemsettings_qwidgets/kcm_solid_actions.so +%%QT_PLUGINDIR%%/plasma/kcms/systemsettings_qwidgets/kcmspellchecking.so +%%QT_PLUGINDIR%%/plasma5support/dataengine/plasma_engine_touchpad.so +%%QT_QMLDIR%%/org/kde/plasma/activityswitcher/activityswitcherextensionplugin.qmltypes +%%QT_QMLDIR%%/org/kde/plasma/activityswitcher/kde-qmlmodule.version +%%QT_QMLDIR%%/org/kde/plasma/activityswitcher/libactivityswitcherextensionplugin.so +%%QT_QMLDIR%%/org/kde/plasma/activityswitcher/qmldir +%%QT_QMLDIR%%/org/kde/plasma/emoji/EmojierDeclarativePlugin.qmltypes +%%QT_QMLDIR%%/org/kde/plasma/emoji/kde-qmlmodule.version +%%QT_QMLDIR%%/org/kde/plasma/emoji/libEmojierDeclarativePlugin.so +%%QT_QMLDIR%%/org/kde/plasma/emoji/qmldir +%%QT_QMLDIR%%/org/kde/plasma/private/kcm_keyboard/libkcm_keyboard_declarative.so +%%QT_QMLDIR%%/org/kde/plasma/private/kcm_keyboard/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/showdesktop/libshowdesktopplugin.so +%%QT_QMLDIR%%/org/kde/plasma/private/showdesktop/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/kaccess.desktop +share/applications/kcm_access.desktop +share/applications/kcm_activities.desktop +share/applications/kcm_baloofile.desktop +share/applications/kcm_clock.desktop +share/applications/kcm_componentchooser.desktop +share/applications/kcm_desktoppaths.desktop +share/applications/kcm_kded.desktop +share/applications/kcm_keyboard.desktop +share/applications/kcm_keys.desktop +share/applications/kcm_krunnersettings.desktop +share/applications/kcm_landingpage.desktop +share/applications/kcm_mouse.desktop +share/applications/kcm_plasmasearch.desktop +share/applications/kcm_qtquicksettings.desktop +share/applications/kcm_recentFiles.desktop +share/applications/kcm_smserver.desktop +share/applications/kcm_solid_actions.desktop +share/applications/kcm_splashscreen.desktop +share/applications/kcm_tablet.desktop +share/applications/kcm_touchpad.desktop +share/applications/kcm_touchscreen.desktop +share/applications/kcm_workspace.desktop +share/applications/kcmspellchecking.desktop +share/applications/org.kde.knetattach.desktop +share/applications/org.kde.plasma.emojier.desktop +share/config.kcfg/kactivitymanagerd_plugins_settings.kcfg +share/config.kcfg/kactivitymanagerd_settings.kcfg +share/config.kcfg/kcmaccessibilitybell.kcfg +share/config.kcfg/kcmaccessibilitykeyboard.kcfg +share/config.kcfg/kcmaccessibilitymouse.kcfg +share/config.kcfg/kcmaccessibilityscreenreader.kcfg +share/config.kcfg/krunnersettingsbase.kcfg +share/config.kcfg/landingpage_kdeglobalssettings.kcfg +share/config.kcfg/splashscreensettings.kcfg +share/config.kcfg/workspaceoptions_kdeglobalssettings.kcfg +share/config.kcfg/workspaceoptions_kwinsettings.kcfg +share/config.kcfg/workspaceoptions_plasmasettings.kcfg +share/dbus-1/interfaces/org.kde.touchpad.xml +share/dbus-1/system-services/org.kde.kcontrol.kcmclock.service +share/dbus-1/system.d/org.kde.kcontrol.kcmclock.conf +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/componentchooser/index.cache.bz2 +share/doc/HTML/ca/kcontrol/componentchooser/index.docbook +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/kcmactivities/index.cache.bz2 +share/doc/HTML/ca/kcontrol/kcmactivities/index.docbook +share/doc/HTML/ca/kcontrol/kcmlaunchfeedback/index.cache.bz2 +share/doc/HTML/ca/kcontrol/kcmlaunchfeedback/index.docbook +share/doc/HTML/ca/kcontrol/kcmsmserver/index.cache.bz2 +share/doc/HTML/ca/kcontrol/kcmsmserver/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/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/get-new-theme.png +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/workspaceoptions/index.cache.bz2 +share/doc/HTML/ca/kcontrol/workspaceoptions/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.png +share/doc/HTML/ca/plasma-desktop/application-menu.png +share/doc/HTML/ca/plasma-desktop/index.cache.bz2 +share/doc/HTML/ca/plasma-desktop/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/componentchooser/index.cache.bz2 +share/doc/HTML/de/kcontrol/componentchooser/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/kcmactivities/index.cache.bz2 +share/doc/HTML/de/kcontrol/kcmactivities/index.docbook +share/doc/HTML/de/kcontrol/kcmlaunchfeedback/index.cache.bz2 +share/doc/HTML/de/kcontrol/kcmlaunchfeedback/index.docbook +share/doc/HTML/de/kcontrol/kcmsmserver/index.cache.bz2 +share/doc/HTML/de/kcontrol/kcmsmserver/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/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/workspaceoptions/index.cache.bz2 +share/doc/HTML/de/kcontrol/workspaceoptions/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/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/componentchooser/index.cache.bz2 +share/doc/HTML/en/kcontrol/componentchooser/index.docbook +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/kcmactivities/configure.png +share/doc/HTML/en/kcontrol/kcmactivities/edit-delete.png +share/doc/HTML/en/kcontrol/kcmactivities/index.cache.bz2 +share/doc/HTML/en/kcontrol/kcmactivities/index.docbook +share/doc/HTML/en/kcontrol/kcmsmserver/index.cache.bz2 +share/doc/HTML/en/kcontrol/kcmsmserver/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/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/workspaceoptions/index.cache.bz2 +share/doc/HTML/en/kcontrol/workspaceoptions/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/baloo/index.cache.bz2 +share/doc/HTML/es/kcontrol/baloo/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/joystick/index.cache.bz2 +share/doc/HTML/es/kcontrol/joystick/index.docbook +share/doc/HTML/es/kcontrol/kcmaccess/index.cache.bz2 +share/doc/HTML/es/kcontrol/kcmaccess/index.docbook +share/doc/HTML/es/kcontrol/kcmactivities/index.cache.bz2 +share/doc/HTML/es/kcontrol/kcmactivities/index.docbook +share/doc/HTML/es/kcontrol/kcmlaunchfeedback/index.cache.bz2 +share/doc/HTML/es/kcontrol/kcmlaunchfeedback/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/keyboard/index.cache.bz2 +share/doc/HTML/es/kcontrol/keyboard/index.docbook +share/doc/HTML/es/kcontrol/keys/index.cache.bz2 +share/doc/HTML/es/kcontrol/keys/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/solid-actions/index.cache.bz2 +share/doc/HTML/es/kcontrol/solid-actions/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/kcontrol/spellchecking/index.cache.bz2 +share/doc/HTML/es/kcontrol/spellchecking/index.docbook +share/doc/HTML/es/kcontrol/splashscreen/index.cache.bz2 +share/doc/HTML/es/kcontrol/splashscreen/index.docbook +share/doc/HTML/es/kcontrol/workspaceoptions/index.cache.bz2 +share/doc/HTML/es/kcontrol/workspaceoptions/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/es/plasma-desktop/index.cache.bz2 +share/doc/HTML/es/plasma-desktop/index.docbook +share/doc/HTML/et/kcontrol/clock/index.cache.bz2 +share/doc/HTML/et/kcontrol/clock/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/id/kcontrol/baloo/index.cache.bz2 +share/doc/HTML/id/kcontrol/baloo/index.docbook +share/doc/HTML/id/kcontrol/clock/index.cache.bz2 +share/doc/HTML/id/kcontrol/clock/index.docbook +share/doc/HTML/id/kcontrol/componentchooser/index.cache.bz2 +share/doc/HTML/id/kcontrol/componentchooser/index.docbook +share/doc/HTML/id/kcontrol/joystick/index.cache.bz2 +share/doc/HTML/id/kcontrol/joystick/index.docbook +share/doc/HTML/id/kcontrol/kcmaccess/index.cache.bz2 +share/doc/HTML/id/kcontrol/kcmaccess/index.docbook +share/doc/HTML/id/kcontrol/kcmlaunchfeedback/index.cache.bz2 +share/doc/HTML/id/kcontrol/kcmlaunchfeedback/index.docbook +share/doc/HTML/id/kcontrol/kcmsmserver/index.cache.bz2 +share/doc/HTML/id/kcontrol/kcmsmserver/index.docbook +share/doc/HTML/id/kcontrol/kded/index.cache.bz2 +share/doc/HTML/id/kcontrol/kded/index.docbook +share/doc/HTML/id/kcontrol/keyboard/index.cache.bz2 +share/doc/HTML/id/kcontrol/keyboard/index.docbook +share/doc/HTML/id/kcontrol/keys/index.cache.bz2 +share/doc/HTML/id/kcontrol/keys/index.docbook +share/doc/HTML/id/kcontrol/mouse/index.cache.bz2 +share/doc/HTML/id/kcontrol/mouse/index.docbook +share/doc/HTML/id/kcontrol/paths/index.cache.bz2 +share/doc/HTML/id/kcontrol/paths/index.docbook +share/doc/HTML/id/kcontrol/solid-actions/index.cache.bz2 +share/doc/HTML/id/kcontrol/solid-actions/index.docbook +share/doc/HTML/id/kcontrol/solid-device-automounter/index.cache.bz2 +share/doc/HTML/id/kcontrol/solid-device-automounter/index.docbook +share/doc/HTML/id/kcontrol/spellchecking/index.cache.bz2 +share/doc/HTML/id/kcontrol/spellchecking/index.docbook +share/doc/HTML/id/kcontrol/splashscreen/index.cache.bz2 +share/doc/HTML/id/kcontrol/splashscreen/index.docbook +share/doc/HTML/id/kcontrol/workspaceoptions/index.cache.bz2 +share/doc/HTML/id/kcontrol/workspaceoptions/index.docbook +share/doc/HTML/id/kfontview/index.cache.bz2 +share/doc/HTML/id/kfontview/index.docbook +share/doc/HTML/id/knetattach/index.cache.bz2 +share/doc/HTML/id/knetattach/index.docbook +share/doc/HTML/id/plasma-desktop/index.cache.bz2 +share/doc/HTML/id/plasma-desktop/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/componentchooser/index.cache.bz2 +share/doc/HTML/it/kcontrol/componentchooser/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/kcmactivities/index.cache.bz2 +share/doc/HTML/it/kcontrol/kcmactivities/index.docbook +share/doc/HTML/it/kcontrol/kcmlaunchfeedback/index.cache.bz2 +share/doc/HTML/it/kcontrol/kcmlaunchfeedback/index.docbook +share/doc/HTML/it/kcontrol/kcmsmserver/index.cache.bz2 +share/doc/HTML/it/kcontrol/kcmsmserver/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/solid-actions/add-action.png +share/doc/HTML/it/kcontrol/solid-actions/edit-action.png +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-actions/main.png +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/workspaceoptions/index.cache.bz2 +share/doc/HTML/it/kcontrol/workspaceoptions/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/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/componentchooser/index.cache.bz2 +share/doc/HTML/nl/kcontrol/componentchooser/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/kcmactivities/index.cache.bz2 +share/doc/HTML/nl/kcontrol/kcmactivities/index.docbook +share/doc/HTML/nl/kcontrol/kcmlaunchfeedback/index.cache.bz2 +share/doc/HTML/nl/kcontrol/kcmlaunchfeedback/index.docbook +share/doc/HTML/nl/kcontrol/kcmsmserver/index.cache.bz2 +share/doc/HTML/nl/kcontrol/kcmsmserver/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/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/workspaceoptions/index.cache.bz2 +share/doc/HTML/nl/kcontrol/workspaceoptions/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/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/componentchooser/index.cache.bz2 +share/doc/HTML/pt/kcontrol/componentchooser/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/kcmlaunchfeedback/index.cache.bz2 +share/doc/HTML/pt/kcontrol/kcmlaunchfeedback/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/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/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/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/componentchooser/index.cache.bz2 +share/doc/HTML/pt_BR/kcontrol/componentchooser/index.docbook +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/kcmlaunchfeedback/index.cache.bz2 +share/doc/HTML/pt_BR/kcontrol/kcmlaunchfeedback/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/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/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/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/clock/index.cache.bz2 +share/doc/HTML/ru/kcontrol/clock/index.docbook +share/doc/HTML/ru/kcontrol/componentchooser/index.cache.bz2 +share/doc/HTML/ru/kcontrol/componentchooser/index.docbook +share/doc/HTML/ru/kcontrol/joystick/index.cache.bz2 +share/doc/HTML/ru/kcontrol/joystick/index.docbook +share/doc/HTML/ru/kcontrol/joystick/joystick-calibration.png +share/doc/HTML/ru/kcontrol/joystick/joystick-main.png +share/doc/HTML/ru/kcontrol/kcmaccess/index.cache.bz2 +share/doc/HTML/ru/kcontrol/kcmaccess/index.docbook +share/doc/HTML/ru/kcontrol/kcmactivities/index.cache.bz2 +share/doc/HTML/ru/kcontrol/kcmactivities/index.docbook +share/doc/HTML/ru/kcontrol/kcmlaunchfeedback/index.cache.bz2 +share/doc/HTML/ru/kcontrol/kcmlaunchfeedback/index.docbook +share/doc/HTML/ru/kcontrol/kcmsmserver/index.cache.bz2 +share/doc/HTML/ru/kcontrol/kcmsmserver/index.docbook +share/doc/HTML/ru/kcontrol/kded/index.cache.bz2 +share/doc/HTML/ru/kcontrol/kded/index.docbook +share/doc/HTML/ru/kcontrol/keyboard/index.cache.bz2 +share/doc/HTML/ru/kcontrol/keyboard/index.docbook +share/doc/HTML/ru/kcontrol/keys/index.cache.bz2 +share/doc/HTML/ru/kcontrol/keys/index.docbook +share/doc/HTML/ru/kcontrol/mouse/index.cache.bz2 +share/doc/HTML/ru/kcontrol/mouse/index.docbook +share/doc/HTML/ru/kcontrol/paths/index.cache.bz2 +share/doc/HTML/ru/kcontrol/paths/index.docbook +share/doc/HTML/ru/kcontrol/paths/paths.png +share/doc/HTML/ru/kcontrol/solid-actions/add-action.png +share/doc/HTML/ru/kcontrol/solid-actions/edit-action.png +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-actions/main.png +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/spellchecking/index.cache.bz2 +share/doc/HTML/ru/kcontrol/spellchecking/index.docbook +share/doc/HTML/ru/kcontrol/splashscreen/get-new-theme.png +share/doc/HTML/ru/kcontrol/splashscreen/index.cache.bz2 +share/doc/HTML/ru/kcontrol/splashscreen/index.docbook +share/doc/HTML/ru/kcontrol/splashscreen/splash-main.png +share/doc/HTML/ru/kcontrol/workspaceoptions/index.cache.bz2 +share/doc/HTML/ru/kcontrol/workspaceoptions/index.docbook +share/doc/HTML/ru/kfontview/index.cache.bz2 +share/doc/HTML/ru/kfontview/index.docbook +share/doc/HTML/ru/knetattach/index.cache.bz2 +share/doc/HTML/ru/knetattach/index.docbook +share/doc/HTML/ru/plasma-desktop/index.cache.bz2 +share/doc/HTML/ru/plasma-desktop/index.docbook +share/doc/HTML/sr/kcontrol/clock/index.cache.bz2 +share/doc/HTML/sr/kcontrol/clock/index.docbook +share/doc/HTML/sr/kcontrol/kcmlaunchfeedback/index.cache.bz2 +share/doc/HTML/sr/kcontrol/kcmlaunchfeedback/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/clock/index.cache.bz2 +share/doc/HTML/sr@latin/kcontrol/clock/index.docbook +share/doc/HTML/sr@latin/kcontrol/kcmlaunchfeedback/index.cache.bz2 +share/doc/HTML/sr@latin/kcontrol/kcmlaunchfeedback/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/sv/kcontrol/baloo/index.cache.bz2 +share/doc/HTML/sv/kcontrol/baloo/index.docbook +share/doc/HTML/sv/kcontrol/clock/index.cache.bz2 +share/doc/HTML/sv/kcontrol/clock/index.docbook +share/doc/HTML/sv/kcontrol/componentchooser/index.cache.bz2 +share/doc/HTML/sv/kcontrol/componentchooser/index.docbook +share/doc/HTML/sv/kcontrol/joystick/index.cache.bz2 +share/doc/HTML/sv/kcontrol/joystick/index.docbook +share/doc/HTML/sv/kcontrol/kcmaccess/index.cache.bz2 +share/doc/HTML/sv/kcontrol/kcmaccess/index.docbook +share/doc/HTML/sv/kcontrol/kcmactivities/index.cache.bz2 +share/doc/HTML/sv/kcontrol/kcmactivities/index.docbook +share/doc/HTML/sv/kcontrol/kcmlaunchfeedback/index.cache.bz2 +share/doc/HTML/sv/kcontrol/kcmlaunchfeedback/index.docbook +share/doc/HTML/sv/kcontrol/kcmsmserver/index.cache.bz2 +share/doc/HTML/sv/kcontrol/kcmsmserver/index.docbook +share/doc/HTML/sv/kcontrol/kded/index.cache.bz2 +share/doc/HTML/sv/kcontrol/kded/index.docbook +share/doc/HTML/sv/kcontrol/keyboard/index.cache.bz2 +share/doc/HTML/sv/kcontrol/keyboard/index.docbook +share/doc/HTML/sv/kcontrol/keys/index.cache.bz2 +share/doc/HTML/sv/kcontrol/keys/index.docbook +share/doc/HTML/sv/kcontrol/mouse/index.cache.bz2 +share/doc/HTML/sv/kcontrol/mouse/index.docbook +share/doc/HTML/sv/kcontrol/paths/index.cache.bz2 +share/doc/HTML/sv/kcontrol/paths/index.docbook +share/doc/HTML/sv/kcontrol/solid-actions/index.cache.bz2 +share/doc/HTML/sv/kcontrol/solid-actions/index.docbook +share/doc/HTML/sv/kcontrol/solid-device-automounter/index.cache.bz2 +share/doc/HTML/sv/kcontrol/solid-device-automounter/index.docbook +share/doc/HTML/sv/kcontrol/spellchecking/index.cache.bz2 +share/doc/HTML/sv/kcontrol/spellchecking/index.docbook +share/doc/HTML/sv/kcontrol/splashscreen/index.cache.bz2 +share/doc/HTML/sv/kcontrol/splashscreen/index.docbook +share/doc/HTML/sv/kcontrol/workspaceoptions/index.cache.bz2 +share/doc/HTML/sv/kcontrol/workspaceoptions/index.docbook +share/doc/HTML/sv/kfontview/index.cache.bz2 +share/doc/HTML/sv/kfontview/index.docbook +share/doc/HTML/sv/knetattach/index.cache.bz2 +share/doc/HTML/sv/knetattach/index.docbook +share/doc/HTML/sv/plasma-desktop/index.cache.bz2 +share/doc/HTML/sv/plasma-desktop/index.docbook +share/doc/HTML/tr/kcontrol/baloo/index.cache.bz2 +share/doc/HTML/tr/kcontrol/baloo/index.docbook +share/doc/HTML/tr/kcontrol/clock/index.cache.bz2 +share/doc/HTML/tr/kcontrol/clock/index.docbook +share/doc/HTML/tr/kcontrol/componentchooser/index.cache.bz2 +share/doc/HTML/tr/kcontrol/componentchooser/index.docbook +share/doc/HTML/tr/kcontrol/joystick/index.cache.bz2 +share/doc/HTML/tr/kcontrol/joystick/index.docbook +share/doc/HTML/tr/kcontrol/kcmaccess/index.cache.bz2 +share/doc/HTML/tr/kcontrol/kcmaccess/index.docbook +share/doc/HTML/tr/kcontrol/kcmactivities/index.cache.bz2 +share/doc/HTML/tr/kcontrol/kcmactivities/index.docbook +share/doc/HTML/tr/kcontrol/kcmsmserver/index.cache.bz2 +share/doc/HTML/tr/kcontrol/kcmsmserver/index.docbook +share/doc/HTML/tr/kcontrol/kded/index.cache.bz2 +share/doc/HTML/tr/kcontrol/kded/index.docbook +share/doc/HTML/tr/kcontrol/keyboard/index.cache.bz2 +share/doc/HTML/tr/kcontrol/keyboard/index.docbook +share/doc/HTML/tr/kcontrol/keys/index.cache.bz2 +share/doc/HTML/tr/kcontrol/keys/index.docbook +share/doc/HTML/tr/kcontrol/mouse/index.cache.bz2 +share/doc/HTML/tr/kcontrol/mouse/index.docbook +share/doc/HTML/tr/kcontrol/paths/index.cache.bz2 +share/doc/HTML/tr/kcontrol/paths/index.docbook +share/doc/HTML/tr/kcontrol/solid-actions/index.cache.bz2 +share/doc/HTML/tr/kcontrol/solid-actions/index.docbook +share/doc/HTML/tr/kcontrol/solid-device-automounter/index.cache.bz2 +share/doc/HTML/tr/kcontrol/solid-device-automounter/index.docbook +share/doc/HTML/tr/kcontrol/spellchecking/index.cache.bz2 +share/doc/HTML/tr/kcontrol/spellchecking/index.docbook +share/doc/HTML/tr/kcontrol/splashscreen/index.cache.bz2 +share/doc/HTML/tr/kcontrol/splashscreen/index.docbook +share/doc/HTML/tr/kcontrol/workspaceoptions/index.cache.bz2 +share/doc/HTML/tr/kcontrol/workspaceoptions/index.docbook +share/doc/HTML/tr/kfontview/index.cache.bz2 +share/doc/HTML/tr/kfontview/index.docbook +share/doc/HTML/tr/knetattach/index.cache.bz2 +share/doc/HTML/tr/knetattach/index.docbook +share/doc/HTML/tr/plasma-desktop/index.cache.bz2 +share/doc/HTML/tr/plasma-desktop/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/componentchooser/index.cache.bz2 +share/doc/HTML/uk/kcontrol/componentchooser/index.docbook +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/kcmactivities/index.cache.bz2 +share/doc/HTML/uk/kcontrol/kcmactivities/index.docbook +share/doc/HTML/uk/kcontrol/kcmlaunchfeedback/index.cache.bz2 +share/doc/HTML/uk/kcontrol/kcmlaunchfeedback/index.docbook +share/doc/HTML/uk/kcontrol/kcmsmserver/index.cache.bz2 +share/doc/HTML/uk/kcontrol/kcmsmserver/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/paths/paths.png +share/doc/HTML/uk/kcontrol/solid-actions/add-action.png +share/doc/HTML/uk/kcontrol/solid-actions/edit-action.png +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-actions/main.png +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/get-new-theme.png +share/doc/HTML/uk/kcontrol/splashscreen/index.cache.bz2 +share/doc/HTML/uk/kcontrol/splashscreen/index.docbook +share/doc/HTML/uk/kcontrol/splashscreen/splash-main.png +share/doc/HTML/uk/kcontrol/workspaceoptions/index.cache.bz2 +share/doc/HTML/uk/kcontrol/workspaceoptions/index.docbook +share/doc/HTML/uk/kfontview/index.cache.bz2 +share/doc/HTML/uk/kfontview/index.docbook +share/doc/HTML/uk/kfontview/kfontview.png +share/doc/HTML/uk/knetattach/index.cache.bz2 +share/doc/HTML/uk/knetattach/index.docbook +share/doc/HTML/uk/plasma-desktop/application-launcher-settings.png +share/doc/HTML/uk/plasma-desktop/index.cache.bz2 +share/doc/HTML/uk/plasma-desktop/index.docbook +share/icons/hicolor/128x128/devices/input-touchpad.png +share/icons/hicolor/16x16/devices/input-touchpad.png +share/icons/hicolor/22x22/devices/input-touchpad.png +share/icons/hicolor/24x24/devices/input-touchpad.png +share/icons/hicolor/256x256/devices/input-touchpad.png +share/icons/hicolor/32x32/devices/input-touchpad.png +share/icons/hicolor/48x48/devices/input-touchpad.png +share/icons/hicolor/64x64/devices/input-touchpad.png +share/icons/hicolor/96x96/devices/input-touchpad.png +share/icons/hicolor/scalable/devices/input-touchpad.svgz +share/kcm_recentFiles/workspace/settings/qml/recentFiles/BlacklistApplicationView.qml +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/kcmmouse/cursor_large_black.pcf.gz +share/kcmmouse/cursor_large_white.pcf.gz +share/kcmmouse/cursor_small_white.pcf.gz +share/kcmmouse/pics/mouse_lh.png +share/kcmmouse/pics/mouse_rh.png +share/kcmsolidactions/solid-action-template.desktop +share/kglobalaccel/org.kde.plasma.emojier.desktop +share/knotifications6/kaccess.notifyrc +share/knotifications6/kcm_touchpad.notifyrc +share/knsrcfiles/krunner.knsrc +share/knsrcfiles/ksplash.knsrc +share/locale/af/LC_MESSAGES/kaccess.mo +share/locale/af/LC_MESSAGES/kcm_access.mo +share/locale/af/LC_MESSAGES/kcm_componentchooser.mo +share/locale/af/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/af/LC_MESSAGES/kcm_kded.mo +share/locale/af/LC_MESSAGES/kcm_smserver.mo +share/locale/af/LC_MESSAGES/kcmkclock.mo +share/locale/af/LC_MESSAGES/kcmkeyboard.mo +share/locale/af/LC_MESSAGES/kcmmouse.mo +share/locale/af/LC_MESSAGES/knetattach5.mo +share/locale/af/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/ar/LC_MESSAGES/kaccess.mo +share/locale/ar/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/ar/LC_MESSAGES/kcm_access.mo +share/locale/ar/LC_MESSAGES/kcm_activities.mo +share/locale/ar/LC_MESSAGES/kcm_baloofile.mo +share/locale/ar/LC_MESSAGES/kcm_componentchooser.mo +share/locale/ar/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/ar/LC_MESSAGES/kcm_kded.mo +share/locale/ar/LC_MESSAGES/kcm_keys.mo +share/locale/ar/LC_MESSAGES/kcm_krunnersettings.mo +share/locale/ar/LC_MESSAGES/kcm_landingpage.mo +share/locale/ar/LC_MESSAGES/kcm_plasmasearch.mo +share/locale/ar/LC_MESSAGES/kcm_recentFiles.mo +share/locale/ar/LC_MESSAGES/kcm_smserver.mo +share/locale/ar/LC_MESSAGES/kcm_solid_actions.mo +share/locale/ar/LC_MESSAGES/kcm_splashscreen.mo +share/locale/ar/LC_MESSAGES/kcm_tablet.mo +share/locale/ar/LC_MESSAGES/kcm_touchpad.mo +share/locale/ar/LC_MESSAGES/kcm_touchscreen.mo +share/locale/ar/LC_MESSAGES/kcm_workspace.mo +share/locale/ar/LC_MESSAGES/kcmkclock.mo +share/locale/ar/LC_MESSAGES/kcmkeyboard.mo +share/locale/ar/LC_MESSAGES/kcmmouse.mo +share/locale/ar/LC_MESSAGES/kcmqtquicksettings.mo +share/locale/ar/LC_MESSAGES/knetattach5.mo +share/locale/ar/LC_MESSAGES/org.kde.plasma.emojier.mo +share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.panel.mo +share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.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.kimpanel.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.showdesktop.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_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/plasma_toolbox_org.kde.paneltoolbox.mo +share/locale/ar/LC_MESSAGES/plasmaactivitymanager.mo +share/locale/as/LC_MESSAGES/kcm_access.mo +share/locale/ast/LC_MESSAGES/kaccess.mo +share/locale/ast/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/ast/LC_MESSAGES/kcm_access.mo +share/locale/ast/LC_MESSAGES/kcm_activities.mo +share/locale/ast/LC_MESSAGES/kcm_baloofile.mo +share/locale/ast/LC_MESSAGES/kcm_componentchooser.mo +share/locale/ast/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/ast/LC_MESSAGES/kcm_gamecontroller.mo +share/locale/ast/LC_MESSAGES/kcm_kded.mo +share/locale/ast/LC_MESSAGES/kcm_keys.mo +share/locale/ast/LC_MESSAGES/kcm_krunnersettings.mo +share/locale/ast/LC_MESSAGES/kcm_landingpage.mo +share/locale/ast/LC_MESSAGES/kcm_plasmasearch.mo +share/locale/ast/LC_MESSAGES/kcm_recentFiles.mo +share/locale/ast/LC_MESSAGES/kcm_smserver.mo +share/locale/ast/LC_MESSAGES/kcm_solid_actions.mo +share/locale/ast/LC_MESSAGES/kcm_splashscreen.mo +share/locale/ast/LC_MESSAGES/kcm_tablet.mo +share/locale/ast/LC_MESSAGES/kcm_touchpad.mo +share/locale/ast/LC_MESSAGES/kcm_touchscreen.mo +share/locale/ast/LC_MESSAGES/kcm_workspace.mo +share/locale/ast/LC_MESSAGES/kcmkclock.mo +share/locale/ast/LC_MESSAGES/kcmkeyboard.mo +share/locale/ast/LC_MESSAGES/kcmmouse.mo +share/locale/ast/LC_MESSAGES/kcmqtquicksettings.mo +share/locale/ast/LC_MESSAGES/knetattach5.mo +share/locale/ast/LC_MESSAGES/org.kde.plasma.emojier.mo +share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.panel.mo +share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.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.kimpanel.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.showdesktop.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_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/plasma_toolbox_org.kde.paneltoolbox.mo +share/locale/ast/LC_MESSAGES/plasmaactivitymanager.mo +share/locale/az/LC_MESSAGES/kaccess.mo +share/locale/az/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/az/LC_MESSAGES/kcm_access.mo +share/locale/az/LC_MESSAGES/kcm_activities.mo +share/locale/az/LC_MESSAGES/kcm_baloofile.mo +share/locale/az/LC_MESSAGES/kcm_componentchooser.mo +share/locale/az/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/az/LC_MESSAGES/kcm_kded.mo +share/locale/az/LC_MESSAGES/kcm_keys.mo +share/locale/az/LC_MESSAGES/kcm_krunnersettings.mo +share/locale/az/LC_MESSAGES/kcm_landingpage.mo +share/locale/az/LC_MESSAGES/kcm_plasmasearch.mo +share/locale/az/LC_MESSAGES/kcm_recentFiles.mo +share/locale/az/LC_MESSAGES/kcm_smserver.mo +share/locale/az/LC_MESSAGES/kcm_solid_actions.mo +share/locale/az/LC_MESSAGES/kcm_splashscreen.mo +share/locale/az/LC_MESSAGES/kcm_tablet.mo +share/locale/az/LC_MESSAGES/kcm_touchpad.mo +share/locale/az/LC_MESSAGES/kcm_touchscreen.mo +share/locale/az/LC_MESSAGES/kcm_workspace.mo +share/locale/az/LC_MESSAGES/kcmkclock.mo +share/locale/az/LC_MESSAGES/kcmkeyboard.mo +share/locale/az/LC_MESSAGES/kcmmouse.mo +share/locale/az/LC_MESSAGES/kcmqtquicksettings.mo +share/locale/az/LC_MESSAGES/knetattach5.mo +share/locale/az/LC_MESSAGES/org.kde.plasma.emojier.mo +share/locale/az/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/az/LC_MESSAGES/plasma_applet_org.kde.panel.mo +share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.mo +share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo +share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo +share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo +share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo +share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo +share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo +share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo +share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo +share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo +share/locale/az/LC_MESSAGES/plasma_runner_kwin.mo +share/locale/az/LC_MESSAGES/plasma_runner_plasma-desktop.mo +share/locale/az/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo +share/locale/az/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo +share/locale/az/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo +share/locale/az/LC_MESSAGES/plasmaactivitymanager.mo +share/locale/be/LC_MESSAGES/kaccess.mo +share/locale/be/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/be/LC_MESSAGES/kcm_access.mo +share/locale/be/LC_MESSAGES/kcm_activities.mo +share/locale/be/LC_MESSAGES/kcm_baloofile.mo +share/locale/be/LC_MESSAGES/kcm_componentchooser.mo +share/locale/be/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/be/LC_MESSAGES/kcm_kded.mo +share/locale/be/LC_MESSAGES/kcm_keys.mo +share/locale/be/LC_MESSAGES/kcm_krunnersettings.mo +share/locale/be/LC_MESSAGES/kcm_landingpage.mo +share/locale/be/LC_MESSAGES/kcm_plasmasearch.mo +share/locale/be/LC_MESSAGES/kcm_recentFiles.mo +share/locale/be/LC_MESSAGES/kcm_smserver.mo +share/locale/be/LC_MESSAGES/kcm_solid_actions.mo +share/locale/be/LC_MESSAGES/kcm_splashscreen.mo +share/locale/be/LC_MESSAGES/kcm_tablet.mo +share/locale/be/LC_MESSAGES/kcm_touchpad.mo +share/locale/be/LC_MESSAGES/kcm_touchscreen.mo +share/locale/be/LC_MESSAGES/kcm_workspace.mo +share/locale/be/LC_MESSAGES/kcmkclock.mo +share/locale/be/LC_MESSAGES/kcmkeyboard.mo +share/locale/be/LC_MESSAGES/kcmmouse.mo +share/locale/be/LC_MESSAGES/kcmqtquicksettings.mo +share/locale/be/LC_MESSAGES/knetattach5.mo +share/locale/be/LC_MESSAGES/org.kde.plasma.emojier.mo +share/locale/be/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/be/LC_MESSAGES/plasma_applet_org.kde.panel.mo +share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.mo +share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo +share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo +share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo +share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo +share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo +share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.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/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo +share/locale/be/LC_MESSAGES/plasma_runner_kwin.mo +share/locale/be/LC_MESSAGES/plasma_runner_plasma-desktop.mo +share/locale/be/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo +share/locale/be/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo +share/locale/be/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo +share/locale/be/LC_MESSAGES/plasmaactivitymanager.mo +share/locale/be@latin/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/be@latin/LC_MESSAGES/kcmkclock.mo +share/locale/be@latin/LC_MESSAGES/kcmkeyboard.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/kaccess.mo +share/locale/bg/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/bg/LC_MESSAGES/kcm_access.mo +share/locale/bg/LC_MESSAGES/kcm_activities.mo +share/locale/bg/LC_MESSAGES/kcm_baloofile.mo +share/locale/bg/LC_MESSAGES/kcm_componentchooser.mo +share/locale/bg/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/bg/LC_MESSAGES/kcm_kded.mo +share/locale/bg/LC_MESSAGES/kcm_keys.mo +share/locale/bg/LC_MESSAGES/kcm_krunnersettings.mo +share/locale/bg/LC_MESSAGES/kcm_landingpage.mo +share/locale/bg/LC_MESSAGES/kcm_plasmasearch.mo +share/locale/bg/LC_MESSAGES/kcm_recentFiles.mo +share/locale/bg/LC_MESSAGES/kcm_smserver.mo +share/locale/bg/LC_MESSAGES/kcm_solid_actions.mo +share/locale/bg/LC_MESSAGES/kcm_splashscreen.mo +share/locale/bg/LC_MESSAGES/kcm_tablet.mo +share/locale/bg/LC_MESSAGES/kcm_touchpad.mo +share/locale/bg/LC_MESSAGES/kcm_touchscreen.mo +share/locale/bg/LC_MESSAGES/kcm_workspace.mo +share/locale/bg/LC_MESSAGES/kcmkclock.mo +share/locale/bg/LC_MESSAGES/kcmkeyboard.mo +share/locale/bg/LC_MESSAGES/kcmmouse.mo +share/locale/bg/LC_MESSAGES/kcmqtquicksettings.mo +share/locale/bg/LC_MESSAGES/knetattach5.mo +share/locale/bg/LC_MESSAGES/org.kde.plasma.emojier.mo +share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.panel.mo +share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.mo +share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo +share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo +share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.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.showdesktop.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_applet_org.kde.plasma.windowlist.mo +share/locale/bg/LC_MESSAGES/plasma_runner_kwin.mo +share/locale/bg/LC_MESSAGES/plasma_runner_plasma-desktop.mo +share/locale/bg/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo +share/locale/bg/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo +share/locale/bg/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo +share/locale/bg/LC_MESSAGES/plasmaactivitymanager.mo +share/locale/bn/LC_MESSAGES/kaccess.mo +share/locale/bn/LC_MESSAGES/kcm_access.mo +share/locale/bn/LC_MESSAGES/kcm_componentchooser.mo +share/locale/bn/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/bn/LC_MESSAGES/kcm_kded.mo +share/locale/bn/LC_MESSAGES/kcm_smserver.mo +share/locale/bn/LC_MESSAGES/kcmkclock.mo +share/locale/bn/LC_MESSAGES/kcmkeyboard.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/kcm_access.mo +share/locale/bn_IN/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/bn_IN/LC_MESSAGES/kcm_kded.mo +share/locale/bn_IN/LC_MESSAGES/kcm_smserver.mo +share/locale/bn_IN/LC_MESSAGES/kcmkclock.mo +share/locale/bn_IN/LC_MESSAGES/kcmkeyboard.mo +share/locale/bn_IN/LC_MESSAGES/knetattach5.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/kaccess.mo +share/locale/br/LC_MESSAGES/kcm_access.mo +share/locale/br/LC_MESSAGES/kcm_componentchooser.mo +share/locale/br/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/br/LC_MESSAGES/kcm_kded.mo +share/locale/br/LC_MESSAGES/kcm_smserver.mo +share/locale/br/LC_MESSAGES/kcmkclock.mo +share/locale/br/LC_MESSAGES/kcmkeyboard.mo +share/locale/br/LC_MESSAGES/kcmmouse.mo +share/locale/br/LC_MESSAGES/knetattach5.mo +share/locale/br/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/bs/LC_MESSAGES/kaccess.mo +share/locale/bs/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/bs/LC_MESSAGES/kcm_access.mo +share/locale/bs/LC_MESSAGES/kcm_baloofile.mo +share/locale/bs/LC_MESSAGES/kcm_componentchooser.mo +share/locale/bs/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/bs/LC_MESSAGES/kcm_kded.mo +share/locale/bs/LC_MESSAGES/kcm_krunnersettings.mo +share/locale/bs/LC_MESSAGES/kcm_plasmasearch.mo +share/locale/bs/LC_MESSAGES/kcm_smserver.mo +share/locale/bs/LC_MESSAGES/kcm_solid_actions.mo +share/locale/bs/LC_MESSAGES/kcm_splashscreen.mo +share/locale/bs/LC_MESSAGES/kcm_touchpad.mo +share/locale/bs/LC_MESSAGES/kcm_workspace.mo +share/locale/bs/LC_MESSAGES/kcmkclock.mo +share/locale/bs/LC_MESSAGES/kcmkeyboard.mo +share/locale/bs/LC_MESSAGES/kcmmouse.mo +share/locale/bs/LC_MESSAGES/knetattach5.mo +share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.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.kimpanel.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.showdesktop.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_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/kaccess.mo +share/locale/ca/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/ca/LC_MESSAGES/kcm_access.mo +share/locale/ca/LC_MESSAGES/kcm_activities.mo +share/locale/ca/LC_MESSAGES/kcm_baloofile.mo +share/locale/ca/LC_MESSAGES/kcm_componentchooser.mo +share/locale/ca/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/ca/LC_MESSAGES/kcm_gamecontroller.mo +share/locale/ca/LC_MESSAGES/kcm_kded.mo +share/locale/ca/LC_MESSAGES/kcm_keys.mo +share/locale/ca/LC_MESSAGES/kcm_krunnersettings.mo +share/locale/ca/LC_MESSAGES/kcm_landingpage.mo +share/locale/ca/LC_MESSAGES/kcm_plasmasearch.mo +share/locale/ca/LC_MESSAGES/kcm_recentFiles.mo +share/locale/ca/LC_MESSAGES/kcm_smserver.mo +share/locale/ca/LC_MESSAGES/kcm_solid_actions.mo +share/locale/ca/LC_MESSAGES/kcm_splashscreen.mo +share/locale/ca/LC_MESSAGES/kcm_tablet.mo +share/locale/ca/LC_MESSAGES/kcm_touchpad.mo +share/locale/ca/LC_MESSAGES/kcm_touchscreen.mo +share/locale/ca/LC_MESSAGES/kcm_workspace.mo +share/locale/ca/LC_MESSAGES/kcmkclock.mo +share/locale/ca/LC_MESSAGES/kcmkeyboard.mo +share/locale/ca/LC_MESSAGES/kcmmouse.mo +share/locale/ca/LC_MESSAGES/kcmqtquicksettings.mo +share/locale/ca/LC_MESSAGES/knetattach5.mo +share/locale/ca/LC_MESSAGES/org.kde.plasma.emojier.mo +share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.panel.mo +share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.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.kimpanel.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.showdesktop.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_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/plasma_toolbox_org.kde.paneltoolbox.mo +share/locale/ca/LC_MESSAGES/plasmaactivitymanager.mo +share/locale/ca@valencia/LC_MESSAGES/kaccess.mo +share/locale/ca@valencia/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/ca@valencia/LC_MESSAGES/kcm_access.mo +share/locale/ca@valencia/LC_MESSAGES/kcm_activities.mo +share/locale/ca@valencia/LC_MESSAGES/kcm_baloofile.mo +share/locale/ca@valencia/LC_MESSAGES/kcm_componentchooser.mo +share/locale/ca@valencia/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/ca@valencia/LC_MESSAGES/kcm_gamecontroller.mo +share/locale/ca@valencia/LC_MESSAGES/kcm_kded.mo +share/locale/ca@valencia/LC_MESSAGES/kcm_keys.mo +share/locale/ca@valencia/LC_MESSAGES/kcm_krunnersettings.mo +share/locale/ca@valencia/LC_MESSAGES/kcm_landingpage.mo +share/locale/ca@valencia/LC_MESSAGES/kcm_plasmasearch.mo +share/locale/ca@valencia/LC_MESSAGES/kcm_recentFiles.mo +share/locale/ca@valencia/LC_MESSAGES/kcm_smserver.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_tablet.mo +share/locale/ca@valencia/LC_MESSAGES/kcm_touchpad.mo +share/locale/ca@valencia/LC_MESSAGES/kcm_touchscreen.mo +share/locale/ca@valencia/LC_MESSAGES/kcm_workspace.mo +share/locale/ca@valencia/LC_MESSAGES/kcmkclock.mo +share/locale/ca@valencia/LC_MESSAGES/kcmkeyboard.mo +share/locale/ca@valencia/LC_MESSAGES/kcmmouse.mo +share/locale/ca@valencia/LC_MESSAGES/kcmqtquicksettings.mo +share/locale/ca@valencia/LC_MESSAGES/knetattach5.mo +share/locale/ca@valencia/LC_MESSAGES/org.kde.plasma.emojier.mo +share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.panel.mo +share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.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.kimpanel.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.showdesktop.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_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/plasma_toolbox_org.kde.paneltoolbox.mo +share/locale/ca@valencia/LC_MESSAGES/plasmaactivitymanager.mo +share/locale/cs/LC_MESSAGES/kaccess.mo +share/locale/cs/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/cs/LC_MESSAGES/kcm_access.mo +share/locale/cs/LC_MESSAGES/kcm_activities.mo +share/locale/cs/LC_MESSAGES/kcm_baloofile.mo +share/locale/cs/LC_MESSAGES/kcm_componentchooser.mo +share/locale/cs/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/cs/LC_MESSAGES/kcm_gamecontroller.mo +share/locale/cs/LC_MESSAGES/kcm_kded.mo +share/locale/cs/LC_MESSAGES/kcm_keys.mo +share/locale/cs/LC_MESSAGES/kcm_krunnersettings.mo +share/locale/cs/LC_MESSAGES/kcm_landingpage.mo +share/locale/cs/LC_MESSAGES/kcm_plasmasearch.mo +share/locale/cs/LC_MESSAGES/kcm_recentFiles.mo +share/locale/cs/LC_MESSAGES/kcm_smserver.mo +share/locale/cs/LC_MESSAGES/kcm_solid_actions.mo +share/locale/cs/LC_MESSAGES/kcm_splashscreen.mo +share/locale/cs/LC_MESSAGES/kcm_tablet.mo +share/locale/cs/LC_MESSAGES/kcm_touchpad.mo +share/locale/cs/LC_MESSAGES/kcm_touchscreen.mo +share/locale/cs/LC_MESSAGES/kcm_workspace.mo +share/locale/cs/LC_MESSAGES/kcmkclock.mo +share/locale/cs/LC_MESSAGES/kcmkeyboard.mo +share/locale/cs/LC_MESSAGES/kcmmouse.mo +share/locale/cs/LC_MESSAGES/kcmqtquicksettings.mo +share/locale/cs/LC_MESSAGES/knetattach5.mo +share/locale/cs/LC_MESSAGES/org.kde.plasma.emojier.mo +share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.panel.mo +share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.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.kimpanel.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.showdesktop.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_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/plasma_toolbox_org.kde.paneltoolbox.mo +share/locale/cs/LC_MESSAGES/plasmaactivitymanager.mo +share/locale/csb/LC_MESSAGES/kaccess.mo +share/locale/csb/LC_MESSAGES/kcm_access.mo +share/locale/csb/LC_MESSAGES/kcm_componentchooser.mo +share/locale/csb/LC_MESSAGES/kcm_kded.mo +share/locale/csb/LC_MESSAGES/kcm_smserver.mo +share/locale/csb/LC_MESSAGES/kcmkclock.mo +share/locale/csb/LC_MESSAGES/kcmkeyboard.mo +share/locale/csb/LC_MESSAGES/knetattach5.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/kaccess.mo +share/locale/cy/LC_MESSAGES/kcm_access.mo +share/locale/cy/LC_MESSAGES/kcm_componentchooser.mo +share/locale/cy/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/cy/LC_MESSAGES/kcm_kded.mo +share/locale/cy/LC_MESSAGES/kcm_smserver.mo +share/locale/cy/LC_MESSAGES/kcmkclock.mo +share/locale/cy/LC_MESSAGES/kcmkeyboard.mo +share/locale/cy/LC_MESSAGES/kcmmouse.mo +share/locale/cy/LC_MESSAGES/knetattach5.mo +share/locale/cy/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/da/LC_MESSAGES/kaccess.mo +share/locale/da/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/da/LC_MESSAGES/kcm_access.mo +share/locale/da/LC_MESSAGES/kcm_activities.mo +share/locale/da/LC_MESSAGES/kcm_baloofile.mo +share/locale/da/LC_MESSAGES/kcm_componentchooser.mo +share/locale/da/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/da/LC_MESSAGES/kcm_kded.mo +share/locale/da/LC_MESSAGES/kcm_keys.mo +share/locale/da/LC_MESSAGES/kcm_krunnersettings.mo +share/locale/da/LC_MESSAGES/kcm_plasmasearch.mo +share/locale/da/LC_MESSAGES/kcm_smserver.mo +share/locale/da/LC_MESSAGES/kcm_solid_actions.mo +share/locale/da/LC_MESSAGES/kcm_splashscreen.mo +share/locale/da/LC_MESSAGES/kcm_touchpad.mo +share/locale/da/LC_MESSAGES/kcm_workspace.mo +share/locale/da/LC_MESSAGES/kcmkclock.mo +share/locale/da/LC_MESSAGES/kcmkeyboard.mo +share/locale/da/LC_MESSAGES/kcmmouse.mo +share/locale/da/LC_MESSAGES/kcmqtquicksettings.mo +share/locale/da/LC_MESSAGES/knetattach5.mo +share/locale/da/LC_MESSAGES/org.kde.plasma.emojier.mo +share/locale/da/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/da/LC_MESSAGES/plasma_applet_org.kde.panel.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.kimpanel.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.showdesktop.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_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/plasma_toolbox_org.kde.paneltoolbox.mo +share/locale/da/LC_MESSAGES/plasmaactivitymanager.mo +share/locale/de/LC_MESSAGES/kaccess.mo +share/locale/de/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/de/LC_MESSAGES/kcm_access.mo +share/locale/de/LC_MESSAGES/kcm_activities.mo +share/locale/de/LC_MESSAGES/kcm_baloofile.mo +share/locale/de/LC_MESSAGES/kcm_componentchooser.mo +share/locale/de/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/de/LC_MESSAGES/kcm_gamecontroller.mo +share/locale/de/LC_MESSAGES/kcm_kded.mo +share/locale/de/LC_MESSAGES/kcm_keys.mo +share/locale/de/LC_MESSAGES/kcm_krunnersettings.mo +share/locale/de/LC_MESSAGES/kcm_landingpage.mo +share/locale/de/LC_MESSAGES/kcm_plasmasearch.mo +share/locale/de/LC_MESSAGES/kcm_recentFiles.mo +share/locale/de/LC_MESSAGES/kcm_smserver.mo +share/locale/de/LC_MESSAGES/kcm_solid_actions.mo +share/locale/de/LC_MESSAGES/kcm_splashscreen.mo +share/locale/de/LC_MESSAGES/kcm_tablet.mo +share/locale/de/LC_MESSAGES/kcm_touchpad.mo +share/locale/de/LC_MESSAGES/kcm_touchscreen.mo +share/locale/de/LC_MESSAGES/kcm_workspace.mo +share/locale/de/LC_MESSAGES/kcmkclock.mo +share/locale/de/LC_MESSAGES/kcmkeyboard.mo +share/locale/de/LC_MESSAGES/kcmmouse.mo +share/locale/de/LC_MESSAGES/kcmqtquicksettings.mo +share/locale/de/LC_MESSAGES/knetattach5.mo +share/locale/de/LC_MESSAGES/org.kde.plasma.emojier.mo +share/locale/de/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/de/LC_MESSAGES/plasma_applet_org.kde.panel.mo +share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.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.kimpanel.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.showdesktop.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_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/plasma_toolbox_org.kde.paneltoolbox.mo +share/locale/de/LC_MESSAGES/plasmaactivitymanager.mo +share/locale/el/LC_MESSAGES/kaccess.mo +share/locale/el/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/el/LC_MESSAGES/kcm_access.mo +share/locale/el/LC_MESSAGES/kcm_activities.mo +share/locale/el/LC_MESSAGES/kcm_baloofile.mo +share/locale/el/LC_MESSAGES/kcm_componentchooser.mo +share/locale/el/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/el/LC_MESSAGES/kcm_kded.mo +share/locale/el/LC_MESSAGES/kcm_krunnersettings.mo +share/locale/el/LC_MESSAGES/kcm_plasmasearch.mo +share/locale/el/LC_MESSAGES/kcm_smserver.mo +share/locale/el/LC_MESSAGES/kcm_solid_actions.mo +share/locale/el/LC_MESSAGES/kcm_splashscreen.mo +share/locale/el/LC_MESSAGES/kcm_touchpad.mo +share/locale/el/LC_MESSAGES/kcm_workspace.mo +share/locale/el/LC_MESSAGES/kcmkclock.mo +share/locale/el/LC_MESSAGES/kcmkeyboard.mo +share/locale/el/LC_MESSAGES/kcmmouse.mo +share/locale/el/LC_MESSAGES/knetattach5.mo +share/locale/el/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.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.kimpanel.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.showdesktop.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_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/kaccess.mo +share/locale/en_GB/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/en_GB/LC_MESSAGES/kcm_access.mo +share/locale/en_GB/LC_MESSAGES/kcm_activities.mo +share/locale/en_GB/LC_MESSAGES/kcm_baloofile.mo +share/locale/en_GB/LC_MESSAGES/kcm_componentchooser.mo +share/locale/en_GB/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/en_GB/LC_MESSAGES/kcm_kded.mo +share/locale/en_GB/LC_MESSAGES/kcm_keys.mo +share/locale/en_GB/LC_MESSAGES/kcm_krunnersettings.mo +share/locale/en_GB/LC_MESSAGES/kcm_landingpage.mo +share/locale/en_GB/LC_MESSAGES/kcm_plasmasearch.mo +share/locale/en_GB/LC_MESSAGES/kcm_recentFiles.mo +share/locale/en_GB/LC_MESSAGES/kcm_smserver.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_tablet.mo +share/locale/en_GB/LC_MESSAGES/kcm_touchpad.mo +share/locale/en_GB/LC_MESSAGES/kcm_touchscreen.mo +share/locale/en_GB/LC_MESSAGES/kcm_workspace.mo +share/locale/en_GB/LC_MESSAGES/kcmkclock.mo +share/locale/en_GB/LC_MESSAGES/kcmkeyboard.mo +share/locale/en_GB/LC_MESSAGES/kcmmouse.mo +share/locale/en_GB/LC_MESSAGES/kcmqtquicksettings.mo +share/locale/en_GB/LC_MESSAGES/knetattach5.mo +share/locale/en_GB/LC_MESSAGES/org.kde.plasma.emojier.mo +share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.panel.mo +share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.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.kimpanel.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.showdesktop.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_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/plasma_toolbox_org.kde.paneltoolbox.mo +share/locale/en_GB/LC_MESSAGES/plasmaactivitymanager.mo +share/locale/eo/LC_MESSAGES/kaccess.mo +share/locale/eo/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/eo/LC_MESSAGES/kcm_access.mo +share/locale/eo/LC_MESSAGES/kcm_activities.mo +share/locale/eo/LC_MESSAGES/kcm_baloofile.mo +share/locale/eo/LC_MESSAGES/kcm_componentchooser.mo +share/locale/eo/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/eo/LC_MESSAGES/kcm_kded.mo +share/locale/eo/LC_MESSAGES/kcm_keys.mo +share/locale/eo/LC_MESSAGES/kcm_krunnersettings.mo +share/locale/eo/LC_MESSAGES/kcm_landingpage.mo +share/locale/eo/LC_MESSAGES/kcm_plasmasearch.mo +share/locale/eo/LC_MESSAGES/kcm_recentFiles.mo +share/locale/eo/LC_MESSAGES/kcm_smserver.mo +share/locale/eo/LC_MESSAGES/kcm_solid_actions.mo +share/locale/eo/LC_MESSAGES/kcm_splashscreen.mo +share/locale/eo/LC_MESSAGES/kcm_tablet.mo +share/locale/eo/LC_MESSAGES/kcm_touchpad.mo +share/locale/eo/LC_MESSAGES/kcm_touchscreen.mo +share/locale/eo/LC_MESSAGES/kcm_workspace.mo +share/locale/eo/LC_MESSAGES/kcmkclock.mo +share/locale/eo/LC_MESSAGES/kcmkeyboard.mo +share/locale/eo/LC_MESSAGES/kcmmouse.mo +share/locale/eo/LC_MESSAGES/kcmqtquicksettings.mo +share/locale/eo/LC_MESSAGES/knetattach5.mo +share/locale/eo/LC_MESSAGES/org.kde.plasma.emojier.mo +share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.panel.mo +share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.mo +share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo +share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo +share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo +share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo +share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo +share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.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_kwin.mo +share/locale/eo/LC_MESSAGES/plasma_runner_plasma-desktop.mo +share/locale/eo/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo +share/locale/eo/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo +share/locale/eo/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo +share/locale/eo/LC_MESSAGES/plasmaactivitymanager.mo +share/locale/es/LC_MESSAGES/kaccess.mo +share/locale/es/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/es/LC_MESSAGES/kcm_access.mo +share/locale/es/LC_MESSAGES/kcm_activities.mo +share/locale/es/LC_MESSAGES/kcm_baloofile.mo +share/locale/es/LC_MESSAGES/kcm_componentchooser.mo +share/locale/es/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/es/LC_MESSAGES/kcm_gamecontroller.mo +share/locale/es/LC_MESSAGES/kcm_kded.mo +share/locale/es/LC_MESSAGES/kcm_keys.mo +share/locale/es/LC_MESSAGES/kcm_krunnersettings.mo +share/locale/es/LC_MESSAGES/kcm_landingpage.mo +share/locale/es/LC_MESSAGES/kcm_plasmasearch.mo +share/locale/es/LC_MESSAGES/kcm_recentFiles.mo +share/locale/es/LC_MESSAGES/kcm_smserver.mo +share/locale/es/LC_MESSAGES/kcm_solid_actions.mo +share/locale/es/LC_MESSAGES/kcm_splashscreen.mo +share/locale/es/LC_MESSAGES/kcm_tablet.mo +share/locale/es/LC_MESSAGES/kcm_touchpad.mo +share/locale/es/LC_MESSAGES/kcm_touchscreen.mo +share/locale/es/LC_MESSAGES/kcm_workspace.mo +share/locale/es/LC_MESSAGES/kcmkclock.mo +share/locale/es/LC_MESSAGES/kcmkeyboard.mo +share/locale/es/LC_MESSAGES/kcmmouse.mo +share/locale/es/LC_MESSAGES/kcmqtquicksettings.mo +share/locale/es/LC_MESSAGES/knetattach5.mo +share/locale/es/LC_MESSAGES/org.kde.plasma.emojier.mo +share/locale/es/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/es/LC_MESSAGES/plasma_applet_org.kde.panel.mo +share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.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.kimpanel.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.showdesktop.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_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/plasma_toolbox_org.kde.paneltoolbox.mo +share/locale/es/LC_MESSAGES/plasmaactivitymanager.mo +share/locale/et/LC_MESSAGES/kaccess.mo +share/locale/et/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/et/LC_MESSAGES/kcm_access.mo +share/locale/et/LC_MESSAGES/kcm_activities.mo +share/locale/et/LC_MESSAGES/kcm_baloofile.mo +share/locale/et/LC_MESSAGES/kcm_componentchooser.mo +share/locale/et/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/et/LC_MESSAGES/kcm_kded.mo +share/locale/et/LC_MESSAGES/kcm_keys.mo +share/locale/et/LC_MESSAGES/kcm_krunnersettings.mo +share/locale/et/LC_MESSAGES/kcm_landingpage.mo +share/locale/et/LC_MESSAGES/kcm_plasmasearch.mo +share/locale/et/LC_MESSAGES/kcm_recentFiles.mo +share/locale/et/LC_MESSAGES/kcm_smserver.mo +share/locale/et/LC_MESSAGES/kcm_solid_actions.mo +share/locale/et/LC_MESSAGES/kcm_splashscreen.mo +share/locale/et/LC_MESSAGES/kcm_touchpad.mo +share/locale/et/LC_MESSAGES/kcm_workspace.mo +share/locale/et/LC_MESSAGES/kcmkclock.mo +share/locale/et/LC_MESSAGES/kcmkeyboard.mo +share/locale/et/LC_MESSAGES/kcmmouse.mo +share/locale/et/LC_MESSAGES/kcmqtquicksettings.mo +share/locale/et/LC_MESSAGES/knetattach5.mo +share/locale/et/LC_MESSAGES/org.kde.plasma.emojier.mo +share/locale/et/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/et/LC_MESSAGES/plasma_applet_org.kde.panel.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.kimpanel.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.showdesktop.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_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/plasma_toolbox_org.kde.paneltoolbox.mo +share/locale/et/LC_MESSAGES/plasmaactivitymanager.mo +share/locale/eu/LC_MESSAGES/kaccess.mo +share/locale/eu/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/eu/LC_MESSAGES/kcm_access.mo +share/locale/eu/LC_MESSAGES/kcm_activities.mo +share/locale/eu/LC_MESSAGES/kcm_baloofile.mo +share/locale/eu/LC_MESSAGES/kcm_componentchooser.mo +share/locale/eu/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/eu/LC_MESSAGES/kcm_gamecontroller.mo +share/locale/eu/LC_MESSAGES/kcm_kded.mo +share/locale/eu/LC_MESSAGES/kcm_keys.mo +share/locale/eu/LC_MESSAGES/kcm_krunnersettings.mo +share/locale/eu/LC_MESSAGES/kcm_landingpage.mo +share/locale/eu/LC_MESSAGES/kcm_plasmasearch.mo +share/locale/eu/LC_MESSAGES/kcm_recentFiles.mo +share/locale/eu/LC_MESSAGES/kcm_smserver.mo +share/locale/eu/LC_MESSAGES/kcm_solid_actions.mo +share/locale/eu/LC_MESSAGES/kcm_splashscreen.mo +share/locale/eu/LC_MESSAGES/kcm_tablet.mo +share/locale/eu/LC_MESSAGES/kcm_touchpad.mo +share/locale/eu/LC_MESSAGES/kcm_touchscreen.mo +share/locale/eu/LC_MESSAGES/kcm_workspace.mo +share/locale/eu/LC_MESSAGES/kcmkclock.mo +share/locale/eu/LC_MESSAGES/kcmkeyboard.mo +share/locale/eu/LC_MESSAGES/kcmmouse.mo +share/locale/eu/LC_MESSAGES/kcmqtquicksettings.mo +share/locale/eu/LC_MESSAGES/knetattach5.mo +share/locale/eu/LC_MESSAGES/org.kde.plasma.emojier.mo +share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.panel.mo +share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.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.kimpanel.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.showdesktop.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_runner_kwin.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/eu/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo +share/locale/eu/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo +share/locale/eu/LC_MESSAGES/plasmaactivitymanager.mo +share/locale/fa/LC_MESSAGES/kaccess.mo +share/locale/fa/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/fa/LC_MESSAGES/kcm_access.mo +share/locale/fa/LC_MESSAGES/kcm_componentchooser.mo +share/locale/fa/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/fa/LC_MESSAGES/kcm_kded.mo +share/locale/fa/LC_MESSAGES/kcm_smserver.mo +share/locale/fa/LC_MESSAGES/kcm_solid_actions.mo +share/locale/fa/LC_MESSAGES/kcmkclock.mo +share/locale/fa/LC_MESSAGES/kcmkeyboard.mo +share/locale/fa/LC_MESSAGES/kcmmouse.mo +share/locale/fa/LC_MESSAGES/knetattach5.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/kaccess.mo +share/locale/fi/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/fi/LC_MESSAGES/kcm_access.mo +share/locale/fi/LC_MESSAGES/kcm_activities.mo +share/locale/fi/LC_MESSAGES/kcm_baloofile.mo +share/locale/fi/LC_MESSAGES/kcm_componentchooser.mo +share/locale/fi/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/fi/LC_MESSAGES/kcm_kded.mo +share/locale/fi/LC_MESSAGES/kcm_keys.mo +share/locale/fi/LC_MESSAGES/kcm_krunnersettings.mo +share/locale/fi/LC_MESSAGES/kcm_landingpage.mo +share/locale/fi/LC_MESSAGES/kcm_plasmasearch.mo +share/locale/fi/LC_MESSAGES/kcm_recentFiles.mo +share/locale/fi/LC_MESSAGES/kcm_smserver.mo +share/locale/fi/LC_MESSAGES/kcm_solid_actions.mo +share/locale/fi/LC_MESSAGES/kcm_splashscreen.mo +share/locale/fi/LC_MESSAGES/kcm_tablet.mo +share/locale/fi/LC_MESSAGES/kcm_touchpad.mo +share/locale/fi/LC_MESSAGES/kcm_touchscreen.mo +share/locale/fi/LC_MESSAGES/kcm_workspace.mo +share/locale/fi/LC_MESSAGES/kcmkclock.mo +share/locale/fi/LC_MESSAGES/kcmkeyboard.mo +share/locale/fi/LC_MESSAGES/kcmmouse.mo +share/locale/fi/LC_MESSAGES/kcmqtquicksettings.mo +share/locale/fi/LC_MESSAGES/knetattach5.mo +share/locale/fi/LC_MESSAGES/org.kde.plasma.emojier.mo +share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.panel.mo +share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.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.kimpanel.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.showdesktop.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_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/plasma_toolbox_org.kde.paneltoolbox.mo +share/locale/fi/LC_MESSAGES/plasmaactivitymanager.mo +share/locale/fr/LC_MESSAGES/kaccess.mo +share/locale/fr/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/fr/LC_MESSAGES/kcm_access.mo +share/locale/fr/LC_MESSAGES/kcm_activities.mo +share/locale/fr/LC_MESSAGES/kcm_baloofile.mo +share/locale/fr/LC_MESSAGES/kcm_componentchooser.mo +share/locale/fr/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/fr/LC_MESSAGES/kcm_gamecontroller.mo +share/locale/fr/LC_MESSAGES/kcm_kded.mo +share/locale/fr/LC_MESSAGES/kcm_keys.mo +share/locale/fr/LC_MESSAGES/kcm_krunnersettings.mo +share/locale/fr/LC_MESSAGES/kcm_landingpage.mo +share/locale/fr/LC_MESSAGES/kcm_plasmasearch.mo +share/locale/fr/LC_MESSAGES/kcm_recentFiles.mo +share/locale/fr/LC_MESSAGES/kcm_smserver.mo +share/locale/fr/LC_MESSAGES/kcm_solid_actions.mo +share/locale/fr/LC_MESSAGES/kcm_splashscreen.mo +share/locale/fr/LC_MESSAGES/kcm_tablet.mo +share/locale/fr/LC_MESSAGES/kcm_touchpad.mo +share/locale/fr/LC_MESSAGES/kcm_touchscreen.mo +share/locale/fr/LC_MESSAGES/kcm_workspace.mo +share/locale/fr/LC_MESSAGES/kcmkclock.mo +share/locale/fr/LC_MESSAGES/kcmkeyboard.mo +share/locale/fr/LC_MESSAGES/kcmmouse.mo +share/locale/fr/LC_MESSAGES/kcmqtquicksettings.mo +share/locale/fr/LC_MESSAGES/knetattach5.mo +share/locale/fr/LC_MESSAGES/org.kde.plasma.emojier.mo +share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.panel.mo +share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.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.kimpanel.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.showdesktop.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_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/plasma_toolbox_org.kde.paneltoolbox.mo +share/locale/fr/LC_MESSAGES/plasmaactivitymanager.mo +share/locale/fy/LC_MESSAGES/kaccess.mo +share/locale/fy/LC_MESSAGES/kcm_access.mo +share/locale/fy/LC_MESSAGES/kcm_componentchooser.mo +share/locale/fy/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/fy/LC_MESSAGES/kcm_kded.mo +share/locale/fy/LC_MESSAGES/kcm_smserver.mo +share/locale/fy/LC_MESSAGES/kcm_solid_actions.mo +share/locale/fy/LC_MESSAGES/kcmkclock.mo +share/locale/fy/LC_MESSAGES/kcmkeyboard.mo +share/locale/fy/LC_MESSAGES/kcmmouse.mo +share/locale/fy/LC_MESSAGES/knetattach5.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/kaccess.mo +share/locale/ga/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/ga/LC_MESSAGES/kcm_access.mo +share/locale/ga/LC_MESSAGES/kcm_componentchooser.mo +share/locale/ga/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/ga/LC_MESSAGES/kcm_kded.mo +share/locale/ga/LC_MESSAGES/kcm_smserver.mo +share/locale/ga/LC_MESSAGES/kcm_solid_actions.mo +share/locale/ga/LC_MESSAGES/kcmkclock.mo +share/locale/ga/LC_MESSAGES/kcmkeyboard.mo +share/locale/ga/LC_MESSAGES/kcmmouse.mo +share/locale/ga/LC_MESSAGES/knetattach5.mo +share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo +share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.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.showdesktop.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/kaccess.mo +share/locale/gl/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/gl/LC_MESSAGES/kcm_access.mo +share/locale/gl/LC_MESSAGES/kcm_activities.mo +share/locale/gl/LC_MESSAGES/kcm_baloofile.mo +share/locale/gl/LC_MESSAGES/kcm_componentchooser.mo +share/locale/gl/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/gl/LC_MESSAGES/kcm_kded.mo +share/locale/gl/LC_MESSAGES/kcm_krunnersettings.mo +share/locale/gl/LC_MESSAGES/kcm_landingpage.mo +share/locale/gl/LC_MESSAGES/kcm_plasmasearch.mo +share/locale/gl/LC_MESSAGES/kcm_recentFiles.mo +share/locale/gl/LC_MESSAGES/kcm_smserver.mo +share/locale/gl/LC_MESSAGES/kcm_solid_actions.mo +share/locale/gl/LC_MESSAGES/kcm_splashscreen.mo +share/locale/gl/LC_MESSAGES/kcm_tablet.mo +share/locale/gl/LC_MESSAGES/kcm_touchpad.mo +share/locale/gl/LC_MESSAGES/kcm_touchscreen.mo +share/locale/gl/LC_MESSAGES/kcm_workspace.mo +share/locale/gl/LC_MESSAGES/kcmkclock.mo +share/locale/gl/LC_MESSAGES/kcmkeyboard.mo +share/locale/gl/LC_MESSAGES/kcmmouse.mo +share/locale/gl/LC_MESSAGES/kcmqtquicksettings.mo +share/locale/gl/LC_MESSAGES/knetattach5.mo +share/locale/gl/LC_MESSAGES/org.kde.plasma.emojier.mo +share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.panel.mo +share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.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.kimpanel.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.showdesktop.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_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/plasma_toolbox_org.kde.paneltoolbox.mo +share/locale/gl/LC_MESSAGES/plasmaactivitymanager.mo +share/locale/gu/LC_MESSAGES/kaccess.mo +share/locale/gu/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/gu/LC_MESSAGES/kcm_access.mo +share/locale/gu/LC_MESSAGES/kcm_componentchooser.mo +share/locale/gu/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/gu/LC_MESSAGES/kcm_kded.mo +share/locale/gu/LC_MESSAGES/kcm_smserver.mo +share/locale/gu/LC_MESSAGES/kcm_solid_actions.mo +share/locale/gu/LC_MESSAGES/kcmkclock.mo +share/locale/gu/LC_MESSAGES/kcmkeyboard.mo +share/locale/gu/LC_MESSAGES/kcmmouse.mo +share/locale/gu/LC_MESSAGES/knetattach5.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/kaccess.mo +share/locale/he/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/he/LC_MESSAGES/kcm_access.mo +share/locale/he/LC_MESSAGES/kcm_activities.mo +share/locale/he/LC_MESSAGES/kcm_baloofile.mo +share/locale/he/LC_MESSAGES/kcm_componentchooser.mo +share/locale/he/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/he/LC_MESSAGES/kcm_kded.mo +share/locale/he/LC_MESSAGES/kcm_keys.mo +share/locale/he/LC_MESSAGES/kcm_krunnersettings.mo +share/locale/he/LC_MESSAGES/kcm_landingpage.mo +share/locale/he/LC_MESSAGES/kcm_plasmasearch.mo +share/locale/he/LC_MESSAGES/kcm_recentFiles.mo +share/locale/he/LC_MESSAGES/kcm_smserver.mo +share/locale/he/LC_MESSAGES/kcm_solid_actions.mo +share/locale/he/LC_MESSAGES/kcm_splashscreen.mo +share/locale/he/LC_MESSAGES/kcm_tablet.mo +share/locale/he/LC_MESSAGES/kcm_touchpad.mo +share/locale/he/LC_MESSAGES/kcm_touchscreen.mo +share/locale/he/LC_MESSAGES/kcm_workspace.mo +share/locale/he/LC_MESSAGES/kcmkclock.mo +share/locale/he/LC_MESSAGES/kcmkeyboard.mo +share/locale/he/LC_MESSAGES/kcmmouse.mo +share/locale/he/LC_MESSAGES/kcmqtquicksettings.mo +share/locale/he/LC_MESSAGES/knetattach5.mo +share/locale/he/LC_MESSAGES/org.kde.plasma.emojier.mo +share/locale/he/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/he/LC_MESSAGES/plasma_applet_org.kde.panel.mo +share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.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.kimpanel.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.showdesktop.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_runner_kwin.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/plasma_toolbox_org.kde.paneltoolbox.mo +share/locale/he/LC_MESSAGES/plasmaactivitymanager.mo +share/locale/hi/LC_MESSAGES/kaccess.mo +share/locale/hi/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/hi/LC_MESSAGES/kcm_access.mo +share/locale/hi/LC_MESSAGES/kcm_componentchooser.mo +share/locale/hi/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/hi/LC_MESSAGES/kcm_kded.mo +share/locale/hi/LC_MESSAGES/kcm_krunnersettings.mo +share/locale/hi/LC_MESSAGES/kcm_landingpage.mo +share/locale/hi/LC_MESSAGES/kcm_plasmasearch.mo +share/locale/hi/LC_MESSAGES/kcm_smserver.mo +share/locale/hi/LC_MESSAGES/kcm_solid_actions.mo +share/locale/hi/LC_MESSAGES/kcm_splashscreen.mo +share/locale/hi/LC_MESSAGES/kcm_tablet.mo +share/locale/hi/LC_MESSAGES/kcmkclock.mo +share/locale/hi/LC_MESSAGES/kcmkeyboard.mo +share/locale/hi/LC_MESSAGES/kcmmouse.mo +share/locale/hi/LC_MESSAGES/kcmqtquicksettings.mo +share/locale/hi/LC_MESSAGES/knetattach5.mo +share/locale/hi/LC_MESSAGES/org.kde.plasma.emojier.mo +share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.panel.mo +share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.mo +share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo +share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo +share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo +share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo +share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.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_applet_org.kde.plasma.windowlist.mo +share/locale/hi/LC_MESSAGES/plasma_runner_kwin.mo +share/locale/hi/LC_MESSAGES/plasma_runner_plasma-desktop.mo +share/locale/hi/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo +share/locale/hi/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo +share/locale/hne/LC_MESSAGES/kaccess.mo +share/locale/hne/LC_MESSAGES/kcm_access.mo +share/locale/hne/LC_MESSAGES/kcm_componentchooser.mo +share/locale/hne/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/hne/LC_MESSAGES/kcm_kded.mo +share/locale/hne/LC_MESSAGES/kcm_smserver.mo +share/locale/hne/LC_MESSAGES/kcmkclock.mo +share/locale/hne/LC_MESSAGES/kcmkeyboard.mo +share/locale/hne/LC_MESSAGES/kcmmouse.mo +share/locale/hne/LC_MESSAGES/knetattach5.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/kaccess.mo +share/locale/hr/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/hr/LC_MESSAGES/kcm_access.mo +share/locale/hr/LC_MESSAGES/kcm_componentchooser.mo +share/locale/hr/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/hr/LC_MESSAGES/kcm_kded.mo +share/locale/hr/LC_MESSAGES/kcm_smserver.mo +share/locale/hr/LC_MESSAGES/kcm_solid_actions.mo +share/locale/hr/LC_MESSAGES/kcmkclock.mo +share/locale/hr/LC_MESSAGES/kcmkeyboard.mo +share/locale/hr/LC_MESSAGES/kcmmouse.mo +share/locale/hr/LC_MESSAGES/knetattach5.mo +share/locale/hr/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/hr/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo +share/locale/hr/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo +share/locale/hr/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.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/kaccess.mo +share/locale/hsb/LC_MESSAGES/kcm_access.mo +share/locale/hsb/LC_MESSAGES/kcm_componentchooser.mo +share/locale/hsb/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/hsb/LC_MESSAGES/kcm_kded.mo +share/locale/hsb/LC_MESSAGES/kcm_smserver.mo +share/locale/hsb/LC_MESSAGES/kcmkclock.mo +share/locale/hsb/LC_MESSAGES/kcmkeyboard.mo +share/locale/hsb/LC_MESSAGES/kcmmouse.mo +share/locale/hsb/LC_MESSAGES/knetattach5.mo +share/locale/hsb/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/hsb/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo +share/locale/hsb/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo +share/locale/hsb/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.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/kaccess.mo +share/locale/hu/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/hu/LC_MESSAGES/kcm_access.mo +share/locale/hu/LC_MESSAGES/kcm_activities.mo +share/locale/hu/LC_MESSAGES/kcm_baloofile.mo +share/locale/hu/LC_MESSAGES/kcm_componentchooser.mo +share/locale/hu/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/hu/LC_MESSAGES/kcm_kded.mo +share/locale/hu/LC_MESSAGES/kcm_keys.mo +share/locale/hu/LC_MESSAGES/kcm_krunnersettings.mo +share/locale/hu/LC_MESSAGES/kcm_landingpage.mo +share/locale/hu/LC_MESSAGES/kcm_plasmasearch.mo +share/locale/hu/LC_MESSAGES/kcm_smserver.mo +share/locale/hu/LC_MESSAGES/kcm_solid_actions.mo +share/locale/hu/LC_MESSAGES/kcm_splashscreen.mo +share/locale/hu/LC_MESSAGES/kcm_tablet.mo +share/locale/hu/LC_MESSAGES/kcm_touchpad.mo +share/locale/hu/LC_MESSAGES/kcm_workspace.mo +share/locale/hu/LC_MESSAGES/kcmkclock.mo +share/locale/hu/LC_MESSAGES/kcmkeyboard.mo +share/locale/hu/LC_MESSAGES/kcmmouse.mo +share/locale/hu/LC_MESSAGES/kcmqtquicksettings.mo +share/locale/hu/LC_MESSAGES/knetattach5.mo +share/locale/hu/LC_MESSAGES/org.kde.plasma.emojier.mo +share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.panel.mo +share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.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.kimpanel.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.showdesktop.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_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/plasma_toolbox_org.kde.paneltoolbox.mo +share/locale/hu/LC_MESSAGES/plasmaactivitymanager.mo +share/locale/ia/LC_MESSAGES/kaccess.mo +share/locale/ia/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/ia/LC_MESSAGES/kcm_access.mo +share/locale/ia/LC_MESSAGES/kcm_activities.mo +share/locale/ia/LC_MESSAGES/kcm_baloofile.mo +share/locale/ia/LC_MESSAGES/kcm_componentchooser.mo +share/locale/ia/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/ia/LC_MESSAGES/kcm_gamecontroller.mo +share/locale/ia/LC_MESSAGES/kcm_kded.mo +share/locale/ia/LC_MESSAGES/kcm_keys.mo +share/locale/ia/LC_MESSAGES/kcm_krunnersettings.mo +share/locale/ia/LC_MESSAGES/kcm_landingpage.mo +share/locale/ia/LC_MESSAGES/kcm_plasmasearch.mo +share/locale/ia/LC_MESSAGES/kcm_recentFiles.mo +share/locale/ia/LC_MESSAGES/kcm_smserver.mo +share/locale/ia/LC_MESSAGES/kcm_solid_actions.mo +share/locale/ia/LC_MESSAGES/kcm_splashscreen.mo +share/locale/ia/LC_MESSAGES/kcm_tablet.mo +share/locale/ia/LC_MESSAGES/kcm_touchpad.mo +share/locale/ia/LC_MESSAGES/kcm_touchscreen.mo +share/locale/ia/LC_MESSAGES/kcm_workspace.mo +share/locale/ia/LC_MESSAGES/kcmkclock.mo +share/locale/ia/LC_MESSAGES/kcmkeyboard.mo +share/locale/ia/LC_MESSAGES/kcmmouse.mo +share/locale/ia/LC_MESSAGES/kcmqtquicksettings.mo +share/locale/ia/LC_MESSAGES/knetattach5.mo +share/locale/ia/LC_MESSAGES/org.kde.plasma.emojier.mo +share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.panel.mo +share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.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.kimpanel.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.showdesktop.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_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/plasma_toolbox_org.kde.paneltoolbox.mo +share/locale/ia/LC_MESSAGES/plasmaactivitymanager.mo +share/locale/id/LC_MESSAGES/kaccess.mo +share/locale/id/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/id/LC_MESSAGES/kcm_access.mo +share/locale/id/LC_MESSAGES/kcm_activities.mo +share/locale/id/LC_MESSAGES/kcm_baloofile.mo +share/locale/id/LC_MESSAGES/kcm_componentchooser.mo +share/locale/id/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/id/LC_MESSAGES/kcm_kded.mo +share/locale/id/LC_MESSAGES/kcm_keys.mo +share/locale/id/LC_MESSAGES/kcm_krunnersettings.mo +share/locale/id/LC_MESSAGES/kcm_landingpage.mo +share/locale/id/LC_MESSAGES/kcm_plasmasearch.mo +share/locale/id/LC_MESSAGES/kcm_recentFiles.mo +share/locale/id/LC_MESSAGES/kcm_smserver.mo +share/locale/id/LC_MESSAGES/kcm_solid_actions.mo +share/locale/id/LC_MESSAGES/kcm_splashscreen.mo +share/locale/id/LC_MESSAGES/kcm_tablet.mo +share/locale/id/LC_MESSAGES/kcm_touchpad.mo +share/locale/id/LC_MESSAGES/kcm_workspace.mo +share/locale/id/LC_MESSAGES/kcmkclock.mo +share/locale/id/LC_MESSAGES/kcmkeyboard.mo +share/locale/id/LC_MESSAGES/kcmmouse.mo +share/locale/id/LC_MESSAGES/kcmqtquicksettings.mo +share/locale/id/LC_MESSAGES/knetattach5.mo +share/locale/id/LC_MESSAGES/org.kde.plasma.emojier.mo +share/locale/id/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/id/LC_MESSAGES/plasma_applet_org.kde.panel.mo +share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.mo +share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo +share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo +share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo +share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo +share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo +share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.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_runner_kwin.mo +share/locale/id/LC_MESSAGES/plasma_runner_plasma-desktop.mo +share/locale/id/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo +share/locale/id/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo +share/locale/id/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo +share/locale/id/LC_MESSAGES/plasmaactivitymanager.mo +share/locale/ie/LC_MESSAGES/kcmkclock.mo +share/locale/ie/LC_MESSAGES/kcmkeyboard.mo +share/locale/ie/LC_MESSAGES/kcmmouse.mo +share/locale/ie/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.mo +share/locale/ie/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo +share/locale/ie/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo +share/locale/ie/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo +share/locale/ie/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo +share/locale/is/LC_MESSAGES/kaccess.mo +share/locale/is/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/is/LC_MESSAGES/kcm_access.mo +share/locale/is/LC_MESSAGES/kcm_activities.mo +share/locale/is/LC_MESSAGES/kcm_baloofile.mo +share/locale/is/LC_MESSAGES/kcm_componentchooser.mo +share/locale/is/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/is/LC_MESSAGES/kcm_kded.mo +share/locale/is/LC_MESSAGES/kcm_keys.mo +share/locale/is/LC_MESSAGES/kcm_krunnersettings.mo +share/locale/is/LC_MESSAGES/kcm_landingpage.mo +share/locale/is/LC_MESSAGES/kcm_plasmasearch.mo +share/locale/is/LC_MESSAGES/kcm_recentFiles.mo +share/locale/is/LC_MESSAGES/kcm_smserver.mo +share/locale/is/LC_MESSAGES/kcm_solid_actions.mo +share/locale/is/LC_MESSAGES/kcm_splashscreen.mo +share/locale/is/LC_MESSAGES/kcm_tablet.mo +share/locale/is/LC_MESSAGES/kcm_touchpad.mo +share/locale/is/LC_MESSAGES/kcm_touchscreen.mo +share/locale/is/LC_MESSAGES/kcmkclock.mo +share/locale/is/LC_MESSAGES/kcmkeyboard.mo +share/locale/is/LC_MESSAGES/kcmmouse.mo +share/locale/is/LC_MESSAGES/knetattach5.mo +share/locale/is/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/is/LC_MESSAGES/plasma_applet_org.kde.panel.mo +share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo +share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo +share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.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/is/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo +share/locale/is/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo +share/locale/is/LC_MESSAGES/plasmaactivitymanager.mo +share/locale/it/LC_MESSAGES/kaccess.mo +share/locale/it/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/it/LC_MESSAGES/kcm_access.mo +share/locale/it/LC_MESSAGES/kcm_activities.mo +share/locale/it/LC_MESSAGES/kcm_baloofile.mo +share/locale/it/LC_MESSAGES/kcm_componentchooser.mo +share/locale/it/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/it/LC_MESSAGES/kcm_gamecontroller.mo +share/locale/it/LC_MESSAGES/kcm_kded.mo +share/locale/it/LC_MESSAGES/kcm_keys.mo +share/locale/it/LC_MESSAGES/kcm_krunnersettings.mo +share/locale/it/LC_MESSAGES/kcm_landingpage.mo +share/locale/it/LC_MESSAGES/kcm_plasmasearch.mo +share/locale/it/LC_MESSAGES/kcm_recentFiles.mo +share/locale/it/LC_MESSAGES/kcm_smserver.mo +share/locale/it/LC_MESSAGES/kcm_solid_actions.mo +share/locale/it/LC_MESSAGES/kcm_splashscreen.mo +share/locale/it/LC_MESSAGES/kcm_tablet.mo +share/locale/it/LC_MESSAGES/kcm_touchpad.mo +share/locale/it/LC_MESSAGES/kcm_touchscreen.mo +share/locale/it/LC_MESSAGES/kcm_workspace.mo +share/locale/it/LC_MESSAGES/kcmkclock.mo +share/locale/it/LC_MESSAGES/kcmkeyboard.mo +share/locale/it/LC_MESSAGES/kcmmouse.mo +share/locale/it/LC_MESSAGES/kcmqtquicksettings.mo +share/locale/it/LC_MESSAGES/knetattach5.mo +share/locale/it/LC_MESSAGES/org.kde.plasma.emojier.mo +share/locale/it/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/it/LC_MESSAGES/plasma_applet_org.kde.panel.mo +share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.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.kimpanel.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.showdesktop.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_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/plasma_toolbox_org.kde.paneltoolbox.mo +share/locale/it/LC_MESSAGES/plasmaactivitymanager.mo +share/locale/ja/LC_MESSAGES/kaccess.mo +share/locale/ja/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/ja/LC_MESSAGES/kcm_access.mo +share/locale/ja/LC_MESSAGES/kcm_activities.mo +share/locale/ja/LC_MESSAGES/kcm_baloofile.mo +share/locale/ja/LC_MESSAGES/kcm_componentchooser.mo +share/locale/ja/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/ja/LC_MESSAGES/kcm_gamecontroller.mo +share/locale/ja/LC_MESSAGES/kcm_kded.mo +share/locale/ja/LC_MESSAGES/kcm_keys.mo +share/locale/ja/LC_MESSAGES/kcm_krunnersettings.mo +share/locale/ja/LC_MESSAGES/kcm_landingpage.mo +share/locale/ja/LC_MESSAGES/kcm_plasmasearch.mo +share/locale/ja/LC_MESSAGES/kcm_recentFiles.mo +share/locale/ja/LC_MESSAGES/kcm_smserver.mo +share/locale/ja/LC_MESSAGES/kcm_solid_actions.mo +share/locale/ja/LC_MESSAGES/kcm_splashscreen.mo +share/locale/ja/LC_MESSAGES/kcm_tablet.mo +share/locale/ja/LC_MESSAGES/kcm_touchpad.mo +share/locale/ja/LC_MESSAGES/kcm_touchscreen.mo +share/locale/ja/LC_MESSAGES/kcm_workspace.mo +share/locale/ja/LC_MESSAGES/kcmkclock.mo +share/locale/ja/LC_MESSAGES/kcmkeyboard.mo +share/locale/ja/LC_MESSAGES/kcmmouse.mo +share/locale/ja/LC_MESSAGES/kcmqtquicksettings.mo +share/locale/ja/LC_MESSAGES/knetattach5.mo +share/locale/ja/LC_MESSAGES/org.kde.plasma.emojier.mo +share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.panel.mo +share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.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.kimpanel.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.showdesktop.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_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/plasma_toolbox_org.kde.paneltoolbox.mo +share/locale/ja/LC_MESSAGES/plasmaactivitymanager.mo +share/locale/ka/LC_MESSAGES/kaccess.mo +share/locale/ka/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/ka/LC_MESSAGES/kcm_access.mo +share/locale/ka/LC_MESSAGES/kcm_activities.mo +share/locale/ka/LC_MESSAGES/kcm_baloofile.mo +share/locale/ka/LC_MESSAGES/kcm_componentchooser.mo +share/locale/ka/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/ka/LC_MESSAGES/kcm_gamecontroller.mo +share/locale/ka/LC_MESSAGES/kcm_kded.mo +share/locale/ka/LC_MESSAGES/kcm_keys.mo +share/locale/ka/LC_MESSAGES/kcm_krunnersettings.mo +share/locale/ka/LC_MESSAGES/kcm_landingpage.mo +share/locale/ka/LC_MESSAGES/kcm_plasmasearch.mo +share/locale/ka/LC_MESSAGES/kcm_recentFiles.mo +share/locale/ka/LC_MESSAGES/kcm_smserver.mo +share/locale/ka/LC_MESSAGES/kcm_solid_actions.mo +share/locale/ka/LC_MESSAGES/kcm_splashscreen.mo +share/locale/ka/LC_MESSAGES/kcm_tablet.mo +share/locale/ka/LC_MESSAGES/kcm_touchpad.mo +share/locale/ka/LC_MESSAGES/kcm_touchscreen.mo +share/locale/ka/LC_MESSAGES/kcm_workspace.mo +share/locale/ka/LC_MESSAGES/kcmkclock.mo +share/locale/ka/LC_MESSAGES/kcmkeyboard.mo +share/locale/ka/LC_MESSAGES/kcmmouse.mo +share/locale/ka/LC_MESSAGES/kcmqtquicksettings.mo +share/locale/ka/LC_MESSAGES/knetattach5.mo +share/locale/ka/LC_MESSAGES/org.kde.plasma.emojier.mo +share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.panel.mo +share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.mo +share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo +share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo +share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo +share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo +share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo +share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo +share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo +share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo +share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo +share/locale/ka/LC_MESSAGES/plasma_runner_kwin.mo +share/locale/ka/LC_MESSAGES/plasma_runner_plasma-desktop.mo +share/locale/ka/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo +share/locale/ka/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo +share/locale/ka/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo +share/locale/ka/LC_MESSAGES/plasmaactivitymanager.mo +share/locale/kk/LC_MESSAGES/kaccess.mo +share/locale/kk/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/kk/LC_MESSAGES/kcm_access.mo +share/locale/kk/LC_MESSAGES/kcm_componentchooser.mo +share/locale/kk/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/kk/LC_MESSAGES/kcm_kded.mo +share/locale/kk/LC_MESSAGES/kcm_smserver.mo +share/locale/kk/LC_MESSAGES/kcm_solid_actions.mo +share/locale/kk/LC_MESSAGES/kcmkclock.mo +share/locale/kk/LC_MESSAGES/kcmkeyboard.mo +share/locale/kk/LC_MESSAGES/kcmmouse.mo +share/locale/kk/LC_MESSAGES/knetattach5.mo +share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo +share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.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.showdesktop.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/kaccess.mo +share/locale/km/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/km/LC_MESSAGES/kcm_access.mo +share/locale/km/LC_MESSAGES/kcm_componentchooser.mo +share/locale/km/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/km/LC_MESSAGES/kcm_kded.mo +share/locale/km/LC_MESSAGES/kcm_smserver.mo +share/locale/km/LC_MESSAGES/kcm_solid_actions.mo +share/locale/km/LC_MESSAGES/kcmkclock.mo +share/locale/km/LC_MESSAGES/kcmkeyboard.mo +share/locale/km/LC_MESSAGES/kcmmouse.mo +share/locale/km/LC_MESSAGES/knetattach5.mo +share/locale/km/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/km/LC_MESSAGES/plasma_applet_org.kde.plasma.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.showdesktop.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/kaccess.mo +share/locale/kn/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/kn/LC_MESSAGES/kcm_access.mo +share/locale/kn/LC_MESSAGES/kcm_componentchooser.mo +share/locale/kn/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/kn/LC_MESSAGES/kcm_kded.mo +share/locale/kn/LC_MESSAGES/kcm_smserver.mo +share/locale/kn/LC_MESSAGES/kcmkclock.mo +share/locale/kn/LC_MESSAGES/kcmkeyboard.mo +share/locale/kn/LC_MESSAGES/kcmmouse.mo +share/locale/kn/LC_MESSAGES/knetattach5.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/kaccess.mo +share/locale/ko/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/ko/LC_MESSAGES/kcm_access.mo +share/locale/ko/LC_MESSAGES/kcm_activities.mo +share/locale/ko/LC_MESSAGES/kcm_baloofile.mo +share/locale/ko/LC_MESSAGES/kcm_componentchooser.mo +share/locale/ko/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/ko/LC_MESSAGES/kcm_kded.mo +share/locale/ko/LC_MESSAGES/kcm_keys.mo +share/locale/ko/LC_MESSAGES/kcm_krunnersettings.mo +share/locale/ko/LC_MESSAGES/kcm_landingpage.mo +share/locale/ko/LC_MESSAGES/kcm_plasmasearch.mo +share/locale/ko/LC_MESSAGES/kcm_recentFiles.mo +share/locale/ko/LC_MESSAGES/kcm_smserver.mo +share/locale/ko/LC_MESSAGES/kcm_solid_actions.mo +share/locale/ko/LC_MESSAGES/kcm_splashscreen.mo +share/locale/ko/LC_MESSAGES/kcm_tablet.mo +share/locale/ko/LC_MESSAGES/kcm_touchpad.mo +share/locale/ko/LC_MESSAGES/kcm_touchscreen.mo +share/locale/ko/LC_MESSAGES/kcm_workspace.mo +share/locale/ko/LC_MESSAGES/kcmkclock.mo +share/locale/ko/LC_MESSAGES/kcmkeyboard.mo +share/locale/ko/LC_MESSAGES/kcmmouse.mo +share/locale/ko/LC_MESSAGES/kcmqtquicksettings.mo +share/locale/ko/LC_MESSAGES/knetattach5.mo +share/locale/ko/LC_MESSAGES/org.kde.plasma.emojier.mo +share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.panel.mo +share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.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.kimpanel.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.showdesktop.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_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/plasma_toolbox_org.kde.paneltoolbox.mo +share/locale/ko/LC_MESSAGES/plasmaactivitymanager.mo +share/locale/ku/LC_MESSAGES/kaccess.mo +share/locale/ku/LC_MESSAGES/kcm_access.mo +share/locale/ku/LC_MESSAGES/kcm_componentchooser.mo +share/locale/ku/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/ku/LC_MESSAGES/kcm_kded.mo +share/locale/ku/LC_MESSAGES/kcm_smserver.mo +share/locale/ku/LC_MESSAGES/kcmkclock.mo +share/locale/ku/LC_MESSAGES/kcmkeyboard.mo +share/locale/ku/LC_MESSAGES/kcmmouse.mo +share/locale/ku/LC_MESSAGES/knetattach5.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.showdesktop.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/kaccess.mo +share/locale/lt/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/lt/LC_MESSAGES/kcm_access.mo +share/locale/lt/LC_MESSAGES/kcm_activities.mo +share/locale/lt/LC_MESSAGES/kcm_baloofile.mo +share/locale/lt/LC_MESSAGES/kcm_componentchooser.mo +share/locale/lt/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/lt/LC_MESSAGES/kcm_kded.mo +share/locale/lt/LC_MESSAGES/kcm_keys.mo +share/locale/lt/LC_MESSAGES/kcm_krunnersettings.mo +share/locale/lt/LC_MESSAGES/kcm_landingpage.mo +share/locale/lt/LC_MESSAGES/kcm_plasmasearch.mo +share/locale/lt/LC_MESSAGES/kcm_recentFiles.mo +share/locale/lt/LC_MESSAGES/kcm_smserver.mo +share/locale/lt/LC_MESSAGES/kcm_solid_actions.mo +share/locale/lt/LC_MESSAGES/kcm_splashscreen.mo +share/locale/lt/LC_MESSAGES/kcm_tablet.mo +share/locale/lt/LC_MESSAGES/kcm_touchpad.mo +share/locale/lt/LC_MESSAGES/kcm_touchscreen.mo +share/locale/lt/LC_MESSAGES/kcm_workspace.mo +share/locale/lt/LC_MESSAGES/kcmkclock.mo +share/locale/lt/LC_MESSAGES/kcmkeyboard.mo +share/locale/lt/LC_MESSAGES/kcmmouse.mo +share/locale/lt/LC_MESSAGES/kcmqtquicksettings.mo +share/locale/lt/LC_MESSAGES/knetattach5.mo +share/locale/lt/LC_MESSAGES/org.kde.plasma.emojier.mo +share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.panel.mo +share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.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.kimpanel.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.showdesktop.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_runner_kwin.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/lt/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo +share/locale/lt/LC_MESSAGES/plasmaactivitymanager.mo +share/locale/lv/LC_MESSAGES/kaccess.mo +share/locale/lv/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/lv/LC_MESSAGES/kcm_access.mo +share/locale/lv/LC_MESSAGES/kcm_componentchooser.mo +share/locale/lv/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/lv/LC_MESSAGES/kcm_kded.mo +share/locale/lv/LC_MESSAGES/kcm_smserver.mo +share/locale/lv/LC_MESSAGES/kcm_solid_actions.mo +share/locale/lv/LC_MESSAGES/kcmkclock.mo +share/locale/lv/LC_MESSAGES/kcmkeyboard.mo +share/locale/lv/LC_MESSAGES/kcmmouse.mo +share/locale/lv/LC_MESSAGES/knetattach5.mo +share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.panel.mo +share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo +share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo +share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo +share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo +share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.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/kaccess.mo +share/locale/mai/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/mai/LC_MESSAGES/kcm_access.mo +share/locale/mai/LC_MESSAGES/kcm_componentchooser.mo +share/locale/mai/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/mai/LC_MESSAGES/kcm_kded.mo +share/locale/mai/LC_MESSAGES/kcm_smserver.mo +share/locale/mai/LC_MESSAGES/kcm_solid_actions.mo +share/locale/mai/LC_MESSAGES/kcmkclock.mo +share/locale/mai/LC_MESSAGES/kcmkeyboard.mo +share/locale/mai/LC_MESSAGES/kcmmouse.mo +share/locale/mai/LC_MESSAGES/knetattach5.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/kaccess.mo +share/locale/mk/LC_MESSAGES/kcm_access.mo +share/locale/mk/LC_MESSAGES/kcm_componentchooser.mo +share/locale/mk/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/mk/LC_MESSAGES/kcm_kded.mo +share/locale/mk/LC_MESSAGES/kcm_smserver.mo +share/locale/mk/LC_MESSAGES/kcmkclock.mo +share/locale/mk/LC_MESSAGES/kcmkeyboard.mo +share/locale/mk/LC_MESSAGES/kcmmouse.mo +share/locale/mk/LC_MESSAGES/knetattach5.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/kaccess.mo +share/locale/ml/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/ml/LC_MESSAGES/kcm_access.mo +share/locale/ml/LC_MESSAGES/kcm_activities.mo +share/locale/ml/LC_MESSAGES/kcm_baloofile.mo +share/locale/ml/LC_MESSAGES/kcm_componentchooser.mo +share/locale/ml/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/ml/LC_MESSAGES/kcm_kded.mo +share/locale/ml/LC_MESSAGES/kcm_krunnersettings.mo +share/locale/ml/LC_MESSAGES/kcm_plasmasearch.mo +share/locale/ml/LC_MESSAGES/kcm_smserver.mo +share/locale/ml/LC_MESSAGES/kcm_solid_actions.mo +share/locale/ml/LC_MESSAGES/kcm_splashscreen.mo +share/locale/ml/LC_MESSAGES/kcm_touchpad.mo +share/locale/ml/LC_MESSAGES/kcm_workspace.mo +share/locale/ml/LC_MESSAGES/kcmkclock.mo +share/locale/ml/LC_MESSAGES/kcmkeyboard.mo +share/locale/ml/LC_MESSAGES/kcmmouse.mo +share/locale/ml/LC_MESSAGES/kcmqtquicksettings.mo +share/locale/ml/LC_MESSAGES/knetattach5.mo +share/locale/ml/LC_MESSAGES/org.kde.plasma.emojier.mo +share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.panel.mo +share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo +share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo +share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo +share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo +share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo +share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.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/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo +share/locale/ml/LC_MESSAGES/plasma_runner_kwin.mo +share/locale/ml/LC_MESSAGES/plasma_runner_plasma-desktop.mo +share/locale/ml/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo +share/locale/ml/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo +share/locale/ml/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo +share/locale/ml/LC_MESSAGES/plasmaactivitymanager.mo +share/locale/mr/LC_MESSAGES/kaccess.mo +share/locale/mr/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/mr/LC_MESSAGES/kcm_access.mo +share/locale/mr/LC_MESSAGES/kcm_componentchooser.mo +share/locale/mr/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/mr/LC_MESSAGES/kcm_kded.mo +share/locale/mr/LC_MESSAGES/kcm_smserver.mo +share/locale/mr/LC_MESSAGES/kcm_solid_actions.mo +share/locale/mr/LC_MESSAGES/kcmkclock.mo +share/locale/mr/LC_MESSAGES/kcmkeyboard.mo +share/locale/mr/LC_MESSAGES/kcmmouse.mo +share/locale/mr/LC_MESSAGES/knetattach5.mo +share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo +share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.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.showdesktop.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/kaccess.mo +share/locale/ms/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/ms/LC_MESSAGES/kcm_access.mo +share/locale/ms/LC_MESSAGES/kcm_componentchooser.mo +share/locale/ms/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/ms/LC_MESSAGES/kcm_kded.mo +share/locale/ms/LC_MESSAGES/kcm_smserver.mo +share/locale/ms/LC_MESSAGES/kcm_solid_actions.mo +share/locale/ms/LC_MESSAGES/kcmkclock.mo +share/locale/ms/LC_MESSAGES/kcmkeyboard.mo +share/locale/ms/LC_MESSAGES/kcmmouse.mo +share/locale/ms/LC_MESSAGES/knetattach5.mo +share/locale/ms/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/ms/LC_MESSAGES/plasma_applet_org.kde.plasma.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/kaccess.mo +share/locale/nb/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/nb/LC_MESSAGES/kcm_access.mo +share/locale/nb/LC_MESSAGES/kcm_baloofile.mo +share/locale/nb/LC_MESSAGES/kcm_componentchooser.mo +share/locale/nb/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/nb/LC_MESSAGES/kcm_kded.mo +share/locale/nb/LC_MESSAGES/kcm_krunnersettings.mo +share/locale/nb/LC_MESSAGES/kcm_plasmasearch.mo +share/locale/nb/LC_MESSAGES/kcm_smserver.mo +share/locale/nb/LC_MESSAGES/kcm_solid_actions.mo +share/locale/nb/LC_MESSAGES/kcm_splashscreen.mo +share/locale/nb/LC_MESSAGES/kcm_touchpad.mo +share/locale/nb/LC_MESSAGES/kcm_workspace.mo +share/locale/nb/LC_MESSAGES/kcmkclock.mo +share/locale/nb/LC_MESSAGES/kcmkeyboard.mo +share/locale/nb/LC_MESSAGES/kcmmouse.mo +share/locale/nb/LC_MESSAGES/knetattach5.mo +share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.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.kimpanel.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.showdesktop.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/kaccess.mo +share/locale/nds/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/nds/LC_MESSAGES/kcm_access.mo +share/locale/nds/LC_MESSAGES/kcm_baloofile.mo +share/locale/nds/LC_MESSAGES/kcm_componentchooser.mo +share/locale/nds/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/nds/LC_MESSAGES/kcm_kded.mo +share/locale/nds/LC_MESSAGES/kcm_krunnersettings.mo +share/locale/nds/LC_MESSAGES/kcm_plasmasearch.mo +share/locale/nds/LC_MESSAGES/kcm_smserver.mo +share/locale/nds/LC_MESSAGES/kcm_solid_actions.mo +share/locale/nds/LC_MESSAGES/kcm_splashscreen.mo +share/locale/nds/LC_MESSAGES/kcm_workspace.mo +share/locale/nds/LC_MESSAGES/kcmkclock.mo +share/locale/nds/LC_MESSAGES/kcmkeyboard.mo +share/locale/nds/LC_MESSAGES/kcmmouse.mo +share/locale/nds/LC_MESSAGES/knetattach5.mo +share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.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.kimpanel.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.showdesktop.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/kaccess.mo +share/locale/ne/LC_MESSAGES/kcm_access.mo +share/locale/ne/LC_MESSAGES/kcm_componentchooser.mo +share/locale/ne/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/ne/LC_MESSAGES/kcm_kded.mo +share/locale/ne/LC_MESSAGES/kcm_smserver.mo +share/locale/ne/LC_MESSAGES/kcmkclock.mo +share/locale/ne/LC_MESSAGES/kcmkeyboard.mo +share/locale/ne/LC_MESSAGES/kcmmouse.mo +share/locale/ne/LC_MESSAGES/knetattach5.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/kaccess.mo +share/locale/nl/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/nl/LC_MESSAGES/kcm_access.mo +share/locale/nl/LC_MESSAGES/kcm_activities.mo +share/locale/nl/LC_MESSAGES/kcm_baloofile.mo +share/locale/nl/LC_MESSAGES/kcm_componentchooser.mo +share/locale/nl/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/nl/LC_MESSAGES/kcm_gamecontroller.mo +share/locale/nl/LC_MESSAGES/kcm_kded.mo +share/locale/nl/LC_MESSAGES/kcm_keys.mo +share/locale/nl/LC_MESSAGES/kcm_krunnersettings.mo +share/locale/nl/LC_MESSAGES/kcm_landingpage.mo +share/locale/nl/LC_MESSAGES/kcm_plasmasearch.mo +share/locale/nl/LC_MESSAGES/kcm_recentFiles.mo +share/locale/nl/LC_MESSAGES/kcm_smserver.mo +share/locale/nl/LC_MESSAGES/kcm_solid_actions.mo +share/locale/nl/LC_MESSAGES/kcm_splashscreen.mo +share/locale/nl/LC_MESSAGES/kcm_tablet.mo +share/locale/nl/LC_MESSAGES/kcm_touchpad.mo +share/locale/nl/LC_MESSAGES/kcm_touchscreen.mo +share/locale/nl/LC_MESSAGES/kcm_workspace.mo +share/locale/nl/LC_MESSAGES/kcmkclock.mo +share/locale/nl/LC_MESSAGES/kcmkeyboard.mo +share/locale/nl/LC_MESSAGES/kcmmouse.mo +share/locale/nl/LC_MESSAGES/kcmqtquicksettings.mo +share/locale/nl/LC_MESSAGES/knetattach5.mo +share/locale/nl/LC_MESSAGES/org.kde.plasma.emojier.mo +share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.panel.mo +share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.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.kimpanel.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.showdesktop.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_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/plasma_toolbox_org.kde.paneltoolbox.mo +share/locale/nl/LC_MESSAGES/plasmaactivitymanager.mo +share/locale/nn/LC_MESSAGES/kaccess.mo +share/locale/nn/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/nn/LC_MESSAGES/kcm_access.mo +share/locale/nn/LC_MESSAGES/kcm_activities.mo +share/locale/nn/LC_MESSAGES/kcm_baloofile.mo +share/locale/nn/LC_MESSAGES/kcm_componentchooser.mo +share/locale/nn/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/nn/LC_MESSAGES/kcm_kded.mo +share/locale/nn/LC_MESSAGES/kcm_keys.mo +share/locale/nn/LC_MESSAGES/kcm_krunnersettings.mo +share/locale/nn/LC_MESSAGES/kcm_landingpage.mo +share/locale/nn/LC_MESSAGES/kcm_plasmasearch.mo +share/locale/nn/LC_MESSAGES/kcm_recentFiles.mo +share/locale/nn/LC_MESSAGES/kcm_smserver.mo +share/locale/nn/LC_MESSAGES/kcm_solid_actions.mo +share/locale/nn/LC_MESSAGES/kcm_splashscreen.mo +share/locale/nn/LC_MESSAGES/kcm_tablet.mo +share/locale/nn/LC_MESSAGES/kcm_touchpad.mo +share/locale/nn/LC_MESSAGES/kcm_touchscreen.mo +share/locale/nn/LC_MESSAGES/kcm_workspace.mo +share/locale/nn/LC_MESSAGES/kcmkclock.mo +share/locale/nn/LC_MESSAGES/kcmkeyboard.mo +share/locale/nn/LC_MESSAGES/kcmmouse.mo +share/locale/nn/LC_MESSAGES/kcmqtquicksettings.mo +share/locale/nn/LC_MESSAGES/knetattach5.mo +share/locale/nn/LC_MESSAGES/org.kde.plasma.emojier.mo +share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.panel.mo +share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.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.kimpanel.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.showdesktop.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_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/plasma_toolbox_org.kde.paneltoolbox.mo +share/locale/nn/LC_MESSAGES/plasmaactivitymanager.mo +share/locale/oc/LC_MESSAGES/kaccess.mo +share/locale/oc/LC_MESSAGES/kcm_access.mo +share/locale/oc/LC_MESSAGES/kcm_componentchooser.mo +share/locale/oc/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/oc/LC_MESSAGES/kcm_kded.mo +share/locale/oc/LC_MESSAGES/kcm_smserver.mo +share/locale/oc/LC_MESSAGES/kcmkclock.mo +share/locale/oc/LC_MESSAGES/kcmkeyboard.mo +share/locale/oc/LC_MESSAGES/kcmmouse.mo +share/locale/oc/LC_MESSAGES/knetattach5.mo +share/locale/oc/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo +share/locale/or/LC_MESSAGES/kaccess.mo +share/locale/or/LC_MESSAGES/kcm_access.mo +share/locale/or/LC_MESSAGES/kcm_componentchooser.mo +share/locale/or/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/or/LC_MESSAGES/kcm_kded.mo +share/locale/or/LC_MESSAGES/kcm_smserver.mo +share/locale/or/LC_MESSAGES/kcmkclock.mo +share/locale/or/LC_MESSAGES/kcmkeyboard.mo +share/locale/or/LC_MESSAGES/kcmmouse.mo +share/locale/or/LC_MESSAGES/knetattach5.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/kaccess.mo +share/locale/pa/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/pa/LC_MESSAGES/kcm_access.mo +share/locale/pa/LC_MESSAGES/kcm_activities.mo +share/locale/pa/LC_MESSAGES/kcm_baloofile.mo +share/locale/pa/LC_MESSAGES/kcm_componentchooser.mo +share/locale/pa/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/pa/LC_MESSAGES/kcm_kded.mo +share/locale/pa/LC_MESSAGES/kcm_keys.mo +share/locale/pa/LC_MESSAGES/kcm_krunnersettings.mo +share/locale/pa/LC_MESSAGES/kcm_landingpage.mo +share/locale/pa/LC_MESSAGES/kcm_plasmasearch.mo +share/locale/pa/LC_MESSAGES/kcm_recentFiles.mo +share/locale/pa/LC_MESSAGES/kcm_smserver.mo +share/locale/pa/LC_MESSAGES/kcm_solid_actions.mo +share/locale/pa/LC_MESSAGES/kcm_splashscreen.mo +share/locale/pa/LC_MESSAGES/kcm_touchpad.mo +share/locale/pa/LC_MESSAGES/kcm_workspace.mo +share/locale/pa/LC_MESSAGES/kcmkclock.mo +share/locale/pa/LC_MESSAGES/kcmkeyboard.mo +share/locale/pa/LC_MESSAGES/kcmmouse.mo +share/locale/pa/LC_MESSAGES/kcmqtquicksettings.mo +share/locale/pa/LC_MESSAGES/knetattach5.mo +share/locale/pa/LC_MESSAGES/org.kde.plasma.emojier.mo +share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.panel.mo +share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.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.kimpanel.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.showdesktop.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_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/plasma_toolbox_org.kde.paneltoolbox.mo +share/locale/pa/LC_MESSAGES/plasmaactivitymanager.mo +share/locale/pl/LC_MESSAGES/kaccess.mo +share/locale/pl/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/pl/LC_MESSAGES/kcm_access.mo +share/locale/pl/LC_MESSAGES/kcm_activities.mo +share/locale/pl/LC_MESSAGES/kcm_baloofile.mo +share/locale/pl/LC_MESSAGES/kcm_componentchooser.mo +share/locale/pl/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/pl/LC_MESSAGES/kcm_gamecontroller.mo +share/locale/pl/LC_MESSAGES/kcm_kded.mo +share/locale/pl/LC_MESSAGES/kcm_keys.mo +share/locale/pl/LC_MESSAGES/kcm_krunnersettings.mo +share/locale/pl/LC_MESSAGES/kcm_landingpage.mo +share/locale/pl/LC_MESSAGES/kcm_plasmasearch.mo +share/locale/pl/LC_MESSAGES/kcm_recentFiles.mo +share/locale/pl/LC_MESSAGES/kcm_smserver.mo +share/locale/pl/LC_MESSAGES/kcm_solid_actions.mo +share/locale/pl/LC_MESSAGES/kcm_splashscreen.mo +share/locale/pl/LC_MESSAGES/kcm_tablet.mo +share/locale/pl/LC_MESSAGES/kcm_touchpad.mo +share/locale/pl/LC_MESSAGES/kcm_touchscreen.mo +share/locale/pl/LC_MESSAGES/kcm_workspace.mo +share/locale/pl/LC_MESSAGES/kcmkclock.mo +share/locale/pl/LC_MESSAGES/kcmkeyboard.mo +share/locale/pl/LC_MESSAGES/kcmmouse.mo +share/locale/pl/LC_MESSAGES/kcmqtquicksettings.mo +share/locale/pl/LC_MESSAGES/knetattach5.mo +share/locale/pl/LC_MESSAGES/org.kde.plasma.emojier.mo +share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.panel.mo +share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.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.kimpanel.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.showdesktop.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_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/plasma_toolbox_org.kde.paneltoolbox.mo +share/locale/pl/LC_MESSAGES/plasmaactivitymanager.mo +share/locale/pt/LC_MESSAGES/kaccess.mo +share/locale/pt/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/pt/LC_MESSAGES/kcm_access.mo +share/locale/pt/LC_MESSAGES/kcm_activities.mo +share/locale/pt/LC_MESSAGES/kcm_baloofile.mo +share/locale/pt/LC_MESSAGES/kcm_componentchooser.mo +share/locale/pt/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/pt/LC_MESSAGES/kcm_kded.mo +share/locale/pt/LC_MESSAGES/kcm_keys.mo +share/locale/pt/LC_MESSAGES/kcm_krunnersettings.mo +share/locale/pt/LC_MESSAGES/kcm_landingpage.mo +share/locale/pt/LC_MESSAGES/kcm_plasmasearch.mo +share/locale/pt/LC_MESSAGES/kcm_recentFiles.mo +share/locale/pt/LC_MESSAGES/kcm_smserver.mo +share/locale/pt/LC_MESSAGES/kcm_solid_actions.mo +share/locale/pt/LC_MESSAGES/kcm_splashscreen.mo +share/locale/pt/LC_MESSAGES/kcm_tablet.mo +share/locale/pt/LC_MESSAGES/kcm_touchpad.mo +share/locale/pt/LC_MESSAGES/kcm_touchscreen.mo +share/locale/pt/LC_MESSAGES/kcm_workspace.mo +share/locale/pt/LC_MESSAGES/kcmkclock.mo +share/locale/pt/LC_MESSAGES/kcmkeyboard.mo +share/locale/pt/LC_MESSAGES/kcmmouse.mo +share/locale/pt/LC_MESSAGES/kcmqtquicksettings.mo +share/locale/pt/LC_MESSAGES/knetattach5.mo +share/locale/pt/LC_MESSAGES/org.kde.plasma.emojier.mo +share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.panel.mo +share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.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.kimpanel.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.showdesktop.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_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/plasma_toolbox_org.kde.paneltoolbox.mo +share/locale/pt/LC_MESSAGES/plasmaactivitymanager.mo +share/locale/pt_BR/LC_MESSAGES/kaccess.mo +share/locale/pt_BR/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/pt_BR/LC_MESSAGES/kcm_access.mo +share/locale/pt_BR/LC_MESSAGES/kcm_activities.mo +share/locale/pt_BR/LC_MESSAGES/kcm_baloofile.mo +share/locale/pt_BR/LC_MESSAGES/kcm_componentchooser.mo +share/locale/pt_BR/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/pt_BR/LC_MESSAGES/kcm_gamecontroller.mo +share/locale/pt_BR/LC_MESSAGES/kcm_kded.mo +share/locale/pt_BR/LC_MESSAGES/kcm_keys.mo +share/locale/pt_BR/LC_MESSAGES/kcm_krunnersettings.mo +share/locale/pt_BR/LC_MESSAGES/kcm_landingpage.mo +share/locale/pt_BR/LC_MESSAGES/kcm_plasmasearch.mo +share/locale/pt_BR/LC_MESSAGES/kcm_recentFiles.mo +share/locale/pt_BR/LC_MESSAGES/kcm_smserver.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_tablet.mo +share/locale/pt_BR/LC_MESSAGES/kcm_touchpad.mo +share/locale/pt_BR/LC_MESSAGES/kcm_touchscreen.mo +share/locale/pt_BR/LC_MESSAGES/kcm_workspace.mo +share/locale/pt_BR/LC_MESSAGES/kcmkclock.mo +share/locale/pt_BR/LC_MESSAGES/kcmkeyboard.mo +share/locale/pt_BR/LC_MESSAGES/kcmmouse.mo +share/locale/pt_BR/LC_MESSAGES/kcmqtquicksettings.mo +share/locale/pt_BR/LC_MESSAGES/knetattach5.mo +share/locale/pt_BR/LC_MESSAGES/org.kde.plasma.emojier.mo +share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.panel.mo +share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.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.kimpanel.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.showdesktop.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_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/plasma_toolbox_org.kde.paneltoolbox.mo +share/locale/pt_BR/LC_MESSAGES/plasmaactivitymanager.mo +share/locale/ro/LC_MESSAGES/kaccess.mo +share/locale/ro/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/ro/LC_MESSAGES/kcm_access.mo +share/locale/ro/LC_MESSAGES/kcm_activities.mo +share/locale/ro/LC_MESSAGES/kcm_baloofile.mo +share/locale/ro/LC_MESSAGES/kcm_componentchooser.mo +share/locale/ro/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/ro/LC_MESSAGES/kcm_kded.mo +share/locale/ro/LC_MESSAGES/kcm_keys.mo +share/locale/ro/LC_MESSAGES/kcm_krunnersettings.mo +share/locale/ro/LC_MESSAGES/kcm_landingpage.mo +share/locale/ro/LC_MESSAGES/kcm_plasmasearch.mo +share/locale/ro/LC_MESSAGES/kcm_recentFiles.mo +share/locale/ro/LC_MESSAGES/kcm_smserver.mo +share/locale/ro/LC_MESSAGES/kcm_solid_actions.mo +share/locale/ro/LC_MESSAGES/kcm_splashscreen.mo +share/locale/ro/LC_MESSAGES/kcm_tablet.mo +share/locale/ro/LC_MESSAGES/kcm_touchpad.mo +share/locale/ro/LC_MESSAGES/kcm_touchscreen.mo +share/locale/ro/LC_MESSAGES/kcm_workspace.mo +share/locale/ro/LC_MESSAGES/kcmkclock.mo +share/locale/ro/LC_MESSAGES/kcmkeyboard.mo +share/locale/ro/LC_MESSAGES/kcmmouse.mo +share/locale/ro/LC_MESSAGES/kcmqtquicksettings.mo +share/locale/ro/LC_MESSAGES/knetattach5.mo +share/locale/ro/LC_MESSAGES/org.kde.plasma.emojier.mo +share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.panel.mo +share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.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.kimpanel.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.showdesktop.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_runner_kwin.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/ro/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo +share/locale/ro/LC_MESSAGES/plasmaactivitymanager.mo +share/locale/ru/LC_MESSAGES/kaccess.mo +share/locale/ru/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/ru/LC_MESSAGES/kcm_access.mo +share/locale/ru/LC_MESSAGES/kcm_activities.mo +share/locale/ru/LC_MESSAGES/kcm_baloofile.mo +share/locale/ru/LC_MESSAGES/kcm_componentchooser.mo +share/locale/ru/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/ru/LC_MESSAGES/kcm_kded.mo +share/locale/ru/LC_MESSAGES/kcm_keys.mo +share/locale/ru/LC_MESSAGES/kcm_krunnersettings.mo +share/locale/ru/LC_MESSAGES/kcm_landingpage.mo +share/locale/ru/LC_MESSAGES/kcm_plasmasearch.mo +share/locale/ru/LC_MESSAGES/kcm_recentFiles.mo +share/locale/ru/LC_MESSAGES/kcm_smserver.mo +share/locale/ru/LC_MESSAGES/kcm_solid_actions.mo +share/locale/ru/LC_MESSAGES/kcm_splashscreen.mo +share/locale/ru/LC_MESSAGES/kcm_tablet.mo +share/locale/ru/LC_MESSAGES/kcm_touchpad.mo +share/locale/ru/LC_MESSAGES/kcm_touchscreen.mo +share/locale/ru/LC_MESSAGES/kcm_workspace.mo +share/locale/ru/LC_MESSAGES/kcmkclock.mo +share/locale/ru/LC_MESSAGES/kcmkeyboard.mo +share/locale/ru/LC_MESSAGES/kcmmouse.mo +share/locale/ru/LC_MESSAGES/kcmqtquicksettings.mo +share/locale/ru/LC_MESSAGES/knetattach5.mo +share/locale/ru/LC_MESSAGES/org.kde.plasma.emojier.mo +share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.panel.mo +share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.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.kimpanel.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.showdesktop.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_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/plasma_toolbox_org.kde.paneltoolbox.mo +share/locale/ru/LC_MESSAGES/plasmaactivitymanager.mo +share/locale/sa/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo +share/locale/se/LC_MESSAGES/kaccess.mo +share/locale/se/LC_MESSAGES/kcm_access.mo +share/locale/se/LC_MESSAGES/kcm_componentchooser.mo +share/locale/se/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/se/LC_MESSAGES/kcm_kded.mo +share/locale/se/LC_MESSAGES/kcm_smserver.mo +share/locale/se/LC_MESSAGES/kcmkclock.mo +share/locale/se/LC_MESSAGES/kcmkeyboard.mo +share/locale/se/LC_MESSAGES/kcmmouse.mo +share/locale/se/LC_MESSAGES/knetattach5.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/kaccess.mo +share/locale/si/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/si/LC_MESSAGES/kcm_access.mo +share/locale/si/LC_MESSAGES/kcm_componentchooser.mo +share/locale/si/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/si/LC_MESSAGES/kcm_kded.mo +share/locale/si/LC_MESSAGES/kcm_smserver.mo +share/locale/si/LC_MESSAGES/kcm_solid_actions.mo +share/locale/si/LC_MESSAGES/kcmkclock.mo +share/locale/si/LC_MESSAGES/kcmkeyboard.mo +share/locale/si/LC_MESSAGES/kcmmouse.mo +share/locale/si/LC_MESSAGES/knetattach5.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/kaccess.mo +share/locale/sk/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/sk/LC_MESSAGES/kcm_access.mo +share/locale/sk/LC_MESSAGES/kcm_activities.mo +share/locale/sk/LC_MESSAGES/kcm_baloofile.mo +share/locale/sk/LC_MESSAGES/kcm_componentchooser.mo +share/locale/sk/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/sk/LC_MESSAGES/kcm_kded.mo +share/locale/sk/LC_MESSAGES/kcm_keys.mo +share/locale/sk/LC_MESSAGES/kcm_krunnersettings.mo +share/locale/sk/LC_MESSAGES/kcm_landingpage.mo +share/locale/sk/LC_MESSAGES/kcm_plasmasearch.mo +share/locale/sk/LC_MESSAGES/kcm_recentFiles.mo +share/locale/sk/LC_MESSAGES/kcm_smserver.mo +share/locale/sk/LC_MESSAGES/kcm_solid_actions.mo +share/locale/sk/LC_MESSAGES/kcm_splashscreen.mo +share/locale/sk/LC_MESSAGES/kcm_tablet.mo +share/locale/sk/LC_MESSAGES/kcm_touchpad.mo +share/locale/sk/LC_MESSAGES/kcm_touchscreen.mo +share/locale/sk/LC_MESSAGES/kcm_workspace.mo +share/locale/sk/LC_MESSAGES/kcmkclock.mo +share/locale/sk/LC_MESSAGES/kcmkeyboard.mo +share/locale/sk/LC_MESSAGES/kcmmouse.mo +share/locale/sk/LC_MESSAGES/kcmqtquicksettings.mo +share/locale/sk/LC_MESSAGES/knetattach5.mo +share/locale/sk/LC_MESSAGES/org.kde.plasma.emojier.mo +share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.panel.mo +share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.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.kimpanel.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.showdesktop.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_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/plasma_toolbox_org.kde.paneltoolbox.mo +share/locale/sk/LC_MESSAGES/plasmaactivitymanager.mo +share/locale/sl/LC_MESSAGES/kaccess.mo +share/locale/sl/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/sl/LC_MESSAGES/kcm_access.mo +share/locale/sl/LC_MESSAGES/kcm_activities.mo +share/locale/sl/LC_MESSAGES/kcm_baloofile.mo +share/locale/sl/LC_MESSAGES/kcm_componentchooser.mo +share/locale/sl/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/sl/LC_MESSAGES/kcm_gamecontroller.mo +share/locale/sl/LC_MESSAGES/kcm_kded.mo +share/locale/sl/LC_MESSAGES/kcm_keys.mo +share/locale/sl/LC_MESSAGES/kcm_krunnersettings.mo +share/locale/sl/LC_MESSAGES/kcm_landingpage.mo +share/locale/sl/LC_MESSAGES/kcm_plasmasearch.mo +share/locale/sl/LC_MESSAGES/kcm_recentFiles.mo +share/locale/sl/LC_MESSAGES/kcm_smserver.mo +share/locale/sl/LC_MESSAGES/kcm_solid_actions.mo +share/locale/sl/LC_MESSAGES/kcm_splashscreen.mo +share/locale/sl/LC_MESSAGES/kcm_tablet.mo +share/locale/sl/LC_MESSAGES/kcm_touchpad.mo +share/locale/sl/LC_MESSAGES/kcm_touchscreen.mo +share/locale/sl/LC_MESSAGES/kcm_workspace.mo +share/locale/sl/LC_MESSAGES/kcmkclock.mo +share/locale/sl/LC_MESSAGES/kcmkeyboard.mo +share/locale/sl/LC_MESSAGES/kcmmouse.mo +share/locale/sl/LC_MESSAGES/kcmqtquicksettings.mo +share/locale/sl/LC_MESSAGES/knetattach5.mo +share/locale/sl/LC_MESSAGES/org.kde.plasma.emojier.mo +share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.panel.mo +share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.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.kimpanel.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.showdesktop.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_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/plasma_toolbox_org.kde.paneltoolbox.mo +share/locale/sl/LC_MESSAGES/plasmaactivitymanager.mo +share/locale/sq/LC_MESSAGES/kaccess.mo +share/locale/sq/LC_MESSAGES/kcm_access.mo +share/locale/sq/LC_MESSAGES/kcm_componentchooser.mo +share/locale/sq/LC_MESSAGES/kcm_kded.mo +share/locale/sq/LC_MESSAGES/kcm_smserver.mo +share/locale/sq/LC_MESSAGES/kcm_solid_actions.mo +share/locale/sq/LC_MESSAGES/kcmkclock.mo +share/locale/sq/LC_MESSAGES/kcmkeyboard.mo +share/locale/sq/LC_MESSAGES/kcmmouse.mo +share/locale/sq/LC_MESSAGES/knetattach5.mo +share/locale/sq/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/sq/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo +share/locale/sq/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo +share/locale/sq/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.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/kaccess.mo +share/locale/sr/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/sr/LC_MESSAGES/kcm_access.mo +share/locale/sr/LC_MESSAGES/kcm_activities.mo +share/locale/sr/LC_MESSAGES/kcm_baloofile.mo +share/locale/sr/LC_MESSAGES/kcm_componentchooser.mo +share/locale/sr/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/sr/LC_MESSAGES/kcm_kded.mo +share/locale/sr/LC_MESSAGES/kcm_krunnersettings.mo +share/locale/sr/LC_MESSAGES/kcm_plasmasearch.mo +share/locale/sr/LC_MESSAGES/kcm_smserver.mo +share/locale/sr/LC_MESSAGES/kcm_solid_actions.mo +share/locale/sr/LC_MESSAGES/kcm_splashscreen.mo +share/locale/sr/LC_MESSAGES/kcm_touchpad.mo +share/locale/sr/LC_MESSAGES/kcm_workspace.mo +share/locale/sr/LC_MESSAGES/kcmkclock.mo +share/locale/sr/LC_MESSAGES/kcmkeyboard.mo +share/locale/sr/LC_MESSAGES/kcmmouse.mo +share/locale/sr/LC_MESSAGES/knetattach5.mo +share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.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.kimpanel.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.showdesktop.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_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/kaccess.mo +share/locale/sr@ijekavian/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/sr@ijekavian/LC_MESSAGES/kcm_access.mo +share/locale/sr@ijekavian/LC_MESSAGES/kcm_activities.mo +share/locale/sr@ijekavian/LC_MESSAGES/kcm_baloofile.mo +share/locale/sr@ijekavian/LC_MESSAGES/kcm_componentchooser.mo +share/locale/sr@ijekavian/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/sr@ijekavian/LC_MESSAGES/kcm_kded.mo +share/locale/sr@ijekavian/LC_MESSAGES/kcm_krunnersettings.mo +share/locale/sr@ijekavian/LC_MESSAGES/kcm_plasmasearch.mo +share/locale/sr@ijekavian/LC_MESSAGES/kcm_smserver.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_touchpad.mo +share/locale/sr@ijekavian/LC_MESSAGES/kcm_workspace.mo +share/locale/sr@ijekavian/LC_MESSAGES/kcmkclock.mo +share/locale/sr@ijekavian/LC_MESSAGES/kcmkeyboard.mo +share/locale/sr@ijekavian/LC_MESSAGES/kcmmouse.mo +share/locale/sr@ijekavian/LC_MESSAGES/knetattach5.mo +share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.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.kimpanel.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.showdesktop.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_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/kaccess.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_access.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_activities.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_baloofile.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_componentchooser.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_kded.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_krunnersettings.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_plasmasearch.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_smserver.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_touchpad.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_workspace.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmkclock.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmkeyboard.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmmouse.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/knetattach5.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.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.kimpanel.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.showdesktop.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_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/kaccess.mo +share/locale/sr@latin/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/sr@latin/LC_MESSAGES/kcm_access.mo +share/locale/sr@latin/LC_MESSAGES/kcm_activities.mo +share/locale/sr@latin/LC_MESSAGES/kcm_baloofile.mo +share/locale/sr@latin/LC_MESSAGES/kcm_componentchooser.mo +share/locale/sr@latin/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/sr@latin/LC_MESSAGES/kcm_kded.mo +share/locale/sr@latin/LC_MESSAGES/kcm_krunnersettings.mo +share/locale/sr@latin/LC_MESSAGES/kcm_plasmasearch.mo +share/locale/sr@latin/LC_MESSAGES/kcm_smserver.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_touchpad.mo +share/locale/sr@latin/LC_MESSAGES/kcm_workspace.mo +share/locale/sr@latin/LC_MESSAGES/kcmkclock.mo +share/locale/sr@latin/LC_MESSAGES/kcmkeyboard.mo +share/locale/sr@latin/LC_MESSAGES/kcmmouse.mo +share/locale/sr@latin/LC_MESSAGES/knetattach5.mo +share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.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.kimpanel.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.showdesktop.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_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/kaccess.mo +share/locale/sv/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/sv/LC_MESSAGES/kcm_access.mo +share/locale/sv/LC_MESSAGES/kcm_activities.mo +share/locale/sv/LC_MESSAGES/kcm_baloofile.mo +share/locale/sv/LC_MESSAGES/kcm_componentchooser.mo +share/locale/sv/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/sv/LC_MESSAGES/kcm_kded.mo +share/locale/sv/LC_MESSAGES/kcm_keys.mo +share/locale/sv/LC_MESSAGES/kcm_krunnersettings.mo +share/locale/sv/LC_MESSAGES/kcm_landingpage.mo +share/locale/sv/LC_MESSAGES/kcm_plasmasearch.mo +share/locale/sv/LC_MESSAGES/kcm_recentFiles.mo +share/locale/sv/LC_MESSAGES/kcm_smserver.mo +share/locale/sv/LC_MESSAGES/kcm_solid_actions.mo +share/locale/sv/LC_MESSAGES/kcm_splashscreen.mo +share/locale/sv/LC_MESSAGES/kcm_tablet.mo +share/locale/sv/LC_MESSAGES/kcm_touchpad.mo +share/locale/sv/LC_MESSAGES/kcm_workspace.mo +share/locale/sv/LC_MESSAGES/kcmkclock.mo +share/locale/sv/LC_MESSAGES/kcmkeyboard.mo +share/locale/sv/LC_MESSAGES/kcmmouse.mo +share/locale/sv/LC_MESSAGES/kcmqtquicksettings.mo +share/locale/sv/LC_MESSAGES/knetattach5.mo +share/locale/sv/LC_MESSAGES/org.kde.plasma.emojier.mo +share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.panel.mo +share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.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.kimpanel.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.showdesktop.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_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/plasma_toolbox_org.kde.paneltoolbox.mo +share/locale/sv/LC_MESSAGES/plasmaactivitymanager.mo +share/locale/ta/LC_MESSAGES/kaccess.mo +share/locale/ta/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/ta/LC_MESSAGES/kcm_access.mo +share/locale/ta/LC_MESSAGES/kcm_activities.mo +share/locale/ta/LC_MESSAGES/kcm_baloofile.mo +share/locale/ta/LC_MESSAGES/kcm_componentchooser.mo +share/locale/ta/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/ta/LC_MESSAGES/kcm_kded.mo +share/locale/ta/LC_MESSAGES/kcm_keys.mo +share/locale/ta/LC_MESSAGES/kcm_krunnersettings.mo +share/locale/ta/LC_MESSAGES/kcm_landingpage.mo +share/locale/ta/LC_MESSAGES/kcm_plasmasearch.mo +share/locale/ta/LC_MESSAGES/kcm_smserver.mo +share/locale/ta/LC_MESSAGES/kcm_solid_actions.mo +share/locale/ta/LC_MESSAGES/kcm_splashscreen.mo +share/locale/ta/LC_MESSAGES/kcm_tablet.mo +share/locale/ta/LC_MESSAGES/kcm_touchpad.mo +share/locale/ta/LC_MESSAGES/kcm_workspace.mo +share/locale/ta/LC_MESSAGES/kcmkclock.mo +share/locale/ta/LC_MESSAGES/kcmkeyboard.mo +share/locale/ta/LC_MESSAGES/kcmmouse.mo +share/locale/ta/LC_MESSAGES/kcmqtquicksettings.mo +share/locale/ta/LC_MESSAGES/knetattach5.mo +share/locale/ta/LC_MESSAGES/org.kde.plasma.emojier.mo +share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.panel.mo +share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.mo +share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo +share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo +share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo +share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo +share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo +share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.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/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo +share/locale/ta/LC_MESSAGES/plasma_runner_kwin.mo +share/locale/ta/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo +share/locale/ta/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo +share/locale/ta/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo +share/locale/ta/LC_MESSAGES/plasmaactivitymanager.mo +share/locale/te/LC_MESSAGES/kaccess.mo +share/locale/te/LC_MESSAGES/kcm_access.mo +share/locale/te/LC_MESSAGES/kcm_componentchooser.mo +share/locale/te/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/te/LC_MESSAGES/kcm_kded.mo +share/locale/te/LC_MESSAGES/kcm_smserver.mo +share/locale/te/LC_MESSAGES/kcmkclock.mo +share/locale/te/LC_MESSAGES/kcmkeyboard.mo +share/locale/te/LC_MESSAGES/kcmmouse.mo +share/locale/te/LC_MESSAGES/knetattach5.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/kaccess.mo +share/locale/tg/LC_MESSAGES/kcm_access.mo +share/locale/tg/LC_MESSAGES/kcm_activities.mo +share/locale/tg/LC_MESSAGES/kcm_baloofile.mo +share/locale/tg/LC_MESSAGES/kcm_componentchooser.mo +share/locale/tg/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/tg/LC_MESSAGES/kcm_kded.mo +share/locale/tg/LC_MESSAGES/kcm_krunnersettings.mo +share/locale/tg/LC_MESSAGES/kcm_plasmasearch.mo +share/locale/tg/LC_MESSAGES/kcm_smserver.mo +share/locale/tg/LC_MESSAGES/kcm_splashscreen.mo +share/locale/tg/LC_MESSAGES/kcmkclock.mo +share/locale/tg/LC_MESSAGES/kcmkeyboard.mo +share/locale/tg/LC_MESSAGES/kcmmouse.mo +share/locale/tg/LC_MESSAGES/knetattach5.mo +share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.panel.mo +share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo +share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo +share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo +share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo +share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.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/tg/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo +share/locale/tg/LC_MESSAGES/plasma_runner_kwin.mo +share/locale/tg/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo +share/locale/tg/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo +share/locale/tg/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo +share/locale/th/LC_MESSAGES/kaccess.mo +share/locale/th/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/th/LC_MESSAGES/kcm_access.mo +share/locale/th/LC_MESSAGES/kcm_componentchooser.mo +share/locale/th/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/th/LC_MESSAGES/kcm_kded.mo +share/locale/th/LC_MESSAGES/kcm_smserver.mo +share/locale/th/LC_MESSAGES/kcm_solid_actions.mo +share/locale/th/LC_MESSAGES/kcmkclock.mo +share/locale/th/LC_MESSAGES/kcmkeyboard.mo +share/locale/th/LC_MESSAGES/kcmmouse.mo +share/locale/th/LC_MESSAGES/knetattach5.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.showdesktop.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/kaccess.mo +share/locale/tr/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/tr/LC_MESSAGES/kcm_access.mo +share/locale/tr/LC_MESSAGES/kcm_activities.mo +share/locale/tr/LC_MESSAGES/kcm_baloofile.mo +share/locale/tr/LC_MESSAGES/kcm_componentchooser.mo +share/locale/tr/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/tr/LC_MESSAGES/kcm_gamecontroller.mo +share/locale/tr/LC_MESSAGES/kcm_kded.mo +share/locale/tr/LC_MESSAGES/kcm_keys.mo +share/locale/tr/LC_MESSAGES/kcm_krunnersettings.mo +share/locale/tr/LC_MESSAGES/kcm_landingpage.mo +share/locale/tr/LC_MESSAGES/kcm_plasmasearch.mo +share/locale/tr/LC_MESSAGES/kcm_recentFiles.mo +share/locale/tr/LC_MESSAGES/kcm_smserver.mo +share/locale/tr/LC_MESSAGES/kcm_solid_actions.mo +share/locale/tr/LC_MESSAGES/kcm_splashscreen.mo +share/locale/tr/LC_MESSAGES/kcm_tablet.mo +share/locale/tr/LC_MESSAGES/kcm_touchpad.mo +share/locale/tr/LC_MESSAGES/kcm_touchscreen.mo +share/locale/tr/LC_MESSAGES/kcm_workspace.mo +share/locale/tr/LC_MESSAGES/kcmkclock.mo +share/locale/tr/LC_MESSAGES/kcmkeyboard.mo +share/locale/tr/LC_MESSAGES/kcmmouse.mo +share/locale/tr/LC_MESSAGES/kcmqtquicksettings.mo +share/locale/tr/LC_MESSAGES/knetattach5.mo +share/locale/tr/LC_MESSAGES/org.kde.plasma.emojier.mo +share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.panel.mo +share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.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.kimpanel.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.showdesktop.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_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/plasma_toolbox_org.kde.paneltoolbox.mo +share/locale/tr/LC_MESSAGES/plasmaactivitymanager.mo +share/locale/ug/LC_MESSAGES/kaccess.mo +share/locale/ug/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/ug/LC_MESSAGES/kcm_access.mo +share/locale/ug/LC_MESSAGES/kcm_componentchooser.mo +share/locale/ug/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/ug/LC_MESSAGES/kcm_kded.mo +share/locale/ug/LC_MESSAGES/kcm_smserver.mo +share/locale/ug/LC_MESSAGES/kcm_solid_actions.mo +share/locale/ug/LC_MESSAGES/kcmkclock.mo +share/locale/ug/LC_MESSAGES/kcmkeyboard.mo +share/locale/ug/LC_MESSAGES/kcmmouse.mo +share/locale/ug/LC_MESSAGES/knetattach5.mo +share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo +share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.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.showdesktop.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/kaccess.mo +share/locale/uk/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/uk/LC_MESSAGES/kcm_access.mo +share/locale/uk/LC_MESSAGES/kcm_activities.mo +share/locale/uk/LC_MESSAGES/kcm_baloofile.mo +share/locale/uk/LC_MESSAGES/kcm_componentchooser.mo +share/locale/uk/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/uk/LC_MESSAGES/kcm_gamecontroller.mo +share/locale/uk/LC_MESSAGES/kcm_kded.mo +share/locale/uk/LC_MESSAGES/kcm_keys.mo +share/locale/uk/LC_MESSAGES/kcm_krunnersettings.mo +share/locale/uk/LC_MESSAGES/kcm_landingpage.mo +share/locale/uk/LC_MESSAGES/kcm_plasmasearch.mo +share/locale/uk/LC_MESSAGES/kcm_recentFiles.mo +share/locale/uk/LC_MESSAGES/kcm_smserver.mo +share/locale/uk/LC_MESSAGES/kcm_solid_actions.mo +share/locale/uk/LC_MESSAGES/kcm_splashscreen.mo +share/locale/uk/LC_MESSAGES/kcm_tablet.mo +share/locale/uk/LC_MESSAGES/kcm_touchpad.mo +share/locale/uk/LC_MESSAGES/kcm_touchscreen.mo +share/locale/uk/LC_MESSAGES/kcm_workspace.mo +share/locale/uk/LC_MESSAGES/kcmkclock.mo +share/locale/uk/LC_MESSAGES/kcmkeyboard.mo +share/locale/uk/LC_MESSAGES/kcmmouse.mo +share/locale/uk/LC_MESSAGES/kcmqtquicksettings.mo +share/locale/uk/LC_MESSAGES/knetattach5.mo +share/locale/uk/LC_MESSAGES/org.kde.plasma.emojier.mo +share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.panel.mo +share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.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.kimpanel.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.showdesktop.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_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/plasma_toolbox_org.kde.paneltoolbox.mo +share/locale/uk/LC_MESSAGES/plasmaactivitymanager.mo +share/locale/uz/LC_MESSAGES/kaccess.mo +share/locale/uz/LC_MESSAGES/kcm_access.mo +share/locale/uz/LC_MESSAGES/kcm_componentchooser.mo +share/locale/uz/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/uz/LC_MESSAGES/kcm_kded.mo +share/locale/uz/LC_MESSAGES/kcm_smserver.mo +share/locale/uz/LC_MESSAGES/kcmkclock.mo +share/locale/uz/LC_MESSAGES/kcmkeyboard.mo +share/locale/uz/LC_MESSAGES/kcmmouse.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/kaccess.mo +share/locale/uz@cyrillic/LC_MESSAGES/kcm_access.mo +share/locale/uz@cyrillic/LC_MESSAGES/kcm_componentchooser.mo +share/locale/uz@cyrillic/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/uz@cyrillic/LC_MESSAGES/kcm_kded.mo +share/locale/uz@cyrillic/LC_MESSAGES/kcm_smserver.mo +share/locale/uz@cyrillic/LC_MESSAGES/kcmkclock.mo +share/locale/uz@cyrillic/LC_MESSAGES/kcmkeyboard.mo +share/locale/uz@cyrillic/LC_MESSAGES/kcmmouse.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/kaccess.mo +share/locale/vi/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/vi/LC_MESSAGES/kcm_access.mo +share/locale/vi/LC_MESSAGES/kcm_activities.mo +share/locale/vi/LC_MESSAGES/kcm_baloofile.mo +share/locale/vi/LC_MESSAGES/kcm_componentchooser.mo +share/locale/vi/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/vi/LC_MESSAGES/kcm_kded.mo +share/locale/vi/LC_MESSAGES/kcm_keys.mo +share/locale/vi/LC_MESSAGES/kcm_krunnersettings.mo +share/locale/vi/LC_MESSAGES/kcm_landingpage.mo +share/locale/vi/LC_MESSAGES/kcm_plasmasearch.mo +share/locale/vi/LC_MESSAGES/kcm_recentFiles.mo +share/locale/vi/LC_MESSAGES/kcm_smserver.mo +share/locale/vi/LC_MESSAGES/kcm_solid_actions.mo +share/locale/vi/LC_MESSAGES/kcm_splashscreen.mo +share/locale/vi/LC_MESSAGES/kcm_tablet.mo +share/locale/vi/LC_MESSAGES/kcm_touchpad.mo +share/locale/vi/LC_MESSAGES/kcm_touchscreen.mo +share/locale/vi/LC_MESSAGES/kcm_workspace.mo +share/locale/vi/LC_MESSAGES/kcmkclock.mo +share/locale/vi/LC_MESSAGES/kcmkeyboard.mo +share/locale/vi/LC_MESSAGES/kcmmouse.mo +share/locale/vi/LC_MESSAGES/kcmqtquicksettings.mo +share/locale/vi/LC_MESSAGES/knetattach5.mo +share/locale/vi/LC_MESSAGES/org.kde.plasma.emojier.mo +share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.panel.mo +share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.mo +share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo +share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo +share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.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.showdesktop.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/vi/LC_MESSAGES/plasma_runner_kwin.mo +share/locale/vi/LC_MESSAGES/plasma_runner_plasma-desktop.mo +share/locale/vi/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo +share/locale/vi/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo +share/locale/vi/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo +share/locale/vi/LC_MESSAGES/plasmaactivitymanager.mo +share/locale/wa/LC_MESSAGES/kaccess.mo +share/locale/wa/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/wa/LC_MESSAGES/kcm_access.mo +share/locale/wa/LC_MESSAGES/kcm_componentchooser.mo +share/locale/wa/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/wa/LC_MESSAGES/kcm_kded.mo +share/locale/wa/LC_MESSAGES/kcm_smserver.mo +share/locale/wa/LC_MESSAGES/kcm_solid_actions.mo +share/locale/wa/LC_MESSAGES/kcmkclock.mo +share/locale/wa/LC_MESSAGES/kcmkeyboard.mo +share/locale/wa/LC_MESSAGES/kcmmouse.mo +share/locale/wa/LC_MESSAGES/knetattach5.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.showdesktop.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/kcm_access.mo +share/locale/xh/LC_MESSAGES/kcm_componentchooser.mo +share/locale/xh/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/xh/LC_MESSAGES/kcm_kded.mo +share/locale/xh/LC_MESSAGES/kcm_smserver.mo +share/locale/xh/LC_MESSAGES/kcmkclock.mo +share/locale/xh/LC_MESSAGES/kcmkeyboard.mo +share/locale/xh/LC_MESSAGES/kcmmouse.mo +share/locale/xh/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/zh_CN/LC_MESSAGES/kaccess.mo +share/locale/zh_CN/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/zh_CN/LC_MESSAGES/kcm_access.mo +share/locale/zh_CN/LC_MESSAGES/kcm_activities.mo +share/locale/zh_CN/LC_MESSAGES/kcm_baloofile.mo +share/locale/zh_CN/LC_MESSAGES/kcm_componentchooser.mo +share/locale/zh_CN/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/zh_CN/LC_MESSAGES/kcm_gamecontroller.mo +share/locale/zh_CN/LC_MESSAGES/kcm_kded.mo +share/locale/zh_CN/LC_MESSAGES/kcm_keys.mo +share/locale/zh_CN/LC_MESSAGES/kcm_krunnersettings.mo +share/locale/zh_CN/LC_MESSAGES/kcm_landingpage.mo +share/locale/zh_CN/LC_MESSAGES/kcm_plasmasearch.mo +share/locale/zh_CN/LC_MESSAGES/kcm_recentFiles.mo +share/locale/zh_CN/LC_MESSAGES/kcm_smserver.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_tablet.mo +share/locale/zh_CN/LC_MESSAGES/kcm_touchpad.mo +share/locale/zh_CN/LC_MESSAGES/kcm_touchscreen.mo +share/locale/zh_CN/LC_MESSAGES/kcm_workspace.mo +share/locale/zh_CN/LC_MESSAGES/kcmkclock.mo +share/locale/zh_CN/LC_MESSAGES/kcmkeyboard.mo +share/locale/zh_CN/LC_MESSAGES/kcmmouse.mo +share/locale/zh_CN/LC_MESSAGES/kcmqtquicksettings.mo +share/locale/zh_CN/LC_MESSAGES/knetattach5.mo +share/locale/zh_CN/LC_MESSAGES/org.kde.plasma.emojier.mo +share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.panel.mo +share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.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.kimpanel.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.showdesktop.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_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/plasma_toolbox_org.kde.paneltoolbox.mo +share/locale/zh_CN/LC_MESSAGES/plasmaactivitymanager.mo +share/locale/zh_TW/LC_MESSAGES/kaccess.mo +share/locale/zh_TW/LC_MESSAGES/kcm5_device_automounter.mo +share/locale/zh_TW/LC_MESSAGES/kcm_access.mo +share/locale/zh_TW/LC_MESSAGES/kcm_activities.mo +share/locale/zh_TW/LC_MESSAGES/kcm_baloofile.mo +share/locale/zh_TW/LC_MESSAGES/kcm_componentchooser.mo +share/locale/zh_TW/LC_MESSAGES/kcm_desktoppaths.mo +share/locale/zh_TW/LC_MESSAGES/kcm_gamecontroller.mo +share/locale/zh_TW/LC_MESSAGES/kcm_kded.mo +share/locale/zh_TW/LC_MESSAGES/kcm_keys.mo +share/locale/zh_TW/LC_MESSAGES/kcm_krunnersettings.mo +share/locale/zh_TW/LC_MESSAGES/kcm_landingpage.mo +share/locale/zh_TW/LC_MESSAGES/kcm_plasmasearch.mo +share/locale/zh_TW/LC_MESSAGES/kcm_recentFiles.mo +share/locale/zh_TW/LC_MESSAGES/kcm_smserver.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_tablet.mo +share/locale/zh_TW/LC_MESSAGES/kcm_touchpad.mo +share/locale/zh_TW/LC_MESSAGES/kcm_touchscreen.mo +share/locale/zh_TW/LC_MESSAGES/kcm_workspace.mo +share/locale/zh_TW/LC_MESSAGES/kcmkclock.mo +share/locale/zh_TW/LC_MESSAGES/kcmkeyboard.mo +share/locale/zh_TW/LC_MESSAGES/kcmmouse.mo +share/locale/zh_TW/LC_MESSAGES/kcmqtquicksettings.mo +share/locale/zh_TW/LC_MESSAGES/knetattach5.mo +share/locale/zh_TW/LC_MESSAGES/org.kde.plasma.emojier.mo +share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo +share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.panel.mo +share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.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.kimpanel.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.showdesktop.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_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/plasma_toolbox_org.kde.paneltoolbox.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.activitypager.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.keyboardlayout.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.marginsseparator.appdata.xml +share/metainfo/org.kde.plasma.minimizeall.appdata.xml +share/metainfo/org.kde.plasma.pager.appdata.xml +share/metainfo/org.kde.plasma.showActivityManager.appdata.xml +share/metainfo/org.kde.plasma.showdesktop.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 +share/plasma/desktoptheme/default/icons/touchpad.svg +share/plasma/emoji/af.dict +share/plasma/emoji/am.dict +share/plasma/emoji/ar.dict +share/plasma/emoji/ar_SA.dict +share/plasma/emoji/as.dict +share/plasma/emoji/ast.dict +share/plasma/emoji/az.dict +share/plasma/emoji/be.dict +share/plasma/emoji/bg.dict +share/plasma/emoji/bgn.dict +share/plasma/emoji/bn.dict +share/plasma/emoji/br.dict +share/plasma/emoji/bs.dict +share/plasma/emoji/ca.dict +share/plasma/emoji/ccp.dict +share/plasma/emoji/ceb.dict +share/plasma/emoji/chr.dict +share/plasma/emoji/ckb.dict +share/plasma/emoji/cs.dict +share/plasma/emoji/cy.dict +share/plasma/emoji/da.dict +share/plasma/emoji/de.dict +share/plasma/emoji/de_CH.dict +share/plasma/emoji/dsb.dict +share/plasma/emoji/el.dict +share/plasma/emoji/en.dict +share/plasma/emoji/en_001.dict +share/plasma/emoji/en_AU.dict +share/plasma/emoji/en_CA.dict +share/plasma/emoji/en_IN.dict +share/plasma/emoji/es.dict +share/plasma/emoji/es_419.dict +share/plasma/emoji/es_MX.dict +share/plasma/emoji/es_US.dict +share/plasma/emoji/et.dict +share/plasma/emoji/eu.dict +share/plasma/emoji/fa.dict +share/plasma/emoji/ff_Adlm.dict +share/plasma/emoji/fi.dict +share/plasma/emoji/fil.dict +share/plasma/emoji/fo.dict +share/plasma/emoji/fr.dict +share/plasma/emoji/fr_CA.dict +share/plasma/emoji/ga.dict +share/plasma/emoji/gd.dict +share/plasma/emoji/gl.dict +share/plasma/emoji/gu.dict +share/plasma/emoji/ha.dict +share/plasma/emoji/he.dict +share/plasma/emoji/hi.dict +share/plasma/emoji/hi_Latn.dict +share/plasma/emoji/hr.dict +share/plasma/emoji/hsb.dict +share/plasma/emoji/hu.dict +share/plasma/emoji/hy.dict +share/plasma/emoji/ia.dict +share/plasma/emoji/id.dict +share/plasma/emoji/ig.dict +share/plasma/emoji/is.dict +share/plasma/emoji/it.dict +share/plasma/emoji/ja.dict +share/plasma/emoji/jv.dict +share/plasma/emoji/ka.dict +share/plasma/emoji/kab.dict +share/plasma/emoji/kk.dict +share/plasma/emoji/kl.dict +share/plasma/emoji/km.dict +share/plasma/emoji/kn.dict +share/plasma/emoji/ko.dict +share/plasma/emoji/kok.dict +share/plasma/emoji/ky.dict +share/plasma/emoji/lb.dict +share/plasma/emoji/lij.dict +share/plasma/emoji/lo.dict +share/plasma/emoji/lt.dict +share/plasma/emoji/lv.dict +share/plasma/emoji/mi.dict +share/plasma/emoji/mk.dict +share/plasma/emoji/ml.dict +share/plasma/emoji/mn.dict +share/plasma/emoji/mni.dict +share/plasma/emoji/mr.dict +share/plasma/emoji/ms.dict +share/plasma/emoji/mt.dict +share/plasma/emoji/my.dict +share/plasma/emoji/ne.dict +share/plasma/emoji/nl.dict +share/plasma/emoji/nn.dict +share/plasma/emoji/no.dict +share/plasma/emoji/nso.dict +share/plasma/emoji/oc.dict +share/plasma/emoji/or.dict +share/plasma/emoji/pa.dict +share/plasma/emoji/pa_Arab.dict +share/plasma/emoji/pcm.dict +share/plasma/emoji/pl.dict +share/plasma/emoji/ps.dict +share/plasma/emoji/pt.dict +share/plasma/emoji/pt_PT.dict +share/plasma/emoji/qu.dict +share/plasma/emoji/quc.dict +share/plasma/emoji/rm.dict +share/plasma/emoji/ro.dict +share/plasma/emoji/ru.dict +share/plasma/emoji/rw.dict +share/plasma/emoji/sat.dict +share/plasma/emoji/sc.dict +share/plasma/emoji/sd.dict +share/plasma/emoji/si.dict +share/plasma/emoji/sk.dict +share/plasma/emoji/sl.dict +share/plasma/emoji/so.dict +share/plasma/emoji/sq.dict +share/plasma/emoji/sr.dict +share/plasma/emoji/sr_Cyrl_BA.dict +share/plasma/emoji/sr_Latn.dict +share/plasma/emoji/sr_Latn_BA.dict +share/plasma/emoji/sv.dict +share/plasma/emoji/sw.dict +share/plasma/emoji/sw_KE.dict +share/plasma/emoji/ta.dict +share/plasma/emoji/te.dict +share/plasma/emoji/tg.dict +share/plasma/emoji/th.dict +share/plasma/emoji/ti.dict +share/plasma/emoji/tk.dict +share/plasma/emoji/tn.dict +share/plasma/emoji/to.dict +share/plasma/emoji/tr.dict +share/plasma/emoji/ug.dict +share/plasma/emoji/uk.dict +share/plasma/emoji/ur.dict +share/plasma/emoji/uz.dict +share/plasma/emoji/vi.dict +share/plasma/emoji/wo.dict +share/plasma/emoji/xh.dict +share/plasma/emoji/yo.dict +share/plasma/emoji/yo_BJ.dict +share/plasma/emoji/yue.dict +share/plasma/emoji/yue_Hans.dict +share/plasma/emoji/zh.dict +share/plasma/emoji/zh_Hant.dict +share/plasma/emoji/zh_Hant_HK.dict +share/plasma/emoji/zu.dict +share/plasma/layout-templates/org.kde.plasma.desktop.appmenubar/contents/layout.js +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.json +share/plasma/layout-templates/org.kde.plasma.desktop.emptyPanel/contents/layout.js +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/ToolBoxContent.qml +share/plasma/packages/org.kde.desktoptoolbox/contents/ui/main.qml +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.json +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/BackButtonItem.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/ConfigOverlay.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/RenameEditor.qml +share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/code/FolderTools.js +share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/main.qml +share/plasma/plasmoids/org.kde.desktopcontainment/metadata.json +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/LayoutManager.js +share/plasma/plasmoids/org.kde.panel/contents/ui/main.qml +share/plasma/plasmoids/org.kde.panel/metadata.json +share/plasma/plasmoids/org.kde.plasma.activitypager/metadata.json +share/plasma/plasmoids/org.kde.plasma.folder/metadata.json +share/plasma/plasmoids/org.kde.plasma.icontasks/metadata.json +share/plasma/plasmoids/org.kde.plasma.keyboardlayout/contents/config/config.qml +share/plasma/plasmoids/org.kde.plasma.keyboardlayout/contents/config/main.xml +share/plasma/plasmoids/org.kde.plasma.keyboardlayout/contents/ui/configGeneral.qml +share/plasma/plasmoids/org.kde.plasma.keyboardlayout/contents/ui/main.qml +share/plasma/plasmoids/org.kde.plasma.keyboardlayout/metadata.json +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/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/code/tools.js +share/plasma/plasmoids/org.kde.plasma.kicker/contents/ui/main.qml +share/plasma/plasmoids/org.kde.plasma.kicker/metadata.json +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/AbstractKickoffItemDelegate.qml +share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/ActionMenu.qml +share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/ApplicationsPage.qml +share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/BasePage.qml +share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/ConfigGeneral.qml +share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/DropAreaGridView.qml +share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/DropAreaListView.qml +share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/EmptyPage.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/HorizontalStackView.qml +share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/KickoffDropArea.qml +share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/KickoffGridDelegate.qml +share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/KickoffGridView.qml +share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/KickoffListDelegate.qml +share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/KickoffListView.qml +share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/KickoffSingleton.qml +share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/LeaveButtons.qml +share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/ListOfGridsView.qml +share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/ListOfGridsViewDelegate.qml +share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/NormalPage.qml +share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/PlacesPage.qml +share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/SectionView.qml +share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/VerticalStackView.qml +share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/code/tools.js +share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/main.qml +share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/qmldir +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.json +share/plasma/plasmoids/org.kde.plasma.marginsseparator/contents/config/main.xml +share/plasma/plasmoids/org.kde.plasma.marginsseparator/contents/ui/main.qml +share/plasma/plasmoids/org.kde.plasma.marginsseparator/metadata.json +share/plasma/plasmoids/org.kde.plasma.minimizeall/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.json +share/plasma/plasmoids/org.kde.plasma.showActivityManager/contents/config/config.qml +share/plasma/plasmoids/org.kde.plasma.showActivityManager/contents/config/main.xml +share/plasma/plasmoids/org.kde.plasma.showActivityManager/contents/ui/ConfigAppearance.qml +share/plasma/plasmoids/org.kde.plasma.showActivityManager/contents/ui/main.qml +share/plasma/plasmoids/org.kde.plasma.showActivityManager/metadata.json +share/plasma/plasmoids/org.kde.plasma.showdesktop/contents/config/main.xml +share/plasma/plasmoids/org.kde.plasma.showdesktop/contents/ui/Controller.qml +share/plasma/plasmoids/org.kde.plasma.showdesktop/contents/ui/MinimizeAllController.qml +share/plasma/plasmoids/org.kde.plasma.showdesktop/contents/ui/PeekController.qml +share/plasma/plasmoids/org.kde.plasma.showdesktop/contents/ui/main.qml +share/plasma/plasmoids/org.kde.plasma.showdesktop/metadata.json +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/ConfigAppearance.qml +share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/ConfigBehavior.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/PipeWireThumbnail.qml +share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/PlayerController.qml +share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/PulseAudio.qml +share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/ScrollableTextWrapper.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/code/layout.js +share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/code/tools.js +share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/main.qml +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.json +share/plasma/plasmoids/org.kde.plasma.windowlist/contents/config/config.qml +share/plasma/plasmoids/org.kde.plasma.windowlist/contents/config/main.xml +share/plasma/plasmoids/org.kde.plasma.windowlist/contents/ui/ConfigGeneral.qml +share/plasma/plasmoids/org.kde.plasma.windowlist/contents/ui/MenuButton.qml +share/plasma/plasmoids/org.kde.plasma.windowlist/contents/ui/main.qml +share/plasma/plasmoids/org.kde.plasma.windowlist/metadata.json +share/plasma/plasmoids/touchpad/contents/ui/main.qml +share/plasma/plasmoids/touchpad/metadata.json +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/TaskDropArea.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/AboutPlugin.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/ConfigurationAppletPage.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/ShellContainmentConfiguration.qml +share/plasma/shells/org.kde.plasma.desktop/contents/configuration/panelconfiguration/PanelRepresentation.qml +share/plasma/shells/org.kde.plasma.desktop/contents/configuration/panelconfiguration/Ruler.qml +share/plasma/shells/org.kde.plasma.desktop/contents/configuration/panelconfiguration/SliderHandle.qml +share/plasma/shells/org.kde.plasma.desktop/contents/configuration/shellcontainmentconfiguration/Delegate.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/main.js +share/plasma/shells/org.kde.plasma.desktop/contents/updates/containmentactions_middlebutton.js +share/plasma/shells/org.kde.plasma.desktop/contents/updates/digitalclock_migrate_font_settings.js +share/plasma/shells/org.kde.plasma.desktop/contents/updates/digitalclock_migrate_showseconds_setting.js +share/plasma/shells/org.kde.plasma.desktop/contents/updates/digitalclock_rename_timezonedisplay_key.js +share/plasma/shells/org.kde.plasma.desktop/contents/updates/folderview_fix_recursive_screenmapping.js +share/plasma/shells/org.kde.plasma.desktop/contents/updates/keyboardlayout_migrateiconsetting.js +share/plasma/shells/org.kde.plasma.desktop/contents/updates/keyboardlayout_remove_shortcut.js +share/plasma/shells/org.kde.plasma.desktop/contents/updates/klipper_clear_config.js +share/plasma/shells/org.kde.plasma.desktop/contents/updates/maintain_existing_desktop_icon_sizes.js +share/plasma/shells/org.kde.plasma.desktop/contents/updates/mediaframe_migrate_useBackground_setting.js +share/plasma/shells/org.kde.plasma.desktop/contents/updates/migrate_font_weights.js +share/plasma/shells/org.kde.plasma.desktop/contents/updates/move_desktop_layout_config.js +share/plasma/shells/org.kde.plasma.desktop/contents/updates/no_middle_click_paste_on_panels.js +share/plasma/shells/org.kde.plasma.desktop/contents/updates/systemloadviewer_systemmonitor.js +share/plasma/shells/org.kde.plasma.desktop/contents/updates/unlock_widgets.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/contents/views/PreviewBanner.qml +share/plasma/shells/org.kde.plasma.desktop/metadata.json +share/qlogging-categories6/kcm_kded.categories +share/qlogging-categories6/kcm_keyboard.categories +share/qlogging-categories6/kcm_mouse.categories +share/qlogging-categories6/kcm_tablet.categories +share/qlogging-categories6/kcm_touchscreen.categories +share/qlogging-categories6/kcmkeys.categories +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 diff --git a/x11/plasma6-plasma-integration/Makefile b/x11/plasma6-plasma-integration/Makefile new file mode 100644 index 000000000000..52245ff75881 --- /dev/null +++ b/x11/plasma6-plasma-integration/Makefile @@ -0,0 +1,22 @@ +PORTNAME= plasma-integration +DISTVERSION= ${KDE_PLASMA_VERSION} +CATEGORIES= x11 kde kde-plasma + +COMMENT= Qt Platform Theme integration plugins for the Plasma workspaces +MAINTAINER= kde@FreeBSD.org + +RUN_DEPENDS= hack-font>0:x11-fonts/hack-font \ + noto-basic>0:x11-fonts/noto-basic \ + noto-emoji>0:x11-fonts/noto-emoji + +USES= cmake gettext kde:6 qt:6 shebangfix tar:xz +USE_KDE= breeze xdg-desktop-portal-kde \ + ecm:build plasma-wayland-protocols:build +USE_QT= base + +CMAKE_ON= BUILD_QT6 +CMAKE_OFF= BUILD_QT5 + +SHEBANG_FILES= qt6/src/platformtheme/*.pl + +.include diff --git a/x11/plasma6-plasma-integration/distinfo b/x11/plasma6-plasma-integration/distinfo new file mode 100644 index 000000000000..38df5f720d5c --- /dev/null +++ b/x11/plasma6-plasma-integration/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1701525143 +SHA256 (KDE/plasma/5.90.0/plasma-integration-5.90.0.tar.xz) = fd5258a40703c7481505fb6864ac74272061d52b24183ee779176f87a3eac855 +SIZE (KDE/plasma/5.90.0/plasma-integration-5.90.0.tar.xz) = 91920 diff --git a/x11/plasma6-plasma-integration/pkg-plist b/x11/plasma6-plasma-integration/pkg-plist new file mode 100644 index 000000000000..6c6ea72f9ae2 --- /dev/null +++ b/x11/plasma6-plasma-integration/pkg-plist @@ -0,0 +1,60 @@ +%%QT_PLUGINDIR%%/platformthemes/KDEPlasmaPlatformTheme6.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/az/LC_MESSAGES/plasmaintegration5.mo +share/locale/bg/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/eo/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/hi/LC_MESSAGES/plasmaintegration5.mo +share/locale/hu/LC_MESSAGES/plasmaintegration5.mo +share/locale/ia/LC_MESSAGES/plasmaintegration5.mo +share/locale/id/LC_MESSAGES/plasmaintegration5.mo +share/locale/it/LC_MESSAGES/plasmaintegration5.mo +share/locale/ja/LC_MESSAGES/plasmaintegration5.mo +share/locale/ka/LC_MESSAGES/plasmaintegration5.mo +share/locale/ko/LC_MESSAGES/plasmaintegration5.mo +share/locale/lt/LC_MESSAGES/plasmaintegration5.mo +share/locale/ml/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/ro/LC_MESSAGES/plasmaintegration5.mo +share/locale/ru/LC_MESSAGES/plasmaintegration5.mo +share/locale/sa/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/ta/LC_MESSAGES/plasmaintegration5.mo +share/locale/tr/LC_MESSAGES/plasmaintegration5.mo +share/locale/uk/LC_MESSAGES/plasmaintegration5.mo +share/locale/vi/LC_MESSAGES/plasmaintegration5.mo +share/locale/zh_CN/LC_MESSAGES/plasmaintegration5.mo +share/locale/zh_TW/LC_MESSAGES/plasmaintegration5.mo diff --git a/x11/plasma6-plasma-workspace/Makefile b/x11/plasma6-plasma-workspace/Makefile new file mode 100644 index 000000000000..d4de60458cec --- /dev/null +++ b/x11/plasma6-plasma-workspace/Makefile @@ -0,0 +1,42 @@ +PORTNAME= plasma-workspace +DISTVERSION= ${KDE_PLASMA_VERSION} +CATEGORIES= x11 kde kde-plasma + +COMMENT= KDE Plasma Workspace +MAINTAINER= kde@FreeBSD.org + +BUILD_DEPENDS= wayland-protocols>=0:graphics/wayland-protocols +LIB_DEPENDS= libcanberra.so:audio/libcanberra \ + libfontconfig.so:x11-fonts/fontconfig \ + libfreetype.so:print/freetype2 \ + libicui18n.so:devel/icu \ + libpipewire-0.3.so:multimedia/pipewire \ + libqalculate.so:math/libqalculate \ + libudev.so:devel/libudev-devd \ + libwayland-client.so:graphics/wayland \ + libxcb-image.so:x11/xcb-util-image \ + libxcb-util.so:x11/xcb-util \ + libxkbcommon.so:x11/libxkbcommon \ + libKExiv2Qt6.so:graphics/libkexiv2-devel + +RUN_DEPENDS= ${LOCALBASE}/bin/genv:sysutils/coreutils + +USES= cmake desktop-file-utils gettext gl kde:6 pkgconfig qt:6 \ + tar:xz xorg +USE_GL= gl opengl +USE_KDE= activities activities-stats archive attica5 auth baloo5 \ + bookmarks colorscheme completion config configwidgets \ + coreaddons crash dbusaddons doctools filemetadata globalaccel \ + guiaddons holidays i18n iconthemes idletime itemmodels \ + itemviews jobwidgets kcmutils kdeclarative kio kirigami-addons \ + kirigami2 kpipewire kquickcharts kscreenlocker kwin \ + layer-shell-qt libkscreen libksysguard newstuff notifications \ + notifyconfig package parts plasma5support prison runner \ + service solid sonnet statusnotifieritem svg syntaxhighlighting \ + texteditor textwidgets unitconversion userfeedback wallet \ + widgetsaddons windowsystem xmlgui \ + ecm:build plasma-wayland-protocols:build +USE_QT= 5compat base declarative phonon4 svg wayland +USE_XORG= ice sm x11 xau xcb xcursor xext xfixes xft xi xrender xtst + +.include diff --git a/x11/plasma6-plasma-workspace/distinfo b/x11/plasma6-plasma-workspace/distinfo new file mode 100644 index 000000000000..48ba8820f7b8 --- /dev/null +++ b/x11/plasma6-plasma-workspace/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1701555842 +SHA256 (KDE/plasma/5.90.0/plasma-workspace-5.90.0.tar.xz) = e3987220a0f4c635532687cc463368009320f3c96adac82725640296bc86d61a +SIZE (KDE/plasma/5.90.0/plasma-workspace-5.90.0.tar.xz) = 19560720 diff --git a/x11/plasma6-plasma-workspace/pkg-plist b/x11/plasma6-plasma-workspace/pkg-plist new file mode 100644 index 000000000000..2a7388f03567 --- /dev/null +++ b/x11/plasma6-plasma-workspace/pkg-plist @@ -0,0 +1,6476 @@ +bin/gmenudbusmenuproxy +bin/kcminit +bin/kcminit_startup +bin/kcolorschemeeditor +bin/kfontinst +bin/kfontview +bin/krunner +bin/ksmserver +bin/ksplashqml +bin/lookandfeeltool +bin/plasma-apply-colorscheme +bin/plasma-apply-cursortheme +bin/plasma-apply-desktoptheme +bin/plasma-apply-lookandfeel +bin/plasma-apply-wallpaperimage +bin/plasma-interactiveconsole +bin/plasma-shutdown +bin/plasma_session +bin/plasma_waitforname +bin/plasmashell +bin/plasmawindowed +bin/startplasma-wayland +bin/startplasma-x11 +bin/xembedsniproxy +etc/xdg/autostart/gmenudbusmenuproxy.desktop +etc/xdg/autostart/org.kde.plasmashell.desktop +etc/xdg/autostart/xembedsniproxy.desktop +etc/xdg/menus/plasma-applications.menu +etc/xdg/plasmanotifyrc +etc/xdg/taskmanagerrulesrc +include/colorcorrect/colorcorrect_export.h +include/colorcorrect/colorcorrectconstants.h +include/colorcorrect/compositorcoloradaptor.h +include/colorcorrect/geolocator.h +include/krdb/krdb.h +include/krdb/krdb_export.h +include/kworkspace6/autostartscriptdesktopfile.h +include/kworkspace6/config-libkworkspace.h +include/kworkspace6/kdisplaymanager.h +include/kworkspace6/kworkspace.h +include/kworkspace6/kworkspace_export.h +include/kworkspace6/outputorderwatcher.h +include/kworkspace6/sessionmanagement.h +include/notificationmanager/badgesettings.h +include/notificationmanager/behaviorsettings.h +include/notificationmanager/donotdisturbsettings.h +include/notificationmanager/job.h +include/notificationmanager/jobsettings.h +include/notificationmanager/jobsmodel.h +include/notificationmanager/notification.h +include/notificationmanager/notificationmanager_export.h +include/notificationmanager/notifications.h +include/notificationmanager/notificationsettings.h +include/notificationmanager/server.h +include/notificationmanager/settings.h +include/plasma5support/weather/ion.h +include/plasma5support/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/regionfiltermode.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/waylandstartuptasksmodel.h +include/taskmanager/waylandtasksmodel.h +include/taskmanager/windowtasksmodel.h +include/taskmanager/xstartuptasksmodel.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/LibNotificationManager/LibNotificationManagerConfig.cmake +lib/cmake/LibNotificationManager/LibNotificationManagerConfigVersion.cmake +lib/cmake/LibNotificationManager/LibNotificationManagerLibraryTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/LibNotificationManager/LibNotificationManagerLibraryTargets.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/krunnerglobalshortcuts +lib/kconf_update_bin/krunnerhistory +lib/kconf_update_bin/plasma6.0-remove-old-shortcuts +lib/kconf_update_bin/plasmashell-5.27-use-panel-thickness-in-default-group +lib/kconf_update_bin/plasmashell-6.0-keep-default-floating-setting-for-plasma-5-panels +lib/kconf_update_bin/plasmashell-6.0-migrate-panel-hiding-setting +lib/libcolorcorrect.so +lib/libcolorcorrect.so.5 +lib/libcolorcorrect.so.%%KDE_PLASMA_VERSION%% +lib/libexec/baloorunner +lib/libexec/kf6/kauth/fontinst +lib/libexec/kf6/kauth/fontinst_helper +lib/libexec/kf6/kauth/fontinst_x11 +lib/libexec/kfontprint +lib/libexec/ksmserver-logout-greeter +lib/libexec/plasma-changeicons +lib/libexec/plasma-dbus-run-session-if-needed +lib/libexec/plasma-sourceenv.sh +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%% +lib/libkmpris.so +lib/libkmpris.so.5 +lib/libkmpris.so.%%KDE_PLASMA_VERSION%% +lib/libkrdb.so +lib/libkworkspace6.so +lib/libkworkspace6.so.5 +lib/libkworkspace6.so.%%KDE_PLASMA_VERSION%% +lib/libnotificationmanager.so +lib/libnotificationmanager.so.1 +lib/libnotificationmanager.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%%/kf6/kded/appmenu.so +%%QT_PLUGINDIR%%/kf6/kded/colorcorrectlocationupdater.so +%%QT_PLUGINDIR%%/kf6/kded/desktopnotifier.so +%%QT_PLUGINDIR%%/kf6/kded/devicenotifications.so +%%QT_PLUGINDIR%%/kf6/kded/freespacenotifier.so +%%QT_PLUGINDIR%%/kf6/kded/ktimezoned.so +%%QT_PLUGINDIR%%/kf6/kded/mprisservice.so +%%QT_PLUGINDIR%%/kf6/kded/plasma-session-shortcuts.so +%%QT_PLUGINDIR%%/kf6/kded/plasma_accentcolor_service.so +%%QT_PLUGINDIR%%/kf6/kded/solidautoeject.so +%%QT_PLUGINDIR%%/kf6/kded/soliduiserver.so +%%QT_PLUGINDIR%%/kf6/kded/statusnotifierwatcher.so +%%QT_PLUGINDIR%%/kf6/kfileitemaction/wallpaperfileitemaction.so +%%QT_PLUGINDIR%%/kf6/kio/applications.so +%%QT_PLUGINDIR%%/kf6/kio/desktop.so +%%QT_PLUGINDIR%%/kf6/kio/kio_fonts.so +%%QT_PLUGINDIR%%/kf6/krunner/calculator.so +%%QT_PLUGINDIR%%/kf6/krunner/helprunner.so +%%QT_PLUGINDIR%%/kf6/krunner/kcms/kcm_krunner_kill.so +%%QT_PLUGINDIR%%/kf6/krunner/krunner_bookmarksrunner.so +%%QT_PLUGINDIR%%/kf6/krunner/krunner_kill.so +%%QT_PLUGINDIR%%/kf6/krunner/krunner_placesrunner.so +%%QT_PLUGINDIR%%/kf6/krunner/krunner_powerdevil.so +%%QT_PLUGINDIR%%/kf6/krunner/krunner_recentdocuments.so +%%QT_PLUGINDIR%%/kf6/krunner/krunner_services.so +%%QT_PLUGINDIR%%/kf6/krunner/krunner_sessions.so +%%QT_PLUGINDIR%%/kf6/krunner/krunner_shell.so +%%QT_PLUGINDIR%%/kf6/krunner/krunner_webshortcuts.so +%%QT_PLUGINDIR%%/kf6/krunner/locations.so +%%QT_PLUGINDIR%%/kf6/packagestructure/plasma_layouttemplate.so +%%QT_PLUGINDIR%%/kf6/packagestructure/plasma_lookandfeel.so +%%QT_PLUGINDIR%%/kf6/packagestructure/wallpaper_images.so +%%QT_PLUGINDIR%%/kf6/parts/kfontviewpart.so +%%QT_PLUGINDIR%%/kf6/thumbcreator/fontthumbnail.so +%%QT_PLUGINDIR%%/phonon_platform/kde.so +%%QT_PLUGINDIR%%/plasma/applets/org.kde.plasma.appmenu.so +%%QT_PLUGINDIR%%/plasma/applets/org.kde.plasma.calendar.so +%%QT_PLUGINDIR%%/plasma/applets/org.kde.plasma.icon.so +%%QT_PLUGINDIR%%/plasma/applets/org.kde.plasma.notifications.so +%%QT_PLUGINDIR%%/plasma/applets/org.kde.plasma.panelspacer.so +%%QT_PLUGINDIR%%/plasma/applets/org.kde.plasma.private.systemtray.so +%%QT_PLUGINDIR%%/plasma/applets/org.kde.plasma.systemmonitor.so +%%QT_PLUGINDIR%%/plasma/applets/org.kde.plasma.systemtray.so +%%QT_PLUGINDIR%%/plasma/containmentactions/org.kde.applauncher.so +%%QT_PLUGINDIR%%/plasma/containmentactions/org.kde.contextmenu.so +%%QT_PLUGINDIR%%/plasma/containmentactions/org.kde.paste.so +%%QT_PLUGINDIR%%/plasma/containmentactions/org.kde.switchdesktop.so +%%QT_PLUGINDIR%%/plasma/containmentactions/switchactivity.so +%%QT_PLUGINDIR%%/plasma/containmentactions/switchwindow.so +%%QT_PLUGINDIR%%/plasma/kcminit/kcm_fonts_init.so +%%QT_PLUGINDIR%%/plasma/kcminit/kcm_style_init.so +%%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_autostart.so +%%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_colors.so +%%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_cursortheme.so +%%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_desktoptheme.so +%%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_feedback.so +%%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_fonts.so +%%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_icons.so +%%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_lookandfeel.so +%%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_nightcolor.so +%%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_notifications.so +%%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_regionandlang.so +%%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_soundtheme.so +%%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_style.so +%%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_users.so +%%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_wallpaper.so +%%QT_PLUGINDIR%%/plasma/kcms/systemsettings_qwidgets/kcm_fontinst.so +%%QT_PLUGINDIR%%/plasma5support/dataengine/plasma_engine_activities.so +%%QT_PLUGINDIR%%/plasma5support/dataengine/plasma_engine_applicationjobs.so +%%QT_PLUGINDIR%%/plasma5support/dataengine/plasma_engine_apps.so +%%QT_PLUGINDIR%%/plasma5support/dataengine/plasma_engine_bbcukmet.so +%%QT_PLUGINDIR%%/plasma5support/dataengine/plasma_engine_clipboard.so +%%QT_PLUGINDIR%%/plasma5support/dataengine/plasma_engine_devicenotifications.so +%%QT_PLUGINDIR%%/plasma5support/dataengine/plasma_engine_dict.so +%%QT_PLUGINDIR%%/plasma5support/dataengine/plasma_engine_dwd.so +%%QT_PLUGINDIR%%/plasma5support/dataengine/plasma_engine_envcan.so +%%QT_PLUGINDIR%%/plasma5support/dataengine/plasma_engine_executable.so +%%QT_PLUGINDIR%%/plasma5support/dataengine/plasma_engine_favicons.so +%%QT_PLUGINDIR%%/plasma5support/dataengine/plasma_engine_filebrowser.so +%%QT_PLUGINDIR%%/plasma5support/dataengine/plasma_engine_hotplug.so +%%QT_PLUGINDIR%%/plasma5support/dataengine/plasma_engine_keystate.so +%%QT_PLUGINDIR%%/plasma5support/dataengine/plasma_engine_mouse.so +%%QT_PLUGINDIR%%/plasma5support/dataengine/plasma_engine_noaa.so +%%QT_PLUGINDIR%%/plasma5support/dataengine/plasma_engine_notifications.so +%%QT_PLUGINDIR%%/plasma5support/dataengine/plasma_engine_packagekit.so +%%QT_PLUGINDIR%%/plasma5support/dataengine/plasma_engine_places.so +%%QT_PLUGINDIR%%/plasma5support/dataengine/plasma_engine_powermanagement.so +%%QT_PLUGINDIR%%/plasma5support/dataengine/plasma_engine_soliddevice.so +%%QT_PLUGINDIR%%/plasma5support/dataengine/plasma_engine_statusnotifieritem.so +%%QT_PLUGINDIR%%/plasma5support/dataengine/plasma_engine_time.so +%%QT_PLUGINDIR%%/plasma5support/dataengine/plasma_engine_weather.so +%%QT_PLUGINDIR%%/plasma5support/dataengine/plasma_engine_wettercom.so +%%QT_PLUGINDIR%%/plasmacalendarplugins/holidays/HolidaysConfig.qml +%%QT_PLUGINDIR%%/plasmacalendarplugins/holidaysevents.so +%%QT_QMLDIR%%/org/kde/breeze/components/ActionButton.qml +%%QT_QMLDIR%%/org/kde/breeze/components/Battery.qml +%%QT_QMLDIR%%/org/kde/breeze/components/Clock.qml +%%QT_QMLDIR%%/org/kde/breeze/components/RejectPasswordAnimation.qml +%%QT_QMLDIR%%/org/kde/breeze/components/RejectPasswordPathAnimation.qml +%%QT_QMLDIR%%/org/kde/breeze/components/SessionManagementScreen.qml +%%QT_QMLDIR%%/org/kde/breeze/components/UserDelegate.qml +%%QT_QMLDIR%%/org/kde/breeze/components/UserList.qml +%%QT_QMLDIR%%/org/kde/breeze/components/VirtualKeyboard.qml +%%QT_QMLDIR%%/org/kde/breeze/components/VirtualKeyboard_wayland.qml +%%QT_QMLDIR%%/org/kde/breeze/components/WallpaperFader.qml +%%QT_QMLDIR%%/org/kde/breeze/components/components.qmltypes +%%QT_QMLDIR%%/org/kde/breeze/components/kde-qmlmodule.version +%%QT_QMLDIR%%/org/kde/breeze/components/libcomponents.so +%%QT_QMLDIR%%/org/kde/breeze/components/qmldir +%%QT_QMLDIR%%/org/kde/colorcorrect/colorcorrect.qmltypes +%%QT_QMLDIR%%/org/kde/colorcorrect/kde-qmlmodule.version +%%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/notificationmanager/kde-qmlmodule.version +%%QT_QMLDIR%%/org/kde/notificationmanager/libnotificationmanagerplugin.so +%%QT_QMLDIR%%/org/kde/notificationmanager/notificationmanager.qmltypes +%%QT_QMLDIR%%/org/kde/notificationmanager/qmldir +%%QT_QMLDIR%%/org/kde/plasma/lookandfeel/liblookandfeelqmlplugin.so +%%QT_QMLDIR%%/org/kde/plasma/lookandfeel/qmldir +%%QT_QMLDIR%%/org/kde/plasma/private/appmenu/libappmenuplugin.so +%%QT_QMLDIR%%/org/kde/plasma/private/appmenu/qmldir +%%QT_QMLDIR%%/org/kde/plasma/private/brightnesscontrolplugin/brightnesscontrolplugin.qmltypes +%%QT_QMLDIR%%/org/kde/plasma/private/brightnesscontrolplugin/kde-qmlmodule.version +%%QT_QMLDIR%%/org/kde/plasma/private/brightnesscontrolplugin/libbrightnesscontrolplugin.so +%%QT_QMLDIR%%/org/kde/plasma/private/brightnesscontrolplugin/qmldir +%%QT_QMLDIR%%/org/kde/plasma/private/containmentlayoutmanager/BasicAppletContainer.qml +%%QT_QMLDIR%%/org/kde/plasma/private/containmentlayoutmanager/ConfigOverlayWithHandles.qml +%%QT_QMLDIR%%/org/kde/plasma/private/containmentlayoutmanager/PlaceHolder.qml +%%QT_QMLDIR%%/org/kde/plasma/private/containmentlayoutmanager/libcontainmentlayoutmanagerplugin.so +%%QT_QMLDIR%%/org/kde/plasma/private/containmentlayoutmanager/private/BasicResizeHandle.qml +%%QT_QMLDIR%%/org/kde/plasma/private/containmentlayoutmanager/qmldir +%%QT_QMLDIR%%/org/kde/plasma/private/digitalclock/libdigitalclockplugin.so +%%QT_QMLDIR%%/org/kde/plasma/private/digitalclock/qmldir +%%QT_QMLDIR%%/org/kde/plasma/private/kicker/libkickerplugin.so +%%QT_QMLDIR%%/org/kde/plasma/private/kicker/qmldir +%%QT_QMLDIR%%/org/kde/plasma/private/mediacontroller/libmediacontrollerplugin.so +%%QT_QMLDIR%%/org/kde/plasma/private/mediacontroller/qmldir +%%QT_QMLDIR%%/org/kde/plasma/private/mpris/kde-qmlmodule.version +%%QT_QMLDIR%%/org/kde/plasma/private/mpris/kmpris.qmltypes +%%QT_QMLDIR%%/org/kde/plasma/private/mpris/libkmprisplugin.so +%%QT_QMLDIR%%/org/kde/plasma/private/mpris/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/calendar/DayDelegate.qml +%%QT_QMLDIR%%/org/kde/plasma/workspace/calendar/DaysCalendar.qml +%%QT_QMLDIR%%/org/kde/plasma/workspace/calendar/InfiniteList.qml +%%QT_QMLDIR%%/org/kde/plasma/workspace/calendar/MonthMenu.qml +%%QT_QMLDIR%%/org/kde/plasma/workspace/calendar/MonthView.qml +%%QT_QMLDIR%%/org/kde/plasma/workspace/calendar/MonthViewHeader.qml +%%QT_QMLDIR%%/org/kde/plasma/workspace/calendar/libcalendarplugin.so +%%QT_QMLDIR%%/org/kde/plasma/workspace/calendar/qmldir +%%QT_QMLDIR%%/org/kde/plasma/workspace/components/BadgeOverlay.qml +%%QT_QMLDIR%%/org/kde/plasma/workspace/components/BatteryIcon.qml +%%QT_QMLDIR%%/org/kde/plasma/workspace/components/KeyboardLayoutSwitcher.qml +%%QT_QMLDIR%%/org/kde/plasma/workspace/components/qmldir +%%QT_QMLDIR%%/org/kde/plasma/workspace/dialogs/SystemDialog.qml +%%QT_QMLDIR%%/org/kde/plasma/workspace/dialogs/examples/test.qml +%%QT_QMLDIR%%/org/kde/plasma/workspace/dialogs/qmldir +%%QT_QMLDIR%%/org/kde/plasma/workspace/keyboardlayout/libkeyboardlayoutplugin.so +%%QT_QMLDIR%%/org/kde/plasma/workspace/keyboardlayout/qmldir +%%QT_QMLDIR%%/org/kde/plasma/workspace/trianglemousefilter/libtrianglemousefilterplugin.so +%%QT_QMLDIR%%/org/kde/plasma/workspace/trianglemousefilter/qmldir +%%QT_QMLDIR%%/org/kde/taskmanager/libtaskmanagerplugin.so +%%QT_QMLDIR%%/org/kde/taskmanager/qmldir +lib/systemd/user/plasma-baloorunner.service +lib/systemd/user/plasma-gmenudbusmenuproxy.service +lib/systemd/user/plasma-kcminit-phase1.service +lib/systemd/user/plasma-kcminit.service +lib/systemd/user/plasma-krunner.service +lib/systemd/user/plasma-ksmserver.service +lib/systemd/user/plasma-ksplash.service +lib/systemd/user/plasma-plasmashell.service +lib/systemd/user/plasma-restoresession.service +lib/systemd/user/plasma-xembedsniproxy.service +share/applications/kcm_autostart.desktop +share/applications/kcm_colors.desktop +share/applications/kcm_cursortheme.desktop +share/applications/kcm_desktoptheme.desktop +share/applications/kcm_feedback.desktop +share/applications/kcm_fontinst.desktop +share/applications/kcm_fonts.desktop +share/applications/kcm_icons.desktop +share/applications/kcm_lookandfeel.desktop +share/applications/kcm_nightcolor.desktop +share/applications/kcm_notifications.desktop +share/applications/kcm_regionandlang.desktop +share/applications/kcm_soundtheme.desktop +share/applications/kcm_style.desktop +share/applications/kcm_users.desktop +share/applications/kcm_wallpaper.desktop +share/applications/org.kde.kcolorschemeeditor.desktop +share/applications/org.kde.kfontview.desktop +share/applications/org.kde.plasmashell.desktop +share/applications/org.kde.plasmawindowed.desktop +share/config.kcfg/colorssettings.kcfg +share/config.kcfg/cursorthemesettings.kcfg +share/config.kcfg/feedbacksettings.kcfg +share/config.kcfg/fontssettings.kcfg +share/config.kcfg/freespacenotifier.kcfg +share/config.kcfg/iconssettingsbase.kcfg +share/config.kcfg/launchfeedbacksettings.kcfg +share/config.kcfg/lookandfeelsettings.kcfg +share/config.kcfg/stylesettings.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/org.kde.KSplash.service +share/dbus-1/services/org.kde.LogoutPrompt.service +share/dbus-1/services/org.kde.Shutdown.service +share/dbus-1/services/org.kde.fontinst.service +share/dbus-1/services/org.kde.krunner.service +share/dbus-1/services/org.kde.plasma.Notifications.service +share/dbus-1/services/org.kde.runners.baloo.service +share/dbus-1/system-services/org.kde.fontinst.service +share/dbus-1/system.d/org.kde.fontinst.conf +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-network.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/autostart/index.cache.bz2 +share/doc/HTML/ca/kcontrol/autostart/index.docbook +share/doc/HTML/ca/kcontrol/colors/index.cache.bz2 +share/doc/HTML/ca/kcontrol/colors/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/get-new-theme.png +share/doc/HTML/ca/kcontrol/desktopthemedetails/index.cache.bz2 +share/doc/HTML/ca/kcontrol/desktopthemedetails/index.docbook +share/doc/HTML/ca/kcontrol/desktopthemedetails/main.png +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/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/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/main.png +share/doc/HTML/ca/kcontrol/icons/use-of-icons.png +share/doc/HTML/ca/kcontrol/kcmstyle/index.cache.bz2 +share/doc/HTML/ca/kcontrol/kcmstyle/index.docbook +share/doc/HTML/ca/kcontrol/lookandfeel/index.cache.bz2 +share/doc/HTML/ca/kcontrol/lookandfeel/index.docbook +share/doc/HTML/ca/kcontrol/notifications/index.cache.bz2 +share/doc/HTML/ca/kcontrol/notifications/index.docbook +share/doc/HTML/ca/kcontrol/region_language/index.cache.bz2 +share/doc/HTML/ca/kcontrol/region_language/index.docbook +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/autostart/index.cache.bz2 +share/doc/HTML/de/kcontrol/autostart/index.docbook +share/doc/HTML/de/kcontrol/colors/index.cache.bz2 +share/doc/HTML/de/kcontrol/colors/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/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/kcmstyle/index.cache.bz2 +share/doc/HTML/de/kcontrol/kcmstyle/index.docbook +share/doc/HTML/de/kcontrol/notifications/index.cache.bz2 +share/doc/HTML/de/kcontrol/notifications/index.docbook +share/doc/HTML/de/kcontrol/region_language/index.cache.bz2 +share/doc/HTML/de/kcontrol/region_language/index.docbook +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/autostart/index.cache.bz2 +share/doc/HTML/en/kcontrol/autostart/index.docbook +share/doc/HTML/en/kcontrol/colors/index.cache.bz2 +share/doc/HTML/en/kcontrol/colors/index.docbook +share/doc/HTML/en/kcontrol/cursortheme/cursor-size.png +share/doc/HTML/en/kcontrol/cursortheme/get-new-stuff.png +share/doc/HTML/en/kcontrol/cursortheme/index.cache.bz2 +share/doc/HTML/en/kcontrol/cursortheme/index.docbook +share/doc/HTML/en/kcontrol/cursortheme/launch-feedback.png +share/doc/HTML/en/kcontrol/cursortheme/main.png +share/doc/HTML/en/kcontrol/desktopthemedetails/edit-delete.png +share/doc/HTML/en/kcontrol/desktopthemedetails/edit-undo.png +share/doc/HTML/en/kcontrol/desktopthemedetails/get-new-theme.png +share/doc/HTML/en/kcontrol/desktopthemedetails/index.cache.bz2 +share/doc/HTML/en/kcontrol/desktopthemedetails/index.docbook +share/doc/HTML/en/kcontrol/desktopthemedetails/main.png +share/doc/HTML/en/kcontrol/fontinst/edit-delete.png +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/index.cache.bz2 +share/doc/HTML/en/kcontrol/fonts/index.docbook +share/doc/HTML/en/kcontrol/fonts/main.png +share/doc/HTML/en/kcontrol/icons/edit-delete.png +share/doc/HTML/en/kcontrol/icons/edit-undo.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/main.png +share/doc/HTML/en/kcontrol/icons/use-of-icons.png +share/doc/HTML/en/kcontrol/kcmstyle/index.cache.bz2 +share/doc/HTML/en/kcontrol/kcmstyle/index.docbook +share/doc/HTML/en/kcontrol/lookandfeel/component-chooser_1.png +share/doc/HTML/en/kcontrol/lookandfeel/component-chooser_2.png +share/doc/HTML/en/kcontrol/lookandfeel/get-new-stuff.png +share/doc/HTML/en/kcontrol/lookandfeel/index.cache.bz2 +share/doc/HTML/en/kcontrol/lookandfeel/index.docbook +share/doc/HTML/en/kcontrol/lookandfeel/main.png +share/doc/HTML/en/kcontrol/notifications/index.cache.bz2 +share/doc/HTML/en/kcontrol/notifications/index.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-widget.png +share/doc/HTML/en/klipper/screenshot.png +share/doc/HTML/es/kcontrol/autostart/index.cache.bz2 +share/doc/HTML/es/kcontrol/autostart/index.docbook +share/doc/HTML/es/kcontrol/colors/index.cache.bz2 +share/doc/HTML/es/kcontrol/colors/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/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/icons/index.cache.bz2 +share/doc/HTML/es/kcontrol/icons/index.docbook +share/doc/HTML/es/kcontrol/kcmstyle/index.cache.bz2 +share/doc/HTML/es/kcontrol/kcmstyle/index.docbook +share/doc/HTML/es/kcontrol/lookandfeel/index.cache.bz2 +share/doc/HTML/es/kcontrol/lookandfeel/index.docbook +share/doc/HTML/es/kcontrol/notifications/index.cache.bz2 +share/doc/HTML/es/kcontrol/notifications/index.docbook +share/doc/HTML/es/kcontrol/region_language/index.cache.bz2 +share/doc/HTML/es/kcontrol/region_language/index.docbook +share/doc/HTML/es/kcontrol/screenlocker/index.cache.bz2 +share/doc/HTML/es/kcontrol/screenlocker/index.docbook +share/doc/HTML/es/klipper/index.cache.bz2 +share/doc/HTML/es/klipper/index.docbook +share/doc/HTML/fr/kcontrol/fontinst/index.cache.bz2 +share/doc/HTML/fr/kcontrol/fontinst/index.docbook +share/doc/HTML/id/kcontrol/autostart/index.cache.bz2 +share/doc/HTML/id/kcontrol/autostart/index.docbook +share/doc/HTML/id/kcontrol/colors/index.cache.bz2 +share/doc/HTML/id/kcontrol/colors/index.docbook +share/doc/HTML/id/kcontrol/cursortheme/index.cache.bz2 +share/doc/HTML/id/kcontrol/cursortheme/index.docbook +share/doc/HTML/id/kcontrol/desktopthemedetails/index.cache.bz2 +share/doc/HTML/id/kcontrol/desktopthemedetails/index.docbook +share/doc/HTML/id/kcontrol/fontinst/index.cache.bz2 +share/doc/HTML/id/kcontrol/fontinst/index.docbook +share/doc/HTML/id/kcontrol/fonts/index.cache.bz2 +share/doc/HTML/id/kcontrol/fonts/index.docbook +share/doc/HTML/id/kcontrol/formats/index.cache.bz2 +share/doc/HTML/id/kcontrol/formats/index.docbook +share/doc/HTML/id/kcontrol/icons/index.cache.bz2 +share/doc/HTML/id/kcontrol/icons/index.docbook +share/doc/HTML/id/kcontrol/kcmstyle/index.cache.bz2 +share/doc/HTML/id/kcontrol/kcmstyle/index.docbook +share/doc/HTML/id/kcontrol/region_language/index.cache.bz2 +share/doc/HTML/id/kcontrol/region_language/index.docbook +share/doc/HTML/id/kcontrol/screenlocker/index.cache.bz2 +share/doc/HTML/id/kcontrol/screenlocker/index.docbook +share/doc/HTML/id/klipper/index.cache.bz2 +share/doc/HTML/id/klipper/index.docbook +share/doc/HTML/it/kcontrol/autostart/index.cache.bz2 +share/doc/HTML/it/kcontrol/autostart/index.docbook +share/doc/HTML/it/kcontrol/colors/index.cache.bz2 +share/doc/HTML/it/kcontrol/colors/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/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/kcmstyle/index.cache.bz2 +share/doc/HTML/it/kcontrol/kcmstyle/index.docbook +share/doc/HTML/it/kcontrol/lookandfeel/index.cache.bz2 +share/doc/HTML/it/kcontrol/lookandfeel/index.docbook +share/doc/HTML/it/kcontrol/notifications/index.cache.bz2 +share/doc/HTML/it/kcontrol/notifications/index.docbook +share/doc/HTML/it/kcontrol/region_language/index.cache.bz2 +share/doc/HTML/it/kcontrol/region_language/index.docbook +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/it/klipper/klipper-widget.png +share/doc/HTML/it/klipper/screenshot.png +share/doc/HTML/ko/kcontrol/fonts/index.cache.bz2 +share/doc/HTML/ko/kcontrol/fonts/index.docbook +share/doc/HTML/ko/kcontrol/screenlocker/index.cache.bz2 +share/doc/HTML/ko/kcontrol/screenlocker/index.docbook +share/doc/HTML/nl/kcontrol/autostart/index.cache.bz2 +share/doc/HTML/nl/kcontrol/autostart/index.docbook +share/doc/HTML/nl/kcontrol/colors/index.cache.bz2 +share/doc/HTML/nl/kcontrol/colors/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/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/kcmstyle/index.cache.bz2 +share/doc/HTML/nl/kcontrol/kcmstyle/index.docbook +share/doc/HTML/nl/kcontrol/lookandfeel/index.cache.bz2 +share/doc/HTML/nl/kcontrol/lookandfeel/index.docbook +share/doc/HTML/nl/kcontrol/notifications/index.cache.bz2 +share/doc/HTML/nl/kcontrol/notifications/index.docbook +share/doc/HTML/nl/kcontrol/region_language/index.cache.bz2 +share/doc/HTML/nl/kcontrol/region_language/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/autostart/index.cache.bz2 +share/doc/HTML/pt/kcontrol/autostart/index.docbook +share/doc/HTML/pt/kcontrol/colors/index.cache.bz2 +share/doc/HTML/pt/kcontrol/colors/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/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/kcmstyle/index.cache.bz2 +share/doc/HTML/pt/kcontrol/kcmstyle/index.docbook +share/doc/HTML/pt/kcontrol/region_language/index.cache.bz2 +share/doc/HTML/pt/kcontrol/region_language/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/autostart/index.cache.bz2 +share/doc/HTML/pt_BR/kcontrol/autostart/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/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/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/kcmstyle/index.cache.bz2 +share/doc/HTML/pt_BR/kcontrol/kcmstyle/index.docbook +share/doc/HTML/pt_BR/kcontrol/region_language/index.cache.bz2 +share/doc/HTML/pt_BR/kcontrol/region_language/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/ru/kcontrol/autostart/index.cache.bz2 +share/doc/HTML/ru/kcontrol/autostart/index.docbook +share/doc/HTML/ru/kcontrol/colors/index.cache.bz2 +share/doc/HTML/ru/kcontrol/colors/index.docbook +share/doc/HTML/ru/kcontrol/cursortheme/index.cache.bz2 +share/doc/HTML/ru/kcontrol/cursortheme/index.docbook +share/doc/HTML/ru/kcontrol/desktopthemedetails/index.cache.bz2 +share/doc/HTML/ru/kcontrol/desktopthemedetails/index.docbook +share/doc/HTML/ru/kcontrol/fontinst/index.cache.bz2 +share/doc/HTML/ru/kcontrol/fontinst/index.docbook +share/doc/HTML/ru/kcontrol/fonts/adjust-all.png +share/doc/HTML/ru/kcontrol/fonts/anti-aliasing.png +share/doc/HTML/ru/kcontrol/fonts/index.cache.bz2 +share/doc/HTML/ru/kcontrol/fonts/index.docbook +share/doc/HTML/ru/kcontrol/fonts/main.png +share/doc/HTML/ru/kcontrol/formats/index.cache.bz2 +share/doc/HTML/ru/kcontrol/formats/index.docbook +share/doc/HTML/ru/kcontrol/icons/delete-theme.png +share/doc/HTML/ru/kcontrol/icons/effects.png +share/doc/HTML/ru/kcontrol/icons/get-new-theme.png +share/doc/HTML/ru/kcontrol/icons/index.cache.bz2 +share/doc/HTML/ru/kcontrol/icons/index.docbook +share/doc/HTML/ru/kcontrol/icons/install-theme.png +share/doc/HTML/ru/kcontrol/icons/main.png +share/doc/HTML/ru/kcontrol/icons/size.png +share/doc/HTML/ru/kcontrol/icons/use-of-icons.png +share/doc/HTML/ru/kcontrol/kcmstyle/index.cache.bz2 +share/doc/HTML/ru/kcontrol/kcmstyle/index.docbook +share/doc/HTML/ru/kcontrol/notifications/index.cache.bz2 +share/doc/HTML/ru/kcontrol/notifications/index.docbook +share/doc/HTML/ru/kcontrol/region_language/index.cache.bz2 +share/doc/HTML/ru/kcontrol/region_language/index.docbook +share/doc/HTML/ru/kcontrol/screenlocker/index.cache.bz2 +share/doc/HTML/ru/kcontrol/screenlocker/index.docbook +share/doc/HTML/ru/klipper/index.cache.bz2 +share/doc/HTML/ru/klipper/index.docbook +share/doc/HTML/sr/kcontrol/autostart/index.cache.bz2 +share/doc/HTML/sr/kcontrol/autostart/index.docbook +share/doc/HTML/sr/kcontrol/icons/index.cache.bz2 +share/doc/HTML/sr/kcontrol/icons/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/icons/index.cache.bz2 +share/doc/HTML/sr@latin/kcontrol/icons/index.docbook +share/doc/HTML/sv/kcontrol/autostart/index.cache.bz2 +share/doc/HTML/sv/kcontrol/autostart/index.docbook +share/doc/HTML/sv/kcontrol/colors/index.cache.bz2 +share/doc/HTML/sv/kcontrol/colors/index.docbook +share/doc/HTML/sv/kcontrol/cursortheme/index.cache.bz2 +share/doc/HTML/sv/kcontrol/cursortheme/index.docbook +share/doc/HTML/sv/kcontrol/desktopthemedetails/index.cache.bz2 +share/doc/HTML/sv/kcontrol/desktopthemedetails/index.docbook +share/doc/HTML/sv/kcontrol/fontinst/index.cache.bz2 +share/doc/HTML/sv/kcontrol/fontinst/index.docbook +share/doc/HTML/sv/kcontrol/fonts/index.cache.bz2 +share/doc/HTML/sv/kcontrol/fonts/index.docbook +share/doc/HTML/sv/kcontrol/formats/index.cache.bz2 +share/doc/HTML/sv/kcontrol/formats/index.docbook +share/doc/HTML/sv/kcontrol/icons/index.cache.bz2 +share/doc/HTML/sv/kcontrol/icons/index.docbook +share/doc/HTML/sv/kcontrol/kcmstyle/index.cache.bz2 +share/doc/HTML/sv/kcontrol/kcmstyle/index.docbook +share/doc/HTML/sv/kcontrol/notifications/index.cache.bz2 +share/doc/HTML/sv/kcontrol/notifications/index.docbook +share/doc/HTML/sv/kcontrol/region_language/index.cache.bz2 +share/doc/HTML/sv/kcontrol/region_language/index.docbook +share/doc/HTML/sv/kcontrol/screenlocker/index.cache.bz2 +share/doc/HTML/sv/kcontrol/screenlocker/index.docbook +share/doc/HTML/sv/klipper/index.cache.bz2 +share/doc/HTML/sv/klipper/index.docbook +share/doc/HTML/tr/kcontrol/autostart/index.cache.bz2 +share/doc/HTML/tr/kcontrol/autostart/index.docbook +share/doc/HTML/tr/kcontrol/colors/index.cache.bz2 +share/doc/HTML/tr/kcontrol/colors/index.docbook +share/doc/HTML/tr/kcontrol/cursortheme/index.cache.bz2 +share/doc/HTML/tr/kcontrol/cursortheme/index.docbook +share/doc/HTML/tr/kcontrol/desktopthemedetails/index.cache.bz2 +share/doc/HTML/tr/kcontrol/desktopthemedetails/index.docbook +share/doc/HTML/tr/kcontrol/fontinst/index.cache.bz2 +share/doc/HTML/tr/kcontrol/fontinst/index.docbook +share/doc/HTML/tr/kcontrol/fonts/index.cache.bz2 +share/doc/HTML/tr/kcontrol/fonts/index.docbook +share/doc/HTML/tr/kcontrol/icons/index.cache.bz2 +share/doc/HTML/tr/kcontrol/icons/index.docbook +share/doc/HTML/tr/kcontrol/kcmstyle/index.cache.bz2 +share/doc/HTML/tr/kcontrol/kcmstyle/index.docbook +share/doc/HTML/tr/kcontrol/lookandfeel/index.cache.bz2 +share/doc/HTML/tr/kcontrol/lookandfeel/index.docbook +share/doc/HTML/tr/kcontrol/notifications/index.cache.bz2 +share/doc/HTML/tr/kcontrol/notifications/index.docbook +share/doc/HTML/tr/kcontrol/region_language/index.cache.bz2 +share/doc/HTML/tr/kcontrol/region_language/index.docbook +share/doc/HTML/tr/kcontrol/screenlocker/index.cache.bz2 +share/doc/HTML/tr/kcontrol/screenlocker/index.docbook +share/doc/HTML/tr/klipper/index.cache.bz2 +share/doc/HTML/tr/klipper/index.docbook +share/doc/HTML/uk/kcontrol/autostart/index.cache.bz2 +share/doc/HTML/uk/kcontrol/autostart/index.docbook +share/doc/HTML/uk/kcontrol/colors/index.cache.bz2 +share/doc/HTML/uk/kcontrol/colors/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/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/index.cache.bz2 +share/doc/HTML/uk/kcontrol/fonts/index.docbook +share/doc/HTML/uk/kcontrol/formats/index.cache.bz2 +share/doc/HTML/uk/kcontrol/formats/index.docbook +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/main.png +share/doc/HTML/uk/kcontrol/icons/use-of-icons.png +share/doc/HTML/uk/kcontrol/kcmstyle/index.cache.bz2 +share/doc/HTML/uk/kcontrol/kcmstyle/index.docbook +share/doc/HTML/uk/kcontrol/lookandfeel/index.cache.bz2 +share/doc/HTML/uk/kcontrol/lookandfeel/index.docbook +share/doc/HTML/uk/kcontrol/notifications/index.cache.bz2 +share/doc/HTML/uk/kcontrol/notifications/index.docbook +share/doc/HTML/uk/kcontrol/region_language/index.cache.bz2 +share/doc/HTML/uk/kcontrol/region_language/index.docbook +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/doc/HTML/uk/klipper/klipper-widget.png +share/doc/HTML/uk/klipper/screenshot.png +share/icons/hicolor/128x128/mimetypes/fonts-package.png +share/icons/hicolor/16x16/apps/kfontview.png +share/icons/hicolor/16x16/mimetypes/fonts-package.png +share/icons/hicolor/22x22/apps/kfontview.png +share/icons/hicolor/22x22/mimetypes/fonts-package.png +share/icons/hicolor/32x32/apps/kfontview.png +share/icons/hicolor/32x32/mimetypes/fonts-package.png +share/icons/hicolor/48x48/apps/kfontview.png +share/icons/hicolor/48x48/mimetypes/fonts-package.png +share/icons/hicolor/64x64/apps/kfontview.png +share/icons/hicolor/64x64/mimetypes/fonts-package.png +share/icons/hicolor/scalable/apps/preferences-desktop-font-installer.svgz +share/kconf_update/delete_cursor_old_default_size.pl +share/kconf_update/delete_cursor_old_default_size.upd +share/kconf_update/icons_remove_effects.upd +share/kconf_update/krunnerglobalshortcuts2.upd +share/kconf_update/krunnerhistory.upd +share/kconf_update/plasma6.0-remove-old-shortcuts.upd +share/kconf_update/plasmashell-5.27-use-panel-thickness-in-default-group.upd +share/kconf_update/plasmashell-6.0-keep-default-floating-setting-for-plasma-5-panels.upd +share/kconf_update/plasmashell-6.0-migrate-panel-hiding-setting.upd +share/kconf_update/style_widgetstyle_default_breeze.pl +share/kconf_update/style_widgetstyle_default_breeze.upd +share/kfontinst/icons/hicolor/16x16/actions/addfont.png +share/kfontinst/icons/hicolor/16x16/actions/font-disable.png +share/kfontinst/icons/hicolor/16x16/actions/font-enable.png +share/kfontinst/icons/hicolor/16x16/actions/fontstatus.png +share/kfontinst/icons/hicolor/22x22/actions/addfont.png +share/kfontinst/icons/hicolor/22x22/actions/font-disable.png +share/kfontinst/icons/hicolor/22x22/actions/font-enable.png +share/kfontinst/icons/hicolor/22x22/actions/fontstatus.png +share/kglobalaccel/org.kde.krunner.desktop +share/kio/servicemenus/installfont.desktop +share/kio_desktop/directory.desktop +share/kio_desktop/directory.trash +share/knotifications6/devicenotifications.notifyrc +share/knotifications6/freespacenotifier.notifyrc +share/knotifications6/phonon.notifyrc +share/knsrcfiles/colorschemes.knsrc +share/knsrcfiles/gtk_themes.knsrc +share/knsrcfiles/icons.knsrc +share/knsrcfiles/kfontinst.knsrc +share/knsrcfiles/lookandfeel.knsrc +share/knsrcfiles/plasma-themes.knsrc +share/knsrcfiles/plasmoids.knsrc +share/knsrcfiles/wallpaper-mobile.knsrc +share/knsrcfiles/wallpaper.knsrc +share/knsrcfiles/wallpaperplugin.knsrc +share/knsrcfiles/xcursor.knsrc +share/konqsidebartng/virtual_folders/services/fonts.desktop +share/krunner/dbusplugins/plasma-runner-baloosearch.desktop +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/kxmlgui5/kfontview/kfontviewpart.rc +share/kxmlgui5/kfontview/kfontviewui.rc +share/locale/af/LC_MESSAGES/kcm_colors.mo +share/locale/af/LC_MESSAGES/kcm_cursortheme.mo +share/locale/af/LC_MESSAGES/kcm_fonts.mo +share/locale/af/LC_MESSAGES/kcm_icons.mo +share/locale/af/LC_MESSAGES/kcm_style.mo +share/locale/af/LC_MESSAGES/kfontinst.mo +share/locale/af/LC_MESSAGES/kio5_applications.mo +share/locale/af/LC_MESSAGES/klipper.mo +share/locale/af/LC_MESSAGES/krdb.mo +share/locale/af/LC_MESSAGES/ksmserver.mo +share/locale/ar/LC_MESSAGES/freespacenotifier.mo +share/locale/ar/LC_MESSAGES/kcm_autostart.mo +share/locale/ar/LC_MESSAGES/kcm_colors.mo +share/locale/ar/LC_MESSAGES/kcm_cursortheme.mo +share/locale/ar/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/ar/LC_MESSAGES/kcm_feedback.mo +share/locale/ar/LC_MESSAGES/kcm_fonts.mo +share/locale/ar/LC_MESSAGES/kcm_icons.mo +share/locale/ar/LC_MESSAGES/kcm_lookandfeel.mo +share/locale/ar/LC_MESSAGES/kcm_nightcolor.mo +share/locale/ar/LC_MESSAGES/kcm_notifications.mo +share/locale/ar/LC_MESSAGES/kcm_regionandlang.mo +share/locale/ar/LC_MESSAGES/kcm_style.mo +share/locale/ar/LC_MESSAGES/kcm_users.mo +share/locale/ar/LC_MESSAGES/kcminit.mo +share/locale/ar/LC_MESSAGES/kfontinst.mo +share/locale/ar/LC_MESSAGES/kio5_applications.mo +share/locale/ar/LC_MESSAGES/kio_desktop.mo +share/locale/ar/LC_MESSAGES/klipper.mo +share/locale/ar/LC_MESSAGES/krdb.mo +share/locale/ar/LC_MESSAGES/krunner.mo +share/locale/ar/LC_MESSAGES/ksmserver.mo +share/locale/ar/LC_MESSAGES/libkicker.mo +share/locale/ar/LC_MESSAGES/libkworkspace.mo +share/locale/ar/LC_MESSAGES/libnotificationmanager.mo +share/locale/ar/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.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.manageinputmethod.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.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_dict.mo +share/locale/ar/LC_MESSAGES/plasma_engine_hotplug.mo +share/locale/ar/LC_MESSAGES/plasma_engine_keystate.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_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_runner_appstream.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_webshortcuts.mo +share/locale/ar/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo +share/locale/ar/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo +share/locale/ar/LC_MESSAGES/plasmashell.mo +share/locale/ar/LC_MESSAGES/plasmashellprivateplugin.mo +share/locale/ar/LC_MESSAGES/soliduiserver5.mo +share/locale/ast/LC_MESSAGES/freespacenotifier.mo +share/locale/ast/LC_MESSAGES/kcm_autostart.mo +share/locale/ast/LC_MESSAGES/kcm_colors.mo +share/locale/ast/LC_MESSAGES/kcm_cursortheme.mo +share/locale/ast/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/ast/LC_MESSAGES/kcm_feedback.mo +share/locale/ast/LC_MESSAGES/kcm_fonts.mo +share/locale/ast/LC_MESSAGES/kcm_icons.mo +share/locale/ast/LC_MESSAGES/kcm_lookandfeel.mo +share/locale/ast/LC_MESSAGES/kcm_nightcolor.mo +share/locale/ast/LC_MESSAGES/kcm_notifications.mo +share/locale/ast/LC_MESSAGES/kcm_regionandlang.mo +share/locale/ast/LC_MESSAGES/kcm_soundtheme.mo +share/locale/ast/LC_MESSAGES/kcm_style.mo +share/locale/ast/LC_MESSAGES/kcm_users.mo +share/locale/ast/LC_MESSAGES/kcminit.mo +share/locale/ast/LC_MESSAGES/kded_devicenotifications.mo +share/locale/ast/LC_MESSAGES/kfontinst.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/krdb.mo +share/locale/ast/LC_MESSAGES/krunner.mo +share/locale/ast/LC_MESSAGES/ksmserver.mo +share/locale/ast/LC_MESSAGES/libkicker.mo +share/locale/ast/LC_MESSAGES/libkmpris.mo +share/locale/ast/LC_MESSAGES/libkworkspace.mo +share/locale/ast/LC_MESSAGES/libnotificationmanager.mo +share/locale/ast/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.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.cameraindicator.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.manageinputmethod.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.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_dict.mo +share/locale/ast/LC_MESSAGES/plasma_engine_hotplug.mo +share/locale/ast/LC_MESSAGES/plasma_engine_keystate.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_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_runner_appstream.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_webshortcuts.mo +share/locale/ast/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo +share/locale/ast/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo +share/locale/ast/LC_MESSAGES/plasmashell.mo +share/locale/ast/LC_MESSAGES/plasmashellprivateplugin.mo +share/locale/ast/LC_MESSAGES/plasmawindowed.mo +share/locale/ast/LC_MESSAGES/soliduiserver5.mo +share/locale/az/LC_MESSAGES/freespacenotifier.mo +share/locale/az/LC_MESSAGES/kcm_autostart.mo +share/locale/az/LC_MESSAGES/kcm_colors.mo +share/locale/az/LC_MESSAGES/kcm_cursortheme.mo +share/locale/az/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/az/LC_MESSAGES/kcm_feedback.mo +share/locale/az/LC_MESSAGES/kcm_fonts.mo +share/locale/az/LC_MESSAGES/kcm_icons.mo +share/locale/az/LC_MESSAGES/kcm_lookandfeel.mo +share/locale/az/LC_MESSAGES/kcm_nightcolor.mo +share/locale/az/LC_MESSAGES/kcm_notifications.mo +share/locale/az/LC_MESSAGES/kcm_regionandlang.mo +share/locale/az/LC_MESSAGES/kcm_style.mo +share/locale/az/LC_MESSAGES/kcm_users.mo +share/locale/az/LC_MESSAGES/kcminit.mo +share/locale/az/LC_MESSAGES/kfontinst.mo +share/locale/az/LC_MESSAGES/kio5_applications.mo +share/locale/az/LC_MESSAGES/kio_desktop.mo +share/locale/az/LC_MESSAGES/klipper.mo +share/locale/az/LC_MESSAGES/krdb.mo +share/locale/az/LC_MESSAGES/krunner.mo +share/locale/az/LC_MESSAGES/ksmserver.mo +share/locale/az/LC_MESSAGES/libkicker.mo +share/locale/az/LC_MESSAGES/libkworkspace.mo +share/locale/az/LC_MESSAGES/libnotificationmanager.mo +share/locale/az/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.mo +share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo +share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo +share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo +share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo +share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo +share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo +share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo +share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo +share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo +share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.manageinputmethod.mo +share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo +share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo +share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo +share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo +share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.mo +share/locale/az/LC_MESSAGES/plasma_containmentactions_applauncher.mo +share/locale/az/LC_MESSAGES/plasma_containmentactions_contextmenu.mo +share/locale/az/LC_MESSAGES/plasma_containmentactions_switchwindow.mo +share/locale/az/LC_MESSAGES/plasma_engine_applicationjobs.mo +share/locale/az/LC_MESSAGES/plasma_engine_devicenotifications.mo +share/locale/az/LC_MESSAGES/plasma_engine_dict.mo +share/locale/az/LC_MESSAGES/plasma_engine_hotplug.mo +share/locale/az/LC_MESSAGES/plasma_engine_keystate.mo +share/locale/az/LC_MESSAGES/plasma_engine_notifications.mo +share/locale/az/LC_MESSAGES/plasma_engine_powermanagement.mo +share/locale/az/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/az/LC_MESSAGES/plasma_engine_time.mo +share/locale/az/LC_MESSAGES/plasma_engine_weather.mo +share/locale/az/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo +share/locale/az/LC_MESSAGES/plasma_runner_appstream.mo +share/locale/az/LC_MESSAGES/plasma_runner_baloosearch5.mo +share/locale/az/LC_MESSAGES/plasma_runner_bookmarksrunner.mo +share/locale/az/LC_MESSAGES/plasma_runner_calculatorrunner.mo +share/locale/az/LC_MESSAGES/plasma_runner_kill.mo +share/locale/az/LC_MESSAGES/plasma_runner_locations.mo +share/locale/az/LC_MESSAGES/plasma_runner_placesrunner.mo +share/locale/az/LC_MESSAGES/plasma_runner_powerdevil.mo +share/locale/az/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/az/LC_MESSAGES/plasma_runner_services.mo +share/locale/az/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/az/LC_MESSAGES/plasma_runner_shell.mo +share/locale/az/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/az/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo +share/locale/az/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo +share/locale/az/LC_MESSAGES/plasmashell.mo +share/locale/az/LC_MESSAGES/plasmashellprivateplugin.mo +share/locale/az/LC_MESSAGES/soliduiserver5.mo +share/locale/be/LC_MESSAGES/freespacenotifier.mo +share/locale/be/LC_MESSAGES/kcm_autostart.mo +share/locale/be/LC_MESSAGES/kcm_colors.mo +share/locale/be/LC_MESSAGES/kcm_cursortheme.mo +share/locale/be/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/be/LC_MESSAGES/kcm_feedback.mo +share/locale/be/LC_MESSAGES/kcm_fonts.mo +share/locale/be/LC_MESSAGES/kcm_icons.mo +share/locale/be/LC_MESSAGES/kcm_lookandfeel.mo +share/locale/be/LC_MESSAGES/kcm_nightcolor.mo +share/locale/be/LC_MESSAGES/kcm_notifications.mo +share/locale/be/LC_MESSAGES/kcm_regionandlang.mo +share/locale/be/LC_MESSAGES/kcm_style.mo +share/locale/be/LC_MESSAGES/kcm_users.mo +share/locale/be/LC_MESSAGES/kcminit.mo +share/locale/be/LC_MESSAGES/kfontinst.mo +share/locale/be/LC_MESSAGES/kio5_applications.mo +share/locale/be/LC_MESSAGES/kio_desktop.mo +share/locale/be/LC_MESSAGES/klipper.mo +share/locale/be/LC_MESSAGES/krdb.mo +share/locale/be/LC_MESSAGES/krunner.mo +share/locale/be/LC_MESSAGES/ksmserver.mo +share/locale/be/LC_MESSAGES/libkicker.mo +share/locale/be/LC_MESSAGES/libkworkspace.mo +share/locale/be/LC_MESSAGES/libnotificationmanager.mo +share/locale/be/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.mo +share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo +share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo +share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo +share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo +share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo +share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo +share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo +share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo +share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo +share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.manageinputmethod.mo +share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo +share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo +share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo +share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo +share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.mo +share/locale/be/LC_MESSAGES/plasma_containmentactions_applauncher.mo +share/locale/be/LC_MESSAGES/plasma_containmentactions_contextmenu.mo +share/locale/be/LC_MESSAGES/plasma_containmentactions_switchwindow.mo +share/locale/be/LC_MESSAGES/plasma_engine_applicationjobs.mo +share/locale/be/LC_MESSAGES/plasma_engine_devicenotifications.mo +share/locale/be/LC_MESSAGES/plasma_engine_dict.mo +share/locale/be/LC_MESSAGES/plasma_engine_hotplug.mo +share/locale/be/LC_MESSAGES/plasma_engine_keystate.mo +share/locale/be/LC_MESSAGES/plasma_engine_notifications.mo +share/locale/be/LC_MESSAGES/plasma_engine_powermanagement.mo +share/locale/be/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/be/LC_MESSAGES/plasma_engine_time.mo +share/locale/be/LC_MESSAGES/plasma_engine_weather.mo +share/locale/be/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo +share/locale/be/LC_MESSAGES/plasma_runner_appstream.mo +share/locale/be/LC_MESSAGES/plasma_runner_baloosearch5.mo +share/locale/be/LC_MESSAGES/plasma_runner_bookmarksrunner.mo +share/locale/be/LC_MESSAGES/plasma_runner_calculatorrunner.mo +share/locale/be/LC_MESSAGES/plasma_runner_kill.mo +share/locale/be/LC_MESSAGES/plasma_runner_locations.mo +share/locale/be/LC_MESSAGES/plasma_runner_placesrunner.mo +share/locale/be/LC_MESSAGES/plasma_runner_powerdevil.mo +share/locale/be/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/be/LC_MESSAGES/plasma_runner_services.mo +share/locale/be/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/be/LC_MESSAGES/plasma_runner_shell.mo +share/locale/be/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/be/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo +share/locale/be/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo +share/locale/be/LC_MESSAGES/plasmashell.mo +share/locale/be/LC_MESSAGES/plasmashellprivateplugin.mo +share/locale/be/LC_MESSAGES/soliduiserver5.mo +share/locale/be@latin/LC_MESSAGES/kcm_autostart.mo +share/locale/be@latin/LC_MESSAGES/kcm_colors.mo +share/locale/be@latin/LC_MESSAGES/kcm_icons.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/krdb.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.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_wallpaper_org.kde.image.mo +share/locale/be@latin/LC_MESSAGES/soliduiserver5.mo +share/locale/bg/LC_MESSAGES/freespacenotifier.mo +share/locale/bg/LC_MESSAGES/kcm_autostart.mo +share/locale/bg/LC_MESSAGES/kcm_colors.mo +share/locale/bg/LC_MESSAGES/kcm_cursortheme.mo +share/locale/bg/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/bg/LC_MESSAGES/kcm_feedback.mo +share/locale/bg/LC_MESSAGES/kcm_fonts.mo +share/locale/bg/LC_MESSAGES/kcm_icons.mo +share/locale/bg/LC_MESSAGES/kcm_lookandfeel.mo +share/locale/bg/LC_MESSAGES/kcm_nightcolor.mo +share/locale/bg/LC_MESSAGES/kcm_notifications.mo +share/locale/bg/LC_MESSAGES/kcm_regionandlang.mo +share/locale/bg/LC_MESSAGES/kcm_style.mo +share/locale/bg/LC_MESSAGES/kcm_users.mo +share/locale/bg/LC_MESSAGES/kcminit.mo +share/locale/bg/LC_MESSAGES/kfontinst.mo +share/locale/bg/LC_MESSAGES/kio5_applications.mo +share/locale/bg/LC_MESSAGES/kio_desktop.mo +share/locale/bg/LC_MESSAGES/klipper.mo +share/locale/bg/LC_MESSAGES/krdb.mo +share/locale/bg/LC_MESSAGES/krunner.mo +share/locale/bg/LC_MESSAGES/ksmserver.mo +share/locale/bg/LC_MESSAGES/libkicker.mo +share/locale/bg/LC_MESSAGES/libkworkspace.mo +share/locale/bg/LC_MESSAGES/libnotificationmanager.mo +share/locale/bg/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.mo +share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo +share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo +share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo +share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo +share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo +share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo +share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo +share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo +share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo +share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.manageinputmethod.mo +share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo +share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo +share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo +share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo +share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.mo +share/locale/bg/LC_MESSAGES/plasma_containmentactions_applauncher.mo +share/locale/bg/LC_MESSAGES/plasma_containmentactions_contextmenu.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_devicenotifications.mo +share/locale/bg/LC_MESSAGES/plasma_engine_dict.mo +share/locale/bg/LC_MESSAGES/plasma_engine_hotplug.mo +share/locale/bg/LC_MESSAGES/plasma_engine_keystate.mo +share/locale/bg/LC_MESSAGES/plasma_engine_notifications.mo +share/locale/bg/LC_MESSAGES/plasma_engine_powermanagement.mo +share/locale/bg/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/bg/LC_MESSAGES/plasma_engine_time.mo +share/locale/bg/LC_MESSAGES/plasma_engine_weather.mo +share/locale/bg/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo +share/locale/bg/LC_MESSAGES/plasma_runner_appstream.mo +share/locale/bg/LC_MESSAGES/plasma_runner_baloosearch5.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_kill.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_powerdevil.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_webshortcuts.mo +share/locale/bg/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo +share/locale/bg/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo +share/locale/bg/LC_MESSAGES/plasmashell.mo +share/locale/bg/LC_MESSAGES/plasmashellprivateplugin.mo +share/locale/bg/LC_MESSAGES/soliduiserver5.mo +share/locale/bn/LC_MESSAGES/kcm_fonts.mo +share/locale/bn/LC_MESSAGES/kcm_icons.mo +share/locale/bn/LC_MESSAGES/kcm_style.mo +share/locale/bn/LC_MESSAGES/kfontinst.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/kcm_autostart.mo +share/locale/bn_IN/LC_MESSAGES/kcm_colors.mo +share/locale/bn_IN/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/bn_IN/LC_MESSAGES/kcm_icons.mo +share/locale/bn_IN/LC_MESSAGES/kcm_style.mo +share/locale/bn_IN/LC_MESSAGES/kcminit.mo +share/locale/bn_IN/LC_MESSAGES/kfontinst.mo +share/locale/bn_IN/LC_MESSAGES/kio5_applications.mo +share/locale/bn_IN/LC_MESSAGES/klipper.mo +share/locale/bn_IN/LC_MESSAGES/krdb.mo +share/locale/bn_IN/LC_MESSAGES/ksmserver.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.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_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/plasma_wallpaper_org.kde.image.mo +share/locale/bn_IN/LC_MESSAGES/soliduiserver5.mo +share/locale/br/LC_MESSAGES/kcm_colors.mo +share/locale/br/LC_MESSAGES/kcm_cursortheme.mo +share/locale/br/LC_MESSAGES/kcm_fonts.mo +share/locale/br/LC_MESSAGES/kcm_icons.mo +share/locale/br/LC_MESSAGES/kcm_style.mo +share/locale/br/LC_MESSAGES/kfontinst.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/kcm_autostart.mo +share/locale/bs/LC_MESSAGES/kcm_colors.mo +share/locale/bs/LC_MESSAGES/kcm_cursortheme.mo +share/locale/bs/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/bs/LC_MESSAGES/kcm_fonts.mo +share/locale/bs/LC_MESSAGES/kcm_icons.mo +share/locale/bs/LC_MESSAGES/kcm_lookandfeel.mo +share/locale/bs/LC_MESSAGES/kcm_style.mo +share/locale/bs/LC_MESSAGES/kcminit.mo +share/locale/bs/LC_MESSAGES/kfontinst.mo +share/locale/bs/LC_MESSAGES/kio5_applications.mo +share/locale/bs/LC_MESSAGES/klipper.mo +share/locale/bs/LC_MESSAGES/krdb.mo +share/locale/bs/LC_MESSAGES/krunner.mo +share/locale/bs/LC_MESSAGES/ksmserver.mo +share/locale/bs/LC_MESSAGES/libkicker.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.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_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_notifications.mo +share/locale/bs/LC_MESSAGES/plasma_engine_powermanagement.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_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_webshortcuts.mo +share/locale/bs/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo +share/locale/bs/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo +share/locale/bs/LC_MESSAGES/plasmashell.mo +share/locale/bs/LC_MESSAGES/plasmashellprivateplugin.mo +share/locale/bs/LC_MESSAGES/soliduiserver5.mo +share/locale/ca/LC_MESSAGES/freespacenotifier.mo +share/locale/ca/LC_MESSAGES/kcm_autostart.mo +share/locale/ca/LC_MESSAGES/kcm_colors.mo +share/locale/ca/LC_MESSAGES/kcm_cursortheme.mo +share/locale/ca/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/ca/LC_MESSAGES/kcm_feedback.mo +share/locale/ca/LC_MESSAGES/kcm_fonts.mo +share/locale/ca/LC_MESSAGES/kcm_icons.mo +share/locale/ca/LC_MESSAGES/kcm_lookandfeel.mo +share/locale/ca/LC_MESSAGES/kcm_nightcolor.mo +share/locale/ca/LC_MESSAGES/kcm_notifications.mo +share/locale/ca/LC_MESSAGES/kcm_regionandlang.mo +share/locale/ca/LC_MESSAGES/kcm_soundtheme.mo +share/locale/ca/LC_MESSAGES/kcm_style.mo +share/locale/ca/LC_MESSAGES/kcm_users.mo +share/locale/ca/LC_MESSAGES/kcminit.mo +share/locale/ca/LC_MESSAGES/kded_devicenotifications.mo +share/locale/ca/LC_MESSAGES/kfontinst.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/krdb.mo +share/locale/ca/LC_MESSAGES/krunner.mo +share/locale/ca/LC_MESSAGES/ksmserver.mo +share/locale/ca/LC_MESSAGES/libkicker.mo +share/locale/ca/LC_MESSAGES/libkmpris.mo +share/locale/ca/LC_MESSAGES/libkworkspace.mo +share/locale/ca/LC_MESSAGES/libnotificationmanager.mo +share/locale/ca/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.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.brightness.mo +share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo +share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.cameraindicator.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.manageinputmethod.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.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_hotplug.mo +share/locale/ca/LC_MESSAGES/plasma_engine_keystate.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_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_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_webshortcuts.mo +share/locale/ca/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo +share/locale/ca/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo +share/locale/ca/LC_MESSAGES/plasmashell.mo +share/locale/ca/LC_MESSAGES/plasmashellprivateplugin.mo +share/locale/ca/LC_MESSAGES/plasmawindowed.mo +share/locale/ca/LC_MESSAGES/soliduiserver5.mo +share/locale/ca@valencia/LC_MESSAGES/freespacenotifier.mo +share/locale/ca@valencia/LC_MESSAGES/kcm_autostart.mo +share/locale/ca@valencia/LC_MESSAGES/kcm_colors.mo +share/locale/ca@valencia/LC_MESSAGES/kcm_cursortheme.mo +share/locale/ca@valencia/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/ca@valencia/LC_MESSAGES/kcm_feedback.mo +share/locale/ca@valencia/LC_MESSAGES/kcm_fonts.mo +share/locale/ca@valencia/LC_MESSAGES/kcm_icons.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_notifications.mo +share/locale/ca@valencia/LC_MESSAGES/kcm_regionandlang.mo +share/locale/ca@valencia/LC_MESSAGES/kcm_soundtheme.mo +share/locale/ca@valencia/LC_MESSAGES/kcm_style.mo +share/locale/ca@valencia/LC_MESSAGES/kcm_users.mo +share/locale/ca@valencia/LC_MESSAGES/kcminit.mo +share/locale/ca@valencia/LC_MESSAGES/kded_devicenotifications.mo +share/locale/ca@valencia/LC_MESSAGES/kfontinst.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/krdb.mo +share/locale/ca@valencia/LC_MESSAGES/krunner.mo +share/locale/ca@valencia/LC_MESSAGES/ksmserver.mo +share/locale/ca@valencia/LC_MESSAGES/libkicker.mo +share/locale/ca@valencia/LC_MESSAGES/libkmpris.mo +share/locale/ca@valencia/LC_MESSAGES/libkworkspace.mo +share/locale/ca@valencia/LC_MESSAGES/libnotificationmanager.mo +share/locale/ca@valencia/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.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.brightness.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.cameraindicator.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.manageinputmethod.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.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_hotplug.mo +share/locale/ca@valencia/LC_MESSAGES/plasma_engine_keystate.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_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_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_webshortcuts.mo +share/locale/ca@valencia/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo +share/locale/ca@valencia/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo +share/locale/ca@valencia/LC_MESSAGES/plasmashell.mo +share/locale/ca@valencia/LC_MESSAGES/plasmashellprivateplugin.mo +share/locale/ca@valencia/LC_MESSAGES/plasmawindowed.mo +share/locale/ca@valencia/LC_MESSAGES/soliduiserver5.mo +share/locale/cs/LC_MESSAGES/freespacenotifier.mo +share/locale/cs/LC_MESSAGES/kcm_autostart.mo +share/locale/cs/LC_MESSAGES/kcm_colors.mo +share/locale/cs/LC_MESSAGES/kcm_cursortheme.mo +share/locale/cs/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/cs/LC_MESSAGES/kcm_feedback.mo +share/locale/cs/LC_MESSAGES/kcm_fonts.mo +share/locale/cs/LC_MESSAGES/kcm_icons.mo +share/locale/cs/LC_MESSAGES/kcm_lookandfeel.mo +share/locale/cs/LC_MESSAGES/kcm_nightcolor.mo +share/locale/cs/LC_MESSAGES/kcm_notifications.mo +share/locale/cs/LC_MESSAGES/kcm_regionandlang.mo +share/locale/cs/LC_MESSAGES/kcm_soundtheme.mo +share/locale/cs/LC_MESSAGES/kcm_style.mo +share/locale/cs/LC_MESSAGES/kcm_users.mo +share/locale/cs/LC_MESSAGES/kcminit.mo +share/locale/cs/LC_MESSAGES/kded_devicenotifications.mo +share/locale/cs/LC_MESSAGES/kfontinst.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/krdb.mo +share/locale/cs/LC_MESSAGES/krunner.mo +share/locale/cs/LC_MESSAGES/ksmserver.mo +share/locale/cs/LC_MESSAGES/libkicker.mo +share/locale/cs/LC_MESSAGES/libkmpris.mo +share/locale/cs/LC_MESSAGES/libkworkspace.mo +share/locale/cs/LC_MESSAGES/libnotificationmanager.mo +share/locale/cs/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.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.cameraindicator.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.manageinputmethod.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.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_hotplug.mo +share/locale/cs/LC_MESSAGES/plasma_engine_keystate.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_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_runner_appstream.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_webshortcuts.mo +share/locale/cs/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo +share/locale/cs/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo +share/locale/cs/LC_MESSAGES/plasmashell.mo +share/locale/cs/LC_MESSAGES/plasmashellprivateplugin.mo +share/locale/cs/LC_MESSAGES/plasmawindowed.mo +share/locale/cs/LC_MESSAGES/soliduiserver5.mo +share/locale/csb/LC_MESSAGES/kcm_colors.mo +share/locale/csb/LC_MESSAGES/kcm_fonts.mo +share/locale/csb/LC_MESSAGES/kcm_icons.mo +share/locale/csb/LC_MESSAGES/kcm_style.mo +share/locale/csb/LC_MESSAGES/kcminit.mo +share/locale/csb/LC_MESSAGES/kfontinst.mo +share/locale/csb/LC_MESSAGES/kio5_applications.mo +share/locale/csb/LC_MESSAGES/klipper.mo +share/locale/csb/LC_MESSAGES/krdb.mo +share/locale/csb/LC_MESSAGES/ksmserver.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.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_notifications.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_webshortcuts.mo +share/locale/csb/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo +share/locale/csb/LC_MESSAGES/soliduiserver5.mo +share/locale/cy/LC_MESSAGES/kcm_colors.mo +share/locale/cy/LC_MESSAGES/kcm_cursortheme.mo +share/locale/cy/LC_MESSAGES/kcm_fonts.mo +share/locale/cy/LC_MESSAGES/kcm_icons.mo +share/locale/cy/LC_MESSAGES/kcm_style.mo +share/locale/cy/LC_MESSAGES/kfontinst.mo +share/locale/cy/LC_MESSAGES/kio5_applications.mo +share/locale/cy/LC_MESSAGES/klipper.mo +share/locale/cy/LC_MESSAGES/krdb.mo +share/locale/cy/LC_MESSAGES/ksmserver.mo +share/locale/da/LC_MESSAGES/freespacenotifier.mo +share/locale/da/LC_MESSAGES/kcm_autostart.mo +share/locale/da/LC_MESSAGES/kcm_colors.mo +share/locale/da/LC_MESSAGES/kcm_cursortheme.mo +share/locale/da/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/da/LC_MESSAGES/kcm_feedback.mo +share/locale/da/LC_MESSAGES/kcm_fonts.mo +share/locale/da/LC_MESSAGES/kcm_icons.mo +share/locale/da/LC_MESSAGES/kcm_lookandfeel.mo +share/locale/da/LC_MESSAGES/kcm_nightcolor.mo +share/locale/da/LC_MESSAGES/kcm_notifications.mo +share/locale/da/LC_MESSAGES/kcm_style.mo +share/locale/da/LC_MESSAGES/kcm_users.mo +share/locale/da/LC_MESSAGES/kcminit.mo +share/locale/da/LC_MESSAGES/kfontinst.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/krdb.mo +share/locale/da/LC_MESSAGES/krunner.mo +share/locale/da/LC_MESSAGES/ksmserver.mo +share/locale/da/LC_MESSAGES/libkicker.mo +share/locale/da/LC_MESSAGES/libkworkspace.mo +share/locale/da/LC_MESSAGES/libnotificationmanager.mo +share/locale/da/LC_MESSAGES/phonon_kde_plugin.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.mo +share/locale/da/LC_MESSAGES/plasma_containmentactions_applauncher.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_dict.mo +share/locale/da/LC_MESSAGES/plasma_engine_hotplug.mo +share/locale/da/LC_MESSAGES/plasma_engine_keystate.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_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_runner_appstream.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_webshortcuts.mo +share/locale/da/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo +share/locale/da/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo +share/locale/da/LC_MESSAGES/plasmashell.mo +share/locale/da/LC_MESSAGES/plasmashellprivateplugin.mo +share/locale/da/LC_MESSAGES/soliduiserver5.mo +share/locale/de/LC_MESSAGES/freespacenotifier.mo +share/locale/de/LC_MESSAGES/kcm_autostart.mo +share/locale/de/LC_MESSAGES/kcm_colors.mo +share/locale/de/LC_MESSAGES/kcm_cursortheme.mo +share/locale/de/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/de/LC_MESSAGES/kcm_feedback.mo +share/locale/de/LC_MESSAGES/kcm_fonts.mo +share/locale/de/LC_MESSAGES/kcm_icons.mo +share/locale/de/LC_MESSAGES/kcm_lookandfeel.mo +share/locale/de/LC_MESSAGES/kcm_nightcolor.mo +share/locale/de/LC_MESSAGES/kcm_notifications.mo +share/locale/de/LC_MESSAGES/kcm_regionandlang.mo +share/locale/de/LC_MESSAGES/kcm_soundtheme.mo +share/locale/de/LC_MESSAGES/kcm_style.mo +share/locale/de/LC_MESSAGES/kcm_users.mo +share/locale/de/LC_MESSAGES/kcminit.mo +share/locale/de/LC_MESSAGES/kded_devicenotifications.mo +share/locale/de/LC_MESSAGES/kfontinst.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/krdb.mo +share/locale/de/LC_MESSAGES/krunner.mo +share/locale/de/LC_MESSAGES/ksmserver.mo +share/locale/de/LC_MESSAGES/libkicker.mo +share/locale/de/LC_MESSAGES/libkmpris.mo +share/locale/de/LC_MESSAGES/libkworkspace.mo +share/locale/de/LC_MESSAGES/libnotificationmanager.mo +share/locale/de/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.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.brightness.mo +share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo +share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.cameraindicator.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.manageinputmethod.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.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_hotplug.mo +share/locale/de/LC_MESSAGES/plasma_engine_keystate.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_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_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_webshortcuts.mo +share/locale/de/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo +share/locale/de/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo +share/locale/de/LC_MESSAGES/plasmashell.mo +share/locale/de/LC_MESSAGES/plasmashellprivateplugin.mo +share/locale/de/LC_MESSAGES/plasmawindowed.mo +share/locale/de/LC_MESSAGES/soliduiserver5.mo +share/locale/el/LC_MESSAGES/freespacenotifier.mo +share/locale/el/LC_MESSAGES/kcm_autostart.mo +share/locale/el/LC_MESSAGES/kcm_colors.mo +share/locale/el/LC_MESSAGES/kcm_cursortheme.mo +share/locale/el/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/el/LC_MESSAGES/kcm_fonts.mo +share/locale/el/LC_MESSAGES/kcm_icons.mo +share/locale/el/LC_MESSAGES/kcm_lookandfeel.mo +share/locale/el/LC_MESSAGES/kcm_style.mo +share/locale/el/LC_MESSAGES/kcminit.mo +share/locale/el/LC_MESSAGES/kfontinst.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/krdb.mo +share/locale/el/LC_MESSAGES/krunner.mo +share/locale/el/LC_MESSAGES/ksmserver.mo +share/locale/el/LC_MESSAGES/libkicker.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.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_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_notifications.mo +share/locale/el/LC_MESSAGES/plasma_engine_powermanagement.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_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_webshortcuts.mo +share/locale/el/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo +share/locale/el/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo +share/locale/el/LC_MESSAGES/plasmashell.mo +share/locale/el/LC_MESSAGES/plasmashellprivateplugin.mo +share/locale/el/LC_MESSAGES/soliduiserver5.mo +share/locale/en_GB/LC_MESSAGES/freespacenotifier.mo +share/locale/en_GB/LC_MESSAGES/kcm_autostart.mo +share/locale/en_GB/LC_MESSAGES/kcm_colors.mo +share/locale/en_GB/LC_MESSAGES/kcm_cursortheme.mo +share/locale/en_GB/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/en_GB/LC_MESSAGES/kcm_feedback.mo +share/locale/en_GB/LC_MESSAGES/kcm_fonts.mo +share/locale/en_GB/LC_MESSAGES/kcm_icons.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_notifications.mo +share/locale/en_GB/LC_MESSAGES/kcm_regionandlang.mo +share/locale/en_GB/LC_MESSAGES/kcm_style.mo +share/locale/en_GB/LC_MESSAGES/kcm_users.mo +share/locale/en_GB/LC_MESSAGES/kcminit.mo +share/locale/en_GB/LC_MESSAGES/kfontinst.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/krdb.mo +share/locale/en_GB/LC_MESSAGES/krunner.mo +share/locale/en_GB/LC_MESSAGES/ksmserver.mo +share/locale/en_GB/LC_MESSAGES/libkicker.mo +share/locale/en_GB/LC_MESSAGES/libkworkspace.mo +share/locale/en_GB/LC_MESSAGES/libnotificationmanager.mo +share/locale/en_GB/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.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.manageinputmethod.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.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_hotplug.mo +share/locale/en_GB/LC_MESSAGES/plasma_engine_keystate.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_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_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_webshortcuts.mo +share/locale/en_GB/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo +share/locale/en_GB/LC_MESSAGES/plasma_wallpaper_org.kde.image.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/eo/LC_MESSAGES/freespacenotifier.mo +share/locale/eo/LC_MESSAGES/kcm_autostart.mo +share/locale/eo/LC_MESSAGES/kcm_colors.mo +share/locale/eo/LC_MESSAGES/kcm_cursortheme.mo +share/locale/eo/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/eo/LC_MESSAGES/kcm_feedback.mo +share/locale/eo/LC_MESSAGES/kcm_fonts.mo +share/locale/eo/LC_MESSAGES/kcm_icons.mo +share/locale/eo/LC_MESSAGES/kcm_lookandfeel.mo +share/locale/eo/LC_MESSAGES/kcm_nightcolor.mo +share/locale/eo/LC_MESSAGES/kcm_notifications.mo +share/locale/eo/LC_MESSAGES/kcm_regionandlang.mo +share/locale/eo/LC_MESSAGES/kcm_soundtheme.mo +share/locale/eo/LC_MESSAGES/kcm_style.mo +share/locale/eo/LC_MESSAGES/kcm_users.mo +share/locale/eo/LC_MESSAGES/kcminit.mo +share/locale/eo/LC_MESSAGES/kded_devicenotifications.mo +share/locale/eo/LC_MESSAGES/kfontinst.mo +share/locale/eo/LC_MESSAGES/kio5_applications.mo +share/locale/eo/LC_MESSAGES/kio_desktop.mo +share/locale/eo/LC_MESSAGES/klipper.mo +share/locale/eo/LC_MESSAGES/krdb.mo +share/locale/eo/LC_MESSAGES/krunner.mo +share/locale/eo/LC_MESSAGES/ksmserver.mo +share/locale/eo/LC_MESSAGES/libkicker.mo +share/locale/eo/LC_MESSAGES/libkmpris.mo +share/locale/eo/LC_MESSAGES/libkworkspace.mo +share/locale/eo/LC_MESSAGES/libnotificationmanager.mo +share/locale/eo/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.mo +share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo +share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo +share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo +share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.brightness.mo +share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo +share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.cameraindicator.mo +share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo +share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo +share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo +share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo +share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo +share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.manageinputmethod.mo +share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo +share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo +share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo +share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo +share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.mo +share/locale/eo/LC_MESSAGES/plasma_containmentactions_applauncher.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_devicenotifications.mo +share/locale/eo/LC_MESSAGES/plasma_engine_dict.mo +share/locale/eo/LC_MESSAGES/plasma_engine_hotplug.mo +share/locale/eo/LC_MESSAGES/plasma_engine_keystate.mo +share/locale/eo/LC_MESSAGES/plasma_engine_notifications.mo +share/locale/eo/LC_MESSAGES/plasma_engine_powermanagement.mo +share/locale/eo/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/eo/LC_MESSAGES/plasma_engine_time.mo +share/locale/eo/LC_MESSAGES/plasma_engine_weather.mo +share/locale/eo/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo +share/locale/eo/LC_MESSAGES/plasma_runner_appstream.mo +share/locale/eo/LC_MESSAGES/plasma_runner_baloosearch5.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_webshortcuts.mo +share/locale/eo/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo +share/locale/eo/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo +share/locale/eo/LC_MESSAGES/plasmashell.mo +share/locale/eo/LC_MESSAGES/plasmashellprivateplugin.mo +share/locale/eo/LC_MESSAGES/plasmawindowed.mo +share/locale/eo/LC_MESSAGES/soliduiserver5.mo +share/locale/es/LC_MESSAGES/freespacenotifier.mo +share/locale/es/LC_MESSAGES/kcm_autostart.mo +share/locale/es/LC_MESSAGES/kcm_colors.mo +share/locale/es/LC_MESSAGES/kcm_cursortheme.mo +share/locale/es/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/es/LC_MESSAGES/kcm_feedback.mo +share/locale/es/LC_MESSAGES/kcm_fonts.mo +share/locale/es/LC_MESSAGES/kcm_icons.mo +share/locale/es/LC_MESSAGES/kcm_lookandfeel.mo +share/locale/es/LC_MESSAGES/kcm_nightcolor.mo +share/locale/es/LC_MESSAGES/kcm_notifications.mo +share/locale/es/LC_MESSAGES/kcm_regionandlang.mo +share/locale/es/LC_MESSAGES/kcm_soundtheme.mo +share/locale/es/LC_MESSAGES/kcm_style.mo +share/locale/es/LC_MESSAGES/kcm_users.mo +share/locale/es/LC_MESSAGES/kcminit.mo +share/locale/es/LC_MESSAGES/kded_devicenotifications.mo +share/locale/es/LC_MESSAGES/kfontinst.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/krdb.mo +share/locale/es/LC_MESSAGES/krunner.mo +share/locale/es/LC_MESSAGES/ksmserver.mo +share/locale/es/LC_MESSAGES/libkicker.mo +share/locale/es/LC_MESSAGES/libkmpris.mo +share/locale/es/LC_MESSAGES/libkworkspace.mo +share/locale/es/LC_MESSAGES/libnotificationmanager.mo +share/locale/es/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.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.brightness.mo +share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo +share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.cameraindicator.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.manageinputmethod.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.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_hotplug.mo +share/locale/es/LC_MESSAGES/plasma_engine_keystate.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_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_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_webshortcuts.mo +share/locale/es/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo +share/locale/es/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo +share/locale/es/LC_MESSAGES/plasmashell.mo +share/locale/es/LC_MESSAGES/plasmashellprivateplugin.mo +share/locale/es/LC_MESSAGES/plasmawindowed.mo +share/locale/es/LC_MESSAGES/soliduiserver5.mo +share/locale/et/LC_MESSAGES/freespacenotifier.mo +share/locale/et/LC_MESSAGES/kcm_autostart.mo +share/locale/et/LC_MESSAGES/kcm_colors.mo +share/locale/et/LC_MESSAGES/kcm_cursortheme.mo +share/locale/et/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/et/LC_MESSAGES/kcm_feedback.mo +share/locale/et/LC_MESSAGES/kcm_fonts.mo +share/locale/et/LC_MESSAGES/kcm_icons.mo +share/locale/et/LC_MESSAGES/kcm_lookandfeel.mo +share/locale/et/LC_MESSAGES/kcm_nightcolor.mo +share/locale/et/LC_MESSAGES/kcm_notifications.mo +share/locale/et/LC_MESSAGES/kcm_regionandlang.mo +share/locale/et/LC_MESSAGES/kcm_style.mo +share/locale/et/LC_MESSAGES/kcm_users.mo +share/locale/et/LC_MESSAGES/kcminit.mo +share/locale/et/LC_MESSAGES/kfontinst.mo +share/locale/et/LC_MESSAGES/kio5_applications.mo +share/locale/et/LC_MESSAGES/kio_desktop.mo +share/locale/et/LC_MESSAGES/klipper.mo +share/locale/et/LC_MESSAGES/krdb.mo +share/locale/et/LC_MESSAGES/krunner.mo +share/locale/et/LC_MESSAGES/ksmserver.mo +share/locale/et/LC_MESSAGES/libkicker.mo +share/locale/et/LC_MESSAGES/libkworkspace.mo +share/locale/et/LC_MESSAGES/libnotificationmanager.mo +share/locale/et/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo +share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.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.icon.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.mo +share/locale/et/LC_MESSAGES/plasma_containmentactions_applauncher.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_dict.mo +share/locale/et/LC_MESSAGES/plasma_engine_hotplug.mo +share/locale/et/LC_MESSAGES/plasma_engine_keystate.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_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_runner_appstream.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_webshortcuts.mo +share/locale/et/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo +share/locale/et/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo +share/locale/et/LC_MESSAGES/plasmashell.mo +share/locale/et/LC_MESSAGES/plasmashellprivateplugin.mo +share/locale/et/LC_MESSAGES/soliduiserver5.mo +share/locale/eu/LC_MESSAGES/freespacenotifier.mo +share/locale/eu/LC_MESSAGES/kcm_autostart.mo +share/locale/eu/LC_MESSAGES/kcm_colors.mo +share/locale/eu/LC_MESSAGES/kcm_cursortheme.mo +share/locale/eu/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/eu/LC_MESSAGES/kcm_feedback.mo +share/locale/eu/LC_MESSAGES/kcm_fonts.mo +share/locale/eu/LC_MESSAGES/kcm_icons.mo +share/locale/eu/LC_MESSAGES/kcm_lookandfeel.mo +share/locale/eu/LC_MESSAGES/kcm_nightcolor.mo +share/locale/eu/LC_MESSAGES/kcm_notifications.mo +share/locale/eu/LC_MESSAGES/kcm_regionandlang.mo +share/locale/eu/LC_MESSAGES/kcm_soundtheme.mo +share/locale/eu/LC_MESSAGES/kcm_style.mo +share/locale/eu/LC_MESSAGES/kcm_users.mo +share/locale/eu/LC_MESSAGES/kcminit.mo +share/locale/eu/LC_MESSAGES/kded_devicenotifications.mo +share/locale/eu/LC_MESSAGES/kfontinst.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/krdb.mo +share/locale/eu/LC_MESSAGES/krunner.mo +share/locale/eu/LC_MESSAGES/ksmserver.mo +share/locale/eu/LC_MESSAGES/libkicker.mo +share/locale/eu/LC_MESSAGES/libkmpris.mo +share/locale/eu/LC_MESSAGES/libkworkspace.mo +share/locale/eu/LC_MESSAGES/libnotificationmanager.mo +share/locale/eu/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.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.cameraindicator.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.manageinputmethod.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.mo +share/locale/eu/LC_MESSAGES/plasma_containmentactions_applauncher.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_dict.mo +share/locale/eu/LC_MESSAGES/plasma_engine_hotplug.mo +share/locale/eu/LC_MESSAGES/plasma_engine_keystate.mo +share/locale/eu/LC_MESSAGES/plasma_engine_notifications.mo +share/locale/eu/LC_MESSAGES/plasma_engine_powermanagement.mo +share/locale/eu/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/eu/LC_MESSAGES/plasma_engine_time.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_appstream.mo +share/locale/eu/LC_MESSAGES/plasma_runner_baloosearch5.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_webshortcuts.mo +share/locale/eu/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo +share/locale/eu/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo +share/locale/eu/LC_MESSAGES/plasmashell.mo +share/locale/eu/LC_MESSAGES/plasmashellprivateplugin.mo +share/locale/eu/LC_MESSAGES/plasmawindowed.mo +share/locale/eu/LC_MESSAGES/soliduiserver5.mo +share/locale/fa/LC_MESSAGES/freespacenotifier.mo +share/locale/fa/LC_MESSAGES/kcm_autostart.mo +share/locale/fa/LC_MESSAGES/kcm_colors.mo +share/locale/fa/LC_MESSAGES/kcm_cursortheme.mo +share/locale/fa/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/fa/LC_MESSAGES/kcm_fonts.mo +share/locale/fa/LC_MESSAGES/kcm_icons.mo +share/locale/fa/LC_MESSAGES/kcm_style.mo +share/locale/fa/LC_MESSAGES/kcminit.mo +share/locale/fa/LC_MESSAGES/kfontinst.mo +share/locale/fa/LC_MESSAGES/kio5_applications.mo +share/locale/fa/LC_MESSAGES/klipper.mo +share/locale/fa/LC_MESSAGES/krdb.mo +share/locale/fa/LC_MESSAGES/ksmserver.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/plasmashell.mo +share/locale/fa/LC_MESSAGES/soliduiserver5.mo +share/locale/fi/LC_MESSAGES/freespacenotifier.mo +share/locale/fi/LC_MESSAGES/kcm_autostart.mo +share/locale/fi/LC_MESSAGES/kcm_colors.mo +share/locale/fi/LC_MESSAGES/kcm_cursortheme.mo +share/locale/fi/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/fi/LC_MESSAGES/kcm_feedback.mo +share/locale/fi/LC_MESSAGES/kcm_fonts.mo +share/locale/fi/LC_MESSAGES/kcm_icons.mo +share/locale/fi/LC_MESSAGES/kcm_lookandfeel.mo +share/locale/fi/LC_MESSAGES/kcm_nightcolor.mo +share/locale/fi/LC_MESSAGES/kcm_notifications.mo +share/locale/fi/LC_MESSAGES/kcm_regionandlang.mo +share/locale/fi/LC_MESSAGES/kcm_soundtheme.mo +share/locale/fi/LC_MESSAGES/kcm_style.mo +share/locale/fi/LC_MESSAGES/kcm_users.mo +share/locale/fi/LC_MESSAGES/kcminit.mo +share/locale/fi/LC_MESSAGES/kded_devicenotifications.mo +share/locale/fi/LC_MESSAGES/kfontinst.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/krdb.mo +share/locale/fi/LC_MESSAGES/krunner.mo +share/locale/fi/LC_MESSAGES/ksmserver.mo +share/locale/fi/LC_MESSAGES/libkicker.mo +share/locale/fi/LC_MESSAGES/libkmpris.mo +share/locale/fi/LC_MESSAGES/libkworkspace.mo +share/locale/fi/LC_MESSAGES/libnotificationmanager.mo +share/locale/fi/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.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.cameraindicator.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.manageinputmethod.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.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_hotplug.mo +share/locale/fi/LC_MESSAGES/plasma_engine_keystate.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_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_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_webshortcuts.mo +share/locale/fi/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo +share/locale/fi/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo +share/locale/fi/LC_MESSAGES/plasmashell.mo +share/locale/fi/LC_MESSAGES/plasmashellprivateplugin.mo +share/locale/fi/LC_MESSAGES/plasmawindowed.mo +share/locale/fi/LC_MESSAGES/soliduiserver5.mo +share/locale/fr/LC_MESSAGES/freespacenotifier.mo +share/locale/fr/LC_MESSAGES/kcm_autostart.mo +share/locale/fr/LC_MESSAGES/kcm_colors.mo +share/locale/fr/LC_MESSAGES/kcm_cursortheme.mo +share/locale/fr/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/fr/LC_MESSAGES/kcm_feedback.mo +share/locale/fr/LC_MESSAGES/kcm_fonts.mo +share/locale/fr/LC_MESSAGES/kcm_icons.mo +share/locale/fr/LC_MESSAGES/kcm_lookandfeel.mo +share/locale/fr/LC_MESSAGES/kcm_nightcolor.mo +share/locale/fr/LC_MESSAGES/kcm_notifications.mo +share/locale/fr/LC_MESSAGES/kcm_regionandlang.mo +share/locale/fr/LC_MESSAGES/kcm_soundtheme.mo +share/locale/fr/LC_MESSAGES/kcm_style.mo +share/locale/fr/LC_MESSAGES/kcm_users.mo +share/locale/fr/LC_MESSAGES/kcminit.mo +share/locale/fr/LC_MESSAGES/kded_devicenotifications.mo +share/locale/fr/LC_MESSAGES/kfontinst.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/krdb.mo +share/locale/fr/LC_MESSAGES/krunner.mo +share/locale/fr/LC_MESSAGES/ksmserver.mo +share/locale/fr/LC_MESSAGES/libkicker.mo +share/locale/fr/LC_MESSAGES/libkmpris.mo +share/locale/fr/LC_MESSAGES/libkworkspace.mo +share/locale/fr/LC_MESSAGES/libnotificationmanager.mo +share/locale/fr/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.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.brightness.mo +share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo +share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.cameraindicator.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.manageinputmethod.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.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_hotplug.mo +share/locale/fr/LC_MESSAGES/plasma_engine_keystate.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_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_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_webshortcuts.mo +share/locale/fr/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo +share/locale/fr/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo +share/locale/fr/LC_MESSAGES/plasmashell.mo +share/locale/fr/LC_MESSAGES/plasmashellprivateplugin.mo +share/locale/fr/LC_MESSAGES/plasmawindowed.mo +share/locale/fr/LC_MESSAGES/soliduiserver5.mo +share/locale/fy/LC_MESSAGES/kcm_autostart.mo +share/locale/fy/LC_MESSAGES/kcm_colors.mo +share/locale/fy/LC_MESSAGES/kcm_cursortheme.mo +share/locale/fy/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/fy/LC_MESSAGES/kcm_fonts.mo +share/locale/fy/LC_MESSAGES/kcm_icons.mo +share/locale/fy/LC_MESSAGES/kcm_style.mo +share/locale/fy/LC_MESSAGES/kcminit.mo +share/locale/fy/LC_MESSAGES/kfontinst.mo +share/locale/fy/LC_MESSAGES/kio5_applications.mo +share/locale/fy/LC_MESSAGES/klipper.mo +share/locale/fy/LC_MESSAGES/krdb.mo +share/locale/fy/LC_MESSAGES/ksmserver.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.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_notifications.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/plasma_wallpaper_org.kde.image.mo +share/locale/fy/LC_MESSAGES/soliduiserver5.mo +share/locale/ga/LC_MESSAGES/freespacenotifier.mo +share/locale/ga/LC_MESSAGES/kcm_autostart.mo +share/locale/ga/LC_MESSAGES/kcm_colors.mo +share/locale/ga/LC_MESSAGES/kcm_cursortheme.mo +share/locale/ga/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/ga/LC_MESSAGES/kcm_fonts.mo +share/locale/ga/LC_MESSAGES/kcm_icons.mo +share/locale/ga/LC_MESSAGES/kcm_style.mo +share/locale/ga/LC_MESSAGES/kcminit.mo +share/locale/ga/LC_MESSAGES/kfontinst.mo +share/locale/ga/LC_MESSAGES/kio5_applications.mo +share/locale/ga/LC_MESSAGES/klipper.mo +share/locale/ga/LC_MESSAGES/krdb.mo +share/locale/ga/LC_MESSAGES/ksmserver.mo +share/locale/ga/LC_MESSAGES/libkicker.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.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_notifications.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_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_webshortcuts.mo +share/locale/ga/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo +share/locale/ga/LC_MESSAGES/soliduiserver5.mo +share/locale/gl/LC_MESSAGES/freespacenotifier.mo +share/locale/gl/LC_MESSAGES/kcm_autostart.mo +share/locale/gl/LC_MESSAGES/kcm_colors.mo +share/locale/gl/LC_MESSAGES/kcm_cursortheme.mo +share/locale/gl/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/gl/LC_MESSAGES/kcm_fonts.mo +share/locale/gl/LC_MESSAGES/kcm_icons.mo +share/locale/gl/LC_MESSAGES/kcm_lookandfeel.mo +share/locale/gl/LC_MESSAGES/kcm_nightcolor.mo +share/locale/gl/LC_MESSAGES/kcm_notifications.mo +share/locale/gl/LC_MESSAGES/kcm_soundtheme.mo +share/locale/gl/LC_MESSAGES/kcm_style.mo +share/locale/gl/LC_MESSAGES/kcminit.mo +share/locale/gl/LC_MESSAGES/kded_devicenotifications.mo +share/locale/gl/LC_MESSAGES/kfontinst.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/krdb.mo +share/locale/gl/LC_MESSAGES/krunner.mo +share/locale/gl/LC_MESSAGES/ksmserver.mo +share/locale/gl/LC_MESSAGES/libkicker.mo +share/locale/gl/LC_MESSAGES/libkmpris.mo +share/locale/gl/LC_MESSAGES/libkworkspace.mo +share/locale/gl/LC_MESSAGES/libnotificationmanager.mo +share/locale/gl/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.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.cameraindicator.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.manageinputmethod.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.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_dict.mo +share/locale/gl/LC_MESSAGES/plasma_engine_hotplug.mo +share/locale/gl/LC_MESSAGES/plasma_engine_keystate.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_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_runner_appstream.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_webshortcuts.mo +share/locale/gl/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo +share/locale/gl/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo +share/locale/gl/LC_MESSAGES/plasmashell.mo +share/locale/gl/LC_MESSAGES/plasmashellprivateplugin.mo +share/locale/gl/LC_MESSAGES/plasmawindowed.mo +share/locale/gl/LC_MESSAGES/soliduiserver5.mo +share/locale/gu/LC_MESSAGES/freespacenotifier.mo +share/locale/gu/LC_MESSAGES/kcm_autostart.mo +share/locale/gu/LC_MESSAGES/kcm_colors.mo +share/locale/gu/LC_MESSAGES/kcm_cursortheme.mo +share/locale/gu/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/gu/LC_MESSAGES/kcm_fonts.mo +share/locale/gu/LC_MESSAGES/kcm_icons.mo +share/locale/gu/LC_MESSAGES/kcm_style.mo +share/locale/gu/LC_MESSAGES/kcminit.mo +share/locale/gu/LC_MESSAGES/kfontinst.mo +share/locale/gu/LC_MESSAGES/kio5_applications.mo +share/locale/gu/LC_MESSAGES/klipper.mo +share/locale/gu/LC_MESSAGES/krdb.mo +share/locale/gu/LC_MESSAGES/ksmserver.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.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_notifications.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_webshortcuts.mo +share/locale/gu/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo +share/locale/gu/LC_MESSAGES/soliduiserver5.mo +share/locale/he/LC_MESSAGES/freespacenotifier.mo +share/locale/he/LC_MESSAGES/kcm_autostart.mo +share/locale/he/LC_MESSAGES/kcm_colors.mo +share/locale/he/LC_MESSAGES/kcm_cursortheme.mo +share/locale/he/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/he/LC_MESSAGES/kcm_feedback.mo +share/locale/he/LC_MESSAGES/kcm_fonts.mo +share/locale/he/LC_MESSAGES/kcm_icons.mo +share/locale/he/LC_MESSAGES/kcm_lookandfeel.mo +share/locale/he/LC_MESSAGES/kcm_nightcolor.mo +share/locale/he/LC_MESSAGES/kcm_notifications.mo +share/locale/he/LC_MESSAGES/kcm_regionandlang.mo +share/locale/he/LC_MESSAGES/kcm_soundtheme.mo +share/locale/he/LC_MESSAGES/kcm_style.mo +share/locale/he/LC_MESSAGES/kcm_users.mo +share/locale/he/LC_MESSAGES/kcminit.mo +share/locale/he/LC_MESSAGES/kded_devicenotifications.mo +share/locale/he/LC_MESSAGES/kfontinst.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/krdb.mo +share/locale/he/LC_MESSAGES/krunner.mo +share/locale/he/LC_MESSAGES/ksmserver.mo +share/locale/he/LC_MESSAGES/libkicker.mo +share/locale/he/LC_MESSAGES/libkmpris.mo +share/locale/he/LC_MESSAGES/libkworkspace.mo +share/locale/he/LC_MESSAGES/libnotificationmanager.mo +share/locale/he/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.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.cameraindicator.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.manageinputmethod.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.mo +share/locale/he/LC_MESSAGES/plasma_containmentactions_applauncher.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_dict.mo +share/locale/he/LC_MESSAGES/plasma_engine_hotplug.mo +share/locale/he/LC_MESSAGES/plasma_engine_keystate.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_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_appstream.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_webshortcuts.mo +share/locale/he/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo +share/locale/he/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo +share/locale/he/LC_MESSAGES/plasmashell.mo +share/locale/he/LC_MESSAGES/plasmashellprivateplugin.mo +share/locale/he/LC_MESSAGES/plasmawindowed.mo +share/locale/he/LC_MESSAGES/soliduiserver5.mo +share/locale/hi/LC_MESSAGES/freespacenotifier.mo +share/locale/hi/LC_MESSAGES/kcm_autostart.mo +share/locale/hi/LC_MESSAGES/kcm_colors.mo +share/locale/hi/LC_MESSAGES/kcm_cursortheme.mo +share/locale/hi/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/hi/LC_MESSAGES/kcm_feedback.mo +share/locale/hi/LC_MESSAGES/kcm_fonts.mo +share/locale/hi/LC_MESSAGES/kcm_icons.mo +share/locale/hi/LC_MESSAGES/kcm_lookandfeel.mo +share/locale/hi/LC_MESSAGES/kcm_nightcolor.mo +share/locale/hi/LC_MESSAGES/kcm_notifications.mo +share/locale/hi/LC_MESSAGES/kcm_style.mo +share/locale/hi/LC_MESSAGES/kcm_users.mo +share/locale/hi/LC_MESSAGES/kcminit.mo +share/locale/hi/LC_MESSAGES/kfontinst.mo +share/locale/hi/LC_MESSAGES/kio5_applications.mo +share/locale/hi/LC_MESSAGES/kio_desktop.mo +share/locale/hi/LC_MESSAGES/klipper.mo +share/locale/hi/LC_MESSAGES/krdb.mo +share/locale/hi/LC_MESSAGES/krunner.mo +share/locale/hi/LC_MESSAGES/ksmserver.mo +share/locale/hi/LC_MESSAGES/libkicker.mo +share/locale/hi/LC_MESSAGES/libkworkspace.mo +share/locale/hi/LC_MESSAGES/libnotificationmanager.mo +share/locale/hi/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.mo +share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo +share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo +share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo +share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo +share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo +share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo +share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo +share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo +share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo +share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.manageinputmethod.mo +share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo +share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo +share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo +share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo +share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.mo +share/locale/hi/LC_MESSAGES/plasma_containmentactions_applauncher.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_devicenotifications.mo +share/locale/hi/LC_MESSAGES/plasma_engine_dict.mo +share/locale/hi/LC_MESSAGES/plasma_engine_hotplug.mo +share/locale/hi/LC_MESSAGES/plasma_engine_keystate.mo +share/locale/hi/LC_MESSAGES/plasma_engine_notifications.mo +share/locale/hi/LC_MESSAGES/plasma_engine_powermanagement.mo +share/locale/hi/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/hi/LC_MESSAGES/plasma_engine_time.mo +share/locale/hi/LC_MESSAGES/plasma_engine_weather.mo +share/locale/hi/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo +share/locale/hi/LC_MESSAGES/plasma_runner_appstream.mo +share/locale/hi/LC_MESSAGES/plasma_runner_baloosearch5.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_webshortcuts.mo +share/locale/hi/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo +share/locale/hi/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo +share/locale/hi/LC_MESSAGES/plasmashell.mo +share/locale/hi/LC_MESSAGES/plasmashellprivateplugin.mo +share/locale/hi/LC_MESSAGES/soliduiserver5.mo +share/locale/hne/LC_MESSAGES/kcm_autostart.mo +share/locale/hne/LC_MESSAGES/kcm_colors.mo +share/locale/hne/LC_MESSAGES/kcm_cursortheme.mo +share/locale/hne/LC_MESSAGES/kcm_fonts.mo +share/locale/hne/LC_MESSAGES/kcm_icons.mo +share/locale/hne/LC_MESSAGES/kcm_style.mo +share/locale/hne/LC_MESSAGES/kcminit.mo +share/locale/hne/LC_MESSAGES/kfontinst.mo +share/locale/hne/LC_MESSAGES/kio5_applications.mo +share/locale/hne/LC_MESSAGES/krdb.mo +share/locale/hne/LC_MESSAGES/ksmserver.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/kcm_autostart.mo +share/locale/hr/LC_MESSAGES/kcm_colors.mo +share/locale/hr/LC_MESSAGES/kcm_cursortheme.mo +share/locale/hr/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/hr/LC_MESSAGES/kcm_fonts.mo +share/locale/hr/LC_MESSAGES/kcm_icons.mo +share/locale/hr/LC_MESSAGES/kcm_style.mo +share/locale/hr/LC_MESSAGES/kcminit.mo +share/locale/hr/LC_MESSAGES/kfontinst.mo +share/locale/hr/LC_MESSAGES/kio5_applications.mo +share/locale/hr/LC_MESSAGES/klipper.mo +share/locale/hr/LC_MESSAGES/krdb.mo +share/locale/hr/LC_MESSAGES/ksmserver.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.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_notifications.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_webshortcuts.mo +share/locale/hr/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo +share/locale/hr/LC_MESSAGES/soliduiserver5.mo +share/locale/hsb/LC_MESSAGES/freespacenotifier.mo +share/locale/hsb/LC_MESSAGES/kcm_autostart.mo +share/locale/hsb/LC_MESSAGES/kcm_colors.mo +share/locale/hsb/LC_MESSAGES/kcm_cursortheme.mo +share/locale/hsb/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/hsb/LC_MESSAGES/kcm_fonts.mo +share/locale/hsb/LC_MESSAGES/kcm_icons.mo +share/locale/hsb/LC_MESSAGES/kcm_style.mo +share/locale/hsb/LC_MESSAGES/kcminit.mo +share/locale/hsb/LC_MESSAGES/kfontinst.mo +share/locale/hsb/LC_MESSAGES/kio5_applications.mo +share/locale/hsb/LC_MESSAGES/klipper.mo +share/locale/hsb/LC_MESSAGES/krdb.mo +share/locale/hsb/LC_MESSAGES/ksmserver.mo +share/locale/hsb/LC_MESSAGES/libkicker.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.plasma.analogclock.mo +share/locale/hsb/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo +share/locale/hsb/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo +share/locale/hsb/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo +share/locale/hsb/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo +share/locale/hsb/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo +share/locale/hsb/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo +share/locale/hsb/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo +share/locale/hsb/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo +share/locale/hsb/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.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/plasma_wallpaper_org.kde.image.mo +share/locale/hsb/LC_MESSAGES/soliduiserver5.mo +share/locale/hu/LC_MESSAGES/freespacenotifier.mo +share/locale/hu/LC_MESSAGES/kcm_autostart.mo +share/locale/hu/LC_MESSAGES/kcm_colors.mo +share/locale/hu/LC_MESSAGES/kcm_cursortheme.mo +share/locale/hu/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/hu/LC_MESSAGES/kcm_feedback.mo +share/locale/hu/LC_MESSAGES/kcm_fonts.mo +share/locale/hu/LC_MESSAGES/kcm_icons.mo +share/locale/hu/LC_MESSAGES/kcm_lookandfeel.mo +share/locale/hu/LC_MESSAGES/kcm_nightcolor.mo +share/locale/hu/LC_MESSAGES/kcm_notifications.mo +share/locale/hu/LC_MESSAGES/kcm_style.mo +share/locale/hu/LC_MESSAGES/kcm_users.mo +share/locale/hu/LC_MESSAGES/kcminit.mo +share/locale/hu/LC_MESSAGES/kfontinst.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/krdb.mo +share/locale/hu/LC_MESSAGES/krunner.mo +share/locale/hu/LC_MESSAGES/ksmserver.mo +share/locale/hu/LC_MESSAGES/libkicker.mo +share/locale/hu/LC_MESSAGES/libkworkspace.mo +share/locale/hu/LC_MESSAGES/libnotificationmanager.mo +share/locale/hu/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.mo +share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo +share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.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.icon.mo +share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo +share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.manageinputmethod.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.mo +share/locale/hu/LC_MESSAGES/plasma_containmentactions_applauncher.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_dict.mo +share/locale/hu/LC_MESSAGES/plasma_engine_hotplug.mo +share/locale/hu/LC_MESSAGES/plasma_engine_keystate.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_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_runner_appstream.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_webshortcuts.mo +share/locale/hu/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo +share/locale/hu/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo +share/locale/hu/LC_MESSAGES/plasmashell.mo +share/locale/hu/LC_MESSAGES/plasmashellprivateplugin.mo +share/locale/hu/LC_MESSAGES/soliduiserver5.mo +share/locale/hy/LC_MESSAGES/kcminit.mo +share/locale/hy/LC_MESSAGES/kfontinst.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/kcm_autostart.mo +share/locale/ia/LC_MESSAGES/kcm_colors.mo +share/locale/ia/LC_MESSAGES/kcm_cursortheme.mo +share/locale/ia/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/ia/LC_MESSAGES/kcm_feedback.mo +share/locale/ia/LC_MESSAGES/kcm_fonts.mo +share/locale/ia/LC_MESSAGES/kcm_icons.mo +share/locale/ia/LC_MESSAGES/kcm_lookandfeel.mo +share/locale/ia/LC_MESSAGES/kcm_nightcolor.mo +share/locale/ia/LC_MESSAGES/kcm_notifications.mo +share/locale/ia/LC_MESSAGES/kcm_regionandlang.mo +share/locale/ia/LC_MESSAGES/kcm_soundtheme.mo +share/locale/ia/LC_MESSAGES/kcm_style.mo +share/locale/ia/LC_MESSAGES/kcm_users.mo +share/locale/ia/LC_MESSAGES/kcminit.mo +share/locale/ia/LC_MESSAGES/kded_devicenotifications.mo +share/locale/ia/LC_MESSAGES/kfontinst.mo +share/locale/ia/LC_MESSAGES/kio5_applications.mo +share/locale/ia/LC_MESSAGES/kio_desktop.mo +share/locale/ia/LC_MESSAGES/klipper.mo +share/locale/ia/LC_MESSAGES/krdb.mo +share/locale/ia/LC_MESSAGES/krunner.mo +share/locale/ia/LC_MESSAGES/ksmserver.mo +share/locale/ia/LC_MESSAGES/libkicker.mo +share/locale/ia/LC_MESSAGES/libkmpris.mo +share/locale/ia/LC_MESSAGES/libkworkspace.mo +share/locale/ia/LC_MESSAGES/libnotificationmanager.mo +share/locale/ia/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.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.brightness.mo +share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo +share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.cameraindicator.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.manageinputmethod.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.mo +share/locale/ia/LC_MESSAGES/plasma_containmentactions_applauncher.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_dict.mo +share/locale/ia/LC_MESSAGES/plasma_engine_hotplug.mo +share/locale/ia/LC_MESSAGES/plasma_engine_keystate.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_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_runner_appstream.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_webshortcuts.mo +share/locale/ia/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo +share/locale/ia/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo +share/locale/ia/LC_MESSAGES/plasmashell.mo +share/locale/ia/LC_MESSAGES/plasmashellprivateplugin.mo +share/locale/ia/LC_MESSAGES/plasmawindowed.mo +share/locale/ia/LC_MESSAGES/soliduiserver5.mo +share/locale/id/LC_MESSAGES/freespacenotifier.mo +share/locale/id/LC_MESSAGES/kcm_autostart.mo +share/locale/id/LC_MESSAGES/kcm_colors.mo +share/locale/id/LC_MESSAGES/kcm_cursortheme.mo +share/locale/id/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/id/LC_MESSAGES/kcm_feedback.mo +share/locale/id/LC_MESSAGES/kcm_fonts.mo +share/locale/id/LC_MESSAGES/kcm_icons.mo +share/locale/id/LC_MESSAGES/kcm_lookandfeel.mo +share/locale/id/LC_MESSAGES/kcm_nightcolor.mo +share/locale/id/LC_MESSAGES/kcm_notifications.mo +share/locale/id/LC_MESSAGES/kcm_style.mo +share/locale/id/LC_MESSAGES/kcm_users.mo +share/locale/id/LC_MESSAGES/kcminit.mo +share/locale/id/LC_MESSAGES/kfontinst.mo +share/locale/id/LC_MESSAGES/kio5_applications.mo +share/locale/id/LC_MESSAGES/kio_desktop.mo +share/locale/id/LC_MESSAGES/klipper.mo +share/locale/id/LC_MESSAGES/krdb.mo +share/locale/id/LC_MESSAGES/krunner.mo +share/locale/id/LC_MESSAGES/ksmserver.mo +share/locale/id/LC_MESSAGES/libkicker.mo +share/locale/id/LC_MESSAGES/libkworkspace.mo +share/locale/id/LC_MESSAGES/libnotificationmanager.mo +share/locale/id/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.mo +share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo +share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo +share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo +share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.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.digitalclock.mo +share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo +share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo +share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.manageinputmethod.mo +share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo +share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo +share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo +share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo +share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.mo +share/locale/id/LC_MESSAGES/plasma_containmentactions_applauncher.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_dict.mo +share/locale/id/LC_MESSAGES/plasma_engine_hotplug.mo +share/locale/id/LC_MESSAGES/plasma_engine_keystate.mo +share/locale/id/LC_MESSAGES/plasma_engine_notifications.mo +share/locale/id/LC_MESSAGES/plasma_engine_powermanagement.mo +share/locale/id/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/id/LC_MESSAGES/plasma_engine_time.mo +share/locale/id/LC_MESSAGES/plasma_engine_weather.mo +share/locale/id/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo +share/locale/id/LC_MESSAGES/plasma_runner_appstream.mo +share/locale/id/LC_MESSAGES/plasma_runner_baloosearch5.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_webshortcuts.mo +share/locale/id/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo +share/locale/id/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo +share/locale/id/LC_MESSAGES/plasmashell.mo +share/locale/id/LC_MESSAGES/plasmashellprivateplugin.mo +share/locale/id/LC_MESSAGES/soliduiserver5.mo +share/locale/is/LC_MESSAGES/freespacenotifier.mo +share/locale/is/LC_MESSAGES/kcm_autostart.mo +share/locale/is/LC_MESSAGES/kcm_colors.mo +share/locale/is/LC_MESSAGES/kcm_cursortheme.mo +share/locale/is/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/is/LC_MESSAGES/kcm_feedback.mo +share/locale/is/LC_MESSAGES/kcm_fonts.mo +share/locale/is/LC_MESSAGES/kcm_icons.mo +share/locale/is/LC_MESSAGES/kcm_lookandfeel.mo +share/locale/is/LC_MESSAGES/kcm_nightcolor.mo +share/locale/is/LC_MESSAGES/kcm_notifications.mo +share/locale/is/LC_MESSAGES/kcm_regionandlang.mo +share/locale/is/LC_MESSAGES/kcm_style.mo +share/locale/is/LC_MESSAGES/kcm_users.mo +share/locale/is/LC_MESSAGES/kcminit.mo +share/locale/is/LC_MESSAGES/kfontinst.mo +share/locale/is/LC_MESSAGES/kio5_applications.mo +share/locale/is/LC_MESSAGES/kio_desktop.mo +share/locale/is/LC_MESSAGES/klipper.mo +share/locale/is/LC_MESSAGES/krdb.mo +share/locale/is/LC_MESSAGES/krunner.mo +share/locale/is/LC_MESSAGES/ksmserver.mo +share/locale/is/LC_MESSAGES/libkicker.mo +share/locale/is/LC_MESSAGES/libkworkspace.mo +share/locale/is/LC_MESSAGES/libnotificationmanager.mo +share/locale/is/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.mo +share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo +share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo +share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo +share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo +share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo +share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo +share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo +share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo +share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo +share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.manageinputmethod.mo +share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo +share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo +share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo +share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo +share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.mo +share/locale/is/LC_MESSAGES/plasma_containmentactions_applauncher.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_devicenotifications.mo +share/locale/is/LC_MESSAGES/plasma_engine_dict.mo +share/locale/is/LC_MESSAGES/plasma_engine_hotplug.mo +share/locale/is/LC_MESSAGES/plasma_engine_keystate.mo +share/locale/is/LC_MESSAGES/plasma_engine_notifications.mo +share/locale/is/LC_MESSAGES/plasma_engine_powermanagement.mo +share/locale/is/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/is/LC_MESSAGES/plasma_engine_time.mo +share/locale/is/LC_MESSAGES/plasma_engine_weather.mo +share/locale/is/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo +share/locale/is/LC_MESSAGES/plasma_runner_appstream.mo +share/locale/is/LC_MESSAGES/plasma_runner_baloosearch5.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_webshortcuts.mo +share/locale/is/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo +share/locale/is/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo +share/locale/is/LC_MESSAGES/plasmashell.mo +share/locale/is/LC_MESSAGES/plasmashellprivateplugin.mo +share/locale/is/LC_MESSAGES/soliduiserver5.mo +share/locale/it/LC_MESSAGES/freespacenotifier.mo +share/locale/it/LC_MESSAGES/kcm_autostart.mo +share/locale/it/LC_MESSAGES/kcm_colors.mo +share/locale/it/LC_MESSAGES/kcm_cursortheme.mo +share/locale/it/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/it/LC_MESSAGES/kcm_feedback.mo +share/locale/it/LC_MESSAGES/kcm_fonts.mo +share/locale/it/LC_MESSAGES/kcm_icons.mo +share/locale/it/LC_MESSAGES/kcm_lookandfeel.mo +share/locale/it/LC_MESSAGES/kcm_nightcolor.mo +share/locale/it/LC_MESSAGES/kcm_notifications.mo +share/locale/it/LC_MESSAGES/kcm_regionandlang.mo +share/locale/it/LC_MESSAGES/kcm_soundtheme.mo +share/locale/it/LC_MESSAGES/kcm_style.mo +share/locale/it/LC_MESSAGES/kcm_users.mo +share/locale/it/LC_MESSAGES/kcminit.mo +share/locale/it/LC_MESSAGES/kded_devicenotifications.mo +share/locale/it/LC_MESSAGES/kfontinst.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/krdb.mo +share/locale/it/LC_MESSAGES/krunner.mo +share/locale/it/LC_MESSAGES/ksmserver.mo +share/locale/it/LC_MESSAGES/libkicker.mo +share/locale/it/LC_MESSAGES/libkmpris.mo +share/locale/it/LC_MESSAGES/libkworkspace.mo +share/locale/it/LC_MESSAGES/libnotificationmanager.mo +share/locale/it/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.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.brightness.mo +share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo +share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.cameraindicator.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.manageinputmethod.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.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_hotplug.mo +share/locale/it/LC_MESSAGES/plasma_engine_keystate.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_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_runner_appstream.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_webshortcuts.mo +share/locale/it/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo +share/locale/it/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo +share/locale/it/LC_MESSAGES/plasmashell.mo +share/locale/it/LC_MESSAGES/plasmashellprivateplugin.mo +share/locale/it/LC_MESSAGES/plasmawindowed.mo +share/locale/it/LC_MESSAGES/soliduiserver5.mo +share/locale/ja/LC_MESSAGES/freespacenotifier.mo +share/locale/ja/LC_MESSAGES/kcm_autostart.mo +share/locale/ja/LC_MESSAGES/kcm_colors.mo +share/locale/ja/LC_MESSAGES/kcm_cursortheme.mo +share/locale/ja/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/ja/LC_MESSAGES/kcm_feedback.mo +share/locale/ja/LC_MESSAGES/kcm_fonts.mo +share/locale/ja/LC_MESSAGES/kcm_icons.mo +share/locale/ja/LC_MESSAGES/kcm_lookandfeel.mo +share/locale/ja/LC_MESSAGES/kcm_nightcolor.mo +share/locale/ja/LC_MESSAGES/kcm_notifications.mo +share/locale/ja/LC_MESSAGES/kcm_regionandlang.mo +share/locale/ja/LC_MESSAGES/kcm_soundtheme.mo +share/locale/ja/LC_MESSAGES/kcm_style.mo +share/locale/ja/LC_MESSAGES/kcm_users.mo +share/locale/ja/LC_MESSAGES/kcminit.mo +share/locale/ja/LC_MESSAGES/kded_devicenotifications.mo +share/locale/ja/LC_MESSAGES/kfontinst.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/krdb.mo +share/locale/ja/LC_MESSAGES/krunner.mo +share/locale/ja/LC_MESSAGES/ksmserver.mo +share/locale/ja/LC_MESSAGES/libkicker.mo +share/locale/ja/LC_MESSAGES/libkmpris.mo +share/locale/ja/LC_MESSAGES/libkworkspace.mo +share/locale/ja/LC_MESSAGES/libnotificationmanager.mo +share/locale/ja/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.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.brightness.mo +share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo +share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.cameraindicator.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.manageinputmethod.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.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_hotplug.mo +share/locale/ja/LC_MESSAGES/plasma_engine_keystate.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_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_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_webshortcuts.mo +share/locale/ja/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo +share/locale/ja/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo +share/locale/ja/LC_MESSAGES/plasmashell.mo +share/locale/ja/LC_MESSAGES/plasmashellprivateplugin.mo +share/locale/ja/LC_MESSAGES/plasmawindowed.mo +share/locale/ja/LC_MESSAGES/soliduiserver5.mo +share/locale/ka/LC_MESSAGES/freespacenotifier.mo +share/locale/ka/LC_MESSAGES/kcm_autostart.mo +share/locale/ka/LC_MESSAGES/kcm_colors.mo +share/locale/ka/LC_MESSAGES/kcm_cursortheme.mo +share/locale/ka/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/ka/LC_MESSAGES/kcm_feedback.mo +share/locale/ka/LC_MESSAGES/kcm_fonts.mo +share/locale/ka/LC_MESSAGES/kcm_icons.mo +share/locale/ka/LC_MESSAGES/kcm_lookandfeel.mo +share/locale/ka/LC_MESSAGES/kcm_nightcolor.mo +share/locale/ka/LC_MESSAGES/kcm_notifications.mo +share/locale/ka/LC_MESSAGES/kcm_regionandlang.mo +share/locale/ka/LC_MESSAGES/kcm_soundtheme.mo +share/locale/ka/LC_MESSAGES/kcm_style.mo +share/locale/ka/LC_MESSAGES/kcm_users.mo +share/locale/ka/LC_MESSAGES/kcminit.mo +share/locale/ka/LC_MESSAGES/kded_devicenotifications.mo +share/locale/ka/LC_MESSAGES/kfontinst.mo +share/locale/ka/LC_MESSAGES/kio5_applications.mo +share/locale/ka/LC_MESSAGES/kio_desktop.mo +share/locale/ka/LC_MESSAGES/klipper.mo +share/locale/ka/LC_MESSAGES/krdb.mo +share/locale/ka/LC_MESSAGES/krunner.mo +share/locale/ka/LC_MESSAGES/ksmserver.mo +share/locale/ka/LC_MESSAGES/libkicker.mo +share/locale/ka/LC_MESSAGES/libkmpris.mo +share/locale/ka/LC_MESSAGES/libkworkspace.mo +share/locale/ka/LC_MESSAGES/libnotificationmanager.mo +share/locale/ka/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.mo +share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo +share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo +share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo +share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.brightness.mo +share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo +share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.cameraindicator.mo +share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo +share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo +share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo +share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo +share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo +share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.manageinputmethod.mo +share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo +share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo +share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo +share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo +share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.mo +share/locale/ka/LC_MESSAGES/plasma_containmentactions_applauncher.mo +share/locale/ka/LC_MESSAGES/plasma_containmentactions_contextmenu.mo +share/locale/ka/LC_MESSAGES/plasma_containmentactions_switchwindow.mo +share/locale/ka/LC_MESSAGES/plasma_engine_applicationjobs.mo +share/locale/ka/LC_MESSAGES/plasma_engine_devicenotifications.mo +share/locale/ka/LC_MESSAGES/plasma_engine_dict.mo +share/locale/ka/LC_MESSAGES/plasma_engine_hotplug.mo +share/locale/ka/LC_MESSAGES/plasma_engine_keystate.mo +share/locale/ka/LC_MESSAGES/plasma_engine_notifications.mo +share/locale/ka/LC_MESSAGES/plasma_engine_powermanagement.mo +share/locale/ka/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/ka/LC_MESSAGES/plasma_engine_time.mo +share/locale/ka/LC_MESSAGES/plasma_engine_weather.mo +share/locale/ka/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo +share/locale/ka/LC_MESSAGES/plasma_runner_appstream.mo +share/locale/ka/LC_MESSAGES/plasma_runner_baloosearch5.mo +share/locale/ka/LC_MESSAGES/plasma_runner_bookmarksrunner.mo +share/locale/ka/LC_MESSAGES/plasma_runner_calculatorrunner.mo +share/locale/ka/LC_MESSAGES/plasma_runner_kill.mo +share/locale/ka/LC_MESSAGES/plasma_runner_locations.mo +share/locale/ka/LC_MESSAGES/plasma_runner_placesrunner.mo +share/locale/ka/LC_MESSAGES/plasma_runner_powerdevil.mo +share/locale/ka/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/ka/LC_MESSAGES/plasma_runner_services.mo +share/locale/ka/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/ka/LC_MESSAGES/plasma_runner_shell.mo +share/locale/ka/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/ka/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo +share/locale/ka/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo +share/locale/ka/LC_MESSAGES/plasmashell.mo +share/locale/ka/LC_MESSAGES/plasmashellprivateplugin.mo +share/locale/ka/LC_MESSAGES/plasmawindowed.mo +share/locale/ka/LC_MESSAGES/soliduiserver5.mo +share/locale/kk/LC_MESSAGES/freespacenotifier.mo +share/locale/kk/LC_MESSAGES/kcm_autostart.mo +share/locale/kk/LC_MESSAGES/kcm_colors.mo +share/locale/kk/LC_MESSAGES/kcm_cursortheme.mo +share/locale/kk/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/kk/LC_MESSAGES/kcm_fonts.mo +share/locale/kk/LC_MESSAGES/kcm_icons.mo +share/locale/kk/LC_MESSAGES/kcm_style.mo +share/locale/kk/LC_MESSAGES/kcminit.mo +share/locale/kk/LC_MESSAGES/kfontinst.mo +share/locale/kk/LC_MESSAGES/kio5_applications.mo +share/locale/kk/LC_MESSAGES/klipper.mo +share/locale/kk/LC_MESSAGES/krdb.mo +share/locale/kk/LC_MESSAGES/ksmserver.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.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_notifications.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_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_webshortcuts.mo +share/locale/kk/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo +share/locale/kk/LC_MESSAGES/soliduiserver5.mo +share/locale/km/LC_MESSAGES/freespacenotifier.mo +share/locale/km/LC_MESSAGES/kcm_autostart.mo +share/locale/km/LC_MESSAGES/kcm_colors.mo +share/locale/km/LC_MESSAGES/kcm_cursortheme.mo +share/locale/km/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/km/LC_MESSAGES/kcm_fonts.mo +share/locale/km/LC_MESSAGES/kcm_icons.mo +share/locale/km/LC_MESSAGES/kcm_style.mo +share/locale/km/LC_MESSAGES/kcminit.mo +share/locale/km/LC_MESSAGES/kfontinst.mo +share/locale/km/LC_MESSAGES/kio5_applications.mo +share/locale/km/LC_MESSAGES/klipper.mo +share/locale/km/LC_MESSAGES/krdb.mo +share/locale/km/LC_MESSAGES/ksmserver.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.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_notifications.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_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_webshortcuts.mo +share/locale/km/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo +share/locale/km/LC_MESSAGES/soliduiserver5.mo +share/locale/kn/LC_MESSAGES/freespacenotifier.mo +share/locale/kn/LC_MESSAGES/kcm_autostart.mo +share/locale/kn/LC_MESSAGES/kcm_colors.mo +share/locale/kn/LC_MESSAGES/kcm_cursortheme.mo +share/locale/kn/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/kn/LC_MESSAGES/kcm_fonts.mo +share/locale/kn/LC_MESSAGES/kcm_icons.mo +share/locale/kn/LC_MESSAGES/kcm_style.mo +share/locale/kn/LC_MESSAGES/kcminit.mo +share/locale/kn/LC_MESSAGES/kfontinst.mo +share/locale/kn/LC_MESSAGES/kio5_applications.mo +share/locale/kn/LC_MESSAGES/klipper.mo +share/locale/kn/LC_MESSAGES/krdb.mo +share/locale/kn/LC_MESSAGES/ksmserver.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_notifications.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_webshortcuts.mo +share/locale/kn/LC_MESSAGES/soliduiserver5.mo +share/locale/ko/LC_MESSAGES/freespacenotifier.mo +share/locale/ko/LC_MESSAGES/kcm_autostart.mo +share/locale/ko/LC_MESSAGES/kcm_colors.mo +share/locale/ko/LC_MESSAGES/kcm_cursortheme.mo +share/locale/ko/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/ko/LC_MESSAGES/kcm_feedback.mo +share/locale/ko/LC_MESSAGES/kcm_fonts.mo +share/locale/ko/LC_MESSAGES/kcm_icons.mo +share/locale/ko/LC_MESSAGES/kcm_lookandfeel.mo +share/locale/ko/LC_MESSAGES/kcm_nightcolor.mo +share/locale/ko/LC_MESSAGES/kcm_notifications.mo +share/locale/ko/LC_MESSAGES/kcm_regionandlang.mo +share/locale/ko/LC_MESSAGES/kcm_soundtheme.mo +share/locale/ko/LC_MESSAGES/kcm_style.mo +share/locale/ko/LC_MESSAGES/kcm_users.mo +share/locale/ko/LC_MESSAGES/kcminit.mo +share/locale/ko/LC_MESSAGES/kded_devicenotifications.mo +share/locale/ko/LC_MESSAGES/kfontinst.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/krdb.mo +share/locale/ko/LC_MESSAGES/krunner.mo +share/locale/ko/LC_MESSAGES/ksmserver.mo +share/locale/ko/LC_MESSAGES/libkicker.mo +share/locale/ko/LC_MESSAGES/libkmpris.mo +share/locale/ko/LC_MESSAGES/libkworkspace.mo +share/locale/ko/LC_MESSAGES/libnotificationmanager.mo +share/locale/ko/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.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.cameraindicator.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.manageinputmethod.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.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_hotplug.mo +share/locale/ko/LC_MESSAGES/plasma_engine_keystate.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_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_runner_appstream.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_webshortcuts.mo +share/locale/ko/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo +share/locale/ko/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo +share/locale/ko/LC_MESSAGES/plasmashell.mo +share/locale/ko/LC_MESSAGES/plasmashellprivateplugin.mo +share/locale/ko/LC_MESSAGES/plasmawindowed.mo +share/locale/ko/LC_MESSAGES/soliduiserver5.mo +share/locale/ku/LC_MESSAGES/kcm_autostart.mo +share/locale/ku/LC_MESSAGES/kcm_colors.mo +share/locale/ku/LC_MESSAGES/kcm_cursortheme.mo +share/locale/ku/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/ku/LC_MESSAGES/kcm_fonts.mo +share/locale/ku/LC_MESSAGES/kcm_icons.mo +share/locale/ku/LC_MESSAGES/kcm_style.mo +share/locale/ku/LC_MESSAGES/kcminit.mo +share/locale/ku/LC_MESSAGES/kfontinst.mo +share/locale/ku/LC_MESSAGES/kio5_applications.mo +share/locale/ku/LC_MESSAGES/klipper.mo +share/locale/ku/LC_MESSAGES/krdb.mo +share/locale/ku/LC_MESSAGES/ksmserver.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.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_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/plasma_wallpaper_org.kde.image.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/kcm_autostart.mo +share/locale/lt/LC_MESSAGES/kcm_colors.mo +share/locale/lt/LC_MESSAGES/kcm_cursortheme.mo +share/locale/lt/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/lt/LC_MESSAGES/kcm_feedback.mo +share/locale/lt/LC_MESSAGES/kcm_fonts.mo +share/locale/lt/LC_MESSAGES/kcm_icons.mo +share/locale/lt/LC_MESSAGES/kcm_lookandfeel.mo +share/locale/lt/LC_MESSAGES/kcm_nightcolor.mo +share/locale/lt/LC_MESSAGES/kcm_notifications.mo +share/locale/lt/LC_MESSAGES/kcm_regionandlang.mo +share/locale/lt/LC_MESSAGES/kcm_style.mo +share/locale/lt/LC_MESSAGES/kcm_users.mo +share/locale/lt/LC_MESSAGES/kcminit.mo +share/locale/lt/LC_MESSAGES/kfontinst.mo +share/locale/lt/LC_MESSAGES/kio5_applications.mo +share/locale/lt/LC_MESSAGES/kio_desktop.mo +share/locale/lt/LC_MESSAGES/klipper.mo +share/locale/lt/LC_MESSAGES/krdb.mo +share/locale/lt/LC_MESSAGES/krunner.mo +share/locale/lt/LC_MESSAGES/ksmserver.mo +share/locale/lt/LC_MESSAGES/libkicker.mo +share/locale/lt/LC_MESSAGES/libkworkspace.mo +share/locale/lt/LC_MESSAGES/libnotificationmanager.mo +share/locale/lt/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.mo +share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo +share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.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.icon.mo +share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo +share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.manageinputmethod.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.mo +share/locale/lt/LC_MESSAGES/plasma_containmentactions_applauncher.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_dict.mo +share/locale/lt/LC_MESSAGES/plasma_engine_hotplug.mo +share/locale/lt/LC_MESSAGES/plasma_engine_keystate.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_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_runner_appstream.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_webshortcuts.mo +share/locale/lt/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo +share/locale/lt/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo +share/locale/lt/LC_MESSAGES/plasmashell.mo +share/locale/lt/LC_MESSAGES/plasmashellprivateplugin.mo +share/locale/lt/LC_MESSAGES/soliduiserver5.mo +share/locale/lv/LC_MESSAGES/freespacenotifier.mo +share/locale/lv/LC_MESSAGES/kcm_autostart.mo +share/locale/lv/LC_MESSAGES/kcm_colors.mo +share/locale/lv/LC_MESSAGES/kcm_cursortheme.mo +share/locale/lv/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/lv/LC_MESSAGES/kcm_fonts.mo +share/locale/lv/LC_MESSAGES/kcm_icons.mo +share/locale/lv/LC_MESSAGES/kcm_style.mo +share/locale/lv/LC_MESSAGES/kcminit.mo +share/locale/lv/LC_MESSAGES/kfontinst.mo +share/locale/lv/LC_MESSAGES/kio5_applications.mo +share/locale/lv/LC_MESSAGES/kio_desktop.mo +share/locale/lv/LC_MESSAGES/klipper.mo +share/locale/lv/LC_MESSAGES/krdb.mo +share/locale/lv/LC_MESSAGES/ksmserver.mo +share/locale/lv/LC_MESSAGES/libkicker.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.plasma.analogclock.mo +share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo +share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo +share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.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_notifications.mo +share/locale/lv/LC_MESSAGES/plasma_engine_powermanagement.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_webshortcuts.mo +share/locale/lv/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo +share/locale/lv/LC_MESSAGES/plasmashell.mo +share/locale/lv/LC_MESSAGES/soliduiserver5.mo +share/locale/mai/LC_MESSAGES/freespacenotifier.mo +share/locale/mai/LC_MESSAGES/kcm_autostart.mo +share/locale/mai/LC_MESSAGES/kcm_colors.mo +share/locale/mai/LC_MESSAGES/kcm_cursortheme.mo +share/locale/mai/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/mai/LC_MESSAGES/kcm_fonts.mo +share/locale/mai/LC_MESSAGES/kcm_icons.mo +share/locale/mai/LC_MESSAGES/kcm_style.mo +share/locale/mai/LC_MESSAGES/kcminit.mo +share/locale/mai/LC_MESSAGES/kfontinst.mo +share/locale/mai/LC_MESSAGES/kio5_applications.mo +share/locale/mai/LC_MESSAGES/klipper.mo +share/locale/mai/LC_MESSAGES/krdb.mo +share/locale/mai/LC_MESSAGES/ksmserver.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.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_notifications.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_webshortcuts.mo +share/locale/mai/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo +share/locale/mai/LC_MESSAGES/soliduiserver5.mo +share/locale/mk/LC_MESSAGES/kcm_autostart.mo +share/locale/mk/LC_MESSAGES/kcm_colors.mo +share/locale/mk/LC_MESSAGES/kcm_cursortheme.mo +share/locale/mk/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/mk/LC_MESSAGES/kcm_fonts.mo +share/locale/mk/LC_MESSAGES/kcm_icons.mo +share/locale/mk/LC_MESSAGES/kcm_style.mo +share/locale/mk/LC_MESSAGES/kcminit.mo +share/locale/mk/LC_MESSAGES/kfontinst.mo +share/locale/mk/LC_MESSAGES/kio5_applications.mo +share/locale/mk/LC_MESSAGES/klipper.mo +share/locale/mk/LC_MESSAGES/krdb.mo +share/locale/mk/LC_MESSAGES/ksmserver.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.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/plasma_wallpaper_org.kde.image.mo +share/locale/mk/LC_MESSAGES/soliduiserver5.mo +share/locale/ml/LC_MESSAGES/freespacenotifier.mo +share/locale/ml/LC_MESSAGES/kcm_autostart.mo +share/locale/ml/LC_MESSAGES/kcm_colors.mo +share/locale/ml/LC_MESSAGES/kcm_cursortheme.mo +share/locale/ml/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/ml/LC_MESSAGES/kcm_feedback.mo +share/locale/ml/LC_MESSAGES/kcm_fonts.mo +share/locale/ml/LC_MESSAGES/kcm_icons.mo +share/locale/ml/LC_MESSAGES/kcm_lookandfeel.mo +share/locale/ml/LC_MESSAGES/kcm_nightcolor.mo +share/locale/ml/LC_MESSAGES/kcm_notifications.mo +share/locale/ml/LC_MESSAGES/kcm_style.mo +share/locale/ml/LC_MESSAGES/kcminit.mo +share/locale/ml/LC_MESSAGES/kfontinst.mo +share/locale/ml/LC_MESSAGES/kio5_applications.mo +share/locale/ml/LC_MESSAGES/kio_desktop.mo +share/locale/ml/LC_MESSAGES/klipper.mo +share/locale/ml/LC_MESSAGES/krdb.mo +share/locale/ml/LC_MESSAGES/krunner.mo +share/locale/ml/LC_MESSAGES/ksmserver.mo +share/locale/ml/LC_MESSAGES/libkicker.mo +share/locale/ml/LC_MESSAGES/libkworkspace.mo +share/locale/ml/LC_MESSAGES/libnotificationmanager.mo +share/locale/ml/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo +share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo +share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo +share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo +share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo +share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo +share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo +share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo +share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo +share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo +share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo +share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo +share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo +share/locale/ml/LC_MESSAGES/plasma_containmentactions_applauncher.mo +share/locale/ml/LC_MESSAGES/plasma_containmentactions_contextmenu.mo +share/locale/ml/LC_MESSAGES/plasma_containmentactions_switchwindow.mo +share/locale/ml/LC_MESSAGES/plasma_engine_applicationjobs.mo +share/locale/ml/LC_MESSAGES/plasma_engine_devicenotifications.mo +share/locale/ml/LC_MESSAGES/plasma_engine_dict.mo +share/locale/ml/LC_MESSAGES/plasma_engine_hotplug.mo +share/locale/ml/LC_MESSAGES/plasma_engine_keystate.mo +share/locale/ml/LC_MESSAGES/plasma_engine_notifications.mo +share/locale/ml/LC_MESSAGES/plasma_engine_powermanagement.mo +share/locale/ml/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/ml/LC_MESSAGES/plasma_engine_time.mo +share/locale/ml/LC_MESSAGES/plasma_engine_weather.mo +share/locale/ml/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo +share/locale/ml/LC_MESSAGES/plasma_runner_appstream.mo +share/locale/ml/LC_MESSAGES/plasma_runner_baloosearch5.mo +share/locale/ml/LC_MESSAGES/plasma_runner_bookmarksrunner.mo +share/locale/ml/LC_MESSAGES/plasma_runner_calculatorrunner.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_placesrunner.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_services.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/plasma_wallpaper_org.kde.color.mo +share/locale/ml/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo +share/locale/ml/LC_MESSAGES/plasmashell.mo +share/locale/ml/LC_MESSAGES/plasmashellprivateplugin.mo +share/locale/ml/LC_MESSAGES/soliduiserver5.mo +share/locale/mr/LC_MESSAGES/freespacenotifier.mo +share/locale/mr/LC_MESSAGES/kcm_autostart.mo +share/locale/mr/LC_MESSAGES/kcm_colors.mo +share/locale/mr/LC_MESSAGES/kcm_cursortheme.mo +share/locale/mr/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/mr/LC_MESSAGES/kcm_fonts.mo +share/locale/mr/LC_MESSAGES/kcm_icons.mo +share/locale/mr/LC_MESSAGES/kcm_style.mo +share/locale/mr/LC_MESSAGES/kcminit.mo +share/locale/mr/LC_MESSAGES/kfontinst.mo +share/locale/mr/LC_MESSAGES/kio5_applications.mo +share/locale/mr/LC_MESSAGES/klipper.mo +share/locale/mr/LC_MESSAGES/krdb.mo +share/locale/mr/LC_MESSAGES/ksmserver.mo +share/locale/mr/LC_MESSAGES/libkicker.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.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_notifications.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_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_webshortcuts.mo +share/locale/mr/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo +share/locale/mr/LC_MESSAGES/soliduiserver5.mo +share/locale/ms/LC_MESSAGES/freespacenotifier.mo +share/locale/ms/LC_MESSAGES/kcm_autostart.mo +share/locale/ms/LC_MESSAGES/kcm_colors.mo +share/locale/ms/LC_MESSAGES/kcm_cursortheme.mo +share/locale/ms/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/ms/LC_MESSAGES/kcm_fonts.mo +share/locale/ms/LC_MESSAGES/kcm_icons.mo +share/locale/ms/LC_MESSAGES/kcm_style.mo +share/locale/ms/LC_MESSAGES/kcminit.mo +share/locale/ms/LC_MESSAGES/kfontinst.mo +share/locale/ms/LC_MESSAGES/kio5_applications.mo +share/locale/ms/LC_MESSAGES/klipper.mo +share/locale/ms/LC_MESSAGES/krdb.mo +share/locale/ms/LC_MESSAGES/ksmserver.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.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_notifications.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_webshortcuts.mo +share/locale/ms/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo +share/locale/ms/LC_MESSAGES/soliduiserver5.mo +share/locale/nb/LC_MESSAGES/freespacenotifier.mo +share/locale/nb/LC_MESSAGES/kcm_autostart.mo +share/locale/nb/LC_MESSAGES/kcm_colors.mo +share/locale/nb/LC_MESSAGES/kcm_cursortheme.mo +share/locale/nb/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/nb/LC_MESSAGES/kcm_fonts.mo +share/locale/nb/LC_MESSAGES/kcm_icons.mo +share/locale/nb/LC_MESSAGES/kcm_lookandfeel.mo +share/locale/nb/LC_MESSAGES/kcm_style.mo +share/locale/nb/LC_MESSAGES/kcminit.mo +share/locale/nb/LC_MESSAGES/kfontinst.mo +share/locale/nb/LC_MESSAGES/kio5_applications.mo +share/locale/nb/LC_MESSAGES/kio_desktop.mo +share/locale/nb/LC_MESSAGES/klipper.mo +share/locale/nb/LC_MESSAGES/krdb.mo +share/locale/nb/LC_MESSAGES/krunner.mo +share/locale/nb/LC_MESSAGES/ksmserver.mo +share/locale/nb/LC_MESSAGES/libkicker.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.plasma.analogclock.mo +share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.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.icon.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_applauncher.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_dict.mo +share/locale/nb/LC_MESSAGES/plasma_engine_keystate.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_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_runner_appstream.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_webshortcuts.mo +share/locale/nb/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo +share/locale/nb/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo +share/locale/nb/LC_MESSAGES/plasmashell.mo +share/locale/nb/LC_MESSAGES/plasmashellprivateplugin.mo +share/locale/nb/LC_MESSAGES/soliduiserver5.mo +share/locale/nds/LC_MESSAGES/freespacenotifier.mo +share/locale/nds/LC_MESSAGES/kcm_autostart.mo +share/locale/nds/LC_MESSAGES/kcm_colors.mo +share/locale/nds/LC_MESSAGES/kcm_cursortheme.mo +share/locale/nds/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/nds/LC_MESSAGES/kcm_fonts.mo +share/locale/nds/LC_MESSAGES/kcm_icons.mo +share/locale/nds/LC_MESSAGES/kcm_lookandfeel.mo +share/locale/nds/LC_MESSAGES/kcm_style.mo +share/locale/nds/LC_MESSAGES/kcminit.mo +share/locale/nds/LC_MESSAGES/kfontinst.mo +share/locale/nds/LC_MESSAGES/kio5_applications.mo +share/locale/nds/LC_MESSAGES/klipper.mo +share/locale/nds/LC_MESSAGES/krdb.mo +share/locale/nds/LC_MESSAGES/krunner.mo +share/locale/nds/LC_MESSAGES/ksmserver.mo +share/locale/nds/LC_MESSAGES/libkicker.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.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_notifications.mo +share/locale/nds/LC_MESSAGES/plasma_engine_powermanagement.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_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_webshortcuts.mo +share/locale/nds/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo +share/locale/nds/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo +share/locale/nds/LC_MESSAGES/plasmashell.mo +share/locale/nds/LC_MESSAGES/plasmashellprivateplugin.mo +share/locale/nds/LC_MESSAGES/soliduiserver5.mo +share/locale/ne/LC_MESSAGES/kcm_colors.mo +share/locale/ne/LC_MESSAGES/kcm_cursortheme.mo +share/locale/ne/LC_MESSAGES/kcm_fonts.mo +share/locale/ne/LC_MESSAGES/kcm_icons.mo +share/locale/ne/LC_MESSAGES/kcm_style.mo +share/locale/ne/LC_MESSAGES/kcminit.mo +share/locale/ne/LC_MESSAGES/kfontinst.mo +share/locale/ne/LC_MESSAGES/kio5_applications.mo +share/locale/ne/LC_MESSAGES/klipper.mo +share/locale/ne/LC_MESSAGES/krdb.mo +share/locale/ne/LC_MESSAGES/ksmserver.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/kcm_autostart.mo +share/locale/nl/LC_MESSAGES/kcm_colors.mo +share/locale/nl/LC_MESSAGES/kcm_cursortheme.mo +share/locale/nl/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/nl/LC_MESSAGES/kcm_feedback.mo +share/locale/nl/LC_MESSAGES/kcm_fonts.mo +share/locale/nl/LC_MESSAGES/kcm_icons.mo +share/locale/nl/LC_MESSAGES/kcm_lookandfeel.mo +share/locale/nl/LC_MESSAGES/kcm_nightcolor.mo +share/locale/nl/LC_MESSAGES/kcm_notifications.mo +share/locale/nl/LC_MESSAGES/kcm_regionandlang.mo +share/locale/nl/LC_MESSAGES/kcm_soundtheme.mo +share/locale/nl/LC_MESSAGES/kcm_style.mo +share/locale/nl/LC_MESSAGES/kcm_users.mo +share/locale/nl/LC_MESSAGES/kcminit.mo +share/locale/nl/LC_MESSAGES/kded_devicenotifications.mo +share/locale/nl/LC_MESSAGES/kfontinst.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/krdb.mo +share/locale/nl/LC_MESSAGES/krunner.mo +share/locale/nl/LC_MESSAGES/ksmserver.mo +share/locale/nl/LC_MESSAGES/libkicker.mo +share/locale/nl/LC_MESSAGES/libkmpris.mo +share/locale/nl/LC_MESSAGES/libkworkspace.mo +share/locale/nl/LC_MESSAGES/libnotificationmanager.mo +share/locale/nl/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.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.brightness.mo +share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo +share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.cameraindicator.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.manageinputmethod.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.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_hotplug.mo +share/locale/nl/LC_MESSAGES/plasma_engine_keystate.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_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_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_webshortcuts.mo +share/locale/nl/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo +share/locale/nl/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo +share/locale/nl/LC_MESSAGES/plasmashell.mo +share/locale/nl/LC_MESSAGES/plasmashellprivateplugin.mo +share/locale/nl/LC_MESSAGES/plasmawindowed.mo +share/locale/nl/LC_MESSAGES/soliduiserver5.mo +share/locale/nn/LC_MESSAGES/freespacenotifier.mo +share/locale/nn/LC_MESSAGES/kcm_autostart.mo +share/locale/nn/LC_MESSAGES/kcm_colors.mo +share/locale/nn/LC_MESSAGES/kcm_cursortheme.mo +share/locale/nn/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/nn/LC_MESSAGES/kcm_feedback.mo +share/locale/nn/LC_MESSAGES/kcm_fonts.mo +share/locale/nn/LC_MESSAGES/kcm_icons.mo +share/locale/nn/LC_MESSAGES/kcm_lookandfeel.mo +share/locale/nn/LC_MESSAGES/kcm_nightcolor.mo +share/locale/nn/LC_MESSAGES/kcm_notifications.mo +share/locale/nn/LC_MESSAGES/kcm_regionandlang.mo +share/locale/nn/LC_MESSAGES/kcm_soundtheme.mo +share/locale/nn/LC_MESSAGES/kcm_style.mo +share/locale/nn/LC_MESSAGES/kcm_users.mo +share/locale/nn/LC_MESSAGES/kcminit.mo +share/locale/nn/LC_MESSAGES/kded_devicenotifications.mo +share/locale/nn/LC_MESSAGES/kfontinst.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/krdb.mo +share/locale/nn/LC_MESSAGES/krunner.mo +share/locale/nn/LC_MESSAGES/ksmserver.mo +share/locale/nn/LC_MESSAGES/libkicker.mo +share/locale/nn/LC_MESSAGES/libkworkspace.mo +share/locale/nn/LC_MESSAGES/libnotificationmanager.mo +share/locale/nn/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.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.manageinputmethod.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.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_hotplug.mo +share/locale/nn/LC_MESSAGES/plasma_engine_keystate.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_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_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_webshortcuts.mo +share/locale/nn/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo +share/locale/nn/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo +share/locale/nn/LC_MESSAGES/plasmashell.mo +share/locale/nn/LC_MESSAGES/plasmashellprivateplugin.mo +share/locale/nn/LC_MESSAGES/soliduiserver5.mo +share/locale/oc/LC_MESSAGES/kcm_colors.mo +share/locale/oc/LC_MESSAGES/kcm_cursortheme.mo +share/locale/oc/LC_MESSAGES/kcm_fonts.mo +share/locale/oc/LC_MESSAGES/kcm_icons.mo +share/locale/oc/LC_MESSAGES/kcm_style.mo +share/locale/oc/LC_MESSAGES/kcminit.mo +share/locale/oc/LC_MESSAGES/kfontinst.mo +share/locale/oc/LC_MESSAGES/kio5_applications.mo +share/locale/oc/LC_MESSAGES/klipper.mo +share/locale/oc/LC_MESSAGES/krdb.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/kcm_autostart.mo +share/locale/or/LC_MESSAGES/kcm_colors.mo +share/locale/or/LC_MESSAGES/kcm_cursortheme.mo +share/locale/or/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/or/LC_MESSAGES/kcm_fonts.mo +share/locale/or/LC_MESSAGES/kcm_icons.mo +share/locale/or/LC_MESSAGES/kcm_style.mo +share/locale/or/LC_MESSAGES/kcminit.mo +share/locale/or/LC_MESSAGES/kfontinst.mo +share/locale/or/LC_MESSAGES/kio5_applications.mo +share/locale/or/LC_MESSAGES/klipper.mo +share/locale/or/LC_MESSAGES/krdb.mo +share/locale/or/LC_MESSAGES/ksmserver.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.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_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/plasma_wallpaper_org.kde.image.mo +share/locale/or/LC_MESSAGES/soliduiserver5.mo +share/locale/pa/LC_MESSAGES/freespacenotifier.mo +share/locale/pa/LC_MESSAGES/kcm_autostart.mo +share/locale/pa/LC_MESSAGES/kcm_colors.mo +share/locale/pa/LC_MESSAGES/kcm_cursortheme.mo +share/locale/pa/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/pa/LC_MESSAGES/kcm_feedback.mo +share/locale/pa/LC_MESSAGES/kcm_fonts.mo +share/locale/pa/LC_MESSAGES/kcm_icons.mo +share/locale/pa/LC_MESSAGES/kcm_lookandfeel.mo +share/locale/pa/LC_MESSAGES/kcm_nightcolor.mo +share/locale/pa/LC_MESSAGES/kcm_notifications.mo +share/locale/pa/LC_MESSAGES/kcm_regionandlang.mo +share/locale/pa/LC_MESSAGES/kcm_style.mo +share/locale/pa/LC_MESSAGES/kcm_users.mo +share/locale/pa/LC_MESSAGES/kcminit.mo +share/locale/pa/LC_MESSAGES/kfontinst.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/krdb.mo +share/locale/pa/LC_MESSAGES/krunner.mo +share/locale/pa/LC_MESSAGES/ksmserver.mo +share/locale/pa/LC_MESSAGES/libkicker.mo +share/locale/pa/LC_MESSAGES/libkworkspace.mo +share/locale/pa/LC_MESSAGES/libnotificationmanager.mo +share/locale/pa/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.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.icon.mo +share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo +share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.manageinputmethod.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.mo +share/locale/pa/LC_MESSAGES/plasma_containmentactions_applauncher.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_dict.mo +share/locale/pa/LC_MESSAGES/plasma_engine_hotplug.mo +share/locale/pa/LC_MESSAGES/plasma_engine_keystate.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_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_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_webshortcuts.mo +share/locale/pa/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo +share/locale/pa/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo +share/locale/pa/LC_MESSAGES/plasmashell.mo +share/locale/pa/LC_MESSAGES/plasmashellprivateplugin.mo +share/locale/pa/LC_MESSAGES/soliduiserver5.mo +share/locale/pl/LC_MESSAGES/freespacenotifier.mo +share/locale/pl/LC_MESSAGES/kcm_autostart.mo +share/locale/pl/LC_MESSAGES/kcm_colors.mo +share/locale/pl/LC_MESSAGES/kcm_cursortheme.mo +share/locale/pl/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/pl/LC_MESSAGES/kcm_feedback.mo +share/locale/pl/LC_MESSAGES/kcm_fonts.mo +share/locale/pl/LC_MESSAGES/kcm_icons.mo +share/locale/pl/LC_MESSAGES/kcm_lookandfeel.mo +share/locale/pl/LC_MESSAGES/kcm_nightcolor.mo +share/locale/pl/LC_MESSAGES/kcm_notifications.mo +share/locale/pl/LC_MESSAGES/kcm_regionandlang.mo +share/locale/pl/LC_MESSAGES/kcm_soundtheme.mo +share/locale/pl/LC_MESSAGES/kcm_style.mo +share/locale/pl/LC_MESSAGES/kcm_users.mo +share/locale/pl/LC_MESSAGES/kcminit.mo +share/locale/pl/LC_MESSAGES/kded_devicenotifications.mo +share/locale/pl/LC_MESSAGES/kfontinst.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/krdb.mo +share/locale/pl/LC_MESSAGES/krunner.mo +share/locale/pl/LC_MESSAGES/ksmserver.mo +share/locale/pl/LC_MESSAGES/libkicker.mo +share/locale/pl/LC_MESSAGES/libkmpris.mo +share/locale/pl/LC_MESSAGES/libkworkspace.mo +share/locale/pl/LC_MESSAGES/libnotificationmanager.mo +share/locale/pl/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.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.cameraindicator.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.manageinputmethod.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.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_hotplug.mo +share/locale/pl/LC_MESSAGES/plasma_engine_keystate.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_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_runner_appstream.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_webshortcuts.mo +share/locale/pl/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo +share/locale/pl/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo +share/locale/pl/LC_MESSAGES/plasmashell.mo +share/locale/pl/LC_MESSAGES/plasmashellprivateplugin.mo +share/locale/pl/LC_MESSAGES/plasmawindowed.mo +share/locale/pl/LC_MESSAGES/soliduiserver5.mo +share/locale/pt/LC_MESSAGES/freespacenotifier.mo +share/locale/pt/LC_MESSAGES/kcm_autostart.mo +share/locale/pt/LC_MESSAGES/kcm_colors.mo +share/locale/pt/LC_MESSAGES/kcm_cursortheme.mo +share/locale/pt/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/pt/LC_MESSAGES/kcm_feedback.mo +share/locale/pt/LC_MESSAGES/kcm_fonts.mo +share/locale/pt/LC_MESSAGES/kcm_icons.mo +share/locale/pt/LC_MESSAGES/kcm_lookandfeel.mo +share/locale/pt/LC_MESSAGES/kcm_nightcolor.mo +share/locale/pt/LC_MESSAGES/kcm_notifications.mo +share/locale/pt/LC_MESSAGES/kcm_regionandlang.mo +share/locale/pt/LC_MESSAGES/kcm_style.mo +share/locale/pt/LC_MESSAGES/kcm_users.mo +share/locale/pt/LC_MESSAGES/kcminit.mo +share/locale/pt/LC_MESSAGES/kfontinst.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/krdb.mo +share/locale/pt/LC_MESSAGES/krunner.mo +share/locale/pt/LC_MESSAGES/ksmserver.mo +share/locale/pt/LC_MESSAGES/libkicker.mo +share/locale/pt/LC_MESSAGES/libkworkspace.mo +share/locale/pt/LC_MESSAGES/libnotificationmanager.mo +share/locale/pt/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.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.manageinputmethod.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.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_hotplug.mo +share/locale/pt/LC_MESSAGES/plasma_engine_keystate.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_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_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_webshortcuts.mo +share/locale/pt/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo +share/locale/pt/LC_MESSAGES/plasma_wallpaper_org.kde.image.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_BR/LC_MESSAGES/freespacenotifier.mo +share/locale/pt_BR/LC_MESSAGES/kcm_autostart.mo +share/locale/pt_BR/LC_MESSAGES/kcm_colors.mo +share/locale/pt_BR/LC_MESSAGES/kcm_cursortheme.mo +share/locale/pt_BR/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/pt_BR/LC_MESSAGES/kcm_feedback.mo +share/locale/pt_BR/LC_MESSAGES/kcm_fonts.mo +share/locale/pt_BR/LC_MESSAGES/kcm_icons.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_notifications.mo +share/locale/pt_BR/LC_MESSAGES/kcm_regionandlang.mo +share/locale/pt_BR/LC_MESSAGES/kcm_soundtheme.mo +share/locale/pt_BR/LC_MESSAGES/kcm_style.mo +share/locale/pt_BR/LC_MESSAGES/kcm_users.mo +share/locale/pt_BR/LC_MESSAGES/kcminit.mo +share/locale/pt_BR/LC_MESSAGES/kded_devicenotifications.mo +share/locale/pt_BR/LC_MESSAGES/kfontinst.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/krdb.mo +share/locale/pt_BR/LC_MESSAGES/krunner.mo +share/locale/pt_BR/LC_MESSAGES/ksmserver.mo +share/locale/pt_BR/LC_MESSAGES/libkicker.mo +share/locale/pt_BR/LC_MESSAGES/libkmpris.mo +share/locale/pt_BR/LC_MESSAGES/libkworkspace.mo +share/locale/pt_BR/LC_MESSAGES/libnotificationmanager.mo +share/locale/pt_BR/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.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.cameraindicator.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.manageinputmethod.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.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_hotplug.mo +share/locale/pt_BR/LC_MESSAGES/plasma_engine_keystate.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_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_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_webshortcuts.mo +share/locale/pt_BR/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo +share/locale/pt_BR/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo +share/locale/pt_BR/LC_MESSAGES/plasmashell.mo +share/locale/pt_BR/LC_MESSAGES/plasmashellprivateplugin.mo +share/locale/pt_BR/LC_MESSAGES/plasmawindowed.mo +share/locale/pt_BR/LC_MESSAGES/soliduiserver5.mo +share/locale/ro/LC_MESSAGES/freespacenotifier.mo +share/locale/ro/LC_MESSAGES/kcm_autostart.mo +share/locale/ro/LC_MESSAGES/kcm_colors.mo +share/locale/ro/LC_MESSAGES/kcm_cursortheme.mo +share/locale/ro/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/ro/LC_MESSAGES/kcm_feedback.mo +share/locale/ro/LC_MESSAGES/kcm_fonts.mo +share/locale/ro/LC_MESSAGES/kcm_icons.mo +share/locale/ro/LC_MESSAGES/kcm_lookandfeel.mo +share/locale/ro/LC_MESSAGES/kcm_nightcolor.mo +share/locale/ro/LC_MESSAGES/kcm_notifications.mo +share/locale/ro/LC_MESSAGES/kcm_regionandlang.mo +share/locale/ro/LC_MESSAGES/kcm_style.mo +share/locale/ro/LC_MESSAGES/kcm_users.mo +share/locale/ro/LC_MESSAGES/kcminit.mo +share/locale/ro/LC_MESSAGES/kfontinst.mo +share/locale/ro/LC_MESSAGES/kio5_applications.mo +share/locale/ro/LC_MESSAGES/kio_desktop.mo +share/locale/ro/LC_MESSAGES/klipper.mo +share/locale/ro/LC_MESSAGES/krdb.mo +share/locale/ro/LC_MESSAGES/krunner.mo +share/locale/ro/LC_MESSAGES/ksmserver.mo +share/locale/ro/LC_MESSAGES/libkicker.mo +share/locale/ro/LC_MESSAGES/libkworkspace.mo +share/locale/ro/LC_MESSAGES/libnotificationmanager.mo +share/locale/ro/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.mo +share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo +share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.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.icon.mo +share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo +share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.manageinputmethod.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.mo +share/locale/ro/LC_MESSAGES/plasma_containmentactions_applauncher.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_devicenotifications.mo +share/locale/ro/LC_MESSAGES/plasma_engine_dict.mo +share/locale/ro/LC_MESSAGES/plasma_engine_hotplug.mo +share/locale/ro/LC_MESSAGES/plasma_engine_keystate.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_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_lookandfeel_org.kde.lookandfeel.mo +share/locale/ro/LC_MESSAGES/plasma_runner_appstream.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_webshortcuts.mo +share/locale/ro/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo +share/locale/ro/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo +share/locale/ro/LC_MESSAGES/plasmashell.mo +share/locale/ro/LC_MESSAGES/plasmashellprivateplugin.mo +share/locale/ro/LC_MESSAGES/soliduiserver5.mo +share/locale/ru/LC_MESSAGES/freespacenotifier.mo +share/locale/ru/LC_MESSAGES/kcm_autostart.mo +share/locale/ru/LC_MESSAGES/kcm_colors.mo +share/locale/ru/LC_MESSAGES/kcm_cursortheme.mo +share/locale/ru/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/ru/LC_MESSAGES/kcm_feedback.mo +share/locale/ru/LC_MESSAGES/kcm_fonts.mo +share/locale/ru/LC_MESSAGES/kcm_icons.mo +share/locale/ru/LC_MESSAGES/kcm_lookandfeel.mo +share/locale/ru/LC_MESSAGES/kcm_nightcolor.mo +share/locale/ru/LC_MESSAGES/kcm_notifications.mo +share/locale/ru/LC_MESSAGES/kcm_regionandlang.mo +share/locale/ru/LC_MESSAGES/kcm_style.mo +share/locale/ru/LC_MESSAGES/kcm_users.mo +share/locale/ru/LC_MESSAGES/kcminit.mo +share/locale/ru/LC_MESSAGES/kfontinst.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/krdb.mo +share/locale/ru/LC_MESSAGES/krunner.mo +share/locale/ru/LC_MESSAGES/ksmserver.mo +share/locale/ru/LC_MESSAGES/libkicker.mo +share/locale/ru/LC_MESSAGES/libkworkspace.mo +share/locale/ru/LC_MESSAGES/libnotificationmanager.mo +share/locale/ru/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.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.manageinputmethod.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.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_hotplug.mo +share/locale/ru/LC_MESSAGES/plasma_engine_keystate.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_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_runner_appstream.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_webshortcuts.mo +share/locale/ru/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo +share/locale/ru/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo +share/locale/ru/LC_MESSAGES/plasmashell.mo +share/locale/ru/LC_MESSAGES/plasmashellprivateplugin.mo +share/locale/ru/LC_MESSAGES/soliduiserver5.mo +share/locale/sa/LC_MESSAGES/kcm_colors.mo +share/locale/sa/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo +share/locale/sa/LC_MESSAGES/plasma_engine_weather.mo +share/locale/sa/LC_MESSAGES/plasmashell.mo +share/locale/se/LC_MESSAGES/kcm_colors.mo +share/locale/se/LC_MESSAGES/kcm_cursortheme.mo +share/locale/se/LC_MESSAGES/kcm_fonts.mo +share/locale/se/LC_MESSAGES/kcm_icons.mo +share/locale/se/LC_MESSAGES/kcm_style.mo +share/locale/se/LC_MESSAGES/kcminit.mo +share/locale/se/LC_MESSAGES/kfontinst.mo +share/locale/se/LC_MESSAGES/kio5_applications.mo +share/locale/se/LC_MESSAGES/klipper.mo +share/locale/se/LC_MESSAGES/krdb.mo +share/locale/se/LC_MESSAGES/krunner.mo +share/locale/se/LC_MESSAGES/ksmserver.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/kcm_autostart.mo +share/locale/si/LC_MESSAGES/kcm_colors.mo +share/locale/si/LC_MESSAGES/kcm_cursortheme.mo +share/locale/si/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/si/LC_MESSAGES/kcm_fonts.mo +share/locale/si/LC_MESSAGES/kcm_icons.mo +share/locale/si/LC_MESSAGES/kcm_style.mo +share/locale/si/LC_MESSAGES/kcminit.mo +share/locale/si/LC_MESSAGES/kfontinst.mo +share/locale/si/LC_MESSAGES/kio5_applications.mo +share/locale/si/LC_MESSAGES/klipper.mo +share/locale/si/LC_MESSAGES/krdb.mo +share/locale/si/LC_MESSAGES/ksmserver.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.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_notifications.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_wallpaper_org.kde.image.mo +share/locale/si/LC_MESSAGES/soliduiserver5.mo +share/locale/sk/LC_MESSAGES/freespacenotifier.mo +share/locale/sk/LC_MESSAGES/kcm_autostart.mo +share/locale/sk/LC_MESSAGES/kcm_colors.mo +share/locale/sk/LC_MESSAGES/kcm_cursortheme.mo +share/locale/sk/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/sk/LC_MESSAGES/kcm_feedback.mo +share/locale/sk/LC_MESSAGES/kcm_fonts.mo +share/locale/sk/LC_MESSAGES/kcm_icons.mo +share/locale/sk/LC_MESSAGES/kcm_lookandfeel.mo +share/locale/sk/LC_MESSAGES/kcm_nightcolor.mo +share/locale/sk/LC_MESSAGES/kcm_notifications.mo +share/locale/sk/LC_MESSAGES/kcm_regionandlang.mo +share/locale/sk/LC_MESSAGES/kcm_style.mo +share/locale/sk/LC_MESSAGES/kcm_users.mo +share/locale/sk/LC_MESSAGES/kcminit.mo +share/locale/sk/LC_MESSAGES/kfontinst.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/krdb.mo +share/locale/sk/LC_MESSAGES/krunner.mo +share/locale/sk/LC_MESSAGES/ksmserver.mo +share/locale/sk/LC_MESSAGES/libkicker.mo +share/locale/sk/LC_MESSAGES/libkworkspace.mo +share/locale/sk/LC_MESSAGES/libnotificationmanager.mo +share/locale/sk/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.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.manageinputmethod.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.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_hotplug.mo +share/locale/sk/LC_MESSAGES/plasma_engine_keystate.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_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_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_webshortcuts.mo +share/locale/sk/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo +share/locale/sk/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo +share/locale/sk/LC_MESSAGES/plasmashell.mo +share/locale/sk/LC_MESSAGES/plasmashellprivateplugin.mo +share/locale/sk/LC_MESSAGES/soliduiserver5.mo +share/locale/sl/LC_MESSAGES/freespacenotifier.mo +share/locale/sl/LC_MESSAGES/kcm_autostart.mo +share/locale/sl/LC_MESSAGES/kcm_colors.mo +share/locale/sl/LC_MESSAGES/kcm_cursortheme.mo +share/locale/sl/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/sl/LC_MESSAGES/kcm_feedback.mo +share/locale/sl/LC_MESSAGES/kcm_fonts.mo +share/locale/sl/LC_MESSAGES/kcm_icons.mo +share/locale/sl/LC_MESSAGES/kcm_lookandfeel.mo +share/locale/sl/LC_MESSAGES/kcm_nightcolor.mo +share/locale/sl/LC_MESSAGES/kcm_notifications.mo +share/locale/sl/LC_MESSAGES/kcm_regionandlang.mo +share/locale/sl/LC_MESSAGES/kcm_soundtheme.mo +share/locale/sl/LC_MESSAGES/kcm_style.mo +share/locale/sl/LC_MESSAGES/kcm_users.mo +share/locale/sl/LC_MESSAGES/kcminit.mo +share/locale/sl/LC_MESSAGES/kded_devicenotifications.mo +share/locale/sl/LC_MESSAGES/kfontinst.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/krdb.mo +share/locale/sl/LC_MESSAGES/krunner.mo +share/locale/sl/LC_MESSAGES/ksmserver.mo +share/locale/sl/LC_MESSAGES/libkicker.mo +share/locale/sl/LC_MESSAGES/libkmpris.mo +share/locale/sl/LC_MESSAGES/libkworkspace.mo +share/locale/sl/LC_MESSAGES/libnotificationmanager.mo +share/locale/sl/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.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.brightness.mo +share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo +share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.cameraindicator.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.manageinputmethod.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.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_hotplug.mo +share/locale/sl/LC_MESSAGES/plasma_engine_keystate.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_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_runner_appstream.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_webshortcuts.mo +share/locale/sl/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo +share/locale/sl/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo +share/locale/sl/LC_MESSAGES/plasmashell.mo +share/locale/sl/LC_MESSAGES/plasmashellprivateplugin.mo +share/locale/sl/LC_MESSAGES/plasmawindowed.mo +share/locale/sl/LC_MESSAGES/soliduiserver5.mo +share/locale/sq/LC_MESSAGES/kcm_autostart.mo +share/locale/sq/LC_MESSAGES/kcm_colors.mo +share/locale/sq/LC_MESSAGES/kcm_cursortheme.mo +share/locale/sq/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/sq/LC_MESSAGES/kcm_fonts.mo +share/locale/sq/LC_MESSAGES/kcm_icons.mo +share/locale/sq/LC_MESSAGES/kcm_style.mo +share/locale/sq/LC_MESSAGES/kcminit.mo +share/locale/sq/LC_MESSAGES/kfontinst.mo +share/locale/sq/LC_MESSAGES/kio5_applications.mo +share/locale/sq/LC_MESSAGES/klipper.mo +share/locale/sq/LC_MESSAGES/krdb.mo +share/locale/sq/LC_MESSAGES/ksmserver.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.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_notifications.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_webshortcuts.mo +share/locale/sq/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo +share/locale/sq/LC_MESSAGES/soliduiserver5.mo +share/locale/sr/LC_MESSAGES/freespacenotifier.mo +share/locale/sr/LC_MESSAGES/kcm_autostart.mo +share/locale/sr/LC_MESSAGES/kcm_colors.mo +share/locale/sr/LC_MESSAGES/kcm_cursortheme.mo +share/locale/sr/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/sr/LC_MESSAGES/kcm_fonts.mo +share/locale/sr/LC_MESSAGES/kcm_icons.mo +share/locale/sr/LC_MESSAGES/kcm_lookandfeel.mo +share/locale/sr/LC_MESSAGES/kcm_nightcolor.mo +share/locale/sr/LC_MESSAGES/kcm_style.mo +share/locale/sr/LC_MESSAGES/kcminit.mo +share/locale/sr/LC_MESSAGES/kfontinst.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/krdb.mo +share/locale/sr/LC_MESSAGES/krunner.mo +share/locale/sr/LC_MESSAGES/ksmserver.mo +share/locale/sr/LC_MESSAGES/libkicker.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.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_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_notifications.mo +share/locale/sr/LC_MESSAGES/plasma_engine_powermanagement.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_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_webshortcuts.mo +share/locale/sr/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo +share/locale/sr/LC_MESSAGES/plasma_wallpaper_org.kde.image.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@ijekavian/LC_MESSAGES/freespacenotifier.mo +share/locale/sr@ijekavian/LC_MESSAGES/kcm_autostart.mo +share/locale/sr@ijekavian/LC_MESSAGES/kcm_colors.mo +share/locale/sr@ijekavian/LC_MESSAGES/kcm_cursortheme.mo +share/locale/sr@ijekavian/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/sr@ijekavian/LC_MESSAGES/kcm_fonts.mo +share/locale/sr@ijekavian/LC_MESSAGES/kcm_icons.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_style.mo +share/locale/sr@ijekavian/LC_MESSAGES/kcminit.mo +share/locale/sr@ijekavian/LC_MESSAGES/kfontinst.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/krdb.mo +share/locale/sr@ijekavian/LC_MESSAGES/krunner.mo +share/locale/sr@ijekavian/LC_MESSAGES/ksmserver.mo +share/locale/sr@ijekavian/LC_MESSAGES/libkicker.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.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_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_notifications.mo +share/locale/sr@ijekavian/LC_MESSAGES/plasma_engine_powermanagement.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_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_webshortcuts.mo +share/locale/sr@ijekavian/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo +share/locale/sr@ijekavian/LC_MESSAGES/plasma_wallpaper_org.kde.image.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@ijekavianlatin/LC_MESSAGES/freespacenotifier.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_autostart.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_colors.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_cursortheme.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_fonts.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_icons.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_style.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kcminit.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kfontinst.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/krdb.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/krunner.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/ksmserver.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/libkicker.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.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_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_notifications.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_engine_powermanagement.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_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_webshortcuts.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_wallpaper_org.kde.image.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@latin/LC_MESSAGES/freespacenotifier.mo +share/locale/sr@latin/LC_MESSAGES/kcm_autostart.mo +share/locale/sr@latin/LC_MESSAGES/kcm_colors.mo +share/locale/sr@latin/LC_MESSAGES/kcm_cursortheme.mo +share/locale/sr@latin/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/sr@latin/LC_MESSAGES/kcm_fonts.mo +share/locale/sr@latin/LC_MESSAGES/kcm_icons.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_style.mo +share/locale/sr@latin/LC_MESSAGES/kcminit.mo +share/locale/sr@latin/LC_MESSAGES/kfontinst.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/krdb.mo +share/locale/sr@latin/LC_MESSAGES/krunner.mo +share/locale/sr@latin/LC_MESSAGES/ksmserver.mo +share/locale/sr@latin/LC_MESSAGES/libkicker.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.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_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_notifications.mo +share/locale/sr@latin/LC_MESSAGES/plasma_engine_powermanagement.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_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_webshortcuts.mo +share/locale/sr@latin/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo +share/locale/sr@latin/LC_MESSAGES/plasma_wallpaper_org.kde.image.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/sv/LC_MESSAGES/freespacenotifier.mo +share/locale/sv/LC_MESSAGES/kcm_autostart.mo +share/locale/sv/LC_MESSAGES/kcm_colors.mo +share/locale/sv/LC_MESSAGES/kcm_cursortheme.mo +share/locale/sv/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/sv/LC_MESSAGES/kcm_feedback.mo +share/locale/sv/LC_MESSAGES/kcm_fonts.mo +share/locale/sv/LC_MESSAGES/kcm_icons.mo +share/locale/sv/LC_MESSAGES/kcm_lookandfeel.mo +share/locale/sv/LC_MESSAGES/kcm_nightcolor.mo +share/locale/sv/LC_MESSAGES/kcm_notifications.mo +share/locale/sv/LC_MESSAGES/kcm_style.mo +share/locale/sv/LC_MESSAGES/kcm_users.mo +share/locale/sv/LC_MESSAGES/kcminit.mo +share/locale/sv/LC_MESSAGES/kfontinst.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/krdb.mo +share/locale/sv/LC_MESSAGES/krunner.mo +share/locale/sv/LC_MESSAGES/ksmserver.mo +share/locale/sv/LC_MESSAGES/libkicker.mo +share/locale/sv/LC_MESSAGES/libkworkspace.mo +share/locale/sv/LC_MESSAGES/libnotificationmanager.mo +share/locale/sv/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.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.manageinputmethod.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.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_hotplug.mo +share/locale/sv/LC_MESSAGES/plasma_engine_keystate.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_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_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_webshortcuts.mo +share/locale/sv/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo +share/locale/sv/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo +share/locale/sv/LC_MESSAGES/plasmashell.mo +share/locale/sv/LC_MESSAGES/plasmashellprivateplugin.mo +share/locale/sv/LC_MESSAGES/soliduiserver5.mo +share/locale/ta/LC_MESSAGES/freespacenotifier.mo +share/locale/ta/LC_MESSAGES/kcm_autostart.mo +share/locale/ta/LC_MESSAGES/kcm_colors.mo +share/locale/ta/LC_MESSAGES/kcm_cursortheme.mo +share/locale/ta/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/ta/LC_MESSAGES/kcm_feedback.mo +share/locale/ta/LC_MESSAGES/kcm_fonts.mo +share/locale/ta/LC_MESSAGES/kcm_icons.mo +share/locale/ta/LC_MESSAGES/kcm_lookandfeel.mo +share/locale/ta/LC_MESSAGES/kcm_nightcolor.mo +share/locale/ta/LC_MESSAGES/kcm_notifications.mo +share/locale/ta/LC_MESSAGES/kcm_style.mo +share/locale/ta/LC_MESSAGES/kcm_users.mo +share/locale/ta/LC_MESSAGES/kcminit.mo +share/locale/ta/LC_MESSAGES/kfontinst.mo +share/locale/ta/LC_MESSAGES/kio5_applications.mo +share/locale/ta/LC_MESSAGES/kio_desktop.mo +share/locale/ta/LC_MESSAGES/klipper.mo +share/locale/ta/LC_MESSAGES/krdb.mo +share/locale/ta/LC_MESSAGES/krunner.mo +share/locale/ta/LC_MESSAGES/ksmserver.mo +share/locale/ta/LC_MESSAGES/libkicker.mo +share/locale/ta/LC_MESSAGES/libkworkspace.mo +share/locale/ta/LC_MESSAGES/libnotificationmanager.mo +share/locale/ta/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.mo +share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo +share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo +share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo +share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo +share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo +share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo +share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo +share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo +share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo +share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.manageinputmethod.mo +share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo +share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo +share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo +share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo +share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.mo +share/locale/ta/LC_MESSAGES/plasma_containmentactions_applauncher.mo +share/locale/ta/LC_MESSAGES/plasma_containmentactions_contextmenu.mo +share/locale/ta/LC_MESSAGES/plasma_containmentactions_switchwindow.mo +share/locale/ta/LC_MESSAGES/plasma_engine_applicationjobs.mo +share/locale/ta/LC_MESSAGES/plasma_engine_devicenotifications.mo +share/locale/ta/LC_MESSAGES/plasma_engine_dict.mo +share/locale/ta/LC_MESSAGES/plasma_engine_hotplug.mo +share/locale/ta/LC_MESSAGES/plasma_engine_keystate.mo +share/locale/ta/LC_MESSAGES/plasma_engine_notifications.mo +share/locale/ta/LC_MESSAGES/plasma_engine_powermanagement.mo +share/locale/ta/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/ta/LC_MESSAGES/plasma_engine_time.mo +share/locale/ta/LC_MESSAGES/plasma_engine_weather.mo +share/locale/ta/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo +share/locale/ta/LC_MESSAGES/plasma_runner_appstream.mo +share/locale/ta/LC_MESSAGES/plasma_runner_baloosearch5.mo +share/locale/ta/LC_MESSAGES/plasma_runner_bookmarksrunner.mo +share/locale/ta/LC_MESSAGES/plasma_runner_calculatorrunner.mo +share/locale/ta/LC_MESSAGES/plasma_runner_kill.mo +share/locale/ta/LC_MESSAGES/plasma_runner_locations.mo +share/locale/ta/LC_MESSAGES/plasma_runner_placesrunner.mo +share/locale/ta/LC_MESSAGES/plasma_runner_powerdevil.mo +share/locale/ta/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/ta/LC_MESSAGES/plasma_runner_services.mo +share/locale/ta/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/ta/LC_MESSAGES/plasma_runner_shell.mo +share/locale/ta/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/ta/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo +share/locale/ta/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo +share/locale/ta/LC_MESSAGES/plasmashell.mo +share/locale/ta/LC_MESSAGES/plasmashellprivateplugin.mo +share/locale/ta/LC_MESSAGES/soliduiserver5.mo +share/locale/te/LC_MESSAGES/kcm_autostart.mo +share/locale/te/LC_MESSAGES/kcm_colors.mo +share/locale/te/LC_MESSAGES/kcm_cursortheme.mo +share/locale/te/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/te/LC_MESSAGES/kcm_fonts.mo +share/locale/te/LC_MESSAGES/kcm_icons.mo +share/locale/te/LC_MESSAGES/kcm_style.mo +share/locale/te/LC_MESSAGES/kcminit.mo +share/locale/te/LC_MESSAGES/kfontinst.mo +share/locale/te/LC_MESSAGES/kio5_applications.mo +share/locale/te/LC_MESSAGES/klipper.mo +share/locale/te/LC_MESSAGES/krdb.mo +share/locale/te/LC_MESSAGES/ksmserver.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.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_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/plasma_wallpaper_org.kde.image.mo +share/locale/te/LC_MESSAGES/soliduiserver5.mo +share/locale/tg/LC_MESSAGES/freespacenotifier.mo +share/locale/tg/LC_MESSAGES/kcm_autostart.mo +share/locale/tg/LC_MESSAGES/kcm_colors.mo +share/locale/tg/LC_MESSAGES/kcm_cursortheme.mo +share/locale/tg/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/tg/LC_MESSAGES/kcm_fonts.mo +share/locale/tg/LC_MESSAGES/kcm_icons.mo +share/locale/tg/LC_MESSAGES/kcm_lookandfeel.mo +share/locale/tg/LC_MESSAGES/kcm_notifications.mo +share/locale/tg/LC_MESSAGES/kcm_style.mo +share/locale/tg/LC_MESSAGES/kcm_users.mo +share/locale/tg/LC_MESSAGES/kcminit.mo +share/locale/tg/LC_MESSAGES/kfontinst.mo +share/locale/tg/LC_MESSAGES/kio5_applications.mo +share/locale/tg/LC_MESSAGES/kio_desktop.mo +share/locale/tg/LC_MESSAGES/klipper.mo +share/locale/tg/LC_MESSAGES/krdb.mo +share/locale/tg/LC_MESSAGES/krunner.mo +share/locale/tg/LC_MESSAGES/ksmserver.mo +share/locale/tg/LC_MESSAGES/libkicker.mo +share/locale/tg/LC_MESSAGES/libkworkspace.mo +share/locale/tg/LC_MESSAGES/libnotificationmanager.mo +share/locale/tg/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo +share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.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_applet_org.kde.plasma.digitalclock.mo +share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo +share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo +share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo +share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo +share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo +share/locale/tg/LC_MESSAGES/plasma_containmentactions_applauncher.mo +share/locale/tg/LC_MESSAGES/plasma_containmentactions_contextmenu.mo +share/locale/tg/LC_MESSAGES/plasma_containmentactions_switchwindow.mo +share/locale/tg/LC_MESSAGES/plasma_engine_applicationjobs.mo +share/locale/tg/LC_MESSAGES/plasma_engine_dict.mo +share/locale/tg/LC_MESSAGES/plasma_engine_hotplug.mo +share/locale/tg/LC_MESSAGES/plasma_engine_notifications.mo +share/locale/tg/LC_MESSAGES/plasma_engine_powermanagement.mo +share/locale/tg/LC_MESSAGES/plasma_engine_time.mo +share/locale/tg/LC_MESSAGES/plasma_engine_weather.mo +share/locale/tg/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo +share/locale/tg/LC_MESSAGES/plasma_runner_appstream.mo +share/locale/tg/LC_MESSAGES/plasma_runner_bookmarksrunner.mo +share/locale/tg/LC_MESSAGES/plasma_runner_calculatorrunner.mo +share/locale/tg/LC_MESSAGES/plasma_runner_locations.mo +share/locale/tg/LC_MESSAGES/plasma_runner_placesrunner.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_services.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/plasma_wallpaper_org.kde.color.mo +share/locale/tg/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo +share/locale/tg/LC_MESSAGES/plasmashell.mo +share/locale/tg/LC_MESSAGES/soliduiserver5.mo +share/locale/th/LC_MESSAGES/freespacenotifier.mo +share/locale/th/LC_MESSAGES/kcm_autostart.mo +share/locale/th/LC_MESSAGES/kcm_colors.mo +share/locale/th/LC_MESSAGES/kcm_cursortheme.mo +share/locale/th/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/th/LC_MESSAGES/kcm_fonts.mo +share/locale/th/LC_MESSAGES/kcm_icons.mo +share/locale/th/LC_MESSAGES/kcm_style.mo +share/locale/th/LC_MESSAGES/kcminit.mo +share/locale/th/LC_MESSAGES/kfontinst.mo +share/locale/th/LC_MESSAGES/kio5_applications.mo +share/locale/th/LC_MESSAGES/klipper.mo +share/locale/th/LC_MESSAGES/krdb.mo +share/locale/th/LC_MESSAGES/ksmserver.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.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_notifications.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_webshortcuts.mo +share/locale/th/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo +share/locale/th/LC_MESSAGES/soliduiserver5.mo +share/locale/tok/LC_MESSAGES/freespacenotifier.mo +share/locale/tok/LC_MESSAGES/kcm_autostart.mo +share/locale/tok/LC_MESSAGES/kcm_colors.mo +share/locale/tok/LC_MESSAGES/kcm_cursortheme.mo +share/locale/tok/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/tok/LC_MESSAGES/kcm_feedback.mo +share/locale/tok/LC_MESSAGES/kcm_fonts.mo +share/locale/tok/LC_MESSAGES/kcm_icons.mo +share/locale/tok/LC_MESSAGES/kcm_lookandfeel.mo +share/locale/tok/LC_MESSAGES/kcm_nightcolor.mo +share/locale/tok/LC_MESSAGES/kcm_notifications.mo +share/locale/tok/LC_MESSAGES/kcm_regionandlang.mo +share/locale/tok/LC_MESSAGES/kcm_style.mo +share/locale/tok/LC_MESSAGES/kcm_users.mo +share/locale/tok/LC_MESSAGES/kcminit.mo +share/locale/tok/LC_MESSAGES/kfontinst.mo +share/locale/tok/LC_MESSAGES/kio5_applications.mo +share/locale/tok/LC_MESSAGES/kio_desktop.mo +share/locale/tok/LC_MESSAGES/klipper.mo +share/locale/tok/LC_MESSAGES/krdb.mo +share/locale/tok/LC_MESSAGES/krunner.mo +share/locale/tok/LC_MESSAGES/ksmserver.mo +share/locale/tok/LC_MESSAGES/libkicker.mo +share/locale/tok/LC_MESSAGES/libkworkspace.mo +share/locale/tok/LC_MESSAGES/libnotificationmanager.mo +share/locale/tok/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/tok/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.mo +share/locale/tok/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo +share/locale/tok/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo +share/locale/tok/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo +share/locale/tok/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo +share/locale/tok/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo +share/locale/tok/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo +share/locale/tok/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo +share/locale/tok/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo +share/locale/tok/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo +share/locale/tok/LC_MESSAGES/plasma_applet_org.kde.plasma.manageinputmethod.mo +share/locale/tok/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo +share/locale/tok/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo +share/locale/tok/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo +share/locale/tok/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo +share/locale/tok/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.mo +share/locale/tok/LC_MESSAGES/plasma_containmentactions_applauncher.mo +share/locale/tok/LC_MESSAGES/plasma_containmentactions_contextmenu.mo +share/locale/tok/LC_MESSAGES/plasma_containmentactions_switchwindow.mo +share/locale/tok/LC_MESSAGES/plasma_engine_applicationjobs.mo +share/locale/tok/LC_MESSAGES/plasma_engine_devicenotifications.mo +share/locale/tok/LC_MESSAGES/plasma_engine_dict.mo +share/locale/tok/LC_MESSAGES/plasma_engine_hotplug.mo +share/locale/tok/LC_MESSAGES/plasma_engine_keystate.mo +share/locale/tok/LC_MESSAGES/plasma_engine_notifications.mo +share/locale/tok/LC_MESSAGES/plasma_engine_powermanagement.mo +share/locale/tok/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/tok/LC_MESSAGES/plasma_engine_time.mo +share/locale/tok/LC_MESSAGES/plasma_engine_weather.mo +share/locale/tok/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo +share/locale/tok/LC_MESSAGES/plasma_runner_appstream.mo +share/locale/tok/LC_MESSAGES/plasma_runner_baloosearch5.mo +share/locale/tok/LC_MESSAGES/plasma_runner_bookmarksrunner.mo +share/locale/tok/LC_MESSAGES/plasma_runner_calculatorrunner.mo +share/locale/tok/LC_MESSAGES/plasma_runner_kill.mo +share/locale/tok/LC_MESSAGES/plasma_runner_locations.mo +share/locale/tok/LC_MESSAGES/plasma_runner_placesrunner.mo +share/locale/tok/LC_MESSAGES/plasma_runner_powerdevil.mo +share/locale/tok/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/tok/LC_MESSAGES/plasma_runner_services.mo +share/locale/tok/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/tok/LC_MESSAGES/plasma_runner_shell.mo +share/locale/tok/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/tok/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo +share/locale/tok/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo +share/locale/tok/LC_MESSAGES/plasmashell.mo +share/locale/tok/LC_MESSAGES/plasmashellprivateplugin.mo +share/locale/tok/LC_MESSAGES/soliduiserver5.mo +share/locale/tr/LC_MESSAGES/freespacenotifier.mo +share/locale/tr/LC_MESSAGES/kcm_autostart.mo +share/locale/tr/LC_MESSAGES/kcm_colors.mo +share/locale/tr/LC_MESSAGES/kcm_cursortheme.mo +share/locale/tr/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/tr/LC_MESSAGES/kcm_feedback.mo +share/locale/tr/LC_MESSAGES/kcm_fonts.mo +share/locale/tr/LC_MESSAGES/kcm_icons.mo +share/locale/tr/LC_MESSAGES/kcm_lookandfeel.mo +share/locale/tr/LC_MESSAGES/kcm_nightcolor.mo +share/locale/tr/LC_MESSAGES/kcm_notifications.mo +share/locale/tr/LC_MESSAGES/kcm_regionandlang.mo +share/locale/tr/LC_MESSAGES/kcm_soundtheme.mo +share/locale/tr/LC_MESSAGES/kcm_style.mo +share/locale/tr/LC_MESSAGES/kcm_users.mo +share/locale/tr/LC_MESSAGES/kcminit.mo +share/locale/tr/LC_MESSAGES/kded_devicenotifications.mo +share/locale/tr/LC_MESSAGES/kfontinst.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/krdb.mo +share/locale/tr/LC_MESSAGES/krunner.mo +share/locale/tr/LC_MESSAGES/ksmserver.mo +share/locale/tr/LC_MESSAGES/libkicker.mo +share/locale/tr/LC_MESSAGES/libkmpris.mo +share/locale/tr/LC_MESSAGES/libkworkspace.mo +share/locale/tr/LC_MESSAGES/libnotificationmanager.mo +share/locale/tr/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.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.brightness.mo +share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo +share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.cameraindicator.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.manageinputmethod.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.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_dict.mo +share/locale/tr/LC_MESSAGES/plasma_engine_hotplug.mo +share/locale/tr/LC_MESSAGES/plasma_engine_keystate.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_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_runner_appstream.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_webshortcuts.mo +share/locale/tr/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo +share/locale/tr/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo +share/locale/tr/LC_MESSAGES/plasmashell.mo +share/locale/tr/LC_MESSAGES/plasmashellprivateplugin.mo +share/locale/tr/LC_MESSAGES/plasmawindowed.mo +share/locale/tr/LC_MESSAGES/soliduiserver5.mo +share/locale/ug/LC_MESSAGES/freespacenotifier.mo +share/locale/ug/LC_MESSAGES/kcm_autostart.mo +share/locale/ug/LC_MESSAGES/kcm_colors.mo +share/locale/ug/LC_MESSAGES/kcm_cursortheme.mo +share/locale/ug/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/ug/LC_MESSAGES/kcm_fonts.mo +share/locale/ug/LC_MESSAGES/kcm_icons.mo +share/locale/ug/LC_MESSAGES/kcm_style.mo +share/locale/ug/LC_MESSAGES/kcminit.mo +share/locale/ug/LC_MESSAGES/kfontinst.mo +share/locale/ug/LC_MESSAGES/kio5_applications.mo +share/locale/ug/LC_MESSAGES/klipper.mo +share/locale/ug/LC_MESSAGES/krdb.mo +share/locale/ug/LC_MESSAGES/ksmserver.mo +share/locale/ug/LC_MESSAGES/libkicker.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.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_notifications.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_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_webshortcuts.mo +share/locale/ug/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo +share/locale/ug/LC_MESSAGES/soliduiserver5.mo +share/locale/uk/LC_MESSAGES/freespacenotifier.mo +share/locale/uk/LC_MESSAGES/kcm_autostart.mo +share/locale/uk/LC_MESSAGES/kcm_colors.mo +share/locale/uk/LC_MESSAGES/kcm_cursortheme.mo +share/locale/uk/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/uk/LC_MESSAGES/kcm_feedback.mo +share/locale/uk/LC_MESSAGES/kcm_fonts.mo +share/locale/uk/LC_MESSAGES/kcm_icons.mo +share/locale/uk/LC_MESSAGES/kcm_lookandfeel.mo +share/locale/uk/LC_MESSAGES/kcm_nightcolor.mo +share/locale/uk/LC_MESSAGES/kcm_notifications.mo +share/locale/uk/LC_MESSAGES/kcm_regionandlang.mo +share/locale/uk/LC_MESSAGES/kcm_soundtheme.mo +share/locale/uk/LC_MESSAGES/kcm_style.mo +share/locale/uk/LC_MESSAGES/kcm_users.mo +share/locale/uk/LC_MESSAGES/kcminit.mo +share/locale/uk/LC_MESSAGES/kded_devicenotifications.mo +share/locale/uk/LC_MESSAGES/kfontinst.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/krdb.mo +share/locale/uk/LC_MESSAGES/krunner.mo +share/locale/uk/LC_MESSAGES/ksmserver.mo +share/locale/uk/LC_MESSAGES/libkicker.mo +share/locale/uk/LC_MESSAGES/libkmpris.mo +share/locale/uk/LC_MESSAGES/libkworkspace.mo +share/locale/uk/LC_MESSAGES/libnotificationmanager.mo +share/locale/uk/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.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.brightness.mo +share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo +share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.cameraindicator.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.manageinputmethod.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.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_hotplug.mo +share/locale/uk/LC_MESSAGES/plasma_engine_keystate.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_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_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_webshortcuts.mo +share/locale/uk/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo +share/locale/uk/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo +share/locale/uk/LC_MESSAGES/plasmashell.mo +share/locale/uk/LC_MESSAGES/plasmashellprivateplugin.mo +share/locale/uk/LC_MESSAGES/plasmawindowed.mo +share/locale/uk/LC_MESSAGES/soliduiserver5.mo +share/locale/uz/LC_MESSAGES/kcm_colors.mo +share/locale/uz/LC_MESSAGES/kcm_cursortheme.mo +share/locale/uz/LC_MESSAGES/kcm_fonts.mo +share/locale/uz/LC_MESSAGES/kcm_icons.mo +share/locale/uz/LC_MESSAGES/kcm_style.mo +share/locale/uz/LC_MESSAGES/kfontinst.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/kcm_colors.mo +share/locale/uz@cyrillic/LC_MESSAGES/kcm_cursortheme.mo +share/locale/uz@cyrillic/LC_MESSAGES/kcm_fonts.mo +share/locale/uz@cyrillic/LC_MESSAGES/kcm_icons.mo +share/locale/uz@cyrillic/LC_MESSAGES/kcm_style.mo +share/locale/uz@cyrillic/LC_MESSAGES/kfontinst.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/freespacenotifier.mo +share/locale/vi/LC_MESSAGES/kcm_autostart.mo +share/locale/vi/LC_MESSAGES/kcm_colors.mo +share/locale/vi/LC_MESSAGES/kcm_cursortheme.mo +share/locale/vi/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/vi/LC_MESSAGES/kcm_feedback.mo +share/locale/vi/LC_MESSAGES/kcm_fonts.mo +share/locale/vi/LC_MESSAGES/kcm_icons.mo +share/locale/vi/LC_MESSAGES/kcm_lookandfeel.mo +share/locale/vi/LC_MESSAGES/kcm_nightcolor.mo +share/locale/vi/LC_MESSAGES/kcm_notifications.mo +share/locale/vi/LC_MESSAGES/kcm_regionandlang.mo +share/locale/vi/LC_MESSAGES/kcm_style.mo +share/locale/vi/LC_MESSAGES/kcm_users.mo +share/locale/vi/LC_MESSAGES/kcminit.mo +share/locale/vi/LC_MESSAGES/kfontinst.mo +share/locale/vi/LC_MESSAGES/kio5_applications.mo +share/locale/vi/LC_MESSAGES/kio_desktop.mo +share/locale/vi/LC_MESSAGES/klipper.mo +share/locale/vi/LC_MESSAGES/krdb.mo +share/locale/vi/LC_MESSAGES/krunner.mo +share/locale/vi/LC_MESSAGES/ksmserver.mo +share/locale/vi/LC_MESSAGES/libkicker.mo +share/locale/vi/LC_MESSAGES/libkworkspace.mo +share/locale/vi/LC_MESSAGES/libnotificationmanager.mo +share/locale/vi/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.mo +share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo +share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo +share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo +share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo +share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo +share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo +share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo +share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo +share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo +share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.manageinputmethod.mo +share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo +share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo +share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo +share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo +share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.mo +share/locale/vi/LC_MESSAGES/plasma_containmentactions_applauncher.mo +share/locale/vi/LC_MESSAGES/plasma_containmentactions_contextmenu.mo +share/locale/vi/LC_MESSAGES/plasma_containmentactions_switchwindow.mo +share/locale/vi/LC_MESSAGES/plasma_engine_applicationjobs.mo +share/locale/vi/LC_MESSAGES/plasma_engine_devicenotifications.mo +share/locale/vi/LC_MESSAGES/plasma_engine_dict.mo +share/locale/vi/LC_MESSAGES/plasma_engine_hotplug.mo +share/locale/vi/LC_MESSAGES/plasma_engine_keystate.mo +share/locale/vi/LC_MESSAGES/plasma_engine_notifications.mo +share/locale/vi/LC_MESSAGES/plasma_engine_powermanagement.mo +share/locale/vi/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/vi/LC_MESSAGES/plasma_engine_time.mo +share/locale/vi/LC_MESSAGES/plasma_engine_weather.mo +share/locale/vi/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo +share/locale/vi/LC_MESSAGES/plasma_runner_appstream.mo +share/locale/vi/LC_MESSAGES/plasma_runner_baloosearch5.mo +share/locale/vi/LC_MESSAGES/plasma_runner_bookmarksrunner.mo +share/locale/vi/LC_MESSAGES/plasma_runner_calculatorrunner.mo +share/locale/vi/LC_MESSAGES/plasma_runner_kill.mo +share/locale/vi/LC_MESSAGES/plasma_runner_locations.mo +share/locale/vi/LC_MESSAGES/plasma_runner_placesrunner.mo +share/locale/vi/LC_MESSAGES/plasma_runner_powerdevil.mo +share/locale/vi/LC_MESSAGES/plasma_runner_recentdocuments.mo +share/locale/vi/LC_MESSAGES/plasma_runner_services.mo +share/locale/vi/LC_MESSAGES/plasma_runner_sessions.mo +share/locale/vi/LC_MESSAGES/plasma_runner_shell.mo +share/locale/vi/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/vi/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo +share/locale/vi/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo +share/locale/vi/LC_MESSAGES/plasmashell.mo +share/locale/vi/LC_MESSAGES/plasmashellprivateplugin.mo +share/locale/vi/LC_MESSAGES/soliduiserver5.mo +share/locale/wa/LC_MESSAGES/freespacenotifier.mo +share/locale/wa/LC_MESSAGES/kcm_autostart.mo +share/locale/wa/LC_MESSAGES/kcm_colors.mo +share/locale/wa/LC_MESSAGES/kcm_cursortheme.mo +share/locale/wa/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/wa/LC_MESSAGES/kcm_fonts.mo +share/locale/wa/LC_MESSAGES/kcm_icons.mo +share/locale/wa/LC_MESSAGES/kcm_style.mo +share/locale/wa/LC_MESSAGES/kcminit.mo +share/locale/wa/LC_MESSAGES/kfontinst.mo +share/locale/wa/LC_MESSAGES/kio5_applications.mo +share/locale/wa/LC_MESSAGES/klipper.mo +share/locale/wa/LC_MESSAGES/krdb.mo +share/locale/wa/LC_MESSAGES/ksmserver.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.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_notifications.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_webshortcuts.mo +share/locale/wa/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo +share/locale/wa/LC_MESSAGES/soliduiserver5.mo +share/locale/xh/LC_MESSAGES/kcm_colors.mo +share/locale/xh/LC_MESSAGES/kcm_cursortheme.mo +share/locale/xh/LC_MESSAGES/kcm_fonts.mo +share/locale/xh/LC_MESSAGES/kcm_icons.mo +share/locale/xh/LC_MESSAGES/kcm_style.mo +share/locale/xh/LC_MESSAGES/kfontinst.mo +share/locale/xh/LC_MESSAGES/klipper.mo +share/locale/xh/LC_MESSAGES/krdb.mo +share/locale/xh/LC_MESSAGES/ksmserver.mo +share/locale/zh_CN/LC_MESSAGES/freespacenotifier.mo +share/locale/zh_CN/LC_MESSAGES/kcm_autostart.mo +share/locale/zh_CN/LC_MESSAGES/kcm_colors.mo +share/locale/zh_CN/LC_MESSAGES/kcm_cursortheme.mo +share/locale/zh_CN/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/zh_CN/LC_MESSAGES/kcm_feedback.mo +share/locale/zh_CN/LC_MESSAGES/kcm_fonts.mo +share/locale/zh_CN/LC_MESSAGES/kcm_icons.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_notifications.mo +share/locale/zh_CN/LC_MESSAGES/kcm_regionandlang.mo +share/locale/zh_CN/LC_MESSAGES/kcm_soundtheme.mo +share/locale/zh_CN/LC_MESSAGES/kcm_style.mo +share/locale/zh_CN/LC_MESSAGES/kcm_users.mo +share/locale/zh_CN/LC_MESSAGES/kcminit.mo +share/locale/zh_CN/LC_MESSAGES/kded_devicenotifications.mo +share/locale/zh_CN/LC_MESSAGES/kfontinst.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/krdb.mo +share/locale/zh_CN/LC_MESSAGES/krunner.mo +share/locale/zh_CN/LC_MESSAGES/ksmserver.mo +share/locale/zh_CN/LC_MESSAGES/libkicker.mo +share/locale/zh_CN/LC_MESSAGES/libkmpris.mo +share/locale/zh_CN/LC_MESSAGES/libkworkspace.mo +share/locale/zh_CN/LC_MESSAGES/libnotificationmanager.mo +share/locale/zh_CN/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.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.brightness.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.cameraindicator.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.manageinputmethod.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.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_hotplug.mo +share/locale/zh_CN/LC_MESSAGES/plasma_engine_keystate.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_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_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_webshortcuts.mo +share/locale/zh_CN/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo +share/locale/zh_CN/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo +share/locale/zh_CN/LC_MESSAGES/plasmashell.mo +share/locale/zh_CN/LC_MESSAGES/plasmashellprivateplugin.mo +share/locale/zh_CN/LC_MESSAGES/plasmawindowed.mo +share/locale/zh_CN/LC_MESSAGES/soliduiserver5.mo +share/locale/zh_TW/LC_MESSAGES/freespacenotifier.mo +share/locale/zh_TW/LC_MESSAGES/kcm_autostart.mo +share/locale/zh_TW/LC_MESSAGES/kcm_colors.mo +share/locale/zh_TW/LC_MESSAGES/kcm_cursortheme.mo +share/locale/zh_TW/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/zh_TW/LC_MESSAGES/kcm_feedback.mo +share/locale/zh_TW/LC_MESSAGES/kcm_fonts.mo +share/locale/zh_TW/LC_MESSAGES/kcm_icons.mo +share/locale/zh_TW/LC_MESSAGES/kcm_lookandfeel.mo +share/locale/zh_TW/LC_MESSAGES/kcm_nightcolor.mo +share/locale/zh_TW/LC_MESSAGES/kcm_notifications.mo +share/locale/zh_TW/LC_MESSAGES/kcm_regionandlang.mo +share/locale/zh_TW/LC_MESSAGES/kcm_soundtheme.mo +share/locale/zh_TW/LC_MESSAGES/kcm_style.mo +share/locale/zh_TW/LC_MESSAGES/kcm_users.mo +share/locale/zh_TW/LC_MESSAGES/kcminit.mo +share/locale/zh_TW/LC_MESSAGES/kded_devicenotifications.mo +share/locale/zh_TW/LC_MESSAGES/kfontinst.mo +share/locale/zh_TW/LC_MESSAGES/kio5_applications.mo +share/locale/zh_TW/LC_MESSAGES/kio_desktop.mo +share/locale/zh_TW/LC_MESSAGES/klipper.mo +share/locale/zh_TW/LC_MESSAGES/krdb.mo +share/locale/zh_TW/LC_MESSAGES/krunner.mo +share/locale/zh_TW/LC_MESSAGES/ksmserver.mo +share/locale/zh_TW/LC_MESSAGES/libkicker.mo +share/locale/zh_TW/LC_MESSAGES/libkmpris.mo +share/locale/zh_TW/LC_MESSAGES/libkworkspace.mo +share/locale/zh_TW/LC_MESSAGES/libnotificationmanager.mo +share/locale/zh_TW/LC_MESSAGES/phonon_kde_plugin.mo +share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.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.cameraindicator.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.manageinputmethod.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.mo +share/locale/zh_TW/LC_MESSAGES/plasma_containmentactions_applauncher.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_dict.mo +share/locale/zh_TW/LC_MESSAGES/plasma_engine_hotplug.mo +share/locale/zh_TW/LC_MESSAGES/plasma_engine_keystate.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_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_runner_appstream.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_webshortcuts.mo +share/locale/zh_TW/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo +share/locale/zh_TW/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo +share/locale/zh_TW/LC_MESSAGES/plasmashell.mo +share/locale/zh_TW/LC_MESSAGES/plasmashellprivateplugin.mo +share/locale/zh_TW/LC_MESSAGES/plasmawindowed.mo +share/locale/zh_TW/LC_MESSAGES/soliduiserver5.mo +share/metainfo/org.kde.breeze.desktop.appdata.xml +share/metainfo/org.kde.breezedark.desktop.appdata.xml +share/metainfo/org.kde.breezetwilight.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.brightness.appdata.xml +share/metainfo/org.kde.plasma.calendar.appdata.xml +share/metainfo/org.kde.plasma.cameraindicator.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.manage-inputmethod.appdata.xml +share/metainfo/org.kde.plasma.mediacontroller.appdata.xml +share/metainfo/org.kde.plasma.notifications.appdata.xml +share/metainfo/org.kde.plasma.systemmonitor.appdata.xml +share/metainfo/org.kde.plasma.systemmonitor.cpu.appdata.xml +share/metainfo/org.kde.plasma.systemmonitor.cpucore.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/avatars/Artist Konqi.png +share/plasma/avatars/Bookworm Konqi.png +share/plasma/avatars/Boss Konqi.png +share/plasma/avatars/Bug Catcher Konqi.png +share/plasma/avatars/Card Shark Konqi.png +share/plasma/avatars/Hacker Konqi.png +share/plasma/avatars/Journalist Konqi.png +share/plasma/avatars/Katie.png +share/plasma/avatars/Konqi.png +share/plasma/avatars/Mechanic Konqi.png +share/plasma/avatars/Messenger Konqi.png +share/plasma/avatars/Musician Konqi.png +share/plasma/avatars/Office Worker Konqi.png +share/plasma/avatars/PC Builder Konqi.png +share/plasma/avatars/Scientist Konqi.png +share/plasma/avatars/Teacher Konqi.png +share/plasma/avatars/Virtual Reality Konqi.png +share/plasma/avatars/photos/Air Balloon.png +share/plasma/avatars/photos/Air Balloon.png.license +share/plasma/avatars/photos/Astronaut.png +share/plasma/avatars/photos/Astronaut.png.license +share/plasma/avatars/photos/Books.png +share/plasma/avatars/photos/Books.png.license +share/plasma/avatars/photos/Brushes.png +share/plasma/avatars/photos/Brushes.png.license +share/plasma/avatars/photos/Bulb.png +share/plasma/avatars/photos/Bulb.png.license +share/plasma/avatars/photos/Car.png +share/plasma/avatars/photos/Car.png.license +share/plasma/avatars/photos/Cat.png +share/plasma/avatars/photos/Cat.png.license +share/plasma/avatars/photos/Chameleon.png +share/plasma/avatars/photos/Chameleon.png.license +share/plasma/avatars/photos/Cocktail.png +share/plasma/avatars/photos/Cocktail.png.license +share/plasma/avatars/photos/Dog.png +share/plasma/avatars/photos/Dog.png.license +share/plasma/avatars/photos/Fish.png +share/plasma/avatars/photos/Fish.png.license +share/plasma/avatars/photos/Gamepad.png +share/plasma/avatars/photos/Gamepad.png.license +share/plasma/avatars/photos/Owl.png +share/plasma/avatars/photos/Owl.png.license +share/plasma/avatars/photos/Pancakes.png +share/plasma/avatars/photos/Pancakes.png.license +share/plasma/avatars/photos/Parrot.png +share/plasma/avatars/photos/Parrot.png.license +share/plasma/avatars/photos/Pencils.png +share/plasma/avatars/photos/Pencils.png.license +share/plasma/avatars/photos/Shuttle.png +share/plasma/avatars/photos/Shuttle.png.license +share/plasma/avatars/photos/Soccer.png +share/plasma/avatars/photos/Soccer.png.license +share/plasma/avatars/photos/Sunflower.png +share/plasma/avatars/photos/Sunflower.png.license +share/plasma/avatars/photos/Sushi.png +share/plasma/avatars/photos/Sushi.png.license +share/plasma/look-and-feel/org.kde.breeze.desktop/contents/defaults +share/plasma/look-and-feel/org.kde.breeze.desktop/contents/layouts/org.kde.plasma.desktop-layout.js +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/NoPasswordUnlock.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/logout/timer.js +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/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/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/systemdialog/SystemDialog.qml +share/plasma/look-and-feel/org.kde.breeze.desktop/metadata.json +share/plasma/look-and-feel/org.kde.breezedark.desktop/contents/defaults +share/plasma/look-and-feel/org.kde.breezedark.desktop/contents/layouts/org.kde.plasma.desktop-layout.js +share/plasma/look-and-feel/org.kde.breezedark.desktop/contents/previews/fullscreenpreview.jpg +share/plasma/look-and-feel/org.kde.breezedark.desktop/contents/previews/preview.png +share/plasma/look-and-feel/org.kde.breezedark.desktop/metadata.json +share/plasma/look-and-feel/org.kde.breezetwilight.desktop/contents/defaults +share/plasma/look-and-feel/org.kde.breezetwilight.desktop/contents/layouts/org.kde.plasma.desktop-layout.js +share/plasma/look-and-feel/org.kde.breezetwilight.desktop/contents/previews/fullscreenpreview.jpg +share/plasma/look-and-feel/org.kde.breezetwilight.desktop/contents/previews/preview.png +share/plasma/look-and-feel/org.kde.breezetwilight.desktop/metadata.json +share/plasma/plasmoids/org.kde.plasma.activitybar/contents/ui/main.qml +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/configGeneral.qml +share/plasma/plasmoids/org.kde.plasma.analogclock/contents/ui/main.qml +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/MenuDelegate.qml +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.json +share/plasma/plasmoids/org.kde.plasma.battery/contents/config/main.xml +share/plasma/plasmoids/org.kde.plasma.battery/contents/ui/BatteryItem.qml +share/plasma/plasmoids/org.kde.plasma.battery/contents/ui/CompactRepresentation.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/PowerProfileItem.qml +share/plasma/plasmoids/org.kde.plasma.battery/contents/ui/logic.js +share/plasma/plasmoids/org.kde.plasma.battery/contents/ui/main.qml +share/plasma/plasmoids/org.kde.plasma.battery/metadata.json +share/plasma/plasmoids/org.kde.plasma.brightness/contents/ui/BrightnessItem.qml +share/plasma/plasmoids/org.kde.plasma.brightness/contents/ui/CompactRepresentation.qml +share/plasma/plasmoids/org.kde.plasma.brightness/contents/ui/NightColorItem.qml +share/plasma/plasmoids/org.kde.plasma.brightness/contents/ui/PopupDialog.qml +share/plasma/plasmoids/org.kde.plasma.brightness/contents/ui/logic.js +share/plasma/plasmoids/org.kde.plasma.brightness/contents/ui/main.qml +share/plasma/plasmoids/org.kde.plasma.brightness/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/configGeneral.qml +share/plasma/plasmoids/org.kde.plasma.calendar/contents/ui/main.qml +share/plasma/plasmoids/org.kde.plasma.calendar/metadata.json +share/plasma/plasmoids/org.kde.plasma.cameraindicator/contents/ui/FullRepresentation.qml +share/plasma/plasmoids/org.kde.plasma.cameraindicator/contents/ui/main.qml +share/plasma/plasmoids/org.kde.plasma.cameraindicator/metadata.json +share/plasma/plasmoids/org.kde.plasma.clipboard/contents/config/main.xml +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/DelegateToolButtons.qml +share/plasma/plasmoids/org.kde.plasma.clipboard/contents/ui/EditPage.qml +share/plasma/plasmoids/org.kde.plasma.clipboard/contents/ui/ImageItemDelegate.qml +share/plasma/plasmoids/org.kde.plasma.clipboard/contents/ui/Menu.qml +share/plasma/plasmoids/org.kde.plasma.clipboard/contents/ui/TextItemDelegate.qml +share/plasma/plasmoids/org.kde.plasma.clipboard/contents/ui/UrlItemDelegate.qml +share/plasma/plasmoids/org.kde.plasma.clipboard/contents/ui/main.qml +share/plasma/plasmoids/org.kde.plasma.clipboard/metadata.json +share/plasma/plasmoids/org.kde.plasma.devicenotifier/contents/config/main.xml +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/main.qml +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.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.json +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/data.js +share/plasma/plasmoids/org.kde.plasma.lock_logout/contents/ui/main.qml +share/plasma/plasmoids/org.kde.plasma.lock_logout/metadata.json +share/plasma/plasmoids/org.kde.plasma.manage-inputmethod/contents/ui/main.qml +share/plasma/plasmoids/org.kde.plasma.manage-inputmethod/metadata.json +share/plasma/plasmoids/org.kde.plasma.mediacontroller/contents/ui/AlbumArtStackView.qml +share/plasma/plasmoids/org.kde.plasma.mediacontroller/contents/ui/CompactRepresentation.qml +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.json +share/plasma/plasmoids/org.kde.plasma.notifications/contents/ui/CompactRepresentation.qml +share/plasma/plasmoids/org.kde.plasma.notifications/contents/ui/DraggableDelegate.qml +share/plasma/plasmoids/org.kde.plasma.notifications/contents/ui/DraggableFileArea.qml +share/plasma/plasmoids/org.kde.plasma.notifications/contents/ui/EditContextMenu.qml +share/plasma/plasmoids/org.kde.plasma.notifications/contents/ui/FullRepresentation.qml +share/plasma/plasmoids/org.kde.plasma.notifications/contents/ui/JobDetails.qml +share/plasma/plasmoids/org.kde.plasma.notifications/contents/ui/JobItem.qml +share/plasma/plasmoids/org.kde.plasma.notifications/contents/ui/NotificationHeader.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/NotificationReplyField.qml +share/plasma/plasmoids/org.kde.plasma.notifications/contents/ui/SelectableLabel.qml +share/plasma/plasmoids/org.kde.plasma.notifications/contents/ui/ThumbnailStrip.qml +share/plasma/plasmoids/org.kde.plasma.notifications/contents/ui/global/Globals.qml +share/plasma/plasmoids/org.kde.plasma.notifications/contents/ui/global/PulseAudio.qml +share/plasma/plasmoids/org.kde.plasma.notifications/contents/ui/global/qmldir +share/plasma/plasmoids/org.kde.plasma.notifications/contents/ui/main.qml +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.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/SystemTrayState.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/ItemLoader.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.json +share/plasma/plasmoids/org.kde.plasma.systemmonitor.cpu/contents/config/faceproperties +share/plasma/plasmoids/org.kde.plasma.systemmonitor.cpu/metadata.json +share/plasma/plasmoids/org.kde.plasma.systemmonitor.cpucore/contents/config/faceproperties +share/plasma/plasmoids/org.kde.plasma.systemmonitor.cpucore/metadata.json +share/plasma/plasmoids/org.kde.plasma.systemmonitor.diskactivity/contents/config/faceproperties +share/plasma/plasmoids/org.kde.plasma.systemmonitor.diskactivity/metadata.json +share/plasma/plasmoids/org.kde.plasma.systemmonitor.diskusage/contents/config/faceproperties +share/plasma/plasmoids/org.kde.plasma.systemmonitor.diskusage/metadata.json +share/plasma/plasmoids/org.kde.plasma.systemmonitor.memory/contents/config/faceproperties +share/plasma/plasmoids/org.kde.plasma.systemmonitor.memory/metadata.json +share/plasma/plasmoids/org.kde.plasma.systemmonitor.net/contents/config/faceproperties +share/plasma/plasmoids/org.kde.plasma.systemmonitor.net/metadata.json +share/plasma/plasmoids/org.kde.plasma.systemmonitor/contents/config/config.qml +share/plasma/plasmoids/org.kde.plasma.systemmonitor/contents/config/main.xml +share/plasma/plasmoids/org.kde.plasma.systemmonitor/contents/ui/CompactRepresentation.qml +share/plasma/plasmoids/org.kde.plasma.systemmonitor/contents/ui/FullRepresentation.qml +share/plasma/plasmoids/org.kde.plasma.systemmonitor/contents/ui/config/ConfigAppearance.qml +share/plasma/plasmoids/org.kde.plasma.systemmonitor/contents/ui/config/ConfigSensors.qml +share/plasma/plasmoids/org.kde.plasma.systemmonitor/contents/ui/config/FaceDetails.qml +share/plasma/plasmoids/org.kde.plasma.systemmonitor/contents/ui/main.qml +share/plasma/plasmoids/org.kde.plasma.systemmonitor/metadata.json +share/plasma/plasmoids/org.kde.plasma.systemtray/contents/ui/main.qml +share/plasma/plasmoids/org.kde.plasma.systemtray/metadata.json +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.json +share/plasma/wallpapers/org.kde.image/contents/config/main.xml +share/plasma/wallpapers/org.kde.image/contents/ui/AddFileDialog.qml +share/plasma/wallpapers/org.kde.image/contents/ui/ImageStackView.qml +share/plasma/wallpapers/org.kde.image/contents/ui/ThumbnailsComponent.qml +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/contents/ui/mediacomponent/AnimatedImageComponent.qml +share/plasma/wallpapers/org.kde.image/contents/ui/mediacomponent/BaseMediaComponent.qml +share/plasma/wallpapers/org.kde.image/contents/ui/mediacomponent/BlurComponent.qml +share/plasma/wallpapers/org.kde.image/contents/ui/mediacomponent/StaticImageComponent.qml +share/plasma/wallpapers/org.kde.image/metadata.json +share/plasma/wallpapers/org.kde.slideshow/contents/config/main.xml +share/plasma/wallpapers/org.kde.slideshow/contents/ui/AddFileDialog.qml +share/plasma/wallpapers/org.kde.slideshow/contents/ui/ImageStackView.qml +share/plasma/wallpapers/org.kde.slideshow/contents/ui/SlideshowComponent.qml +share/plasma/wallpapers/org.kde.slideshow/contents/ui/ThumbnailsComponent.qml +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/contents/ui/mediacomponent/AnimatedImageComponent.qml +share/plasma/wallpapers/org.kde.slideshow/contents/ui/mediacomponent/BaseMediaComponent.qml +share/plasma/wallpapers/org.kde.slideshow/contents/ui/mediacomponent/BlurComponent.qml +share/plasma/wallpapers/org.kde.slideshow/contents/ui/mediacomponent/StaticImageComponent.qml +share/plasma/wallpapers/org.kde.slideshow/metadata.json +share/plasma5support/services/activities.operations +share/plasma5support/services/applicationjobs.operations +share/plasma5support/services/apps.operations +share/plasma5support/services/hotplug.operations +share/plasma5support/services/modifierkeystate.operations +share/plasma5support/services/notifications.operations +share/plasma5support/services/org.kde.places.operations +share/plasma5support/services/org.kde.plasma.clipboard.operations +share/plasma5support/services/packagekit.operations +share/plasma5support/services/powermanagementservice.operations +share/plasma5support/services/soliddevice.operations +share/plasma5support/services/statusnotifieritem.operations +share/qlogging-categories6/kcm_regionandlang.categories +share/qlogging-categories6/kcmusers.categories +share/qlogging-categories6/klipper.categories +share/qlogging-categories6/libnotificationmanager.categories +share/qlogging-categories6/myproject.categories +share/qlogging-categories6/plasma-workspace.categories +share/sddm/themes/breeze/Background.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/default-logo.svg +share/sddm/themes/breeze/faces/.face.icon +share/sddm/themes/breeze/metadata.desktop +share/sddm/themes/breeze/preview.png +share/sddm/themes/breeze/theme.conf +share/solid/actions/openWithFileManager.desktop +share/wayland-sessions/plasma.desktop +share/xsessions/plasmax11.desktop +share/zsh/site-functions/_plasmashell diff --git a/x11/plasma6-plasma/Makefile b/x11/plasma6-plasma/Makefile new file mode 100644 index 000000000000..628abd1f03f7 --- /dev/null +++ b/x11/plasma6-plasma/Makefile @@ -0,0 +1,22 @@ +PORTNAME= plasma +DISTVERSION= ${KDE_PLASMA_VERSION} +CATEGORIES= x11 kde +PKGNAMEPREFIX= plasma6- + +MAINTAINER= kde@FreeBSD.org +COMMENT= KDE6 plasma meta port +WWW= https://www.kde.org/plasma-desktop + +USES= kde:6 metaport qt:6 +# remove: +# * bluedevil we do not have bluez at all +# * plasma-pa no plasma-pa (pulseaudio) by default +USE_KDE= \ + ${_USE_PLASMA_ALL:Nplasma-pa:Nhotkeys:Nksysguard:Nkwayland-integration:Ndiscover} + +OPTIONS_DEFINE= PULSEAUDIO +OPTIONS_DEFAULT= ${OPTIONS_DEFINE} + +PULSEAUDIO_USE= KDE=plasma-pa:run + +.include diff --git a/x11/plasma6-plasma/pkg-descr b/x11/plasma6-plasma/pkg-descr new file mode 100644 index 000000000000..1a67303ccbbd --- /dev/null +++ b/x11/plasma6-plasma/pkg-descr @@ -0,0 +1,5 @@ +Use Plasma to surf the web; keep in touch with colleagues, friends and family; +manage your files, enjoy music and videos; and get creative and productive at +work. Do it all in a beautiful environment that adapts to your needs, and with +the safety, privacy-protection and peace of mind that the best Free Open Source +Software has to offer.