diff --git a/Mk/Uses/kde.mk b/Mk/Uses/kde.mk index 38fd6e2a5c77..1d70e461387f 100644 --- a/Mk/Uses/kde.mk +++ b/Mk/Uses/kde.mk @@ -1,912 +1,912 @@ # Provides support for KDE and KF5-based ports. # # Feature: kde # Valid ARGS: 5 # # 5: Depend on KDE Frameworks 5 components and variables. # # Variables that can be set by a port: # # USE_KDE List of KF5/Plasma5 components (other ports) that this # port depends on. # * foo_build Add a build-time dependency (BUILD_DEPENDS) # * foo_run Add a run-time dependency (RUN_DEPENDS) # * foo (default) Add both dependencies on component , or # a LIB_DEPENDS if applicable. # # To simplify the ports, also: # CATEGORIES If the port is part of one of the KDE Software distribution, # it can add, in addition to 'kde' one of the following: # kde-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 . 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 ===================================== # Current KDE desktop. -KDE_PLASMA_VERSION?= 5.23.0 +KDE_PLASMA_VERSION?= 5.23.1 KDE_PLASMA_BRANCH?= stable # Current KDE frameworks. KDE_FRAMEWORKS_VERSION?= 5.87.0 KDE_FRAMEWORKS_BRANCH?= stable # Current KDE applications. KDE_APPLICATIONS_VERSION?= 21.08.2 KDE_APPLICATIONS_SHLIB_VER?= 5.18.2 KDE_APPLICATIONS_BRANCH?= stable # 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_COMMIT= ${_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 # 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?= plasma5- MASTER_SITES?= KDE/${KDE_PLASMA_BRANCH}/plasma/${KDE_PLASMA_VERSION} DIST_SUBDIR?= KDE/plasma/${KDE_PLASMA_VERSION} . elif ${_KDE_CATEGORY:Mkde-frameworks} PORTVERSION?= ${KDE_FRAMEWORKS_VERSION} PKGNAMEPREFIX?= kf5- # This is a slight duplication of _USE_FRAMEWORKS_PORTING -- it maybe would be # better to rely on ${_USE_FRAMEWORKS_PORTING:S/^/k/g} _PORTINGAIDS= kjs kjsembed kdelibs4support kdesignerplugin kdewebkit khtml kmediaplayer kross kxmlrpcclient . if ${_PORTINGAIDS:M*${PORTNAME}*} MASTER_SITES?= KDE/${KDE_FRAMEWORKS_BRANCH}/frameworks/${KDE_FRAMEWORKS_VERSION:R}/portingAids . else MASTER_SITES?= KDE/${KDE_FRAMEWORKS_BRANCH}/frameworks/${KDE_FRAMEWORKS_VERSION:R} . endif DIST_SUBDIR?= KDE/frameworks/${KDE_FRAMEWORKS_VERSION} . else IGNORE?= unknown CATEGORY value '${_KDE_CATEGORY}' #' . endif . endif #defined(_KDE_CATEGORY) # ============================================================================== # === 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 kwayland-server 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_FRAMEWORKS_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 # 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 plasma-browser-integration \ plasma-desktop plasma-disks plasma-integration plasma-pa \ plasma-sdk plasma-workspace plasma-workspace-wallpapers \ polkit-kde-agent-1 powerdevil systemsettings # List of components of the KDE PIM distribution (part of applications). _USE_KDEPIM5_ALL= akonadicontacts akonadiimportwizard akonadimime akonadinotes \ akonadicalendar akonadisearch alarmcalendar \ 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 _USE_KDE5_ALL= ${_USE_FRAMEWORKS_ALL} \ ${_USE_PLASMA_ALL} \ ${_USE_KDEPIM5_ALL} \ ${_USE_KDE_BOTH} # ====================== frameworks components ================================= kde-activities_PORT= x11/kf5-kactivities kde-activities_LIB= libKF5Activities.so kde-activities-stats_PORT= x11/kf5-kactivities-stats kde-activities-stats_LIB= libKF5ActivitiesStats.so kde-apidox_PORT= devel/kf5-kapidox kde-apidox_PATH= ${KDE_PREFIX}/bin/kapidox_generate kde-apidox_TYPE= run kde-archive_PORT= archivers/kf5-karchive kde-archive_LIB= libKF5Archive.so kde-attica5_PORT= x11-toolkits/kf5-attica kde-attica5_LIB= libKF5Attica.so kde-auth_PORT= devel/kf5-kauth kde-auth_LIB= libKF5Auth.so kde-baloo5_PORT= sysutils/kf5-baloo kde-baloo5_LIB= libKF5Baloo.so kde-bookmarks_PORT= devel/kf5-kbookmarks kde-bookmarks_LIB= libKF5Bookmarks.so kde-breeze-icons_PORT= x11-themes/kf5-breeze-icons kde-breeze-icons_PATH= ${KDE_PREFIX}/share/icons/breeze/index.theme kde-breeze-icons_TYPE= run kde-codecs_PORT= textproc/kf5-kcodecs kde-codecs_LIB= libKF5Codecs.so kde-completion_PORT= x11-toolkits/kf5-kcompletion kde-completion_LIB= libKF5Completion.so kde-config_PORT= devel/kf5-kconfig kde-config_LIB= libKF5ConfigCore.so kde-configwidgets_PORT= x11-toolkits/kf5-kconfigwidgets kde-configwidgets_LIB= libKF5ConfigWidgets.so kde-coreaddons_PORT= devel/kf5-kcoreaddons kde-coreaddons_LIB= libKF5CoreAddons.so kde-crash_PORT= devel/kf5-kcrash kde-crash_LIB= libKF5Crash.so kde-dbusaddons_PORT= devel/kf5-kdbusaddons kde-dbusaddons_LIB= libKF5DBusAddons.so kde-designerplugin_PORT= x11-toolkits/kf5-kdesignerplugin kde-designerplugin_PATH= ${KDE_PREFIX}/bin/kgendesignerplugin kde-designerplugin_TYPE= run kde-dnssd_PORT= dns/kf5-kdnssd kde-dnssd_LIB= libKF5DNSSD.so kde-doctools_PORT= devel/kf5-kdoctools kde-doctools_PATH= ${KDE_PREFIX}/bin/meinproc5 kde-ecm_PORT= devel/kf5-extra-cmake-modules kde-ecm_PATH= ${LOCALBASE}/share/ECM/cmake/ECMConfig.cmake kde-emoticons_PORT= x11-themes/kf5-kemoticons kde-emoticons_LIB= libKF5Emoticons.so kde-filemetadata_PORT= devel/kf5-kfilemetadata kde-filemetadata_LIB= libKF5FileMetaData.so kde-frameworkintegration_PORT= x11/kf5-frameworkintegration kde-frameworkintegration_LIB= libKF5Style.so kde-globalaccel_PORT= x11/kf5-kglobalaccel kde-globalaccel_LIB= libKF5GlobalAccel.so kde-guiaddons_PORT= x11-toolkits/kf5-kguiaddons kde-guiaddons_LIB= libKF5GuiAddons.so kde-holidays_PORT= net/kf5-kholidays kde-holidays_LIB= libKF5Holidays.so kde-i18n_PORT= devel/kf5-ki18n kde-i18n_LIB= libKF5I18n.so kde-iconthemes_PORT= x11-themes/kf5-kiconthemes kde-iconthemes_LIB= libKF5IconThemes.so kde-idletime_PORT= devel/kf5-kidletime kde-idletime_LIB= libKF5IdleTime.so kde-init_PORT= x11/kf5-kinit kde-init_PATH= ${KDE_PREFIX}/bin/kdeinit5 kde-itemmodels_PORT= devel/kf5-kitemmodels kde-itemmodels_LIB= libKF5ItemModels.so kde-itemviews_PORT= x11-toolkits/kf5-kitemviews kde-itemviews_LIB= libKF5ItemViews.so kde-jobwidgets_PORT= x11-toolkits/kf5-kjobwidgets kde-jobwidgets_LIB= libKF5JobWidgets.so kde-js_PORT= www/kf5-kjs kde-js_LIB= libKF5JS.so kde-jsembed_PORT= www/kf5-kjsembed kde-jsembed_LIB= libKF5JsEmbed.so kde-kcmutils_PORT= devel/kf5-kcmutils kde-kcmutils_LIB= libKF5KCMUtils.so kde-kdeclarative_PORT= devel/kf5-kdeclarative kde-kdeclarative_LIB= libKF5Declarative.so kde-kded_PORT= x11/kf5-kded kde-kded_PATH= ${KDE_PREFIX}/bin/kded5 kde-kdelibs4support_PORT= x11/kf5-kdelibs4support kde-kdelibs4support_LIB= libKF5KDELibs4Support.so kde-kdesu_PORT= security/kf5-kdesu kde-kdesu_LIB= libKF5Su.so kde-kdewebkit_PORT= www/kf5-kdewebkit kde-kdewebkit_LIB= libKF5WebKit.so kde-khtml_PORT= www/kf5-khtml kde-khtml_LIB= libKF5KHtml.so kde-kimageformats_PORT= graphics/kf5-kimageformats kde-kimageformats_PATH= ${QT_PLUGINDIR}/imageformats/kimg_xcf.so kde-kimageformats_TYPE= run kde-kio_PORT= devel/kf5-kio kde-kio_LIB= libKF5KIOCore.so kde-kirigami2_PORT= x11-toolkits/kf5-kirigami2 kde-kirigami2_PATH= ${QT_QMLDIR}/org/kde/kirigami.2/libkirigamiplugin.so kde-kquickcharts_PORT= graphics/kf5-kquickcharts kde-kquickcharts_PATH= ${QT_QMLDIR}/org/kde/quickcharts/controls/libchartscontrolsplugin.so kde-kross_PORT= lang/kf5-kross kde-kross_LIB= libKF5KrossCore.so kde-kwayland-server_PORT= x11/plasma5-kwayland-server kde-kwayland-server_LIB= libKWaylandServer.so kde-layer-shell-qt_PORT= x11/plasma5-layer-shell-qt kde-layer-shell-qt_LIB= libLayerShellQtInterface.so kde-mediaplayer_PORT= multimedia/kf5-kmediaplayer kde-mediaplayer_LIB= libKF5MediaPlayer.so.5 kde-newstuff_PORT= devel/kf5-knewstuff kde-newstuff_LIB= libKF5NewStuff.so kde-notifications_PORT= devel/kf5-knotifications kde-notifications_LIB= libKF5Notifications.so kde-notifyconfig_PORT= devel/kf5-knotifyconfig kde-notifyconfig_LIB= libKF5NotifyConfig.so kde-oxygen-icons5_PORT= x11-themes/kf5-oxygen-icons5 kde-oxygen-icons5_PATH= ${KDE_PREFIX}/share/icons/oxygen/index.theme kde-oxygen-icons5_TYPE= run kde-package_PORT= devel/kf5-kpackage kde-package_LIB= libKF5Package.so kde-parts_PORT= devel/kf5-kparts kde-parts_LIB= libKF5Parts.so kde-people_PORT= devel/kf5-kpeople kde-people_LIB= libKF5People.so kde-plasma-framework_PORT= x11/kf5-plasma-framework kde-plasma-framework_LIB= libKF5Plasma.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/kf5-kplotting kde-plotting_LIB= libKF5Plotting.so kde-prison_PORT= graphics/kf5-prison kde-prison_LIB= libKF5Prison.so kde-pty_PORT= devel/kf5-kpty kde-pty_LIB= libKF5Pty.so kde-purpose_PORT= misc/kf5-purpose kde-purpose_LIB= libKF5Purpose.so kde-qqc2-desktop-style_PORT= x11-themes/kf5-qqc2-desktop-style kde-qqc2-desktop-style_PATH= ${QT_PLUGINDIR}/kf5/kirigami/org.kde.desktop.so kde-runner_PORT= x11/kf5-krunner kde-runner_LIB= libKF5Runner.so kde-service_PORT= devel/kf5-kservice kde-service_PATH= ${KDE_PREFIX}/bin/kbuildsycoca5 kde-solid_PORT= devel/kf5-solid kde-solid_LIB= libKF5Solid.so kde-sonnet_PORT= textproc/kf5-sonnet kde-sonnet_LIB= libKF5SonnetCore.so kde-syndication_PORT= net/kf5-syndication kde-syndication_LIB= libKF5Syndication.so kde-syntaxhighlighting_PORT= textproc/kf5-syntax-highlighting kde-syntaxhighlighting_LIB= libKF5SyntaxHighlighting.so kde-texteditor_PORT= devel/kf5-ktexteditor kde-texteditor_LIB= libKF5TextEditor.so kde-textwidgets_PORT= x11-toolkits/kf5-ktextwidgets kde-textwidgets_LIB= libKF5TextWidgets.so kde-threadweaver_PORT= devel/kf5-threadweaver kde-threadweaver_LIB= libKF5ThreadWeaver.so kde-unitconversion_PORT= devel/kf5-kunitconversion kde-unitconversion_LIB= libKF5UnitConversion.so kde-wallet_PORT= sysutils/kf5-kwallet kde-wallet_LIB= libKF5Wallet.so kde-wayland_PORT= x11/kf5-kwayland kde-wayland_LIB= libKF5WaylandClient.so kde-widgetsaddons_PORT= x11-toolkits/kf5-kwidgetsaddons kde-widgetsaddons_LIB= libKF5WidgetsAddons.so kde-windowsystem_PORT= x11/kf5-kwindowsystem kde-windowsystem_LIB= libKF5WindowSystem.so kde-xmlgui_PORT= x11-toolkits/kf5-kxmlgui kde-xmlgui_LIB= libKF5XmlGui.so kde-xmlrpcclient_PORT= net/kf5-kxmlrpcclient kde-xmlrpcclient_LIB= libKF5XmlRpcClient.so # ====================== end of frameworks components ========================== # ====================== plasma components ===================================== kde-activitymanagerd_PORT= x11/plasma5-kactivitymanagerd kde-activitymanagerd_LIB= libkactivitymanagerd_plugin.so kde-breeze_PORT= x11-themes/plasma5-breeze kde-breeze_PATH= ${KDE_PREFIX}/share/QtCurve/Breeze.qtcurve kde-breeze-gtk_PORT= x11-themes/plasma5-breeze-gtk kde-breeze-gtk_PATH= ${KDE_PREFIX}/share/themes/Breeze/gtk-2.0/gtkrc kde-decoration_PORT= x11-wm/plasma5-kdecoration kde-decoration_LIB= libkdecorations2.so kde-discover_PORT= sysutils/plasma5-discover kde-discover_PATH= ${KDE_PREFIX}/bin/plasma-discover kde-drkonqi_PORT= sysutils/plasma5-drkonqi kde-drkonqi_PATH= ${KDE_PREFIX}/lib/libexec/drkonqi kde-hotkeys_PORT= devel/plasma5-khotkeys kde-hotkeys_LIB= libkhotkeysprivate.so.5 kde-infocenter_PORT= sysutils/plasma5-kinfocenter kde-infocenter_PATH= ${KDE_PREFIX}/bin/kinfocenter kde-kde-cli-tools_PORT= sysutils/plasma5-kde-cli-tools kde-kde-cli-tools_PATH= ${KDE_PREFIX}/bin/kcmshell5 kde-kde-gtk-config_PORT= x11-themes/plasma5-kde-gtk-config kde-kde-gtk-config_PATH= ${KDE_PREFIX}/lib/kconf_update_bin/gtk_theme kde-kdeplasma-addons_PORT= x11-toolkits/plasma5-kdeplasma-addons kde-kdeplasma-addons_PATH= ${QT_PLUGINDIR}/kcm_krunner_dictionary.so kde-kgamma5_PORT= x11/plasma5-kgamma5 kde-kgamma5_PATH= ${QT_PLUGINDIR}/kcm_kgamma.so kde-kmenuedit_PORT= sysutils/plasma5-kmenuedit kde-kmenuedit_PATH= ${KDE_PREFIX}/bin/kmenuedit kde-kscreen_PORT= x11/plasma5-kscreen kde-kscreen_PATH= ${KDE_PREFIX}/bin/kscreen-console kde-kscreenlocker_PORT= security/plasma5-kscreenlocker kde-kscreenlocker_LIB= libKScreenLocker.so kde-ksshaskpass_PORT= security/plasma5-ksshaskpass kde-ksshaskpass_PATH= ${KDE_PREFIX}/bin/ksshaskpass kde-ksysguard_PORT= sysutils/plasma5-ksysguard kde-ksysguard_PATH= ${KDE_PREFIX}/bin/ksysguard kde-ksystemstats_PORT= sysutils/plasma5-ksystemstats kde-ksystemstats_PATH= ${KDE_PREFIX}/bin/ksystemstats kde-kwallet-pam_PORT= security/plasma5-kwallet-pam kde-kwallet-pam_PATH= ${KDE_PREFIX}/lib/pam_kwallet5.so kde-kwayland-integration_PORT= x11/plasma5-kwayland-integration kde-kwayland-integration_PATH= ${QT_PLUGINDIR}/kf5/org.kde.kidletime.platforms/KF5IdleTimeKWaylandPlugin.so kde-kwin_PORT= x11-wm/plasma5-kwin kde-kwin_PATH= ${KDE_PREFIX}/bin/kwin_x11 kde-kwrited_PORT= devel/plasma5-kwrited kde-kwrited_PATH= ${QT_PLUGINDIR}/kf5/kded/kwrited.so kde-libkscreen_PORT= x11/plasma5-libkscreen kde-libkscreen_LIB= libKF5Screen.so kde-libksysguard_PORT= sysutils/plasma5-libksysguard kde-libksysguard_LIB= libksgrd.so kde-milou_PORT= deskutils/plasma5-milou kde-milou_LIB= libmilou.so.5 kde-oxygen_PORT= x11-themes/plasma5-oxygen kde-oxygen_PATH= ${QT_PLUGINDIR}/styles/oxygen.so kde-plasma-browser-integration_PORT= www/plasma5-plasma-browser-integration kde-plasma-browser-integration_PATH= ${KDE_PREFIX}/bin/plasma-browser-integration-host kde-plasma-desktop_PORT= x11/plasma5-plasma-desktop kde-plasma-desktop_PATH= ${KDE_PREFIX}/bin/kaccess kde-plasma-disks_PORT= sysutils/plasma5-plasma-disks kde-plasma-disks_PATH= ${KDE_PREFIX}/lib/libexec/kauth/kded-smart-helper kde-plasma-integration_PORT= x11/plasma5-plasma-integration kde-plasma-integration_PATH= ${QT_PLUGINDIR}/platformthemes/KDEPlasmaPlatformTheme.so kde-plasma-pa_PORT= audio/plasma5-plasma-pa kde-plasma-pa_PATH= ${QT_PLUGINDIR}/kcms/kcm_pulseaudio.so kde-plasma-sdk_PORT= devel/plasma5-plasma-sdk kde-plasma-sdk_PATH= ${KDE_PREFIX}/bin/plasmoidviewer kde-plasma-workspace_PORT= x11/plasma5-plasma-workspace kde-plasma-workspace_LIB= libkworkspace5.so kde-plasma-workspace-wallpapers_PORT= x11-themes/plasma5-plasma-workspace-wallpapers kde-plasma-workspace-wallpapers_PATH= ${KDE_PREFIX}/share/wallpapers/Autumn/contents/images/1280x1024.jpg kde-polkit-kde-agent-1_PORT= sysutils/plasma5-polkit-kde-agent-1 kde-polkit-kde-agent-1_PATH= ${KDE_PREFIX}/lib/libexec/polkit-kde-authentication-agent-1 kde-powerdevil_PORT= sysutils/plasma5-powerdevil kde-powerdevil_LIB= libpowerdevilcore.so kde-systemsettings_PORT= sysutils/plasma5-systemsettings kde-systemsettings_PATH= ${KDE_PREFIX}/bin/systemsettings5 # ====================== end of plasma components ============================== # ====================== pim5 components ======================================= kde-akonadicontacts_PORT= net/akonadi-contacts kde-akonadicontacts_LIB= libKF5AkonadiContact.so kde-akonadiimportwizard_PORT= deskutils/akonadi-import-wizard kde-akonadiimportwizard_LIB= libKPimImportWizard.so kde-akonadimime_PORT= net/akonadi-mime kde-akonadimime_LIB= libKF5AkonadiMime.so kde-akonadinotes_PORT= net/akonadi-notes kde-akonadinotes_LIB= libKF5AkonadiNotes.so kde-akonadicalendar_PORT= net/akonadi-calendar kde-akonadicalendar_LIB= libKF5AkonadiCalendar.so kde-akonadisearch_PORT= net/akonadi-search kde-akonadisearch_LIB= libKF5AkonadiSearchCore.so kde-alarmcalendar_PORT= net/kalarmcal kde-alarmcalendar_LIB= libKF5AlarmCalendar.so kde-calendarsupport_PORT= net/calendarsupport kde-calendarsupport_LIB= libKF5CalendarSupport.so kde-calendarcore_PORT= net/kf5-kcalendarcore kde-calendarcore_LIB= libKF5CalendarCore.so kde-calendarutils_PORT= net/kcalutils kde-calendarutils_LIB= libKF5CalendarUtils.so kde-contacts_PORT= net/kf5-kcontacts kde-contacts_LIB= libKF5Contacts.so kde-eventviews_PORT= net/eventviews kde-eventviews_LIB= libKF5EventViews.so kde-gapi_PORT= net/libkgapi kde-gapi_LIB= libKPimGAPICore.so kde-grantleetheme_PORT= deskutils/grantleetheme kde-grantleetheme_LIB= libKF5GrantleeTheme.so kde-gravatar_PORT= net/libgravatar kde-gravatar_LIB= libKF5Gravatar.so kde-identitymanagement_PORT= net/kidentitymanagement kde-identitymanagement_LIB= libKF5IdentityManagement.so kde-imap_PORT= net/kimap kde-imap_LIB= libKF5IMAP.so kde-incidenceeditor_PORT= net/incidenceeditor kde-incidenceeditor_LIB= libKF5IncidenceEditor.so kde-kdav_PORT= net/kf5-kdav kde-kdav_LIB= libKF5DAV.so kde-kdepim-addons_PORT= deskutils/kdepim-addons kde-kdepim-addons_PATH= ${KDE_PREFIX}/lib/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= libKPimItinerary.so kde-kontactinterface_PORT= net/kontactinterface kde-kontactinterface_LIB= libKF5KontactInterface.so kde-kpkpass_PORT= security/kpkpass kde-kpkpass_LIB= libKPimPkPass.so kde-ksmtp_PORT= net/ksmtp kde-ksmtp_LIB= libKPimSMTP.so kde-ldap_PORT= net/kldap kde-ldap_LIB= libKF5Ldap.so kde-libkdepim_PORT= deskutils/libkdepim kde-libkdepim_LIB= libKF5Libkdepim.so kde-libkleo_PORT= security/libkleo kde-libkleo_LIB= libKF5Libkleo.so kde-libksieve_PORT= net/libksieve kde-libksieve_LIB= libKF5KSieve.so kde-mailcommon_PORT= net/mailcommon kde-mailcommon_LIB= libKF5MailCommon.so kde-mailimporter_PORT= net/mailimporter kde-mailimporter_LIB= libKF5MailImporter.so kde-mailtransport_PORT= net/kmailtransport kde-mailtransport_LIB= libKF5MailTransport.so kde-mbox_PORT= net/kmbox kde-mbox_LIB= libKF5Mbox.so kde-messagelib_PORT= net/messagelib kde-messagelib_LIB= libKF5MessageList.so kde-mime_PORT= net/kmime kde-mime_LIB= libKF5Mime.so kde-pimcommon_PORT= net/pimcommon kde-pimcommon_LIB= libKF5PimCommon.so kde-pimtextedit_PORT= net/kpimtextedit kde-pimtextedit_LIB= libKF5PimTextEdit.so kde-tnef_PORT= net/ktnef kde-tnef_LIB= libKF5Tnef.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= libKF5AkonadiPrivate.so kde-baloo-widgets5_PORT= sysutils/baloo-widgets kde-baloo-widgets5_LIB= libKF5BalooWidgets.so kde-kate5_PORT= editors/kate kde-kate5_PATH= ${QT_PLUGINDIR}/ktexteditor/katebacktracebrowserplugin.so kde-libkcddb5_PORT= audio/libkcddb kde-libkcddb5_LIB= libKF5Cddb.so kde-libkcompactdisc5_PORT= audio/libkcompactdisc kde-libkcompactdisc5_LIB= libKF5CompactDisc.so kde-libkdcraw5_PORT= graphics/libkdcraw kde-libkdcraw5_LIB= libKF5KDcraw.so kde-libkdegames5_PORT= games/libkdegames kde-libkdegames5_LIB= libKF5KDEGames.so kde-libkeduvocdocument5_PORT= misc/libkeduvocdocument kde-libkeduvocdocument5_LIB= libKEduVocDocument.so kde-libkexiv25_PORT= graphics/libkexiv2 kde-libkexiv25_LIB= libKF5KExiv2.so kde-libkipi5_PORT= graphics/libkipi kde-libkipi5_LIB= libKF5Kipi.so kde-libksane5_PORT= graphics/libksane kde-libksane5_LIB= libKF5Sane.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/plasma5-plasma-pa/distinfo b/audio/plasma5-plasma-pa/distinfo index 3e2f99980195..b4b27fb49ec5 100644 --- a/audio/plasma5-plasma-pa/distinfo +++ b/audio/plasma5-plasma-pa/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1633639898 -SHA256 (KDE/plasma/5.23.0/plasma-pa-5.23.0.tar.xz) = 0044353d5ee41d948ec19263fb359660e1525b08ed279bc642b9659597331cb4 -SIZE (KDE/plasma/5.23.0/plasma-pa-5.23.0.tar.xz) = 129980 +TIMESTAMP = 1634665909 +SHA256 (KDE/plasma/5.23.1/plasma-pa-5.23.1.tar.xz) = a79f1971a5acdeccb9e7363560b1828f35cac4faeb3c8036d8cdd1243565a57e +SIZE (KDE/plasma/5.23.1/plasma-pa-5.23.1.tar.xz) = 129972 diff --git a/deskutils/plasma5-milou/distinfo b/deskutils/plasma5-milou/distinfo index 6761fb7bb0e0..4ffc6aadf4ec 100644 --- a/deskutils/plasma5-milou/distinfo +++ b/deskutils/plasma5-milou/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1633639899 -SHA256 (KDE/plasma/5.23.0/milou-5.23.0.tar.xz) = 115f03b3b9c47206fc09543b7646e93862a6b6bb1c20ff650961f6c16bbe9eb9 -SIZE (KDE/plasma/5.23.0/milou-5.23.0.tar.xz) = 47908 +TIMESTAMP = 1634665910 +SHA256 (KDE/plasma/5.23.1/milou-5.23.1.tar.xz) = 8f91c04785af3ed86ddf1fce18fe67f5b70cabf0827750cdec119e496723ff10 +SIZE (KDE/plasma/5.23.1/milou-5.23.1.tar.xz) = 47896 diff --git a/deskutils/plasma5-sddm-kcm/distinfo b/deskutils/plasma5-sddm-kcm/distinfo index d69a810cb7b9..660576826cd1 100644 --- a/deskutils/plasma5-sddm-kcm/distinfo +++ b/deskutils/plasma5-sddm-kcm/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1633639900 -SHA256 (KDE/plasma/5.23.0/sddm-kcm-5.23.0.tar.xz) = c0c09f4a67bce82ceb65587c95a075218f430fb6c2db01205e95c6891ef3198c -SIZE (KDE/plasma/5.23.0/sddm-kcm-5.23.0.tar.xz) = 77528 +TIMESTAMP = 1634665911 +SHA256 (KDE/plasma/5.23.1/sddm-kcm-5.23.1.tar.xz) = b72629f744d9859f93d097d7272d63543b97e0ff4c5774dadcd935838cf48044 +SIZE (KDE/plasma/5.23.1/sddm-kcm-5.23.1.tar.xz) = 77544 diff --git a/deskutils/plasma5-xdg-desktop-portal-kde/distinfo b/deskutils/plasma5-xdg-desktop-portal-kde/distinfo index 284903dafd55..b8cf6e98ab48 100644 --- a/deskutils/plasma5-xdg-desktop-portal-kde/distinfo +++ b/deskutils/plasma5-xdg-desktop-portal-kde/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1633639901 -SHA256 (KDE/plasma/5.23.0/xdg-desktop-portal-kde-5.23.0.tar.xz) = 144987824a51d96d52ae4989aca30ffd5f8e3548c2ea264ac8d824fb595183ff -SIZE (KDE/plasma/5.23.0/xdg-desktop-portal-kde-5.23.0.tar.xz) = 89340 +TIMESTAMP = 1634665912 +SHA256 (KDE/plasma/5.23.1/xdg-desktop-portal-kde-5.23.1.tar.xz) = f7664cc4c0ea7fcd93a15d35fc5f5b5f5c8910c07204fad35783f9d3acc1f2ae +SIZE (KDE/plasma/5.23.1/xdg-desktop-portal-kde-5.23.1.tar.xz) = 89376 diff --git a/devel/plasma5-khotkeys/distinfo b/devel/plasma5-khotkeys/distinfo index 91a2b13c7610..b8990239ceab 100644 --- a/devel/plasma5-khotkeys/distinfo +++ b/devel/plasma5-khotkeys/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1633639901 -SHA256 (KDE/plasma/5.23.0/khotkeys-5.23.0.tar.xz) = 0f13f6842976853db42a7912da55ce25f6ad7e116740109f6255522662cb0f76 -SIZE (KDE/plasma/5.23.0/khotkeys-5.23.0.tar.xz) = 1850880 +TIMESTAMP = 1634665913 +SHA256 (KDE/plasma/5.23.1/khotkeys-5.23.1.tar.xz) = dae80968b6d2310b6eaad2e0786adb7a9047d4e9fe8fa5bf71586796f9bbe84f +SIZE (KDE/plasma/5.23.1/khotkeys-5.23.1.tar.xz) = 1850872 diff --git a/devel/plasma5-kwrited/distinfo b/devel/plasma5-kwrited/distinfo index b6fba1f55c76..58973a5567c1 100644 --- a/devel/plasma5-kwrited/distinfo +++ b/devel/plasma5-kwrited/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1633639902 -SHA256 (KDE/plasma/5.23.0/kwrited-5.23.0.tar.xz) = 65a74b5d6fb75f4129b528a8cec6e3aadcbccdee6f7e0bf2d994fb1854999ffb -SIZE (KDE/plasma/5.23.0/kwrited-5.23.0.tar.xz) = 20512 +TIMESTAMP = 1634665914 +SHA256 (KDE/plasma/5.23.1/kwrited-5.23.1.tar.xz) = f31247382fb8b1d9246a16552a3d9b577e24428af39bdb042bfd42ee5c254f9b +SIZE (KDE/plasma/5.23.1/kwrited-5.23.1.tar.xz) = 20512 diff --git a/devel/plasma5-plasma-sdk/distinfo b/devel/plasma5-plasma-sdk/distinfo index f42b2b6b61aa..60d077a93dce 100644 --- a/devel/plasma5-plasma-sdk/distinfo +++ b/devel/plasma5-plasma-sdk/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1633639903 -SHA256 (KDE/plasma/5.23.0/plasma-sdk-5.23.0.tar.xz) = 7ed57862510f3cfea72891788a99a0fbf25a2c09863329dad678244b29f0092f -SIZE (KDE/plasma/5.23.0/plasma-sdk-5.23.0.tar.xz) = 275332 +TIMESTAMP = 1634665915 +SHA256 (KDE/plasma/5.23.1/plasma-sdk-5.23.1.tar.xz) = 00d7389635c3a97e7f3badc3a25a6b3b1e200ad9e18f709cf31e3ed352e61eeb +SIZE (KDE/plasma/5.23.1/plasma-sdk-5.23.1.tar.xz) = 275828 diff --git a/security/plasma5-kscreenlocker/distinfo b/security/plasma5-kscreenlocker/distinfo index 24e294787f62..a9df9c115e2b 100644 --- a/security/plasma5-kscreenlocker/distinfo +++ b/security/plasma5-kscreenlocker/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1633639904 -SHA256 (KDE/plasma/5.23.0/kscreenlocker-5.23.0.tar.xz) = 832fd3c89e916c454edace46f1fba72c3bd211e98806e4ae2c2acc4df201324c -SIZE (KDE/plasma/5.23.0/kscreenlocker-5.23.0.tar.xz) = 117308 +TIMESTAMP = 1634665917 +SHA256 (KDE/plasma/5.23.1/kscreenlocker-5.23.1.tar.xz) = a0c41353285b41372eecce77d643e3332a34a391c52fb44064498f4321abb563 +SIZE (KDE/plasma/5.23.1/kscreenlocker-5.23.1.tar.xz) = 117484 diff --git a/security/plasma5-ksshaskpass/distinfo b/security/plasma5-ksshaskpass/distinfo index 38211aa654e7..e4858035ff70 100644 --- a/security/plasma5-ksshaskpass/distinfo +++ b/security/plasma5-ksshaskpass/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1633639905 -SHA256 (KDE/plasma/5.23.0/ksshaskpass-5.23.0.tar.xz) = a86c20079b62c55da26171eb9aec05e38f6c33f712455558d027a5cace08c163 -SIZE (KDE/plasma/5.23.0/ksshaskpass-5.23.0.tar.xz) = 24080 +TIMESTAMP = 1634665918 +SHA256 (KDE/plasma/5.23.1/ksshaskpass-5.23.1.tar.xz) = c1ab89e8c5f592a3bf54d6ee3ff733e8406a865ff126b9c5440638a14b0aeb2b +SIZE (KDE/plasma/5.23.1/ksshaskpass-5.23.1.tar.xz) = 24064 diff --git a/security/plasma5-kwallet-pam/distinfo b/security/plasma5-kwallet-pam/distinfo index a4828e382882..6fd08f63dfc4 100644 --- a/security/plasma5-kwallet-pam/distinfo +++ b/security/plasma5-kwallet-pam/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1633639905 -SHA256 (KDE/plasma/5.23.0/kwallet-pam-5.23.0.tar.xz) = d7ee58f3878c07286f1c7185d6365f4b2275e6db30490bf0d773b3c37d417173 -SIZE (KDE/plasma/5.23.0/kwallet-pam-5.23.0.tar.xz) = 20124 +TIMESTAMP = 1634665918 +SHA256 (KDE/plasma/5.23.1/kwallet-pam-5.23.1.tar.xz) = 63661188dae40e708e516de2611cf05e1d899a0f060995b27067107aa0645e0a +SIZE (KDE/plasma/5.23.1/kwallet-pam-5.23.1.tar.xz) = 20120 diff --git a/sysutils/plasma5-discover/distinfo b/sysutils/plasma5-discover/distinfo index e3cf5b54f2d5..8a486613611b 100644 --- a/sysutils/plasma5-discover/distinfo +++ b/sysutils/plasma5-discover/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1633639906 -SHA256 (KDE/plasma/5.23.0/discover-5.23.0.tar.xz) = 536a27fd49c8181810582bfec72feeb611e06c2e5a98a863b1af362d5f2e4651 -SIZE (KDE/plasma/5.23.0/discover-5.23.0.tar.xz) = 8233188 +TIMESTAMP = 1634665920 +SHA256 (KDE/plasma/5.23.1/discover-5.23.1.tar.xz) = 44255c9b1a8df70a4c710396ccbdaf1725f93694a040d4197e4bf45285e6ee71 +SIZE (KDE/plasma/5.23.1/discover-5.23.1.tar.xz) = 8233356 diff --git a/sysutils/plasma5-drkonqi/distinfo b/sysutils/plasma5-drkonqi/distinfo index 5d1c18056c39..41149bf5e15c 100644 --- a/sysutils/plasma5-drkonqi/distinfo +++ b/sysutils/plasma5-drkonqi/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1633639907 -SHA256 (KDE/plasma/5.23.0/drkonqi-5.23.0.tar.xz) = 519bf4357e83d3b8dd506885d72099d65d3df0e76ce9a8ed68c565116a655edb -SIZE (KDE/plasma/5.23.0/drkonqi-5.23.0.tar.xz) = 791764 +TIMESTAMP = 1634665921 +SHA256 (KDE/plasma/5.23.1/drkonqi-5.23.1.tar.xz) = 73079b1a3316705f5112bfe232f839d603834ffa4813d776239c26e198d6d3a5 +SIZE (KDE/plasma/5.23.1/drkonqi-5.23.1.tar.xz) = 792016 diff --git a/sysutils/plasma5-kde-cli-tools/distinfo b/sysutils/plasma5-kde-cli-tools/distinfo index 7230d6f99d6e..37b1317b57d8 100644 --- a/sysutils/plasma5-kde-cli-tools/distinfo +++ b/sysutils/plasma5-kde-cli-tools/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1633639908 -SHA256 (KDE/plasma/5.23.0/kde-cli-tools-5.23.0.tar.xz) = ae72d6e44769c1ac48d1dc3b4f0345c16fdcd053f7a1a4820b08b1d367df8568 -SIZE (KDE/plasma/5.23.0/kde-cli-tools-5.23.0.tar.xz) = 631484 +TIMESTAMP = 1634665922 +SHA256 (KDE/plasma/5.23.1/kde-cli-tools-5.23.1.tar.xz) = da1a08c54b3e085916c5157e1339ccb397e41dbfd68ce3334591e0ddbed0a7e2 +SIZE (KDE/plasma/5.23.1/kde-cli-tools-5.23.1.tar.xz) = 631576 diff --git a/sysutils/plasma5-kinfocenter/distinfo b/sysutils/plasma5-kinfocenter/distinfo index ef82276e0a82..0a9504bb56a4 100644 --- a/sysutils/plasma5-kinfocenter/distinfo +++ b/sysutils/plasma5-kinfocenter/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1633639908 -SHA256 (KDE/plasma/5.23.0/kinfocenter-5.23.0.tar.xz) = 4baf7e6e9a1d305c7c1b4c0c0d0ef4146fbc4008203d490ad6f4f6b4e578e07d -SIZE (KDE/plasma/5.23.0/kinfocenter-5.23.0.tar.xz) = 1152060 +TIMESTAMP = 1634665923 +SHA256 (KDE/plasma/5.23.1/kinfocenter-5.23.1.tar.xz) = e12f892612a4be07945b85df90463f7e0c36d24159393d4f60279aa97605c904 +SIZE (KDE/plasma/5.23.1/kinfocenter-5.23.1.tar.xz) = 1152544 diff --git a/sysutils/plasma5-kinfocenter/pkg-plist b/sysutils/plasma5-kinfocenter/pkg-plist index 2f16f3655001..0b4f601f6abd 100644 --- a/sysutils/plasma5-kinfocenter/pkg-plist +++ b/sysutils/plasma5-kinfocenter/pkg-plist @@ -1,1081 +1,1085 @@ bin/kinfocenter etc/xdg/kcm-about-distrorc etc/xdg/menus/kinfocenter.menu %%QT_PLUGINDIR%%/kcm_devinfo.so %%QT_PLUGINDIR%%/kcm_info.so %%QT_PLUGINDIR%%/kcm_memory.so %%QT_PLUGINDIR%%/kcm_opengl.so %%QT_PLUGINDIR%%/kcm_pci.so %%QT_PLUGINDIR%%/kcm_usb.so %%QT_PLUGINDIR%%/kcms/kcm_about-distro.so %%QT_PLUGINDIR%%/kcms/kcm_cpu.so %%QT_PLUGINDIR%%/kcms/kcm_interrupts.so %%QT_PLUGINDIR%%/kcms/kcm_nic.so %%QT_PLUGINDIR%%/kcms/kcm_samba.so %%QT_PLUGINDIR%%/kcms/kcm_vulkan.so %%QT_PLUGINDIR%%/kcms/kcm_wayland.so %%QT_QMLDIR%%/org/kde/kinfocenter/private/CommandOutputKCM.qml %%QT_QMLDIR%%/org/kde/kinfocenter/private/qmldir share/applications/org.kde.kinfocenter.desktop share/desktop-directories/kinfocenter.directory share/doc/HTML/ca/kinfocenter/index.cache.bz2 share/doc/HTML/ca/kinfocenter/index.docbook share/doc/HTML/ca/kinfocenter/kinfocenter.png share/doc/HTML/de/kinfocenter/index.cache.bz2 share/doc/HTML/de/kinfocenter/index.docbook share/doc/HTML/en/kinfocenter/index.cache.bz2 share/doc/HTML/en/kinfocenter/index.docbook share/doc/HTML/en/kinfocenter/kinfocenter.png share/doc/HTML/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/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/detailedinformation.desktop %%DATADIR%%/categories/deviceinfocategory.desktop %%DATADIR%%/categories/graphicalinfocategory.desktop %%DATADIR%%/categories/lostfoundcategory.desktop %%DATADIR%%/categories/networkinfocategory.desktop %%DATADIR%%/images/freebsd_logo.svg share/kpackage/kcms/kcm_about-distro/contents/main.qml share/kpackage/kcms/kcm_about-distro/metadata.desktop share/kpackage/kcms/kcm_about-distro/metadata.json share/kpackage/kcms/kcm_cpu/contents/main.qml share/kpackage/kcms/kcm_cpu/metadata.desktop share/kpackage/kcms/kcm_cpu/metadata.json share/kpackage/kcms/kcm_interrupts/contents/main.qml share/kpackage/kcms/kcm_interrupts/metadata.desktop share/kpackage/kcms/kcm_interrupts/metadata.json share/kpackage/kcms/kcm_nic/contents/ui/main.qml share/kpackage/kcms/kcm_nic/metadata.desktop share/kpackage/kcms/kcm_nic/metadata.json share/kpackage/kcms/kcm_vulkan/contents/main.qml share/kpackage/kcms/kcm_vulkan/metadata.desktop share/kpackage/kcms/kcm_vulkan/metadata.json share/kpackage/kcms/kcm_wayland/contents/main.qml share/kpackage/kcms/kcm_wayland/metadata.desktop share/kpackage/kcms/kcm_wayland/metadata.json share/kpackage/kcms/kcmsamba/contents/ShareListItem.qml share/kpackage/kcms/kcmsamba/contents/main.qml share/kpackage/kcms/kcmsamba/metadata.desktop share/kpackage/kcms/kcmsamba/metadata.json share/kservices5/about-distro.desktop share/kservices5/devinfo.desktop share/kservices5/dma.desktop share/kservices5/ioports.desktop share/kservices5/kcm_cpu.desktop share/kservices5/kcm_interrupts.desktop share/kservices5/kcm_memory.desktop share/kservices5/kcm_nic.desktop share/kservices5/kcm_pci.desktop share/kservices5/kcm_vulkan.desktop share/kservices5/kcm_wayland.desktop share/kservices5/kcmusb.desktop share/kservices5/opengl.desktop share/kservices5/smbstatus.desktop share/kservices5/xserver.desktop share/kservicetypes5/kinfocentercategory.desktop share/locale/af/LC_MESSAGES/kcminfo.mo share/locale/af/LC_MESSAGES/kcmsamba.mo share/locale/af/LC_MESSAGES/kcmusb.mo share/locale/af/LC_MESSAGES/kcmview1394.mo share/locale/af/LC_MESSAGES/kinfocenter.mo share/locale/ar/LC_MESSAGES/kcm_about-distro.mo share/locale/ar/LC_MESSAGES/kcm_energyinfo.mo share/locale/ar/LC_MESSAGES/kcm_memory.mo share/locale/ar/LC_MESSAGES/kcm_nic.mo share/locale/ar/LC_MESSAGES/kcm_pci.mo share/locale/ar/LC_MESSAGES/kcmdevinfo.mo share/locale/ar/LC_MESSAGES/kcminfo.mo share/locale/ar/LC_MESSAGES/kcmopengl.mo share/locale/ar/LC_MESSAGES/kcmsamba.mo share/locale/ar/LC_MESSAGES/kcmusb.mo share/locale/ar/LC_MESSAGES/kcmview1394.mo share/locale/ar/LC_MESSAGES/kinfocenter.mo share/locale/ast/LC_MESSAGES/kcm_about-distro.mo share/locale/ast/LC_MESSAGES/kcm_energyinfo.mo share/locale/ast/LC_MESSAGES/kcm_memory.mo share/locale/ast/LC_MESSAGES/kcm_nic.mo share/locale/ast/LC_MESSAGES/kcmsamba.mo share/locale/ast/LC_MESSAGES/kcmusb.mo share/locale/ast/LC_MESSAGES/kcmview1394.mo share/locale/ast/LC_MESSAGES/kinfocenter.mo share/locale/az/LC_MESSAGES/kcm_about-distro.mo share/locale/az/LC_MESSAGES/kcm_cpu.mo share/locale/az/LC_MESSAGES/kcm_energyinfo.mo share/locale/az/LC_MESSAGES/kcm_memory.mo share/locale/az/LC_MESSAGES/kcm_nic.mo share/locale/az/LC_MESSAGES/kcm_pci.mo share/locale/az/LC_MESSAGES/kcm_vulkan.mo share/locale/az/LC_MESSAGES/kcmdevinfo.mo share/locale/az/LC_MESSAGES/kcminfo.mo share/locale/az/LC_MESSAGES/kcmopengl.mo share/locale/az/LC_MESSAGES/kcmsamba.mo share/locale/az/LC_MESSAGES/kcmusb.mo share/locale/az/LC_MESSAGES/kcmview1394.mo share/locale/az/LC_MESSAGES/kinfocenter.mo share/locale/be/LC_MESSAGES/kcminfo.mo share/locale/be/LC_MESSAGES/kcmopengl.mo share/locale/be/LC_MESSAGES/kcmsamba.mo share/locale/be/LC_MESSAGES/kcmusb.mo share/locale/be/LC_MESSAGES/kcmview1394.mo share/locale/be/LC_MESSAGES/kinfocenter.mo share/locale/be@latin/LC_MESSAGES/kcminfo.mo share/locale/bg/LC_MESSAGES/kcm_about-distro.mo share/locale/bg/LC_MESSAGES/kcm_memory.mo share/locale/bg/LC_MESSAGES/kcm_nic.mo share/locale/bg/LC_MESSAGES/kcm_pci.mo share/locale/bg/LC_MESSAGES/kcmdevinfo.mo share/locale/bg/LC_MESSAGES/kcminfo.mo share/locale/bg/LC_MESSAGES/kcmopengl.mo share/locale/bg/LC_MESSAGES/kcmsamba.mo share/locale/bg/LC_MESSAGES/kcmusb.mo share/locale/bg/LC_MESSAGES/kcmview1394.mo share/locale/bg/LC_MESSAGES/kinfocenter.mo share/locale/bn/LC_MESSAGES/kcminfo.mo share/locale/bn/LC_MESSAGES/kcmusb.mo share/locale/bn/LC_MESSAGES/kcmview1394.mo share/locale/bn/LC_MESSAGES/kinfocenter.mo share/locale/bn_IN/LC_MESSAGES/kcm_memory.mo share/locale/bn_IN/LC_MESSAGES/kcm_pci.mo share/locale/bn_IN/LC_MESSAGES/kcminfo.mo share/locale/bn_IN/LC_MESSAGES/kcmsamba.mo share/locale/bn_IN/LC_MESSAGES/kcmusb.mo share/locale/bn_IN/LC_MESSAGES/kcmview1394.mo share/locale/bn_IN/LC_MESSAGES/kinfocenter.mo share/locale/br/LC_MESSAGES/kcminfo.mo share/locale/br/LC_MESSAGES/kcmsamba.mo share/locale/br/LC_MESSAGES/kcmusb.mo share/locale/br/LC_MESSAGES/kcmview1394.mo share/locale/br/LC_MESSAGES/kinfocenter.mo share/locale/bs/LC_MESSAGES/kcm_about-distro.mo share/locale/bs/LC_MESSAGES/kcm_memory.mo share/locale/bs/LC_MESSAGES/kcm_nic.mo share/locale/bs/LC_MESSAGES/kcm_pci.mo share/locale/bs/LC_MESSAGES/kcmdevinfo.mo share/locale/bs/LC_MESSAGES/kcminfo.mo share/locale/bs/LC_MESSAGES/kcmopengl.mo share/locale/bs/LC_MESSAGES/kcmsamba.mo share/locale/bs/LC_MESSAGES/kcmusb.mo share/locale/bs/LC_MESSAGES/kcmview1394.mo share/locale/bs/LC_MESSAGES/kinfocenter.mo share/locale/ca/LC_MESSAGES/kcm_about-distro.mo share/locale/ca/LC_MESSAGES/kcm_cpu.mo share/locale/ca/LC_MESSAGES/kcm_energyinfo.mo share/locale/ca/LC_MESSAGES/kcm_interrupts.mo share/locale/ca/LC_MESSAGES/kcm_memory.mo share/locale/ca/LC_MESSAGES/kcm_nic.mo share/locale/ca/LC_MESSAGES/kcm_pci.mo share/locale/ca/LC_MESSAGES/kcm_vulkan.mo share/locale/ca/LC_MESSAGES/kcm_wayland.mo share/locale/ca/LC_MESSAGES/kcmdevinfo.mo share/locale/ca/LC_MESSAGES/kcminfo.mo share/locale/ca/LC_MESSAGES/kcmopengl.mo share/locale/ca/LC_MESSAGES/kcmsamba.mo share/locale/ca/LC_MESSAGES/kcmusb.mo share/locale/ca/LC_MESSAGES/kcmview1394.mo share/locale/ca/LC_MESSAGES/kinfocenter.mo share/locale/ca@valencia/LC_MESSAGES/kcm_about-distro.mo share/locale/ca@valencia/LC_MESSAGES/kcm_energyinfo.mo share/locale/ca@valencia/LC_MESSAGES/kcm_memory.mo share/locale/ca@valencia/LC_MESSAGES/kcm_nic.mo share/locale/ca@valencia/LC_MESSAGES/kcm_pci.mo share/locale/ca@valencia/LC_MESSAGES/kcmdevinfo.mo share/locale/ca@valencia/LC_MESSAGES/kcminfo.mo share/locale/ca@valencia/LC_MESSAGES/kcmopengl.mo share/locale/ca@valencia/LC_MESSAGES/kcmsamba.mo share/locale/ca@valencia/LC_MESSAGES/kcmusb.mo share/locale/ca@valencia/LC_MESSAGES/kcmview1394.mo share/locale/ca@valencia/LC_MESSAGES/kinfocenter.mo share/locale/cs/LC_MESSAGES/kcm_about-distro.mo share/locale/cs/LC_MESSAGES/kcm_cpu.mo share/locale/cs/LC_MESSAGES/kcm_energyinfo.mo share/locale/cs/LC_MESSAGES/kcm_interrupts.mo share/locale/cs/LC_MESSAGES/kcm_memory.mo share/locale/cs/LC_MESSAGES/kcm_nic.mo share/locale/cs/LC_MESSAGES/kcm_pci.mo share/locale/cs/LC_MESSAGES/kcm_vulkan.mo share/locale/cs/LC_MESSAGES/kcm_wayland.mo share/locale/cs/LC_MESSAGES/kcmdevinfo.mo share/locale/cs/LC_MESSAGES/kcminfo.mo share/locale/cs/LC_MESSAGES/kcmopengl.mo share/locale/cs/LC_MESSAGES/kcmsamba.mo share/locale/cs/LC_MESSAGES/kcmusb.mo share/locale/cs/LC_MESSAGES/kcmview1394.mo share/locale/cs/LC_MESSAGES/kinfocenter.mo share/locale/csb/LC_MESSAGES/kcmsamba.mo share/locale/csb/LC_MESSAGES/kcmusb.mo share/locale/csb/LC_MESSAGES/kcmview1394.mo share/locale/csb/LC_MESSAGES/kinfocenter.mo share/locale/cy/LC_MESSAGES/kcminfo.mo share/locale/cy/LC_MESSAGES/kcmsamba.mo share/locale/cy/LC_MESSAGES/kcmusb.mo share/locale/cy/LC_MESSAGES/kcmview1394.mo share/locale/cy/LC_MESSAGES/kinfocenter.mo share/locale/da/LC_MESSAGES/kcm_about-distro.mo share/locale/da/LC_MESSAGES/kcm_energyinfo.mo share/locale/da/LC_MESSAGES/kcm_memory.mo share/locale/da/LC_MESSAGES/kcm_nic.mo share/locale/da/LC_MESSAGES/kcm_pci.mo share/locale/da/LC_MESSAGES/kcmdevinfo.mo share/locale/da/LC_MESSAGES/kcminfo.mo share/locale/da/LC_MESSAGES/kcmopengl.mo share/locale/da/LC_MESSAGES/kcmsamba.mo share/locale/da/LC_MESSAGES/kcmusb.mo share/locale/da/LC_MESSAGES/kcmview1394.mo share/locale/da/LC_MESSAGES/kinfocenter.mo share/locale/de/LC_MESSAGES/kcm_about-distro.mo share/locale/de/LC_MESSAGES/kcm_energyinfo.mo share/locale/de/LC_MESSAGES/kcm_memory.mo share/locale/de/LC_MESSAGES/kcm_nic.mo share/locale/de/LC_MESSAGES/kcm_pci.mo share/locale/de/LC_MESSAGES/kcmdevinfo.mo share/locale/de/LC_MESSAGES/kcminfo.mo share/locale/de/LC_MESSAGES/kcmopengl.mo share/locale/de/LC_MESSAGES/kcmsamba.mo share/locale/de/LC_MESSAGES/kcmusb.mo share/locale/de/LC_MESSAGES/kcmview1394.mo share/locale/de/LC_MESSAGES/kinfocenter.mo share/locale/el/LC_MESSAGES/kcm_about-distro.mo share/locale/el/LC_MESSAGES/kcm_cpu.mo share/locale/el/LC_MESSAGES/kcm_energyinfo.mo share/locale/el/LC_MESSAGES/kcm_interrupts.mo share/locale/el/LC_MESSAGES/kcm_memory.mo share/locale/el/LC_MESSAGES/kcm_nic.mo share/locale/el/LC_MESSAGES/kcm_pci.mo share/locale/el/LC_MESSAGES/kcm_vulkan.mo share/locale/el/LC_MESSAGES/kcm_wayland.mo share/locale/el/LC_MESSAGES/kcmdevinfo.mo share/locale/el/LC_MESSAGES/kcminfo.mo share/locale/el/LC_MESSAGES/kcmopengl.mo share/locale/el/LC_MESSAGES/kcmsamba.mo share/locale/el/LC_MESSAGES/kcmusb.mo share/locale/el/LC_MESSAGES/kcmview1394.mo share/locale/el/LC_MESSAGES/kinfocenter.mo share/locale/en_GB/LC_MESSAGES/kcm_about-distro.mo share/locale/en_GB/LC_MESSAGES/kcm_cpu.mo share/locale/en_GB/LC_MESSAGES/kcm_energyinfo.mo share/locale/en_GB/LC_MESSAGES/kcm_interrupts.mo share/locale/en_GB/LC_MESSAGES/kcm_memory.mo share/locale/en_GB/LC_MESSAGES/kcm_nic.mo share/locale/en_GB/LC_MESSAGES/kcm_pci.mo share/locale/en_GB/LC_MESSAGES/kcm_vulkan.mo share/locale/en_GB/LC_MESSAGES/kcm_wayland.mo share/locale/en_GB/LC_MESSAGES/kcmdevinfo.mo share/locale/en_GB/LC_MESSAGES/kcminfo.mo share/locale/en_GB/LC_MESSAGES/kcmopengl.mo share/locale/en_GB/LC_MESSAGES/kcmsamba.mo share/locale/en_GB/LC_MESSAGES/kcmusb.mo share/locale/en_GB/LC_MESSAGES/kcmview1394.mo share/locale/en_GB/LC_MESSAGES/kinfocenter.mo share/locale/eo/LC_MESSAGES/kcm_memory.mo share/locale/eo/LC_MESSAGES/kcm_nic.mo share/locale/eo/LC_MESSAGES/kcm_pci.mo share/locale/eo/LC_MESSAGES/kcmdevinfo.mo share/locale/eo/LC_MESSAGES/kcminfo.mo share/locale/eo/LC_MESSAGES/kcmopengl.mo share/locale/eo/LC_MESSAGES/kcmsamba.mo share/locale/eo/LC_MESSAGES/kcmusb.mo share/locale/eo/LC_MESSAGES/kcmview1394.mo share/locale/eo/LC_MESSAGES/kinfocenter.mo share/locale/es/LC_MESSAGES/kcm_about-distro.mo share/locale/es/LC_MESSAGES/kcm_cpu.mo share/locale/es/LC_MESSAGES/kcm_energyinfo.mo share/locale/es/LC_MESSAGES/kcm_interrupts.mo share/locale/es/LC_MESSAGES/kcm_memory.mo share/locale/es/LC_MESSAGES/kcm_nic.mo share/locale/es/LC_MESSAGES/kcm_pci.mo share/locale/es/LC_MESSAGES/kcm_vulkan.mo share/locale/es/LC_MESSAGES/kcm_wayland.mo share/locale/es/LC_MESSAGES/kcmdevinfo.mo share/locale/es/LC_MESSAGES/kcminfo.mo share/locale/es/LC_MESSAGES/kcmopengl.mo share/locale/es/LC_MESSAGES/kcmsamba.mo share/locale/es/LC_MESSAGES/kcmusb.mo share/locale/es/LC_MESSAGES/kcmview1394.mo share/locale/es/LC_MESSAGES/kinfocenter.mo share/locale/et/LC_MESSAGES/kcm_about-distro.mo share/locale/et/LC_MESSAGES/kcm_energyinfo.mo share/locale/et/LC_MESSAGES/kcm_memory.mo share/locale/et/LC_MESSAGES/kcm_nic.mo share/locale/et/LC_MESSAGES/kcm_pci.mo share/locale/et/LC_MESSAGES/kcmdevinfo.mo share/locale/et/LC_MESSAGES/kcminfo.mo share/locale/et/LC_MESSAGES/kcmopengl.mo share/locale/et/LC_MESSAGES/kcmsamba.mo share/locale/et/LC_MESSAGES/kcmusb.mo share/locale/et/LC_MESSAGES/kcmview1394.mo share/locale/et/LC_MESSAGES/kinfocenter.mo share/locale/eu/LC_MESSAGES/kcm_about-distro.mo share/locale/eu/LC_MESSAGES/kcm_cpu.mo share/locale/eu/LC_MESSAGES/kcm_energyinfo.mo share/locale/eu/LC_MESSAGES/kcm_interrupts.mo share/locale/eu/LC_MESSAGES/kcm_memory.mo share/locale/eu/LC_MESSAGES/kcm_nic.mo share/locale/eu/LC_MESSAGES/kcm_pci.mo share/locale/eu/LC_MESSAGES/kcm_vulkan.mo share/locale/eu/LC_MESSAGES/kcm_wayland.mo share/locale/eu/LC_MESSAGES/kcmdevinfo.mo share/locale/eu/LC_MESSAGES/kcminfo.mo share/locale/eu/LC_MESSAGES/kcmopengl.mo share/locale/eu/LC_MESSAGES/kcmsamba.mo share/locale/eu/LC_MESSAGES/kcmusb.mo share/locale/eu/LC_MESSAGES/kcmview1394.mo share/locale/eu/LC_MESSAGES/kinfocenter.mo share/locale/fa/LC_MESSAGES/kcm_memory.mo share/locale/fa/LC_MESSAGES/kcm_pci.mo share/locale/fa/LC_MESSAGES/kcmdevinfo.mo share/locale/fa/LC_MESSAGES/kcminfo.mo share/locale/fa/LC_MESSAGES/kcmopengl.mo share/locale/fa/LC_MESSAGES/kcmsamba.mo share/locale/fa/LC_MESSAGES/kcmusb.mo share/locale/fa/LC_MESSAGES/kcmview1394.mo share/locale/fa/LC_MESSAGES/kinfocenter.mo share/locale/fi/LC_MESSAGES/kcm_about-distro.mo +share/locale/fi/LC_MESSAGES/kcm_cpu.mo share/locale/fi/LC_MESSAGES/kcm_energyinfo.mo +share/locale/fi/LC_MESSAGES/kcm_interrupts.mo share/locale/fi/LC_MESSAGES/kcm_memory.mo share/locale/fi/LC_MESSAGES/kcm_nic.mo share/locale/fi/LC_MESSAGES/kcm_pci.mo +share/locale/fi/LC_MESSAGES/kcm_vulkan.mo +share/locale/fi/LC_MESSAGES/kcm_wayland.mo share/locale/fi/LC_MESSAGES/kcmdevinfo.mo share/locale/fi/LC_MESSAGES/kcminfo.mo share/locale/fi/LC_MESSAGES/kcmopengl.mo share/locale/fi/LC_MESSAGES/kcmsamba.mo share/locale/fi/LC_MESSAGES/kcmusb.mo share/locale/fi/LC_MESSAGES/kcmview1394.mo share/locale/fi/LC_MESSAGES/kinfocenter.mo share/locale/fr/LC_MESSAGES/kcm_about-distro.mo share/locale/fr/LC_MESSAGES/kcm_cpu.mo share/locale/fr/LC_MESSAGES/kcm_energyinfo.mo share/locale/fr/LC_MESSAGES/kcm_interrupts.mo share/locale/fr/LC_MESSAGES/kcm_memory.mo share/locale/fr/LC_MESSAGES/kcm_nic.mo share/locale/fr/LC_MESSAGES/kcm_pci.mo share/locale/fr/LC_MESSAGES/kcm_vulkan.mo share/locale/fr/LC_MESSAGES/kcm_wayland.mo share/locale/fr/LC_MESSAGES/kcmdevinfo.mo share/locale/fr/LC_MESSAGES/kcminfo.mo share/locale/fr/LC_MESSAGES/kcmopengl.mo share/locale/fr/LC_MESSAGES/kcmsamba.mo share/locale/fr/LC_MESSAGES/kcmusb.mo share/locale/fr/LC_MESSAGES/kcmview1394.mo share/locale/fr/LC_MESSAGES/kinfocenter.mo share/locale/fy/LC_MESSAGES/kcm_memory.mo share/locale/fy/LC_MESSAGES/kcm_pci.mo share/locale/fy/LC_MESSAGES/kcminfo.mo share/locale/fy/LC_MESSAGES/kcmopengl.mo share/locale/fy/LC_MESSAGES/kcmsamba.mo share/locale/fy/LC_MESSAGES/kcmusb.mo share/locale/fy/LC_MESSAGES/kcmview1394.mo share/locale/fy/LC_MESSAGES/kinfocenter.mo share/locale/ga/LC_MESSAGES/kcm_memory.mo share/locale/ga/LC_MESSAGES/kcm_nic.mo share/locale/ga/LC_MESSAGES/kcm_pci.mo share/locale/ga/LC_MESSAGES/kcmdevinfo.mo share/locale/ga/LC_MESSAGES/kcminfo.mo share/locale/ga/LC_MESSAGES/kcmopengl.mo share/locale/ga/LC_MESSAGES/kcmsamba.mo share/locale/ga/LC_MESSAGES/kcmusb.mo share/locale/ga/LC_MESSAGES/kcmview1394.mo share/locale/ga/LC_MESSAGES/kinfocenter.mo share/locale/gl/LC_MESSAGES/kcm_about-distro.mo share/locale/gl/LC_MESSAGES/kcm_energyinfo.mo share/locale/gl/LC_MESSAGES/kcm_memory.mo share/locale/gl/LC_MESSAGES/kcm_nic.mo share/locale/gl/LC_MESSAGES/kcm_pci.mo share/locale/gl/LC_MESSAGES/kcmdevinfo.mo share/locale/gl/LC_MESSAGES/kcminfo.mo share/locale/gl/LC_MESSAGES/kcmopengl.mo share/locale/gl/LC_MESSAGES/kcmsamba.mo share/locale/gl/LC_MESSAGES/kcmusb.mo share/locale/gl/LC_MESSAGES/kcmview1394.mo share/locale/gl/LC_MESSAGES/kinfocenter.mo share/locale/gu/LC_MESSAGES/kcm_memory.mo share/locale/gu/LC_MESSAGES/kcm_nic.mo share/locale/gu/LC_MESSAGES/kcm_pci.mo share/locale/gu/LC_MESSAGES/kcmdevinfo.mo share/locale/gu/LC_MESSAGES/kcminfo.mo share/locale/gu/LC_MESSAGES/kcmopengl.mo share/locale/gu/LC_MESSAGES/kcmsamba.mo share/locale/gu/LC_MESSAGES/kcmusb.mo share/locale/gu/LC_MESSAGES/kcmview1394.mo share/locale/gu/LC_MESSAGES/kinfocenter.mo share/locale/he/LC_MESSAGES/kcm_about-distro.mo share/locale/he/LC_MESSAGES/kcm_energyinfo.mo share/locale/he/LC_MESSAGES/kcm_memory.mo share/locale/he/LC_MESSAGES/kcm_nic.mo share/locale/he/LC_MESSAGES/kcm_pci.mo share/locale/he/LC_MESSAGES/kcmdevinfo.mo share/locale/he/LC_MESSAGES/kcminfo.mo share/locale/he/LC_MESSAGES/kcmopengl.mo share/locale/he/LC_MESSAGES/kcmsamba.mo share/locale/he/LC_MESSAGES/kcmusb.mo share/locale/he/LC_MESSAGES/kcmview1394.mo share/locale/he/LC_MESSAGES/kinfocenter.mo share/locale/hi/LC_MESSAGES/kcm_memory.mo share/locale/hi/LC_MESSAGES/kcm_nic.mo share/locale/hi/LC_MESSAGES/kcm_pci.mo share/locale/hi/LC_MESSAGES/kcmdevinfo.mo share/locale/hi/LC_MESSAGES/kcminfo.mo share/locale/hi/LC_MESSAGES/kcmopengl.mo share/locale/hi/LC_MESSAGES/kcmsamba.mo share/locale/hi/LC_MESSAGES/kcmusb.mo share/locale/hi/LC_MESSAGES/kcmview1394.mo share/locale/hi/LC_MESSAGES/kinfocenter.mo share/locale/hne/LC_MESSAGES/kcm_memory.mo share/locale/hne/LC_MESSAGES/kcm_pci.mo share/locale/hne/LC_MESSAGES/kcminfo.mo share/locale/hne/LC_MESSAGES/kcmopengl.mo share/locale/hne/LC_MESSAGES/kcmsamba.mo share/locale/hne/LC_MESSAGES/kcmusb.mo share/locale/hne/LC_MESSAGES/kcmview1394.mo share/locale/hne/LC_MESSAGES/kinfocenter.mo share/locale/hr/LC_MESSAGES/kcm_memory.mo share/locale/hr/LC_MESSAGES/kcm_nic.mo share/locale/hr/LC_MESSAGES/kcm_pci.mo share/locale/hr/LC_MESSAGES/kcmdevinfo.mo share/locale/hr/LC_MESSAGES/kcminfo.mo share/locale/hr/LC_MESSAGES/kcmopengl.mo share/locale/hr/LC_MESSAGES/kcmsamba.mo share/locale/hr/LC_MESSAGES/kcmusb.mo share/locale/hr/LC_MESSAGES/kcmview1394.mo share/locale/hr/LC_MESSAGES/kinfocenter.mo share/locale/hsb/LC_MESSAGES/kcm_memory.mo share/locale/hsb/LC_MESSAGES/kcm_pci.mo share/locale/hsb/LC_MESSAGES/kcminfo.mo share/locale/hsb/LC_MESSAGES/kcmopengl.mo share/locale/hsb/LC_MESSAGES/kcmsamba.mo share/locale/hsb/LC_MESSAGES/kcmusb.mo share/locale/hsb/LC_MESSAGES/kcmview1394.mo share/locale/hsb/LC_MESSAGES/kinfocenter.mo share/locale/hu/LC_MESSAGES/kcm_about-distro.mo share/locale/hu/LC_MESSAGES/kcm_energyinfo.mo share/locale/hu/LC_MESSAGES/kcm_interrupts.mo share/locale/hu/LC_MESSAGES/kcm_memory.mo share/locale/hu/LC_MESSAGES/kcm_nic.mo share/locale/hu/LC_MESSAGES/kcm_pci.mo share/locale/hu/LC_MESSAGES/kcm_wayland.mo share/locale/hu/LC_MESSAGES/kcmdevinfo.mo share/locale/hu/LC_MESSAGES/kcminfo.mo share/locale/hu/LC_MESSAGES/kcmopengl.mo share/locale/hu/LC_MESSAGES/kcmsamba.mo share/locale/hu/LC_MESSAGES/kcmusb.mo share/locale/hu/LC_MESSAGES/kcmview1394.mo share/locale/hu/LC_MESSAGES/kinfocenter.mo share/locale/ia/LC_MESSAGES/kcm_about-distro.mo share/locale/ia/LC_MESSAGES/kcm_cpu.mo share/locale/ia/LC_MESSAGES/kcm_energyinfo.mo share/locale/ia/LC_MESSAGES/kcm_interrupts.mo share/locale/ia/LC_MESSAGES/kcm_memory.mo share/locale/ia/LC_MESSAGES/kcm_nic.mo share/locale/ia/LC_MESSAGES/kcm_pci.mo share/locale/ia/LC_MESSAGES/kcm_vulkan.mo share/locale/ia/LC_MESSAGES/kcm_wayland.mo share/locale/ia/LC_MESSAGES/kcmdevinfo.mo share/locale/ia/LC_MESSAGES/kcminfo.mo share/locale/ia/LC_MESSAGES/kcmopengl.mo share/locale/ia/LC_MESSAGES/kcmsamba.mo share/locale/ia/LC_MESSAGES/kcmusb.mo share/locale/ia/LC_MESSAGES/kcmview1394.mo share/locale/ia/LC_MESSAGES/kinfocenter.mo share/locale/id/LC_MESSAGES/kcm_about-distro.mo share/locale/id/LC_MESSAGES/kcm_energyinfo.mo share/locale/id/LC_MESSAGES/kcm_memory.mo share/locale/id/LC_MESSAGES/kcm_nic.mo share/locale/id/LC_MESSAGES/kcm_pci.mo share/locale/id/LC_MESSAGES/kcmdevinfo.mo share/locale/id/LC_MESSAGES/kcminfo.mo share/locale/id/LC_MESSAGES/kcmopengl.mo share/locale/id/LC_MESSAGES/kcmsamba.mo share/locale/id/LC_MESSAGES/kcmusb.mo share/locale/id/LC_MESSAGES/kcmview1394.mo share/locale/id/LC_MESSAGES/kinfocenter.mo share/locale/is/LC_MESSAGES/kcm_memory.mo share/locale/is/LC_MESSAGES/kcm_nic.mo share/locale/is/LC_MESSAGES/kcm_pci.mo share/locale/is/LC_MESSAGES/kcmdevinfo.mo share/locale/is/LC_MESSAGES/kcminfo.mo share/locale/is/LC_MESSAGES/kcmopengl.mo share/locale/is/LC_MESSAGES/kcmsamba.mo share/locale/is/LC_MESSAGES/kcmusb.mo share/locale/is/LC_MESSAGES/kcmview1394.mo share/locale/is/LC_MESSAGES/kinfocenter.mo share/locale/it/LC_MESSAGES/kcm_about-distro.mo share/locale/it/LC_MESSAGES/kcm_cpu.mo share/locale/it/LC_MESSAGES/kcm_energyinfo.mo share/locale/it/LC_MESSAGES/kcm_interrupts.mo share/locale/it/LC_MESSAGES/kcm_memory.mo share/locale/it/LC_MESSAGES/kcm_nic.mo share/locale/it/LC_MESSAGES/kcm_pci.mo share/locale/it/LC_MESSAGES/kcm_vulkan.mo share/locale/it/LC_MESSAGES/kcm_wayland.mo share/locale/it/LC_MESSAGES/kcmdevinfo.mo share/locale/it/LC_MESSAGES/kcminfo.mo share/locale/it/LC_MESSAGES/kcmopengl.mo share/locale/it/LC_MESSAGES/kcmsamba.mo share/locale/it/LC_MESSAGES/kcmusb.mo share/locale/it/LC_MESSAGES/kcmview1394.mo share/locale/it/LC_MESSAGES/kinfocenter.mo share/locale/ja/LC_MESSAGES/kcm_about-distro.mo share/locale/ja/LC_MESSAGES/kcm_energyinfo.mo share/locale/ja/LC_MESSAGES/kcm_memory.mo share/locale/ja/LC_MESSAGES/kcm_nic.mo share/locale/ja/LC_MESSAGES/kcm_pci.mo share/locale/ja/LC_MESSAGES/kcmdevinfo.mo share/locale/ja/LC_MESSAGES/kcminfo.mo share/locale/ja/LC_MESSAGES/kcmopengl.mo share/locale/ja/LC_MESSAGES/kcmsamba.mo share/locale/ja/LC_MESSAGES/kcmusb.mo share/locale/ja/LC_MESSAGES/kcmview1394.mo share/locale/ja/LC_MESSAGES/kinfocenter.mo share/locale/kk/LC_MESSAGES/kcm_memory.mo share/locale/kk/LC_MESSAGES/kcm_nic.mo share/locale/kk/LC_MESSAGES/kcm_pci.mo share/locale/kk/LC_MESSAGES/kcmdevinfo.mo share/locale/kk/LC_MESSAGES/kcminfo.mo share/locale/kk/LC_MESSAGES/kcmopengl.mo share/locale/kk/LC_MESSAGES/kcmsamba.mo share/locale/kk/LC_MESSAGES/kcmusb.mo share/locale/kk/LC_MESSAGES/kcmview1394.mo share/locale/kk/LC_MESSAGES/kinfocenter.mo share/locale/km/LC_MESSAGES/kcm_memory.mo share/locale/km/LC_MESSAGES/kcm_nic.mo share/locale/km/LC_MESSAGES/kcm_pci.mo share/locale/km/LC_MESSAGES/kcmdevinfo.mo share/locale/km/LC_MESSAGES/kcminfo.mo share/locale/km/LC_MESSAGES/kcmopengl.mo share/locale/km/LC_MESSAGES/kcmsamba.mo share/locale/km/LC_MESSAGES/kcmusb.mo share/locale/km/LC_MESSAGES/kcmview1394.mo share/locale/km/LC_MESSAGES/kinfocenter.mo share/locale/kn/LC_MESSAGES/kcm_memory.mo share/locale/kn/LC_MESSAGES/kcm_nic.mo share/locale/kn/LC_MESSAGES/kcm_pci.mo share/locale/kn/LC_MESSAGES/kcmdevinfo.mo share/locale/kn/LC_MESSAGES/kcminfo.mo share/locale/kn/LC_MESSAGES/kcmopengl.mo share/locale/kn/LC_MESSAGES/kcmsamba.mo share/locale/kn/LC_MESSAGES/kcmusb.mo share/locale/kn/LC_MESSAGES/kcmview1394.mo share/locale/kn/LC_MESSAGES/kinfocenter.mo share/locale/ko/LC_MESSAGES/kcm_about-distro.mo share/locale/ko/LC_MESSAGES/kcm_energyinfo.mo share/locale/ko/LC_MESSAGES/kcm_memory.mo share/locale/ko/LC_MESSAGES/kcm_nic.mo share/locale/ko/LC_MESSAGES/kcm_pci.mo share/locale/ko/LC_MESSAGES/kcmdevinfo.mo share/locale/ko/LC_MESSAGES/kcminfo.mo share/locale/ko/LC_MESSAGES/kcmopengl.mo share/locale/ko/LC_MESSAGES/kcmsamba.mo share/locale/ko/LC_MESSAGES/kcmusb.mo share/locale/ko/LC_MESSAGES/kcmview1394.mo share/locale/ko/LC_MESSAGES/kinfocenter.mo share/locale/ku/LC_MESSAGES/kcm_memory.mo share/locale/ku/LC_MESSAGES/kcm_pci.mo share/locale/ku/LC_MESSAGES/kcminfo.mo share/locale/ku/LC_MESSAGES/kcmopengl.mo share/locale/ku/LC_MESSAGES/kcmsamba.mo share/locale/ku/LC_MESSAGES/kcmusb.mo share/locale/ku/LC_MESSAGES/kcmview1394.mo share/locale/ku/LC_MESSAGES/kinfocenter.mo share/locale/lt/LC_MESSAGES/kcm_about-distro.mo share/locale/lt/LC_MESSAGES/kcm_energyinfo.mo share/locale/lt/LC_MESSAGES/kcm_memory.mo share/locale/lt/LC_MESSAGES/kcm_nic.mo share/locale/lt/LC_MESSAGES/kcm_pci.mo share/locale/lt/LC_MESSAGES/kcmdevinfo.mo share/locale/lt/LC_MESSAGES/kcminfo.mo share/locale/lt/LC_MESSAGES/kcmopengl.mo share/locale/lt/LC_MESSAGES/kcmsamba.mo share/locale/lt/LC_MESSAGES/kcmusb.mo share/locale/lt/LC_MESSAGES/kcmview1394.mo share/locale/lt/LC_MESSAGES/kinfocenter.mo share/locale/lv/LC_MESSAGES/kcm_memory.mo share/locale/lv/LC_MESSAGES/kcm_nic.mo share/locale/lv/LC_MESSAGES/kcm_pci.mo share/locale/lv/LC_MESSAGES/kcmdevinfo.mo share/locale/lv/LC_MESSAGES/kcminfo.mo share/locale/lv/LC_MESSAGES/kcmopengl.mo share/locale/lv/LC_MESSAGES/kcmsamba.mo share/locale/lv/LC_MESSAGES/kcmusb.mo share/locale/lv/LC_MESSAGES/kcmview1394.mo share/locale/lv/LC_MESSAGES/kinfocenter.mo share/locale/mai/LC_MESSAGES/kcm_memory.mo share/locale/mai/LC_MESSAGES/kcm_nic.mo share/locale/mai/LC_MESSAGES/kcm_pci.mo share/locale/mai/LC_MESSAGES/kcmdevinfo.mo share/locale/mai/LC_MESSAGES/kcminfo.mo share/locale/mai/LC_MESSAGES/kcmopengl.mo share/locale/mai/LC_MESSAGES/kcmsamba.mo share/locale/mai/LC_MESSAGES/kcmusb.mo share/locale/mai/LC_MESSAGES/kcmview1394.mo share/locale/mai/LC_MESSAGES/kinfocenter.mo share/locale/mk/LC_MESSAGES/kcm_memory.mo share/locale/mk/LC_MESSAGES/kcm_pci.mo share/locale/mk/LC_MESSAGES/kcminfo.mo share/locale/mk/LC_MESSAGES/kcmsamba.mo share/locale/mk/LC_MESSAGES/kcmusb.mo share/locale/mk/LC_MESSAGES/kcmview1394.mo share/locale/mk/LC_MESSAGES/kinfocenter.mo share/locale/ml/LC_MESSAGES/kcm_about-distro.mo share/locale/ml/LC_MESSAGES/kcm_energyinfo.mo share/locale/ml/LC_MESSAGES/kcm_memory.mo share/locale/ml/LC_MESSAGES/kcm_nic.mo share/locale/ml/LC_MESSAGES/kcm_pci.mo share/locale/ml/LC_MESSAGES/kcmdevinfo.mo share/locale/ml/LC_MESSAGES/kcminfo.mo share/locale/ml/LC_MESSAGES/kcmopengl.mo share/locale/ml/LC_MESSAGES/kcmsamba.mo share/locale/ml/LC_MESSAGES/kcmusb.mo share/locale/ml/LC_MESSAGES/kcmview1394.mo share/locale/ml/LC_MESSAGES/kinfocenter.mo share/locale/mr/LC_MESSAGES/kcm_memory.mo share/locale/mr/LC_MESSAGES/kcm_nic.mo share/locale/mr/LC_MESSAGES/kcm_pci.mo share/locale/mr/LC_MESSAGES/kcmdevinfo.mo share/locale/mr/LC_MESSAGES/kcminfo.mo share/locale/mr/LC_MESSAGES/kcmopengl.mo share/locale/mr/LC_MESSAGES/kcmsamba.mo share/locale/mr/LC_MESSAGES/kcmusb.mo share/locale/mr/LC_MESSAGES/kcmview1394.mo share/locale/mr/LC_MESSAGES/kinfocenter.mo share/locale/ms/LC_MESSAGES/kcm_memory.mo share/locale/ms/LC_MESSAGES/kcm_nic.mo share/locale/ms/LC_MESSAGES/kcm_pci.mo share/locale/ms/LC_MESSAGES/kcmdevinfo.mo share/locale/ms/LC_MESSAGES/kcminfo.mo share/locale/ms/LC_MESSAGES/kcmopengl.mo share/locale/ms/LC_MESSAGES/kcmsamba.mo share/locale/ms/LC_MESSAGES/kcmusb.mo share/locale/ms/LC_MESSAGES/kcmview1394.mo share/locale/ms/LC_MESSAGES/kinfocenter.mo share/locale/nb/LC_MESSAGES/kcm_about-distro.mo share/locale/nb/LC_MESSAGES/kcm_energyinfo.mo share/locale/nb/LC_MESSAGES/kcm_memory.mo share/locale/nb/LC_MESSAGES/kcm_nic.mo share/locale/nb/LC_MESSAGES/kcm_pci.mo share/locale/nb/LC_MESSAGES/kcmdevinfo.mo share/locale/nb/LC_MESSAGES/kcminfo.mo share/locale/nb/LC_MESSAGES/kcmopengl.mo share/locale/nb/LC_MESSAGES/kcmsamba.mo share/locale/nb/LC_MESSAGES/kcmusb.mo share/locale/nb/LC_MESSAGES/kcmview1394.mo share/locale/nb/LC_MESSAGES/kinfocenter.mo share/locale/nds/LC_MESSAGES/kcm_memory.mo share/locale/nds/LC_MESSAGES/kcm_nic.mo share/locale/nds/LC_MESSAGES/kcm_pci.mo share/locale/nds/LC_MESSAGES/kcmdevinfo.mo share/locale/nds/LC_MESSAGES/kcminfo.mo share/locale/nds/LC_MESSAGES/kcmopengl.mo share/locale/nds/LC_MESSAGES/kcmsamba.mo share/locale/nds/LC_MESSAGES/kcmusb.mo share/locale/nds/LC_MESSAGES/kcmview1394.mo share/locale/nds/LC_MESSAGES/kinfocenter.mo share/locale/ne/LC_MESSAGES/kcminfo.mo share/locale/ne/LC_MESSAGES/kcmsamba.mo share/locale/ne/LC_MESSAGES/kcmusb.mo share/locale/ne/LC_MESSAGES/kcmview1394.mo share/locale/ne/LC_MESSAGES/kinfocenter.mo share/locale/nl/LC_MESSAGES/kcm_about-distro.mo share/locale/nl/LC_MESSAGES/kcm_cpu.mo share/locale/nl/LC_MESSAGES/kcm_energyinfo.mo share/locale/nl/LC_MESSAGES/kcm_interrupts.mo share/locale/nl/LC_MESSAGES/kcm_memory.mo share/locale/nl/LC_MESSAGES/kcm_nic.mo share/locale/nl/LC_MESSAGES/kcm_pci.mo share/locale/nl/LC_MESSAGES/kcm_vulkan.mo share/locale/nl/LC_MESSAGES/kcm_wayland.mo share/locale/nl/LC_MESSAGES/kcmdevinfo.mo share/locale/nl/LC_MESSAGES/kcminfo.mo share/locale/nl/LC_MESSAGES/kcmopengl.mo share/locale/nl/LC_MESSAGES/kcmsamba.mo share/locale/nl/LC_MESSAGES/kcmusb.mo share/locale/nl/LC_MESSAGES/kcmview1394.mo share/locale/nl/LC_MESSAGES/kinfocenter.mo share/locale/nn/LC_MESSAGES/kcm_about-distro.mo share/locale/nn/LC_MESSAGES/kcm_energyinfo.mo share/locale/nn/LC_MESSAGES/kcm_memory.mo share/locale/nn/LC_MESSAGES/kcm_nic.mo share/locale/nn/LC_MESSAGES/kcm_pci.mo share/locale/nn/LC_MESSAGES/kcmdevinfo.mo share/locale/nn/LC_MESSAGES/kcminfo.mo share/locale/nn/LC_MESSAGES/kcmopengl.mo share/locale/nn/LC_MESSAGES/kcmsamba.mo share/locale/nn/LC_MESSAGES/kcmusb.mo share/locale/nn/LC_MESSAGES/kcmview1394.mo share/locale/nn/LC_MESSAGES/kinfocenter.mo share/locale/oc/LC_MESSAGES/kcminfo.mo share/locale/oc/LC_MESSAGES/kcmsamba.mo share/locale/oc/LC_MESSAGES/kcmusb.mo share/locale/oc/LC_MESSAGES/kcmview1394.mo share/locale/oc/LC_MESSAGES/kinfocenter.mo share/locale/pa/LC_MESSAGES/kcm_about-distro.mo share/locale/pa/LC_MESSAGES/kcm_energyinfo.mo share/locale/pa/LC_MESSAGES/kcm_memory.mo share/locale/pa/LC_MESSAGES/kcm_nic.mo share/locale/pa/LC_MESSAGES/kcm_pci.mo share/locale/pa/LC_MESSAGES/kcmdevinfo.mo share/locale/pa/LC_MESSAGES/kcminfo.mo share/locale/pa/LC_MESSAGES/kcmopengl.mo share/locale/pa/LC_MESSAGES/kcmsamba.mo share/locale/pa/LC_MESSAGES/kcmusb.mo share/locale/pa/LC_MESSAGES/kcmview1394.mo share/locale/pa/LC_MESSAGES/kinfocenter.mo share/locale/pl/LC_MESSAGES/kcm_about-distro.mo share/locale/pl/LC_MESSAGES/kcm_cpu.mo share/locale/pl/LC_MESSAGES/kcm_energyinfo.mo share/locale/pl/LC_MESSAGES/kcm_interrupts.mo share/locale/pl/LC_MESSAGES/kcm_memory.mo share/locale/pl/LC_MESSAGES/kcm_nic.mo share/locale/pl/LC_MESSAGES/kcm_pci.mo share/locale/pl/LC_MESSAGES/kcm_vulkan.mo share/locale/pl/LC_MESSAGES/kcm_wayland.mo share/locale/pl/LC_MESSAGES/kcmdevinfo.mo share/locale/pl/LC_MESSAGES/kcminfo.mo share/locale/pl/LC_MESSAGES/kcmopengl.mo share/locale/pl/LC_MESSAGES/kcmsamba.mo share/locale/pl/LC_MESSAGES/kcmusb.mo share/locale/pl/LC_MESSAGES/kcmview1394.mo share/locale/pl/LC_MESSAGES/kinfocenter.mo share/locale/pt/LC_MESSAGES/kcm_about-distro.mo share/locale/pt/LC_MESSAGES/kcm_cpu.mo share/locale/pt/LC_MESSAGES/kcm_energyinfo.mo share/locale/pt/LC_MESSAGES/kcm_interrupts.mo share/locale/pt/LC_MESSAGES/kcm_memory.mo share/locale/pt/LC_MESSAGES/kcm_nic.mo share/locale/pt/LC_MESSAGES/kcm_pci.mo share/locale/pt/LC_MESSAGES/kcm_vulkan.mo share/locale/pt/LC_MESSAGES/kcm_wayland.mo share/locale/pt/LC_MESSAGES/kcmdevinfo.mo share/locale/pt/LC_MESSAGES/kcminfo.mo share/locale/pt/LC_MESSAGES/kcmopengl.mo share/locale/pt/LC_MESSAGES/kcmsamba.mo share/locale/pt/LC_MESSAGES/kcmusb.mo share/locale/pt/LC_MESSAGES/kcmview1394.mo share/locale/pt/LC_MESSAGES/kinfocenter.mo share/locale/pt_BR/LC_MESSAGES/kcm_about-distro.mo share/locale/pt_BR/LC_MESSAGES/kcm_cpu.mo share/locale/pt_BR/LC_MESSAGES/kcm_energyinfo.mo share/locale/pt_BR/LC_MESSAGES/kcm_interrupts.mo share/locale/pt_BR/LC_MESSAGES/kcm_memory.mo share/locale/pt_BR/LC_MESSAGES/kcm_nic.mo share/locale/pt_BR/LC_MESSAGES/kcm_pci.mo share/locale/pt_BR/LC_MESSAGES/kcm_vulkan.mo share/locale/pt_BR/LC_MESSAGES/kcm_wayland.mo share/locale/pt_BR/LC_MESSAGES/kcmdevinfo.mo share/locale/pt_BR/LC_MESSAGES/kcminfo.mo share/locale/pt_BR/LC_MESSAGES/kcmopengl.mo share/locale/pt_BR/LC_MESSAGES/kcmsamba.mo share/locale/pt_BR/LC_MESSAGES/kcmusb.mo share/locale/pt_BR/LC_MESSAGES/kcmview1394.mo share/locale/pt_BR/LC_MESSAGES/kinfocenter.mo share/locale/ro/LC_MESSAGES/kcm_about-distro.mo share/locale/ro/LC_MESSAGES/kcm_energyinfo.mo share/locale/ro/LC_MESSAGES/kcm_memory.mo share/locale/ro/LC_MESSAGES/kcm_nic.mo share/locale/ro/LC_MESSAGES/kcm_pci.mo share/locale/ro/LC_MESSAGES/kcmdevinfo.mo share/locale/ro/LC_MESSAGES/kcminfo.mo share/locale/ro/LC_MESSAGES/kcmopengl.mo share/locale/ro/LC_MESSAGES/kcmsamba.mo share/locale/ro/LC_MESSAGES/kcmusb.mo share/locale/ro/LC_MESSAGES/kcmview1394.mo share/locale/ro/LC_MESSAGES/kinfocenter.mo share/locale/ru/LC_MESSAGES/kcm_about-distro.mo share/locale/ru/LC_MESSAGES/kcm_cpu.mo share/locale/ru/LC_MESSAGES/kcm_energyinfo.mo share/locale/ru/LC_MESSAGES/kcm_memory.mo share/locale/ru/LC_MESSAGES/kcm_nic.mo share/locale/ru/LC_MESSAGES/kcm_pci.mo share/locale/ru/LC_MESSAGES/kcm_vulkan.mo share/locale/ru/LC_MESSAGES/kcmdevinfo.mo share/locale/ru/LC_MESSAGES/kcminfo.mo share/locale/ru/LC_MESSAGES/kcmopengl.mo share/locale/ru/LC_MESSAGES/kcmsamba.mo share/locale/ru/LC_MESSAGES/kcmusb.mo share/locale/ru/LC_MESSAGES/kcmview1394.mo share/locale/ru/LC_MESSAGES/kinfocenter.mo share/locale/se/LC_MESSAGES/kcm_nic.mo share/locale/se/LC_MESSAGES/kcminfo.mo share/locale/se/LC_MESSAGES/kcmsamba.mo share/locale/se/LC_MESSAGES/kcmusb.mo share/locale/se/LC_MESSAGES/kcmview1394.mo share/locale/si/LC_MESSAGES/kcm_memory.mo share/locale/si/LC_MESSAGES/kcm_pci.mo share/locale/si/LC_MESSAGES/kcmdevinfo.mo share/locale/si/LC_MESSAGES/kcminfo.mo share/locale/si/LC_MESSAGES/kcmopengl.mo share/locale/si/LC_MESSAGES/kcmsamba.mo share/locale/si/LC_MESSAGES/kcmusb.mo share/locale/si/LC_MESSAGES/kcmview1394.mo share/locale/si/LC_MESSAGES/kinfocenter.mo share/locale/sk/LC_MESSAGES/kcm_about-distro.mo share/locale/sk/LC_MESSAGES/kcm_cpu.mo share/locale/sk/LC_MESSAGES/kcm_energyinfo.mo share/locale/sk/LC_MESSAGES/kcm_interrupts.mo share/locale/sk/LC_MESSAGES/kcm_memory.mo share/locale/sk/LC_MESSAGES/kcm_nic.mo share/locale/sk/LC_MESSAGES/kcm_pci.mo share/locale/sk/LC_MESSAGES/kcm_vulkan.mo share/locale/sk/LC_MESSAGES/kcm_wayland.mo share/locale/sk/LC_MESSAGES/kcmdevinfo.mo share/locale/sk/LC_MESSAGES/kcminfo.mo share/locale/sk/LC_MESSAGES/kcmopengl.mo share/locale/sk/LC_MESSAGES/kcmsamba.mo share/locale/sk/LC_MESSAGES/kcmusb.mo share/locale/sk/LC_MESSAGES/kcmview1394.mo share/locale/sk/LC_MESSAGES/kinfocenter.mo share/locale/sl/LC_MESSAGES/kcm_about-distro.mo share/locale/sl/LC_MESSAGES/kcm_cpu.mo share/locale/sl/LC_MESSAGES/kcm_energyinfo.mo share/locale/sl/LC_MESSAGES/kcm_interrupts.mo share/locale/sl/LC_MESSAGES/kcm_memory.mo share/locale/sl/LC_MESSAGES/kcm_nic.mo share/locale/sl/LC_MESSAGES/kcm_pci.mo share/locale/sl/LC_MESSAGES/kcm_vulkan.mo share/locale/sl/LC_MESSAGES/kcm_wayland.mo share/locale/sl/LC_MESSAGES/kcmdevinfo.mo share/locale/sl/LC_MESSAGES/kcminfo.mo share/locale/sl/LC_MESSAGES/kcmopengl.mo share/locale/sl/LC_MESSAGES/kcmsamba.mo share/locale/sl/LC_MESSAGES/kcmusb.mo share/locale/sl/LC_MESSAGES/kcmview1394.mo share/locale/sl/LC_MESSAGES/kinfocenter.mo share/locale/sq/LC_MESSAGES/kcm_memory.mo share/locale/sq/LC_MESSAGES/kcm_nic.mo share/locale/sq/LC_MESSAGES/kcm_pci.mo share/locale/sq/LC_MESSAGES/kcminfo.mo share/locale/sq/LC_MESSAGES/kcmopengl.mo share/locale/sq/LC_MESSAGES/kcmsamba.mo share/locale/sq/LC_MESSAGES/kcmusb.mo share/locale/sq/LC_MESSAGES/kcmview1394.mo share/locale/sq/LC_MESSAGES/kinfocenter.mo share/locale/sr/LC_MESSAGES/kcm_about-distro.mo share/locale/sr/LC_MESSAGES/kcm_energyinfo.mo share/locale/sr/LC_MESSAGES/kcm_memory.mo share/locale/sr/LC_MESSAGES/kcm_nic.mo share/locale/sr/LC_MESSAGES/kcm_pci.mo share/locale/sr/LC_MESSAGES/kcmdevinfo.mo share/locale/sr/LC_MESSAGES/kcminfo.mo share/locale/sr/LC_MESSAGES/kcmopengl.mo share/locale/sr/LC_MESSAGES/kcmsamba.mo share/locale/sr/LC_MESSAGES/kcmusb.mo share/locale/sr/LC_MESSAGES/kcmview1394.mo share/locale/sr/LC_MESSAGES/kinfocenter.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_about-distro.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_energyinfo.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_memory.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_nic.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_pci.mo share/locale/sr@ijekavian/LC_MESSAGES/kcmdevinfo.mo share/locale/sr@ijekavian/LC_MESSAGES/kcminfo.mo share/locale/sr@ijekavian/LC_MESSAGES/kcmopengl.mo share/locale/sr@ijekavian/LC_MESSAGES/kcmsamba.mo share/locale/sr@ijekavian/LC_MESSAGES/kcmusb.mo share/locale/sr@ijekavian/LC_MESSAGES/kcmview1394.mo share/locale/sr@ijekavian/LC_MESSAGES/kinfocenter.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_about-distro.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_energyinfo.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_memory.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_nic.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_pci.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmdevinfo.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcminfo.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmopengl.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmsamba.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmusb.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmview1394.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kinfocenter.mo share/locale/sr@latin/LC_MESSAGES/kcm_about-distro.mo share/locale/sr@latin/LC_MESSAGES/kcm_energyinfo.mo share/locale/sr@latin/LC_MESSAGES/kcm_memory.mo share/locale/sr@latin/LC_MESSAGES/kcm_nic.mo share/locale/sr@latin/LC_MESSAGES/kcm_pci.mo share/locale/sr@latin/LC_MESSAGES/kcmdevinfo.mo share/locale/sr@latin/LC_MESSAGES/kcminfo.mo share/locale/sr@latin/LC_MESSAGES/kcmopengl.mo share/locale/sr@latin/LC_MESSAGES/kcmsamba.mo share/locale/sr@latin/LC_MESSAGES/kcmusb.mo share/locale/sr@latin/LC_MESSAGES/kcmview1394.mo share/locale/sr@latin/LC_MESSAGES/kinfocenter.mo share/locale/sv/LC_MESSAGES/kcm_about-distro.mo share/locale/sv/LC_MESSAGES/kcm_cpu.mo share/locale/sv/LC_MESSAGES/kcm_energyinfo.mo share/locale/sv/LC_MESSAGES/kcm_interrupts.mo share/locale/sv/LC_MESSAGES/kcm_memory.mo share/locale/sv/LC_MESSAGES/kcm_nic.mo share/locale/sv/LC_MESSAGES/kcm_pci.mo share/locale/sv/LC_MESSAGES/kcm_vulkan.mo share/locale/sv/LC_MESSAGES/kcm_wayland.mo share/locale/sv/LC_MESSAGES/kcmdevinfo.mo share/locale/sv/LC_MESSAGES/kcminfo.mo share/locale/sv/LC_MESSAGES/kcmopengl.mo share/locale/sv/LC_MESSAGES/kcmsamba.mo share/locale/sv/LC_MESSAGES/kcmusb.mo share/locale/sv/LC_MESSAGES/kcmview1394.mo share/locale/sv/LC_MESSAGES/kinfocenter.mo share/locale/ta/LC_MESSAGES/kcm_memory.mo share/locale/ta/LC_MESSAGES/kcm_pci.mo share/locale/ta/LC_MESSAGES/kcminfo.mo share/locale/ta/LC_MESSAGES/kcmopengl.mo share/locale/ta/LC_MESSAGES/kcmsamba.mo share/locale/ta/LC_MESSAGES/kcmusb.mo share/locale/ta/LC_MESSAGES/kcmview1394.mo share/locale/ta/LC_MESSAGES/kinfocenter.mo share/locale/te/LC_MESSAGES/kcm_memory.mo share/locale/te/LC_MESSAGES/kcm_pci.mo share/locale/te/LC_MESSAGES/kcminfo.mo share/locale/te/LC_MESSAGES/kcmopengl.mo share/locale/te/LC_MESSAGES/kcmsamba.mo share/locale/te/LC_MESSAGES/kcmusb.mo share/locale/te/LC_MESSAGES/kcmview1394.mo share/locale/te/LC_MESSAGES/kinfocenter.mo share/locale/tg/LC_MESSAGES/kcm_energyinfo.mo share/locale/tg/LC_MESSAGES/kcm_memory.mo share/locale/tg/LC_MESSAGES/kcm_nic.mo share/locale/tg/LC_MESSAGES/kcm_pci.mo share/locale/tg/LC_MESSAGES/kcmdevinfo.mo share/locale/tg/LC_MESSAGES/kcminfo.mo share/locale/tg/LC_MESSAGES/kcmopengl.mo share/locale/tg/LC_MESSAGES/kcmsamba.mo share/locale/tg/LC_MESSAGES/kcmusb.mo share/locale/tg/LC_MESSAGES/kcmview1394.mo share/locale/tg/LC_MESSAGES/kinfocenter.mo share/locale/th/LC_MESSAGES/kcm_memory.mo share/locale/th/LC_MESSAGES/kcm_nic.mo share/locale/th/LC_MESSAGES/kcm_pci.mo share/locale/th/LC_MESSAGES/kcmdevinfo.mo share/locale/th/LC_MESSAGES/kcminfo.mo share/locale/th/LC_MESSAGES/kcmopengl.mo share/locale/th/LC_MESSAGES/kcmsamba.mo share/locale/th/LC_MESSAGES/kcmusb.mo share/locale/th/LC_MESSAGES/kcmview1394.mo share/locale/th/LC_MESSAGES/kinfocenter.mo share/locale/tr/LC_MESSAGES/kcm_about-distro.mo share/locale/tr/LC_MESSAGES/kcm_energyinfo.mo share/locale/tr/LC_MESSAGES/kcm_memory.mo share/locale/tr/LC_MESSAGES/kcm_nic.mo share/locale/tr/LC_MESSAGES/kcm_pci.mo share/locale/tr/LC_MESSAGES/kcmdevinfo.mo share/locale/tr/LC_MESSAGES/kcminfo.mo share/locale/tr/LC_MESSAGES/kcmopengl.mo share/locale/tr/LC_MESSAGES/kcmsamba.mo share/locale/tr/LC_MESSAGES/kcmusb.mo share/locale/tr/LC_MESSAGES/kcmview1394.mo share/locale/tr/LC_MESSAGES/kinfocenter.mo share/locale/ug/LC_MESSAGES/kcm_about-distro.mo share/locale/ug/LC_MESSAGES/kcm_memory.mo share/locale/ug/LC_MESSAGES/kcm_nic.mo share/locale/ug/LC_MESSAGES/kcm_pci.mo share/locale/ug/LC_MESSAGES/kcmdevinfo.mo share/locale/ug/LC_MESSAGES/kcminfo.mo share/locale/ug/LC_MESSAGES/kcmopengl.mo share/locale/ug/LC_MESSAGES/kcmsamba.mo share/locale/ug/LC_MESSAGES/kcmusb.mo share/locale/ug/LC_MESSAGES/kcmview1394.mo share/locale/ug/LC_MESSAGES/kinfocenter.mo share/locale/uk/LC_MESSAGES/kcm_about-distro.mo share/locale/uk/LC_MESSAGES/kcm_cpu.mo share/locale/uk/LC_MESSAGES/kcm_energyinfo.mo share/locale/uk/LC_MESSAGES/kcm_interrupts.mo share/locale/uk/LC_MESSAGES/kcm_memory.mo share/locale/uk/LC_MESSAGES/kcm_nic.mo share/locale/uk/LC_MESSAGES/kcm_pci.mo share/locale/uk/LC_MESSAGES/kcm_vulkan.mo share/locale/uk/LC_MESSAGES/kcm_wayland.mo share/locale/uk/LC_MESSAGES/kcmdevinfo.mo share/locale/uk/LC_MESSAGES/kcminfo.mo share/locale/uk/LC_MESSAGES/kcmopengl.mo share/locale/uk/LC_MESSAGES/kcmsamba.mo share/locale/uk/LC_MESSAGES/kcmusb.mo share/locale/uk/LC_MESSAGES/kcmview1394.mo share/locale/uk/LC_MESSAGES/kinfocenter.mo share/locale/uz/LC_MESSAGES/kcminfo.mo share/locale/uz/LC_MESSAGES/kcmsamba.mo share/locale/uz/LC_MESSAGES/kcmusb.mo share/locale/uz/LC_MESSAGES/kcmview1394.mo share/locale/uz/LC_MESSAGES/kinfocenter.mo share/locale/uz@cyrillic/LC_MESSAGES/kcminfo.mo share/locale/uz@cyrillic/LC_MESSAGES/kcmsamba.mo share/locale/uz@cyrillic/LC_MESSAGES/kcmusb.mo share/locale/uz@cyrillic/LC_MESSAGES/kcmview1394.mo share/locale/uz@cyrillic/LC_MESSAGES/kinfocenter.mo share/locale/vi/LC_MESSAGES/kcm_about-distro.mo share/locale/vi/LC_MESSAGES/kcm_cpu.mo share/locale/vi/LC_MESSAGES/kcm_energyinfo.mo share/locale/vi/LC_MESSAGES/kcm_interrupts.mo share/locale/vi/LC_MESSAGES/kcm_memory.mo share/locale/vi/LC_MESSAGES/kcm_nic.mo share/locale/vi/LC_MESSAGES/kcm_pci.mo share/locale/vi/LC_MESSAGES/kcm_vulkan.mo share/locale/vi/LC_MESSAGES/kcm_wayland.mo share/locale/vi/LC_MESSAGES/kcmdevinfo.mo share/locale/vi/LC_MESSAGES/kcminfo.mo share/locale/vi/LC_MESSAGES/kcmopengl.mo share/locale/vi/LC_MESSAGES/kcmsamba.mo share/locale/vi/LC_MESSAGES/kcmusb.mo share/locale/vi/LC_MESSAGES/kcmview1394.mo share/locale/vi/LC_MESSAGES/kinfocenter.mo share/locale/wa/LC_MESSAGES/kcm_memory.mo share/locale/wa/LC_MESSAGES/kcm_nic.mo share/locale/wa/LC_MESSAGES/kcm_pci.mo share/locale/wa/LC_MESSAGES/kcmdevinfo.mo share/locale/wa/LC_MESSAGES/kcminfo.mo share/locale/wa/LC_MESSAGES/kcmopengl.mo share/locale/wa/LC_MESSAGES/kcmsamba.mo share/locale/wa/LC_MESSAGES/kcmusb.mo share/locale/wa/LC_MESSAGES/kcmview1394.mo share/locale/wa/LC_MESSAGES/kinfocenter.mo share/locale/xh/LC_MESSAGES/kcminfo.mo share/locale/xh/LC_MESSAGES/kcmsamba.mo share/locale/xh/LC_MESSAGES/kcmusb.mo share/locale/xh/LC_MESSAGES/kinfocenter.mo share/locale/zh_CN/LC_MESSAGES/kcm_about-distro.mo share/locale/zh_CN/LC_MESSAGES/kcm_cpu.mo share/locale/zh_CN/LC_MESSAGES/kcm_energyinfo.mo share/locale/zh_CN/LC_MESSAGES/kcm_interrupts.mo share/locale/zh_CN/LC_MESSAGES/kcm_memory.mo share/locale/zh_CN/LC_MESSAGES/kcm_nic.mo share/locale/zh_CN/LC_MESSAGES/kcm_pci.mo share/locale/zh_CN/LC_MESSAGES/kcm_vulkan.mo share/locale/zh_CN/LC_MESSAGES/kcm_wayland.mo share/locale/zh_CN/LC_MESSAGES/kcmdevinfo.mo share/locale/zh_CN/LC_MESSAGES/kcminfo.mo share/locale/zh_CN/LC_MESSAGES/kcmopengl.mo share/locale/zh_CN/LC_MESSAGES/kcmsamba.mo share/locale/zh_CN/LC_MESSAGES/kcmusb.mo share/locale/zh_CN/LC_MESSAGES/kcmview1394.mo share/locale/zh_CN/LC_MESSAGES/kinfocenter.mo share/locale/zh_TW/LC_MESSAGES/kcm_about-distro.mo share/locale/zh_TW/LC_MESSAGES/kcm_energyinfo.mo share/locale/zh_TW/LC_MESSAGES/kcm_memory.mo share/locale/zh_TW/LC_MESSAGES/kcm_nic.mo share/locale/zh_TW/LC_MESSAGES/kcm_pci.mo share/locale/zh_TW/LC_MESSAGES/kcmdevinfo.mo share/locale/zh_TW/LC_MESSAGES/kcminfo.mo share/locale/zh_TW/LC_MESSAGES/kcmopengl.mo share/locale/zh_TW/LC_MESSAGES/kcmsamba.mo share/locale/zh_TW/LC_MESSAGES/kcmusb.mo share/locale/zh_TW/LC_MESSAGES/kcmview1394.mo share/locale/zh_TW/LC_MESSAGES/kinfocenter.mo share/metainfo/org.kde.kinfocenter.appdata.xml diff --git a/sysutils/plasma5-kmenuedit/distinfo b/sysutils/plasma5-kmenuedit/distinfo index ec69c8b22b4c..dc98a3515369 100644 --- a/sysutils/plasma5-kmenuedit/distinfo +++ b/sysutils/plasma5-kmenuedit/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1633639909 -SHA256 (KDE/plasma/5.23.0/kmenuedit-5.23.0.tar.xz) = b25053d24eb9e8a9f79dcc65bab742de6c027ee28f1b9344ddf94ffcfb370e6e -SIZE (KDE/plasma/5.23.0/kmenuedit-5.23.0.tar.xz) = 900628 +TIMESTAMP = 1634665924 +SHA256 (KDE/plasma/5.23.1/kmenuedit-5.23.1.tar.xz) = f34227aba3af95ac1d24b00cb587590490c4b9b9ca83d0c66d302ea74eaf9188 +SIZE (KDE/plasma/5.23.1/kmenuedit-5.23.1.tar.xz) = 900596 diff --git a/sysutils/plasma5-ksystemstats/distinfo b/sysutils/plasma5-ksystemstats/distinfo index 79c7e840286f..ac88d9bc03e8 100644 --- a/sysutils/plasma5-ksystemstats/distinfo +++ b/sysutils/plasma5-ksystemstats/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1634224409 -SHA256 (KDE/plasma/5.23.0/ksystemstats-5.23.0.tar.xz) = a58d9ddc472bbd61582e7dd76404c99141da12cdea9aaef7f31860808cbcadeb -SIZE (KDE/plasma/5.23.0/ksystemstats-5.23.0.tar.xz) = 90464 +TIMESTAMP = 1634665926 +SHA256 (KDE/plasma/5.23.1/ksystemstats-5.23.1.tar.xz) = e603659096d6f1da02dd8aa68f7ed211c0ce84f49450c8d769e567480f786a7e +SIZE (KDE/plasma/5.23.1/ksystemstats-5.23.1.tar.xz) = 90488 diff --git a/sysutils/plasma5-libksysguard/distinfo b/sysutils/plasma5-libksysguard/distinfo index 327406f1c6ca..580539220da1 100644 --- a/sysutils/plasma5-libksysguard/distinfo +++ b/sysutils/plasma5-libksysguard/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1633639912 -SHA256 (KDE/plasma/5.23.0/libksysguard-5.23.0.tar.xz) = c379dc3e806085ec058e7633153d697ab8868aa6eac1f483931f75f2fcdd61eb -SIZE (KDE/plasma/5.23.0/libksysguard-5.23.0.tar.xz) = 768820 +TIMESTAMP = 1634665927 +SHA256 (KDE/plasma/5.23.1/libksysguard-5.23.1.tar.xz) = 083ddf436a9678e6e3d9c900d2c974586a313e58f60a32b7cb6600338ec78189 +SIZE (KDE/plasma/5.23.1/libksysguard-5.23.1.tar.xz) = 768928 diff --git a/sysutils/plasma5-libksysguard/pkg-plist b/sysutils/plasma5-libksysguard/pkg-plist index c41264d25b82..59facc79e437 100644 --- a/sysutils/plasma5-libksysguard/pkg-plist +++ b/sysutils/plasma5-libksysguard/pkg-plist @@ -1,635 +1,636 @@ 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/ksignalplotter.h include/ksysguard/lsof.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/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/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/KF5SysGuard/KF5SysGuardConfig.cmake 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.1 lib/libKSysGuardFormatter.so.%%KDE_PLASMA_VERSION%% lib/libKSysGuardSensorFaces.so lib/libKSysGuardSensorFaces.so.1 lib/libKSysGuardSensorFaces.so.%%KDE_PLASMA_VERSION%% lib/libKSysGuardSensors.so lib/libKSysGuardSensors.so.1 lib/libKSysGuardSensors.so.%%KDE_PLASMA_VERSION%% lib/libKSysGuardSystemStats.so lib/libKSysGuardSystemStats.so.1 lib/libKSysGuardSystemStats.so.%%KDE_PLASMA_VERSION%% lib/libexec/kauth/ksysguardprocesslist_helper lib/libksgrd.so lib/libksgrd.so.%%KDE_PLASMA_VERSION%% lib/libksgrd.so.9 lib/libksignalplotter.so lib/libksignalplotter.so.%%KDE_PLASMA_VERSION%% lib/libksignalplotter.so.9 lib/liblsofui.so lib/liblsofui.so.%%KDE_PLASMA_VERSION%% lib/liblsofui.so.9 lib/libprocesscore.so lib/libprocesscore.so.%%KDE_PLASMA_VERSION%% lib/libprocesscore.so.9 lib/libprocessui.so lib/libprocessui.so.%%KDE_PLASMA_VERSION%% lib/libprocessui.so.9 %%QT_PLUGINDIR%%/designer/ksignalplotter5widgets.so %%QT_PLUGINDIR%%/designer/ksysguard5widgets.so %%QT_PLUGINDIR%%/designer/ksysguardlsof5widgets.so %%QT_PLUGINDIR%%/kpackage/packagestructure/sensorface_packagestructure.so %%QT_PLUGINDIR%%/ksysguard/process/ksysguard_plugin_nvidia.so %%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/scripts/smaps/helper.js share/ksysguard/scripts/smaps/index.html share/ksysguard/scripts/smaps/main.js share/ksysguard/scripts/smaps/smaps.desktop share/ksysguard/scripts/smaps/sorttable.js share/ksysguard/scripts/smaps/style.css share/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.desktop share/ksysguard/sensorfaces/org.kde.ksysguard.barchart/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.desktop 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.desktop 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.desktop 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.desktop 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.desktop share/ksysguard/sensorfaces/org.kde.ksysguard.textonly/metadata.json share/locale/ar/LC_MESSAGES/ksgrd.mo share/locale/ar/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/ar/LC_MESSAGES/processcore.mo share/locale/ar/LC_MESSAGES/processui.mo share/locale/as/LC_MESSAGES/processui.mo share/locale/ast/LC_MESSAGES/processcore.mo share/locale/ast/LC_MESSAGES/processui.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.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_plugins_process.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/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/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.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_plugins_process.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/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.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_plugins_process.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/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.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_plugins_process.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/ksysguard_plugins_process.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/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.linechart.mo share/locale/de/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/de/LC_MESSAGES/ksysguard_plugins_process.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/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.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_plugins_process.mo share/locale/en_GB/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/en_GB/LC_MESSAGES/processcore.mo share/locale/en_GB/LC_MESSAGES/processui.mo share/locale/eo/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/eo/LC_MESSAGES/processcore.mo share/locale/eo/LC_MESSAGES/processui.mo share/locale/es/LC_MESSAGES/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.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_plugins_process.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/ksysguard_plugins_process.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/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.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_plugins_process.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/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.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_plugins_process.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/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.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_plugins_process.mo share/locale/fr/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/fr/LC_MESSAGES/processcore.mo share/locale/fr/LC_MESSAGES/processui.mo share/locale/fy/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/fy/LC_MESSAGES/processcore.mo share/locale/fy/LC_MESSAGES/processui.mo share/locale/ga/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/ga/LC_MESSAGES/processcore.mo share/locale/ga/LC_MESSAGES/processui.mo share/locale/gl/LC_MESSAGES/ksgrd.mo share/locale/gl/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/gl/LC_MESSAGES/processcore.mo share/locale/gl/LC_MESSAGES/processui.mo share/locale/gu/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/gu/LC_MESSAGES/processcore.mo share/locale/gu/LC_MESSAGES/processui.mo share/locale/he/LC_MESSAGES/ksgrd.mo share/locale/he/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/he/LC_MESSAGES/processcore.mo share/locale/he/LC_MESSAGES/processui.mo share/locale/hi/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/hi/LC_MESSAGES/processcore.mo share/locale/hi/LC_MESSAGES/processui.mo share/locale/hne/LC_MESSAGES/processcore.mo share/locale/hr/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/hr/LC_MESSAGES/processcore.mo share/locale/hr/LC_MESSAGES/processui.mo share/locale/hsb/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/hsb/LC_MESSAGES/processcore.mo share/locale/hsb/LC_MESSAGES/processui.mo share/locale/hu/LC_MESSAGES/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/ksysguard_plugins_process.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/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.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_plugins_process.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/ksysguard_plugins_process.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/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.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_plugins_process.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/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.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_plugins_process.mo share/locale/ja/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/ja/LC_MESSAGES/processcore.mo share/locale/ja/LC_MESSAGES/processui.mo share/locale/kk/LC_MESSAGES/ksgrd.mo share/locale/kk/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/kk/LC_MESSAGES/processcore.mo share/locale/kk/LC_MESSAGES/processui.mo share/locale/km/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/km/LC_MESSAGES/processcore.mo share/locale/km/LC_MESSAGES/processui.mo share/locale/kn/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/ko/LC_MESSAGES/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.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_plugins_process.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/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.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_plugins_process.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/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.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_plugins_process.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/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.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_plugins_process.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/pa/LC_MESSAGES/ksgrd.mo share/locale/pa/LC_MESSAGES/ksysguard_plugins_process.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/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.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_plugins_process.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/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.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_plugins_process.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/ksysguard_plugins_process.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.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/ksysguard_plugins_process.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.linechart.mo share/locale/ru/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/ru/LC_MESSAGES/ksysguard_plugins_process.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/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.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_plugins_process.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/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.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_plugins_process.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_plugins_process.mo share/locale/sv/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/sv/LC_MESSAGES/processcore.mo share/locale/sv/LC_MESSAGES/processui.mo share/locale/ta/LC_MESSAGES/processcore.mo share/locale/ta/LC_MESSAGES/processui.mo share/locale/te/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/te/LC_MESSAGES/processcore.mo share/locale/te/LC_MESSAGES/processui.mo share/locale/tg/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/tg/LC_MESSAGES/processcore.mo share/locale/tg/LC_MESSAGES/processui.mo share/locale/th/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/th/LC_MESSAGES/processcore.mo share/locale/th/LC_MESSAGES/processui.mo share/locale/tr/LC_MESSAGES/ksgrd.mo share/locale/tr/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/tr/LC_MESSAGES/processcore.mo share/locale/tr/LC_MESSAGES/processui.mo share/locale/ug/LC_MESSAGES/ksgrd.mo share/locale/ug/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/ug/LC_MESSAGES/processcore.mo share/locale/ug/LC_MESSAGES/processui.mo share/locale/uk/LC_MESSAGES/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.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_plugins_process.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_plugins_process.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/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.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_plugins_process.mo share/locale/zh_CN/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/zh_CN/LC_MESSAGES/processcore.mo share/locale/zh_CN/LC_MESSAGES/processui.mo share/locale/zh_TW/LC_MESSAGES/ksgrd.mo share/locale/zh_TW/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/zh_TW/LC_MESSAGES/processcore.mo share/locale/zh_TW/LC_MESSAGES/processui.mo share/polkit-1/actions/org.kde.ksysguard.processlisthelper.policy share/qlogging-categories5/libksysguard.categories diff --git a/sysutils/plasma5-plasma-disks/distinfo b/sysutils/plasma5-plasma-disks/distinfo index 21774f66f58e..58fe05d6e7f2 100644 --- a/sysutils/plasma5-plasma-disks/distinfo +++ b/sysutils/plasma5-plasma-disks/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1633639913 -SHA256 (KDE/plasma/5.23.0/plasma-disks-5.23.0.tar.xz) = fd8ae722541711d1f2bf6284df5ec5c68a116d175e7d53c10d2ced5c4e8e8c6f -SIZE (KDE/plasma/5.23.0/plasma-disks-5.23.0.tar.xz) = 86640 +TIMESTAMP = 1634665928 +SHA256 (KDE/plasma/5.23.1/plasma-disks-5.23.1.tar.xz) = b83b021f43f3b7736fc0908dae7efd5526474879f03e340eb13441f2dbd39a85 +SIZE (KDE/plasma/5.23.1/plasma-disks-5.23.1.tar.xz) = 86624 diff --git a/sysutils/plasma5-plasma-systemmonitor/distinfo b/sysutils/plasma5-plasma-systemmonitor/distinfo index 5b0081398efa..c88f45babe98 100644 --- a/sysutils/plasma5-plasma-systemmonitor/distinfo +++ b/sysutils/plasma5-plasma-systemmonitor/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1633639913 -SHA256 (KDE/plasma/5.23.0/plasma-systemmonitor-5.23.0.tar.xz) = 5c4c5f200ee75544db076be2da27a422387faf6c6e5163b63966626970a090d2 -SIZE (KDE/plasma/5.23.0/plasma-systemmonitor-5.23.0.tar.xz) = 144672 +TIMESTAMP = 1634665930 +SHA256 (KDE/plasma/5.23.1/plasma-systemmonitor-5.23.1.tar.xz) = c8212484044840119f939ff2fcacea6a3d02c25a171a75c68145cf88be9c19cf +SIZE (KDE/plasma/5.23.1/plasma-systemmonitor-5.23.1.tar.xz) = 144716 diff --git a/sysutils/plasma5-polkit-kde-agent-1/distinfo b/sysutils/plasma5-polkit-kde-agent-1/distinfo index a8a608ed5a9a..b4cf42cb193b 100644 --- a/sysutils/plasma5-polkit-kde-agent-1/distinfo +++ b/sysutils/plasma5-polkit-kde-agent-1/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1633639914 -SHA256 (KDE/plasma/5.23.0/polkit-kde-agent-1-5.23.0.tar.xz) = 22d08e3989acf9ff92312b754c897d5323c6cf638e2fc12c22439924bce19cae -SIZE (KDE/plasma/5.23.0/polkit-kde-agent-1-5.23.0.tar.xz) = 47556 +TIMESTAMP = 1634665931 +SHA256 (KDE/plasma/5.23.1/polkit-kde-agent-1-5.23.1.tar.xz) = 416617237e045567daf830e23c0d3f32f3b4d9891e9a61888f735f494ccbf529 +SIZE (KDE/plasma/5.23.1/polkit-kde-agent-1-5.23.1.tar.xz) = 47548 diff --git a/sysutils/plasma5-powerdevil/distinfo b/sysutils/plasma5-powerdevil/distinfo index 6cb90a17b976..4b8f67ae9b13 100644 --- a/sysutils/plasma5-powerdevil/distinfo +++ b/sysutils/plasma5-powerdevil/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1633639915 -SHA256 (KDE/plasma/5.23.0/powerdevil-5.23.0.tar.xz) = 06bb0a69faeb9991dec4a752b1f3b1798ff9bb0aa6a201d0c6615e176153504b -SIZE (KDE/plasma/5.23.0/powerdevil-5.23.0.tar.xz) = 627508 +TIMESTAMP = 1634665932 +SHA256 (KDE/plasma/5.23.1/powerdevil-5.23.1.tar.xz) = 721a5938d6cb0439943fa912b9f360b9b563a91ceff138869636f2ef45edc096 +SIZE (KDE/plasma/5.23.1/powerdevil-5.23.1.tar.xz) = 627656 diff --git a/sysutils/plasma5-systemsettings/distinfo b/sysutils/plasma5-systemsettings/distinfo index 3b7fce588690..7c78c50662db 100644 --- a/sysutils/plasma5-systemsettings/distinfo +++ b/sysutils/plasma5-systemsettings/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1633639916 -SHA256 (KDE/plasma/5.23.0/systemsettings-5.23.0.tar.xz) = 0b925472ec68a6e184ec4e044d1df7f406713847c0fd7b28e94ba88adadf388d -SIZE (KDE/plasma/5.23.0/systemsettings-5.23.0.tar.xz) = 203664 +TIMESTAMP = 1634665933 +SHA256 (KDE/plasma/5.23.1/systemsettings-5.23.1.tar.xz) = 7cd451319125c7b56c6f13c65462136179c39f607cc4d4e66b90079a72df6e54 +SIZE (KDE/plasma/5.23.1/systemsettings-5.23.1.tar.xz) = 203448 diff --git a/www/plasma5-plasma-browser-integration/distinfo b/www/plasma5-plasma-browser-integration/distinfo index e6ce5ac1a1dd..1ecf8183e0d8 100644 --- a/www/plasma5-plasma-browser-integration/distinfo +++ b/www/plasma5-plasma-browser-integration/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1633639917 -SHA256 (KDE/plasma/5.23.0/plasma-browser-integration-5.23.0.tar.xz) = 5cbf0c5e66de6f4ca21ff943004b4329ff1a3a4a6bb304633b990905ea77ea5e -SIZE (KDE/plasma/5.23.0/plasma-browser-integration-5.23.0.tar.xz) = 219600 +TIMESTAMP = 1634665934 +SHA256 (KDE/plasma/5.23.1/plasma-browser-integration-5.23.1.tar.xz) = dd6477ffd0eddb70086fbf3e9c8f63845f6d552a06c22fb32846be068cf74af9 +SIZE (KDE/plasma/5.23.1/plasma-browser-integration-5.23.1.tar.xz) = 219568 diff --git a/x11-themes/plasma5-breeze-gtk/distinfo b/x11-themes/plasma5-breeze-gtk/distinfo index 0ca4df34a654..97c92bdc4236 100644 --- a/x11-themes/plasma5-breeze-gtk/distinfo +++ b/x11-themes/plasma5-breeze-gtk/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1633639919 -SHA256 (KDE/plasma/5.23.0/breeze-gtk-5.23.0.tar.xz) = 92eb49ba2e2144f8dfce970e4766e372d7e3448e46e22e742f3acb663df2a0d5 -SIZE (KDE/plasma/5.23.0/breeze-gtk-5.23.0.tar.xz) = 47608 +TIMESTAMP = 1634665938 +SHA256 (KDE/plasma/5.23.1/breeze-gtk-5.23.1.tar.xz) = 50667357732aced49eec270e875546bf56a4e3a945d575c2d95a946aa055d287 +SIZE (KDE/plasma/5.23.1/breeze-gtk-5.23.1.tar.xz) = 47604 diff --git a/x11-themes/plasma5-breeze/distinfo b/x11-themes/plasma5-breeze/distinfo index d43aa1cc869b..db82ab349209 100644 --- a/x11-themes/plasma5-breeze/distinfo +++ b/x11-themes/plasma5-breeze/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1634224400 -SHA256 (KDE/plasma/5.23.0/breeze-5.23.0.tar.xz) = 2003f168b3d60f5897486d9582631f75da7f0dc2625e9c4cddd9aa3d706bfd9e -SIZE (KDE/plasma/5.23.0/breeze-5.23.0.tar.xz) = 73812392 +TIMESTAMP = 1634665937 +SHA256 (KDE/plasma/5.23.1/breeze-5.23.1.tar.xz) = ac11dc5f9347d870cbe33f2452bbc738e92e9d3dfc2dc8c2f5c0896476181481 +SIZE (KDE/plasma/5.23.1/breeze-5.23.1.tar.xz) = 73815804 diff --git a/x11-themes/plasma5-breeze/pkg-plist b/x11-themes/plasma5-breeze/pkg-plist index 6270fbda1839..12da5cd215ae 100644 --- a/x11-themes/plasma5-breeze/pkg-plist +++ b/x11-themes/plasma5-breeze/pkg-plist @@ -1,369 +1,369 @@ bin/breeze-settings5 lib/cmake/Breeze/BreezeConfig.cmake lib/cmake/Breeze/BreezeConfigVersion.cmake lib/kconf_update_bin/breezetobreezelight lib/kconf_update_bin/kde4breeze -lib/libbreezecommon5.so.%%KDE_PLASMA_VERSION%% +lib/libbreezecommon5.so.5.23.0 lib/libbreezecommon5.so.5 %%QT_PLUGINDIR%%/kstyle_breeze_config.so %%QT_PLUGINDIR%%/org.kde.kdecoration2/breezedecoration.so %%QT_PLUGINDIR%%/styles/breeze.so share/QtCurve/Breeze.qtcurve share/color-schemes/Breeze.colors share/color-schemes/BreezeDark.colors share/color-schemes/BreezeHighContrast.colors share/color-schemes/BreezeLight.colors share/icons/Breeze_Snow/cursors/00000000000000020006000e7e9ffc3f share/icons/Breeze_Snow/cursors/00008160000006810000408080010102 share/icons/Breeze_Snow/cursors/03b6e0fcb3499374a867c041f52298f0 share/icons/Breeze_Snow/cursors/08e8e1c95fe2fc01f976f1e063a24ccd share/icons/Breeze_Snow/cursors/1081e37283d90000800003c07f3ef6bf share/icons/Breeze_Snow/cursors/3085a0e285430894940527032f8b26df share/icons/Breeze_Snow/cursors/3ecb610c1bf2410f44200f48c40d3599 share/icons/Breeze_Snow/cursors/4498f0e0c1937ffe01fd06f973665830 share/icons/Breeze_Snow/cursors/5c6cd98b3f3ebcb1f9c7f1c204630408 share/icons/Breeze_Snow/cursors/6407b0e94181790501fd1e167b474872 share/icons/Breeze_Snow/cursors/640fb0e74195791501fd1ed57b41487f share/icons/Breeze_Snow/cursors/9081237383d90e509aa00f00170e968f share/icons/Breeze_Snow/cursors/9d800788f1b08800ae810202380a0822 share/icons/Breeze_Snow/cursors/a2a266d0498c3104214a47bd64ab0fc8 share/icons/Breeze_Snow/cursors/alias share/icons/Breeze_Snow/cursors/all-scroll share/icons/Breeze_Snow/cursors/arrow share/icons/Breeze_Snow/cursors/b66166c04f8c3109214a4fbd64a50fc8 share/icons/Breeze_Snow/cursors/bottom_left_corner share/icons/Breeze_Snow/cursors/bottom_right_corner share/icons/Breeze_Snow/cursors/bottom_side share/icons/Breeze_Snow/cursors/cell share/icons/Breeze_Snow/cursors/center_ptr share/icons/Breeze_Snow/cursors/circle share/icons/Breeze_Snow/cursors/closedhand share/icons/Breeze_Snow/cursors/col-resize share/icons/Breeze_Snow/cursors/color-picker share/icons/Breeze_Snow/cursors/context-menu share/icons/Breeze_Snow/cursors/copy share/icons/Breeze_Snow/cursors/cross share/icons/Breeze_Snow/cursors/crossed_circle share/icons/Breeze_Snow/cursors/crosshair share/icons/Breeze_Snow/cursors/d9ce0ab605698f320427677b458ad60b share/icons/Breeze_Snow/cursors/default share/icons/Breeze_Snow/cursors/dnd-copy share/icons/Breeze_Snow/cursors/dnd-move share/icons/Breeze_Snow/cursors/dnd-no-drop share/icons/Breeze_Snow/cursors/dnd-none share/icons/Breeze_Snow/cursors/down-arrow share/icons/Breeze_Snow/cursors/draft share/icons/Breeze_Snow/cursors/e-resize share/icons/Breeze_Snow/cursors/e29285e634086352946a0e7090d73106 share/icons/Breeze_Snow/cursors/ew-resize share/icons/Breeze_Snow/cursors/fcf21c00b30f7e3f83fe0dfd12e71cff share/icons/Breeze_Snow/cursors/fleur share/icons/Breeze_Snow/cursors/forbidden share/icons/Breeze_Snow/cursors/grab share/icons/Breeze_Snow/cursors/grabbing share/icons/Breeze_Snow/cursors/h_double_arrow share/icons/Breeze_Snow/cursors/half-busy share/icons/Breeze_Snow/cursors/hand1 share/icons/Breeze_Snow/cursors/hand2 share/icons/Breeze_Snow/cursors/help share/icons/Breeze_Snow/cursors/ibeam share/icons/Breeze_Snow/cursors/left-arrow share/icons/Breeze_Snow/cursors/left_ptr share/icons/Breeze_Snow/cursors/left_ptr_help share/icons/Breeze_Snow/cursors/left_ptr_watch share/icons/Breeze_Snow/cursors/left_side share/icons/Breeze_Snow/cursors/link share/icons/Breeze_Snow/cursors/move share/icons/Breeze_Snow/cursors/n-resize share/icons/Breeze_Snow/cursors/ne-resize share/icons/Breeze_Snow/cursors/nesw-resize share/icons/Breeze_Snow/cursors/no-drop share/icons/Breeze_Snow/cursors/not-allowed share/icons/Breeze_Snow/cursors/ns-resize share/icons/Breeze_Snow/cursors/nw-resize share/icons/Breeze_Snow/cursors/nwse-resize share/icons/Breeze_Snow/cursors/openhand share/icons/Breeze_Snow/cursors/pencil share/icons/Breeze_Snow/cursors/pirate share/icons/Breeze_Snow/cursors/plus share/icons/Breeze_Snow/cursors/pointer share/icons/Breeze_Snow/cursors/pointing_hand share/icons/Breeze_Snow/cursors/progress share/icons/Breeze_Snow/cursors/question_arrow share/icons/Breeze_Snow/cursors/right-arrow share/icons/Breeze_Snow/cursors/right_ptr share/icons/Breeze_Snow/cursors/right_side share/icons/Breeze_Snow/cursors/row-resize share/icons/Breeze_Snow/cursors/s-resize share/icons/Breeze_Snow/cursors/sb_h_double_arrow share/icons/Breeze_Snow/cursors/sb_v_double_arrow share/icons/Breeze_Snow/cursors/se-resize share/icons/Breeze_Snow/cursors/size-bdiag share/icons/Breeze_Snow/cursors/size-fdiag share/icons/Breeze_Snow/cursors/size-hor share/icons/Breeze_Snow/cursors/size-ver share/icons/Breeze_Snow/cursors/size_all share/icons/Breeze_Snow/cursors/size_bdiag share/icons/Breeze_Snow/cursors/size_fdiag share/icons/Breeze_Snow/cursors/size_hor share/icons/Breeze_Snow/cursors/size_ver share/icons/Breeze_Snow/cursors/split_h share/icons/Breeze_Snow/cursors/split_v share/icons/Breeze_Snow/cursors/sw-resize share/icons/Breeze_Snow/cursors/text share/icons/Breeze_Snow/cursors/top_left_arrow share/icons/Breeze_Snow/cursors/top_left_corner share/icons/Breeze_Snow/cursors/top_right_corner share/icons/Breeze_Snow/cursors/top_side share/icons/Breeze_Snow/cursors/up-arrow share/icons/Breeze_Snow/cursors/v_double_arrow share/icons/Breeze_Snow/cursors/vertical-text share/icons/Breeze_Snow/cursors/w-resize share/icons/Breeze_Snow/cursors/wait share/icons/Breeze_Snow/cursors/watch share/icons/Breeze_Snow/cursors/wayland-cursor share/icons/Breeze_Snow/cursors/whats_this share/icons/Breeze_Snow/cursors/x-cursor share/icons/Breeze_Snow/cursors/xterm share/icons/Breeze_Snow/cursors/zoom-in share/icons/Breeze_Snow/cursors/zoom-out share/icons/Breeze_Snow/index.theme share/icons/breeze_cursors/cursors/00000000000000020006000e7e9ffc3f share/icons/breeze_cursors/cursors/00008160000006810000408080010102 share/icons/breeze_cursors/cursors/03b6e0fcb3499374a867c041f52298f0 share/icons/breeze_cursors/cursors/08e8e1c95fe2fc01f976f1e063a24ccd share/icons/breeze_cursors/cursors/1081e37283d90000800003c07f3ef6bf share/icons/breeze_cursors/cursors/3085a0e285430894940527032f8b26df share/icons/breeze_cursors/cursors/3ecb610c1bf2410f44200f48c40d3599 share/icons/breeze_cursors/cursors/4498f0e0c1937ffe01fd06f973665830 share/icons/breeze_cursors/cursors/5c6cd98b3f3ebcb1f9c7f1c204630408 share/icons/breeze_cursors/cursors/6407b0e94181790501fd1e167b474872 share/icons/breeze_cursors/cursors/640fb0e74195791501fd1ed57b41487f share/icons/breeze_cursors/cursors/9081237383d90e509aa00f00170e968f share/icons/breeze_cursors/cursors/9d800788f1b08800ae810202380a0822 share/icons/breeze_cursors/cursors/a2a266d0498c3104214a47bd64ab0fc8 share/icons/breeze_cursors/cursors/alias share/icons/breeze_cursors/cursors/all-scroll share/icons/breeze_cursors/cursors/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/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/breezetobreezelight.upd share/kconf_update/kde4breeze.upd share/kservices5/breezedecorationconfig.desktop share/kservices5/breezestyleconfig.desktop share/kstyle/themes/breeze.themerc share/locale/ar/LC_MESSAGES/breeze_kwin_deco.mo share/locale/ar/LC_MESSAGES/breeze_style_config.mo share/locale/az/LC_MESSAGES/breeze_kwin_deco.mo share/locale/az/LC_MESSAGES/breeze_style_config.mo share/locale/bs/LC_MESSAGES/breeze_kwin_deco.mo share/locale/bs/LC_MESSAGES/breeze_style_config.mo share/locale/ca/LC_MESSAGES/breeze_kwin_deco.mo share/locale/ca/LC_MESSAGES/breeze_style_config.mo share/locale/ca@valencia/LC_MESSAGES/breeze_kwin_deco.mo share/locale/ca@valencia/LC_MESSAGES/breeze_style_config.mo share/locale/cs/LC_MESSAGES/breeze_kwin_deco.mo share/locale/cs/LC_MESSAGES/breeze_style_config.mo share/locale/da/LC_MESSAGES/breeze_kwin_deco.mo share/locale/da/LC_MESSAGES/breeze_style_config.mo share/locale/de/LC_MESSAGES/breeze_kwin_deco.mo share/locale/de/LC_MESSAGES/breeze_style_config.mo share/locale/el/LC_MESSAGES/breeze_kwin_deco.mo share/locale/el/LC_MESSAGES/breeze_style_config.mo share/locale/en_GB/LC_MESSAGES/breeze_kwin_deco.mo share/locale/en_GB/LC_MESSAGES/breeze_style_config.mo share/locale/es/LC_MESSAGES/breeze_kwin_deco.mo share/locale/es/LC_MESSAGES/breeze_style_config.mo share/locale/et/LC_MESSAGES/breeze_kwin_deco.mo share/locale/et/LC_MESSAGES/breeze_style_config.mo share/locale/eu/LC_MESSAGES/breeze_kwin_deco.mo share/locale/eu/LC_MESSAGES/breeze_style_config.mo share/locale/fi/LC_MESSAGES/breeze_kwin_deco.mo share/locale/fi/LC_MESSAGES/breeze_style_config.mo share/locale/fr/LC_MESSAGES/breeze_kwin_deco.mo share/locale/fr/LC_MESSAGES/breeze_style_config.mo share/locale/gl/LC_MESSAGES/breeze_kwin_deco.mo share/locale/gl/LC_MESSAGES/breeze_style_config.mo share/locale/he/LC_MESSAGES/breeze_kwin_deco.mo share/locale/he/LC_MESSAGES/breeze_style_config.mo share/locale/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/it/LC_MESSAGES/breeze_kwin_deco.mo share/locale/it/LC_MESSAGES/breeze_style_config.mo share/locale/ja/LC_MESSAGES/breeze_kwin_deco.mo share/locale/ja/LC_MESSAGES/breeze_style_config.mo share/locale/ko/LC_MESSAGES/breeze_kwin_deco.mo share/locale/ko/LC_MESSAGES/breeze_style_config.mo share/locale/lt/LC_MESSAGES/breeze_kwin_deco.mo share/locale/lt/LC_MESSAGES/breeze_style_config.mo share/locale/nb/LC_MESSAGES/breeze_kwin_deco.mo share/locale/nb/LC_MESSAGES/breeze_style_config.mo share/locale/nds/LC_MESSAGES/breeze_kwin_deco.mo share/locale/nds/LC_MESSAGES/breeze_style_config.mo share/locale/nl/LC_MESSAGES/breeze_kwin_deco.mo share/locale/nl/LC_MESSAGES/breeze_style_config.mo share/locale/nn/LC_MESSAGES/breeze_kwin_deco.mo share/locale/nn/LC_MESSAGES/breeze_style_config.mo share/locale/pa/LC_MESSAGES/breeze_kwin_deco.mo share/locale/pa/LC_MESSAGES/breeze_style_config.mo share/locale/pl/LC_MESSAGES/breeze_kwin_deco.mo share/locale/pl/LC_MESSAGES/breeze_style_config.mo share/locale/pt/LC_MESSAGES/breeze_kwin_deco.mo share/locale/pt/LC_MESSAGES/breeze_style_config.mo share/locale/pt_BR/LC_MESSAGES/breeze_kwin_deco.mo share/locale/pt_BR/LC_MESSAGES/breeze_style_config.mo share/locale/ro/LC_MESSAGES/breeze_kwin_deco.mo share/locale/ro/LC_MESSAGES/breeze_style_config.mo share/locale/ru/LC_MESSAGES/breeze_kwin_deco.mo share/locale/ru/LC_MESSAGES/breeze_style_config.mo share/locale/se/LC_MESSAGES/breeze_kwin_deco.mo share/locale/sk/LC_MESSAGES/breeze_kwin_deco.mo share/locale/sk/LC_MESSAGES/breeze_style_config.mo share/locale/sl/LC_MESSAGES/breeze_kwin_deco.mo share/locale/sl/LC_MESSAGES/breeze_style_config.mo share/locale/sr/LC_MESSAGES/breeze_kwin_deco.mo share/locale/sr/LC_MESSAGES/breeze_style_config.mo share/locale/sr@ijekavian/LC_MESSAGES/breeze_kwin_deco.mo share/locale/sr@ijekavian/LC_MESSAGES/breeze_style_config.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/breeze_kwin_deco.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/breeze_style_config.mo share/locale/sr@latin/LC_MESSAGES/breeze_kwin_deco.mo share/locale/sr@latin/LC_MESSAGES/breeze_style_config.mo share/locale/sv/LC_MESSAGES/breeze_kwin_deco.mo share/locale/sv/LC_MESSAGES/breeze_style_config.mo share/locale/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/base_size.png share/wallpapers/Next/contents/images/vertical_base_size.png share/wallpapers/Next/contents/screenshot.png share/wallpapers/Next/metadata.desktop diff --git a/x11-themes/plasma5-kde-gtk-config/distinfo b/x11-themes/plasma5-kde-gtk-config/distinfo index 566c62202e0b..70e528ff8a24 100644 --- a/x11-themes/plasma5-kde-gtk-config/distinfo +++ b/x11-themes/plasma5-kde-gtk-config/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1633639920 -SHA256 (KDE/plasma/5.23.0/kde-gtk-config-5.23.0.tar.xz) = 4684ea82a3877573811d6761395f8bf3252d8c7118082c96a70c79d9f9ee11b3 -SIZE (KDE/plasma/5.23.0/kde-gtk-config-5.23.0.tar.xz) = 71084 +TIMESTAMP = 1634665939 +SHA256 (KDE/plasma/5.23.1/kde-gtk-config-5.23.1.tar.xz) = 7dd978c591892052e79c19190fde98cca8a6e57da5a4bf72253262c36c36573c +SIZE (KDE/plasma/5.23.1/kde-gtk-config-5.23.1.tar.xz) = 71092 diff --git a/x11-themes/plasma5-oxygen/distinfo b/x11-themes/plasma5-oxygen/distinfo index 74e963335b4d..11fd557ff8b3 100644 --- a/x11-themes/plasma5-oxygen/distinfo +++ b/x11-themes/plasma5-oxygen/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1633639921 -SHA256 (KDE/plasma/5.23.0/oxygen-5.23.0.tar.xz) = 6c04ed2e5eca4d0dd82034875cd159dfd149ca412032258055f6a848ecbfe09e -SIZE (KDE/plasma/5.23.0/oxygen-5.23.0.tar.xz) = 4610508 +TIMESTAMP = 1634665941 +SHA256 (KDE/plasma/5.23.1/oxygen-5.23.1.tar.xz) = 2ea0ca8d889cc10f0d3c60217655b35b8417347243af9239a6b6998bb20bb237 +SIZE (KDE/plasma/5.23.1/oxygen-5.23.1.tar.xz) = 4610176 diff --git a/x11-themes/plasma5-plasma-workspace-wallpapers/distinfo b/x11-themes/plasma5-plasma-workspace-wallpapers/distinfo index 0a1e7de5582e..dc4af1bb4410 100644 --- a/x11-themes/plasma5-plasma-workspace-wallpapers/distinfo +++ b/x11-themes/plasma5-plasma-workspace-wallpapers/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1633639921 -SHA256 (KDE/plasma/5.23.0/plasma-workspace-wallpapers-5.23.0.tar.xz) = 424993551ed03c409c08e5067505a7df5f5adb81f6febf303fd763e6226a7394 -SIZE (KDE/plasma/5.23.0/plasma-workspace-wallpapers-5.23.0.tar.xz) = 57049140 +TIMESTAMP = 1634665943 +SHA256 (KDE/plasma/5.23.1/plasma-workspace-wallpapers-5.23.1.tar.xz) = fb26b880b60e893f08f51e17a845d6e252ce744441947e6e6119913689edf4aa +SIZE (KDE/plasma/5.23.1/plasma-workspace-wallpapers-5.23.1.tar.xz) = 57049044 diff --git a/x11-toolkits/plasma5-kdeplasma-addons/distinfo b/x11-toolkits/plasma5-kdeplasma-addons/distinfo index 94e1ac6d2e99..bec5eed4e848 100644 --- a/x11-toolkits/plasma5-kdeplasma-addons/distinfo +++ b/x11-toolkits/plasma5-kdeplasma-addons/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1633639922 -SHA256 (KDE/plasma/5.23.0/kdeplasma-addons-5.23.0.tar.xz) = 2f15f9e2c90f88f87377c0e7aff0b8645b02afcfb5518ef279865d60810f91b8 -SIZE (KDE/plasma/5.23.0/kdeplasma-addons-5.23.0.tar.xz) = 623404 +TIMESTAMP = 1634665944 +SHA256 (KDE/plasma/5.23.1/kdeplasma-addons-5.23.1.tar.xz) = 84ee5a39458f767cb0f1304bcffa556e99119b7d6ae7556b0c310c2284ccd988 +SIZE (KDE/plasma/5.23.1/kdeplasma-addons-5.23.1.tar.xz) = 627512 diff --git a/x11-wm/plasma5-kdecoration/distinfo b/x11-wm/plasma5-kdecoration/distinfo index b42704d71b40..df6663d841bf 100644 --- a/x11-wm/plasma5-kdecoration/distinfo +++ b/x11-wm/plasma5-kdecoration/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1633639923 -SHA256 (KDE/plasma/5.23.0/kdecoration-5.23.0.tar.xz) = b1b431bf14150ddf509c839dd6686df4dd0efa09b3b69b9f059d925ac8de90a9 -SIZE (KDE/plasma/5.23.0/kdecoration-5.23.0.tar.xz) = 47348 +TIMESTAMP = 1634665945 +SHA256 (KDE/plasma/5.23.1/kdecoration-5.23.1.tar.xz) = 1587aeab3743cb426318d4639e53b81c6227d114fc96b082b897cde6a2b0c327 +SIZE (KDE/plasma/5.23.1/kdecoration-5.23.1.tar.xz) = 47340 diff --git a/x11-wm/plasma5-kwin/distinfo b/x11-wm/plasma5-kwin/distinfo index cea6429a6bac..d9c446ec76c7 100644 --- a/x11-wm/plasma5-kwin/distinfo +++ b/x11-wm/plasma5-kwin/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1633639924 -SHA256 (KDE/plasma/5.23.0/kwin-5.23.0.tar.xz) = ba74f70648faa3c92c88e1b77916c6abd7fcad1af9e717a39dc9df278f1a551f -SIZE (KDE/plasma/5.23.0/kwin-5.23.0.tar.xz) = 6332960 +TIMESTAMP = 1634665947 +SHA256 (KDE/plasma/5.23.1/kwin-5.23.1.tar.xz) = 5838d7ab84babc5bd3cb3df9f7e38fc01c98ba1bf584b6d43e4528dd03598b31 +SIZE (KDE/plasma/5.23.1/kwin-5.23.1.tar.xz) = 6332136 diff --git a/x11/plasma5-kactivitymanagerd/distinfo b/x11/plasma5-kactivitymanagerd/distinfo index e06502f5e2d7..706597031465 100644 --- a/x11/plasma5-kactivitymanagerd/distinfo +++ b/x11/plasma5-kactivitymanagerd/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1633639925 -SHA256 (KDE/plasma/5.23.0/kactivitymanagerd-5.23.0.tar.xz) = 912cd9eded892e44c782fb615491f41df886107b7b33583034d75ff997154aa2 -SIZE (KDE/plasma/5.23.0/kactivitymanagerd-5.23.0.tar.xz) = 104324 +TIMESTAMP = 1634665948 +SHA256 (KDE/plasma/5.23.1/kactivitymanagerd-5.23.1.tar.xz) = eabc518b1476f17257c6f42c986611604903aa9efc42d35fd9d3fd15839fea09 +SIZE (KDE/plasma/5.23.1/kactivitymanagerd-5.23.1.tar.xz) = 104352 diff --git a/x11/plasma5-kgamma5/distinfo b/x11/plasma5-kgamma5/distinfo index 7ea97ecbd39d..3886793a8690 100644 --- a/x11/plasma5-kgamma5/distinfo +++ b/x11/plasma5-kgamma5/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1633639926 -SHA256 (KDE/plasma/5.23.0/kgamma5-5.23.0.tar.xz) = a31ff237c00814f46de7d6791a0b496f971a6f9b2467fb3534d643dc0e6190f4 -SIZE (KDE/plasma/5.23.0/kgamma5-5.23.0.tar.xz) = 83164 +TIMESTAMP = 1634665949 +SHA256 (KDE/plasma/5.23.1/kgamma5-5.23.1.tar.xz) = cf756d0ad3ae1803830372a2b1ce7c9e23533bd7aa4aa0ddc1a1d8fe60c3a585 +SIZE (KDE/plasma/5.23.1/kgamma5-5.23.1.tar.xz) = 83132 diff --git a/x11/plasma5-kscreen/distinfo b/x11/plasma5-kscreen/distinfo index bdea18319722..48bb61f56401 100644 --- a/x11/plasma5-kscreen/distinfo +++ b/x11/plasma5-kscreen/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1633639926 -SHA256 (KDE/plasma/5.23.0/kscreen-5.23.0.tar.xz) = 25ca9a2db37d7838462beb0b0bf3d21b89dea01a56e9b8b6df020ffcfe0cf83b -SIZE (KDE/plasma/5.23.0/kscreen-5.23.0.tar.xz) = 131828 +TIMESTAMP = 1634665950 +SHA256 (KDE/plasma/5.23.1/kscreen-5.23.1.tar.xz) = af143f2d3b25478437ff894b0afe094a69df8dab055bba3c6311d0735f431fc9 +SIZE (KDE/plasma/5.23.1/kscreen-5.23.1.tar.xz) = 132136 diff --git a/x11/plasma5-kwayland-integration/distinfo b/x11/plasma5-kwayland-integration/distinfo index d9b1facbb932..48984a174292 100644 --- a/x11/plasma5-kwayland-integration/distinfo +++ b/x11/plasma5-kwayland-integration/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1633639927 -SHA256 (KDE/plasma/5.23.0/kwayland-integration-5.23.0.tar.xz) = 07e68dafbc92f2906fb6df051d715bc34df369bcf5a476af282c1e3d9a5e4acd -SIZE (KDE/plasma/5.23.0/kwayland-integration-5.23.0.tar.xz) = 24164 +TIMESTAMP = 1634665951 +SHA256 (KDE/plasma/5.23.1/kwayland-integration-5.23.1.tar.xz) = f73510f65bff5dac0b9eb1715af58f7a95f312a9dbe816d853e78a9539c10d6a +SIZE (KDE/plasma/5.23.1/kwayland-integration-5.23.1.tar.xz) = 24176 diff --git a/x11/plasma5-kwayland-server/distinfo b/x11/plasma5-kwayland-server/distinfo index c2990209cd34..884f919c1f22 100644 --- a/x11/plasma5-kwayland-server/distinfo +++ b/x11/plasma5-kwayland-server/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1633639928 -SHA256 (KDE/plasma/5.23.0/kwayland-server-5.23.0.tar.xz) = 3009d7249af74582afa89978d478eece3424e5ef225bdb6f40032e2a6471d671 -SIZE (KDE/plasma/5.23.0/kwayland-server-5.23.0.tar.xz) = 217592 +TIMESTAMP = 1634665952 +SHA256 (KDE/plasma/5.23.1/kwayland-server-5.23.1.tar.xz) = ebad1a6dc1bf246cab9ca8ba0a13edd578646cb333ce09303d79d78727a59d57 +SIZE (KDE/plasma/5.23.1/kwayland-server-5.23.1.tar.xz) = 217548 diff --git a/x11/plasma5-layer-shell-qt/distinfo b/x11/plasma5-layer-shell-qt/distinfo index 7bb83755ffa3..2ed2e0a6e9ba 100644 --- a/x11/plasma5-layer-shell-qt/distinfo +++ b/x11/plasma5-layer-shell-qt/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1633639929 -SHA256 (KDE/plasma/5.23.0/layer-shell-qt-5.23.0.tar.xz) = f71377ad9e44e12005233b2309e37f00f8a469d4628647c5c4c80f026ce96b5e -SIZE (KDE/plasma/5.23.0/layer-shell-qt-5.23.0.tar.xz) = 17760 +TIMESTAMP = 1634665953 +SHA256 (KDE/plasma/5.23.1/layer-shell-qt-5.23.1.tar.xz) = c79c2306ee9f6a672612b37f28074609748f5570b7785d4096e5573f12fb9e0a +SIZE (KDE/plasma/5.23.1/layer-shell-qt-5.23.1.tar.xz) = 17772 diff --git a/x11/plasma5-libkscreen/distinfo b/x11/plasma5-libkscreen/distinfo index 20e7465474d5..8dc7de6d6706 100644 --- a/x11/plasma5-libkscreen/distinfo +++ b/x11/plasma5-libkscreen/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1634209969 -SHA256 (KDE/plasma/5.23.0/libkscreen-5.23.0.tar.xz) = c64b87b80683acccc5a3beb8fe22bd80a6e8b224b8a55714d5160174ad4ef1e5 -SIZE (KDE/plasma/5.23.0/libkscreen-5.23.0.tar.xz) = 97908 +TIMESTAMP = 1634665954 +SHA256 (KDE/plasma/5.23.1/libkscreen-5.23.1.tar.xz) = 3930d578f55e5d5be95da1f3fe298b15623afcea0a9c73005cb983589204d043 +SIZE (KDE/plasma/5.23.1/libkscreen-5.23.1.tar.xz) = 97944 diff --git a/x11/plasma5-plasma-desktop/distinfo b/x11/plasma5-plasma-desktop/distinfo index b3ade7c725e4..bac9f5cfe342 100644 --- a/x11/plasma5-plasma-desktop/distinfo +++ b/x11/plasma5-plasma-desktop/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1633639931 -SHA256 (KDE/plasma/5.23.0/plasma-desktop-5.23.0.tar.xz) = 346a806c839f3b26fca2db943bf58561dc3fd7ac08e7e73e9a157b532cae9c77 -SIZE (KDE/plasma/5.23.0/plasma-desktop-5.23.0.tar.xz) = 15783688 +TIMESTAMP = 1634665956 +SHA256 (KDE/plasma/5.23.1/plasma-desktop-5.23.1.tar.xz) = ee6c6af0926ea3c6edd808f2962ef6579953c82e0d08ac053fbc8f012b9c4e80 +SIZE (KDE/plasma/5.23.1/plasma-desktop-5.23.1.tar.xz) = 15785208 diff --git a/x11/plasma5-plasma-desktop/pkg-plist b/x11/plasma5-plasma-desktop/pkg-plist index d661a808331c..293834c0adeb 100644 --- a/x11/plasma5-plasma-desktop/pkg-plist +++ b/x11/plasma5-plasma-desktop/pkg-plist @@ -1,3885 +1,3892 @@ %%IBUS%%bin/ibus-ui-emojier-plasma bin/kaccess bin/kapplymousetheme bin/kcm-touchpad-list-devices bin/knetattach bin/krunner-plugininstaller bin/solid-action-desktop-gen bin/tastenbrett etc/xdg/autostart/kaccess.desktop lib/libexec/kauth/kcmdatetimehelper %%IBUS%%lib/libexec/kimpanel-ibus-panel %%IBUS%%lib/libexec/kimpanel-ibus-panel-launcher %%SCIM%%lib/libexec/kimpanel-scim-panel %%QT_PLUGINDIR%%/kcm_activities.so %%QT_PLUGINDIR%%/kcm_clock.so %%QT_PLUGINDIR%%/kcm_desktoppaths.so %%QT_PLUGINDIR%%/kcm_keyboard.so %%QT_PLUGINDIR%%/kcm_mouse.so %%QT_PLUGINDIR%%/kcm_plasmasearch.so %%QT_PLUGINDIR%%/kcm_solid_actions.so %%QT_PLUGINDIR%%/kcm_touchpad.so %%QT_PLUGINDIR%%/kcms/kcm_access.so %%QT_PLUGINDIR%%/kcms/kcm_baloofile.so %%QT_PLUGINDIR%%/kcms/kcm_componentchooser.so %%QT_PLUGINDIR%%/kcms/kcm_kded.so %%QT_PLUGINDIR%%/kcms/kcm_keys.so %%QT_PLUGINDIR%%/kcms/kcm_landingpage.so %%QT_PLUGINDIR%%/kcms/kcm_launchfeedback.so %%QT_PLUGINDIR%%/kcms/kcm_smserver.so %%QT_PLUGINDIR%%/kcms/kcm_splashscreen.so %%QT_PLUGINDIR%%/kcms/kcm_users.so %%QT_PLUGINDIR%%/kcms/kcm_workspace.so %%QT_PLUGINDIR%%/kcmspellchecking.so %%QT_PLUGINDIR%%/kf5/kded/device_automounter.so %%QT_PLUGINDIR%%/kf5/kded/kded_touchpad.so %%QT_PLUGINDIR%%/kf5/kded/keyboard.so %%QT_PLUGINDIR%%/kf5/krunner/krunner_kwin.so %%QT_PLUGINDIR%%/kf5/krunner/krunner_plasma-desktop.so %%QT_PLUGINDIR%%/libkcm_device_automounter.so %%QT_PLUGINDIR%%/libkcm_qtquicksettings.so %%QT_PLUGINDIR%%/plasma/dataengine/plasma_engine_touchpad.so %%QT_QMLDIR%%/org/kde/activities/settings/libkactivitiessettingsplugin.so %%QT_QMLDIR%%/org/kde/activities/settings/qmldir %%QT_QMLDIR%%/org/kde/plasma/activityswitcher/libactivityswitcherextensionplugin.so %%QT_QMLDIR%%/org/kde/plasma/activityswitcher/qmldir %%QT_QMLDIR%%/org/kde/plasma/private/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/org.kde.knetattach.desktop %%IBUS%%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/landingpage_kdeglobalssettings.kcfg share/config.kcfg/launchfeedbacksettingsbase.kcfg share/config.kcfg/splashscreensettings.kcfg share/config.kcfg/workspaceoptions_kdeglobalssettings.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/cursortheme/index.cache.bz2 share/doc/HTML/ca/kcontrol/cursortheme/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/cursortheme/index.cache.bz2 share/doc/HTML/de/kcontrol/cursortheme/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/cursortheme/index.cache.bz2 share/doc/HTML/en/kcontrol/cursortheme/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/kcmlaunchfeedback/index.cache.bz2 share/doc/HTML/en/kcontrol/kcmlaunchfeedback/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/cursortheme/index.cache.bz2 share/doc/HTML/es/kcontrol/cursortheme/index.docbook share/doc/HTML/es/kcontrol/joystick/index.cache.bz2 share/doc/HTML/es/kcontrol/joystick/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/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-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/kfontview/index.cache.bz2 share/doc/HTML/es/kfontview/index.docbook share/doc/HTML/es/knetattach/index.cache.bz2 share/doc/HTML/es/knetattach/index.docbook share/doc/HTML/et/kcontrol/clock/index.cache.bz2 share/doc/HTML/et/kcontrol/clock/index.docbook share/doc/HTML/et/kcontrol/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/cursortheme/index.cache.bz2 share/doc/HTML/id/kcontrol/cursortheme/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/cursortheme/index.cache.bz2 share/doc/HTML/it/kcontrol/cursortheme/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/cursortheme/index.cache.bz2 share/doc/HTML/nl/kcontrol/cursortheme/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/cursortheme/index.cache.bz2 share/doc/HTML/pt/kcontrol/cursortheme/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/kcmsmserver/index.cache.bz2 share/doc/HTML/pt/kcontrol/kcmsmserver/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/cursortheme/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/cursortheme/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/cursortheme/index.cache.bz2 share/doc/HTML/ru/kcontrol/cursortheme/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/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/cursortheme/index.cache.bz2 share/doc/HTML/sv/kcontrol/cursortheme/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/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/cursortheme/index.cache.bz2 share/doc/HTML/uk/kcontrol/cursortheme/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/kcmkeyboard/pics/epo.png share/kcmkeys/kde3.kksrc share/kcmkeys/kde4.kksrc share/kcmkeys/mac4.kksrc share/kcmkeys/unix3.kksrc share/kcmkeys/win3.kksrc share/kcmkeys/win4.kksrc share/kcmkeys/wm3.kksrc share/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/kconf_update/kcminputrc_fix_botched_5_21_0.py share/kconf_update/kcminputrc_fix_botched_5_21_0.upd share/kconf_update/kcminputrc_migrate_repeat_value.py share/kconf_update/kcminputrc_repeat.upd share/kconf_update/ksmserver_update_loginMode_value.py share/kconf_update/ksmserver_update_loginMode_value.upd share/kconf_update/kxkb_variants.awk share/kconf_update/kxkb_variants.upd share/kf5/kactivitymanagerd/workspace/settings/qml/activitiesTab/ActivitiesView.qml share/kf5/kactivitymanagerd/workspace/settings/qml/activitiesTab/main.qml share/kf5/kactivitymanagerd/workspace/settings/qml/activityDialog/GeneralTab.qml share/kf5/kactivitymanagerd/workspace/settings/qml/privacyTab/BlacklistApplicationView.qml %%IBUS%%share/kglobalaccel/org.kde.plasma.emojier.desktop share/knotifications5/kaccess.notifyrc share/knotifications5/kcm_touchpad.notifyrc share/knsrcfiles/krunner.knsrc share/knsrcfiles/ksplash.knsrc share/kpackage/kcms/kcm5_kded/contents/ui/main.qml share/kpackage/kcms/kcm5_kded/metadata.desktop share/kpackage/kcms/kcm5_kded/metadata.json share/kpackage/kcms/kcm_baloofile/contents/ui/main.qml share/kpackage/kcms/kcm_baloofile/metadata.desktop share/kpackage/kcms/kcm_baloofile/metadata.json share/kpackage/kcms/kcm_componentchooser/contents/ui/ComponentComboBox.qml share/kpackage/kcms/kcm_componentchooser/contents/ui/main.qml share/kpackage/kcms/kcm_componentchooser/metadata.desktop share/kpackage/kcms/kcm_componentchooser/metadata.json share/kpackage/kcms/kcm_keys/contents/ui/ShortcutActionDelegate.qml share/kpackage/kcms/kcm_keys/contents/ui/main.qml share/kpackage/kcms/kcm_keys/metadata.desktop share/kpackage/kcms/kcm_keys/metadata.json share/kpackage/kcms/kcm_landingpage/contents/ui/FeedbackControls.qml share/kpackage/kcms/kcm_landingpage/contents/ui/MostUsedIcon.qml share/kpackage/kcms/kcm_landingpage/contents/ui/Thumbnail.qml share/kpackage/kcms/kcm_landingpage/contents/ui/main.qml share/kpackage/kcms/kcm_landingpage/metadata.desktop share/kpackage/kcms/kcm_landingpage/metadata.json share/kpackage/kcms/kcm_launchfeedback/contents/ui/main.qml share/kpackage/kcms/kcm_launchfeedback/metadata.desktop share/kpackage/kcms/kcm_launchfeedback/metadata.json share/kpackage/kcms/kcm_smserver/contents/ui/main.qml share/kpackage/kcms/kcm_smserver/metadata.desktop share/kpackage/kcms/kcm_smserver/metadata.json share/kpackage/kcms/kcm_splashscreen/contents/ui/main.qml share/kpackage/kcms/kcm_splashscreen/metadata.desktop share/kpackage/kcms/kcm_splashscreen/metadata.json share/kpackage/kcms/kcm_users/contents/ui/ChangePassword.qml share/kpackage/kcms/kcm_users/contents/ui/ChangeWalletPassword.qml share/kpackage/kcms/kcm_users/contents/ui/CreateUser.qml share/kpackage/kcms/kcm_users/contents/ui/UserDetailsPage.qml share/kpackage/kcms/kcm_users/contents/ui/main.qml share/kpackage/kcms/kcm_users/metadata.desktop share/kpackage/kcms/kcm_users/metadata.json share/kpackage/kcms/kcm_workspace/contents/ui/main.qml share/kpackage/kcms/kcm_workspace/metadata.desktop share/kpackage/kcms/kcm_workspace/metadata.json share/kpackage/kcms/kcmaccess/contents/ui/Bell.qml share/kpackage/kcms/kcmaccess/contents/ui/KeyboardFilters.qml share/kpackage/kcms/kcmaccess/contents/ui/ModifierKeys.qml share/kpackage/kcms/kcmaccess/contents/ui/MouseNavigation.qml share/kpackage/kcms/kcmaccess/contents/ui/ScreenReader.qml share/kpackage/kcms/kcmaccess/contents/ui/main.qml share/kpackage/kcms/kcmaccess/metadata.desktop share/kpackage/kcms/kcmaccess/metadata.json share/kservices5/clock.desktop share/kservices5/componentchooser.desktop share/kservices5/desktoppath.desktop share/kservices5/device_automounter_kcm.desktop share/kservices5/kcm_access.desktop share/kservices5/kcm_activities.desktop share/kservices5/kcm_baloofile.desktop share/kservices5/kcm_keyboard.desktop share/kservices5/kcm_keys.desktop share/kservices5/kcm_landingpage.desktop share/kservices5/kcm_launchfeedback.desktop share/kservices5/kcm_plasmasearch.desktop share/kservices5/kcm_smserver.desktop share/kservices5/kcm_splashscreen.desktop share/kservices5/kcm_touchpad.desktop share/kservices5/kcm_users.desktop share/kservices5/kcm_workspace.desktop share/kservices5/kcmkded.desktop share/kservices5/mouse.desktop share/kservices5/plasma-dataengine-touchpad.desktop share/kservices5/qtquicksettings.desktop share/kservices5/solid-actions.desktop share/kservices5/spellchecking.desktop share/kservicetypes5/solid-device-type.desktop share/locale/af/LC_MESSAGES/kaccess.mo share/locale/af/LC_MESSAGES/kcm5_joystick.mo share/locale/af/LC_MESSAGES/kcm5_kded.mo share/locale/af/LC_MESSAGES/kcm_componentchooser.mo share/locale/af/LC_MESSAGES/kcm_desktoppaths.mo share/locale/af/LC_MESSAGES/kcm_launchfeedback.mo share/locale/af/LC_MESSAGES/kcm_smserver.mo share/locale/af/LC_MESSAGES/kcmaccess.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/kcm5_joystick.mo share/locale/ar/LC_MESSAGES/kcm5_kded.mo share/locale/ar/LC_MESSAGES/kcm_activities5.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_keys.mo share/locale/ar/LC_MESSAGES/kcm_landingpage.mo share/locale/ar/LC_MESSAGES/kcm_launchfeedback.mo share/locale/ar/LC_MESSAGES/kcm_search.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_touchpad.mo share/locale/ar/LC_MESSAGES/kcm_users.mo share/locale/ar/LC_MESSAGES/kcm_workspace.mo share/locale/ar/LC_MESSAGES/kcmaccess.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.minimizeall.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/kcmaccess.mo share/locale/ast/LC_MESSAGES/kcm5_device_automounter.mo share/locale/ast/LC_MESSAGES/kcm_componentchooser.mo share/locale/ast/LC_MESSAGES/kcm_launchfeedback.mo share/locale/ast/LC_MESSAGES/kcm_search.mo share/locale/ast/LC_MESSAGES/kcm_smserver.mo share/locale/ast/LC_MESSAGES/kcm_splashscreen.mo share/locale/ast/LC_MESSAGES/kcm_users.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/org.kde.plasma.emojier.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.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_shell_org.kde.plasma.desktop.mo share/locale/az/LC_MESSAGES/kaccess.mo share/locale/az/LC_MESSAGES/kcm5_device_automounter.mo share/locale/az/LC_MESSAGES/kcm5_joystick.mo share/locale/az/LC_MESSAGES/kcm5_kded.mo share/locale/az/LC_MESSAGES/kcm_activities5.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_keys.mo share/locale/az/LC_MESSAGES/kcm_landingpage.mo share/locale/az/LC_MESSAGES/kcm_launchfeedback.mo share/locale/az/LC_MESSAGES/kcm_search.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_touchpad.mo share/locale/az/LC_MESSAGES/kcm_users.mo share/locale/az/LC_MESSAGES/kcm_workspace.mo share/locale/az/LC_MESSAGES/kcmaccess.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.minimizeall.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_joystick.mo share/locale/be/LC_MESSAGES/kcm5_kded.mo share/locale/be/LC_MESSAGES/kcm_componentchooser.mo share/locale/be/LC_MESSAGES/kcm_desktoppaths.mo share/locale/be/LC_MESSAGES/kcm_launchfeedback.mo share/locale/be/LC_MESSAGES/kcm_smserver.mo share/locale/be/LC_MESSAGES/kcmaccess.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/knetattach5.mo share/locale/be/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.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@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/kcm5_joystick.mo share/locale/bg/LC_MESSAGES/kcm5_kded.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_launchfeedback.mo share/locale/bg/LC_MESSAGES/kcm_smserver.mo share/locale/bg/LC_MESSAGES/kcm_solid_actions.mo share/locale/bg/LC_MESSAGES/kcmaccess.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/knetattach5.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/bg/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/bn/LC_MESSAGES/kaccess.mo share/locale/bn/LC_MESSAGES/kcm5_kded.mo share/locale/bn/LC_MESSAGES/kcm_componentchooser.mo share/locale/bn/LC_MESSAGES/kcm_desktoppaths.mo share/locale/bn/LC_MESSAGES/kcm_smserver.mo share/locale/bn/LC_MESSAGES/kcmaccess.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/kcm5_kded.mo share/locale/bn_IN/LC_MESSAGES/kcm_desktoppaths.mo share/locale/bn_IN/LC_MESSAGES/kcm_smserver.mo share/locale/bn_IN/LC_MESSAGES/kcmaccess.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/kcm5_joystick.mo share/locale/br/LC_MESSAGES/kcm5_kded.mo share/locale/br/LC_MESSAGES/kcm_componentchooser.mo share/locale/br/LC_MESSAGES/kcm_desktoppaths.mo share/locale/br/LC_MESSAGES/kcm_launchfeedback.mo share/locale/br/LC_MESSAGES/kcm_smserver.mo share/locale/br/LC_MESSAGES/kcmaccess.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/kcm5_joystick.mo share/locale/bs/LC_MESSAGES/kcm5_kded.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_launchfeedback.mo share/locale/bs/LC_MESSAGES/kcm_search.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/kcmaccess.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/kcm5_joystick.mo share/locale/ca/LC_MESSAGES/kcm5_kded.mo share/locale/ca/LC_MESSAGES/kcm_activities5.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_keys.mo share/locale/ca/LC_MESSAGES/kcm_landingpage.mo share/locale/ca/LC_MESSAGES/kcm_launchfeedback.mo share/locale/ca/LC_MESSAGES/kcm_search.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_touchpad.mo share/locale/ca/LC_MESSAGES/kcm_users.mo share/locale/ca/LC_MESSAGES/kcm_workspace.mo share/locale/ca/LC_MESSAGES/kcmaccess.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.minimizeall.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/kcm5_joystick.mo share/locale/ca@valencia/LC_MESSAGES/kcm5_kded.mo share/locale/ca@valencia/LC_MESSAGES/kcm_activities5.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_keys.mo share/locale/ca@valencia/LC_MESSAGES/kcm_launchfeedback.mo share/locale/ca@valencia/LC_MESSAGES/kcm_search.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_touchpad.mo share/locale/ca@valencia/LC_MESSAGES/kcm_users.mo share/locale/ca@valencia/LC_MESSAGES/kcm_workspace.mo share/locale/ca@valencia/LC_MESSAGES/kcmaccess.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.minimizeall.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/kcm5_joystick.mo share/locale/cs/LC_MESSAGES/kcm5_kded.mo share/locale/cs/LC_MESSAGES/kcm_activities5.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_keys.mo share/locale/cs/LC_MESSAGES/kcm_landingpage.mo share/locale/cs/LC_MESSAGES/kcm_launchfeedback.mo share/locale/cs/LC_MESSAGES/kcm_search.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_touchpad.mo share/locale/cs/LC_MESSAGES/kcm_users.mo share/locale/cs/LC_MESSAGES/kcm_workspace.mo share/locale/cs/LC_MESSAGES/kcmaccess.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.minimizeall.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/kcm5_joystick.mo share/locale/csb/LC_MESSAGES/kcm5_kded.mo share/locale/csb/LC_MESSAGES/kcm_componentchooser.mo share/locale/csb/LC_MESSAGES/kcm_launchfeedback.mo share/locale/csb/LC_MESSAGES/kcm_smserver.mo share/locale/csb/LC_MESSAGES/kcmaccess.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/kcm5_joystick.mo share/locale/cy/LC_MESSAGES/kcm5_kded.mo share/locale/cy/LC_MESSAGES/kcm_componentchooser.mo share/locale/cy/LC_MESSAGES/kcm_desktoppaths.mo share/locale/cy/LC_MESSAGES/kcm_launchfeedback.mo share/locale/cy/LC_MESSAGES/kcm_smserver.mo share/locale/cy/LC_MESSAGES/kcmaccess.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/kcm5_joystick.mo share/locale/da/LC_MESSAGES/kcm5_kded.mo share/locale/da/LC_MESSAGES/kcm_activities5.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_keys.mo share/locale/da/LC_MESSAGES/kcm_launchfeedback.mo share/locale/da/LC_MESSAGES/kcm_search.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_users.mo share/locale/da/LC_MESSAGES/kcm_workspace.mo share/locale/da/LC_MESSAGES/kcmaccess.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.minimizeall.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/kcm5_joystick.mo share/locale/de/LC_MESSAGES/kcm5_kded.mo share/locale/de/LC_MESSAGES/kcm_activities5.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_keys.mo share/locale/de/LC_MESSAGES/kcm_landingpage.mo share/locale/de/LC_MESSAGES/kcm_launchfeedback.mo share/locale/de/LC_MESSAGES/kcm_search.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_touchpad.mo share/locale/de/LC_MESSAGES/kcm_users.mo share/locale/de/LC_MESSAGES/kcm_workspace.mo share/locale/de/LC_MESSAGES/kcmaccess.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.minimizeall.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/kcm5_joystick.mo share/locale/el/LC_MESSAGES/kcm5_kded.mo share/locale/el/LC_MESSAGES/kcm_activities5.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_launchfeedback.mo share/locale/el/LC_MESSAGES/kcm_search.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/kcmaccess.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.minimizeall.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/kcm5_joystick.mo share/locale/en_GB/LC_MESSAGES/kcm5_kded.mo share/locale/en_GB/LC_MESSAGES/kcm_activities5.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_keys.mo share/locale/en_GB/LC_MESSAGES/kcm_landingpage.mo share/locale/en_GB/LC_MESSAGES/kcm_launchfeedback.mo share/locale/en_GB/LC_MESSAGES/kcm_search.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_touchpad.mo share/locale/en_GB/LC_MESSAGES/kcm_users.mo share/locale/en_GB/LC_MESSAGES/kcm_workspace.mo share/locale/en_GB/LC_MESSAGES/kcmaccess.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.minimizeall.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/kcm5_joystick.mo share/locale/eo/LC_MESSAGES/kcm5_kded.mo share/locale/eo/LC_MESSAGES/kcm_componentchooser.mo share/locale/eo/LC_MESSAGES/kcm_desktoppaths.mo share/locale/eo/LC_MESSAGES/kcm_launchfeedback.mo share/locale/eo/LC_MESSAGES/kcm_smserver.mo share/locale/eo/LC_MESSAGES/kcm_solid_actions.mo share/locale/eo/LC_MESSAGES/kcmaccess.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/knetattach5.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.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.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_plasma-desktop.mo share/locale/es/LC_MESSAGES/kaccess.mo share/locale/es/LC_MESSAGES/kcm5_device_automounter.mo share/locale/es/LC_MESSAGES/kcm5_joystick.mo share/locale/es/LC_MESSAGES/kcm5_kded.mo share/locale/es/LC_MESSAGES/kcm_activities5.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_keys.mo share/locale/es/LC_MESSAGES/kcm_landingpage.mo share/locale/es/LC_MESSAGES/kcm_launchfeedback.mo share/locale/es/LC_MESSAGES/kcm_search.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_touchpad.mo share/locale/es/LC_MESSAGES/kcm_users.mo share/locale/es/LC_MESSAGES/kcm_workspace.mo share/locale/es/LC_MESSAGES/kcmaccess.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.minimizeall.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/kcm5_joystick.mo share/locale/et/LC_MESSAGES/kcm5_kded.mo share/locale/et/LC_MESSAGES/kcm_activities5.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_keys.mo share/locale/et/LC_MESSAGES/kcm_launchfeedback.mo share/locale/et/LC_MESSAGES/kcm_search.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_users.mo share/locale/et/LC_MESSAGES/kcm_workspace.mo share/locale/et/LC_MESSAGES/kcmaccess.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.minimizeall.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/kcm5_joystick.mo share/locale/eu/LC_MESSAGES/kcm5_kded.mo share/locale/eu/LC_MESSAGES/kcm_activities5.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_keys.mo share/locale/eu/LC_MESSAGES/kcm_landingpage.mo share/locale/eu/LC_MESSAGES/kcm_launchfeedback.mo share/locale/eu/LC_MESSAGES/kcm_search.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_touchpad.mo share/locale/eu/LC_MESSAGES/kcm_users.mo share/locale/eu/LC_MESSAGES/kcm_workspace.mo share/locale/eu/LC_MESSAGES/kcmaccess.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.minimizeall.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/kcm5_joystick.mo share/locale/fa/LC_MESSAGES/kcm5_kded.mo share/locale/fa/LC_MESSAGES/kcm_componentchooser.mo share/locale/fa/LC_MESSAGES/kcm_desktoppaths.mo share/locale/fa/LC_MESSAGES/kcm_launchfeedback.mo share/locale/fa/LC_MESSAGES/kcm_smserver.mo share/locale/fa/LC_MESSAGES/kcm_solid_actions.mo share/locale/fa/LC_MESSAGES/kcmaccess.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/kcm5_joystick.mo share/locale/fi/LC_MESSAGES/kcm5_kded.mo share/locale/fi/LC_MESSAGES/kcm_activities5.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_keys.mo share/locale/fi/LC_MESSAGES/kcm_landingpage.mo share/locale/fi/LC_MESSAGES/kcm_launchfeedback.mo share/locale/fi/LC_MESSAGES/kcm_search.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_touchpad.mo share/locale/fi/LC_MESSAGES/kcm_users.mo share/locale/fi/LC_MESSAGES/kcm_workspace.mo share/locale/fi/LC_MESSAGES/kcmaccess.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.minimizeall.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/kcm5_joystick.mo share/locale/fr/LC_MESSAGES/kcm5_kded.mo share/locale/fr/LC_MESSAGES/kcm_activities5.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_keys.mo share/locale/fr/LC_MESSAGES/kcm_landingpage.mo share/locale/fr/LC_MESSAGES/kcm_launchfeedback.mo share/locale/fr/LC_MESSAGES/kcm_search.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_touchpad.mo share/locale/fr/LC_MESSAGES/kcm_users.mo share/locale/fr/LC_MESSAGES/kcm_workspace.mo share/locale/fr/LC_MESSAGES/kcmaccess.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.minimizeall.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/kcm5_joystick.mo share/locale/fy/LC_MESSAGES/kcm5_kded.mo share/locale/fy/LC_MESSAGES/kcm_componentchooser.mo share/locale/fy/LC_MESSAGES/kcm_desktoppaths.mo share/locale/fy/LC_MESSAGES/kcm_launchfeedback.mo share/locale/fy/LC_MESSAGES/kcm_smserver.mo share/locale/fy/LC_MESSAGES/kcm_solid_actions.mo share/locale/fy/LC_MESSAGES/kcmaccess.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/kcm5_joystick.mo share/locale/ga/LC_MESSAGES/kcm5_kded.mo share/locale/ga/LC_MESSAGES/kcm_componentchooser.mo share/locale/ga/LC_MESSAGES/kcm_desktoppaths.mo share/locale/ga/LC_MESSAGES/kcm_launchfeedback.mo share/locale/ga/LC_MESSAGES/kcm_smserver.mo share/locale/ga/LC_MESSAGES/kcm_solid_actions.mo share/locale/ga/LC_MESSAGES/kcmaccess.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/kcm5_joystick.mo share/locale/gl/LC_MESSAGES/kcm5_kded.mo share/locale/gl/LC_MESSAGES/kcm_activities5.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_launchfeedback.mo share/locale/gl/LC_MESSAGES/kcm_search.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_touchpad.mo share/locale/gl/LC_MESSAGES/kcm_workspace.mo share/locale/gl/LC_MESSAGES/kcmaccess.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/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.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.minimizeall.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/kcm5_joystick.mo share/locale/gu/LC_MESSAGES/kcm5_kded.mo share/locale/gu/LC_MESSAGES/kcm_componentchooser.mo share/locale/gu/LC_MESSAGES/kcm_desktoppaths.mo share/locale/gu/LC_MESSAGES/kcm_launchfeedback.mo share/locale/gu/LC_MESSAGES/kcm_smserver.mo share/locale/gu/LC_MESSAGES/kcm_solid_actions.mo share/locale/gu/LC_MESSAGES/kcmaccess.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/kcm5_joystick.mo share/locale/he/LC_MESSAGES/kcm5_kded.mo share/locale/he/LC_MESSAGES/kcm_activities5.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_launchfeedback.mo share/locale/he/LC_MESSAGES/kcm_search.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_touchpad.mo share/locale/he/LC_MESSAGES/kcm_workspace.mo share/locale/he/LC_MESSAGES/kcmaccess.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/knetattach5.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.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.minimizeall.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_plasma-desktop.mo share/locale/he/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/he/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/he/LC_MESSAGES/plasmaactivitymanager.mo share/locale/hi/LC_MESSAGES/kaccess.mo share/locale/hi/LC_MESSAGES/kcm5_device_automounter.mo share/locale/hi/LC_MESSAGES/kcm5_joystick.mo share/locale/hi/LC_MESSAGES/kcm5_kded.mo share/locale/hi/LC_MESSAGES/kcm_componentchooser.mo share/locale/hi/LC_MESSAGES/kcm_desktoppaths.mo share/locale/hi/LC_MESSAGES/kcm_launchfeedback.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/kcmaccess.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.minimizeall.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/kcm5_joystick.mo share/locale/hne/LC_MESSAGES/kcm5_kded.mo share/locale/hne/LC_MESSAGES/kcm_componentchooser.mo share/locale/hne/LC_MESSAGES/kcm_desktoppaths.mo share/locale/hne/LC_MESSAGES/kcm_launchfeedback.mo share/locale/hne/LC_MESSAGES/kcm_smserver.mo share/locale/hne/LC_MESSAGES/kcmaccess.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/kcm5_joystick.mo share/locale/hr/LC_MESSAGES/kcm5_kded.mo share/locale/hr/LC_MESSAGES/kcm_componentchooser.mo share/locale/hr/LC_MESSAGES/kcm_desktoppaths.mo share/locale/hr/LC_MESSAGES/kcm_launchfeedback.mo share/locale/hr/LC_MESSAGES/kcm_smserver.mo share/locale/hr/LC_MESSAGES/kcm_solid_actions.mo share/locale/hr/LC_MESSAGES/kcmaccess.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/kcm5_joystick.mo share/locale/hsb/LC_MESSAGES/kcm5_kded.mo share/locale/hsb/LC_MESSAGES/kcm_componentchooser.mo share/locale/hsb/LC_MESSAGES/kcm_desktoppaths.mo share/locale/hsb/LC_MESSAGES/kcm_launchfeedback.mo share/locale/hsb/LC_MESSAGES/kcm_smserver.mo share/locale/hsb/LC_MESSAGES/kcmaccess.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.pager.mo share/locale/hsb/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/hsb/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/hu/LC_MESSAGES/kaccess.mo share/locale/hu/LC_MESSAGES/kcm5_device_automounter.mo share/locale/hu/LC_MESSAGES/kcm5_joystick.mo share/locale/hu/LC_MESSAGES/kcm5_kded.mo share/locale/hu/LC_MESSAGES/kcm_activities5.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_keys.mo share/locale/hu/LC_MESSAGES/kcm_landingpage.mo share/locale/hu/LC_MESSAGES/kcm_launchfeedback.mo share/locale/hu/LC_MESSAGES/kcm_search.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_touchpad.mo share/locale/hu/LC_MESSAGES/kcm_users.mo share/locale/hu/LC_MESSAGES/kcm_workspace.mo share/locale/hu/LC_MESSAGES/kcmaccess.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.minimizeall.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/kcm5_joystick.mo share/locale/ia/LC_MESSAGES/kcm5_kded.mo share/locale/ia/LC_MESSAGES/kcm_activities5.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_keys.mo share/locale/ia/LC_MESSAGES/kcm_landingpage.mo share/locale/ia/LC_MESSAGES/kcm_launchfeedback.mo share/locale/ia/LC_MESSAGES/kcm_search.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_touchpad.mo share/locale/ia/LC_MESSAGES/kcm_users.mo share/locale/ia/LC_MESSAGES/kcm_workspace.mo share/locale/ia/LC_MESSAGES/kcmaccess.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.minimizeall.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/kcm5_joystick.mo share/locale/id/LC_MESSAGES/kcm5_kded.mo share/locale/id/LC_MESSAGES/kcm_activities5.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_keys.mo share/locale/id/LC_MESSAGES/kcm_launchfeedback.mo share/locale/id/LC_MESSAGES/kcm_search.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_touchpad.mo share/locale/id/LC_MESSAGES/kcm_workspace.mo share/locale/id/LC_MESSAGES/kcmaccess.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.minimizeall.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/is/LC_MESSAGES/kaccess.mo share/locale/is/LC_MESSAGES/kcm5_device_automounter.mo share/locale/is/LC_MESSAGES/kcm5_joystick.mo share/locale/is/LC_MESSAGES/kcm5_kded.mo share/locale/is/LC_MESSAGES/kcm_componentchooser.mo share/locale/is/LC_MESSAGES/kcm_desktoppaths.mo share/locale/is/LC_MESSAGES/kcm_launchfeedback.mo share/locale/is/LC_MESSAGES/kcm_smserver.mo share/locale/is/LC_MESSAGES/kcm_solid_actions.mo share/locale/is/LC_MESSAGES/kcmaccess.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.plasma.pager.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/it/LC_MESSAGES/kaccess.mo share/locale/it/LC_MESSAGES/kcm5_device_automounter.mo share/locale/it/LC_MESSAGES/kcm5_joystick.mo share/locale/it/LC_MESSAGES/kcm5_kded.mo share/locale/it/LC_MESSAGES/kcm_activities5.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_keys.mo share/locale/it/LC_MESSAGES/kcm_landingpage.mo share/locale/it/LC_MESSAGES/kcm_launchfeedback.mo share/locale/it/LC_MESSAGES/kcm_search.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_touchpad.mo share/locale/it/LC_MESSAGES/kcm_users.mo share/locale/it/LC_MESSAGES/kcm_workspace.mo share/locale/it/LC_MESSAGES/kcmaccess.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.minimizeall.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/kcm5_joystick.mo share/locale/ja/LC_MESSAGES/kcm5_kded.mo share/locale/ja/LC_MESSAGES/kcm_activities5.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_keys.mo share/locale/ja/LC_MESSAGES/kcm_landingpage.mo share/locale/ja/LC_MESSAGES/kcm_launchfeedback.mo share/locale/ja/LC_MESSAGES/kcm_search.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_touchpad.mo share/locale/ja/LC_MESSAGES/kcm_users.mo share/locale/ja/LC_MESSAGES/kcm_workspace.mo share/locale/ja/LC_MESSAGES/kcmaccess.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.minimizeall.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/kk/LC_MESSAGES/kaccess.mo share/locale/kk/LC_MESSAGES/kcm5_device_automounter.mo share/locale/kk/LC_MESSAGES/kcm5_joystick.mo share/locale/kk/LC_MESSAGES/kcm5_kded.mo share/locale/kk/LC_MESSAGES/kcm_componentchooser.mo share/locale/kk/LC_MESSAGES/kcm_desktoppaths.mo share/locale/kk/LC_MESSAGES/kcm_launchfeedback.mo share/locale/kk/LC_MESSAGES/kcm_smserver.mo share/locale/kk/LC_MESSAGES/kcm_solid_actions.mo share/locale/kk/LC_MESSAGES/kcmaccess.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/kcm5_joystick.mo share/locale/km/LC_MESSAGES/kcm5_kded.mo share/locale/km/LC_MESSAGES/kcm_componentchooser.mo share/locale/km/LC_MESSAGES/kcm_desktoppaths.mo share/locale/km/LC_MESSAGES/kcm_launchfeedback.mo share/locale/km/LC_MESSAGES/kcm_smserver.mo share/locale/km/LC_MESSAGES/kcm_solid_actions.mo share/locale/km/LC_MESSAGES/kcmaccess.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/kcm5_joystick.mo share/locale/kn/LC_MESSAGES/kcm5_kded.mo share/locale/kn/LC_MESSAGES/kcm_componentchooser.mo share/locale/kn/LC_MESSAGES/kcm_desktoppaths.mo share/locale/kn/LC_MESSAGES/kcm_launchfeedback.mo share/locale/kn/LC_MESSAGES/kcm_smserver.mo share/locale/kn/LC_MESSAGES/kcmaccess.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/kcm5_joystick.mo share/locale/ko/LC_MESSAGES/kcm5_kded.mo share/locale/ko/LC_MESSAGES/kcm_activities5.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_keys.mo share/locale/ko/LC_MESSAGES/kcm_landingpage.mo share/locale/ko/LC_MESSAGES/kcm_launchfeedback.mo share/locale/ko/LC_MESSAGES/kcm_search.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_touchpad.mo share/locale/ko/LC_MESSAGES/kcm_users.mo share/locale/ko/LC_MESSAGES/kcm_workspace.mo share/locale/ko/LC_MESSAGES/kcmaccess.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.minimizeall.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/kcm5_joystick.mo share/locale/ku/LC_MESSAGES/kcm5_kded.mo share/locale/ku/LC_MESSAGES/kcm_componentchooser.mo share/locale/ku/LC_MESSAGES/kcm_desktoppaths.mo share/locale/ku/LC_MESSAGES/kcm_launchfeedback.mo share/locale/ku/LC_MESSAGES/kcm_smserver.mo share/locale/ku/LC_MESSAGES/kcmaccess.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/kcm5_joystick.mo share/locale/lt/LC_MESSAGES/kcm5_kded.mo share/locale/lt/LC_MESSAGES/kcm_activities5.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_keys.mo share/locale/lt/LC_MESSAGES/kcm_launchfeedback.mo share/locale/lt/LC_MESSAGES/kcm_search.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_touchpad.mo share/locale/lt/LC_MESSAGES/kcm_users.mo share/locale/lt/LC_MESSAGES/kcm_workspace.mo share/locale/lt/LC_MESSAGES/kcmaccess.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.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.minimizeall.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/kcm5_joystick.mo share/locale/lv/LC_MESSAGES/kcm5_kded.mo share/locale/lv/LC_MESSAGES/kcm_componentchooser.mo share/locale/lv/LC_MESSAGES/kcm_desktoppaths.mo share/locale/lv/LC_MESSAGES/kcm_launchfeedback.mo share/locale/lv/LC_MESSAGES/kcm_smserver.mo share/locale/lv/LC_MESSAGES/kcm_solid_actions.mo share/locale/lv/LC_MESSAGES/kcmaccess.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/kcm5_joystick.mo share/locale/mai/LC_MESSAGES/kcm5_kded.mo share/locale/mai/LC_MESSAGES/kcm_componentchooser.mo share/locale/mai/LC_MESSAGES/kcm_desktoppaths.mo share/locale/mai/LC_MESSAGES/kcm_launchfeedback.mo share/locale/mai/LC_MESSAGES/kcm_smserver.mo share/locale/mai/LC_MESSAGES/kcm_solid_actions.mo share/locale/mai/LC_MESSAGES/kcmaccess.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/kcm5_joystick.mo share/locale/mk/LC_MESSAGES/kcm5_kded.mo share/locale/mk/LC_MESSAGES/kcm_componentchooser.mo share/locale/mk/LC_MESSAGES/kcm_desktoppaths.mo share/locale/mk/LC_MESSAGES/kcm_launchfeedback.mo share/locale/mk/LC_MESSAGES/kcm_smserver.mo share/locale/mk/LC_MESSAGES/kcmaccess.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/kcm5_joystick.mo share/locale/ml/LC_MESSAGES/kcm5_kded.mo share/locale/ml/LC_MESSAGES/kcm_activities5.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_launchfeedback.mo share/locale/ml/LC_MESSAGES/kcm_search.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/kcmaccess.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.minimizeall.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/kcm5_joystick.mo share/locale/mr/LC_MESSAGES/kcm5_kded.mo share/locale/mr/LC_MESSAGES/kcm_componentchooser.mo share/locale/mr/LC_MESSAGES/kcm_desktoppaths.mo share/locale/mr/LC_MESSAGES/kcm_launchfeedback.mo share/locale/mr/LC_MESSAGES/kcm_smserver.mo share/locale/mr/LC_MESSAGES/kcm_solid_actions.mo share/locale/mr/LC_MESSAGES/kcmaccess.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/kcm5_joystick.mo share/locale/ms/LC_MESSAGES/kcm5_kded.mo share/locale/ms/LC_MESSAGES/kcm_componentchooser.mo share/locale/ms/LC_MESSAGES/kcm_desktoppaths.mo share/locale/ms/LC_MESSAGES/kcm_launchfeedback.mo share/locale/ms/LC_MESSAGES/kcm_smserver.mo share/locale/ms/LC_MESSAGES/kcm_solid_actions.mo share/locale/ms/LC_MESSAGES/kcmaccess.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/kcm5_joystick.mo share/locale/nb/LC_MESSAGES/kcm5_kded.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_launchfeedback.mo share/locale/nb/LC_MESSAGES/kcm_search.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/kcmaccess.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.minimizeall.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/kcm5_joystick.mo share/locale/nds/LC_MESSAGES/kcm5_kded.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_launchfeedback.mo share/locale/nds/LC_MESSAGES/kcm_search.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/kcmaccess.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/kcm5_joystick.mo share/locale/ne/LC_MESSAGES/kcm5_kded.mo share/locale/ne/LC_MESSAGES/kcm_componentchooser.mo share/locale/ne/LC_MESSAGES/kcm_desktoppaths.mo share/locale/ne/LC_MESSAGES/kcm_launchfeedback.mo share/locale/ne/LC_MESSAGES/kcm_smserver.mo share/locale/ne/LC_MESSAGES/kcmaccess.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/kcm5_joystick.mo share/locale/nl/LC_MESSAGES/kcm5_kded.mo share/locale/nl/LC_MESSAGES/kcm_activities5.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_keys.mo share/locale/nl/LC_MESSAGES/kcm_landingpage.mo share/locale/nl/LC_MESSAGES/kcm_launchfeedback.mo share/locale/nl/LC_MESSAGES/kcm_search.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_touchpad.mo share/locale/nl/LC_MESSAGES/kcm_users.mo share/locale/nl/LC_MESSAGES/kcm_workspace.mo share/locale/nl/LC_MESSAGES/kcmaccess.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.minimizeall.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/kcm5_joystick.mo share/locale/nn/LC_MESSAGES/kcm5_kded.mo share/locale/nn/LC_MESSAGES/kcm_activities5.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_keys.mo share/locale/nn/LC_MESSAGES/kcm_landingpage.mo share/locale/nn/LC_MESSAGES/kcm_launchfeedback.mo share/locale/nn/LC_MESSAGES/kcm_search.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_touchpad.mo share/locale/nn/LC_MESSAGES/kcm_users.mo share/locale/nn/LC_MESSAGES/kcm_workspace.mo share/locale/nn/LC_MESSAGES/kcmaccess.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.minimizeall.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/kcm5_joystick.mo share/locale/oc/LC_MESSAGES/kcm5_kded.mo share/locale/oc/LC_MESSAGES/kcm_componentchooser.mo share/locale/oc/LC_MESSAGES/kcm_desktoppaths.mo share/locale/oc/LC_MESSAGES/kcm_launchfeedback.mo share/locale/oc/LC_MESSAGES/kcm_smserver.mo share/locale/oc/LC_MESSAGES/kcmaccess.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/kcm5_joystick.mo share/locale/or/LC_MESSAGES/kcm5_kded.mo share/locale/or/LC_MESSAGES/kcm_componentchooser.mo share/locale/or/LC_MESSAGES/kcm_desktoppaths.mo share/locale/or/LC_MESSAGES/kcm_launchfeedback.mo share/locale/or/LC_MESSAGES/kcm_smserver.mo share/locale/or/LC_MESSAGES/kcmaccess.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/kcm5_joystick.mo share/locale/pa/LC_MESSAGES/kcm5_kded.mo share/locale/pa/LC_MESSAGES/kcm_activities5.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_keys.mo share/locale/pa/LC_MESSAGES/kcm_launchfeedback.mo share/locale/pa/LC_MESSAGES/kcm_search.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_users.mo share/locale/pa/LC_MESSAGES/kcm_workspace.mo share/locale/pa/LC_MESSAGES/kcmaccess.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.minimizeall.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/kcm5_joystick.mo share/locale/pl/LC_MESSAGES/kcm5_kded.mo share/locale/pl/LC_MESSAGES/kcm_activities5.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_keys.mo share/locale/pl/LC_MESSAGES/kcm_landingpage.mo share/locale/pl/LC_MESSAGES/kcm_launchfeedback.mo share/locale/pl/LC_MESSAGES/kcm_search.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_touchpad.mo share/locale/pl/LC_MESSAGES/kcm_users.mo share/locale/pl/LC_MESSAGES/kcm_workspace.mo share/locale/pl/LC_MESSAGES/kcmaccess.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.minimizeall.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/kcm5_joystick.mo share/locale/pt/LC_MESSAGES/kcm5_kded.mo share/locale/pt/LC_MESSAGES/kcm_activities5.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_keys.mo share/locale/pt/LC_MESSAGES/kcm_landingpage.mo share/locale/pt/LC_MESSAGES/kcm_launchfeedback.mo share/locale/pt/LC_MESSAGES/kcm_search.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_touchpad.mo share/locale/pt/LC_MESSAGES/kcm_users.mo share/locale/pt/LC_MESSAGES/kcm_workspace.mo share/locale/pt/LC_MESSAGES/kcmaccess.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.minimizeall.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/kcm5_joystick.mo share/locale/pt_BR/LC_MESSAGES/kcm5_kded.mo share/locale/pt_BR/LC_MESSAGES/kcm_activities5.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_keys.mo share/locale/pt_BR/LC_MESSAGES/kcm_landingpage.mo share/locale/pt_BR/LC_MESSAGES/kcm_launchfeedback.mo share/locale/pt_BR/LC_MESSAGES/kcm_search.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_touchpad.mo share/locale/pt_BR/LC_MESSAGES/kcm_users.mo share/locale/pt_BR/LC_MESSAGES/kcm_workspace.mo share/locale/pt_BR/LC_MESSAGES/kcmaccess.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.minimizeall.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/kcm5_joystick.mo share/locale/ro/LC_MESSAGES/kcm5_kded.mo share/locale/ro/LC_MESSAGES/kcm_activities5.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_keys.mo share/locale/ro/LC_MESSAGES/kcm_landingpage.mo share/locale/ro/LC_MESSAGES/kcm_launchfeedback.mo share/locale/ro/LC_MESSAGES/kcm_search.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_touchpad.mo share/locale/ro/LC_MESSAGES/kcm_users.mo share/locale/ro/LC_MESSAGES/kcm_workspace.mo share/locale/ro/LC_MESSAGES/kcmaccess.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.minimizeall.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/kcm5_joystick.mo share/locale/ru/LC_MESSAGES/kcm5_kded.mo share/locale/ru/LC_MESSAGES/kcm_activities5.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_keys.mo share/locale/ru/LC_MESSAGES/kcm_landingpage.mo share/locale/ru/LC_MESSAGES/kcm_launchfeedback.mo share/locale/ru/LC_MESSAGES/kcm_search.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_touchpad.mo share/locale/ru/LC_MESSAGES/kcm_users.mo share/locale/ru/LC_MESSAGES/kcm_workspace.mo share/locale/ru/LC_MESSAGES/kcmaccess.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.minimizeall.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/se/LC_MESSAGES/kaccess.mo share/locale/se/LC_MESSAGES/kcm5_joystick.mo share/locale/se/LC_MESSAGES/kcm5_kded.mo share/locale/se/LC_MESSAGES/kcm_componentchooser.mo share/locale/se/LC_MESSAGES/kcm_desktoppaths.mo share/locale/se/LC_MESSAGES/kcm_launchfeedback.mo share/locale/se/LC_MESSAGES/kcm_smserver.mo share/locale/se/LC_MESSAGES/kcmaccess.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/kcm5_joystick.mo share/locale/si/LC_MESSAGES/kcm5_kded.mo share/locale/si/LC_MESSAGES/kcm_componentchooser.mo share/locale/si/LC_MESSAGES/kcm_desktoppaths.mo share/locale/si/LC_MESSAGES/kcm_launchfeedback.mo share/locale/si/LC_MESSAGES/kcm_smserver.mo share/locale/si/LC_MESSAGES/kcm_solid_actions.mo share/locale/si/LC_MESSAGES/kcmaccess.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/kcm5_joystick.mo share/locale/sk/LC_MESSAGES/kcm5_kded.mo share/locale/sk/LC_MESSAGES/kcm_activities5.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_keys.mo share/locale/sk/LC_MESSAGES/kcm_landingpage.mo share/locale/sk/LC_MESSAGES/kcm_launchfeedback.mo share/locale/sk/LC_MESSAGES/kcm_search.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_touchpad.mo share/locale/sk/LC_MESSAGES/kcm_users.mo share/locale/sk/LC_MESSAGES/kcm_workspace.mo share/locale/sk/LC_MESSAGES/kcmaccess.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.minimizeall.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/kcm5_joystick.mo share/locale/sl/LC_MESSAGES/kcm5_kded.mo share/locale/sl/LC_MESSAGES/kcm_activities5.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_keys.mo share/locale/sl/LC_MESSAGES/kcm_landingpage.mo share/locale/sl/LC_MESSAGES/kcm_launchfeedback.mo share/locale/sl/LC_MESSAGES/kcm_search.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_touchpad.mo share/locale/sl/LC_MESSAGES/kcm_users.mo share/locale/sl/LC_MESSAGES/kcm_workspace.mo share/locale/sl/LC_MESSAGES/kcmaccess.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.minimizeall.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/kcm5_joystick.mo share/locale/sq/LC_MESSAGES/kcm5_kded.mo share/locale/sq/LC_MESSAGES/kcm_componentchooser.mo share/locale/sq/LC_MESSAGES/kcm_launchfeedback.mo share/locale/sq/LC_MESSAGES/kcm_smserver.mo share/locale/sq/LC_MESSAGES/kcm_solid_actions.mo share/locale/sq/LC_MESSAGES/kcmaccess.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/kcm5_joystick.mo share/locale/sr/LC_MESSAGES/kcm5_kded.mo share/locale/sr/LC_MESSAGES/kcm_activities5.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_launchfeedback.mo share/locale/sr/LC_MESSAGES/kcm_search.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/kcmaccess.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.minimizeall.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/kcm5_joystick.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm5_kded.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_activities5.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_launchfeedback.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_search.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/kcmaccess.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.minimizeall.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/kcm5_joystick.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm5_kded.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_activities5.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_launchfeedback.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_search.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/kcmaccess.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.minimizeall.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/kcm5_joystick.mo share/locale/sr@latin/LC_MESSAGES/kcm5_kded.mo share/locale/sr@latin/LC_MESSAGES/kcm_activities5.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_launchfeedback.mo share/locale/sr@latin/LC_MESSAGES/kcm_search.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/kcmaccess.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.minimizeall.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/kcm5_joystick.mo share/locale/sv/LC_MESSAGES/kcm5_kded.mo share/locale/sv/LC_MESSAGES/kcm_activities5.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_keys.mo share/locale/sv/LC_MESSAGES/kcm_landingpage.mo share/locale/sv/LC_MESSAGES/kcm_launchfeedback.mo share/locale/sv/LC_MESSAGES/kcm_search.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_touchpad.mo share/locale/sv/LC_MESSAGES/kcm_users.mo share/locale/sv/LC_MESSAGES/kcm_workspace.mo share/locale/sv/LC_MESSAGES/kcmaccess.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.minimizeall.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/kcm5_joystick.mo share/locale/ta/LC_MESSAGES/kcm5_kded.mo share/locale/ta/LC_MESSAGES/kcm_activities5.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_keys.mo share/locale/ta/LC_MESSAGES/kcm_landingpage.mo share/locale/ta/LC_MESSAGES/kcm_launchfeedback.mo share/locale/ta/LC_MESSAGES/kcm_search.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_touchpad.mo share/locale/ta/LC_MESSAGES/kcm_users.mo share/locale/ta/LC_MESSAGES/kcm_workspace.mo share/locale/ta/LC_MESSAGES/kcmaccess.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.minimizeall.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_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/kcm5_joystick.mo share/locale/te/LC_MESSAGES/kcm5_kded.mo share/locale/te/LC_MESSAGES/kcm_componentchooser.mo share/locale/te/LC_MESSAGES/kcm_desktoppaths.mo share/locale/te/LC_MESSAGES/kcm_launchfeedback.mo share/locale/te/LC_MESSAGES/kcm_smserver.mo share/locale/te/LC_MESSAGES/kcmaccess.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/kcm5_joystick.mo share/locale/tg/LC_MESSAGES/kcm5_kded.mo share/locale/tg/LC_MESSAGES/kcm_activities5.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_launchfeedback.mo share/locale/tg/LC_MESSAGES/kcm_search.mo share/locale/tg/LC_MESSAGES/kcm_smserver.mo share/locale/tg/LC_MESSAGES/kcm_splashscreen.mo share/locale/tg/LC_MESSAGES/kcm_users.mo share/locale/tg/LC_MESSAGES/kcmaccess.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.minimizeall.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/kcm5_joystick.mo share/locale/th/LC_MESSAGES/kcm5_kded.mo share/locale/th/LC_MESSAGES/kcm_componentchooser.mo share/locale/th/LC_MESSAGES/kcm_desktoppaths.mo share/locale/th/LC_MESSAGES/kcm_launchfeedback.mo share/locale/th/LC_MESSAGES/kcm_smserver.mo share/locale/th/LC_MESSAGES/kcm_solid_actions.mo share/locale/th/LC_MESSAGES/kcmaccess.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/kcm5_joystick.mo share/locale/tr/LC_MESSAGES/kcm5_kded.mo share/locale/tr/LC_MESSAGES/kcm_activities5.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_launchfeedback.mo share/locale/tr/LC_MESSAGES/kcm_search.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_touchpad.mo share/locale/tr/LC_MESSAGES/kcm_workspace.mo share/locale/tr/LC_MESSAGES/kcmaccess.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/knetattach5.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.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.minimizeall.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/plasmaactivitymanager.mo share/locale/ug/LC_MESSAGES/kaccess.mo share/locale/ug/LC_MESSAGES/kcm5_device_automounter.mo share/locale/ug/LC_MESSAGES/kcm5_joystick.mo share/locale/ug/LC_MESSAGES/kcm5_kded.mo share/locale/ug/LC_MESSAGES/kcm_componentchooser.mo share/locale/ug/LC_MESSAGES/kcm_desktoppaths.mo share/locale/ug/LC_MESSAGES/kcm_launchfeedback.mo share/locale/ug/LC_MESSAGES/kcm_smserver.mo share/locale/ug/LC_MESSAGES/kcm_solid_actions.mo share/locale/ug/LC_MESSAGES/kcmaccess.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/kcm5_joystick.mo share/locale/uk/LC_MESSAGES/kcm5_kded.mo share/locale/uk/LC_MESSAGES/kcm_activities5.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_keys.mo share/locale/uk/LC_MESSAGES/kcm_landingpage.mo share/locale/uk/LC_MESSAGES/kcm_launchfeedback.mo share/locale/uk/LC_MESSAGES/kcm_search.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_touchpad.mo share/locale/uk/LC_MESSAGES/kcm_users.mo share/locale/uk/LC_MESSAGES/kcm_workspace.mo share/locale/uk/LC_MESSAGES/kcmaccess.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.minimizeall.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/kcm5_joystick.mo share/locale/uz/LC_MESSAGES/kcm5_kded.mo share/locale/uz/LC_MESSAGES/kcm_componentchooser.mo share/locale/uz/LC_MESSAGES/kcm_desktoppaths.mo share/locale/uz/LC_MESSAGES/kcm_launchfeedback.mo share/locale/uz/LC_MESSAGES/kcm_smserver.mo share/locale/uz/LC_MESSAGES/kcmaccess.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/kcm5_joystick.mo share/locale/uz@cyrillic/LC_MESSAGES/kcm5_kded.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_launchfeedback.mo share/locale/uz@cyrillic/LC_MESSAGES/kcm_smserver.mo share/locale/uz@cyrillic/LC_MESSAGES/kcmaccess.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/kcm5_joystick.mo share/locale/vi/LC_MESSAGES/kcm5_kded.mo share/locale/vi/LC_MESSAGES/kcm_activities5.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_keys.mo share/locale/vi/LC_MESSAGES/kcm_landingpage.mo share/locale/vi/LC_MESSAGES/kcm_launchfeedback.mo share/locale/vi/LC_MESSAGES/kcm_search.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_touchpad.mo share/locale/vi/LC_MESSAGES/kcm_users.mo share/locale/vi/LC_MESSAGES/kcm_workspace.mo share/locale/vi/LC_MESSAGES/kcmaccess.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.minimizeall.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/kcm5_joystick.mo share/locale/wa/LC_MESSAGES/kcm5_kded.mo share/locale/wa/LC_MESSAGES/kcm_componentchooser.mo share/locale/wa/LC_MESSAGES/kcm_desktoppaths.mo share/locale/wa/LC_MESSAGES/kcm_launchfeedback.mo share/locale/wa/LC_MESSAGES/kcm_smserver.mo share/locale/wa/LC_MESSAGES/kcm_solid_actions.mo share/locale/wa/LC_MESSAGES/kcmaccess.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/kcm5_kded.mo share/locale/xh/LC_MESSAGES/kcm_componentchooser.mo share/locale/xh/LC_MESSAGES/kcm_desktoppaths.mo share/locale/xh/LC_MESSAGES/kcm_launchfeedback.mo share/locale/xh/LC_MESSAGES/kcm_smserver.mo share/locale/xh/LC_MESSAGES/kcmaccess.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/kcm5_joystick.mo share/locale/zh_CN/LC_MESSAGES/kcm5_kded.mo share/locale/zh_CN/LC_MESSAGES/kcm_activities5.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_keys.mo share/locale/zh_CN/LC_MESSAGES/kcm_landingpage.mo share/locale/zh_CN/LC_MESSAGES/kcm_launchfeedback.mo share/locale/zh_CN/LC_MESSAGES/kcm_search.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_touchpad.mo share/locale/zh_CN/LC_MESSAGES/kcm_users.mo share/locale/zh_CN/LC_MESSAGES/kcm_workspace.mo share/locale/zh_CN/LC_MESSAGES/kcmaccess.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.minimizeall.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/kcm5_joystick.mo share/locale/zh_TW/LC_MESSAGES/kcm5_kded.mo share/locale/zh_TW/LC_MESSAGES/kcm_activities5.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_launchfeedback.mo share/locale/zh_TW/LC_MESSAGES/kcm_search.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_touchpad.mo share/locale/zh_TW/LC_MESSAGES/kcm_workspace.mo share/locale/zh_TW/LC_MESSAGES/kcmaccess.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.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.minimizeall.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/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/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/HorizontalStackView.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/KickoffDropArea.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/KickoffItemDelegate.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/KickoffSingleton.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/VerticalStackView.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/qmldir share/plasma/shells/org.kde.plasma.desktop/contents/updates/digitalclock_rename_timezonedisplay_key.js share/plasma/shells/org.kde.plasma.desktop/contents/updates/klipper_clear_config.js share/qlogging-categories5/kcm_kded.categories share/qlogging-categories5/kcm_keyboard.categories share/qlogging-categories5/kcm_mouse.categories share/metainfo/org.kde.desktopcontainment.appdata.xml share/metainfo/org.kde.desktoptoolbox.appdata.xml share/metainfo/org.kde.paneltoolbox.appdata.xml share/metainfo/org.kde.plasma.desktop.appdata.xml share/metainfo/org.kde.plasma.desktop.appmenubar.appdata.xml share/metainfo/org.kde.plasma.desktop.defaultPanel.appdata.xml share/metainfo/org.kde.plasma.desktop.emptyPanel.appdata.xml share/metainfo/org.kde.plasma.folder.appdata.xml share/metainfo/org.kde.plasma.icontasks.appdata.xml share/metainfo/org.kde.plasma.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/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/Chamelon.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/layout-templates/org.kde.plasma.desktop.appmenubar/contents/layout.js share/plasma/layout-templates/org.kde.plasma.desktop.appmenubar/metadata.desktop share/plasma/layout-templates/org.kde.plasma.desktop.appmenubar/metadata.json share/plasma/layout-templates/org.kde.plasma.desktop.defaultPanel/contents/layout.js share/plasma/layout-templates/org.kde.plasma.desktop.defaultPanel/metadata.desktop share/plasma/layout-templates/org.kde.plasma.desktop.defaultPanel/metadata.json share/plasma/layout-templates/org.kde.plasma.desktop.emptyPanel/contents/layout.js share/plasma/layout-templates/org.kde.plasma.desktop.emptyPanel/metadata.desktop share/plasma/layout-templates/org.kde.plasma.desktop.emptyPanel/metadata.json share/plasma/packages/org.kde.desktoptoolbox/contents/config/main.xml share/plasma/packages/org.kde.desktoptoolbox/contents/ui/ToolBoxButton.qml share/plasma/packages/org.kde.desktoptoolbox/contents/ui/ToolBoxRoot.qml share/plasma/packages/org.kde.desktoptoolbox/metadata.desktop share/plasma/packages/org.kde.desktoptoolbox/metadata.json share/plasma/packages/org.kde.paneltoolbox/contents/ui/main.qml share/plasma/packages/org.kde.paneltoolbox/metadata.desktop share/plasma/packages/org.kde.paneltoolbox/metadata.json share/plasma/plasmoids/org.kde.desktopcontainment/contents/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/BusyOverlay.qml share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/CompactRepresentation.qml share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/ConfigFilter.qml share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/ConfigIcons.qml share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/ConfigLocation.qml share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/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/code/FolderTools.js share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/main.qml share/plasma/plasmoids/org.kde.desktopcontainment/metadata.desktop share/plasma/plasmoids/org.kde.desktopcontainment/metadata.json share/plasma/plasmoids/org.kde.panel/contents/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.desktop share/plasma/plasmoids/org.kde.panel/metadata.json share/plasma/plasmoids/org.kde.panel/plasma-containment-panel.desktop share/plasma/plasmoids/org.kde.plasma.folder/metadata.desktop share/plasma/plasmoids/org.kde.plasma.folder/metadata.json share/plasma/plasmoids/org.kde.plasma.icontasks/metadata.desktop share/plasma/plasmoids/org.kde.plasma.icontasks/metadata.json share/plasma/plasmoids/org.kde.plasma.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.desktop 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/DashboardTabBar.qml share/plasma/plasmoids/org.kde.plasma.kicker/contents/ui/DashboardTabButton.qml share/plasma/plasmoids/org.kde.plasma.kicker/contents/ui/ItemGridDelegate.qml share/plasma/plasmoids/org.kde.plasma.kicker/contents/ui/ItemGridView.qml share/plasma/plasmoids/org.kde.plasma.kicker/contents/ui/ItemListDelegate.qml share/plasma/plasmoids/org.kde.plasma.kicker/contents/ui/ItemListDialog.qml share/plasma/plasmoids/org.kde.plasma.kicker/contents/ui/ItemListView.qml share/plasma/plasmoids/org.kde.plasma.kicker/contents/ui/ItemMultiGridView.qml share/plasma/plasmoids/org.kde.plasma.kicker/contents/ui/MenuRepresentation.qml share/plasma/plasmoids/org.kde.plasma.kicker/contents/ui/RunnerResultsList.qml share/plasma/plasmoids/org.kde.plasma.kicker/contents/ui/SideBarItem.qml share/plasma/plasmoids/org.kde.plasma.kicker/contents/ui/SideBarSection.qml share/plasma/plasmoids/org.kde.plasma.kicker/contents/ui/code/tools.js share/plasma/plasmoids/org.kde.plasma.kicker/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.kicker/metadata.desktop share/plasma/plasmoids/org.kde.plasma.kicker/metadata.json share/plasma/plasmoids/org.kde.plasma.kickoff/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/ActionMenu.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/ConfigGeneral.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/FullRepresentation.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/Header.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/Kickoff.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/KickoffGridView.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/KickoffListView.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/LeaveButtons.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/code/tools.js share/plasma/plasmoids/org.kde.plasma.kickoff/metadata.desktop share/plasma/plasmoids/org.kde.plasma.kickoff/metadata.json share/plasma/plasmoids/org.kde.plasma.kimpanel/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma.kimpanel/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.kimpanel/contents/ui/ActionMenu.qml share/plasma/plasmoids/org.kde.plasma.kimpanel/contents/ui/CandidateHighlight.qml share/plasma/plasmoids/org.kde.plasma.kimpanel/contents/ui/ConfigAppearance.qml share/plasma/plasmoids/org.kde.plasma.kimpanel/contents/ui/ContextMenu.qml share/plasma/plasmoids/org.kde.plasma.kimpanel/contents/ui/InputPanel.qml share/plasma/plasmoids/org.kde.plasma.kimpanel/contents/ui/StatusIcon.qml share/plasma/plasmoids/org.kde.plasma.kimpanel/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.kimpanel/metadata.desktop share/plasma/plasmoids/org.kde.plasma.kimpanel/metadata.json share/plasma/plasmoids/org.kde.plasma.marginsseparator/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.marginsseparator/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.marginsseparator/metadata.desktop share/plasma/plasmoids/org.kde.plasma.marginsseparator/metadata.json share/plasma/plasmoids/org.kde.plasma.minimizeall/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.minimizeall/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.minimizeall/metadata.desktop share/plasma/plasmoids/org.kde.plasma.minimizeall/metadata.json share/plasma/plasmoids/org.kde.plasma.pager/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma.pager/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.pager/contents/ui/configGeneral.qml share/plasma/plasmoids/org.kde.plasma.pager/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.pager/metadata.desktop share/plasma/plasmoids/org.kde.plasma.pager/metadata.json share/plasma/plasmoids/org.kde.plasma.showActivityManager/contents/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.desktop 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/main.qml share/plasma/plasmoids/org.kde.plasma.showdesktop/metadata.desktop share/plasma/plasmoids/org.kde.plasma.showdesktop/metadata.json share/plasma/plasmoids/org.kde.plasma.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/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.desktop share/plasma/plasmoids/org.kde.plasma.taskmanager/metadata.json share/plasma/plasmoids/org.kde.plasma.trash/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.trash/metadata.desktop share/plasma/plasmoids/org.kde.plasma.trash/metadata.json share/plasma/plasmoids/org.kde.plasma.windowlist/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.windowlist/metadata.desktop share/plasma/plasmoids/org.kde.plasma.windowlist/metadata.json 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/panelconfiguration/EdgeHandle.qml share/plasma/shells/org.kde.plasma.desktop/contents/configuration/panelconfiguration/MoreSettingsMenu.qml share/plasma/shells/org.kde.plasma.desktop/contents/configuration/panelconfiguration/Ruler.qml share/plasma/shells/org.kde.plasma.desktop/contents/configuration/panelconfiguration/SliderHandle.qml share/plasma/shells/org.kde.plasma.desktop/contents/configuration/panelconfiguration/ToolBar.qml share/plasma/shells/org.kde.plasma.desktop/contents/defaults share/plasma/shells/org.kde.plasma.desktop/contents/explorer/AppletAlternatives.qml share/plasma/shells/org.kde.plasma.desktop/contents/explorer/AppletDelegate.qml share/plasma/shells/org.kde.plasma.desktop/contents/explorer/Tooltip.qml share/plasma/shells/org.kde.plasma.desktop/contents/explorer/WidgetExplorer.qml share/plasma/shells/org.kde.plasma.desktop/contents/layout.js share/plasma/shells/org.kde.plasma.desktop/contents/updates/containmentactions_middlebutton.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/move_desktop_layout_config.js share/plasma/shells/org.kde.plasma.desktop/contents/updates/obsolete_kickoffrc.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/metadata.desktop share/plasma/shells/org.kde.plasma.desktop/metadata.json share/polkit-1/actions/org.kde.kcontrol.kcmclock.policy share/qlogging-categories5/kcmkeys.categories share/qlogging-categories5/kcmusers.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/plasma5-plasma-integration/distinfo b/x11/plasma5-plasma-integration/distinfo index bf3fb6ca4f08..a86e07d5be71 100644 --- a/x11/plasma5-plasma-integration/distinfo +++ b/x11/plasma5-plasma-integration/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1633639932 -SHA256 (KDE/plasma/5.23.0/plasma-integration-5.23.0.tar.xz) = 0930859552d8772f6a86ed723448d74609cfd559c55f7746ac33802cd33a7965 -SIZE (KDE/plasma/5.23.0/plasma-integration-5.23.0.tar.xz) = 83036 +TIMESTAMP = 1634665957 +SHA256 (KDE/plasma/5.23.1/plasma-integration-5.23.1.tar.xz) = ca2b3487de16646bc5d2120adfd9d58cee69570a0eb64630ea075a93cdddcb71 +SIZE (KDE/plasma/5.23.1/plasma-integration-5.23.1.tar.xz) = 83076 diff --git a/x11/plasma5-plasma-workspace/distinfo b/x11/plasma5-plasma-workspace/distinfo index 7286d68d8045..6a6a72546e01 100644 --- a/x11/plasma5-plasma-workspace/distinfo +++ b/x11/plasma5-plasma-workspace/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1633639933 -SHA256 (KDE/plasma/5.23.0/plasma-workspace-5.23.0.tar.xz) = 49abcb19639a72eb5ffa916d5eca0a925d32a36e4a02658cc73ab479dea39965 -SIZE (KDE/plasma/5.23.0/plasma-workspace-5.23.0.tar.xz) = 8995284 +TIMESTAMP = 1634665959 +SHA256 (KDE/plasma/5.23.1/plasma-workspace-5.23.1.tar.xz) = fbf979f857b3cdcc8fe6dc45c3a1d9dfe297e1120aa551a02faa339abb81efad +SIZE (KDE/plasma/5.23.1/plasma-workspace-5.23.1.tar.xz) = 9001244